diff --git a/.gitignore b/.gitignore index e43b0f988953ae3a84b00331d0ccf5f7d51cb3cf..577804275dae54d7e65343d0ee83865a4e74ac73 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .DS_Store +/venv/ diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..13566b81b018ad684f3a35fee301741b2734c8f4 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/aws.xml b/.idea/aws.xml new file mode 100644 index 0000000000000000000000000000000000000000..e14a2062df66f1228bd02e5b60b600295e600250 --- /dev/null +++ b/.idea/aws.xml @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/checkstyle-idea.xml b/.idea/checkstyle-idea.xml new file mode 100644 index 0000000000000000000000000000000000000000..8b6337674878c0b730aa2ebfd207df83c02e748d --- /dev/null +++ b/.idea/checkstyle-idea.xml @@ -0,0 +1,25 @@ + + + + 10.3.2 + JavaOnly + + + + \ No newline at end of file diff --git a/.idea/google-java-format.xml b/.idea/google-java-format.xml new file mode 100644 index 0000000000000000000000000000000000000000..8b57f4527ab2bb586db85ec1471ea7926cee6c05 --- /dev/null +++ b/.idea/google-java-format.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000000000000000000000000000000000000..03d9549ea8e4ada36fb3ecbc30fef08175b7d728 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/jpa-buddy.xml b/.idea/jpa-buddy.xml new file mode 100644 index 0000000000000000000000000000000000000000..966d5f56a99523a01d4ba0a48fa95c4a881d44ac --- /dev/null +++ b/.idea/jpa-buddy.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/libraries/ziptestdata.xml b/.idea/libraries/ziptestdata.xml new file mode 100644 index 0000000000000000000000000000000000000000..e6d98c483b183838197e6f8d4261c9aae6c951a9 --- /dev/null +++ b/.idea/libraries/ziptestdata.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/ziptestdata1.xml b/.idea/libraries/ziptestdata1.xml new file mode 100644 index 0000000000000000000000000000000000000000..5121b894c664fcee6762abd9c1d2b35ad637bd7e --- /dev/null +++ b/.idea/libraries/ziptestdata1.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000000000000000000000000000000000000..e02c20fc30a86cbecb837b08e1dee76a54ef259a --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000000000000000000000000000000000000..db67aeb56b10148b112e9a70ed4eb0074b331b6f --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/pulseDemo.iml b/.idea/pulseDemo.iml new file mode 100644 index 0000000000000000000000000000000000000000..44db5996a190f405cfb98ca596a54ca6589909a4 --- /dev/null +++ b/.idea/pulseDemo.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000000000000000000000000000000000000..35eb1ddfbbc029bcab630581847471d7f238ec53 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app.py b/app.py index 985c4f9691c8c8c5f8eb89d394ae02bcc5648e4a..d1b85df1c95804fb39d504137562f872b2090e66 100644 --- a/app.py +++ b/app.py @@ -1,54 +1,81 @@ -from llama_index import Document, SimpleDirectoryReader, GPTListIndex, GPTSimpleVectorIndex, LLMPredictor, PromptHelper, ServiceContext -from llama_index import download_loader -from langchain import OpenAI +import os from pathlib import Path + import gradio as gr -import sys -import os +from llama_index import VectorStoreIndex, StorageContext, download_loader, load_index_from_storage -dataFiles = ["RetroMay","RetroApril","RetroMarch", "Snowflake", "Datadog", "Databricks", "SplunkProducts", "SplunkEnterprise"] +dataFiles = ["OnCall", "RetroMay", "RetroApril", "RetroMarch", "Snowflake", "Datadog", "Databricks", "SplunkProducts", + "SplunkEnterprise"] cache = {} -def indexFile(filePath): - PandasCSVReader = download_loader("PandasCSVReader") - loader = PandasCSVReader() - documents = loader.load_data(file=Path('./csv/' + filePath + '.csv')) - index = GPTSimpleVectorIndex.from_documents(documents) - index.save_to_disk("index/" + filePath + '.json') +def index_file(filePath, index_root): + csv_file = f'./raw/{filePath}.csv' + pdf_file = f'./raw/{filePath}.pdf' + documents = None + storage_context = StorageContext.from_defaults() + if os.path.exists(csv_file): + PandasCSVReader = download_loader("PandasCSVReader") + loader = PandasCSVReader() + documents = loader.load_data(file=csv_file) + print(f"Loading from CSV {csv_file}") + elif os.path.exists(pdf_file): + PDFReader = download_loader("PDFReader") + loader = PDFReader() + documents = loader.load_data(file=Path(pdf_file)) + # PyMuPDFReader = download_loader("PyMuPDFReader") + # loader = PyMuPDFReader() + # documents = loader.load(file_path=Path(pdf_file), metadata=False) + print(f"Loading from PDF {pdf_file}") + index = VectorStoreIndex.from_documents(documents=documents, storage_context=storage_context) + save_location = f"{index_root}/{filePath}" + if not os.path.exists(save_location): + os.makedirs(save_location) + storage_context.persist(save_location) + return index + def loadData(): """ Load indices from disk for improved performance """ - for file in dataFiles : - print("Loading file "+ file) - indexFilePath= "index/" + file + '.json' - if not os.path.exists(indexFilePath): - indexFile(file) - cache[file]= GPTSimpleVectorIndex.load_from_disk(indexFilePath) + index_root = "./index_v2" + for file in dataFiles: + index_file_path = f'{index_root}/{file}' + index = None + if not os.path.exists(index_file_path): + print("Creating index " + index_file_path) + index = index_file(file, index_root) + else: + print("Loading from existing index " + index_file_path) + storage_context = StorageContext.from_defaults(persist_dir=index_file_path) + index = load_index_from_storage(storage_context) + cache[file] = index + def chatbot(indexName, input_text): """ Chatbot function that takes in a prompt and returns a response """ index = cache[indexName] - response = index.query(input_text, response_mode="compact") + response = index.as_query_engine().query(input_text) return response.response loadData() iface = gr.Interface(fn=chatbot, - inputs= [ - gr.Dropdown(dataFiles, - type="value", value="Agreement", label="Select Pulse Data"), + inputs=[ + gr.Dropdown(dataFiles, + type="value", value="Agreement", label="Select Pulse Data"), gr.Textbox(lines=7, label="Ask any question", placeholder='What is the summary?')], outputs="text", title="NLP Demo for Chat Interface") +if 'LOGIN_PASS' in os.environ: + iface.launch(auth=('axiamatic', os.environ['LOGIN_PASS']), + auth_message='For access, please check my Slack profile or contact me in Slack.', + share=False) +else: + iface.launch(share=False) - -iface.launch(auth=('axiamatic', os.environ['LOGIN_PASS']), - auth_message='For access, please check my Slack profile or contact me in Slack.', - share=False) \ No newline at end of file diff --git a/app_tree.py b/app_tree.py new file mode 100644 index 0000000000000000000000000000000000000000..08193e408d058d2aa73c41d606af0e18938c018a --- /dev/null +++ b/app_tree.py @@ -0,0 +1,57 @@ +from llama_index import Document, SimpleDirectoryReader, GPTListIndex, GPTSimpleVectorIndex, GPTTreeIndex, LLMPredictor, PromptHelper, ServiceContext +from llama_index import download_loader +from langchain import OpenAI +from pathlib import Path +import gradio as gr +import sys +import os +import logging + +logging.basicConfig(format='%(asctime)s %(levelname)s:%(message)s', level=os.environ.get("LOGLEVEL", "DEBUG")) + +#dataFiles = ["RetroApril","RetroMarch", "Snowflake", "Datadog", "Databricks", "SplunkProducts", "SplunkEnterprise"] +dataFiles = ["Lastpass", "RetroApril","RetroMarch"] + +cache = {} + + +def indexFile(filePath): + PandasCSVReader = download_loader("PandasCSVReader") + loader = PandasCSVReader() + documents = loader.load_data(file=Path('./csv/' + filePath + '.csv')) + index = GPTTreeIndex.from_documents(documents) + index.save_to_disk("treeIndex/" + filePath + '.json') + +def loadData(): + """ + Load indices from disk for improved performance + """ + for file in dataFiles : + print("Loading file "+ file) + indexFilePath= "treeIndex/" + file + '.json' + if not os.path.exists(indexFilePath): + indexFile(file) + cache[file]= GPTTreeIndex.load_from_disk(indexFilePath) + +def chatbot(indexName, input_text): + """ + Chatbot function that takes in a prompt and returns a response + """ + index = cache[indexName] + response = index.query(input_text, response_mode="compact") + return response.response + +log = logging.getLogger(__name__) + +loadData() + +iface = gr.Interface(fn=chatbot, + inputs= [ + gr.Dropdown(dataFiles, + type="value", value="Lastpass", label="Select Pulse Data"), + gr.Textbox(lines=7, label="Ask any question", placeholder='What is the summary?')], + outputs="text", + title="NLP Demo for Chat Interface") + + +iface.launch(share=False) \ No newline at end of file diff --git a/csv/SupplierScoreCard.csv b/csv/SupplierScoreCard.csv deleted file mode 100644 index 0ccddb34d7f5465460c24ec8155d8497a3090f9e..0000000000000000000000000000000000000000 --- a/csv/SupplierScoreCard.csv +++ /dev/null @@ -1,491 +0,0 @@ -"userwithid","question","response" -"Primary User-11009","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Neutral" -"Primary User-11009","Response Times: Issues and requests are addressed within stated times","Neutral" -"Primary User-11009","SLA Attainment: Meets or exceeds contracted service levels","Neutral" -"Primary User-11009","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Neutral" -"Primary User-11009","Alignment: Vendor resources understand our business and related industry trends and needs","Neutral" -"Primary User-11009","Resource Turnover: Vendor manages resource turnover appropriately","Neutral" -"Primary User-11009","Cost Optimization: Proactive delivery of cost-saving ideas","Neutral" -"Primary User-11009","Innovation: Demonstration of new products and services that will help our business","Agree" -"Primary User-11009","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Agree" -"Primary User-11009","Communication: Supplier team is professional, approachable and clear in their communication with us","Agree" -"Primary User-11009","Responsiveness: Resources respond quickly and act with appropriate urgency","Neutral" -"Primary User-11009","Flexibility: Account team demonstrates flexibility when required","Agree" -"Primary User-11009","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Neutral" -"Primary User-11009","Invoicing: Invoices are timely, accurate and easy to understand","Neutral" -"Primary User-11009","Pricing: Cost is competitive","Neutral" -"Primary User-11009","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Agree" -"Primary User-11010","Invoicing: Invoices are timely, accurate and easy to understand","Neutral" -"Primary User-11010","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Neutral" -"Primary User-11010","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Neutral" -"Primary User-11010","Response Times: Issues and requests are addressed within stated times","Agree" -"Primary User-11010","SLA Attainment: Meets or exceeds contracted service levels","Neutral" -"Primary User-11010","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Neutral" -"Primary User-11010","Resource Turnover: Vendor manages resource turnover appropriately","Neutral" -"Primary User-11010","Alignment: Vendor resources understand our business and related industry trends and needs","Neutral" -"Primary User-11010","Cost Optimization: Proactive delivery of cost-saving ideas","Neutral" -"Primary User-11010","Innovation: Demonstration of new products and services that will help our business","Neutral" -"Primary User-11010","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Agree" -"Primary User-11010","Communication: Supplier team is professional, approachable and clear in their communication with us","Agree" -"Primary User-11010","Responsiveness: Resources respond quickly and act with appropriate urgency","Agree" -"Primary User-11010","Flexibility: Account team demonstrates flexibility when required","Agree" -"Primary User-11010","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Neutral" -"Primary User-11010","Pricing: Cost is competitive","Neutral" -"Primary User-11011","Invoicing: Invoices are timely, accurate and easy to understand","Agree" -"Primary User-11011","Pricing: Cost is competitive","Agree" -"Primary User-11011","Is there any additional feedback you would like to provide regarding performance?","Considering that we have just started the partnership, there are multiple areas of improvement, as the TechX team comes up to speed on Mattel environment, systems, data and personnel. I see a lot of promise, and many stated objectives, and will look to see these in action in the next 3 months." -"Primary User-11011","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Agree" -"Primary User-11011","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Neutral" -"Primary User-11011","Response Times: Issues and requests are addressed within stated times","Agree" -"Primary User-11011","SLA Attainment: Meets or exceeds contracted service levels","Neutral" -"Primary User-11011","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Neutral" -"Primary User-11011","Resource Turnover: Vendor manages resource turnover appropriately","Agree" -"Primary User-11011","Is there any additional feedback you would like to provide regarding ${VendorName}'s thought leadership?","Few ideas have been discussed; promise of more is there. But more delivery is needed to evaluate effectiveness." -"Primary User-11011","Alignment: Vendor resources understand our business and related industry trends and needs","Neutral" -"Primary User-11011","Cost Optimization: Proactive delivery of cost-saving ideas","Neutral" -"Primary User-11011","Innovation: Demonstration of new products and services that will help our business","Neutral" -"Primary User-11011","Is there any additional feedback you would like to provide about the relationship with TechX?","I would like to see more team members at the analyst / individual contributor level take more ownership, more initiative and address issues and problems without having some leader or manager push them to do the work. And be more responsive and timely in providing status. The TechX leaders and managers are doing this, but would like to see the full team do it as well." -"Primary User-11011","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Agree" -"Primary User-11011","Communication: Supplier team is professional, approachable and clear in their communication with us","Strongly Agree" -"Primary User-11011","Responsiveness: Resources respond quickly and act with appropriate urgency","Agree" -"Primary User-11011","Flexibility: Account team demonstrates flexibility when required","Strongly Agree" -"Primary User-11011","Is there any additional feedback you would like to provide regarding financial performance?","Nothing to share at this point." -"Primary User-11011","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Agree" -"Primary User-11012","Alignment: Vendor resources understand our business and related industry trends and needs","Neutral" -"Primary User-11012","Is there any additional feedback you would like to provide regarding ${VendorName}'s thought leadership?","Have seen this in the Workday area, not so much in Finance." -"Primary User-11012","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","1). Need to improve in terms of continuous improvements for alerts and monitoring and being proactive -2). Team wasnt aware of 24 x 7 SLA for apps -3). Need team to drive issue resolution and connect corporate to upstream problem areas, i.e. Informatica, Cognos, EFT -4). Need to see improvement in user communication and driving issue resolution" -"Primary User-11012","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","1). Need to improve in terms of continuous improvements for alerts and monitoring and being proactive -2). Team wasnt aware of 24 x 7 SLA for apps -3). Need team to drive issue resolution and connect corporate to upstream problem areas, i.e. Informatica, Cognos, EFT -4). Need to see improvement in user communication and driving issue resolution" -"Primary User-11012","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Invoicing is late." -"Primary User-11012","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","More focus on continuous improvement -Improve appreciatation of user impact." -"Primary User-11012","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Neutral" -"Primary User-11012","SLA Attainment: Meets or exceeds contracted service levels","Neutral" -"Primary User-11012","Response Times: Issues and requests are addressed within stated times","Neutral" -"Primary User-11012","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Disagree" -"Primary User-11012","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Disagree" -"Primary User-11012","Is there any additional feedback you would like to provide regarding performance?","1). Need to improve in terms of continuous improvements for alerts and monitoring and being proactive -2). Team wasnt aware of 24 x 7 SLA for apps -3). Need team to drive issue resolution and connect corporate to upstream problem areas, i.e. Informatica, Cognos, EFT -4). Need to see improvement in user communication and driving issue resolution" -"Primary User-11012","Pricing: Cost is competitive","Agree" -"Primary User-11012","Invoicing: Invoices are timely, accurate and easy to understand","Disagree" -"Primary User-11012","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Neutral" -"Primary User-11012","Flexibility: Account team demonstrates flexibility when required","Agree" -"Primary User-11012","Responsiveness: Resources respond quickly and act with appropriate urgency","Neutral" -"Primary User-11012","Communication: Supplier team is professional, approachable and clear in their communication with us","Neutral" -"Primary User-11012","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Disagree" -"Primary User-11012","Is there any additional feedback you would like to provide about the relationship with TechX?","Need to improve upon the team understanding the other teams to reach out to." -"Primary User-11012","Innovation: Demonstration of new products and services that will help our business","Neutral" -"Primary User-11012","Cost Optimization: Proactive delivery of cost-saving ideas","Neutral" -"Primary User-11012","Resource Turnover: Vendor manages resource turnover appropriately","Neutral" -"Primary User-11013","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Disagree" -"Primary User-11013","Response Times: Issues and requests are addressed within stated times","Disagree" -"Primary User-11013","SLA Attainment: Meets or exceeds contracted service levels","Agree" -"Primary User-11013","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Agree" -"Primary User-11013","Resource Turnover: Vendor manages resource turnover appropriately","Strongly Agree" -"Primary User-11013","Alignment: Vendor resources understand our business and related industry trends and needs","Agree" -"Primary User-11013","Innovation: Demonstration of new products and services that will help our business","Neutral" -"Primary User-11013","Cost Optimization: Proactive delivery of cost-saving ideas","Neutral" -"Primary User-11013","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","This is a shared responsibility. We as Mattel didn't did well enough to do a proper knowledge transfer, specially for critical applications which caused major issues on reporting jobs and ISIS applications. Causing disruption to our business during several weeks. -On LATAM we had a 2 weeks blackout of information and in APAC we had 3 month ends closings that finished late due to lack of detailed knowledge. " -"Primary User-11013","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Comment is the same as on the last block of questions." -"Primary User-11013","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","I believe the relationship with TechX is good. Specially leaders are very responsive, agile and willing to help. -" -"Primary User-11013","Is there any additional feedback you would like to provide about the relationship with TechX?","I still see TechX groups working on silos. But I see more leadership involvement on solving issues that require several silos for its resolution." -"Primary User-11013","Is there any additional feedback you would like to provide regarding ${VendorName}'s thought leadership?","I have not seen any innovation or proactive proposal from TechX that can impact us on efficiencies or costs." -"Primary User-11013","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Disagree" -"Primary User-11013","Communication: Supplier team is professional, approachable and clear in their communication with us","Strongly Agree" -"Primary User-11013","Responsiveness: Resources respond quickly and act with appropriate urgency","Strongly Agree" -"Primary User-11013","Flexibility: Account team demonstrates flexibility when required","Strongly Agree" -"Primary User-11013","Is there any additional feedback you would like to provide regarding financial performance?","I have no visibility on cost and financial processes to provide feedback." -"Primary User-11013","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Strongly Agree" -"Primary User-11013","Invoicing: Invoices are timely, accurate and easy to understand","Neutral" -"Primary User-11013","Pricing: Cost is competitive","Neutral" -"Primary User-11013","Is there any additional feedback you would like to provide regarding performance?","TechX resources have the right proactive attitude I have to recognize the great job TechX FSS are doing on the region and Vikas Juneja leadership to unblock and resolve for the ACD applications." -"Primary User-11013","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Agree" -"Primary User-11014","Alignment: Vendor resources understand our business and related industry trends and needs","Neutral" -"Primary User-11014","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Neutral" -"Primary User-11014","SLA Attainment: Meets or exceeds contracted service levels","Neutral" -"Primary User-11014","Response Times: Issues and requests are addressed within stated times","Neutral" -"Primary User-11014","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Neutral" -"Primary User-11014","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Disagree" -"Primary User-11014","Pricing: Cost is competitive","Disagree" -"Primary User-11014","Invoicing: Invoices are timely, accurate and easy to understand","Neutral" -"Primary User-11014","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Neutral" -"Primary User-11014","Flexibility: Account team demonstrates flexibility when required","Neutral" -"Primary User-11014","Responsiveness: Resources respond quickly and act with appropriate urgency","Neutral" -"Primary User-11014","Communication: Supplier team is professional, approachable and clear in their communication with us","Neutral" -"Primary User-11014","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Neutral" -"Primary User-11014","Innovation: Demonstration of new products and services that will help our business","Neutral" -"Primary User-11014","Cost Optimization: Proactive delivery of cost-saving ideas","Neutral" -"Primary User-11014","Resource Turnover: Vendor manages resource turnover appropriately","Neutral" -"Primary User-11014","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","The vendor has yet to make any suggestions as to areas of improvement in the TechX SOC1 controls or processes. " -"Primary User-11014","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","We asked for SOWs for additional specialized resources. The price quoted was very expensive. We decided not to add additional resources." -"Primary User-11015","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Neutral" -"Primary User-11015","Innovation: Demonstration of new products and services that will help our business","Agree" -"Primary User-11015","Cost Optimization: Proactive delivery of cost-saving ideas","Neutral" -"Primary User-11015","Alignment: Vendor resources understand our business and related industry trends and needs","Neutral" -"Primary User-11015","Resource Turnover: Vendor manages resource turnover appropriately","Disagree" -"Primary User-11015","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Missing resources or high turn over of resources" -"Primary User-11015","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Backlog of tickets causing major delay in resolution" -"Primary User-11015","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Backlog of tickets causing major delay in resolution" -"Primary User-11015","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Junior resources in key towers. Not always available in regional time zones." -"Primary User-11015","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Recruiting the wrong resources as they are available vs have the correct skill set. Moved resources from one role to another many times just to plug a gap. Some roles still not recruited, some critical roles not TechX and contracted out." -"Primary User-11015","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Disagree" -"Primary User-11015","SLA Attainment: Meets or exceeds contracted service levels","Disagree" -"Primary User-11015","Response Times: Issues and requests are addressed within stated times","Disagree" -"Primary User-11015","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Disagree" -"Primary User-11015","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Agree" -"Primary User-11015","Is there any additional feedback you would like to provide regarding performance?","Resources in some towers are very junior without skills or knowledge. They rely on guidance or being told how to do something by their seniors. Not enough resources to operate in this model. We are also seeing resources now wearing a multi-hat, risk of burnout and turn over is real." -"Primary User-11015","Pricing: Cost is competitive","Neutral" -"Primary User-11015","Invoicing: Invoices are timely, accurate and easy to understand","Neutral" -"Primary User-11015","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Neutral" -"Primary User-11015","Flexibility: Account team demonstrates flexibility when required","Neutral" -"Primary User-11015","Responsiveness: Resources respond quickly and act with appropriate urgency","Neutral" -"Primary User-11015","Communication: Supplier team is professional, approachable and clear in their communication with us","Neutral" -"Primary User-11016","Communication: Supplier team is professional, approachable and clear in their communication with us","Agree" -"Primary User-11016","Responsiveness: Resources respond quickly and act with appropriate urgency","Neutral" -"Primary User-11016","Flexibility: Account team demonstrates flexibility when required","Agree" -"Primary User-11016","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Neutral" -"Primary User-11016","Invoicing: Invoices are timely, accurate and easy to understand","Neutral" -"Primary User-11016","Pricing: Cost is competitive","Disagree" -"Primary User-11016","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Neutral" -"Primary User-11016","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Neutral" -"Primary User-11016","Response Times: Issues and requests are addressed within stated times","Strongly Disagree" -"Primary User-11016","SLA Attainment: Meets or exceeds contracted service levels","Strongly Disagree" -"Primary User-11016","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Disagree" -"Primary User-11016","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","They are failing to lead quickly to stabilization." -"Primary User-11016","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Costs and estimates seem unreasonably high and need to be challenged everytime." -"Primary User-11016","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","While individual tasks are performed with relatively good quality. TechX seems overwhelmed with work. So tit requires many follow ups before anything is done and there is lack of responsiveness and accountability." -"Primary User-11016","Resource Turnover: Vendor manages resource turnover appropriately","Neutral" -"Primary User-11016","Alignment: Vendor resources understand our business and related industry trends and needs","Neutral" -"Primary User-11016","Cost Optimization: Proactive delivery of cost-saving ideas","Disagree" -"Primary User-11016","Innovation: Demonstration of new products and services that will help our business","Neutral" -"Primary User-11016","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Agree" -"Primary User-11017","Response Times: Issues and requests are addressed within stated times","Agree" -"Primary User-11017","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Agree" -"Primary User-11017","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Agree" -"Primary User-11017","Flexibility: Account team demonstrates flexibility when required","Agree" -"Primary User-11017","Responsiveness: Resources respond quickly and act with appropriate urgency","Agree" -"Primary User-11017","Communication: Supplier team is professional, approachable and clear in their communication with us","Agree" -"Primary User-11017","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Agree" -"Primary User-11017","Innovation: Demonstration of new products and services that will help our business","Agree" -"Primary User-11017","Cost Optimization: Proactive delivery of cost-saving ideas","Agree" -"Primary User-11017","Alignment: Vendor resources understand our business and related industry trends and needs","Neutral" -"Primary User-11017","Resource Turnover: Vendor manages resource turnover appropriately","Agree" -"Primary User-11017","Invoicing: Invoices are timely, accurate and easy to understand","Agree" -"Primary User-11017","Pricing: Cost is competitive","Agree" -"Primary User-11017","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Agree" -"Primary User-11017","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Agree" -"Primary User-11017","SLA Attainment: Meets or exceeds contracted service levels","Agree" -"Primary User-11018","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Some resources understand functional needs, but not many" -"Primary User-11018","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Overall, lack of knowledge, understanding, accountability and urgency to deliver. There are a few good people who are these things but not many" -"Primary User-11018","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","I think there are pockets of good resources who do their bet to partner. When work goes outside of one team or across several teams lack of understanding and urgency is extremely frustrating. Further, the TechX company is not reacting any differently as a partner " -"Primary User-11018","Is there any additional feedback you would like to provide regarding ${VendorName}'s thought leadership?","I have not seen any action in this area" -"Primary User-11018","Resource Turnover: Vendor manages resource turnover appropriately","Neutral" -"Primary User-11018","Alignment: Vendor resources understand our business and related industry trends and needs","Neutral" -"Primary User-11018","Cost Optimization: Proactive delivery of cost-saving ideas","Disagree" -"Primary User-11018","Innovation: Demonstration of new products and services that will help our business","Disagree" -"Primary User-11018","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Disagree" -"Primary User-11018","Communication: Supplier team is professional, approachable and clear in their communication with us","Agree" -"Primary User-11018","Responsiveness: Resources respond quickly and act with appropriate urgency","Neutral" -"Primary User-11018","Flexibility: Account team demonstrates flexibility when required","Neutral" -"Primary User-11018","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Disagree" -"Primary User-11018","Invoicing: Invoices are timely, accurate and easy to understand","Disagree" -"Primary User-11018","Pricing: Cost is competitive","Neutral" -"Primary User-11018","Is there any additional feedback you would like to provide regarding performance?","I am not seeing improvement with TechX leadership/better processes. There a pockets of good people, but not a very large change. " -"Primary User-11018","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Disagree" -"Primary User-11018","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Neutral" -"Primary User-11018","Response Times: Issues and requests are addressed within stated times","Neutral" -"Primary User-11018","SLA Attainment: Meets or exceeds contracted service levels","Disagree" -"Primary User-11018","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Neutral" -"Primary User-11019","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Agree" -"Primary User-11019","SLA Attainment: Meets or exceeds contracted service levels","Neutral" -"Primary User-11019","Response Times: Issues and requests are addressed within stated times","Agree" -"Primary User-11019","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Agree" -"Primary User-11019","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Neutral" -"Primary User-11019","Is there any additional feedback you would like to provide regarding performance?","We're working to build up the Organizational improvements with TechX onboarded. This includes the Agile SAFE implementation, Onboarding portal, roll out of the Estimation Model, etc. We are folding in best practices from TechX's COE's so improvements are being embedded as we build. " -"Primary User-11019","Pricing: Cost is competitive","Agree" -"Primary User-11019","Invoicing: Invoices are timely, accurate and easy to understand","Agree" -"Primary User-11019","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Agree" -"Primary User-11019","Flexibility: Account team demonstrates flexibility when required","Strongly Agree" -"Primary User-11019","Responsiveness: Resources respond quickly and act with appropriate urgency","Strongly Agree" -"Primary User-11019","Communication: Supplier team is professional, approachable and clear in their communication with us","Strongly Agree" -"Primary User-11019","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Strongly Agree" -"Primary User-11019","Is there any additional feedback you would like to provide about the relationship with TechX?","Great partnership to date with TechX for PMO build up. As we're building up the organization and structure - we would love to hear more about what we're doing at other clients to help level up the organization and how we can enable better collaboration across GTO and the globe. Overall, we've been impressed with the partnership. - -PS still hearing issues with UAM! This area still needs work as tickets are closed with resolution when open issues have not been addressed so SLAs can be met. " -"Primary User-11019","Innovation: Demonstration of new products and services that will help our business","Neutral" -"Primary User-11019","Cost Optimization: Proactive delivery of cost-saving ideas","Neutral" -"Primary User-11019","Alignment: Vendor resources understand our business and related industry trends and needs","Strongly Agree" -"Primary User-11019","Resource Turnover: Vendor manages resource turnover appropriately","Strongly Agree" -"Primary User-11019","Is there any additional feedback you would like to provide regarding ${VendorName}'s thought leadership?","TechX's thought leadership is strong. Leaders are experienced, seasoned communicators that bring a lot of best practice ideas to the table. Would like to see ideas transformed to plans. - Examples TCOE and CTO umbrella - ideas are great but a bit high level. Would like to see ideas transitioned to execution plans." -"Primary User-11021","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Neutral" -"Primary User-11021","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Neutral" -"Primary User-11021","Response Times: Issues and requests are addressed within stated times","Neutral" -"Primary User-11021","SLA Attainment: Meets or exceeds contracted service levels","Neutral" -"Primary User-11021","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Neutral" -"Primary User-11021","Resource Turnover: Vendor manages resource turnover appropriately","Agree" -"Primary User-11021","Alignment: Vendor resources understand our business and related industry trends and needs","Agree" -"Primary User-11021","Cost Optimization: Proactive delivery of cost-saving ideas","Neutral" -"Primary User-11021","Innovation: Demonstration of new products and services that will help our business","Neutral" -"Primary User-11021","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Agree" -"Primary User-11021","Communication: Supplier team is professional, approachable and clear in their communication with us","Agree" -"Primary User-11021","Responsiveness: Resources respond quickly and act with appropriate urgency","Neutral" -"Primary User-11021","Flexibility: Account team demonstrates flexibility when required","Agree" -"Primary User-11021","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Agree" -"Primary User-11021","Invoicing: Invoices are timely, accurate and easy to understand","Neutral" -"Primary User-11021","Pricing: Cost is competitive","Agree" -"Primary User-11022","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Agree" -"Primary User-11022","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Agree" -"Primary User-11022","SLA Attainment: Meets or exceeds contracted service levels","Agree" -"Primary User-11022","Response Times: Issues and requests are addressed within stated times","Neutral" -"Primary User-11022","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Agree" -"Primary User-11022","Pricing: Cost is competitive","Neutral" -"Primary User-11022","Invoicing: Invoices are timely, accurate and easy to understand","Neutral" -"Primary User-11022","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Neutral" -"Primary User-11022","Flexibility: Account team demonstrates flexibility when required","Strongly Agree" -"Primary User-11022","Responsiveness: Resources respond quickly and act with appropriate urgency","Agree" -"Primary User-11022","Communication: Supplier team is professional, approachable and clear in their communication with us","Agree" -"Primary User-11022","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Neutral" -"Primary User-11022","Innovation: Demonstration of new products and services that will help our business","Agree" -"Primary User-11022","Cost Optimization: Proactive delivery of cost-saving ideas","Neutral" -"Primary User-11022","Alignment: Vendor resources understand our business and related industry trends and needs","Agree" -"Primary User-11022","Resource Turnover: Vendor manages resource turnover appropriately","Agree" -"Primary User-11025","SLA Attainment: Meets or exceeds contracted service levels","Neutral" -"Primary User-11025","Response Times: Issues and requests are addressed within stated times","Neutral" -"Primary User-11025","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Neutral" -"Primary User-11025","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Neutral" -"Primary User-11025","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Agree" -"Primary User-11025","Pricing: Cost is competitive","Neutral" -"Primary User-11025","Invoicing: Invoices are timely, accurate and easy to understand","Neutral" -"Primary User-11025","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Neutral" -"Primary User-11025","Flexibility: Account team demonstrates flexibility when required","Agree" -"Primary User-11025","Responsiveness: Resources respond quickly and act with appropriate urgency","Disagree" -"Primary User-11025","Communication: Supplier team is professional, approachable and clear in their communication with us","Agree" -"Primary User-11025","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Neutral" -"Primary User-11025","Innovation: Demonstration of new products and services that will help our business","Neutral" -"Primary User-11025","Cost Optimization: Proactive delivery of cost-saving ideas","Neutral" -"Primary User-11025","Alignment: Vendor resources understand our business and related industry trends and needs","Neutral" -"Primary User-11025","Resource Turnover: Vendor manages resource turnover appropriately","Neutral" -"Primary User-11025","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","date commitments are made but early honored. give more realistic dates. we understand " -"Primary User-11026","SLA Attainment: Meets or exceeds contracted service levels","Agree" -"Primary User-11026","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Agree" -"Primary User-11026","Response Times: Issues and requests are addressed within stated times","Agree" -"Primary User-11026","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Strongly Agree" -"Primary User-11026","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Strongly Agree" -"Primary User-11026","Is there any additional feedback you would like to provide regarding performance?","need to keep focused on process improvements to drive maturity and hygiene into the environment. Also need to do a better job proactively showing the progress to the broader team so they appreciate all the hard work." -"Primary User-11026","Pricing: Cost is competitive","Agree" -"Primary User-11026","Invoicing: Invoices are timely, accurate and easy to understand","Neutral" -"Primary User-11026","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Neutral" -"Primary User-11026","Flexibility: Account team demonstrates flexibility when required","Agree" -"Primary User-11026","Responsiveness: Resources respond quickly and act with appropriate urgency","Agree" -"Primary User-11026","Communication: Supplier team is professional, approachable and clear in their communication with us","Strongly Agree" -"Primary User-11026","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Strongly Agree" -"Primary User-11026","Innovation: Demonstration of new products and services that will help our business","Neutral" -"Primary User-11026","Cost Optimization: Proactive delivery of cost-saving ideas","Neutral" -"Primary User-11026","Alignment: Vendor resources understand our business and related industry trends and needs","Neutral" -"Primary User-11026","Resource Turnover: Vendor manages resource turnover appropriately","Agree" -"Primary User-11031","Response Times: Issues and requests are addressed within stated times","Disagree" -"Primary User-11031","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Neutral" -"Primary User-11031","SLA Attainment: Meets or exceeds contracted service levels","Disagree" -"Primary User-11031","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Neutral" -"Primary User-11031","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Neutral" -"Primary User-11031","Pricing: Cost is competitive","Neutral" -"Primary User-11031","Invoicing: Invoices are timely, accurate and easy to understand","Neutral" -"Primary User-11031","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Neutral" -"Primary User-11031","Flexibility: Account team demonstrates flexibility when required","Strongly Disagree" -"Primary User-11031","Responsiveness: Resources respond quickly and act with appropriate urgency","Disagree" -"Primary User-11031","Communication: Supplier team is professional, approachable and clear in their communication with us","Disagree" -"Primary User-11031","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Disagree" -"Primary User-11031","Innovation: Demonstration of new products and services that will help our business","Neutral" -"Primary User-11031","Cost Optimization: Proactive delivery of cost-saving ideas","Neutral" -"Primary User-11031","Alignment: Vendor resources understand our business and related industry trends and needs","Neutral" -"Primary User-11031","Resource Turnover: Vendor manages resource turnover appropriately","Neutral" -"Primary User-11031","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Issues need multiple follow and escalate to get right attention. Coordination between TechX team fallback in Mattel." -"Primary User-11031","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Many time TechX don’t understand the business urgency snd don’t trust Mattel " -"Primary User-11032","Communication: Supplier team is professional, approachable and clear in their communication with us","Disagree" -"Primary User-11032","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Disagree" -"Primary User-11032","Is there any additional feedback you would like to provide about the relationship with TechX?","Team needs to be more proactive. Cannot solve over email or chat. Please set up right cadence and governance." -"Primary User-11032","Innovation: Demonstration of new products and services that will help our business","Neutral" -"Primary User-11032","Cost Optimization: Proactive delivery of cost-saving ideas","Strongly Disagree" -"Primary User-11032","Resource Turnover: Vendor manages resource turnover appropriately","Neutral" -"Primary User-11032","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Significant room for improvement after 3 months of steady state" -"Primary User-11032","Alignment: Vendor resources understand our business and related industry trends and needs","Neutral" -"Primary User-11032","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Disagree" -"Primary User-11032","SLA Attainment: Meets or exceeds contracted service levels","Disagree" -"Primary User-11032","Response Times: Issues and requests are addressed within stated times","Disagree" -"Primary User-11032","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Disagree" -"Primary User-11032","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Not demonstrated yet" -"Primary User-11032","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Governance is important. Need clear actionable metrics." -"Primary User-11032","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Significant room for improvement after 3 months of steady state" -"Primary User-11032","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Significant room for improvement after 3 months of steady state" -"Primary User-11032","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Significant room for improvement after 3 months of steady state" -"Primary User-11032","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Significant room for improvement after 3 months of steady state" -"Primary User-11032","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Disagree" -"Primary User-11032","Is there any additional feedback you would like to provide regarding performance?","Significant room for improvement after 3 months of steady state. Need more people, and be more proactive" -"Primary User-11032","Pricing: Cost is competitive","Agree" -"Primary User-11032","Invoicing: Invoices are timely, accurate and easy to understand","Agree" -"Primary User-11032","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Neutral" -"Primary User-11032","Flexibility: Account team demonstrates flexibility when required","Neutral" -"Primary User-11032","Responsiveness: Resources respond quickly and act with appropriate urgency","Neutral" -"Primary User-11033","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","This is a duplicate question." -"Primary User-11033","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Neutral" -"Primary User-11033","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","This is a duplicate question." -"Primary User-11033","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","I have not seen any evidence of TechX providing any thought leadership over and above operational implementation. I still see Mattel staff identifying opportunities, leading difficult solutions and driving needed changes." -"Primary User-11033","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","This is a duplicate question." -"Primary User-11033","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","We are still struggling with support quality in a number areas, particularly with recurring business impacting issues that are not having root cause addressed. By now, TechX should have a strong enough technical understanding to be able to support key business activities and to find permanent solutions to issues that are coming up but we're just not there yet." -"Primary User-11033","Resource Turnover: Vendor manages resource turnover appropriately","Neutral" -"Primary User-11033","Alignment: Vendor resources understand our business and related industry trends and needs","Disagree" -"Primary User-11033","Cost Optimization: Proactive delivery of cost-saving ideas","Strongly Disagree" -"Primary User-11033","Innovation: Demonstration of new products and services that will help our business","Strongly Disagree" -"Primary User-11033","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Neutral" -"Primary User-11033","Communication: Supplier team is professional, approachable and clear in their communication with us","Strongly Agree" -"Primary User-11033","Responsiveness: Resources respond quickly and act with appropriate urgency","Agree" -"Primary User-11033","Flexibility: Account team demonstrates flexibility when required","Agree" -"Primary User-11033","Is there any additional feedback you would like to provide regarding financial performance?","I don't have enough direct experience yet." -"Primary User-11033","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Neutral" -"Primary User-11033","Invoicing: Invoices are timely, accurate and easy to understand","Neutral" -"Primary User-11033","Pricing: Cost is competitive","Neutral" -"Primary User-11033","Is there any additional feedback you would like to provide regarding performance?","This survey is difficult to answer because we have good areas and bad areas within the services provided by TechX. To get useful feedback we really need to dive into each functional area or even application." -"Primary User-11033","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Strongly Disagree" -"Primary User-11033","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Disagree" -"Primary User-11033","Response Times: Issues and requests are addressed within stated times","Neutral" -"Primary User-11033","SLA Attainment: Meets or exceeds contracted service levels","Neutral" -"Primary User-11035","Alignment: Vendor resources understand our business and related industry trends and needs","Agree" -"Primary User-11035","Cost Optimization: Proactive delivery of cost-saving ideas","Neutral" -"Primary User-11035","Innovation: Demonstration of new products and services that will help our business","Agree" -"Primary User-11035","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Agree" -"Primary User-11035","Resource Turnover: Vendor manages resource turnover appropriately","Neutral" -"Primary User-11035","Communication: Supplier team is professional, approachable and clear in their communication with us","Agree" -"Primary User-11035","Responsiveness: Resources respond quickly and act with appropriate urgency","Neutral" -"Primary User-11035","Flexibility: Account team demonstrates flexibility when required","Agree" -"Primary User-11035","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Agree" -"Primary User-11035","Invoicing: Invoices are timely, accurate and easy to understand","Agree" -"Primary User-11035","Pricing: Cost is competitive","Agree" -"Primary User-11035","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Agree" -"Primary User-11035","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Neutral" -"Primary User-11035","Response Times: Issues and requests are addressed within stated times","Neutral" -"Primary User-11035","SLA Attainment: Meets or exceeds contracted service levels","Neutral" -"Primary User-11035","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Agree" -"Primary User-11036","Innovation: Demonstration of new products and services that will help our business","Disagree" -"Primary User-11036","Cost Optimization: Proactive delivery of cost-saving ideas","Neutral" -"Primary User-11036","Alignment: Vendor resources understand our business and related industry trends and needs","Agree" -"Primary User-11036","Flexibility: Account team demonstrates flexibility when required","Neutral" -"Primary User-11036","Is there any additional feedback you would like to provide regarding ${VendorName}'s thought leadership?","Too early to tell on turnover yet." -"Primary User-11036","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","My experience & touch point with TechX has been limited to QA. Still waiting to see what automation they bring to testing " -"Primary User-11036","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Neutral" -"Primary User-11036","SLA Attainment: Meets or exceeds contracted service levels","Neutral" -"Primary User-11036","Response Times: Issues and requests are addressed within stated times","Neutral" -"Primary User-11036","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Neutral" -"Primary User-11036","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Neutral" -"Primary User-11036","Is there any additional feedback you would like to provide regarding performance?","Feels like as expected for a start up & transitional period. " -"Primary User-11036","Pricing: Cost is competitive","Neutral" -"Primary User-11036","Invoicing: Invoices are timely, accurate and easy to understand","Neutral" -"Primary User-11036","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Neutral" -"Primary User-11036","Resource Turnover: Vendor manages resource turnover appropriately","Neutral" -"Primary User-11036","Responsiveness: Resources respond quickly and act with appropriate urgency","Agree" -"Primary User-11036","Communication: Supplier team is professional, approachable and clear in their communication with us","Neutral" -"Primary User-11036","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Neutral" -"Primary User-11037","Innovation: Demonstration of new products and services that will help our business","Disagree" -"Primary User-11037","Cost Optimization: Proactive delivery of cost-saving ideas","Neutral" -"Primary User-11037","Alignment: Vendor resources understand our business and related industry trends and needs","Agree" -"Primary User-11037","Resource Turnover: Vendor manages resource turnover appropriately","Strongly Agree" -"Primary User-11037","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Issues are getting addressed many weeks after they are opened. For example, the business raises and issue about incorrect data on an operational report on a specific day for a specific sale, and we get no response for many weeks. At that point, the team is having to go back in time to try to speculate on what could have happened on that day in the past. " -"Primary User-11037","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","It feels like proper KT was not performed with CTS. I have sat through issues where the team trying to do the solve is still learning on the fly for what the system is even supposed to do." -"Primary User-11037","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","It almost feels like there have been so many issues, that the team is overworked with too much on their plate. I see many escalations every day and I can just imagine if I were on the other end of the escalations, how I would handle all of the extra work." -"Primary User-11037","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","I have not seen evidence of new products and services that could help us, so I cannot comment on that." -"Primary User-11037","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Disagree" -"Primary User-11037","SLA Attainment: Meets or exceeds contracted service levels","Disagree" -"Primary User-11037","Response Times: Issues and requests are addressed within stated times","Disagree" -"Primary User-11037","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Disagree" -"Primary User-11037","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Disagree" -"Primary User-11037","Is there any additional feedback you would like to provide regarding performance?","I have not seen evidence of improved performance improvements." -"Primary User-11037","Pricing: Cost is competitive","Neutral" -"Primary User-11037","Invoicing: Invoices are timely, accurate and easy to understand","Agree" -"Primary User-11037","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Neutral" -"Primary User-11037","Flexibility: Account team demonstrates flexibility when required","Neutral" -"Primary User-11037","Responsiveness: Resources respond quickly and act with appropriate urgency","Disagree" -"Primary User-11037","Communication: Supplier team is professional, approachable and clear in their communication with us","Strongly Agree" -"Primary User-11037","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Agree" -"Primary User-11041","Pricing: Cost is competitive","Agree" -"Primary User-11041","Is there any additional feedback you would like to provide regarding ${VendorName}'s thought leadership?","It's too early to comment on resource turnover. Sustainment is important. We aren't worried about turnover, it would be interesting to see how TechX handles turnover be a seamless process. " -"Primary User-11041","Response Times: Issues and requests are addressed within stated times","Agree" -"Primary User-11041","SLA Attainment: Meets or exceeds contracted service levels","Neutral" -"Primary User-11041","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Agree" -"Primary User-11041","Is there any additional feedback you would like to provide regarding performance?","TechX Team brings lots of energy and collaboration. TechX is on the right direction." -"Primary User-11041","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Agree" -"Primary User-11041","Is there any additional feedback you would like to provide regarding financial performance?","None" -"Primary User-11041","Flexibility: Account team demonstrates flexibility when required","Neutral" -"Primary User-11041","Responsiveness: Resources respond quickly and act with appropriate urgency","Neutral" -"Primary User-11041","Communication: Supplier team is professional, approachable and clear in their communication with us","Neutral" -"Primary User-11041","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Agree" -"Primary User-11041","Innovation: Demonstration of new products and services that will help our business","Neutral" -"Primary User-11041","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Agree" -"Primary User-11041","Cost Optimization: Proactive delivery of cost-saving ideas","Neutral" -"Primary User-11041","Alignment: Vendor resources understand our business and related industry trends and needs","Agree" -"Primary User-11041","Resource Turnover: Vendor manages resource turnover appropriately","Neutral" -"Primary User-11041","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Neutral" -"Primary User-11041","Invoicing: Invoices are timely, accurate and easy to understand","Agree" -"Primary User-11043","Flexibility: Account team demonstrates flexibility when required","Neutral" -"Primary User-11043","Communication: Supplier team is professional, approachable and clear in their communication with us","Strongly Agree" -"Primary User-11043","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Agree" -"Primary User-11043","Innovation: Demonstration of new products and services that will help our business","Neutral" -"Primary User-11043","Cost Optimization: Proactive delivery of cost-saving ideas","Neutral" -"Primary User-11043","Alignment: Vendor resources understand our business and related industry trends and needs","Neutral" -"Primary User-11043","Resource Turnover: Vendor manages resource turnover appropriately","Neutral" -"Primary User-11043","SLA Attainment: Meets or exceeds contracted service levels","Disagree" -"Primary User-11043","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Neutral" -"Primary User-11043","Response Times: Issues and requests are addressed within stated times","Neutral" -"Primary User-11043","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Neutral" -"Primary User-11043","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Neutral" -"Primary User-11043","Pricing: Cost is competitive","Disagree" -"Primary User-11043","Invoicing: Invoices are timely, accurate and easy to understand","Neutral" -"Primary User-11043","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Neutral" -"Primary User-11043","Responsiveness: Resources respond quickly and act with appropriate urgency","Agree" -"Primary User-11044","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Some support teams members are fantastic, others I need to follow-up with on multiple occasions. " -"Primary User-11044","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","To me the TechX portfolio leads care only about there area of responsibility, instead of the entire Mattel portfolio. " -"Primary User-11044","Flexibility: Account team demonstrates flexibility when required","Agree" -"Primary User-11044","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Neutral" -"Primary User-11044","Invoicing: Invoices are timely, accurate and easy to understand","Neutral" -"Primary User-11044","Pricing: Cost is competitive","Neutral" -"Primary User-11044","Is there any additional feedback you would like to provide regarding performance?","TechX needs to do a better job of holistically looking at issues. A ticket will be open for an application but the real issue is with the integrations." -"Primary User-11044","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Neutral" -"Primary User-11044","SLA Attainment: Meets or exceeds contracted service levels","Disagree" -"Primary User-11044","Response Times: Issues and requests are addressed within stated times","Disagree" -"Primary User-11044","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Agree" -"Primary User-11044","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Agree" -"Primary User-11044","Responsiveness: Resources respond quickly and act with appropriate urgency","Disagree" -"Primary User-11044","Communication: Supplier team is professional, approachable and clear in their communication with us","Agree" -"Primary User-11044","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Disagree" -"Primary User-11044","Innovation: Demonstration of new products and services that will help our business","Neutral" -"Primary User-11044","Cost Optimization: Proactive delivery of cost-saving ideas","Neutral" -"Primary User-11044","Alignment: Vendor resources understand our business and related industry trends and needs","Neutral" -"Primary User-11044","Resource Turnover: Vendor manages resource turnover appropriately","Agree" -"Primary User-11044","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","Some areas they are doing well, Salesforce Admin and PIM work is a good example. The work with GBI has been a struggle to get resolutions." -"Primary User-11044","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","There is constant follow-up. When I approve the 'Network Logon Expiration Notification' it does not always happen. I get multiple emails and approve multiple times. If the user gets disabled then there is another service request I need to create." -"Primary User-8734","Cost Optimization: Proactive delivery of cost-saving ideas","Neutral" -"Primary User-8734","Alignment: Vendor resources understand our business and related industry trends and needs","Agree" -"Primary User-8734","Resource Turnover: Vendor manages resource turnover appropriately","Neutral" -"Primary User-8734","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","TechX is still working on developing mature Problem and Incident management processes" -"Primary User-8734","You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?","TechX has been behind on getting SOWs completed and invoice generation for Q1" -"Primary User-8734","Flexibility: Account team demonstrates flexibility when required","Agree" -"Primary User-8734","Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum","Agree" -"Primary User-8734","Invoicing: Invoices are timely, accurate and easy to understand","Disagree" -"Primary User-8734","Pricing: Cost is competitive","Neutral" -"Primary User-8734","Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance","Agree" -"Primary User-8734","Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of TechX resources is on-par with expectations","Agree" -"Primary User-8734","Response Times: Issues and requests are addressed within stated times","Disagree" -"Primary User-8734","SLA Attainment: Meets or exceeds contracted service levels","Neutral" -"Primary User-8734","On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates","Neutral" -"Primary User-8734","Responsiveness: Resources respond quickly and act with appropriate urgency","Neutral" -"Primary User-8734","Communication: Supplier team is professional, approachable and clear in their communication with us","Agree" -"Primary User-8734","Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos ","Strongly Agree" -"Primary User-8734","Innovation: Demonstration of new products and services that will help our business","Agree" diff --git a/index/CustomerScoreCard.json b/index/CustomerScoreCard.json new file mode 100644 index 0000000000000000000000000000000000000000..a6fb87ac4bed0a7215f3a475ec7e77cf9571b49a --- /dev/null +++ b/index/CustomerScoreCard.json @@ -0,0 +1 @@ +{"index_struct": {"__type__": "simple_dict", "__data__": {"index_id": "aed916ba-720c-4f3a-bfc8-6880c1d91f22", "summary": null, "nodes_dict": {"a326e984-e626-4861-9818-6b3d3d6f8b44": "a326e984-e626-4861-9818-6b3d3d6f8b44", "9a896790-1a80-4627-9db8-c0c234d7f77b": "9a896790-1a80-4627-9db8-c0c234d7f77b"}, "doc_id_dict": {"3c75ce43-2e10-4b85-858c-681659206346": ["a326e984-e626-4861-9818-6b3d3d6f8b44", "9a896790-1a80-4627-9db8-c0c234d7f77b"]}, "embeddings_dict": {}}}, "docstore": {"__type__": "simple", "__data__": {"docs": {"a326e984-e626-4861-9818-6b3d3d6f8b44": {"text": "Primary User-11045, On-Time Delivery: Mattel delivers by agreed-upon or contractual milestones/due dates, Strongly Agree\nPrimary User-11045, Resource Turnover: Mattel manages resource turnover appropriately, Agree\nPrimary User-11045, Alignment: Mattel is aligned with supplier strategy and support models, Agree\nPrimary User-11045, Innovation: Mattel is interested in new products and services that will bring additional value to the business. , Agree\nPrimary User-11045, Information Security: Mattel has strong cyber and data security practices, Agree\nPrimary User-11045, Cost Optimization: Mattel is reasonable when it comes to cost savings requests, Agree\nPrimary User-11045, Communication: Mattel team is professional, approachable and clear in their communications with us and are willing to share information proactively and when requested., Agree\nPrimary User-11045, Responsiveness: Mattel responds quickly and act with appropriate urgency, Agree\nPrimary User-11045, Flexibility: Mattel is flexible when required , Agree\nPrimary User-11045, Cost Control: Mattel is understanding of limitations and is open to collaboration, Agree\nPrimary User-11045, Pricing: Mattel recognizes the value of supplier products and services and conducts good business, Agree\nPrimary User-11045, Invoicing: Mattel pays bills on time consistently, Agree\nPrimary User-11045, Quality: Mattel's delivery is accurate and documentation is detailed and correct, Agree\nPrimary User-11045, Response Times: Mattel addresses issues and requests within stated times, Agree\nPrimary User-11045, SLA Attainment: Mattel follows procedures and guidelines outlined in contract, Agree\nPrimary User-11046, Response Times: Mattel addresses issues and requests within stated times, Neutral\nPrimary User-11046, Alignment: Mattel is aligned with supplier strategy and support models, Neutral\nPrimary User-11046, Resource Turnover: Mattel manages resource turnover appropriately, Agree\nPrimary User-11046, Is there any additional feedback you would like to provide regarding Mattel's thought leadership?, It's a new relationship that still requires some adjustments. In many cases, there seems to be an expectation that this relationship will work the same as the previous one, which I don't think is what we want. We need to continue to work together to form new, improved processes and ways of working.\nPrimary User-11046, Innovation: Mattel is interested in new products and services that will bring additional value to the business. , Agree\nPrimary User-11046, Information Security: Mattel has strong cyber and data security practices, Neutral\nPrimary User-11046, On-Time Delivery: Mattel delivers by agreed-upon or contractual milestones/due dates, Neutral\nPrimary User-11046, Cost Optimization: Mattel is reasonable when it comes to cost savings requests, Agree\nPrimary User-11046, Is there any additional feedback you would like to provide regarding the relationship with Mattel?, We are working through the transition and processes, so it is expected that there are bumps along the road. Some areas of the relationship have smoothed out nicely, while others still need some attention. In general, I think we are moving in the right direction.\nPrimary User-11046, Communication: Mattel team is professional, approachable and clear in their communications with us and are willing to share information proactively and when requested., Agree\nPrimary User-11046, Responsiveness: Mattel responds quickly and act with appropriate urgency, Neutral\nPrimary User-11046, Flexibility: Mattel is flexible when required , Agree\nPrimary User-11046, Cost Control: Mattel is understanding of limitations and is open to collaboration, Agree\nPrimary User-11046, Is there any additional feedback you would like to provide regarding financial performance?, Delays in approving SOWs and timesheets has impacted timely billing. \nPrimary User-11046, Pricing: Mattel recognizes the value of supplier products and services and conducts good business, Agree\nPrimary User-11046, Invoicing: Mattel pays bills on time consistently, Neutral\nPrimary User-11046, Is there any additional feedback you would like to provide regarding performance?, Documentation of legacy systems tends to be poor. Architectural documentation is mixed. Some areas are well specified while others have significant gaps.\nPrimary User-11046, Quality: Mattel's delivery is accurate and documentation is detailed and correct, Neutral\nPrimary User-11046, SLA Attainment: Mattel follows procedures and guidelines outlined in contract, Neutral\nPrimary User-11047, On-Time Delivery: Mattel delivers by agreed-upon or contractual milestones/due dates, Agree\nPrimary User-11047, SLA Attainment: Mattel follows procedures and guidelines outlined in contract, Agree\nPrimary User-11047, Response Times: Mattel addresses issues and requests within stated times, Agree\nPrimary User-11047, Quality: Mattel's delivery is accurate and documentation is detailed and correct, Agree\nPrimary User-11047, Invoicing: Mattel pays bills on time consistently, Neutral\nPrimary User-11047, Pricing: Mattel recognizes the value of supplier products and services and conducts good business, Agree\nPrimary User-11047, Cost Control: Mattel is understanding of limitations and is open to collaboration, Agree\nPrimary User-11047, Flexibility: Mattel is flexible when required , Agree\nPrimary User-11047, Responsiveness: Mattel responds quickly and act with appropriate urgency, Agree\nPrimary User-11047, Communication: Mattel team is professional, approachable and clear in their communications with us and are willing to share information proactively and when requested., Agree\nPrimary User-11047, Cost Optimization: Mattel is reasonable when it comes to cost savings requests, Agree\nPrimary User-11047, Information Security: Mattel has strong cyber and data security practices, Agree\nPrimary User-11047, Innovation: Mattel is interested in new products and services that will bring additional value to the business. , Agree\nPrimary User-11047, Alignment: Mattel is aligned with supplier strategy and support models, Agree\nPrimary User-11047, Resource Turnover: Mattel manages resource turnover appropriately, Agree\nPrimary User-11048, SLA Attainment: Mattel follows procedures and guidelines outlined in contract, Agree\nPrimary User-11048, Resource Turnover: Mattel manages resource turnover appropriately, Agree\nPrimary User-11048, Alignment: Mattel is aligned with supplier strategy and support models, Agree\nPrimary User-11048, Innovation: Mattel is interested in new products and services that will bring additional value to the business. , Agree\nPrimary User-11048, Information Security: Mattel has strong cyber and data security practices, Neutral\nPrimary User-11048, Cost Optimization: Mattel is reasonable when it comes to cost savings requests, Agree\nPrimary User-11048, Communication: Mattel team is professional, approachable and clear in their communications with us and are willing to share information proactively and when requested., Agree\nPrimary User-11048, Responsiveness: Mattel responds quickly and act with appropriate urgency, Agree\nPrimary User-11048, Flexibility: Mattel is flexible when required , Agree\nPrimary User-11048, Cost Control: Mattel is understanding of limitations and is open to collaboration, Neutral\nPrimary User-11048, Pricing: Mattel recognizes the value of supplier products and services and conducts good business, Agree\nPrimary User-11048, Invoicing: Mattel pays bills on time consistently, Neutral\nPrimary User-11048, Quality: Mattel's delivery is accurate and documentation is detailed and correct, Agree\nPrimary User-11048, Response Times: Mattel addresses issues and requests within stated times, Neutral\nPrimary User-11048, On-Time Delivery: Mattel delivers by agreed-upon or contractual milestones/due dates, Neutral\nPrimary User-11049, Cost Optimization: Mattel is reasonable when it comes to cost savings requests, Agree\nPrimary User-11049, Communication: Mattel team is professional, approachable and clear in their communications with us and are willing to share information proactively and when requested., Agree\nPrimary User-11049, Responsiveness: Mattel responds quickly and act with appropriate urgency, Agree\nPrimary User-11049, Flexibility: Mattel is flexible when required , Agree\nPrimary User-11049, Cost Control: Mattel is understanding of limitations and is open to collaboration, Agree\nPrimary User-11049, Pricing: Mattel recognizes the value of supplier products and services and conducts good business, Agree\nPrimary User-11049, Invoicing: Mattel pays bills on time consistently, Agree\nPrimary User-11049, Quality: Mattel's delivery is accurate and documentation is detailed and correct, Agree\nPrimary User-11049, Response Times: Mattel addresses issues and requests within stated times, Agree\nPrimary User-11049, SLA Attainment: Mattel follows procedures and guidelines outlined in contract, Agree\nPrimary User-11049, Resource Turnover: Mattel manages resource turnover appropriately, Agree\nPrimary User-11049, Alignment: Mattel is aligned with supplier strategy and support models, Agree\nPrimary User-11049, Innovation: Mattel is interested in new products and services that will bring additional value to the business. , Agree\nPrimary User-11049, Information Security: Mattel has strong cyber and data security practices, Agree\nPrimary User-11049, On-Time Delivery: Mattel delivers by agreed-upon or contractual milestones/due dates, Agree\nPrimary User-11050, Is there any additional feedback you would like to provide regarding performance?, No\nPrimary User-11050, Quality: Mattel's delivery is accurate and documentation is detailed and correct, Neutral\nPrimary User-11050, Response Times: Mattel addresses issues and requests within stated times, Agree\nPrimary User-11050, SLA Attainment: Mattel follows procedures and guidelines outlined in contract, Neutral\nPrimary User-11050, Alignment: Mattel is aligned with supplier strategy and support models, Strongly Agree\nPrimary User-11050, Is there any additional feedback you would like to provide regarding Mattel's thought leadership?, It is a good partnership\nPrimary User-11050, Innovation: Mattel is interested in new products and services that will bring additional value to the business. , Strongly Agree\nPrimary User-11050, On-Time Delivery: Mattel delivers by agreed-upon or contractual milestones/due dates, Agree\nPrimary User-11050, Resource Turnover: Mattel manages resource turnover appropriately, Agree\nPrimary User-11050, Information Security: Mattel has strong cyber and data security practices, Agree\nPrimary User-11050, Cost Optimization: Mattel is reasonable when it comes to cost savings requests, Agree\nPrimary User-11050, Is there any additional feedback you would like to provide regarding the relationship with Mattel?, nan\nPrimary User-11050, Communication: Mattel team is professional, approachable and clear in their communications with us and are willing to share information proactively and when requested., Agree\nPrimary User-11050, Responsiveness: Mattel responds quickly and act with appropriate urgency, Agree\nPrimary User-11050, Flexibility: Mattel is flexible when required , Strongly Agree\nPrimary User-11050, Cost Control: Mattel is understanding of limitations and is open to collaboration, Strongly Agree\nPrimary User-11050, Is there any additional feedback you would like to provide regarding financial performance?, nan\nPrimary User-11050, Pricing: Mattel recognizes the value of supplier products and services and conducts good business, Strongly Agree\nPrimary User-11050, Invoicing: Mattel pays bills on time consistently, Agree\nPrimary User-11051, Innovation: Mattel is interested in new products and services that will bring additional value to the business. , Strongly Agree\nPrimary User-11051, On-Time Delivery: Mattel delivers by agreed-upon or contractual milestones/due dates, Strongly Agree\nPrimary User-11051, SLA Attainment: Mattel follows procedures and guidelines outlined in contract, Strongly Agree\nPrimary User-11051, Response Times: Mattel addresses issues and requests within stated times, Strongly Agree\nPrimary User-11051, Quality: Mattel's delivery is accurate and documentation is detailed and correct, Neutral\nPrimary User-11051, Invoicing: Mattel pays bills on time consistently, Strongly Agree\nPrimary User-11051, Pricing: Mattel recognizes the value of supplier products and services and conducts good business, Strongly Agree\nPrimary User-11051, Cost Control: Mattel is understanding of limitations and is open to collaboration, Strongly Agree\nPrimary User-11051, Flexibility: Mattel is flexible when required , Agree\nPrimary User-11051, Responsiveness: Mattel responds quickly and act with appropriate urgency, Agree\nPrimary User-11051, Communication: Mattel team is professional, approachable and clear in their communications with us and are willing to share information proactively and when requested., Strongly Agree\nPrimary User-11051, Cost Optimization: Mattel is reasonable when it comes to cost savings requests, Agree\nPrimary User-11051, Information Security: Mattel has strong cyber and data security practices, Strongly Agree\nPrimary User-11051, Alignment: Mattel is aligned with supplier strategy and support models, Strongly Agree\nPrimary User-11051, Resource Turnover: Mattel manages resource turnover appropriately, Agree\nPrimary User-11052, Resource Turnover: Mattel manages resource turnover appropriately, Strongly Agree\nPrimary User-11052, Alignment: Mattel is aligned with supplier strategy and support models, Strongly Agree\nPrimary User-11052, Innovation: Mattel is interested in new products and services that will bring additional value to the business. , Strongly Agree\nPrimary User-11052, Information Security: Mattel has strong cyber and data security practices, Strongly Agree\nPrimary User-11052, Cost Optimization: Mattel is reasonable when it comes to cost savings requests, Strongly Agree\nPrimary User-11052, Communication: Mattel team is professional, approachable and clear in their communications with us and are willing to share information proactively and when requested., Strongly Agree\nPrimary User-11052, Responsiveness: Mattel responds quickly and act with appropriate urgency, Strongly Agree\nPrimary User-11052, Flexibility: Mattel is flexible when required , Strongly Agree\nPrimary User-11052, Cost Control: Mattel is understanding of limitations and is open to collaboration, Strongly Agree\nPrimary User-11052, Pricing: Mattel recognizes the value of supplier products and services and conducts good business, Strongly Agree\nPrimary User-11052, Invoicing: Mattel pays bills on time consistently, Strongly Agree\nPrimary User-11052, Quality: Mattel's delivery is accurate and documentation is detailed and correct, Strongly Agree\nPrimary User-11052, Response Times: Mattel addresses issues and requests within stated times, Strongly Agree\nPrimary User-11052, SLA Attainment: Mattel follows procedures and guidelines outlined in contract, Strongly Agree\nPrimary User-11052, On-Time Delivery: Mattel delivers by agreed-upon or contractual milestones/due dates, Strongly Agree\nPrimary User-11053, Innovation: Mattel is interested in new products and services that will bring additional value to the business. , Agree\nPrimary User-11053, On-Time Delivery: Mattel delivers by agreed-upon or contractual milestones/due dates, Agree\nPrimary User-11053, SLA Attainment: Mattel follows procedures and guidelines", "doc_id": "a326e984-e626-4861-9818-6b3d3d6f8b44", "embedding": null, "doc_hash": "a8da1e04ae36460086abdae86cf74b747521068abe933815ef8f5a466fd52559", "extra_info": null, "node_info": {"start": 0, "end": 15523}, "relationships": {"1": "3c75ce43-2e10-4b85-858c-681659206346", "3": "9a896790-1a80-4627-9db8-c0c234d7f77b"}, "__type__": "1"}, "9a896790-1a80-4627-9db8-c0c234d7f77b": {"text": "Mattel's delivery is accurate and documentation is detailed and correct, Strongly Agree\nPrimary User-11052, Response Times: Mattel addresses issues and requests within stated times, Strongly Agree\nPrimary User-11052, SLA Attainment: Mattel follows procedures and guidelines outlined in contract, Strongly Agree\nPrimary User-11052, On-Time Delivery: Mattel delivers by agreed-upon or contractual milestones/due dates, Strongly Agree\nPrimary User-11053, Innovation: Mattel is interested in new products and services that will bring additional value to the business. , Agree\nPrimary User-11053, On-Time Delivery: Mattel delivers by agreed-upon or contractual milestones/due dates, Agree\nPrimary User-11053, SLA Attainment: Mattel follows procedures and guidelines outlined in contract, Disagree\nPrimary User-11053, Response Times: Mattel addresses issues and requests within stated times, Agree\nPrimary User-11053, Quality: Mattel's delivery is accurate and documentation is detailed and correct, Neutral\nPrimary User-11053, Invoicing: Mattel pays bills on time consistently, Agree\nPrimary User-11053, Pricing: Mattel recognizes the value of supplier products and services and conducts good business, Agree\nPrimary User-11053, Cost Control: Mattel is understanding of limitations and is open to collaboration, Strongly Agree\nPrimary User-11053, Flexibility: Mattel is flexible when required , Agree\nPrimary User-11053, Responsiveness: Mattel responds quickly and act with appropriate urgency, Strongly Agree\nPrimary User-11053, Communication: Mattel team is professional, approachable and clear in their communications with us and are willing to share information proactively and when requested., Agree\nPrimary User-11053, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Guidelines and directions are not followed occassionally and there is a lot of avoidable noise that can be avoided otherwise. \nPrimary User-11053, Cost Optimization: Mattel is reasonable when it comes to cost savings requests, Agree\nPrimary User-11053, Information Security: Mattel has strong cyber and data security practices, Strongly Agree\nPrimary User-11053, Alignment: Mattel is aligned with supplier strategy and support models, Agree\nPrimary User-11053, Resource Turnover: Mattel manages resource turnover appropriately, Agree\nPrimary User-11054, Resource Turnover: Mattel manages resource turnover appropriately, Strongly Agree\nPrimary User-11054, On-Time Delivery: Mattel delivers by agreed-upon or contractual milestones/due dates, Strongly Agree\nPrimary User-11054, SLA Attainment: Mattel follows procedures and guidelines outlined in contract, Neutral\nPrimary User-11054, Response Times: Mattel addresses issues and requests within stated times, Strongly Agree\nPrimary User-11054, Quality: Mattel's delivery is accurate and documentation is detailed and correct, Agree\nPrimary User-11054, Invoicing: Mattel pays bills on time consistently, Strongly Agree\nPrimary User-11054, Pricing: Mattel recognizes the value of supplier products and services and conducts good business, Agree\nPrimary User-11054, Cost Control: Mattel is understanding of limitations and is open to collaboration, Strongly Agree\nPrimary User-11054, Flexibility: Mattel is flexible when required , Agree\nPrimary User-11054, Responsiveness: Mattel responds quickly and act with appropriate urgency, Strongly Agree\nPrimary User-11054, Communication: Mattel team is professional, approachable and clear in their communications with us and are willing to share information proactively and when requested., Strongly Agree\nPrimary User-11054, Cost Optimization: Mattel is reasonable when it comes to cost savings requests, Agree\nPrimary User-11054, Information Security: Mattel has strong cyber and data security practices, Strongly Agree\nPrimary User-11054, Innovation: Mattel is interested in new products and services that will bring additional value to the business. , Strongly Agree\nPrimary User-11054, Alignment: Mattel is aligned with supplier strategy and support models, Strongly Agree\nPrimary User-11055, Alignment: Mattel is aligned with supplier strategy and support models, Neutral\nPrimary User-11055, On-Time Delivery: Mattel delivers by agreed-upon or contractual milestones/due dates, Neutral\nPrimary User-11055, SLA Attainment: Mattel follows procedures and guidelines outlined in contract, Agree\nPrimary User-11055, Response Times: Mattel addresses issues and requests within stated times, Neutral\nPrimary User-11055, Quality: Mattel's delivery is accurate and documentation is detailed and correct, Neutral\nPrimary User-11055, Invoicing: Mattel pays bills on time consistently, Agree\nPrimary User-11055, Pricing: Mattel recognizes the value of supplier products and services and conducts good business, Agree\nPrimary User-11055, Cost Control: Mattel is understanding of limitations and is open to collaboration, Strongly Agree\nPrimary User-11055, Flexibility: Mattel is flexible when required , Agree\nPrimary User-11055, Responsiveness: Mattel responds quickly and act with appropriate urgency, Agree\nPrimary User-11055, Communication: Mattel team is professional, approachable and clear in their communications with us and are willing to share information proactively and when requested., Agree\nPrimary User-11055, Cost Optimization: Mattel is reasonable when it comes to cost savings requests, Neutral\nPrimary User-11055, Information Security: Mattel has strong cyber and data security practices, Agree\nPrimary User-11055, Innovation: Mattel is interested in new products and services that will bring additional value to the business. , Agree\nPrimary User-11055, Resource Turnover: Mattel manages resource turnover appropriately, Agree\nPrimary User-11056, Is there any additional feedback you would like to provide regarding Mattel's thought leadership?, With GTO 2.0 strategy Mattel is moving in the right direction. we need to do the following.\r\n\r\n1. There needs to be a tools and application rationalization process. We have too many tools and applications in the system. Some are really dated and some of the new ones like Ascend are not well tested in the market.\r\n2. We need to move to data-drive decisions and move from providing data points to providing insights\r\n3. Look for taking learnings from early adopters and successful transformations\nPrimary User-11056, On-Time Delivery: Mattel delivers by agreed-upon or contractual milestones/due dates, Neutral\nPrimary User-11056, SLA Attainment: Mattel follows procedures and guidelines outlined in contract, Agree\nPrimary User-11056, Response Times: Mattel addresses issues and requests within stated times, Agree\nPrimary User-11056, Quality: Mattel's delivery is accurate and documentation is detailed and correct, Neutral\nPrimary User-11056, Is there any additional feedback you would like to provide regarding performance?, Documentation needs a lot of help. Part of the environment was built nearly a decade ago. The outdated architecture and solution design is causing quality and accuracy issues.\nPrimary User-11056, Invoicing: Mattel pays bills on time consistently, Neutral\nPrimary User-11056, Pricing: Mattel recognizes the value of supplier products and services and conducts good business, Agree\nPrimary User-11056, Is there any additional feedback you would like to provide regarding financial performance?, I enjoy working for Mattel because everyone from SLT down to engineers are willing to collaborate and come up with the most cost efficient way to getting things done.\nPrimary User-11056, Cost Control: Mattel is understanding of limitations and is open to collaboration, Strongly Agree\nPrimary User-11056, Flexibility: Mattel is flexible when required , Agree\nPrimary User-11056, Responsiveness: Mattel responds quickly and act with appropriate urgency, Agree\nPrimary User-11056, Communication: Mattel team is professional, approachable and clear in their communications with us and are willing to share information proactively and when requested., Strongly Agree\nPrimary User-11056, Is there any additional feedback you would like to provide regarding the relationship with Mattel?, While there are roadblocks / bumps along the way, so far the relationship is has a positive vibe to it. This makes problems seem more resolvable.\nPrimary User-11056, Cost Optimization: Mattel is reasonable when it comes to cost savings requests, Agree\nPrimary User-11056, Information Security: Mattel has strong cyber and data security practices, Agree\nPrimary User-11056, Innovation: Mattel is interested in new products and services that will bring additional value to the business. , Agree\nPrimary User-11056, Alignment: Mattel is aligned with supplier strategy and support models, Agree\nPrimary User-11056, Resource Turnover: Mattel manages resource turnover appropriately, Agree\nPrimary User-11057, Information Security: Mattel has strong cyber and data security practices, Strongly Agree\nPrimary User-11057, Cost Optimization: Mattel is reasonable when it comes to cost savings requests, Agree\nPrimary User-11057, Communication: Mattel team is professional, approachable and clear in their communications with us and are willing to share information proactively and when requested., Strongly Agree\nPrimary User-11057, Responsiveness: Mattel responds quickly and act with appropriate urgency, Strongly Agree\nPrimary User-11057, Flexibility: Mattel is flexible when required , Strongly Agree\nPrimary User-11057, Cost Control: Mattel is understanding of limitations and is open to collaboration, Strongly Agree\nPrimary User-11057, Pricing: Mattel recognizes the value of supplier products and services and conducts good business, Strongly Agree\nPrimary User-11057, Invoicing: Mattel pays bills on time consistently, Agree\nPrimary User-11057, Quality: Mattel's delivery is accurate and documentation is detailed and correct, Agree\nPrimary User-11057, Response Times: Mattel addresses issues and requests within stated times, Strongly Agree\nPrimary User-11057, SLA Attainment: Mattel follows procedures and guidelines outlined in contract, Strongly Agree\nPrimary User-11057, On-Time Delivery: Mattel delivers by agreed-upon or contractual milestones/due dates, Strongly Agree\nPrimary User-11057, Resource Turnover: Mattel manages resource turnover appropriately, Agree\nPrimary User-11057, Alignment: Mattel is aligned with supplier strategy and support models, Strongly Agree\nPrimary User-11057, Innovation: Mattel is interested in new products and services that will bring additional value to the business. , Agree\nPrimary User-11058, Information Security: Mattel has strong cyber and data security practices, Agree\nPrimary User-11058, Cost Optimization: Mattel is reasonable when it comes to cost savings requests, Agree\nPrimary User-11058, Communication: Mattel team is professional, approachable and clear in their communications with us and are willing to share information proactively and when requested., Agree\nPrimary User-11058, Responsiveness: Mattel responds quickly and act with appropriate urgency, Strongly Agree\nPrimary User-11058, Flexibility: Mattel is flexible when required , Agree\nPrimary User-11058, Cost Control: Mattel is understanding of limitations and is open to collaboration, Agree\nPrimary User-11058, Pricing: Mattel recognizes the value of supplier products and services and conducts good business, Strongly Agree\nPrimary User-11058, Invoicing: Mattel pays bills on time consistently, Agree\nPrimary User-11058, Quality: Mattel's delivery is accurate and documentation is detailed and correct, Strongly Agree\nPrimary User-11058, Response Times: Mattel addresses issues and requests within stated times, Strongly Agree\nPrimary User-11058, SLA Attainment: Mattel follows procedures and guidelines outlined in contract, Strongly Agree\nPrimary User-11058, On-Time Delivery: Mattel delivers by agreed-upon or contractual milestones/due dates, Strongly Agree\nPrimary User-11058, Resource Turnover: Mattel manages resource turnover appropriately, Agree\nPrimary User-11058, Alignment: Mattel is aligned with supplier strategy and support models, Agree\nPrimary User-11058, Innovation: Mattel is interested in new products and services that will bring additional value to the business. , Agree", "doc_id": "9a896790-1a80-4627-9db8-c0c234d7f77b", "embedding": null, "doc_hash": "d43f2bfdb22f4d5b9c640ce06b554f736cbcbbe0af55cccec4d0ee947276b102", "extra_info": null, "node_info": {"start": 14763, "end": 27038}, "relationships": {"1": "3c75ce43-2e10-4b85-858c-681659206346", "2": "a326e984-e626-4861-9818-6b3d3d6f8b44"}, "__type__": "1"}}, "ref_doc_info": {"3c75ce43-2e10-4b85-858c-681659206346": {"doc_hash": "c429807f01b357c3f87f0e77e8ac39d58f3710cdb321d768d2f55af5572f9738"}, "a326e984-e626-4861-9818-6b3d3d6f8b44": {"doc_hash": "a8da1e04ae36460086abdae86cf74b747521068abe933815ef8f5a466fd52559"}, "9a896790-1a80-4627-9db8-c0c234d7f77b": {"doc_hash": "d43f2bfdb22f4d5b9c640ce06b554f736cbcbbe0af55cccec4d0ee947276b102"}}}}, "vector_store": {"__type__": "simple", "__data__": {"simple_vector_store_data_dict": {"embedding_dict": {"a326e984-e626-4861-9818-6b3d3d6f8b44": [-0.013511192984879017, -0.008560012094676495, -0.024486087262630463, -0.005801111459732056, -0.042550478130578995, -0.012162097729742527, -0.00911314133554697, 0.01675576902925968, -0.03666841983795166, -0.04349484667181969, 0.015150344930589199, 0.029059521853923798, 0.010010289959609509, -0.004590298049151897, -0.012182334437966347, 0.012094642966985703, 0.021356184035539627, -0.00914686918258667, 0.006246312987059355, -0.023244919255375862, -0.021234765648841858, 0.005932648200541735, -0.02734616957604885, 0.010826492682099342, -0.010239636525511742, 0.003672912949696183, 0.012674753554165363, -0.021545058116316795, 0.011291931383311749, 0.008904031477868557, 0.017767589539289474, -0.006586959585547447, -0.004016932565718889, 0.01707955077290535, -0.0031653158366680145, -0.00556501979008317, 0.014165504835546017, -0.0013735480606555939, 0.03407815843820572, -0.00035181886050850153, 0.0014047458535060287, 0.029464250430464745, 0.012769190594553947, -0.004401424899697304, -0.010765783488750458, 0.03758580610156059, 0.0011905769351869822, 0.009173850528895855, 0.0020270163659006357, 0.009834907948970795, 0.012270024977624416, 0.019143667072057724, -0.007278371136635542, 0.028492901474237442, -3.372739229234867e-05, -0.007622390519827604, 0.004593670833855867, 0.02622641995549202, 0.010556673631072044, -0.011622459627687931, 0.00493431743234396, -0.004883726593106985, -0.012533099390566349, 0.003359248163178563, -0.03019276075065136, -0.021558549255132675, -0.018981777131557465, -0.0037336223758757114, 0.008074337616562843, -0.012128369882702827, 0.010462237522006035, 0.03432099521160126, 0.02215215191245079, 0.023865502327680588, 0.02467495948076248, -0.0034115256275981665, 0.002629050286486745, 0.006138385273516178, -0.005966375581920147, 0.001627346733585, 0.002312012715265155, 0.004374442622065544, -0.021275239065289497, -0.001903911237604916, 0.003032092470675707, 0.02625340223312378, 0.011366130784153938, -0.0014410028234124184, -0.009302014485001564, 0.024054376408457756, 0.005720165558159351, 0.013882194645702839, 0.0365065298974514, 0.0074402629397809505, -0.01434088684618473, 0.034509867429733276, -0.0015775987412780523, 0.012553335167467594, -0.006947842892259359, -0.012762445025146008, 0.021167311817407608, 0.013288592919707298, -0.021153820678591728, 0.00022555193572770804, -0.026981914415955544, 0.020411817356944084, -0.009922598488628864, -0.02495826967060566, 0.008836576715111732, -0.032135460525751114, -0.030867310240864754, 0.01966981589794159, -0.003952850587666035, 0.005794365890324116, -0.00586519343778491, -0.0075212083756923676, -0.023231428116559982, -0.010664601810276508, 0.005069226957857609, -0.004684734623879194, 0.04867537319660187, 0.022880662232637405, 0.004229415208101273, -0.020506255328655243, 0.01707955077290535, 0.01826675608754158, 0.021396657451987267, -0.02111334726214409, 0.005612237844616175, 0.005797738675028086, 0.011028856970369816, 0.014327396638691425, -0.002892123768106103, 0.019332541152834892, -0.035724055022001266, 0.013686575926840305, -0.03809846192598343, 0.011352640576660633, -0.02336633764207363, -0.013841722160577774, -0.002462099539116025, 0.025889147073030472, 0.005527919624000788, -0.007757300045341253, 0.016013765707612038, 0.02986897900700569, 0.02870875597000122, -0.0015033985255286098, -0.017835045233368874, 0.018941303715109825, 0.005699929315596819, -0.010698328725993633, -0.007986646145582199, 0.022435462102293968, 0.016458967700600624, 0.017268424853682518, -0.007089497987180948, 0.018550066277384758, -0.02468845061957836, -0.021356184035539627, -0.004556570667773485, -0.0016265035374090075, 0.012297007255256176, -0.0012394816149026155, 0.005976493936032057, 0.02761598862707615, 0.007352571468800306, -0.0030051106587052345, 0.0050422451458871365, -0.008364393375813961, -0.007952919229865074, 0.006576841697096825, -0.023946449160575867, 0.016405003145337105, 0.005045617930591106, 0.011912515386939049, 0.009679761715233326, -0.003942732233554125, -0.026752566918730736, -0.04975464940071106, 0.010691583156585693, -0.006411577109247446, 0.00463077099993825, 0.01235097087919712, -0.018779411911964417, -0.0058112298138439655, 0.022597352042794228, 0.0077100819908082485, 0.017430316656827927, -0.008371138945221901, 0.01819930039346218, 0.009841653518378735, -0.014826561324298382, -0.02742711454629898, -0.6238218545913696, -0.018671484664082527, -0.0030152287799865007, -0.0272787157446146, 0.00618560379371047, 0.005989985074847937, 0.024324195459485054, -0.003507648827508092, -0.006161994766443968, 0.0002573821693658829, -0.012647772207856178, 0.02208469621837139, -0.013990121893584728, -0.0318116769194603, -0.00852628517895937, -0.0031653158366680145, 0.024135321378707886, -0.016067730262875557, -0.004597043618559837, 0.004779171664267778, -0.008256465196609497, 0.020479273051023483, -0.013335810974240303, -0.011561750434339046, -0.030570508912205696, -0.004286751616746187, 0.029788032174110413, -0.005268218461424112, 0.006246312987059355, 0.030651453882455826, -0.0017841790104284883, 0.014219468459486961, 0.0021332574542611837, -0.0018803020939230919, 0.04613907262682915, 0.011467313393950462, -0.033403608947992325, 0.017335878685116768, 0.0222465880215168, 0.0287897028028965, -0.034617796540260315, -0.016742277890443802, -0.002504258882254362, -0.019292067736387253, -0.0019511296413838863, 0.031973566859960556, -0.004789289552718401, -0.012222806923091412, -0.0030826835427433252, -0.003504276042804122, -0.0044486429542303085, -0.027953263372182846, -0.0009140123147517443, -0.013646102510392666, 0.02765646204352379, 0.004819644149392843, 0.005342418793588877, -0.01710653305053711, -0.009922598488628864, 0.004974790383130312, -0.010738802142441273, -0.010839983820915222, 0.010563419200479984, -0.008917522616684437, -0.0417410209774971, 0.019926143810153008, 0.004654380027204752, 0.010185672901570797, -0.0027218004688620567, -0.012013697065412998, 0.012924336828291416, 0.01509638037532568, -0.02997690625488758, -0.007804518565535545, 0.01434088684618473, -0.0014941234840080142, 0.016445476561784744, -0.02868177369236946, -0.006462168414145708, 0.005598747171461582, 0.0013651162153109908, 0.0013558411737903953, 0.018631011247634888, -0.018941303715109825, 0.017484279349446297, 0.015582054853439331, -0.005905666388571262, -0.0034165848046541214, -0.008944503962993622, -0.0022546760737895966, 0.011588731780648232, 0.014178995974361897, 0.012782681733369827, -0.029626142233610153, -0.006688141729682684, 0.02207120507955551, -0.006435186602175236, -0.010543182492256165, -0.007406535558402538, -0.02603754773736, -0.015312235802412033, 0.016027256846427917, 0.001253815833479166, 0.024445613846182823, 0.01299853716045618, 0.04457412287592888, -0.000955328403506428, 0.020020579919219017, 0.027116823941469193, -0.012060915119946003, -0.008964740671217442, -0.004755562171339989, -0.012614044360816479, -0.0077977729961276054, 0.008782613091170788, -0.026509730145335197, 0.01509638037532568, -0.005123191047459841, 0.0040000686421990395, 0.002369349356740713, -0.010536436922848225, -0.008566757664084435, 0.029356321319937706, -0.012114879675209522, 0.007804518565535545, 0.01822628267109394, 0.0025649680756032467, 0.004590298049151897, 0.032270368188619614, -0.000881971325725317, 0.021531566977500916, -0.022745752707123756, 0.010266617871820927, -0.01958886906504631, 0.030381634831428528, 0.0275485347956419, 0.013052500784397125, -0.011082821525633335, 0.017511261627078056, -0.03008483350276947, 0.007838246412575245, 0.006522877607494593, -0.004263142589479685, -0.01587885618209839, -0.020061053335666656, -0.03917773813009262, -0.0010944538516923785, -0.0061822310090065, 0.0015480873407796025, -0.00648915022611618, -0.03380833938717842, -0.014057576656341553, -0.0022226350847631693, 0.03146091103553772, -0.009032195433974266, -0.000515185936819762, -0.025538381189107895, -0.0341591015458107, 0.007500972133129835, -0.02095145545899868, -0.017889007925987244, 0.026968423277139664, -0.04862140864133835, -0.021855350583791733, 0.014947980642318726, 0.0017335879383608699, -0.013963140547275543, 0.002328876405954361, -0.017996937036514282, -0.03021974302828312, 0.0006049851072020829, -0.012668008916079998, -0.011076075956225395, 0.022732261568307877, -0.017376352101564407, 0.004006814211606979, -0.009949580766260624, 0.0013271728530526161, 0.021963277831673622, -0.0003404358576517552, -0.0012386385351419449, 0.017632680013775826, 0.0010708447080105543, -0.005409873556345701, 0.0393935926258564, -0.01678275130689144, 0.034779686480760574, 0.02502572536468506, 0.004364324733614922, 0.03313378989696503, -0.018752429634332657, -0.004428406711667776, -0.01945395953953266, -0.008883794769644737, -0.012202570214867592, -0.01687718741595745, 0.00010729526547947899, 0.010131708346307278, -0.009396451525390148, 0.029680104926228523, 0.019319050014019012, 0.009470651857554913, 0.008566757664084435, -0.0210054200142622, 0.012769190594553947, -0.0030995472334325314, 0.013302083127200603, -0.02994992397725582, 0.029491230845451355, 0.0036965222097933292, 0.021423639729619026, -0.027197768911719322, -0.011339149437844753, -0.029221411794424057, 0.016108201816678047, 0.005524546839296818, -0.009605561383068562, 0.04570736363530159, -0.013976631686091423, 0.005025381222367287, 0.015541582368314266, 0.013963140547275543, 0.03556216135621071, -0.004802780691534281, 0.0038280589506030083, -0.00973372533917427, 0.016674822196364403, 0.0013212705962359905, 0.029707087203860283, -0.006006848532706499, 0.010273363441228867, 0.01829373836517334, 0.024148812517523766, 0.007838246412575245, 0.006516132038086653, 0.006462168414145708, 0.03933963179588318, -0.010961402207612991, 0.0073930444195866585, -0.0007331491797231138, 0.012708481401205063, 0.025592345744371414, 0.013841722160577774, -0.002180475974455476, -0.005045617930591106, -0.023919466882944107, 0.022435462102293968, 0.01846911944448948, -0.031973566859960556, -0.010192417539656162, 0.008553266525268555, -0.012276770547032356, -0.02490430697798729, -0.020195962861180305, -0.0011981655843555927, 0.001752138021402061, 0.01687718741595745, 0.01512336265295744, 0.023042554035782814, 0.017619188874959946, -0.00045194706763140857, 0.0018735566409304738, 0.0170120969414711, -0.012175588868558407, 0.012748953886330128, 0.005939393769949675, -0.011528022587299347, -0.031056182458996773, 0.004590298049151897, -0.020641164854168892, 0.004860117100179195, 0.021639494225382805, 0.015217799693346024, -0.019413486123085022, -0.009511124342679977, 0.014772597700357437, 0.015163835138082504, -0.006580214016139507, -0.001895479392260313, 0.0237575750797987, -0.022907644510269165, -0.02997690625488758, 0.01699860580265522, 0.029841996729373932, 0.004984908737242222, 0.0023069535382092, -0.006526250392198563, 0.006054067052900791, -0.014098050072789192, 0.008769121952354908, 0.01724144257605076, -0.01714700646698475, -0.006016966886818409, 0.013275101780891418, 0.014664670452475548, 0.020317381247878075, 0.03777467831969261, -0.027022385969758034, -0.020384835079312325, -0.012620789930224419, 0.033268701285123825, 0.0050354995764791965, -0.05245283991098404, -0.010765783488750458, 0.03364644572138786, -0.01038803718984127, -0.021464113146066666, -0.030678436160087585, -0.005352537147700787, -0.007156952749937773, 0.010995130054652691, -0.004920826759189367, -0.03877301141619682, -0.02211167849600315, 0.013261610642075539, 0.01377426739782095, 0.00036973654641769826, 0.0021619258914142847, 0.008586994372308254, 0.009160359390079975, -0.024162303656339645, 0.012465644627809525, -0.005821347702294588, 0.026847004890441895, 0.09729678183794022, 0.03124505653977394, 0.004465506877750158, 0.03521139919757843, -0.03162280470132828, 0.010077744722366333, -0.017484279349446297, -0.011413349770009518, 0.03680333122611046, 0.012216061353683472, 0.006377849727869034, -0.00045236863661557436, 0.00027066233451478183, -0.011366130784153938, 0.00586182065308094, 0.005450346507132053, 0.0066206869669258595, 0.013585393317043781, 0.017821554094552994, -0.005989985074847937, 0.0025379862636327744, 0.0012673067394644022, 0.026509730145335197, 0.007770791184157133, 0.043899573385715485, 0.002462099539116025, 0.0287897028028965, 0.029545195400714874, -0.0027268596459180117, -0.03005785122513771, 0.009942835196852684, -0.00209784391336143, -0.027170786634087563, 0.012020442634820938, -0.027953263372182846, 0.026577185839414597, 0.01691766083240509, -0.012843390926718712, 3.0776245694141835e-05, 0.0024553542025387287, 0.009511124342679977, 0.028304027393460274, 0.0005881214165128767, -0.02760249748826027, 0.013963140547275543, -0.0182532649487257, -0.007824755273759365, -0.004296869970858097, -0.005136681720614433, -0.021909313276410103, 0.02221960574388504, -0.012202570214867592, -0.03685729578137398, 0.004883726593106985, -0.003909004852175713, 0.0037606041878461838, -0.019885670393705368, -0.012054169550538063, -0.014017104171216488, -0.01582489162683487, -0.014286923222243786, -0.01100862119346857, 0.008256465196609497, -0.04176800325512886, 0.010590401478111744, -0.0065329959616065025, -0.01948094181716442, -0.012802918441593647, -0.014583724550902843, 0.019076213240623474, -0.021518075838685036, -0.002666150452569127, -0.029140466824173927, 0.020074544474482536, -0.0032951661851257086, 0.011811332777142525, -0.003490785136818886, -0.005662829149514437, 0.016135184094309807, 0.021679967641830444, -0.009713488630950451, -0.02470194175839424, -0.005055736284703016, -0.023865502327680588, -0.0021197665482759476, 0.008121555671095848, -0.0059495121240615845, -0.007089497987180948, -0.018563557416200638, 0.022624334320425987, 0.0034283893182873726, -0.0071232253685593605, -0.008404865860939026, -0.005767384078353643, -0.0025919501204043627, 0.025686781853437424, -0.0022546760737895966, 0.017484279349446297, -0.011278440244495869, -0.01567649282515049, -0.02986897900700569, -0.018927812576293945, 0.0005704145296476781, -0.002035448094829917, -0.004887098912149668, 0.0014696711441501975, -0.018819885328412056, -0.01250611711293459, -0.019089704379439354, -0.025295544415712357, 0.013895685784518719, -0.025686781853437424, -0.013841722160577774, -0.009167104959487915, -0.021787894889712334, 0.0004304458561819047, 0.01585187390446663, 0.050375234335660934, 0.025376489385962486, -0.017996937036514282, -3.37800920533482e-05, -0.030381634831428528, 0.0443582646548748, 0.0157034732401371, -0.010354309342801571, 0.02084352821111679, 0.014098050072789192, -0.003092801896855235, -0.026887476444244385, 0.01985868811607361, -0.020627673715353012, 0.012128369882702827, 0.01582489162683487, -0.012182334437966347, -0.026536712422966957, -0.005150172859430313, 0.0009038941352628171, 0.00022787069610785693, -0.013652848079800606, -0.0021113348193466663, -0.027143804356455803, 0.014017104171216488, -0.0028533374425023794, -0.027184277772903442, 0.03307982534170151, -0.028169117867946625, -0.02614547498524189, 0.016593877226114273, -0.0050422451458871365, 0.03011181578040123, -0.00913337804377079, 0.016013765707612038, -0.012796172872185707, 0.012829899787902832, 0.008222738280892372, -0.012796172872185707, -0.004037168808281422, -0.011932751163840294, 0.04330597072839737, 0.02230055257678032, 0.04066174477338791, -0.006789323873817921, 0.0065329959616065025, -0.0008372825104743242, 0.007109734229743481, -0.017956463620066643, 0.011818078346550465, -0.0013904117513448, -0.008701667189598083, 0.00650601414963603, 0.008897285908460617, 0.02095145545899868, 0.01439485140144825, 0.02595660090446472, 0.003841550089418888, 0.02209818735718727, -0.03259415179491043, -0.033295679837465286, -0.0362367108464241, -0.025174126029014587, 0.0026155593805015087, 0.00041505772969685495, -0.020195962861180305, -0.004337342455983162, -0.05930624529719353, 0.01373379398137331, 0.019939634948968887, 0.012587063014507294, 0.012755699455738068, 0.01821279153227806, 0.006070930510759354, -0.017308898270130157, 0.009673016145825386, -0.00524123664945364, 0.035939909517765045, -0.006013594102114439, -0.020654654130339622, -0.03834129869937897, 0.005821347702294588, 0.004806153476238251, -0.009794434532523155, 0.03159582242369652, 0.006843287963420153, -0.014664670452475548, 0.009659525007009506, 0.008438593707978725, -0.04551848769187927, -0.01683671399950981, -0.0007382082985714078, -0.019089704379439354, 0.00377746787853539, -0.035724055022001266, -0.021477604284882545, -0.007055770605802536, -0.01438136026263237, 0.00188704754691571, -0.007291862275451422, 0.015433655120432377, -0.02339331991970539, -0.03620972856879234, 0.027022385969758034, -0.01249262597411871, 0.03755882382392883, 0.016593877226114273, 0.019116686657071114, -0.0004789289669133723, 0.007143461611121893, 0.004597043618559837, -0.015541582368314266, -0.010738802142441273, 0.020681636407971382, 0.023029062896966934, 0.025929618626832962, -0.00588543014600873, -0.026658130809664726, 0.008654449135065079, 0.02494477853178978, -0.006070930510759354, -0.011676423251628876, 0.01175062358379364, 0.024162303656339645, 0.006576841697096825, -0.011157020926475525, 0.0027116823475807905, -0.028250062838196754, 0.005463837645947933, -0.017659662291407585, -0.005794365890324116, -0.0076628634706139565, -0.016283584758639336, -0.011696659959852695, 0.05083392560482025, 0.004121487494558096, 0.022556880488991737, -0.004607161972671747, -0.016607368364930153, 0.007635881658643484, 0.003484039567410946, 0.012580317445099354, -0.007055770605802536, -0.02637482061982155, 0.017592208459973335, -0.0028718875255435705, 0.029302358627319336, 0.006047321483492851, 0.013072737492620945, 0.006340749561786652, -0.00492757186293602, 0.002782509895041585, 0.030435599386692047, 0.006597077939659357, -0.007318844087421894, 0.024013902992010117, -0.009592070244252682, 0.0044486429542303085, -0.020128507167100906, -0.0027892552316188812, 0.007602154277265072, -0.02231404185295105, -0.016728786751627922, 0.01834770105779171, 0.0031079791951924562, -0.009470651857554913, 0.0005071756895631552, 0.0003261017263866961, -0.025362998247146606, 0.02876272052526474, -0.007062515709549189, 0.02738664299249649, -0.02634783834218979, -0.0076628634706139565, 0.017524752765893936, 0.008350902236998081, -0.008431848138570786, -0.014219468459486961, -0.012587063014507294, -0.00912663247436285, 0.0014249823288992047, -0.00524123664945364, 0.02735966071486473, 0.0034519985783845186, 4.2528132325969636e-05, -0.01950792409479618, -0.004212551284581423, -0.006465541198849678, 0.018900830298662186, 0.023878993466496468, -0.011271694675087929, -0.02367663010954857, 0.012748953886330128, 0.03370041027665138, 0.02084352821111679, -0.0034435668494552374, -0.008533029817044735, -0.001892106723971665, 0.006644296459853649, 7.931206710054539e-06, 0.015568564645946026, -0.0015624214429408312, -0.001315368339419365, 0.004758934956043959, 0.00648915022611618, -0.007676354609429836, -0.004917453974485397, 0.018037408590316772, -0.006593705154955387, 0.00789221003651619, -0.002976442454382777, -0.027089841663837433, -0.018657993525266647, -0.0017690017120912671, 0.006131639704108238, -0.030705418437719345, -0.0020101526752114296, -0.03278302401304245, -0.00617548543959856, -0.006114776246249676, 0.014435323886573315, -0.01980472542345524, -0.015231289900839329, 0.01710653305053711, -0.00021922805171925575, 0.006630805321037769, 0.03291793540120125, -0.00911988690495491, -0.026685113087296486, 0.003359248163178563, -0.016270093619823456, -0.02876272052526474, -0.02107287384569645, -0.004536334425210953, 0.020034071058034897, 0.005099581554532051, -0.018077882006764412, -0.009288524277508259, -0.026577185839414597, -0.037369951605796814, -0.02232753299176693, -0.014516269788146019, 0.024270230904221535, 0.014664670452475548, -0.007939428091049194, -0.0054975650273263454, 0.0009839966660365462, -0.01371355727314949, 0.019872179254889488, -0.033322662115097046, -0.00461727986112237, 0.020627673715353012, -0.013592138886451721, 0.027899298816919327, 0.008431848138570786, -0.03305284306406975, -0.0075279539451003075, 0.03523837774991989, -0.012020442634820938, -0.0022411851678043604, 0.0064824046567082405, 0.01500194426625967, -0.012249789200723171, 0.001026999088935554, 0.030570508912205696, 0.0045059798285365105, 0.005301945842802525, 0.037073150277137756, -0.015231289900839329, 0.008162029087543488, -0.0019426977960392833, -0.006337376777082682, -0.012006951496005058, -0.0031417065765708685, 0.0169446412473917, 0.006907369941473007, 0.011022111400961876, 0.0013668026076629758, 0.007049025036394596, -0.016121692955493927, -0.017835045233368874, 0.013544920831918716, 0.013484211638569832, 0.006920861080288887, 0.02493128925561905, -0.002192280488088727, 0.003642558353021741, 0.022853681817650795, 0.020007088780403137, -0.0011332404101267457, -0.014246450737118721, 0.0071299709379673, -0.015285254456102848, 0.0038651591166853905, 0.004731953144073486, -0.0016425240319222212, -0.007224407512694597, -0.019373014569282532, 0.012863627634942532, 0.00139378453604877, -0.03801751509308815, 0.010131708346307278, -0.018981777131557465, -0.017214460298419, 0.009814671240746975, -0.0197642520070076, -0.0031248428858816624, 0.005902293603867292, -0.003381171030923724, 0.011035602539777756, -0.001103728893212974, -0.0157034732401371, -0.015285254456102848, -0.023811539635062218, -0.006016966886818409, -0.0031619430519640446, 0.02613198384642601, -0.019332541152834892, 0.006246312987059355, 0.2104589343070984, -0.008667939342558384, -0.004205805715173483, 0.01579791121184826, -0.017376352101564407, -0.017646171152591705, 0.017362860962748528, -0.0039056320674717426, -0.006880388129502535, 0.0012681499356403947, 0.01186529640108347, 0.04335993528366089, 0.0184556283056736, 0.013801248744130135, -0.0017352743307128549, -0.031541857868433, -0.04103948920965195, -0.016270093619823456, -0.013059246353805065, 0.013065991923213005, 0.033241719007492065, -0.010664601810276508, 0.021720441058278084, -0.026941440999507904, 0.01823977380990982, 0.01177086029201746, -0.002472217893227935, -0.004020305350422859, 0.033160772174596786, 0.02479637786746025, -0.017322389408946037, -0.00852628517895937, 0.01709304191172123, 0.018550066277384758, -0.007102988660335541, -0.015460636466741562, -0.011022111400961876, -0.01583838276565075, 0.020708618685603142, -0.00988887157291174, 0.006310394965112209, -0.003195670433342457, 0.021963277831673622, -0.02355520986020565, 0.014947980642318726, 0.01676926016807556, -0.006549859419465065, -0.0031855523120611906, -0.0011197493877261877, 0.029086502268910408, -0.01171689573675394, 0.016715295612812042, -0.0022765989415347576, 0.0009156987071037292, -0.0008212620159611106, 0.045194704085588455, 0.010111472569406033, -0.006050694268196821, -0.0157709289342165, 0.021720441058278084, -0.004833135288208723, 0.016243111342191696, 0.004148469306528568, 0.007305352948606014, -0.011278440244495869, 0.0024772770702838898, -0.024148812517523766, -0.0031282156705856323, 0.007919191382825375, -0.025160634890198708, -0.004883726593106985, -0.024486087262630463, -0.016013765707612038, 0.01513685379177332, -0.013814739882946014, -0.03302586078643799, 0.018523083999753, 0.023163972422480583, 0.022637825459241867, 0.020641164854168892, -0.014111541211605072, -0.0069343517534434795, -0.029032539576292038, -0.022543389350175858, -0.005190645810216665, -0.016364531591534615, 0.016607368364930153, 0.003374425694346428, -0.01496147084981203, -0.008998468518257141, -0.00619572214782238, -0.004876981023699045, -0.024486087262630463, -0.00020594788657035679, -0.014017104171216488, -0.01060389168560505, 0.010084490291774273, 0.00990236271172762, -0.009059177711606026, -0.011076075956225395, -0.016256602481007576, 0.0754953920841217, 0.02077607437968254, 0.03297189995646477, -0.03923170268535614, -0.015244781039655209, 0.00461053429171443, 0.037504859268665314, -0.021990260109305382, -0.014152013696730137, 0.01691766083240509, -0.026469256728887558, 0.004280006047338247, -0.009200832806527615, -0.00042159241274930537, 0.03418608382344246, 0.0035751035902649164, 0.0033761118538677692, 0.0181858092546463, -0.003976459614932537, 0.015298744663596153, -0.02601056545972824, 0.015474127605557442, 0.008769121952354908, -0.014772597700357437, -0.054233647882938385, -0.014205977320671082, -0.0015784419374540448, 0.012283516116440296, -0.0010244695004075766, -0.005328928120434284, -0.025713764131069183, 0.025187617167830467, -0.012688244692981243, -0.015973292291164398, 0.0016231307527050376, 0.007028788328170776, 0.01952141523361206, 0.005484073888510466, 0.012162097729742527, 0.012735463678836823, 0.0197642520070076, 0.007615644950419664, -0.0005206665955483913, 0.011258203536272049, -0.013072737492620945, -0.01115027628839016, 0.014125031419098377, -0.012047424912452698, -0.02892461232841015, -0.00525135500356555, 0.025686781853437424, 0.0010506082326173782, -0.023096518591046333, 0.03426703065633774, 0.0026105002034455538, -0.016472458839416504, -0.03353852033615112, 0.0005206665955483913, 0.009511124342679977, -0.04481695964932442, -0.016162166371941566, 0.03175771236419678, 0.022556880488991737, -0.023083027452230453, 0.017565226182341576, -0.1710653305053711, 0.018523083999753, 0.020249925553798676, -0.006708378437906504, 0.00042285717790946364, 0.010570164769887924, 0.004731953144073486, 0.014138522557914257, -0.025416962802410126, -0.005028754007071257, 0.03958246856927872, 0.00913337804377079, -0.0392586849629879, -0.019008757546544075, 0.012823154218494892, 0.017349369823932648, -0.01712002418935299, 0.023271901533007622, 0.01968330703675747, 0.027683444321155548, 0.020654654130339622, -0.02498525194823742, -0.00847232062369585, 0.010543182492256165, 0.01966981589794159, 0.0007196582155302167, -0.013389774598181248, 0.04290124401450157, 0.013814739882946014, -0.007372807711362839, -0.012128369882702827, -0.04190291091799736, 0.03178469464182854, 0.0009898989228531718, 0.01563601940870285, 0.008425102569162846, -0.009470651857554913, -0.005652710795402527, -0.008654449135065079, 0.04535659775137901, 0.00325469346717, 0.00294102868065238, 0.015919329598546028, 0.026873985305428505, -0.011635950766503811, 0.00023187581973616034, 0.025430453941226006, 0.013490957207977772, -0.024148812517523766, -0.05369400978088379, -0.009497633203864098, -0.00586856622248888, -0.011831569485366344, -0.008344156667590141, 0.01371355727314949, 0.014907507225871086, 0.010246382094919682, 0.010320582427084446, -0.008640957996249199, -0.009679761715233326, -0.010927675291895866, -0.001752138021402061, 0.03397022932767868, -0.010630873963236809, -0.0008979918202385306, -0.042577460408210754, -0.013207647018134594, 0.012668008916079998, -0.029032539576292038, -0.004283378832042217, -0.006242940202355385, -0.0016610741149634123, 0.0274810791015625, 0.002204085001721978, 0.004590298049151897, 0.007838246412575245, 0.014408341608941555, 0.011291931383311749, 0.012674753554165363, 0.017484279349446297, -0.004209178499877453, 0.0009924285113811493, -0.0050894636660814285, -0.01299853716045618, -0.038638100028038025, -0.012816408649086952, 0.0022597352508455515, 0.0019123430829495192, 0.002178789582103491, -0.0017049197340384126, 0.011514531448483467, -0.036020856350660324, -0.011440331116318703, -0.037342969328165054, 0.023285390809178352, -0.0017386471154168248, 0.01698511466383934, -0.007669609040021896, 0.012870373204350471, 0.011474058963358402, -0.012762445025146008, -0.010786020196974277, 0.012330734170973301, 0.015919329598546028, 0.003909004852175713, -0.001557362382300198, 5.881214019609615e-05, -0.002957892371341586, 0.027791371569037437, -0.01176411472260952, -0.037369951605796814, -0.0005514428485184908, 0.017835045233368874, 0.01952141523361206, -0.009423433803021908, 0.02765646204352379, -0.0007120695663616061, 0.015555073507130146, 0.014084558933973312, -0.011979970149695873, 0.054206665605306625, -0.02347426488995552, -0.009807925671339035, 0.021437130868434906, -0.006738733034580946, 0.0037066403310745955, -0.09880776703357697, -0.0024148812517523766, -0.014583724550902843, 0.005430110264569521, -0.03672238439321518, -0.00908615905791521, 0.0018297110218554735, 0.01436786912381649, 0.003271557157859206, 0.016162166371941566, 0.0036290674470365047, -0.023258410394191742, -0.01500194426625967, -0.0053626555018126965, 0.03836828097701073, -0.019319050014019012, 0.021612513810396194, -0.0015362827107310295, -0.04265840724110603, 0.03631765767931938, 0.00649589579552412, -0.02339331991970539, -0.008863558992743492, -0.007406535558402538, -0.025147143751382828, -0.018941303715109825, -0.041120436042547226, -0.0047724260948598385, -0.0111232940107584, 0.02203073352575302, 0.01834770105779171, -0.018941303715109825, 0.03297189995646477, -0.034752704203128815, -0.007919191382825375, -0.012256534770131111, -0.0396634116768837, -0.01939999684691429, 0.0015539895975962281, -0.026455765590071678, -0.0014882212271913886, 0.012641026638448238, -0.019103195518255234, -0.017403334379196167, 0.0016012080013751984, -0.014583724550902843, 0.0010590400779619813, 0.015177326276898384, 0.019426977261900902, -0.01957537792623043, -0.019818216562271118, -0.013814739882946014, -0.03620972856879234, -0.014556742273271084, 0.027035877108573914, 0.001402216381393373, 0.010145199485123158, -0.012924336828291416, -0.008708412759006023, 0.0009561715414747596, -0.010246382094919682, -0.028492901474237442, -0.02509317919611931, 0.006138385273516178, 0.028196100145578384, -0.014583724550902843, -0.0012276771012693644, -0.0029460876248776913, 0.0025143770035356283, -0.007743809372186661, -0.016216130927205086, 0.0013794503174722195, -0.01702558808028698, 0.0062193311750888824, -0.01813184656202793, 0.00040283153066411614, -0.008135046809911728, -0.026455765590071678, 0.02203073352575302, -0.02221960574388504, -0.009774197824299335, -0.017308898270130157, 0.021180802956223488, -0.029329340904951096, 0.009504378773272038, -0.007413280662149191, -0.012573571875691414, -0.007177188992500305, 0.0031838659197092056, -0.03960945084691048, -0.012863627634942532, 0.0028331009671092033, 0.014030595310032368, -0.026927949860692024, -0.012614044360816479, 0.02622641995549202, -0.0025868909433484077, -0.016351040452718735, 0.03510347008705139, -0.004843253642320633, -0.003527885302901268, -0.022637825459241867, -0.04473601281642914, 0.03812544420361519, 0.010158690623939037, 0.017713626846671104, -0.019184140488505363, -0.0068028150126338005, 0.018846867606043816, -0.016108201816678047, -0.003817940829321742, 0.0068534063175320625, -0.004138350952416658, 0.019993597641587257, -0.03432099521160126, 0.002957892371341586, -0.03564310818910599, -0.006516132038086653, 0.011986714787781239, -0.0077100819908082485, 0.0018263382371515036, 0.0023575446102768183, 0.003986577969044447, -0.016229622066020966, 0.008984977379441261, 0.017848536372184753, 0.013841722160577774, 0.02725173346698284, -0.02462099678814411, 0.034644778817892075, -0.0008929327013902366, 0.01435437798500061, 0.04163309186697006, -0.019359523430466652, -0.0077910274267196655, 0.01819930039346218, -0.028465919196605682, -0.008694921620190144, -0.0034604305401444435, 0.009929344058036804, 0.006742105819284916, 0.015042416751384735, -0.014853543601930141, -0.015055907890200615, -0.02230055257678032, -0.030462579801678658, 0.006728614680469036, -0.002485708799213171, -0.01841515675187111, -0.00787197332829237, -0.009376214817166328, 0.031110147014260292, -0.0035616126842796803, 0.004168705549091101, -0.008323919959366322, -0.004863489884883165, 0.02101891115307808, -0.015946311876177788, 0.025551872327923775, 0.01595980115234852, 0.02887064777314663, -0.004836508072912693, 0.015393181703984737, -0.015352709218859673, -0.0021349438466131687, -0.042712368071079254, -0.021895822137594223, 0.003347443649545312, -0.028250062838196754, 0.023838520050048828, -0.006762342061847448, -0.020263416692614555, -0.015595545992255211, -0.00036235866718925536, -0.007109734229743481, 0.02740013413131237, -0.008108065463602543, -0.002345740096643567, 0.02333935536444187, -0.00293765589594841, -0.042604442685842514, 0.02092447504401207, 0.009686507284641266, -0.009416688233613968, -0.021302221342921257, 0.01172364130616188, 0.007588663138449192, -0.006394713651388884, -0.019022248685359955, 0.014516269788146019, -0.008917522616684437, 0.00914686918258667, 0.001253815833479166, 0.0014840052463114262, 0.0003183022781740874, -0.017929481342434883, -0.0037302495911717415, 0.045167725533246994, -0.010017035529017448, 0.013706812635064125, 0.029221411794424057, 0.010968147777020931, 0.0022462443448603153, -0.019116686657071114, -0.0006366045563481748, -0.04805478826165199, -0.01957537792623043, 0.02200375124812126, -0.043953537940979004, -0.021572040393948555, 0.007581917569041252, 0.02997690625488758, 0.007467244751751423, -0.004387933760881424, 0.0342940129339695, 0.010300345718860626, -0.029221411794424057, 0.018927812576293945, -0.00913337804377079, -0.014583724550902843, -0.0337543748319149, 0.032135460525751114, 0.004280006047338247, 0.0033120298758149147, 0.037046167999506, -0.011062584817409515, 0.027845334261655807, 0.020371345803141594, 0.008202501572668552, -0.020641164854168892, 0.000165475023095496, -0.012802918441593647, 0.009011959657073021, -0.0038246861658990383, -0.004785916768014431, -0.005345791578292847, -0.00909290462732315, -0.016431985422968864, -0.016647839918732643, 0.035966891795396805, 0.013963140547275543, 0.0652962327003479, 0.03240527957677841, -0.008984977379441261, 0.00028520726482383907, 8.557008186471649e-06, 0.011892278678715229, 0.03531932458281517, 0.007919191382825375, -0.014556742273271084, -0.020411817356944084, -0.010860220529139042, -0.0034351348876953125, 0.006229449529200792, -0.03537328913807869, -0.011210985481739044, -0.012654517777264118, 0.0020236435811966658, 0.0262399110943079, -0.031838659197092056, -0.02638831175863743, 0.01695813238620758, -0.004532961640506983, 0.01311320997774601, -0.0034739214461296797, -0.00555490143597126, -0.016580386087298393, 0.0010640992550179362, -0.022934626787900925, -0.012195824645459652, -0.04870235547423363, 0.013571902178227901, 0.009362723678350449, -0.009403197094798088, -0.01979123428463936, -0.015528091229498386, 0.0007799459272064269, -0.0181858092546463, -0.017632680013775826, 0.0014224527403712273, 0.00588205736130476, 0.005973121151328087, 0.006586959585547447, -0.011372876353561878, -0.008054100908339024, -0.02096494659781456, -0.006674651056528091, 0.0049005900509655476, -0.017214460298419, -0.006047321483492851], "9a896790-1a80-4627-9db8-c0c234d7f77b": [-0.013460719957947731, 0.006242652889341116, -0.03220885992050171, -0.010352848097682, -0.035222552716732025, -0.006683270912617445, 0.0011318172328174114, 0.010003044269979, -0.03659486025571823, -0.03907039761543274, 0.012606391683220863, 0.030998000875115395, 0.011974054388701916, -0.006222472060471773, -0.01091791596263647, 0.007043165620416403, 0.02370593696832657, -0.0038007530383765697, 0.004957796540111303, -0.017544006928801537, -0.016521504148840904, -0.00045449272147379816, -0.023073598742485046, 0.009633059613406658, -0.006982622668147087, -0.0030591017566621304, 0.011388805694878101, -0.027378875762224197, 0.0017170659266412258, 0.020772965624928474, 0.00983486883342266, -0.01692512258887291, -0.01684439927339554, 0.02092096023261547, -0.0068581728264689445, -0.009505245834589005, 0.011496436782181263, -0.007897494360804558, 0.02809193730354309, 0.0014984385343268514, 0.0025142149534076452, 0.029921680688858032, 0.016386963427066803, -0.005364779848605394, -0.011402259580790997, 0.03341972082853317, 0.0010031634010374546, 0.010817010886967182, -0.00582221569493413, 0.003894930938258767, 0.019831186160445213, 0.023019783198833466, -0.008428926579654217, 0.021499481052160263, 0.002194682601839304, -0.017463283613324165, 0.0038041165098547935, 0.015794988721609116, 0.014113239012658596, -0.012000962160527706, 0.0037738450337201357, 0.0015018020058050752, -0.01825706847012043, 0.0016741813160479069, -0.02558949589729309, -0.02456699125468731, -0.009686875157058239, -0.0021324579138308764, 0.009592697024345398, -0.01255930308252573, 0.015176104381680489, 0.03589525446295738, 0.02206454798579216, 0.022441260516643524, 0.02162056788802147, -0.002525987336412072, 0.007117162458598614, 0.007164251524955034, -0.009451430290937424, 0.0071037085726857185, 0.003666213247925043, 0.008913270197808743, -0.017705455422401428, 0.005465684924274683, 0.007796589285135269, 0.020248260349035263, 0.012606391683220863, -0.0014933932106941938, -0.019293026998639107, 0.029491152614355087, -0.0015673901652917266, 0.008529831655323505, 0.031240172684192657, 0.01825706847012043, -7.5613020271703135e-06, 0.037859536707401276, 0.00531432731077075, 0.02581821382045746, -0.01689821481704712, -0.006336831022053957, 0.020799873396754265, 0.006975895259529352, -0.020019542425870895, -0.004116922151297331, -0.024486267939209938, 0.011119725182652473, -0.008563466370105743, -0.026383280754089355, 0.009081445634365082, -0.03726756200194359, -0.026558183133602142, 0.020436616614460945, -0.0069153523072600365, 0.001292424276471138, -0.008011853322386742, -0.005590134300291538, -0.022104911506175995, -0.01823016069829464, 0.0009897093987092376, -0.007749500218778849, 0.036245059221982956, 0.02793049067258835, 0.01617169938981533, -0.011039001867175102, 0.022764155641198158, 0.009478338062763214, 0.011765517294406891, -0.020665332674980164, 0.007238248363137245, 0.011334989219903946, 0.004877072758972645, 0.02962569333612919, -0.007796589285135269, 0.014207417145371437, -0.03562617301940918, 0.009162168949842453, -0.04407528042793274, 0.022293265908956528, -0.014705214649438858, -0.00904780998826027, -0.004866981878876686, 0.03718683868646622, 0.005189877934753895, 0.004591175355017185, 0.013164732605218887, 0.031186357140541077, 0.017248019576072693, -0.001096500433050096, -0.012014416046440601, 0.012613118626177311, 0.015848804265260696, -0.02172819897532463, -0.02178201451897621, 0.02133803255856037, 0.018041804432868958, 0.019763916730880737, 0.0002816929772961885, 0.01656186580657959, -0.023302316665649414, -0.021970370784401894, 0.008442380465567112, 0.00904780998826027, 0.013265637680888176, -0.0037772085051983595, 0.0027597504667937756, 0.035330187529325485, 0.0022871787659823895, -0.017126932740211487, 0.008523104712367058, -0.010648835450410843, -0.015028110705316067, 0.011348443105816841, -0.020463524386286736, 0.017436375841498375, -0.003524946281686425, 0.017665093764662743, 0.016265878453850746, -0.010500841774046421, -0.015028110705316067, -0.04948378726840019, 0.015525908209383488, -0.008173300884664059, 0.0004977977368980646, 0.012122048065066338, -0.01836470142006874, -0.002699207281693816, 0.023921199142932892, -0.001111636171117425, 0.026127655059099197, -0.0034341318532824516, 0.018768319860100746, 0.0035114921629428864, -0.023921199142932892, -0.029544970020651817, -0.6182379126548767, -0.021970370784401894, -0.0027294789906591177, -0.012862017378211021, -0.0001256056420970708, 0.016804037615656853, 0.0165349580347538, -0.0016514776507392526, -0.006975895259529352, 0.010547930374741554, -0.01532409805804491, 0.025105152279138565, -0.01814943738281727, -0.03315063938498497, -0.0030187396332621574, -0.008825819939374924, 0.0191719401627779, -0.0024385363794863224, -0.010507568717002869, 0.0034358135890215635, -0.0157008096575737, 0.019306480884552002, -0.014234324917197227, -0.005421959329396486, -0.026127655059099197, -0.0024519902653992176, 0.034415315836668015, -0.008953632786870003, -0.003820934100076556, 0.031105631962418556, -0.01841851696372032, 0.01142244040966034, 0.009034356102347374, 0.007419877219945192, 0.04324113577604294, 0.0024301274679601192, -0.03721374645829201, 0.013696164824068546, 0.03072892129421234, 0.027526870369911194, -0.04181501269340515, -0.014584128744900227, -0.004059742670506239, -0.018997037783265114, 0.005660767666995525, 0.027405783534049988, 0.000745855737477541, -0.001489188871346414, 0.0013226957526057959, -0.008657644502818584, 0.005923120304942131, -0.031051816418766975, -0.017436375841498375, -0.0015102106845006347, 0.02754032425582409, 0.013063827529549599, 0.019333388656377792, -0.01040666364133358, -0.006622727960348129, 0.014301594346761703, -0.003723392728716135, -0.018741412088274956, 0.009330344386398792, -0.01522991992533207, -0.03718683868646622, 0.0038612959906458855, 0.004026107490062714, 0.006989349611103535, -0.006851445883512497, -0.003585489233955741, 0.016413871198892593, 0.013992153108119965, -0.02626219391822815, -0.006948987487703562, 0.015189558267593384, -0.002795067150145769, 0.017745817080140114, -0.019817732274532318, -0.014247778803110123, 0.0015236646868288517, -0.005973572842776775, -0.0016220470424741507, 0.018485786393284798, -0.030298393219709396, 0.024809163063764572, 0.026168016716837883, -0.010117403231561184, 0.0014597582630813122, -0.012566030025482178, 0.004365820903331041, 0.005304236896336079, 0.013581805862486362, 0.013218548148870468, -0.02970641665160656, -0.01255930308252573, 0.020490432158112526, -0.006437735632061958, -0.016158245503902435, -0.0038444786332547665, -0.024418998509645462, -0.01154352631419897, 0.01744982972741127, 0.012956195510923862, 0.03549163416028023, 0.023181229829788208, 0.04617410525679588, -0.0016893170541152358, 0.02039625309407711, 0.017194204032421112, -0.00974069070070982, -0.007561144419014454, -0.009720509871840477, -0.018916314467787743, -0.01833779364824295, 0.0005579202552326024, -0.028361016884446144, 0.01144934818148613, -0.007184432353824377, 0.011859695427119732, 0.008872908540070057, -0.01992536336183548, -0.005785217043012381, 0.03285465016961098, -0.0008320453925989568, -0.0001947675773408264, 0.014543767087161541, 0.006703452207148075, -0.004315368365496397, 0.026221832260489464, 0.0010208217427134514, 0.018902860581874847, -0.016386963427066803, 0.017705455422401428, -0.015377914533019066, 0.023302316665649414, 0.011489709839224815, 0.012875471264123917, -0.021270763128995895, 0.013359814882278442, -0.03457676246762276, 0.017194204032421112, 0.014126692898571491, -0.0034576761536300182, -0.021042045205831528, -0.021849285811185837, -0.04133066534996033, -0.0035653081722557545, 0.0013302635634317994, -0.00013201730325818062, 0.0003401337598916143, -0.03759045526385307, -0.007318972144275904, -0.0023140867706388235, 0.023598304018378258, -0.003193641547113657, -0.0020315530709922314, -0.027136703953146935, -0.03923184424638748, 0.011234084144234657, -0.0314016193151474, 0.0005179787403903902, 0.025831667706370354, -0.032612480223178864, -0.01814943738281727, 0.010070313699543476, -0.0018785138381645083, -0.009357252158224583, 0.008038761094212532, -0.02803812175989151, -0.03368879854679108, 0.0056204055435955524, -0.020988229662179947, -0.004298551008105278, 0.023046690970659256, -0.019575560465455055, 0.009303436614573002, -0.011630977503955364, 0.0010855690343305469, 0.008180027827620506, 0.0028589735738933086, 0.01336654182523489, 0.018916314467787743, 0.002307359827682376, -0.009787780232727528, 0.04429054632782936, -0.016010252758860588, 0.029464244842529297, 0.024324819445610046, 0.0006554617430083454, 0.022347083315253258, -0.01692512258887291, -0.014086331240832806, -0.027015618979930878, -0.009875231422483921, -0.02128421701490879, -0.010965004563331604, 0.003740210086107254, 0.003092736704275012, -4.752911991090514e-06, 0.0280650295317173, 0.00822711642831564, -0.0042850966565310955, -0.007507328409701586, -0.009478338062763214, 0.018768319860100746, -0.0035653081722557545, 0.02175510674715042, -0.03129398822784424, 0.03812861815094948, 0.004883799701929092, 0.014611036516726017, -0.02109586074948311, -0.004063106141984463, -0.02801121398806572, 0.017221111804246902, -0.0001925602846313268, -0.008751822635531425, 0.03573380783200264, -0.010097221471369267, 0.009229439310729504, 0.018997037783265114, 0.008792184293270111, 0.03818243369460106, -0.0053445990197360516, 0.0019239210523664951, -0.006659726612269878, 0.01450340449810028, 0.018606873229146004, 0.032693203538656235, -0.002179546980187297, 0.004510451108217239, 0.022024186328053474, 0.018122529610991478, 0.007298791315406561, 0.00411355821415782, 0.005539681762456894, 0.048864904791116714, -0.0032979100942611694, 0.012855290435254574, 0.00045911752386018634, 0.008146393112838268, 0.0170865710824728, 0.008301113732159138, -0.007318972144275904, -0.004349003080278635, -0.023127414286136627, 0.025212783366441727, 0.014732122421264648, -0.029598785564303398, -0.012458398006856441, 0.010790102183818817, -0.012317130342125893, -0.02050388604402542, -0.015875712037086487, -0.0030994636472314596, -0.009989590384066105, 0.013090735301375389, 0.018445424735546112, 0.02297941967844963, 0.0186203271150589, -0.0022737248800694942, 0.0021425483282655478, 0.021324578672647476, -0.012485305778682232, 0.005062065087258816, -0.00022051935957279056, -0.0117386095225811, -0.03325827047228813, 0.009606150910258293, -0.013131096959114075, 0.014516858384013176, 0.005791943985968828, 0.012162409722805023, -0.027271244674921036, -0.005438776686787605, 0.00702971126884222, 0.019239209592342377, -0.002120685763657093, -0.0019457837333902717, 0.020046450197696686, -0.01872795820236206, -0.03573380783200264, 0.009700329042971134, 0.025629857555031776, 0.008213662542402744, 0.008650917559862137, -0.011435894295573235, 0.00438263826072216, -0.013063827529549599, 0.01839160919189453, 0.02214527316391468, -0.013245455920696259, -0.004103467799723148, 0.010897734202444553, 0.0179207194596529, 0.03347353637218475, 0.05521518737077713, -0.017046209424734116, -0.016306240111589432, -0.01669640652835369, 0.023544488474726677, -0.0013849204406142235, -0.05021030455827713, -0.028522465378046036, 0.03734828531742096, -0.012512213550508022, -0.0247284397482872, -0.027742134407162666, -0.010803557001054287, -0.01276783924549818, 0.02365211956202984, -0.007614959962666035, -0.03767118230462074, -0.008576920256018639, 0.00435573048889637, 0.013084008358418941, -0.0009594378643669188, -0.004638263955712318, 0.011139906011521816, 0.004187555518001318, -0.02045007050037384, 0.011913510970771313, 0.006336831022053957, 0.020167535170912743, 0.08825819194316864, 0.03594907000660896, 0.00896035972982645, 0.03126708045601845, -0.033661890774965286, 0.009041083045303822, -0.012021142989397049, -0.007534236181527376, 0.03909730538725853, 0.01564699411392212, 0.006333467084914446, 0.0016279332339763641, -0.004782894626259804, -0.009996317327022552, 0.0025949389673769474, 0.012216226197779179, 0.014247778803110123, 0.00725170224905014, 0.01940065808594227, -0.00395883759483695, 0.0003079703019466251, 0.0030725556425750256, 0.03253175690770149, 0.003639305243268609, 0.03896276280283928, -0.00039437017403542995, 0.02414991706609726, 0.02242780663073063, -0.0012957877479493618, -0.02984095737338066, 0.0020752784330397844, -0.00393865630030632, -0.021687837317585945, 0.01268711593002081, -0.026800354942679405, 0.029141349717974663, 0.014745576307177544, -0.021324578672647476, 0.002544486429542303, 0.0071373432874679565, 0.0073055182583630085, 0.02887227013707161, -0.002095459494739771, -0.020127173513174057, 0.016185153275728226, -0.010238489136099815, 0.006505005527287722, 0.00832129456102848, -0.01617169938981533, -0.029921680688858032, 0.027029072865843773, -0.019683191552758217, -0.02984095737338066, 0.007783134933561087, -0.006848082412034273, -0.001025866949930787, -0.02892608568072319, -0.016548411920666695, -0.010292304679751396, 0.00255625881254673, -0.012552576139569283, -0.004705534316599369, 0.004705534316599369, -0.03732137754559517, 0.0012486987980082631, -0.012014416046440601, -0.026544729247689247, -0.00250076106749475, -0.02306014485657215, 0.026046931743621826, -0.027661409229040146, -0.0060273888520896435, -0.02962569333612919, 0.01603716053068638, -0.0013353087706491351, 0.004907344002276659, -0.0063233766704797745, -0.006326740141957998, 0.013884521089494228, 0.02970641665160656, -0.010137584060430527, -0.03376952186226845, 0.0003338271926622838, -0.01797453500330448, 1.6541580407647416e-05, 0.011429167352616787, 0.004312004894018173, -0.009061264805495739, -0.02028862200677395, 0.013413631357252598, -0.0005289100809022784, -0.006878354120999575, -0.015620086342096329, -0.004103467799723148, -0.0020988229662179947, 0.03296228498220444, -0.0027883402071893215, 0.02511860616505146, -0.01258621085435152, -0.03056747280061245, -0.015108834020793438, -0.019723553210496902, -0.00455754017457366, 0.007830223999917507, 0.0034812206868082285, -0.00571122020483017, -0.026356372982263565, -0.014167054556310177, -0.010958277620375156, -0.023046690970659256, 0.017153840512037277, -0.024943703785538673, -0.010547930374741554, -0.017490191385149956, -0.02423064224421978, 0.013568351976573467, 0.014933932572603226, 0.04071178287267685, 0.020275168120861053, -0.008597102016210556, -0.0064343721605837345, -0.03479202464222908, 0.04517851024866104, 0.014247778803110123, -0.0009115080465562642, 0.022696886211633682, 0.009794507175683975, -0.003942020237445831, -0.030298393219709396, 0.011604068800807, -0.00908817257732153, 0.0012730840826407075, 0.01447649672627449, -0.011435894295573235, -0.018875952810049057, -0.013649076223373413, -0.004621446598321199, 0.008112757466733456, -0.019212301820516586, 0.000899735779967159, -0.023517580702900887, 0.013884521089494228, -0.00657900283113122, -0.021324578672647476, 0.0347382090985775, -0.029302796348929405, -0.020517339929938316, 0.019212301820516586, 0.001560663222335279, 0.030029313638806343, -0.0053445990197360516, 0.008650917559862137, -0.013050373643636703, 0.012747658416628838, 0.007944582961499691, -0.015041564591228962, -0.007083527278155088, -0.01814943738281727, 0.03802098333835602, 0.027405783534049988, 0.03570689633488655, 0.0029464245308190584, 0.0034946748055517673, -0.00222327234223485, 0.0034274046774953604, -0.011361896991729736, 0.004523904994130135, -0.008106030523777008, -0.004399455618113279, 0.009996317327022552, 0.012431489303708076, 0.00662609189748764, 0.021943463012576103, 0.012613118626177311, -0.0030136944260448217, 0.026410188525915146, -0.02595275267958641, -0.031078724190592766, -0.03056747280061245, -0.033661890774965286, 0.009236166253685951, 0.0071373432874679565, -0.004520541522651911, -0.0123642198741436, -0.05241675674915314, 0.01606406830251217, 0.019306480884552002, 0.010245216079056263, 0.012660207226872444, 0.00940434169024229, 0.01841851696372032, -0.01997918076813221, 0.012148955836892128, 0.005415232386440039, 0.03312373161315918, -0.015189558267593384, -0.02811884507536888, -0.034253865480422974, 0.004194282460957766, 0.008846000768244267, -0.009949227795004845, 0.01689821481704712, 0.003609033767133951, -0.010615200735628605, -0.002124049235135317, 0.007419877219945192, -0.0322357676923275, -0.020557701587677002, -0.012249860912561417, -0.014463042840361595, -0.003555217757821083, -0.04488252103328705, -0.014866662211716175, 0.0019626012071967125, -0.015472092665731907, 0.0019491473212838173, -0.0038007530383765697, 0.016292786225676537, -0.02131112478673458, -0.029114441946148872, 0.024634260684251785, -0.006693361792713404, 0.030163852497935295, 0.011926964856684208, 0.007688957266509533, 0.001476575736887753, 0.0033382719848304987, 0.00010227136954199523, -0.021889647468924522, -0.008879635483026505, 0.018929768353700638, 0.006074477918446064, 0.030863460153341293, -0.0014084649737924337, -0.021378396078944206, 0.013884521089494228, 0.02606038562953472, -0.0024772165343165398, -0.013803796842694283, 0.012243133969604969, 0.016265878453850746, 0.004527268931269646, -0.010070313699543476, -0.00010489910346223041, -0.02495715767145157, 0.0026739812456071377, -0.021163132041692734, -0.0006268720026127994, -0.01572771742939949, -0.00371330208145082, -0.008751822635531425, 0.04525923356413841, -0.0030019222758710384, 0.02367902733385563, -0.00553631829097867, -0.01794762723147869, 0.00824057124555111, 0.003134780330583453, 0.004533995874226093, -0.012236407026648521, -0.03282774239778519, 0.028414834290742874, 0.0024940338917076588, 0.027298152446746826, -0.0006504164775833488, 0.02214527316391468, 0.00931016355752945, -0.015525908209383488, 0.00657900283113122, 0.02970641665160656, -0.010043405927717686, -0.013272364623844624, 0.025293506681919098, -0.0060273888520896435, 0.0031112360302358866, -0.027580685913562775, -0.007386242505162954, 0.0038982946425676346, -0.027822857722640038, -0.008348203264176846, 0.010924642905592918, 0.0036897575482726097, -0.0009754145285114646, -0.0048602549359202385, -0.005939938127994537, -0.029598785564303398, 0.02881845273077488, -0.0046920799650251865, 0.024580445140600204, -0.029598785564303398, -0.004752622917294502, 0.018270522356033325, -0.004059742670506239, -0.010568112134933472, -0.004005926661193371, -0.012377673760056496, -0.010090494528412819, 0.005721310619264841, -0.0010443662758916616, 0.02579130418598652, 0.008839273825287819, 0.0015413231449201703, -0.014301594346761703, -0.0042716427706182, -0.007076800335198641, 0.017570914700627327, 0.024015378206968307, -0.007709138095378876, -0.03732137754559517, 0.0008476015646010637, 0.019992634654045105, 0.01731528900563717, 5.6759032304398715e-05, -0.008691279217600822, 0.00953215453773737, 0.005327781196683645, 0.00015272384916897863, 0.003501401748508215, -0.0004368343506939709, 0.0035114921629428864, 0.0027816130314022303, 0.009828141890466213, 0.008973813615739346, -0.008913270197808743, 0.021364940330386162, 0.009949227795004845, 0.005159606225788593, -0.00422455370426178, -0.026665814220905304, -0.018472332507371902, 0.012498759664595127, -0.000900576647836715, -0.034442223608493805, -0.007345880381762981, -0.027634501457214355, -0.004170737694948912, -0.006397373974323273, 0.010547930374741554, -0.01703275553882122, -0.020382799208164215, 0.01878177374601364, 0.01603716053068638, 0.0037065751384943724, 0.04243389517068863, -0.01233731210231781, -0.015108834020793438, 0.001421077991835773, -0.01614479161798954, -0.022508529946208, -0.020261714234948158, -0.003609033767133951, 0.01919884793460369, 0.00809930358082056, -0.02114967815577984, -0.005364779848605394, -0.021068952977657318, -0.0444519929587841, -0.011933691799640656, -0.015041564591228962, 0.022104911506175995, 0.01783999428153038, 0.0020214624237269163, -0.00012171659182058647, 0.0009073036490008235, -0.015068472363054752, 0.02425755001604557, -0.035330187529325485, -0.004513814579695463, 0.01603716053068638, -0.013447266072034836, 0.03374261409044266, 0.002008008537814021, -0.03764427453279495, -0.011355170048773289, 0.0380748026072979, -0.00418082857504487, -0.0019995998591184616, 0.01522991992533207, 0.011079363524913788, -0.012196044437587261, 0.005358052905648947, 0.035330187529325485, 0.011496436782181263, 0.0006378033431246877, 0.0238942913711071, -0.021432211622595787, 0.009464884176850319, -0.008872908540070057, -0.004513814579695463, -0.011812605895102024, -0.005119244568049908, 0.029571877792477608, 0.005149515811353922, 0.003598943119868636, -0.006161929108202457, 0.004786258097738028, -0.01992536336183548, -0.016333147883415222, 0.014664852991700172, 0.01609097607433796, 0.015283736400306225, 0.0307020116597414, 0.004264915827661753, -0.0013395132264122367, 0.015902619808912277, 0.014772485010325909, 0.0024503085296601057, -0.015081926248967648, 0.011375350877642632, -0.008731641806662083, -0.008354930207133293, 0.006444462575018406, 0.0005453071789816022, -0.008354930207133293, -0.01658877357840538, -0.003999199718236923, 0.012922560796141624, -0.04192264378070831, 0.012438217177987099, -0.014974294230341911, -0.01405942253768444, 0.00604420667514205, -0.019750462844967842, 0.007076800335198641, -0.00012140126636950299, -0.0013176504289731383, 0.0038041165098547935, -0.0034391770604997873, -0.01689821481704712, -0.01883559115231037, -0.018135983496904373, -0.021459119394421577, -0.0034004966728389263, 0.027526870369911194, -0.022912150248885155, -0.004725715145468712, 0.21418757736682892, -0.010682470165193081, -0.011355170048773289, 0.020584609359502792, -0.024634260684251785, -0.01492047868669033, 0.02036934532225132, -0.006814447697252035, -0.007540963124483824, -0.004533995874226093, 0.018216706812381744, 0.03880131617188454, 0.017355650663375854, 0.00638391962274909, -0.006854809354990721, -0.024930249899625778, -0.03339281305670738, -0.027163611724972725, 0.004766077268868685, 0.017221111804246902, 0.02720397338271141, -0.004301914479583502, 0.012613118626177311, -0.021876193583011627, 0.016212061047554016, 0.01789381168782711, -0.01809561997652054, -0.00402274401858449, 0.02881845273077488, 0.03987763449549675, -0.019306480884552002, -0.006209017708897591, 0.028226478025317192, 0.007937856018543243, -0.008724914863705635, -0.011630977503955364, -0.017274927347898483, -0.009121807292103767, 0.014355410821735859, -0.00704989256337285, 0.008953632786870003, -6.905682676006109e-05, 0.02028862200677395, -0.027661409229040146, 0.011234084144234657, 0.01817634515464306, -0.00106791069265455, -0.017718909308314323, -0.012525667436420918, 0.025078242644667625, -0.004402819089591503, 0.009733963757753372, -0.00038280815351754427, 0.005865940824151039, -0.004194282460957766, 0.033661890774965286, -0.002280451823025942, -0.012761112302541733, -0.009875231422483921, 0.022441260516643524, -0.010857372544705868, 0.0076015060767531395, -0.002823656890541315, 0.013776889070868492, -0.018351247534155846, -0.0028741091955453157, -0.020934414118528366, -0.00413373950868845, 0.008301113732159138, -0.029275888577103615, 0.00022745657770428807, -0.03888203948736191, -0.011018820106983185, 0.02131112478673458, -0.019763916730880737, -0.04014671593904495, 0.014126692898571491, 0.026154562830924988, 0.028226478025317192, 0.02039625309407711, -0.00974069070070982, -0.00829438678920269, -0.03433459252119064, -0.030163852497935295, -0.00511251762509346, -0.014247778803110123, 0.020355891436338425, 0.008455834351480007, -0.022777611389756203, -0.010016498155891895, -0.010312485508620739, -0.003180187661200762, -0.024607352912425995, 0.00720461318269372, -0.011388805694878101, -0.0032087774015963078, 0.013790342956781387, 0.02003299631178379, -0.014933932572603226, -0.01648114249110222, -0.009377432987093925, 0.07388933002948761, 0.00528741953894496, 0.028361016884446144, -0.03460367023944855, -0.01315800566226244, -0.0009014175739139318, 0.025777850300073624, -0.023598304018378258, -0.011355170048773289, 0.020194442942738533, -0.02639673464000225, 0.008476016111671925, -0.010897734202444553, 0.009639786556363106, 0.024392088875174522, 0.006774085573852062, 0.002150957239791751, 0.026961801573634148, 0.006094658747315407, 0.016292786225676537, -0.010453753173351288, 0.02973332442343235, 0.017207657918334007, -0.005987027194350958, -0.052282217890024185, -0.021916555240750313, 0.0005587611813098192, 0.0038074799813330173, 0.005421959329396486, -0.006111476570367813, -0.022347083315253258, 0.0220914576202631, -0.011886603198945522, -0.011913510970771313, 0.0047156247310340405, 0.0050284299068152905, 0.021472573280334473, -0.001321014016866684, 0.008462561294436455, 0.016817491501569748, 0.030190760269761086, 0.015001202002167702, -0.006525186821818352, 0.005512773524969816, -0.006215744651854038, 0.007231521420180798, 0.028441742062568665, -0.0213918499648571, -0.026746539399027824, -0.011341716162860394, 0.017382558435201645, 0.008563466370105743, -0.02895299345254898, 0.035222552716732025, 0.0020601428113877773, -0.025629857555031776, -0.01789381168782711, 0.0021055499091744423, 0.010137584060430527, -0.04566285386681557, -0.008758549578487873, 0.02798430621623993, 0.028280293568968773, -0.02217218093574047, 0.008274205960333347, -0.17027373611927032, 0.02114967815577984, 0.014288140460848808, -0.0024082649033516645, 0.0008921679109334946, 0.004681989550590515, 0.013702891767024994, 0.023167775943875313, -0.02475534752011299, 0.00014452531468123198, 0.03820934146642685, 0.002870745724067092, -0.038666777312755585, -0.018875952810049057, -0.0038074799813330173, 0.011711700819432735, -0.03393097221851349, 0.017544006928801537, 0.023100506514310837, 0.024526629596948624, 0.014234324917197227, -0.03290846571326256, 0.0045474497601389885, -0.004782894626259804, 0.020302075892686844, 0.001124249305576086, -0.01753055304288864, 0.037859536707401276, 0.01393833663314581, -0.016010252758860588, -0.0157008096575737, -0.03823624923825264, 0.02809193730354309, 0.0026706175412982702, 0.010124130174517632, 0.009458157233893871, -0.01078337524086237, -0.0007328221690841019, -0.010151037946343422, 0.05623769015073776, 0.0023426765110343695, -0.00010700128768803552, 0.009411068633198738, 0.020665332674980164, -0.009976135566830635, 0.005213422235101461, 0.022320175543427467, 0.007211340591311455, -0.010352848097682, -0.0558609813451767, -0.006336831022053957, -0.014019060879945755, -0.017248019576072693, -0.0011486347066238523, 0.019387204200029373, 0.015875712037086487, 0.006427645217627287, 0.02540113963186741, -0.017678547650575638, 0.002737887669354677, 0.0014555539237335324, -0.005220149178057909, 0.031805239617824554, -0.009498518891632557, 0.011079363524913788, -0.0527934692800045, -0.02240089885890484, 0.010009771212935448, -0.015122288838028908, -0.001235244795680046, -0.0015926164342090487, -0.001293265144340694, 0.01823016069829464, 0.0017927446169778705, 0.0076956842094659805, 0.002305678091943264, 0.004930888302624226, 0.008301113732159138, 0.010803557001054287, -0.0007567871361970901, 0.001504324609413743, -0.006989349611103535, -0.0009182350477203727, -0.026517821475863457, -0.035357095301151276, -0.008254025131464005, -0.003474493743851781, 0.0041572838090360165, 0.016023706644773483, 0.011752063408493996, 0.01872795820236206, -0.03837078809738159, -0.00725170224905014, -0.03672940284013748, 0.0204231608659029, -0.002907744375988841, 0.02065187878906727, -0.004463362041860819, 0.005677585024386644, 0.01251894049346447, -0.0022148636635392904, -0.011630977503955364, -0.004708897788077593, 0.01775927096605301, -0.011361896991729736, 0.008254025131464005, -0.003962201066315174, -0.0013992153108119965, 0.0211227685213089, -0.016292786225676537, -0.029114441946148872, -0.001812925562262535, 0.013965245336294174, 0.01619860716164112, -0.01700584776699543, 0.03296228498220444, 0.0017179067945107818, 0.011691519990563393, 0.01783999428153038, -0.0077360463328659534, 0.05629150941967964, -0.022669978439807892, -0.014974294230341911, 0.021930009126663208, -0.009061264805495739, -0.002147593768313527, -0.1019812673330307, -0.010346121154725552, -0.011274446733295918, 0.006521823350340128, -0.02628910355269909, -0.013622168451547623, 0.002657163655385375, 0.022279812023043633, 0.01018467266112566, 0.020907506346702576, 0.001250380533747375, -0.018553055822849274, -0.022885242477059364, -0.003195323282852769, 0.03729446977376938, -0.018458878621459007, 0.0057145836763083935, -0.0009779371321201324, -0.03837078809738159, 0.03637959808111191, 7.2196967266791034e-06, -0.024943703785538673, -0.015377914533019066, -0.009693602100014687, -0.030809644609689713, -0.024903342127799988, -0.04407528042793274, -0.0031700972467660904, 0.002492352155968547, 0.029518060386180878, 0.013050373643636703, -0.015001202002167702, 0.027795949950814247, -0.030056221410632133, -0.01047393400222063, -0.012263314798474312, -0.047142792493104935, -0.012027869932353497, 0.0025781213771551847, -0.03732137754559517, 0.008025307208299637, 0.010991912335157394, -0.00953215453773737, -0.02050388604402542, 0.005159606225788593, -0.013272364623844624, 0.020355891436338425, 0.0129898302257061, 0.016911668702960014, -0.025724034756422043, -0.01814943738281727, -0.007500601001083851, -0.03756354749202728, -0.009330344386398792, 0.026773447170853615, 0.000744594435673207, 0.010036678984761238, -0.014315049163997173, -0.012868744321167469, 0.007386242505162954, -0.010373028926551342, -0.01358853280544281, -0.016400417312979698, 0.003501401748508215, 0.026275649666786194, -0.004866981878876686, 0.0005133539089001715, -0.008032034151256084, 0.006834628526121378, -0.0007563667022623122, -0.015189558267593384, 1.4518224816129077e-05, -0.018997037783265114, 0.004597902297973633, -0.030406024307012558, 0.0012478579301387072, -0.01689821481704712, -0.030110036954283714, 0.018028350546956062, -0.007480420172214508, -0.012862017378211021, -0.016104429960250854, 0.01781308650970459, -0.031024908646941185, 0.012283495627343655, -0.004150556866079569, -0.008650917559862137, -0.01169824693351984, 0.011503164656460285, -0.036998480558395386, -0.010124130174517632, -0.0012117002625018358, 0.017638185992836952, -0.018566511571407318, -0.017624730244278908, 0.023692481219768524, -0.006760631687939167, -0.005997117608785629, 0.0486227311193943, -0.010050132870674133, -0.006848082412034273, -0.015014656819403172, -0.04162665456533432, 0.031859055161476135, 0.014651398174464703, 0.004184192046523094, -0.004174101632088423, -0.015055018477141857, 0.016682950779795647, -0.016911668702960014, -0.011577161028981209, 0.007130616344511509, -0.013743254356086254, 0.006962441373616457, -0.03506110608577728, -0.008926724083721638, -0.03481893613934517, -0.00422455370426178, 0.01022503525018692, -0.005337871611118317, 0.020275168120861053, 0.008106030523777008, -0.009881958365440369, -0.02326195500791073, -0.001265516271814704, 0.02967950887978077, 0.0023510854225605726, 0.03301610052585602, -0.016346601769328117, 0.03220885992050171, -0.0036056702956557274, 0.019387204200029373, 0.036056701093912125, -0.024190280586481094, -0.00682790158316493, 0.013319453224539757, -0.033634983003139496, -0.012868744321167469, 0.0008303636568598449, 0.015633540228009224, 0.0064175548031926155, 0.00809930358082056, -0.014395772479474545, -0.014516858384013176, -0.021486027166247368, -0.030944185331463814, 0.004476816393435001, -0.0015993434935808182, -0.0233426783233881, -0.00971378292888403, -0.012929287739098072, 0.02303323708474636, -0.007836950942873955, 0.004076560027897358, -0.003358453046530485, -0.01992536336183548, 0.014368864707648754, -0.021257309243083, 0.01989845559000969, 0.02370593696832657, 0.03820934146642685, -0.005277328658849001, 0.02517242170870304, -0.01989845559000969, 0.004648354835808277, -0.032720111310482025, -0.009101626463234425, -0.0025629857555031776, -0.04076559841632843, 0.020154081284999847, 0.0002835849591065198, -0.006525186821818352, -0.019441019743680954, -0.002554577076807618, -0.0023964925203472376, 0.017153840512037277, -0.005775126628577709, 0.0013697847025468946, 0.019804278388619423, -0.008106030523777008, -0.03411932662129402, 0.014234324917197227, 0.010447025299072266, -0.003999199718236923, -0.011819332838058472, 0.01656186580657959, 0.010830464772880077, -0.006747177802026272, -0.025253145024180412, 0.00829438678920269, -0.002251862082630396, 0.00993577390909195, -0.01580844260752201, -0.007231521420180798, -0.0011091135675087571, 0.007715865038335323, -0.0015858894912526011, 0.05198622867465019, -0.008785457350313663, 0.009424522519111633, 0.032800834625959396, -0.00028736889362335205, 0.002685753395780921, -0.01864723488688469, -0.010016498155891895, -0.04009290039539337, -0.024822616949677467, 0.01524337474256754, -0.046416275203228, -0.029033716768026352, 0.012128775008022785, 0.026800354942679405, 0.012619845569133759, -0.014530312269926071, 0.04337567463517189, 0.01403251476585865, -0.029383521527051926, 0.016292786225676537, -0.012976376339793205, -0.021015137434005737, -0.03207432106137276, 0.034307681024074554, 0.0036224876530468464, 0.0037772085051983595, 0.04582430049777031, -0.01705966331064701, 0.029975496232509613, 0.02545495517551899, 0.01403251476585865, -0.0033567713107913733, -0.005778490100055933, -0.00023166094615589827, 0.012888925150036812, 0.0029447427950799465, -0.003388724522665143, -0.006040842738002539, 0.0005230240058153868, -0.01103227399289608, -0.011509891599416733, 0.03161688521504402, 0.013373269699513912, 0.07318972051143646, 0.030944185331463814, -0.003979018423706293, 0.016104429960250854, -0.006948987487703562, 0.00832129456102848, 0.028441742062568665, 0.007944582961499691, -0.004570994060486555, -0.02581821382045746, 0.0015018020058050752, 0.0024553537368774414, 0.008435653522610664, -0.0372406542301178, -0.009505245834589005, -0.006498278584331274, 0.0058827586472034454, 0.022414352744817734, -0.03258557245135307, -0.02394810877740383, 0.018660688772797585, 0.007325699087232351, 0.006895171478390694, -0.009760872460901737, -0.0034324501175433397, -0.01268711593002081, 0.002404901199042797, -0.007036438677459955, -0.008805638179183006, -0.0444519929587841, 0.015337551943957806, 7.5573603680823e-05, -0.009350525215268135, -0.022656524553894997, -0.010083767585456371, 0.0012444943422451615, -0.01492047868669033, -0.02595275267958641, -0.01532409805804491, -0.005667494609951973, 0.010615200735628605, 0.029329705983400345, -0.012801474891602993, -0.0027614322025328875, -0.008126212283968925, -0.004042924847453833, -0.007359334267675877, -0.01120044942945242, -0.013050373643636703]}, "text_id_to_doc_id": {"a326e984-e626-4861-9818-6b3d3d6f8b44": "3c75ce43-2e10-4b85-858c-681659206346", "9a896790-1a80-4627-9db8-c0c234d7f77b": "3c75ce43-2e10-4b85-858c-681659206346"}}}}} \ No newline at end of file diff --git a/index/SupplierScoreCardWithGroup3.json b/index/SupplierScoreCardWithGroup3.json new file mode 100644 index 0000000000000000000000000000000000000000..e9cb0f8a4a84b8de5b783b89af785fe05a2994cf --- /dev/null +++ b/index/SupplierScoreCardWithGroup3.json @@ -0,0 +1 @@ +{"index_struct": {"__type__": "simple_dict", "__data__": {"index_id": "1ce3508f-ff69-40b5-90a6-7506de866aef", "summary": null, "nodes_dict": {"902ad918-fce3-494b-95f2-92d69b72b032": "902ad918-fce3-494b-95f2-92d69b72b032", "81c4feef-c1a3-4fd2-841b-7bcd1db1eed0": "81c4feef-c1a3-4fd2-841b-7bcd1db1eed0", "54169aaa-b05b-4f0a-ab60-aadef1bf0af2": "54169aaa-b05b-4f0a-ab60-aadef1bf0af2", "62764cae-47bf-4e4a-ac61-ea7553abeb11": "62764cae-47bf-4e4a-ac61-ea7553abeb11", "8d9c8637-f5a0-4cb9-9ebb-6ff3c9a0a57b": "8d9c8637-f5a0-4cb9-9ebb-6ff3c9a0a57b", "b377b0d1-5a35-4764-9e06-e16b1c538b62": "b377b0d1-5a35-4764-9e06-e16b1c538b62"}, "doc_id_dict": {"c1185d4f-4ecd-45c0-a15b-51a4953b4671": ["902ad918-fce3-494b-95f2-92d69b72b032", "81c4feef-c1a3-4fd2-841b-7bcd1db1eed0", "54169aaa-b05b-4f0a-ab60-aadef1bf0af2", "62764cae-47bf-4e4a-ac61-ea7553abeb11", "8d9c8637-f5a0-4cb9-9ebb-6ff3c9a0a57b", "b377b0d1-5a35-4764-9e06-e16b1c538b62"]}, "embeddings_dict": {}}}, "docstore": {"__type__": "simple", "__data__": {"docs": {"902ad918-fce3-494b-95f2-92d69b72b032": {"text": "User-11009, Tower : I&O, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Neutral\nUser-11009, Tower : I&O, Response Times: Issues and requests are addressed within stated times, Neutral\nUser-11009, Tower : I&O, SLA Attainment: Meets or exceeds contracted service levels, Neutral\nUser-11009, Tower : I&O, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Neutral\nUser-11009, Tower : I&O, Alignment: Vendor resources understand our business and related industry trends and needs, Neutral\nUser-11009, Tower : I&O, Resource Turnover: Vendor manages resource turnover appropriately, Neutral\nUser-11009, Tower : I&O, Cost Optimization: Proactive delivery of cost-saving ideas, Neutral\nUser-11009, Tower : I&O, Innovation: Demonstration of new products and services that will help our business, Agree\nUser-11009, Tower : I&O, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Agree\nUser-11009, Tower : I&O, Communication: Supplier team is professional, approachable and clear in their communication with us, Agree\nUser-11009, Tower : I&O, Responsiveness: Resources respond quickly and act with appropriate urgency, Neutral\nUser-11009, Tower : I&O, Flexibility: Account team demonstrates flexibility when required, Agree\nUser-11009, Tower : I&O, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Neutral\nUser-11009, Tower : I&O, Invoicing: Invoices are timely, accurate and easy to understand, Neutral\nUser-11009, Tower : I&O, Pricing: Cost is competitive, Neutral\nUser-11009, Tower : I&O, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Agree\nUser-11010, Tower : Shared Services, Invoicing: Invoices are timely, accurate and easy to understand, Neutral\nUser-11010, Tower : Shared Services, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Neutral\nUser-11010, Tower : Shared Services, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Neutral\nUser-11010, Tower : Shared Services, Response Times: Issues and requests are addressed within stated times, Agree\nUser-11010, Tower : Shared Services, SLA Attainment: Meets or exceeds contracted service levels, Neutral\nUser-11010, Tower : Shared Services, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Neutral\nUser-11010, Tower : Shared Services, Resource Turnover: Vendor manages resource turnover appropriately, Neutral\nUser-11010, Tower : Shared Services, Alignment: Vendor resources understand our business and related industry trends and needs, Neutral\nUser-11010, Tower : Shared Services, Cost Optimization: Proactive delivery of cost-saving ideas, Neutral\nUser-11010, Tower : Shared Services, Innovation: Demonstration of new products and services that will help our business, Neutral\nUser-11010, Tower : Shared Services, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Agree\nUser-11010, Tower : Shared Services, Communication: Supplier team is professional, approachable and clear in their communication with us, Agree\nUser-11010, Tower : Shared Services, Responsiveness: Resources respond quickly and act with appropriate urgency, Agree\nUser-11010, Tower : Shared Services, Flexibility: Account team demonstrates flexibility when required, Agree\nUser-11010, Tower : Shared Services, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Neutral\nUser-11010, Tower : Shared Services, Pricing: Cost is competitive, Neutral\nUser-11011, Tower : Shared Services, Invoicing: Invoices are timely, accurate and easy to understand, Agree\nUser-11011, Tower : Shared Services, Pricing: Cost is competitive, Agree\nUser-11011, Tower : Shared Services, Is there any additional feedback you would like to provide regarding performance?, Considering that we have just started the partnership, there are multiple areas of improvement, as the HCL team comes up to speed on Mattel environment, systems, data and personnel. I see a lot of promise, and many stated objectives, and will look to see these in action in the next 3 months.\nUser-11011, Tower : Shared Services, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Agree\nUser-11011, Tower : Shared Services, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Neutral\nUser-11011, Tower : Shared Services, Response Times: Issues and requests are addressed within stated times, Agree\nUser-11011, Tower : Shared Services, SLA Attainment: Meets or exceeds contracted service levels, Neutral\nUser-11011, Tower : Shared Services, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Neutral\nUser-11011, Tower : Shared Services, Resource Turnover: Vendor manages resource turnover appropriately, Agree\nUser-11011, Tower : Shared Services, Is there any additional feedback you would like to provide regarding ${VendorName}'s thought leadership?, Few ideas have been discussed; promise of more is there. But more delivery is needed to evaluate effectiveness.\nUser-11011, Tower : Shared Services, Alignment: Vendor resources understand our business and related industry trends and needs, Neutral\nUser-11011, Tower : Shared Services, Cost Optimization: Proactive delivery of cost-saving ideas, Neutral\nUser-11011, Tower : Shared Services, Innovation: Demonstration of new products and services that will help our business, Neutral\nUser-11011, Tower : Shared Services, Is there any additional feedback you would like to provide about the relationship with HCL?, I would like to see more team members at the analyst / individual contributor level take more ownership, more initiative and address issues and problems without having some leader or manager push them to do the work. And be more responsive and timely in providing status. The HCL leaders and managers are doing this, but would like to see the full team do it as well.\nUser-11011, Tower : Shared Services, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Agree\nUser-11011, Tower : Shared Services, Communication: Supplier team is professional, approachable and clear in their communication with us, Strongly Agree\nUser-11011, Tower : Shared Services, Responsiveness: Resources respond quickly and act with appropriate urgency, Agree\nUser-11011, Tower : Shared Services, Flexibility: Account team demonstrates flexibility when required, Strongly Agree\nUser-11011, Tower : Shared Services, Is there any additional feedback you would like to provide regarding financial performance?, Nothing to share at this point.\nUser-11011, Tower : Shared Services, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Agree\nUser-11012, nan, Alignment: Vendor resources understand our business and related industry trends and needs, Neutral\nUser-11012, nan, Is there any additional feedback you would like to provide regarding ${VendorName}'s thought leadership?, Have seen this in the Workday area, not so much in Finance.\nUser-11012, nan, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, 1). Need to improve in terms of continuous improvements for alerts and monitoring and being proactive\r\n2). Team wasnt aware of 24 x 7 SLA for apps\r\n3). Need team to drive issue resolution and connect corporate to upstream problem areas, i.e. Informatica, Cognos, EFT\r\n4). Need to see improvement in user communication and driving issue resolution\nUser-11012, nan, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, 1). Need to improve in terms of continuous improvements for alerts and monitoring and being proactive\r\n2). Team wasnt aware of 24 x 7 SLA for apps\r\n3). Need team to drive issue resolution and connect corporate to upstream problem areas, i.e. Informatica, Cognos, EFT\r\n4). Need to see improvement in user communication and driving issue resolution\nUser-11012, nan, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Invoicing is late.\nUser-11012, nan, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, More focus on continuous improvement\r\nImprove appreciatation of user impact.\nUser-11012, nan, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Neutral\nUser-11012, nan, SLA Attainment: Meets or exceeds contracted service levels, Neutral\nUser-11012, nan, Response Times: Issues and requests are addressed within stated times, Neutral\nUser-11012, nan, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Disagree\nUser-11012, nan, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Disagree\nUser-11012, nan, Is there any additional feedback you would like to provide regarding performance?, 1). Need to improve in terms of continuous improvements for alerts and monitoring and being proactive\r\n2). Team wasnt aware of 24 x 7 SLA for apps\r\n3). Need team to drive issue resolution and connect corporate to upstream problem areas, i.e. Informatica, Cognos, EFT\r\n4). Need to see improvement in user communication and driving issue resolution\nUser-11012, nan, Pricing: Cost is competitive, Agree\nUser-11012, nan, Invoicing: Invoices are timely, accurate and easy to understand, Disagree\nUser-11012, nan, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Neutral\nUser-11012, nan, Flexibility: Account team demonstrates flexibility when required, Agree\nUser-11012, nan, Responsiveness: Resources respond quickly and act with appropriate urgency, Neutral\nUser-11012, nan, Communication: Supplier team is professional, approachable and clear in their communication with us, Neutral\nUser-11012, nan, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Disagree\nUser-11012, nan, Is there any additional feedback you would like to provide about the relationship with HCL?, Need to improve upon the team understanding the other teams to reach out to.\nUser-11012, nan, Innovation: Demonstration of new products and services that will help our business, Neutral\nUser-11012, nan, Cost Optimization: Proactive delivery of cost-saving ideas, Neutral\nUser-11012, nan, Resource Turnover: Vendor manages resource turnover appropriately, Neutral\nUser-11013, Tower : Digitial & Commercial, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Disagree\nUser-11013, Tower : Digitial & Commercial, Response Times: Issues and requests are addressed within stated times, Disagree\nUser-11013, Tower : Digitial & Commercial, SLA Attainment: Meets or exceeds contracted service levels, Agree\nUser-11013, Tower : Digitial & Commercial, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Agree\nUser-11013, Tower : Digitial & Commercial, Resource Turnover: Vendor manages resource turnover appropriately, Strongly Agree\nUser-11013, Tower : Digitial & Commercial, Alignment: Vendor resources understand our business and related industry trends and needs, Agree\nUser-11013, Tower : Digitial & Commercial, Innovation: Demonstration of new products and services that will help our business, Neutral\nUser-11013, Tower : Digitial & Commercial, Cost Optimization: Proactive delivery of cost-saving ideas, Neutral\nUser-11013, Tower : Digitial & Commercial, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, This is a shared responsibility. We as Mattel didn't did well enough to do a proper knowledge transfer, specially for critical applications which caused major issues on reporting jobs and ISIS applications. Causing disruption to our business during several weeks.\r\nOn LATAM we had a 2 weeks blackout of information and in APAC we had 3 month ends closings that finished late due to lack of detailed knowledge. \nUser-11013, Tower : Digitial & Commercial, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Comment is the same as on the last block of questions.\nUser-11013, Tower : Digitial & Commercial, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, I believe the relationship with HCL is good. Specially leaders are very responsive, agile and willing to help.\r\n\nUser-11013, Tower : Digitial & Commercial, Is there any additional feedback you would like to provide about the relationship with HCL?, I still see HCL groups working on silos. But I see more leadership involvement on solving issues that require several silos for its resolution.\nUser-11013, Tower : Digitial & Commercial, Is there any additional feedback you would like to provide regarding ${VendorName}'s thought leadership?, I have not seen any innovation or proactive proposal from HCL that can impact us on efficiencies or costs.\nUser-11013, Tower : Digitial & Commercial, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Disagree\nUser-11013, Tower : Digitial & Commercial, Communication: Supplier team is professional, approachable and clear in their communication with us, Strongly Agree\nUser-11013, Tower : Digitial & Commercial, Responsiveness: Resources respond quickly and act with appropriate urgency, Strongly Agree\nUser-11013, Tower : Digitial & Commercial, Flexibility: Account team demonstrates flexibility when required, Strongly Agree\nUser-11013, Tower : Digitial & Commercial, Is there any additional feedback you would like to provide regarding financial performance?, I have no visibility on cost and financial processes to provide feedback.\nUser-11013, Tower : Digitial & Commercial, Cost Control: Unexpected costs changes and increases are well-managed and kept", "doc_id": "902ad918-fce3-494b-95f2-92d69b72b032", "embedding": null, "doc_hash": "d66a90913c93d9fb9d5550a7a8e66fe48b2247828f9f4963e408c6760eded59f", "extra_info": null, "node_info": {"start": 0, "end": 14708}, "relationships": {"1": "c1185d4f-4ecd-45c0-a15b-51a4953b4671", "3": "81c4feef-c1a3-4fd2-841b-7bcd1db1eed0"}, "__type__": "1"}, "81c4feef-c1a3-4fd2-841b-7bcd1db1eed0": {"text": "cohesive organization globally; helps us break down their silos , Disagree\nUser-11013, Tower : Digitial & Commercial, Communication: Supplier team is professional, approachable and clear in their communication with us, Strongly Agree\nUser-11013, Tower : Digitial & Commercial, Responsiveness: Resources respond quickly and act with appropriate urgency, Strongly Agree\nUser-11013, Tower : Digitial & Commercial, Flexibility: Account team demonstrates flexibility when required, Strongly Agree\nUser-11013, Tower : Digitial & Commercial, Is there any additional feedback you would like to provide regarding financial performance?, I have no visibility on cost and financial processes to provide feedback.\nUser-11013, Tower : Digitial & Commercial, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Strongly Agree\nUser-11013, Tower : Digitial & Commercial, Invoicing: Invoices are timely, accurate and easy to understand, Neutral\nUser-11013, Tower : Digitial & Commercial, Pricing: Cost is competitive, Neutral\nUser-11013, Tower : Digitial & Commercial, Is there any additional feedback you would like to provide regarding performance?, HCL resources have the right proactive attitude I have to recognize the great job HCL FSS are doing on the region and Vikas Juneja leadership to unblock and resolve for the ACD applications.\nUser-11013, Tower : Digitial & Commercial, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Agree\nUser-11014, Tower : Security, Alignment: Vendor resources understand our business and related industry trends and needs, Neutral\nUser-11014, Tower : Security, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Neutral\nUser-11014, Tower : Security, SLA Attainment: Meets or exceeds contracted service levels, Neutral\nUser-11014, Tower : Security, Response Times: Issues and requests are addressed within stated times, Neutral\nUser-11014, Tower : Security, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Neutral\nUser-11014, Tower : Security, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Disagree\nUser-11014, Tower : Security, Pricing: Cost is competitive, Disagree\nUser-11014, Tower : Security, Invoicing: Invoices are timely, accurate and easy to understand, Neutral\nUser-11014, Tower : Security, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Neutral\nUser-11014, Tower : Security, Flexibility: Account team demonstrates flexibility when required, Neutral\nUser-11014, Tower : Security, Responsiveness: Resources respond quickly and act with appropriate urgency, Neutral\nUser-11014, Tower : Security, Communication: Supplier team is professional, approachable and clear in their communication with us, Neutral\nUser-11014, Tower : Security, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Neutral\nUser-11014, Tower : Security, Innovation: Demonstration of new products and services that will help our business, Neutral\nUser-11014, Tower : Security, Cost Optimization: Proactive delivery of cost-saving ideas, Neutral\nUser-11014, Tower : Security, Resource Turnover: Vendor manages resource turnover appropriately, Neutral\nUser-11014, Tower : Security, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, The vendor has yet to make any suggestions as to areas of improvement in the HCL SOC1 controls or processes. \nUser-11014, Tower : Security, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, We asked for SOWs for additional specialized resources. The price quoted was very expensive. We decided not to add additional resources.\nUser-11015, Tower : I&O, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Neutral\nUser-11015, Tower : I&O, Innovation: Demonstration of new products and services that will help our business, Agree\nUser-11015, Tower : I&O, Cost Optimization: Proactive delivery of cost-saving ideas, Neutral\nUser-11015, Tower : I&O, Alignment: Vendor resources understand our business and related industry trends and needs, Neutral\nUser-11015, Tower : I&O, Resource Turnover: Vendor manages resource turnover appropriately, Disagree\nUser-11015, Tower : I&O, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Missing resources or high turn over of resources\nUser-11015, Tower : I&O, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Backlog of tickets causing major delay in resolution\nUser-11015, Tower : I&O, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Backlog of tickets causing major delay in resolution\nUser-11015, Tower : I&O, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Junior resources in key towers. Not always available in regional time zones.\nUser-11015, Tower : I&O, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Recruiting the wrong resources as they are available vs have the correct skill set. Moved resources from one role to another many times just to plug a gap. Some roles still not recruited, some critical roles not HCL and contracted out.\nUser-11015, Tower : I&O, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Disagree\nUser-11015, Tower : I&O, SLA Attainment: Meets or exceeds contracted service levels, Disagree\nUser-11015, Tower : I&O, Response Times: Issues and requests are addressed within stated times, Disagree\nUser-11015, Tower : I&O, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Disagree\nUser-11015, Tower : I&O, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Agree\nUser-11015, Tower : I&O, Is there any additional feedback you would like to provide regarding performance?, Resources in some towers are very junior without skills or knowledge. They rely on guidance or being told how to do something by their seniors. Not enough resources to operate in this model. We are also seeing resources now wearing a multi-hat, risk of burnout and turn over is real.\nUser-11015, Tower : I&O, Pricing: Cost is competitive, Neutral\nUser-11015, Tower : I&O, Invoicing: Invoices are timely, accurate and easy to understand, Neutral\nUser-11015, Tower : I&O, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Neutral\nUser-11015, Tower : I&O, Flexibility: Account team demonstrates flexibility when required, Neutral\nUser-11015, Tower : I&O, Responsiveness: Resources respond quickly and act with appropriate urgency, Neutral\nUser-11015, Tower : I&O, Communication: Supplier team is professional, approachable and clear in their communication with us, Neutral\nUser-11016, Tower : Supply Chain, Communication: Supplier team is professional, approachable and clear in their communication with us, Agree\nUser-11016, Tower : Supply Chain, Responsiveness: Resources respond quickly and act with appropriate urgency, Neutral\nUser-11016, Tower : Supply Chain, Flexibility: Account team demonstrates flexibility when required, Agree\nUser-11016, Tower : Supply Chain, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Neutral\nUser-11016, Tower : Supply Chain, Invoicing: Invoices are timely, accurate and easy to understand, Neutral\nUser-11016, Tower : Supply Chain, Pricing: Cost is competitive, Disagree\nUser-11016, Tower : Supply Chain, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Neutral\nUser-11016, Tower : Supply Chain, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Neutral\nUser-11016, Tower : Supply Chain, Response Times: Issues and requests are addressed within stated times, Strongly Disagree\nUser-11016, Tower : Supply Chain, SLA Attainment: Meets or exceeds contracted service levels, Strongly Disagree\nUser-11016, Tower : Supply Chain, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Disagree\nUser-11016, Tower : Supply Chain, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, They are failing to lead quickly to stabilization.\nUser-11016, Tower : Supply Chain, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Costs and estimates seem unreasonably high and need to be challenged everytime.\nUser-11016, Tower : Supply Chain, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, While individual tasks are performed with relatively good quality. HCL seems overwhelmed with work. So tit requires many follow ups before anything is done and there is lack of responsiveness and accountability.\nUser-11016, Tower : Supply Chain, Resource Turnover: Vendor manages resource turnover appropriately, Neutral\nUser-11016, Tower : Supply Chain, Alignment: Vendor resources understand our business and related industry trends and needs, Neutral\nUser-11016, Tower : Supply Chain, Cost Optimization: Proactive delivery of cost-saving ideas, Disagree\nUser-11016, Tower : Supply Chain, Innovation: Demonstration of new products and services that will help our business, Neutral\nUser-11016, Tower : Supply Chain, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Agree\nUser-11017, Tower : Shared Services, Response Times: Issues and requests are addressed within stated times, Agree\nUser-11017, Tower : Shared Services, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Agree\nUser-11017, Tower : Shared Services, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Agree\nUser-11017, Tower : Shared Services, Flexibility: Account team demonstrates flexibility when required, Agree\nUser-11017, Tower : Shared Services, Responsiveness: Resources respond quickly and act with appropriate urgency, Agree\nUser-11017, Tower : Shared Services, Communication: Supplier team is professional, approachable and clear in their communication with us, Agree\nUser-11017, Tower : Shared Services, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Agree\nUser-11017, Tower : Shared Services, Innovation: Demonstration of new products and services that will help our business, Agree\nUser-11017, Tower : Shared Services, Cost Optimization: Proactive delivery of cost-saving ideas, Agree\nUser-11017, Tower : Shared Services, Alignment: Vendor resources understand our business and related industry trends and needs, Neutral\nUser-11017, Tower : Shared Services, Resource Turnover: Vendor manages resource turnover appropriately, Agree\nUser-11017, Tower : Shared Services, Invoicing: Invoices are timely, accurate and easy to understand, Agree\nUser-11017, Tower : Shared Services, Pricing: Cost is competitive, Agree\nUser-11017, Tower : Shared Services, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Agree\nUser-11017, Tower : Shared Services, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Agree\nUser-11017, Tower : Shared Services, SLA Attainment: Meets or exceeds contracted service levels, Agree\nUser-11018, Tower : Supply Chain, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Some resources understand functional needs, but not many\nUser-11018, Tower : Supply Chain, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Overall, lack of knowledge, understanding, accountability and urgency to deliver. There are a few good people who are these things but not many\nUser-11018, Tower : Supply Chain, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, I think there are pockets of good resources who do their bet to partner. When work goes outside of one team or across several teams lack of understanding and urgency is extremely frustrating. Further, the HCL company is not reacting any differently as a partner \nUser-11018, Tower : Supply Chain, Is there any additional feedback you would like to provide regarding ${VendorName}'s thought leadership?, I have not seen any action in this area\nUser-11018, Tower : Supply Chain, Resource Turnover: Vendor manages resource turnover appropriately, Neutral\nUser-11018, Tower : Supply Chain, Alignment: Vendor resources understand our business and related industry trends and needs, Neutral\nUser-11018, Tower : Supply Chain, Cost Optimization: Proactive delivery of cost-saving ideas, Disagree\nUser-11018, Tower : Supply Chain, Innovation: Demonstration of new products and services that will help our business, Disagree\nUser-11018, Tower : Supply Chain, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Disagree\nUser-11018, Tower : Supply Chain, Communication: Supplier team is professional, approachable and clear in their communication with us, Agree\nUser-11018, Tower : Supply Chain, Responsiveness: Resources respond quickly and act with appropriate urgency, Neutral\nUser-11018, Tower : Supply Chain, Flexibility: Account team demonstrates flexibility when required, Neutral\nUser-11018, Tower : Supply Chain, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Disagree\nUser-11018, Tower : Supply Chain, Invoicing: Invoices are timely, accurate and easy to understand, Disagree\nUser-11018, Tower :", "doc_id": "81c4feef-c1a3-4fd2-841b-7bcd1db1eed0", "embedding": null, "doc_hash": "8ec86bf0d08679177f85da6ca5bacff1a5404177a10054be1687a191584410fd", "extra_info": null, "node_info": {"start": 13992, "end": 28429}, "relationships": {"1": "c1185d4f-4ecd-45c0-a15b-51a4953b4671", "2": "902ad918-fce3-494b-95f2-92d69b72b032", "3": "54169aaa-b05b-4f0a-ab60-aadef1bf0af2"}, "__type__": "1"}, "54169aaa-b05b-4f0a-ab60-aadef1bf0af2": {"text": "team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Disagree\nUser-11018, Tower : Supply Chain, Communication: Supplier team is professional, approachable and clear in their communication with us, Agree\nUser-11018, Tower : Supply Chain, Responsiveness: Resources respond quickly and act with appropriate urgency, Neutral\nUser-11018, Tower : Supply Chain, Flexibility: Account team demonstrates flexibility when required, Neutral\nUser-11018, Tower : Supply Chain, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Disagree\nUser-11018, Tower : Supply Chain, Invoicing: Invoices are timely, accurate and easy to understand, Disagree\nUser-11018, Tower : Supply Chain, Pricing: Cost is competitive, Neutral\nUser-11018, Tower : Supply Chain, Is there any additional feedback you would like to provide regarding performance?, I am not seeing improvement with HCL leadership/better processes. There a pockets of good people, but not a very large change. \nUser-11018, Tower : Supply Chain, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Disagree\nUser-11018, Tower : Supply Chain, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Neutral\nUser-11018, Tower : Supply Chain, Response Times: Issues and requests are addressed within stated times, Neutral\nUser-11018, Tower : Supply Chain, SLA Attainment: Meets or exceeds contracted service levels, Disagree\nUser-11018, Tower : Supply Chain, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Neutral\nUser-11019, Tower : PMO, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Agree\nUser-11019, Tower : PMO, SLA Attainment: Meets or exceeds contracted service levels, Neutral\nUser-11019, Tower : PMO, Response Times: Issues and requests are addressed within stated times, Agree\nUser-11019, Tower : PMO, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Agree\nUser-11019, Tower : PMO, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Neutral\nUser-11019, Tower : PMO, Is there any additional feedback you would like to provide regarding performance?, We're working to build up the Organizational improvements with HCL onboarded. This includes the Agile SAFE implementation, Onboarding portal, roll out of the Estimation Model, etc. We are folding in best practices from HCL's COE's so improvements are being embedded as we build. \nUser-11019, Tower : PMO, Pricing: Cost is competitive, Agree\nUser-11019, Tower : PMO, Invoicing: Invoices are timely, accurate and easy to understand, Agree\nUser-11019, Tower : PMO, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Agree\nUser-11019, Tower : PMO, Flexibility: Account team demonstrates flexibility when required, Strongly Agree\nUser-11019, Tower : PMO, Responsiveness: Resources respond quickly and act with appropriate urgency, Strongly Agree\nUser-11019, Tower : PMO, Communication: Supplier team is professional, approachable and clear in their communication with us, Strongly Agree\nUser-11019, Tower : PMO, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Strongly Agree\nUser-11019, Tower : PMO, Is there any additional feedback you would like to provide about the relationship with HCL?, Great partnership to date with HCL for PMO build up. As we're building up the organization and structure - we would love to hear more about what we're doing at other clients to help level up the organization and how we can enable better collaboration across GTO and the globe. Overall, we've been impressed with the partnership. \r\n\r\nPS still hearing issues with UAM! This area still needs work as tickets are closed with resolution when open issues have not been addressed so SLAs can be met. \nUser-11019, Tower : PMO, Innovation: Demonstration of new products and services that will help our business, Neutral\nUser-11019, Tower : PMO, Cost Optimization: Proactive delivery of cost-saving ideas, Neutral\nUser-11019, Tower : PMO, Alignment: Vendor resources understand our business and related industry trends and needs, Strongly Agree\nUser-11019, Tower : PMO, Resource Turnover: Vendor manages resource turnover appropriately, Strongly Agree\nUser-11019, Tower : PMO, Is there any additional feedback you would like to provide regarding ${VendorName}'s thought leadership?, HCL's thought leadership is strong. Leaders are experienced, seasoned communicators that bring a lot of best practice ideas to the table. Would like to see ideas transformed to plans. \r\n Examples TCOE and CTO umbrella - ideas are great but a bit high level. Would like to see ideas transitioned to execution plans.\nUser-11021, Tower : CORP, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Neutral\nUser-11021, Tower : CORP, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Neutral\nUser-11021, Tower : CORP, Response Times: Issues and requests are addressed within stated times, Neutral\nUser-11021, Tower : CORP, SLA Attainment: Meets or exceeds contracted service levels, Neutral\nUser-11021, Tower : CORP, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Neutral\nUser-11021, Tower : CORP, Resource Turnover: Vendor manages resource turnover appropriately, Agree\nUser-11021, Tower : CORP, Alignment: Vendor resources understand our business and related industry trends and needs, Agree\nUser-11021, Tower : CORP, Cost Optimization: Proactive delivery of cost-saving ideas, Neutral\nUser-11021, Tower : CORP, Innovation: Demonstration of new products and services that will help our business, Neutral\nUser-11021, Tower : CORP, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Agree\nUser-11021, Tower : CORP, Communication: Supplier team is professional, approachable and clear in their communication with us, Agree\nUser-11021, Tower : CORP, Responsiveness: Resources respond quickly and act with appropriate urgency, Neutral\nUser-11021, Tower : CORP, Flexibility: Account team demonstrates flexibility when required, Agree\nUser-11021, Tower : CORP, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Agree\nUser-11021, Tower : CORP, Invoicing: Invoices are timely, accurate and easy to understand, Neutral\nUser-11021, Tower : CORP, Pricing: Cost is competitive, Agree\nUser-11022, Tower : I&O, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Agree\nUser-11022, Tower : I&O, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Agree\nUser-11022, Tower : I&O, SLA Attainment: Meets or exceeds contracted service levels, Agree\nUser-11022, Tower : I&O, Response Times: Issues and requests are addressed within stated times, Neutral\nUser-11022, Tower : I&O, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Agree\nUser-11022, Tower : I&O, Pricing: Cost is competitive, Neutral\nUser-11022, Tower : I&O, Invoicing: Invoices are timely, accurate and easy to understand, Neutral\nUser-11022, Tower : I&O, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Neutral\nUser-11022, Tower : I&O, Flexibility: Account team demonstrates flexibility when required, Strongly Agree\nUser-11022, Tower : I&O, Responsiveness: Resources respond quickly and act with appropriate urgency, Agree\nUser-11022, Tower : I&O, Communication: Supplier team is professional, approachable and clear in their communication with us, Agree\nUser-11022, Tower : I&O, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Neutral\nUser-11022, Tower : I&O, Innovation: Demonstration of new products and services that will help our business, Agree\nUser-11022, Tower : I&O, Cost Optimization: Proactive delivery of cost-saving ideas, Neutral\nUser-11022, Tower : I&O, Alignment: Vendor resources understand our business and related industry trends and needs, Agree\nUser-11022, Tower : I&O, Resource Turnover: Vendor manages resource turnover appropriately, Agree\nUser-11025, nan, SLA Attainment: Meets or exceeds contracted service levels, Neutral\nUser-11025, nan, Response Times: Issues and requests are addressed within stated times, Neutral\nUser-11025, nan, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Neutral\nUser-11025, nan, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Neutral\nUser-11025, nan, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Agree\nUser-11025, nan, Pricing: Cost is competitive, Neutral\nUser-11025, nan, Invoicing: Invoices are timely, accurate and easy to understand, Neutral\nUser-11025, nan, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Neutral\nUser-11025, nan, Flexibility: Account team demonstrates flexibility when required, Agree\nUser-11025, nan, Responsiveness: Resources respond quickly and act with appropriate urgency, Disagree\nUser-11025, nan, Communication: Supplier team is professional, approachable and clear in their communication with us, Agree\nUser-11025, nan, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Neutral\nUser-11025, nan, Innovation: Demonstration of new products and services that will help our business, Neutral\nUser-11025, nan, Cost Optimization: Proactive delivery of cost-saving ideas, Neutral\nUser-11025, nan, Alignment: Vendor resources understand our business and related industry trends and needs, Neutral\nUser-11025, nan, Resource Turnover: Vendor manages resource turnover appropriately, Neutral\nUser-11025, nan, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, date commitments are made but early honored. give more realistic dates. we understand \nUser-11026, nan, SLA Attainment: Meets or exceeds contracted service levels, Agree\nUser-11026, nan, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Agree\nUser-11026, nan, Response Times: Issues and requests are addressed within stated times, Agree\nUser-11026, nan, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Strongly Agree\nUser-11026, nan, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Strongly Agree\nUser-11026, nan, Is there any additional feedback you would like to provide regarding performance?, need to keep focused on process improvements to drive maturity and hygiene into the environment. Also need to do a better job proactively showing the progress to the broader team so they appreciate all the hard work.\nUser-11026, nan, Pricing: Cost is competitive, Agree\nUser-11026, nan, Invoicing: Invoices are timely, accurate and easy to understand, Neutral\nUser-11026, nan, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Neutral\nUser-11026, nan, Flexibility: Account team demonstrates flexibility when required, Agree\nUser-11026, nan, Responsiveness: Resources respond quickly and act with appropriate urgency, Agree\nUser-11026, nan, Communication: Supplier team is professional, approachable and clear in their communication with us, Strongly Agree\nUser-11026, nan, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Strongly Agree\nUser-11026, nan, Innovation: Demonstration of new products and services that will help our business, Neutral\nUser-11026, nan, Cost Optimization: Proactive delivery of cost-saving ideas, Neutral\nUser-11026, nan, Alignment: Vendor resources understand our business and related industry trends and needs, Neutral\nUser-11026, nan, Resource Turnover: Vendor manages resource turnover appropriately, Agree\nUser-11031, Tower : Supply Chain, Response Times: Issues and requests are addressed within stated times, Disagree\nUser-11031, Tower : Supply Chain, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Neutral\nUser-11031, Tower : Supply Chain, SLA Attainment: Meets or exceeds contracted service levels, Disagree\nUser-11031, Tower : Supply Chain, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Neutral\nUser-11031, Tower : Supply Chain, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Neutral\nUser-11031, Tower : Supply Chain, Pricing: Cost is competitive, Neutral\nUser-11031, Tower : Supply Chain, Invoicing: Invoices are timely, accurate and easy to understand, Neutral\nUser-11031, Tower : Supply Chain, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Neutral\nUser-11031, Tower : Supply Chain, Flexibility: Account team demonstrates flexibility when required, Strongly Disagree\nUser-11031, Tower : Supply Chain, Responsiveness: Resources respond quickly and act with appropriate", "doc_id": "54169aaa-b05b-4f0a-ab60-aadef1bf0af2", "embedding": null, "doc_hash": "2bf78783e7e184428f840d31a5a5d7460dd71008c4115d26ba6c682a304d4852", "extra_info": null, "node_info": {"start": 28502, "end": 42785}, "relationships": {"1": "c1185d4f-4ecd-45c0-a15b-51a4953b4671", "2": "81c4feef-c1a3-4fd2-841b-7bcd1db1eed0", "3": "62764cae-47bf-4e4a-ac61-ea7553abeb11"}, "__type__": "1"}, "62764cae-47bf-4e4a-ac61-ea7553abeb11": {"text": "milestones/due dates, Neutral\nUser-11031, Tower : Supply Chain, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Neutral\nUser-11031, Tower : Supply Chain, Pricing: Cost is competitive, Neutral\nUser-11031, Tower : Supply Chain, Invoicing: Invoices are timely, accurate and easy to understand, Neutral\nUser-11031, Tower : Supply Chain, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Neutral\nUser-11031, Tower : Supply Chain, Flexibility: Account team demonstrates flexibility when required, Strongly Disagree\nUser-11031, Tower : Supply Chain, Responsiveness: Resources respond quickly and act with appropriate urgency, Disagree\nUser-11031, Tower : Supply Chain, Communication: Supplier team is professional, approachable and clear in their communication with us, Disagree\nUser-11031, Tower : Supply Chain, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Disagree\nUser-11031, Tower : Supply Chain, Innovation: Demonstration of new products and services that will help our business, Neutral\nUser-11031, Tower : Supply Chain, Cost Optimization: Proactive delivery of cost-saving ideas, Neutral\nUser-11031, Tower : Supply Chain, Alignment: Vendor resources understand our business and related industry trends and needs, Neutral\nUser-11031, Tower : Supply Chain, Resource Turnover: Vendor manages resource turnover appropriately, Neutral\nUser-11031, Tower : Supply Chain, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Issues need multiple follow and escalate to get right attention. Coordination between HCL team fallback in Mattel.\nUser-11031, Tower : Supply Chain, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Many time HCL don\u201a\u00c4\u00f4t understand the business urgency snd don\u201a\u00c4\u00f4t trust Mattel \nUser-11032, Tower : Supply Chain, Communication: Supplier team is professional, approachable and clear in their communication with us, Disagree\nUser-11032, Tower : Supply Chain, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Disagree\nUser-11032, Tower : Supply Chain, Is there any additional feedback you would like to provide about the relationship with HCL?, Team needs to be more proactive. Cannot solve over email or chat. Please set up right cadence and governance.\nUser-11032, Tower : Supply Chain, Innovation: Demonstration of new products and services that will help our business, Neutral\nUser-11032, Tower : Supply Chain, Cost Optimization: Proactive delivery of cost-saving ideas, Strongly Disagree\nUser-11032, Tower : Supply Chain, Resource Turnover: Vendor manages resource turnover appropriately, Neutral\nUser-11032, Tower : Supply Chain, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Significant room for improvement after 3 months of steady state\nUser-11032, Tower : Supply Chain, Alignment: Vendor resources understand our business and related industry trends and needs, Neutral\nUser-11032, Tower : Supply Chain, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Disagree\nUser-11032, Tower : Supply Chain, SLA Attainment: Meets or exceeds contracted service levels, Disagree\nUser-11032, Tower : Supply Chain, Response Times: Issues and requests are addressed within stated times, Disagree\nUser-11032, Tower : Supply Chain, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Disagree\nUser-11032, Tower : Supply Chain, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Not demonstrated yet\nUser-11032, Tower : Supply Chain, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Governance is important. Need clear actionable metrics.\nUser-11032, Tower : Supply Chain, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Significant room for improvement after 3 months of steady state\nUser-11032, Tower : Supply Chain, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Significant room for improvement after 3 months of steady state\nUser-11032, Tower : Supply Chain, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Significant room for improvement after 3 months of steady state\nUser-11032, Tower : Supply Chain, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Significant room for improvement after 3 months of steady state\nUser-11032, Tower : Supply Chain, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Disagree\nUser-11032, Tower : Supply Chain, Is there any additional feedback you would like to provide regarding performance?, Significant room for improvement after 3 months of steady state. Need more people, and be more proactive\nUser-11032, Tower : Supply Chain, Pricing: Cost is competitive, Agree\nUser-11032, Tower : Supply Chain, Invoicing: Invoices are timely, accurate and easy to understand, Agree\nUser-11032, Tower : Supply Chain, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Neutral\nUser-11032, Tower : Supply Chain, Flexibility: Account team demonstrates flexibility when required, Neutral\nUser-11032, Tower : Supply Chain, Responsiveness: Resources respond quickly and act with appropriate urgency, Neutral\nUser-11033, Tower : Digitial & Commercial, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, This is a duplicate question.\nUser-11033, Tower : Digitial & Commercial, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Neutral\nUser-11033, Tower : Digitial & Commercial, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, This is a duplicate question.\nUser-11033, Tower : Digitial & Commercial, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, I have not seen any evidence of HCL providing any thought leadership over and above operational implementation. I still see Mattel staff identifying opportunities, leading difficult solutions and driving needed changes.\nUser-11033, Tower : Digitial & Commercial, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, This is a duplicate question.\nUser-11033, Tower : Digitial & Commercial, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, We are still struggling with support quality in a number areas, particularly with recurring business impacting issues that are not having root cause addressed. By now, HCL should have a strong enough technical understanding to be able to support key business activities and to find permanent solutions to issues that are coming up but we're just not there yet.\nUser-11033, Tower : Digitial & Commercial, Resource Turnover: Vendor manages resource turnover appropriately, Neutral\nUser-11033, Tower : Digitial & Commercial, Alignment: Vendor resources understand our business and related industry trends and needs, Disagree\nUser-11033, Tower : Digitial & Commercial, Cost Optimization: Proactive delivery of cost-saving ideas, Strongly Disagree\nUser-11033, Tower : Digitial & Commercial, Innovation: Demonstration of new products and services that will help our business, Strongly Disagree\nUser-11033, Tower : Digitial & Commercial, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Neutral\nUser-11033, Tower : Digitial & Commercial, Communication: Supplier team is professional, approachable and clear in their communication with us, Strongly Agree\nUser-11033, Tower : Digitial & Commercial, Responsiveness: Resources respond quickly and act with appropriate urgency, Agree\nUser-11033, Tower : Digitial & Commercial, Flexibility: Account team demonstrates flexibility when required, Agree\nUser-11033, Tower : Digitial & Commercial, Is there any additional feedback you would like to provide regarding financial performance?, I don't have enough direct experience yet.\nUser-11033, Tower : Digitial & Commercial, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Neutral\nUser-11033, Tower : Digitial & Commercial, Invoicing: Invoices are timely, accurate and easy to understand, Neutral\nUser-11033, Tower : Digitial & Commercial, Pricing: Cost is competitive, Neutral\nUser-11033, Tower : Digitial & Commercial, Is there any additional feedback you would like to provide regarding performance?, This survey is difficult to answer because we have good areas and bad areas within the services provided by HCL. To get useful feedback we really need to dive into each functional area or even application.\nUser-11033, Tower : Digitial & Commercial, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Strongly Disagree\nUser-11033, Tower : Digitial & Commercial, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Disagree\nUser-11033, Tower : Digitial & Commercial, Response Times: Issues and requests are addressed within stated times, Neutral\nUser-11033, Tower : Digitial & Commercial, SLA Attainment: Meets or exceeds contracted service levels, Neutral\nUser-11035, Tower : I&O, Alignment: Vendor resources understand our business and related industry trends and needs, Agree\nUser-11035, Tower : I&O, Cost Optimization: Proactive delivery of cost-saving ideas, Neutral\nUser-11035, Tower : I&O, Innovation: Demonstration of new products and services that will help our business, Agree\nUser-11035, Tower : I&O, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Agree\nUser-11035, Tower : I&O, Resource Turnover: Vendor manages resource turnover appropriately, Neutral\nUser-11035, Tower : I&O, Communication: Supplier team is professional, approachable and clear in their communication with us, Agree\nUser-11035, Tower : I&O, Responsiveness: Resources respond quickly and act with appropriate urgency, Neutral\nUser-11035, Tower : I&O, Flexibility: Account team demonstrates flexibility when required, Agree\nUser-11035, Tower : I&O, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Agree\nUser-11035, Tower : I&O, Invoicing: Invoices are timely, accurate and easy to understand, Agree\nUser-11035, Tower : I&O, Pricing: Cost is competitive, Agree\nUser-11035, Tower : I&O, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Agree\nUser-11035, Tower : I&O, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Neutral\nUser-11035, Tower : I&O, Response Times: Issues and requests are addressed within stated times, Neutral\nUser-11035, Tower : I&O, SLA Attainment: Meets or exceeds contracted service levels, Neutral\nUser-11035, Tower : I&O, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Agree\nUser-11036, Tower : Digitial & Commercial, Innovation: Demonstration of new products and services that will help our business, Disagree\nUser-11036, Tower : Digitial & Commercial, Cost Optimization: Proactive delivery of cost-saving ideas, Neutral\nUser-11036, Tower : Digitial & Commercial, Alignment: Vendor resources understand our business and related industry trends and needs, Agree\nUser-11036, Tower : Digitial & Commercial, Flexibility: Account team demonstrates flexibility when required, Neutral\nUser-11036, Tower : Digitial & Commercial, Is there any additional feedback you would like to provide regarding ${VendorName}'s thought leadership?, Too early to tell on turnover yet.\nUser-11036, Tower : Digitial & Commercial, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, My experience & touch point with HCL has been limited to QA. Still waiting to see what automation they bring to testing \nUser-11036, Tower : Digitial & Commercial, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Neutral\nUser-11036, Tower : Digitial & Commercial, SLA Attainment: Meets or exceeds contracted service levels, Neutral\nUser-11036, Tower : Digitial & Commercial, Response Times: Issues and requests are addressed within stated times, Neutral\nUser-11036, Tower : Digitial & Commercial, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Neutral\nUser-11036, Tower : Digitial & Commercial, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Neutral\nUser-11036, Tower : Digitial & Commercial, Is there any additional feedback you would like to provide regarding performance?, Feels like as expected for a start up & transitional period. \nUser-11036, Tower : Digitial & Commercial, Pricing: Cost is competitive, Neutral\nUser-11036, Tower : Digitial & Commercial, Invoicing: Invoices are timely, accurate and easy to understand, Neutral\nUser-11036, Tower : Digitial & Commercial, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Neutral\nUser-11036, Tower : Digitial & Commercial, Resource Turnover: Vendor manages resource turnover appropriately, Neutral\nUser-11036, Tower : Digitial & Commercial, Responsiveness: Resources respond quickly and act with appropriate urgency, Agree\nUser-11036, Tower : Digitial & Commercial, Communication: Supplier team is professional, approachable and clear in their communication with us, Neutral\nUser-11036, Tower : Digitial & Commercial, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Neutral\nUser-11037, Tower : Digitial & Commercial, Innovation: Demonstration of new products and services that will help our business,", "doc_id": "62764cae-47bf-4e4a-ac61-ea7553abeb11", "embedding": null, "doc_hash": "cddec6d5a0b9fc39bd663c8115d16058e83138894f65dcc98ae25e5db47cb8f5", "extra_info": null, "node_info": {"start": 42778, "end": 57362}, "relationships": {"1": "c1185d4f-4ecd-45c0-a15b-51a4953b4671", "2": "54169aaa-b05b-4f0a-ab60-aadef1bf0af2", "3": "8d9c8637-f5a0-4cb9-9ebb-6ff3c9a0a57b"}, "__type__": "1"}, "8d9c8637-f5a0-4cb9-9ebb-6ff3c9a0a57b": {"text": "Commercial, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Neutral\nUser-11036, Tower : Digitial & Commercial, Resource Turnover: Vendor manages resource turnover appropriately, Neutral\nUser-11036, Tower : Digitial & Commercial, Responsiveness: Resources respond quickly and act with appropriate urgency, Agree\nUser-11036, Tower : Digitial & Commercial, Communication: Supplier team is professional, approachable and clear in their communication with us, Neutral\nUser-11036, Tower : Digitial & Commercial, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Neutral\nUser-11037, Tower : Digitial & Commercial, Innovation: Demonstration of new products and services that will help our business, Disagree\nUser-11037, Tower : Digitial & Commercial, Cost Optimization: Proactive delivery of cost-saving ideas, Neutral\nUser-11037, Tower : Digitial & Commercial, Alignment: Vendor resources understand our business and related industry trends and needs, Agree\nUser-11037, Tower : Digitial & Commercial, Resource Turnover: Vendor manages resource turnover appropriately, Strongly Agree\nUser-11037, Tower : Digitial & Commercial, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Issues are getting addressed many weeks after they are opened. For example, the business raises and issue about incorrect data on an operational report on a specific day for a specific sale, and we get no response for many weeks. At that point, the team is having to go back in time to try to speculate on what could have happened on that day in the past. \nUser-11037, Tower : Digitial & Commercial, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, It feels like proper KT was not performed with CTS. I have sat through issues where the team trying to do the solve is still learning on the fly for what the system is even supposed to do.\nUser-11037, Tower : Digitial & Commercial, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, It almost feels like there have been so many issues, that the team is overworked with too much on their plate. I see many escalations every day and I can just imagine if I were on the other end of the escalations, how I would handle all of the extra work.\nUser-11037, Tower : Digitial & Commercial, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, I have not seen evidence of new products and services that could help us, so I cannot comment on that.\nUser-11037, Tower : Digitial & Commercial, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Disagree\nUser-11037, Tower : Digitial & Commercial, SLA Attainment: Meets or exceeds contracted service levels, Disagree\nUser-11037, Tower : Digitial & Commercial, Response Times: Issues and requests are addressed within stated times, Disagree\nUser-11037, Tower : Digitial & Commercial, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Disagree\nUser-11037, Tower : Digitial & Commercial, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Disagree\nUser-11037, Tower : Digitial & Commercial, Is there any additional feedback you would like to provide regarding performance?, I have not seen evidence of improved performance improvements.\nUser-11037, Tower : Digitial & Commercial, Pricing: Cost is competitive, Neutral\nUser-11037, Tower : Digitial & Commercial, Invoicing: Invoices are timely, accurate and easy to understand, Agree\nUser-11037, Tower : Digitial & Commercial, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Neutral\nUser-11037, Tower : Digitial & Commercial, Flexibility: Account team demonstrates flexibility when required, Neutral\nUser-11037, Tower : Digitial & Commercial, Responsiveness: Resources respond quickly and act with appropriate urgency, Disagree\nUser-11037, Tower : Digitial & Commercial, Communication: Supplier team is professional, approachable and clear in their communication with us, Strongly Agree\nUser-11037, Tower : Digitial & Commercial, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Agree\nUser-11041, Tower : I&O, Pricing: Cost is competitive, Agree\nUser-11041, Tower : I&O, Is there any additional feedback you would like to provide regarding ${VendorName}'s thought leadership?, It's too early to comment on resource turnover. Sustainment is important. We aren't worried about turnover, it would be interesting to see how HCL handles turnover be a seamless process. \nUser-11041, Tower : I&O, Response Times: Issues and requests are addressed within stated times, Agree\nUser-11041, Tower : I&O, SLA Attainment: Meets or exceeds contracted service levels, Neutral\nUser-11041, Tower : I&O, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Agree\nUser-11041, Tower : I&O, Is there any additional feedback you would like to provide regarding performance?, HCL Team brings lots of energy and collaboration. HCL is on the right direction.\nUser-11041, Tower : I&O, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Agree\nUser-11041, Tower : I&O, Is there any additional feedback you would like to provide regarding financial performance?, nan\nUser-11041, Tower : I&O, Flexibility: Account team demonstrates flexibility when required, Neutral\nUser-11041, Tower : I&O, Responsiveness: Resources respond quickly and act with appropriate urgency, Neutral\nUser-11041, Tower : I&O, Communication: Supplier team is professional, approachable and clear in their communication with us, Neutral\nUser-11041, Tower : I&O, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Agree\nUser-11041, Tower : I&O, Innovation: Demonstration of new products and services that will help our business, Neutral\nUser-11041, Tower : I&O, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Agree\nUser-11041, Tower : I&O, Cost Optimization: Proactive delivery of cost-saving ideas, Neutral\nUser-11041, Tower : I&O, Alignment: Vendor resources understand our business and related industry trends and needs, Agree\nUser-11041, Tower : I&O, Resource Turnover: Vendor manages resource turnover appropriately, Neutral\nUser-11041, Tower : I&O, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Neutral\nUser-11041, Tower : I&O, Invoicing: Invoices are timely, accurate and easy to understand, Agree\nUser-11043, Tower : PMO, Flexibility: Account team demonstrates flexibility when required, Neutral\nUser-11043, Tower : PMO, Communication: Supplier team is professional, approachable and clear in their communication with us, Strongly Agree\nUser-11043, Tower : PMO, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Agree\nUser-11043, Tower : PMO, Innovation: Demonstration of new products and services that will help our business, Neutral\nUser-11043, Tower : PMO, Cost Optimization: Proactive delivery of cost-saving ideas, Neutral\nUser-11043, Tower : PMO, Alignment: Vendor resources understand our business and related industry trends and needs, Neutral\nUser-11043, Tower : PMO, Resource Turnover: Vendor manages resource turnover appropriately, Neutral\nUser-11043, Tower : PMO, SLA Attainment: Meets or exceeds contracted service levels, Disagree\nUser-11043, Tower : PMO, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Neutral\nUser-11043, Tower : PMO, Response Times: Issues and requests are addressed within stated times, Neutral\nUser-11043, Tower : PMO, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Neutral\nUser-11043, Tower : PMO, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Neutral\nUser-11043, Tower : PMO, Pricing: Cost is competitive, Disagree\nUser-11043, Tower : PMO, Invoicing: Invoices are timely, accurate and easy to understand, Neutral\nUser-11043, Tower : PMO, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Neutral\nUser-11043, Tower : PMO, Responsiveness: Resources respond quickly and act with appropriate urgency, Agree\nUser-11044, Tower : Digitial & Commercial, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Some support teams members are fantastic, others I need to follow-up with on multiple occasions. \nUser-11044, Tower : Digitial & Commercial, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, To me the HCL portfolio leads care only about there area of responsibility, instead of the entire Mattel portfolio. \nUser-11044, Tower : Digitial & Commercial, Flexibility: Account team demonstrates flexibility when required, Agree\nUser-11044, Tower : Digitial & Commercial, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Neutral\nUser-11044, Tower : Digitial & Commercial, Invoicing: Invoices are timely, accurate and easy to understand, Neutral\nUser-11044, Tower : Digitial & Commercial, Pricing: Cost is competitive, Neutral\nUser-11044, Tower : Digitial & Commercial, Is there any additional feedback you would like to provide regarding performance?, HCL needs to do a better job of holistically looking at issues. A ticket will be open for an application but the real issue is with the integrations.\nUser-11044, Tower : Digitial & Commercial, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Neutral\nUser-11044, Tower : Digitial & Commercial, SLA Attainment: Meets or exceeds contracted service levels, Disagree\nUser-11044, Tower : Digitial & Commercial, Response Times: Issues and requests are addressed within stated times, Disagree\nUser-11044, Tower : Digitial & Commercial, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Agree\nUser-11044, Tower : Digitial & Commercial, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Agree\nUser-11044, Tower : Digitial & Commercial, Responsiveness: Resources respond quickly and act with appropriate urgency, Disagree\nUser-11044, Tower : Digitial & Commercial, Communication: Supplier team is professional, approachable and clear in their communication with us, Agree\nUser-11044, Tower : Digitial & Commercial, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Disagree\nUser-11044, Tower : Digitial & Commercial, Innovation: Demonstration of new products and services that will help our business, Neutral\nUser-11044, Tower : Digitial & Commercial, Cost Optimization: Proactive delivery of cost-saving ideas, Neutral\nUser-11044, Tower : Digitial & Commercial, Alignment: Vendor resources understand our business and related industry trends and needs, Neutral\nUser-11044, Tower : Digitial & Commercial, Resource Turnover: Vendor manages resource turnover appropriately, Agree\nUser-11044, Tower : Digitial & Commercial, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, Some areas they are doing well, Salesforce Admin and PIM work is a good example. The work with GBI has been a struggle to get resolutions.\nUser-11044, Tower : Digitial & Commercial, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, There is constant follow-up. When I approve the 'Network Logon Expiration Notification' it does not always happen. I get multiple emails and approve multiple times. If the user gets disabled then there is another service request I need to create.\nUser-8734, nan, Cost Optimization: Proactive delivery of cost-saving ideas, Neutral\nUser-8734, nan, Alignment: Vendor resources understand our business and related industry trends and needs, Agree\nUser-8734, nan, Resource Turnover: Vendor manages resource turnover appropriately, Neutral\nUser-8734, nan, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, HCL is still working on developing mature Problem and Incident management processes\nUser-8734, nan, You rated the ${DimensionName} of ${VendorName} poorly, can you please elaborate?, HCL has been behind on getting SOWs completed and invoice generation for Q1\nUser-8734, nan, Flexibility: Account team demonstrates flexibility when required, Agree\nUser-8734, nan, Cost Control: Unexpected costs changes and increases are well-managed and kept to a minimum, Agree\nUser-8734, nan, Invoicing: Invoices are timely, accurate and easy to understand, Disagree\nUser-8734, nan, Pricing: Cost is competitive, Neutral\nUser-8734, nan, Continuous improvement: Vendor consistently identifies performance improvement opportunities and works at improving overall performance, Agree\nUser-8734, nan, Quality: Delivery is accurate and documentation is detailed and correct. The availability and quality (ex. skill-level) of HCL resources is on-par with expectations, Agree\nUser-8734, nan, Response Times: Issues and requests are addressed within stated times, Disagree\nUser-8734, nan, SLA Attainment: Meets or exceeds contracted service levels, Neutral\nUser-8734, nan, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Neutral\nUser-8734, nan, Responsiveness: Resources respond quickly and act with appropriate urgency, Neutral\nUser-8734, nan, Communication: Supplier team is professional, approachable and clear in their communication with us, Agree\nUser-8734, nan, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Strongly", "doc_id": "8d9c8637-f5a0-4cb9-9ebb-6ff3c9a0a57b", "embedding": null, "doc_hash": "3543875b2b2d2c0f200e42b76dfc37cdc8aaf9a6983c7539778a42eee43754a9", "extra_info": null, "node_info": {"start": 57305, "end": 71815}, "relationships": {"1": "c1185d4f-4ecd-45c0-a15b-51a4953b4671", "2": "62764cae-47bf-4e4a-ac61-ea7553abeb11", "3": "b377b0d1-5a35-4764-9e06-e16b1c538b62"}, "__type__": "1"}, "b377b0d1-5a35-4764-9e06-e16b1c538b62": {"text": "(ex. skill-level) of HCL resources is on-par with expectations, Agree\nUser-8734, nan, Response Times: Issues and requests are addressed within stated times, Disagree\nUser-8734, nan, SLA Attainment: Meets or exceeds contracted service levels, Neutral\nUser-8734, nan, On-Time Delivery: Delivery by agreed-upon or contractual milestones/due dates, Neutral\nUser-8734, nan, Responsiveness: Resources respond quickly and act with appropriate urgency, Neutral\nUser-8734, nan, Communication: Supplier team is professional, approachable and clear in their communication with us, Agree\nUser-8734, nan, Cohesiveness : Vendor account team is knowledgable and works as a cohesive organization globally; helps us break down their silos , Strongly Agree\nUser-8734, nan, Innovation: Demonstration of new products and services that will help our business, Agree", "doc_id": "b377b0d1-5a35-4764-9e06-e16b1c538b62", "embedding": null, "doc_hash": "2d1601ddb75c5f36c2f23cfef7469089a77fef7f610392136c6c9ab3519efd3e", "extra_info": null, "node_info": {"start": 71794, "end": 72638}, "relationships": {"1": "c1185d4f-4ecd-45c0-a15b-51a4953b4671", "2": "8d9c8637-f5a0-4cb9-9ebb-6ff3c9a0a57b"}, "__type__": "1"}}, "ref_doc_info": {"c1185d4f-4ecd-45c0-a15b-51a4953b4671": {"doc_hash": "54c7ce7d59f08aa137078807bc73268b40cad02844b0408130f6425b86a13472"}, "902ad918-fce3-494b-95f2-92d69b72b032": {"doc_hash": "d66a90913c93d9fb9d5550a7a8e66fe48b2247828f9f4963e408c6760eded59f"}, "81c4feef-c1a3-4fd2-841b-7bcd1db1eed0": {"doc_hash": "8ec86bf0d08679177f85da6ca5bacff1a5404177a10054be1687a191584410fd"}, "54169aaa-b05b-4f0a-ab60-aadef1bf0af2": {"doc_hash": "2bf78783e7e184428f840d31a5a5d7460dd71008c4115d26ba6c682a304d4852"}, "62764cae-47bf-4e4a-ac61-ea7553abeb11": {"doc_hash": "cddec6d5a0b9fc39bd663c8115d16058e83138894f65dcc98ae25e5db47cb8f5"}, "8d9c8637-f5a0-4cb9-9ebb-6ff3c9a0a57b": {"doc_hash": "3543875b2b2d2c0f200e42b76dfc37cdc8aaf9a6983c7539778a42eee43754a9"}, "b377b0d1-5a35-4764-9e06-e16b1c538b62": {"doc_hash": "2d1601ddb75c5f36c2f23cfef7469089a77fef7f610392136c6c9ab3519efd3e"}}}}, "vector_store": {"__type__": "simple", "__data__": {"simple_vector_store_data_dict": {"embedding_dict": {"902ad918-fce3-494b-95f2-92d69b72b032": [-0.004013784229755402, -0.012918400578200817, -0.0051763029769063, -0.010614000260829926, -0.016825564205646515, 0.006579579319804907, 0.0011358631309121847, -0.00667588273063302, -0.03150494024157524, -0.04072254151105881, 0.019040539860725403, 0.029248690232634544, 0.006276912055909634, -0.001891672145575285, -0.007057656534016132, 2.7676453100866638e-05, 0.02675856091082096, -0.010022422298789024, -0.0010154839837923646, -0.01934320665895939, -0.02875341661274433, -0.006834095343947411, -0.025946862995624542, 0.028285657986998558, -0.011460093781352043, -0.0010068854317069054, 0.026400864124298096, -0.023759402334690094, 0.0018779145320877433, 0.01644035056233406, 0.007016384042799473, -0.0007050777785480022, -0.009334541857242584, 0.012904643081128597, 0.007848719134926796, -0.016261501237750053, 0.0077936891466379166, -0.011274365708231926, 0.016041379421949387, -0.007470385171473026, 0.024364735931158066, 0.01992102712392807, 0.009988028556108475, 0.010558969341218472, -0.023869462311267853, 0.047711409628391266, 0.0038383747451007366, -0.004908029455691576, -0.027212563902139664, 0.003731753211468458, 0.006249396596103907, 0.02740516886115074, -0.012767067179083824, 0.0213655773550272, 0.011136789806187153, 0.004357724450528622, 0.013461826369166374, 0.008440297096967697, 0.016619199886918068, -0.00893557071685791, 0.0022648475132882595, -0.0047738924622535706, -0.006906322669237852, -0.002022369531914592, -0.02549286186695099, -0.02541031502187252, 0.011577033437788486, -0.006472957786172628, 0.025726741179823875, -0.02261751890182495, 0.02000357210636139, 0.03486179560422897, 0.006242517847567797, 0.005668137688189745, 0.03367864340543747, 0.0006384393200278282, -0.012113580480217934, -0.016715502366423607, -0.001745497458614409, -0.0014574474189430475, 0.009912361390888691, -0.011755881831049919, -0.006768746767193079, 0.0059432899579405785, 0.01337928045541048, 0.021613214164972305, 0.003614813322201371, 0.0023284764029085636, -0.004670710302889347, -0.004175436217337847, 0.005970804952085018, 0.0078005678951740265, 0.013723221607506275, 0.012842734344303608, -0.005427379161119461, 0.01205167081207037, -0.002693053102120757, 0.016729259863495827, -0.0078005678951740265, -0.00723650585860014, 0.005145348142832518, 0.012863370589911938, -0.04443709924817085, -0.007814325392246246, -0.028478262946009636, 0.0024402569979429245, -0.001503879320807755, -0.002839227905496955, 0.01238185353577137, -0.013991494663059711, -0.02337418869137764, 0.010235665366053581, -0.02552037686109543, 0.008646661415696144, -0.005427379161119461, -0.01165957935154438, -0.01987975463271141, -0.017375867813825607, -0.0005232192925177515, -0.002505605574697256, 0.01165957935154438, 0.009375815279781818, 0.009485876187682152, -0.005637182854115963, 0.004460906609892845, 0.01723829284310341, -0.003614813322201371, -0.04275866970419884, 0.003824617015197873, -0.003525388892740011, -0.0006668143905699253, 0.01708695851266384, 0.0015709477011114359, 0.0045778462663292885, -0.013441190123558044, 0.01204479206353426, -0.030596936121582985, -0.004832362290471792, -0.004911468829959631, -0.013434311375021935, -0.003944996278733015, 0.04041987285017967, 0.0040550571866333485, 0.003516790457069874, 0.022149760276079178, 0.021723274141550064, 0.011288123205304146, 0.006545185577124357, -0.01590380258858204, 0.0016663911519572139, 0.0009681921801529825, -0.016261501237750053, -0.022328609600663185, 0.0066724433563649654, 0.010380120947957039, 0.022466186434030533, 0.00035339873284101486, 0.03290821611881256, -7.620429096277803e-05, -0.024227160960435867, -0.006768746767193079, -0.00828208401799202, -0.010930425487458706, -0.00334482011385262, 0.006225320976227522, 0.023236611858010292, 0.01998981460928917, -0.007153959944844246, 0.005193499848246574, 0.01198288332670927, -0.0004368042864371091, 0.029276205226778984, -0.01708695851266384, 0.01985223963856697, 0.018283870071172714, 0.011246850714087486, 0.025712983682751656, 0.002273445948958397, -0.00632506376132369, -0.03486179560422897, 0.004484982695430517, 0.007140202447772026, 0.016000106930732727, 0.00021410288172774017, -0.021131698042154312, 0.004763574339449406, 0.01591756008565426, 0.0028082733042538166, 0.011253729462623596, -0.003389532444998622, 0.013393038883805275, 0.009114420041441917, -0.017417140305042267, -0.009547784924507141, -0.6242655515670776, -0.033183369785547256, -0.029221175238490105, -0.007098929490894079, 0.007511658128350973, 0.013475583866238594, 0.02055387757718563, 0.011239971965551376, -0.02279636822640896, 0.01846271939575672, 0.0030283951200544834, 0.03365112841129303, -0.013626918196678162, -0.03032178431749344, -0.016619199886918068, -0.01725205034017563, 0.013991494663059711, 0.004564088769257069, -0.008969965390861034, 0.0029458494391292334, -0.0053310757502913475, 0.0049768174067139626, -0.00856411550194025, -0.021049151197075844, -0.00773177994415164, -0.013434311375021935, 0.032578032463788986, 0.0040206629782915115, 0.00021582258341368288, 0.02960638888180256, -0.010634636506438255, 0.005984562449157238, -0.00758044607937336, -0.005313878878951073, 0.04936232417821884, 0.004326770082116127, -0.03018420748412609, 0.020773999392986298, 0.01990726962685585, 0.03497185930609703, -0.02743268571794033, 0.004877074621617794, 0.0034772371873259544, 0.0038486928679049015, -0.011480730026960373, 0.01656416803598404, -0.005300121381878853, -0.0004733479581773281, -0.005265727173537016, -0.008839268237352371, 0.0020292482804507017, -0.028368202969431877, -0.018297627568244934, 0.0019312252989038825, 0.01937072165310383, -0.009974271059036255, 0.016247743740677834, -0.024172130972146988, 0.01171460933983326, 0.022328609600663185, 0.004378361161798239, -0.006479837000370026, -0.008371508680284023, -0.03370615839958191, -0.03706301748752594, 0.011253729462623596, 0.005444576032459736, -0.004729180131107569, -0.006476397626101971, -0.013069734908640385, 0.004319891333580017, 0.013764494098722935, -0.011645820923149586, -0.014624345116317272, 0.01931569166481495, 0.01303534023463726, 0.01990726962685585, -0.01582125760614872, 0.02208097279071808, 0.020154906436800957, 0.008832389488816261, -0.015986349433660507, 0.012897764332592487, -0.02813432365655899, 0.018710356205701828, 0.018215082585811615, -0.013227947056293488, 0.006335381884127855, -0.002615666715428233, -0.013441190123558044, 0.014280404895544052, 0.017430897802114487, 0.004319891333580017, -0.021544424816966057, 0.009286390617489815, 0.03422894701361656, -0.010510818101465702, -0.010641515254974365, 0.0040481784380972385, -0.029331235215067863, -0.020443815737962723, -0.005791956093162298, 0.008041325956583023, 0.018393931910395622, 0.04050241783261299, 0.048399291932582855, -0.013606281951069832, 0.008020689710974693, 0.022356124594807625, -0.02281012572348118, 0.0006448882049880922, -0.010015543550252914, -0.031615000218153, -0.018352659419178963, 0.02670353092253208, -0.025589164346456528, 0.03172506019473076, 0.012189246714115143, -0.00602927478030324, -0.007690506987273693, -0.013523736037313938, -0.004357724450528622, 0.03576980158686638, -0.0001443474757252261, -0.0013387879589572549, 0.029083598405122757, -0.00046302974806167185, -0.006779064889997244, 0.028698384761810303, 0.0043989974074065685, 0.014748163521289825, -0.01718326099216938, 0.013633796945214272, -0.017004411667585373, 0.020746484398841858, 0.00758044607937336, 0.03249548748135567, -0.023057762533426285, 0.023924492299556732, -0.048509351909160614, 0.00011457513755885884, -0.01265012752264738, 0.002734326058998704, -0.023126551881432533, -0.01862781122326851, -0.0396769642829895, -0.005007771775126457, 0.011460093781352043, 0.0004088591376785189, -0.00859163049608469, -0.04339151829481125, -0.006803140975534916, -0.01849023438990116, 0.028973538428544998, -0.007642355281859636, -0.006235639099031687, -0.0037592684384435415, -0.042951274663209915, -0.006999186705797911, -0.03692543879151344, -0.004643195308744907, 0.025644194334745407, -0.009506512433290482, -0.008467812091112137, 0.01205854956060648, -0.006177169270813465, -0.0028529854025691748, -0.0035391466226428747, -0.01166645810008049, -0.03442155197262764, 0.013730100356042385, -0.02740516886115074, 0.004846119787544012, 0.029826510697603226, -0.02117297053337097, 0.001869315980002284, 0.003329342929646373, 0.01133627537637949, 0.014225373975932598, -0.004670710302889347, 0.008419660851359367, 0.03629259020090103, -0.01787114143371582, -0.033953793346881866, 0.04212581738829613, -0.00852284301072359, 0.05148099735379219, 0.017706051468849182, 0.00635945750400424, 0.003131577279418707, -0.010923546738922596, -0.00395531440153718, -0.0038899658247828484, 0.012890885584056377, -0.028340687975287437, 0.0002800964575726539, -0.009396451525390148, 0.005368909332901239, -0.009726634249091148, 0.02203970029950142, 0.04548267647624016, 0.019068054854869843, 0.014197858981788158, 0.013668190687894821, 0.004515937063843012, 0.009052511304616928, 0.009031874127686024, -0.01652289554476738, 0.04281369969248772, 0.020141148939728737, 0.00758732482790947, -0.018710356205701828, -0.00758044607937336, -0.030734512954950333, -0.007841840386390686, -0.0033516990952193737, -0.015023316256701946, 0.026579713448882103, -0.01231306605041027, 0.005417061038315296, 0.02195715345442295, -0.001612220541574061, 0.04050241783261299, 0.00141789426561445, 0.015202164649963379, -0.008626025170087814, 0.019810965284705162, 0.019467025995254517, 0.006909762509167194, 0.009898603893816471, 0.0120035195723176, 0.01998981460928917, 0.026345834136009216, -0.004612240474671125, 0.019453268498182297, 0.03596240654587746, 0.04108024016022682, 0.005444576032459736, 0.0245986171066761, -0.005434257909655571, 0.01860029622912407, 0.015257195569574833, 0.01935696415603161, -0.011962246149778366, -0.002457454102113843, 0.009100662544369698, 0.02809305116534233, 0.0035357072483748198, -0.03455913066864014, -0.007442869711667299, 0.004333648830652237, 0.00757356733083725, -0.010751576162874699, -0.027749110013246536, 0.006376654841005802, 0.0036320104263722897, 0.023608068004250526, 0.00044626265298575163, 0.02331915870308876, 0.010331968776881695, 0.011074880138039589, 0.016756774857640266, 0.05219639092683792, -0.010070574469864368, -0.013606281951069832, -0.004763574339449406, -0.008708570152521133, -0.012994067743420601, -0.009733512997627258, -0.017692293971776962, 0.020375028252601624, -0.0043989974074065685, -0.003786783665418625, -0.013399917632341385, -0.02060890756547451, 0.028505779802799225, 0.026400864124298096, 0.003274312475696206, 0.0068375347182154655, 0.031339846551418304, -0.014913255348801613, -0.018297627568244934, 0.023608068004250526, 0.007669870741665363, 0.008983722887933254, 0.0015270953299477696, -0.010634636506438255, 0.019095569849014282, -0.010951061733067036, 0.03565973788499832, -0.0030215163715183735, -0.0060017597861588, 0.005754122510552406, 0.01793993078172207, 0.0057369256392121315, 0.02139309234917164, 0.04198824241757393, -0.02604316547513008, -0.016963139176368713, 0.014053404331207275, 0.0110129714012146, -0.010497060604393482, -0.0358523465692997, -0.01793993078172207, 0.03233039751648903, -0.014706891030073166, -0.013413675129413605, -0.0260569229722023, -0.006228760350495577, -0.033183369785547256, 0.015078346244990826, -0.00791750755161047, -0.03301827609539032, 0.009877967648208141, 0.011618305929005146, -0.004650074057281017, -0.007828082889318466, -0.011824670247733593, 0.014693133533000946, -0.009437724016606808, -0.017513444647192955, -0.00857099425047636, -0.005038726609200239, 0.012498793192207813, 0.0746213048696518, 0.02872590161859989, 0.0003983259666711092, 0.0157387126237154, -0.01932944916188717, -0.010022422298789024, -0.024461040273308754, -0.014211616478860378, 0.03755829110741615, -0.0015408529434353113, 0.01849023438990116, 0.008474690839648247, 0.01586253009736538, -0.006930398754775524, -0.01866908371448517, 0.0016457547899335623, 0.0005580432480201125, -0.005516803823411465, 0.015614893287420273, 0.0022751656360924244, -0.015986349433660507, -0.0024522950407117605, 0.01265700627118349, 0.027336381375789642, 0.029193660244345665, 0.02261751890182495, 0.030019117519259453, 0.007291536312550306, 0.017307080328464508, -0.02747395820915699, -0.02330540120601654, 0.00444370973855257, -0.024447282776236534, 0.011095516383647919, -0.016344046220183372, 0.027776625007390976, 0.009926119819283485, -0.015958834439516068, -0.0002807413402479142, 0.0037661471869796515, 0.015642408281564713, 0.029166145250201225, 0.013111007399857044, -0.010331968776881695, 0.031174756586551666, -0.025245223194360733, -0.003979390021413565, 0.043088849633932114, -0.03596240654587746, -0.006421367172151804, 0.028478262946009636, -0.0002824610273819417, -0.025836801156401634, -0.008151386864483356, -0.01198976207524538, 0.005592470522969961, -0.02058139257133007, -0.029826510697603226, 0.006813459098339081, -0.019659632816910744, -0.024378493428230286, -0.027006199583411217, 0.009086905047297478, -0.018957993015646935, -0.02125551551580429, -0.013998373411595821, -0.0267172884196043, -0.010297575034201145, -0.009602815844118595, 0.019411996006965637, -0.016110166907310486, -0.0154773173853755, -0.044932372868061066, 0.03629259020090103, 0.009699119254946709, 0.002006892114877701, 0.0007042179349809885, 0.007656112778931856, 0.019549570977687836, 0.0023439538199454546, -0.01711447350680828, -0.016798049211502075, 0.00635257875546813, -0.018077505752444267, -0.004818604793399572, 0.02131054550409317, -0.012581339105963707, -0.0018779145320877433, -0.0049527413211762905, 0.0007386119686998427, -0.001694766222499311, -0.00773177994415164, -0.01722453348338604, 0.0164678655564785, 0.024474797770380974, 0.009988028556108475, 0.013957100920379162, 0.014431738294661045, 0.007848719134926796, -0.021819578483700752, -0.01657792739570141, -0.03018420748412609, -0.01932944916188717, 0.009478996507823467, 0.021847093477845192, 0.006149654276669025, -0.026662258431315422, 0.000484955933643505, 0.0023319157771766186, -0.015215922147035599, 0.02552037686109543, -0.020760241895914078, -0.014012130908668041, -0.025190193206071854, -0.02065018005669117, 0.020884059369564056, 0.006961353123188019, 0.024419767782092094, 0.021682001650333405, -0.013489341363310814, -0.010104968212544918, -0.021764546632766724, 0.022191032767295837, -0.007442869711667299, -0.00019636846263892949, 0.023112794384360313, 0.013509978540241718, -0.0066930800676345825, -0.049912627786397934, 0.006541746202856302, 0.012141095474362373, -0.002180582145228982, 0.0070714144967496395, -0.020952848717570305, -0.007147081196308136, -0.017706051468849182, -0.0041341632604599, 0.00853660050779581, -0.016935624182224274, -0.0081995390355587, -0.021117938682436943, 0.02201218530535698, 0.009795421734452248, -0.030294269323349, 0.022988975048065186, -0.03590737655758858, -0.02949632704257965, 0.006170290522277355, 0.0085297217592597, 0.023167824372649193, 0.00284954602830112, -0.006748110521584749, -0.03645768016576767, 0.010180635377764702, -0.0025864315684884787, -0.02191588096320629, -0.0038865262176841497, -0.033403489738702774, 0.029991600662469864, 0.03698046877980232, 0.02679983526468277, 0.003079986199736595, 0.019136842340230942, 0.014734406024217606, -0.005203817971050739, -0.01586253009736538, 0.007119565736502409, -0.02055387757718563, -0.009080026298761368, -0.002454014727845788, 0.027322623878717422, 0.009802300482988358, 0.00601551728323102, 0.01638532057404518, 0.011143668554723263, 0.02118672803044319, -0.011810912750661373, -0.023250369355082512, -0.034256462007761, -0.03164251521229744, 0.005957047455012798, -0.018999267369508743, -0.01173524558544159, -0.01234745979309082, -0.03241294249892235, 0.010036180727183819, 0.015092103742063046, 0.012519430369138718, 0.02816183865070343, -0.001453148084692657, 0.020306240767240524, 0.004240784794092178, -0.001252802787348628, 0.015931319445371628, 0.033293429762125015, -0.025671709328889847, -0.02823062613606453, -0.038108594715595245, -0.0003312575863674283, 0.011150547303259373, 0.002333635464310646, 0.0008585611940361559, 0.007965659722685814, -0.019054297357797623, 0.005396424792706966, 0.023071520030498505, -0.024846253916621208, -0.006569261197000742, -0.010517696850001812, -0.01723829284310341, 0.0033121458254754543, -0.042235877364873886, -0.0123337022960186, 0.01916435733437538, -0.01710071600973606, 0.006053350865840912, 0.0037592684384435415, 0.009403330273926258, -0.02279636822640896, -0.011301880702376366, 0.03857635334134102, -0.0004759275179821998, 0.02274133823812008, -0.0036320104263722897, 0.01715574599802494, -0.008722328580915928, 0.009423966519534588, 0.004901150241494179, -0.012863370589911938, 0.001026662066578865, 0.020773999392986298, 0.02208097279071808, 0.029358750209212303, 0.000386288040317595, -0.016908109188079834, 0.01203791331499815, -0.006507351994514465, -0.006562382448464632, -0.02623577229678631, 0.011515123769640923, -0.0025159239303320646, -0.008371508680284023, -0.034008823335170746, 0.01133627537637949, -0.03758580610156059, 0.01586253009736538, -0.015105861239135265, -0.006830655969679356, -0.00740159722045064, 0.014335434883832932, -0.00773865869268775, 0.03871392831206322, -0.015656165778636932, 0.02748771570622921, 0.01649538055062294, -0.023773159831762314, -0.007374081760644913, -0.0035030327271670103, -0.02058139257133007, 0.0011410221923142672, -0.026593470945954323, 0.01787114143371582, -0.03632010519504547, 0.0072433846071362495, -0.0021513469982892275, 0.020897816866636276, 0.015092103742063046, -0.011583912186324596, 0.0029200538992881775, 0.027845412492752075, -0.0163990780711174, -0.013847040012478828, 0.02139309234917164, -0.022232307121157646, 0.003423926420509815, -0.03455913066864014, -0.0013233106583356857, 0.013792009092867374, -0.011425699107348919, -0.008694812655448914, 0.00206708163022995, 0.0018194445874541998, -0.016041379421949387, -0.012519430369138718, 0.005251969676464796, -0.019026782363653183, 0.0024694919120520353, -0.015202164649963379, 0.0026672575622797012, -0.029991600662469864, -0.0027670003473758698, 0.0016354365507140756, -0.014954527840018272, 0.006799701601266861, -0.000484955933643505, -0.0028409475926309824, -0.011184941045939922, 0.03178009018301964, -0.010847879573702812, 0.017513444647192955, 0.019068054854869843, 0.0008796275360509753, -0.026951167732477188, 0.0016448948299512267, -0.005619985982775688, 0.004491861443966627, 0.02408958412706852, -0.01576622761785984, -0.03486179560422897, -0.012615732848644257, 0.010029301978647709, -0.0013052537105977535, -0.01550483237951994, 0.0012906362535431981, 0.022177275270223618, 0.015587378293275833, 0.016178956255316734, 0.009176329709589481, -0.0019724981393665075, 0.007993174716830254, -0.008048204705119133, 0.004756695590913296, 0.024846253916621208, -0.01655041053891182, 0.021860850974917412, -0.005076560191810131, -0.003198645543307066, -0.014610587619245052, -0.020801514387130737, -0.01866908371448517, 0.011920973658561707, 0.01582125760614872, -0.013771372847259045, -0.014844466932117939, -0.007367203012108803, -0.013998373411595821, -0.014528041705489159, 0.015037073753774166, -0.012196126393973827, -0.0006711136666126549, 0.010063695721328259, 0.006758428644388914, 0.020842786878347397, 0.038879022002220154, 0.00618060864508152, -0.012175489217042923, -0.02345673367381096, -0.010607121512293816, -0.033981308341026306, -0.027872929349541664, -0.003116099862381816, 0.01644035056233406, 0.022906430065631866, -0.023676855489611626, -0.016344046220183372, -0.027322623878717422, -0.032000213861465454, -0.012980310246348381, -0.004643195308744907, 0.019068054854869843, 0.027295108884572983, 0.014321677386760712, -0.004374921787530184, 0.018380174413323402, -0.013111007399857044, 0.011583912186324596, -0.027157532051205635, -0.00756668858230114, 0.011776519007980824, -0.028313172981142998, 0.027652807533740997, 0.005743804387748241, -0.0384938083589077, -0.0123337022960186, 0.010091210715472698, 0.002366309752687812, 0.005881380755454302, 0.020443815737962723, 0.016068894416093826, -0.013406796380877495, 0.006830655969679356, 0.013489341363310814, 0.01795368827879429, 0.010517696850001812, 0.004842680413275957, -0.023690612986683846, 0.01637156307697296, -0.008825509808957577, 0.008405903354287148, -0.0120035195723176, 0.02550661936402321, 0.012292428873479366, 0.0030593497212976217, 0.013324250467121601, -0.005382666829973459, 0.006139335688203573, 0.0023164385929703712, -0.010744697414338589, -0.004233906045556068, 0.010916667990386486, 0.002479810267686844, 0.01993478462100029, 0.005423939786851406, 0.0023026808630675077, 0.021104181185364723, 0.0241446141153574, 0.002985402476042509, -0.00410664826631546, 0.024516070261597633, -0.008502205833792686, -0.011831548996269703, -0.024254675954580307, 0.003824617015197873, -0.009871088899672031, -0.023621825501322746, 0.0020120511762797832, 0.011969124898314476, -0.036677803844213486, 0.008357751183211803, -0.010476424358785152, -0.003563222475349903, 0.006902883294969797, -0.03422894701361656, -0.0014204737963154912, 0.0191781148314476, 0.0004355145210865885, -0.00820641778409481, -0.02543783001601696, -0.008667297661304474, -0.00598800228908658, -0.03711804747581482, -0.025754256173968315, -0.0030455919913947582, 0.011852185241878033, -0.013771372847259045, 0.005448015872389078, 0.2129678875207901, 0.0124024897813797, -0.001831482513807714, 0.02546534687280655, -0.011845306493341923, -0.00958217866718769, 0.027212563902139664, 0.011239971965551376, -0.0037145561072975397, 0.025272740051150322, 0.015945076942443848, 0.016027621924877167, 0.008027568459510803, -0.0037248744629323483, -0.002244211034849286, -0.012092944234609604, -0.04347406327724457, -0.010510818101465702, -0.005035287234932184, 0.010586485266685486, -0.001404996495693922, -0.013289856724441051, 0.005767880007624626, 0.0036010558251291513, 0.027130017057061195, -0.007380960509181023, -0.013874555006623268, -0.007257142104208469, 0.025878073647618294, 0.0343940369784832, -0.018201325088739395, 0.003475517500191927, 0.021503152325749397, -0.0006341401021927595, 0.014651860110461712, -0.007807446643710136, 0.007147081196308136, -0.02121424302458763, -0.008460933342576027, 0.006686200853437185, 0.009554663673043251, -0.009155692532658577, 0.02600189298391342, -0.02602940797805786, 0.006569261197000742, 0.019604600965976715, 0.0031590925063937902, -0.011556397192180157, 0.009073147550225258, -0.00040713942144066095, -0.007497900165617466, 0.02550661936402321, 0.025699226185679436, 0.009747270494699478, 0.006851292215287685, 0.03643016517162323, 0.0027893565129488707, -0.012842734344303608, -0.026607228443026543, 0.020361270755529404, -0.0033327823039144278, 0.018806660547852516, 0.006882247049361467, -0.0037523896899074316, -0.01198288332670927, -0.00551336444914341, -0.029826510697603226, -0.010235665366053581, -0.009912361390888691, -0.025038860738277435, 0.014459253288805485, -0.02746020071208477, -0.00615309365093708, -0.0011874542105942965, -0.0148169519379735, -0.01938447915017605, 0.016289016231894493, 0.014748163521289825, 0.030679482966661453, 0.02396576665341854, -0.01860029622912407, -0.0028357885312289, -0.02952384203672409, -0.01203791331499815, -0.02806553617119789, -0.013117886148393154, 0.023511763662099838, 0.0009527148795314133, -0.01649538055062294, -0.0025933105498552322, -0.00791062880307436, 0.006713716313242912, -0.022383639588952065, 0.010111846961081028, 0.006362896878272295, 0.01067590992897749, 0.01138442661613226, -0.007112686987966299, 0.003566661849617958, -0.03365112841129303, 0.004994014278054237, 0.08105987310409546, -0.0025348407216370106, 0.00617372989654541, -0.01777483895421028, -0.0240070391446352, 0.0032536759972572327, 0.02264503389596939, -0.007841840386390686, -0.014679375104606152, 0.015105861239135265, -0.02622201479971409, -0.0021272713784128428, 0.0007863336941227317, 0.008488448336720467, 0.04402437061071396, -0.018063748255372047, -0.009293269366025925, 0.023222854360938072, -0.018366416916251183, 0.027006199583411217, -0.023649340495467186, -0.0020688013173639774, 0.013936464674770832, -0.024240918457508087, -0.039511870592832565, -0.01652289554476738, 0.00378334429115057, -0.011611427180469036, -0.016151441261172295, 0.03777841106057167, -0.028395717963576317, 0.0009879687568172812, -0.0022786050103604794, -0.007023262791335583, 0.02479122206568718, 0.01133627537637949, -0.0037764653097838163, -0.02396576665341854, -0.0078005678951740265, 0.010503939352929592, 0.014693133533000946, 0.013179795816540718, -0.01267076376825571, 0.01576622761785984, -0.02682735025882721, 0.011879701167345047, -0.00214274856261909, -0.03389876335859299, -0.01983848214149475, 0.005045605357736349, -0.011508245021104813, -0.00044755241833627224, -0.0077730524353682995, 0.030404329299926758, -0.007491021417081356, -0.019590843468904495, -0.018256355077028275, 0.002741204807534814, 0.01201039832085371, -0.040282297879457474, 0.007828082889318466, 0.04534510150551796, 0.016701744869351387, -0.004082572180777788, 0.015037073753774166, -0.17631760239601135, 0.030762027949094772, 0.0007781651220284402, -0.012588217854499817, 0.006999186705797911, -0.010290696285665035, 0.004883953370153904, 0.00092519965255633, -0.026648500934243202, -0.0031178195495158434, 0.017375867813825607, 0.0035941770765930414, -0.038026049733161926, -0.024323463439941406, -0.01711447350680828, 0.011446336284279823, -0.03431149199604988, 0.010270060040056705, 0.020760241895914078, 0.01650913804769516, 0.020196178928017616, -0.015408528968691826, -0.004103208892047405, -0.0004009054973721504, 0.01648162305355072, -0.006858171429485083, -0.034641675651073456, 0.035467132925987244, 0.011920973658561707, -0.0028082733042538166, -0.004216709174215794, -0.018036233261227608, 0.008020689710974693, 0.015546104870736599, 0.01710071600973606, 0.010153120383620262, -0.017444657161831856, 0.009609694592654705, -0.006242517847567797, 0.049830082803964615, 0.017472172155976295, 0.009031874127686024, 0.014156586490571499, 0.016082651913166046, -0.018751630559563637, 0.013179795816540718, 0.022466186434030533, 0.008165144361555576, -0.014019009657204151, -0.023649340495467186, -0.013998373411595821, -0.012423126958310604, -0.0085985092446208, -0.0051866210997104645, -0.018834175541996956, 0.0015933038666844368, 0.009080026298761368, 0.03378870338201523, -0.021819578483700752, 0.002711969893425703, 0.0019312252989038825, -0.006589897908270359, -0.0120035195723176, -0.006129017565399408, 6.667203706456348e-06, -0.034834280610084534, -0.011501366272568703, 0.0035391466226428747, -0.019577085971832275, 0.0124024897813797, 0.00620124489068985, -0.021090423688292503, 0.005241651553660631, 0.023126551881432533, 0.01796744577586651, 0.009334541857242584, -0.0032691534142941236, 0.01516089215874672, 0.014624345116317272, 0.005403303541243076, 0.023057762533426285, 0.010978576727211475, -0.013847040012478828, -0.022411154583096504, -0.03920920193195343, -0.003030114807188511, -0.01586253009736538, 0.012601975351572037, 0.02124175801873207, 0.006861610803753138, 0.02744644321501255, -0.021434364840388298, 0.004144481848925352, -0.023814432322978973, 0.0008555516833439469, 0.024227160960435867, 0.021847093477845192, -0.014087798073887825, 0.004918347578495741, -0.009472117759287357, -0.008729207329452038, 0.010806607082486153, 0.00566469831392169, 0.02462613210082054, -0.005052484106272459, 0.023635582998394966, -0.014734406024217606, 0.010799728333950043, 0.02744644321501255, -0.02465364709496498, -0.018696598708629608, 0.004619119223207235, 0.035989921540021896, 0.010572727769613266, -0.01722453348338604, 0.02059515006840229, -0.0055340006947517395, -0.01265700627118349, -0.0032571153715252876, -0.01727956533432007, 0.0714295357465744, -0.014693133533000946, -0.0437767319381237, 0.00038327855872921646, -0.015339741483330727, -0.0025829921942204237, -0.09883470833301544, -0.010304453782737255, -0.011797155253589153, 0.025272740051150322, -0.019549570977687836, -0.006789383012801409, 0.004333648830652237, 0.028588324785232544, -0.0036354498006403446, 0.02615322731435299, 0.004815165419131517, -0.01857278123497963, -0.014053404331207275, -0.008330236189067364, 0.03301827609539032, -0.004182314965873957, -0.015037073753774166, -0.0034806765615940094, -0.013386160135269165, 0.04267612099647522, 0.0049836961552500725, -0.02052636258304119, -0.0082683265209198, -0.01638532057404518, -0.024516070261597633, -0.04033732786774635, -0.05018778145313263, 0.004491861443966627, 0.00888741947710514, 0.018118780106306076, 0.020154906436800957, -0.006098063196986914, 0.018435204401612282, -0.006892565172165632, -0.0010438590543344617, -0.013255462050437927, -0.033210884779691696, -0.010510818101465702, 0.018008718267083168, -0.03150494024157524, 0.010249423794448376, 0.02004484459757805, -0.016687987372279167, -0.023222854360938072, 0.034751735627651215, -0.00032265906338579953, 0.008089478127658367, 0.006297548301517963, -0.008460933342576027, -0.003748950082808733, -0.027240078896284103, -0.00022248642926570028, -0.03852132335305214, -0.0158075001090765, 0.022438671439886093, -0.011604548431932926, 0.0227550957351923, 0.0053551518358290195, -0.026634743437170982, -0.007635476533323526, -0.012966552749276161, 0.010909789241850376, -0.02403455413877964, 0.02062266506254673, 0.033238399773836136, -0.00222529424354434, -0.020939091220498085, -0.0077661736868321896, -0.010730939917266369, -0.02135181985795498, -0.014362950809299946, 0.008818631060421467, -0.012794582173228264, -0.0015408529434353113, -0.03755829110741615, -0.003745510708540678, -0.004729180131107569, -0.020333755761384964, 0.007779931649565697, 0.010331968776881695, -0.017678536474704742, -0.024997586384415627, 0.026634743437170982, -0.02128303050994873, 0.01551858987659216, 0.01205854956060648, -0.014087798073887825, -0.015972591936588287, 0.022383639588952065, -0.04396933689713478, -0.0018521189922466874, 0.008440297096967697, 0.010868515819311142, -0.016811806708574295, -0.003176289377734065, 0.022342367097735405, 0.006452321540564299, -0.01103360764682293, 0.025561649352312088, -0.016646714881062508, -0.024240918457508087, 0.008041325956583023, -0.044877342879772186, 0.030019117519259453, -0.0163990780711174, -0.012574460357427597, -0.004171996843069792, -0.019081812351942062, -0.0030593497212976217, -0.01265012752264738, -0.011178062297403812, 0.02675856091082096, -0.027886686846613884, 0.013551251031458378, -0.03222033381462097, 0.006438564043492079, -0.02891850657761097, -0.011570154689252377, 0.016068894416093826, -0.01782986894249916, 0.024433525279164314, -0.0002609647635836154, -0.02198466844856739, -0.018256355077028275, 0.022452428936958313, 0.007085171993821859, -0.010194392874836922, 0.021448122337460518, -0.027969231829047203, 0.026332076638936996, 0.007511658128350973, 0.000341790757374838, 0.02004484459757805, -0.023580553010106087, -0.0015159172471612692, 0.025080133229494095, -0.016756774857640266, -0.009293269366025925, -0.003576979972422123, 0.031284816563129425, 0.0117421243339777, 0.014569314196705818, -0.027377653867006302, -0.021626971662044525, 0.001411875244230032, -0.004371482413262129, -0.03230288252234459, -0.01791241578757763, -0.01990726962685585, -0.01230618730187416, 0.007037020288407803, 0.0171282310038805, 0.009953634813427925, 0.0019277858082205057, 0.0006874508690088987, -0.012258035130798817, 0.00773177994415164, -0.004643195308744907, 0.01267764251679182, 0.02059515006840229, 0.023621825501322746, 0.0048048472963273525, 0.04041987285017967, -0.013214189559221268, 0.00775241618975997, -0.022287337109446526, 0.01236121729016304, -0.009169450961053371, -0.01861405372619629, 0.013675069436430931, 0.004171996843069792, -0.023759402334690094, -0.01860029622912407, -0.01237497478723526, 0.0020258089061826468, 0.024433525279164314, -0.0015597696183249354, 0.0095890574157238, 0.006569261197000742, -0.01172148808836937, -0.015202164649963379, 0.004815165419131517, 0.0029699252918362617, 0.002625984838232398, -0.011253729462623596, 0.031339846551418304, -0.007133323699235916, -0.013633796945214272, -0.018710356205701828, 0.02761153317987919, 0.006627731025218964, 0.014156586490571499, -0.01170773059129715, 0.0023921052925288677, 0.002569234697148204, 0.010517696850001812, -0.0030576300341635942, 0.018957993015646935, 0.006651807110756636, -0.001141882035881281, 0.009671603329479694, 0.012216762639582157, -0.004932105075567961, 0.0066965194419026375, -0.011528881266713142, -0.03084457293152809, -0.020829029381275177, -0.003938117530196905, -0.035439617931842804, -0.0370354987680912, 0.010366363450884819, 0.030074147507548332, 0.00566469831392169, -0.013509978540241718, 0.05684646591544151, 0.017568474635481834, -0.019728420302271843, 0.00028697526431642473, -0.007552930619567633, -0.01789865829050541, -0.03376118838787079, 0.04248351603746414, 0.009754149243235588, 0.012086065486073494, 0.032027728855609894, -0.009121298789978027, 0.023731887340545654, 0.030459361150860786, 0.014239131473004818, -0.03241294249892235, -0.018283870071172714, -0.004147921223193407, 0.022507458925247192, -0.003731753211468458, -0.015986349433660507, -0.00022184154659043998, -0.00741535471752286, -0.021035393700003624, -0.013310492970049381, 0.013908948749303818, 0.006407609209418297, 0.07814325392246246, 0.025190193206071854, -0.011522002518177032, 0.0004174576315563172, 0.00039037232636474073, 0.013269219547510147, 0.00822705402970314, 0.014101555570960045, 0.01232682354748249, -0.03659525513648987, 0.009988028556108475, -0.021090423688292503, -0.0011453215265646577, -0.01865532621741295, -0.020801514387130737, -0.025919348001480103, -0.009183208458125591, 0.025258982554078102, -0.005472091492265463, -0.014528041705489159, 0.00461567984893918, -0.00478764995932579, -0.008846146985888481, 0.005589031148701906, -0.025905590504407883, -0.0011212456738576293, 0.012251156382262707, -0.0063147456385195255, -0.01860029622912407, -0.06047847867012024, 0.025107648223638535, -0.010724061168730259, -0.011198698543012142, -0.023154066875576973, -0.00445746723562479, 0.0016870276303961873, -0.014927012845873833, -0.025203950703144073, -5.922223499510437e-05, 0.0009948475053533912, 0.012285550124943256, 0.03098214976489544, -0.029111113399267197, -0.014528041705489159, -0.020801514387130737, -0.011288123205304146, -0.009155692532658577, 0.00792438630014658, -0.022369882091879845], "81c4feef-c1a3-4fd2-841b-7bcd1db1eed0": [-0.01943531632423401, -0.015051103197038174, 0.004500307142734528, -0.004766637925058603, -0.012729245238006115, 0.01565205492079258, 0.007081666961312294, 0.0013939683558419347, -0.023792214691638947, -0.06102389097213745, 0.012046345509588718, 0.015092076733708382, 0.017454909160733223, 0.0035203464794903994, -0.008181135170161724, 0.004155443049967289, 0.029938310384750366, -0.027097448706626892, -0.0051149167120456696, -0.02381953038275242, -0.031058264896273613, -0.01535157859325409, -0.02588188648223877, 0.0238605048507452, -0.019790424033999443, -0.005712453275918961, 0.03477323800325394, -0.009594736620783806, 0.005032968707382679, 0.017004195600748062, -0.0008869156008586287, 0.004053007811307907, -0.0005804644897580147, 0.01513305027037859, 0.002192107029259205, -0.01302972063422203, 0.011370275169610977, -0.02767108380794525, 0.011902936734259129, -0.02384684793651104, 0.029883677139878273, -0.005760256201028824, 0.004858829081058502, 0.009826922789216042, -0.02928272634744644, 0.0313587412238121, -0.005190035328269005, -0.01023666188120842, -0.019408000633120537, -0.00012911067460663617, 0.004619814455509186, 0.02939199097454548, -0.023628318682312965, 0.03201432526111603, 0.002851105062291026, 0.009198654443025589, 0.004196416586637497, 0.013432631269097328, 0.026428205892443657, -0.03376254811882973, 0.006921185180544853, -0.0005454659112729132, -0.0178646482527256, -0.0037730191834270954, -0.013220932334661484, -0.03564734756946564, 0.007068008650094271, -0.01845194213092327, 0.016471533104777336, -0.02282249741256237, 0.02416098117828369, 0.052911046892404556, 0.002050405368208885, 0.012777048163115978, 0.02119719795882702, 0.0009534982964396477, -0.007785052992403507, -0.010462018661201, -0.010270806960761547, 0.0016492020804435015, 0.0037593611050397158, -0.014450151473283768, 0.004981751088052988, 0.012162438593804836, 0.013200445100665092, 0.026086756959557533, 0.009512788616120815, 2.7876167223439552e-05, -0.014504782855510712, -0.004735907539725304, -0.00757335452362895, 0.018342677503824234, -0.0043364111334085464, 0.011868791654706001, -0.005070528015494347, -0.0021391822956502438, 0.0034622999373823404, 0.007525551598519087, -0.0029671979136765003, -0.018793391063809395, 0.007921633310616016, 0.007457261439412832, -0.046901531517505646, -0.007621157448738813, -0.03419960290193558, -0.010243491269648075, -0.007539209444075823, 0.013391656801104546, 0.014914522878825665, -0.011609289795160294, -0.023928795009851456, 0.020978668704628944, -0.04081006720662117, -0.0013436045264825225, 0.015255972743034363, -0.023792214691638947, -0.018096834421157837, -0.008529413491487503, 0.003482786938548088, -0.00016229531320277601, 0.034008391201496124, 0.006484129931777716, 0.023915136232972145, -0.019558237865567207, 0.030785104259848595, 0.01841096766293049, 0.006747046019881964, -0.02222154662013054, -0.007532380521297455, -0.018656810745596886, 0.0019462632481008768, 0.004869072698056698, -0.010953706689178944, 0.0017063948325812817, -0.013337025418877602, 0.022276178002357483, -0.012654125690460205, 0.002924516564235091, -0.003354743355885148, -0.016935905441641808, -0.00017083155398722738, 0.028026191517710686, -0.003790091723203659, -0.007983094081282616, 0.030839737504720688, 0.023314185440540314, 0.017523199319839478, 0.009471815079450607, -0.00878891535103321, 0.011520512402057648, 0.005647577811032534, -0.019353369250893593, -0.022877130657434464, 0.013753593899309635, 0.017932938411831856, 0.024461455643177032, 0.001620178809389472, 0.0348551869392395, -0.0020282112527638674, -0.01753685623407364, -0.0031703603453934193, -0.0072045885026454926, -0.010243491269648075, 0.0030610966496169567, 0.0018267559353262186, 0.0037593611050397158, 0.015829607844352722, -0.01669006049633026, -0.006770947482436895, 0.017045168206095695, 0.00958790723234415, 0.021839123219251633, -0.008071870543062687, 0.010106910951435566, 0.01783733256161213, 0.00891183689236641, 0.01916215755045414, 0.010953706689178944, -0.019530922174453735, -0.04012716934084892, 0.004602741915732622, 0.0035066884011030197, 0.02338247559964657, 0.024611694738268852, -0.02470730058848858, 0.00460615660995245, 0.026960868388414383, 0.008823060430586338, 0.017796358093619347, -0.01947629079222679, 0.0028152528684586287, 0.010120568796992302, -0.013118497096002102, -0.013808226212859154, -0.6219301223754883, -0.013555552810430527, -0.011861962266266346, -0.02982904575765133, -0.005271983332931995, 0.01266095507889986, 0.029337357729673386, 0.009464985691010952, -0.023041024804115295, 0.011015167459845543, -0.0011976348469033837, 0.0377233624458313, -0.013084352016448975, -0.02664673514664173, -0.03392644226551056, -0.023464422672986984, 0.010257149115204811, -0.012899969704449177, 0.0089323241263628, 0.015488157980144024, 0.004838342312723398, 0.024925827980041504, 0.0043432400561869144, -0.007054350804537535, 0.003691071178764105, -0.019080208614468575, 0.037969205528497696, 0.0008194792899303138, 0.018042203038930893, 0.020705509930849075, -0.02050063945353031, 0.0033957173582166433, -0.011820988729596138, -0.026878919452428818, 0.05176377296447754, 0.019244104623794556, -0.02529459446668625, 0.006767533253878355, 0.028763722628355026, 0.02646918036043644, -0.01727735437452793, 0.003414497012272477, 0.020746484398841858, 0.010625914670526981, -0.019421659409999847, 0.009150851517915726, -0.0011609289795160294, -0.030511945486068726, 0.0032113343477249146, -0.005989027675241232, -0.0032027980778366327, -0.04070080444216728, -0.02634625881910324, -0.0013478726614266634, 0.012920456938445568, -0.007047521881759167, 0.007341168355196714, -0.028053507208824158, 0.010926390066742897, 0.02898225001990795, 0.015119392424821854, 0.004216903820633888, -0.011008338071405888, -0.0459727868437767, -0.03641219437122345, 0.00016026795492507517, -0.006890454795211554, -0.005036382935941219, 0.01447746716439724, -0.0036296104080975056, -0.0034588854759931564, 0.0054939258843660355, -0.001242876867763698, -0.025840913876891136, 0.0014050655299797654, 0.02226252108812332, 0.012674612924456596, -0.02152498997747898, 0.022030334919691086, 0.01506476104259491, -0.006600222550332546, -0.012305847369134426, 0.00038114323979243636, -0.031386055052280426, 0.011500026099383831, 0.010127398185431957, -0.01709980145096779, 0.004435431677848101, 0.008358689025044441, -0.008017239160835743, 0.02167522720992565, 0.011759527958929539, 0.014258939772844315, -0.024038059636950493, 0.014217965304851532, 0.03452739492058754, -0.007682618219405413, -0.009765461087226868, -0.000140848002047278, -0.04217586666345596, -0.02220788784325123, -0.011349787935614586, 0.003554491326212883, -0.0048417565412819386, 0.024188296869397163, 0.04332313686609268, -0.019626528024673462, 0.0024635596200823784, 0.03114021196961403, -0.018356336280703545, 0.005633919965475798, -0.01742759346961975, -0.02737060748040676, -0.024516088888049126, 0.03294306620955467, -0.02824471890926361, 0.024980459362268448, 0.019408000633120537, 0.005869520362466574, -0.011015167459845543, -0.010134226642549038, -0.013063865713775158, 0.02312297374010086, -0.0037081437185406685, 0.009109877981245518, 0.013610185123980045, -0.005606604274362326, -0.010707862675189972, 0.013774081133306026, 0.020705509930849075, 0.01580229215323925, -0.009861066937446594, 0.01410870160907507, -0.016334952786564827, 0.028599826619029045, 0.009273773990571499, 0.010721520520746708, -0.027001842856407166, 0.02925541065633297, -0.05176377296447754, 0.0015834729420021176, -0.02503509260714054, 0.012080490589141846, -0.014627705328166485, -0.02312297374010086, -0.03611171990633011, -0.016416901722550392, 0.011950739659368992, -0.0060846335254609585, -0.01607545092701912, -0.029610518366098404, -0.011691237799823284, -0.010182030498981476, 0.016594454646110535, 0.004910046700388193, 0.0024106348864734173, 0.001562132383696735, -0.035456135869026184, -0.0016637137159705162, -0.03316159546375275, -0.008153818547725677, 0.01738661900162697, -0.019503606483340263, -0.009055245667696, -0.007054350804537535, -0.003131093690171838, -0.008297227323055267, -0.011363445781171322, 0.00782602746039629, -0.03482786938548088, -0.0033427926246076822, -0.02545849047601223, 0.015693027526140213, 0.03816041722893715, -0.021183539181947708, 0.0019530922872945666, 0.006832408253103495, 0.009191825985908508, 0.004940777085721493, -0.014163333922624588, 0.01419064961373806, 0.03045731410384178, -0.01901191845536232, -0.015542790293693542, 0.04416993260383606, -0.004677860997617245, 0.05020676553249359, 0.011452223174273968, 0.004968093242496252, 0.00361936679109931, -0.010441531427204609, -0.0036296104080975056, -0.0028784209862351418, -0.0015254265163093805, -0.0313587412238121, 0.0005352224106900394, 0.006671926937997341, 0.003426447743549943, -0.02220788784325123, 0.01740027591586113, 0.03190505877137184, 0.006569492164999247, 0.021238170564174652, 0.007921633310616016, 0.010427873581647873, 0.011179063469171524, 0.007252391427755356, -0.03114021196961403, 0.039416953921318054, 0.036193668842315674, 0.007942119613289833, -0.025376541540026665, -0.012674612924456596, -0.019489949569106102, -0.014723311178386211, 0.002987684914842248, -0.010557624511420727, 0.022576654329895973, -0.018970945850014687, 0.007061179727315903, 0.025936519727110863, -0.015447184443473816, 0.0357292965054512, 0.004657373763620853, 0.010550796054303646, -0.009922528639435768, 0.035920508205890656, 0.022003019228577614, 0.0023986841551959515, -0.006811921484768391, 0.004083738196641207, 0.023150289431214333, 0.01887533999979496, 0.0024089275393635035, 0.020541613921523094, 0.030648525804281235, 0.040017906576395035, 0.004981751088052988, 0.022467389702796936, -0.0063407206907868385, 0.011301985010504723, 0.01184830442070961, 0.026865262538194656, 0.003231821348890662, 0.011902936734259129, 0.0022740550339221954, 0.025390200316905975, -0.004561767913401127, -0.034445445984601974, -0.005053455475717783, 0.006419254466891289, 0.02076014131307602, 0.0034503492061048746, -0.033270858228206635, 0.016894930973649025, -0.006593393627554178, 0.022043991833925247, 0.012647297233343124, 0.0298563614487648, 0.01709980145096779, 0.010434702970087528, 0.006344135385006666, 0.039744745939970016, -0.01097419299185276, -0.008222108706831932, 0.007177272811532021, -7.677283429075032e-05, -0.008645506575703621, -0.021620595827698708, -0.010250319726765156, 0.02149767242372036, 0.010584941133856773, -0.004117883276194334, -0.007013376802206039, -0.010871758684515953, 0.032096270471811295, 0.013657988049089909, 0.004732492845505476, -0.001313727698288858, 0.03775067999958992, -0.01294777262955904, -0.011916594579815865, 0.015378894284367561, 0.02220788784325123, 0.0018199268961325288, -0.003660340793430805, -0.015734001994132996, 0.016444217413663864, 0.004725663922727108, 0.029774414375424385, -0.008222108706831932, -0.015242314897477627, -0.017741726711392403, 0.0021716200280934572, 0.004964678548276424, 0.016348611563444138, 0.02487119659781456, -0.026400890201330185, -0.0036466827150434256, -0.00038797222077846527, -6.279473018366843e-05, -0.003738874103873968, -0.025799939408898354, -0.012005371041595936, 0.0331069640815258, -0.0048212697729468346, -0.004435431677848101, -0.023587346076965332, 0.005900250747799873, -0.024912169203162193, 0.004155443049967289, -0.010694204829633236, -0.021183539181947708, 0.02353271283209324, 0.014586730860173702, -0.007744078990072012, -0.0009833751246333122, -0.012845337390899658, 0.04564499482512474, -0.010714691132307053, -0.003245479427278042, -0.006477301008999348, -0.012729245238006115, 0.005401734262704849, 0.0863184854388237, 0.026878919452428818, -0.01345311850309372, 0.0191758144646883, -0.015474500134587288, -0.007634815294295549, -0.025130698457360268, -0.011725382879376411, 0.020118216052651405, -0.01089224498718977, 0.012626809999346733, -0.00906890444457531, 0.01023666188120842, -0.023163948208093643, -0.01725003868341446, 0.016184715554118156, -0.012025858275592327, 0.011670750565826893, 0.004455918446183205, 0.01382871251553297, -0.0019172400934621692, -0.0039505730383098125, 0.026974527165293694, 0.03392644226551056, 0.025868229568004608, 0.038843318819999695, 0.019093867391347885, 0.015078418888151646, 0.008877691812813282, -0.037504833191633224, -0.028463246300816536, 0.013371170498430729, -0.005896836519241333, 0.020104559138417244, -0.012039516121149063, -0.011240524239838123, 0.0040017906576395035, -0.026660392060875893, -0.016430558636784554, 0.0006385109154507518, 0.019981635734438896, 0.0318504273891449, 0.023464422672986984, -0.01427259761840105, 0.03332548961043358, -0.016157399863004684, 0.010304952040314674, 0.026387233287096024, -0.021279145032167435, -0.013275564648211002, 0.03832431510090828, -0.0023952696938067675, -0.01812415011227131, -0.013487263582646847, -0.00212040264159441, -0.01184147596359253, -0.02368295192718506, -0.005364174954593182, 0.018492916598916054, -0.03264259174466133, -0.022125940769910812, -0.03204163908958435, 0.005350516643375158, -0.017181748524308205, -0.021825464442372322, -0.009198654443025589, -0.02444779872894287, -0.007935291156172752, -0.01249705906957388, 0.005138818174600601, -0.00796943623572588, -0.0339810736477375, -0.03758678212761879, 0.025540437549352646, 0.02909151464700699, 0.018397308886051178, 0.0034998594783246517, 0.02309565804898739, 0.02224886231124401, -0.0015390844782814384, -0.019940663129091263, -0.01797391287982464, 0.0022877128794789314, -0.02017284743487835, -0.02571799047291279, 0.010871758684515953, -0.015706686303019524, 0.008030897006392479, -0.013412144035100937, -0.004882730543613434, -0.004309094976633787, -0.010796639136970043, -0.015324262902140617, 0.022153256461024284, 0.009103048592805862, 0.010100082494318485, 0.015460842289030552, 0.016621772199869156, 0.004476405680179596, -0.019954320043325424, -0.005388076417148113, -0.012387795373797417, -0.004759809002280235, 0.013514579273760319, 0.018042203038930893, 0.004281779285520315, -0.01017520111054182, 0.009540104307234287, 0.010940047912299633, -0.008126502856612206, 0.0270428154617548, -0.036084406077861786, -0.009785948321223259, -0.01608910970389843, -0.026073098182678223, -0.008686480112373829, 0.01596618816256523, 0.0269198939204216, 0.008433807641267776, -0.017454909160733223, -0.020008953288197517, -0.020104559138417244, 0.012920456938445568, -0.0029125658329576254, -0.022617628797888756, 0.014859890565276146, 0.01315264217555523, -0.012927285395562649, -0.05250130593776703, 0.0013453118735924363, 0.006050488445907831, 0.017932938411831856, 0.003436691127717495, -0.02181180752813816, -0.025130698457360268, -0.00038519795634783804, 0.0017806601244956255, 0.005439293570816517, -0.03204163908958435, -0.005203693639487028, -0.018834365531802177, 0.027397923171520233, 0.015160366892814636, -0.026428205892443657, -0.007286536507308483, -0.043951407074928284, -0.03280648589134216, -0.007662131451070309, 0.006429497618228197, 0.024980459362268448, -0.0032915750052779913, -0.007341168355196714, -0.023655634373426437, 0.0029364675283432007, -0.019052892923355103, -0.04793953895568848, -0.014245280995965004, -0.026742340996861458, 0.036057088524103165, 0.03906184434890747, 0.03643951192498207, 0.020705509930849075, 0.01684029959142208, 0.018957287073135376, -0.002805009251460433, -0.017728067934513092, 0.006426083389669657, 0.0006077804719097912, -0.005616847425699234, 0.007750908378511667, 0.024065375328063965, 0.012094148434698582, -0.004175929818302393, -0.003168653231114149, 0.017345644533634186, 0.026564786210656166, -0.017372960224747658, -0.02895493432879448, -0.036958515644073486, -0.033434756100177765, -0.012988746166229248, -0.003161824308335781, -0.005309542641043663, -0.008645506575703621, -0.04427919536828995, 0.012244386598467827, 0.019640186801552773, 0.008372346870601177, 0.03406302258372307, -0.00025992857990786433, 0.030648525804281235, 0.0038378946483135223, -0.0003034634282812476, 0.014955496415495872, 0.026988184079527855, -0.03406302258372307, -0.03887063264846802, -0.03198700770735741, -0.00738214235752821, 0.01740027591586113, 0.0043500689789652824, 0.014777942560613155, 0.011083457618951797, -0.022003019228577614, 0.004705176688730717, 0.030894368886947632, -0.02911883033812046, -0.0012676320038735867, 0.001997480634599924, -0.011677579954266548, 0.007989922538399696, -0.033298175781965256, -0.020118216052651405, 0.012715586461126804, -0.005353931337594986, 0.005674893967807293, 0.0013282393338158727, 0.010359583422541618, -0.00856355857104063, -0.016362270340323448, 0.03280648589134216, -0.0006999718607403338, 0.016471533104777336, -0.006668512709438801, 0.015693027526140213, -0.006528518162667751, 0.014013095758855343, 0.00732068158686161, -0.00658656470477581, -0.0007110689766705036, -0.00017488627054262906, 0.01816512458026409, 0.029064198955893517, -0.009820093400776386, -0.008461123332381248, 0.007040692958980799, -0.01374676451086998, -0.01059859897941351, -0.011267839930951595, 0.00995667278766632, -0.002429414540529251, 0.014354545623064041, -0.03996327146887779, 0.0009509373921900988, -0.042039286345243454, 0.004104225430637598, -0.004735907539725304, 0.009594736620783806, -0.007771395146846771, 0.009622052311897278, -0.0071841017343103886, 0.03977205976843834, -0.024038059636950493, 0.030921684578061104, 0.014914522878825665, -0.021279145032167435, 0.0035203464794903994, 0.008351859636604786, -0.01581595093011856, 0.006463642697781324, -0.011315642856061459, 0.025567753240466118, -0.018383651971817017, 0.007744078990072012, 0.0179875697940588, 0.013200445100665092, 0.010052279569208622, -0.009683513082563877, -0.010721520520746708, 0.025786280632019043, -0.006111949682235718, -0.03056657686829567, 0.011206379160284996, -0.0017601732397451997, 0.015365236438810825, -0.025513121858239174, 0.010052279569208622, 0.005890007130801678, -0.000840393069665879, -0.003066218225285411, 0.00548368226736784, -0.007648473139852285, -0.00723873358219862, 0.0058080595917999744, 0.016567138954997063, -0.0063646226190030575, 0.003861796110868454, -0.019066551700234413, 0.005104673095047474, -0.014709653332829475, -0.003940329421311617, 0.001681639812886715, 0.0072114174254238605, 0.005309542641043663, -0.010462018661201, -0.0028357398696243763, -0.02911883033812046, 0.026100415736436844, -0.01286582462489605, 0.01300923340022564, 0.02004992589354515, 0.005582702811807394, -0.04274950176477432, 0.0060129291377961636, 0.0013606770662590861, -0.009082562290132046, 0.023587346076965332, -0.010810297913849354, -0.03286111727356911, -0.0007319828146137297, 0.019558237865567207, 0.004114469047635794, -0.020418692380189896, 0.008331372402608395, 0.016649087890982628, 0.012162438593804836, 0.013944805599749088, 0.006432912312448025, -0.015023786574602127, 0.009813264012336731, -0.008181135170161724, 0.014026753604412079, 0.010339097119867802, -0.018492916598916054, 0.02472095750272274, 0.0011916594812646508, 0.0020845504477620125, -0.028599826619029045, -0.011718553490936756, -0.026551129296422005, 0.011315642856061459, 0.004927119240164757, -0.004053007811307907, -0.010072765871882439, 0.00361936679109931, -0.029610518366098404, -0.008208450861275196, 0.008761599659919739, -0.01484623271971941, -0.008734283037483692, 0.022467389702796936, 0.008003581315279007, 0.02601846680045128, 0.03704046458005905, -0.006357793230563402, -0.014873549342155457, -0.023901479318737984, -0.006658269092440605, -0.05047992244362831, -0.021320119500160217, -0.0014639656292274594, 0.0225493386387825, 0.02518532983958721, -0.032560642808675766, -0.010646401904523373, -0.010059108026325703, -0.05692649260163307, -0.02763010933995247, -0.012264872901141644, 0.00930108968168497, 0.014805259183049202, 0.014136017300188541, -0.002933052834123373, 0.021825464442372322, -0.013692133128643036, 0.012285360135138035, -0.01192342396825552, -0.018752416595816612, 0.010912732221186161, -0.029501253738999367, 0.010024962946772575, -0.00022877129958942533, -0.048048801720142365, -0.0071909306570887566, 0.02089672163128853, -0.00805138424038887, 0.004090567585080862, 0.024311218410730362, 0.020008953288197517, 0.01558376383036375, 0.01045519020408392, 0.012818021699786186, 0.004449089523404837, 0.007129469886422157, 0.010953706689178944, -0.029665149748325348, 0.008502097800374031, 0.0015262801898643374, 0.011595631949603558, -0.019694818183779716, 0.02779400534927845, -0.008003581315279007, -0.0017943182028830051, 0.01699053682386875, 0.00224673910997808, 0.0003190420684404671, 0.013500921428203583, -0.015488157980144024, -0.007641644217073917, 0.013576040044426918, 0.024830222129821777, 0.0121487807482481, 0.01815146580338478, 0.006275845691561699, 0.011301985010504723, 0.01250388752669096, 0.006494373083114624, 0.002180156297981739, 0.0214840155094862, -0.004486648831516504, -0.0005505876615643501, -0.028627142310142517, 0.0011276376899331808, -0.01914849877357483, -0.011069798842072487, 0.005251496564596891, 0.008570387028157711, -0.030184153467416763, 0.015406209975481033, 0.0075050643645226955, -0.0024584378115832806, 0.0013675059890374541, -0.037641413509845734, 0.0009671562584117055, 0.0151467090472579, -0.004776881076395512, -0.0072045885026454926, -0.02017284743487835, -0.008269911631941795, -0.005060284398496151, -0.036521460860967636, -0.0035749783273786306, -0.002186985220760107, 0.01622569002211094, -0.012196583673357964, 0.004220318514853716, 0.19995294511318207, 0.0054495371878147125, 0.0013418972957879305, 0.02473461627960205, 0.004472990985959768, -0.01003179233521223, 0.01139759086072445, 0.011793673038482666, -0.002820374444127083, 0.01959921233355999, -0.004428602755069733, 0.02503509260714054, 0.0046300580725073814, 0.0015237192856147885, 0.009089390747249126, -0.006880211643874645, -0.039116475731134415, -0.00030260978383012116, -0.02108793333172798, 0.0162393469363451, 0.014873549342155457, -0.0002731597633101046, 0.007853343151509762, 0.006716315634548664, 0.018247071653604507, -0.025267276912927628, -0.01566571183502674, 0.0006376573001034558, 0.01229901798069477, 0.014873549342155457, -0.018247071653604507, 0.008802573196589947, 0.014887207187712193, -0.0005732086719945073, 0.02047332376241684, -0.004394457675516605, 0.01337799895554781, -0.022289836779236794, 0.006825579330325127, 0.0006624124362133443, 0.009929357096552849, -0.0038071642629802227, 0.02297273650765419, -0.014969155192375183, 0.015747660771012306, 0.012565349228680134, -0.003684242255985737, -0.0019257762469351292, 0.005097844172269106, -0.0054358793422579765, -0.014955496415495872, 0.014996470883488655, 0.024912169203162193, 0.018916312605142593, 0.008713796734809875, 0.03231479972600937, 0.0009680098737590015, -0.0011404419783502817, -0.017495881766080856, 0.014463809318840504, -0.012592664919793606, 0.015406209975481033, 0.014900865033268929, -0.0030884125735610723, -0.020104559138417244, -0.0019667502492666245, -0.029473938047885895, -0.012708758004009724, -0.0005890007596462965, -0.013917489908635616, 0.0042510489001870155, -0.014409177005290985, -0.011800501495599747, 0.005367589183151722, 0.0015459135174751282, -0.008713796734809875, 0.024925827980041504, 0.0052139367908239365, 0.039881326258182526, 0.03452739492058754, -0.022849813103675842, 0.007880658842623234, -0.039253056049346924, -0.002245031762868166, -0.01871144399046898, -0.0032164561562240124, 0.02283615618944168, -0.006508031394332647, -0.011937081813812256, -0.004787124693393707, -0.011855133809149265, 0.00811284501105547, -0.018520232290029526, 0.001684200600720942, 0.0107420077547431, 0.021292803809046745, -0.005630505736917257, -0.0004417505406308919, -0.018315361812710762, -0.022112281993031502, -0.0006184507510624826, 0.07042058557271957, -0.0027042815927416086, 0.01694956235587597, -0.013978950679302216, -0.026878919452428818, 0.007757737301290035, 0.0012881190050393343, 0.008187963627278805, -0.01565205492079258, 0.0010456896852701902, -0.028353983536362648, -0.0003224565589334816, -0.005685137584805489, 0.014095043763518333, 0.04299534484744072, -0.005319786258041859, -0.007989922538399696, 0.019203132018446922, -0.014723311178386211, 0.029801730066537857, -0.03286111727356911, 0.0005527217290364206, 0.012039516121149063, -0.004800783004611731, -0.019954320043325424, -0.01066688820719719, 0.007143127731978893, -0.016867615282535553, -0.02952856943011284, 0.04444309324026108, -0.010161543264985085, 0.0029654905665665865, -0.012790706008672714, -0.013268735259771347, 0.018520232290029526, -0.004401286598294973, -0.01213512197136879, -0.015897898003458977, 0.004309094976633787, 0.003680827794596553, 0.010489334352314472, 0.011670750565826893, -0.004370556212961674, 0.010024962946772575, -0.021825464442372322, 0.014327229000627995, -0.0023235653061419725, -0.045399151742458344, -0.018397308886051178, 0.0006965573993511498, -0.002494290005415678, -0.0025967250112444162, -0.0019718720577657223, 0.030785104259848595, -0.009485472925007343, -0.0196128711104393, -0.0054358793422579765, 0.01637592725455761, 0.006688999477773905, -0.035893190652132034, 0.011015167459845543, 0.040427643805742264, 0.01610276848077774, -0.007457261439412832, 0.005190035328269005, -0.173620343208313, 0.03712240979075432, -0.005879763979464769, -0.010694204829633236, 0.00994984433054924, -0.00709532480686903, 0.01083078421652317, 0.01119954977184534, -0.023013709113001823, -0.002354295691475272, 0.008495268411934376, 0.010284464806318283, -0.03643951192498207, -0.021361093968153, -0.014723311178386211, 0.011179063469171524, -0.03059389255940914, 0.01074883621186018, 0.017304670065641403, 0.030320733785629272, 0.013774081133306026, -0.022125940769910812, -0.01551547460258007, 0.008713796734809875, 0.034008391201496124, -0.008044554851949215, -0.02545849047601223, 0.017632462084293365, -0.0037457032594829798, 0.0063270628452301025, 0.005589531734585762, -0.018465599045157433, 0.013657988049089909, 0.005886592902243137, 0.003308647545054555, 0.005773914512246847, -0.011445393785834312, 0.010694204829633236, -0.0055075837299227715, 0.04187539219856262, 0.03436349704861641, 0.010564453899860382, 0.012510716915130615, 0.017072485759854317, -0.00973131600767374, 0.010141056030988693, 0.014381861314177513, 0.009321576915681362, -0.011698066256940365, -0.02338247559964657, -0.015378894284367561, 0.009396695531904697, -0.00622121337801218, 0.007450432516634464, -0.018615838140249252, 0.0057500130496919155, 0.012858995236456394, 0.023300526663661003, -0.012456084601581097, -0.021593278273940086, 0.002495997352525592, -0.009478643536567688, -0.013562382198870182, -0.004189587663859129, -0.007539209444075823, -0.042039286345243454, 0.0032608446199446917, 0.0013529944699257612, -0.029801730066537857, 0.015023786574602127, 0.0078123691491782665, -0.0030457312241196632, -0.002245031762868166, 0.011827817186713219, 0.0166764035820961, 0.004158857278525829, -0.013753593899309635, 0.007668960373848677, 0.003967645578086376, -0.007587012369185686, 0.01581595093011856, 0.009820093400776386, -0.0020811359863728285, -0.022918103262782097, -0.032669905573129654, -0.011698066256940365, -0.004363727290183306, -0.00018822414858732373, 0.022877130657434464, -0.0024430726189166307, 0.02604578249156475, -0.021825464442372322, -0.003994961269199848, -0.008365517482161522, -0.0033957173582166433, 0.027124764397740364, 0.0106805469840765, -0.0066343676298856735, 0.007149956654757261, -0.008590874262154102, -0.008379175327718258, 0.021142564713954926, 0.006542176008224487, 0.011677579954266548, -0.008966469205915928, 0.010072765871882439, -0.010106910951435566, 0.012196583673357964, 0.02649649605154991, -0.027261344715952873, -0.021620595827698708, 0.004172515124082565, 0.053184203803539276, 0.013958463445305824, -0.013617013581097126, 0.02732963301241398, -0.0025181914679706097, -0.008652335032820702, 0.013057036325335503, -0.00935572199523449, 0.06839920580387115, -0.016143741086125374, -0.030648525804281235, -0.00483151338994503, -0.0042442199774086475, -0.0010465433588251472, -0.11571047455072403, -0.00966302677989006, -0.00041443455847911537, 0.01529694627970457, -0.014627705328166485, 0.0016705426387488842, -0.0011071506887674332, 0.029337357729673386, 0.007272878661751747, 0.040154483169317245, 0.011021995916962624, -0.02955588512122631, -0.015105734579265118, -0.014409177005290985, 0.030976315960288048, -0.013733106665313244, -0.014149675145745277, -0.01626666449010372, -0.0032164561562240124, 0.036357562988996506, 0.0035681494046002626, -0.012237557210028172, -0.005575873423367739, -0.005248081870377064, -0.020295770838856697, -0.0004908339469693601, -0.03993595764040947, 0.007744078990072012, 0.01280436385422945, 0.020678194239735603, -0.00944449845701456, 0.008645506575703621, 0.028599826619029045, -0.019872372969985008, -0.0001863034995039925, -0.010298122651875019, -0.019517265260219574, -0.030375365167856216, 0.006945087108761072, -0.031795796006917953, 0.004729078151285648, 0.016293980181217194, -0.009915699250996113, -0.0348551869392395, 0.017891963943839073, -0.007887488231062889, -0.011267839930951595, 0.0055280704982578754, 0.0010141056263819337, 3.235769327147864e-05, -0.017331987619400024, -0.018479257822036743, -0.004046178888529539, -0.0383516289293766, 0.025417516008019447, 0.008290398865938187, 0.024079032242298126, 0.0031447517685592175, -0.02339613251388073, 0.001377749489620328, -0.010038620792329311, 0.0067607038654387, -0.027903269976377487, 0.02209862507879734, 0.0342269167304039, -0.004701762460172176, -0.03294306620955467, -0.01625300571322441, -0.0009850823553279042, -0.023901479318737984, -0.02166156843304634, 0.013937977142632008, -0.024079032242298126, 0.0036466827150434256, -0.04253097623586655, -0.005794401280581951, -0.016485191881656647, -0.01288631185889244, 0.025936519727110863, -0.009041587822139263, -0.027261344715952873, -0.023601002991199493, 0.031194845214486122, -0.019667502492666245, 0.0063202339224517345, 0.006931428797543049, -0.00943766999989748, -0.01521499827504158, 0.029637834057211876, -0.03012952208518982, 0.021183539181947708, 0.019927004352211952, -0.004274950362741947, -0.019667502492666245, 0.0029432964511215687, 0.017878307029604912, 0.0051422324031591415, -0.0012044637696817517, 0.025212645530700684, -0.005039797630161047, -0.016348611563444138, 0.014422834850847721, -0.025376541540026665, 0.0357292965054512, -0.019667502492666245, 0.012230727821588516, -0.00038519795634783804, -0.021470356732606888, -0.011745870113372803, -0.012811192311346531, -0.013357512652873993, 0.02060990408062935, -0.022303493693470955, 0.016485191881656647, -0.03141337260603905, 0.0032745026983320713, -0.029910992830991745, -0.013774081133306026, 0.01476428471505642, -0.027739373967051506, 0.019230447709560394, 0.008358689025044441, -0.024625351652503014, -0.010844442062079906, 0.01916215755045414, 0.018970945850014687, -0.009389867074787617, 0.0238605048507452, -0.03217821940779686, 0.01484623271971941, 0.011759527958929539, 0.005719282664358616, 0.011581974104046822, -0.017905622720718384, -0.006828994024544954, 0.024324877187609673, -0.001183976884931326, -0.009710829704999924, -0.01111760176718235, 0.025540437549352646, 0.002676965668797493, 0.018643153831362724, -0.023519055917859077, -0.02093769609928131, -0.018042203038930893, -0.010721520520746708, -0.031823113560676575, -0.02164791151881218, -0.027411581948399544, -0.007532380521297455, 0.010489334352314472, 0.014081385917961597, 0.0311675276607275, 0.01038007065653801, -0.002385026076808572, -0.02048698253929615, -0.005654407199472189, -0.014573073014616966, 0.022740550339221954, 0.011643434874713421, 0.012893140316009521, -0.0042442199774086475, 0.031823113560676575, -0.009096220135688782, 0.010755665600299835, -0.014777942560613155, 0.01699053682386875, -0.010223004035651684, -0.03682193532586098, 0.018684128299355507, 0.0066275387071073055, -0.030211469158530235, -0.02036406099796295, -0.010277636349201202, -0.0038378946483135223, 0.02354637160897255, -0.014354545623064041, 0.00398813234642148, -0.003725216258317232, 0.012777048163115978, -0.018848024308681488, 0.01841096766293049, -0.011875620111823082, 0.0013598233927041292, -0.015843266621232033, 0.027015499770641327, 0.008030897006392479, -0.0019667502492666245, -0.017646120861172676, 0.02387416362762451, 0.013507749885320663, 0.009492301382124424, -0.018356336280703545, 0.012462913990020752, -0.020241137593984604, 0.00686996802687645, 0.002624040935188532, 0.027698399499058723, 0.0022723476868122816, -0.0032062127720564604, 0.011800501495599747, 0.035019081085920334, -0.007006547879427671, 0.009546933695673943, -0.011069798842072487, -0.024925827980041504, -0.0075050643645226955, -0.01139759086072445, -0.02499411813914776, -0.022740550339221954, 0.0036022942513227463, 0.02137475088238716, 0.0011660506715998054, -0.0196128711104393, 0.05998588353395462, 0.009191825985908508, -0.022057650610804558, 0.01521499827504158, -0.004503721371293068, -0.0046300580725073814, -0.02895493432879448, 0.04023643210530281, 0.0006547297816723585, 0.018670469522476196, 0.03878868743777275, -0.005691966507583857, 0.020719166845083237, 0.029200777411460876, -0.003441812936216593, -0.043650928884744644, -0.01816512458026409, -0.01815146580338478, 0.017345644533634186, 0.01127466931939125, -0.018479257822036743, -0.008864033967256546, -0.002431121887639165, -0.026878919452428818, -0.0066992430947721004, 0.012394623830914497, -0.011711725033819675, 0.06118778511881828, 0.024256587028503418, -0.02515801414847374, 0.011281497776508331, -0.01419064961373806, 0.02196204476058483, 0.00025096553144976497, 0.010325439274311066, 0.005989027675241232, -0.03351670131087303, 0.014941838569939137, -0.01558376383036375, -0.010810297913849354, -0.016116425395011902, -0.004964678548276424, -0.008181135170161724, -0.0019223617855459452, 0.029637834057211876, -0.00958107877522707, -0.01484623271971941, 0.0055144126527011395, -0.03042999655008316, 0.0014665264170616865, 0.012975088320672512, -0.031386055052280426, -0.019790424033999443, 0.005131988786160946, 0.011165405623614788, -0.014217965304851532, -0.035783927887678146, 0.01694956235587597, -0.011882449500262737, -0.018615838140249252, -0.0242975614964962, -0.004575425758957863, -0.00819479301571846, -0.012858995236456394, -0.01083078421652317, -0.00323694315738976, 0.01871144399046898, 0.002256982494145632, 0.02252202294766903, -0.02941930666565895, -0.02472095750272274, -0.015474500134587288, -0.0012334870407357812, -0.010803468525409698, 0.007122640497982502, -0.014504782855510712], "54169aaa-b05b-4f0a-ab60-aadef1bf0af2": [-0.013745476491749287, -0.02138487994670868, -0.003550517139956355, -0.012402958236634731, -0.019095104187726974, 0.01675080880522728, 0.0018246659310534596, 0.005748293828219175, -0.01916325092315674, -0.06024293974041939, 0.004351257346570492, 0.0024260731879621744, 0.006174219772219658, -0.0058914050459861755, 0.0009165922529064119, -0.0033869617618620396, 0.031975097954273224, -0.03565509617328644, -0.00966340396553278, -0.02701391465961933, -0.028567692264914513, -0.014978957362473011, -0.021875547245144844, 0.020553473383188248, -0.01737777143716812, 0.0024891102220863104, 0.033010948449373245, -0.02108502946794033, 0.01448829099535942, 0.01623288169503212, -0.004283109214156866, 0.005714219994843006, -0.0075099230743944645, 0.012839105911552906, -0.004225183743983507, -0.021248584613204002, 0.00855940394103527, -0.026059841737151146, 0.01053569931536913, -0.021207695826888084, 0.0306666549295187, -0.0018434067023918033, 0.016055697575211525, -0.0018297770293429494, -0.017691252753138542, 0.02679584175348282, -0.012382513843476772, -0.0007726293406449258, -0.024574212729930878, 0.0023051102180033922, 0.004375109449028969, 0.019572140648961067, -0.019258659332990646, 0.028376877307891846, 0.0027276284527033567, 0.006518367677927017, -0.010678810998797417, 0.011223996058106422, 0.02139851078391075, -0.018699845299124718, 0.009840589016675949, 0.000909777416381985, -0.023906361311674118, -0.0010656662052497268, -0.0015520735178142786, -0.022557027637958527, 0.009527107700705528, -0.002695258241146803, 0.01309125404804945, -0.02073065936565399, 0.021453028544783592, 0.048276130110025406, -0.0025317026302218437, 0.011319402605295181, 0.031511690467596054, -0.008872885257005692, -0.0096906628459692, -0.0070124417543411255, -0.00971792172640562, -0.0021892583463340998, 0.005376886576414108, -0.0090432558208704, 0.0003773702192120254, 0.003976442851126194, 0.021984584629535675, 0.029494507238268852, 0.017854807898402214, -0.00786429364234209, -0.014801772311329842, 0.0020239991135895252, -0.000408675754442811, 0.016464585438370705, 0.008341330103576183, 0.006266220007091761, -0.009411255829036236, -0.007802959997206926, -0.007482663728296757, 0.0094044404104352, -0.003145035821944475, -0.018577177077531815, -0.0045659239403903484, 0.02349747158586979, -0.04173390939831734, -0.00891377404332161, -0.031102802604436874, -0.010365329682826996, -0.014501919969916344, 0.008429923094809055, 0.028322359547019005, -0.012334809638559818, -0.02582813799381256, 0.017868436872959137, -0.031566210091114044, 0.00402073934674263, 0.0004570183518808335, -0.02231169492006302, -0.019095104187726974, -0.014938068576157093, 0.008906959556043148, -0.006003849674016237, 0.029576284810900688, 0.008511700667440891, 0.022079991176724434, -0.015605919994413853, 0.027327395975589752, 0.025064880028367043, -0.0013075920287519693, -0.027436433359980583, -0.006627405062317848, -0.008668441325426102, 0.011823698878288269, 0.013023106381297112, -0.011380736716091633, 0.0008765552192926407, -0.005778960883617401, 0.021575694903731346, -0.018522659316658974, 0.003317109774798155, 0.0001159582898253575, -0.008586663752794266, -0.0006316478829830885, 0.020962363108992577, 0.004964590538293123, -0.010726514272391796, 0.01342517975717783, 0.027545470744371414, 0.020485324785113335, 0.005223553627729416, -0.014242957346141338, 0.016410067677497864, 0.004065035376697779, -0.023838212713599205, -0.021780138835310936, 0.008975107222795486, 0.027095694094896317, 0.009186366572976112, 0.005840294063091278, 0.03148443251848221, -0.0050429608672857285, -0.023442953824996948, 0.0014328142860904336, -0.006831848993897438, -0.007598515599966049, 0.0012275180779397488, -0.0014541104901582003, 0.005005479324609041, 0.014065772294998169, -0.015905771404504776, -0.002548739779740572, 0.02490132302045822, 0.009990514256060123, 0.020321769639849663, -0.012743698433041573, 0.011223996058106422, 0.019912881776690483, -0.0005622219759970903, 0.018904289230704308, 0.0045897760428488255, -0.023851841688156128, -0.03189332038164139, 0.010113181546330452, 0.004903257358819246, 0.023483842611312866, 0.016519105061888695, -0.023620139807462692, -0.004364887252449989, 0.014951697550714016, 0.01455643866211176, 0.023674657568335533, 0.00025385175831615925, 0.013357032090425491, 0.01762310415506363, -0.004313776269555092, -0.017541326582431793, -0.6140963435173035, -0.028894804418087006, -0.015060734935104847, -0.014747253619134426, 0.0035232577938586473, 0.022925028577446938, 0.02015821449458599, 0.01793658547103405, -0.02139851078391075, 0.02371554635465145, -0.007291849236935377, 0.03690902143716812, 0.0024209620896726847, -0.029467247426509857, -0.025228435173630714, -0.027136582881212234, 0.004293331876397133, -0.014215698465704918, 0.01129214372485876, -0.00011116662062704563, -0.0034738504327833652, 0.01536058634519577, 0.012491550296545029, -0.016587253659963608, -0.0036936281248927116, -0.015783105045557022, 0.04549568518996239, -0.008477626368403435, 0.007775700651109219, 0.025964435189962387, -0.02473776787519455, 0.01871347427368164, -0.006760293617844582, -0.025446508079767227, 0.049202945083379745, 0.015783105045557022, -0.03772680088877678, 0.0008348145056515932, 0.026209767907857895, 0.02768176794052124, -0.01804562285542488, 0.005557479336857796, 0.02160295471549034, -0.0002879258245229721, -0.023701917380094528, 0.012621032074093819, -0.0023783694487065077, -0.01142162550240755, -0.0003307313600089401, -0.0008535552187822759, 0.011523847468197346, -0.039089761674404144, -0.02829509973526001, -0.0010997402714565396, 0.005410960875451565, -0.009179552085697651, 0.01628740131855011, -0.023620139807462692, 0.012123551219701767, 0.016110215336084366, 0.006095849443227053, 0.004599998239427805, -0.019722066819667816, -0.03102102503180504, -0.03407406061887741, 0.013213920406997204, -0.00037587949191220105, -0.00788473803550005, 0.015251549892127514, 0.00468859076499939, 0.005588145926594734, 0.013970364816486835, -0.0059527382254600525, -0.017432289198040962, 0.002156888134777546, 0.027395544573664665, 0.015210661105811596, -0.02133036218583584, 0.018413621932268143, 0.012539254501461983, -0.007673478685319424, -0.0018672585720196366, 0.003107554279267788, -0.04334220662713051, 0.018618067726492882, 0.019449474290013313, -0.007189626805484295, -0.0005409257137216628, 0.004647701978683472, -0.008906959556043148, 0.019599400460720062, 0.014106661081314087, 0.01115584746003151, -0.01839999295771122, 0.01690073497593403, 0.03928057849407196, 0.00035628690966404974, -0.02030814066529274, 0.003884442849084735, -0.04843968525528908, -0.027204729616642, -0.011101328767836094, 0.009479403495788574, -0.004225183743983507, 0.023374805226922035, 0.04127050191164017, -0.024914953857660294, 0.009908736683428288, 0.030039692297577858, -0.008927403949201107, 0.00757807120680809, -0.008157330565154552, -0.03371969237923622, -0.034510210156440735, 0.0338287279009819, -0.027967989444732666, 0.014938068576157093, 0.01440651249140501, 0.008450367487967014, -0.0225706584751606, -0.00663421954959631, -0.002080221427604556, 0.025187546387314796, 0.002785554388538003, -0.004085479769855738, 0.027450064197182655, -0.005349627695977688, -0.00711466372013092, 0.021153176203370094, 0.026277916505932808, 0.021262213587760925, -0.012682365253567696, 0.014256587252020836, -0.02134399116039276, 0.027695396915078163, 0.01208947692066431, 0.015810364857316017, -0.01711880788207054, 0.03189332038164139, -0.04034368693828583, 0.007993774488568306, -0.02469687908887863, 0.009622515179216862, -0.008831996470689774, -0.009390811435878277, -0.039089761674404144, -0.02112591825425625, 0.010263106785714626, -0.0019933325238525867, -0.027082063257694244, -0.02551465667784214, -0.014079402200877666, -0.01643732748925686, 0.035600580275058746, 0.01162606943398714, -0.0018331845058128238, 0.00012490272638387978, -0.04214279726147652, -0.000983888516202569, -0.03720887377858162, -0.010842366144061089, 0.009097774513065815, -0.020798806101083755, -0.0069681452587246895, -0.004361480008810759, -0.016559993848204613, -0.012000883929431438, -0.006688738241791725, 0.003969627898186445, -0.03748146817088127, -0.009758811444044113, -0.014719994738698006, 0.010494810529053211, 0.034510210156440735, -0.0384627990424633, -0.002386888023465872, 0.010597032494843006, 0.012954957783222198, -0.0033767393324524164, -0.015687698498368263, 0.014133920893073082, 0.03611850365996361, -0.026359694078564644, -0.010038218460977077, 0.04396916925907135, 0.005734664388000965, 0.0405072420835495, 0.017541326582431793, -0.0018774807685986161, 0.009935996495187283, -0.024710508063435555, -0.002100665820762515, -0.008491256274282932, -0.0014541104901582003, -0.023647397756576538, -0.0006171663990244269, 0.0007577219512313604, -0.00027983321342617273, -0.01226666197180748, 0.021998213604092598, 0.015087993815541267, 0.011878217570483685, 0.018072882667183876, 0.011176291853189468, 0.008361774496734142, 0.0024942213203758, 0.007823403924703598, -0.021916436031460762, 0.03510991111397743, 0.03431939333677292, 0.0037447393406182528, -0.025323841720819473, -0.013472883962094784, -0.028213322162628174, -0.016968881711363792, -0.00028409247170202434, -0.016450956463813782, 0.014815401285886765, -0.01752769760787487, -0.004732887260615826, 0.025023989379405975, -0.004586368799209595, 0.025282952934503555, -0.0004312498203944415, 0.01148977316915989, -0.0040479982271790504, 0.036663688719272614, 0.019081473350524902, 0.002219925168901682, -0.004865775816142559, 0.018427252769470215, 0.015251549892127514, 0.022407101467251778, -0.0013961846707388759, 0.01691436395049095, 0.026264285668730736, 0.04323316738009453, 0.007257774937897921, 0.0267549529671669, 0.004334220662713051, -0.0005524256848730147, 0.006235552951693535, 0.024874065071344376, -0.0064297751523554325, 0.011033181101083755, 0.0007866848609410226, 0.024056287482380867, 0.0014055550564080477, -0.0315389521420002, -0.006198071874678135, 0.002240369562059641, 0.019190510734915733, 0.0039866650477051735, -0.027763545513153076, 0.0022454806603491306, -0.009029625914990902, 0.015783105045557022, 0.011094514280557632, 0.03107554279267788, 0.010494810529053211, 0.00966340396553278, 0.01799110323190689, 0.03802665323019028, -0.012743698433041573, -0.0009472589008510113, -0.003129702527076006, 0.0070328861474990845, -0.0222708061337471, -0.011455698870122433, -0.017909325659275055, 0.02210725098848343, 0.014270216226577759, 0.0007670922786928713, -0.006310516037046909, -0.004729479551315308, 0.03366517275571823, 0.018877029418945312, 0.009343107230961323, -0.0060413312166929245, 0.032383985817432404, -0.01448829099535942, -0.013009476475417614, 0.01829095557332039, 0.016369178891181946, -0.004208146594464779, -0.0024908138439059258, -0.021780138835310936, 0.00938399601727724, -0.018986066803336143, 0.026373323053121567, 0.006566071417182684, -0.007850663736462593, -0.017609475180506706, 0.016764437779784203, 0.010556143708527088, 0.026768581941723824, 0.02562369406223297, -0.018618067726492882, -0.004514812957495451, -0.01210992131382227, -0.0034653320908546448, -0.009411255829036236, -0.022202657535672188, -0.014188438653945923, 0.028785767033696175, -0.009942810982465744, -0.012975402176380157, -0.02829509973526001, -0.002983184065669775, -0.02062162198126316, 0.0014626290649175644, -0.01747317798435688, -0.009677032940089703, 0.009138663299381733, 0.011939550749957561, -0.016423696652054787, -0.008102811872959137, -0.008831996470689774, 0.027749914675951004, -0.01700977049767971, -0.01129214372485876, -0.008136886171996593, -0.01069243997335434, 0.011946366168558598, 0.08210485428571701, 0.039716724306344986, -0.01293451339006424, 0.017977474257349968, -0.01825006678700447, 0.0004757590650115162, -0.024233471602201462, -0.019613029435276985, 0.025037620216608047, -0.014392883516848087, 0.003829924389719963, -0.001319517963565886, -0.004218368791043758, -0.025078509002923965, -0.0006018331041559577, 0.011564736254513264, -0.006245775148272514, 0.004426220431923866, 0.010297181084752083, 0.008014218881726265, 0.0022079991176724434, -0.008518515154719353, 0.030339544638991356, 0.02845865488052368, 0.02938546985387802, 0.03690902143716812, 0.030966507270932198, 0.0010861107148230076, 0.02025362104177475, -0.035273466259241104, -0.007673478685319424, 0.005356442183256149, -0.005782368127256632, 0.006385479122400284, -0.014747253619134426, 0.0045454795472323895, 0.00039930539787746966, -0.029658062383532524, -0.012941327877342701, -0.006753478664904833, 0.009145477786660194, 0.04146131873130798, 0.01322073582559824, -0.019354065880179405, 0.033528875559568405, -0.007966515608131886, 0.019926510751247406, 0.028131544589996338, -0.017650363966822624, -0.013861328363418579, 0.04200650379061699, -0.00015812493802513927, -0.012845921330153942, -0.010174514725804329, -0.0011227403301745653, -2.928239518951159e-05, -0.02824058197438717, -0.006998812314122915, 0.014474661089479923, -0.02190280705690384, -0.02308858372271061, -0.03859909623861313, 0.014270216226577759, -0.016205623745918274, -0.017813919112086296, -0.023770064115524292, -0.022461621090769768, -0.00821866374462843, -0.012477921321988106, 0.00868888571858406, -0.014597327448427677, -0.030693914741277695, -0.03789035603404045, 0.030802950263023376, 0.025909915566444397, 0.014120290987193584, 0.004361480008810759, 0.015905771404504776, 0.010378958657383919, 0.013834068551659584, -0.018181918188929558, -0.026986656710505486, 0.001848517800681293, -0.017636733129620552, -0.02345658279955387, 0.014610957354307175, -0.007877922616899014, 0.006961330771446228, -0.014638216234743595, -0.008927403949201107, -0.000794777472037822, -0.021630214527249336, -0.005090664606541395, 0.0338287279009819, 0.005615405272692442, 0.012000883929431438, 0.009567996487021446, 0.02629154548048973, 0.0049202945083379745, -0.023129472509026527, -0.0099768852815032, -0.019517622888088226, 0.0025998507626354694, 0.020430807024240494, 0.010426662862300873, 0.0016185179119929671, -0.011401181109249592, 0.003402295056730509, 0.008409477770328522, -0.01553777139633894, 0.03303821012377739, -0.02700028568506241, -0.009758811444044113, -0.026932137086987495, -0.035845912992954254, -0.004760146141052246, 0.02164384350180626, 0.044814202934503555, 0.00868888571858406, -0.015755845233798027, -0.019926510751247406, -0.026455100625753403, 0.017854807898402214, -0.0017190363723784685, -0.023361176252365112, -0.0006968145607970655, 0.014760883525013924, -0.01422932744026184, -0.04958457499742508, -0.0022948880214244127, 0.0034959986805915833, 0.025119397789239883, -0.007359997369349003, -0.017255105078220367, -0.0238654725253582, -0.013343402184545994, -7.618746894877404e-05, 0.008102811872959137, -0.025746360421180725, 0.004930516704916954, -0.03142991289496422, 0.01602843776345253, 0.0006116293952800333, -0.0256100632250309, -0.007687108125537634, -0.03900798410177231, -0.025064880028367043, -0.004228590987622738, -0.0008164996979758143, 0.025896286591887474, 0.009854217991232872, -0.0002836665662471205, -0.030993765220046043, 0.01466547604650259, -0.022134510800242424, -0.03415583819150925, -0.00806873757392168, -0.024083545431494713, 0.035845912992954254, 0.02979435957968235, 0.034455690532922745, 0.007918811403214931, 0.02258428744971752, 0.012511994689702988, 0.0021671103313565254, -0.01440651249140501, 0.0060822200030088425, 2.7924757887376472e-05, -0.010290366597473621, 0.018522659316658974, 0.0303668025881052, 0.018277326598763466, 0.00015226846153382212, 0.007632589433342218, 0.02113954722881317, 0.032956432551145554, -0.008225478231906891, -0.026046212762594223, -0.0312390998005867, -0.043124131858348846, -0.008852440863847733, -0.014719994738698006, -0.016532734036445618, -0.007462219335138798, -0.04214279726147652, 0.005492738448083401, 0.03309272602200508, 0.0037788134068250656, 0.026427840813994408, -0.014583698473870754, 0.025010360404849052, 0.0035062208771705627, -0.010992292314767838, 0.003269406035542488, 0.028594952076673508, -0.034046802669763565, -0.03279287740588188, -0.02742280438542366, -0.003550517139956355, 0.01747317798435688, 0.004037776030600071, 0.021371250972151756, 0.006140145938843489, -0.025841766968369484, 0.011769180186092854, 0.02840413711965084, -0.03881717100739479, -0.0004203887365292758, 0.007714367471635342, -0.021016880869865417, 0.01567406766116619, -0.03819020837545395, -0.012941327877342701, 0.009213626384735107, -0.010719699785113335, 0.008600292727351189, 0.008518515154719353, 0.010406218469142914, -0.02727287821471691, -0.01856354810297489, 0.0422518365085125, -0.004627257585525513, 0.014038513414561749, 0.013575105927884579, 0.013588735833764076, -0.0070533305406570435, 0.026918508112430573, 0.006255997344851494, -0.0045454795472323895, 0.004623849876224995, 0.0021023694425821304, 0.01239614374935627, 0.035546060651540756, -0.016559993848204613, -0.007387256249785423, 0.00030773135949857533, -0.004634072072803974, -0.0034704431891441345, -0.01660088263452053, 0.024615101516246796, 0.00047831464326009154, 0.012750513851642609, -0.03963494673371315, -0.0031348136253654957, -0.028594952076673508, 0.006525182630866766, -0.007400886155664921, 0.0021534806583076715, 0.0035811837296932936, 0.0022710361517965794, -0.010099551640450954, 0.035491541028022766, -0.01675080880522728, 0.022202657535672188, 0.019681178033351898, -0.02571910060942173, 0.012968587689101696, 0.010603847913444042, -0.020962363108992577, 0.008184589445590973, -0.0199537705630064, 0.024560583755373955, -0.017609475180506706, 0.009731551632285118, 0.01793658547103405, 0.023688286542892456, 0.0013612586772069335, -0.01437925361096859, -0.012048588134348392, 0.02577362023293972, -0.006140145938843489, -0.019967399537563324, 0.011039995588362217, -0.00387762812897563, 0.01161925494670868, -0.02968532219529152, 0.006416145712137222, 0.007080589886754751, -0.01571495644748211, -0.00950666330754757, 0.010194959118962288, 0.004480739124119282, -0.014965327456593513, -0.0015239623608067632, 0.008048293180763721, -0.014024883508682251, 0.007516738027334213, -0.00953392218798399, 0.01669628918170929, -0.02710932306945324, -0.010133625939488411, -0.0029763691127300262, 0.006293478887528181, 0.004640887025743723, -0.00821866374462843, -0.0030939248390495777, -0.026877619326114655, 0.02231169492006302, -0.020144585520029068, 0.02345658279955387, 0.011605625040829182, 0.009983699768781662, -0.04590457305312157, 0.00999732967466116, -0.0029184434097260237, -0.008314071223139763, 0.020008288323879242, -0.0054143681190907955, -0.034510210156440735, 0.000574147910811007, 0.005448442418128252, 0.010372144170105457, -0.022952286526560783, 0.0021585917565971613, 0.023633768782019615, 0.019245030358433723, 0.007019256707280874, -0.006273034494370222, -0.007175997365266085, 0.016246512532234192, -0.023538360372185707, 0.023442953824996948, 0.013493328355252743, -0.022120879963040352, 0.014338364824652672, 0.015851253643631935, -0.0045488872565329075, -0.026141619309782982, -0.017554955556988716, -0.022706953808665276, 0.017037030309438705, -0.002869035815820098, -0.00855258945375681, -0.008170959539711475, 0.00546547956764698, -0.023442953824996948, -0.01886340044438839, 0.007687108125537634, -0.01664177142083645, -0.013725032098591328, 0.01999465934932232, 0.01486991997808218, 0.021316733211278915, 0.03320176526904106, -0.021562065929174423, -0.012014513835310936, -0.02484680525958538, -0.006215108558535576, -0.044514354318380356, -0.021725621074438095, 0.0054348125122487545, 0.023415694013237953, 0.016996141523122787, -0.03928057849407196, -0.01932680793106556, -0.020839694887399673, -0.05217420309782028, -0.020989621058106422, -0.010924143716692924, 0.017186956480145454, 0.01198043953627348, 0.010699255391955376, -0.0064093307591974735, 0.02160295471549034, -0.0074485898949205875, 0.00793925579637289, -0.014515549875795841, -0.012498365715146065, 0.006027701310813427, -0.03227495029568672, 0.020130954682826996, -0.00045105538447387516, -0.04552294686436653, 0.0046545169316232204, 0.018181918188929558, -0.0038197021931409836, -0.009895107708871365, 0.02314310148358345, 0.007148738019168377, 0.004811257589608431, -0.00022552769223693758, 0.015060734935104847, 0.010590218007564545, 0.006692145485430956, 0.017241474241018295, -0.013254810124635696, -0.0009949625236913562, 0.005785775370895863, 0.007026071194559336, -0.01602843776345253, 0.023156732320785522, -0.0003652313316706568, 0.007080589886754751, 0.020376289263367653, 0.0005975738167762756, 0.0023783694487065077, 0.005189479328691959, -0.005151997786015272, -0.004797627683728933, 0.011885032057762146, 0.01839999295771122, 0.01669628918170929, 0.010160884819924831, 0.010562959127128124, 0.012225773185491562, 0.004327405709773302, 0.015128882601857185, -0.0022863694466650486, 0.020349029451608658, 0.004286516923457384, -0.0006861664005555212, -0.018386363983154297, 0.006811404600739479, -0.006487701088190079, -0.01788206771016121, 0.017077919095754623, 0.003863998455926776, -0.03235672786831856, 0.01015407033264637, -0.0002789813734125346, -0.0034653320908546448, 0.008770663291215897, -0.030911987647414207, 0.009799700230360031, 0.023879101499915123, -0.003109258133918047, -0.0045284428633749485, -0.00889332965016365, -0.022761473432183266, -0.015442363917827606, -0.04685864970088005, -0.007973330095410347, -0.005404145922511816, 0.020948732271790504, -0.030503099784255028, 0.002526591531932354, 0.20237265527248383, -0.0022437768056988716, -0.008634367026388645, 0.01756858639419079, -0.0005255923606455326, 0.0021619992330670357, 0.02464236132800579, 0.016587253659963608, 0.0025879249442368746, 0.012028143741190434, 0.0025180731900036335, 0.03377420827746391, 0.009493033401668072, -0.0009915551636368036, -0.006964738015085459, -0.00043870354420505464, -0.03985302150249481, -0.002787258243188262, -0.009090959094464779, 0.022666065022349358, 0.023647397756576538, 0.0028588136192411184, 0.0116465138271451, 0.002843480324372649, 0.007734811864793301, -0.007741626817733049, -0.029085617512464523, -0.002347702858969569, 0.01342517975717783, 0.014719994738698006, -0.03222043067216873, -0.0021449620835483074, 0.015019846148788929, 0.0006363330758176744, 0.02086695469915867, 0.0026867396663874388, 0.015292438678443432, -0.03159346804022789, -0.004153627902269363, -0.011244440451264381, 0.005257627461105585, -0.0007551664020866156, 0.030121469870209694, -0.008348144590854645, 0.012307550758123398, 0.01839999295771122, -0.0041127391159534454, -0.00354370241984725, 0.005485923960804939, 0.0038878503255546093, -0.01420206855982542, 0.01690073497593403, 0.02417895384132862, 0.022093620151281357, 0.0066001457162201405, 0.040589019656181335, -0.006531997583806515, 0.004129776265472174, -0.02073065936565399, 0.003591405926272273, -0.023688286542892456, 0.015387846156954765, 0.009411255829036236, 0.0007151293684728444, -0.01906784437596798, 0.008232292719185352, -0.02190280705690384, -0.019831104204058647, 0.0016159623628482223, -0.02149391733109951, 0.0007308886270038784, -0.02597806416451931, -0.0045045907609164715, 0.010045032948255539, -0.006279849447309971, -0.01819554902613163, 0.02690487913787365, 0.0012266661506146193, 0.02963080257177353, 0.027913469821214676, -0.01895880699157715, 0.003993480000644922, -0.03870813176035881, -0.0023068138398230076, -0.011939550749957561, -0.0074690342880785465, 0.03322902321815491, 0.004647701978683472, -0.0008297034073621035, -0.014610957354307175, -0.011994069442152977, 0.01262784656137228, -0.0170642901211977, -0.0001252221700269729, 0.00036331466981209815, 0.018877029418945312, 0.008021034300327301, 0.0018025177996605635, -0.01597392000257969, -0.028513174504041672, 0.0037856281269341707, 0.0512201264500618, -0.008872885257005692, 0.02258428744971752, -0.015292438678443432, -0.02438339777290821, 0.00935673713684082, 0.010174514725804329, -0.0029150359332561493, -0.00533259054645896, -0.0037924430798739195, -0.030039692297577858, 0.006917034275829792, 0.002109184395521879, 0.01767762191593647, 0.042497169226408005, -0.006838663946837187, -0.0006929812370799482, 0.02525569312274456, -0.014052142389118671, 0.034046802669763565, -0.030748432502150536, 0.0018519251607358456, 0.006978367455303669, -0.01046755164861679, -0.022952286526560783, -0.006855701096355915, 0.013881772756576538, -0.013881772756576538, -0.018440881744027138, 0.037290651351213455, -0.019858362153172493, 0.006109478883445263, -0.012034958228468895, 1.2561482662931667e-06, 0.004695405717939138, -0.011605625040829182, -0.0068863676860928535, -0.015565031208097935, 0.0064093307591974735, 0.0012249625287950039, 0.009145477786660194, 0.006095849443227053, 5.9949052229058e-05, 0.00499866483733058, -0.027122952044010162, 0.010229033417999744, -0.0030002209823578596, -0.020839694887399673, -0.015496882610023022, -0.0026850360445678234, -0.00468859076499939, -0.008368588984012604, 0.005291701760143042, 0.037754058837890625, -0.006112886592745781, -0.021112287417054176, -0.0022591103333979845, 0.013023106381297112, 0.006964738015085459, -0.03603672608733177, 0.015987548977136612, 0.039553169161081314, 0.01102636568248272, -0.012893624603748322, 0.011925920844078064, -0.1729326695203781, 0.03211139515042305, 0.00041847204556688666, -0.002766813850030303, 0.011237625032663345, -0.0030019248370081186, 0.009772440418601036, 0.01093095913529396, -0.0399075411260128, 3.6256929888622835e-05, 0.001490740105509758, 0.007625774946063757, -0.045795537531375885, -0.019776584580540657, -0.007843849249184132, -0.0020257029682397842, -0.025759989395737648, 0.011407995596528053, 0.011939550749957561, 0.02025362104177475, 0.0036868134047836065, -0.019422214478254318, -0.008395848795771599, 0.007210071198642254, 0.04222457483410835, -0.006637627258896828, -0.02864946983754635, 0.027136582881212234, 0.0005404998082667589, 0.004719257354736328, -0.0032455543987452984, -0.020021917298436165, 0.007632589433342218, 0.0023954063653945923, 0.011476143263280392, 0.002219925168901682, -0.00827318150550127, 0.009779255837202072, 0.012334809638559818, 0.050020720809698105, 0.03102102503180504, 0.010869625024497509, 0.02019910328090191, 0.010583403520286083, -0.029576284810900688, 0.0028247395530343056, 0.014570068567991257, 0.009833773598074913, -0.020090065896511078, -0.019653918221592903, -0.015006216242909431, 0.00857984833419323, -0.009002367034554482, 0.01067199558019638, -0.0059970347210764885, 0.009152292273938656, 0.007673478685319424, 0.020035548135638237, -0.012225773185491562, -0.013479698449373245, 0.0028741469141095877, -0.008205033838748932, -0.015442363917827606, -0.004405776038765907, -0.008470811881124973, -0.03284739330410957, -0.007775700651109219, 0.008164145052433014, -0.026264285668730736, 0.005216738674789667, 0.002451628679409623, -0.012041772715747356, -0.00025704619474709034, -0.006235552951693535, 0.011769180186092854, 0.007503108121454716, -0.006954515818506479, 0.012764142826199532, 0.010753773152828217, -0.01353421714156866, 0.010999106802046299, 0.002562369452789426, 0.004552294500172138, -0.015592290088534355, -0.03331080079078674, -0.014978957362473011, -0.018699845299124718, 0.005959553178399801, 0.010685625486075878, -0.002163702854886651, 0.03072117269039154, -0.02690487913787365, -0.014747253619134426, -0.021916436031460762, 0.010869625024497509, 0.019190510734915733, 0.015837622806429863, -0.01901332661509514, 0.00806873757392168, -0.026223396882414818, -0.007966515608131886, 0.01440651249140501, 0.002843480324372649, 0.013629624620079994, 0.006477478891611099, 0.014474661089479923, -0.00776888569816947, 0.021534806117415428, 0.021575694903731346, -0.02597806416451931, -0.017963845282793045, -0.007762071210891008, 0.04721301794052124, 0.008763848803937435, -0.012777772732079029, 0.019667547196149826, -0.0014864809345453978, -0.013350216671824455, 0.010828736238181591, -0.014610957354307175, 0.07507196813821793, -0.010194959118962288, -0.021821027621626854, -0.00025385175831615925, 0.007455404382199049, 0.012689180672168732, -0.10538425296545029, -0.019681178033351898, -0.0029457025229930878, 0.021875547245144844, -0.016273772343993187, 0.005905034951865673, -0.0016755919205024838, 0.03148443251848221, 0.0023971102200448513, 0.04830338805913925, 0.021671103313565254, -0.024710508063435555, -0.004930516704916954, -0.010876440443098545, 0.037699539214372635, -0.02103050984442234, -0.02184828743338585, -0.004409183282405138, -0.013329772278666496, 0.040180131793022156, 0.0012471106601879, -0.019245030358433723, 0.0001748425274854526, -0.0075099230743944645, -0.011953180655837059, -0.010385774075984955, -0.044705167412757874, -0.0036697762552648783, 0.01504710502922535, 0.018222806975245476, 0.008382218889892101, 0.0010929255513474345, 0.031048284843564034, -0.02277510240674019, 0.0009685551631264389, -0.001979702850803733, -0.019599400460720062, -0.01665540039539337, 0.016982512548565865, -0.03551880270242691, 0.01066518109291792, 0.010406218469142914, -0.011551106348633766, -0.03524620831012726, 0.03083021007478237, 0.002030814066529274, -0.009390811435878277, 0.0016065919771790504, -0.0020001474767923355, -0.007394071202725172, -0.02304769493639469, -0.0016892215935513377, -0.012941327877342701, -0.034510210156440735, 0.023783694952726364, 0.014801772311329842, 0.029140137135982513, -0.0003577776369638741, -0.028840284794569016, -0.003768591210246086, -0.015033476054668427, 0.021316733211278915, -0.02030814066529274, 0.02073065936565399, 0.023279398679733276, 0.005257627461105585, -0.024315249174833298, -0.012028143741190434, -0.00517925713211298, -0.02041717804968357, -0.015197031199932098, 0.022597916424274445, -0.018836140632629395, -0.009302218444645405, -0.039362356066703796, -0.0016449253307655454, -0.006491108797490597, -0.010160884819924831, 0.02180739864706993, 0.003044517245143652, -0.02762724831700325, -0.022502509877085686, 0.012614217586815357, -0.008702514693140984, 0.01067199558019638, 0.01095140352845192, -0.0009157403837889433, -0.008075552061200142, 0.030394062399864197, -0.022720584645867348, 0.024342508986592293, 0.014270216226577759, -0.007673478685319424, -0.023442953824996948, -0.0031603691168129444, 0.011094514280557632, 0.0008365181856788695, -0.0035368874669075012, 0.020757917314767838, 0.00034052765113301575, -0.017704881727695465, 0.006549034267663956, -0.037808578461408615, 0.0387626513838768, -0.026564138010144234, 0.01084918063133955, -0.0034142208751291037, -0.016055697575211525, -0.003509628353640437, -0.004276294726878405, -0.002632221207022667, 0.004395553842186928, -0.027122952044010162, 0.008034663274884224, -0.04396916925907135, 0.004695405717939138, -0.02514665760099888, -0.002296591643244028, 0.01829095557332039, -0.017854807898402214, 0.03808116912841797, -0.001207073568366468, -0.01912236213684082, -0.008007404394447803, 0.022093620151281357, 0.009261329658329487, -0.014801772311329842, 0.022543398663401604, -0.025501027703285217, 0.02391999028623104, 0.006688738241791725, 0.014978957362473011, 0.015455993823707104, -0.0186589565128088, 0.005533627700060606, 0.030884727835655212, -0.008014218881726265, 0.00676710857078433, -0.00842310767620802, 0.022666065022349358, 0.0001926249242387712, 0.014052142389118671, -0.01912236213684082, -0.024860434234142303, -0.01717332750558853, -0.007332738023251295, -0.036009468138217926, -0.020035548135638237, -0.03107554279267788, -0.007523552514612675, 0.01420206855982542, 0.015524142421782017, 0.02484680525958538, 0.01486991997808218, 0.0017096659867092967, -0.02086695469915867, 0.008804737590253353, -0.016778066754341125, 0.015592290088534355, 0.017500437796115875, 0.0036357021890580654, -0.0022642214316874743, 0.034864578396081924, -0.005431405268609524, 0.003949183505028486, -0.00982014462351799, 0.01639643870294094, -0.0020257029682397842, -0.04274250194430351, 0.022693324834108353, 7.646698577445932e-06, -0.029412729665637016, -0.01932680793106556, -0.0045079984702169895, -0.00379585032351315, 0.0180865116417408, -0.017336882650852203, 0.01587851159274578, 0.0014191846130415797, 0.002736147027462721, -0.03222043067216873, 0.023483842611312866, -0.01886340044438839, -0.005131553392857313, -0.017486808821558952, 0.024778656661510468, -0.0012931106612086296, 0.002603258239105344, -0.024669619277119637, 0.015633178874850273, 0.016791697591543198, 0.01638280786573887, -0.025010360404849052, 0.014815401285886765, -0.0180865116417408, 0.010958218015730381, -0.005441627465188503, 0.032029617577791214, 0.00035607392783276737, -0.01048799604177475, 0.02355199120938778, 0.025746360421180725, -0.012866365723311901, 0.009424884803593159, -0.009629329666495323, -0.02742280438542366, -0.028158804401755333, -0.023565620183944702, -0.04865776002407074, -0.016464585438370705, 0.005847109016031027, 0.027082063257694244, 0.012716439552605152, -0.023020435124635696, 0.06847523152828217, 0.010106366127729416, -0.02073065936565399, 0.0024874063674360514, -0.001456666155718267, -0.01782754808664322, -0.031048284843564034, 0.03917153924703598, 0.021412139758467674, 0.011196736246347427, 0.05083850026130676, -0.0030002209823578596, 0.016778066754341125, 0.0373179130256176, 0.008593478240072727, -0.041570354253053665, -0.013541031628847122, -0.013888587243855, 0.010099551640450954, -0.005901627242565155, -0.01782754808664322, -0.01927228830754757, -0.010767403058707714, -0.010896884836256504, -0.018686214461922646, 0.003422739449888468, -0.011687402613461018, 0.06520412117242813, 0.027300138026475906, -0.027749914675951004, 0.005574516486376524, -0.008743404410779476, 0.027286507189273834, 0.015565031208097935, 0.011871403083205223, 0.016573622822761536, -0.04097064957022667, 0.012689180672168732, -0.01142162550240755, -0.008920589461922646, -0.025800878182053566, -0.009711107239127159, -0.005857331212610006, 0.009963255375623703, 0.03339257836341858, -0.018413621932268143, -0.014856290072202682, 0.005008887033909559, -0.019367696717381477, 0.006416145712137222, 0.011769180186092854, -0.027450064197182655, -0.019858362153172493, 0.010753773152828217, 0.0170642901211977, 0.006068590097129345, -0.03963494673371315, 0.018031993880867958, -0.0035811837296932936, -0.018113771453499794, -0.025323841720819473, 0.001123592141084373, 0.006099256686866283, -0.014651846140623093, -0.01113540306687355, -0.0015111846150830388, 0.006317330989986658, 0.00363910966552794, 0.02297954633831978, -0.024805916473269463, -0.03020324744284153, -0.007407700642943382, -0.006191256921738386, -0.01437925361096859, -0.00036437949165701866, -0.01825006678700447], "62764cae-47bf-4e4a-ac61-ea7553abeb11": [-0.020707370713353157, -0.025639014318585396, -0.010533269494771957, 0.002937228186056018, -0.019491728395223618, 0.017585380002856255, -0.00705211004242301, -0.0006807773024775088, -0.03367883339524269, -0.05174770951271057, 0.015319863334298134, 0.018179386854171753, 0.008509499952197075, 0.007673745974898338, 0.0012708994327113032, 0.0022068063262850046, 0.026827028021216393, -0.02679939940571785, -0.007770444732159376, -0.03307101130485535, -0.0371599942445755, -0.004638092126697302, -0.031827740371227264, 0.014138755388557911, -0.01960224099457264, 0.004396345000714064, 0.04135948792099953, -0.01877339370548725, 0.006734385155141354, 0.025721898302435875, 0.012052822858095169, 0.00659969775006175, -0.0004813358827959746, 0.01599675603210926, 0.010629968717694283, -0.024561511352658272, 0.004220214672386646, -0.015347491949796677, 0.021121796220541, -0.015872428193688393, 0.023069586604833603, 0.023401126265525818, -0.0021705441176891327, 0.0029907578136771917, -0.008101983927190304, 0.036524541676044464, 0.010167195461690426, 0.0009074152330867946, -0.017088070511817932, 0.0018320981180295348, 0.005225192289799452, 0.0299213919788599, -0.011403558775782585, 0.03329204022884369, 0.005836467258632183, -0.001856272923760116, 0.015015952289104462, 0.023456381633877754, -0.0021377357188612223, -0.017502494156360626, -0.00389212928712368, 0.0033775533083826303, -0.018759580329060555, 0.0015471818624064326, -0.023566896095871925, -0.03414851427078247, -0.0008750383858568966, -0.0029562225099653006, 0.011251604184508324, -0.013530934229493141, 0.009124228730797768, 0.04638782888650894, 0.013392793014645576, 0.009013716131448746, 0.024354299530386925, -0.0031530738342553377, -0.005518742371350527, -0.007729002274572849, -0.012411990202963352, -0.003850687062367797, 0.012874763458967209, -0.008398987352848053, 0.0035813115537166595, -0.003957746550440788, 0.0172123983502388, 0.03605486452579498, 0.005477299913764, -0.005297716706991196, -0.023953691124916077, 0.0023224996402859688, 0.006002236623317003, 0.00926927663385868, 0.014684413559734821, 0.012708993628621101, -0.007756630424410105, 0.006844898220151663, 0.014200919307768345, 0.0026281371247023344, 0.00414769072085619, -0.016673646867275238, 0.007694466970860958, 0.016438808292150497, -0.029589854180812836, -0.0005853734910488129, -0.030170045793056488, -0.0025763341691344976, -0.002824988216161728, -0.012114986777305603, 0.017461052164435387, -0.01298527605831623, -0.02848472259938717, 0.01862143911421299, -0.030777867883443832, 0.012522502802312374, 0.0004916964680887759, -0.007418184541165829, -0.012467246502637863, 0.010498734191060066, 0.011707469820976257, -0.0024174717254936695, 0.03528127074241638, 0.008046726696193218, 0.02742103673517704, -0.015499446541070938, 0.024906864389777184, 0.023525452241301537, 0.010084310546517372, -0.0236635934561491, -0.0002827578573487699, -0.007756630424410105, 0.002900965977460146, 0.016756532713770866, 0.005332252010703087, 0.005940073169767857, -0.016797974705696106, 0.019353587180376053, -0.013897008262574673, -0.0001619921822566539, -0.006727478466928005, -0.02124612219631672, -0.003598579205572605, 0.03743627667427063, -0.00380924460478127, -0.002310412237420678, 0.021411892026662827, 0.013993707485496998, 0.01065759640187025, 0.008426615968346596, -0.0030511945951730013, -0.003560590324923396, -0.00487983925268054, -0.014449573121964931, -0.009821842424571514, 0.015402748249471188, 0.004762419033795595, 0.028733378276228905, 0.01768207922577858, 0.02895440347492695, -0.0018804476130753756, -0.024008946493268013, -0.004720977041870356, -0.005957340821623802, -0.0072524151764810085, 0.0005154394893907011, 0.0032981219701468945, 0.014753484167158604, 0.02445099875330925, -0.01917400397360325, -0.003602032782509923, 0.016991373151540756, 0.0016464708605781198, 0.016107268631458282, -0.014601528644561768, 0.0065893372520804405, 0.0031530738342553377, 0.005194110795855522, 0.02225455269217491, -0.00025491375708952546, -0.0189806055277586, -0.04158051311969757, 0.0010360593441873789, -0.0007019301410764456, 0.02355308085680008, 0.005332252010703087, -0.019574614241719246, -0.005477299913764, 0.015609960071742535, 0.009642258286476135, 0.013489492237567902, -0.006088574882596731, 0.018952978774905205, 0.008599292486906052, -0.0166183914989233, 0.00045198085717856884, -0.6153363585472107, -0.0234701968729496, -0.01913256198167801, -0.019104933366179466, 0.006416660733520985, 0.02030676230788231, 0.007404370233416557, 0.017336726188659668, -0.021701987832784653, 0.01757156476378441, 0.006496091838926077, 0.028457095846533775, -0.0011862878454849124, -0.029506968334317207, -0.025017378851771355, -0.02417471632361412, 0.008171054534614086, -0.01118944026529789, 0.01402133610099554, 0.013026718981564045, -0.005352973006665707, 0.02058304473757744, -0.0008146016043610871, -0.006261251401156187, -0.014145663008093834, -0.011838704347610474, 0.031054150313138962, 0.016494063660502434, 0.01032605767250061, 0.022199297323822975, -0.006672221701592207, 0.0044377874583005905, -0.01171437744051218, -0.01345495693385601, 0.04705090448260307, 0.004845303948968649, -0.027006611227989197, 0.011652213521301746, 0.025086449459195137, 0.01646643504500389, -0.03384460508823395, 0.004009549506008625, 0.00589863071218133, 0.004613917320966721, -0.02617776393890381, 0.017461052164435387, 0.0006881160661578178, -0.01342042163014412, 0.0038783152122050524, -0.017889291048049927, 0.01351711992174387, -0.03047395683825016, -0.009248555637896061, -0.0035951256286352873, 0.0030097521375864744, -0.012059730477631092, 0.018179386854171753, -0.009103507734835148, 0.014767298474907875, 0.006116203498095274, 0.0037194527685642242, -0.022710420191287994, 0.004099341109395027, -0.032407935708761215, -0.03564044088125229, 0.01295074075460434, -0.003049467923119664, -0.007922399789094925, 0.017101885750889778, -0.0012372274650260806, 0.003273947397246957, 0.007639210671186447, -0.007742816582322121, -0.022738046944141388, 0.019809452816843987, 0.01438050251454115, 0.008088169619441032, -0.01994759403169155, 0.016383551061153412, 0.01375196035951376, 0.001760437386110425, -0.011389745399355888, -0.0009851197246462107, -0.03331966698169708, 0.02186775766313076, 0.024934493005275726, -0.01654932089149952, 0.002434739377349615, 6.399824633263052e-05, 0.0030960903968662024, 0.004817675799131393, 0.012626109644770622, 0.0038748616352677345, -0.03351306542754173, 4.945564433000982e-05, 0.018248457461595535, -0.006116203498095274, -0.01036749966442585, -0.010940786451101303, -0.0453655831515789, -0.01654932089149952, 0.006181820295751095, 0.01382793765515089, 0.004482683259993792, 0.027282893657684326, 0.047078534960746765, -0.00021875959646422416, 0.012439618818461895, 0.028899146243929863, -0.023608338087797165, -0.004551753867417574, -0.009607722982764244, -0.04845994710922241, -0.02429904416203499, 0.017032815143465996, -0.031054150313138962, 0.023249169811606407, 0.00952483806759119, -0.004050991963595152, -0.0033309306018054485, 0.0023121389094740152, 0.01152097899466753, 0.03257370367646217, -0.014794927090406418, -0.011341395787894726, 0.028111742809414864, -0.008827225305140018, -0.0009764858987182379, 0.023815549910068512, 0.0066445935517549515, 0.018179386854171753, -0.015333677642047405, 0.01171437744051218, -0.015167907811701298, 0.03235267847776413, 0.012474154122173786, 0.01924307458102703, -0.02398131974041462, 0.01685323193669319, -0.049344051629304886, 0.009400511160492897, -0.006402846425771713, 0.005570545326918364, -0.02906491607427597, -0.017585380002856255, -0.031358059495687485, -0.00950411707162857, 0.021329008042812347, -0.0008655412239022553, -0.005795024801045656, -0.034369539469480515, -0.006223262753337622, -0.019616056233644485, 0.031164662912487984, -0.0037021851167082787, 0.004413612652570009, -0.0013555109035223722, -0.045945774763822556, -0.0008335960446856916, -0.04003332927823067, -0.0025107169058173895, 0.017433423548936844, -0.019698940217494965, -0.00919329933822155, 0.003400001209229231, -0.014877811074256897, -0.006831084378063679, 0.0002939818368759006, -0.015830986201763153, -0.03309864178299904, -0.0011500257533043623, -0.027794016525149345, -0.00038355778087861836, 0.03995044529438019, -0.02242032252252102, 0.012646830640733242, -0.0021670907735824585, 0.010146473534405231, 0.021107980981469154, -0.0058502815663814545, 0.010844087228178978, 0.0332367829978466, -0.022157855331897736, -0.002650585025548935, 0.054703932255506516, -2.3446236809832044e-05, 0.041608139872550964, 0.012570852413773537, 0.0076461173593997955, 0.01404205709695816, -0.02718619629740715, -0.006917422637343407, -0.005946980323642492, -0.003225598018616438, -0.03517076000571251, 0.003343018004670739, -0.007266229018568993, -0.0051250397227704525, -0.020873140543699265, 0.009669886901974678, 0.0252384040504694, 0.02342875488102436, 0.020168621093034744, 0.004631184972822666, 0.011341395787894726, 0.003674556966871023, 0.005121586378663778, -0.015278421342372894, 0.025141704827547073, 0.031081778928637505, -0.0012406810419633985, -0.028429467231035233, -0.011700563132762909, -0.033347293734550476, -0.017032815143465996, -0.001592941116541624, -0.013758867047727108, 0.01375196035951376, -0.005984968971461058, 0.006009143777191639, 0.029645109549164772, -0.014118034392595291, 0.03472870588302612, 0.0030529212672263384, 0.009628443978726864, -0.014518643729388714, 0.022876188158988953, 0.018510926514863968, 0.013938451185822487, -0.010353685356676579, 0.02780783176422119, 0.011624584905803204, 0.013296093791723251, -0.013151045888662338, 0.013910822570323944, 0.026302091777324677, 0.0445919930934906, 0.010436570271849632, 0.02018243446946144, 0.009593908675014973, 0.018289899453520775, 0.021425705403089523, 0.024160902947187424, -0.008668363094329834, -0.006451196037232876, 0.005891724023967981, 0.02425760217010975, 0.0027904529124498367, -0.035889092832803726, -0.010830272920429707, 0.00856475718319416, 0.0017613008385524154, -0.007549418602138758, -0.02660600282251835, 0.023304427042603493, -0.005028340965509415, 0.0217158030718565, 0.00837135873734951, 0.03376171737909317, 0.015015952289104462, 0.009980704635381699, 0.0022309808991849422, 0.030971266329288483, -0.008012191392481327, 0.0006026411429047585, -0.000951447756960988, -0.0049178279004991055, -0.011742005124688148, 0.0002609574294183403, -0.02476872317492962, 0.016383551061153412, 0.0014565266901627183, -0.002859523519873619, -0.012805692851543427, -0.0003861479344777763, 0.02182631567120552, 0.026495490223169327, 0.005111225880682468, -0.0020030478481203318, 0.035308901220560074, -0.018400412052869797, -0.014877811074256897, 0.031109407544136047, 0.015361305326223373, -0.00017418747302144766, 0.003353378502652049, -0.009849470108747482, 0.023691222071647644, -0.011976845562458038, 0.02761443331837654, -0.003978467546403408, -0.00719715841114521, -0.010478013195097446, 0.008889388293027878, 0.005670697893947363, 0.019146375358104706, 0.034756336361169815, -0.030612098053097725, -0.020831698551774025, -0.0032791276462376118, 0.011956124566495419, -0.004531032405793667, -0.023414939641952515, -0.027158567681908607, 0.02355308085680008, -0.02789071574807167, -0.009110414423048496, -0.01768207922577858, -0.0023000515066087246, -0.027752574533224106, 0.00603331858292222, -0.0004219783004373312, -0.022047340869903564, 0.007349113933742046, 0.018248457461595535, -0.003436263417825103, 0.00942813977599144, -0.011583142913877964, 0.029313569888472557, -0.007121180649846792, 0.0019529717974364758, -0.008122704923152924, -0.010982228443026543, 0.022751862183213234, 0.07990089058876038, 0.044232822954654694, 0.002938954858109355, 0.019160190597176552, -0.031744856387376785, -0.006430474575608969, -0.027130939066410065, -0.015402748249471188, 0.04119371622800827, -0.00235703494399786, 0.015775728970766068, -0.003885222366079688, -0.0003134079452138394, -0.0177925918251276, 0.0025832410901784897, 0.002313865814357996, 0.006040225736796856, -0.002386389998719096, 0.020569229498505592, 0.011058205738663673, -0.009946169331669807, 0.0008033776539377868, 0.029783250764012337, 0.0240642037242651, 0.028374210000038147, 0.026357349008321762, 0.03008716180920601, 0.0051250397227704525, 0.027200009673833847, -0.0299213919788599, -0.0332367829978466, 0.012729715555906296, -0.014808740466833115, 0.018248457461595535, -0.011223975569009781, 0.004948909860104322, 0.016369735822081566, -0.01768207922577858, 0.010540176182985306, -0.0004044948145747185, 0.021370450034737587, 0.03434191271662712, 0.00703138904646039, -0.012736622244119644, 0.030225303024053574, -0.012550131417810917, 0.012688272632658482, 0.02210259810090065, -0.0252384040504694, -0.00893773790448904, 0.035308901220560074, -0.00486947875469923, -0.02331824041903019, 0.007756630424410105, -0.006831084378063679, 0.010726667009294033, -0.012190964072942734, -0.016411179676651955, -0.0041131554171442986, -0.024754909798502922, -0.018607625737786293, -0.037298135459423065, 0.00719715841114521, -0.013358257710933685, -0.022406509146094322, -0.010850993916392326, -0.028567608445882797, -0.00659969775006175, -0.019546985626220703, 0.018925350159406662, -0.029368827119469643, -0.01928451657295227, -0.04249224439263344, 0.02413327433168888, 0.012667551636695862, 0.011120369657874107, 0.004392891190946102, 0.006651500705629587, 0.01439431682229042, 0.014463387429714203, -0.019975222647190094, -0.024741096422076225, 0.011120369657874107, -0.018870092928409576, -0.015734286978840828, 0.010947693139314651, -0.01998903788626194, 0.0075148832984268665, -0.007590861059725285, -0.007901678793132305, 0.002529711462557316, -0.014269989915192127, -0.015582331456243992, 0.02370503731071949, 0.004489590413868427, 0.004372170194983482, -0.0004038472834508866, 0.013579283840954304, 0.00603331858292222, -0.030722610652446747, -0.013717425055801868, -0.018510926514863968, -0.0006117066950537264, 0.004410158842802048, 0.015665216371417046, -0.014055871404707432, -0.019077304750680923, -0.0024623675271868706, 0.0041131554171442986, -0.01357237622141838, 0.0240642037242651, -0.02726908028125763, -0.014159477315843105, -0.0065893372520804405, -0.016991373151540756, 0.012218592688441277, 0.016176339238882065, 0.02436811476945877, 0.003477705642580986, -0.007659931667149067, -0.007811887189745903, -0.013309908099472523, 0.02077644318342209, -0.011493351310491562, -0.010332964360713959, 0.011099648661911488, 0.0069692255929112434, -0.002812901046127081, -0.044149938970804214, 0.021342821419239044, -0.0042547499760985374, 0.013593098148703575, 0.005698326043784618, -0.032463189214468, -0.019864710047841072, -0.022972887381911278, 0.012018287554383278, 0.0058951773680746555, -0.028028856962919235, -0.012308384291827679, -0.027103310450911522, 0.02628827840089798, 0.0006833674269728363, -0.025942925363779068, 0.020251505076885223, -0.036358773708343506, -0.03113703429698944, -0.0029942113906145096, -0.0100704962387681, 0.023774107918143272, 0.0008331643184646964, -0.0001949086581589654, -0.04591814801096916, 0.008143425919115543, -0.015582331456243992, -0.023566896095871925, 0.0021739976946264505, -0.027959786355495453, 0.031661972403526306, 0.02925831452012062, 0.03180011361837387, -0.003916304092854261, 0.02460295520722866, 0.019395029172301292, 0.0015394113725051284, -0.019491728395223618, 0.005905537866055965, 0.007062471006065607, -0.016065826639533043, 0.012854042463004589, 0.023566896095871925, 0.015154093503952026, -0.0047313375398516655, 0.0012743528932332993, 0.030529214069247246, 0.01815175823867321, -0.007922399789094925, -0.02398131974041462, -0.04370788857340813, -0.04100031778216362, -0.005587812978774309, -0.004334181547164917, -0.0010697311954572797, 0.004796954337507486, -0.04741007462143898, -0.0008361861691810191, 0.008944645524024963, 0.013233930803835392, 0.022323623299598694, -0.007742816582322121, 0.03180011361837387, -0.0009937535505741835, -0.0007925853715278208, -0.006357950624078512, 0.04326583445072174, -0.028429467231035233, -0.03892819955945015, -0.036911338567733765, -0.012481060810387135, 0.017502494156360626, -0.017198584973812103, 0.010022146627306938, 0.00132270238827914, -0.027020426467061043, 0.011410466395318508, 0.022738046944141388, -0.03666268289089203, -0.014352874830365181, 0.00968370120972395, -0.021384263411164284, 0.017005186527967453, -0.039176855236291885, -0.026619816198945045, 0.017101885750889778, -0.014028242789208889, 0.013600004836916924, 0.004600103013217449, 0.010022146627306938, -0.018676696345210075, -0.01616252399981022, 0.04624968767166138, -0.019823268055915833, 0.011921589262783527, 0.0005504065193235874, 0.027282893657684326, -0.0022879643365740776, 0.014725855551660061, 0.0015843072906136513, -0.023525452241301537, -0.002104927087202668, 0.012626109644770622, 0.013061254285275936, 0.0391215980052948, 0.0027628247626125813, -0.0068069095723330975, 0.00946958176791668, -0.008889388293027878, -0.01572047360241413, -0.027835460379719734, 0.022793304175138474, 0.002641951199620962, 0.010084310546517372, -0.03583383560180664, -0.0018165572546422482, -0.03506024554371834, 0.01347567792981863, -0.006257798057049513, -0.004102794919162989, 0.007777351886034012, -0.009959983639419079, 0.0010464198421686888, 0.0363864004611969, -0.025929110124707222, 0.03138568997383118, 0.015734286978840828, -0.026384975761175156, -0.010844087228178978, 0.015112651512026787, -0.012101172469556332, 0.009331440553069115, -0.0264126043766737, 0.022240739315748215, -0.016880858689546585, 0.019229261204600334, 0.00778425857424736, 0.010174102149903774, 0.006392485927790403, -0.017088070511817932, -0.01496069598942995, 0.026454046368598938, -0.008730526082217693, -0.028429467231035233, 0.017281468957662582, -0.01177654042840004, 0.001675825915299356, -0.022116411477327347, -0.004976538009941578, 0.007777351886034012, -0.019077304750680923, -0.004506858065724373, 0.00428237859159708, 0.0015031493967399001, -0.016811788082122803, 0.006848352029919624, 0.013565469533205032, -0.013434235006570816, 0.004420519806444645, -0.009690607897937298, 0.022157855331897736, -0.030722610652446747, -0.014877811074256897, 0.0010023873765021563, 0.007328392472118139, -0.000682935758959502, -0.010132660157978535, -0.0007563232793472707, -0.014214733615517616, 0.02769731916487217, -0.01398680079728365, 0.02526603266596794, 0.012570852413773537, -0.004365263041108847, -0.0287610050290823, -0.002857796847820282, -0.004748605191707611, -0.00235703494399786, 0.01646643504500389, -0.017626821994781494, -0.036828454583883286, -0.0025936018209904432, 0.015748100355267525, 0.004651906434446573, -0.020873140543699265, 0.0062198094092309475, 0.004845303948968649, 0.017847847193479538, 0.006672221701592207, 0.009621537290513515, -0.0017276288708671927, 0.0042443894781172276, -0.008419708348810673, 0.010553990490734577, 0.019146375358104706, -0.031081778928637505, 0.02421615831553936, -0.007480347994714975, -0.01201138086616993, -0.01764063537120819, -0.02460295520722866, -0.016176339238882065, 0.009441954083740711, -0.0003600305935833603, -0.0033740997314453125, -0.016811788082122803, -0.0030062987934798002, -0.022282181307673454, -0.012025195173919201, 0.013897008262574673, -0.011355210095643997, -0.014504830352962017, 0.022157855331897736, 0.0012294569751247764, 0.013738146051764488, 0.04920591041445732, -0.01001523993909359, -0.024354299530386925, -0.01650787889957428, -0.007487255148589611, -0.03232504799962044, -0.018552368506789207, -0.0008348911069333553, 0.021370450034737587, 0.026454046368598938, -0.03318152576684952, -0.007549418602138758, -0.026274463161826134, -0.04428808018565178, -0.024658210575580597, -0.017847847193479538, 0.007922399789094925, 0.01846948266029358, -0.0002618208236526698, -0.0057639433071017265, 0.013289187103509903, -0.019823268055915833, 0.004033724311739206, -0.024672025814652443, -0.001617979258298874, 0.019546985626220703, -0.021301379427313805, 0.0195607990026474, 0.0055809058248996735, -0.04268564283847809, 0.0005517015815712512, 0.021094167605042458, 4.7405108489328995e-05, 0.006195634603500366, 0.013289187103509903, 0.006119656842201948, -0.0028059938922524452, 0.005384054966270924, 0.0036572893150150776, 0.011451908387243748, 0.013213209807872772, 0.015250792726874352, -0.02155003324151039, -0.003146166680380702, -0.011134183965623379, 0.0140834990888834, -0.013931543566286564, 0.02393987588584423, 0.007217879872769117, 0.0040578986518085, 0.011969937942922115, -0.014111127704381943, 0.007245508022606373, -0.0043618096970021725, -0.018566181883215904, -2.7385422072256915e-05, 0.013600004836916924, 0.011002949438989162, 0.009628443978726864, 0.008364452049136162, -0.004962724167853594, 0.014656784944236279, 0.015637587755918503, -0.004054445307701826, -0.010277708061039448, 0.017391981557011604, 0.009241648949682713, 0.0012968009104952216, -0.009220927953720093, 0.005308077204972506, -0.0024312858004122972, -0.02034820429980755, 0.00702102854847908, 0.004310006741434336, -0.032104022800922394, 0.01087171584367752, -0.01768207922577858, 0.0017457598587498069, 0.004948909860104322, -0.027876902371644974, -0.0022154401522129774, 0.014069684781134129, -0.0014530731132254004, -0.008198682218790054, -0.015609960071742535, -0.017861662432551384, -0.0222959965467453, -0.03453531116247177, -0.01791691780090332, -0.0030408340971916914, -0.0037436275742948055, -0.02022387646138668, -0.007556325756013393, 0.20898006856441498, 0.006354496814310551, -0.015609960071742535, 0.01873195171356201, -0.00571214035153389, -0.002155003370717168, 0.0269927978515625, 0.017944546416401863, 0.004682987928390503, 0.011223975569009781, 0.01238436158746481, 0.03525364398956299, -0.002360488520935178, 0.00020472962933126837, 0.0015255972975865006, -0.014725855551660061, -0.04873622953891754, -0.008032913319766521, -0.005000712815672159, 0.010747388005256653, 0.020942211151123047, 0.0005767396651208401, 0.01230147760361433, -0.004261657129973173, 0.019546985626220703, -0.020154805853962898, -0.005076690576970577, 0.0032031498849391937, 0.023497825488448143, 0.011327581480145454, -0.03378934785723686, -0.0020427636336535215, 0.01795836165547371, -0.016839416697621346, 0.02295907400548458, -0.002443373203277588, 0.010125752538442612, -0.016245409846305847, -0.005781210958957672, 0.006178366951644421, 0.0053633335046470165, -0.012329105287790298, 0.022641349583864212, -0.004679534584283829, 0.01089243683964014, 0.029562225565314293, -0.003227324690669775, 0.0052873557433485985, 0.018124129623174667, -0.008012191392481327, -0.013675983063876629, 0.018124129623174667, 0.028001228347420692, 0.015015952289104462, 0.003947386052459478, 0.03370646387338638, 0.0035744046326726675, -0.005795024801045656, -0.0064822775311768055, 0.013254651799798012, -0.014601528644561768, 0.016949929296970367, 0.0010939058847725391, -0.0032083303667604923, -0.019546985626220703, 0.0031617076601833105, -0.03304338455200195, -0.022862374782562256, -0.001659421599470079, -0.02824988402426243, 0.01678416132926941, -0.013862472958862782, -0.011900867335498333, 0.008999901823699474, -0.008972273208200932, -0.020127179101109505, 0.029203057289123535, 0.005370240658521652, 0.02503119222819805, 0.026744144037365913, -0.018593810498714447, -0.008129611611366272, -0.02953459694981575, -0.02554231509566307, -0.021840129047632217, -0.014850183390080929, 0.028539979830384254, 0.002780092414468527, -0.007266229018568993, -0.0050697834230959415, -0.011769633740186691, 0.009276184253394604, -0.026702702045440674, 0.005498021375387907, 0.0034120886120945215, 0.017198584973812103, 0.01009121723473072, -0.000888420850969851, 0.003674556966871023, -0.022447951138019562, -0.007583953905850649, 0.0712256208062172, 0.004365263041108847, 0.0205416027456522, -0.028139369562268257, -0.01759919337928295, 0.004102794919162989, 0.018483297899365425, -0.001407313859090209, -0.017322910949587822, 0.01181107573211193, -0.026550745591521263, -0.002683393657207489, -0.011072020046412945, 0.007577046751976013, 0.03826512396335602, -0.014187105000019073, -0.015609960071742535, 0.016259223222732544, -0.01210807915776968, 0.030777867883443832, -0.0297279953956604, -0.012177149765193462, 0.01293001975864172, -0.01322011649608612, -0.039287369698286057, -0.009289998561143875, -0.001856272923760116, -0.008758154697716236, 0.0024122914765030146, 0.026454046368598938, -0.021052725613117218, 0.013510213233530521, -0.016383551061153412, -0.002609142567962408, -0.003999189008027315, 0.006081668194383383, -0.0016136623453348875, -0.011120369657874107, -0.0010610973695293069, 0.011044392362236977, 0.01467059925198555, 0.0024312858004122972, -0.006796549074351788, 0.009476489387452602, -0.02632972039282322, 0.014214733615517616, 8.714769501239061e-05, -0.03262896090745926, -0.027324337512254715, 0.0008573390659876168, -0.004658813122659922, 0.012508689425885677, -0.007487255148589611, 0.037381019443273544, -0.012605387717485428, -0.022931445389986038, -0.012204778380692005, 0.017309097573161125, -0.001690503442659974, -0.045006416738033295, 0.0005681058391928673, 0.03978467732667923, 0.015167907811701298, -0.017032815143465996, 0.020099550485610962, -0.17648924887180328, 0.03867954760789871, 0.006699849851429462, -0.004265110939741135, -0.0008866940625011921, 0.014325246214866638, 0.010775016620755196, 0.00032808544347062707, -0.030722610652446747, -0.0008219403680413961, 0.02030676230788231, -0.0021014735102653503, -0.029230685904622078, -0.031081778928637505, -0.01787547580897808, 0.016259223222732544, -0.033347293734550476, 0.019077304750680923, 0.015913870185613632, 0.02011336386203766, 0.006423567421734333, -0.02562519907951355, -0.008143425919115543, 0.0054703932255506516, 0.009932355023920536, -0.0023743025958538055, -0.03160671517252922, 0.03392748907208443, 0.0020496705546975136, 0.006910515483468771, -0.013358257710933685, -0.02820844016969204, 0.01519553642719984, 0.01087862253189087, 0.006357950624078512, 0.017654450610280037, -0.014615342952311039, 0.01234291959553957, 0.00032225760514847934, 0.0535987988114357, 0.02186775766313076, 0.004082073457539082, 0.019146375358104706, 0.010250079445540905, -0.013323722407221794, 0.0035778579767793417, 0.014974510297179222, 0.006226716097444296, -0.02554231509566307, -0.023760292679071426, -0.006658407859504223, -0.0001054945751093328, -0.010229358449578285, 0.0010844087228178978, 0.004738244693726301, 0.020873140543699265, -0.000994616886600852, 0.022558463737368584, -0.017737334594130516, -0.009220927953720093, 0.014642971567809582, -0.00157481012865901, -0.013192487880587578, -0.013102696277201176, -0.010187916457653046, -0.037104737013578415, -0.009614630602300167, 0.006254344712942839, -0.0264126043766737, 0.0077082812786102295, -0.005104318726807833, -0.016563134267926216, 0.007528697606176138, 0.013917730189859867, 0.022627534344792366, 0.012025195173919201, 0.0042443894781172276, 0.029092544689774513, 0.016646020114421844, 0.00257288059219718, 0.0063199615105986595, 0.009745864197611809, -0.014159477315843105, -0.018317528069019318, -0.024285228922963142, -0.004120062571018934, -0.005218285135924816, 0.010464198887348175, 0.019892338663339615, 0.002037583151832223, 0.013344443403184414, -0.02895440347492695, -0.009649165906012058, -0.020748814567923546, 0.0007956072222441435, 0.01569284498691559, 0.018718138337135315, -0.028705749660730362, 0.010118845850229263, -0.01736435294151306, -0.014256175607442856, 0.02041727490723133, 0.006603151094168425, 0.017350539565086365, 0.0010852720588445663, 0.019975222647190094, -0.018911534920334816, 0.018870092928409576, 0.028346581384539604, -0.027255266904830933, -0.017046628519892693, -0.0002853479818440974, 0.03580620884895325, 0.015361305326223373, -0.01001523993909359, 0.0160381980240345, -0.01380721665918827, -0.005442764610052109, 0.007425091695040464, -0.008737433701753616, 0.06796549260616302, -0.022475579753518105, -0.03387223184108734, 0.005104318726807833, 0.004465415608137846, 0.00647537037730217, -0.10769490897655487, -0.024547697976231575, -0.005090504419058561, 0.022323623299598694, -0.02319391444325447, 0.007659931667149067, -0.008419708348810673, 0.018635252490639687, 0.003059828421100974, 0.029479339718818665, 0.006592790596187115, -0.02041727490723133, -0.0025538860354572535, 0.004320367239415646, 0.04937167838215828, -0.01588624157011509, 0.00023721440811641514, -0.0006678265635855496, -0.017088070511817932, 0.043956540524959564, -0.0020462169777601957, -0.021853944286704063, -0.0013865926302969456, -0.01462915726006031, -0.01971275545656681, -0.00703138904646039, -0.044149938970804214, -0.008468057960271835, -0.0021739976946264505, 0.006029865238815546, -0.001052463543601334, -0.0075010694563388824, 0.023926062509417534, -0.016811788082122803, -0.014491016045212746, -0.017322910949587822, -0.02045871689915657, -0.011030578054487705, -0.004044084809720516, -0.03959127888083458, 0.009559373371303082, 0.019270703196525574, 1.479891943745315e-05, -0.016010569408535957, 0.02898203209042549, -0.01646643504500389, -0.006451196037232876, 0.003919757436960936, -0.018207015469670296, -0.01036749966442585, -0.012280755676329136, -0.006430474575608969, -0.01877339370548725, -0.01881483756005764, 0.020762627944350243, -0.009690607897937298, 0.019353587180376053, -0.0014746576780453324, -0.021619103848934174, -0.002291417680680752, -0.03273947164416313, 0.012764250859618187, -0.0236635934561491, 0.023774107918143272, 0.020914584398269653, 0.004572474863380194, -0.029368827119469643, -0.01118944026529789, -0.006803455762565136, -0.013600004836916924, -0.019616056233644485, 0.01371051836758852, -0.019685126841068268, 0.008875574916601181, -0.02750392071902752, 0.003567497478798032, -0.007922399789094925, -0.019781826063990593, 0.032104022800922394, -0.007494162302464247, -0.016176339238882065, -0.023718850687146187, 0.03771255910396576, -0.01635592244565487, 0.024312857538461685, 0.019809452816843987, -0.007000307086855173, -0.0032963952980935574, 0.038900572806596756, -0.03329204022884369, 0.017861662432551384, 0.006658407859504223, 0.008751247078180313, -0.031910624355077744, -0.002184358425438404, 0.01772352121770382, 0.010975321754813194, -0.007901678793132305, 0.029700366780161858, -0.003978467546403408, -0.016880858689546585, 0.0047865938395261765, -0.043403975665569305, 0.0355851836502552, -0.013917730189859867, 0.009020622819662094, -0.00663077924400568, -0.021729616448283195, 0.0048314896412193775, -0.010243172757327557, -0.006306147668510675, 0.020900769159197807, -0.031634341925382614, 0.024589139968156815, -0.04177391156554222, 0.0010783650213852525, -0.032131653279066086, -0.008205589838325977, 0.021107980981469154, -0.005791571456938982, 0.025169333443045616, -0.004085527267307043, -0.018497111275792122, -0.027048055082559586, 0.008689084090292454, 0.01689467392861843, -0.015527075156569481, 0.028539979830384254, -0.026730328798294067, 0.0291478019207716, 0.017847847193479538, -0.0022016260772943497, 0.034203771501779556, -0.028056485578417778, 0.018414227291941643, 0.023221543058753014, -0.01060234010219574, -0.005332252010703087, 0.0005409092991612852, 0.02597055211663246, 0.004672627430409193, 0.015858614817261696, -0.027365779504179955, -0.016245409846305847, -0.004023363348096609, -0.012978369370102882, -0.024437185376882553, -0.013372072018682957, -0.005902084521949291, 0.00314962025731802, 0.011659120209515095, 0.01612108200788498, 0.02261372096836567, 0.0071764374151825905, -0.00046493159607052803, -0.015789544209837914, 0.009041343815624714, -0.014587714336812496, 0.017502494156360626, 0.003836872987449169, 0.020831698551774025, -0.004354902543127537, 0.04257512837648392, -0.003937025088816881, 0.02824988402426243, -0.013855566270649433, 0.01206663716584444, -0.01064378209412098, -0.03732576221227646, 0.02124612219631672, -0.002282783854752779, -0.0228900033980608, -0.025873854756355286, -0.017668263986706734, 0.0036262075882405043, 0.012860949151217937, -0.007342206779867411, 0.013358257710933685, 0.004237482324242592, -0.00047097529750317335, -0.022986702620983124, 0.015872428193688393, 0.0029890311416238546, 0.0034518041647970676, -0.015789544209837914, 0.01853855326771736, -0.0017535303486511111, -0.0007101322989910841, -0.0240642037242651, 0.005221738945692778, 0.014725855551660061, 0.004285831935703754, -0.018676696345210075, 0.001868360210210085, -0.0075010694563388824, -0.0030719158239662647, 0.01030533667653799, 0.036994222551584244, -0.003393094055354595, -0.0015791270416229963, 0.031054150313138962, 0.012128801085054874, -0.0017509402241557837, 0.0029907578136771917, -0.010788830928504467, -0.024105645716190338, -0.009614630602300167, 0.0016171159222722054, -0.04721667617559433, -0.0224893931299448, 0.00808126199990511, 0.030529214069247246, 0.00747344084084034, -0.01353784091770649, 0.051029372960329056, 0.014118034392595291, -0.022972887381911278, 0.012460339814424515, -0.005460032261908054, -0.01639736443758011, -0.038983456790447235, 0.048294175416231155, 0.013703610748052597, 0.013848659582436085, 0.043403975665569305, -0.003135806182399392, 0.0189667921513319, 0.03461819514632225, 0.011852518655359745, -0.017309097573161125, -0.025597572326660156, -0.012708993628621101, 0.012467246502637863, -0.0016533778980374336, -0.0019650592003017664, -0.0021446426399052143, -0.008751247078180313, -0.015734286978840828, -0.011037484742701054, 0.006123110186308622, 0.014781112782657146, 0.07443050295114517, 0.03970179334282875, -0.0297279953956604, 0.010954599827528, -0.015637587755918503, 0.02159147523343563, 0.019077304750680923, 0.00661005824804306, 0.009959983639419079, -0.031081778928637505, 0.012743528932332993, -0.01234291959553957, -0.009538652375340462, -0.03630351647734642, -0.011396652087569237, -0.012018287554383278, -0.0001647981844143942, 0.034480053931474686, -0.012149522081017494, -0.026233021169900894, 0.0010041141649708152, -0.011237789876759052, 0.0026195032987743616, 0.009911634027957916, -0.037187620997428894, -0.015444190241396427, 0.011258510872721672, 0.01232219859957695, 0.004997259471565485, -0.046525970101356506, 0.012349826283752918, 0.0013391065876930952, -0.01005668193101883, -0.021467149257659912, -0.002229254227131605, 0.0075010694563388824, -0.019533170387148857, -0.020486345514655113, -0.006468463689088821, 0.01206663716584444, 0.01834515668451786, 0.01580335758626461, -0.017226211726665497, -0.02265516296029091, -0.021107980981469154, -0.010491827502846718, -0.006834537722170353, 0.009020622819662094, -0.017088070511817932], "8d9c8637-f5a0-4cb9-9ebb-6ff3c9a0a57b": [-0.011573145166039467, -0.024183310568332672, 0.002424899023026228, -0.0072660548612475395, -0.021901866421103477, 0.007777651771903038, 0.008697142824530602, -0.011006241664290428, -0.030115067958831787, -0.049085624516010284, 0.019896961748600006, 0.033848341554403305, 0.008088757283985615, 0.008634922094643116, 0.0020429298747330904, 0.008987508714199066, 0.02512354403734207, -0.022593213245272636, 0.0019046604866161942, -0.019786344841122627, -0.038881342858076096, -0.003750556381419301, -0.03644780442118645, 0.025828717276453972, -0.026782775297760963, -0.006291255820542574, 0.03412487730383873, -0.014808648265898228, 0.0025095888413488865, 0.02322925254702568, 0.008240854367613792, 0.005993976723402739, -0.0058003999292850494, 0.004562888760119677, 0.008593440987169743, -0.017739959061145782, 0.012651646509766579, -0.01628813147544861, 0.015112841501832008, -0.023422829806804657, 0.023201599717140198, 0.01014205813407898, 0.003778210375458002, 0.020463865250349045, -0.017394285649061203, 0.04363781213760376, 0.010522298514842987, -0.0019928072579205036, -0.025731928646564484, -0.007957401685416698, -0.00015490489022340626, 0.033958956599235535, -0.014200263656675816, 0.03711149841547012, 0.00171540433075279, -0.005852250847965479, 0.007404324132949114, 0.017684651538729668, 0.0035535225179046392, -0.026893390342593193, 0.0065574245527386665, -0.008420604281127453, -0.0059524960815906525, 0.008005796000361443, -0.021279655396938324, -0.035590533167123795, 0.01923326775431633, -0.01863870956003666, 0.012693127617239952, -0.024252446368336678, 0.02452898398041725, 0.03393130004405975, 0.014587418176233768, 0.004970783367753029, 0.014200263656675816, -7.307752093765885e-05, -0.01389607135206461, -0.014020513743162155, -0.009865518659353256, 0.003546609077602625, 0.00785369984805584, -0.006633472628891468, -0.004742639139294624, 0.005046831909567118, 0.02382381074130535, 0.02544156275689602, 0.006847789976745844, -0.005064115393906832, -0.009222566150128841, -0.008946027606725693, 0.0010931921424344182, 0.006547054275870323, 0.0153617262840271, 0.024307753890752792, -0.0034688326995819807, 0.00512979319319129, 0.0067406315356493, 0.004379682242870331, 0.0009168987162411213, -0.008164806291460991, 0.012423502281308174, 0.001972066704183817, -0.03625422716140747, -0.003909566439688206, -0.028096335008740425, -0.0005487565067596734, 0.009996875189244747, -0.002379961311817169, 0.003982157446444035, -0.00980329792946577, -0.028428180143237114, 0.022081617265939713, -0.04164673015475273, 0.009457624517381191, 0.01143487635999918, -0.003823147853836417, -0.010584519244730473, -0.0001881759671960026, 0.015112841501832008, -0.0016203441191464663, 0.020975463092327118, -0.012672387063503265, 0.03357180207967758, -0.015112841501832008, 0.02087867446243763, 0.02545538917183876, 0.005351024214178324, -0.01584566943347454, -0.0059455824084579945, -0.017090093344449997, -0.004154994152486324, 0.012257578782737255, -0.014877783134579659, 0.008372209966182709, -0.023284560069441795, 0.027598565444350243, -0.01804415136575699, -0.004300177097320557, -0.01478099450469017, -0.027239063754677773, 0.002348850714042783, 0.04728812351822853, -0.00024305161787196994, -0.0043623982928693295, 0.034899186342954636, 0.015320245176553726, 0.013799282722175121, 0.022551732137799263, -0.0035604361910372972, -0.00129022600594908, -0.0021984828636050224, -0.023837637156248093, -0.011725242249667645, 0.0019807086791843176, 0.008835412561893463, 0.011317347176373005, 0.0037609266582876444, 0.035120416432619095, -0.010155884549021721, -0.025510696694254875, 0.011476357467472553, 0.0007151118479669094, -0.003639940870925784, 0.006865073926746845, 0.007321362849324942, 0.016357265412807465, 0.017518728971481323, -0.005478923674672842, -0.004970783367753029, 0.0036537679843604565, 0.0032631568610668182, 0.02628500573337078, -0.02251025289297104, 0.013419041410088539, 0.008911460638046265, 0.015057533979415894, 0.010093663819134235, 0.00038931466406211257, -0.008157892152667046, -0.04289115592837334, 0.010619087144732475, -0.009367749094963074, 0.017338978126645088, 0.02111373096704483, -0.026658333837985992, 0.0034774744417518377, 0.017435766756534576, 0.010985501110553741, 0.0184174794703722, -0.020353250205516815, 0.009526759386062622, 0.02204013615846634, -0.026644505560398102, -0.003230317961424589, -0.6247562766075134, -0.019205614924430847, -0.011033895425498486, -0.01689651608467102, 0.0024231704883277416, 0.019426845014095306, 0.02015967294573784, -0.0017525642178952694, -0.033378224819898605, 0.026243524625897408, 0.0062705157324671745, 0.02392059937119484, -0.015002225525677204, -0.03221676126122475, -0.019440671429038048, -0.01818242110311985, 0.0014933091588318348, -0.005319913849234581, 0.012582511641085148, 0.010404769331216812, -0.0007626419537700713, 0.017408112064003944, -0.006664583459496498, -0.002310826675966382, 0.00821319967508316, -0.0128936180844903, 0.0054201590828597546, 0.009824038483202457, 0.007528766989707947, 0.02699017897248268, -0.009893172420561314, 0.012181530706584454, 0.0033271065913140774, -0.008932201191782951, 0.05033004656434059, 0.012451156042516232, -0.011987953446805477, 0.02451515756547451, 0.027252892032265663, 0.032548606395721436, -0.023173945024609566, 0.0008391221635974944, 0.010017615742981434, 0.0036503111477941275, -0.011891164816915989, 0.014545937068760395, -0.009913912974298, -0.006467549595981836, -0.0062463185749948025, -0.0032285896595567465, 0.003916479647159576, -0.024542812258005142, -0.012243752367794514, -0.0059697795659303665, 0.02192952111363411, -0.007611728273332119, -0.0011562774889171124, -0.023409003391861916, 0.010957847349345684, 0.013508916832506657, -0.000684001250192523, -0.004773749504238367, -0.0007972092716954648, -0.0429464653134346, -0.03738803416490555, 0.0003897467686329037, 0.0006809766055084765, 0.012464983388781548, 0.006360390689224005, 9.370990301249549e-05, -0.003124887589365244, 0.01688268966972828, -0.0012219555210322142, -0.02169446274638176, 0.005748548544943333, 0.01261707954108715, 0.017518728971481323, -0.025247985497117043, 0.021431751549243927, 0.02109990455210209, 0.005458183120936155, -0.024183310568332672, -0.0037436429411172867, -0.017090093344449997, 0.016951823607087135, 0.004113513510674238, -0.008918373845517635, 0.00956132635474205, 0.010743529535830021, -0.001748243230395019, -0.0014682477340102196, 0.013502003625035286, 0.00048696741578169167, -0.0172421894967556, 0.014905436895787716, 0.0368349589407444, -0.01631578430533409, -0.01389607135206461, -0.0006230763392522931, -0.03603299707174301, -0.02440454252064228, 0.006132245995104313, 0.01483630295842886, 0.010197365656495094, 0.034650303423404694, 0.04466100409626961, -0.010688222013413906, -0.00014205016486812383, 0.030806414783000946, -0.024141831323504448, -0.008752450346946716, -0.0036261139903217554, -0.02603612095117569, -0.025026755407452583, 0.0264924094080925, -0.03697322681546211, 0.022441117092967033, 0.012748435139656067, -0.005482380278408527, 0.0025942788925021887, -0.0007656665984541178, -0.00034308084286749363, 0.03216145187616348, -0.003982157446444035, -0.004165364429354668, 0.02755708433687687, -0.004659677390009165, -0.012437328696250916, 0.020339423790574074, 0.0037470997776836157, 0.00809567142277956, -0.021735943853855133, 0.018002670258283615, -0.005205841269344091, 0.03299107030034065, 0.013460522517561913, 0.02158384770154953, -0.02311863750219345, 0.015914803370833397, -0.05019177868962288, 0.007044823840260506, -0.011946473270654678, 0.005603366065770388, -0.012043261900544167, -0.0141864363104105, -0.027169929817318916, -0.008240854367613792, 0.0184174794703722, -0.0030609380919486284, 0.0018268839921802282, -0.025137370452284813, -0.010266500525176525, -0.003475746139883995, 0.020201154053211212, 0.002822423353791237, 0.0034221666865050793, 0.005098682828247547, -0.044605694711208344, 0.001415532547980547, -0.03163602948188782, -0.0022071246057748795, 0.01667528599500656, -0.01049464475363493, -0.016799727454781532, -0.00037851236993446946, -0.0021725574042648077, -0.009651201777160168, -0.013571137562394142, -0.013273858465254307, -0.04048527032136917, 0.006443352438509464, -0.017159227281808853, -0.005641390103846788, 0.043803732842206955, -0.02978322096168995, 0.004040922038257122, 0.0036295708268880844, 0.0035033999010920525, 0.015264937654137611, -0.0016315784305334091, 0.013419041410088539, 0.020132018253207207, -0.016951823607087135, -0.015223456546664238, 0.04272523149847984, 0.004213758744299412, 0.044384464621543884, 0.009830951690673828, 0.010529211722314358, 0.00234712241217494, -0.011863511055707932, -0.008468998596072197, 0.006505573634058237, 0.010114403441548347, -0.02452898398041725, 0.0021034227684140205, -0.001036156085319817, 0.0007215932128019631, -0.012748435139656067, 0.022441117092967033, 0.03459499403834343, 0.009423056617379189, 0.013170156627893448, 0.007176179904490709, 0.0023039132356643677, 0.008220113813877106, 0.015264937654137611, -0.020906327292323112, 0.034290801733732224, 0.025165023282170296, -0.0008023944101296365, -0.00665766978636384, -0.018099458888173103, -0.03180195391178131, -0.011538578197360039, -0.0025942788925021887, -0.009526759386062622, 0.02087867446243763, -0.003244144842028618, 0.00683050649240613, 0.027875103056430817, -0.017214534804224968, 0.02934075891971588, -0.0010707234032452106, -0.0034809312783181667, 0.0016454054275527596, 0.015887150540947914, 0.0062463185749948025, -0.0010162797989323735, -0.008773190900683403, 0.010549952276051044, 0.013280772604048252, 0.010335634462535381, -0.021749770268797874, 0.023367522284388542, 0.03163602948188782, 0.04446742683649063, 0.012596338987350464, 0.02840052731335163, -0.005942125804722309, 0.015223456546664238, 0.008752450346946716, 0.017767613753676414, -0.012008694000542164, 0.0019513263832777739, 0.016066899523139, 0.030999990180134773, 0.00880084466189146, -0.027363507077097893, 0.001918487367220223, 0.009326268918812275, 0.004445360042154789, -0.002564896596595645, -0.03481622412800789, 0.02180507779121399, 0.0018130569951608777, 0.026644505560398102, -0.00416882149875164, 0.030308643355965614, 0.002072312170639634, 0.008524306118488312, 0.012948925606906414, 0.04361015558242798, -0.0060873087495565414, -0.0002933903015218675, 0.005399418529123068, 0.003100690431892872, -0.0037609266582876444, -0.000209888574318029, -0.010480817407369614, 0.011911905370652676, -0.00648483308032155, -0.011884251609444618, -0.007051737513393164, -0.0010983772808685899, 0.027584737166762352, 0.019316229969263077, -0.00019130863074678928, 0.006166813429445028, 0.04070650041103363, -0.008372209966182709, -0.01478099450469017, 0.029119526967406273, 0.023035675287246704, 0.003525868756696582, -0.006899641361087561, -0.006298169493675232, 0.009222566150128841, 0.005669043865054846, 0.029285451397299767, -0.009851692244410515, -0.012983493506908417, -0.00997613463550806, 0.015292591415345669, -0.003729816060513258, 0.0061045922338962555, 0.029479028657078743, -0.018389824777841568, -0.01735280454158783, 0.008309988304972649, 0.005876448005437851, 0.00104220537468791, -0.03141479939222336, -0.021625328809022903, 0.02510971575975418, -0.012105482630431652, -0.009022075682878494, -0.030668145045638084, -0.012146963737905025, -0.03169133886694908, 0.01278991624712944, -0.018915249034762383, -0.021763598546385765, 0.010197365656495094, 0.018486613407731056, -0.00418956158682704, 0.0003212602168787271, -0.006291255820542574, 0.011669933795928955, -0.022344328463077545, -0.0014924448914825916, -0.004635480232536793, -0.009049729444086552, 0.011379568837583065, 0.08500800281763077, 0.0330740325152874, -0.005081398878246546, 0.014933091588318348, -0.022441117092967033, -0.018265383318066597, -0.037941113114356995, -0.012928185053169727, 0.03517572581768036, 0.0015373824862763286, 0.014324706047773361, -0.001768983667716384, 0.008704056032001972, -0.011815116740763187, -0.005911015439778566, 0.0014526924351230264, -0.003657224588096142, -0.005541144870221615, 0.013260032050311565, 0.015638265758752823, -0.008952940814197063, -0.0009091210667975247, 0.020076710730791092, 0.02779214270412922, 0.02159767411649227, 0.029064219444990158, 0.02262086793780327, 0.014615071937441826, 0.01783674769103527, -0.028345219790935516, -0.032548606395721436, 0.013045714236795902, -0.01144178956747055, 0.0195927694439888, -0.0032735271379351616, -0.0016436770092695951, 0.008475911803543568, -0.009512932039797306, -0.004835971165448427, 0.002891557989642024, 0.019136479124426842, 0.027999546378850937, 0.023962080478668213, -0.022551732137799263, 0.028787681832909584, -0.03796876594424248, 0.012271406129002571, 0.028538797050714493, -0.016716765239834785, -0.018942901864647865, 0.0326039157807827, 0.005174730904400349, -0.020851019769906998, -0.0048152306117117405, 0.007943575270473957, -0.005997433792799711, -0.006916924845427275, -0.007169266231358051, -0.002642673207446933, -0.0271975826472044, -0.014960745349526405, -0.03622657433152199, 0.009754903614521027, -0.01594245806336403, -0.018362171947956085, -0.0017975016962736845, -0.024363061413168907, -0.012630905956029892, -0.02570427395403385, 0.01594245806336403, -0.012928185053169727, -0.016495535150170326, -0.04120426997542381, 0.030446913093328476, 0.005147077143192291, 0.011552405543625355, 0.008773190900683403, 0.010439337231218815, 0.010487731546163559, 0.002739461837336421, -0.01278991624712944, -0.008157892152667046, 0.010370202362537384, -0.02428009919822216, -0.007915920577943325, 0.006647299509495497, -0.0179473627358675, 0.013695579953491688, -0.0008736895397305489, -0.00851047970354557, -0.010798837058246136, -0.007978142239153385, -0.022468771785497665, 0.015983939170837402, 0.013080282136797905, 0.010066009126603603, 0.014089647680521011, 0.006633472628891468, 0.010356375016272068, -0.018694017082452774, 0.0008343691588379443, -0.019260922446846962, -0.020145846530795097, 0.0019029320683330297, 0.021030770614743233, -0.006916924845427275, -0.013052627444267273, -0.0005971508217044175, 0.0053959619253873825, -0.016827382147312164, 0.02206779085099697, -0.02241346426308155, -0.019440671429038048, -0.02251025289297104, -0.011358828283846378, 0.004611283075064421, 0.013363733887672424, 0.017283670604228973, 0.009824038483202457, -0.009478365071117878, -0.012859051115810871, -0.020450038835406303, 0.024957619607448578, -0.0022192231845110655, 0.00033314275788143277, 0.020698923617601395, 0.01713157445192337, -0.005537687800824642, -0.05240408703684807, 0.016039246693253517, 0.006256688851863146, 0.0065263137221336365, 0.005741635337471962, -0.03445672616362572, -0.03332291543483734, -0.01237510796636343, -0.0011355371680110693, 0.0038991959299892187, -0.027294371277093887, -0.004248326178640127, -0.031608376652002335, 0.037692226469516754, 0.01400668639689684, -0.02263469435274601, 0.017145400866866112, -0.04302942380309105, -0.033239953219890594, 0.003439450403675437, 0.004998437594622374, 0.013792368583381176, -0.004006354603916407, 0.00043230780283920467, -0.03492683917284012, 0.0031801953446120024, -0.01108228974044323, -0.03907492011785507, -0.0016687383176758885, -0.028787681832909584, 0.02826225757598877, 0.035009801387786865, 0.042863503098487854, 0.014338532462716103, 0.016232823953032494, 0.02840052731335163, 0.003439450403675437, -0.0026305746287107468, 0.005734721664339304, -0.016799727454781532, -0.008579613640904427, -0.003247601678594947, 0.03459499403834343, 0.014628898352384567, 0.0021155213471502066, 0.006854703649878502, 0.025745755061507225, 0.0059524960815906525, -0.010204278863966465, -0.019330056384205818, -0.044495079666376114, -0.05276358872652054, -0.006716434378176928, -0.0013222007546573877, -0.019177960231900215, -0.007134699262678623, -0.0558055154979229, 0.00709321815520525, 0.02663067914545536, 0.02159767411649227, 0.02591167762875557, 0.013370647095143795, 0.021487059071660042, -0.005852250847965479, -0.009098123759031296, 0.0141864363104105, 0.036060649901628494, -0.02956198900938034, -0.043223001062870026, -0.04269757866859436, -0.024210965260863304, 0.007452718447893858, -0.005171274300664663, -0.004462643526494503, 0.004638937301933765, -0.016149861738085747, -0.004998437594622374, 0.02285592630505562, -0.03271453082561493, -0.021044597029685974, -0.006401871331036091, -0.010128230787813663, 0.004735725466161966, -0.03843888267874718, -0.02027028799057007, 0.012610165402293205, -0.010072923265397549, 0.003774753538891673, 0.003823147853836417, 0.020256461575627327, -0.011573145166039467, -0.0027532887179404497, 0.04361015558242798, -0.012748435139656067, 0.017643170431256294, -0.005693241022527218, 0.022371983155608177, -0.006481376476585865, 0.00533374072983861, 0.013107935898005962, -0.013937551528215408, 0.011407222598791122, 0.012665473856031895, 0.016454054042696953, 0.021044597029685974, -0.006073481868952513, -0.008517392911016941, 0.01641257293522358, -0.003919936250895262, -0.018915249034762383, -0.019081171602010727, 0.01921944133937359, -0.014642725698649883, 0.009678855538368225, -0.03274218365550041, -0.006505573634058237, -0.03929615393280983, 0.02699017897248268, -0.016454054042696953, -0.004358941689133644, 0.005814226809889078, 0.00709321815520525, -0.004320917651057243, 0.029755566269159317, -0.012347454205155373, 0.030585182830691338, 0.0032372314017266035, -0.021639155223965645, -0.0006235084147192538, 0.013847677037119865, -0.009063556790351868, 0.0068270498886704445, -0.020090539008378983, 0.016329612582921982, -0.02545538917183876, 0.00498806731775403, 0.006878900807350874, 0.011310433968901634, 0.015002225525677204, -0.014615071937441826, -0.001679108594544232, 0.02675512246787548, -0.009872432798147202, -0.028303738683462143, 0.030889375135302544, -0.004887822084128857, 0.0019737952388823032, -0.023298388347029686, -0.0028846445493400097, -0.002687610685825348, -0.0035811765119433403, 0.003365130629390478, -0.001562443794682622, 0.004721898585557938, -0.028538797050714493, 0.014974571764469147, 0.018085632473230362, -0.009042816236615181, 8.377178892260417e-05, -0.012976579368114471, 0.010384028777480125, -0.02285592630505562, -0.015375552698969841, 0.0037401863373816013, -0.007445805240422487, 0.011158337816596031, 0.0026927958242595196, -0.013412128202617168, -0.011683761142194271, 0.03094468265771866, -0.008240854367613792, 0.009077383205294609, 0.014808648265898228, -0.011981040239334106, -0.026782775297760963, 0.0036710514687001705, -0.008074930869042873, 0.002065398497506976, 0.030059758573770523, -0.02098928950726986, -0.04095538333058357, -0.01442149467766285, 0.011566231958568096, 0.0037470997776836157, -0.025496870279312134, 0.013432868756353855, 0.01150401122868061, 0.008835412561893463, 0.0065332273952662945, 0.01073661632835865, -0.0014431864256039262, -0.0038577152881771326, 0.00733518972992897, 0.002760202158242464, 0.01675824634730816, -0.019053518772125244, 0.03039160557091236, -0.0086210947483778, -0.007190006785094738, -0.01993844285607338, -0.020698923617601395, -0.018223902210593224, 0.00683050649240613, 0.010591433383524418, 0.0032648853957653046, -0.01561061106622219, -0.00896676816046238, -0.019786344841122627, -0.004804860334843397, 0.009416143409907818, -0.00443153316155076, -0.0038473450113087893, 0.02064361609518528, -0.006598905194550753, 0.014905436895787716, 0.03373772278428078, -0.017435766756534576, -0.01443532109260559, -0.032078493386507034, -0.020021403208374977, -0.034899186342954636, -0.031608376652002335, -0.0024923053570091724, 0.02826225757598877, 0.02111373096704483, -0.026768948882818222, -0.014794821850955486, -0.020339423790574074, -0.057298824191093445, -0.029036566615104675, -0.01760168932378292, 0.012105482630431652, 0.020851019769906998, 0.008351469412446022, 0.0017698478186503053, 0.01043242309242487, -0.018154766410589218, -0.0008875164785422385, -0.02309098280966282, -0.007722343783825636, 0.01161462627351284, -0.031110607087612152, 0.02332604117691517, -0.0007915921160019934, -0.03608830273151398, -0.010252673178911209, 0.014393840916454792, -0.012181530706584454, 0.009367749094963074, 0.013052627444267273, 0.009865518659353256, 0.009747990407049656, 0.017394285649061203, 0.010819577611982822, 0.008724796585738659, 0.011448702774941921, 0.022938886657357216, -0.021030770614743233, 0.01119290478527546, -0.007362843491137028, 0.003733272897079587, -0.018597228452563286, 0.019495980814099312, 0.010411682538688183, 0.004500667564570904, 0.011552405543625355, -0.0034895730204880238, 0.00838603638112545, -0.0037194457836449146, -0.016606150195002556, -0.0012677572667598724, 0.01554147619754076, 0.014338532462716103, 0.014462974853813648, 0.000522398913744837, 0.00388536904938519, 0.0006455450784415007, 0.017919709905982018, 0.012070915661752224, -0.004953499883413315, 0.023077156394720078, -0.001807871856726706, -0.009374662302434444, -0.02300802245736122, 0.010619087144732475, -0.013626446016132832, -0.014559763483703136, -0.012409674935042858, 0.013087195344269276, -0.040651191025972366, 0.007452718447893858, -0.0006455450784415007, -0.002238235203549266, 0.005983606446534395, -0.039130229502916336, 0.011552405543625355, 0.007763824891299009, -0.010059095919132233, -0.001412940095178783, -0.019413018599152565, -0.0017516999505460262, -0.004618196748197079, -0.023879118263721466, -0.011863511055707932, 0.006716434378176928, 0.006906554568558931, -0.01119290478527546, -0.004434989765286446, 0.2048598825931549, 0.014960745349526405, -0.006004347000271082, 0.02159767411649227, 0.00418956158682704, -0.006356934085488319, 0.012776088900864124, 0.011296606622636318, -0.006553967949002981, 0.022081617265939713, 0.0068512470461428165, 0.025054408237338066, -0.005724351387470961, -0.00011882523540407419, 0.00786061305552721, -0.007611728273332119, -0.05522478371858597, -0.012686214409768581, 0.00209478079341352, 0.024459850043058395, 0.014684205874800682, -0.0012487451313063502, 0.011324260383844376, 0.0016540472861379385, 0.026340313255786896, -0.021487059071660042, -0.011462530121207237, 0.006159900221973658, 0.03119356743991375, 0.016371091827750206, -0.006267058663070202, -0.01108228974044323, 0.02086484618484974, -0.0015244197566062212, 0.022496424615383148, 0.0034774744417518377, -0.0040754894725978374, -0.009630461223423481, -0.010757355950772762, -0.0015900976723060012, 0.024833178147673607, -0.000555237929802388, 0.03368241712450981, -0.025966987013816833, 0.018085632473230362, 0.021901866421103477, -0.003646854544058442, -0.0036883351858705282, 0.026298832148313522, -0.0005522132851183414, -0.008939114399254322, 0.021666809916496277, 0.023547273129224777, 0.011061549186706543, -0.0068512470461428165, 0.026782775297760963, -0.007141612470149994, -0.017905881628394127, -0.010266500525176525, 0.011586972512304783, -0.005033004563301802, 0.007667036261409521, 0.005306086968630552, 0.0018631796119734645, -0.01628813147544861, 0.004027095157653093, -0.026450928300619125, -0.008323815651237965, -0.0012928185751661658, -0.018680190667510033, -0.0065505108796060085, -0.011448702774941921, -0.00956132635474205, 0.0054201590828597546, -0.0046631344594061375, -0.013412128202617168, 0.024017388001084328, 0.008455171249806881, 0.03973861411213875, 0.022081617265939713, -0.02311863750219345, -0.0036295708268880844, -0.03854949772357941, -0.01324620470404625, -0.02660302445292473, -0.012700040824711323, 0.02027028799057007, -0.009616633877158165, -0.002604649169370532, -0.00313698616810143, -0.006547054275870323, 0.011497097089886665, -0.028649412095546722, -0.001592690241523087, 0.016343438997864723, 0.0210031159222126, 0.0022520623169839382, -0.0004891278804279864, -0.006547054275870323, -0.02426627278327942, -0.003968330565840006, 0.07582692056894302, -0.007065564393997192, 0.006792482454329729, -0.010715875774621964, -0.017767613753676414, 0.004842884372919798, 0.022482598200440407, -0.012416589073836803, -0.020201154053211212, 0.010377115570008755, -0.02369936928153038, 0.0039717876352369785, -0.0006144344806671143, 0.0035638927947729826, 0.03639249503612518, -0.011600799858570099, -0.013266945257782936, 0.01597011089324951, -0.02274530939757824, 0.017173055559396744, -0.030170375481247902, -0.0022797160781919956, 0.016910342499613762, -0.02909187413752079, -0.034677956253290176, -0.0141864363104105, -0.0009428242337889969, -0.01467037945985794, -0.015251110307872295, 0.043333619832992554, -0.018790805712342262, -0.0009964036289602518, -0.0080334497615695, -0.00404783571138978, 0.020671268925070763, 0.023478137329220772, -0.01401359960436821, -0.023243078961968422, -0.0009030717774294317, 0.01700713112950325, 0.011732155457139015, 0.002469836501404643, -0.01583184115588665, 0.013716320507228374, -0.020837193354964256, 0.009291701018810272, -0.004549061879515648, -0.040291693061590195, -0.027750661596655846, 0.00021086077322252095, -0.008372209966182709, -0.0006243725656531751, -0.008648748509585857, 0.02780596911907196, -0.0025960071943700314, -0.020214980468153954, -0.01144178956747055, 0.019731037318706512, 0.014988399110734463, -0.043001770973205566, 0.004721898585557938, 0.03802407532930374, 0.019081171602010727, -0.005444356240332127, 0.023049503564834595, -0.17687417566776276, 0.04618196561932564, -0.00997613463550806, 0.0016384919872507453, 0.0005293124122545123, 0.0005841880338266492, 0.0037401863373816013, -0.005378677975386381, -0.027723006904125214, -0.0017905882559716702, 0.023381348699331284, -0.0037367295008152723, -0.04084476828575134, -0.03241033852100372, -0.006346563808619976, 0.0016488621477037668, -0.031110607087612152, 0.023782329633831978, 0.02404504269361496, 0.02379615791141987, 0.012948925606906414, -0.0141864363104105, -0.011635366827249527, 0.0027671155985444784, 0.013688666746020317, -0.0037470997776836157, -0.020228806883096695, 0.02708696760237217, 0.006118419114500284, -0.0023090983740985394, 0.006519400514662266, -0.023616407066583633, 0.009851692244410515, 0.02332604117691517, 0.017643170431256294, 0.007100131828337908, -0.013266945257782936, 0.0177123062312603, -0.0042517827823758125, 0.04457804188132286, 0.021196693181991577, 0.002409343607723713, 0.0042586964555084705, 0.02089250087738037, -0.02172211743891239, 0.019731037318706512, 0.020795712247490883, 0.012623992748558521, -0.01804415136575699, -0.017864402383565903, -0.010404769331216812, -0.007756911218166351, -0.006346563808619976, 0.00071079091867432, -0.01478099450469017, 0.007625555153936148, 0.0006131381960585713, 0.022690001875162125, -0.023077156394720078, -0.017753785476088524, 0.010964760556817055, -0.0013455337611958385, -0.015347898937761784, 0.00222613662481308, -0.018016498535871506, -0.03727741912007332, -0.011455616913735867, 0.007300622295588255, -0.02721141092479229, 0.006795939058065414, 0.005520404316484928, -0.005323370452970266, -0.0021777425426989794, 0.01957894116640091, 0.030059758573770523, 0.006757915019989014, 0.010840318165719509, 0.010218106210231781, -0.003157726489007473, 0.00913960486650467, 0.019827825948596, 0.017684651538729668, -0.020851019769906998, -0.02065744251012802, -0.025137370452284813, 0.007556420750916004, 0.004835971165448427, 0.007673949468880892, 0.025648966431617737, -0.00656779482960701, 0.03890899941325188, -0.024252446368336678, 0.0062463185749948025, -0.008565787225961685, -0.007577160838991404, 0.015486168675124645, 0.01937153749167919, -0.009754903614521027, 0.0069860597141087055, -0.00768086314201355, -0.011891164816915989, 0.017643170431256294, 0.004936216399073601, 0.011068462394177914, 0.004379682242870331, 0.018818460404872894, -0.009665028192102909, 0.00837912317365408, 0.023063329979777336, -0.023837637156248093, -0.021542366594076157, 0.00750802643597126, 0.04305708035826683, 0.007006799802184105, -0.002870817668735981, 0.011096116155385971, -0.0033478469122201204, -0.013342993333935738, 0.0011951657943427563, -0.018348343670368195, 0.06686706095933914, -0.011497097089886665, -0.04001515358686447, -0.002348850714042783, -0.001959968125447631, -0.004797946661710739, -0.10928810387849808, -0.011600799858570099, -0.0033685872331261635, 0.019993750378489494, -0.01655084267258644, 0.002556254854425788, -0.013923725113272667, 0.013156330212950706, 0.005987063515931368, 0.03163602948188782, -0.015347898937761784, -0.016564669087529182, -0.005966322962194681, 0.0017136759124696255, 0.03553522750735283, -0.019399192184209824, -0.003181923646479845, -0.016218995675444603, -0.01185659784823656, 0.04314004257321358, 0.003985614515841007, -0.024487504735589027, -0.014200263656675816, -0.01722836308181286, -0.03285279870033264, -0.010176625102758408, -0.03774753585457802, -0.00019757395784836262, 0.009098123759031296, 0.015499995090067387, 0.005274976138025522, -0.006211751140654087, 0.035479918122291565, -0.015555303543806076, 0.0006978281890042126, -0.007452718447893858, -0.025524524971842766, -0.023298388347029686, -0.005803856533020735, -0.032327376306056976, 0.012070915661752224, 0.029368411749601364, -0.01220227126032114, -0.028704719617962837, 0.033710069954395294, -0.013190897181630135, -0.018611056730151176, 0.018002670258283615, -0.012278319336473942, 0.002371319569647312, -0.020007576793432236, -0.006329279858618975, -0.016218995675444603, -0.020021403208374977, 0.02580106258392334, -0.01561061106622219, 0.030087413266301155, 0.008420604281127453, -0.01349508948624134, -0.007397410925477743, -0.019081171602010727, 0.011033895425498486, -0.020975463092327118, 0.028677064925432205, 0.036281879991292953, -0.002514773979783058, -0.01675824634730816, -0.015154321677982807, -0.012499550357460976, -0.018320690840482712, -0.02672746777534485, 0.00021388541790656745, -0.016163688153028488, -0.0023989733308553696, -0.04325065761804581, -0.004428076557815075, -0.0035189553163945675, -0.012347454205155373, 0.03343353047966957, -0.004193018190562725, -0.016979478299617767, -0.02567662112414837, 0.01992461457848549, -0.02652006410062313, 0.015679745003581047, 0.021915694698691368, -0.012229925021529198, -0.0027757573407143354, 0.024252446368336678, -0.04667973518371582, 0.02592550590634346, 0.02053300105035305, 0.0005617192946374416, -0.017338978126645088, -0.003550065914168954, 0.019177960231900215, 0.008717883378267288, -0.008939114399254322, 0.017629344016313553, -0.004390052054077387, -0.011918818578124046, 0.0034653758630156517, -0.03202318400144577, 0.030446913093328476, -0.010038355365395546, 0.0034532772842794657, -0.004006354603916407, -0.016066899523139, -0.007494199555367231, -0.014131128787994385, -0.010729702189564705, 0.019413018599152565, -0.022081617265939713, 0.02509588934481144, -0.02675512246787548, -0.013432868756353855, -0.03592238202691078, -0.006370760966092348, 0.0029952600598335266, -0.02311863750219345, 0.019993750378489494, 0.0017905882559716702, -0.023132463917136192, -0.021777424961328506, 0.011490183882415295, 0.009893172420561314, 0.000884491833858192, 0.01793353632092476, -0.039019614458084106, 0.023533444851636887, 0.014366187155246735, -0.009948480874300003, 0.036309532821178436, -0.018154766410589218, 0.0032113059423863888, 0.015527649782598019, -0.008697142824530602, -0.010183538310229778, -0.02321542613208294, 0.03531399369239807, 0.019413018599152565, 0.0141864363104105, -0.027294371277093887, -0.017325151711702347, 0.002170829102396965, -0.007950488477945328, -0.02310481108725071, -0.019039690494537354, -0.0177123062312603, -0.02310481108725071, 0.01769847795367241, 0.021252000704407692, 0.028787681832909584, -0.006681866943836212, -0.004559432156383991, -0.019731037318706512, -0.006509030237793922, -0.012942012399435043, 0.01143487635999918, 0.005409788805991411, 0.0019513263832777739, -0.0019029320683330297, 0.044633351266384125, -0.0039337631314992905, 0.01772613264620304, -0.01401359960436821, -0.001819970435462892, -0.009879346005618572, -0.041010692715644836, 0.012319800443947315, 0.000371166825061664, -0.030308643355965614, -0.011656107380986214, -0.012153876945376396, 0.009160345420241356, 0.018251555040478706, -0.01237510796636343, 0.009160345420241356, 0.0007846786174923182, 0.0013783726608380675, -0.012160790152847767, 0.013937551528215408, 0.007231487426906824, -0.008220113813877106, -0.016149861738085747, 0.017449593171477318, -0.00674754474312067, -0.006813223008066416, -0.029617296531796455, 0.023768503218889236, 0.0141864363104105, 0.006028544157743454, -0.012637820094823837, 0.0008840597583912313, -0.015389380045235157, -0.007086304947733879, 0.014324706047773361, 0.017173055559396744, 0.0019737952388823032, -0.0010914637241512537, 0.008545046672224998, 0.0177123062312603, 0.002200211165472865, 0.012437328696250916, -0.004044378641992807, -0.019039690494537354, -0.01202943455427885, -0.001901203766465187, -0.03592238202691078, -0.029866183176636696, 0.011510924436151981, 0.029285451397299767, -0.0015667646657675505, -0.015306418761610985, 0.05417393520474434, 0.009547499008476734, -0.012541031464934349, 0.018514268100261688, -0.0123820211738348, -0.01142796315252781, -0.029644951224327087, 0.033848341554403305, 0.011324260383844376, 0.011054635979235172, 0.033599454909563065, -0.012105482630431652, 0.02017349936068058, 0.02450133115053177, 0.0058107697404921055, -0.03517572581768036, -0.020076710730791092, -0.0040996866300702095, 0.01874932460486889, 0.005776202771812677, -0.013674840331077576, -0.005727808456867933, 0.001337756053544581, -0.018265383318066597, -0.004334744531661272, -0.0017387372208759189, -0.001433680416084826, 0.07942192256450653, 0.03968330845236778, -0.012582511641085148, 0.007342102937400341, -0.010522298514842987, 0.02028411626815796, 0.007075934670865536, 0.006360390689224005, 0.009049729444086552, -0.026575371623039246, 0.010957847349345684, -0.008835412561893463, -0.014124215580523014, -0.02931310422718525, -0.009464537724852562, -0.007653209380805492, -0.007708516903221607, 0.030778760090470314, 0.0017672552494332194, -0.012126223184168339, 0.00931935478001833, -0.008109497837722301, -0.00021312925673555583, 0.011669933795928955, -0.029838528484106064, -0.023588752374053, 0.008780104108154774, 0.00012973554839845747, -0.015499995090067387, -0.0485878549516201, 0.005769289098680019, -0.0019737952388823032, -0.01119290478527546, -0.024929966777563095, -0.006218664348125458, -0.0027653872966766357, -0.016011592000722885, -0.021984828636050224, -0.0092087397351861, 0.011421049013733864, 0.014027426950633526, 0.02592550590634346, -0.018859941512346268, -0.027045486494898796, -0.017878228798508644, -0.006014717277139425, -0.0030211855191737413, 0.012852136977016926, -0.01641257293522358], "b377b0d1-5a35-4764-9e06-e16b1c538b62": [0.01731562800705433, -0.005414636339992285, 0.006805070210248232, -0.00514495512470603, -0.013575117103755474, 0.002106664702296257, -0.0022239936515688896, -0.005796392913907766, -0.03269796073436737, -0.05065802112221718, 0.02489471808075905, 0.029419757425785065, -0.0011662832694128156, -0.008412649855017662, 0.0026863040402531624, 0.0015165184158831835, 0.03454720228910446, -0.019543124362826347, -0.00534809147939086, -0.012356298044323921, -0.021098168566823006, -0.011564766988158226, -0.010514060966670513, 0.018142184242606163, -0.02748645842075348, -0.009505383670330048, 0.029223626479506493, -0.021672554314136505, 0.006017040926963091, 0.015018085949122906, 0.014569784514605999, -0.009666492231190205, -0.012314270250499249, 0.018842654302716255, -0.014807945117354393, -0.012783585116267204, 0.0036704649683088064, -0.01059111300855875, 0.02549712359905243, 0.006388290319591761, 0.005880448967218399, 0.01057710312306881, 0.008980031125247478, 0.013364975340664387, -0.011985048651695251, 0.029980134218931198, -0.01062613632529974, 0.003708990989252925, -0.029251644387841225, 0.007221850100904703, 0.023059485480189323, 0.018002089112997055, -0.017469732090830803, 0.026631886139512062, -0.0070607420057058334, 0.000492080464027822, -0.009351280517876148, 0.002402613637968898, 0.007214845158159733, -0.015424358658492565, -0.00035942887188866735, -0.008846941404044628, -0.005631782114505768, 0.005554730538278818, -0.01054207980632782, -0.015802612528204918, -0.002316805999726057, 0.0015068870270624757, 0.014962048269808292, -0.0189267098903656, 0.01734364777803421, 0.03199749067425728, 0.02128029055893421, 0.012440354563295841, 0.04300888255238533, -0.006227182224392891, -0.011452691629529, -0.014345633797347546, 0.011543752625584602, 0.0010603370610624552, 0.004700156394392252, -0.027934759855270386, -0.008783899247646332, 0.006206167861819267, 0.019038785248994827, 0.013322947546839714, 0.017861995846033096, -0.011095451191067696, -0.01417752169072628, -0.010584107600152493, 0.0009167406824417412, 0.026295660063624382, 0.022513119503855705, 0.01643303595483303, 0.008223522454500198, 0.020467745140194893, 0.012083115056157112, 0.013736224733293056, 0.003020778764039278, -0.011683846823871136, 0.007474019192159176, 0.022373024374246597, -0.0390021912753582, -0.011592785827815533, -0.020229585468769073, -0.01710548810660839, -0.01354009285569191, -0.008433664217591286, 0.02377396635711193, -0.020481755957007408, -0.03168928250670433, -0.0011872973991557956, -0.009813590906560421, -0.009806585498154163, -0.012587453238666058, -0.018884683027863503, -0.0057928902097046375, -0.00560026103630662, 0.01458379440009594, -0.01741369441151619, 0.019893359392881393, 0.005775378551334143, 0.01313382014632225, -0.01037396676838398, 0.01676926203072071, 0.029784001410007477, -0.003176633268594742, -0.01983732171356678, 0.0032869575079530478, -0.003978671971708536, 0.02566523663699627, 0.006822581868618727, 0.001230201218277216, 0.012832618318498135, -0.006552900653332472, 0.021574489772319794, -0.02677197940647602, -0.010072764940559864, -0.008895974606275558, 0.012622476555407047, -0.009862623177468777, 0.02849513664841652, -0.0029594874940812588, 0.015074123628437519, 0.01660114899277687, 0.03003617189824581, 0.022415053099393845, 0.0021259277127683163, -0.017329638823866844, 0.009953685104846954, 0.010226868093013763, -0.014976057223975658, -0.025987451896071434, 0.025104859843850136, 0.007092263083904982, 0.017735911533236504, 0.0040347096510231495, 0.014268582686781883, -0.001486748456954956, -0.025693254545331, -0.011739884503185749, 0.005999529268592596, -0.011074437759816647, -0.004885781090706587, -0.0017082722624763846, 0.028677258640527725, 0.04331709071993828, -0.011711865663528442, -0.009442341513931751, -0.0020436225458979607, -0.006934657227247953, 0.02482467144727707, -0.008146471343934536, 0.0015016334364190698, 0.015018085949122906, 0.01288165058940649, 0.0265338197350502, -0.012559434399008751, -0.017861995846033096, -0.038273703306913376, 0.0034305539447814226, 0.019220909103751183, 0.009820595383644104, 0.005341087002307177, -0.010717197321355343, 0.00984861422330141, 0.035107579082250595, 0.013315943069756031, 0.013329952023923397, -0.0021504440810531378, 0.0016426031943410635, 0.016152847558259964, -0.012839622795581818, -0.020481755957007408, -0.6374841332435608, -0.029307682067155838, -0.013315943069756031, 0.0051729739643633366, 0.002213486470282078, 0.008552744053304195, 0.013869314454495907, 0.004693151917308569, -0.018366334959864616, 0.01741369441151619, -0.012902664951980114, 0.029587870463728905, -0.017833976075053215, -0.026309669017791748, -0.008244536817073822, -0.010023731738328934, 0.005341087002307177, 0.016348980367183685, -0.002206481760367751, -0.0028544170781970024, -0.022274959832429886, -0.0006037179264239967, -0.014121484011411667, -0.003719497937709093, -0.008027390576899052, 0.0010796000715345144, 0.023423731327056885, -0.005722843110561371, -0.0014569784980267286, 0.00968050118535757, -0.020313642919063568, 0.017525769770145416, 0.000249980395892635, -0.00547417625784874, 0.051386509090662, 0.010717197321355343, -0.009785572066903114, 0.01623690500855446, 0.024558493867516518, 0.035752009600400925, -0.01683930866420269, 0.02192472480237484, 0.003434056183323264, -0.003884108504280448, -0.028453107923269272, 0.017091479152441025, 0.004637114237993956, -0.0003248431603424251, -0.010969366878271103, -0.004588081035763025, 0.005239518824964762, -0.019753266125917435, -0.01986534148454666, 0.016348980367183685, 0.010976371355354786, -0.012482383288443089, 0.011606794781982899, -0.010703188367187977, 0.008433664217591286, 0.024236276745796204, 0.0015033846721053123, -0.02535702846944332, -0.016447044909000397, -0.03799351677298546, -0.04048718884587288, 0.01943104900419712, -0.004798222333192825, -0.0012529664672911167, -0.0031608727294951677, 0.013617144897580147, -0.0006623823428526521, 0.017049450427293777, -0.0010323183378204703, -0.010261891409754753, -0.0009097359725274146, 0.01475190743803978, 0.013119811192154884, 0.004560062661767006, -0.008643805049359798, 0.004843752831220627, 0.017960062250494957, -0.014107474125921726, 0.020061472430825233, -0.03516361489892006, 0.027556506916880608, 0.0041677989065647125, -0.01001672726124525, 0.008048404939472675, 0.013526083901524544, 0.005708834156394005, 0.016391007229685783, 0.02902749367058277, 0.001942054252140224, -0.026127547025680542, -0.012503396719694138, 0.04578274488449097, 0.0002874117635656148, -0.023689908906817436, -0.005775378551334143, -0.02902749367058277, -0.011634813621640205, -0.020565811544656754, 0.018366334959864616, 0.021308310329914093, 0.0274164117872715, 0.024670567363500595, 0.0016320961294695735, 0.018534447997808456, 0.017021430656313896, -0.013210872188210487, 0.012146157212555408, -0.007761212065815926, -0.018030108883976936, -0.034771353006362915, 0.015200207941234112, -0.02969994582235813, 0.01409346517175436, 0.009981703944504261, 0.011522738263010979, -0.021672554314136505, 0.0015795608051121235, -0.01643303595483303, 0.043765392154455185, -0.0033114738762378693, -0.009330266155302525, 0.009008049964904785, -0.001326515804976225, -0.004973339848220348, 0.02108415961265564, -0.010317929089069366, 0.021784629672765732, -0.007943334989249706, 0.004398954100906849, -0.015956716611981392, 0.03101683035492897, 0.009029063396155834, 0.028607212007045746, -0.008293570019304752, 0.015396339818835258, -0.04113162308931351, -0.0006435571704059839, -0.007488028611987829, -0.016965392976999283, -0.003232670947909355, -0.036956820636987686, -0.040963511914014816, 0.0010463276412338018, 0.010983375832438469, -0.0019227913580834866, 0.0016846313374117017, -0.014058440923690796, -0.027262309566140175, -0.025539152324199677, 0.04040313512086868, -0.016110818833112717, -0.00708876084536314, -0.0064548347145318985, -0.05051792785525322, -0.005372608080506325, -0.027052167803049088, -0.01906680501997471, 0.002957736374810338, -0.020327651873230934, -0.029727963730692863, 0.014976057223975658, -0.0014561029383912683, 0.010240877978503704, 0.022583166137337685, -0.006451332475990057, -0.03667663037776947, -0.01010078378021717, -0.018702561035752296, -0.0029980135150253773, 0.02701013907790184, -0.01815619319677353, -0.005200992804020643, -0.003279952798038721, 0.0070257182233035564, 0.01025488693267107, -0.0010857291053980589, 0.005754364654421806, 0.025749292224645615, 0.004945321008563042, -0.008762884885072708, 0.0395345501601696, 0.003498849691823125, 0.05102226510643959, 0.010885310359299183, -0.007474019192159176, 0.001570804975926876, -0.007438995875418186, 0.0046966541558504105, -0.01923491805791855, 0.008671823889017105, -0.023830004036426544, -0.003260689787566662, -0.03513559699058533, -0.009204180911183357, 0.006819079630076885, 0.02333967387676239, 0.013392994180321693, 0.013442027382552624, 0.011711865663528442, 0.014121484011411667, 0.015816621482372284, 0.016951384022831917, 0.00963146798312664, -0.020803971216082573, 0.03152116760611534, 0.020327651873230934, 0.016447044909000397, -0.021602507680654526, -0.008482696488499641, -0.03866596892476082, -0.0025672242045402527, -0.011319601908326149, -0.011529742740094662, 0.025244953110814095, -0.009267223998904228, -0.0033499998971819878, 0.021434394642710686, -0.005421641282737255, 0.029139569029211998, -0.0023483270779252052, 0.003926136530935764, -0.01616685651242733, 0.0139953987672925, 0.033622581511735916, 0.017287610098719597, 0.006829586811363697, 0.024264294654130936, 0.005831416230648756, 0.024880709126591682, 0.005498692858964205, 0.023731937631964684, 0.025006793439388275, 0.05455263704061508, -0.015172189101576805, -0.0021574487909674644, 0.0006623823428526521, 0.009022058919072151, 0.014695869758725166, 0.016124829649925232, -0.009582435712218285, -0.002148692961782217, 0.002152195433154702, 0.034911446273326874, 0.0031100886408239603, -0.021952742710709572, -0.007214845158159733, -0.006024045404046774, 0.02192472480237484, -0.02502080425620079, -0.014976057223975658, 0.0009902900783345103, -0.010430004447698593, -0.005015368107706308, 0.010521065443754196, 0.024222267791628838, 0.019178880378603935, -0.0002018230443354696, 0.012734551914036274, 0.03830172121524811, -0.018576474860310555, -0.004136277828365564, -0.012993725948035717, -0.016138838604092598, -0.012013067491352558, -0.0022782799787819386, -0.008167484775185585, 0.01643303595483303, -0.0094633549451828, -0.001484121661633253, -0.005579246673732996, -0.012531415559351444, 0.020860008895397186, 0.03535974770784378, -0.008608781732618809, 0.003645948600023985, 0.0206498671323061, -0.028214948251843452, -0.010689178481698036, 0.03535974770784378, 0.019389022141695023, 0.004332409705966711, 0.001206560293212533, -0.02132231928408146, 0.01354009285569191, -0.01069618295878172, 0.01700742170214653, 0.003297464456409216, 0.009218190796673298, -4.504489879764151e-06, 0.016657186672091484, 0.0003110526595264673, 0.02374594658613205, 0.02899947576224804, -0.012391321361064911, -0.02269524149596691, -0.004819236695766449, -0.0038771037943661213, -0.0006685114349238575, -0.035107579082250595, -0.010836277157068253, 0.034267012029886246, -0.02448844537138939, -0.019487086683511734, -0.03317428007721901, -0.004374437965452671, -0.02168656513094902, 0.009687505662441254, -0.0045285411179065704, -0.019515106454491615, 0.017974071204662323, 0.01021986361593008, 0.002115420764312148, -0.012258232571184635, -0.006220177281647921, 0.03429502993822098, -0.02319958060979843, -0.0023045476991683245, -0.0043779402039945126, -0.005897961091250181, 0.0011969287879765034, 0.04113162308931351, 0.0110324090346694, 0.008545739576220512, 0.020117510110139847, -0.017960062250494957, 0.007424986455589533, -0.017063459381461143, 0.002096157753840089, 0.025048822164535522, -0.009337270632386208, 0.012377312406897545, -0.008545739576220512, 0.01018484029918909, -0.01599874533712864, 0.01084328256547451, 0.020495764911174774, -0.0035338732413947582, -0.0028228957671672106, -0.003940145950764418, 0.011900992132723331, 0.004794720094650984, -0.025623207911849022, 0.028971455991268158, 0.03549984097480774, 0.012867641635239124, 0.02307349629700184, 0.02418023906648159, 0.009190171957015991, 0.003645948600023985, -0.027724619954824448, -0.001457854057662189, -0.0016504834638908505, -0.005719340872019529, 0.00339728151448071, -0.0223309975117445, 0.028453107923269272, 0.007347934879362583, -0.03020428493618965, -0.002535702893510461, -0.013238891027867794, -0.004437480121850967, 0.018618503585457802, 0.005036382470279932, -0.012734551914036274, 0.01573256589472294, -0.01619487628340721, 0.011936016380786896, 0.024964766576886177, -0.024502456188201904, -0.014821954071521759, 0.03037239797413349, -0.019809303805232048, -0.023830004036426544, -0.0031888915691524744, -0.013000731356441975, -0.004447987303137779, -0.02919560670852661, -0.011326606385409832, -0.005453162360936403, -0.041439831256866455, -0.019473077729344368, -0.01774992048740387, 0.02482467144727707, -0.026113538071513176, -0.02441839873790741, -0.025118868798017502, -0.018632512539625168, -0.019795294851064682, -0.017693882808089256, 0.010941348038613796, -0.015872659161686897, -0.020691895857453346, -0.04073936119675636, 0.0333423912525177, 0.008797908201813698, -0.004122268408536911, 0.00523601658642292, 0.006108101923018694, -0.009421327151358128, 0.02468457818031311, -0.012188185006380081, 0.0025637217331677675, 0.00044348533265292645, -0.005425143521279097, 0.004465498961508274, 0.01038797665387392, -0.012713538482785225, 0.0076631465926766396, -0.0073269205167889595, -0.015396339818835258, 0.0075860945507884026, -0.02067788690328598, -0.0024463930167257786, 0.014639832079410553, 0.008587767370045185, 0.001154024968855083, 0.011739884503185749, 0.03331437334418297, 0.01703544147312641, -0.00942833162844181, -0.018100155517458916, -0.03182937577366829, -0.014037427492439747, 0.011039413511753082, 0.012398326769471169, -0.007221850100904703, -0.010619131848216057, 0.004619602579623461, -0.01067516952753067, -0.034407105296850204, 0.03367861732840538, -0.03437908738851547, -0.01391134224832058, -0.01375723909586668, -0.02036968059837818, 0.017399685457348824, 0.0006037179264239967, 0.03216560184955597, 0.014877991750836372, -0.012356298044323921, -0.006654468830674887, -0.01667119562625885, 0.02778065763413906, 0.0005603763274848461, -0.003106586402282119, 0.01727360114455223, 0.019248927012085915, -0.014275587163865566, -0.015550442971289158, 0.008055409416556358, -0.009617459028959274, 0.004227338824421167, -0.006594928912818432, -0.004206324927508831, -0.01005175057798624, -0.029643908143043518, -0.008104442618787289, 0.0029927599243819714, -0.02986805886030197, -0.015970725566148758, -0.001146144699305296, 0.005106429569423199, -0.001201306818984449, -0.020285623148083687, 0.009365289472043514, -0.02902749367058277, -0.03485540673136711, 0.01091332919895649, -0.008384631015360355, 0.012615472078323364, -0.0020033454056829214, -0.0034147934056818485, -0.0344911627471447, 0.014233559370040894, 0.0016863825730979443, -0.014513746835291386, 0.009687505662441254, -0.007845268584787846, 0.038581911474466324, 0.034743331372737885, 0.02101411297917366, -0.015746574848890305, 0.012447359040379524, 0.0062797171995043755, 0.013820281252264977, -0.0003449816722422838, 0.0033254832960665226, -0.02283533662557602, -0.022541137412190437, -0.009246209636330605, 0.029251644387841225, 0.002206481760367751, 0.015648508444428444, 0.02482467144727707, -0.0012126894434913993, 0.03499550372362137, 0.014338629320263863, -0.025034813210368156, -0.02933570183813572, -0.05755065008997917, 0.01358912605792284, 0.0020768947433680296, -0.009330266155302525, -0.013294928707182407, -0.03437908738851547, -0.010296914726495743, 0.0036074225790798664, -0.000808605516795069, 0.013477050699293613, -0.030428435653448105, 0.04200020805001259, 0.0032519339583814144, 0.0032309198286384344, 0.0200754813849926, 0.039590589702129364, -0.022036800161004066, -0.027192261070013046, -0.02842509001493454, 0.001994589576497674, -0.0015874410746619105, 0.009484369307756424, 0.019150860607624054, 0.005032879766076803, -0.013932356610894203, -0.009337270632386208, 0.011886983178555965, -0.020972084254026413, -0.021476423367857933, -0.012916674837470055, -0.0071938312612473965, 0.013596130535006523, -0.029812021180987358, -0.0016732487129047513, -0.0027440928388386965, -0.0011260062456130981, 0.0016426031943410635, 0.004938316531479359, 0.029391739517450333, -0.020495764911174774, -0.008496706373989582, 0.03779738396406174, -0.004910297691822052, 0.014401671476662159, -0.0158306322991848, 0.025413066148757935, -0.0014806193066760898, 0.024222267791628838, 0.01018484029918909, -0.007656141649931669, 0.0004776332643814385, 0.007074751425534487, 0.012902664951980114, 0.029111551120877266, -0.006868112366646528, 0.0055337161757051945, 0.013203867711126804, 0.01055608969181776, 0.002836905186995864, -0.01717553474009037, 0.011501723900437355, 0.007113276980817318, 0.02650579996407032, -0.036956820636987686, -0.00555823277682066, -0.025104859843850136, 0.018814636394381523, -0.0036599580198526382, -0.010640145279467106, -0.0022660219110548496, 0.013596130535006523, -0.0027213275898247957, 0.038918137550354004, 0.006486356258392334, 0.03586408495903015, 0.015410349704325199, -0.008734866045415401, -6.867893534945324e-05, 0.008237532339990139, -0.00720784068107605, -0.005239518824964762, -0.022120855748653412, 0.031268998980522156, -0.030568528920412064, 0.003148614428937435, -0.0158306322991848, 0.025371039286255836, 0.012125142849981785, -0.002460402436554432, 0.0035759015008807182, 0.029447777196764946, -0.01367318257689476, -0.02041170746088028, 0.01391134224832058, -0.006941661704331636, 0.022723261266946793, -0.023129533976316452, 0.01026889681816101, -0.009484369307756424, -0.025315001606941223, -0.013617144897580147, 0.03017626516520977, -0.003666962729766965, -0.016208885237574577, -0.014471719041466713, 0.0007048483821563423, -0.020215576514601707, 0.008447673171758652, -0.016615157946944237, 0.012895660474896431, -0.022302977740764618, 0.006671980954706669, -0.006213172804564238, -0.028411081060767174, 0.024558493867516518, -0.006104599684476852, 0.002989257453009486, -0.021532461047172546, 0.019893359392881393, -0.0075790900737047195, 0.04239246994256973, -0.00013670118642039597, 0.0049558281898498535, -0.025174906477332115, 0.010976371355354786, -0.008959016762673855, -0.00506089860573411, 0.019108833745121956, -0.007901306264102459, -0.02986805886030197, -0.019417040050029755, 0.0038315732963383198, 0.009162153117358685, 0.0036109250504523516, 0.0028053841087967157, 0.026309669017791748, 0.005778880789875984, 0.005509200040251017, -0.011781912297010422, -0.007431990932673216, 0.017091479152441025, -0.024600520730018616, 0.014324620366096497, 0.037937477231025696, -0.02573528327047825, 0.028775325044989586, -0.01660114899277687, 0.009638473391532898, -0.01325289998203516, -0.0066649760119616985, -0.011039413511753082, 0.0212242528796196, 0.012727547436952591, -0.001931547187268734, -0.008629795163869858, -0.006097595207393169, -0.006636957172304392, -0.011872973293066025, 0.007635127753019333, -0.008328593336045742, -0.01986534148454666, 0.017623836174607277, 0.0074600097723305225, 0.006262205541133881, 0.019459068775177002, -0.008713851682841778, -0.009288237430155277, -0.015480396337807178, -0.022877363488078117, -0.027318347245454788, -0.01367318257689476, 0.010787244886159897, 0.021336328238248825, 0.016040772199630737, -0.03182937577366829, -0.009862623177468777, -0.020425718277692795, -0.022639203816652298, -0.0019140354124829173, -0.03278201445937157, 0.01916487142443657, 0.024670567363500595, 0.014962048269808292, -0.00045968370977789164, -0.0027878722175955772, -0.026141555979847908, 0.009365289472043514, -0.0327259786427021, -0.010521065443754196, 0.01899675838649273, -0.02509085088968277, 0.051386509090662, 0.0223309975117445, -0.022849345579743385, -0.008881964720785618, 0.02984003908932209, -0.0018317301291972399, -0.004801724571734667, 0.027136223390698433, 0.010415995493531227, -0.019781284034252167, 0.01798808015882969, 0.014443700201809406, 0.014934029430150986, 0.0008554495288990438, -0.008860950358211994, -0.0223309975117445, 0.0059960270300507545, 0.006006533745676279, -0.011802926659584045, -0.028453107923269272, 0.020397698506712914, 0.00729189720004797, -0.004581076558679342, 0.005866439547389746, -0.006258703302592039, -0.01382728572934866, -0.0056598009541630745, -0.027360374107956886, -0.009239205159246922, 0.012685519643127918, 0.018282277509570122, 0.02751447819173336, -5.171441898710327e-06, -0.008573757484555244, 0.020257605239748955, 0.015088132582604885, 0.004458494018763304, 0.01071019284427166, 0.028481127694249153, -0.017049450427293777, -0.0070607420057058334, -0.017021430656313896, -0.00273708812892437, -0.015340302139520645, -0.012713538482785225, -0.0064898584969341755, 0.0066999997943639755, -0.041243698447942734, 0.012146157212555408, 0.010920333676040173, -0.0142615782096982, -0.007256873417645693, -0.024978775531053543, -0.00120393349789083, 0.02441839873790741, 0.002444641664624214, 0.0098836375400424, -0.02219090238213539, -0.004521536640822887, -0.007347934879362583, -0.028341032564640045, -0.023830004036426544, -0.01674124225974083, 0.008881964720785618, -0.012524411082267761, 0.01069618295878172, 0.19579549133777618, 0.00028500391636043787, -0.006433820817619562, 0.0013256402453407645, -0.011214531026780605, -0.024138210341334343, 0.020145529881119728, 0.007600103970617056, -0.008447673171758652, 0.013035754673182964, 0.008104442618787289, 0.023717928677797318, -0.0031451121903955936, -0.0011076187947764993, -0.0005074032815173268, -0.033930785953998566, -0.053908202797174454, -0.012167171575129032, -0.01012179721146822, 0.018282277509570122, 0.00959644466638565, 0.0022607683204114437, 0.007467014715075493, -0.017329638823866844, 0.01751176081597805, 0.001164532033726573, -0.01902477629482746, -0.024572502821683884, 0.016306951642036438, 0.039954833686351776, -0.008160480298101902, -0.0018299790099263191, 0.014779926277697086, 0.019921379163861275, 0.010437008924782276, -0.004651123657822609, 0.015942707657814026, -0.0019770776852965355, -0.0071307891048491, 0.017427703365683556, -0.011361630633473396, 0.008517720736563206, 0.016587140038609505, -0.01592869684100151, 0.02310151420533657, 0.02744443155825138, 0.0029822527430951595, -0.01952911540865898, 0.016110818833112717, 0.023227598518133163, -0.005586251616477966, 0.013421013019979, 0.02950381487607956, 0.02432033233344555, -0.008699842728674412, 0.03516361489892006, 0.00126697588711977, -0.014401671476662159, -0.015214217826724052, 0.014695869758725166, -0.0006453083478845656, 0.0038700990844517946, 0.0006601933855563402, 0.012328279204666615, -0.014541765674948692, 0.0057858857326209545, -0.02916758880019188, -0.01882864534854889, -0.010955356992781162, -0.017553789541125298, 0.01772190071642399, -0.01683930866420269, -0.009974698536098003, 0.01363815926015377, -0.013280918821692467, -0.020089492201805115, 0.008265551179647446, 0.024936746805906296, 0.03353852406144142, 0.027794666588306427, -0.011354625225067139, -0.006885624025017023, -0.0296719279140234, 0.004703659098595381, -0.009204180911183357, -0.025553161278367043, 0.01599874533712864, 0.008692838251590729, -0.009029063396155834, -0.008748875930905342, 0.01054207980632782, 0.015032094903290272, -0.02108415961265564, -0.003821066115051508, -0.013119811192154884, 0.014569784514605999, 0.005092420149594545, 0.012720542959868908, -0.008314583450555801, -0.024362361058592796, 0.004472503438591957, 0.07475420087575912, -0.00576837407425046, 0.028046835213899612, -0.03535974770784378, -0.015172189101576805, -0.0009097359725274146, 0.022443072870373726, -0.01074521616101265, 0.006104599684476852, 0.029251644387841225, -0.020355669781565666, 0.002898196456953883, -0.0062727127224206924, -0.0010331938974559307, 0.03418295830488205, -0.0223309975117445, -0.012706533074378967, 0.04132775589823723, -0.014807945117354393, 0.020117510110139847, 0.0020015942864120007, 0.008636800572276115, 0.008195503614842892, 0.0005227260407991707, -0.02252712845802307, -0.003561892081052065, -0.014485727995634079, -0.0031678774394094944, -0.030148247256875038, 0.043233033269643784, -0.02111217938363552, 0.00675253476947546, 0.014863981865346432, -0.011606794781982899, -0.0010060506174340844, -0.0017056454671546817, 0.005285049322992563, -0.007887297309935093, -0.013568111695349216, 0.004388447385281324, 0.008132461458444595, 0.005757866892963648, -0.0032729480881243944, -0.001400065259076655, -0.029587870463728905, 0.014709878712892532, 0.01748374104499817, -0.042420487850904465, -0.013210872188210487, -0.01293068379163742, -0.014310610480606556, -0.019220909103751183, -0.0223309975117445, 0.019823312759399414, -0.011830945499241352, -0.029587870463728905, -0.019108833745121956, -0.0007652639178559184, 0.037629272788763046, -0.041748035699129105, -0.005897961091250181, 0.0441296361386776, 0.0033149763476103544, -0.008251541294157505, 0.008286564610898495, -0.1807774007320404, 0.03068060427904129, 0.01657312922179699, -0.008713851682841778, -0.006118609104305506, 0.0034935963340103626, 0.010731207206845284, 0.015438367612659931, -0.02607150934636593, 0.0011741635389626026, 0.032277677208185196, -0.018296286463737488, -0.03634040430188179, -0.031745318323373795, 0.0032782016787678003, 0.01700742170214653, -0.0020418711937963963, 0.020453736186027527, 0.02415221929550171, 0.00044326644274406135, 0.012020071968436241, -0.020229585468769073, -0.006468844134360552, 0.0033570046070963144, 0.029111551120877266, 0.014142497442662716, -0.029111551120877266, 0.019010767340660095, 0.012797595001757145, -0.0056107682175934315, 0.007424986455589533, -0.020425718277692795, 0.03003617189824581, 0.0046896496787667274, 0.00663345493376255, 0.000863767578266561, -0.009197176434099674, 0.000955266528762877, 0.0010515812318772078, 0.047575950622558594, 0.011571771465241909, 0.0024884212762117386, 0.02324160933494568, 0.017665864899754524, -0.023647882044315338, 0.0014280840987339616, 0.01909482292830944, 0.0072848922573029995, -0.01409346517175436, -0.032950129359960556, -0.018268268555402756, -0.021882696077227592, -0.006458337418735027, 0.004304390866309404, -0.01309879682958126, 0.009736538864672184, 0.00675953971222043, 0.03216560184955597, -0.011943020857870579, -0.013617144897580147, 0.020453736186027527, -0.01700742170214653, 0.016811290755867958, -0.0020453736651688814, 0.014149502851068974, -0.048612646758556366, -0.013834291137754917, -0.0023045476991683245, -0.02101411297917366, -0.005257030483335257, 0.008391635492444038, -0.015158180147409439, -0.00535509642213583, -0.01141766831278801, 0.013000731356441975, -0.002206481760367751, -0.0019052795832976699, 0.017833976075053215, 0.016292942687869072, 0.01038797665387392, 0.004164296668022871, 0.008552744053304195, -0.009029063396155834, -0.02902749367058277, -0.03000815212726593, -0.003919132053852081, -0.020299632102251053, 0.012041086331009865, 0.009617459028959274, 0.008412649855017662, 0.03673266991972923, -0.015368320979177952, -0.0075370618142187595, -0.02411019243299961, 0.008041400462388992, 0.011669836938381195, 0.029139569029211998, -0.029307682067155838, 0.011557761579751968, 0.004461996722966433, -0.011487714946269989, 0.013981389813125134, 0.0012871143408119678, 0.010535075329244137, 0.004749189596623182, 0.0058769467286765575, -0.01751176081597805, -0.006353266537189484, 0.01808614656329155, -0.02336769364774227, -0.020285623148083687, -0.008160480298101902, 0.04533444717526436, 0.025202926248311996, -0.007698169909417629, 0.03816162794828415, -0.009029063396155834, -0.01772190071642399, 0.010486042127013206, -0.031072868034243584, 0.053936220705509186, -0.013392994180321693, -0.026085518300533295, -0.01590067893266678, 0.0036529533099383116, -0.0012993726413697004, -0.10512660443782806, -0.004665133077651262, 1.7142372598755173e-05, 0.02687004581093788, -0.0098836375400424, 0.006493360735476017, 0.01794605143368244, 0.026015471667051315, 0.004710663575679064, 0.029391739517450333, 0.009414322674274445, -0.0015340301906690001, -0.023956088349223137, -0.0015279011568054557, 0.015606480650603771, -0.0021469418425112963, -0.002374594798311591, -0.008818922564387321, -0.018870672211050987, 0.027304336428642273, 0.01021986361593008, -0.021966751664876938, -0.009120125323534012, -0.021378356963396072, -0.010486042127013206, -0.012048090808093548, -0.03252984583377838, 0.022316986694931984, 0.02701013907790184, 0.03070862405002117, -0.002243256429210305, -0.022457081824541092, 0.025917405262589455, -0.02111217938363552, -0.005624777637422085, -0.008146471343934536, -0.04788415879011154, -0.011515733785927296, 0.022751279175281525, -0.02727631852030754, 0.00477370573207736, 0.004553057719022036, 0.0011872973991557956, -0.027710609138011932, 0.026982121169567108, -0.0059610032476484776, -0.0035426290705800056, 0.009106115438044071, -0.000709226296748966, -0.016587140038609505, -0.031941451132297516, 0.0018492419039830565, -0.02219090238213539, -0.03017626516520977, 0.026281651109457016, 0.009855618700385094, 0.030624566599726677, 0.01343502290546894, -0.03496748208999634, -0.005782383494079113, -0.02101411297917366, 0.015788603574037552, -0.02165854535996914, 0.020733924582600594, 0.030148247256875038, 0.00021243953960947692, -0.02377396635711193, -0.007684160489588976, -0.013028750196099281, 0.006017040926963091, -0.009526398032903671, 0.027500469237565994, -0.012573444284498692, 0.0073689487762749195, -0.026926083490252495, 0.017133506014943123, 0.005754364654421806, -0.025244953110814095, 0.02165854535996914, 0.008041400462388992, 0.003276450326666236, -0.015956716611981392, -0.008825927041471004, -0.022555148229002953, 0.004384944681078196, 0.0045285411179065704, -0.007228854577988386, -0.0017573051154613495, 0.00996769405901432, -0.04813632741570473, 0.0014070699689909816, 0.004440982360392809, 0.01338598970323801, 0.0003184951492585242, -0.001526149921119213, 0.010345947928726673, -0.003497098572552204, -0.02451646514236927, 0.02156047895550728, -0.015914687886834145, -0.00013593504263553768, 0.0017774436855688691, -0.04379341006278992, 0.03020428493618965, -0.014765916392207146, 0.0074109770357608795, -0.013652168214321136, -0.009456350468099117, 0.007488028611987829, -0.021336328238248825, -0.015158180147409439, 0.008573757484555244, -0.007873287424445152, 0.013645163737237453, -0.03070862405002117, -0.012713538482785225, -0.02387203276157379, 0.005554730538278818, 0.012867641635239124, -0.012832618318498135, 0.034098900854587555, 0.0005813904572278261, -0.012720542959868908, -0.017161525785923004, -0.0023623364977538586, 0.02842509001493454, -0.02053779363632202, 0.024236276745796204, -0.016348980367183685, 0.013119811192154884, 0.013294928707182407, 0.013399999588727951, 0.01943104900419712, -0.02165854535996914, -0.008216517977416515, 0.02468457818031311, -0.03051249124109745, -0.006728018168359995, 0.009120125323534012, 0.02333967387676239, 0.009225195273756981, 0.014555775560438633, -0.0276825912296772, -0.02024359442293644, -0.019290955737233162, 0.0018825142178684473, -0.03600417822599411, -0.0008628920186311007, -0.026968110352754593, 0.009120125323534012, 0.0065388912335038185, 0.01885666325688362, 0.0057438574731349945, -0.0008751502027735114, 0.01458379440009594, -0.013932356610894203, -0.012468373402953148, -0.012097124010324478, 0.009386303834617138, 0.02434835210442543, 0.0279487706720829, -0.004910297691822052, 0.03348248451948166, -0.010394981130957603, 0.0049137999303638935, -0.016292942687869072, -0.0074950335547327995, 0.00510993180796504, -0.006482853554189205, 0.020131519064307213, 0.0023273129481822252, -0.015718556940555573, -0.017791949212551117, -0.011144484393298626, -0.004111761227250099, 0.020467745140194893, 0.007228854577988386, 0.0019508100813254714, 0.013414008542895317, -0.005645791534334421, -0.025202926248311996, 0.002402613637968898, 0.0035636432003229856, 0.001769563416019082, -0.0035548873711377382, 0.019248927012085915, -0.005050391890108585, -0.012237218208611012, -0.0100377406924963, 0.01128457859158516, 0.005299058742821217, 0.006587924435734749, -0.013820281252264977, -0.004927809350192547, -0.0031888915691524744, -0.007936329580843449, -0.009603449143469334, 0.019557133316993713, -0.003873601322993636, -0.016040772199630737, 0.026323677971959114, 0.004017197992652655, -0.012573444284498692, 0.00273708812892437, -0.011571771465241909, -0.03636842593550682, -0.02156047895550728, -0.0034743333235383034, -0.0441296361386776, -0.03586408495903015, 0.002612754702568054, 0.007985362783074379, 0.0026495293714106083, -0.01392535213381052, 0.04813632741570473, 0.0036074225790798664, -0.022583166137337685, 0.010934343561530113, -0.025174906477332115, -0.015018085949122906, -0.029251644387841225, 0.009330266155302525, 0.005200992804020643, 0.012230213731527328, 0.03813361003994942, -0.006486356258392334, 0.02209283784031868, 0.012223209254443645, 0.008559748530387878, -0.01859048567712307, -0.0013133820611983538, 0.0014490982284769416, 0.0128466272726655, -0.0029227128252387047, -0.02043972723186016, -0.016797279939055443, -0.009267223998904228, -0.026491791009902954, -0.007908310741186142, 0.013175848871469498, 8.174434697139077e-06, 0.08657814562320709, 0.03250182792544365, -0.018282277509570122, 0.012545425444841385, 0.0005271040135994554, 0.0355558767914772, 0.00535509642213583, 0.000682958634570241, 0.0038560896646231413, -0.028509145602583885, 0.003603920340538025, -0.03782540187239647, 0.003954155370593071, -0.023045476526021957, -0.0075860945507884026, -0.008573757484555244, -0.006805070210248232, 0.03421097621321678, -0.022723261266946793, -0.02516089752316475, 0.006724515929818153, -0.005582749377936125, -0.00820250902324915, -0.011971039697527885, -0.02135033905506134, -0.013175848871469498, 0.004171301145106554, -0.021756611764431, 0.0011654077097773552, -0.05239518731832504, 0.0220648180693388, -0.012202194891870022, -0.024740615859627724, -0.025315001606941223, -0.00799937266856432, 0.0050819129683077335, -0.020635858178138733, -0.014324620366096497, -0.0004706285544671118, 0.00555823277682066, 0.0023570829071104527, 0.022849345579743385, -0.0200334545224905, -0.012489387765526772, -0.012902664951980114, -0.0039926813915371895, -0.020467745140194893, 0.012069105170667171, -0.012895660474896431]}, "text_id_to_doc_id": {"902ad918-fce3-494b-95f2-92d69b72b032": "c1185d4f-4ecd-45c0-a15b-51a4953b4671", "81c4feef-c1a3-4fd2-841b-7bcd1db1eed0": "c1185d4f-4ecd-45c0-a15b-51a4953b4671", "54169aaa-b05b-4f0a-ab60-aadef1bf0af2": "c1185d4f-4ecd-45c0-a15b-51a4953b4671", "62764cae-47bf-4e4a-ac61-ea7553abeb11": "c1185d4f-4ecd-45c0-a15b-51a4953b4671", "8d9c8637-f5a0-4cb9-9ebb-6ff3c9a0a57b": "c1185d4f-4ecd-45c0-a15b-51a4953b4671", "b377b0d1-5a35-4764-9e06-e16b1c538b62": "c1185d4f-4ecd-45c0-a15b-51a4953b4671"}}}}} \ No newline at end of file diff --git a/index_v2/Databricks/docstore.json b/index_v2/Databricks/docstore.json new file mode 100644 index 0000000000000000000000000000000000000000..4a8854309b6df2d40177371b568da2241df768ee --- /dev/null +++ b/index_v2/Databricks/docstore.json @@ -0,0 +1 @@ +{"docstore/metadata": {"758d1b0b-ef44-40c6-922f-00ef33f63983": {"doc_hash": "c2bdfe3b7e1c7a4d7d4c4167e407d6f359fe8a121dd4eec125d7f06058e26aae"}, "db1785f6-757e-4817-95f1-3c68a6b14df7": {"doc_hash": "b881cc345edfcb923d76faf3012e2ca058fecb0fedb986fba153fadbd7141f8e", "ref_doc_id": "758d1b0b-ef44-40c6-922f-00ef33f63983"}, "d9064537-a6bf-4a34-a883-0db1a39fd2b2": {"doc_hash": "5b8f226eb4681988c9cc494718f1f1a9d980dcb0b83fd4d3619b7bac0da45f15", "ref_doc_id": "758d1b0b-ef44-40c6-922f-00ef33f63983"}, "ac137145-15a8-4587-9745-0a50eb1a49ff": {"doc_hash": "5f7710440e3d2ce01686cc65929ce14f5a5d2705476af1cb5007596d01cc3d3f", "ref_doc_id": "758d1b0b-ef44-40c6-922f-00ef33f63983"}, "e09ee097-cc44-4337-9851-729475b3188e": {"doc_hash": "a8afb5b137c09eb65d1c25faab40ce3cd7c65f9e5d7bff8de288214d2f3a1711", "ref_doc_id": "758d1b0b-ef44-40c6-922f-00ef33f63983"}, "1b0c5199-9475-474f-ab5b-ef7aadd12087": {"doc_hash": "a0a46721e1b8429d1996eb0b7c74941cb78d3e4600cea0cad277d9d83ceca8af", "ref_doc_id": "758d1b0b-ef44-40c6-922f-00ef33f63983"}, "64017536-5407-424e-ac7c-667ab0323871": {"doc_hash": "465ae957610a6d57d0c9ecacb241631ea84febc0d211e2619939f9969290a432", "ref_doc_id": "758d1b0b-ef44-40c6-922f-00ef33f63983"}, "067b5d34-dfe4-43f9-a607-5fa6aea16e59": {"doc_hash": "01aac656c40d2ba668b475d34d8510ca1f403d1e3a0e1cd42a0f60eb2edeb694", "ref_doc_id": "758d1b0b-ef44-40c6-922f-00ef33f63983"}, "6bb4664b-7a78-436b-b496-e99cfd7d3f74": {"doc_hash": "ebff0865e6eb56c6437fc848bb75d67825e43ec2f33aec882cbd2197d88da61f", "ref_doc_id": "758d1b0b-ef44-40c6-922f-00ef33f63983"}, "57d479ac-14b0-4150-97d8-2e4981940c84": {"doc_hash": "b84caa5280dfbdc03bb62d2d98be7a86a04340c43dd38bcc36ea90485733222c", "ref_doc_id": "758d1b0b-ef44-40c6-922f-00ef33f63983"}, "2a102d81-3648-4c2c-9708-087e2f32622b": {"doc_hash": "41e6209ade6048be73a9f87f4c9f101c213a0af16fde6200b41537fa755f9a60", "ref_doc_id": "758d1b0b-ef44-40c6-922f-00ef33f63983"}, "2e49a6f3-6b45-4d22-82b9-6af69ace3a5e": {"doc_hash": "0149e3962c9e1852374644898afd017ec84e91608bf02a7fdd3b09f6b98ad8ab", "ref_doc_id": "758d1b0b-ef44-40c6-922f-00ef33f63983"}, "28142fd1-8d5d-43ef-a8b5-9aad252d4444": {"doc_hash": "454e2934c2e5211db3e6a88e5c25b2c6ea59efc2588ebf7a657a54bf091cf662", "ref_doc_id": "758d1b0b-ef44-40c6-922f-00ef33f63983"}, "fe7fa115-165b-4947-823f-e35939ebe9da": {"doc_hash": "a06f0e4327f78ccffc904170705eade921b1c322d3ded78c1cdb0d6101798311", "ref_doc_id": "758d1b0b-ef44-40c6-922f-00ef33f63983"}, "4e79713a-6e82-497a-a79f-7c97fc16f07c": {"doc_hash": "484ce6651b883f21981308b7654fc66deff82f96ac7572e21a88218c1afcd62a", "ref_doc_id": "758d1b0b-ef44-40c6-922f-00ef33f63983"}, "97019ad3-abb7-41f6-a177-7762daf8013e": {"doc_hash": "ac677ea9daadf03578c01105167893beadb5e54f1290379ca9e9467c828158da", "ref_doc_id": "758d1b0b-ef44-40c6-922f-00ef33f63983"}, "9589d69f-c551-4155-8097-1658626b2946": {"doc_hash": "e9807b7ba633b94b4ab3b55e07da9dc104e8c465952469711495fdd07638bfbe", "ref_doc_id": "758d1b0b-ef44-40c6-922f-00ef33f63983"}, "f5d2dc23-f653-4730-8b4b-a47dcd9cc57d": {"doc_hash": "29504a15f3abaf33fc29339dd6373c8f781e5f2411ea90c26615b045c7c81146", "ref_doc_id": "758d1b0b-ef44-40c6-922f-00ef33f63983"}, "e32c5fc2-09b2-4a9e-9174-bcac03c84bdf": {"doc_hash": "7c7cec2483ae2315b066d5dfb8adc8b6501846b74e4bd9b78d43abb05362b8c5", "ref_doc_id": "758d1b0b-ef44-40c6-922f-00ef33f63983"}}, "docstore/data": {"db1785f6-757e-4817-95f1-3c68a6b14df7": {"__data__": {"text": "Capterra, Verified Reviewer, nan, 4, Easy to use application to build data lakes to run reports on top of it. The Databricks internal architecture helps to run the reports faster., The data bricks features are completely wrapper and delivered as snowflake (product) . The Databricks should come up with more features to stand out in the market.\nCapterra, Verified Reviewer, nan, 5, Databricks is a great platform for working with a huge amount of data. But the most interesting feature is the ability to use Magic query. Magic query allows users to write code in multiple languages in the same notebook., Databricks is a go-to platform for most of the analysis and processing workload, but when it comes to the financials, it becomes a little more expensive. And as a result, not a lot of the projects are reliable to be developed in Databricks.\nCapterra, Shamaas H., Software Engineer, 5, I love the z indexing, which allows for really fast querying of data. Optimized by spark it is great., The data visualization are subpar. I wish there were better libraries to integrate and visual the data.\nCapterra, Iulian N., PM, 5, Open source -Built upon excellent technologies -Broad set of data ingestion sources -Reliable and scalable -Cost efficient data processing, Can get overwhelming when you start using it -Would be nice to be able visualize data on the fly\nCapterra, Verified Reviewer, nan, 5, Documentation is GREAT - Implementation is mostly straight-forward - The service is easy to use and full of features - Support is top-notch - The interviews we had with the DB guys were more like a peers meeting than a corporate call (I love this) - Our DS lead engineer totally loves it, Can't really speak of anything that we don't like about the product at the moment\nCapterra, Vipul C., Principal Analyst, 5, Our team can collaborate on a project simultaneously and make changes to the scripts. It is fast and reliable., Sometimes we need to restart the cluster when system gets crashed.\nCapterra, Cody M., Controller, 4, Databricks was able to pull data from our core and create specialized dashboarding / reporting that automated a host of manual process that took hours per week. It is now totally hands off and management get review the data in just a few clicks., It can be extremely confusing given the sheer breadth of tools available. The initial setup and connections certainly require an experienced professional, but once up and running, less-technical users can utilize.\nCapterra, Verified Reviewer, nan, 5, The infrastructure is very simple, I have started using Community edition, and then switched to the paid version, however community edition covers most of your needs if you are a student or doing one time projects., There are no many users of Pyspark, sometimes finding some answers is hard /there are no many forums, resources, no many questions in Stack overflow/\nCapterra, Andrew K., Senior Program Manager, 5, Databricks allows data science teams to do things that they normally would not be able to do without a much greater level of technical ability. Their mission is \"making big data simple\" and they definitely deliver on that promise., One area where there's still potential to improve further is around making machine learning more accessible. Currently ML still requires a pretty significant degree of data engineering knowledge, but I would love to see Databricks make ML even more accessible.\nCapterra, Mallikarjuna D., Lead consultant, 5, I'm one of active user using this software day to day needs its pioneer data store layer by holding transactional process stream line it and hold the information by applying business rules., It's pioneer to to hold the source raw traditions as a refined layer to store the data for longer time\nCapterra, Verified Reviewer, nan, 3, Enables simultaneous collaborative work with colleagues - Easy to mix spark queries and python for extra analyses and plots - Handful visualization modes for query results (tables and plots with aggregations), Hard to manage notebook workspace - Sometimes it gets really slow to run queries - AFAIK, there aren't visualization options for datasets (without running queries)\nCapterra, Rita R., ux designer, 3, In databricks is easy", "doc_id": "db1785f6-757e-4817-95f1-3c68a6b14df7", "embedding": null, "doc_hash": "b881cc345edfcb923d76faf3012e2ca058fecb0fedb986fba153fadbd7141f8e", "extra_info": null, "node_info": {"start": 0, "end": 4239, "_node_type": "1"}, "relationships": {"1": "758d1b0b-ef44-40c6-922f-00ef33f63983", "3": "d9064537-a6bf-4a34-a883-0db1a39fd2b2"}}, "__type__": "1"}, "d9064537-a6bf-4a34-a883-0db1a39fd2b2": {"__data__": {"text": "Rita R., ux designer, 3, In databricks is easy to transfer the result of a spark query to the python environment, and it has several plots with automatic aggregations, Databricks has a bad file management system and it is slow sometimes. In addition there are no ways to make a visual query, without using code.\nCapterra, Verified Reviewer, nan, 5, What I like most about Databricks is the amount of integrations the platform provides to the user. With Databricks, you can create datasets, develop machine learning models, and analyze performance automatically by setting up a job periodically. Whether the user is an engineer, data scientist, or business analyst, Databricks can streamline everyone's work., What I least like about Databricks is the instability that usually occurs when there are too many users trying to run their notebooks on the same cluster at the same time.\nCapterra, Verified Reviewer, nan, 5, This product has democratized big data computation. Its very easy to move from any platform to this product as it supports most of the languages., Nothing so far- may be cost of computation can improve over time but still an economical product to build in-house big data capability.\nCapterra, Dan S., SA, 4, Easy to use user interface Can be widely shared across an enterprise with various teams Apache Spark Cluster part of product, Information Security considerations have to be taken into account due to need for integrations with databricks VPCs when hosted in AWS\nCapterra, Rayla V., Graduate Research Assistant, 5, I love how easy it is to deploy auto-scaling machine learning models. After a machine learning model is trained, you can just click a button to deploy the model, I believe in a container, and have it auto scale as needed. You can also specify the minimum and maximum size of the deployment to reduce costs but to keep up with the workload as necessary. It is also built around Spark, so tasks involving \"big data\" aren't an issue., Some of the cons are that the primary language is Java/Scala, whereas many data scientists are using python or R, which run slower on Databricks than Java and Scala. Also, the main interface via coding, which can limit a lot of citizen data scientists.\nCapterra, Robert G., DB Architect, 4, I'm a SQL person, so being able to run big data analytics in my preferred language was quite nice. Being able to (near) seamlessly swap between Scala, SQL, and python in the same script is quite powerful. If you don't know how to do something easily in one language, do it in another and then swap back. It's pretty performant and querying non-indexed data dumped from the source systems, even if those datasets aren;t quite \"big data\". I found it to be quicker to dump 100mil rows of staged date from our on-prem server to the data lake and crunch it in Databricks than it was to run in SQL., I wasn't involved in the pricing piece, but from what I understand it's fairly expensive. The clusters can be spun up or down as needed, and there's a nice inactivity shutdown feature if you forget to turn off a test cluster, or something. I also had a pretty rough time getting an Azure Gen 2 Data Lake connected, but after finding the not-so-well-documented bug, it wasn't a big deal.\nCapterra, Douglas F., Senior business analyst, 5, The access and manipulation of data. The software is very fast and great to manipulate and treat data. Also it is possible to build models., The lack of options of visualization and creation of dashboards. The creation of dashboards is possible, but is not intuitive.\nCapterra, Balashowry Preetam S., data scientist, 5, I like the portal page, which connects all Azure subscriptions., It can be difficult to understand, and not much tutorial is available.\nG2.com, Hoora R, Machine Learning eng, 5, its powerful data analytics and machine learning capabilities. The platform includes built-in tools and libraries for data analysis, visualization, and machine learning, allowing users to perform complex data modeling and analysis tasks with ease.\n\nffers a collaborative and flexible working environment, with", "doc_id": "d9064537-a6bf-4a34-a883-0db1a39fd2b2", "embedding": null, "doc_hash": "5b8f226eb4681988c9cc494718f1f1a9d980dcb0b83fd4d3619b7bac0da45f15", "extra_info": null, "node_info": {"start": 4202, "end": 8303, "_node_type": "1"}, "relationships": {"1": "758d1b0b-ef44-40c6-922f-00ef33f63983", "2": "db1785f6-757e-4817-95f1-3c68a6b14df7", "3": "ac137145-15a8-4587-9745-0a50eb1a49ff"}}, "__type__": "1"}, "ac137145-15a8-4587-9745-0a50eb1a49ff": {"__data__": {"text": "with ease.\n\nffers a collaborative and flexible working environment, with support for multiple programming languages and easy integration with popular development tools. This makes it an ideal choice for data teams and organizations of all sizes looking to streamline their data processing and analysis workflows., I don't like some of the documentation. Some of the features are not being maintained properly and some of the features that are mainly needed never get added. However, I don't think this is an issue with Databricks but rather an issue on MLFLow.\nG2.com, \nMaaz Ahmed A., nan, 4.5, One of the key advantages of Databricks Lakehouse Platform is its unified approach to data management, which allows organizations to manage all types of data, including structured, semi-structured, and unstructured, in a single location. This simplifies data management and provides a unified view of all data, enabling better decision-making.\n\nAnother advantage is its scalability and performance. Databricks Lakehouse Platform is designed to handle large volumes of data and can scale horizontally as well as vertically. It also provides high-speed data processing and query performance, thanks to its distributed architecture and optimized computing engines.\n\nThe platform's built-in capabilities for machine learning and AI is another advantage. This allows organizations to easily integrate machine learning and AI into their data workflows and derive insights and value from their data., One potential challenge is the learning curve associated with the platform. Databricks Lakehouse Platform requires a certain level of technical expertise and familiarity with the tools and technologies used in the platform, such as Apache Spark, SQL, and Python. This can make it challenging for some organizations to adopt the platform, especially if they lack the necessary expertise.\n\nAnother potential limitation is the cost associated with the platform. Databricks Lakehouse Platform is a commercial product, and as such, it requires a subscription or licensing fee. This can be a barrier to entry for some organizations, especially smaller ones with limited budgets.\nG2.com, \nSudarsan M., Solution architect, 4.5, Databricks Serverless SQL with Photon Query acceleration for data analyst & business analyst\n\nIn-built Visualization & dashboards, along with GeoSaptial & Advanced SQL functions\n\nUnified Pipeline for Structure streaming batch & real-time ingestion\n\nAuto-loader for standard formats of file ingestion & Schema Evolution in-built\n\nDelta Live Table for data Engineering Workloads & Pipelines\n\nDatabricks Multi-task Orchestration job worklfows\n\nUnity Catalog Metstaore & its integration with other data catalogs\n\nMLFlow for building and tracking ML experiments & Feature Store for centralized feature supply for production/inference models\n\nTime Travel & Z-order Optimization, Need to build a more comprehensive orchestration workflow JOBS panel for a diverse set of pattern design workflows\n\nServerless Cluster for Data Engineering Streaming/Batch pipelines\n\nIntegrate most IDE features into the notebook\n\nClear documentation on Custom Databricks runtime docker image creation will be helpful\n\nLineage & flow monitoring dashboard can be built automated for non-DLT jobs as well\n\nDLT implementation can be extended to other DELTA format supporting warehouse in future\nG2.com, \nMatthew V., Data Engineering, 4, Repo deployment allows my team to collaboratively develop against databricks resources while still using their local development toolkit, and quickly deploy out to it when they're ready\n\n- Delta live tables are a breeze to set up and get streaming data into the lakehouse\n\n- Language mixing is very nice; most of my data engineering work is SQL focused, however I can leverage Python or Scala for more complex data manipulation, all within the same notebook, Data explorer can be incredibly slow and cumbersome if your datalake is unevenly distributed\n\n- Cold starting clusters can take a frustratingly long amount of time, at least for the way our clusters are set up (the minimum size for our cluster options are i3.xlarge on AWS)\n\n- While developing in notebooks is nice, the concept of running notebooks in production where anyone can edit", "doc_id": "ac137145-15a8-4587-9745-0a50eb1a49ff", "embedding": null, "doc_hash": "5f7710440e3d2ce01686cc65929ce14f5a5d2705476af1cb5007596d01cc3d3f", "extra_info": null, "node_info": {"start": 8278, "end": 12537, "_node_type": "1"}, "relationships": {"1": "758d1b0b-ef44-40c6-922f-00ef33f63983", "2": "d9064537-a6bf-4a34-a883-0db1a39fd2b2", "3": "e09ee097-cc44-4337-9851-729475b3188e"}}, "__type__": "1"}, "e09ee097-cc44-4337-9851-729475b3188e": {"__data__": {"text": "in notebooks is nice, the concept of running notebooks in production where anyone can edit from the ui is concerning, wish there was more ways to \"lock\" down production processes\nG2.com, Amr A, nan, 5, Keep updating the notebook platform (e,g, keep adding new features such as local variables track).\n\n- MLFLOW experiment and Model registry, where all trained models can be tracked and registered in one place, Connect my local code in Visual code to my Databricks cluster so I can run the code on the cluster. The old databricks-connect approach has many bugs and is hard to set up. The new Databricks extension on Visual Code, doesn't allow the developers to debug their code line by line (only we can run the code).\nG2.com, samin F, nan, 4.5, Its ability to seamlessly integrate data processing, analytics, and machine learning workflows, its scalability and performance, and its support for a wide range of data sources and programming languages. I like that it get UI updates on the notebooks., The learning curve for new users can be steep. There are limited documentation on markdowns in notebooks and it can be faster. I would like to see it faster and improved.\nG2.com, Greg T, Data scientist, 3.5, I have been using databricks for almost 4 years and it has been a great asset to our development as a team and our product.\n\nShared folders of re-usable and tracked notebooks allow us to work on tasks only once, minimising duplication of work, which in turn accelerates development cycle.\n\nOne of my personal favourites are the workflows, that allowed us to automate a variety of tasks, which availed capacity for us to focus on the right problems at the right time.\n\nAnother great selling point for me, is that collaborators can see each other typing and highlighting live., UX could be improved\n\nWhile I appreciate the addition of new features, developments and experiments, the frequency of changes made it tiring and frustrating for me recently.\n\nToo much, too frequently. The 'new notebook editor' is a great example here. The editor itself could be a very useful change, but changing all the keyboard shortcuts at the same time without letting the user know is questionable to me.\n\nI would prefer it, if changes were rolled out less frequently with detailed patch updates (see Dota 2 for example), and configurable options in the user settings.\n\nE.g. I would use the experimental 'new notebook editor' if I could keep the keyboard shortcuts the same.\n\nLess frequent, more configurable updates please.\n\nOne of the biggest pain point for me is the Log In and Log Out process. Why does Databricks have to log me out every couple of hours? Especially while I am typing in a command cell?\n\nCould this be improved please?\n\nAlso, would love it if libraries on clusters could be updated without having to restart the cluster.\n\nHaving said all this, I do love some of the new features, such as the new built-in visualisation tool, however would love it even more if titles could be added and adjusted.\nG2.com, \nNorman L., Data Scientist, 4.5, I have been using Databricks platform for business research projects and building ML models for almost a year. It has been a great experience to be able to run analysis and model testing for big data projects in a single platform without switching between SQL server and development environment with Python, R, or Stata. Also, I like the fact that MLflow can track data ingestion for any data shift in realtime for model retraining purposes., We have had issues using MLflow and feature store on Databricks for ML projects, which slows down the development process. Wish there was better documentation on these tools or more diverse examples to demonstrate different use cases. Also, the test-train split with MLflow does not support time series time interval test-train split for model validation purposes.\nG2.com, \nAnkit R., Software Engineer, 4.5, Databricks come with everything in one place, and that is the best thing about the platform. Now I don't have to go to EMR page to create an ERM and then create a notebook. All these can be done with just one click and one", "doc_id": "e09ee097-cc44-4337-9851-729475b3188e", "embedding": null, "doc_hash": "a8afb5b137c09eb65d1c25faab40ce3cd7c65f9e5d7bff8de288214d2f3a1711", "extra_info": null, "node_info": {"start": 12526, "end": 16647, "_node_type": "1"}, "relationships": {"1": "758d1b0b-ef44-40c6-922f-00ef33f63983", "2": "ac137145-15a8-4587-9745-0a50eb1a49ff", "3": "1b0c5199-9475-474f-ab5b-ef7aadd12087"}}, "__type__": "1"}, "1b0c5199-9475-474f-ab5b-ef7aadd12087": {"__data__": {"text": "ERM and then create a notebook. All these can be done with just one click and one page. One gets to jump from notebooks to Query service and to AI in just one click. You get data store views, auto type suggestions based on table and schema context. All these makes the experience very smooth and fast., Queries get refreshed once in a while, where if some queries are not saved explicitly get deleted.\n\nThere is no dark mode, hence have to use a white theme.\n\nSometimes your queries get pushed to long queues which takes a lot of time and can be little frustrating.\nG2.com, Thabiso K., Lead Recruiter, 5, The platform is easy to use and collaborate with my colleagues. Deploying to production is simple and can be even easier if you choose the non-self-hosted option. Although Databricks does some of the heavy lifting, it's still open enough to allow teams to use their own flexibility and complex processes without too much configuration. \", Platforms constantly change as they adapt, so staying on top of everything can be difficult. - If you don't have a CICD system in place, once you hit a certain number it starts to get difficult to manage.\nG2.com, \nVishaw S., Data engineering, 4.5, We employ Python, Spark, and SQL to develop ELT pipelines, and Databricks is the most reliable and user-friendly option available. Developers may concentrate on writing code, creating pipelines, and creating models rather than spending time setting up the environment because it is very simple to do so., Knowledge of the cost model and recommendation engine to reduce burned DBUs There is an Overwatch notebook that offers general statistics about the environment, but it isn't developed enough and it also doesn't show you the cost of the infrastructure used in the back cloud kitchen. Platform as a whole is excellent.\nG2.com, David H, Business Intelligence Developer, 4.5, Databricks' versatility is its best feature. The range of languages and functionality afforded by Databricks is impressive. Thus far, I've written code in R, Python, SQL and Scala in Databricks. And im just getting started. But I've composed SQL code in both R and Python, executed in Databricks. And then we come to interoperability. Data written to SQL can be accessed by either R or Python. Parameters can be passed across SQL, R and Python via widgets or environmental variables. If you have an intractable data or analytics problem, Databricks would be my 'go to' to maximise the options as to how you could potentially code your way under, around or over the obstacles standing between your project and successful execution., The options for deployment of Databricks code from dev >> qa >> uat >> prod aren't as intuitive as I might like. This might have more to do with our current use of Azure Data Factory for orchestration. Setting up workflow natively in Databricks was quite straightforward. It seems to be accessing Databricks notebooks from Azure Data Factory in dev >> qa >> uat >> prod where we are perhaps creating problems for ourselves. Perhaps not a shortcoming in Databricks at all. Curious as to how Databricks would operate with AWS rather than Azure. Perhaps a better experience?\nG2.com, Sudarsan S., Data Engineer, 4.5, Unified Batch & Streaming for source systems data\n\nAutoloader capability, along with Schema Evolution\n\nDelta Live Table & orchestrating with Pipelines\n\nCDC Event streams for SCD1 & SCD2 using DELTA apply changes\n\nDatabricks Workflows - Multi-task jobs\n\nServerless SQL Photon cluster along with Re-dash integrated Visualization\n\nUnity Catalog\n\nDelta Sharing & Data MarketPlace\n\nData Quality expectations\n\nIntegration with Collibra, Privacera & other security & governance tools, Issue in running multiple streaming jobs in same cluster\n\nJob clusters can't be reused even for the same retry in PRODUCTION, since shutdown immediately after the job run/fail is set by default - Need to check any options to increase this limit\n\nMulti-Task jobs requires TASK output should be passed to next input TASK and also need to support", "doc_id": "1b0c5199-9475-474f-ab5b-ef7aadd12087", "embedding": null, "doc_hash": "a0a46721e1b8429d1996eb0b7c74941cb78d3e4600cea0cad277d9d83ceca8af", "extra_info": null, "node_info": {"start": 16659, "end": 20694, "_node_type": "1"}, "relationships": {"1": "758d1b0b-ef44-40c6-922f-00ef33f63983", "2": "e09ee097-cc44-4337-9851-729475b3188e", "3": "64017536-5407-424e-ac7c-667ab0323871"}}, "__type__": "1"}, "64017536-5407-424e-ac7c-667ab0323871": {"__data__": {"text": "requires TASK output should be passed to next input TASK and also need to support FAIL on trigger and setting OR dependent predecessors to trigger ,Currently supports only AND\n\nNo serverless option for Data engineering jobs outside DLT\n\nDLT need to be matured to handle wide variety of integrating source & target, currently only support DELTA table in databricks. Expecting that be supported for any tool/service/product which supports DELTA format filesystems\nG2.com, \nKartavya K., nan, 4.5, The platform allows us to quickly start developing and prototyping without worrying much about setting up workspaces, the runtimes, connectors etc. The best part is that it is really powerful to move up from basic prototyping to production ready codebase maintenance, The platform allows us to quickly start developing and prototyping without worrying much about setting up workspaces, the runtimes, connectors etc. The best part is that it is really powerful to move up from basic prototyping to production ready codebase maintenance\nG2.com, No name, nan, 3.5, Ability to edit the same notebook with collaborators\n\n- GitLab compatibility\n\n- Multiple languages supported\n\n- Broad functionality allows most of our digital teams to use it for their own needs\n\n- Spark compute is fast and the amount of processors on a cluster is clear, UI is constantly changing, and changes are not announced with any leadup\n\n- UI can be buggy - WebSocket disconnects, login timeouts, copy/pasting into incorrect cells\n\n- Pricing structure is a little opaque - DBUs don't have a clear dollar-to-time amount\n\n- Notebook structure isn't perfect for production engineering, better for ML or ad-hoc operations\nG2.com, No name, nan, 4.5, Databricks' Lakehouse platform combines the capabilities of a data lake and a data warehouse to provide a unified, easy-to-use platform for big data processing and analytics. The platform automatically handles tasks such as data ingestion, data curation, data lineage, and data governance, making it easy to manage and organize large amounts of data. The platform includes features such as version control, collaboration tools, and access controls, making it easy for teams to work together and ensure compliance with data governance policies., The amount of time to spin up a new cluster takes around 10-15 minutes. Moreover, the limited resources and learning materials for new users become challenging. If data bricks can provide more learning resources will be great.\nG2.com, Jack Y C, Chief Data Scientist, 5, One of the best analytical databases currently available in the market and can handle all formats of data ranging from structured, semi-structured, to unstructured., I don't have anything I particularly don't like. If there is, I would say the SPARK statistical modeling libraries are still quite limited comparing with the packages from R, SAS, or Python.\nG2.com, No name, nan, 4.5, As a frequent user of Databricks, it has made my life so much easier by simplifying processes and allowing me to develop proof-of-concept designs rapidly. The orchestration of notebooks via workflows provides excellent visualization and enables me to conduct real-time demos for members on the business side. In addition, the integration with Azure and AWS makes it so that Databricks does not operate in isolation and allows me and other engineering team members to transform large amounts of data that is ingested via our enterprise pipelines., There can sometimes be issues integrating Databricks workflows with open source frameworks, often requiring lots of debugging and trial and error. Additionally, I've been told that the platform can be pretty expensive.\nG2.com, \nAleksandr P., SSE, 2.5, Lakehouse platform is a solution that is easy to setup, the infrastructure is easy to maintain and the UI is accessible to a wide variety of engineers.\n\nIt allows for a fast rollout to production and covers most common needs of a data company., The biggest kink in Lakehouse platform is its speed. It does not deliver on the performance promised.\n\nIn addition, the Databricks UI is not easy to use. It feels like", "doc_id": "64017536-5407-424e-ac7c-667ab0323871", "embedding": null, "doc_hash": "465ae957610a6d57d0c9ecacb241631ea84febc0d211e2619939f9969290a432", "extra_info": null, "node_info": {"start": 20693, "end": 24812, "_node_type": "1"}, "relationships": {"1": "758d1b0b-ef44-40c6-922f-00ef33f63983", "2": "1b0c5199-9475-474f-ab5b-ef7aadd12087", "3": "067b5d34-dfe4-43f9-a607-5fa6aea16e59"}}, "__type__": "1"}, "067b5d34-dfe4-43f9-a607-5fa6aea16e59": {"__data__": {"text": "addition, the Databricks UI is not easy to use. It feels like it's a smartphone app.\n\nOn the side of technology, it is slow and expensive, with authorization added as an afterthought.\n\nIt's an absolute pain to administer and hard to control expenses.\nG2.com, \nRohit S., software Developer, 4, Since Databricks Lakehouse provided a unified single platform for data processing, analysis, and machine learning, it helped me to work with the structured, semi-structured, and unstructured datas in a single environment., Databricks Lakehouse required me to learn few tools and technologies, such as Apache Spark and Delta Lake, which as a beginner was a bit complex for me to learn.\nG2.com, \naashish b., Analyst Optimization and Generation, 4, I have been actively engaged in Databricks training and I find it very relevant to the work our organization does. We usually have large amounts of data we need to process for our power generation and revenue needs, and I find that Databricks can be a one-stop shop for our automation and streamlining the process.\u201d, I believe it could be a steep learning curve for someone who may not know how to program or have a general understanding of it. The best way to work around this is to follow training offered on data bricks.\nG2.com, \nNishant B., Data Scientist-I, 4.5, Seamless integration between spark, pyspark, scala, sparkr, and SQL APIs with Cloud Storages, Easy to use and schedule streaming and batch services with delta lake as storage for all data engineering needs with git integration and revision control., UI can be a little more like VSCode or cloud editor to give you more choices, modular code, packaged code for better unit testing, and CI CD can improve the developer experience drastically.\nG2.com, No name, nan, 4.5, The versatility and scalability are the best features for us. We currently use SQL, R, Python, SQL, Spark and Scala with Databricks. It's impressive how seamless this experience is for different teams with different use cases and skill sets. The interoperability across these languages and accessing data is a blessing and enables us to use a vast array of tools to solve problems., More insight into individual job costs would be a helpful feature that is currently lacking. Deploying code is also not as intuitive and the Git integration could be more powerful with an enhanced feature set.\nG2.com, Adoba Y, nan, 5, Best for Analytics, we also got started off first using Fivetran and it was the easiest destination for us to use., Getting setup wasnt the easiest thing to do, also the UI feels a little old.\nG2.com, Nigel B, Senior Data Engineer, 5, If you need to leverage python, spark, and SQL to build ELT pipelines, Databricks offers the most robust and easy-to-use solution for this. It doesn't require a lot of effort to configure and deploy, and allows developers to focus on building pipelines, instead of getting the infrastructure to work., I do wish there was more visibility into individual job cost, and overall cost as well- but this is a relatively minor complaint. Overall, the platform is great!\nG2.com, \nMalathi M., Big Data Consultant, 4,5, Autoloader\n\nChange Data Feed\n\nDLT pipelines\n\nSchema evolution\n\nJobs Multitask\n\nIntegration with leading Git Providers, Data Governance and security tools\n\nMLflow AutoML\n\nServerless SQL endpoints for analyst\n\nPhoton accelerated engine, No GUI-based drag & drop\n\nComplete Data Lineage visualization at the metadata level is still no there\n\nNO serverless Cluster for data engineering pipelines if you use existing interactive clusters, only available through job clusters through DLT\n\nEvery feature has some limitations involved\n\nMore work is needed on orchestration workflows\nG2.com, \nDan P., nan, 4, t's fully managed, and gives us lots of processing power with very little effort., There are lots of areas to it, so understanding all of it at any depth takes", "doc_id": "067b5d34-dfe4-43f9-a607-5fa6aea16e59", "embedding": null, "doc_hash": "01aac656c40d2ba668b475d34d8510ca1f403d1e3a0e1cd42a0f60eb2edeb694", "extra_info": null, "node_info": {"start": 24830, "end": 28727, "_node_type": "1"}, "relationships": {"1": "758d1b0b-ef44-40c6-922f-00ef33f63983", "2": "64017536-5407-424e-ac7c-667ab0323871", "3": "6bb4664b-7a78-436b-b496-e99cfd7d3f74"}}, "__type__": "1"}, "6bb4664b-7a78-436b-b496-e99cfd7d3f74": {"__data__": {"text": "are lots of areas to it, so understanding all of it at any depth takes time.\nG2.com, Ramesh G, nan, 4.5, Databricks is an excellent tool for data processing and analysis. The platform is user-friendly and intuitive, making it easy for team members of all technical skill levels to collaborate and work on data projects. The integration with popular data storage systems and the ability to run both SQL and Python code make it a versatile option for handling a variety of data types and tasks. The platform also offers robust security features and the ability to scale resources as needed. Overall, I highly recommend Databricks for anyone looking for a reliable and efficient data platform., Nothing. I like the UI and the toggle between python and sql\nG2.com, Likhita B, Senior Business Analyst, 5, I like the ease to switch between Python, Pyspark and sql in the same notebook., The spark cluster needs to get connected faster in community edition.\nG2.com, No name, nan, 4, The most reliable and user-friendly option for creating ELT pipelines that employ Python, Spark, and SQL is Databricks. Configuring and deploying it doesn't take much labour, and it frees developers from having to worry about setting up the infrastructure., using the same cluster to perform several streaming tasks\n\nSince shutdown immediately following the job run/fail is configured by default, job clusters cannot be reused even for the same retry in PRODUCTION. Checking potential ways to raise this limit.\nG2.com, \nVivi S., Data Science Churn Lab Lead, 4.5, Databricks allow us to access data via pyspark, python and sql.\n\nThe interface is easy to use and most of my work is spent there., I was told the model training part is more costly in Databricks than in Azure.\n\nSo some of the jobs need to be done in databricks and some of the jobs need to be done on Azure.\n\nIt will be good if cost is not an issue when choosing platforms.\nG2.com, \nmandi N., Senior Java developer, 4, Offers low cost storage of data with efficient schema structure and analytics. Support for ACID transactions. Quick and easy data accessibility. Good data governance., I should hold an active account with AWS or Azure to use Databricks Lakehouse platform or else I can't access it. More guidance on data quality tools is needed.\nG2.com, \nPrashant S., nan, 3.5, It's stores data in delta lake that basically helps to generate a backup of data doesn't matter if process failed every time it took cache of data and most importantly we can easily migrate it with any cloud platform to handle big data., For dislike I would say some time cluster takes time to run and it gives memory error and it's bit costly in use and sometime notebooks cells stuck in between run so team can work on it bit.\nG2.com, \nLaksh S., Threat Hunting Specialist-II, 4, Ease of use, really optimised platform, lots of good integrations, good customer support., The platform has some glitches that have been lying around for a while now I feel. The SQL dashboards are very very slow and the screen gets stuck often.\nG2.com, No name, nan, 4.5, The platform is powerful and flexible enough to do almost anything you want to do, like ETL, ML models, data mining, simple adhoc queries, etc. Also easy to switch languages between python, sql, r, scala, etc. anytime you want., The search function is not my favoriate, I often like to use the search function from the browser but it doesn't work well with scripts in a big cell. Also the clusters takes a while to start.\nG2.com, No name, nan, 3, Being quickly able to get the environment up and running for any kind of workloads. The support for all three languages and catering to the needs of Data Engineering and ML., Too many customizations are needed to achieve the right mix of parameterization for optimal performance. On the other hand, snowflake provides lots of features out of the box without the developer worrying about these things.\nG2.com, No name, nan, 5, Pyspark, Delta lake,", "doc_id": "6bb4664b-7a78-436b-b496-e99cfd7d3f74", "embedding": null, "doc_hash": "ebff0865e6eb56c6437fc848bb75d67825e43ec2f33aec882cbd2197d88da61f", "extra_info": null, "node_info": {"start": 28722, "end": 32688, "_node_type": "1"}, "relationships": {"1": "758d1b0b-ef44-40c6-922f-00ef33f63983", "2": "067b5d34-dfe4-43f9-a607-5fa6aea16e59", "3": "57d479ac-14b0-4150-97d8-2e4981940c84"}}, "__type__": "1"}, "57d479ac-14b0-4150-97d8-2e4981940c84": {"__data__": {"text": "No name, nan, 5, Pyspark, Delta lake, The way that it integrates seamlessly with AWS services and how they managed to open source everything. It provides a great managed spark infrastructure., Harder to integrate with more legacy data sets. Requires you to move data into AWS to use.\nG2.com, No name, nan, 4, Fast iterative abilities and notebook baseed UI. It is also helpful to have multiple contributors on a single notebook at one time. You can see where others are in the notebook which helps with collaboration., We are using Databricks to move large amounts of data. Our team is able to run different ETL pipelines with different schedules in an organized way. We are able to quickly iterate on our notebooks to add new features.\nG2.com, \nRishabh P., Associate Data Engineer, 4.5, I like delta live table the most because of its working and the exposure it gave to the customer like data constraints and data quality check , that is best, I dislike the python syntax and code to create the delta live tables , so confusing and need to be change the logic , sql syntax is best\nG2.com, \nArvind K., Data scientist, 5, It is the best datalake even when compared to the offerings by AWS, GCP or Azure due to its proprietary delta lake technology, No offering for developers to debug their code line by line\nG2.com, \nSenthil Kumarr M., BigData Solution Architect, 5, No 1 - Delta Lakehouse platform supports ACID transactions (Data lake + Datawarehouse)\n\nEasy DLT pipeline with lineage & quality\n\nUnified governance with the unity catalog\n\nSupport Schema evolution\n\nExceptional AUTOLOADER capability, Awaiting for the Serverless Data engineering pipeline with NO capacity planning outside DLT with SLA-based scaling ( I know it's on ROADMAP, I am waiting).\n\nMore features on GCP+Databricks integration compared to same as AWS, Azure. (Some capabilities like credential passthrough missing in GCP)\nG2.com, \nBipin S., Senior Data engineer, 5, It's a complete package for development to deployment. Helps in experimentation and within a few clicks we can move it from experimentation to production., Sometimes lacks the feel of working on a traditional IDE kind of environment. However, it's not a significant drawback and one gets accustomed to it with time.\nG2.com, \nShivaji C., Research analyst, 4, Ease of access to multiple data sources and we can change the code to python to SQL,Scala etc it is impressive., Not able to create interactive visualization\nG2.com, \nSahithi K., Application developer, 4, Easy to schedule and run jobs and integrate with airflow and azure storage accounts.\n\nEasy to execute code cell-wise and debug the errors because of its interpreter., It won't give auto-fill suggestions while coding like how other IDEA's gives.\nG2.com, \nOrr S., analystics team lead, 4.5, The flexibility of working with notebooks that combine python and sql, The visualization tools are nice but very basic and not really helpful\nG2.com, \nihor z., Data Engineer, 5, Delta Tables, open source format, cloudFiles format, notebook UI and visualizations, other companies do not use delta, so integration is not so simple, as delta sharing\nG2.com, No name, nan, 4,5, The infrastructure is pretty straightforward. I started out using the Community edition before switching to the premium version, but if you're a student or working on one-off projects, the Community edition should be more than sufficient., Finding some answers can be challenging at times because there aren't many Pyspark users, forums, or resources available.\nG2.com, No name, nan, 4, Great unification of functions & features and data sharing across the organization., There's still a lot to learn and make sure that all the functions I use work well and properly. Nothing bad, just more to find out.\nG2.com, Sharmila R, Sr Big data Engineer, 4.5, Easy to develop and maintain.", "doc_id": "57d479ac-14b0-4150-97d8-2e4981940c84", "embedding": null, "doc_hash": "b84caa5280dfbdc03bb62d2d98be7a86a04340c43dd38bcc36ea90485733222c", "extra_info": null, "node_info": {"start": 32714, "end": 36562, "_node_type": "1"}, "relationships": {"1": "758d1b0b-ef44-40c6-922f-00ef33f63983", "2": "6bb4664b-7a78-436b-b496-e99cfd7d3f74", "3": "2a102d81-3648-4c2c-9708-087e2f32622b"}}, "__type__": "1"}, "2a102d81-3648-4c2c-9708-087e2f32622b": {"__data__": {"text": "R, Sr Big data Engineer, 4.5, Easy to develop and maintain. Flexibility with transactional integrity., Can be more integrated with DW systems like Snowflake.\nG2.com, Nhat H., data engineer, 4.5, Data Engineer & Machine Learning is very easy to use., It takes time to start a job cluster so I must create a cluster for live update dashboard.\nG2.com, Rahul N., Big data engineer, 4, Easy to use and and very small learning curve. This makes it easy to start focusing on the actual probelm statement and start getting value out of it., UX. Though there are features available, sometime it's hard to find. If you're not trained, your eye might not catch it. Some features can only be applied via API. This require to keep a constant watch in the documentation to know what other options available. At least those options could be provided as a note in the UI for knowing there are other possibilities.\nG2.com, No name, nan, 4, Python notebooks that abstract away a lot of the complexity e.g. packages and infrastructure., The drop down menu/tool bar in the UI sometimes feels a bit clunky.\nG2.com, Max C, SSE, 3.5, Databricks is the most reliable and flexible way to run Spark applications for data engineering workloads., Databricks is at the top end of the market on pricing.\nG2.com, No name, nan, 5, I like the simple user interface that allows me to run spark without having to do much configuration. The Terraform support is also great., Databricks runtime is not available locally to run unit tests, so some workarounds have to be made for that.\nG2.com, No name, nan, 5, Delta Lake & Lakehouse architecture for streaming and batch operations\n\n- Databricks Academy provides hands-on learning and support\n\n- Interact with Databricks resources via Terraform, Orchestration of pipelines could be improved. We currently use an external product to orchestrate our Databricks Spark jobs.\nG2.com, Pradeep S, Team Lead, 5, Data Governance and Simplified Schema.\n\nSupport for unstructured along with structured data enabling support for any use cases to build machine learning, business intelligence, and streaming features. Also support Streaming Live Tables which is a new feature in latest version., performance benchmark needs to be verified with other competitors like Snowflake. Looks like(as per the documentation) the latest version is blazing fast.\nG2.com, Martand S., Sr Data Engineer, 4, Databricks delta lake is the default storage for databricks which makes it very useful. Time travel, transaction, partitioning makes it very efficient., Until now I have not faced any limitations for my use case.\nG2.com, \nDr. Ernie P., IT Biz Apps Manager, 4.5, The core storage technology is Open Source (Delta Lake)\n\n2. Multiple data formats fully accessible via Spark/Python or SQL\n\n3. Ability to manage code via our own GitHub repositories, Not always obvious which pieces are (or will be) open source vs proprietary\n\n2. GitHub integration doesn't support multiple branches, making it difficult to develop alongside production\n\n3. Hard mode-switch between SQL and Data Science user interfaces feels needlessly complex (though I understand there is some technical justification for it)\nG2.com, \nMiguel \u00c1ngel F., Professor - Clustering & Time Series, 5, The ability to work with other professionals (data engineers and other data scientists) on the same platform. I trust Databricks and believe that they will always provide cutting-edge solutions that make Data Science projects more robust, easy and black-box-proof., Sometimes I feel a bit trapped in the platform. Solutions like Databricks-connect and DBX are great but still miss a development environment more robust than notebooks. For this reason, I tend to use virtual machine from Azure Machine Learning to develop python packages and use Databricks as a compute platform to run queries against Big Data.\nG2.com, \nGreg T., Lead data Engineer, 4, The concept of a lakehouse and the simplicity this brings.\n\nI like the notebook functionality", "doc_id": "2a102d81-3648-4c2c-9708-087e2f32622b", "embedding": null, "doc_hash": "41e6209ade6048be73a9f87f4c9f101c213a0af16fde6200b41537fa755f9a60", "extra_info": null, "node_info": {"start": 36545, "end": 40538, "_node_type": "1"}, "relationships": {"1": "758d1b0b-ef44-40c6-922f-00ef33f63983", "2": "57d479ac-14b0-4150-97d8-2e4981940c84", "3": "2e49a6f3-6b45-4d22-82b9-6af69ace3a5e"}}, "__type__": "1"}, "2e49a6f3-6b45-4d22-82b9-6af69ace3a5e": {"__data__": {"text": "lakehouse and the simplicity this brings.\n\nI like the notebook functionality and the constantly expanding ability of Partner Connect and link to BI tools, It feels like an Integrated Development Environment would be a fantastic improvement to the existing UI.\n\nDbx might help accomplish this with further developments.\nG2.com, Tanvi M, Data analyst, 5, Delta Table is the best. Spark in a very curated format, Nothing as now . Its very good overallll\nG2.com, No name, nan, 5, Databricks support services needs a special nod, they have come to the table day in and day out with solutions and ideas to better our enterprise environment for any channel we were working with. Also, the support within the platform multi-format data, github support, and an open-source experience are what I love best about the platform., I'd like a better more seamless way to integrate development teams into our environment. This does feel a bit challenging at times with some minor re-work, but I think there could be progress made in this area. Particularly speaking to how you manage workloads for teams with multiple workspaces.\nG2.com, No name, nan, 4.5, As a Cloud Operation Specialist, I deploy the databricks workspace, setup and manage the clusters. It\u2019s easy to setup and manage the users within the workspace.\n\nUI is very user friendly and intuitive., Error messages can me more detailed and explained well.\nG2.com, No name, nan, 5, Lakehouse combines the power of storage of data lake and reliability of warehouse, decoupled storage and compute is the best thing, Not enough resources earlier, but now we have all the required material in databricks academy.\nG2.com, No name, nan, 5, For two large projects, our Big Data Analytics and Engineering teams moved to the cloud for the first time with Azure ALDS gen 2 and Databricks. We could have done the ETL the old fashioned way but decided that on a new platform we should adopt the new methodologies. We fully adopted Spark Structured Streaming Medallion Lakehouse archetecture with Bronze, Silver, Gold, and were able to deploy in just a few months what normally would have taken us a full year in Oracle with Informatica. For the first time ever our BI professionals were able to hit the same hive megastore and data model as our data scientists at blazing speeds., There isn't much that I dislike about the platform. Many of the issues that we are having have to do with using more than one workspace and the need to orchestrate jobs/workflows between them. I understand that some of that new functionality is coming in future releases.\nG2.com, No name, nan, 4.5, Opportunity to not manage Hadoop clusters., Cluster autoscaling doesn't always work as expected, and I would like to have more control over EC2 instances provisioning (availability to use multiple instance types in a single job/cluster, affinities, possibility to define some sort of topology, etc.). The whole experience is notebook focused.\nG2.com, Ahmed M, Lead Data & AI Cloud Solutions Architect - Telco, Media , Energy, Advanced AI, 5, The extensive detailed content that is not shy from being deeply technical and in the same time industry-focused to depth. The amount of information covered here is incredible from data & analytics to GPUs to K8s to industry discussions, there is no on-demand hands-on labs. and we cannot download all slides for all sessions. The timing of the sessions was also a challenge.\n\nI didn't like the scheduling features too.\nG2.com, No name, nan, 5, Your data is not trapped with a propietary tool or platform.\n\nYou can access your data thru an SQL interface or interface it with Python, Scala or R API.\n\nMuch faster than other DWs., The notebook editor could be better for copying and pasting.\n\nAlso it needs better Find lookup function for really long cells.\n\nThe new feature identity column feature for tables, needs better support to Create or Alter a table from pyschark commands.\nG2.com, \nVenkatraman S., Sr. Data engineer,", "doc_id": "2e49a6f3-6b45-4d22-82b9-6af69ace3a5e", "embedding": null, "doc_hash": "0149e3962c9e1852374644898afd017ec84e91608bf02a7fdd3b09f6b98ad8ab", "extra_info": null, "node_info": {"start": 40521, "end": 44498, "_node_type": "1"}, "relationships": {"1": "758d1b0b-ef44-40c6-922f-00ef33f63983", "2": "2a102d81-3648-4c2c-9708-087e2f32622b", "3": "28142fd1-8d5d-43ef-a8b5-9aad252d4444"}}, "__type__": "1"}, "28142fd1-8d5d-43ef-a8b5-9aad252d4444": {"__data__": {"text": "\nVenkatraman S., Sr. Data engineer, 4.5, Databricks Data Science and Engineering Workspace allows writing the coding in various languages and it enables the ingestion process simpler and guarantee that data available for business queries are reliable and current, Reusing the Cluster feature and delta live tables features was the least liked process, due to the missing link to the GIT integration directly from the Repos.\n\nIf this is available then we will be able to use these cool features widely\nG2.com, Ahmed H, Data engineer, 4.5, Everything is on a single platform like ETL, Sql dashboard and running ML models.\n\nSimplied version for creating scheduled jobs using workshops and the best part is Delta Lake., Every piece of code should be in the form of notebooks which sometimes makes it difficult to manage. It can be more user friendly if they give different options.\nG2.com, Alihan Z, Sr Data engineer, 5, A great experience that combines ML-Runtimes - MLFlow and Spark. The ability to use Python, and SQL seamlessly in one platform. Since databricks notebooks can be saved as python scripts in the background it is amazing to have both notebook and script experience and synchronize to git., Debugging code and using interactive applications outside out databricks approved tools can be tricky. It is hard to get a grasp of the documentation for beginners to the platform.\nG2.com, Laura E, chief Data scientist, 5, It is a cloud native modern data estate service which handles core DW concepts around the snowflake and star schema requirements like CDC like a champ, Lakehouses still can become lake-\"swamps\" without true governance and what is offered is more 3rd party or bolt on\nG2.com, abel S, Data analyst, 4.5, Integration with Github repos and CI/CD pipelines. Also having different ways to collaborate with team members and stakeholders (repos, workspace, Databricks SQL), Depending on cluster settings and number of users running queries at the same time and the number of jobs running at the same time, it can sometimes take time to run queries\nG2.com, Micheal L, analystics engineer, 5, Best Data Engineering features. Love it., Very expensive. Wish it would cost less.\nG2.com, No name, nan, 5, Databricks Lakehouse brings together BI, SQL-based data warehouses, data governance, processing and DAG creation, and ML (and more) under one umbrella. Competitors like Dataiku, Snowflake, Cloudera, etc. really can't compete and don't bring the same value proposition out of the box., Unless you're willing to keep your clusters that serve DB SQL queries spun up at all times, the \"first query wait\" can be quite annoying. However, using Databricks in its serverless form (managed environments) would mitigate that drawback.\nG2.com, Paul b, Full Stack Data Scientist, 4, Scheduled jobs, pre-installed ML environments, abundance of documentation and example use cases. There are a lot of best practices available through the Spark AI conference also., Their Spark install is not always compatible with 3rd party tools (ex: geospatial) causing a delay in some package availability until an extra release. Some gotachs with distributed model training (Horovod).\nG2.com, No name, nan, 5, Integarted UI for SQL , Spark , Python . This makes the job really seamless, Nothing as of now . Enjoying the product\nG2.com, \nNeelakanta P., sr Data Engineer, 4.5, Databricks lakehouse is one shop stop for analytics with Big data case, Databricks have many releases one going and that might create a need for customer to constantly updates there infrastructure\nG2.com, No name, nan, 5, Lesser Running time, handling big datsets, user-friendly platform, Cluster active time is less, active time should be increased when not in use\nG2.com, \nHerivelton A., Data engineer, 5, Delta lake house implementation, enabling and democratizing the data acquisition and consumption. The delta sharing initiative is so disrupting to creating data assets., It seems", "doc_id": "28142fd1-8d5d-43ef-a8b5-9aad252d4444", "embedding": null, "doc_hash": "454e2934c2e5211db3e6a88e5c25b2c6ea59efc2588ebf7a657a54bf091cf662", "extra_info": null, "node_info": {"start": 44535, "end": 48488, "_node_type": "1"}, "relationships": {"1": "758d1b0b-ef44-40c6-922f-00ef33f63983", "2": "2e49a6f3-6b45-4d22-82b9-6af69ace3a5e", "3": "fe7fa115-165b-4947-823f-e35939ebe9da"}}, "__type__": "1"}, "fe7fa115-165b-4947-823f-e35939ebe9da": {"__data__": {"text": "delta sharing initiative is so disrupting to creating data assets., It seems that we could have an easier way to suggest improvements or new features needed in the daily activities. Overall good features.\nG2.com, \nJulie-Anne B., Fraud and Crime specialist, 4.5, I really like that we can have queries. We have only started to review them properly for each account, but there are limitless opportunities once we start digging., I would like to access more access to creating queries and investigating several things. Sometimes I get glitches with the account, it freezes and I can't see the information.\nG2.com, \nBruno A., executive manager, 4.5, Integration and flebility on the daily base speed up the development and delivery. Data lake and data sharing is amazing and away from the competitors in the market., It should be ease to get improvements in the platform and embedded reports for daily basis usage.\nG2.com, Kavya P, Freelance Writer, 5, It offers multi-cloud support across AWS, GCP, and Azure\n\nNew features are aggressively released every quarter.\n\nThe UI is relatively user-friendly compared to AWS EMR or other similar products, Errors are not entirely straightforward sometimes.\n\nRegular Maintenance can sometimes cause downtime or failure, which can be solved with proper scheduling and retry mechanisms.\nG2.com, Mayank S, Domain architect, 5, A single unified platform that can be used for both real-time and batch data ingestion patterns to fulfill both BI and advanced analytics use cases., Nothing. I absolutely love the platform.\nG2.com, Colin M, Principal Sales Engineer - Data Enrichment, 5, Easy to use for a SQL only technical person., I would like SQL query designer to make the text\nG2.com, \nGeoffrey F., Solution architect, 4.5, I love that Databricks abstracts away all of the administrative overhead of running spark clusters., I wish that spark could do run time partition elimination\nG2.com, Tejas Sai, Sr Data engineer, 5, Data bricks Lake House architecture seems promising, I don't see much video tutorials. If we have tutorials for free we can learn more\nG2.com, Mayur s, sr Consultant, 4.5, One platform to access Notebooks, tables, AI/Ml Platform, No debugger like other IDE's, difficult to navigate notebooks and functions\nG2.com, \nRobert T., Solution arch, 5, workload isolation is the best feature for our use case., serverless endpoint with AAD passthrough has few selections\nG2.com, \nMarcelo A., Data Eng, 4, Really helpful abstractions, intuitive UI and attentive support., Very hermetic environment. Could allow more integrations with outer platforms.\nG2.com, Alan B, nan, 5, Single pane of glass to create an end to end solution, No dislikes yet, some aspects of capability delivery are difficult to govern\nG2.com, \nPierre-Alain R., Data Analyst/ Scientist, 4, All integrated platform with different tools., More visible way to manage and maintain Delta lakes\nG2.com, Guilherme de Almeida G., PM, 5, The way that works with the delta format. Providing a lot of possibilities without the necessity to have a dedicated database administrator. It's also nice to talk about their flexibility, Sometimes the cluster management is not so well distributed, causing some necessity to restart the cluster. Maybe send some warnings before it gets non workable.\nG2.com, No name, nan, 5, Databricks is a great platform to bring all your data into a single location and provides tools for many personas to work with that data from BI to AI., There is a learning curve to using Databricks\nG2.com, No name, nan, 5, Has tools like AutoML which reduces human effort and increases better predictions and deeper understanding of the data, The platform can be slow sometimes. Other than that not major issues worth mentioning\nG2.com, No name, nan, 5, The platform integrates the best of the warehouse and lake.,", "doc_id": "fe7fa115-165b-4947-823f-e35939ebe9da", "embedding": null, "doc_hash": "a06f0e4327f78ccffc904170705eade921b1c322d3ded78c1cdb0d6101798311", "extra_info": null, "node_info": {"start": 48455, "end": 52293, "_node_type": "1"}, "relationships": {"1": "758d1b0b-ef44-40c6-922f-00ef33f63983", "2": "28142fd1-8d5d-43ef-a8b5-9aad252d4444", "3": "4e79713a-6e82-497a-a79f-7c97fc16f07c"}}, "__type__": "1"}, "4e79713a-6e82-497a-a79f-7c97fc16f07c": {"__data__": {"text": "No name, nan, 5, The platform integrates the best of the warehouse and lake., As of now, there is nothing to report on disadvantages.\nG2.com, No name, nan, 4, combines data warehousing with data lakes; ease of use and implementation; compatibility with BI tools, nothing i can think of - databricks is awesome\nG2.com, No name, nan, 4.5, For me, I like the data science and SQL platform best. They are extremely helpful for my job, allowing me to streamline my work and automate it using Jobs., Sometimes the platform can be a bit slow to react but I'm not sure if it's the cluster size or something is wrong with Databricks itself. Overall I didn't find many issues with the platform.\nG2.com, No name, nan, 4.5, How a steep learning curve Databricks is, I'm enjoying learning all the time with such great materials and people., Sometimes I feel documentation is a bit misleading. E.g. Pandas UDF + ML model combined - the functionality of both is amazing, but actually it's not clear how to use it\nG2.com, Hubert D., Consultant, 5, It is a one-stop shop for all. It is clearly the best data processing solution that I have ever used., There is still room for improvements - for example, when you deploy, it could be nice to set the configuration of DBFS storage (is it LRS or GRS, etc.). When VMs are deployed, there should be more options to configure hard drives. It is a minor issue related to administrative tasks, but anyway, it is the best lakehouse on the market today.\nG2.com, No name, nan, 4.5, I like how Data bricks is layed out. At first it can seem difficult to read, but from computer background i find it a great way to layout the information in an organized fashion., Sometimes Credit Files will pull not pull in the Credit Kyc section and will almost always pull in the Customer information Tab.\nG2.com, No name, nan, 5, One please with all nessarery fetaure.\n\n1. tracking\n\n2. storage of models and files related documentation like log, config file.\n\n3. validation of the model with meteric feature and plot crossponding to it and genrate the report from the experiments.\n\n4. Data callibation with data \ud83e\uddf1, SQL and other cloud providers., Anything which dislike is nothing tell yet, But If we can build something like feature where we can do more advanced anlaytics crossponding to parameters and meterics and generate the different plot from that tabuler data, like we have d-tale (github: https://github.com/man-group/dtale), beacuse I was running some simulation run with differnet experiments and then write the report crossponding with the experiments and with differnet signnificant plot, demonstrates the report write up.\nG2.com, Damon Wilder C., CTO, 4.5, Incredible support for Data Science, Machine Learning and SQL use cases all in one platform., Theoretically their SQL Engine may not scale, but I have not seem that at all.\nG2.com, No name, nan, 4, The slowly changing dimension features that comes out of the box with the lakehouse, Lake of UI/UX to have a moth user experience\nG2.com, Carissa T, BDA, 4, I like how granular we can get when running queries and reports for our business purposes, The user interface could be a little sleeker and more intuitive\nG2.com, \nPrashidha K., Optimisation Engineer, 4.5, Databricks had very powerful distributed computing built in with easy to deploy optimized clusters for spark computations. The notebooks with MLFlow integration makes it easy to use for Analytics and Data Science team yet the underlying APIs and CICD integrations make it very customizable for the Data Engineers to create complex automated data pipelines. Ability to store and query and manipulate massive Spark SQL tables with ACID in Delta Lake makes big data easily accessible to all in the organization., It lacks built in data backup features and ability to restrict data access to specific users. So if anyone accidentally deletes data from Delta Table or DBFS, the lost data cannot be retrieved unless we setup", "doc_id": "4e79713a-6e82-497a-a79f-7c97fc16f07c", "embedding": null, "doc_hash": "484ce6651b883f21981308b7654fc66deff82f96ac7572e21a88218c1afcd62a", "extra_info": null, "node_info": {"start": 52295, "end": 56254, "_node_type": "1"}, "relationships": {"1": "758d1b0b-ef44-40c6-922f-00ef33f63983", "2": "fe7fa115-165b-4947-823f-e35939ebe9da", "3": "97019ad3-abb7-41f6-a177-7762daf8013e"}}, "__type__": "1"}, "97019ad3-abb7-41f6-a177-7762daf8013e": {"__data__": {"text": "data from Delta Table or DBFS, the lost data cannot be retrieved unless we setup our own customized backup solution.\nG2.com, No name, nan, 5, Delta Lake , SQL Analytics , Optimized Photon engine, Notebook UI , performance for SQL analytics on huge volume on the fly aggregate calculations\nG2.com, No name, nan, 4, The ability to monitor and relaunch jobs from the phone is amazing. I don't need to be on my computer on the weekend to relaunch a failed job., I don't particularly appreciate how the mlflow menu is hidden from the left bar UI unless I enter a specific link that contains the ID of an experiment.\n\nFor instance, I cannot see anything in https://*******.cloud.databricks.com/#mlflow and I cannot see mlflow in the left bar unless I go to :\n\nhttps://*******.cloud.databricks.com/#mlflow/experiments/3817218/runs/172f6fcb9f144bbc93cc5b3b857c50f1\nG2.com, \nJoseph M., DOT, 5, An interface that is better than Jupyter notebooks that allows SQL, Scala, PySpark, Python, R and the ability to collabortate on notebooks, nan\nG2.com, Priyanka B, analyst, 5, I learned to datamine with Python on Databricks and I use it daily. It is a nice software, user friendly and easy to connect to multiple sources, The errors can be a little more explanatory than what it is currently.\nG2.com, \nNavisha S., Associate Data Science Engineer, 5, It's very useful when it comes to tracking performance of machine learning models. Acts like a dashboard that would otherwise have to be built from scratch., There aren't any major downsides but the model training part according to me is still better run locally for comfortable experiments\nG2.com, No name, nan, 4.5, MLFlow has been instrumental in providing a decoupled interface between training and prediction part of our ML pipelines where we can store model metadata as part of training cycle and then in prediction we are able to leverage and pick model with highest ROC or just latest by chronological sorting and overall just do good job in tracking our experiments., Sometimes slow to render in databricks environment as UI but that could be related to our databricks setup.\nG2.com, Omkar m, SDE, 4, The easy of use is the most useful feature i like about MLFlow, it can use locally without any need for deployment on any server, great UI which allows use to search through general experiments and flexibility of changing data stores., The UI design is in Django I think which is a bit laggy and slow improvement can be done on that side.\nG2.com, Stefan P, Lead data engineer, 5, Easy administration, easy to create jobs from notebooks, great development environment, new and exciting features coming., Taking away our dedicated customer service rep and replacing this with just a support GUI.\nG2.com, Vinit K, HSEO engineer, 3.5, One of the best utilities for packing code into reproducible runs and tuning the hyperparameters., Merge with Azure data bricks was not very smooth & giving problems while using GPU cores.\nG2.com, No name, nan, 5, \u00a0like how it forces the developer to follow a certain code style which can basically help maintain the codebase much easily over time and have a proper documentation over it., I think there could be improvements within the documentation over how to use MLflow within existing codebases.\nG2.com, No name, nan, 5, MLflow tracking has been a major advantage for keeping up the record of the results of the experiments we carry out on the data using different parameters. Tracking the results and parameters is very iseful for achieving the most optimized solution., One small counter point is that it is not an easy tool and requires all in depth knowledge for making the best use of it.\nG2.com, Gitesh K, Coursera Deep Learning Mentor, 4.5, The features. There are hell lot of features present on MLFlow, Haven't explored everything. But yeah, maybe better documentation.\nG2.com, \nJorge C., nan, 4.5,", "doc_id": "97019ad3-abb7-41f6-a177-7762daf8013e", "embedding": null, "doc_hash": "ac677ea9daadf03578c01105167893beadb5e54f1290379ca9e9467c828158da", "extra_info": null, "node_info": {"start": 56253, "end": 60141, "_node_type": "1"}, "relationships": {"1": "758d1b0b-ef44-40c6-922f-00ef33f63983", "2": "4e79713a-6e82-497a-a79f-7c97fc16f07c", "3": "9589d69f-c551-4155-8097-1658626b2946"}}, "__type__": "1"}, "9589d69f-c551-4155-8097-1658626b2946": {"__data__": {"text": "documentation.\nG2.com, \nJorge C., nan, 4.5, It is a highly adaptable solution for data engineering, data science, and AI, I wouldn't say I like the lack of an easier way to import personalized code files or libraries from notebooks.\nG2.com, Chen S, Lecturer in Artificial Intelligence, 5, Experiment management, and model deployment., Support for code engineering and version control.\nG2.com, Pavan kumar Y, Sr data eng, 5, It has got everything in it. IDE, Version Control, Scheduling whatnot., I didn't find something that discomforts me yet.\nG2.com, No name, nan, 4.5, The fact that you can store all your models at one place, The support for custom transforms isn't there\nG2.com, Deepa Ram S., Data analyst 2, 4.5, Easy to use multiple languages based command in same notebook. Direct connection to Redshift., Sometime it takes lot of time to load data. Should show better suggestions.\nG2.com, Ayush O, Data scientist, 4.5, Great for model refreshes and comparison, Ui and artifact loads can be improved...\nG2.com, \nStephen D., Senior Systems/Data Analyst, 4, It makes the power of Spark accessible and innovative solutions like Delta Lake., Fewer solutions that aren't wholly or partially on the cloud.\nG2.com, Debashis P., BI Development Manager, 4.5, Spark Distribution of query and speed of batch query so does performance, Interface can be make better and more intutive\nG2.com, \nRamavtar M., sse, 4.5, A single format to support all measure ML libraries such as Sklearn, Tensorflow, MXnet, Spark MLlib, Pyspark etc.\n\n2) Capabilities to deploy on Amazon Sagemaker with just one API call\n\n3) Flexibility to log all model params such as Accuracy, Recall, etc. along with Hyperparameter tuning support.\n\n4) A good GUI to compare and select the best models.\n\n5) Model registry to track Staging, Production, and Archived models.\n\n6) Python best API\n\n7) REST APIs supported.\n\n8) Available out of the box in Microsoft Azure., CI/CD pipeline is not supported in the open-source version\n\n2) Recent framework so not a very large community\n\n3) Dependent on many python libraries. It can be a problem while resolving dependencies in your existing setup.\nG2.com, \nChad F., VP & data head, 5, Incidentally, the thing I like most about Databricks isn't a product feature at all; I love Databricks's proactive and customer-centric service, always willing to make an exception or create a unique feature, all the while minimizing costs for the customer - as @Heather Akuiyibo & Shelby Ferson et al. have done for me and my former teams!, Broadening programming logic and syntax.\nG2.com, No name, nan, 4.5, Multiple people can write code in the same file at the same time. We use Databricks in Machine Learning., The cluster gets shut down after sometimes, leading to loss of data on the RAM\nG2.com, No name, nan, 5, Having a platform to share codebase with team members and run machine learning models on the cloud., Sometimes we have to restart clusters to fix memory errors, which leads to data loss.\nG2.com, No name, nan, 5, Machine learning model tracking and find best weight, Add support for other programming language like cpp\nG2.com, No name, nan, 4, Centralization and remote servers and API, Nothing specific. I like everything about mlflow.\nG2.com, \nianthe L., \nDigital Marketing Specialist, 5, It is great when you have large amount of data, excellent for collaboration, perfect for using with visualisation tools and functions with many programming languages., Difficult to get a grasp on how many applications and funcrions it has.\nG2.com, \nSomu S., Data engineer, 5, Interactive clusters, user friendly, excellent cluster management, Cluster takes some time to heat up on start, should support upsert without delta", "doc_id": "9589d69f-c551-4155-8097-1658626b2946", "embedding": null, "doc_hash": "e9807b7ba633b94b4ab3b55e07da9dc104e8c465952469711495fdd07638bfbe", "extra_info": null, "node_info": {"start": 60169, "end": 63890, "_node_type": "1"}, "relationships": {"1": "758d1b0b-ef44-40c6-922f-00ef33f63983", "2": "97019ad3-abb7-41f6-a177-7762daf8013e", "3": "f5d2dc23-f653-4730-8b4b-a47dcd9cc57d"}}, "__type__": "1"}, "f5d2dc23-f653-4730-8b4b-a47dcd9cc57d": {"__data__": {"text": "Cluster takes some time to heat up on start, should support upsert without delta as business need pure upserts too\nG2.com, \nAlvaro R., Data Engineer, 5, The different languages used for implementation.\n\nGreat user experience.\n\nEasy to understand and use.\n\nCreation of different tools inside such as clusters or database.\n\nEase of integration with other software such as azure services.\n\nGreat addition to your expertise if you manage to master it completely.\n\nIntegration of spark with the different languages.(Python, R, Scala), The documentation inside the portal isn't the best, find better support outside with search engines.\nG2.com, \nVikrant B., Sr Consultant, 4.5, DataBricks is a great analytics tool which provides lightening speed analytics and has given new abilities to Data Scientists. Additionally, our advanced analytics at scale has gone up 100 times., The learning curve is steep and people would need coding knowledge to work with Databricks. It can also be costly at times.\nG2.com, \nDouglas D., Head of data science, 4.5, It's like a Jupyter notebook but a lot more powerful and flexible. You can easily switch from Python to SQL to Scala from one cell to the next. With the Spark framework, you can preview your data processing tasks without having to build large intermediate tables., Need better support when it comes to troubleshooting spark applications. It shows a lot of information, but gives you little sense of how to apply it\nG2.com, No name, nan, 4.5, Good UI\n\n2. Good integrations with other applications/services.\n\n3. Faster and efficient.\n\n4. Updates are good., Need better support when it comes to troubleshooting spark applications. It shows a lot of information, but gives you little sense of how to apply itSometimes it take much time to load the Spark notebook.\n\n2. Sometimes having issues with interpreter settings while running the notebook.\nG2.com, No name, nan, 4.5, It has significantly improves its performance with the Databricks Inout and Ouput Module. WIth better support for spark, it combines well with Microsoft Azure and Amazon AWS. It has faster execution and faster read write processes in its version 5., A few schema related queries are still on the slower side considering huge data clusters and the processing involved for those clusters.\nG2.com, No name, nan, 3.5, You can sync data from different systems all onto this one platform and everything can be analyzed without switching programs since you can also use many different programming languages and reap the benefits of each such as SQL and Python. This makes it so much easier to work with large datasets. Very nice user interface too!, Very difficult to collaborate on projects using Databricks, it is its biggest downfall and in fact just almost outweighs the benefits. I also don't think their customer support is the best, have had some challenges with that. Otherwise a very good product.\nG2.com, No name, nan, 4.5, The system architects data delivery in a very easy to use and intuitive way. Non-data-savvy individuals are able to access the insights that data can provide and the support around the product is 2nd to none!, Cost is always a concern when working with a system like this, but if the organization can afford it the insights and ease of use are worth it\nG2.com, Reeham N., Lead Data Scientist/Analytics Manager, 2.5, The ability to automatically load data from aws into databricks for collection, and analysis. It does a great job of customizing the notebooks and nodes that can be created., This tool is not optimized for R users. They were supposed to have an update Q1 for R studio but their help team informed me that this was no longer a priority. Even so, heavy AI and machine learning algorithms are not optimized for use here besides the usual theano and keras on python. Its also difficult to run analyses on a large volume of data without sampling which defeats the purpose.\nG2.com, Shristi K, Incident Problem Manager, 5, This is really a nice user friendly platform., I have not", "doc_id": "f5d2dc23-f653-4730-8b4b-a47dcd9cc57d", "embedding": null, "doc_hash": "29504a15f3abaf33fc29339dd6373c8f781e5f2411ea90c26615b045c7c81146", "extra_info": null, "node_info": {"start": 63863, "end": 67889, "_node_type": "1"}, "relationships": {"1": "758d1b0b-ef44-40c6-922f-00ef33f63983", "2": "9589d69f-c551-4155-8097-1658626b2946", "3": "e32c5fc2-09b2-4a9e-9174-bcac03c84bdf"}}, "__type__": "1"}, "e32c5fc2-09b2-4a9e-9174-bcac03c84bdf": {"__data__": {"text": "Incident Problem Manager, 5, This is really a nice user friendly platform., I have not found any glitches. It is really good.\nG2.com, No name, nan, 5, It is no surprise that Spark is one of the fastest growing technologies today and databricks provides a platform that makes transitioning to Spark easier. I like how there are also tutorials for people who are just beginning to learn make the onboarding to Spark easier. Love the connection with Github so there is the ease of sharing the projects with the world. Love the ease of pipeline creation in whatever language that one is comfortable in., Could give a bigger size of the cluster for individuals and students so that they can explore it to a bigger extent. Also, technical support is not good enough. I also do not like there is no way you can collaborate on a project. Visualization could be better.\nG2.com, No name, nan, 4, Overall, since we brought in DataBricks, our ability to use DataScience and advacned analytics at scale has gone up 100 times. Our experience has been awesome, and I know we're not even pushing the bounds of what it can do, Overall Databricks has worked well, though it has taken longer than we anticipated to get it up and running.\nG2.com, Shivi G, Partner Account Lead, 2.5, Get the data you need right at your finger tips, Data can be hard to pull (weite code in SQL) versus other platforms\nG2.com, No name, nan, 4, Databricks is my company's one stop shop for interacting with our expansive datasets. Databricks has been great so far for navigating our complex storage systems, accessing data, and being able to analyze it without having to switch programs. One of the best features of Databricks is that you can use a variety of languages within the program to complete all steps needed to fully use the data. I like being able to switch seamlessly between python, spark, and sql to work on big data sets.\n\nAdditionally, the formatting of the workbook is awesome. You can create new spaces below your original data view in order to perform the analysis., When using Databricks on a cloud-based server it is sometimes difficult to search through the folders and tables to find exactly what you need. I think it would be beneficial if they created an S3 browser to speed up this process.\nG2.com, No name, nan, 4, I love how accurate and quick databricks is. Once I started working with databricks, I couldn\u2019t fathom doing data analyzation and comparisons without it., nan\nG2.com, Tommy O, nan, 5, Software was great and easy.It was fun to use., Nothing at all.Ircwas understandable and fun.\nG2.com, No name, nan, 5, Databricks is a great tool to integrate queries from MySQL, Redshift, Python, and Adobe Clickstream data and the queries run pretty fast too., It takes some coding knowledge to set up and a good Data Engineering team.\nG2.com, No name, nan, 3.5, One of the best features on the platform is the ability to use a notebook environment and attach them to different Spark interpreters. I do like the user interface and the easy access to browsing files stored on the cluster., Controls are not really developed, it is hard to optimize runtimes. Databricks is expensive and we can not say it is the best for price/value.", "doc_id": "e32c5fc2-09b2-4a9e-9174-bcac03c84bdf", "embedding": null, "doc_hash": "7c7cec2483ae2315b066d5dfb8adc8b6501846b74e4bd9b78d43abb05362b8c5", "extra_info": null, "node_info": {"start": 67870, "end": 71088, "_node_type": "1"}, "relationships": {"1": "758d1b0b-ef44-40c6-922f-00ef33f63983", "2": "f5d2dc23-f653-4730-8b4b-a47dcd9cc57d"}}, "__type__": "1"}}, "docstore/ref_doc_info": {"758d1b0b-ef44-40c6-922f-00ef33f63983": {"doc_ids": ["db1785f6-757e-4817-95f1-3c68a6b14df7", "d9064537-a6bf-4a34-a883-0db1a39fd2b2", "ac137145-15a8-4587-9745-0a50eb1a49ff", "e09ee097-cc44-4337-9851-729475b3188e", "1b0c5199-9475-474f-ab5b-ef7aadd12087", "64017536-5407-424e-ac7c-667ab0323871", "067b5d34-dfe4-43f9-a607-5fa6aea16e59", "6bb4664b-7a78-436b-b496-e99cfd7d3f74", "57d479ac-14b0-4150-97d8-2e4981940c84", "2a102d81-3648-4c2c-9708-087e2f32622b", "2e49a6f3-6b45-4d22-82b9-6af69ace3a5e", "28142fd1-8d5d-43ef-a8b5-9aad252d4444", "fe7fa115-165b-4947-823f-e35939ebe9da", "4e79713a-6e82-497a-a79f-7c97fc16f07c", "97019ad3-abb7-41f6-a177-7762daf8013e", "9589d69f-c551-4155-8097-1658626b2946", "f5d2dc23-f653-4730-8b4b-a47dcd9cc57d", "e32c5fc2-09b2-4a9e-9174-bcac03c84bdf"], "extra_info": {}}}} \ No newline at end of file diff --git a/index_v2/Databricks/index_store.json b/index_v2/Databricks/index_store.json new file mode 100644 index 0000000000000000000000000000000000000000..e15c8335f499dea0184f43733852c281e43cb3a1 --- /dev/null +++ b/index_v2/Databricks/index_store.json @@ -0,0 +1 @@ +{"index_store/data": {"227cce90-9742-4a92-87ac-4949fc911df5": {"__type__": "vector_store", "__data__": "{\"index_id\": \"227cce90-9742-4a92-87ac-4949fc911df5\", \"summary\": null, \"nodes_dict\": {\"db1785f6-757e-4817-95f1-3c68a6b14df7\": \"db1785f6-757e-4817-95f1-3c68a6b14df7\", \"d9064537-a6bf-4a34-a883-0db1a39fd2b2\": \"d9064537-a6bf-4a34-a883-0db1a39fd2b2\", \"ac137145-15a8-4587-9745-0a50eb1a49ff\": \"ac137145-15a8-4587-9745-0a50eb1a49ff\", \"e09ee097-cc44-4337-9851-729475b3188e\": \"e09ee097-cc44-4337-9851-729475b3188e\", \"1b0c5199-9475-474f-ab5b-ef7aadd12087\": \"1b0c5199-9475-474f-ab5b-ef7aadd12087\", \"64017536-5407-424e-ac7c-667ab0323871\": \"64017536-5407-424e-ac7c-667ab0323871\", \"067b5d34-dfe4-43f9-a607-5fa6aea16e59\": \"067b5d34-dfe4-43f9-a607-5fa6aea16e59\", \"6bb4664b-7a78-436b-b496-e99cfd7d3f74\": \"6bb4664b-7a78-436b-b496-e99cfd7d3f74\", \"57d479ac-14b0-4150-97d8-2e4981940c84\": \"57d479ac-14b0-4150-97d8-2e4981940c84\", \"2a102d81-3648-4c2c-9708-087e2f32622b\": \"2a102d81-3648-4c2c-9708-087e2f32622b\", \"2e49a6f3-6b45-4d22-82b9-6af69ace3a5e\": \"2e49a6f3-6b45-4d22-82b9-6af69ace3a5e\", \"28142fd1-8d5d-43ef-a8b5-9aad252d4444\": \"28142fd1-8d5d-43ef-a8b5-9aad252d4444\", \"fe7fa115-165b-4947-823f-e35939ebe9da\": \"fe7fa115-165b-4947-823f-e35939ebe9da\", \"4e79713a-6e82-497a-a79f-7c97fc16f07c\": \"4e79713a-6e82-497a-a79f-7c97fc16f07c\", \"97019ad3-abb7-41f6-a177-7762daf8013e\": \"97019ad3-abb7-41f6-a177-7762daf8013e\", \"9589d69f-c551-4155-8097-1658626b2946\": \"9589d69f-c551-4155-8097-1658626b2946\", \"f5d2dc23-f653-4730-8b4b-a47dcd9cc57d\": \"f5d2dc23-f653-4730-8b4b-a47dcd9cc57d\", \"e32c5fc2-09b2-4a9e-9174-bcac03c84bdf\": \"e32c5fc2-09b2-4a9e-9174-bcac03c84bdf\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} \ No newline at end of file diff --git a/index_v2/Databricks/vector_store.json b/index_v2/Databricks/vector_store.json new file mode 100644 index 0000000000000000000000000000000000000000..77062beb3efc7c3550c395590650449e2550cf99 --- /dev/null +++ b/index_v2/Databricks/vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {"db1785f6-757e-4817-95f1-3c68a6b14df7": [-0.02039751037955284, -0.011658658273518085, -0.0034972545690834522, -0.05636731535196304, -0.0010126788401976228, 0.02132965438067913, 0.0029095239005982876, -0.04027411714196205, -0.017313210293650627, -0.051624346524477005, 0.0017563380533829331, 0.013296764343976974, -0.005716237705200911, -0.014982849359512329, -0.00401301821693778, 0.012015066109597683, 0.01651814579963684, -0.006178882904350758, 0.002251539845019579, -0.01237147394567728, -0.028731977567076683, -0.017340626567602158, -0.02083616703748703, 0.0029317995067685843, -0.025332393124699593, 0.0101576317101717, 0.0036977343261241913, -0.017751865088939667, -0.002609661314636469, 0.021590106189250946, 0.01642218977212906, -0.008526379242539406, -0.026058916002511978, -0.018505806103348732, -0.020589422434568405, 0.008115138858556747, -0.0029849179554730654, 0.000508052937220782, 0.010356397368013859, 0.007895810529589653, 0.02219325862824917, -0.016792304813861847, -0.007518840488046408, -0.0013022604398429394, -0.02079504355788231, 0.024057548493146896, -0.009410545229911804, -0.005651124753057957, -0.009794369339942932, 0.00278443843126297, -0.00036347631248645484, 0.003954759333282709, -0.02037009410560131, 0.007148724514991045, 0.0067546190693974495, -0.014982849359512329, 0.007710752543061972, -0.0013819382293149829, 0.013248786330223083, -0.001847153645940125, 0.0053495485335588455, 0.0006639814819209278, -0.013612048700451851, -0.007333782501518726, -0.021178867667913437, -0.021699771285057068, 0.004146671388298273, 0.009355712682008743, 0.006017813924700022, 0.0036017782986164093, 0.01651814579963684, 0.022508542984724045, 0.011672365479171276, 0.0008833095198497176, -0.01331047248095274, -0.0349828265607357, -0.012364620342850685, -0.0008070587646216154, 0.002147016115486622, 0.0061514670960605145, -0.0003568365063983947, -0.006548999343067408, -0.00016492442227900028, -0.012789567932486534, 0.017546245828270912, 0.04693620651960373, -0.01695680245757103, 0.0036326211411505938, -0.032679881900548935, -0.014105536974966526, -0.019520198926329613, -0.017066465690732002, 0.02614116482436657, 0.003711442230269313, 0.009986281394958496, 0.014434528537094593, 0.035503730177879333, 0.007628504652529955, -0.0053255595266819, -0.018163105472922325, -0.010342689231038094, 0.004146671388298273, -0.03832758218050003, -0.01894446276128292, -0.02180943451821804, -0.00689169904217124, 0.021576398983597755, -0.00704591441899538, 0.020068518817424774, 0.02379709668457508, -0.0024108951911330223, 0.02233033999800682, -0.013344742357730865, -0.037039026618003845, 0.00704591441899538, -0.016353650018572807, 0.019479073584079742, -0.05472235381603241, -0.005843036808073521, 0.011199439875781536, 0.03048660233616829, 0.014694981276988983, 0.026963645592331886, -0.01991773024201393, 0.012165853753685951, 0.00434543751180172, 0.008519524708390236, -0.015695665031671524, 0.03243313729763031, -0.0010675108060240746, -0.00020390657300595194, 0.02704589255154133, 0.02171347849071026, -0.0016389632364735007, -0.03007536195218563, 0.0023337877355515957, -0.014969141222536564, 0.00825907289981842, -0.005479774903506041, -0.019163791090250015, 0.015517461113631725, 0.013221370056271553, 0.002080189762637019, -0.03377652168273926, -0.009389983490109444, 0.025538012385368347, -0.006730630062520504, 0.026045208796858788, 0.01595611684024334, -0.020150765776634216, 0.012337204068899155, -0.03007536195218563, -0.016079489141702652, 0.01991773024201393, -0.0033533205278217793, -0.005877307150512934, 0.0027296063490211964, 0.015037680976092815, -0.019999979063868523, 0.0006729773594997823, 0.009410545229911804, 0.02712814137339592, -0.005034264642745256, -0.005843036808073521, 0.0028615458868443966, 0.027018476277589798, 0.011028089560568333, -0.03890331834554672, -0.00449279835447669, -0.0069328234530985355, 0.016230277717113495, 0.05091152712702751, -0.028677145019173622, 0.029965698719024658, 0.017573662102222443, -0.009204925037920475, 0.014352280646562576, 0.004321448504924774, -0.012871815823018551, -0.008074014447629452, 0.014667565003037453, -0.02128853090107441, 0.013015749864280224, 0.01647702232003212, -0.010322127491235733, -0.033584609627723694, 0.006226860918104649, -0.012954064644873142, -0.002061341190710664, -0.02523643709719181, 0.017820406705141068, -0.0021058921702206135, -0.042357735335826874, -0.026004085317254066, -0.6233303546905518, -0.007518840488046408, 0.014681273140013218, -0.015736788511276245, -0.0101576317101717, -0.013248786330223083, 0.026305660605430603, -0.013858792372047901, 0.0009878331329673529, 0.007655920460820198, 0.0007526551489718258, 0.0020236442796885967, 0.0019619581289589405, -0.01594240963459015, -0.03421517834067345, -0.007511986419558525, 0.021219991147518158, -0.007786146365106106, -0.023056862875819206, 0.016134321689605713, -0.02231663092970848, 0.019561322405934334, -0.014859477058053017, -0.005438650958240032, -0.011535285972058773, -0.008807392790913582, 0.026936229318380356, 0.009136385284364223, 0.008471546694636345, 0.015065097250044346, -0.05145984888076782, 0.0025051378179341555, 0.04038378223776817, -0.009746391326189041, 0.032213810831308365, -0.016243984922766685, -0.010815615765750408, 0.03427001088857651, 0.01603836566209793, 0.03871140629053116, -0.041370756924152374, -0.003089441452175379, 0.01993143931031227, 0.034708667546510696, -0.004184368532150984, -0.010349543765187263, 0.016216568648815155, -0.008786831051111221, -0.021987639367580414, 0.0033550341613590717, -0.006768327206373215, -0.010843031108379364, -0.011473599821329117, 0.0007003933424130082, -0.0003388447221368551, -0.0008704582578502595, 0.02570250816643238, -0.007793000433593988, 0.012912940233945847, 0.008533232845366001, 0.01643589697778225, -0.0032933480106294155, -0.0009407118195667863, -0.06322132050991058, -0.055462587624788284, 0.01378339808434248, -0.007450300268828869, 0.00051276502199471, 0.014434528537094593, -0.024386540055274963, 0.01784782111644745, -0.017765574157238007, 0.02806028537452221, -0.011782029643654823, 0.020918413996696472, 0.004177514463663101, 0.033694274723529816, 0.0062302881851792336, -0.005849890876561403, 0.027690168470144272, 0.005164490547031164, -0.024496203288435936, -0.013851938769221306, -0.015846453607082367, 0.014914308674633503, 0.02708701603114605, -0.016641518101096153, -0.017080172896385193, 0.006086354143917561, 0.01093213353306055, 0.01934199407696724, 0.03139133006334305, -0.0022292642388492823, -0.045839566737413406, 0.010692243464291096, 0.03923230990767479, 0.001857434632256627, -0.006778608076274395, -0.027923205867409706, -0.023632599040865898, -0.0457024872303009, -0.025538012385368347, 0.002715898444876075, -0.012755298055708408, 0.009204925037920475, 0.004808082710951567, -0.01141191367059946, -0.004873195663094521, 0.02622341178357601, -0.02413979545235634, -0.019520198926329613, -0.011377643793821335, -0.02082245796918869, -0.012227539904415607, 0.0016775170806795359, -0.025318684056401253, 0.014763521030545235, -0.011706636287271976, 0.0013014036230742931, -0.03931455686688423, -0.011459891684353352, 0.008574357256293297, -0.0004767815407831222, -0.014215201139450073, -0.0014796077739447355, 0.018190521746873856, 0.016737474128603935, 0.00749827828258276, 0.002241258742287755, 0.006696360185742378, 0.0019756662659347057, 0.015037680976092815, 0.010047967545688152, 0.007669628597795963, 0.01791636273264885, 0.022974615916609764, -0.0025856723077595234, 0.001149758929386735, 0.00725153461098671, -0.03588755428791046, -0.007237826474010944, -0.012542824260890484, 0.02376968041062355, -0.0022378317080438137, -0.013132268562912941, -0.029965698719024658, -0.022577082738280296, 0.017080172896385193, -0.006281693000346422, -0.0016038365429267287, -0.032213810831308365, -0.008046599105000496, -0.0063879298977553844, 0.029801201075315475, 0.0063879298977553844, 0.0013605194399133325, 0.0016835143323987722, -0.031309083104133606, -0.01691567711532116, -0.030239857733249664, -0.012213831767439842, 0.016792304813861847, -0.005308424588292837, -0.011267979629337788, -0.01161753386259079, -0.02323506772518158, -0.009849200956523418, -0.010616849176585674, -0.011021235957741737, -0.033639442175626755, 0.021919099614024162, -0.022590791806578636, 0.006298827938735485, 0.024592159315943718, -0.035585980862379074, 0.010582579299807549, -0.010020551271736622, -0.011836862191557884, 0.0011000673985108733, -0.0092391949146986, 0.015490044839680195, 0.030651098117232323, -0.005075388588011265, -0.012165853753685951, 0.029883449897170067, 0.014242616482079029, 0.020164474844932556, 0.007580526638776064, -0.015106220729649067, 0.007066476158797741, -0.013008896261453629, 0.03451675549149513, -0.006223434116691351, 0.00850581657141447, -0.004626451525837183, 0.0033841636031866074, -0.01738175004720688, -0.01019875518977642, -0.022412586957216263, 0.016792304813861847, 0.010061675682663918, 0.03237830847501755, -0.00344584952108562, -0.007998621091246605, -0.0001891276187961921, -0.012741589918732643, 0.025962959975004196, -0.01595611684024334, 0.02367372438311577, -0.025784756988286972, 0.001043521799147129, -0.002518845722079277, -0.008649750612676144, -0.01784782111644745, -0.005572303663939238, 0.01846468262374401, -0.011000673286616802, 0.010891009122133255, -0.018779966980218887, 0.0006806880701333284, 0.010116507299244404, 0.014804644510149956, 0.02856748178601265, -0.006024667993187904, 0.01017819344997406, 0.016189154237508774, -0.010897863656282425, 0.02082245796918869, 0.013043166138231754, -0.028348153457045555, 0.01383137609809637, 0.03108975477516651, 0.005904722958803177, -0.013193954713642597, 0.045318663120269775, 0.0246881153434515, 0.021644938737154007, -0.028978722169995308, 0.019040418788790703, -0.01840985007584095, -0.004071277566254139, 0.015147345140576363, 0.01043179165571928, -0.028704561293125153, 0.01189854834228754, 0.018684010952711105, 0.016326233744621277, 0.0165729783475399, -0.016285110265016556, 0.009115822613239288, -0.01691567711532116, 0.008375590667128563, -0.011350227519869804, 0.004557911306619644, 0.022385170683264732, -0.024386540055274963, 0.010308419354259968, 0.031309083104133606, 0.009355712682008743, 0.01691567711532116, 0.02759421244263649, 0.006857429165393114, 0.015695665031671524, -0.012426306493580341, 0.04167233407497406, -0.020109642297029495, -0.01383823063224554, -0.010774491354823112, -0.009369420818984509, -0.0237011406570673, -0.008217948488891125, -0.025908129289746284, -0.017340626567602158, -0.016353650018572807, -0.021055495366454124, 0.0003602634824346751, -0.012583947740495205, 0.033118538558483124, 0.0029420803766697645, 0.02663465216755867, -0.005387245677411556, -0.025894420221447945, 0.0318848192691803, 0.00725153461098671, -0.0011052078334614635, -0.015298132784664631, -0.02711443230509758, 0.0005110515630804002, -0.007128162309527397, 0.014132952317595482, 0.004297459498047829, -0.011432475410401821, -0.0077313147485256195, 0.012515407986938953, -0.01383823063224554, 0.014722396619617939, 0.04789576679468155, -0.013982164673507214, -0.0011429048608988523, -0.0010340976295992732, 0.027416009455919266, 0.01287867035716772, -0.005760788917541504, -0.02947220951318741, 0.028814226388931274, -0.016668934375047684, 0.0008901635301299393, -0.006943104322999716, -0.00021397338423412293, -0.033639442175626755, 0.004924600478261709, -0.011603825725615025, -0.021617522463202477, -0.006545572075992823, -0.01091157179325819, 0.014832060784101486, 0.004626451525837183, -0.006096635013818741, 0.01695680245757103, 0.02671690098941326, -0.028814226388931274, -0.021124035120010376, -0.0024554464034736156, 0.032213810831308365, 0.07934193313121796, 0.0027638764586299658, -0.019054125994443893, 0.02366001531481743, -0.01788894645869732, 0.010260441340506077, -0.0169293861836195, -0.026333076879382133, 0.04413977637887001, -0.00704591441899538, -0.0069465311244130135, 0.002450305735692382, 0.02075391821563244, 0.00028337014373391867, 0.004208357539027929, 0.01596982590854168, -0.014804644510149956, -0.009568187408149242, -0.014146660454571247, 0.010390667244791985, -0.008903348818421364, 0.009760099463164806, 0.0232761912047863, 0.008971888571977615, 0.050226129591464996, 0.018505806103348732, 0.02762162871658802, 0.010966403409838676, 0.008403006941080093, -0.01646331325173378, -0.010212463326752186, 0.013995872810482979, -0.006740911398082972, 0.022165844216942787, -0.014694981276988983, 0.022549668326973915, 0.017738157883286476, -0.01602465659379959, -0.005013702437281609, 0.028265904635190964, 0.0054489318281412125, 0.023920467123389244, 0.005363256670534611, 0.0015215885359793901, 0.016367357224225998, -0.019657278433442116, 0.015627125278115273, 0.02567509189248085, -0.027443425729870796, -0.011514724232256413, 0.012090460397303104, 0.008910203352570534, -0.00030307541601359844, 0.024592159315943718, -0.01705275848507881, 0.005514044780284166, 0.0015952690737321973, -0.010397521778941154, -0.0017854676116257906, -0.028265904635190964, -0.03098008967936039, 0.009520209394395351, 0.008670313283801079, -0.00583275593817234, -0.006542145274579525, -0.015448921360075474, -0.03259763494133949, -0.01138449739664793, -0.022686747834086418, 0.010822469368577003, -0.019067835062742233, -0.024921152740716934, -0.04361886903643608, 0.0160109493881464, 0.02610004134476185, 0.021000662818551064, 0.008190533146262169, -0.005428369622677565, 0.00024417383247055113, 0.008855370804667473, 0.007806708570569754, -0.01688826084136963, 0.0054489318281412125, -0.02864972874522209, -0.03161066025495529, -0.02271416410803795, -0.017107589170336723, -0.020712794736027718, -0.015490044839680195, 0.006367368157953024, -0.003827960230410099, -0.011213148012757301, -0.004324875306338072, 0.002645644824951887, 0.01045235339552164, 0.028677145019173622, 0.010993819683790207, 0.009609310887753963, 0.01522959303110838, -0.0246881153434515, 0.019958853721618652, -0.016860846430063248, -0.010966403409838676, -0.01237832847982645, 0.011507869698107243, -0.011514724232256413, -0.005191906820982695, -0.012268664315342903, 0.01111033745110035, -0.018697718158364296, 0.011980796232819557, -0.00803289096802473, 0.001980806700885296, -0.0021538701839745045, 0.023824511095881462, -0.012015066109597683, 0.0023115123622119427, 0.017573662102222443, -0.008300196379423141, -0.015832744538784027, 0.0024246033281087875, -0.026812857016921043, 0.041014350950717926, 0.037971172481775284, -0.012138438411056995, 0.034653834998607635, 0.008670313283801079, -0.02035638689994812, -0.031226834282279015, 0.012193270027637482, 0.009156947024166584, 0.0038656573742628098, -0.007840978913009167, -0.011953379958868027, -0.023372147232294083, 0.0011531858472153544, -0.002470867708325386, -0.007909518666565418, -0.015161053277552128, 0.01750512234866619, -0.032652467489242554, 0.022385170683264732, 0.01801231876015663, -0.011953379958868027, -0.01454419270157814, -0.0193968266248703, -0.013666880317032337, -0.006960239261388779, -0.0032727860379964113, 0.022385170683264732, -0.004777239635586739, -0.0024365978315472603, -0.021069202572107315, -0.022494835779070854, -0.0022806692868471146, -0.009958865121006966, 0.015681957826018333, -0.0014419107465073466, 0.056010905653238297, 0.017258377745747566, 0.029198050498962402, 0.019232330843806267, 0.007943788543343544, 0.011651803739368916, -0.01884850673377514, -0.015736788511276245, -0.009451668709516525, -0.03150099515914917, -0.005692248698323965, -0.0005166204064153135, 0.014708688482642174, 0.004057569429278374, -0.023358440026640892, -0.015627125278115273, 0.012186416424810886, 0.017093881964683533, 0.0032282350584864616, -0.011946526356041431, -0.01784782111644745, -0.030925258994102478, -0.01640848070383072, 0.028430402278900146, 0.0033516071271151304, 0.009026721119880676, -0.028814226388931274, 0.0019122665980830789, 0.02089099958539009, -0.013145976699888706, 0.03155582770705223, -0.0007749306387268007, 0.025044525042176247, 0.005486628971993923, 0.004900611471384764, 0.02182314358651638, 0.01235091220587492, -0.028951305896043777, 0.007655920460820198, -0.0386565737426281, -0.025017108768224716, 0.028704561293125153, 0.03281696140766144, 0.011542139574885368, 0.012268664315342903, 0.005726519040763378, -0.01427003275603056, 0.025839587673544884, -0.006603830959647894, -0.00871829129755497, 0.0016989357536658645, -0.030815593898296356, 0.009294027462601662, -0.03917747735977173, -0.01784782111644745, 0.025085648521780968, -0.024126088246703148, 0.017093881964683533, 0.005198760889470577, 0.033612027764320374, -0.017285794019699097, -0.017710741609334946, 0.019533906131982803, 0.0038039712235331535, 0.03980804607272148, 0.026812857016921043, 0.020945830270648003, 0.001751197618432343, 0.01237832847982645, -0.008814247325062752, -0.014886893332004547, 0.009876617230474949, -0.023975299671292305, 0.009979426860809326, 0.03528440371155739, -0.003322477685287595, -0.03698419779539108, -0.008334467187523842, -0.003397871507331729, -0.012679903768002987, -0.028265904635190964, 0.030815593898296356, -0.0016809439985081553, -0.0037285771686583757, -0.013941040262579918, -0.01787523739039898, 0.020959539338946342, 0.0120973140001297, -0.014324864372611046, -0.008074014447629452, -0.0028289894107729197, 0.0011506156297400594, 0.027799833565950394, 0.029965698719024658, -0.012782714329659939, 0.02083616703748703, -0.019547615200281143, -0.002076762728393078, -0.002242972142994404, 0.0011266266228631139, -0.02042492665350437, -0.01790265366435051, -0.0069465311244130135, 0.040054790675640106, -0.015586000867187977, 0.0008306194213218987, 0.018053442239761353, 0.009986281394958496, 0.003797117155045271, -0.0017597650876268744, -0.004955443553626537, 0.035174738615751266, -0.001730635529384017, -0.0049211736768484116, -0.00014639720029663295, 0.023454396054148674, 0.02564767561852932, -0.026922520250082016, -0.017299501225352287, 0.005006848834455013, -0.0011557561811059713, 0.0030585986096411943, 0.006634674035012722, -0.026360493153333664, -0.018656594678759575, -0.020082226023077965, 0.0018934181425720453, -0.008588064461946487, 0.02230292372405529, 0.004688137676566839, 0.007368052378296852, -0.03298145905137062, -0.010616849176585674, -0.0039993105456233025, -0.011192585341632366, -0.003673745319247246, 0.006261131260544062, 0.004838925786316395, -0.003540092147886753, 0.0113913519307971, -0.017697034403681755, -0.006548999343067408, 0.03298145905137062, 0.0020202172454446554, -0.041946493089199066, 0.017258377745747566, -0.020548298954963684, 0.0058635990135371685, 0.025428349152207375, -0.0030962955206632614, -0.018135689198970795, -0.014832060784101486, 0.013742274604737759, 0.0027707305271178484, 0.0043557183817029, -0.004756677430123091, -0.0007312363595701754, -0.003140846500173211, 0.012042482383549213, 0.0002803715178743005, -0.021590106189250946, 0.00917065516114235, -0.023838220164179802, 0.008567502722144127, 0.024386540055274963, -0.003779982216656208, -0.0051576364785432816, -0.027717584744095802, 0.00618573697283864, -0.002064768224954605, -0.037559933960437775, -0.0015824177535250783, -0.0184783898293972, -0.011555847711861134, -0.004369426518678665, -0.003845095168799162, 0.00627483893185854, -0.005010275635868311, -0.012289226055145264, 0.022371463477611542, -0.02032897062599659, 0.004780666437000036, 0.038519494235515594, 0.008135700598359108, 0.022919783368706703, 0.021069202572107315, -0.007258388213813305, -0.0246881153434515, -0.017244670540094376, -0.001943109673447907, -0.04551057517528534, -0.01602465659379959, -0.006504448130726814, 0.029801201075315475, 0.03196706622838974, -0.02461957558989525, -0.013989018276333809, -0.006590123288333416, -0.04416719079017639, -0.009616165421903133, -0.03838241100311279, 0.041836827993392944, 0.023426979780197144, 0.01111719198524952, 0.024413956329226494, 0.022069888189435005, 0.0066620903089642525, 0.01043179165571928, -0.021494150161743164, -0.005887588020414114, -0.018272770568728447, -0.00944481510668993, 0.029856033623218536, -0.008498962968587875, -0.05187108740210533, -0.014475652948021889, 0.00997257325798273, -0.0008477544179186225, 0.023056862875819206, -1.6211321053560823e-05, 0.0030311825685203075, -0.02622341178357601, 0.0040472885593771935, 0.021658647805452347, 0.0062439958564937115, 0.026319367811083794, 0.014434528537094593, -0.02714184857904911, 0.004434539470821619, 0.008444130420684814, -0.0018985585775226355, -0.004814936779439449, -0.00042409138404764235, 0.008265926502645016, 0.00041573806083761156, 0.008471546694636345, -0.02084987424314022, -0.005130220670253038, -0.01409182883799076, 0.016202861443161964, -0.010191901586949825, 0.01639477349817753, 0.008060306310653687, 0.042385149747133255, -0.018300186842679977, -0.029444793239235878, -0.0020750490948557854, 0.005174771882593632, -0.013461260125041008, -0.015572292730212212, 0.021137742325663567, -0.04353662207722664, 0.00666551711037755, -0.018039733171463013, 0.0032436565961688757, -0.00967785157263279, -0.007793000433593988, -0.004084985237568617, -0.0113913519307971, -0.010109653696417809, 0.000447223661467433, -0.01801231876015663, -0.00039860306424088776, 0.0022978042252361774, -0.004307740367949009, 0.005421515554189682, 0.009383128955960274, -0.0013031171401962638, 0.023426979780197144, -0.027991745620965958, 0.007402322255074978, 0.009801222942769527, 0.0038896463811397552, -0.020548298954963684, 0.010287857614457607, 0.02464699186384678, -0.00039153487887233496, 0.005373537540435791, 0.20112384855747223, 0.00013268919428810477, -0.0012465716572478414, 0.03432484343647957, 0.012131583876907825, 0.011782029643654823, -0.001970525598153472, 0.01409182883799076, -0.004633305594325066, -0.015462629497051239, 0.007669628597795963, 0.002364630810916424, -0.02078133448958397, -0.0026919094379991293, 0.024331707507371902, -0.008163116872310638, -0.021699771285057068, -0.02766275219619274, -0.003937624394893646, -0.0026644933968782425, -0.022974615916609764, -0.005938992835581303, -0.011439329944550991, 0.016120612621307373, 0.010815615765750408, 0.0038999272510409355, -0.01335159596055746, 0.0014084974536672235, 0.02568880096077919, 0.01383137609809637, -0.007402322255074978, 0.013193954713642597, -0.0039993105456233025, -0.01793006993830204, -0.009540771134197712, -0.012392035685479641, 0.017176128923892975, -0.016847137361764908, 0.0018300185911357403, 0.01886221393942833, -0.007210410200059414, 0.0002788722049444914, 0.018176814541220665, -0.02034267783164978, 0.012111022137105465, -0.005510617978870869, -0.01935570314526558, 0.0067100683227181435, 0.01643589697778225, 0.020589422434568405, -0.006905407179147005, -0.0011968801263719797, 0.0006082926993258297, 0.012515407986938953, -0.012727881781756878, -0.01450306922197342, -0.005829329136759043, -0.0015155912842601538, 0.003024328500032425, -0.001245714956894517, -0.01928716152906418, 0.0038793652784079313, -0.00013429560931399465, 0.015873869881033897, -0.036572955548763275, -0.01525700930505991, -0.018163105472922325, 0.05757362022995949, 0.014105536974966526, 0.018286477774381638, -0.0026062342803925276, -0.01045235339552164, -0.014928016811609268, -0.010891009122133255, -0.01651814579963684, -0.026017792522907257, 0.03827274963259697, 0.014928016811609268, 0.025990376248955727, 0.01042493712157011, 0.001121486071497202, -0.009602457284927368, -0.013879354111850262, -0.010212463326752186, -0.0020853301975876093, -0.022042471915483475, 0.02520902082324028, -0.01308429054915905, -0.011000673286616802, -0.02138448692858219, -0.014283740893006325, 0.0028444109484553337, -0.001980806700885296, -0.02227550745010376, 0.012638780288398266, 0.0016715198289602995, 0.0054489318281412125, 0.030294690281152725, -0.015188468620181084, -0.01994514651596546, -0.02914321795105934, 0.047182951122522354, 0.025496888905763626, 0.017546245828270912, -0.021905390545725822, -0.0024880028795450926, -0.0009407118195667863, 0.033008873462677, 0.0035914971958845854, -0.012700466439127922, 0.0014624727191403508, -0.04427685588598251, 0.011267979629337788, -0.001955104060471058, 0.01651814579963684, 0.013111705891788006, 0.010692243464291096, -0.029910866171121597, 0.003893073182553053, -0.01260451041162014, 0.011521577835083008, -0.026552405208349228, 0.019520198926329613, -0.01040437538176775, -0.02464699186384678, -0.02138448692858219, -0.005359829869121313, 0.020260430872440338, -0.021137742325663567, -0.013824522495269775, -0.003636048175394535, -0.0246881153434515, 0.023029448464512825, -0.002769016893580556, -0.028704561293125153, 0.015640832483768463, -0.009150093421339989, -0.01525700930505991, 0.009616165421903133, 0.004136390518397093, -0.002709044376388192, 0.01698421686887741, 0.022864950820803642, 0.005469493567943573, -0.01653185300529003, 0.018231645226478577, 0.0060041057877242565, -0.0035332380793988705, 0.012686758302152157, -0.022549668326973915, 0.0029832045547664165, 0.03542148321866989, -0.009616165421903133, -0.01932828687131405, 0.03054143488407135, -0.0045065064914524555, -0.01525700930505991, -0.015092512592673302, -0.0008057736558839679, 0.021411903202533722, -0.041453003883361816, 0.009150093421339989, 0.032762132585048676, 0.007923226803541183, -0.019150082021951675, -0.0032762130722403526, -0.17414648830890656, 0.0179849024862051, 0.016243984922766685, -0.018985586240887642, 0.03147357702255249, 0.02372855506837368, 0.0067888894118368626, -0.007237826474010944, -0.01159011758863926, -0.006257703993469477, -0.024112379178404808, 0.02423575147986412, -0.020438633859157562, 0.005058253649622202, 0.012220686301589012, -0.0031442735344171524, 0.0005264730425551534, 0.012001357972621918, 0.07895810902118683, 0.013488676398992538, 0.010068529285490513, -0.02319394424557686, -0.007176140323281288, 0.008725144900381565, 0.026346784085035324, -0.0094173988327384, -0.008615480735898018, 0.01882109045982361, 0.01649072952568531, -0.028320737183094025, 0.0023509226739406586, -0.009938303381204605, 0.025743631646037102, -0.018629178404808044, 0.02752567268908024, 2.3225964014272904e-06, 0.0018985585775226355, 0.002246399177238345, -0.008450984954833984, 0.009108969010412693, 0.01934199407696724, 0.012063044123351574, 0.014653856866061687, -0.011939671821892262, 0.024345416575670242, 0.027484549209475517, 0.012015066109597683, -0.02089099958539009, -0.0016663792775943875, -0.010322127491235733, 0.03136391565203667, -0.028238488361239433, 0.008581210859119892, -0.00893761869519949, 0.008574357256293297, 0.010788199491798878, -0.0077792927622795105, 0.03649070858955383, 0.008279634639620781, -0.035558562725782394, -0.004290605429559946, -0.00797805842012167, 0.014804644510149956, -0.009705266915261745, -0.007518840488046408, -0.04057569429278374, -0.0008644610061310232, 0.02667577750980854, 0.01525700930505991, 0.008841662667691708, 0.013440698385238647, -0.010342689231038094, -0.0023406418040394783, 0.0237011406570673, -0.009252903051674366, 0.009136385284364223, -0.024605868384242058, 0.00212816777639091, 0.03243313729763031, 0.008841662667691708, 0.005191906820982695, 0.021576398983597755, 0.006446189247071743, -0.00458190031349659, -0.011220001615583897, -0.009259756654500961, 0.012844400480389595, 0.007532548625022173, -0.02711443230509758, -0.01037695910781622, 0.0056237089447677135, -0.023166527971625328, 0.007347490638494492, -0.009547624737024307, -0.0006245709373615682, 0.01639477349817753, 0.030651098117232323, -0.013002042658627033, 0.015736788511276245, -0.02426316775381565, 0.0076970444060862064, 0.015092512592673302, -0.013385866768658161, 0.02179572731256485, 0.03835499659180641, 0.025579135864973068, 0.00843727681785822, 0.005181625485420227, 0.034242596477270126, -0.0007141013629734516, -0.014379696920514107, -0.009095260873436928, 0.03975321352481842, -0.008101430721580982, 0.009095260873436928, 0.028005452826619148, -0.021370779722929, -0.021151451393961906, 0.007093892432749271, -0.0003024328616447747, 0.05570932850241661, -0.0198903139680624, -0.0058635990135371685, 0.017655909061431885, -0.008039744570851326, -0.009088407270610332, -0.11174765229225159, -0.02766275219619274, 0.013317326083779335, 0.014119244180619717, -0.012316642329096794, 0.008882787078619003, -0.00969841331243515, 0.032625049352645874, -0.00967785157263279, 0.024825196713209152, -0.012988334521651268, -0.014859477058053017, 0.012837545946240425, 0.008930765092372894, 0.0037525661755353212, -0.0032385161612182856, 0.00421863840892911, 0.004681283608078957, -0.010006843134760857, 0.021919099614024162, -0.0003669033176265657, -0.001392219215631485, 0.009513354860246181, -0.0003247083513997495, -0.007847832515835762, -0.013851938769221306, -0.024592159315943718, 0.015723081305623055, 0.013975310139358044, 0.0029900583904236555, 0.015901286154985428, -0.019067835062742233, 0.010795053094625473, -0.029170634225010872, -0.011055505834519863, -0.0160109493881464, -0.00688141817227006, -0.011014381423592567, 0.009705266915261745, -0.05280323326587677, 0.0065627070143818855, -0.007285804487764835, 0.014640148729085922, -0.018985586240887642, 0.014434528537094593, 0.005565450061112642, -0.031172001734375954, 0.027004769071936607, 0.0016261120326817036, -0.005092523526400328, -0.0070253522135317326, -0.004647013731300831, 0.008080868981778622, -0.017354333773255348, 0.028265904635190964, -0.010246733203530312, 0.019232330843806267, 0.005411234684288502, -0.01845097355544567, -0.012254956178367138, -0.0017957485979422927, -0.0036120591685175896, -0.004204930271953344, 0.009602457284927368, 0.008882787078619003, 0.005387245677411556, -0.00798491295427084, -0.01409182883799076, -0.0012662769295275211, -0.0011429048608988523, -0.005613428074866533, 0.004071277566254139, -0.029362546280026436, 0.011706636287271976, -0.00309286848641932, -0.007621650584042072, -0.018533222377300262, -0.017779281362891197, 0.00690883444622159, 0.019533906131982803, -0.017299501225352287, -0.008574357256293297, -0.005664832890033722, -0.029307713732123375, 0.018039733171463013, -0.006237142253667116, 0.0023629171773791313, -0.021521566435694695, 0.04219323769211769, -0.03989029303193092, 0.023961592465639114, 0.01695680245757103, 0.009931448847055435, -0.012583947740495205, -0.02087729051709175, 0.00964358076453209, 0.0080054746940732, -0.003322477685287595, 0.016710057854652405, -0.003221380989998579, -0.018779966980218887, -0.006449616048485041, -0.06568875908851624, 0.01653185300529003, 0.012947210110723972, 0.003989029210060835, 0.023893052712082863, -0.03158324211835861, -0.0013133981265127659, -0.004616170655936003, -0.004287178628146648, -0.0009569900576025248, -0.02378338761627674, 0.012042482383549213, -0.021932806819677353, -0.01983548328280449, -0.025565428659319878, -0.026456449180841446, 0.009842347353696823, -0.01888963021337986, 0.004592181649059057, 0.01642218977212906, -0.013913624919950962, 0.0034492765553295612, 0.012974626384675503, 0.007655920460820198, -0.027936913073062897, 0.0031939649488776922, 0.012460576370358467, 0.03761476278305054, 0.0011129186023026705, -0.029252881184220314, 8.524665463482961e-05, 0.0023029446601867676, 0.0001572136825416237, 0.00846469309180975, -0.007566818501800299, -0.025291267782449722, -0.01451677642762661, -0.004790947772562504, 0.013550362549722195, 0.0034732655622065067, -0.00013065441453363746, -0.018176814541220665, 0.041946493089199066, -0.010349543765187263, -0.004557911306619644, -0.013379012234508991, -0.013755982741713524, -0.029773786664009094, 0.00449279835447669, 0.00495201675221324, 0.014365988783538342, 0.005942420102655888, -0.013502384535968304, -0.046799127012491226, -0.011185731738805771, -0.014969141222536564, 0.022892367094755173, 0.0256065521389246, -0.006864283233880997, -0.013488676398992538, 0.05244682356715202, 0.002162437653169036, 0.005531179718673229, -0.01067853532731533, 0.002900956431403756, -0.008409860543906689, -0.02766275219619274, 0.008560649119317532, -0.010644265450537205, -0.02614116482436657, 0.013474968262016773, -0.024372832849621773, 0.025565428659319878, 0.019616154953837395, 0.024427663534879684, -0.0174228735268116, -0.012357765808701515, -0.006771754007786512, -0.011343373917043209, 0.028485232964158058, 0.01790265366435051, -0.010849885642528534, -0.028896473348140717, 0.01138449739664793, 0.02326248399913311, 0.00825907289981842, -0.016751181334257126, 0.0007800711318850517, -0.0007068190025165677, -0.002155583817511797, -0.012474284507334232, -0.013975310139358044, -0.016696348786354065, 0.017751865088939667, 0.001705789822153747, 0.02612745575606823, -0.016381066292524338, 0.0020630545914173126, 0.019204914569854736, 0.03451675549149513, -0.0007106743869371712, 0.010438645258545876, 0.010397521778941154, -0.014002726413309574, -0.016230277717113495, 0.008821100927889347, -0.00848525483161211, -0.005993824917823076, 0.014694981276988983, 0.022028762847185135, 0.02183685079216957, -0.014955433085560799, -0.0017314923461526632, 0.0037525661755353212, -0.007464008405804634, -0.007015071343630552, 0.0004065280081704259, -0.01038381364196539, -0.019218621775507927, 0.018725134432315826, 0.013324180617928505, 0.0356956422328949, 0.028978722169995308, -0.00803289096802473, 0.04367370158433914, 0.014324864372611046, 0.0013099712086841464, -0.007847832515835762, -1.4993130207585637e-05, -0.009485939517617226, 0.017559953033924103, 0.013420136645436287, 0.007793000433593988, -0.004958870820701122, -0.007285804487764835, -0.008156262338161469, -0.025304976850748062, 0.014653856866061687, 0.002028784714639187, 0.08427681028842926, 0.047210369259119034, -0.0369567796587944, 0.010808761231601238, -0.020534589886665344, 0.005490055773407221, 0.027978036552667618, -0.0018934181425720453, 0.014187784865498543, -0.02039751037955284, 0.005716237705200911, 0.005181625485420227, -0.023125404492020607, -0.008067160844802856, -0.012446868233382702, 0.0037457123398780823, 0.0073886145837605, 0.020054809749126434, -0.018286477774381638, -0.01401643455028534, 0.008896495215594769, -0.009437961503863335, 0.02223438397049904, -0.0011540426639840007, -0.03161066025495529, 0.00653871800750494, 0.034653834998607635, 0.008869078941643238, 0.008444130420684814, -0.02752567268908024, 0.015873869881033897, -0.01592870056629181, -0.020041102543473244, -0.0014547619502991438, -0.006069219205528498, 0.010822469368577003, -0.002705617342144251, -0.012940356507897377, 0.011281687766313553, 0.009259756654500961, 0.011034944094717503, 0.007909518666565418, -0.033228203654289246, -0.025784756988286972, 0.02464699186384678, 0.0015601422637701035, 0.0003583358193282038, -0.03103492222726345, -0.011946526356041431], "d9064537-a6bf-4a34-a883-0db1a39fd2b2": [-0.018792355433106422, -0.025384724140167236, 0.008725998923182487, -0.050413843244314194, -0.0009591076523065567, 0.02013271301984787, -0.0016780110308900476, -0.026136966422200203, -0.011557161808013916, -0.043082911521196365, -0.002277239691466093, 0.020296838134527206, 0.0004611752228811383, 0.007269386667758226, -0.005672583356499672, 0.0022994650062173605, 0.019024865701794624, 0.0048485370352864265, 0.009649204090237617, -0.004639961291104555, -0.011044270358979702, -0.004373257514089346, -0.011591354385018349, 0.006541080307215452, -0.018081145361065865, 0.008842254988849163, 0.010702342726290226, -0.00033893599174916744, 0.009437208995223045, 0.014101105742156506, 0.03044525720179081, -0.005470845848321915, -0.01323944702744484, -0.009539787657558918, -0.015291014686226845, 0.012357273139059544, 0.007618153002113104, -0.013000097125768661, 0.011269942857325077, 0.0017797345062717795, 0.031648844480514526, 0.002926902612671256, -0.016316797584295273, -0.008479811251163483, -0.011858058162033558, 0.04792461171746254, -0.007467704825103283, -0.009874876588582993, -0.017862312495708466, 0.009950101375579834, -0.00262258667498827, 0.02054302580654621, -0.02197912335395813, 0.014114782214164734, -0.0035252764355391264, -0.009697074070572853, -0.002738842274993658, 0.011789673008024693, 0.016918590292334557, 0.0076318299397826195, 0.02372979372739792, 0.017493030056357384, -0.024878671392798424, -0.00936882384121418, -0.02189706079661846, -0.0109211765229702, 0.007645507343113422, 0.009054250083863735, 0.012904358096420765, 0.00903373397886753, 0.02729952149093151, 0.027231136336922646, -0.007187323644757271, -0.005111821461468935, 0.0035047605633735657, -0.023387866094708443, -0.018409395590424538, -0.012323080562055111, -0.013212093152105808, 0.013232608325779438, 0.001012961263768375, -0.011817026883363724, -0.0004173656925559044, -0.006797526031732559, 0.02284078113734722, 0.052629537880420685, -0.036326415836811066, 0.009320953860878944, -0.019353117793798447, -0.01671343483030796, -0.025658266618847847, -0.013642922043800354, 0.02504279650747776, 0.001414726604707539, 0.019626660272479057, 0.007604475598782301, 0.030199069529771805, -0.004910084418952465, -0.006346181035041809, -0.01928473263978958, -0.006318827159702778, -0.003497922094538808, -0.03774883598089218, -0.014825992286205292, -0.02675243653357029, -0.0030089651700109243, 0.014183168299496174, -0.02234840579330921, 0.016904912889003754, 0.014087428338825703, 0.010408284142613411, 0.03476722538471222, -0.029569922015070915, -0.049565862864255905, -0.02143203839659691, -0.020597735419869423, 0.025904456153512, -0.028092794120311737, -0.020392578095197678, -0.0036107583437114954, 0.012952228076756, 0.017985405400395393, 0.033891890197992325, -0.026779791340231895, 0.019476210698485374, 0.008684967644512653, 0.0149764409288764, 0.0010753631358966231, 0.024782931432127953, -0.008698645047843456, -0.0022208215668797493, 0.016863882541656494, 0.008780707605183125, -0.016371507197618484, -0.025193246081471443, 0.004499770700931549, -0.023264771327376366, -0.011365681886672974, -0.008302008733153343, -0.013102675788104534, 0.02755938656628132, 0.010524540208280087, 0.0028875807765871286, -0.026601988822221756, 0.0008543922449462116, 0.047760482877492905, -0.0014420808292925358, 0.0328797847032547, 0.012070054188370705, -0.008425102569162846, 0.005464007146656513, -0.01981813833117485, -0.006876169238239527, 0.004817763809114695, -0.002778163878247142, -0.02435894124209881, -0.006937716621905565, 0.008951671421527863, -0.009047411382198334, 0.0020002780947834253, 0.019558273255825043, 0.01434729341417551, -0.00399713683873415, 0.004499770700931549, 0.009977455250918865, 0.023620376363396645, 0.018341010436415672, -0.02044728584587574, 0.0010574118932709098, -0.02467351406812668, 0.009827006608247757, 0.04305555671453476, -0.029214316979050636, 0.036189645528793335, 0.01769818738102913, -0.00349108362570405, 0.00018806032312568277, 0.006917200982570648, -0.018546167761087418, -0.014962763525545597, 0.022731363773345947, -0.024974411353468895, 0.018573522567749023, 0.02342889830470085, -0.008035304956138134, -0.03463045507669449, 0.009061088785529137, -0.009532948955893517, -0.009984293952584267, -0.007536090444773436, 0.012582945637404919, 0.011912766844034195, -0.0301717147231102, -0.04376676678657532, -0.6249894499778748, 0.006513725966215134, 0.011878574267029762, -0.025658266618847847, 0.001401904271915555, -0.007919049821794033, 0.024960733950138092, -0.007830148562788963, -0.007549767382442951, 0.019612982869148254, 0.005087886471301317, 0.013738662004470825, -0.0034226980060338974, -0.015701327472925186, -0.025795038789510727, 0.0015617555472999811, 0.019339440390467644, -0.01923002302646637, -0.04450533166527748, 0.008541357703506947, -0.019804462790489197, 0.02282710373401642, -0.007618153002113104, -0.00853451993316412, 0.004612606950104237, -0.02040625549852848, 0.01626208983361721, 0.01724684238433838, 0.001037751091644168, 0.03318068012595177, -0.04149636626243591, -0.0038843005895614624, 0.03252417966723442, -0.026629341766238213, 0.03854211047291756, -0.01004584040492773, -0.0033252486027777195, 0.031457364559173584, 0.019695045426487923, 0.030034944415092468, -0.03129323944449425, 0.007057391107082367, 0.02197912335395813, 0.027709834277629852, -0.0021473069209605455, -0.0015147404046729207, 0.008185753598809242, -0.0025029119569808245, -0.0022618528455495834, 0.0016583501128479838, -0.0036278546322137117, -0.0011634095571935177, -0.01056557148694992, -0.011789673008024693, 0.014579804614186287, 0.004725443199276924, 0.01946253515779972, -0.014306262135505676, 0.013978010974824429, -0.001116394530981779, 0.014675544574856758, -0.01094853039830923, -0.012309403158724308, -0.06247705966234207, -0.039800405502319336, 0.005963222123682499, -0.005860643461346626, -0.01734258234500885, 0.010620279237627983, -0.022403113543987274, 0.014825992286205292, -0.013362540863454342, 0.008131044916808605, -0.01728787273168564, 0.017725540325045586, 0.008247300051152706, 0.038843005895614624, -0.0021148237865418196, 0.012076891958713531, 0.024112753570079803, -0.0033115714322775602, -0.015332045964896679, -0.0200506504625082, -0.007871179841458797, 0.036545250564813614, 0.01869661547243595, -0.00528278574347496, -0.019968587905168533, -0.013554020784795284, 0.005252012051641941, 0.02346992865204811, 0.03085556998848915, -0.0065376609563827515, -0.047268107533454895, 0.013348864391446114, 0.030910279601812363, 0.010004809126257896, -0.012323080562055111, -0.01832733303308487, -0.026601988822221756, -0.048444341868162155, -0.010121065191924572, 0.012918034568428993, -0.002149016596376896, 0.020884953439235687, 0.010039002634584904, -0.01233675703406334, -0.021992800757288933, 0.009013218805193901, -0.0328797847032547, -0.030335839837789536, 1.2949182746524457e-05, -0.004034748766571283, -0.0034927930682897568, 0.019900202751159668, -0.027901314198970795, 0.013978010974824429, -0.02134997583925724, 0.005648648366332054, -0.03350893035531044, -0.020255807787179947, 0.008698645047843456, 0.008972187526524067, 0.000394499278627336, 0.0046570575796067715, 0.019900202751159668, 0.023907596245408058, 0.003282507648691535, -0.010777566581964493, 0.01031254418194294, 0.0002057978417724371, 0.012808618135750294, 0.010668149217963219, -0.015742359682917595, 0.024605128914117813, 0.006120509002357721, 0.014210522174835205, -0.008343040011823177, 0.013116353191435337, -0.03755735605955124, -0.008985863998532295, -0.014429355971515179, 0.02052934840321541, -0.006561595946550369, -0.020078005269169807, -0.02967933937907219, -0.031047049909830093, 0.00982016883790493, -0.011591354385018349, -0.00017459692026022822, -0.029296379536390305, -0.01968136802315712, -0.013184738345444202, 0.0301717147231102, -0.003894558409228921, -0.004869052674621344, -0.004851956386119127, -0.026232706382870674, -0.0037783030420541763, -0.026342123746871948, -0.022936521098017693, 0.01665872521698475, 0.0009488498326390982, -9.503190995019395e-06, -0.025836069136857986, -0.019216345623135567, -0.01535939984023571, -0.01142039056867361, -0.012637654319405556, -0.027901314198970795, 0.023880241438746452, -0.01427890732884407, 0.006633400451391935, 0.022102218121290207, -0.015550879761576653, 0.0001650870544835925, -0.02437261864542961, 0.007180485408753157, -0.0006774445646442473, -0.012152116745710373, -0.004930600058287382, 0.027942344546318054, -0.009177343919873238, -0.02364773117005825, 0.014443033374845982, 0.025288986042141914, 0.009902231395244598, 0.0029781917110085487, -0.02545311115682125, 0.009067927487194538, -0.010572409257292747, 0.024194816127419472, -0.014306262135505676, 0.00781647115945816, -0.012220501899719238, 0.00287732295691967, -0.0042159706354141235, -0.0007377094007097185, -0.009587657637894154, 0.012029021978378296, 0.029433151707053185, 0.04062103107571602, -0.007529251743108034, 0.0005581972654908895, 0.009950101375579834, -0.017547737807035446, 0.01820424012839794, -0.025740329176187515, 0.010319382883608341, -0.008541357703506947, 0.0016190285095945, 0.006281214766204357, -0.002795260399580002, -0.014812314882874489, -0.010633956640958786, 0.0025866844225674868, -0.0048827300779521465, 0.01648092269897461, -0.024933381006121635, 0.008691806346178055, -0.0034996317699551582, 0.01626208983361721, 0.0346851646900177, -0.008630258962512016, 0.008308847434818745, 0.009450886398553848, -0.0037167558912187815, -0.005231496412307024, 0.025480464100837708, -0.01940782554447651, 0.009758621454238892, 0.03071879968047142, 0.002485815668478608, -0.006554757244884968, 0.05219186842441559, 0.015208951197564602, 0.025890778750181198, -0.02567194402217865, 0.01661769486963749, -0.020871277898550034, -0.007030036766082048, 0.0026191675569862127, 0.017082715407013893, -0.019900202751159668, 0.019517242908477783, 0.014114782214164734, 0.021049080416560173, 0.009416693821549416, -0.0261232890188694, 0.016015902161598206, -0.016138995066285133, 0.010907499119639397, -0.019421502947807312, 0.00973126757889986, 0.02243046835064888, -0.0292690247297287, -0.0008056675433181226, 0.014019042253494263, 0.017369935289025307, 0.03219592943787575, 0.0029439989011734724, 0.012569268234074116, 0.008206268772482872, -0.0023080131504684687, 0.02427687868475914, -0.006014510989189148, -0.016549309715628624, -0.008308847434818745, -0.013232608325779438, -0.0039390092715620995, -0.010428800247609615, -0.036599960178136826, -0.0119332829490304, -0.01887441799044609, -0.018409395590424538, 0.006394051015377045, -0.00984068401157856, 0.027956021949648857, 0.014032719656825066, 0.025548851117491722, -0.003167961724102497, -0.032770365476608276, 0.03219592943787575, 0.02121320553123951, -0.0056144557893276215, -0.006281214766204357, -0.032086510211229324, 0.01581074483692646, 0.014005365781486034, 0.024878671392798424, 0.0020344709046185017, -0.0004851101548410952, -0.00982016883790493, 0.017848635092377663, -0.013971172273159027, 0.012453013099730015, 0.042727306485176086, -0.023538313806056976, 0.001928473124280572, -0.014607158489525318, 0.01728787273168564, 0.013588213361799717, -0.00783698633313179, -0.01683652773499489, 0.047623712569475174, -0.020460963249206543, 0.00745402742177248, -0.016699757426977158, 0.00013826708891429007, -0.03099234215915203, -0.00048340053763240576, -0.007358287926763296, -0.0101347416639328, 0.005816192831844091, -0.009950101375579834, 0.008924317546188831, 0.011030592955648899, -0.009827006608247757, 0.017178455367684364, 0.021281590685248375, -0.024482036009430885, -0.005559747107326984, -0.0026020710356533527, 0.03364570066332817, 0.06592369079589844, -0.0035252764355391264, -0.012774425558745861, 0.023483606055378914, -0.019968587905168533, 0.0006594933802261949, -0.0301717147231102, -0.0301717147231102, 0.029843464493751526, 0.006906942930072546, -0.005723872687667608, -0.009409855119884014, 0.0319770947098732, 0.015003794804215431, 0.005669164005666971, 0.009013218805193901, -0.024044368416070938, -0.017096392810344696, -0.007501897402107716, 0.004458739422261715, -0.009485078975558281, 0.0001600649848114699, 0.01702800765633583, -0.00027439711266197264, 0.051726847887039185, 0.03454839065670967, 0.01954459771513939, -0.0023387866094708443, 0.010387768968939781, -0.020378900691866875, -0.01335570216178894, 0.013020613230764866, 0.005128918215632439, 0.023565668612718582, -0.02103540301322937, 0.0279286690056324, 0.004079199396073818, -0.016097964718937874, 0.0007248870679177344, 0.024960733950138092, 0.009197860024869442, 0.02066612057387829, 0.00019532629812601954, 0.0007018069736659527, 0.01702800765633583, -0.030554674565792084, 0.008274654857814312, 0.01585177518427372, -0.035341665148735046, -0.015318368561565876, 0.014648189768195152, 0.016385182738304138, -0.01553720235824585, 0.008671291172504425, -0.0025234275963157415, 0.0017438321374356747, 0.0067941066808998585, -0.02368876338005066, -0.004520286340266466, -0.016453569754958153, -0.022799750789999962, -0.003359441412612796, -0.003032900160178542, 0.0014583223965018988, -0.004910084418952465, -0.01779392547905445, -0.01648092269897461, -0.0019182153046131134, -0.03484928980469704, 0.01887441799044609, -0.00477331317961216, -0.0405389666557312, -0.032414760440588, 0.012377789244055748, 0.02751835435628891, 0.017369935289025307, 0.015591911040246487, -0.009649204090237617, 0.012829133309423923, 0.010271512903273106, -0.01096904557198286, -0.014743929728865623, 0.017000652849674225, -0.02252620831131935, -0.021773966029286385, -0.034247495234012604, -0.0012822295539081097, -0.009553465060889721, -0.018751325085759163, 0.02850310690701008, 0.002492654137313366, -0.023346835747361183, -0.01380704715847969, 0.0016583501128479838, 0.014812314882874489, 0.01665872521698475, 0.005416137631982565, 0.004410869441926479, 0.02327844873070717, -0.02333315834403038, 0.01452509593218565, -0.029925527051091194, -0.009738105349242687, -0.02282710373401642, 0.020119035616517067, 0.0029952882323414087, 0.009074765257537365, -0.02009168080985546, 0.0017096393276005983, -0.02066612057387829, 0.0004462158540263772, -0.014812314882874489, 0.004845117684453726, -0.003932170569896698, 0.031375300139188766, -0.01720581017434597, -0.005775161553174257, 0.02329212613403797, 0.0039390092715620995, -0.005970060359686613, 0.006421405356377363, -0.006725721061229706, 0.02374347113072872, 0.02598651871085167, -0.0100253252312541, 0.02517956867814064, 0.022416790947318077, -0.03714704513549805, -0.04316497594118118, -0.0021883384324610233, 0.004540801979601383, 0.016207380220294, -0.005867482163012028, -0.021992800757288933, -0.027135396376252174, 0.011646063067018986, -0.002921773586422205, -0.0031662520486861467, -0.019790785387158394, 0.0062470221891999245, -0.013020613230764866, 0.025699298828840256, 0.005046855192631483, -0.014962763525545597, -0.02720378153026104, -0.02472822368144989, -0.015277337282896042, -0.016043255105614662, -0.008589227683842182, 0.021514100953936577, 0.004072360694408417, -0.012377789244055748, -0.022854458540678024, -0.02989817224442959, 0.0006402599392458797, -0.0081105288118124, 0.008459295146167278, -0.007043714169412851, 0.05892100930213928, 0.032578885555267334, 0.0355878509581089, 0.019243700429797173, 0.01869661547243595, 0.008767030201852322, -0.010107387788593769, -0.007146292366087437, -0.0076660229824483395, -0.029624629765748978, -0.008076336234807968, -0.006606046576052904, 0.01828630268573761, 0.01101007778197527, -0.00966288149356842, -0.008705483749508858, -0.00016978856001514941, 0.01855984516441822, -0.003232927992939949, -0.023045938462018967, -0.02044728584587574, -0.022047508507966995, -0.013752338476479053, 0.03323538973927498, 0.007337772287428379, -0.0015916742850095034, -0.032414760440588, 0.010230481624603271, 0.023975981399416924, -0.013000097125768661, 0.010449315421283245, 0.00195411778986454, 0.015646619722247124, 0.01661769486963749, 0.014402002096176147, 0.01909325271844864, 0.006028188392519951, -0.0010086871916428208, 0.01168709434568882, -0.02351096086204052, -0.013259963132441044, 0.01463451236486435, 0.029788756743073463, 0.02085760049521923, 0.005115240812301636, 0.0036586280912160873, -0.0049682119861245155, 0.011208395473659039, -0.009909069165587425, -0.009772298857569695, 0.011447745375335217, -0.03022642433643341, 0.00992958527058363, -0.022184280678629875, -0.01927105523645878, 0.016686080023646355, -0.030609382316470146, 0.002971353242173791, -0.0014070331817492843, 0.020474640652537346, -0.007987434975802898, -0.015961192548274994, 0.01076388917863369, 0.0006227361154742539, 0.04166049137711525, 0.0168912373483181, 0.018477782607078552, 0.02274504117667675, 0.009375662542879581, -0.006790687330067158, -0.020515672862529755, 0.009088442660868168, -0.01315054576843977, 0.006045284681022167, 0.025781361386179924, -0.006927458569407463, -0.02143203839659691, -0.013629244640469551, -0.01360189076513052, -0.004205712582916021, -0.04166049137711525, 0.023305803537368774, 0.014060073532164097, -0.0076865386217832565, -0.003617596812546253, -0.013300994411110878, -0.00314744608476758, 0.007871179841458797, -0.009259406477212906, -0.004646799527108669, -0.005381944589316845, -0.0015540621243417263, 0.02441364899277687, 0.0324421152472496, 0.004988727625459433, 0.036682020872831345, -0.002039599698036909, -0.004404030740261078, -0.017588770017027855, -0.008985863998532295, -0.02734055183827877, -0.018436750397086143, 0.006479532923549414, 0.02698494680225849, -0.008719160221517086, -0.0009539787424728274, 0.019872847944498062, 0.01683652773499489, -0.0017122038407251239, 0.01371130719780922, -0.007474543061107397, 0.03432955965399742, -0.009314115159213543, -0.005970060359686613, -0.01038093026727438, 0.015058503486216068, 0.006482952274382114, -0.030828217044472694, -0.01278810203075409, 0.004277517553418875, 0.019120605662465096, 0.0066436585038900375, 0.00584354717284441, -0.02243046835064888, -0.006732559762895107, -0.00947824027389288, 0.00817207619547844, -0.004318548832088709, 0.018299980089068413, 0.0033867955207824707, 0.021295268088579178, -0.018942803144454956, -0.0035868233535438776, -0.008568712510168552, -0.010955369099974632, -0.013417249545454979, -0.001062540803104639, 0.002109694993123412, 0.00945772510021925, 0.010579247958958149, -0.007864341139793396, 0.010798081755638123, 0.03435691073536873, 0.016111640259623528, -0.03271565958857536, 0.025740329176187515, -0.026314768940210342, 0.009259406477212906, 0.02716274932026863, -0.0007787407375872135, -0.018122177571058273, -0.018628230318427086, 0.01427890732884407, 0.014552449807524681, 0.014607158489525318, -0.0057854196056723595, 0.0046570575796067715, -0.0004936583572998643, 0.006192313507199287, -0.011427229270339012, -0.01793069764971733, 0.003102995455265045, -0.014360970817506313, 0.022868135944008827, 0.0058059352450072765, -0.008821738883852959, 0.010216805152595043, -0.018354687839746475, 0.013410410843789577, -0.005648648366332054, -0.03008965216577053, -0.01602957770228386, -0.02134997583925724, -0.007098422385752201, -0.01793069764971733, -0.0029371604323387146, 0.0015224338276311755, -0.023264771327376366, -0.033946599811315536, 0.020283160731196404, -0.010893821716308594, 0.01142039056867361, 0.03958157077431679, 0.009156828746199608, 0.0110374316573143, 0.015797067433595657, 1.7163176380563527e-05, -0.02598651871085167, -0.026000194251537323, -0.0011805059621110559, -0.039608925580978394, -0.01222734060138464, -0.001683994778431952, 0.019435180351138115, 0.021295268088579178, -0.022375760599970818, -0.020707150921225548, -0.005381944589316845, -0.02251253090798855, 0.001732719480060041, -0.022950198501348495, 0.029788756743073463, 0.03941744565963745, 0.015496171079576015, 0.022211633622646332, 0.021377330645918846, 0.018983835354447365, 0.030664091929793358, -0.02445468120276928, 0.0017019460210576653, -0.02054302580654621, -0.00964236631989479, 0.014661867171525955, -0.02863987907767296, -0.06608781963586807, -0.019243700429797173, -0.0011950378539040685, 0.0031132532749325037, 0.021650873124599457, 0.004602348897606134, 0.006883007939904928, 0.0012924873735755682, 0.008213107474148273, 0.002169532235711813, 0.004523705691099167, 0.02863987907767296, 0.011406714096665382, -0.014183168299496174, -0.004759635776281357, 0.012890680693089962, 0.0032602823339402676, -0.011160525493323803, -0.013540343381464481, 0.017684509977698326, -0.0074608661234378815, 0.014114782214164734, -0.021103788167238235, -0.013882271014153957, -0.014169490896165371, -0.006749656051397324, -0.0022208215668797493, 0.021951768547296524, 0.017410967499017715, 0.03643583506345749, -0.017670832574367523, -0.014990117400884628, -0.007118938025087118, 0.008425102569162846, 0.0005564875900745392, -0.02152777835726738, 0.022293696179986, -0.03908919543027878, 0.00826781615614891, -0.008206268772482872, 0.013588213361799717, -0.015277337282896042, -0.012986420653760433, -0.024796608835458755, -0.00688984664157033, -0.018628230318427086, 0.003171381074935198, -0.0024242685176432133, -0.01783495768904686, 0.007884856313467026, 0.007283063605427742, 0.004222809337079525, 0.008260977454483509, -0.014306262135505676, 0.021678226068615913, -0.03323538973927498, 0.007317256182432175, -0.005846966523677111, 0.0007791681564413011, -0.020064327865839005, 0.01846410520374775, 0.023852888494729996, -0.004239905625581741, 0.009943262673914433, 0.18885360658168793, 0.009444047696888447, 0.022717688232660294, 0.03796767070889473, 0.021541455760598183, -0.0004081763909198344, 0.00023550282639916986, 0.0011805059621110559, -0.007303579244762659, 0.004564736969769001, -0.0032175411470234394, 0.01434729341417551, -0.009115796536207199, -0.0020122455898672342, 0.02710804156959057, 0.002251595025882125, -0.022184280678629875, -0.022621948271989822, 0.0010864757932722569, -0.01020312774926424, -0.031949739903211594, -0.005682840943336487, -0.013171061873435974, -0.0076318299397826195, 0.014032719656825066, 0.005005823913961649, -0.01074337400496006, -0.0009702203096821904, 0.014484064653515816, 0.012418820522725582, -0.012158955447375774, 0.019120605662465096, 0.017493030056357384, -0.02400333620607853, -0.012015345506370068, -0.013485634699463844, 0.012877003289759159, -0.01612531766295433, 0.005672583356499672, 0.009115796536207199, 0.0011437487555667758, 0.00973126757889986, 0.005942706484347582, -0.022717688232660294, 0.00871232245117426, -0.000439377297880128, -0.007194162346422672, -0.0027029397897422314, 0.004123650025576353, 0.01769818738102913, -0.0008360136416740716, -0.021773966029286385, 0.006629981566220522, 0.016549309715628624, -0.010818597860634327, -0.009765460155904293, -0.009608172811567783, 0.007679699920117855, -0.0019079574849456549, -0.002101146848872304, -0.023210063576698303, 0.004376676864922047, 0.009868037886917591, 0.009697074070572853, -0.028092794120311737, -0.013314670883119106, -0.016604017466306686, 0.05908513441681862, 0.0035252764355391264, 0.008869608864188194, 0.001401904271915555, -0.006633400451391935, -0.01806746795773506, -0.008855931460857391, -0.00919102132320404, -0.017137425020337105, 0.017889665439724922, 0.014812314882874489, 0.025466788560152054, 0.0162210576236248, 0.012241018004715443, 0.005464007146656513, -0.04283672198653221, -0.014566127210855484, 0.0076660229824483395, -0.02098069339990616, 0.030828217044472694, -0.014812314882874489, -0.019175315275788307, -0.01761612296104431, -0.0026465216651558876, -0.007337772287428379, -0.0062675378285348415, -0.0033081520814448595, 0.004349322523921728, -0.0021558552980422974, -0.00037462470936588943, 0.02549414150416851, -0.015920162200927734, -0.019927555695176125, -0.02156881056725979, 0.05678737908601761, 0.04056632146239281, 0.020515672862529755, -0.01643989235162735, -0.005898255854845047, 0.00703687546774745, 0.023811856284737587, 0.004602348897606134, -0.007296740543097258, -0.0037099174223840237, -0.02720378153026104, 0.007850663736462593, 0.006547918543219566, 0.025972841307520866, 0.012487205676734447, 0.011160525493323803, -0.01702800765633583, 0.00486563378944993, 0.003427826799452305, 0.021609840914607048, -0.019065897911787033, 0.0031491557601839304, -0.013663437217473984, -0.019968587905168533, -0.0290501918643713, -0.004660476930439472, 0.021199528127908707, -0.03386453539133072, -0.018819710239768028, 0.027682479470968246, -0.030390549451112747, 0.012562429532408714, -0.00930043775588274, -0.02494705654680729, 0.005272527690976858, -0.015373077243566513, -0.025193246081471443, 0.019038543105125427, 0.002518298802897334, 0.0020857600029557943, 0.015797067433595657, 0.008746515028178692, 0.007707054261118174, -0.026957593858242035, 0.00963552761822939, 0.017534060403704643, -0.0017463965341448784, -0.00013677115202881396, -0.020830245688557625, -0.0063530197367072105, 0.031156467273831367, -0.008213107474148273, -0.01895648054778576, 0.03867888078093529, -0.011837542988359928, -0.0027473904192447662, -0.010175772942602634, -0.004643380641937256, 0.010127903893589973, -0.037858255207538605, 0.004581833258271217, 0.0355878509581089, 0.008596066385507584, -0.022485176101326942, -0.017821280285716057, -0.17353522777557373, 0.018970157951116562, 0.006363277789205313, -0.02504279650747776, 0.024030691012740135, 0.03132059425115585, -0.000947994994930923, -0.011550323106348515, -0.003785141510888934, -0.0031816388946026564, -0.018942803144454956, 0.0055734240449965, -0.0015762874390929937, -0.00975178275257349, 0.01490805484354496, -0.008219946175813675, 0.0025200084783136845, 0.011946959421038628, 0.06871382147073746, 0.007912211120128632, 0.01130413543432951, -0.03509547561407089, -0.002077211858704686, 0.005624713376164436, 0.01810850016772747, -0.004157843068242073, -0.009067927487194538, 0.02549414150416851, 0.026560956612229347, -0.030062297359108925, 0.013848078437149525, -0.01258978433907032, 0.025521496310830116, -0.005303301382809877, 0.03184032440185547, -0.009047411382198334, 0.006236764136701822, 0.013047967106103897, -0.015605587512254715, 0.00473912013694644, 0.03476722538471222, 0.008035304956138134, 0.014005365781486034, -0.006274376530200243, 0.0191479604691267, 0.04062103107571602, 0.0059666414745152, -0.01602957770228386, -0.009314115159213543, 0.0033970533404499292, 0.0355878509581089, -0.026342123746871948, -0.003850107779726386, -0.007064229808747768, 0.006510306615382433, 0.004622865002602339, -0.0059768990613520145, 0.03777619078755379, 0.00020013465837109834, -0.023141678422689438, -0.00040625303518027067, -0.011782834306359291, 0.014620835892856121, -0.008575551211833954, -0.008773868903517723, -0.03441162034869194, 0.015400431118905544, 0.029788756743073463, 0.0004919487400911748, -0.0006359858089126647, 0.02467351406812668, 0.006657335441559553, -0.005381944589316845, 0.044204436242580414, -0.006626562215387821, 0.007303579244762659, -0.039034485816955566, 0.016453569754958153, 0.035834040492773056, 0.006797526031732559, 0.003785141510888934, 0.0101347416639328, -0.01105794683098793, -0.007775439880788326, -0.02508382871747017, 0.00486563378944993, 0.02031051553785801, -0.019695045426487923, -0.03238740935921669, -0.015208951197564602, 0.018231593072414398, -0.03175825998187065, 0.005166530143469572, -0.007932726293802261, -0.010736535303294659, 0.009676558896899223, 0.02932373434305191, -0.001933602150529623, 0.014990117400884628, -0.030390549451112747, 0.0034380846191197634, 0.010873306542634964, -0.029843464493751526, 0.024741901084780693, 0.0281475018709898, 0.019695045426487923, 0.005231496412307024, -0.008124206215143204, 0.03126588463783264, -0.004260421264916658, -0.017588770017027855, -0.00871232245117426, 0.04108605161309242, -0.003306442406028509, -0.009232052601873875, 0.03851475566625595, 0.010237320326268673, -0.019845493137836456, 0.0200369730591774, -0.014935409650206566, 0.04565420746803284, -0.01286332681775093, -0.005433233920484781, 0.021637195721268654, 0.009615011513233185, -0.0065239835530519485, -0.1148877665400505, -0.025111183524131775, 0.02863987907767296, 0.013656599447131157, -0.01679549738764763, 0.0028841616585850716, -0.005176787730306387, 0.04806138202548027, -0.004181778058409691, 0.009061088785529137, -0.012350434437394142, -0.019612982869148254, 0.008001112379133701, 0.011030592955648899, 0.0032756689470261335, -0.01779392547905445, -0.0032312183175235987, -0.007057391107082367, 0.001679720706306398, 0.014962763525545597, 0.007570283021777868, -0.00578883895650506, 0.017438320443034172, 0.012063215486705303, -0.011550323106348515, -0.022621948271989822, -0.019161637872457504, 0.0010044131195172668, 0.0033696992322802544, -0.0034705677535384893, 0.02048831805586815, -0.016877559944987297, 0.009416693821549416, -0.022731363773345947, -0.01157767791301012, -0.010285190306603909, -0.015660297125577927, -0.022690333425998688, 0.014101105742156506, -0.045107126235961914, -0.006359858438372612, -0.005621294025331736, 0.007406157441437244, -0.004892987664788961, -0.0022567238193005323, -0.0008714886498637497, -0.010934852994978428, 0.02883135713636875, 0.0034517617896199226, -0.016590340062975883, -0.013793369755148888, -0.02539840154349804, -0.0027166169602423906, -0.007754924241453409, 0.021965445950627327, 0.012220501899719238, 0.012870164588093758, 0.005183626431971788, -0.032989200204610825, 0.00703687546774745, -0.007474543061107397, -0.00013527521514333785, -0.010175772942602634, 0.017000652849674225, 0.016740787774324417, -0.010620279237627983, -0.008219946175813675, -0.008124206215143204, -0.002215692540630698, -0.010955369099974632, -0.01335570216178894, -0.0036552089732140303, -0.03460310027003288, 0.01148877665400505, -0.010162096470594406, 0.008985863998532295, -0.017041685059666634, -0.01608428731560707, 0.006233345251530409, 0.01518159732222557, -0.02940579690039158, -0.0004628848400898278, 0.012692362070083618, -0.0369282104074955, 0.022307373583316803, 0.009683397598564625, -0.0029046772979199886, -0.03156678006052971, 0.034521035850048065, -0.029077546671032906, 0.01142039056867361, 0.02243046835064888, 0.00423306692391634, -0.003109833924099803, -0.015072180889546871, 0.011112655512988567, -6.133331044111401e-05, -0.005505038890987635, 0.012282049283385277, -0.00046544932411052287, -0.019831815734505653, -0.001304454868659377, -0.0531492680311203, 0.007980596274137497, 0.006732559762895107, -0.004930600058287382, 0.025685621425509453, -0.02233472838997841, -0.0100184865295887, -0.010579247958958149, -0.01196063682436943, -0.0055494895204901695, -0.01846410520374775, 0.0034363751765340567, -0.027709834277629852, -0.007337772287428379, -0.022539885714650154, -0.030390549451112747, 0.02757306396961212, -0.021514100953936577, 0.015291014686226845, 0.01685020513832569, -0.020187420770525932, -0.009081603959202766, 0.017629800364375114, 0.028393689543008804, -0.01873764768242836, 0.0030294808093458414, -0.004927180707454681, 0.028338981792330742, -0.003682563081383705, -0.03887036070227623, -0.00013805337948724627, -0.009218375198543072, 0.0047630551271140575, 0.000899270293302834, 0.0038022377993911505, -0.020707150921225548, -0.014497742056846619, 0.016699757426977158, 0.009423531591892242, 0.017410967499017715, -0.022909166291356087, -0.008582389913499355, 0.04105869680643082, -0.02215692587196827, 0.005077628884464502, -0.02602754905819893, -0.014060073532164097, -0.02374347113072872, 0.002104565966874361, 0.019654013216495514, 0.007919049821794033, 0.0030995761044323444, -0.013759177178144455, -0.03665466606616974, 0.0015403850702568889, -0.034384265542030334, 0.005812773946672678, 0.019120605662465096, -0.020255807787179947, -0.004766474477946758, 0.041769906878471375, -0.0021558552980422974, -0.003391924547031522, -0.014689221046864986, 0.00593586778268218, -0.02107643336057663, -0.04425914213061333, -0.012370950542390347, -0.014388324692845345, -0.02512485906481743, -0.004257001914083958, -0.02197912335395813, 0.011290458030998707, 0.02323741838335991, 0.03255153447389603, -0.015783390030264854, -0.003870623419061303, -0.0014779831981286407, -0.0012813747161999345, 0.023593023419380188, 0.03080086223781109, -0.007139453664422035, -0.02981610968708992, 0.004219389986246824, 0.030417902395129204, 0.006691528484225273, -0.008349878713488579, -0.0036141774617135525, 0.003665466792881489, 0.01234359573572874, -0.000702661753166467, -0.008903801441192627, -0.0041954549960792065, 0.022498853504657745, -0.0034021823666989803, 0.03356363996863365, -0.014579804614186287, -0.008719160221517086, -0.01020312774926424, 0.03112911246716976, 0.007515574339777231, -0.0018361526308581233, -0.0034996317699551582, -0.022129571065306664, -0.023716116324067116, 0.011112655512988567, -0.0017404129030182958, -0.008349878713488579, 0.0191342830657959, 0.031019696965813637, 0.012924873270094395, -0.011105816811323166, 0.01038093026727438, 0.0037441102322191, -0.011386197991669178, -0.01950356550514698, -0.008876447565853596, -0.003012384520843625, -0.02176028862595558, 0.01576971262693405, 0.0025473625864833593, 0.04335645213723183, 0.02445468120276928, 0.0059666414745152, 0.048936717212200165, 0.019312085583806038, 0.018491460010409355, -0.012651330791413784, -0.001250601140782237, -0.01049718540161848, 0.012623976916074753, 0.0018378623062744737, -0.0050331782549619675, -0.011584516614675522, 0.000518875545822084, -0.023593023419380188, -0.015687650069594383, 0.011905928142368793, 0.0005787129048258066, 0.08715057373046875, 0.03093763440847397, -0.02828427404165268, 0.010914337821304798, -0.015291014686226845, -0.002673876006156206, 0.0281475018709898, -0.006961651612073183, 0.018026437610387802, -0.019435180351138115, 0.0110374316573143, 0.006599207874387503, -0.03307126462459564, -0.015578233636915684, -0.007201001048088074, 0.009108958765864372, -0.0038603655993938446, 0.029022837057709694, -0.009997970424592495, -0.013068483211100101, 0.004886149428784847, -0.006465855985879898, 0.02418113872408867, 0.0022909166291356087, -0.03561520576477051, 0.014429355971515179, 0.02775086648762226, 0.031648844480514526, -0.0036552089732140303, -0.030691444873809814, 0.013800208456814289, -0.018299980089068413, -0.04185197129845619, 0.0033167002256959677, -0.0007411286351270974, 0.0038398499600589275, -0.017123747617006302, -0.019489888101816177, 0.013745500706136227, -0.0017643477767705917, 0.0012044409522786736, -0.0024123010225594044, -0.03878829628229141, -0.02954256720840931, 0.014128459617495537, -0.006435082294046879, 0.002219111891463399, -0.03473987057805061, -0.015687650069594383], "ac137145-15a8-4587-9745-0a50eb1a49ff": [-0.016243332996964455, -0.004644925706088543, -0.008344178088009357, -0.031040342524647713, -0.008594503626227379, 0.00813557393848896, -0.009512363001704216, -0.01941412128508091, -0.016298960894346237, -0.03932889178395271, 0.013948684558272362, 0.00752366753295064, -0.011097757145762444, -0.004714460577815771, 0.002956968266516924, 0.00552801787853241, 0.01686914637684822, -0.021917374804615974, 0.009720968082547188, -0.01978961005806923, -0.01082657091319561, -0.016076449304819107, 0.0017192483646795154, -0.00915078166872263, -0.03590777888894081, 0.010235525667667389, 0.015353287570178509, -0.013670545071363449, -0.021764397621154785, 0.03257010877132416, 0.02873178757727146, -0.02254318818449974, -0.013114267028868198, -0.0019348063506186008, -0.0038174614310264587, 0.00029052517493255436, -0.00048804751713760197, -0.011389803141355515, 0.0018548412481322885, 0.005128192715346813, 0.033098574727773666, -0.0002496734668966383, -0.009526270441710949, -0.022376304492354393, -0.02493518590927124, 0.03465615212917328, 0.005284646060317755, -0.008337224833667278, -0.001910469145514071, -0.0037653103936463594, 0.0003085607604589313, 0.02560272067785263, -0.01798170432448387, -0.008963038213551044, 0.0006279863300733268, 0.000709689746145159, 0.00584440166130662, -0.0025414975825697184, 0.024517977610230446, 0.00012798752868548036, 0.00733592314645648, 0.009456735104322433, -0.009623618796467781, -0.007753132376819849, -0.03713159263134003, -0.013107312843203545, -0.002306817565113306, 0.021555794402956963, 0.026604020968079567, -0.002346800174564123, 0.010471943765878677, 0.018802214413881302, 0.0015228125266730785, 0.009477595798671246, -0.00021229848789516836, -0.03946796432137489, 0.0006927406066097319, -0.01604863628745079, 0.0041547054424881935, 0.007102981675416231, 0.0077878995798528194, -0.011146431788802147, -0.0026110324542969465, -0.017731377854943275, 0.02695169486105442, 0.04817372187972069, -0.023321978747844696, -0.004790949169546366, -0.007850481197237968, -0.005809633992612362, -0.016549287363886833, -0.0049022044986486435, 0.024517977610230446, 0.012161639519035816, -0.006651005242019892, -0.003852228866890073, 0.008302457630634308, 0.0021677480544894934, -0.003619287395849824, -0.016535378992557526, -0.022515375167131424, 0.013169894926249981, -0.03996861353516579, -0.009679246693849564, -0.034016434103250504, -0.010916966944932938, 0.005232495255768299, -0.00023967782908584923, 0.010172943584620953, 0.022362397983670235, -0.01436589378863573, 0.038411032408475876, -0.00318295625038445, -0.03941233456134796, -0.01844063401222229, -0.03201382979750633, 0.001277702278457582, -0.030122483149170876, -0.010708361864089966, 0.0008165995241142809, 0.017008217051625252, 0.01755058765411377, 0.020443236455321312, -0.0039739147759974, 0.019678354263305664, -0.011577547527849674, 0.007676643785089254, -0.0033098573330789804, 0.009700107388198376, 0.005642750300467014, 0.017189007252454758, 0.005312460009008646, 0.010930873453617096, -0.016312869265675545, -0.034906480461359024, 0.005767913069576025, -0.00024467564071528614, -0.005503681022673845, -0.012050383724272251, -0.006963911931961775, 0.017049938440322876, 0.010652733966708183, -0.010513664223253727, -0.03365485370159149, -0.0034332815557718277, 0.015255939215421677, -0.011487152427434921, 0.0278556477278471, 0.01152887288480997, -0.01318380143493414, -0.0007683597505092621, -0.03604685142636299, -0.020206818357110023, 0.012620569206774235, 0.0068978541530668736, -0.000399173324694857, -0.008768340572714806, 0.027911275625228882, -0.015714868903160095, 0.01052061840891838, 0.019024726003408432, 0.009519316256046295, -0.005187297239899635, 0.00021338497754186392, 0.0016836117720231414, 0.028982112184166908, 0.025741789489984512, -0.029148995876312256, -0.0058235409669578075, 0.002430242020636797, 0.011403710581362247, 0.04995381459593773, -0.03515680506825447, 0.03129066899418831, 0.014588405378162861, 0.012627523392438889, 0.02054058574140072, 0.00978354923427105, -0.01755058765411377, -0.011883500032126904, 0.022974304854869843, 0.014880451373755932, 0.017147285863757133, 0.029594019055366516, -0.006400680169463158, -0.015784403309226036, 0.004220763687044382, -0.0023102944251149893, 0.004919588565826416, -0.0032107701990753412, 0.013719219714403152, 0.007440225686877966, -0.027939090505242348, -0.029510576277971268, -0.6150215864181519, -0.0018948238575831056, 0.01101431529968977, -0.028537089005112648, -0.003960007801651955, 0.009839177131652832, 0.009547130204737186, -0.002459794282913208, -0.0010073856683447957, 0.020137283951044083, -0.0024771778844296932, 0.011786151677370071, -0.008830921724438667, -0.02709076553583145, -0.03168006241321564, -0.017564496025443077, 0.02881522849202156, -0.025811323896050453, -0.013149034231901169, 0.007405458018183708, -0.023697465658187866, 0.015228125266730785, -0.009762688539922237, -0.022946489974856377, -0.0009248130954802036, 0.011584500782191753, 0.026228534057736397, 0.025268953293561935, -0.016229426488280296, 0.012057337909936905, -0.03551838546991348, 0.00601128488779068, 0.017189007252454758, -0.011994755826890469, 0.04099772870540619, -0.01108384970575571, -0.02329416386783123, 0.01702212356030941, 0.029955599457025528, 0.03090127371251583, -0.027049044147133827, -0.004377217032015324, -0.004888297524303198, 0.025421930477023125, 0.011195105500519276, 0.001851364504545927, 0.02074918895959854, 0.01168880332261324, -0.01970616728067398, -0.00862231757491827, 0.003549752524122596, -0.01970616728067398, -0.008858735673129559, -0.008385899476706982, 0.004189472645521164, -0.008823968470096588, 0.021889561787247658, -0.029371507465839386, 0.009275944903492928, 0.005270739085972309, 0.02150016650557518, -0.010770943015813828, -0.011848732829093933, -0.050371021032333374, -0.05384776368737221, -0.020206818357110023, -0.001100388471968472, -0.024837836623191833, -0.004050403367727995, -0.005726192146539688, -0.0007009978871792555, 0.006160784978419542, 0.022501466795802116, -0.008385899476706982, 0.020248539745807648, 0.02074918895959854, 0.023614024743437767, 0.025046441704034805, -0.0020130330231040716, 0.03337671235203743, 0.009456735104322433, -0.003984345123171806, -0.01556189265102148, -0.016229426488280296, 0.03354359790682793, 0.022904768586158752, -0.011647081933915615, -0.010910012759268284, -0.00041547053842805326, -0.016298960894346237, 0.03231978416442871, 0.011410663835704327, -0.0007266388274729252, -0.051622647792100906, 0.025129882618784904, 0.04491949453949928, 0.007906109094619751, -0.004026066046208143, -0.012634476646780968, -0.020206818357110023, -0.03465615212917328, -0.03663094341754913, 0.030039042234420776, 0.014991707168519497, 0.02560272067785263, 0.015367195010185242, -0.02821722999215126, -0.00022989949502516538, 0.015798311680555344, -0.01933068037033081, -0.022946489974856377, -0.003441973589360714, -0.01926114410161972, -0.007068214472383261, 0.016674449667334557, -0.025352394208312035, -8.496285590808839e-05, -0.017661843448877335, 0.013204662129282951, -0.021611422300338745, -0.01456059142947197, 0.004728367552161217, 0.006188598927110434, 0.003911333624273539, -0.010186851024627686, 0.015325473621487617, 0.013844382017850876, -0.0011082111159339547, 0.014616219326853752, 0.02942713536322117, 0.009755735285580158, 0.005451529752463102, 0.022487560287117958, -0.011257687583565712, 0.012870894744992256, 0.006091250106692314, 0.023266350850462914, 0.002040846971794963, 0.013635777868330479, -0.042889077216386795, 0.0037062058690935373, -0.021319376304745674, 0.027827834710478783, -0.0038765661884099245, -0.010138176381587982, -0.025032535195350647, -0.03649187460541725, 6.334187492029741e-05, -0.0005015198839828372, -0.01867705211043358, -0.02665964886546135, -0.02202863059937954, -0.012182500213384628, 0.03015029802918434, -0.0012255511246621609, 0.0006827450124546885, 0.007961736992001534, -0.03257010877132416, -0.017856542021036148, -0.03037280961871147, -0.017522774636745453, -0.0022442361805588007, -0.006657958962023258, 0.014393707737326622, -0.031624436378479004, -0.01590956561267376, -0.009303758852183819, 0.007050830405205488, -0.004877867642790079, -0.026451045647263527, 0.004036496393382549, -0.012078197672963142, 0.010798756964504719, 0.010659688152372837, -0.0307622030377388, -0.007064737379550934, -0.020192911848425865, -0.002039108658209443, -0.005180343985557556, -0.008330271579325199, 0.016229426488280296, 0.04060833528637886, 0.0034628340508788824, -0.011215966194868088, 0.024100767448544502, 0.018398912623524666, 0.022362397983670235, 0.017953889444470406, -0.013580149970948696, 0.00442589120939374, 0.010701408609747887, 0.046338003128767014, -0.010145129635930061, 0.005159483756870031, -0.009463688358664513, -0.005416762549430132, -0.008483247831463814, -0.010548432357609272, -0.017634030431509018, 0.01220336090773344, 0.018843935802578926, 0.0171751007437706, -0.0136288246139884, -0.0076975044794380665, 0.012286802753806114, -0.04060833528637886, 0.012578848749399185, -0.016549287363886833, 0.017953889444470406, 0.007405458018183708, 0.002063445746898651, -0.012106011621654034, -0.00481528602540493, -0.014296358451247215, 0.0004450228298082948, 0.006313761696219444, -0.014080801047384739, 0.0030560551676899195, -0.027076859027147293, 0.011368942447006702, 0.004627542104572058, 0.007064737379550934, 0.030066855251789093, -0.0030438867397606373, -0.0023155093658715487, -0.00152628927025944, -0.008670992217957973, 0.017884355038404465, 0.018565796315670013, -0.027647044509649277, 0.014477149583399296, 0.04300033301115036, -0.0019834807608276606, -0.010673594661056995, 0.03098471462726593, 0.02850927598774433, 0.02761922962963581, -0.020331980660557747, 0.04055270552635193, -0.03387736529111862, -0.0016766582848504186, -0.0065327961929142475, 0.01649365946650505, -0.013420219533145428, 0.02464313991367817, 0.00784352794289589, 0.02679871954023838, 0.001235981355421245, -0.027438439428806305, -0.002555404556915164, -0.015784403309226036, 0.005952180363237858, -0.002550189383327961, 0.006498028989881277, 0.022195514291524887, -0.020929981023073196, -0.016312869265675545, 0.006744877435266972, 0.01814858801662922, 0.013900009915232658, -0.002803991548717022, 0.024657046422362328, 0.009734874591231346, -0.0034193748142570257, 0.007926968857645988, -0.012377197854220867, -0.009936525486409664, -0.022974304854869843, -0.010242478922009468, -0.017049938440322876, -0.0031707878224551678, -0.026492765173316002, -0.004123414866626263, -0.04038582369685173, -0.00836503878235817, 0.003282043384388089, -0.007906109094619751, 0.029844343662261963, 0.0035115082282572985, 0.02045714296400547, -0.003886996302753687, -0.018412819132208824, 0.018579702824354172, 0.02283523418009281, -0.004185996018350124, -0.019052540883421898, -0.038939498364925385, 0.02141672372817993, 0.019288958981633186, 0.024072954431176186, 0.010165990330278873, 0.0005927843158133328, -0.00397739140316844, 0.020429329946637154, -0.009387200698256493, 0.01693868264555931, 0.025727882981300354, -0.02009556256234646, 0.006414587143808603, -0.02001212164759636, 0.007148179225623608, 0.006376342847943306, -0.00730115594342351, -0.008615364320576191, 0.052902091294527054, -0.02873178757727146, 5.752919605583884e-05, -0.005760959815233946, -0.007266388740390539, -0.035490572452545166, -0.000774878659285605, -0.011382849887013435, 0.0009621880599297583, -0.0010925658280029893, -0.003082130802795291, -0.0019295911770313978, 0.012092105112969875, 0.0003528892120812088, 0.01628505438566208, -0.004387646913528442, -0.014491056092083454, -0.017939982935786247, -0.0031429738737642765, 0.015269845724105835, 0.07264997810125351, 0.010423269122838974, -0.010033874772489071, 0.022265048697590828, -0.017828727141022682, 0.0007175123901106417, -0.011654035188257694, -0.01978961005806923, 0.02464313991367817, 0.01798170432448387, -0.01753668114542961, -0.0010638827225193381, -0.003827891778200865, 0.006644051987677813, 0.003886996302753687, 0.0124745462089777, -0.009053433313965797, -0.03532368689775467, -0.02262662909924984, 0.007676643785089254, -0.005771390162408352, 0.0030247645918279886, 0.028203321620821953, 0.0033932991791516542, 0.03994080051779747, 0.04122024029493332, 0.008670992217957973, 0.0017079489771276712, -0.003435020102187991, -0.02143063023686409, -0.022265048697590828, 0.013336778618395329, 0.0076071093790233135, 0.00784352794289589, -0.0103398272767663, 0.029399320483207703, 0.007815713994204998, -0.040663961321115494, 0.008768340572714806, 0.009901758283376694, 0.011647081933915615, 0.015367195010185242, -0.00694652833044529, -0.0005454137572087348, 0.013774847611784935, -0.02037370204925537, -0.008858735673129559, 0.048869069665670395, -0.02457360550761223, -0.005388948600739241, 0.031040342524647713, 0.0006853525410406291, -0.00458929780870676, 0.013058639131486416, 0.02054058574140072, -0.002372875576838851, 0.025505371391773224, -0.025560999289155006, 0.008914363570511341, -0.03209727257490158, -0.022418025881052017, -0.017008217051625252, -0.007280295714735985, 0.002383305924013257, 0.0011290715774521232, -9.316579053120222e-06, -0.01755058765411377, 0.024086860939860344, -0.029093367978930473, -0.00956103764474392, -0.009408061392605305, -0.034016434103250504, -0.056184131652116776, 0.002762270625680685, 0.03682563826441765, 0.016410216689109802, 0.0066231912933290005, -0.00023859133943915367, -0.0018548412481322885, 0.007794853299856186, -0.0112368268892169, -0.0016053850995376706, 0.009192503057420254, -0.019733982160687447, -0.02300211787223816, -0.03015029802918434, -0.019358493387699127, -0.01798170432448387, -0.009282898157835007, 0.012411965057253838, -0.009234223514795303, -0.02120812050998211, -0.014838729985058308, 0.011612314730882645, -0.0020564922597259283, 0.02650667354464531, 0.03015029802918434, 0.011209012940526009, 0.0013715742388740182, -0.026617929339408875, 0.012272895313799381, -0.02956620417535305, -0.012481500394642353, -0.024434534832835197, -0.003382868831977248, 0.0015862630680203438, 0.013009964488446712, -0.010332874022424221, 0.0016331990482285619, -0.01105603575706482, 0.004992600064724684, -0.022529281675815582, -0.004314635414630175, -0.002974351868033409, 0.01895519159734249, -0.010910012759268284, -0.006376342847943306, 0.009401107206940651, 0.001408080104738474, 0.006581470370292664, 0.015200311318039894, -0.043195027858018875, 0.033042944967746735, 0.02375309355556965, -0.012231174856424332, 0.03682563826441765, 0.04934190586209297, -0.04330628365278244, -0.05034320801496506, -0.008559736423194408, 0.020262446254491806, 0.029454948380589485, -0.01507514901459217, -0.018607517704367638, -0.029621832072734833, -0.001945236581377685, -0.003709682496264577, -0.00742631871253252, -0.02083263173699379, -0.005381994880735874, -0.01613207720220089, 0.0171751007437706, 0.02083263173699379, -0.024156395345926285, -0.010722269304096699, -0.03098471462726593, -0.023544490337371826, -0.029315879568457603, 0.007753132376819849, 0.018315471708774567, -0.017731377854943275, -0.014810916036367416, -0.015937380492687225, -0.026478858664631844, -0.011786151677370071, -0.009637526236474514, 0.013128173537552357, -0.012418918311595917, 0.06297073513269424, 0.011222919449210167, 0.03343234211206436, 0.015172497369349003, 0.011667942628264427, 0.006970865651965141, -0.019316771999001503, -0.019803516566753387, -0.014073846861720085, -0.02485174499452114, 0.008956084959208965, 0.00152628927025944, 0.014268544502556324, 0.008448480628430843, -0.0011873070616275072, -0.0027170730754733086, 0.0004889167030341923, 0.014192056842148304, 0.005089948885142803, -0.001697518746368587, -0.03323764353990555, -0.03860573098063469, -0.015770496800541878, 0.01746714673936367, -0.002553666243329644, -0.008469341322779655, -0.030567506328225136, 0.002626677742227912, 0.031151598319411278, -0.020345887169241905, 0.016479751095175743, -0.0028648346196860075, 0.01984523795545101, 0.008733573369681835, 0.0035810430999845266, 0.03359922394156456, 0.010805711150169373, -0.022668350487947464, 0.0031447121873497963, -0.03613029047846794, -0.018830029293894768, 0.023419326171278954, 0.028564903885126114, 0.01597910188138485, -0.003276828210800886, -0.0017105565639212728, -0.00707516772672534, 0.01739761233329773, -0.02126374840736389, 0.0010047780815511942, -0.017077751457691193, -0.03829977661371231, 0.007614062633365393, -0.0413593091070652, -0.011445431038737297, 0.016591006889939308, -0.016688356176018715, 0.018079053610563278, 0.01250236015766859, 0.0205962136387825, -0.019288958981633186, -0.016688356176018715, 0.030178111046552658, 0.0069778189063072205, 0.021486258134245872, 0.0054897740483284, 0.01642412506043911, 0.005044750869274139, 0.0025814801920205355, -0.011132524348795414, -0.02262662909924984, 0.012126872316002846, -0.017578402534127235, 0.009894805029034615, 0.03120722621679306, -0.005204681307077408, -0.010763989761471748, -0.006904807407408953, -0.013329824432730675, 0.006136447656899691, -0.03448927029967308, 0.029899971559643745, 0.0060251918621361256, -0.012057337909936905, -0.01456059142947197, -0.010381548665463924, 0.00623379647731781, 0.01415033545345068, -0.0045580072328448296, 0.012495406903326511, -0.009491502307355404, -0.017369797453284264, 0.013712266460061073, 0.02382262796163559, -0.012217267416417599, 0.028050346300005913, -0.02920462377369404, 0.006212936248630285, 0.0026423230301588774, 0.0009839177364483476, -0.02754969522356987, -0.013302010484039783, -0.00058539625024423, 0.04030238091945648, -0.012801360338926315, 0.0009856560500338674, 0.02365574613213539, 0.02575569599866867, -0.008976944722235203, 0.005590599495917559, 0.0010690977796912193, 0.03440582752227783, -0.016187705099582672, -0.004338972736150026, 0.01052757166326046, 0.015478450804948807, 0.023878255859017372, -0.03980173170566559, -0.008497155271470547, 7.59993854444474e-05, 0.010464990511536598, 0.00835808552801609, 0.005649704020470381, -0.02283523418009281, 0.00020806121756322682, -0.01130636129528284, 0.0030438867397606373, -0.022153792902827263, 0.02568616159260273, 0.00023424542450811714, 0.024517977610230446, -0.030817830935120583, 0.005910459440201521, -0.003720112843438983, -0.028119880706071854, -0.01075008325278759, -0.011647081933915615, 0.00287352642044425, -0.002621462568640709, 0.025074254721403122, -0.011125571094453335, 0.022821327671408653, 0.032736994326114655, 0.0033811305183917284, -0.03910638019442558, 0.01903863251209259, -0.020443236455321312, 0.008928271010518074, 0.009157735854387283, -0.006223366130143404, -0.019984306767582893, -0.013795708306133747, 0.01243282575160265, 0.00011000625818269327, -0.009039526805281639, -0.0026127707678824663, 0.02799471840262413, -0.007447178941220045, 0.010235525667667389, -0.0032385841477662325, -0.008059085346758366, 0.02240411937236786, -0.02074918895959854, 0.015881752595305443, 0.00986003689467907, -0.003295950358733535, 0.015923473984003067, -0.00866403803229332, 0.0044989027082920074, -0.024615325033664703, -0.041108984500169754, -0.017814820632338524, -0.0021155967842787504, -0.0013150773011147976, -0.002395474584773183, 0.019024726003408432, 0.01489435788244009, -0.025519277900457382, -0.03015029802918434, 0.00892131682485342, -0.02202863059937954, 0.002188608516007662, 0.04898032546043396, 0.002378090750426054, 0.023349791765213013, 0.021291561424732208, -0.013288103975355625, -0.0399964265525341, -0.03462833911180496, -0.021555794402956963, -0.04300033301115036, -0.02508816309273243, 0.0015115131391212344, 0.04400163143873215, -0.004366786684840918, -0.019275052472949028, 0.0001709035423118621, -0.02225114218890667, -0.03838321939110756, -0.008309410884976387, -0.006087773479521275, 0.019024726003408432, 0.02926025167107582, 0.028620531782507896, 0.014880451373755932, 0.019066447392106056, -0.010673594661056995, 0.02389216423034668, -0.025185510516166687, -0.007238574791699648, -0.017202913761138916, -0.024100767448544502, 0.029232438653707504, -0.019052540883421898, -0.05323585867881775, -0.003010857617482543, 0.010318967513740063, -0.0022859571035951376, 0.011744431219995022, 0.010409362614154816, 0.010451083071529865, 0.005934796761721373, 0.01389305666089058, 0.022418025881052017, 0.0021781781688332558, 0.020999515429139137, -0.002028678311035037, -0.013413266278803349, -0.005020414013415575, 0.024768302217125893, -0.014727474190294743, 0.005274216178804636, -0.004523240029811859, 0.00787134189158678, -0.006713586859405041, 0.014977799728512764, -0.008128620684146881, -0.00019850017270073295, -0.010763989761471748, -0.0019261144334450364, 0.005872215609997511, 0.018704866990447044, 0.0201650969684124, 0.029093367978930473, -0.012551034800708294, -0.002317247912287712, -0.0008183378959074616, -0.011062989942729473, -0.007753132376819849, -0.028843043372035027, 0.024657046422362328, -0.01642412506043911, -0.011855687014758587, -0.0017001263331621885, 0.00503779761493206, -0.00336027005687356, -0.01731416955590248, -0.013253336772322655, -0.0023867825511842966, -0.001626245561055839, 0.002969136694446206, -0.009435875341296196, -0.02375309355556965, -0.009734874591231346, 0.008740526624023914, 0.0009274206240661442, 0.015089055523276329, -0.007551481481641531, 0.03404424712061882, -0.020888259634375572, 0.001959143439307809, -0.0008196416893042624, -0.0032855202443897724, -0.012676197104156017, 0.01224508136510849, 0.02583913877606392, 0.008740526624023914, 0.00033507091575302184, 0.20471051335334778, 0.001851364504545927, 0.013448033481836319, 0.014880451373755932, 0.011368942447006702, -0.006529319565743208, 0.009164689108729362, 0.004728367552161217, -0.020026028156280518, 0.014178149402141571, 0.0057748667895793915, -0.00986003689467907, -0.00658842409029603, -0.004568437580019236, 0.011939127929508686, 0.0024285034742206335, -0.024225931614637375, -0.03009467013180256, -0.010423269122838974, 0.003554967697709799, -0.015130776911973953, -0.0013116005575284362, -0.019066447392106056, -2.9878241548431106e-05, 0.008601456880569458, 0.005434146150946617, -0.004269437864422798, -0.010186851024627686, 0.016604915261268616, 0.01686914637684822, -0.0062303198501467705, 0.007273341994732618, 0.01671617105603218, -0.012328523211181164, 0.0007209891336970031, -0.007363737095147371, 0.010604060254991055, -0.048340607434511185, -0.0027779159136116505, 0.025268953293561935, 0.0004815286083612591, -0.009234223514795303, 0.0042555308900773525, -0.0109795480966568, 0.0071412259712815285, -0.0025119453202933073, -0.009748781099915504, 0.017856542021036148, 0.008983898907899857, 0.012585802003741264, -0.002904816996306181, 0.0009830484632402658, 0.007683597505092621, 0.023614024743437767, 0.009248130954802036, 0.002814421895891428, -0.012147733010351658, 0.01079180371016264, -0.014574497938156128, -0.005503681022673845, -0.02404513955116272, 0.008219015784561634, -0.008511061780154705, 0.023113373667001724, -0.025324581190943718, -0.00397739140316844, -0.028189415112137794, 0.032208528369665146, -0.015450636856257915, 0.00958885159343481, -0.00025467126397415996, -0.017967797815799713, -0.022056443616747856, -0.009157735854387283, -0.01688305474817753, -0.02218160778284073, 0.018482355400919914, 0.011118617840111256, 0.027215927839279175, 0.01926114410161972, -0.0044989027082920074, 0.007092551328241825, -0.02136109583079815, -0.012933475896716118, 0.014101660810410976, -0.009435875341296196, 0.029955599457025528, -0.027605323120951653, -0.02351667545735836, -0.017522774636745453, -0.009046480059623718, -0.009832222945988178, -0.013726172968745232, -0.002105166669934988, -0.0029899971559643745, -0.009866991080343723, 0.003148188814520836, 0.004853530321270227, -0.00742631871253252, -0.023697465658187866, -0.029594019055366516, 0.05120544135570526, 0.02895429916679859, 0.013747033663094044, -0.026965603232383728, 0.00011679676390485838, 0.0014750073896721005, 0.013315917924046516, 0.015714868903160095, 0.0022094687446951866, 0.004735321272164583, -0.041915588080883026, 0.020624026656150818, 0.005962610710412264, 0.02315509505569935, 0.016173798590898514, 0.01649365946650505, -0.028342392295598984, 0.002106904983520508, -0.0008900456596165895, 0.020179003477096558, -0.0027361952234059572, 0.01650756597518921, -0.0016557978233322501, -0.03501773625612259, -0.017675749957561493, -0.01011731568723917, 0.02987215854227543, -0.03496210649609566, -0.03376610949635506, 0.011508012190461159, -0.02375309355556965, 0.024239838123321533, -0.011542780324816704, -0.010875245556235313, 0.0003811377100646496, -0.0022616200149059296, -0.007196853868663311, -0.010743129067122936, -0.01392782386392355, 0.00014515392831526697, 0.026937788352370262, 0.012926522642374039, -0.000526726245880127, -0.008559736423194408, -0.012877847999334335, 0.017898261547088623, 0.010325920768082142, 0.0011977372923865914, -0.02613118477165699, -0.0016279839910566807, 0.011327221989631653, -0.007968690246343613, -0.014880451373755932, 0.031318482011556625, -0.005729669239372015, 0.0018009517807513475, -0.012557988055050373, 0.007412411738187075, 0.018468447029590607, -0.04352879524230957, 0.002562358044087887, 0.027730485424399376, 0.000614948570728302, -0.006779644638299942, -0.013371545821428299, -0.17778661847114563, 0.0006614499725401402, -0.007704457733780146, -0.018830029293894768, 0.03248666599392891, 0.030039042234420776, 0.022056443616747856, -0.005705331917852163, -0.012314616702497005, -0.000804865499958396, -0.013955637812614441, 0.001271617948077619, -0.017731377854943275, 0.0016723123844712973, -0.01049280446022749, 0.0003596253809519112, -0.008295503444969654, 0.010131223127245903, 0.05407027527689934, 0.0006736185750924051, 0.0278556477278471, -0.025700068101286888, -0.0063415756449103355, 0.0018026902107521892, 0.02553318627178669, -0.004853530321270227, -0.028759600594639778, 0.032514482736587524, 0.0021155967842787504, -0.025797417387366295, 0.009964339435100555, -0.007461085915565491, 0.022863049060106277, -0.013802661560475826, 0.016034729778766632, 0.0057122851721942425, 0.02389216423034668, 0.019650539383292198, -0.014727474190294743, 0.018788307905197144, 0.01108384970575571, 0.013837428763508797, 0.0224736537784338, 0.005726192146539688, 0.01369835902005434, 0.03824415057897568, 0.007377644069492817, -0.012794407084584236, 0.0012159901671111584, 0.005058657843619585, 0.04263875260949135, -0.038049452006816864, 0.0027240265626460314, -0.002915247343480587, 0.011862640269100666, 0.00432854238897562, -0.0034524037037044764, 0.025574905797839165, 0.0006896984996274114, -0.031095970422029495, -0.005639273673295975, -0.0070890747010707855, 0.01889956369996071, -0.011250733397901058, -0.0013507138937711716, -0.03626936301589012, -0.006053005810827017, 0.023252442479133606, 0.004547577351331711, -0.006644051987677813, 0.010353734716773033, -0.002385044237598777, 0.003141235327348113, 0.03971828892827034, 0.00336027005687356, 0.003987821750342846, -0.02373918704688549, 0.015993008390069008, 0.04241624101996422, -0.015867846086621284, -0.005406332202255726, 0.0153811015188694, -0.018259843811392784, -0.0023398466873914003, -0.01642412506043911, -0.0003861355362460017, 0.005760959815233946, 0.015575799159705639, -0.01362187135964632, 0.012968244031071663, 0.022863049060106277, -0.02681262604892254, -0.006174691952764988, -0.01634068228304386, 4.7452082071686164e-05, 0.012662290595471859, 0.03293168917298317, 0.005051704589277506, 0.0029239391442388296, 0.009282898157835007, 0.011118617840111256, 0.02411467581987381, -0.030706575140357018, 0.01291956938803196, 0.045642655342817307, 0.029371507465839386, -0.0049543557688593864, -0.004039973020553589, 0.040719591081142426, -0.011062989942729473, -0.018009517341852188, 0.005872215609997511, 0.027299370616674423, 0.005295076407492161, -0.004867437295615673, 0.04083084687590599, 0.002023463137447834, -0.028425833210349083, 0.03120722621679306, -0.014908265322446823, 0.047228049486875534, -0.016438031569123268, -0.01108384970575571, 0.007836573757231236, 0.008378945291042328, -0.005225541535764933, -0.09885069727897644, -0.04708898067474365, 0.020665748044848442, -0.005997377913445234, -0.019817423075437546, 0.0050134602934122086, -0.011626221239566803, 0.042444054037332535, -0.008949130773544312, 0.029510576277971268, -0.0009152520215138793, 0.0063659125007689, 0.0034384967293590307, 0.003158619161695242, 0.011939127929508686, -0.010896106250584126, -0.0035219385754317045, -0.008121666498482227, -0.009616665542125702, 0.021667050197720528, 0.015784403309226036, 0.0008713582064956427, 0.013253336772322655, -0.008079946041107178, -0.0019000389147549868, -0.023405419662594795, -0.02792518399655819, 0.010798756964504719, 0.01507514901459217, 0.004544100258499384, 0.032820433378219604, -0.01948365569114685, 0.0027448870241642, -0.008907410316169262, 0.00552454125136137, -0.016187705099582672, -0.0009030834771692753, -0.02158360742032528, 0.026075556874275208, -0.035574011504650116, -0.003911333624273539, 0.007356783840805292, 0.012293756008148193, -0.014080801047384739, -0.006244226824492216, -0.012085151858627796, -0.019428027793765068, 0.02277960628271103, 0.021833933889865875, -0.00575052946805954, -0.021541886031627655, -0.014644032344222069, -0.021180305629968643, -0.008580596186220646, 0.018996912986040115, 0.01590956561267376, 0.017147285863757133, 0.011605361476540565, -0.03384954854846001, -0.0008622317691333592, -0.01821812242269516, -0.012300709262490273, -0.023488862439990044, 0.01842672750353813, 0.023906070739030838, -0.01606254279613495, -0.004349403083324432, -0.011257687583565712, 0.00839285273104906, -0.011139477603137493, -0.004731844179332256, 0.014296358451247215, -0.030039042234420776, 0.018106866627931595, -0.020123375579714775, -0.008823968470096588, -0.015367195010185242, -0.005145576782524586, -0.0018913471139967442, 0.02522723190486431, -0.028022531419992447, 0.001467184629291296, -0.0022146839182823896, -0.033404525369405746, 0.03949577733874321, 0.0037479267921298742, -0.0034819559659808874, 0.00035593134816735983, 0.04683865234255791, -0.031151598319411278, -0.00813557393848896, 0.020498864352703094, 0.009755735285580158, -0.0005658395821228623, -0.0018409342737868428, -0.0021329806186258793, -0.008524969220161438, -0.009866991080343723, 0.026784813031554222, 0.004029542673379183, -0.026089463382959366, -0.0018913471139967442, -0.05484906584024429, 0.012571895495057106, -0.0073428768664598465, -0.004297251813113689, 0.011104710400104523, -0.0449473075568676, -0.01613207720220089, -0.0006631883443333209, -0.003525415202602744, 0.009971292689442635, -0.0235862098634243, 0.00601128488779068, -0.016910867765545845, -0.029621832072734833, -0.017856542021036148, -0.024921279400587082, 0.012196406722068787, -0.014769195578992367, 0.012092105112969875, 0.01940021477639675, -0.01941412128508091, -0.012363290414214134, 0.012314616702497005, 0.001224681967869401, -0.03037280961871147, 0.001442847540602088, -0.009046480059623718, 0.030595319345593452, -0.0002294649020768702, -0.017870448529720306, 0.0037479267921298742, -0.010138176381587982, 0.0032020783983170986, 0.02283523418009281, -0.013670545071363449, -0.02337760664522648, 0.017049938440322876, 0.01131331454962492, 0.005326366983354092, 0.00742631871253252, -0.021444538608193398, -0.0200816560536623, 0.03710377961397171, -0.03159662336111069, -0.0030612703412771225, -0.009616665542125702, 0.005757483188062906, -0.017216820269823074, 0.014699660241603851, 0.01004082802683115, 0.017870448529720306, 0.012321569956839085, 0.002059968886896968, -0.03621373325586319, 0.004627542104572058, 0.002663183491677046, 0.009950432926416397, 0.0065327961929142475, -0.0035462756641209126, 0.009310712106525898, 0.04099772870540619, -0.00014700095925945789, 0.008288550190627575, -0.005893075838685036, 0.007016063202172518, -0.016451938077807426, -0.02522723190486431, 0.01410861499607563, -0.013990405946969986, -0.029148995876312256, 0.00539242522791028, -0.021402817219495773, 0.02881522849202156, 0.01369835902005434, 0.014157288707792759, -0.014588405378162861, 0.010666641406714916, 0.0009378508548252285, -0.012599709443747997, 0.027049044147133827, 0.02636760286986828, -0.014268544502556324, -0.012710965238511562, 0.0205962136387825, 0.03518461808562279, 0.003702729009091854, -0.021986909210681915, 0.007287248969078064, 0.010395455174148083, -0.0010073856683447957, 0.0010047780815511942, 0.009491502307355404, 0.00216427119448781, 0.0353793166577816, 0.009206409566104412, 0.024434534832835197, -0.013872195966541767, 0.0020912596955895424, 0.010179897770285606, 0.03320983052253723, 0.0033463630825281143, 0.008476294577121735, -0.005291599780321121, -0.018037332221865654, -0.020248539745807648, 0.00814252719283104, -0.012516267597675323, -0.0013559289509430528, 0.03599122166633606, 0.02351667545735836, 0.015061241574585438, -0.005086471792310476, -0.001419379492290318, 0.010965640656650066, -0.007676643785089254, 0.005594076123088598, -0.00481528602540493, -0.014157288707792759, -0.017647936940193176, 0.011389803141355515, 0.015659241005778313, 0.028870856389403343, 0.03955140337347984, -0.013281150721013546, 0.03354359790682793, 0.030484063550829887, 0.016771798953413963, 0.0011516704689711332, -0.0013993881875649095, 9.088418300962076e-05, 0.007162086199969053, 0.02353058196604252, -0.017008217051625252, -0.022292863577604294, -0.005187297239899635, -0.012286802753806114, -0.009498456493020058, 0.007099505048245192, -0.002272050129249692, 0.08143918216228485, 0.03671438246965408, -0.02859271690249443, 0.015812218189239502, -0.0317913182079792, -0.0034280666150152683, 0.016521472483873367, 0.008747479878365993, 0.016173798590898514, -0.03779912739992142, 0.006511935964226723, -0.010138176381587982, -0.03245885297656059, -0.033042944967746735, -0.012001710012555122, -0.009609712287783623, -0.006108633708208799, 0.021764397621154785, -0.014588405378162861, -0.01710556447505951, 0.010193804278969765, 0.007019539829343557, 0.018315471708774567, -0.00959580484777689, -0.041693076491355896, 0.0018826551968231797, 0.039384521543979645, 0.004832670092582703, 0.002412858186289668, -0.021694863215088844, 0.029899971559643745, -0.010631874203681946, -0.029955599457025528, -0.006386773195117712, 0.006995202973484993, 0.02500472031533718, 0.008469341322779655, -0.020359795540571213, 0.0052985530346632, 0.0052985530346632, 0.00632766867056489, -0.0004780518647748977, -0.01842672750353813, -0.03969047591090202, 0.019803516566753387, 0.0011820918880403042, -0.014977799728512764, -0.024587512016296387, -0.03031718172132969], "e09ee097-cc44-4337-9851-729475b3188e": [-0.02847166545689106, -0.006897632498294115, 0.02149142511188984, -0.033015016466379166, 0.008109192363917828, -0.008343243971467018, -0.011151861399412155, -0.02051391638815403, -0.00541071780025959, -0.03048175387084484, 0.020155956968665123, 0.008233102038502693, 0.004780844319611788, 0.0013621447142213583, -0.0033765356056392193, 0.011943505145609379, 0.019963208585977554, 0.0029548988677561283, 0.015406089834868908, -0.01499305758625269, -0.017044449225068092, 0.0016366388881579041, -0.010504777543246746, -0.020500149577856064, -0.024974660947918892, 0.003278440563008189, 0.013630052097141743, -0.01480030920356512, -9.497582504991442e-05, 0.0228681992739439, 0.01877918280661106, 0.003937570843845606, -0.019027002155780792, -0.010188119485974312, -0.005703282076865435, 0.014483651146292686, 0.013278975151479244, -0.0018689692951738834, -0.007895792834460735, -0.0010403241030871868, 0.02844412997364998, 0.01097976416349411, -0.02457539737224579, 0.003982315771281719, -0.016466204077005386, 0.04482772573828697, -0.0026502879336476326, -0.020582756027579308, -0.014759005978703499, 0.01588796079158783, 0.0031941132619976997, 0.02029363252222538, -0.012115602381527424, 0.002330188173800707, -0.0008501572883687913, -0.003627796657383442, -0.0025848911609500647, 0.008831998333334923, 0.012879710644483566, -0.0034006291534751654, -0.0006440716097131371, 0.01424960047006607, -0.015061896294355392, -0.005186992231756449, -0.019302356988191605, -0.01742994599044323, 0.0006664441316388547, -0.0017287106020376086, 0.02431381121277809, -0.009224378503859043, 0.00997471995651722, 0.01555753406137228, -0.007035309914499521, -0.015199573710560799, -0.004212925210595131, -0.01689300499856472, -0.0016529880231246352, -0.02016972377896309, 0.0006139546749182045, 0.012384072877466679, 0.008102308958768845, -0.004839356988668442, -0.005954543128609657, 0.006494926288723946, 0.017195893451571465, 0.029958579689264297, 0.004605305381119251, -0.0045949798077344894, -0.016342295333743095, -0.017388641834259033, 0.003655332140624523, 0.0011943505378440022, 0.024754377081990242, 0.023666726425290108, 0.013726426288485527, 0.008267521858215332, 0.007004332263022661, -0.0068253520876169205, 0.012693846598267555, -0.012487330473959446, -0.017608925700187683, 0.0088113471865654, -0.032987479120492935, -0.009224378503859043, -0.034309182316064835, -0.01480030920356512, 0.023515282198786736, -0.010518545284867287, 0.022289954125881195, 0.025745654478669167, -0.016177082434296608, 0.03045421838760376, -0.018792951479554176, -0.01931612379848957, -0.00540383392944932, -0.022950805723667145, 0.0074689933098852634, -0.029215121641755104, -0.01569521240890026, 0.00330769713036716, 0.005830633454024792, 0.006044033449143171, 0.0488203689455986, -0.011860898695886135, -0.002288884948939085, -0.00015908181376289576, 0.01579158566892147, -0.0022166045382618904, 0.00839831493794918, -0.0036897514946758747, 0.04237707331776619, 0.00800593476742506, 0.0018293870380148292, 0.0015290784649550915, -0.032987479120492935, 0.012735149823129177, -0.0136369364336133, 0.007909560576081276, -0.01686546951532364, -0.020142188295722008, 0.0029032700695097446, 0.02526378445327282, -0.0036794256884604692, -0.0187241118401289, -0.021697942167520523, 0.04939861223101616, -0.007379502989351749, 0.042266931384801865, 0.026723163202404976, -0.017278499901294708, -0.014332206919789314, -0.017471248283982277, -0.003037505317479372, 0.010959113016724586, 0.011096790432929993, -0.0036346805281937122, 0.0053659724071621895, 0.02431381121277809, -0.03353818878531456, -0.002485075267031789, 0.016810398548841476, -0.0026743814814835787, 0.002803453942760825, 0.003180345520377159, 0.007475877180695534, 0.032987479120492935, 0.009795739315450191, -0.023350069299340248, -0.01279022078961134, -0.0010102071100845933, 0.0032147648744285107, 0.04912325739860535, -0.04086261987686157, 0.026475343853235245, 0.0016934307059273124, 0.0044641862623393536, 0.01105548720806837, 0.018476292490959167, -0.030068721622228622, -0.003651890205219388, 0.011964157223701477, 0.002591775031760335, 0.004044270608574152, 0.024768145754933357, -0.012315234169363976, -0.03326283395290375, 0.028747020289301872, -0.011647499166429043, -0.011275770142674446, 0.007076613139361143, -0.0013027713866904378, 0.016218384727835655, -0.028829624876379967, 4.1464529203949496e-05, -0.6300113201141357, -0.007117916364222765, 0.022358793765306473, -0.02457539737224579, 0.009513501077890396, 0.01950887218117714, -0.002726010512560606, -0.007599786855280399, -0.019467569887638092, 0.02384570799767971, -0.0026347993407398462, -0.0037241708487272263, 0.011007299646735191, -0.008219334296882153, -0.014827844686806202, -0.026874607428908348, 0.016631416976451874, -0.025208713486790657, -0.029875973239541054, 0.008233102038502693, -0.02092694863677025, 0.007957748137414455, -0.009912765584886074, -0.006223013624548912, 0.00499424384906888, 0.004457302391529083, 0.012590589001774788, 0.013113762252032757, -0.006821909919381142, 0.02822384610772133, -0.042019110172986984, 0.0017657113494351506, 0.02714996226131916, -0.021601567044854164, 0.040477123111486435, -0.011468518525362015, -0.023611655458807945, 0.021808084100484848, 0.017980655655264854, 0.021546496078372, -0.01642490178346634, 0.014648864045739174, -0.009699365124106407, 0.023267462849617004, -0.001891341875307262, -0.004780844319611788, 0.017443712800741196, 0.006019939668476582, -0.016149546951055527, -0.01897193118929863, 0.010738829150795937, -0.0026933120097965, -0.003180345520377159, -0.005421043373644352, -0.009733784943819046, 0.026378970593214035, 0.015282180160284042, -0.010793900117278099, 0.010373984463512897, 0.007407038472592831, 0.01302427239716053, 0.0039306869730353355, -0.019908137619495392, -0.04634217917919159, -0.04796677082777023, 0.0034040710888803005, -0.01632852666079998, -0.02457539737224579, -0.014593793079257011, -0.02717749774456024, -0.0012769568711519241, -0.022413862869143486, 0.0054554627276957035, -0.020692897960543633, 0.018035726621747017, 0.026819536462426186, 0.023460211232304573, 0.009038514457643032, -0.005792772397398949, 0.040036559104919434, -0.004267996177077293, -0.006928609684109688, -0.0030512730590999126, -0.01635606214404106, 0.05380428582429886, 0.02479568123817444, -0.004581212066113949, -0.00898344349116087, -0.006164500955492258, -0.009671829640865326, 0.018393686041235924, 0.011165629141032696, 0.0070421937853097916, -0.05449267476797104, 0.03797139972448349, 0.035383064299821854, 0.020362472161650658, 0.004357486497610807, 0.007565367501229048, -0.020527685061097145, -0.0339236855506897, -0.008831998333334923, 0.014690167270600796, 0.012170673348009586, 0.003491840325295925, 0.03196866810321808, -0.029297728091478348, 0.004653492476791143, 0.008040353655815125, -0.03419904038310051, -0.0091417720541358, 0.015943031758069992, -0.027301408350467682, -0.013265207409858704, -0.0035210968926548958, -0.03381354361772537, 0.024203669279813766, 0.00038442082586698234, -0.013822800479829311, -0.016975611448287964, -0.012859059497714043, 0.006315946113318205, -0.0019619015511125326, 0.013292742893099785, -0.005858168937265873, -0.003058156929910183, 0.017663996666669846, -0.009623643010854721, -0.0006673046154901385, 0.014414812438189983, 0.008735624141991138, -0.0022527447436004877, 0.02208343893289566, -0.008425850421190262, 0.012198208831250668, -0.0009886950720101595, 0.008742508478462696, -0.01234965305775404, 0.0180219579488039, -0.04788416251540184, -0.0034987241961061954, -0.01586042530834675, 0.021216072142124176, 0.005679188296198845, -0.003631238592788577, -0.015351018868386745, -0.009472197853028774, 0.004089015536010265, 0.010284493677318096, -0.017250964418053627, -0.023446442559361458, -0.001756245968863368, -0.001027416787110269, 0.020059581845998764, 0.003992641810327768, 0.0022820010781288147, 0.006856329273432493, -0.033207762986421585, -0.021546496078372, -0.022482702508568764, -0.028416594490408897, 0.016810398548841476, 0.0026021008379757404, -0.0011582102160900831, -0.01676909439265728, -0.00821245089173317, -0.026654323562979698, 0.02161533571779728, -0.00838454719632864, -0.026970982551574707, -0.003720728913322091, -0.022014599293470383, 0.0031614149920642376, 0.0018104563932865858, -0.003868731902912259, -0.0020083675626665354, -0.020018279552459717, 0.00421636737883091, -0.013492374680936337, -0.0074483416974544525, 0.006835677661001682, 0.026640556752681732, -0.014277135953307152, -0.012652543373405933, 0.031225210055708885, 0.012941665947437286, 0.022537773475050926, 0.005686072167009115, -0.025649279356002808, 0.017815442755818367, 0.015943031758069992, 0.004629399161785841, -0.025029731914401054, -0.01480030920356512, -0.018572667613625526, -0.008116076700389385, -0.014332206919789314, -0.014456115663051605, -0.006918284110724926, 0.02680576965212822, 0.029490476474165916, 0.013547445647418499, -0.00423013512045145, -0.001944691757671535, -0.0016788025386631489, -0.030757108703255653, 0.024589164182543755, -0.031858526170253754, 0.022992108017206192, -0.004877218045294285, 0.0026950330939143896, 1.9791110389633104e-05, -0.004977034404873848, -0.02195952832698822, -0.003851522458717227, 0.0036897514946758747, -0.0045158155262470245, 0.014290903694927692, -0.019426265731453896, 0.010167468339204788, -0.0009387870668433607, 0.007950863800942898, 0.0043953475542366505, -0.006470832973718643, 0.009658061899244785, 0.014635096304118633, 0.005503649823367596, 0.011860898695886135, 0.009781971573829651, -0.0321614146232605, -0.004767076577991247, 0.030839715152978897, 0.009017863310873508, -0.015929263085126877, 0.037833720445632935, 0.016314759850502014, 0.032133881002664566, -0.013237671926617622, 0.053941965103149414, -0.01652127504348755, 0.005035547073930502, -0.01950887218117714, 0.026447808369994164, -0.0330425500869751, 0.04168868437409401, 0.008708088658750057, 0.03816414624452591, -0.007004332263022661, -0.024079758673906326, 0.006233339663594961, -0.020679129287600517, 0.012094950303435326, -0.014387276954948902, -0.005424485541880131, 0.021876921877264977, -0.008047237992286682, 0.002381817204877734, 0.006739303469657898, 0.02083057537674904, 0.009485965594649315, -0.01928858831524849, 0.004718889482319355, -0.009313869290053844, -0.008081656880676746, 0.01143409963697195, -0.006364133208990097, -0.0027174055576324463, -0.023418908938765526, -0.009575456380844116, -0.008267521858215332, -0.010484126396477222, -0.009602990932762623, -0.0008854371262714267, -0.012652543373405933, 0.0043746959418058395, 0.005021779332309961, 0.008639249950647354, 0.035851169377565384, 0.009279449470341206, 0.03309762105345726, -0.004884101916104555, -0.024974660947918892, 0.005434811115264893, 0.0036174708511680365, -0.0022699544206261635, 0.007985283620655537, -0.015970567241311073, 0.00823998637497425, 0.02176677994430065, 0.036980122327804565, -0.0037723579443991184, 0.0009843927109614015, -0.010773248039186, 0.0025728445034474134, 0.002473028376698494, -0.010842086747288704, 0.029022373259067535, -0.02374933287501335, -0.0017674323171377182, 0.011124325916171074, 0.009506617672741413, 0.01696184277534485, -0.007826954126358032, -0.022895734757184982, 0.02149142511188984, -0.004340276587754488, 0.008508456870913506, -0.007758115418255329, 1.9643215637188405e-05, -0.040724944323301315, 0.0010213934583589435, -0.0002021059626713395, 0.007751231547445059, -0.017884280532598495, -0.019811762496829033, 0.0026881492231041193, 0.026502879336476326, -0.0053074597381055355, 0.013616284355521202, 0.024423953145742416, -0.03001365065574646, -0.006322829984128475, -0.0014154947130009532, 0.03048175387084484, 0.06228520721197128, 0.0009809507755562663, 0.0014542164281010628, 0.016617650166153908, -0.005211085546761751, -0.007964631542563438, -0.026199989020824432, -0.013492374680936337, 0.03571349009871483, 0.0003934559063054621, -0.024658003821969032, -0.0005253249546512961, -0.008081656880676746, -0.003982315771281719, 0.021436354145407677, -0.0028275474905967712, 0.010408403351902962, -0.020362472161650658, -0.01380903273820877, -0.009492849931120872, -0.0031338795088231564, -0.00034032107214443386, 0.031913597136735916, 0.002571123419329524, 0.0422944650053978, 0.025057267397642136, 0.020059581845998764, -0.005242063198238611, 0.004818705376237631, -0.04020177200436592, -0.007018100004643202, 0.02761806547641754, -0.0008746810490265489, 0.0064777168445289135, -0.0020686013158410788, 0.02998611517250538, 0.01696184277534485, -0.012156905606389046, -0.02296457253396511, 0.01755385473370552, -0.004942615050822496, 0.02127114310860634, -0.012143137864768505, -0.0029032700695097446, 0.014745238237082958, -0.012921013869345188, -0.011867783032357693, 0.020555220544338226, -0.01840745471417904, -0.005840959493070841, 0.012101834639906883, 0.005200759973376989, 0.0020324611105024815, 0.00843273475766182, 0.017195893451571465, 0.009403359144926071, -0.010098629631102085, -0.010780132375657558, -0.011723221279680729, -0.035217851400375366, -0.028774553909897804, -0.020844342187047005, 0.01740241050720215, 0.0019205983262509108, -0.010305145755410194, -0.027659369632601738, -0.015295947901904583, 0.008467153646051884, -0.03293240815401077, -0.0009086701320484281, 0.002288884948939085, -0.03373093903064728, -0.043616168200969696, -0.007565367501229048, 0.028526736423373222, 0.02756299450993538, 0.012865942902863026, -0.0023405139800161123, -0.007138567976653576, 0.009224378503859043, -0.01975669153034687, -0.023047178983688354, 0.012053647078573704, -0.017636461183428764, -0.007840721867978573, -0.017663996666669846, -0.02573188580572605, -0.010043558664619923, -0.01799442246556282, 0.018958164379000664, 0.010119280777871609, -0.020624058321118355, -0.005173224490135908, 0.003159693907946348, 0.0016564299585297704, 0.020789271220564842, 0.01821470633149147, 0.007730579935014248, 0.027659369632601738, -0.01818717084825039, 0.014469883404672146, -0.02195952832698822, -0.007943980395793915, -0.013409768231213093, -0.008322592824697495, 0.010201887227594852, 0.0026261943858116865, 0.007055961526930332, -0.0032526261638849974, -0.013513026759028435, 0.015598837286233902, -0.006095662247389555, 0.0083707794547081, 0.007634206209331751, 0.01635606214404106, 0.003545190440490842, 0.016590114682912827, 0.010704409331083298, 0.0015738236252218485, -0.0334005132317543, 0.010126165114343166, -0.020279865711927414, 0.03535553067922592, 0.004784286022186279, 0.010284493677318096, 0.017801674082875252, 0.040477123111486435, -0.026668092235922813, -0.04727838188409805, 0.019178446382284164, 0.027893420308828354, 0.007241825573146343, -0.022345025092363358, -0.02582826092839241, -0.015461159870028496, -0.01840745471417904, 0.012163789011538029, -0.0004999406519345939, -0.012886594980955124, 0.006611952092498541, -0.034942496567964554, 0.014703935012221336, 0.014263368211686611, -0.0037035192362964153, -0.008880185894668102, -0.033675868064165115, -0.012776453047990799, -0.01217755675315857, 0.003106344025582075, 0.02690214291214943, -0.005754910875111818, -0.0017450597370043397, -0.020183492451906204, -0.022221116349101067, -0.016397366300225258, -0.00018371314217802137, 0.005534627474844456, -0.0036140289157629013, 0.04413934051990509, 0.015061896294355392, 0.040945228189229965, 0.0049598244950175285, 0.012184441089630127, 0.008584178984165192, 0.007689277175813913, -0.002263070549815893, -0.009059165604412556, -0.015199573710560799, -0.002615868579596281, -0.005462346598505974, -0.0077649992890655994, -0.008487805724143982, -0.006078452803194523, 0.002051391638815403, -0.009210610762238503, 0.005589698441326618, 0.008728740736842155, -0.003156251972541213, -0.00540383392944932, -0.05603465810418129, -0.01632852666079998, 0.040504660457372665, -0.021161001175642014, -0.00876315962523222, -0.036512017250061035, 0.0011676755966618657, 0.01557130180299282, -0.009017863310873508, 0.01524087693542242, 0.007482761051505804, 0.013650704175233841, 0.01137214433401823, 0.010656222701072693, 0.01850382797420025, 0.014456115663051605, -0.02690214291214943, -0.012686963193118572, -0.03843950107693672, -0.011220699176192284, 0.03469467908143997, 0.027631834149360657, 0.016755327582359314, -0.0026451251469552517, 0.008742508478462696, -0.010656222701072693, 0.015736514702439308, -0.023336302489042282, -0.016782863065600395, -0.007641090080142021, -0.021890690550208092, -0.008281289599835873, -0.019894368946552277, -0.0088113471865654, 0.01566767692565918, -0.022661682218313217, 0.011564892716705799, 0.00010933513112831861, 0.01742994599044323, -0.026186222210526466, -0.014965522103011608, 0.015846656635403633, 0.0036863095592707396, 0.029297728091478348, 0.016824165359139442, 0.006216129753738642, 0.011172512546181679, 0.025002196431159973, -0.023639190942049026, -0.024451488628983498, 0.0023611655924469233, -0.005871936678886414, 0.01809079758822918, 0.03755836561322212, -0.017374875023961067, -0.025346390902996063, 0.002655450953170657, -0.008728740736842155, 0.009293217211961746, -0.031473029404878616, 0.02220734767615795, 0.013740194030106068, -0.01477277372032404, -0.04323067143559456, -0.016369830816984177, -0.013375349342823029, 0.011296422220766544, -0.0007206546142697334, 0.009341404773294926, 0.0034247227013111115, -0.0039306869730353355, 0.010773248039186, 0.04546104371547699, -0.009933416731655598, 0.025112338364124298, -0.013568097725510597, 0.0030960182193666697, -0.013630052097141743, 0.0036622160114347935, -0.010532313026487827, 0.00521452771499753, 0.006484600715339184, 0.03218895196914673, -0.006116313859820366, 0.0008019702509045601, 0.026186222210526466, 0.0024988430086523294, -0.010318913497030735, -0.007654857821762562, 0.00268642813898623, 0.032574448734521866, -0.024010920897126198, -0.011379028670489788, -0.004839356988668442, -0.007159219589084387, 0.024010920897126198, -0.02847166545689106, -0.013974245637655258, -0.020913181826472282, 0.02016972377896309, 0.011681918986141682, -0.0046156314201653, 0.005871936678886414, -0.0020565546583384275, 0.0030478311236947775, 0.007427690085023642, -0.011399679817259312, -0.011048602871596813, 0.00700089056044817, 0.013857219368219376, -0.035630885511636734, -0.005792772397398949, -0.015488695353269577, -0.01500682532787323, 0.008253754116594791, -0.012246395461261272, -0.0012210254790261388, 0.01610824279487133, 0.023763101547956467, -0.007407038472592831, 0.004983918275684118, 0.021808084100484848, 0.024974660947918892, -0.03262951970100403, 0.015323483385145664, -0.036126524209976196, 0.006443297490477562, 0.005087175872176886, -0.0007748650386929512, -0.027700671926140785, -0.017127055674791336, 0.006574091035872698, 0.012060531415045261, 0.013891639187932014, -0.007517180405557156, 0.02066536247730255, 0.006605068221688271, 0.008343243971467018, 0.0020978578832000494, -0.015516230836510658, 0.006109429989010096, -0.013602516613900661, 0.013210136443376541, -0.0007847605738788843, -0.005682630464434624, 0.0060405912809073925, -0.007854489609599113, 0.011929737403988838, -0.009898997843265533, -0.039623524993658066, -0.007214290089905262, -0.018297312781214714, -0.007902677170932293, 0.01799442246556282, 0.012735149823129177, 0.00921749509871006, -0.016714023426175117, -0.043092992156744, 0.004650050774216652, -0.014125690795481205, -0.005080292001366615, 0.00815049558877945, 0.0014757284661754966, 0.01670025661587715, 0.02771443873643875, 0.0018930628430098295, -0.026007240638136864, -0.027976026758551598, -0.01963278278708458, -0.03835689276456833, -0.028044864535331726, 0.008887069299817085, 0.03678737208247185, 0.022771824151277542, -0.02186315506696701, -0.02626882866024971, -0.02815500646829605, -0.03070203773677349, -0.017567623406648636, -0.023391373455524445, 0.028086168691515923, 0.03576856106519699, 0.013698890805244446, -0.008088541217148304, 0.02066536247730255, -0.013196368701756, 0.020940717309713364, -0.021546496078372, 0.00701465830206871, -0.015034360811114311, 0.0022406980860978365, 0.023611655458807945, -0.01953640766441822, -0.056392621248960495, 0.01263189222663641, -0.008205566555261612, -0.00110486033372581, 0.018613969907164574, 0.0016547089908272028, -0.0013544004177674651, -0.00617482652887702, -0.0032526261638849974, 0.014524954371154308, 0.03262951970100403, 0.04119304567575455, 0.019619014114141464, -0.023294998332858086, -0.010277610272169113, 0.014855380170047283, -0.005452021025121212, 0.005004569888114929, -0.0019292031647637486, 0.00541071780025959, -0.0048324731178581715, 0.016053171828389168, -0.006209245882928371, -0.00859106332063675, 0.0037310547195374966, 0.0022579077631235123, 0.011124325916171074, 0.007723696064203978, 0.015874192118644714, 0.03284980356693268, -0.012742034159600735, 0.015268412418663502, -0.009823274798691273, 0.01809079758822918, 0.0016306154429912567, -0.020018279552459717, 0.033428046852350235, -0.028389059007167816, -0.007045635487884283, -0.0035830517299473286, 0.013630052097141743, -0.014924218878149986, -0.012576821260154247, -0.006728977896273136, -0.005995846353471279, -0.0018655273597687483, 0.0016977331833913922, -0.01104171946644783, -0.025594208389520645, 0.003366209799423814, -0.015736514702439308, 0.0018534805858507752, 0.0016202896367758512, -0.007737463805824518, 0.009534153155982494, -0.021918226033449173, -0.012260163202881813, -0.0103533323854208, 0.00936205592006445, -0.017925584688782692, -0.00560690788552165, 0.027741974219679832, 0.004822147078812122, -0.005083734169602394, 0.20519423484802246, -0.0009198564221151173, 0.004075247794389725, 0.02626882866024971, 0.021339980885386467, -0.008336360566318035, 0.005114711355417967, 0.0053659724071621895, -0.001190908602438867, 0.005448578856885433, 0.01686546951532364, 0.0044641862623393536, -0.023831939324736595, -0.004443534649908543, 0.016218384727835655, -0.0016357783460989594, -0.034942496567964554, -0.03155563771724701, -0.02580072544515133, -0.0009198564221151173, -0.005104385782033205, -0.009245030581951141, 0.0016770815709605813, -0.000998160452581942, 0.010435938835144043, 0.00038678714190609753, -0.01950887218117714, 0.021339980885386467, 0.008012818172574043, 0.029215121641755104, -0.01909584179520607, 0.016218384727835655, -0.003786125686019659, -0.015309715643525124, -0.0035830517299473286, -0.01720966212451458, 0.021794315427541733, -0.014896683394908905, -0.0013449350371956825, 0.02589709870517254, 0.001264910097233951, -0.007262477185577154, -0.0011513263452798128, -0.02387324348092079, 0.008597946725785732, 1.7680238670436665e-05, -0.014703935012221336, -0.002455818699672818, -0.0006987123051658273, 0.0021236722823232412, -0.01579158566892147, -0.0018861789721995592, 0.031417958438396454, 0.022895734757184982, 0.003037505317479372, -0.006064685061573982, -0.017732836306095123, 0.010181236080825329, -0.006846003700047731, 0.01422206498682499, -0.02734271064400673, 0.0034488162491470575, -0.013306510634720325, 0.02570435032248497, -0.027260104194283485, -0.0010540918447077274, -0.020844342187047005, 0.030977390706539154, -0.00209613679908216, 0.011179396882653236, 0.003741380525752902, -0.005558720789849758, -0.02176677994430065, -0.012824639678001404, -0.007682393305003643, -0.006057801190763712, 0.023763101547956467, 0.035162780433893204, 0.034722212702035904, 0.026640556752681732, 0.00777876703068614, 0.0013948431005701423, -0.016755327582359314, -0.024809448048472404, 0.010084861889481544, -0.0348048210144043, 0.021629102528095245, -0.03615405783057213, -0.021780548617243767, -0.030536824837327003, -0.014304671436548233, 0.0006453623063862324, -0.016782863065600395, -0.008969675749540329, -0.002146044746041298, 0.0056344433687627316, 0.01625968888401985, 0.03857717663049698, -0.003552074311301112, -0.030371611937880516, -0.01480030920356512, 0.05204201862215996, 0.032959945499897, 0.018930628895759583, -0.009781971573829651, 0.004877218045294285, -0.011551124975085258, 0.02705358900129795, 0.0004039968189317733, 0.005211085546761751, -0.004154412541538477, -0.024933358654379845, 0.019261052832007408, 0.008653017692267895, 0.0006780606927350163, 0.01613577827811241, 0.016163313761353493, 0.002746662124991417, 0.003978874068707228, -0.015061896294355392, 0.010704409331083298, -0.01157866045832634, 0.007792534772306681, -0.004646608605980873, -0.028581807389855385, -0.01324455626308918, 0.0022424189373850822, 0.010546080768108368, -0.03686998039484024, -0.01853136345744133, 0.0038824996445327997, -0.018063262104988098, 0.012439143843948841, -0.0317208506166935, -0.00760667072609067, -0.016686487942934036, -0.007579135242849588, -0.01670025661587715, -0.0036140289157629013, -0.01118628028780222, -0.011262002401053905, 0.00423013512045145, -0.005169782321900129, -0.019674085080623627, -0.0059820786118507385, -0.013003620319068432, 0.011860898695886135, -0.002447213977575302, -0.007751231547445059, -0.024905823171138763, 0.014910451136529446, 0.004033944569528103, -0.02098201960325241, -0.005723933689296246, 0.02957308292388916, -0.008990327827632427, -0.017388641834259033, -0.013678239658474922, -0.0017571065109223127, -0.002473028376698494, -0.03910035267472267, -0.001744199194945395, 0.043368346989154816, -0.014277135953307152, -0.026392737403512, -0.018476292490959167, -0.17611679434776306, 0.016122011467814445, 0.014111923053860664, -0.019811762496829033, 0.02805863320827484, 0.021725477650761604, 0.010339564643800259, -0.011268886737525463, -0.02281312830746174, 0.013430420309305191, -0.009293217211961746, -0.003278440563008189, -0.02844412997364998, -0.005768678616732359, -0.008584178984165192, 0.02431381121277809, -0.00521452771499753, 0.008350128307938576, 0.06041279807686806, 0.002915316727012396, 0.013099994510412216, -0.025373926386237144, 0.004670702386647463, -0.005723933689296246, 0.001927482197061181, -0.0072487094439566135, -0.010346448980271816, 0.03508017584681511, 0.011688802391290665, -0.022978341206908226, 0.003450537333264947, -0.00418538972735405, 0.015130735002458096, -0.008102308958768845, 0.03923802822828293, 0.0202660970389843, 0.004677586257457733, -0.010738829150795937, -0.0030013651121407747, 0.001977390144020319, 0.010800783522427082, 0.009079817682504654, 0.015777818858623505, -0.003803335363045335, 0.006192036438733339, 0.024341346696019173, 0.020968252792954445, -0.013960477896034718, -0.005496765952557325, -0.01195727288722992, 0.039816275238990784, -0.0077649992890655994, -0.010566732846200466, -0.00883888266980648, 0.02425874024629593, 0.008246869780123234, -0.0025539137423038483, 0.028554271906614304, -0.0045433505438268185, -0.02809993550181389, -0.007826954126358032, -0.005933891516178846, 0.013334046117961407, 0.0061300816014409065, -0.021312445402145386, -0.02827891707420349, -0.008233102038502693, -0.004729215055704117, -0.0014550769701600075, 0.0010308587225154042, -0.008783811703324318, 0.006846003700047731, 0.022730521857738495, 0.016658952459692955, 0.01499305758625269, 0.004433209076523781, -0.015116967260837555, -0.004533024970442057, 0.035630885511636734, 0.005317785777151585, 0.0065878587774932384, 0.005331553053110838, -0.013506142422556877, -0.011688802391290665, -0.02120230346918106, 0.010456590913236141, 0.019908137619495392, 0.01789804920554161, -0.02237256057560444, 0.0056344433687627316, 0.02054145187139511, -0.010766364634037018, 0.026475343853235245, -0.01877918280661106, 0.020458845421671867, 0.008191798813641071, 0.026158686727285385, -0.002918758662417531, 0.017361106351017952, -0.01862773858010769, 0.0056550949811935425, 0.026089847087860107, -0.0352453887462616, -0.004746424965560436, 0.04460744559764862, 0.01456625759601593, 0.0037930095568299294, 0.006243665236979723, 0.03865978494286537, -0.019302356988191605, -0.019605247303843498, 0.013685123063623905, 0.020679129287600517, 0.0083707794547081, -0.006756513379514217, 0.046700138598680496, 0.010621803812682629, -0.01789804920554161, 0.028141239657998085, -0.01478654146194458, 0.0422118604183197, -0.013120646588504314, -0.0124253761023283, -0.005118153523653746, 0.01601186953485012, -0.01064933929592371, -0.10843463987112045, -0.04681028053164482, 0.010373984463512897, -0.002805174794048071, -0.0063297138549387455, 0.008584178984165192, -0.012005460448563099, 0.036732301115989685, 0.014497418887913227, 0.02677823416888714, -0.012686963193118572, 0.00502522150054574, 0.01217755675315857, 0.016824165359139442, -0.0002613717515487224, -0.0037035192362964153, -0.022881966084241867, 0.004202599637210369, -0.015943031758069992, 0.03108753263950348, 0.008054121397435665, -0.01203299593180418, 0.0072693610563874245, -0.014731470495462418, -0.005255830939859152, -0.02290950156748295, -0.029049908742308617, 0.021849386394023895, 0.0014266809448599815, 0.00016209350724238902, 0.015708979219198227, -0.0103533323854208, 0.01767776533961296, -0.00799216702580452, -0.012246395461261272, 0.005142246838659048, 0.00762043846771121, -0.03268459066748619, 0.007420806214213371, -0.05165652185678482, -0.005142246838659048, 0.011564892716705799, 0.017264733090996742, -0.018421221524477005, -0.014084387570619583, 0.00700777443125844, -0.015116967260837555, 0.02129867859184742, 0.010126165114343166, -0.009589223191142082, -0.017760371789336205, -0.017732836306095123, -0.014676399528980255, -0.004512373358011246, 0.038081541657447815, 0.006374458782374859, 0.010683758184313774, -0.005482998210936785, -0.01338911708444357, -0.004422883037477732, -0.014098155312240124, -0.001796688768081367, -0.007675509434193373, 0.007372619118541479, 0.004350602626800537, -0.009079817682504654, -0.011681918986141682, -0.01601186953485012, 0.0042473445646464825, 0.01175075676292181, 0.008687437511980534, 0.018448757007718086, -0.026475343853235245, 0.009692481718957424, -0.02039000764489174, -0.012088066898286343, -0.01521334145218134, -0.017195893451571465, -0.0015299390070140362, 0.02085811085999012, -0.025250015780329704, -0.0016839654417708516, -0.005785888526588678, -0.026103615760803223, 0.023460211232304573, -0.0016839654417708516, -0.0163009911775589, -0.004818705376237631, 0.02869194932281971, -0.0374482236802578, 0.007937096059322357, 0.022771824151277542, 0.016190849244594574, -0.010139932855963707, 0.00033365230774506927, 0.017168357968330383, -0.002562518697232008, -0.011922853998839855, 0.027452852576971054, 0.004650050774216652, -0.00898344349116087, -0.0103533323854208, -0.05564916133880615, 0.013155065476894379, 0.00661539426073432, -0.00441255746409297, 0.025690583512187004, -0.007840721867978573, 0.003834312781691551, -0.007943980395793915, -0.005871936678886414, 0.010360216721892357, -0.017581390216946602, 0.0088113471865654, -0.011895318515598774, -0.035162780433893204, -0.019591478630900383, -0.031032461673021317, 0.009726900607347488, -0.01569521240890026, 0.01097976416349411, 0.009410243481397629, 0.0036002611741423607, 0.003655332140624523, 0.017732836306095123, 0.01301050465553999, -0.014648864045739174, 0.015502463094890118, -0.006143849343061447, 0.038962673395872116, -0.003720728913322091, -0.04634217917919159, 0.012480447068810463, -0.006808142177760601, 0.00696991290897131, -0.007654857821762562, -0.015502463094890118, -0.016466204077005386, 0.00014079654647503048, 0.022579075768589973, 0.014098155312240124, 0.02570435032248497, -0.03026147000491619, -0.024176133796572685, 0.026957213878631592, -0.022634146735072136, -0.00616794265806675, -0.014827844686806202, -0.026062311604619026, -0.023666726425290108, -0.004939172882586718, 0.002211441518738866, 0.030619431287050247, -0.0015832888893783092, -0.019619014114141464, -0.0647633969783783, 0.01264565996825695, -0.017099520191550255, -0.006467390805482864, 0.03284980356693268, 0.004674144089221954, -0.011647499166429043, 0.05027974769473076, -0.0030426683370023966, 0.016810398548841476, -0.018297312781214714, 0.02211097441613674, -0.012941665947437286, -0.04548857733607292, -0.002808616729453206, 0.01096599642187357, -0.030123792588710785, -0.010904042050242424, -0.02237256057560444, 0.024176133796572685, 0.011854015290737152, 0.02893976680934429, -0.010917809791862965, -0.001260607736185193, 0.0017244081245735288, -0.00329220830462873, 0.028581807389855385, 0.02585579641163349, -0.024864519014954567, -0.042266931384801865, 0.006753071211278439, 0.01711328700184822, 0.0067737228237092495, -0.02107839472591877, 0.007427690085023642, 0.014442347921431065, 0.012053647078573704, -0.013595633208751678, -0.009940301068127155, -0.000346989807439968, 0.04433209076523781, 0.006925167981535196, 0.017030682414770126, -0.026227524504065514, 0.0003644145908765495, 0.014511186629533768, 0.02303341217339039, -0.008288173004984856, 0.005944217089563608, 0.007111032493412495, -0.010917809791862965, -0.0027810814790427685, 0.025456532835960388, -0.018393686041235924, -0.0030684827361255884, 0.023708030581474304, 0.031638242304325104, -0.004044270608574152, -0.0008187496569007635, -0.0059304493479430676, 0.00658441660925746, -0.014965522103011608, 0.008935256861150265, -0.005173224490135908, 0.007241825573146343, -0.029738295823335648, 0.021408818662166595, 0.019825531169772148, 0.01477277372032404, 0.03857717663049698, 0.0011410005390644073, 0.042487215250730515, 0.015254644677042961, 0.020816806703805923, -0.008012818172574043, 0.009898997843265533, 0.003262951970100403, 0.002491959137842059, -0.01335469726473093, -0.005689514335244894, -0.023391373455524445, 0.0014636818086728454, -0.028526736423373222, -0.01742994599044323, 0.031693313270807266, 0.003648448269814253, 0.08778304606676102, 0.03414396941661835, -0.035878702998161316, 0.006391668226569891, -0.018889324739575386, -0.011021067388355732, 0.013994896784424782, -0.004436650779098272, 0.003937570843845606, -0.020279865711927414, -0.012074299156665802, -0.008288173004984856, -0.02095448412001133, -0.0029858762864023447, -0.025786956772208214, 0.004013292957097292, 0.006987122818827629, 0.027893420308828354, -0.0023422350641340017, 0.012501098215579987, 0.012143137864768505, -0.007241825573146343, 0.02910497970879078, 0.01019500382244587, -0.0312802828848362, -0.0031252745538949966, 0.0417712926864624, 0.015529998578131199, 0.005947659257799387, -0.02739778161048889, 0.02051391638815403, -0.007166103459894657, -0.03139042481780052, 0.00028245357680134475, -0.010394635610282421, 0.0034040710888803005, -0.0021236722823232412, -0.01036710012704134, 0.004560560453683138, 0.009747552685439587, 0.012211976572871208, -0.006966471206396818, -0.016837934032082558, -0.037200406193733215, 0.015874192118644714, -0.0056550949811935425, -0.0116543835029006, -0.03224402293562889, -0.019577711820602417], "1b0c5199-9475-474f-ab5b-ef7aadd12087": [-0.01724454015493393, -0.018039798364043236, -0.004471581894904375, -0.034293755888938904, -0.0064980941824615, 0.01247996836900711, -0.008008386939764023, -0.029550110921263695, -0.020634850487113, -0.04824564605951309, 0.0064980941824615, -0.00019543551024980843, 0.011161514557898045, -0.002472973195835948, -0.004530877340584993, 0.007003850303590298, 0.023829834535717964, 0.011838181875646114, 0.024429764598608017, -0.0041402243077754974, -0.03206145018339157, -0.008406016044318676, 0.003313574707135558, -0.000555895734578371, -0.027080625295639038, 0.018653681501746178, 0.012954332865774632, -0.004649468697607517, -0.011196394450962543, 0.03521458059549332, 0.0077851563692092896, -0.01032440084964037, -0.017732856795191765, -0.033958908170461655, -0.004782011266797781, 0.024373957887291908, 0.00997560378164053, 0.0033972859382629395, -0.0008249056991189718, -0.010066291317343712, 0.023787979036569595, 0.009891892783343792, -0.019114093855023384, 0.005033145658671856, -0.009431479498744011, 0.04154874011874199, -0.009850036352872849, -0.01505409274250269, -0.00016600573144387454, -0.006055121775716543, 0.00202302448451519, 0.013958869501948357, -0.023467084392905235, 0.007708420976996422, 0.0024747170973569155, -0.0025933082215487957, -0.013533337041735649, 0.020104678347706795, 0.011538215912878513, 0.005936530884355307, 0.010282545350492, 0.010756909847259521, -0.011956772767007351, 0.0018608338432386518, -0.03220096975564957, -0.01752357743680477, -0.0001606647711014375, -0.000837985600810498, 0.012612511403858662, -0.0006138833123259246, 0.011614951305091381, 0.025085505098104477, -0.004506461787968874, -0.011810277588665485, 0.0035437808837741613, -0.03337292745709419, -0.009264057502150536, -0.004014657344669104, -0.0019707048777490854, 0.006913163233548403, -0.006096977274864912, -0.01926756463944912, -0.009850036352872849, 0.002975241281092167, 0.017384059727191925, 0.03010818548500538, -0.015207563526928425, 0.005741204135119915, -0.009522167034447193, -0.014733199030160904, -0.008733885362744331, -0.0017771223792806268, 0.019769832491874695, 0.004987801890820265, 0.01536103431135416, 0.014251858927309513, 0.010715054348111153, 0.011245226487517357, -0.006829451769590378, -0.009605878964066505, -0.016030725091695786, 0.009194297716021538, -0.03842351585626602, -0.016044678166508675, -0.0263272225856781, 0.0031391759403049946, 0.01653299294412136, -0.0025933082215487957, 0.009863988496363163, 0.022490452975034714, 0.007994434796273708, 0.02433210238814354, -0.007359623908996582, -0.04629238322377205, -0.004073952790349722, -0.018430450931191444, -0.005162200424820185, -0.03507506102323532, -0.016477186232805252, -0.0004490765568334609, 0.010603439062833786, 0.015793543308973312, 0.03820028528571129, -0.010812717489898205, 0.021109214052557945, 0.0015477881534025073, 0.0030118650756776333, 0.0008658893639221787, 0.028964130207896233, -0.0010699358535930514, 0.02671787515282631, 0.010261617600917816, 0.002886297879740596, 0.008022339083254337, -0.03627492114901543, 0.0034269338939338923, -0.014300690963864326, 0.013979797251522541, -0.0024642532225698233, -0.008531582541763783, 0.006145808845758438, 0.01654694601893425, -0.0020212805829942226, -0.036972519010305405, -0.014426257461309433, 0.04018145427107811, -0.006693420931696892, 0.02664811722934246, 0.012752030976116657, -0.013742615468800068, 0.004377406556159258, -0.014119315892457962, -0.006581805646419525, -0.0034077500458806753, 0.01660275273025036, -0.00016992969904094934, -0.0007581982063129544, 0.015765639021992683, -0.034237947314977646, 0.001993376761674881, 0.026103992015123367, 0.020718561485409737, 0.0027624748181551695, 0.0020491844043135643, 0.005462166387587786, 0.02932688035070896, 0.010010483674705029, -0.023132238537073135, -0.012696223333477974, -0.023201998323202133, 0.0061109294183552265, 0.05153829604387283, -0.02098364755511284, 0.038674648851156235, 0.0010472639696672559, -0.00505407340824604, 0.018332788720726967, 0.00207185628823936, -0.027443373575806618, -0.0007869739783927798, 0.020774370059370995, -0.005702836439013481, 0.015068044885993004, 0.025504061952233315, 0.002188703278079629, -0.03476811945438385, 0.008866428397595882, 0.006023730151355267, -0.009961651638150215, -0.0033153186086565256, 0.00366586004383862, 0.01181725412607193, -0.02436000667512417, -0.012424160726368427, -0.6304023265838623, 0.0031496400479227304, 0.02773636393249035, -0.022727634757757187, 0.010512751527130604, 0.0023177582770586014, 0.011775397695600986, 0.005088953301310539, -0.0036484200973063707, 0.019462890923023224, -0.0004364326596260071, 0.0047924756072461605, 0.001681203139014542, -0.01246601715683937, -0.014635535888373852, -0.022364884614944458, 0.017077118158340454, -0.010429040528833866, -0.027554988861083984, 0.020760416984558105, -0.010087219066917896, 0.0010150002781301737, -0.012661343440413475, -0.006979434750974178, -0.0006178072653710842, -0.004223935771733522, 0.019393131136894226, 0.018109558150172234, -0.010003507137298584, 0.022769490256905556, -0.03588426858186722, 0.004652956500649452, 0.03825609013438225, -0.02055113948881626, 0.044729769229888916, -0.012800862081348896, -0.01686783879995346, 0.027959594503045082, 0.006452750880271196, 0.03875835984945297, -0.03153127804398537, 0.004639004357159138, 0.018039798364043236, 0.028308391571044922, 0.01011512242257595, -0.0010211041662842035, -0.012117219157516956, -0.0036867877934128046, -0.00795955490320921, -0.010401136241853237, 0.0013201979454606771, -0.007220104802399874, -0.014084435999393463, -0.013282202184200287, 0.013749591074883938, 0.00029495175112970173, 0.017425915226340294, -0.007091050036251545, 0.011175466701388359, 0.005493558011949062, 0.025197120383381844, -0.0071573215536773205, -0.012047460302710533, -0.04791080206632614, -0.04771547392010689, 0.015667976811528206, -0.007132905535399914, -0.02565753273665905, -0.009745397605001926, -0.016784127801656723, 0.018514161929488182, -0.009047802537679672, 0.009843060746788979, -0.028601381927728653, 0.017774712294340134, 0.014607632532715797, 0.029187360778450966, 0.011705638840794563, -0.0021224317606538534, 0.015654023736715317, -0.002331710187718272, -0.0008235977147705853, -0.0072131287306547165, -0.035967979580163956, 0.027541037648916245, 0.027066674083471298, -0.01989540085196495, -0.017077118158340454, -0.006327183451503515, 0.004168128129094839, 0.019072238355875015, 0.018765296787023544, -0.0068224756978452206, -0.05262654274702072, 0.027568941935896873, 0.032870661467313766, 0.015193612314760685, -0.0009469847427681088, 0.002188703278079629, -0.015291275456547737, -0.03446117788553238, -0.01536103431135416, 0.020188389346003532, 0.012068388052284718, 0.020453475415706635, 0.01718873344361782, -0.03574475273489952, -0.014258835464715958, 0.012291617691516876, -0.018332788720726967, -0.028852514922618866, 0.001629755599424243, -0.021374300122261047, 0.011859109625220299, 0.01896062307059765, -0.027903787791728973, 0.02095574326813221, -0.005047097336500883, 0.01402165275067091, -0.0006191152497194707, -0.023425228893756866, 0.011789349839091301, 0.005033145658671856, -0.007139881607145071, 0.0028130505234003067, 0.011782374233007431, 0.025169216096401215, -0.012110243551433086, 0.0027677067555487156, 0.010722029954195023, -0.009473335929214954, 0.002622955944389105, 0.018862958997488022, -0.00042771274456754327, 0.013268250972032547, 0.0032560231629759073, 0.007966531440615654, -0.005462166387587786, 0.018039798364043236, -0.038004957139492035, 0.006180688738822937, -0.008440895937383175, 0.020760416984558105, -0.012549728155136108, -0.003029304789379239, -0.020048871636390686, -0.02840605564415455, 0.004583197180181742, -0.00794560369104147, -0.019979111850261688, -0.020718561485409737, -0.004736667964607477, -0.015472649596631527, 0.023118287324905396, 0.006463214755058289, -0.006421358790248632, -0.008887356147170067, -0.03102901019155979, -0.01725849136710167, -0.02695505879819393, -0.011747494339942932, 0.011900965124368668, 0.006358575541526079, -0.00211545592173934, -0.015472649596631527, -0.021695194765925407, -0.04221842810511589, 0.0133310342207551, -0.016100484877824783, -0.01922570914030075, 0.007415431551635265, -0.026145847514271736, 0.006369039416313171, 0.014719247817993164, -0.01683993451297283, -0.005772595759481192, -0.029968667775392532, 0.0018137461738660932, 0.0017596825491636992, -0.006557390093803406, 0.006348111666738987, 0.01589120738208294, -0.004837818909436464, -0.02161148376762867, 0.03811657428741455, 0.008761788718402386, 0.026076089590787888, 0.0018486258340999484, -0.021151069551706314, 0.01538893859833479, -0.0010987116256728768, 0.03267533332109451, -0.012612511403858662, -0.0004922402440570295, -0.01929546892642975, 0.0037949150428175926, -0.015779592096805573, 0.0031670797616243362, -0.01650509051978588, 0.016756223514676094, 0.017983989790081978, 0.02899203449487686, -0.00539589487016201, -0.008392063900828362, 0.00431811111047864, -0.017677048221230507, 0.01925361342728138, -0.032284680753946304, 0.011880037374794483, 0.008908283896744251, 0.0031008082441985607, -0.0035054131876677275, 0.0018730417359620333, -0.01587725430727005, -0.002893273951485753, 0.011984676122665405, -0.017411962151527405, 0.003885602345690131, -0.020439524203538895, 0.0015669720014557242, 0.013400794006884098, 0.012493920512497425, 0.019128045067191124, 0.0002877578081097454, -0.0020648802164942026, 0.008650174364447594, -0.0013524616369977593, 0.01536103431135416, 0.01234044972807169, -0.02768055722117424, -0.0006003674352541566, 0.022197462618350983, -0.0036728358827531338, -0.022713681682944298, 0.03928853198885918, 0.026103992015123367, 0.029857052490115166, -0.018416499719023705, 0.02635512687265873, -0.012968285009264946, 0.006002801936119795, -0.006316719576716423, 0.023787979036569595, -0.028210729360580444, 0.024499524384737015, 0.015263371169567108, 0.03404261916875839, 0.008671102114021778, -0.029912859201431274, 0.014733199030160904, -0.020509283989667892, 0.02363450825214386, -0.004900602623820305, 0.01113361120223999, 0.03041512705385685, -0.01234044972807169, -0.005204056389629841, 0.017649145796895027, 0.001326301833614707, 0.020369764417409897, -0.010212785564363003, 0.015444746240973473, 0.009264057502150536, 0.002901993924751878, 0.013017116114497185, -0.012033508159220219, 0.0028392102103680372, -0.02055113948881626, -0.011196394450962543, -0.011524263769388199, -0.012626463547348976, -0.02426234260201454, -0.00928498525172472, -0.033289216458797455, -0.011893989518284798, 0.004412286449223757, -0.015654023736715317, 0.031168529763817787, 0.003039768896996975, 0.034237947314977646, -0.005556341726332903, -0.027234096080064774, 0.027122480794787407, 0.003742595436051488, -0.0009635526221245527, -0.0006069073569960892, -0.020341860130429268, 0.005573781207203865, 0.009431479498744011, 0.030275609344244003, -0.0022654386702924967, 0.010568559169769287, -0.00304325670003891, 0.012012580409646034, 0.00270666740834713, -0.0004974721814505756, 0.033986810594797134, -0.015151755884289742, 0.008998971432447433, 0.0011013275943696499, 0.02426234260201454, 0.010331377387046814, -0.009850036352872849, -0.00813395343720913, 0.05201265960931778, -0.008859452791512012, -0.0011737029999494553, -0.017746808007359505, 0.007303816266357899, -0.052570734173059464, -0.0018556017894297838, 0.0009129770332947373, -0.005322647280991077, -0.006599245592951775, 0.004018145147711039, -0.007966531440615654, 0.012535776011645794, -0.017425915226340294, 0.023787979036569595, 0.01590515859425068, -0.012235810980200768, -0.02060694620013237, 0.0014527408638969064, 0.02399725653231144, 0.06395547837018967, 0.012054435908794403, -0.010910380631685257, 0.01964426599442959, -0.01921175792813301, -0.0011702150804921985, -0.03384729474782944, -0.014956429600715637, 0.03370777517557144, 0.012368353083729744, -0.02162543497979641, -0.005336599424481392, 0.008615294471383095, -0.001003664336167276, 0.020481379702687263, -0.001165855093859136, 0.00548309413716197, -0.019462890923023224, -0.0030014009680598974, -0.014593680389225483, -0.021025503054261208, 0.013463577255606651, 0.01718873344361782, -0.006968970876187086, 0.05731437727808952, 0.018667632713913918, 0.020425571128726006, -0.004394846502691507, 0.013972821645438671, -0.03340083360671997, -0.016309764236211777, 0.015626121312379837, -0.006871307734400034, 0.019993063062429428, -3.430748620303348e-05, 0.018807152286171913, 0.010387185029685497, -0.009089658968150616, -0.012110243551433086, 0.013184539042413235, -0.0031914955470710993, 0.009905843995511532, 0.0023299662861973047, -0.0036309801507741213, 0.010519728064537048, -0.023132238537073135, 0.001537324278615415, 0.012326497584581375, -0.030498839914798737, -0.012249762192368507, 0.01587725430727005, 0.019979111850261688, -0.01960241049528122, 0.011084779165685177, 0.004101856611669064, 0.013414745219051838, -0.00132891780231148, -0.030554646626114845, -0.00489711482077837, -0.038395609706640244, -0.02399725653231144, -0.001228638575412333, 0.0013690295163542032, 0.0010891197016462684, -0.006389967165887356, -0.022434644401073456, -0.02200213633477688, 0.009863988496363163, -0.01504014153033495, 0.010945260524749756, -0.0032124235294759274, -0.033986810594797134, -0.041074372828006744, 0.015430794097483158, 0.027596844360232353, 0.03035932034254074, 0.016323715448379517, 0.004199519753456116, -0.012842717580497265, 0.0031583597883582115, -0.010254641994833946, -0.011887012980878353, 0.003072904422879219, -0.025169216096401215, -0.025894714519381523, -0.031308047473430634, -0.018067702651023865, -0.02500179223716259, -0.015960965305566788, 0.02968962863087654, -0.008322304114699364, -0.024248391389846802, -0.010380208492279053, -0.004398334305733442, 0.01790027879178524, 0.020509283989667892, 0.02562962844967842, 0.007520070765167475, 0.012082339264452457, -0.016016773879528046, 0.005357527174055576, -0.029829148203134537, -0.01199165266007185, -0.03501925244927406, 0.011552168056368828, 0.008971067145466805, 0.01298223715275526, -0.0023875178303569555, 0.0044087981805205345, -0.026494646444916725, 0.01437044981867075, -0.014440209604799747, 0.0013411258114501834, -0.0033536863047629595, 0.016281859949231148, -0.00792467501014471, 0.007840964011847973, -0.0007656101370230317, -0.013819350861012936, -0.009424503892660141, 0.014579728245735168, -0.022030040621757507, 0.037307363003492355, 0.02094179205596447, -0.006239984184503555, 0.018862958997488022, 0.02465299516916275, -0.0344332717359066, -0.026062136515975, 0.009033851325511932, 0.016812032088637352, 0.009731445461511612, -0.007234056945890188, -0.014300690963864326, -0.008991994895040989, -0.007254984695464373, -0.0003289594897069037, 0.00977330096065998, -0.015681928023695946, 0.013010140508413315, -0.017816567793488503, 0.022071896120905876, 0.011635879054665565, -0.0020491844043135643, -0.006871307734400034, -0.026843443512916565, -0.014998285099864006, -0.008364160545170307, 0.008747837506234646, 0.01897457428276539, -0.01148240827023983, 0.008371136151254177, -0.018458355218172073, -0.0267318282276392, -0.006208592560142279, -0.004523901268839836, 0.007422407157719135, -0.015807494521141052, 0.05703534185886383, 0.024373957887291908, 0.031559184193611145, 0.015737736597657204, 0.02426234260201454, 0.012256738729774952, -0.004091392736881971, -0.01624000445008278, -0.005130808800458908, -0.022727634757757187, -0.003446117741987109, -0.013658903539180756, -0.00507151335477829, -0.01517966017127037, -0.014133268035948277, 0.010045363567769527, 0.0017614265670999885, 0.01625395566225052, -0.011517288163304329, -0.0033188066445291042, -0.019197804853320122, -0.04316715896129608, -0.01855601742863655, 0.03616330772638321, 0.0059748985804617405, 0.005102904979139566, -0.027610797435045242, 0.000577695609536022, 0.027945643290877342, -0.012912477366626263, 0.02663416415452957, 0.005552853457629681, 0.016407426446676254, 0.017983989790081978, 0.017774712294340134, 0.008412991650402546, -0.005113368853926659, -0.018779247999191284, -0.0016184196574613452, -0.03507506102323532, -0.012493920512497425, 0.0133659141138196, 0.03421004116535187, 0.010233714245259762, 0.005542389582842588, 0.008538559079170227, 0.003186263609677553, 0.008015362545847893, -0.00977330096065998, -0.01785842329263687, -0.009431479498744011, -0.024429764598608017, -0.007750276941806078, -0.03337292745709419, -0.0016585313715040684, 0.022016087546944618, -0.017132924869656563, 0.009780277498066425, 0.005444726441055536, 0.020007014274597168, -0.02763870172202587, -0.01449601724743843, 0.010401136241853237, -0.0050680250860750675, 0.03741897642612457, 0.005967922508716583, 0.004520413465797901, 0.019072238355875015, 0.016770176589488983, -0.006818987894803286, -0.017439866438508034, 0.006707372609525919, -0.00996862817555666, 0.0003054156550206244, 0.03234048932790756, 0.008106050081551075, -0.03585636615753174, 0.0014379170024767518, -0.03214516118168831, -0.0005894674686715007, -0.0444786362349987, 0.02603423222899437, -0.009131514467298985, -0.008196737617254257, -0.029550110921263695, -0.014300690963864326, 0.0029734973795711994, -0.002595052123069763, -0.0037495712749660015, 0.020062822848558426, 0.00997560378164053, -0.003986753523349762, 0.022183511406183243, 0.021346397697925568, -0.022071896120905876, 0.013491480611264706, -0.011398697271943092, -0.0010010483674705029, -0.021011551842093468, 0.0012853181688115, -0.017677048221230507, -0.002253230893984437, 0.003522853134199977, 0.035270385444164276, -0.007540998514741659, 0.003419957822188735, 0.025936570018529892, 0.006009778007864952, -0.0023090383037924767, 0.0035402928479015827, 0.009654710069298744, 0.03479602187871933, -0.017467770725488663, -0.02094179205596447, 0.011280105449259281, -0.006867819465696812, 0.03172660619020462, -0.04654351621866226, -0.010638318955898285, -0.004077441059052944, 0.0006252191960811615, 0.004394846502691507, 0.0055877333506941795, -0.019434986636042595, 0.0033432224299758673, -0.009710517711937428, 0.008985019288957119, -0.011866085231304169, 0.013603095896542072, 0.015319178812205791, 0.019504746422171593, -0.03181031718850136, -0.005374967120587826, -0.00038062510429881513, -0.003854210488498211, -0.0034809974022209644, -0.01181725412607193, 0.004945946391671896, 0.002779914764687419, 0.014789006672799587, -0.0025671483017504215, -0.0033676382154226303, 0.027624748647212982, 0.02191842533648014, -0.0236484594643116, 0.014900621958076954, -0.036023788154125214, 0.020760416984558105, 0.004611101001501083, -0.0025880762841552496, -0.025880761444568634, -0.014342546463012695, 0.015765639021992683, 0.013958869501948357, 0.0017745064105838537, -0.003501925151795149, 0.027806123718619347, 0.017146877944469452, 0.006124881096184254, 0.005929554812610149, -0.020062822848558426, 0.010373232886195183, -0.006055121775716543, 0.007118953857570887, 0.01419605128467083, -0.011440552771091461, -9.831725037656724e-05, -0.013826326467096806, 0.0025497085880488157, -0.012054435908794403, -0.05527740344405174, -0.013268250972032547, -0.021499868482351303, -0.0034129819832742214, -0.0002925537701230496, 0.01958845928311348, 0.0023090383037924767, -0.010861548595130444, -0.03610749915242195, 0.019672170281410217, -0.006267888005822897, 0.005856307223439217, 0.02571333944797516, -0.003482741303741932, 0.02465299516916275, 0.022183511406183243, -0.007554950192570686, -0.02196028083562851, -0.029103649780154228, -0.008712957613170147, -0.0384514182806015, -0.017691001296043396, 0.003402518108487129, 0.04587382450699806, 0.013791446574032307, -0.029578013345599174, -0.022127702832221985, -0.024220487102866173, -0.023899594321846962, -0.009884916245937347, -0.02332756668329239, 0.014272786676883698, 0.04012564569711685, 0.022811345756053925, 0.009180345572531223, 0.01522151567041874, -0.00675271637737751, 0.018095605075359344, -0.03635863587260246, -0.0041367365047335625, -0.02158357948064804, 0.003561220830306411, 0.012361377477645874, -0.02024419791996479, -0.05686791613698006, 0.0015443002339452505, -0.001546044135466218, -0.016979454085230827, 0.01889086328446865, 0.0031008082441985607, 0.0040495372377336025, 0.0007259344565682113, 0.004112320486456156, 0.0062818401493132114, 0.010575534775853157, 0.04048839583992958, 0.005465654190629721, -0.01993725635111332, 0.004834331106394529, 0.013526360504329205, -0.011893989518284798, 0.006138833239674568, -0.0072689363732934, 0.02493203431367874, 0.0011440552771091461, 0.009877940639853477, -0.008224640972912312, -0.01534708309918642, -0.008817596361041069, 0.005660980939865112, 0.02833629585802555, 0.014761103317141533, 0.01953265070915222, 0.03373567759990692, -0.024513477459549904, -0.00860134232789278, -0.010268593207001686, 0.0114893838763237, -0.011684711091220379, -0.02571333944797516, 0.021792856976389885, -0.047771282494068146, 0.013735638931393623, -0.011712614446878433, -0.006979434750974178, -0.007820036262273788, -0.013421721756458282, -0.021025503054261208, -0.013777494430541992, -0.015081997029483318, -0.006648077163845301, -0.009508215822279453, -0.02055113948881626, 0.011663783341646194, -0.004258815664798021, 0.005211031995713711, -0.003006633138284087, -0.012724126689136028, 0.0003378974215593189, -0.017091069370508194, -0.005877234973013401, -0.013017116114497185, 0.005556341726332903, -0.030219800770282745, 0.005946994759142399, 0.02871299721300602, 0.007014314644038677, 0.010749934241175652, 0.2220025211572647, 0.0027275951579213142, -0.0005136040854267776, 0.020062822848558426, 0.006972458679229021, -0.012765982188284397, 0.007275912445038557, -0.008168833330273628, -0.013414745219051838, 0.004663420375436544, 0.0017448586877435446, 0.0021032479126006365, 0.007882819510996342, -0.007443335372954607, 0.03619121015071869, -0.007310792338103056, -0.04182777553796768, -0.030526742339134216, -0.014970381744205952, -0.0008990251226350665, -0.007143369410187006, -0.0047924756072461605, -0.01264041569083929, -0.005695860367268324, 0.004241375718265772, 0.014970381744205952, -0.01790027879178524, 0.002042208332568407, 0.027568941935896873, 0.009850036352872849, -0.017370106652379036, 0.022769490256905556, 0.011977700516581535, -0.00505407340824604, -0.007408455479890108, -0.006735276430845261, 0.01862577721476555, -0.021820761263370514, -0.003927458077669144, 0.013100828044116497, -0.006689933128654957, 0.00808512233197689, 0.0007795620476827025, -0.024108871817588806, 0.002785146702080965, -0.018011894077062607, -0.03499135002493858, -9.472027886658907e-05, 0.006233008578419685, 0.016337666660547256, -0.009096634574234486, 0.011105706915259361, 0.020341860130429268, 0.017746808007359505, -7.308393833227456e-05, -0.0027677067555487156, -0.009508215822279453, -0.002673531649634242, -0.009612854570150375, 0.009278008714318275, -0.019811687991023064, 0.007527046371251345, -0.017328251153230667, 0.023076431825757027, -0.02296481654047966, -0.0021032479126006365, -0.018667632713913918, 0.027917739003896713, 0.01852811500430107, 0.012556703761219978, -0.007254984695464373, -0.009654710069298744, -0.02126268483698368, -0.016812032088637352, -0.011587047949433327, -0.019100142642855644, 0.019379179924726486, 0.01229859422892332, 0.02200213633477688, 0.01858392171561718, 0.009759349748492241, 0.002394493669271469, -0.014733199030160904, -0.007534022442996502, 0.00021189438120927662, -0.015695879235863686, 0.03169870004057884, -0.027624748647212982, -0.03401471674442291, -0.017830519005656242, -0.013777494430541992, -0.001087375683709979, -0.013289178721606731, -0.004600636661052704, 0.008203713223338127, -0.007820036262273788, 0.012061411514878273, 0.03236839175224304, -0.008029314689338207, -0.027150385081768036, -0.020802272483706474, 0.060941871255636215, 0.017342204228043556, 0.012124195694923401, -0.03331712260842323, 0.005179640371352434, 0.006961994804441929, 0.013923989608883858, 0.00894316378980875, 0.006881771609187126, -0.0015643560327589512, -0.04392056167125702, 0.015514505095779896, 0.0005258119781501591, 0.015081997029483318, 0.02807120978832245, 0.0019218733068555593, -0.01501223724335432, -0.000913849042262882, -0.01552845723927021, 0.01484481431543827, -0.008657149970531464, 0.004464605823159218, -0.001239102566614747, -0.04336248338222504, -0.02332756668329239, 0.0010812717955559492, 0.026801588013768196, -0.03150337561964989, -0.008329280652105808, 0.006672493182122707, -0.03507506102323532, 0.018011894077062607, -0.01045694388449192, 0.0037321315612643957, 0.012242786586284637, -0.010401136241853237, -0.007359623908996582, -0.008224640972912312, -0.008524606935679913, 0.009201273322105408, 0.010547631420195103, 0.0023979817051440477, -0.009815157391130924, -0.007248008623719215, -0.004963385872542858, 0.027778219431638718, -0.0018887375481426716, 0.006271376274526119, -0.026062136515975, 0.003278695046901703, 0.0037007397040724754, -0.0114893838763237, -0.012082339264452457, 0.035326194018125534, -0.013526360504329205, -0.010952236130833626, -0.012828766368329525, -0.003421701956540346, 0.02399725653231144, -0.03521458059549332, -0.008189761079847813, 0.033233411610126495, 0.002560172462835908, -0.027499182149767876, -0.03744688257575035, -0.17970038950443268, 0.013910037465393543, 0.009647734463214874, -0.03275904431939125, 0.035354096442461014, 0.02265787497162819, 0.01049182377755642, -0.008322304114699364, -0.013177563436329365, -0.007875843904912472, -0.01791423186659813, 0.006627149414271116, -0.02904784120619297, -0.005643540993332863, 0.014454161748290062, 0.003801890881732106, -0.005992338061332703, 0.021220829337835312, 0.05229169502854347, 0.00507151335477829, 0.014482065103948116, -0.023494988679885864, -0.008336256258189678, 0.002591564320027828, 0.01079876534640789, -0.016728321090340614, -0.015291275456547737, 0.03183821961283684, 0.01032440084964037, -0.0290757454931736, 0.002610748168081045, -0.001429197029210627, 0.021834712475538254, 0.002432861365377903, 0.021220829337835312, 0.012738078832626343, 0.0008876892388798296, 0.0018869935302063823, -0.01756543293595314, -0.00397628964856267, 0.03647024929523468, 0.016658561304211617, 0.0061632487922906876, 0.01010117121040821, 0.01148240827023983, 0.03421004116535187, 0.020007014274597168, -0.009557046927511692, -0.011098731309175491, -0.008524606935679913, 0.04553898051381111, -0.02664811722934246, -0.007070121821016073, -0.02025814913213253, 0.014210003428161144, 0.004290207289159298, 0.0017125948797911406, 0.02126268483698368, -0.0056749326176941395, -0.027959594503045082, 0.00026399598573334515, -0.013351961970329285, 0.016812032088637352, -0.002926409710198641, -0.02091388776898384, -0.02395540103316307, 0.0037251554895192385, 0.014761103317141533, 0.008908283896744251, 0.008664125576615334, 0.004649468697607517, -0.0008920491673052311, -0.0008074658107943833, 0.01517966017127037, -0.005169176496565342, 0.012082339264452457, -0.024527428671717644, -0.009326840750873089, 0.0424695648252964, 0.004203008022159338, 0.01552845723927021, 0.024764610454440117, -0.0024659971240907907, 0.00299965706653893, -0.0133659141138196, 0.012668319046497345, 0.01200560387223959, 0.016281859949231148, -0.03610749915242195, 0.0037739870604127645, 0.008412991650402546, -0.024499524384737015, 0.013275226578116417, -0.001871297718025744, 0.009780277498066425, 0.0011684710625559092, 0.023578699678182602, -0.0024067016784101725, 0.025755194947123528, -0.01587725430727005, 0.006934090983122587, 0.03261952847242355, -0.035270385444164276, 0.00291245779953897, 0.04654351621866226, 0.021095262840390205, 0.008392063900828362, -0.007254984695464373, 0.03683299943804741, -0.006034194026142359, -0.012731102295219898, 0.008559486828744411, 0.03342873603105545, 0.003010120941326022, 0.004042561165988445, 0.049780357629060745, 0.007192200981080532, -0.02635512687265873, 0.022364884614944458, 0.0008767893305048347, 0.04188358411192894, -0.019490795210003853, -0.022378837689757347, 0.008685053326189518, 0.00014213491522241384, -0.015612169168889523, -0.10218366980552673, -0.03817237913608551, 0.026801588013768196, 0.011280105449259281, -0.006913163233548403, -0.004548317287117243, -0.0003767011221498251, 0.03708413243293762, 0.004248351324349642, 0.011447528377175331, -0.02064880169928074, -0.009577974677085876, 0.015291275456547737, 0.0011623671744018793, -0.00013962794037070125, -0.0068608433939516544, 0.00046695242053829134, 0.0005197080317884684, -0.011628903448581696, 0.023174095898866653, 0.0058946749195456505, -0.002169519430026412, 0.020439524203538895, -0.007715397048741579, -0.015751687809824944, -0.019337324425578117, -0.018011894077062607, 0.006756204180419445, 0.0073805516585707664, 0.01100106816738844, 0.007478214800357819, -0.015779592096805573, -0.0021520794834941626, -0.01062436681240797, -0.011028971523046494, -0.003913505934178829, -0.009647734463214874, -0.03317760303616524, 0.02095574326813221, -0.041716162115335464, -0.005608661100268364, 0.004279743414372206, 0.007408455479890108, -0.018039798364043236, -0.004516925662755966, -0.001458844868466258, -0.013442649506032467, 0.014154195785522461, -0.0004634644719772041, -0.012452065013349056, -0.012284642085433006, -0.011419625021517277, -0.006539950147271156, -0.009389623999595642, 0.026578357443213463, 0.011789349839091301, 0.004645980428904295, 0.007310792338103056, -0.020313957706093788, 0.01656089723110199, -0.005929554812610149, -0.018849007785320282, -0.009347768500447273, 0.010366257280111313, 0.009870965033769608, -0.003815842792391777, -0.026187704876065254, -0.007303816266357899, -0.002692715497687459, -0.0021817274391651154, -0.007750276941806078, 0.002970009343698621, -0.03102901019155979, 0.004809915088117123, -0.00979422964155674, -0.012040483765304089, -0.003941409755498171, -0.013930965214967728, 0.001155391219072044, 0.028099114075303078, -0.024387909099459648, 0.00490409042686224, 0.001385597395710647, -0.03074997290968895, 0.020160486921668053, 0.009187322109937668, -0.018067702651023865, -0.015444746240973473, 0.028503717854619026, -0.03680509328842163, -0.0013794935075566173, 0.019476843997836113, 0.011810277588665485, -0.016700416803359985, -0.001412629266269505, 0.013065948151051998, -0.0014632048550993204, -0.010470896027982235, 0.016435330733656883, 0.021402204409241676, -0.021751001477241516, -0.00657831784337759, -0.05988152697682381, 0.00700733857229352, -0.0031653358601033688, -0.007464263122528791, 0.010770861990749836, -0.00791769940406084, -0.004216959699988365, -0.011838181875646114, -0.007485190872102976, 0.027554988861083984, -0.018444404006004333, -0.006299280095845461, -0.02168124169111252, -0.01897457428276539, -0.02731780707836151, -0.011900965124368668, 0.017774712294340134, -0.02367636375129223, 0.00795955490320921, 0.013944917358458042, -0.025225022807717323, -0.010052339173853397, 0.014761103317141533, 0.015695879235863686, -0.01437044981867075, -0.002384029794484377, -0.01079876534640789, 0.01504014153033495, -0.005971410311758518, -0.0337635837495327, 0.01922570914030075, 0.002050928305834532, 0.006376015488058329, 0.005594709422439337, -0.006369039416313171, -0.016686463728547096, 0.010687150061130524, 0.023536844179034233, 0.02901993878185749, 0.01854206621646881, -0.022769490256905556, -0.019351275637745857, 0.03716784343123436, -0.02899203449487686, -0.004802939482033253, -0.0072131287306547165, -0.00809209793806076, -0.0018486258340999484, 0.013784470967948437, -0.0011754470178857446, 0.013135707937180996, 0.008454847149550915, -0.02062089927494526, -0.03582846373319626, 0.004060001112520695, -0.018402546644210815, 0.01213814690709114, 0.007889796048402786, -0.009382648393511772, -0.00809209793806076, 0.05125925689935684, 0.011112683452665806, 0.015444746240973473, -0.011803301982581615, 0.0099825793877244, -0.0008794052992016077, -0.02327175810933113, -0.01689574308693409, 0.004203008022159338, -0.030973203480243683, 0.010819693095982075, -0.017481721937656403, 0.02366241067647934, 0.022490452975034714, 0.019853543490171432, -0.02163938619196415, 0.011105706915259361, 0.008873404003679752, -0.0024363494012504816, 0.029187360778450966, 0.017105020582675934, -0.0172166358679533, -0.03139175847172737, 0.01827698014676571, 0.027596844360232353, 0.018695537000894547, -0.011893989518284798, 0.00034509136457927525, -0.0033484543673694134, -0.007847939617931843, -0.007806084584444761, -0.0021276636980473995, -0.0045797089114785194, 0.024555332958698273, 0.018807152286171913, 0.023467084392905235, -0.021165022626519203, 0.0037844511680305004, 0.010575534775853157, 0.03540990501642227, 0.002628187881782651, -0.0012530544772744179, 0.0025287806056439877, -0.020313957706093788, -0.02261601947247982, 0.026941105723381042, -0.010212785564363003, -0.004918042570352554, 0.012033508159220219, 0.023076431825757027, -0.010812717489898205, -0.01045694388449192, -0.009250105358660221, 0.006571341771632433, -0.014942477457225323, -0.007373575586825609, -0.002790378639474511, -0.015277323313057423, -0.03418213874101639, 0.020425571128726006, 0.010003507137298584, 0.021095262840390205, 0.022057943046092987, 0.00431811111047864, 0.04732482135295868, 0.02465299516916275, 0.015402890741825104, 0.005347063299268484, 0.007485190872102976, -0.0011641110759228468, 0.010868525132536888, -0.000482648320030421, -0.002340430160984397, -0.014984333887696266, -0.012800862081348896, -0.013700759038329124, -0.011049899272620678, 0.023369422182440758, -0.006923627108335495, 0.09431479871273041, 0.04484138637781143, -0.02808516100049019, 0.012800862081348896, -0.029773341491818428, -0.013979797251522541, 0.023132238537073135, -0.005033145658671856, 0.011231274344027042, -0.02229512482881546, 0.0049319942481815815, -0.011280105449259281, -0.024806465953588486, -0.02168124169111252, -0.0169515497982502, 0.0005214519915170968, 0.00777818076312542, 0.015640072524547577, -0.0008541175047867, -0.009912820532917976, 0.02561567723751068, -0.00027489589410834014, 0.02798749879002571, -0.0006666388944722712, -0.027513133361935616, -0.0003302674740552902, 0.05125925689935684, 0.011566119268536568, -0.009354744106531143, -0.023746123537421227, 0.029550110921263695, -0.012905501760542393, -0.03144756704568863, -0.0050191935151815414, -0.013351961970329285, 0.00743635930120945, -0.005510997958481312, -0.014482065103948116, 0.013526360504329205, -0.0023038063663989305, 0.009417528286576271, 0.009438456036150455, -0.02021629363298416, -0.03278695046901703, 0.004363454878330231, 0.0020160486456006765, -0.006508558057248592, -0.04129760339856148, -0.013107803650200367], "64017536-5407-424e-ac7c-667ab0323871": [-0.01983810029923916, -0.014591067098081112, -0.01520921103656292, -0.0214912761002779, -0.005951430182904005, 0.025473272427916527, -0.023417584598064423, -0.021908164024353027, -0.014627005904912949, -0.04309755563735962, 0.01801242120563984, 0.014159804210066795, 0.011105024255812168, -0.00684270728379488, 0.009883112274110317, 0.00399996479973197, 0.008229936473071575, -0.013124772347509861, 0.022325051948428154, -0.01066657342016697, -0.021865038201212883, -0.011105024255812168, -0.006594731006771326, 0.0033045532181859016, -0.03372477367520332, 0.0017681785393506289, 0.03513356298208237, -0.016833635047078133, -0.0011913642520084977, 0.04554137960076332, 0.009193090721964836, -0.006763642653822899, -0.020743753761053085, -0.011795044876635075, 0.0057106418535113335, -0.0014564113225787878, 0.0073278783820569515, 0.006896615028381348, -0.004129343666136265, -0.0008647723007015884, 0.023374458774924278, 0.00958841573446989, 0.0024240578059107065, -0.02084438130259514, -0.04439134523272514, 0.03703112155199051, -0.006084403023123741, -0.018328679725527763, -6.126406515249982e-05, -0.012398812919855118, -0.010932519100606441, 0.014303558506071568, -0.03041842207312584, -0.008754639886319637, 0.011694417335093021, 0.0010961269726976752, 0.006972086150199175, -0.0017277476144954562, 0.020154360681772232, -0.010903768241405487, 0.001774467877112329, 0.008438380435109138, -0.018644940108060837, -0.0023485866840928793, -0.022698812186717987, -0.014749197289347649, -0.011953175067901611, -0.0023719468154013157, -0.0007843596977181733, -0.009293719194829464, 0.026508303359150887, 0.021893788129091263, -0.0008661199826747179, 0.016301743686199188, 0.004858897067606449, -0.03498981148004532, -0.011485973373055458, -0.024927005171775818, -0.014030424878001213, 0.009976551868021488, 0.00670614093542099, -0.004934368189424276, -0.012686321511864662, -0.0014995376113802195, 0.025962036103010178, 0.04223502799868584, -0.004919992759823799, 0.00664504524320364, 0.0010215543443337083, -0.017351150512695312, -0.0097681088373065, 0.011838171631097794, 0.025990787893533707, 0.02804647572338581, 0.00512124877423048, 0.006601918954402208, -0.0042335656471550465, 0.008028680458664894, -0.01490732654929161, -0.01697739027440548, -0.017207397148013115, -0.0003512997063808143, -0.03757738694548607, -0.006770830135792494, -0.030015910044312477, 0.0005817558849230409, 0.023216327652335167, 0.0011572225484997034, 0.006831925828009844, 0.02706894464790821, -0.009911863133311272, 0.03864116966724396, -0.014253244735300541, -0.0045570130459964275, -0.009351220913231373, -0.008812141604721546, 0.019895602017641068, -0.03763489052653313, -0.009042149409651756, 0.007877739146351814, 0.0212468933314085, -0.0038921490777283907, 0.041832517832517624, -0.0012326935539022088, 0.016201116144657135, -0.00332252262160182, -0.0010188589803874493, -0.005538136698305607, 0.018573062494397163, -0.0066845775581896305, 0.02057124860584736, 0.0006684577674604952, -0.004470760468393564, 0.008007117547094822, -0.03174096345901489, -0.0002594316902104765, -0.012722260318696499, 0.0012138258898630738, -0.004039497580379248, -0.020226238295435905, 0.02026936411857605, 0.013757292181253433, -0.00486249104142189, -0.02867899462580681, -0.011076273396611214, 0.020715001970529556, 7.507795817218721e-05, 0.03559357672929764, 0.002972121350467205, -0.016100488603115082, -0.00018710528092924505, -0.006925365887582302, -0.010458129458129406, -0.014454500749707222, 0.003141032764688134, 0.003981995861977339, -0.00966029241681099, 0.04002121090888977, -0.016359245404601097, 0.009811234660446644, 0.014662944711744785, 0.01978059858083725, -0.009775295853614807, 0.007083496078848839, 0.008035868406295776, 0.03539232164621353, 0.012362875044345856, -0.026378924027085304, -0.010975644923746586, -0.028520863503217697, -0.0021976446732878685, 0.05408038944005966, -0.04605889692902565, 0.037807393819093704, 0.01664675399661064, 0.008402442559599876, 0.010724075138568878, 0.013843544758856297, -0.014375435188412666, -0.008869643323123455, 0.03562232851982117, 0.00594424270093441, 0.021505651995539665, 0.02045624516904354, -0.023489462211728096, -0.023920724168419838, 0.011471597477793694, -0.002118579810485244, 0.006515666376799345, -0.0028050069231539965, 0.015266712754964828, 0.004086217377334833, -0.019378086552023888, -0.004334193654358387, -0.6076784133911133, -0.0037160501815378666, 0.022411303594708443, -0.03544982522726059, -0.01175191905349493, 0.02331695705652237, -0.005042184144258499, -0.0061634681187570095, -0.012887578457593918, 0.041315000504255295, -0.0033728366252034903, 0.009681856259703636, 0.011830983683466911, -0.019090577960014343, -0.022425679489970207, -0.029469642788171768, 0.008100558072328568, -0.008790578693151474, -0.0007497688056901097, 0.01405198872089386, -0.02865024283528328, 0.011284717358648777, -0.007511164993047714, -0.00838087871670723, -0.00039465061854571104, 0.007140997797250748, 0.02399260178208351, 0.001194958109408617, -0.005297347903251648, 0.014361060224473476, -0.033696021884679794, 0.01975184865295887, 0.023920724168419838, -0.01431074645370245, 0.04511011764407158, -0.004186845850199461, -0.031165944412350655, 0.022598184645175934, 0.007676482666283846, 0.03737613186240196, -0.02484075352549553, -0.010357500985264778, 0.026378924027085304, 0.01972309686243534, 0.007690858095884323, 0.0096459174528718, 0.005696266423910856, 0.0056495461612939835, -0.01664675399661064, -0.008359315805137157, -0.005814863834530115, -0.020369991660118103, -0.013469783589243889, -0.012276622466742992, -0.004168876446783543, -0.014260431751608849, 0.028520863503217697, -0.009818422608077526, -0.004779832437634468, 0.009667480364441872, 0.014281995594501495, -0.008869643323123455, -0.008618073537945747, -0.05485666170716286, -0.04654765874147415, -0.01689113676548004, -0.008819329552352428, -0.014698882587254047, -0.010012490674853325, -0.02200879156589508, -0.006896615028381348, -0.007547103799879551, 0.02347508631646633, -0.003239863784983754, 0.020312489941716194, 0.019076203927397728, 0.01795491948723793, 0.015324214473366737, -0.005002651363611221, 0.037807393819093704, 0.012679134495556355, -0.004535450134426355, -0.019162455573678017, -0.017020516097545624, 0.04148750752210617, 0.02499888278543949, -0.020686252042651176, -0.010220934636890888, 0.0015768056036904454, -0.018242428079247475, 0.0368298664689064, 0.011701604351401329, -0.011205651797354221, -0.047410186380147934, 0.04148750752210617, 0.03993495926260948, 0.014979204162955284, -0.0037160501815378666, 0.006670202128589153, -0.0219800416380167, -0.025070760399103165, -0.024136357009410858, 0.01737990230321884, 0.01124877855181694, 0.03444354236125946, 0.03030341863632202, -0.037174876779317856, 0.005193125922232866, 0.01330446545034647, -0.020226238295435905, -0.013505721464753151, -0.0045570130459964275, -0.01719302125275135, -0.0037699579261243343, 0.010910955257713795, -0.03355226665735245, 0.00664504524320364, -0.01546796876937151, 0.007547103799879551, -0.0219800416380167, -0.015007955022156239, 0.0027475052047520876, 1.297860399063211e-05, -0.01852993667125702, -0.009811234660446644, 0.03381102532148361, 0.02371946908533573, -0.008833705447614193, 0.01795491948723793, 0.026680808514356613, -0.005915491841733456, -0.021045638248324394, 0.024280110374093056, -0.009689043276011944, 0.017063641920685768, 0.008114933036267757, 0.01612923853099346, -0.005796894431114197, 0.021836286410689354, -0.04611639678478241, -0.004743893630802631, -0.017322400584816933, 0.027629587799310684, -0.004772644490003586, -0.005326098762452602, -0.012211932800710201, -0.023604465648531914, 0.009394346736371517, 2.226507967861835e-05, -0.01689113676548004, -0.029153384268283844, -0.018357431516051292, -0.016416747123003006, 0.02075812965631485, -0.0034896370489150286, -0.007191311568021774, 0.004359351005405188, -0.023130076006054878, -0.007061932701617479, -0.031050940975546837, -0.013175087049603462, -0.0010889392578974366, -0.006364724133163691, 0.00678161159157753, -0.016574876382946968, -0.012815700843930244, -0.016718631610274315, 0.0025157013442367315, -0.005969399586319923, -0.01689113676548004, -0.00058759591775015, -0.027169574052095413, 0.006026901304721832, 0.01999623142182827, -0.020283740013837814, 0.0028948532417416573, -0.0066162943840026855, 0.010479692369699478, -0.003026029095053673, 0.009078087285161018, 0.015769852325320244, 0.01367103960365057, -0.0179261676967144, -0.003687299322336912, 0.006001744419336319, 0.01765303499996662, 0.027457082644104958, 0.011119399219751358, -0.021505651995539665, 0.022670062258839607, -0.01035031396895647, 0.034213535487651825, -0.01697739027440548, 0.006318003870546818, -0.010271248407661915, 0.0020628750789910555, 0.010932519100606441, -0.021318770945072174, -0.02742833085358143, 0.01648862473666668, 0.032718490809202194, 0.0077196089550852776, -0.010831890627741814, -0.011866922490298748, 0.01926308311522007, -0.019953103736042976, 0.018889322876930237, -0.017351150512695312, 0.00820118561387062, 0.002875087084248662, -0.0071984995156526566, -0.016114862635731697, -0.015539845451712608, -0.008179622702300549, 0.01040781568735838, 0.006084403023123741, -0.011011583730578423, 0.016661129891872406, -0.020901883020997047, -0.002808600664138794, 0.006576761603355408, 0.009092463180422783, 0.0343860425055027, 0.005778925027698278, 0.009538101963698864, 0.0076477318070828915, -0.006605512462556362, 0.011119399219751358, 0.035248566418886185, -0.021534401923418045, 0.013110397383570671, 0.027083320543169975, -0.008833705447614193, -0.010659385472536087, 0.02295757085084915, 0.01040781568735838, 0.04140125587582588, -0.006803174968808889, 0.03237348049879074, -0.03205722197890282, 0.006199406459927559, -0.00830900203436613, 0.020154360681772232, -0.01624424196779728, 0.049624003469944, 0.009372783824801445, 0.034156035631895065, -0.003250645473599434, -0.03892868012189865, 0.008086182177066803, -0.006663014180958271, 0.021405024453997612, -0.025343893095850945, 0.0006194914458319545, 0.037807393819093704, -0.012521004304289818, -0.010192183777689934, 0.007051151245832443, 0.013663851656019688, 0.01489295158535242, 0.004330600146204233, 0.013599161989986897, 0.0179261676967144, -0.006601918954402208, 0.016776133328676224, -0.013340404257178307, -0.005124842748045921, -0.0071374038234353065, -0.011579412966966629, -0.00342135364189744, 0.000728654908016324, -0.023877598345279694, -0.0055201672948896885, -0.04453510046005249, -0.00038791215047240257, 0.008057431317865849, -0.01932058483362198, 0.035104814916849136, 0.000576814345549792, 0.023029448464512825, -0.02685331366956234, -0.028118351474404335, 0.02195128984749317, 0.009566852822899818, -0.01028562430292368, -0.006019713822752237, -0.01014905795454979, 0.013778855092823505, 0.013131960295140743, 0.03691611811518669, 0.0034842463210225105, -0.005376412998884916, 0.012715072371065617, 0.018400557339191437, 0.005153593607246876, 0.016201116144657135, 0.026723934337496758, -0.020801255479454994, 0.015022329986095428, -0.01645987294614315, 0.01771053671836853, 0.023216327652335167, -0.006979274097830057, -0.011816607788205147, 0.05686922371387482, -0.014734821394085884, -0.011579412966966629, 0.0010574930347502232, 0.009336845017969608, -0.03665735945105553, 0.011421283707022667, -0.002772662090137601, 0.0063539426773786545, -0.011442846618592739, -0.008891207166016102, 0.003090718761086464, 0.012370062060654163, -0.0029128226451575756, 0.005146406125277281, 0.0063539426773786545, -0.012226307764649391, -0.02829085662961006, -0.010932519100606441, 0.024165106937289238, 0.03596733883023262, 0.019909977912902832, 0.00438091391697526, 0.015597348101437092, -0.03245973214507103, 0.011327843181788921, -0.021261269226670265, -0.018084298819303513, 0.033178504556417465, 0.0031805650796741247, -0.0054590716026723385, -0.013742916285991669, 0.00262172007933259, 0.008905582129955292, 0.01088220439851284, 0.006062840111553669, 0.020010605454444885, -0.008409629575908184, -0.014253244735300541, 0.0046252962201833725, -0.017638659104704857, 0.0017061844700947404, 0.033609770238399506, 0.009574039839208126, 0.043730076402425766, 0.02865024283528328, 0.013699790462851524, 0.02021186240017414, 0.007424912415444851, -0.009581227786839008, -0.03355226665735245, 0.012643195688724518, 0.00288047781214118, 0.018630564212799072, 0.0024294485338032246, 0.0151660842821002, 0.013074458576738834, -0.0007681873394176364, -0.008179622702300549, 0.016301743686199188, -0.0028499301988631487, 0.021074388176202774, -0.003491434035822749, -0.003018841380253434, 0.022813815623521805, -0.026077039539813995, -0.01124877855181694, 0.030705930665135384, -0.022842567414045334, -0.0028858687728643417, 0.02867899462580681, 0.011701604351401329, -0.012729448266327381, 0.015007955022156239, -0.0009433879749849439, 0.00012207889812998474, 0.000929910980630666, -0.018702441826462746, -0.009423097595572472, -0.03740488365292549, -0.020715001970529556, -0.02590453438460827, 0.010379064828157425, 0.00013016507728025317, -0.008208373561501503, -0.005164375063031912, -0.018084298819303513, 0.0031661896500736475, -0.028477737680077553, -0.003978401888161898, -0.013110397383570671, -0.03231598064303398, -0.044793859124183655, 0.013771667145192623, 0.03938869386911392, 0.028247730806469917, 0.013520097360014915, -0.0008373691234737635, 0.012966643087565899, 0.013843544758856297, -0.02045624516904354, -0.025660153478384018, 0.01029999926686287, -0.017681784927845, -0.003895743051543832, -0.027485832571983337, -0.024466991424560547, -0.015841729938983917, -0.002420464064925909, 0.0188030693680048, -0.006210188381373882, -0.014655756764113903, -0.0245676189661026, -0.0011832780437543988, 0.010824702680110931, 0.01972309686243534, 0.014993579126894474, 0.0010916346218436956, 0.010645010508596897, -0.02600516378879547, -0.005042184144258499, -0.03605359420180321, -0.004524668212980032, -0.05065903440117836, -0.018544312566518784, 0.005013433285057545, -0.0037627702113240957, -0.01765303499996662, -0.0018175941659137607, -0.02981465309858322, 0.010184995830059052, -0.012715072371065617, 0.0004469862033147365, 0.0018229848938062787, 0.0003708413278218359, -0.007176936138421297, -0.003491434035822749, 0.00870432611554861, 0.0033207256346940994, 0.0005453680641949177, 0.011586600914597511, -0.027112072333693504, 0.02405010350048542, 0.005117655266076326, -0.009897487238049507, 0.02633579820394516, 0.02892337553203106, -0.03792240098118782, -0.02984340488910675, 0.014346684329211712, 0.008769015781581402, 0.008654012344777584, 0.0026540649123489857, -0.0031248603481799364, -0.009236217476427555, -0.010738450102508068, -0.007468038704246283, -0.0009874127572402358, 0.0018337664660066366, 0.0017708740197122097, -0.024768875911831856, 0.019679971039295197, -0.0026414862368255854, -0.023417584598064423, -0.011148150078952312, -0.03093593753874302, -0.021189391613006592, -0.0190474521368742, 0.012751011177897453, 0.01686238683760166, -0.012988205999135971, -0.013462595641613007, -0.02081563137471676, -0.02361884154379368, -0.011464409530162811, -0.02228192612528801, -0.006817550398409367, -0.012851639650762081, 0.04623140022158623, 0.02514263615012169, 0.037721142172813416, 0.006580355577170849, 0.017322400584816933, 0.002673831069841981, 0.0032470514997839928, -0.01446168776601553, -0.0018580250907689333, -0.01844368316233158, -0.004794207867234945, -0.0013450017431750894, 0.003060170914977789, -0.004585763905197382, -0.007291939575225115, 0.017063641920685768, 0.001804117113351822, -0.0037627702113240957, 0.0008697138400748372, -0.0157267265021801, -0.016833635047078133, -0.044822607189416885, -0.013599161989986897, 0.014878575690090656, -0.006253314670175314, -0.008769015781581402, -0.03892868012189865, 0.0004955033073201776, 0.0217356588691473, 4.896632890449837e-05, 0.025502022355794907, 0.008373691700398922, 0.019665595144033432, 0.006228157319128513, 0.004125750157982111, 0.011105024255812168, 0.01591360755264759, -0.028995253145694733, 0.00012162965867901221, -0.031223446130752563, -0.008725889027118683, 0.01016343291848898, 0.020901883020997047, 0.019119329750537872, -0.01356322318315506, 0.003252442227676511, 0.0018939636647701263, 0.02301507256925106, -0.032085973769426346, 0.00820118561387062, -0.005516573321074247, -0.04511011764407158, 0.0011832780437543988, -0.043241310864686966, -0.006123935803771019, 0.012636007741093636, -0.014777948148548603, 0.011212839744985104, 0.002122173784300685, 0.022051917389035225, -0.023647591471672058, -0.01640237122774124, 0.02255505882203579, -0.010508443228900433, 0.04114249721169472, 0.022454431280493736, 0.028118351474404335, -0.003917306195944548, 0.014562316238880157, -0.021074388176202774, -0.018386181443929672, 0.010386251844465733, -0.004952337592840195, 0.012398812919855118, 0.028995253145694733, -0.0016882151830941439, -0.007949615828692913, 0.013728541322052479, -0.014375435188412666, -0.014490439556539059, -0.03703112155199051, 0.02913900837302208, -0.007683670148253441, 0.004787019919604063, -0.02277068980038166, -0.006177843548357487, -0.011054709553718567, 0.0024330425076186657, -0.011205651797354221, 0.0011680041207000613, -0.00530453585088253, -0.022396929562091827, 0.0092793432995677, 0.01341228187084198, -0.01874556764960289, 0.010910955257713795, -0.008711514063179493, 0.005566887557506561, 0.0033404917921870947, -0.008021493442356586, -0.009545288980007172, -0.017940543591976166, 0.008129308931529522, 0.036801114678382874, -0.013448219746351242, 0.01798366941511631, 0.009638729505240917, 0.013879482634365559, -0.02603391371667385, -0.010443753562867641, -0.005009839311242104, 0.03593859076499939, -0.02438073791563511, -0.02179316058754921, 0.004147313069552183, 0.005117655266076326, 0.01956496760249138, -0.028448987752199173, -0.0009209263371303678, -0.003813084214925766, -0.014454500749707222, 0.0190474521368742, 0.012046614661812782, -0.02146252617239952, 0.00025089626433327794, -0.018026797100901604, 0.005620795302093029, -0.0309646874666214, 0.008560571819543839, -0.01100439578294754, 0.03179846331477165, -0.03789364919066429, -0.007698045577853918, -0.004894835874438286, -0.02203754335641861, -0.0023503836710006, -0.012901953421533108, 0.014166992157697678, 0.005534542724490166, 0.034673549234867096, 0.0004503554373513907, 0.006885833572596312, 0.017624283209443092, 0.010077180340886116, -0.03841116279363632, 0.018515560775995255, -0.027011442929506302, 0.0059729935601353645, 0.010436566546559334, -0.0192918349057436, -0.02532951720058918, -0.0314534530043602, 0.03550732508301735, -0.014835449866950512, 0.0032129099126905203, 0.00442044623196125, 0.0358523353934288, 0.008510258048772812, 0.004474354442209005, 0.007920864969491959, -0.0014914514031261206, 0.01496482826769352, 0.0015875871758908033, 0.005333286710083485, 0.022670062258839607, -0.0038777736481279135, 0.005318911280483007, -0.01578422822058201, 0.0012012473307549953, -0.007166154682636261, -0.03429979085922241, 0.0011877703946083784, 0.008337752893567085, -0.018429309129714966, 0.0032326760701835155, 0.02310132421553135, 0.007097871508449316, -0.022626936435699463, -0.025315141305327415, 0.015439217910170555, -0.0036100312136113644, -0.0024456209503114223, 0.045311372727155685, -0.003079937072470784, 0.01645987294614315, 0.02323070354759693, -0.015194835141301155, -0.033092252910137177, -0.019392462447285652, -0.0308209341019392, -0.05523042380809784, -0.02310132421553135, 0.009998115710914135, 0.030245916917920113, -0.004463572986423969, -0.023676343262195587, -0.015252336859703064, -0.022210048511624336, -0.03133844956755638, -0.024955756962299347, -0.02478325180709362, 0.033121004700660706, 0.0466914139688015, 0.02834835834801197, 0.011399720795452595, 0.018918072804808617, -0.016833635047078133, 0.018386181443929672, -0.030619677156209946, -0.007180530112236738, -0.016316119581460953, -0.008402442559599876, 0.03665735945105553, -0.024581994861364365, -0.06618450582027435, -0.00416168849915266, 0.009149964898824692, -0.01490732654929161, 0.017940543591976166, 0.0068822395987808704, 0.0002666194050107151, 0.007906490005552769, -0.006835519801825285, 0.014627005904912949, 0.01578422822058201, 0.03251723572611809, 0.0009478802676312625, -0.023388834670186043, 0.004837334156036377, 0.0151660842821002, -3.220434518880211e-05, 0.0075255404226481915, -0.005211095325648785, 0.014864200726151466, -0.008718702010810375, 0.009480600245296955, -0.0011814810568466783, -0.001999982399865985, -0.019363712519407272, 0.00042699536425061524, 0.012463502585887909, 0.021261269226670265, 0.02734207920730114, 0.028233354911208153, -0.01118408888578415, -0.001973028527572751, -0.015841729938983917, -0.010760013945400715, -0.014936077408492565, -0.019493089988827705, 0.020614374428987503, -0.02831960842013359, -0.013606349937617779, 0.001823883387260139, 0.004003558773547411, -0.008934332989156246, -0.009854361414909363, -0.012420376762747765, -0.004966713022440672, -0.010810327716171741, 0.011816607788205147, -0.0009946004720404744, -0.023460710421204567, 0.010005302727222443, -0.003164392663165927, 0.005692672450095415, 0.0025013256818056107, -0.0028553209267556667, 0.01542484201490879, -0.028262106701731682, -0.00848869513720274, -0.021160641685128212, -0.009300907142460346, -0.027442706748843193, -0.0009802250424399972, 0.024826377630233765, 0.002693597227334976, 0.009394346736371517, 0.21632155776023865, -0.0013423062628135085, 0.009394346736371517, 0.026077039539813995, 0.01564047485589981, -0.015051080845296383, 0.010170620866119862, 0.012362875044345856, -0.007166154682636261, 0.007360223215073347, -0.0012866015313193202, 0.005221876781433821, -0.008833705447614193, -0.007432100363075733, 0.03087843582034111, -0.011277529411017895, -0.027931472286581993, -0.014231680892407894, -0.022785065695643425, -8.282721682917327e-05, -0.015180460177361965, 0.006278471555560827, -0.021232519298791885, -0.005671109538525343, 0.024193858727812767, 0.0021653000731021166, -0.004776238463819027, -0.009653105400502682, 0.014684507623314857, 0.02070062793791294, -0.0276439618319273, 0.02334570698440075, 0.013872295618057251, -0.004247941076755524, 0.0008265875512734056, -0.00836650375276804, 0.004147313069552183, -0.03176971152424812, 0.006857082713395357, 0.02407885529100895, -0.010494068264961243, -0.018874946981668472, -0.012017863802611828, -0.008632449433207512, 0.015324214473366737, -0.004251535050570965, -0.022943194955587387, 0.0048876479268074036, -0.009229029528796673, 0.02307257428765297, -0.005908303894102573, 0.001994591671973467, 0.0027475052047520876, 0.030130913481116295, 0.005110467318445444, 0.01804117113351822, 0.0026342985220253468, -0.009998115710914135, -0.01773928664624691, -0.0032003314699977636, -0.0459151417016983, 0.020341241732239723, -0.007935240864753723, 0.028736496344208717, -0.030734680593013763, -0.009746544994413853, -0.031597208231687546, 0.02581828273832798, 0.006907396949827671, -0.004697173368185759, -0.013534472323954105, -0.016776133328676224, -0.016718631610274315, -0.012743823230266571, -0.01798366941511631, -0.022166920825839043, 0.018831821158528328, 0.0007601011311635375, 0.03539232164621353, 0.02225317433476448, -0.0016073534497991204, -0.0051895324140787125, -0.004219190217554569, -0.02606266550719738, 0.010760013945400715, 0.0062317512929439545, 0.025861408561468124, -0.02051374688744545, -0.027011442929506302, -0.017121143639087677, -0.012636007741093636, 0.007140997797250748, -0.02407885529100895, -0.007342253811657429, -0.007281158119440079, -0.01643112301826477, 0.011651290580630302, 0.010264061391353607, 0.004988275934010744, -0.023791346698999405, -0.03579483553767204, 0.06497696787118912, 0.017092393711209297, 0.017351150512695312, -0.028635866940021515, 0.010458129458129406, -0.006990055553615093, 0.028995253145694733, 0.01496482826769352, -0.0026289077941328287, 0.0062245638109743595, -0.02399260178208351, 0.010458129458129406, 0.0012848045444115996, 0.007295533549040556, 0.022698812186717987, 0.017624283209443092, -0.005135624203830957, 0.00520390784367919, -0.017423028126358986, 0.021563153713941574, -0.00527937849983573, -0.001962247071787715, 0.012441939674317837, -0.03427103906869888, -0.03450104594230652, -0.009875924326479435, 0.02072937786579132, -0.04062497988343239, -0.031079690903425217, 0.012564131058752537, -0.010357500985264778, 0.022152546793222427, -0.00836650375276804, -0.013972923159599304, -0.003584874328225851, 0.007913677021861076, -0.00020855612820014358, -0.009257780387997627, -0.012154431082308292, -0.0032362700439989567, 0.00041756147402338684, 0.007105058990418911, 0.010910955257713795, -0.0033171316608786583, -0.014698882587254047, 0.00888401921838522, 0.00069541169796139, -0.008316189050674438, -0.041832517832517624, 0.004977494478225708, 0.006749267224222422, 0.0088408924639225, -0.011737543158233166, 0.03841116279363632, -0.023403208702802658, -0.009940613992512226, -0.017595533281564713, 0.0039137122221291065, 0.011342219077050686, -0.04194752126932144, -0.0069361478090286255, 0.026378924027085304, -0.01496482826769352, -0.032229725271463394, -0.015568596310913563, -0.18596063554286957, 0.016143614426255226, -0.005919085815548897, -0.008632449433207512, 0.03432853892445564, 0.026953941211104393, 0.011076273396611214, 0.003651360748335719, 0.001721458393149078, -0.002709769643843174, 0.004589357879012823, -0.010005302727222443, -0.020959384739398956, -0.00326142692938447, -0.0032955685164779425, 0.009250592440366745, -0.0066162943840026855, 0.023820096626877785, 0.04956650361418724, 0.012585693970322609, 0.005038590170443058, -0.0334085114300251, -0.012729448266327381, -0.00410059280693531, 0.0037735518999397755, -0.00230186665430665, -0.028391486033797264, 0.032689739018678665, 0.017595533281564713, -0.023216327652335167, 0.006864270661026239, -0.007913677021861076, 0.026019537821412086, -0.0061634681187570095, 0.003730425611138344, -0.002693597227334976, 0.017811164259910583, -0.011040334589779377, -0.021635031327605247, 0.019493089988827705, 0.019881227985024452, 0.006982868071645498, 0.0022030354011803865, 0.005796894431114197, 9.798880637390539e-05, 0.03090718574821949, -0.000742131844162941, -0.01060907170176506, 0.006389881018549204, -0.010810327716171741, 0.03599609062075615, -0.01932058483362198, -0.00794242788106203, -0.012801325879991055, 0.009674668312072754, 0.002008967101573944, 0.0008625261252745986, 0.018544312566518784, -0.012240683659911156, -0.011816607788205147, -0.003931681625545025, -0.022641310468316078, 0.021103139966726303, 0.0005705251242034137, -0.018788693472743034, -0.030590927228331566, 0.004039497580379248, 0.0283771101385355, 0.004668422508984804, 0.0036585484631359577, -0.0035219816491007805, -0.012657570652663708, 0.004384507890790701, 0.026465177536010742, 0.013390718027949333, 0.008316189050674438, -0.05028527230024338, 0.0077196089550852776, 0.034213535487651825, -0.003229082329198718, 0.01612923853099346, 0.014231680892407894, 9.669726568972692e-05, -0.0031877527944743633, -0.015309838578104973, 0.0007623473065905273, 0.0181705504655838, 0.020671876147389412, -0.01010593120008707, -0.003096109488978982, 0.02282819151878357, -0.010120307095348835, 0.004977494478225708, -0.02059999853372574, 0.011615351773798466, 0.015237961895763874, 0.01920558139681816, -0.0015516486018896103, 0.019363712519407272, -0.006925365887582302, -0.004513886757194996, 0.03355226665735245, -0.027730215340852737, -0.003672923892736435, 0.046375155448913574, 0.03199971839785576, -0.003777145640924573, 0.011636914685368538, 0.03648485615849495, -0.007105058990418911, -0.007913677021861076, 0.0013539863284677267, 0.031022189185023308, 0.03245973214507103, -0.0015902825398370624, 0.04496636241674423, -0.0018580250907689333, -0.024452615529298782, 0.03582358732819557, -0.008862456306815147, 0.0368298664689064, -0.014281995594501495, -0.014246056787669659, -0.0004561954701784998, -0.0036639391910284758, -0.010479692369699478, -0.10643572360277176, -0.036312349140644073, 0.022785065695643425, 0.004661235027015209, -0.013570411130785942, -0.0006684577674604952, -0.003910118713974953, 0.03444354236125946, -0.0007717811968177557, 0.02682456374168396, -0.02916775830090046, -0.0011401517549529672, 0.007784298155456781, -0.001721458393149078, 0.008941520936787128, -0.0092793432995677, -0.007496789563447237, -0.005919085815548897, 0.0030116536654531956, 0.03749113529920578, 0.00524344015866518, -0.009530914016067982, 0.0037160501815378666, -0.009926238097250462, -0.008855268359184265, -0.009890299290418625, -0.020068109035491943, 0.004934368189424276, -0.005038590170443058, 0.006565980147570372, 0.021232519298791885, -0.022540682926774025, 0.010795951820909977, -0.009379971772432327, -0.020355617627501488, -0.01118408888578415, -0.016661129891872406, -0.024553244933485985, 0.024423865601420403, -0.03685861825942993, -0.008574947714805603, 0.002039514947682619, -6.671100709354505e-05, -0.014123865403234959, -0.005696266423910856, -0.009566852822899818, -0.009818422608077526, 0.01950746588408947, 0.03185596689581871, -0.006465352140367031, -0.011795044876635075, -0.03294849768280983, -0.016143614426255226, -0.02059999853372574, 0.02359008975327015, 0.014749197289347649, 0.025372643023729324, 0.020901883020997047, 0.0005170664517208934, 0.007511164993047714, -0.018156174570322037, -0.007410536985844374, -0.00021237459441181272, 0.005383600480854511, 0.027744591236114502, -0.0028517269529402256, -0.023360082879662514, -0.024452615529298782, 0.003723237896338105, 0.014030424878001213, -0.017264898866415024, 0.020858757197856903, -0.015554221346974373, 0.0011626133928075433, -0.01464856881648302, -0.017078017815947533, -0.009832797572016716, -0.005153593607246876, 0.010055617429316044, 0.020398743450641632, -0.015539845451712608, -0.0036908930633217096, 0.012715072371065617, -0.03427103906869888, 0.0308209341019392, -0.007640543859452009, -0.017322400584816933, -0.006893021520227194, 0.04758269339799881, -0.04137250408530235, -0.003777145640924573, 0.018544312566518784, 0.014734821394085884, -0.006084403023123741, -0.0001745267800288275, 0.0214912761002779, -0.010875017382204533, -0.006249720696359873, 0.010184995830059052, -0.0007789689116179943, -0.02448136731982231, -0.020010605454444885, -0.05922679603099823, 0.01926308311522007, -0.0025121073704212904, -0.010760013945400715, 0.0010008896933868527, -0.010220934636890888, -0.0020467026624828577, 0.0018050156068056822, 0.000935301766730845, 0.005347662139683962, -0.006763642653822899, -0.006691765505820513, -0.02334570698440075, -0.023460710421204567, -0.02600516378879547, -0.029182134196162224, 0.006113153882324696, -0.017724912613630295, 0.0089630838483572, 0.0024869502522051334, -0.015985485166311264, -0.01686238683760166, 0.010357500985264778, 0.028003348037600517, -0.02307257428765297, 0.003730425611138344, 0.004334193654358387, 0.037289880216121674, -0.010580320842564106, -0.027528958395123482, 0.020743753761053085, -0.011636914685368538, 0.0046252962201833725, 0.004783426411449909, -0.0021401429548859596, -0.03151095658540726, -0.0065551986917853355, 0.016531750559806824, 0.020858757197856903, 0.02271318808197975, -0.022655686363577843, -0.02121814340353012, 0.021131889894604683, -0.028060849756002426, -0.00971060711890459, -0.020139984786510468, -0.0006967593799345195, -0.018903696909546852, 0.004506699275225401, 0.01464856881648302, 0.015036705881357193, 0.0052685970440506935, -0.016589252278208733, -0.01975184865295887, 0.010415002703666687, -0.0096459174528718, 0.01627299375832081, 0.017581157386302948, 0.003245254512876272, 0.0040430910885334015, 0.05376413092017174, 0.012866014614701271, 0.008093370124697685, 0.0024384332355111837, 0.013656663708388805, -0.022971946746110916, -0.027112072333693504, 0.008050244301557541, -0.008697138167917728, -0.023417584598064423, -0.00558485696092248, -0.021045638248324394, 0.014131053350865841, 0.021189391613006592, 0.0050062453374266624, -0.0044779484160244465, 0.006188625004142523, -0.02423698455095291, -0.005919085815548897, 0.035162314772605896, 0.02581828273832798, -0.002483356511220336, -0.03536356985569, 0.01588485576212406, 0.017293648794293404, 0.0017591939540579915, -0.008143683895468712, 0.018213676288723946, 0.010443753562867641, 0.00379152107052505, -0.005574075039476156, 0.0006266791606321931, 0.0014429343864321709, 0.021261269226670265, 0.011277529411017895, 0.026105791330337524, -0.017581157386302948, -0.00998373981565237, 0.020068109035491943, 0.0314534530043602, 0.014979204162955284, 0.00825868733227253, 0.004650453571230173, -0.025185763835906982, -0.014231680892407894, 0.026953941211104393, -0.04091249033808708, 0.005498603917658329, 0.01627299375832081, 0.030705930665135384, 0.007439287845045328, -0.00332252262160182, 0.0046863919124007225, 0.009998115710914135, -0.010587508790194988, 0.010961269959807396, 0.0002464039425831288, -0.028506489470601082, -0.02097376063466072, 0.01950746588408947, 0.02233942784368992, 0.018026797100901604, 0.02154877781867981, -0.02024061419069767, 0.0410274937748909, 0.017336774617433548, 0.031683459877967834, 0.011040334589779377, -0.00010579422087175772, -0.005455477628856897, 0.001001788186840713, 0.028750870376825333, 0.0017115753144025803, -0.025099510326981544, -0.0008661199826747179, -0.015597348101437092, -0.02478325180709362, 0.02877962216734886, 0.004718736745417118, 0.08665512502193451, 0.03547857329249382, -0.03797990083694458, 0.003849022788926959, -0.012815700843930244, -0.02426573447883129, 0.013476970605552197, 0.012190368957817554, 0.003777145640924573, -0.032085973769426346, 0.009962176904082298, -0.009444661438465118, -0.020413119345903397, -0.018630564212799072, -0.00626409612596035, -0.006246126722544432, 0.004032309632748365, 0.022080669179558754, -0.00034276428050361574, 0.006213781889528036, 0.020111234858632088, 0.009775295853614807, 0.019090577960014343, 0.00876182783395052, -0.03892868012189865, -0.006116747856140137, 0.03953244909644127, 0.006296440958976746, 0.0036495637614279985, -0.02195128984749317, 0.026105791330337524, -0.005085310433059931, -0.019191207364201546, -0.002158112358301878, -0.011543475091457367, 0.00922184158116579, 0.009732170030474663, -0.016876760870218277, 0.020355617627501488, -0.002803209936246276, 0.010429378598928452, -0.011291904374957085, -0.026019537821412086, -0.04002121090888977, -0.0018400558037683368, 0.010896580293774605, -0.0036495637614279985, -0.017782414332032204, 0.0008786984835751355], "067b5d34-dfe4-43f9-a607-5fa6aea16e59": [-0.014664674177765846, -0.02292843535542488, 0.0030586421489715576, -0.04358783736824989, -0.0006648650742135942, 0.006758075673133135, -0.0053574382327497005, -0.03005767986178398, -0.024707244709134102, -0.04773372411727905, -0.0034105521626770496, 0.0028065273072570562, 0.006411417853087187, -0.006036747246980667, 0.0024038441479206085, 0.00586516922339797, 0.024455130100250244, -0.0036416572984308004, 0.02578573487699032, -0.005952709354460239, -0.03364331275224686, -0.0066075073555111885, -0.004555573221296072, 0.0032004565000534058, -0.02764858305454254, -0.002669965149834752, 0.024539168924093246, -0.016261400654911995, -0.019020656123757362, 0.03608042001724243, 0.009174175560474396, -0.00785757601261139, -0.010658850893378258, -0.006124287378042936, -0.00818672589957714, 0.013866310939192772, 0.004436518996953964, -0.0007721013971604407, -0.003210961353033781, 0.006660031154751778, 0.02332061342895031, 0.000997078837826848, -0.009286226704716682, -0.007850573398172855, -0.03005767986178398, 0.043195661157369614, -0.007584451697766781, -0.009643388912081718, -0.013011922128498554, 0.0003600076015572995, -0.006775583606213331, 0.01792815886437893, -0.01767604425549507, -0.004860212095081806, 0.00035541175748221576, 0.002480879193171859, 0.011905418708920479, 0.012976906262338161, 0.017620019614696503, 0.0031776961404830217, -0.006639021448791027, 0.000985698658041656, -0.009307236410677433, -0.0076124644838273525, -0.027186373248696327, -0.02312452532351017, -0.0046641225926578045, -0.0009130405378527939, 0.021219657734036446, -0.008964079432189465, 0.028152812272310257, 0.02774662896990776, 0.006530472077429295, -0.006558484863489866, 0.0038692608941346407, -0.019202739000320435, -0.019454853609204292, -0.020743440836668015, 0.005833655130118132, 0.0035436127800494432, 0.009230201132595539, -0.003760711522772908, 0.0007878585602156818, -0.003984813578426838, 0.02885313145816326, 0.04462430998682976, -0.01455262303352356, -0.0005834530456922948, -0.0031846994534134865, -0.01994507759809494, -0.011555259115993977, -0.004110870882868767, 0.026374002918601036, 0.031206203624606133, 0.00456257676705718, 0.012038478627800941, 0.01623338833451271, 0.005508007016032934, -0.007934611290693283, -0.012367628514766693, -0.009153165854513645, 0.011394185945391655, -0.03927387297153473, -0.01281583309173584, -0.0404784232378006, 0.0031409296207129955, 0.012395641766488552, -0.003911280073225498, 0.007437385153025389, 0.022102059796452522, -0.0016965221147984266, 0.031234215945005417, -0.02091151662170887, -0.015645120292901993, -0.010602825321257114, -0.029609475284814835, 0.006372900679707527, -0.03005767986178398, -0.011597278527915478, -0.003006118116900325, 0.01310296356678009, 0.013936342671513557, 0.046136997640132904, -0.005017783492803574, 0.01672361046075821, -0.0018138255691155791, 0.016205376014113426, -0.0013901327038183808, 0.03540811687707901, 0.0010347209172323346, 0.03742503374814987, 0.005739111918956041, 0.011002006940543652, 0.0009305485291406512, -0.03983413055539131, 0.014041390269994736, -0.013894323259592056, -0.009552347473800182, -0.006425424478948116, -0.023166542872786522, 0.019720975309610367, 0.02495935931801796, 0.00460109394043684, -0.029553450644016266, 0.0011222608154639602, 0.034091517329216, 0.0030884055886417627, 0.049750640988349915, 0.011954440735280514, -0.01801219768822193, -0.0031111659482121468, -0.019454853609204292, -0.019678955897688866, 0.0034788332413882017, -0.0021097101271152496, 0.009496321901679039, 0.005567533895373344, 0.02549160271883011, -0.008901051245629787, 0.008564897812902927, 0.012598734349012375, 0.004979266319423914, -0.00833379290997982, -0.005774127785116434, -0.0013183499686419964, 0.03574426844716072, 0.00879600364714861, -0.019692962989211082, -0.00862792693078518, -0.01672361046075821, 0.007542432751506567, 0.038769643753767014, -0.01984703354537487, 0.02944139949977398, 0.01245866995304823, 0.005220876075327396, 0.017984185367822647, 0.007710509467869997, -0.011583271436393261, -0.008207735605537891, 0.028068775311112404, -0.005931699648499489, 0.020155172795057297, 0.02582775428891182, -0.010518787428736687, -0.018292324617505074, 0.014818744733929634, -0.007118740119040012, 0.00409336294978857, -0.017031751573085785, 0.023922888562083244, 0.006859621964395046, -0.039582014083862305, -0.013740253634750843, -0.6086609959602356, 0.010707873851060867, 0.012276587076485157, -0.025561634451150894, -0.011989456601440907, 0.012374632060527802, 0.02264830842614174, -0.006597002502530813, 0.001796317519620061, 0.026051856577396393, 0.015911241993308067, 0.009986544959247112, 0.006162805017083883, -0.02014116756618023, -0.02697627805173397, -0.01385230477899313, 0.01864248514175415, -0.018908604979515076, -0.02659810520708561, 0.01585521548986435, -0.019622931256890297, 0.01575717143714428, -0.009566353633999825, -0.02091151662170887, 0.0058266520500183105, -0.010644844733178616, 0.03131825476884842, 0.01633143238723278, -0.007034701760858297, 0.017073770985007286, -0.032494790852069855, -0.0023320612963289022, 0.029357360675930977, -0.018852580338716507, 0.044680334627628326, -0.01529496069997549, -0.02448314242064953, 0.019090687856078148, 0.024651220068335533, 0.025365544483065605, -0.03594035655260086, 0.0009576858719810843, 0.012822835706174374, 0.018894599750638008, -0.0014978066319599748, 0.0018173271091654897, 0.00433497317135334, -0.0018786049913614988, -0.014104419387876987, 0.0010469765402376652, 0.001779685029760003, -0.018810560926795006, -0.003489338094368577, -0.010175631381571293, 0.009111146442592144, -0.00714325113222003, 0.008095684461295605, -0.014916788786649704, 0.015266948379576206, 0.01603729836642742, 0.01888059265911579, 0.003760711522772908, -0.008550891652703285, -0.047621674835681915, -0.04274745658040047, -0.005686588119715452, -0.012717788107693195, -0.03157036751508713, -0.0022375183179974556, -0.009818468242883682, 0.0038902706000953913, -0.006292363628745079, 0.012549711391329765, -0.004503049422055483, 0.01221355888992548, 0.005154345650225878, 0.043195661157369614, 0.007199276704341173, -0.0021114610135555267, 0.035099975764751434, -0.004142385441809893, -0.009573357179760933, -0.007178266998380423, -0.014398553408682346, 0.03361529856920242, 0.002452866407111287, -0.018180273473262787, -0.016023293137550354, -0.008109690621495247, -0.007794547360390425, 0.020967543125152588, 0.018460402265191078, -0.005973718594759703, -0.04442822188138962, 0.03473581001162529, 0.046893343329429626, 0.013635206036269665, 0.006649526301771402, 0.005851163063198328, -0.023586735129356384, -0.031010113656520844, -0.021891962736845016, 0.016961719840765, 0.01519691664725542, 0.011079042218625546, 0.028054768219590187, -0.0383494533598423, -0.011562262661755085, 0.01990305818617344, -0.02634599059820175, -0.030421845614910126, -0.011870402842760086, -0.02075744792819023, 0.008690955117344856, 0.02215808443725109, -0.026093875989317894, 0.010630838572978973, -0.007766534574329853, 0.011989456601440907, -0.017942165955901146, -0.017998190596699715, 0.0004897853941656649, 0.004478538408875465, 0.0047936816699802876, -0.014293504878878593, 0.012591730803251266, 0.02110760658979416, 0.0008530757622793317, 0.011429201811552048, 0.020057128742337227, 0.0034543222282081842, 0.006733564659953117, 0.026724163442850113, -0.008095684461295605, 0.024399105459451675, 0.011639297008514404, 0.029217297211289406, 0.005543022882193327, 0.01710178330540657, -0.04224322736263275, 0.009237203747034073, -0.010105599649250507, 0.02871306799352169, -0.017886141315102577, -0.003935791086405516, -0.01994507759809494, -0.029217297211289406, 0.008095684461295605, -0.008873037993907928, -0.01826431229710579, -0.03305504471063614, -0.017984185367822647, -0.0028082781936973333, 0.018082229420542717, -0.00039896281668916345, -0.013768265955150127, 0.0010942480294033885, -0.021569816395640373, -0.01262674666941166, -0.02553362026810646, -0.01719982735812664, 0.007752528414130211, -0.017563993111252785, -0.002269032644107938, -0.022816384211182594, -0.0022742850705981255, -0.019454853609204292, 0.005809144116938114, -0.010378723964095116, -0.016919700428843498, 0.009013102389872074, -0.009433293715119362, 0.007591455243527889, 0.013866310939192772, -0.015014833770692348, 0.0009743184200488031, -0.008852029219269753, 0.004152890294790268, -0.016149349510669708, -0.0037326987367123365, 0.00955935101956129, 0.03812535107135773, 0.00393929285928607, -0.014370540156960487, 0.02659810520708561, 0.022816384211182594, 0.02634599059820175, 0.008943070657551289, -0.014636661857366562, 0.0023565725423395634, -0.006064760033041239, 0.03030979447066784, -0.011625290848314762, 0.004713145084679127, -0.020295236259698868, 0.00684211403131485, -0.004026832524687052, -0.017620019614696503, -0.02004312165081501, 0.01913270726799965, 0.03431561961770058, 0.017718063667416573, 0.0001191636110888794, 0.0071712639182806015, 0.01672361046075821, -0.021597830578684807, 0.025813749060034752, -0.022676320746541023, -3.6383746191859245e-05, -0.005098320543766022, -0.002360074082389474, -0.0011450211750343442, 0.0060332459397614, -0.015014833770692348, -0.0045695798471570015, 0.009510328061878681, -0.006047252099961042, 0.01888059265911579, -0.011534249410033226, 0.010224653407931328, 0.006512964144349098, 0.013215014711022377, 0.01733989268541336, -0.006274855695664883, 0.000526989868376404, 0.012136523611843586, -0.006019239313900471, 0.013894323259592056, 0.027046309784054756, -0.03580029308795929, 0.003753708442673087, 0.04137483239173889, -0.004369989037513733, -0.0117583516985178, 0.027914704754948616, 0.02687823213636875, 0.029217297211289406, -0.019622931256890297, 0.03459574654698372, -0.02486131526529789, 0.0015030590584501624, 0.0047096433117985725, 0.028993194922804832, -0.024062952026724815, 0.03224267438054085, 0.016961719840765, 0.030337806791067123, -0.01411842554807663, -0.02206004038453102, 0.031094152480363846, 0.003480584127828479, 0.014622654765844345, -0.013453123159706593, -0.007150254212319851, 0.019146714359521866, -0.019090687856078148, 0.005788134410977364, 0.016079317778348923, 0.021079594269394875, 0.014916788786649704, -0.0006070887902751565, 0.014202463440597057, 0.0041458867490291595, -0.019791007041931152, 0.02756454609334469, -0.004961758386343718, -0.011471221223473549, -0.017788095399737358, 0.005662077106535435, -0.018614472821354866, -0.016583546996116638, -0.030365820974111557, 0.005332927219569683, -0.03358728811144829, 0.004068851936608553, 0.012598734349012375, -0.002142975339666009, 0.014412559568881989, 0.006411417853087187, 0.02818082645535469, -0.011338160373270512, -0.030954087153077126, 0.022172091528773308, 0.017185822129249573, -0.006295865401625633, -0.010196641087532043, -0.022998467087745667, 0.003911280073225498, 0.02944139949977398, 0.027494514361023903, 0.00048409533337689936, -0.005224377848207951, -0.005557029042392969, 0.018754536285996437, -0.004089861176908016, 0.0036521621514111757, 0.03588433191180229, -0.028306882828474045, -0.00982547178864479, 0.0029956132639199495, 0.024413110688328743, 0.021555811166763306, -0.006516465917229652, -0.008053665049374104, 0.04249534010887146, -0.016751624643802643, 0.0020641894079744816, -0.00403383607044816, 0.011380179785192013, -0.03434363007545471, 0.0020414290484040976, -0.022368179634213448, -0.007983633317053318, 0.0036521621514111757, -0.003384290263056755, -0.008347799070179462, -0.0020641894079744816, -0.01974898763000965, 0.01177936140447855, 0.006835110951215029, -0.02177991345524788, -0.01826431229710579, -0.002081697341054678, 0.0077735381200909615, 0.07804352045059204, 0.011219105683267117, -0.0077805412001907825, 0.027634577825665474, -0.022130072116851807, 0.002325058216229081, -0.026906246319413185, -0.027760634198784828, 0.01854443922638893, 0.002577172825112939, -0.01204548217356205, -8.600789442425594e-05, -0.0048812213353812695, 0.002360074082389474, 0.013327065855264664, 0.006194319110363722, -0.0007585327257402241, -0.016261400654911995, -0.027970729395747185, -0.001458413782529533, -0.014132431708276272, 0.0031479327008128166, 0.022480230778455734, -0.00019576096383389086, 0.03501593694090843, 0.03154235705733299, 0.023040486499667168, 0.005494000390172005, 0.01238163560628891, -0.02292843535542488, -0.02549160271883011, 0.008109690621495247, -0.0017472952604293823, 0.013004918582737446, -0.015687139704823494, 0.025883780792355537, 0.008207735605537891, -0.02215808443725109, -0.018894599750638008, 0.024203015491366386, 0.009580360725522041, 0.018488414585590363, 0.0013813787372782826, 0.0012807078892365098, 0.036220483481884, -0.03961002826690674, -0.0026752175763249397, 0.036108434200286865, -0.028558997437357903, -0.008522879332304, 0.017690051347017288, 0.011597278527915478, 0.006509462837129831, 0.01134516391903162, 0.0035173508804291487, -0.007570445537567139, -0.0031846994534134865, -0.02442711777985096, 0.0017516722436994314, -0.02610788308084011, -0.023292601108551025, -0.010049574077129364, -0.0007060088100843132, -0.017171815037727356, -0.017956173047423363, -0.02582775428891182, -0.007423378527164459, 0.006761577446013689, -0.02327859401702881, 0.006358894053846598, -0.0022217612713575363, -0.03347523510456085, -0.041935086250305176, 0.007542432751506567, 0.03157036751508713, 0.020029116421937943, 0.007248298730701208, 0.005017783492803574, 0.0006683666724711657, 0.012486683204770088, -0.01278781984001398, -0.02655608579516411, 0.02043529972434044, -0.00593870272859931, -0.018712516874074936, -0.04140284284949303, -0.0202812310308218, -0.014265492558479309, -0.01161128468811512, 0.019090687856078148, 0.00022235119831748307, -0.023012474179267883, -0.012010466307401657, 0.006891136523336172, 0.018754536285996437, 0.015911241993308067, 0.018054217100143433, 0.009244207292795181, 0.014398553408682346, -0.027144353836774826, 0.004762167576700449, -0.019692962989211082, -0.015505056828260422, -0.029889604076743126, 0.011016014032065868, -2.7616084480541758e-05, -0.0043629854917526245, -0.022998467087745667, 0.006225833669304848, -0.014090413227677345, 0.0014566630125045776, -0.00968540832400322, -0.014167447574436665, -0.005592044908553362, 0.014342527836561203, -0.020533345639705658, 0.007027698680758476, 0.012108511291444302, 0.0005134211969561875, -0.00785757601261139, 0.009209191426634789, -0.04168296977877617, 0.02910524606704712, 0.03025376982986927, 0.0030428848695009947, 0.021527796983718872, 0.025855768471956253, -0.05005878210067749, -0.047089431434869766, 0.00067887146724388, 0.02201802097260952, 3.3593412808841094e-05, -0.005248888861387968, -0.01613534428179264, -0.018908604979515076, -0.00021512915554922074, -0.011310147121548653, 0.014734705910086632, -0.024679232388734818, -0.004096864722669125, -0.031766459345817566, 0.020967543125152588, 0.009678404778242111, -0.017704058438539505, -0.003767714835703373, -0.03291498124599457, -0.026584099978208542, -0.015350986272096634, 0.016639573499560356, 0.023306608200073242, -0.01913270726799965, -0.010875949636101723, -0.0139503488317132, -0.02804076112806797, -0.020113153383135796, -0.015505056828260422, 0.0006442932062782347, -0.008985089138150215, 0.056389663368463516, 0.027200380340218544, 0.03092607483267784, 0.013719243928790092, 0.01686367578804493, 0.019931070506572723, -0.022382186725735664, -0.008922060951590538, 0.001594975939951837, -0.0203232504427433, 0.003683676477521658, -0.008543888106942177, 0.014678680337965488, -0.005486997310072184, -0.004492544569075108, -0.00482869753614068, -0.006810599472373724, -0.009524335153400898, 0.005851163063198328, -0.0035856319591403008, -0.03227068856358528, -0.033083055168390274, -0.014972814358770847, 0.03291498124599457, -0.0024913838133215904, -0.01994507759809494, -0.029553450644016266, 0.009727426804602146, 0.024413110688328743, -0.00018996145809069276, 0.029161272570490837, 0.0032144628930836916, 0.029609475284814835, 0.006989181041717529, 0.020645396783947945, 0.024889327585697174, 0.003475331701338291, -0.02610788308084011, -0.002722489181905985, -0.03126222640275955, -0.012710784561932087, 0.019833026453852654, 0.034371644258499146, 0.012136523611843586, -0.008564897812902927, -0.0056585753336548805, -0.0008149959030561149, 0.015407011844217777, -0.022200103849172592, -0.010126608423888683, -0.009524335153400898, -0.03238273784518242, 0.00309015647508204, -0.03207459673285484, -0.016415471211075783, 0.014174451120197773, -0.013929339125752449, 0.025981824845075607, 0.006372900679707527, 0.01743793673813343, -0.016681592911481857, -0.01579919084906578, 0.02091151662170887, -0.008403824642300606, 0.027620570734143257, 0.013095960021018982, 0.020211199298501015, 0.008873037993907928, 0.0022847899235785007, -0.013712240383028984, -0.02283039130270481, 0.009790455922484398, -0.015631113201379776, 0.012941890396177769, 0.033559273928403854, -0.012850848957896233, -0.008901051245629787, 0.0027399971149861813, -0.014944802038371563, 0.006723059806972742, -0.03204658627510071, 0.016849668696522713, 0.009034112095832825, 0.0013139729853719473, -0.016933707520365715, -0.01725585386157036, -0.008361805230379105, 0.018334344029426575, -0.0018015699461102486, 0.004117873962968588, -0.00014597269182559103, -0.0056970929726958275, 0.022270135581493378, 0.027326436713337898, -0.01686367578804493, 0.020365267992019653, -0.007153755985200405, 0.011212103068828583, -0.0015993529232218862, -0.0038167370948940516, -0.01009159255772829, -0.015140891075134277, -0.00446803355589509, 0.028741080313920975, -0.0067020501010119915, 0.006775583606213331, 0.002225262811407447, 0.009727426804602146, 0.006281859241425991, 0.002144726226106286, -0.002887063892558217, 0.0317944698035717, -0.018124248832464218, -0.016261400654911995, -0.005154345650225878, 0.0010644844733178616, 0.020729433745145798, -0.01339009404182434, -0.013257033191621304, -0.005763623397797346, -0.0003829867928288877, 0.012696778401732445, -0.0014479089295491576, -0.02865704335272312, 0.006597002502530813, 5.876111754332669e-05, 0.005213872995227575, -0.006267852615565062, 0.01144320797175169, 0.0059597124345600605, 0.02616390772163868, -0.03159838169813156, 0.00678258715197444, -0.004804186522960663, -0.022634301334619522, -0.012584727257490158, 0.006793091539293528, -0.008634929545223713, -0.0005825776606798172, 0.018852580338716507, -0.01797017827630043, 0.017493961378932, 0.04538065567612648, 0.020561357960104942, -0.03521202504634857, 0.01262674666941166, -0.017788095399737358, -0.0029308339580893517, 0.016751624643802643, -0.019538892433047295, -0.027242397889494896, -0.024301059544086456, 0.008011646568775177, -0.00850186962634325, -0.0010102097876369953, -0.00529791135340929, 0.015925247222185135, 0.005458984524011612, 0.01411842554807663, -0.0035243539605289698, -0.017858127132058144, 0.009139159694314003, -0.007283314596861601, 0.014902782626450062, 0.008655939251184464, -0.0021009561605751514, 0.011016014032065868, -0.012269584462046623, 0.01666758581995964, -0.012115513905882835, -0.04877019673585892, -0.01546303741633892, -0.005634064320474863, 0.005861667916178703, 0.0003733574121724814, 0.021751899272203445, 0.007787544280290604, -0.021597830578684807, -0.031962547451257706, 0.02997364103794098, -0.02114962600171566, 0.005714600905776024, 0.03313908353447914, -0.006337884347885847, 0.006460440345108509, 0.021793918684124947, -0.0043524811044335365, -0.03193453326821327, -0.037509072571992874, -0.006148798391222954, -0.050899166613817215, -0.020827479660511017, 0.005844159983098507, 0.023866862058639526, 0.0013629953609779477, -0.026654131710529327, -0.028544992208480835, -0.027970729395747185, -0.041598930954933167, 0.008992092683911324, -0.014370540156960487, 0.028587009757757187, 0.028292877599596977, 0.021807925775647163, 0.011793367564678192, 0.013404100202023983, 0.00036635424476116896, 0.019286777824163437, -0.038713619112968445, -0.012528701685369015, -0.027718614786863327, -0.010308691300451756, 0.0241329837590456, -0.018474407494068146, -0.05854664742946625, -0.010154621675610542, 0.0016790141817182302, -0.010644844733178616, 0.020589370280504227, 0.008838022127747536, 0.0030411339830607176, -0.001608982332982123, 0.01327104028314352, 0.004023331217467785, 0.00965739507228136, 0.0329429917037487, 0.005406460724771023, -0.017606012523174286, 0.007906598038971424, 0.012822835706174374, 0.00716426083818078, -0.0049162376672029495, 0.0045275604352355, 0.02162584289908409, -0.01783011481165886, 0.006611008662730455, -0.004884723108261824, -0.004177401307970285, -0.02043529972434044, -0.005150844343006611, 0.0025404063053429127, 0.012976906262338161, 0.01565912738442421, 0.02600983716547489, -0.019692962989211082, 0.005052799824625254, -0.0056200576946139336, -0.0004442647041287273, -0.00040596601320430636, -0.024693237617611885, 0.023390645161271095, -0.032858956605196, -0.014230476692318916, -0.013761263340711594, 0.016457490622997284, -0.008214739151299, -0.012367628514766693, -0.018754536285996437, -0.01397135853767395, -0.012346618808805943, -0.01382429152727127, -0.003291497938334942, -0.005882677156478167, -0.005522013176232576, -0.009482315741479397, 0.01238163560628891, 0.007227289490401745, -0.0025666682049632072, 0.03311106935143471, -0.03913380950689316, 0.0009611874702386558, -0.016359444707632065, -0.004919738974422216, -0.024637212976813316, 0.011233112774789333, 0.03241075202822685, 0.0013629953609779477, 0.013677224516868591, 0.20214000344276428, -0.000818059837911278, 0.019188733771443367, 0.037901248782873154, 0.023978913202881813, -0.012801826000213623, 0.013586183078587055, 0.003407050622627139, -0.01998709701001644, 0.003534858813509345, 0.01532297395169735, -0.0020204195752739906, -0.012829839251935482, -0.0008246253128163517, 0.031822483986616135, -0.00037116892053745687, -0.027186373248696327, -0.025617659091949463, -0.005543022882193327, 0.002209505531936884, -0.02515544928610325, 7.889528205851093e-05, -0.015561082400381565, 0.0012693277094513178, 0.019188733771443367, 0.005903686862438917, -0.036052409559488297, 0.009272219613194466, 0.01648550294339657, 0.02177991345524788, -0.016583546996116638, 0.010959988459944725, 0.025883780792355537, -0.013257033191621304, 0.0016221132827922702, -0.012129520066082478, 0.0023968408349901438, -0.025141442194581032, -0.005942204501479864, 0.035099975764751434, 0.008347799070179462, 0.008494866080582142, -0.00833379290997982, -0.0235167033970356, 0.008032656274735928, -0.025113429874181747, -0.012514695525169373, 0.008866035379469395, 0.0032284692861139774, 0.013495141640305519, 0.0023057993967086077, -0.007402368821203709, 0.01941283605992794, 0.02191997691988945, -0.006071763578802347, -0.0013323563616722822, -0.013158989138901234, 0.002508891746401787, -0.011317150667309761, -0.010196641087532043, -0.028446946293115616, 0.00879600364714861, 0.002542156958952546, 0.013495141640305519, -0.03742503374814987, 0.00048409533337689936, -0.023474683985114098, 0.05288806930184364, -0.008382814936339855, 0.014251486398279667, -0.0005550025962293148, -0.0019311289070174098, -0.035240039229393005, -0.01864248514175415, -0.01595326140522957, -0.011702326126396656, 0.009916513226926327, 0.005238384008407593, 0.042187198996543884, 0.010154621675610542, -0.003347523510456085, 0.005739111918956041, -0.01438454631716013, -0.013067947700619698, 0.02245221845805645, -0.02655608579516411, 0.03243876248598099, -0.031486328691244125, -0.013215014711022377, -0.011548255570232868, -0.004835700616240501, 0.009167172014713287, -0.004685132298618555, -0.008529881946742535, 0.0117583516985178, -0.013376087881624699, 0.004898729734122753, 0.025981824845075607, -0.01327104028314352, -0.012185545638203621, -0.021373728290200233, 0.048434045165777206, 0.018572453409433365, 0.029861589893698692, -0.015631113201379776, 0.0037782194558531046, -0.002580674597993493, 0.025365544483065605, 0.019328797236084938, -0.0038307434879243374, 0.000969941436778754, -0.04308360815048218, 0.019875045865774155, 0.0033440219704061747, 0.01927277073264122, 0.012227565050125122, 0.009503325447440147, -0.009720424190163612, 0.005455482751131058, -0.008810009807348251, 0.019454853609204292, -0.006716056726872921, 0.0045310622081160545, -0.005245387088507414, -0.041598930954933167, -0.031822483986616135, -0.01016162522137165, 0.019244758412241936, -0.018376363441348076, -0.027718614786863327, 0.02302647940814495, -0.027256404981017113, 0.01763402484357357, -0.012269584462046623, -0.01670960523188114, 0.0029518434312194586, 0.003708187723532319, -0.009860487654805183, 0.003028878476470709, -0.010882953181862831, 0.0074724010191857815, 0.018712516874074936, 0.013838298618793488, 0.005196365062147379, -0.004191407468169928, -0.008760987780988216, 0.024511154741048813, -0.0020729433745145798, -0.0031164183747023344, -0.023152537643909454, -0.004923240747302771, 0.01579919084906578, -0.004555573221296072, -0.025505607947707176, 0.03078601136803627, -0.013201008550822735, -0.022284142673015594, 0.003592635039240122, -0.01173033844679594, 0.01763402484357357, -0.03734099492430687, -0.001104752765968442, 0.03580029308795929, -0.0008543888689018786, -0.02865704335272312, -0.015140891075134277, -0.17939364910125732, 0.01955289952456951, -0.0028012748807668686, -0.012052485719323158, 0.01223456859588623, 0.030898062512278557, 0.018810560926795006, -0.007920605130493641, -0.007605461403727531, 0.003247728105634451, -0.011884409002959728, -0.0010907463729381561, -0.01888059265911579, -0.009769446216523647, 0.005290907807648182, -0.0025509109254926443, -0.0068316091783344746, 0.014692687429487705, 0.08045261353254318, 0.0037256956566125154, -0.0004387934459373355, -0.015617107972502708, 0.0012343117268756032, -0.009076130576431751, 0.02731243148446083, -0.005714600905776024, -0.011835386976599693, 0.02650006115436554, 0.008221741765737534, -0.021513791754841805, -0.0035383603535592556, -0.00937026459723711, 0.02206004038453102, -0.002023921115323901, 0.031150177121162415, -0.0037957276217639446, 0.0136842280626297, 0.005662077106535435, -0.020029116421937943, 0.03165440633893013, 0.014398553408682346, 0.011261125095188618, 0.032774917781353, -0.0027259907219558954, 0.019791007041931152, 0.03997419402003288, 0.005374946165829897, -0.012612740509212017, 0.0005983348237350583, 0.008641933090984821, 0.03232671320438385, -0.030225755646824837, -0.004261439666152, -0.00773151870816946, 0.026219934225082397, 0.012493685819208622, -0.004359484184533358, 0.031150177121162415, 0.0052628954872488976, -0.018894599750638008, -0.005858166143298149, -0.004264940973371267, 0.010938978753983974, -0.010000551119446754, -0.007076720707118511, -0.03098210133612156, 0.004678129218518734, 0.02365676686167717, 0.00038473759195767343, -0.0017350396374240518, 0.009132156148552895, 0.0031864503398537636, 0.011541252955794334, 0.041458867490291595, 0.004597592633217573, 0.0012176792370155454, -0.020295236259698868, 0.009027108550071716, 0.0382654145359993, 0.0006714306073263288, 0.0028467955999076366, 0.015014833770692348, -0.01411842554807663, 0.0015765925636515021, -0.028390921652317047, 0.013383091427385807, 0.016639573499560356, 0.0037852227687835693, -0.02033725567162037, 0.005206869915127754, 0.022102059796452522, -0.02124767005443573, 0.0024826298467814922, -0.011499233543872833, 0.003421057015657425, 0.011772357858717442, 0.028222844004631042, -0.01059582270681858, 0.003981311805546284, -0.01385230477899313, 0.005007279105484486, 0.035436127334833145, -0.04823795333504677, -0.0017980682896450162, 0.04753763601183891, 0.02051933854818344, -0.012843845412135124, -0.005301412660628557, 0.015827203169465065, -0.0028030257672071457, -0.0394979752600193, 0.0014802986988797784, 0.031486328691244125, 0.005494000390172005, -0.020589370280504227, 0.03762112185359001, 0.00654097693040967, -0.020869499072432518, 0.03213062509894371, -0.029945628717541695, 0.039778102189302444, -0.02120565064251423, -0.023880869150161743, 0.015350986272096634, -0.008137703873217106, -0.01189841516315937, -0.105215884745121, -0.036304522305727005, 0.035576190799474716, 0.007241295650601387, -0.015224928967654705, 0.006236338522285223, -0.0057356106117367744, 0.049890708178281784, -0.019244758412241936, 0.023838849738240242, -0.020491326227784157, -0.010777905583381653, 0.006817603018134832, 0.003988315351307392, -0.0027032303623855114, -0.013621198944747448, 0.0007979256333783269, -0.015925247222185135, -0.0067090536467731, 0.025127436965703964, -0.0058301533572375774, -0.001955640036612749, 0.012486683204770088, -0.0013262286083772779, -0.01100901048630476, -0.03341921046376228, -0.02057536505162716, 0.020309243351221085, 0.008901051245629787, -0.0017236594576388597, 0.03266286477446556, -0.018124248832464218, 0.012150529772043228, -0.01505685318261385, -0.0208554919809103, -0.01869850978255272, -0.009230201132595539, -0.026331983506679535, 0.025365544483065605, -0.04585687071084976, -0.0025911792181432247, 0.0007887339452281594, -0.0009935771813616157, -0.011058032512664795, -0.023376639932394028, -0.0007125742849893868, -0.003834245027974248, 0.018768541514873505, 0.0202812310308218, -0.0038972736801952124, -0.02000110223889351, -0.019524885341525078, -0.009979542344808578, -0.01690569333732128, 0.01883857324719429, 0.00804666243493557, 0.02283039130270481, 0.001880355761386454, -0.030001655220985413, -0.004755164030939341, -0.012507692910730839, -0.015350986272096634, -0.010770902037620544, 0.012290594168007374, 0.014230476692318916, -0.009447299875319004, -0.001770930946804583, -0.01595326140522957, -0.014006374403834343, -0.0046186018735170364, 0.002992111723870039, 0.0027872684877365828, -0.02582775428891182, 0.01633143238723278, -0.018586458638310432, -0.02274635247886181, -0.01416044495999813, -0.01142219826579094, 0.01980501413345337, 0.019300784915685654, -0.024707244709134102, 0.001447033602744341, 0.011674312874674797, -0.022774364799261093, 0.0208554919809103, -0.004552071914076805, 0.0018523430917412043, -0.012206555344164371, 0.03378337621688843, -0.04291553050279617, 0.01103002019226551, 0.032158635556697845, 0.011247118934988976, -0.010966991074383259, -0.012990912422537804, 0.01385230477899313, -0.0077805412001907825, -0.004331471398472786, 0.027718614786863327, 0.006082267966121435, -0.013432113453745842, -0.0009611874702386558, -0.0503108985722065, 0.016653578728437424, 0.002188496058806777, -0.014335524290800095, 0.0020344259683042765, -0.034371644258499146, -0.0012579475296661258, -0.0049267420545220375, -0.003217964665964246, 0.0043629854917526245, -0.014566629193723202, 0.011233112774789333, -0.010714876465499401, -0.023684779182076454, -0.03030979447066784, -0.01990305818617344, 0.011401188559830189, -0.02014116756618023, 0.012395641766488552, -0.002190246945247054, -0.015519062988460064, -0.013733250088989735, 0.018992643803358078, 0.018418382853269577, -0.02095353603363037, 0.010028564371168613, -0.021863950416445732, 0.02952543832361698, -0.003813235554844141, -0.03378337621688843, 0.019188733771443367, -0.004492544569075108, -0.0023548216558992863, 0.0073113273829221725, 4.0870163502404466e-05, -0.02837691456079483, -0.0027242398355156183, 0.004310461692512035, 0.0038237401749938726, 0.016989732161164284, -0.016513515263795853, -0.021947989240288734, 0.02033725567162037, -0.027928711846470833, -0.008964079432189465, -0.015140891075134277, -0.008249755017459393, -0.013544164597988129, 0.01356517430394888, 0.008382814936339855, 0.029665501788258553, 0.010245663113892078, -0.02972152642905712, -0.03650061413645744, 0.007682496681809425, -0.018894599750638008, -0.008690955117344856, 0.004856710322201252, -0.00862092338502407, 0.015000827610492706, 0.049414489418268204, 0.010084589943289757, 0.005287406500428915, -0.02047731913626194, 0.017956173047423363, -0.01767604425549507, -0.04910634830594063, 0.013264036737382412, -0.001734164310619235, -0.0384334921836853, 0.00850186962634325, -0.022270135581493378, 0.033027030527591705, -0.0022375183179974556, 0.017017744481563568, -0.013299052603542805, 0.0005917693488299847, -0.02095353603363037, -0.01623338833451271, 0.04067451134324074, 0.01189841516315937, -0.021793918684124947, -0.03739701956510544, 0.007661486975848675, 0.022298147901892662, 0.005360940005630255, -0.010448755696415901, 0.011338160373270512, 0.02197600156068802, 0.004373490344733, -0.005609552841633558, 0.0013376087881624699, 0.004804186522960663, 0.02924530953168869, 0.007290318142622709, 0.02491733990609646, -0.018754536285996437, 0.01021764986217022, 0.00859991367906332, 0.03983413055539131, 0.01142219826579094, 0.003603139892220497, 0.012773813679814339, -0.008347799070179462, -0.0170037392526865, 0.005739111918956041, -0.023572728037834167, -0.004856710322201252, 0.04089861363172531, 0.029469411820173264, 0.001458413782529533, -0.007318330928683281, 0.007703505922108889, 0.013502145186066628, -0.013376087881624699, 0.002258528023958206, -0.017620019614696503, -0.015098871663212776, -0.02283039130270481, 0.017115790396928787, 0.007682496681809425, 0.04669725149869919, 0.024413110688328743, -0.01854443922638893, 0.0492464117705822, 0.015350986272096634, 0.022942442446947098, -0.021765906363725662, -0.0039007754530757666, -0.006316875107586384, 0.0023968408349901438, 0.008810009807348251, -0.013144982978701591, -0.020827479660511017, 0.00378872430883348, -0.013985364697873592, -0.023964906111359596, 0.010343708097934723, 0.006001731380820274, 0.0841502994298935, 0.03140229359269142, -0.026906246319413185, 0.0015573337441310287, -0.015743164345622063, -0.0020571863278746605, 0.018628478050231934, 0.006061258725821972, 0.007013692054897547, -0.037789199501276016, 0.02610788308084011, -0.022662313655018806, -0.021597830578684807, -0.019062675535678864, -0.027354449033737183, -0.0036066414322704077, 0.004310461692512035, 0.018894599750638008, -0.006029744166880846, -0.005255891941487789, 0.01231160294264555, 0.009615376591682434, 0.01119809690862894, 0.003991816658526659, -0.04288752004504204, -0.0036451590713113546, 0.028152812272310257, 0.023922888562083244, 0.0037467051297426224, -0.034567732363939285, 0.03431561961770058, -0.010175631381571293, -0.021667862311005592, -0.011604281142354012, 0.003233721712604165, -0.002195499138906598, 0.0024773774202913046, -0.02669614925980568, 0.011688319966197014, 0.004002321511507034, 0.010812921449542046, 0.010833931155502796, -0.017802102491259575, -0.02505740337073803, 0.015617107972502708, -0.0010207145242020488, -0.01250068936496973, -0.011555259115993977, -0.011520243249833584], "6bb4664b-7a78-436b-b496-e99cfd7d3f74": [-0.019119704142212868, -0.017551613971590996, 0.003707021940499544, -0.04517202079296112, -0.010852839797735214, 0.01480057742446661, -0.006048841867595911, -0.03939484432339668, -0.020068813115358353, -0.055846042931079865, 0.0011829457944259048, 0.018101820722222328, 0.005151316057890654, -0.009601118043065071, 0.004504822660237551, 0.006437425967305899, 0.02107294090092182, 0.00015990401152521372, 0.017001407220959663, -0.0029298539739102125, -0.02667129971086979, -0.011354903690516949, -0.012592870742082596, -0.008198088966310024, -0.026382440701127052, 0.01301240362226963, 0.02463553287088871, -0.007847332395613194, -0.016506219282746315, 0.026121092960238457, 0.011561231687664986, -0.01969742216169834, -0.007668514735996723, -0.008328763768076897, -0.008486947976052761, 0.015103191137313843, 0.0076891472563147545, -0.00854884646832943, 0.00020407103875186294, 0.0009491076343692839, 0.01513070147484541, 0.00658185500651598, -0.012579115107655525, -0.012675401754677296, -0.019050929695367813, 0.02515823021531105, 0.0017795768799260259, -0.017001407220959663, -0.015653397887945175, 0.007001388352364302, -0.011994520202279091, 0.01471804641187191, -0.030041320249438286, 0.0032737336587160826, -0.006385843735188246, -0.00718708336353302, 0.006681580096483231, 0.008019272238016129, 0.019229745492339134, 0.010508960112929344, 0.0067400396801531315, 0.003191202413290739, -0.010735920630395412, 0.00748969754204154, -0.02414034679532051, -0.018239373341202736, 0.0012259307550266385, 0.004563282243907452, 0.020330160856246948, -0.0008244512719102204, 0.021141717210412025, 0.023342546075582504, -0.00845255982130766, 0.002912660129368305, 0.003261697944253683, -0.02396152913570404, -0.012304011732339859, -0.0087276641279459, -0.003885839367285371, -0.0009370718616992235, 0.009807446040213108, -0.01760663464665413, -0.0015904430765658617, -0.012895484454929829, 0.03320501372218132, 0.039972562342882156, -0.01797802373766899, -0.004078411962836981, 0.005653380416333675, -0.018335659056901932, 0.00649932399392128, 0.012090805917978287, 0.03537833318114281, 0.02686387300491333, 0.004518577829003334, 0.0133562833070755, 0.009119686670601368, -0.010048161260783672, -0.006217342801392078, -0.029133478179574013, -0.021774455904960632, 0.002493127016350627, -0.022888625040650368, -0.011059167794883251, -0.02566717192530632, -0.003576347604393959, 0.018954642117023468, -0.002431228756904602, 0.005876902025192976, 0.030398955568671227, 0.002995191141963005, 0.020935388281941414, -0.015529601834714413, -0.03339758515357971, -0.00625173095613718, -0.00846631545573473, 0.016877610236406326, -0.027537876740098, -0.008094925433397293, -0.003402688540518284, 0.015818459913134575, -0.002919537713751197, 0.03367269039154053, -0.01640993356704712, 0.02517198584973812, -0.010240733623504639, 0.009044033475220203, -0.02158188261091709, 0.03595604747533798, 0.0015560551546514034, 0.027675429359078407, 0.0236038938164711, 0.006021331530064344, -0.004191892221570015, -0.04401658475399017, 0.0067331623286008835, -0.004491067491471767, -0.005639625247567892, 0.0012104561319574714, -0.01572217419743538, 0.017579123377799988, 0.02275107242166996, 0.008493825793266296, -0.03389277309179306, -0.0022249009925872087, 0.048170652240514755, -0.009855588898062706, 0.03955990821123123, 0.009374157525599003, -0.011760681867599487, 0.01759287901222706, -0.013885857537388802, -0.009133441373705864, 0.012964259833097458, 0.004116238560527563, -0.009876221418380737, 0.005433297250419855, 0.02462177723646164, -0.02634117566049099, -0.0009912329260259867, 0.014319146052002907, 0.01968366652727127, 0.0005330133717507124, 0.0010918176267296076, -0.0031189878936856985, 0.03579098731279373, 0.02154061757028103, -0.021788209676742554, -0.02774420566856861, -0.019587380811572075, 0.00923660583794117, 0.04060530290007591, -0.030536506325006485, 0.024195367470383644, 0.025447089225053787, 0.0034491121768951416, 0.021127961575984955, 0.01188447792083025, -0.010832207277417183, -0.003655439941212535, 0.03130679577589035, -0.013741428032517433, 0.010570858605206013, 0.010570858605206013, -0.011437434703111649, -0.01947733946144581, 0.014855598099529743, 0.01588723622262478, -0.007599738892167807, -0.008617622777819633, 0.025584641844034195, 0.0033459484111517668, -0.025048188865184784, -0.021348044276237488, -0.6250355243682861, 0.008982134982943535, 0.027249017730355263, -0.01845945604145527, -0.011829457245767117, 0.0004530613368842751, 0.009752425365149975, -0.01128612831234932, 0.005993821192532778, 0.03078410029411316, 0.01155435387045145, 0.005811565089970827, -0.010185712948441505, -0.017180224880576134, -0.024057814851403236, -0.02667129971086979, 0.0135213453322649, -0.011788192205131054, -0.019766198471188545, 0.005598359741270542, -0.03444297984242439, 0.013033036142587662, 0.003151656361296773, -0.009112808853387833, 0.005316378548741341, 0.007744168397039175, 0.018583253026008606, 0.009834956377744675, -0.005068785045295954, 0.024539247155189514, -0.040440239012241364, -0.0019755882676690817, 0.03914725035429001, -0.01625862717628479, 0.036863889545202255, -0.011327393352985382, -0.013823959045112133, 0.030894141644239426, 0.01480057742446661, 0.029683684930205345, -0.032434720546007156, 0.0021509667858481407, 0.010226978920400143, 0.019105950370430946, 0.004693956114351749, 0.0009817761601880193, -0.009986262768507004, 0.006430548150092363, -0.027331549674272537, 0.0071251848712563515, -0.009869343601167202, -0.014993149787187576, -0.002568780444562435, -0.015790950506925583, 0.006832887418568134, 0.005632747430354357, 0.01588723622262478, -0.014608005061745644, 0.012792320922017097, -0.0010746236657723784, 0.027414079755544662, -0.007345268037170172, -0.006096985191106796, -0.05631371960043907, -0.042173393070697784, 0.006557783577591181, -0.01317746564745903, -0.013830836862325668, 0.01128612831234932, -0.0059388005174696445, 0.0016213922062888741, -0.00649932399392128, 0.009628628380596638, -0.01053647045046091, 0.005952555686235428, 0.02515823021531105, 0.044924430549144745, -0.0005643923650495708, 0.0029900330118834972, 0.025419577956199646, -0.003930543549358845, -0.006420231889933348, -0.009621750563383102, -0.027083955705165863, 0.03983500972390175, 0.007922985590994358, 0.0018827407620847225, -0.012579115107655525, 0.0032995245419442654, -0.004346637986600399, 0.01609356515109539, 0.012984893284738064, -0.010041283443570137, -0.04451177269220352, 0.036341194063425064, 0.03931231424212456, 0.016726301982998848, -0.012345276772975922, 0.006850081495940685, -0.02050897851586342, -0.02701517939567566, -0.020495222881436348, 0.009429178200662136, -0.002902343636378646, 0.019628645852208138, 0.010068793781101704, -0.021430576220154762, -0.0006705651758238673, 0.0008837705245241523, -0.01299864798784256, -0.015598378144204617, -0.012599747627973557, -0.02016509883105755, 0.002730403793975711, 0.01342505868524313, -0.026313666254281998, 0.007620371412485838, -0.004160942975431681, -0.000947388238273561, -0.014305390417575836, -0.01623111590743065, 0.0030467731412500143, -0.0047111501917243, -0.0023968406021595, -0.005873463116586208, 0.012551604770123959, 0.017015160992741585, 0.01008942723274231, 0.0011562950676307082, 0.007978006266057491, -0.009167829528450966, -0.0003230318834539503, 0.017056427896022797, -0.022283397614955902, 0.018005535006523132, 0.0042365966364741325, 0.01283358596265316, 0.005484879482537508, 0.013975266367197037, -0.06052280589938164, 0.0007509470451623201, -0.006079791113734245, 0.02858327142894268, -0.014140328392386436, -0.010660267435014248, -0.020784081891179085, -0.030508996918797493, 0.011382414028048515, -0.007011704612523317, -0.02466304413974285, -0.009002767503261566, -0.015199477784335613, -0.009601118043065071, 0.016533730551600456, -0.00761349406093359, 0.00015281149535439909, -0.002377927303314209, -0.022696051746606827, -0.01027512177824974, -0.03405783325433731, -0.01675381325185299, 0.0035058523062616587, 0.0007775977137498558, 0.003344228956848383, -0.012269623577594757, -0.014401677064597607, -0.029216010123491287, 0.01777169667184353, -0.009986262768507004, -0.01642368920147419, 0.0029814359731972218, -0.008486947976052761, 0.016162339597940445, 0.029463602229952812, -0.02535080350935459, -0.0029075017664581537, -0.022310907021164894, 0.0074759419076144695, -0.017867982387542725, 0.0025567447301000357, 0.008438805118203163, 0.02976621687412262, -0.0132737522944808, -0.013225608505308628, 0.03639621660113335, 0.018885865807533264, 0.022338418290019035, 0.011574986390769482, -0.019587380811572075, -0.005539900157600641, 0.00714581785723567, 0.032902397215366364, -0.020976655185222626, 0.010041283443570137, -0.007558473385870457, -0.011506211012601852, -0.010137570090591908, -0.023493852466344833, -0.012744177132844925, 0.03342509642243385, 0.018913377076387405, 0.006729723419994116, -0.011004146188497543, -0.0011141698341816664, 0.015942256897687912, -0.014222859404981136, 0.019917504861950874, -0.016506219282746315, 0.010804696939885616, -0.008748296648263931, -0.008803317323327065, -0.0016712547512724996, -0.0063720885664224625, -0.01624487154185772, -0.009676771238446236, 0.01675381325185299, -0.008349396288394928, 0.01657499559223652, -0.03149937093257904, 0.010508960112929344, 0.014154084026813507, 0.022888625040650368, 0.023713935166597366, 0.0023469780571758747, -0.004986254032701254, 0.0029040630906820297, -0.0038033081218600273, 0.008328763768076897, 0.02209082432091236, -0.025364557281136513, -0.0009998298482969403, 0.031004182994365692, -0.007248981390148401, -0.0061588832177221775, 0.03493816405534744, 0.0177854523062706, 0.03471808135509491, -0.020247628912329674, 0.028280656784772873, -0.02189825102686882, 0.005113489460200071, 0.0032771723344922066, 0.024236632511019707, -0.021251758560538292, 0.025116965174674988, 0.014663025736808777, 0.03381023928523064, -0.004044023808091879, -0.034635551273822784, 0.033645179122686386, -0.0188446007668972, 0.022888625040650368, -0.01623111590743065, 0.0029625226743519306, 0.030316423624753952, -0.013693285174667835, 0.005804687272757292, 0.01724899932742119, 0.015116946771740913, 0.008562601171433926, -0.014841842465102673, 0.010976635850965977, 0.01471804641187191, -0.008480070158839226, 0.023218749091029167, -0.013975266367197037, -0.0050619072280824184, -0.014841842465102673, -0.011870723217725754, 0.004308811388909817, -0.0004754135152325034, -0.03133430704474449, -0.006898224353790283, -0.012730422429740429, -0.00406121788546443, 0.014993149787187576, -0.010419551283121109, 0.008782684803009033, 0.005508950911462307, 0.028693312779068947, -0.005017203278839588, -0.0327923558652401, 0.008094925433397293, 0.009312259033322334, -0.011403046548366547, -0.0048418245278298855, -0.026987669989466667, -0.001043674536049366, 0.012269623577594757, 0.013136199675500393, 0.00021492474479600787, 0.0016772726085036993, 0.0037929918617010117, 0.021664414554834366, -0.0277029387652874, 0.004766170866787434, 0.034635551273822784, -0.016368668526411057, -0.005120366811752319, 0.009690526872873306, 0.022283397614955902, 0.016368668526411057, -0.006557783577591181, -0.01334252767264843, 0.03955990821123123, -0.01539205014705658, 0.00483150826767087, -0.009085298515856266, 0.012971137650310993, -0.02973870560526848, -0.0019979404751211405, -0.0028284096624702215, -0.010653389617800713, -0.01488310843706131, -0.007668514735996723, 0.004532332997769117, 0.010914738290011883, -0.00739341089501977, 0.02330128103494644, 0.005519267171621323, -0.019257256761193275, -0.01953236013650894, 0.017056427896022797, 0.00743467640131712, 0.05248977988958359, 0.013885857537388802, -0.009711159393191338, 0.01316371001303196, -0.019449830055236816, -0.005134121980518103, -0.0232737697660923, -0.021485596895217896, 0.027537876740098, 0.007248981390148401, -0.01411281805485487, -0.008143068291246891, 0.011705661192536354, 0.0094223003834486, 0.012537849135696888, 0.008356274105608463, -0.009312259033322334, -0.0016755532706156373, -0.017056427896022797, 0.018555741757154465, -0.007847332395613194, 0.0033700198400765657, 0.03202206641435623, 0.0010471133282408118, 0.045749738812446594, 0.03485563397407532, 0.026822607964277267, 0.007922985590994358, 0.0023968406021595, -0.02518574148416519, -0.022627277299761772, 0.01657499559223652, -0.0044050975702703, 0.01950485073029995, -0.005123805720359087, 0.025048188865184784, 0.01455298438668251, -0.013707039877772331, -0.018211862072348595, 0.0034491121768951416, -0.014154084026813507, 0.016987651586532593, -0.003617613110691309, -0.0030037881806492805, 0.021595638245344162, -0.03716650605201721, 0.0067331623286008835, 0.029848746955394745, -0.031196756288409233, -0.006024770438671112, 0.011526843532919884, 0.01592850312590599, -0.0006950665847398341, 0.020288895815610886, 0.0017305739456787705, -0.007847332395613194, -0.0034112853463739157, -0.026781341060996056, -0.01678132452070713, -0.03320501372218132, -0.019381053745746613, -0.01265476830303669, -0.0009370718616992235, -0.012290256097912788, -0.020453957840800285, -0.004965621046721935, 3.0277522455435246e-05, 0.002300554420799017, -0.025213250890374184, -0.006881030276417732, 0.0024037181865423918, -0.03331505507230759, -0.03480061516165733, 0.00907154381275177, 0.039092231541872025, 0.029160989448428154, 0.008294375613331795, 0.00432600500062108, 0.00039116301923058927, -0.009099054150283337, -0.0138514693826437, -0.02243470400571823, 0.02001379244029522, -0.011698783375322819, -0.008982134982943535, -0.031554389744997025, -0.024855615571141243, -0.01044018380343914, -0.013837714679539204, 0.02121049351990223, 0.015543357469141483, -0.030729079619050026, -0.018060555681586266, 0.007936741225421429, 0.0038961556274443865, 0.026767587289214134, 0.0181155763566494, -0.0023916824720799923, 0.02104542963206768, -0.019463583827018738, 0.008060537278652191, -0.027138976380228996, -0.02551586553454399, -0.03235219046473503, -0.002064996864646673, 0.010907860472798347, 0.0007487977854907513, -0.012812953442335129, 0.0012783723650500178, -0.02239343896508217, 0.0031860442832112312, -0.020398937165737152, 0.005230408627539873, -0.003189483191817999, 0.008486947976052761, -0.012056417763233185, -0.0017434695037081838, 0.019986281171441078, -0.008273743093013763, -0.011850090697407722, 0.0220495592802763, -0.036533765494823456, 0.03474559262394905, 0.013005525805056095, -0.010612123645842075, 0.02927103079855442, 0.024002794176340103, -0.04379650205373764, -0.03513073921203613, 0.0016944666858762503, 0.009092176333069801, 0.011657517403364182, -0.014497962780296803, -0.023026177659630775, -0.019105950370430946, -0.004522016737610102, -0.012352154590189457, -0.0038205021992325783, -0.013989021070301533, 0.004776487592607737, -0.020577754825353622, 0.012854218482971191, 0.004415413830429316, -0.018720803782343864, -0.012537849135696888, -0.027620408684015274, -0.02907845750451088, -0.011574986390769482, 0.016561239957809448, 0.02292989008128643, -0.01832190342247486, -0.015543357469141483, -0.03488314524292946, -0.031059203669428825, -0.010075671598315239, 0.010261367075145245, 0.013913367874920368, -0.004191892221570015, 0.054140400141477585, 0.029463602229952812, 0.038404472172260284, 0.006932612508535385, 0.020577754825353622, 0.01513070147484541, -0.013129322789609432, -0.012338399887084961, -0.007544718217104673, -0.02071530558168888, -0.00940166786313057, -0.0033923720475286245, -0.0037929918617010117, -0.0067331623286008835, -0.011519965715706348, 0.009614872746169567, 0.0050309584476053715, 0.004810875281691551, 0.013074302114546299, -0.013266874477267265, -0.0265475045889616, -0.03598355874419212, -0.013287506997585297, 0.022475969046354294, 0.0007913528825156391, -0.0018707049312070012, -0.019436074420809746, 0.0003533362760208547, 0.041485633701086044, -0.011093555018305779, 0.017840472981333733, 0.004515138920396566, 0.02444296143949032, 0.018528232350945473, 0.00359354168176651, 0.012764809653162956, 3.379691406735219e-05, -0.02636868692934513, -0.002015134319663048, -0.043713971972465515, -0.012214602902531624, -0.0015139299212023616, 0.028170615434646606, 0.021114205941557884, -0.007111429702490568, 0.006764111574739218, -0.00743467640131712, 0.022324662655591965, -0.018184352666139603, -0.012792320922017097, 0.006048841867595911, -0.05218716710805893, -0.0024982851464301348, -0.0277029387652874, -0.011396169662475586, 0.02515823021531105, -0.011141698807477951, 0.0011537160025909543, 0.012262745760381222, 0.024016549810767174, -0.02601105161011219, -0.008535090833902359, 0.023892752826213837, -0.001487279194407165, 0.032599784433841705, 0.006612804252654314, 0.023397566750645638, 0.02020636387169361, 0.018019290640950203, -0.0091403191909194, -0.01742781698703766, 4.191032348899171e-05, -0.01471804641187191, 0.010323264636099339, 0.041127998381853104, -0.0236038938164711, -0.020096322521567345, -0.004958743695169687, -0.010295754298567772, 0.017056427896022797, -0.038789618760347366, 0.025240762159228325, 0.003920227289199829, -0.008328763768076897, -0.031086714938282967, -0.010020650923252106, -0.022654786705970764, 0.010852839797735214, -0.007599738892167807, -0.0007440694607794285, -0.010247611440718174, -0.0019755882676690817, 0.019724933430552483, 0.026918893679976463, -0.015295763500034809, 0.0172902662307024, -0.012132071889936924, 0.011519965715706348, -0.010557102970778942, -0.004453240428119898, -0.01935354247689247, -0.021334288641810417, 0.006650631316006184, 0.03510322794318199, -0.01588723622262478, -0.007255859207361937, 0.007627249229699373, 0.0094223003834486, -0.00976618006825447, -0.0020529611501842737, -0.0026134848594665527, 0.033947791904211044, -0.014236615039408207, -0.016519974917173386, 0.001274933572858572, 0.004587353672832251, 0.01690511964261532, -0.019381053745746613, -0.010832207277417183, -0.004920916631817818, 0.000357634766260162, 0.020481467247009277, 0.00594911677762866, -0.015419560484588146, 0.001119328080676496, -0.0193397868424654, -0.004044023808091879, -0.01832190342247486, 0.005471124313771725, 0.010694654658436775, 0.02960115484893322, -0.031389329582452774, -0.01009630411863327, 0.003617613110691309, -0.022998666390776634, -0.005529583897441626, -0.006592171732336283, 0.005801248364150524, -0.0003125005750916898, 0.02429165318608284, -0.014511718414723873, 0.010447061620652676, 0.026561258360743523, 0.026451217010617256, -0.03812936693429947, 0.014050919562578201, -0.014429187402129173, -0.004150626715272665, 0.015185722149908543, -0.01591474749147892, -0.024030305445194244, -0.026396196335554123, 0.027496611699461937, 0.003964931704103947, 0.0029281347524374723, -0.014855598099529743, 0.02019260823726654, 0.014332900755107403, 0.0008025289862416685, -0.006059158127754927, -0.006021331530064344, 0.010777185671031475, -0.012537849135696888, 0.020082566887140274, 0.002034047618508339, -0.004965621046721935, 0.0008747436804696918, -0.020907878875732422, 0.008672643452882767, -0.01171253900974989, -0.032929908484220505, -0.008968379348516464, -0.024924391880631447, -0.008149946108460426, -0.001777857425622642, 0.027496611699461937, 0.0009181585046462715, -0.013225608505308628, -0.0327923558652401, 0.03537833318114281, -0.021513106301426888, -0.005464246496558189, 0.019422318786382675, 0.0054229809902608395, 0.004491067491471767, 0.017744187265634537, -0.000772439525462687, -0.03130679577589035, -0.019078439101576805, -0.026286154985427856, -0.045612186193466187, -0.008500703610479832, 0.0023641721345484257, 0.03870708495378494, 0.007462186738848686, -0.025790968909859657, -0.0236038938164711, -0.01815684139728546, -0.020976655185222626, -0.014332900755107403, -0.011382414028048515, 0.02825314737856388, 0.035653434693813324, 0.03196704760193825, 0.008707030676305294, 0.008418172597885132, 0.00692573469132185, 0.027331549674272537, -0.04189828783273697, 0.006038525607436895, -0.027675429359078407, -0.007627249229699373, 0.02017885446548462, -0.02514447458088398, -0.06398911029100418, 0.007771678734570742, 0.003848012536764145, 0.001023041782900691, 0.014429187402129173, 0.005691207014024258, 0.010543348267674446, 0.011079800315201283, -0.004264106974005699, 0.010199468582868576, 0.018101820722222328, 0.02292989008128643, 0.0009327733423560858, -0.019807463511824608, 0.008411294780671597, 0.011946376413106918, 0.0020065372809767723, -0.011423680000007153, 0.0029659613501280546, 0.012035785242915154, -0.009539219550788403, 0.020055057480931282, -0.0006112459814175963, -0.005068785045295954, -0.01094224862754345, -0.0027561949100345373, 0.004147187806665897, 0.022971156984567642, 0.01796426996588707, 0.03026140294969082, -0.021870741620659828, 0.0019962210208177567, -0.003617613110691309, 0.006482129916548729, -0.0067159682512283325, -0.013913367874920368, 0.02789551205933094, -0.027854247018694878, -0.011444312520325184, -0.019050929695367813, 0.013989021070301533, -0.017565369606018066, -0.004129993729293346, -0.016712548211216927, -0.02414034679532051, -0.022696051746606827, 0.003113829530775547, 0.001470085233449936, -0.00071569939609617, 0.01850072108209133, 0.00556397158652544, 0.013899613171815872, 0.004886528942734003, -0.019766198471188545, 0.015667153522372246, -0.026602525264024734, -0.004264106974005699, -0.009264116175472736, 0.009126564487814903, -0.01514445710927248, 0.0052269697189331055, 0.03562592342495918, -0.008266865275800228, -0.002064996864646673, 0.1963139772415161, -0.0046286191791296005, 0.027537876740098, 0.03422289714217186, 0.023548873141407967, -0.016987651586532593, 0.01470429077744484, -0.004198769573122263, -0.0022661664988845587, 0.01207705121487379, -0.00871390849351883, -0.000560523709282279, -0.008507580496370792, -0.007482819724828005, 0.020481467247009277, -0.007751045748591423, -0.028528250753879547, -0.02414034679532051, -0.020591508597135544, -0.0017340128542855382, -0.013617631047964096, -0.0010694655356928706, -0.017221489921212196, -0.0025051627308130264, 0.012448441237211227, 0.006867275107651949, -0.0172902662307024, -0.005330133717507124, 0.018005535006523132, 0.01242093089967966, -0.007799189072102308, 0.021086696535348892, 0.015433316119015217, -0.011354903690516949, -0.011031657457351685, 0.0028834303375333548, 0.02667129971086979, -0.029216010123491287, 0.004924355540424585, 0.016877610236406326, -0.007709780242294073, 0.002802618546411395, -0.009257238358259201, -0.020110078155994415, 0.0022971155121922493, -0.01639617793262005, -0.021953271701931953, 0.012455318123102188, -0.008046782575547695, 0.03436044976115227, -0.007922985590994358, 0.004862457513809204, 0.005113489460200071, 0.020467713475227356, -0.006272363476455212, -0.0010144447442144156, 0.0016256907256320119, -0.007792311254888773, -0.01059836894273758, -0.011492455378174782, -0.024167856201529503, 0.012276501394808292, -0.005326694808900356, 0.018514476716518402, -0.027125220745801926, -0.00629299646243453, -0.026423707604408264, 0.04214588180184364, -0.003069125348702073, 0.003406127216294408, 0.0029522061813622713, -0.008693275973200798, -0.027799226343631744, -0.020591508597135544, -0.023026177659630775, -0.017042672261595726, 0.015845971181988716, 0.009270993992686272, 0.02482810616493225, 0.01486935280263424, 0.00344223459251225, 0.0013995899353176355, -0.004707711283117533, -0.011464945040643215, 0.004418852739036083, -0.014814332127571106, 0.03400281444191933, -0.018610762432217598, -0.01513070147484541, -0.027166487649083138, -0.005474562756717205, 0.005292306654155254, -0.01242093089967966, -0.0012878290144726634, 0.0017847350100055337, -0.012352154590189457, 0.014346656389534473, 0.02415410242974758, -0.012943627312779427, -0.015983523800969124, -0.028363188728690147, 0.04979376494884491, 0.016808833926916122, 0.027125220745801926, -0.017840472981333733, -0.0018638273468241096, 0.012764809653162956, 0.032269660383462906, 0.0006619681953452528, 0.0057840547524392605, -0.001488138921558857, -0.03513073921203613, 0.022008292376995087, 0.0028335677925497293, 0.01658875122666359, 0.005653380416333675, 0.013548855669796467, -0.010467694140970707, 0.01155435387045145, -0.019958771765232086, 0.022104579955339432, -0.01001377310603857, 0.013019281439483166, -0.004869334865361452, -0.039587415754795074, -0.031031694263219833, -0.012874851934611797, 0.01878958009183407, -0.02635493129491806, -0.019628645852208138, 0.011643762700259686, -0.026423707604408264, 0.023672670125961304, 0.0019790269434452057, -0.014154084026813507, -0.0040818508714437485, -0.0033493870869278908, -0.0049896929413080215, 8.161766891134903e-05, -0.011939499527215958, 0.006464936304837465, 0.020233875140547752, 0.002283360343426466, 0.009215972386300564, -0.016987651586532593, 0.007922985590994358, 0.0033098410349339247, 0.017070181667804718, 0.005333572160452604, -0.012778565287590027, 0.0061691999435424805, -0.000599210150539875, 0.0048005590215325356, -0.005295745562762022, 0.03262729570269585, -0.02324626035988331, -0.01727651059627533, -0.0019085316453129053, -0.00621046544983983, 0.015777194872498512, -0.028995925560593605, -0.0038755228742957115, 0.03947737440466881, -0.0018156841397285461, -0.023521363735198975, -0.011960132047533989, -0.17518600821495056, 0.007180205546319485, 0.015529601834714413, -0.013693285174667835, 0.03144434839487076, 0.03342509642243385, 0.020921634510159492, 0.0010651670163497329, -0.0047111501917243, 0.00018580243340693414, -0.0016394458943977952, -0.003830818459391594, -0.01623111590743065, 0.0020392059814184904, 0.012647891417145729, -0.007847332395613194, 0.006681580096483231, 0.021279267966747284, 0.06762047857046127, 0.00092933455016464, -0.003282330697402358, -0.025295782834291458, -0.012744177132844925, 0.00731087988242507, 0.02427789941430092, -0.01455298438668251, -0.017345286905765533, 0.021650658920407295, 0.019422318786382675, -0.025928519666194916, 0.016506219282746315, -0.00560523709282279, 0.023713935166597366, -0.011017901822924614, 0.021114205941557884, 0.00513756088912487, 0.00200997618958354, 0.004425730090588331, -0.011499333195388317, 0.007592861074954271, 0.024332920089364052, -0.000598350481595844, 0.02309495210647583, -0.00010617281805025414, 0.0004036286554764956, 0.0362311527132988, 0.0027596335858106613, -0.01711144857108593, 0.012427807785570621, -0.00692573469132185, 0.041843269020318985, -0.0010608684970065951, 0.0025412701070308685, -0.005828758701682091, 0.011478700675070286, 0.010199468582868576, -0.00410248339176178, 0.024332920089364052, -0.003339070826768875, -0.029160989448428154, 0.005223530810326338, -0.009642383083701134, 0.01777169667184353, -0.013775816187262535, -0.013074302114546299, -0.03837696090340614, -0.0027527560014277697, 0.018239373341202736, 0.004556404426693916, -0.002900624182075262, 0.02222837693989277, -0.0004466136160772294, 0.012991771101951599, 0.022022048011422157, 0.005976627115160227, 0.010103181935846806, -0.025928519666194916, 0.016630016267299652, 0.04470434412360191, 0.007400288712233305, 0.00871390849351883, 0.025419577956199646, -0.0005454790079966187, -0.002218023408204317, -0.011740049347281456, 0.003765481524169445, 0.011946376413106918, 0.0067572337575256824, -0.026712566614151, 0.0003735391946975142, 0.028940904885530472, -0.014773067086935043, 0.022283397614955902, -0.01555711217224598, 0.018266882747411728, 0.0046526906080543995, 0.03334256261587143, -0.006764111574739218, 0.009607995860278606, -0.00722834886983037, 0.0013179185334593058, 0.03708397597074509, -0.04118301719427109, 0.005474562756717205, 0.05180202051997185, 0.027331549674272537, 0.007359023205935955, 0.0022885187063366175, 0.04297119379043579, 0.007304002530872822, -0.007111429702490568, -0.0027751082088798285, 0.025901010259985924, 0.010914738290011883, -0.017001407220959663, 0.04874837026000023, 0.014470452442765236, -0.025378312915563583, 0.030866632238030434, -0.015405804850161076, 0.03504820540547371, -0.03460804000496864, -0.012304011732339859, 0.017744187265634537, -0.007200838532298803, -0.011114188469946384, -0.1111418828368187, -0.024759329855442047, 0.028775842860341072, 0.015254498459398746, -0.01025448925793171, 4.521479058894329e-05, 0.005883779842406511, 0.03642372414469719, -0.014649270102381706, 0.025254515931010246, -0.010323264636099339, 0.00534044997766614, 0.012338399887084961, 0.011836335062980652, -0.003789552953094244, -0.012297133915126324, -0.002649592235684395, -0.00845255982130766, -0.016011033207178116, 0.02275107242166996, 0.004869334865361452, -5.4322226787917316e-05, 0.02874833345413208, 0.0095048313960433, -0.004893406294286251, -0.02257225662469864, -0.032434720546007156, 0.004597669932991266, 0.0011201876914128661, 0.004587353672832251, 0.019436074420809746, -0.03370019793510437, 0.023026177659630775, -0.023755202069878578, -0.018583253026008606, -0.00414374889805913, -0.01968366652727127, -0.04759293422102928, 0.024387940764427185, -0.02174694463610649, -0.020316405221819878, -0.0024277898482978344, -0.006041964050382376, -0.004969059955328703, -0.007909229956567287, -0.0034130048006772995, -0.011850090697407722, 0.018514476716518402, 0.02243470400571823, -0.004174698144197464, -0.018885865807533264, -0.014484208077192307, -0.00189305713865906, -0.0318019837141037, 0.013370038010179996, 0.01094912551343441, 0.022847360000014305, 0.009367279708385468, -0.010316387750208378, 0.0021509667858481407, -0.010151325725018978, -0.0022902379278093576, -0.016464954242110252, 0.01163688488304615, 0.02141682058572769, -0.00374484877102077, -0.004828069359064102, -0.025914765894412994, 0.004755854606628418, 0.014236615039408207, -0.01573592983186245, 0.006874152924865484, -0.02960115484893322, 0.010825329460203648, -0.014332900755107403, -0.004666445776820183, -0.009718037210404873, -0.013431936502456665, 0.015116946771740913, 0.03166443109512329, -0.016519974917173386, 0.0028524810913950205, 0.003913349471986294, -0.0380193255841732, 0.025213250890374184, 0.0039099110290408134, -0.007331512868404388, -0.016341157257556915, 0.035653434693813324, -0.04055028036236763, -0.002959083765745163, 0.026409951969981194, 0.020646529272198677, -0.005309500731527805, -0.00397868687286973, 0.014910618774592876, -0.02242094837129116, -0.005704962182790041, 0.005048152059316635, -0.00010606535943225026, -0.022998666390776634, -0.006654069758951664, -0.05898222699761391, 0.009064665995538235, 0.007902353070676327, -0.009277870878577232, 0.011409924365580082, -0.029188498854637146, 0.004522016737610102, -0.00042619576561264694, -0.007283369544893503, 0.013005525805056095, -0.015859726816415787, 0.007592861074954271, -0.03303994983434677, -0.017661655321717262, -0.03474559262394905, -0.018349414691329002, 0.003105232724919915, -0.011905111372470856, 0.01480057742446661, 0.015515847131609917, -0.00991060957312584, -0.006949806585907936, 0.022682297974824905, 0.013101812452077866, -0.027249017730355263, 0.005433297250419855, -0.01709769293665886, 0.03320501372218132, -0.015653397887945175, -0.02940858155488968, 0.012372787110507488, -0.005508950911462307, 0.006182955112308264, -0.0014425748959183693, -0.00475241569802165, -0.03042646497488022, 0.003265136620029807, 0.007592861074954271, 0.015667153522372246, 0.026740076020359993, -0.02222837693989277, -0.018184352666139603, 0.02910596877336502, -0.02841820940375328, -0.007929863408207893, -0.021691923961043358, -0.013053668662905693, -0.031939536333084106, 0.002317748498171568, 0.0040543400682508945, 0.020921634510159492, 0.004889967851340771, -0.021994538605213165, -0.03793679550290108, 0.0012886887416243553, -0.009477321058511734, 0.004491067491471767, 0.009594240225851536, 0.003655439941212535, -0.0020237313583493233, 0.0431087426841259, 0.01726275496184826, 0.013204975984990597, -0.011162331327795982, 0.01138929184526205, -0.02683636173605919, -0.03609360009431839, -0.01240717526525259, -0.012462195940315723, -0.027469100430607796, 0.01215958222746849, -0.02855576016008854, 0.04093542695045471, 0.02020636387169361, 0.012537849135696888, -0.014250369742512703, 0.013844591565430164, -0.016011033207178116, -0.01513070147484541, 0.03419538587331772, 0.014910618774592876, -0.01181570254266262, -0.03474559262394905, 0.005859707947820425, 0.03493816405534744, 0.005364521406590939, -0.004642374347895384, 0.015612132847309113, 0.016657527536153793, 0.00786108709871769, 0.005281990393996239, -1.4225331142370123e-05, -0.002766511170193553, 0.009552975185215473, 0.011967009864747524, 0.02430540882050991, -0.023989040404558182, 0.008686398155987263, 0.012235235422849655, 0.03408534452319145, 0.005828758701682091, 0.003992442041635513, 0.004900284111499786, -0.022530989721417427, -0.02104542963206768, 0.007847332395613194, -0.01777169667184353, -0.0016695354133844376, 0.02755163237452507, 0.024773085489869118, 0.00414374889805913, -0.01812933199107647, 0.005708401091396809, 0.011313638649880886, -0.00028327081236056983, -0.009044033475220203, -0.008170578628778458, -0.013535100035369396, -0.02170567959547043, 0.0068879080936312675, 0.0074759419076144695, 0.03248974308371544, 0.027785470709204674, -0.006973878014832735, 0.02719399705529213, 0.012689156457781792, 0.007207715883851051, 0.006592171732336283, 0.009381035342812538, -0.003461147891357541, -0.003438795916736126, 0.005010325461626053, -0.007785433903336525, -0.020137587562203407, -0.004535771906375885, -0.026217378675937653, -0.03400281444191933, 0.020962899550795555, 0.008686398155987263, 0.08495201170444489, 0.03221463784575462, -0.03887214884161949, -0.010268243961036205, -0.033452603965997696, -0.00907842069864273, 0.026272399351000786, -0.006987633183598518, 0.003958053886890411, -0.03779924288392067, 0.007042653858661652, -0.018390679731965065, -0.031004182994365692, -0.02226964198052883, -0.01145119033753872, -0.0012835304951295257, -0.007025459781289101, 0.01627238094806671, 0.0006559502799063921, 0.005082540214061737, 0.02973870560526848, -0.0016729742055758834, 0.02872082218527794, 0.00521665345877409, -0.03356264904141426, 0.0005600938457064331, 0.038046836853027344, 0.023232504725456238, 0.01591474749147892, -0.02602480724453926, 0.02430540882050991, -0.013975266367197037, -0.035488374531269073, -0.004425730090588331, -0.010715288110077381, 0.0030055076349526644, 0.001159733859822154, -0.027978042140603065, 0.009938119910657406, 0.008438805118203163, 0.005130683537572622, 0.012530972249805927, -0.03185700625181198, -0.04049525782465935, 0.012874851934611797, 0.00599038228392601, -0.0063720885664224625, -0.02960115484893322, -0.0071251848712563515], "57d479ac-14b0-4150-97d8-2e4981940c84": [0.0012456229887902737, -0.005117153748869896, 0.014930211007595062, -0.01636660471558571, -0.00959207396954298, 0.011097525246441364, -0.014902587980031967, -0.030081406235694885, -0.017927302047610283, -0.03350665420293808, 0.015026891604065895, 0.012333652935922146, 0.005389930680394173, -0.014709227718412876, 0.00832141749560833, 0.012009082362055779, 0.014294883236289024, -0.0116016436368227, 0.027084315195679665, -0.004084745422005653, -0.00854930654168129, -0.004851282574236393, -0.016490908339619637, -0.007126724347472191, -0.02738816663622856, 0.01812066324055195, 0.029114602133631706, -0.010993938893079758, -0.01589701510965824, 0.019764229655265808, 0.023962920531630516, -0.028451651334762573, -0.008418098092079163, -0.007900167256593704, -0.01185715664178133, 0.008818631060421467, 0.007934696041047573, 0.002693238900974393, 0.012243878096342087, -0.006629510782659054, 0.0183968935161829, 0.015814146026968956, -0.012278406880795956, -0.002546491799876094, -0.03292657062411308, 0.025882715359330177, -0.021435419097542763, -0.007741335313767195, -0.013155436143279076, 0.014253448694944382, -0.01223006658256054, 0.014902587980031967, -0.013217587023973465, 0.0011877873912453651, -0.011104431003332138, 0.007478917017579079, -0.0023134229704737663, -0.0002822721435222775, 0.020012836903333664, 0.0015503386966884136, 0.003984612412750721, 0.005452082026749849, -0.018410705029964447, 0.004540524445474148, -0.03270558640360832, -0.02338283695280552, -0.0036600425373762846, -0.0007125861011445522, -0.0010125541593879461, 0.004968680441379547, 0.034777309745550156, 0.015123572200536728, 0.0027795606292784214, 0.0006323068519122899, -0.006988609209656715, -0.02508164942264557, -0.013714800588786602, -0.02106250822544098, -0.007672277744859457, 0.0027605697978287935, 0.007789675146341324, -0.01324521005153656, -0.00524836266413331, -0.014488243497908115, 0.04041239246726036, 0.015247874893248081, -0.01041385717689991, 0.0022305541206151247, -0.012368181720376015, -0.010400045663118362, 0.025855092331767082, 0.009488487616181374, 0.02778870053589344, 0.03306468576192856, 0.005282891448587179, 0.010938692837953568, -0.009633507579565048, -0.009833774529397488, -0.0009046519990079105, -0.022264108061790466, -0.025454560294747353, -0.0025965585373342037, -0.024929722771048546, -0.014488243497908115, -0.01991615630686283, -0.00744438823312521, 0.019059844315052032, -0.0034511438570916653, 0.009302032180130482, 0.03497067093849182, -0.005745576228946447, 0.02173927053809166, -0.010220495983958244, -0.032125506550073624, -0.015662219375371933, 5.265627260087058e-05, 0.013334984891116619, -0.01890791766345501, -0.0025654826313257217, 0.002154591027647257, 0.025454560294747353, 0.013984124176204205, 0.03690427914261818, -0.020233819261193275, 0.018700744956731796, 0.008204019628465176, 0.0030212614219635725, -0.0018110304372385144, 0.026669969782233238, -0.01098012737929821, 0.025882715359330177, 0.007706806529313326, 0.00756869139149785, -0.008217831142246723, -0.03173878416419029, 0.009944266639649868, -0.004226312972605228, 0.007085289806127548, -0.010993938893079758, -0.01834164746105671, 0.019833287224173546, 0.017692506313323975, 0.004744243808090687, -0.019322261214256287, -0.010137626901268959, 0.025551239028573036, -0.011380660347640514, 0.03400386497378349, 0.01372861210256815, -0.010952504351735115, 0.0005231098621152341, -0.007644654717296362, -0.013431665487587452, 0.02265082858502865, 0.009150106459856033, 0.008618364110589027, -0.011415189132094383, 0.029473701491951942, -0.023838616907596588, 0.004623393062502146, -0.0008847980061545968, 0.022940870374441147, -0.01228531263768673, -0.01279633678495884, 0.008328323252499104, 0.027595339342951775, 0.01726435124874115, -0.028396405279636383, -0.025675542652606964, -0.013114001601934433, 0.0027519376017153263, 0.03555075079202652, -0.041572559624910355, 0.029749929904937744, 0.017706317827105522, 0.009730188176035881, 0.01041385717689991, 0.0080659044906497, -0.009136294946074486, -0.007292462047189474, 0.02875550277531147, 0.0062635065987706184, 0.010427667759358883, 0.025606485083699226, -0.016905251890420914, -0.023424271494150162, 0.02031668834388256, 0.01163617242127657, 0.007727523799985647, 0.002190846251323819, -0.0005174989346414804, -0.002385933417826891, -0.02870025672018528, -0.019211770966649055, -0.625825822353363, -0.01163617242127657, 0.02155972272157669, -0.03613083437085152, -0.004937604535371065, 0.016325170174241066, -0.0018541913013905287, 0.0047546024434268475, 0.0004959185025654733, 0.03869976848363876, 0.004184878896921873, 0.013252115808427334, -0.01562078483402729, -0.01766488514840603, -0.02417009137570858, -0.022485090419650078, 0.028051117435097694, -0.002670795191079378, -0.005013567395508289, 5.3843195928493515e-05, -0.02382480539381504, 0.01451586652547121, 0.010558877140283585, -0.01766488514840603, 0.008680515922605991, 0.012879205867648125, 0.014087710529565811, 0.014073899015784264, -0.007451293990015984, 0.01879742555320263, -0.037097636610269547, 0.0026794273871928453, 0.035909850150346756, -0.008556212298572063, 0.03762247413396835, -0.014474431984126568, -0.01505451463162899, 0.027940625324845314, 0.006498301867395639, 0.02813398651778698, -0.03403148800134659, 0.006429244298487902, 0.01664283499121666, 0.027526281774044037, 0.014377751387655735, 0.006222072057425976, -0.009295126423239708, 0.0007056803442537785, -0.016559965908527374, -0.009343466721475124, 0.005469346418976784, -0.009302032180130482, -0.00823164265602827, -0.008093527518212795, 0.011739758774638176, -0.012768714688718319, 0.020758656784892082, -0.01126326248049736, 0.013079472817480564, 0.005383024923503399, 0.0263246838003397, 0.002347951754927635, -0.01030336506664753, -0.058781664818525314, -0.05077100545167923, -0.0009055152186192572, -0.02100726217031479, -0.018769802525639534, 0.0020889865700155497, -0.005148229654878378, 0.008556212298572063, -0.013397136703133583, 0.005289797205477953, -0.006277318112552166, 0.01969517208635807, 0.02621419169008732, 0.03916935995221138, 0.008756479248404503, -0.002439452800899744, 0.03474968671798706, 0.0007462516077794135, -0.016850007697939873, -0.004809848498553038, -0.0151373827829957, 0.0316835381090641, 0.02066197618842125, -0.016822384670376778, -0.011905496940016747, -0.0028520708438009024, -0.015745088458061218, 0.0246120598167181, 0.012499390169978142, 0.0006556137232109904, -0.028368782252073288, 0.037843458354473114, 0.05723477900028229, 0.006139203440397978, -0.01759582757949829, -0.009094860404729843, -0.023962920531630516, -0.01885267160832882, -0.03632419556379318, 0.02104869671165943, -0.008466437458992004, 0.024197714403271675, 0.017126236110925674, -0.026573289185762405, 5.821323429699987e-05, 0.01794111356139183, -0.00744438823312521, -0.019336072728037834, -0.019612303003668785, -0.015634596347808838, 0.001956050982698798, 0.020648164674639702, -0.02614513412117958, 0.005448629148304462, 0.007209592964500189, -0.005165494047105312, -0.02089677006006241, -0.013031132519245148, -0.003618607996031642, -0.012119574472308159, 0.0031524705700576305, 0.0026051905006170273, 0.029225094243884087, 0.004585411865264177, 0.015247874893248081, 0.004447296727448702, 0.025716977193951607, 0.0014976825332269073, 0.010054757818579674, 0.026573289185762405, -0.011007750406861305, 0.019322261214256287, 0.0053933835588395596, 0.020081892609596252, -0.001661693793721497, 0.0012188631808385253, -0.04386526346206665, 0.00464065745472908, -0.0026207284536212683, 0.03129681572318077, -0.0026138226967304945, -0.009025802835822105, -0.016711892560124397, -0.02298230491578579, 0.01140828337520361, -0.008866970427334309, -0.015510293655097485, -0.026393739506602287, -0.009840680286288261, -0.020800091326236725, 0.021435419097542763, 0.0020492784678936005, -0.004913434386253357, 0.002420461969450116, -0.03861689940094948, -0.020965827628970146, -0.029749929904937744, -0.00933656096458435, 0.008611458353698254, 0.004678639117628336, -0.004613034892827272, -0.019432753324508667, -0.017015744000673294, -0.023396648466587067, 0.02994329109787941, -0.006981703452765942, -0.01755439303815365, 0.013397136703133583, -0.028092551976442337, 0.014087710529565811, 0.006336017046123743, -0.0183968935161829, 0.0029556569643318653, -0.023520952090620995, -0.0055073280818760395, 0.005942389834672213, -0.0032940381206572056, 0.013887444511055946, 0.024929722771048546, 0.0023617632687091827, -0.010931787081062794, 0.032125506550073624, 0.019322261214256287, 0.024142468348145485, 0.007354613859206438, -0.018990786746144295, 0.002903863787651062, 0.0019180694362148643, 0.026393739506602287, 0.0033786336425691843, 0.008583835326135159, -0.011684512719511986, -0.017747752368450165, 0.0003931956016458571, -0.01930844970047474, -0.010220495983958244, 0.03701476752758026, 0.01394959632307291, 0.030081406235694885, -0.02133873850107193, -0.0034666818100959063, 0.02672521583735943, -0.02433582954108715, 0.005082624964416027, -0.016601400449872017, 0.011187300086021423, 0.009799245744943619, -0.007216498721390963, 0.00385685614310205, -0.005452082026749849, -0.015275497920811176, -0.00622897781431675, 0.012706562876701355, -0.020302876830101013, 0.024874476715922356, -0.020910581573843956, 0.007561786100268364, -0.0016685995506122708, 0.017457712441682816, 0.018079228699207306, 0.010510536842048168, 0.00744438823312521, -0.00358062656596303, 0.013984124176204205, 0.00011027604341506958, 0.024432510137557983, -0.02376955933868885, -0.002216742606833577, 0.034943047910928726, -0.010828200727701187, -0.0034753140062093735, 0.030771980062127113, 0.013590496964752674, 0.034501079469919205, -0.013196869753301144, 0.02892124094069004, -0.026518043130636215, 0.016960497945547104, 0.004385145381093025, 0.027250051498413086, -0.026048453524708748, 0.030191898345947266, -0.0007462516077794135, 0.02201550081372261, -0.00744438823312521, -0.03215312957763672, 0.02265082858502865, -0.02455681376159191, 0.018604064360260963, -0.011580927297472954, 0.00040420162258669734, 0.01578652299940586, -0.019570868462324142, -0.010040946304798126, 0.0027484847232699394, 0.014557301066815853, 0.016283735632896423, -0.01806541718542576, 0.011760476045310497, 0.011346131563186646, 5.6432847486576065e-05, 0.01697430945932865, -0.02106250822544098, -0.00888768769800663, -0.014336317777633667, -0.010745332576334476, -0.01885267160832882, 0.0035081161186099052, -0.022112181410193443, 0.0009495393023826182, -0.009405618533492088, 0.007347708102315664, 0.008307605981826782, -0.01142900064587593, 0.016905251890420914, 0.0011895138304680586, 0.020358122885227203, -0.008411192335188389, -0.0413239523768425, 0.02570316568017006, 0.009122483432292938, -0.009060331620275974, -0.005427911877632141, -0.030302388593554497, 0.0027985514607280493, 0.006588076241314411, 0.027871569618582726, -0.013328079134225845, -0.005251815542578697, -0.012713468633592129, 0.024915911257267, -0.004350616596639156, 0.012105762958526611, 0.04008091986179352, -0.02462587133049965, 0.002853797283023596, -0.0030747810378670692, 0.013921973295509815, 0.017872055992484093, -0.002411829773336649, 0.0012810148764401674, 0.04320231452584267, -0.012520107440650463, 0.002934939693659544, -0.008818631060421467, 0.0007630843319930136, -0.04927936568856239, 0.012872300110757351, -0.01112514827400446, -0.0019042579224333167, -0.020965827628970146, 0.0015606973320245743, -0.00817639660090208, 0.005172399803996086, -0.004941057413816452, 0.0054451762698590755, -0.001332807936705649, -0.021725459024310112, -0.02111775428056717, 0.005072266329079866, 0.020869147032499313, 0.06414052098989487, 0.00677798455581069, -0.010116909630596638, 0.019487999379634857, -0.034666817635297775, -0.004001876804977655, -0.02099345065653324, -0.012520107440650463, 0.01998521387577057, 0.007561786100268364, -0.01726435124874115, -0.005862973630428314, 0.007941601797938347, 0.00403295224532485, 0.009523016400635242, 0.007306273560971022, 0.007133630104362965, -0.011850250884890556, -0.016836196184158325, 0.005172399803996086, -0.014184391126036644, -0.0007829383248463273, 0.033589523285627365, -0.00832141749560833, 0.038810260593891144, 0.03474968671798706, 0.036710917949676514, -0.0079277902841568, 0.013148530386388302, -0.021269680932164192, -0.015372178517282009, 0.002185666933655739, -0.001448479131795466, 0.010400045663118362, -0.005890596657991409, 0.022056935355067253, 0.01169141847640276, -0.013576685450971127, -0.008708138950169086, 0.009882114827632904, 0.0032025370746850967, 0.010676275007426739, -0.01589701510965824, -0.012133385986089706, 0.006512113381177187, -0.03615845739841461, 0.0012672033626586199, 0.03356190025806427, -0.01600750721991062, -0.010110003873705864, 0.01986091025173664, -0.004005329683423042, -0.013341890648007393, 0.015510293655097485, 0.014792095869779587, -0.004012235440313816, -0.00716125313192606, -0.01975041814148426, -0.007651560474187136, -0.028893617913126945, -0.01816209778189659, -0.02168402448296547, -0.008197113871574402, -0.009598979726433754, -0.020413368940353394, -0.021090131253004074, -0.0005231098621152341, 0.012934451922774315, -0.017070990055799484, -0.0016780949663370848, 0.004606129135936499, -0.038119688630104065, -0.04160018265247345, 0.006577718071639538, 0.05212453007698059, 0.021435419097542763, 0.0154274245724082, -0.003050610888749361, -0.005376119166612625, 0.003370001446455717, -0.002862429479137063, -0.019819475710392, 0.022498901933431625, -0.006190996151417494, 0.0006007994525134563, -0.019487999379634857, -0.015468859113752842, -0.004747696686536074, -0.023645255714654922, 0.03306468576192856, 0.009578262455761433, -0.030771980062127113, 0.004015688318759203, 0.003953536506742239, 0.01731959730386734, 0.022208862006664276, 0.006936816498637199, 0.0023341402411460876, 0.015869392082095146, -0.015372178517282009, 0.012444144114851952, -0.02457062527537346, 0.003411435754969716, -0.036710917949676514, -0.01086963526904583, 0.009453958831727505, 0.0007069751736707985, -0.010144532658159733, -0.007313179317861795, -0.03538501262664795, -0.003173187840729952, -0.015979884192347527, 0.005186211317777634, -0.018244966864585876, 0.003877573413774371, -0.00010207547893514857, 0.0014752388233318925, 0.01562078483402729, -0.007547974586486816, -0.014847341924905777, 0.0005114563973620534, -0.029473701491951942, 0.024819230660796165, 0.010842012241482735, -0.011366848833858967, 0.03262271732091904, 0.021366361528635025, -0.025330256670713425, -0.051931168884038925, 0.011387566104531288, 0.008404286578297615, 0.0024498114362359047, -0.012050516903400421, -0.009688753634691238, -0.00607014587149024, -0.02049623802304268, 0.010227401740849018, 0.002366942586377263, -0.007844921201467514, -0.003458049613982439, -0.025799846276640892, 0.007354613859206438, -0.001125635695643723, -0.013079472817480564, -0.012609882280230522, -0.025661731138825417, -0.043036576360464096, -0.02274750918149948, 0.012312935665249825, 0.0226370170712471, -0.0022806208580732346, -0.01947418786585331, -0.007451293990015984, -0.01440537441521883, -0.008404286578297615, 0.001294826390221715, 0.009847586043179035, -0.007617031689733267, 0.048367805778980255, 0.01653234288096428, 0.022885624319314957, 0.015095949172973633, 0.03135206177830696, 0.018921729177236557, -0.004502542782574892, -0.011359943076968193, -0.012989697977900505, -0.020081892609596252, -0.005604008212685585, 0.00755488034337759, -0.008625269867479801, -0.0012801516568288207, -0.0124579556286335, 0.018825048580765724, -0.0031559234485030174, 0.007720618043094873, 0.0032785004004836082, -0.028617389500141144, -0.028092551976442337, -0.05082625150680542, -0.012071234174072742, 0.02128349244594574, -0.003546097781509161, -0.014053181745111942, -0.028285913169384003, -0.017084801569581032, 0.028948863968253136, -0.01731959730386734, 0.029528945684432983, -0.010296459309756756, 0.021587345749139786, 0.024211525917053223, 0.006336017046123743, 0.02925271727144718, 0.016670458018779755, -0.03980468958616257, 0.01069699227809906, -0.038119688630104065, -0.014087710529565811, 0.0008817767375148833, 0.02563410811126232, 0.025371691212058067, -0.0037670815363526344, 0.010772955603897572, -0.004095104057341814, 0.013148530386388302, -0.024639682844281197, -0.00996498391032219, -0.009081048890948296, -0.0351087860763073, -0.00028140892391093075, -0.042373623698949814, -0.0055073280818760395, 0.010393139906227589, -0.021518288180232048, -0.01834164746105671, 0.0025637561921030283, 0.01834164746105671, -0.04571600258350372, -0.022084558382630348, 0.0135835912078619, -0.006757267285138369, 0.04173829406499863, 0.01806541718542576, 0.023838616907596588, -0.00020091388432774693, 0.0025723883882164955, -0.013921973295509815, -0.014377751387655735, -0.0024256412871181965, -0.020413368940353394, 0.008169490844011307, 0.03005378320813179, -0.014156768098473549, -0.008735761977732182, -0.012747997418045998, -0.01647709682583809, 0.009412524290382862, -0.02908697910606861, 0.018894106149673462, 0.002731220331043005, 0.005952748470008373, -0.03021952137351036, -0.016090376302599907, -0.013604308478534222, 0.005158588290214539, -0.009150106459856033, 0.009467770345509052, -0.005963107105344534, -0.005251815542578697, 0.022319354116916656, 0.017278162762522697, -0.0022219219245016575, 0.02331377938389778, -0.007451293990015984, 0.0010358610888943076, 0.0013664733851328492, -0.0094815818592906, -0.011560210026800632, -0.015455047599971294, -0.006342922803014517, 0.033147554844617844, -0.026338493451476097, 0.0020371933933347464, 0.014432997442781925, 0.020731033757328987, -0.015662219375371933, -0.0011990092461928725, -0.015827957540750504, 0.034445833414793015, -0.014709227718412876, -0.013915067538619041, 0.01120801642537117, -0.0016090375138446689, 0.015316932462155819, -0.026186568662524223, -0.012271501123905182, -0.0004296665429137647, -0.012941357679665089, 0.030385257676243782, 0.006815965753048658, -0.016380416229367256, -0.008811725303530693, -0.02225029654800892, -0.0013457562308758497, -0.03544025868177414, 0.006159920711070299, 0.00014404943794943392, 0.026228003203868866, -0.039638951420784, 0.002059637103229761, -0.009377995505928993, -0.030523372814059258, -0.0079277902841568, -0.002082080813124776, 0.013348796404898167, -0.013770046643912792, 0.02983279898762703, -0.013756235130131245, 0.013341890648007393, 0.030827226117253304, 0.029004110023379326, -0.026421362534165382, 0.028672635555267334, -0.010607217438519001, -0.0019802211318165064, 0.015344555489718914, -0.0005861247191205621, -0.02711193822324276, -0.022167427465319633, 0.029860422015190125, -0.005541856866329908, 0.004057122394442558, 0.004847829695791006, 0.026628535240888596, 0.022043123841285706, 0.0066709453240036964, 0.0012110942043364048, 0.004167614504694939, 0.014640170149505138, -0.005755934864282608, 0.013652648776769638, 0.012333652935922146, 0.0033406519796699286, 0.007520351558923721, -0.01267893984913826, 0.004543977323919535, -0.015095949172973633, -0.03974944353103638, -0.015123572200536728, -0.014142956584692001, 0.003915554843842983, -0.0016349341021850705, 0.023134231567382812, 0.019087467342615128, -0.03480493277311325, -0.03651755675673485, 0.021918820217251778, -0.0015745088458061218, -0.00981996301561594, 0.03096534125506878, -0.0025482182390987873, 0.009177729487419128, 0.027070503681898117, -0.008894593454897404, -0.03403148800134659, -0.011864062398672104, -0.02983279898762703, -0.048146821558475494, 0.008369757793843746, 0.016629023477435112, 0.027139559388160706, -0.003546097781509161, -0.025426937267184258, -0.030440503731369972, -0.0229270588606596, -0.025827469304203987, -0.020675787702202797, -0.024252960458397865, 0.020178573206067085, 0.03193214535713196, 0.0396113283932209, -0.0003057948197238147, 0.023617632687091827, -0.003245698055252433, 0.017167670652270317, -0.03720812872052193, 0.004329899325966835, -0.017568204551935196, -0.00832141749560833, 0.027194805443286896, -0.016877630725502968, -0.055052563548088074, 0.009757811203598976, 0.011725947260856628, -0.004174520261585712, 0.005155135411769152, -0.0009262324310839176, -0.0007928653503768146, 0.01861787587404251, -0.0026604365557432175, 0.010524348355829716, 0.002530953846871853, 0.02325853332877159, 0.017844432964920998, -0.03323042392730713, -0.0012110942043364048, 0.01451586652547121, 0.009716376662254333, 0.004122727084904909, 0.0005619546282105148, 0.010669369250535965, -0.010482913814485073, 0.0028986844699829817, 0.000322195963235572, -0.008590741083025932, -0.009937360882759094, 0.00061935861594975, 0.0007570417947135866, 0.023534763604402542, 0.005421006120741367, 0.044859688729047775, -0.00716125313192606, 0.00048167540808208287, -0.009737093932926655, 0.003062695963308215, -0.0015796881634742022, -0.005479705054312944, 0.0362137034535408, -0.02994329109787941, -0.010683180764317513, -0.021380173042416573, 0.007292462047189474, -0.006674398202449083, -0.027705831453204155, -0.024708740413188934, -0.007907073013484478, -0.013486911542713642, 0.005666160024702549, 0.010282647795975208, -0.016449473798274994, 0.019819475710392, 0.0012956896098330617, 0.0145711125805974, 0.007326990831643343, -0.01234055869281292, 0.013846009969711304, -0.0151373827829957, -0.015745088458061218, -0.0043747867457568645, -0.0015408433973789215, -0.025675542652606964, 2.489843245712109e-05, 0.01901840977370739, 0.0035944378469139338, 0.006249695084989071, 0.20220008492469788, 0.010621028952300549, 0.025454560294747353, 0.032180752605199814, 0.012706562876701355, -0.009405618533492088, 0.00965422485023737, 0.00817639660090208, -0.01412223931401968, 0.01845213957130909, -0.0007721481379121542, -0.0023151494096964598, -0.019336072728037834, -0.006650228053331375, 0.01918414793908596, -0.01578652299940586, -0.0254683718085289, -0.015814146026968956, -0.006978250574320555, 0.00683668302372098, -0.005545309744775295, -0.0013751055812463164, -0.014198202639818192, -0.0011308150133118033, 0.013542157597839832, 0.01242342684417963, -0.019267015159130096, -0.004343710839748383, 0.01567603088915348, 0.011242545209825039, -0.014681604690849781, 0.02592414990067482, 0.0018386534648016095, 0.0021994784474372864, -0.012602976523339748, -0.0080659044906497, 0.009668036364018917, -0.025951772928237915, 0.01267893984913826, 0.03405911102890968, -0.007810392417013645, -0.01446062047034502, -0.02497115731239319, -0.0018352005863562226, -0.0008830715669319034, -0.007050761021673679, -0.015344555489718914, 0.01624230109155178, 0.00468554487451911, 0.028451651334762573, -0.004495637025684118, 0.004906528629362583, 0.0011808816343545914, 0.015095949172973633, 0.00025939688202925026, 0.007375330664217472, -0.007637748960405588, 0.005662707146257162, -0.01693287491798401, 0.0015373905189335346, -0.02501259185373783, 0.021532099694013596, -0.0015166732482612133, 0.021021073684096336, -0.030026160180568695, 0.0009132841951213777, -0.028396405279636383, 0.02093820460140705, -0.0007756009581498802, -0.0018731821328401566, -0.0012128206435590982, -0.007402953691780567, -0.022167427465319633, 0.000322843377944082, -0.027180993929505348, -0.021242057904601097, 0.029114602133631706, 0.009018897078931332, 0.038009196519851685, 0.021421607583761215, 0.002877967432141304, 0.0037601757794618607, -0.02411484532058239, -0.03160066902637482, 0.0033751807641237974, -0.011346131563186646, 0.03383812680840492, -0.021518288180232048, -0.009384901262819767, -0.018134474754333496, 0.0009003359009511769, 0.001473512384109199, -0.009060331620275974, -0.013963406905531883, 0.00529325008392334, -0.003981159534305334, 0.015026891604065895, 0.011684512719511986, 0.004139991477131844, -0.0028244478162378073, -0.028313536196947098, 0.05729002505540848, 0.01980566419661045, 0.017361031845211983, -0.017167670652270317, 0.01092488132417202, 0.007054213900119066, 0.03010902926325798, -0.00038909530849196017, -0.0006720148958265781, -0.010220495983958244, -0.030385257676243782, 0.01567603088915348, 0.007409859448671341, 0.010310270823538303, 0.018825048580765724, 0.013120907358825207, -0.015869392082095146, 0.010683180764317513, -0.0080659044906497, 0.02626943774521351, -0.014101522043347359, -0.008991274051368237, -1.5119795534701552e-05, -0.03220837563276291, -0.023534763604402542, 0.0007466832175850868, 0.016739515587687492, -0.0220707468688488, -0.03303706273436546, -0.005355401895940304, -0.02336902543902397, 0.023299967870116234, -0.024128656834363937, -0.02144923061132431, 0.006619152147322893, 0.004668280482292175, -0.0032526038121432066, -0.00706111965700984, -0.00976471696048975, 0.0037567229010164738, 0.013714800588786602, 0.011877873912453651, -0.007886355742812157, 0.0009659404749982059, -0.019487999379634857, 0.011111336760222912, -0.002686333144083619, 0.009329655207693577, -0.03480493277311325, -0.006512113381177187, 0.009067237377166748, 0.011553304269909859, 0.0018179361941292882, 0.047235265374183655, -0.03079960308969021, -0.015745088458061218, -0.015496482141315937, 0.003549550659954548, 0.01731959730386734, -0.029584191739559174, -0.01737484335899353, 0.03787108138203621, -0.004585411865264177, -0.042981330305337906, -0.004713167902082205, -0.17678695917129517, 0.007036949507892132, -0.002247818512842059, -0.0149992685765028, 0.017858244478702545, 0.030302388593554497, 0.003794704331085086, 0.002950477646663785, -0.0014933664351701736, -0.009453958831727505, 0.0020803543739020824, 0.0056523485109210014, -0.013051849789917469, -0.0022996116895228624, 0.0027260410133749247, 0.004343710839748383, -0.01383910421282053, 0.018548818305134773, 0.061433468014001846, -0.004792584106326103, 0.007209592964500189, -0.029584191739559174, -0.007451293990015984, -0.004499089904129505, 0.012720374390482903, 0.007009326480329037, -0.016269924119114876, 0.030771980062127113, 0.004295370541512966, -0.019032221287488937, 0.0013535250909626484, -0.008224736899137497, 0.019253205507993698, -0.004806395620107651, 0.01772012934088707, 0.006018352694809437, 0.014446808956563473, -0.007050761021673679, -0.01573127694427967, 0.0161318089812994, 0.015869392082095146, -0.0020769014954566956, 0.003549550659954548, -0.014750661328434944, -0.0006500028539448977, 0.022885624319314957, 0.0033872658386826515, -0.008259265683591366, 0.0016858639428392053, -0.013058755546808243, 0.03463919460773468, -0.02128349244594574, -0.005745576228946447, 0.006108127534389496, 0.0025499446783214808, 0.005496969446539879, 0.00424703024327755, 0.03571648895740509, 0.003307849634438753, -0.02966706082224846, 0.0034822197631001472, -0.012713468633592129, 0.008535495027899742, -0.009882114827632904, -0.005510780960321426, -0.034556325525045395, -0.006332564167678356, 0.009923549368977547, -0.004996303468942642, 0.007706806529313326, 0.00987520907074213, 0.0014916399959474802, 0.004557788837701082, 0.021987877786159515, -0.004281559027731419, 0.011843345127999783, -0.03419722616672516, 0.0024877930991351604, 0.03985993564128876, -0.0022184690460562706, -0.002132147317752242, 0.018880294635891914, -0.015330743975937366, 0.0031904522329568863, -0.020965827628970146, 0.01010309811681509, 0.012444144114851952, 0.00490998150780797, -0.016035130247473717, 0.005579838529229164, 0.013169246725738049, -0.024653494358062744, 0.020275253802537918, -0.009447053074836731, 0.014018652960658073, 0.020910581573843956, 0.027926813811063766, -0.008238548412919044, 0.018714556470513344, -0.014032464474439621, 0.002762296237051487, 0.03265034034848213, -0.038119688630104065, 0.01991615630686283, 0.04013616219162941, 0.039141736924648285, -0.007133630104362965, -0.007223404478281736, 0.03798157349228859, -0.0019836740102618933, -0.018189720809459686, 0.004557788837701082, 0.021877385675907135, 0.007955413311719894, -0.003496031044051051, 0.039638951420784, 0.006349828559905291, -0.029418455436825752, 0.030689110979437828, -0.010579594410955906, 0.051875922828912735, -0.020275253802537918, -0.009163917973637581, 0.008929122239351273, 0.009011991322040558, -0.008128056302666664, -0.10933168232440948, -0.02382480539381504, 0.023051362484693527, 0.014736850745975971, -0.009799245744943619, 0.0012309482553973794, -0.010255024768412113, 0.047345757484436035, -0.008583835326135159, 0.017499146983027458, -0.009840680286288261, 0.012561541981995106, 0.012527013197541237, 0.00789326149970293, 0.014239637181162834, -0.01595226116478443, -0.010427667759358883, -0.016173243522644043, -0.018244966864585876, 0.0271671824157238, 0.012547730468213558, -0.006529377773404121, 0.0164218507707119, -0.007720618043094873, -0.004875452723354101, -0.027305297553539276, -0.03350665420293808, 0.024101033806800842, 0.0068746646866202354, -0.0004760644806083292, 0.02309279702603817, -0.024363452568650246, 0.021863574162125587, -0.01607656478881836, -0.030937718227505684, -0.018383082002401352, -0.015082137659192085, -0.02568935416638851, 0.022554147988557816, -0.034224849194288254, -0.0018559177406132221, 0.011808816343545914, -0.002527500968426466, -0.01247867289930582, -0.009661130607128143, 0.0020527313463389874, -0.00023824804520700127, 0.022457467392086983, 0.006077051628381014, -0.0014700595056638122, -0.005113700870424509, -0.012602976523339748, -0.012499390169978142, -0.027940625324845314, 0.027650585398077965, 0.01267893984913826, 0.027263863012194633, 0.019736606627702713, -0.013611214235424995, -0.002216742606833577, -0.01578652299940586, -0.00611503329128027, -0.022940870374441147, -0.0004894443554803729, 0.015979884192347527, -0.004215954802930355, -0.009136294946074486, -0.016767138615250587, 0.005552215501666069, 0.011235639452934265, -0.012471767142415047, 0.0043747867457568645, -0.006988609209656715, 0.001583141041919589, -0.02881074883043766, -0.0054451762698590755, -0.006304941140115261, -0.01720910519361496, 0.001438983716070652, 0.030992964282631874, -0.011152771301567554, -0.005831897724419832, 0.0050998893566429615, -0.03994280472397804, 0.024473944678902626, 0.0011075080838054419, -0.0036324195098131895, 0.0017920397222042084, 0.037732966244220734, -0.03486017882823944, -0.016338981688022614, 0.024694928899407387, 0.03091009519994259, -0.014957834035158157, 0.0022132897283881903, 0.008010659366846085, -0.014212014153599739, -0.014032464474439621, 0.009702565148472786, -0.0017609638161957264, -0.02274750918149948, -0.017968736588954926, -0.06182019039988518, 0.004702809266746044, -0.002677700947970152, -0.007561786100268364, 0.009011991322040558, -0.0328160785138607, -0.008873876184225082, 0.0025257745292037725, 0.007451293990015984, 0.001805851119570434, -0.018438328057527542, 0.0008554485975764692, -0.021573534235358238, -0.013514534570276737, -0.026808084920048714, -0.024322018027305603, 0.005610913969576359, -0.006895381957292557, 0.02309279702603817, -0.005828444845974445, -0.016615211963653564, -0.006919552106410265, 0.01816209778189659, 0.019833287224173546, -0.013155436143279076, 0.017706317827105522, -0.025827469304203987, 0.03441821038722992, -0.004354069475084543, -0.015634596347808838, 0.0232032872736454, -0.014294883236289024, 0.001113550621084869, 0.00899817980825901, 0.004084745422005653, -0.022112181410193443, -0.00358062656596303, 0.0100478520616889, 0.011083713732659817, 0.014695416204631329, -0.02048242650926113, -0.01548267062753439, 0.03107583150267601, -0.01748533546924591, -0.00403295224532485, -0.016573777422308922, -0.004343710839748383, -0.021822139620780945, 0.011629266664385796, 0.008818631060421467, 0.026559477671980858, 0.00015494755643885583, -0.027153370901942253, -0.0356612429022789, 0.014046275988221169, -0.0060287113301455975, 0.0014104974688962102, -0.0028486179653555155, 0.017112424597144127, -0.002527500968426466, 0.04212501645088196, 0.01080748438835144, -0.0001619612012291327, -0.004713167902082205, 0.019032221287488937, -0.030385257676243782, -0.037042390555143356, 0.005641989875584841, -0.014094616286456585, -0.03256747126579285, 0.00013023795327171683, -0.03425247222185135, 0.041627805680036545, 0.02173927053809166, 0.005441723391413689, -0.01631135866045952, 0.009039614349603653, -0.018093040212988853, -0.01658758893609047, 0.031213946640491486, 0.008197113871574402, -0.01021359022706747, -0.04759436473250389, 0.013334984891116619, 0.02139398455619812, 0.018438328057527542, -0.010917975567281246, 0.008052093908190727, 0.01596607267856598, -0.0015883203595876694, 0.004657921846956015, -0.0053657605312764645, -0.01363883726298809, 0.017416277900338173, 0.009854491800069809, 0.025440748780965805, -0.012913734652101994, 0.004837471060454845, 0.011643078178167343, 0.030440503731369972, 0.0037498171441257, 0.01755439303815365, 0.006470678839832544, -0.015689842402935028, -0.03079960308969021, 0.01765107363462448, -0.03165591508150101, -0.007354613859206438, 0.042649853974580765, 0.02552361786365509, 0.010766049847006798, -0.016269924119114876, -0.011304697021842003, 0.015827957540750504, -0.006943722255527973, 0.0006482764147222042, -0.010469102300703526, -0.019570868462324142, -0.023797182366251945, 0.009750905446708202, 0.014170579612255096, 0.03102058731019497, 0.029225094243884087, -0.01355596911162138, 0.018866483122110367, -0.0003584510996006429, 0.010317176580429077, 0.009785434231162071, 0.014502055011689663, -0.01702955551445484, -0.0012723826803267002, 0.02276132069528103, -0.013065661303699017, -0.002190846251323819, -0.01030336506664753, -0.015330743975937366, -0.00888768769800663, 0.027995871379971504, 0.0024342734832316637, 0.09209495782852173, 0.02365906722843647, -0.029639437794685364, 0.006753814406692982, -0.02508164942264557, 0.0023255080450326204, 0.025551239028573036, -0.010075475089251995, 0.0035599092952907085, -0.025371691212058067, 0.007741335313767195, -0.011456623673439026, -0.029059356078505516, -0.014723039232194424, -0.017181482166051865, -0.0045198071748018265, 0.008784102275967598, 0.010717709548771381, -0.009025802835822105, 0.015468859113752842, 0.01823115535080433, -0.004274653270840645, 0.026918577030301094, -0.00845953170210123, -0.04126870632171631, 0.009571356698870659, 0.043616656213998795, 0.0009003359009511769, 0.021421607583761215, -0.018949352204799652, 0.030026160180568695, 0.0023186022881418467, -0.02950132265686989, -0.0008757342002354562, -0.006615699268877506, 0.005165494047105312, -0.0020337405148893595, -0.029114602133631706, 0.020786279812455177, -0.005279438570141792, 0.010538159869611263, 0.004468013998121023, -0.02066197618842125, -0.030468126758933067, 0.021214434877038002, 0.006173732224851847, -0.011235639452934265, -0.0229270588606596, -0.014930211007595062], "2a102d81-3648-4c2c-9708-087e2f32622b": [-0.009570508264005184, -0.013672154396772385, 0.0018408827017992735, -0.03400688245892525, 0.0002500633418094367, 0.012749110348522663, -0.011492937803268433, -0.018877290189266205, -0.02512345090508461, -0.05082987621426582, 0.00033312864252366126, 0.008210232481360435, 0.003503055777400732, -0.010646236129105091, 0.004171048291027546, 0.019390862435102463, 0.018891168758273125, -0.00493446784093976, 0.03161945939064026, -0.007474573794752359, -0.011395775713026524, -0.007155325263738632, -0.007724420167505741, -0.0045666382648050785, -0.034811943769454956, 0.010764218866825104, 0.031369611620903015, -0.0033972179517149925, -0.01973787136375904, 0.024859724566340446, 0.030370227992534637, -0.02324960194528103, -0.013713795691728592, -0.010056320577859879, -0.006062247324734926, 0.0026927897706627846, 0.0012258092174306512, 0.006693803705275059, 0.011465176939964294, 0.007717479951679707, 0.03095320239663124, 0.002423857804387808, -0.0061073582619428635, -0.010618475265800953, -0.02086218073964119, 0.03567252308130264, -0.002437738236039877, -0.02383257821202278, -0.011083466932177544, 0.008258813992142677, -0.0059893750585615635, 0.0173504501581192, -0.022971995174884796, 0.005274536553770304, -0.013977522030472755, 0.01525451522320509, 0.0030016277451068163, 0.0005361288785934448, 0.007474573794752359, -0.003025918500497937, 0.006912419106811285, 0.004334142431616783, -0.014727061614394188, -0.003935081884264946, -0.0243183895945549, -0.01208979357033968, -0.00829351507127285, 0.0014461600221693516, 0.025165092200040817, 0.00797426700592041, 0.022083653137087822, 0.009896696545183659, 0.005930383689701557, 0.004441715311259031, -0.0007378278532996774, -0.025248374789953232, -0.004670741036534309, -0.00875850673764944, 7.308876956813037e-05, -0.0012960785534232855, -0.005135733168572187, -0.004268210846930742, -0.002432533074170351, -0.0025591913145035505, 0.02560926415026188, 0.05513278767466545, -0.03606117516756058, -6.495574780274183e-05, -0.0173504501581192, -0.012707469053566456, -0.009716251865029335, -0.004944878164678812, 0.030536791309714317, 0.018516400828957558, 0.0009941807948052883, 0.009216559119522572, 0.013227982446551323, 0.004455595277249813, -0.014088565483689308, -0.0312863290309906, -0.02483196370303631, -0.00501427985727787, -0.01866908371448517, -0.010868322104215622, -0.03431224822998047, 0.0029808073304593563, 0.012048152275383472, -0.008307395502924919, 0.008015907369554043, 0.032951973378658295, -0.012221656739711761, 0.026816854253411293, -0.001748925307765603, -0.0325910858809948, -0.015448840335011482, -0.0061455294489860535, 0.007745240814983845, -0.029787251725792885, -0.011229211464524269, -0.005274536553770304, 0.02055681310594082, 0.007439872715622187, 0.03081439808011055, -0.03134185075759888, 0.007412112317979336, -0.0037823980674147606, 0.005677067209035158, -0.01208979357033968, 0.026983419433236122, 0.002725755563005805, 0.02087606117129326, 0.006586230825632811, -0.0028506789822131395, 0.0024967296048998833, -0.03905933350324631, 0.004348022863268852, -0.01413020584732294, 0.00497263902798295, -0.0037789279595017433, -0.011291672475636005, 0.014477214775979519, 0.01926593855023384, 0.005187784321606159, -0.024734800681471825, -0.004174518398940563, 0.021112026646733284, -0.013227982446551323, 0.031230809167027473, 0.005899152718484402, -0.019501905888319016, 6.110611138865352e-05, -0.01848863996565342, -0.012665828689932823, 0.02324960194528103, 0.006058777216821909, -0.011250031180679798, -0.007745240814983845, 0.029481884092092514, -0.02574806660413742, -0.004236979875713587, 0.007092863786965609, 0.019654588773846626, -0.007717479951679707, -0.017947304993867874, 0.005423750728368759, 0.03175826370716095, 0.007585616782307625, -0.02259722538292408, -0.008723805658519268, -0.010542132891714573, -0.0018807887099683285, 0.03400688245892525, -0.02956516668200493, 0.043501049280166626, 0.029759490862488747, 0.010736458003520966, 0.002383951796218753, 0.003997543826699257, -0.015226754359900951, -0.0064786579459905624, 0.03148065507411957, -0.003914261236786842, 0.017572535201907158, 0.03064783476293087, -0.016184499487280846, -0.019071614369750023, 0.0132835041731596, 0.0015294421464204788, 0.0005547806504182518, -0.015990175306797028, 0.01896057091653347, 0.005749939009547234, -0.024595998227596283, -0.01848863996565342, -0.6258376836776733, -0.0011165014002472162, 0.01043803058564663, -0.027927283197641373, -0.00407388573512435, 0.016836876049637794, 0.012152254581451416, -0.003612363710999489, 0.0015077540883794427, 0.01626778207719326, 0.010535192675888538, -0.0003480933955870569, -0.003667884971946478, -0.010271466337144375, -0.022055892273783684, -0.01816939003765583, 0.02151455730199814, -0.016725832596421242, -0.004705442115664482, 0.0017012115567922592, -0.023346764966845512, 0.022319618612527847, -0.013838718645274639, -0.007592556998133659, 0.015407199040055275, -0.014338411390781403, 0.006843017414212227, 0.011340253986418247, 0.0006371952476911247, 0.02404078282415867, -0.043223440647125244, 0.003383337752893567, 0.04078049585223198, -0.0026546188164502382, 0.032618846744298935, -0.014879745431244373, -0.011992630548775196, 0.029259799048304558, 0.012346579693257809, 0.025331657379865646, -0.020334726199507713, -0.0086752250790596, 0.004518057219684124, 0.02720550447702408, 0.017447611317038536, 0.019529666751623154, -0.006339854095131159, 0.009827294386923313, -0.008522541262209415, -0.010320047847926617, -0.0007321889861486852, -0.014865864999592304, -0.0007478043553419411, -0.006607051473110914, 0.00875850673764944, -0.0050559211522340775, 0.023763176053762436, -0.004240449983626604, 0.008814028464257717, -0.00195886567234993, 0.024582117795944214, -0.00030688606784678996, -0.011409656144678593, -0.04419506713747978, -0.05243999883532524, -0.00012991149560548365, -0.009855055250227451, -0.025942392647266388, 0.007884044200181961, -0.012860152870416641, 0.0062808627262711525, -0.010937723331153393, 0.024970768019557, -0.006332914344966412, 0.010958543978631496, 0.014838104136288166, 0.03833755478262901, 0.005107972305268049, -0.004757493268698454, 0.039447981864213943, 0.007925685495138168, -0.019029973074793816, 0.004125936888158321, -0.010132662951946259, 0.026733573526144028, 0.029009951278567314, -0.021250830963253975, -0.020001597702503204, -0.0008397617493756115, -0.006697273813188076, 0.02559538371860981, 0.009917517192661762, 0.002937431214377284, -0.036866236478090286, 0.042279575020074844, 0.04583294689655304, 0.013450068421661854, -0.010195123963057995, 0.0007057295297272503, -0.010854441672563553, -0.037032801657915115, -0.026178358122706413, 0.013373726978898048, 0.005753409117460251, 0.01469930075109005, 0.02436003088951111, -0.022513942793011665, -0.012672768905758858, 0.010667056776583195, -0.007294129114598036, -0.021431274712085724, -0.003931611776351929, -0.021764403209090233, -0.002180951414629817, 0.011659502051770687, -0.029287559911608696, 0.0010887407697737217, -0.004549287725239992, 0.005163494031876326, -0.033868078142404556, -0.023013636469841003, 0.015060190111398697, 0.009702371433377266, -0.016822995617985725, -0.009410884231328964, 0.0252622552216053, 0.012353519909083843, 0.012908734381198883, 0.016559269279241562, 0.0019658058881759644, -0.0056146057322621346, 0.00624269200488925, 0.020168162882328033, -0.003522141370922327, 0.01896057091653347, 0.010694817639887333, 0.02498464845120907, 0.004618689883500338, 0.004070415627211332, -0.05066331475973129, 0.005704828072339296, -0.010680937208235264, 0.023818697780370712, -0.005572964437305927, -0.009272079914808273, -0.019682349637150764, -0.010160422883927822, 0.02104262448847294, -0.0015702156815677881, -0.02606731653213501, -0.022042011842131615, -0.009695431217551231, -0.016670312732458115, 0.02873234450817108, 0.012797691859304905, -0.006305153481662273, -0.00457704858854413, -0.02827429212629795, -0.012207776308059692, -0.020584573969244957, -0.011673382483422756, 0.007335769943892956, -0.01501854881644249, 0.008120010606944561, -0.024068543687462807, -0.009716251865029335, -0.0378933809697628, 0.0020300026517361403, -0.006294743157923222, -0.02308303862810135, 0.007210846990346909, -0.022638866677880287, 0.007689719088375568, 0.0036088936030864716, -0.022458422929048538, 0.002463763812556863, -0.02623387984931469, -0.007793821860104799, 0.0033711923751980066, 0.0019189597805961967, 0.012131434865295887, 0.03272988647222519, -0.005437631160020828, -0.020098760724067688, 0.044333867728710175, 0.022638866677880287, 0.01657314971089363, 0.01846087910234928, -0.010618475265800953, 0.0006150734261609614, -0.00493446784093976, 0.03778233751654625, -0.017294928431510925, 0.013075298629701138, -0.0072524878196418285, -0.00718308612704277, -0.0022607636637985706, -0.012700528837740421, -0.010271466337144375, 0.019224299117922783, 0.022513942793011665, 0.02483196370303631, -0.00501427985727787, 0.0003294416528660804, 0.017822381108999252, -0.02560926415026188, 0.02036248706281185, -0.0056007253006100655, 0.014560497365891933, 0.00302244839258492, -0.008460079319775105, -0.0022364729084074497, -0.0037025860510766506, -0.021417394280433655, -0.006502948701381683, 0.010146543383598328, -0.0018460878636687994, 0.0303424671292305, -0.014643779955804348, -0.013158581219613552, 0.00596508476883173, 0.009799533523619175, 0.016947919502854347, 0.013151641003787518, -0.00035416605533100665, 0.00899447314441204, -0.006294743157923222, 0.006554999854415655, 0.024457193911075592, -0.02920427732169628, 0.001348129939287901, 0.030897680670022964, 0.011076526716351509, -0.015851370990276337, 0.03236899897456169, 0.01814163103699684, 0.027233265340328217, -0.015837490558624268, 0.016947919502854347, -0.02973172999918461, 0.008064488880336285, 0.0006584495422430336, 0.020265325903892517, -0.029953816905617714, 0.01721164584159851, 0.012575605884194374, 0.02101486548781395, 0.002918345620855689, -0.016503747552633286, 0.022555584087967873, -0.013352906331419945, 0.020251445472240448, -0.01105570700019598, 0.006593171041458845, 0.02842697687447071, -0.011027946136891842, 0.0038275092374533415, 0.018571920692920685, 0.014255129732191563, 0.013172461651265621, 0.0024654988665133715, 0.02873234450817108, 0.0049761091358959675, -0.0065723503939807415, 0.025706427171826363, -0.0043931338004767895, -0.009674610570073128, -0.018932810053229332, -0.006530709099024534, -0.021736644208431244, -0.0006758000236004591, -0.026830734685063362, -0.017822381108999252, -0.015546003356575966, -0.011562339961528778, 0.0009030909277498722, -0.007019991986453533, 0.014102445915341377, -0.006357204634696245, 0.02810772880911827, -0.01280463207513094, -0.026178358122706413, 0.022153053432703018, 0.021889327093958855, -0.010653176344931126, 0.004230039659887552, -0.019488025456666946, 0.007384351454675198, 0.00604489678516984, 0.02102874591946602, 0.009258200414478779, 0.0024741741362959146, -0.017794622108340263, 0.017947304993867874, 0.00246723392046988, 0.022402901202440262, 0.04624935984611511, -0.029592927545309067, 0.004969168920069933, -0.012603366747498512, 0.02766355685889721, 0.02258334495127201, -0.005638896021991968, -0.014296770095825195, 0.03558924421668053, -0.01957130804657936, -0.014949147589504719, 0.0006181097705848515, -0.001481728395447135, -0.03314629942178726, 0.009202678687870502, -0.0003018978168256581, -0.010354747995734215, -0.01334596611559391, -0.011118168011307716, -0.004396603908389807, 0.021112026646733284, -0.010479671880602837, 0.016989560797810555, -0.0034475342836230993, -0.014727061614394188, -0.006634811870753765, -0.0019380452577024698, 0.007162265479564667, 0.07395455986261368, 0.006378025282174349, -0.003378132591024041, 0.022472303360700607, -0.010771159082651138, 0.005219015292823315, -0.025817468762397766, -0.012547845020890236, 0.016489867120981216, 0.00762031739577651, -0.004386193584650755, -0.00710327411070466, 0.005430690944194794, 0.002815977903082967, -0.00485465582460165, 0.003369457321241498, 0.0023666012566536665, -0.023430047556757927, -0.009251260198652744, 0.023013636469841003, -0.01136107463389635, 0.012561725452542305, 0.03234123811125755, 0.0006927166832610965, 0.05374475196003914, 0.027261026203632355, 0.033868078142404556, 0.012082853354513645, 0.007800762075930834, -0.02386033907532692, -0.02098710462450981, 0.023499449715018272, -0.0036748251877725124, 0.020737256854772568, -0.0019900966435670853, 0.02591463178396225, 0.004240449983626604, -0.02544269897043705, -0.008737686090171337, 0.00019237311789765954, 0.008793207816779613, 0.009910576976835728, 0.0025678665842860937, -0.0005643233889713883, 0.02306915819644928, -0.036255501210689545, 0.004032244440168142, 0.033118538558483124, -0.02069561555981636, -0.009098575450479984, 0.007162265479564667, 0.009397003799676895, -0.009556627832353115, 0.02133411355316639, 0.001278728130273521, -0.0014288094826042652, 0.01673971302807331, -0.027774600312113762, -0.020279206335544586, -0.020015478134155273, -0.02008488029241562, -0.022819312289357185, -0.01010490208864212, 0.001927634933963418, -0.010958543978631496, 0.0023995672818273306, -0.017725219950079918, 0.011340253986418247, -0.02447107434272766, 0.0011763605289161205, -0.01058377418667078, -0.03833755478262901, -0.04752635210752487, 0.009501106105744839, 0.04644368216395378, 0.014838104136288166, 0.008550301194190979, 0.008314335718750954, -0.006964470725506544, -0.010174303315579891, -0.0081477714702487, -0.01897445134818554, 0.015268395654857159, -0.007904864847660065, -0.011791365221142769, -0.023499449715018272, -0.024387791752815247, -0.009285960346460342, -0.004344552755355835, 0.0240269023925066, 0.011812185868620872, -0.04033632576465607, -0.0011650826781988144, 0.00039537338307127357, 0.012832392938435078, 0.02198649011552334, 0.021750524640083313, 0.0036748251877725124, 0.02256946451961994, -0.02447107434272766, 0.00821717269718647, -0.03236899897456169, -0.012180015444755554, -0.021875446662306786, 0.006343324203044176, 0.01010490208864212, 0.00931372120976448, -0.011985690332949162, 0.005319647956639528, -0.03173050284385681, 0.0013229717733338475, -0.015893012285232544, 0.004837305285036564, -0.009084695018827915, 0.007349650375545025, -0.008272694423794746, 0.006790965795516968, 0.004226569551974535, -0.0014591728104278445, 0.004400074016302824, 0.017281047999858856, -0.031841546297073364, 0.038170989602804184, 0.016517627984285355, -0.0014140616403892636, 0.013776256702840328, 0.020737256854772568, -0.04302911460399628, -0.04488908499479294, 0.00355163705535233, 0.01578196883201599, 0.006003255490213633, -0.007502334658056498, -0.026164477691054344, -0.017503133043646812, -0.016045695170760155, -0.00039689152617938817, 0.008099189959466457, -0.015546003356575966, 0.0009273815085180104, -0.0231940820813179, 0.023096919059753418, 0.010472731664776802, -0.0170589629560709, -0.012978136539459229, -0.024887485429644585, -0.04722098261117935, -0.000819808745291084, 0.007627257611602545, 0.03111976571381092, -0.01058377418667078, -0.015407199040055275, -0.013422307558357716, -0.015879131853580475, -0.01004244014620781, -0.000619411061052233, 0.025387177243828773, 0.0017038141377270222, 0.042557183653116226, 0.015740327537059784, 0.02037636749446392, 0.02181992493569851, 0.022028131410479546, 0.026636410504579544, -0.012721349485218525, -0.005919973365962505, -0.01461601909250021, -0.025664785876870155, 0.0003107899392489344, -0.005437631160020828, 0.003284440143033862, -0.0025591913145035505, -0.01833595521748066, 0.012402101419866085, -0.014407813549041748, -0.004004483576864004, -0.001468715607188642, -0.015768088400363922, -0.03397912159562111, -0.0463881641626358, -0.009355362504720688, 0.02273602969944477, -0.007995087653398514, -0.0054827420972287655, -0.024124065414071083, 0.0004331106028985232, 0.04041960835456848, -0.011319433338940144, 0.01957130804657936, 0.0029148755129426718, 0.022971995174884796, 0.005968554876744747, 0.012221656739711761, 0.023804817348718643, 0.010729517787694931, -0.01834983564913273, -0.0007950843428261578, -0.03511730954051018, -0.015434959903359413, 0.013380667194724083, 0.016656432300806046, 0.03570028394460678, 0.008730745874345303, 0.008411497808992863, 0.004847715608775616, 0.007398231886327267, -0.013491709716618061, -0.011166749522089958, -0.0002780409704428166, -0.03367375209927559, 0.008439258672297001, -0.03347942605614662, -0.007474573794752359, 0.002753516426309943, -0.029592927545309067, 0.001853028079494834, 0.009285960346460342, 0.03306301683187485, -0.027844002470374107, -0.010299227200448513, 0.02288871258497238, -0.004872006364166737, 0.03811546787619591, 0.019085494801402092, 0.030786637216806412, 0.017170004546642303, 1.4056575309950858e-05, -0.01596241444349289, -0.01800282672047615, 0.010778099298477173, -0.026775214821100235, -0.006214931141585112, 0.025220613926649094, -0.002829858334735036, -0.023652132600545883, -0.007134505081921816, -0.012811572290956974, 0.008015907369554043, -0.0293986015021801, 0.02953740581870079, -1.315516510658199e-05, -0.01051437295973301, -0.019043853506445885, 0.005555613897740841, -0.011833006516098976, 0.008633583784103394, -0.005982434842735529, 0.013227982446551323, -0.00852948147803545, -0.007717479951679707, 0.01374155655503273, 0.02415182627737522, -0.010021619498729706, 0.01525451522320509, -0.006090007722377777, -0.0019848914816975594, -0.013130820356309414, -0.0030727647244930267, -0.02181992493569851, -0.01660091057419777, 0.0035603123251348734, 0.035311635583639145, -0.021459035575389862, 0.005618075840175152, 0.014116325415670872, 0.007890984416007996, -0.0019345751497894526, -0.006253101862967014, -0.0158236101269722, 0.037532493472099304, -0.027372069656848907, -0.019543547183275223, 0.0013516000472009182, 0.005746468901634216, 0.020653976127505302, -0.018113870173692703, -0.017461491748690605, -0.005160023923963308, 0.0013897710014134645, 0.0161150973290205, 0.005066331475973129, -0.015421079471707344, -0.011312493123114109, -0.007474573794752359, 0.0065168291330337524, -0.02209753356873989, 0.012540904805064201, 0.00525024626404047, 0.02291647344827652, -0.0344788134098053, 0.0094733452424407, 0.0049761091358959675, -0.02256946451961994, -0.018405357375741005, -0.0011598775163292885, 0.006867308169603348, 0.0010739928111433983, 0.01501854881644249, -0.0162955429404974, 0.012457623146474361, 0.02608119510114193, 0.01160398032516241, -0.033090777695178986, 0.018099989742040634, -0.014407813549041748, 0.014782583341002464, 0.011624800972640514, -0.009383123368024826, -0.025081809610128403, -0.03270212933421135, 0.017975065857172012, -0.009209618903696537, 0.0005556481773965061, 0.0003825774183496833, 0.0231940820813179, 0.009730132296681404, 0.009494165889918804, -0.004951818380504847, -0.0060830675065517426, 0.009521926753222942, -0.011721963994204998, 0.006697273813188076, 0.004955288488417864, -0.0034614147152751684, -0.00027001637499779463, -0.017780741676688194, -0.0019016092410311103, -0.014824224635958672, -0.04533325508236885, -0.010153483599424362, -0.013547231443226337, 0.012304939329624176, -0.001892934087663889, 0.02118142880499363, 0.009084695018827915, -0.01191628910601139, -0.024137945845723152, 0.035478200763463974, -0.014657659456133842, -0.001427941955626011, 0.03967006877064705, 0.0016543653327971697, 0.01990443654358387, 0.03156393766403198, -0.00644395686686039, -0.04569414258003235, -0.029426362365484238, -0.016309423372149467, -0.04344552755355835, -0.0027170805260539055, 0.00899447314441204, 0.05008033663034439, 0.008175532333552837, -0.026289401575922966, -0.009688491001725197, -0.030397986993193626, -0.02560926415026188, -0.014768702909350395, -0.019654588773846626, 0.0373104065656662, 0.03253556415438652, 0.022208575159311295, 0.013727676123380661, 0.009223499335348606, -0.01344312820583582, 0.032452281564474106, -0.032146912068128586, 0.011576220393180847, -0.03503402695059776, -0.00449723657220602, 0.021486796438694, -0.024082424119114876, -0.061573274433612823, -0.004375783260911703, 0.015920773148536682, -0.0033538418356329203, 0.0013333820970728993, 0.001367215416394174, 0.0008996208198368549, 0.003855269867926836, 0.009174917824566364, 0.012624187394976616, 0.021278591826558113, 0.029592927545309067, 0.011118168011307716, -0.026955658569931984, 0.0015207668766379356, 0.009577448479831219, -0.0033469018526375294, 0.005690947640687227, -0.010826680809259415, 0.009147156961262226, -0.016864636912941933, 0.005864452105015516, -0.017100602388381958, 0.003615833818912506, -0.011222271248698235, -0.0017584681045264006, -0.002755251480266452, 0.018294313922524452, 0.00449723657220602, 0.032785408198833466, -0.014157966710627079, 0.0022954645100980997, -0.0030606193467974663, 0.008383736945688725, -0.001972746104001999, -0.01255478523671627, 0.011715023778378963, -0.0278023611754179, 0.0011841681553050876, -0.006395375821739435, 0.009827294386923313, -0.005045510828495026, -0.019376982003450394, -0.027844002470374107, -0.015421079471707344, -0.006468247622251511, -0.009022234007716179, -0.007759121246635914, -0.018280433490872383, -0.005753409117460251, -0.0041536977514624596, -0.004670741036534309, 0.005708298180252314, -0.007571736350655556, 0.026122836396098137, -0.020820539444684982, -0.012943435460329056, -0.005416810512542725, 0.01326962374150753, -0.029454123228788376, 0.010882201604545116, 0.02510957047343254, -0.0006758000236004591, 0.010396389290690422, 0.21009312570095062, 0.008349036797881126, 0.013970581814646721, 0.027899522334337234, 0.012880973517894745, -0.009591328911483288, 0.02052905224263668, 0.0007799027371220291, -0.01083362102508545, 0.008043668232858181, 0.00813389103859663, 4.305080437916331e-05, -0.013047537766397, 0.0012500998564064503, 0.024137945845723152, -0.010007739067077637, -0.04047513008117676, -0.024068543687462807, -0.009306780993938446, -0.005253716371953487, -0.007134505081921816, -0.005763819441199303, -0.020098760724067688, -0.012096733786165714, 0.021570079028606415, 0.010340867564082146, -0.020418008789420128, -4.996387360733934e-05, 0.02104262448847294, 0.006634811870753765, -0.0075439754873514175, 0.009993858635425568, 0.011021005921065807, -0.021056504920125008, -0.009612149558961391, -0.013019777834415436, 0.0112153310328722, -0.030425747856497765, 0.0020768488757312298, 0.01879400759935379, -0.002869764342904091, 0.0070789833553135395, 0.005201664753258228, -0.011402715928852558, 0.010875262320041656, 0.006329444237053394, -0.029620688408613205, 0.021403513848781586, -0.0011147663462907076, 0.018280433490872383, -0.0059095630422234535, -0.003088379977270961, 0.006207990925759077, 0.014324530959129333, 0.000897018238902092, 0.00108440313488245, 0.0012353520141914487, 0.008196352049708366, -0.01562928594648838, -0.0162955429404974, -0.01642046496272087, 0.008925070986151695, -0.01597629487514496, 0.01896057091653347, -0.03769905865192413, -0.0029842774383723736, -0.027566393837332726, 0.04366761073470116, 0.003726876573637128, 0.007731360383331776, 0.007148385047912598, -0.019168777391314507, -0.020306967198848724, -0.007877103984355927, -0.043362244963645935, -0.018127750605344772, 0.015310036949813366, -0.0005543468869291246, 0.022305738180875778, 0.018696844577789307, -0.005763819441199303, -0.0063988459296524525, -0.024068543687462807, -0.03270212933421135, 0.0024169175885617733, -0.02336064539849758, 0.024609878659248352, -0.025942392647266388, -0.018558040261268616, -0.019557427614927292, -0.006548059638589621, -0.008258813992142677, -0.00399407371878624, -0.00773830059915781, 0.009334541857242584, -0.0019744811579585075, 0.0019397803116589785, 0.030259184539318085, -0.01271440926939249, -0.03320182114839554, -0.029009951278567314, 0.06562633812427521, 0.023416167125105858, 0.01264500804245472, -0.02448495477437973, 0.0013507325202226639, 0.010070201009511948, 0.027399830520153046, 0.0072386073879897594, -0.002397832227870822, -0.00036435943911783397, -0.04538877680897713, 0.018363716080784798, -0.0038483296521008015, 0.012436802498996258, 0.008404557593166828, 0.019946077838540077, -0.012457623146474361, 0.002699729986488819, -0.013408427126705647, 0.025081809610128403, -0.013755436055362225, 0.01768357865512371, 0.0011078262468799949, -0.03017590194940567, -0.029953816905617714, 0.00280383275821805, 0.017253287136554718, -0.034534335136413574, -0.02529001608490944, 0.016392704099416733, -0.02162560075521469, 0.028343694284558296, -0.02180604450404644, -0.014477214775979519, 0.005843631457537413, -0.001788831315934658, 0.004354963079094887, 0.005101032089442015, -0.021389635279774666, 0.003660944988951087, 0.012166135013103485, 0.011423535645008087, -0.0002626424247864634, -0.006735444534569979, -0.01177054550498724, 0.011472117155790329, 0.01215919479727745, -0.009660730138421059, -0.02544269897043705, -0.0020421480294317007, 0.00640231603756547, 0.006735444534569979, -0.019196538254618645, 0.027621915563941002, -0.013116939924657345, -0.01957130804657936, -0.0142828905954957, -0.00529188709333539, 0.016337184235453606, -0.04197420924901962, -0.006818726658821106, 0.040197521448135376, -0.008716866374015808, -0.02211141400039196, -0.013512530364096165, -0.17833486199378967, 0.008890370838344097, 0.002458558650687337, -0.03239675983786583, 0.024762561544775963, 0.03492298349738121, 0.0018374125938862562, 0.0022121823858469725, -0.006287802942097187, -0.0014860660303384066, -0.01676747389137745, -0.00473667262122035, -0.010125722736120224, -0.008550301194190979, -0.0008406292763538659, -0.00043376124813221395, 0.0005573831731453538, 0.013970581814646721, 0.0646824762225151, 0.0013802283210679889, 0.0124853840097785, -0.028649061918258667, -0.011791365221142769, -0.005510502960532904, 0.017919544130563736, -0.0037928083911538124, -0.011645621620118618, 0.027219384908676147, 0.016947919502854347, -0.010729517787694931, 0.0010262790601700544, -0.007190026342868805, 0.0331740602850914, -0.013221042230725288, 0.0165870301425457, 0.008015907369554043, 0.008959772065281868, -0.006596641149371862, -0.0293986015021801, 0.009237379767000675, 0.024262869730591774, 0.0015233694575726986, 0.017905663698911667, -0.002111549722030759, 0.005382109433412552, 0.035478200763463974, 0.00509409187361598, -0.013339025899767876, -0.0013316470431163907, -0.0011737579479813576, 0.03533939644694328, -0.030786637216806412, 0.00783546268939972, -0.0030450038611888885, 0.026969539001584053, 0.0025748068001121283, -0.005722178146243095, 0.04269598796963692, 0.004212689120322466, -0.03384031727910042, 0.0031230810564011335, -0.014310650527477264, 0.01737821102142334, -0.006180230062454939, 0.0008206762722693384, -0.038948290050029755, -0.0017255021957680583, 0.025637025013566017, 0.015532122924923897, 0.004011423792690039, 0.011090407148003578, -0.0009438644628971815, -0.0026789093390107155, 0.025234494358301163, -0.0008900780812837183, 0.012124494649469852, -0.030064858496189117, -0.0026390033308416605, 0.044805802404880524, -0.010209004394710064, -0.0014210018562152982, 0.01597629487514496, -0.005038570612668991, -0.0023822167422622442, -0.028676822781562805, -0.0027968925423920155, 0.013942820951342583, 0.0017654082039371133, -0.01183994673192501, 0.004105116240680218, 0.02386033907532692, -0.012894853949546814, 0.0073149497620761395, -0.01083362102508545, 0.005062861368060112, 0.0033521067816764116, 0.014560497365891933, -0.004011423792690039, 0.008737686090171337, -0.0012648478150367737, 0.019474145025014877, 0.027052821591496468, -0.04913647472858429, 0.015546003356575966, 0.030897680670022964, 0.03284092992544174, 0.0011833006283268332, -0.003046738915145397, 0.04666576907038689, 0.00441742455586791, -0.018099989742040634, -0.002966926898807287, 0.014033043757081032, 0.0008996208198368549, -0.0004632570198737085, 0.043695371598005295, -0.01689239777624607, -0.021264711394906044, 0.02466539852321148, -0.014851984567940235, 0.037032801657915115, -0.019876675680279732, -0.012138374149799347, 0.012068972922861576, 0.019474145025014877, -0.019335340708494186, -0.09099964052438736, -0.02274991013109684, 0.02810772880911827, 0.012665828689932823, -0.015365558676421642, 0.014824224635958672, -0.006867308169603348, 0.051274050027132034, -0.01279075164347887, 0.018544159829616547, -0.025081809610128403, -0.008904250338673592, 0.015143472701311111, 0.0010818005539476871, -0.0035204063169658184, -0.00883484911173582, 0.00015517808787990361, -0.001337719615548849, -0.009702371433377266, 0.03095320239663124, -0.0036887056194245815, -0.007502334658056498, 0.00648212805390358, -0.003497850615531206, 0.0037962784990668297, -0.017128363251686096, -0.035006266087293625, 0.0008553771767765284, 0.003844859544187784, -0.0009750952594913542, 0.014740942046046257, -0.020015478134155273, 0.010306167416274548, -0.017433732748031616, -0.02386033907532692, -0.022028131410479546, -0.00845313910394907, -0.03114752657711506, 0.017947304993867874, -0.04105810448527336, -0.008203292265534401, 0.004445185419172049, 0.002637268276885152, -0.015129592269659042, -0.008890370838344097, -0.003622773801907897, -0.021431274712085724, 0.02367989346385002, 0.0038379195611923933, -0.00986893568187952, -0.009438645094633102, -0.022250216454267502, -0.0053716991096735, -0.0010219415416941047, 0.023582730442285538, 0.011270851828157902, 0.031980350613594055, 0.013554171659052372, -0.020806659013032913, -0.0051496136002242565, 0.0018287374405190349, -7.319721044041216e-05, -0.021264711394906044, 0.012325759045779705, 0.020737256854772568, 0.0016864637145772576, -0.022194694727659225, -0.021764403209090233, -0.008362916298210621, -0.0030155081767588854, -0.0011416595662012696, 0.009397003799676895, -0.023610491305589676, 0.011007125489413738, -0.021098146215081215, 0.002397832227870822, -0.0194186232984066, -0.018724605441093445, 0.018391476944088936, 0.016822995617985725, -0.018710725009441376, -0.005021220073103905, 0.010743398219347, -0.04183540493249893, 0.02308303862810135, 0.004878946579992771, -0.012284118682146072, -0.012679708190262318, 0.041918687522411346, -0.03558924421668053, 0.009639909490942955, 0.012742170132696629, 0.01034780777990818, -0.013762376271188259, 0.002373541472479701, 0.021084265783429146, -0.01367909461259842, 0.0005244173225946724, 0.01879400759935379, -0.00845313910394907, -0.019946077838540077, -0.021750524640083313, -0.06246161833405495, 0.014671539887785912, -0.006450897082686424, -3.3562275348231196e-05, 0.006461307406425476, -0.02226409688591957, -0.0018165920628234744, 0.003423243761062622, -0.002586951944977045, -0.0006688598077744246, -0.007710539735853672, -0.0036852355115115643, -0.01847475953400135, -0.027399830520153046, -0.03081439808011055, -0.022389020770788193, 0.004424364771693945, -0.018266553059220314, 0.02763579599559307, 0.007613377179950476, -0.026469845324754715, -0.007724420167505741, 0.014039983972907066, 0.018599681556224823, -0.023818697780370712, -0.0004957891069352627, -0.012034271843731403, 0.029898295179009438, -0.006218401249498129, -0.029787251725792885, 0.006787496153265238, 0.00024572573602199554, -0.0043514929711818695, 0.02573418617248535, -0.00616634963080287, -0.03303525596857071, 0.006967940367758274, 0.007384351454675198, 0.008078369311988354, 0.00777994142845273, -0.02197260968387127, -0.02637268416583538, 0.030842158943414688, -0.017433732748031616, -0.006263512186706066, -0.008501720614731312, -0.016670312732458115, -0.02576194703578949, 0.006346794310957193, 0.007856283336877823, 0.020765017718076706, 0.014449454843997955, -0.019793393090367317, -0.027080582454800606, 0.0099452780559659, -0.011132048442959785, -0.005180844105780125, 0.021250830963253975, -0.010528252460062504, 0.007495394442230463, 0.051912546157836914, 0.0061628795228898525, 0.012936495244503021, -0.002928755944594741, 0.01927981898188591, -0.011499878019094467, -0.019501905888319016, 0.00877238716930151, -0.0010930782882496715, -0.03064783476293087, 0.0010566423879936337, -0.016170619055628777, 0.03050903044641018, 0.019488025456666946, 0.016226140782237053, -0.016628671437501907, 0.009577448479831219, -0.01271440926939249, -0.020917702466249466, 0.03586684912443161, 0.02716386318206787, -0.01943250373005867, -0.0207233764231205, 0.004445185419172049, 0.021542318165302277, 0.018099989742040634, -0.007044282741844654, 0.008064488880336285, 0.0124853840097785, 0.004476415924727917, -0.005264126230031252, 0.0033139358274638653, -0.002894055098295212, 0.029481884092092514, 0.01549048162996769, 0.02451271563768387, -0.010063260793685913, -0.0016595704946666956, 0.028982190415263176, 0.032452281564474106, 0.003225448541343212, 0.010070201009511948, 0.0061212386935949326, -0.02291647344827652, -0.016489867120981216, 0.010722577571868896, -0.01739209145307541, -0.0032393289729952812, 0.019626827910542488, 0.03236899897456169, 0.014477214775979519, -0.0026268581859767437, -0.005718708038330078, 0.011104287579655647, -0.010035499930381775, -0.01927981898188591, -0.014810344204306602, -0.02841309644281864, -0.022000370547175407, 0.006974880583584309, 0.005104502197355032, 0.029926056042313576, 0.01961294747889042, -0.012783811427652836, 0.02841309644281864, 0.007294129114598036, 0.016961799934506416, 0.0022121823858469725, -0.0005612870445474982, -0.016850756481289864, 0.007203906774520874, 0.0028853798285126686, -0.0025782769080251455, -0.0015762883704155684, -0.0031733971554785967, -0.012651948258280754, -0.025845229625701904, 0.02340228669345379, 0.014491095207631588, 0.08228277415037155, 0.028538020327687263, -0.032313477247953415, 0.020640095695853233, -0.024054663255810738, -0.001748925307765603, 0.01850252039730549, 0.005919973365962505, 0.012839333154261112, -0.026761334389448166, 0.015046309679746628, -0.011555399745702744, -0.03175826370716095, -0.00600672559812665, -0.013311265036463737, 0.003284440143033862, 0.00807142909616232, 0.006697273813188076, -0.009459464810788631, -0.0026615590322762728, 0.0032566795125603676, 0.0021722763776779175, 0.028357574716210365, 0.0018460878636687994, -0.04025304317474365, -0.00318207242526114, 0.05074659362435341, 0.013380667194724083, 0.007523154839873314, -0.018211031332612038, 0.02573418617248535, -0.0043514929711818695, -0.039087094366550446, 0.0005352613516151905, -0.008827908895909786, -0.0011945784790441394, -0.00797426700592041, -0.02351333014667034, 0.008154711686074734, -0.0026268581859767437, 0.0059720249846577644, 0.002640738384798169, -0.023430047556757927, -0.035311635583639145, 0.027746839448809624, 0.0033451667986810207, -0.008876490406692028, -0.027274906635284424, -0.013894240371882915], "2e49a6f3-6b45-4d22-82b9-6af69ace3a5e": [-0.017703987658023834, 0.0024924795143306255, 0.007628604769706726, -0.01965859718620777, -0.015440015122294426, 0.0140619445592165, -0.0087113743647933, -0.021402278915047646, -0.007495016325265169, -0.05011676996946335, 0.01867426186800003, 0.008380918763577938, 0.006071244366466999, -0.012564347125589848, 0.009920701384544373, 0.01463848352432251, 0.016311855986714363, -0.00833873264491558, 0.03222997486591339, -0.014849413186311722, -0.01487753726541996, -0.0005637960857711732, 0.001372797298245132, -0.0020266775973141193, -0.019602350890636444, -0.0035400944761931896, 0.025916162878274918, -0.007090735249221325, -0.009189480915665627, 0.027406729757785797, 0.02463652566075325, -0.008915272541344166, -0.024144358932971954, -0.0026190371718257666, 0.0014404704561457038, 0.009695710614323616, -0.006496618036180735, 0.009850392118096352, -0.002873909892514348, -0.0038318797014653683, 0.022724101319909096, -0.009794143959879875, -0.015566572546958923, -0.005290806293487549, -0.03009255975484848, 0.03253933787345886, -0.005716180428862572, -0.010005073621869087, -0.0068692597560584545, -0.0035225169267505407, -0.015032218769192696, 0.017900854349136353, -0.019967960193753242, -0.007241901475936174, 0.0038670345675200224, 0.0023044010158628225, 0.0011504427529871464, -0.0022692461498081684, 0.021458527073264122, -0.002371195238083601, -0.0016390953678637743, 0.0031041742768138647, -0.007013394497334957, -0.0014281661715358496, -0.02687237598001957, -0.01629779301583767, -0.009519936516880989, 0.0029407041147351265, 0.02060074731707573, -0.0034100215416401625, 0.01704307645559311, 0.028447313234210014, -0.0033168611116707325, 0.012001869268715382, 0.010159755125641823, -0.027730153873562813, -0.01121440064162016, -0.019264863803982735, -0.00036099646240472794, 0.0006802465650252998, 0.005709149409085512, -0.010040228255093098, -0.00702394125983119, -0.009196511469781399, 0.021739766001701355, 0.04300142452120781, 0.0015213266015052795, 0.005811098497360945, -0.010412869974970818, -0.010532395914196968, 0.0024010769557207823, 0.005751335062086582, 0.022991279140114784, 0.030880030244588852, 0.009238697588443756, 0.017324315384030342, 0.0031270247418433428, -0.013949448242783546, 0.008226237259805202, -0.014708793722093105, -0.004636926110833883, 0.003230731701478362, -0.039429690688848495, -0.017085261642932892, -0.03273620456457138, -0.0051361252553761005, 0.018927376717329025, 0.0034504495561122894, 0.021697578951716423, 0.04463260993361473, -0.010553489439189434, 0.02552242949604988, -0.00344341853633523, -0.019307048991322517, -0.006503649055957794, -0.022386614233255386, 0.004345140885561705, -0.021599145606160164, -0.00605718232691288, -0.005044722463935614, 0.014357244595885277, 0.009604307822883129, 0.040892135351896286, -0.019138306379318237, 0.0019124244572594762, -0.007916874252259731, -0.003190303687006235, -0.01850551925599575, 0.030542543157935143, 0.006180224474519491, 0.02802545391023159, 0.008198113180696964, 0.0012743637198582292, 0.004531461745500565, -0.039260949939489365, -0.00021378548990469426, -0.01364008616656065, -0.003369593294337392, -0.01235341839492321, -0.029867568984627724, 0.025156818330287933, 0.02687237598001957, 0.004239676054567099, -0.02507244609296322, -0.006714578252285719, 0.030008189380168915, -0.006447401363402605, 0.02850356139242649, 0.012733090668916702, -0.011952652595937252, -0.006725125014781952, -0.012704966589808464, -0.009857422672212124, 0.007987184450030327, -0.005906016565859318, 0.01202999334782362, -0.01684620976448059, 0.037123531103134155, -0.02036169543862343, -0.003369593294337392, 0.014750979840755463, 0.004907618742436171, 0.0002498192188795656, 0.007832502946257591, 0.012177643366158009, 0.026858313009142876, 0.010061320848762989, -0.022386614233255386, -0.011263617314398289, -0.010483179241418839, 0.0004262526927050203, 0.041904594749212265, -0.03982342407107353, 0.0348454974591732, 0.01276121474802494, 0.004443574231117964, 0.029164472594857216, 0.01731025241315365, -0.018814880400896072, -0.012719028629362583, 0.03256746381521225, 0.00412718066945672, 0.024284977465867996, 0.017774296924471855, -0.019911712035536766, -0.01925080083310604, 0.012240922078490257, -0.009660555981099606, 0.005726726725697517, -0.00412718066945672, 0.009316038340330124, 0.0015406617894768715, -0.024439658969640732, -0.003494393080472946, -0.61152583360672, -0.0021303845569491386, 0.012240922078490257, -0.02701299451291561, 0.007417675573378801, 0.016593094915151596, -0.0015538447769358754, 0.00564235495403409, -0.0048830099403858185, 0.014033820480108261, 0.0018139907624572515, 0.00399007648229599, 0.0037369616329669952, -0.004745906218886375, -0.018069598823785782, -0.024580277502536774, 0.023033464327454567, -0.010574582032859325, -0.011826095171272755, 0.0047072358429431915, -0.023933429270982742, 0.00876059103757143, -0.0034838467836380005, -0.024102171882987022, 0.019602350890636444, 0.00601499667391181, 0.02463652566075325, 0.015946244820952415, -0.016902456060051918, 0.016818085685372353, -0.03639231249690056, 0.009161356836557388, 0.027083303779363632, -0.01759149134159088, 0.041229620575904846, -0.022963155061006546, -0.02391936630010605, 0.023694375529885292, 0.01941954530775547, 0.02165539376437664, -0.03090815246105194, 0.0009175418526865542, 0.011242524720728397, 0.027744214981794357, -0.004489275626838207, 0.011854219250380993, 0.004018200561404228, 0.008444197475910187, -0.012986205518245697, -0.016958704218268394, 0.01725400611758232, -0.027898896485567093, -0.007382520474493504, -0.007262994069606066, -0.004981443751603365, -0.012058117426931858, 0.019194554537534714, -0.01711338572204113, 0.006457947660237551, 0.010947223752737045, 0.020347632467746735, -0.0007470407872460783, -0.015538448467850685, -0.05714774131774902, -0.04856995493173599, 0.0023377982433885336, -0.01870238594710827, -0.024608401581645012, -0.0057829744182527065, -0.008380918763577938, 0.0030373800545930862, 0.004208036698400974, -0.0009043588070198894, -0.0066266912035644054, 0.009723834693431854, 0.015988430008292198, 0.032314348965883255, 0.011439391411840916, -0.004113118629902601, 0.028616055846214294, 0.01194562204182148, -0.020867925137281418, -0.004032262600958347, -0.0128596480935812, 0.049976151436567307, 0.01759149134159088, -0.028728552162647247, -0.017000891268253326, -0.0036947757471352816, -0.01247294433414936, 0.032342471182346344, 0.00996288750320673, -0.007319241762161255, -0.030542543157935143, 0.03782663121819496, 0.047360628843307495, 0.01843520812690258, 0.0004996384377591312, 0.005726726725697517, -0.022274119779467583, -0.035492345690727234, -0.03023318015038967, 0.02209131419658661, 0.0062540494836866856, 0.013281506486237049, 0.023905305191874504, -0.03422677144408226, -0.010518333874642849, 0.008345764130353928, -0.020305447280406952, -0.015594695694744587, -0.01619935967028141, -0.02622552588582039, -0.00376508547924459, 0.011305803433060646, -0.028742613270878792, 0.008205144666135311, 0.005438456777483225, -0.006134523078799248, -0.015805624425411224, -0.016143111512064934, 0.01799928769469261, -0.018632076680660248, -0.002538180910050869, -0.008416073396801949, 0.028784800320863724, 0.015074403956532478, -0.0003605570236686617, 0.006584505550563335, 0.020122641697525978, 0.008837931789457798, -0.005948202218860388, 0.02172570303082466, -0.002260457491502166, 0.011615165509283543, 0.003323892131447792, 0.011312833987176418, -0.010511303320527077, 0.01257137767970562, -0.05211356654763222, -0.00908401608467102, -0.0149619085714221, 0.015679067000746727, -0.006271627265959978, -0.0066407532431185246, -0.019560163840651512, -0.03206123411655426, 0.00647200969979167, -0.00996288750320673, -0.021528836339712143, -0.02263973094522953, -0.011432360857725143, -0.011340958066284657, 0.027575472369790077, 0.021936632692813873, -0.0035049396101385355, 0.022049129009246826, -0.02840512804687023, -0.01961641199886799, -0.026914561167359352, -0.01463848352432251, 0.005332992412149906, -0.000747480196878314, 6.371818744810298e-05, -0.03152687847614288, -0.018224280327558517, -0.018955500796437263, 0.02165539376437664, 0.001863207551650703, -0.02809576503932476, 0.009850392118096352, -0.02141634188592434, 0.004401388578116894, 0.004246707074344158, -0.016832146793603897, -0.010701139457523823, -0.017633678391575813, 0.0016874333377927542, -0.003642043564468622, -0.00642279302701354, 0.018660200759768486, 0.027772339060902596, -0.00578649016097188, -0.007811409886926413, 0.02725204825401306, -0.001879027346149087, 0.03951406478881836, 0.0019212131155654788, -0.0222319345921278, 0.0011161668226122856, 0.00114780617877841, 0.026928622275590897, -0.009259790182113647, -0.0001565489947097376, -0.0077551621943712234, -0.003972499165683985, -0.012008900754153728, -0.0217538271099329, -0.006542319431900978, 0.018786758184432983, 0.03189248964190483, 0.004239676054567099, -0.009632431901991367, -0.0014712308766320348, 0.023764684796333313, -0.037123531103134155, 0.0116573516279459, -0.0200663935393095, 0.01877269521355629, 0.010947223752737045, -0.0004431709530763328, -0.015608757734298706, -0.008226237259805202, -0.015932181850075722, 0.0033537736162543297, 0.00541384844109416, -0.013921325094997883, 0.01992577500641346, -0.02240067720413208, -0.005427910480648279, 0.004650988150388002, 0.011397206224501133, 0.007558295037597418, -0.0008445955463685095, -0.0009342404082417488, 0.013140887022018433, 0.0017032530158758163, 0.024313101544976234, 0.019771093502640724, -0.030205056071281433, 0.0038951586466282606, 0.036617301404476166, -0.004471698310226202, -0.012852616608142853, 0.023595942184329033, 0.0036139197181910276, 0.04395763576030731, -0.002919611055403948, 0.03425489738583565, -0.021402278915047646, 0.004580678418278694, -0.005104485899209976, 0.022105377167463303, -0.024720897898077965, 0.04499822109937668, 0.005825160536915064, 0.025100570172071457, 0.0019089089473709464, -0.029698826372623444, 0.011488608084619045, -0.0003627542173489928, 0.017703987658023834, -0.011601104401051998, -0.001882542739622295, 0.02975507453083992, -0.029839444905519485, -0.0019563680980354548, 0.0018544188933447003, 0.02548024244606495, 0.02521306648850441, -0.017886793240904808, 0.010075382888317108, -0.004545523319393396, -0.00968867912888527, 0.0046545034274458885, -0.003976014908403158, -0.008985582739114761, -0.02002420835196972, -0.013520559296011925, -0.00541384844109416, 0.01247294433414936, -0.03253933787345886, 0.0006411367794498801, -0.01771804876625538, -0.003026833524927497, -0.009140263311564922, 0.0014800196513533592, 0.016241544857621193, -0.0006943084881640971, 0.02341313660144806, -0.0015793320490047336, -0.026914561167359352, 0.022513173520565033, 0.015580634586513042, -0.005438456777483225, 0.00431350152939558, -0.02670363150537014, 0.006461463402956724, 0.014610360376536846, 0.032961197197437286, 0.01210030261427164, 0.010173816233873367, -0.0003214472671970725, 0.0008182293968275189, 0.005097454879432917, 0.001318307244218886, 0.027673905715346336, -0.020150765776634216, -0.005568529944866896, 0.010834728367626667, 0.016579031944274902, 0.009709772653877735, -0.008605909533798695, 0.0032483090180903673, 0.05006052181124687, -0.01639622636139393, -0.01323228981345892, -0.014736917801201344, -0.02249911054968834, -0.05188857391476631, 0.009660555981099606, -0.010483179241418839, 0.0011135302484035492, -0.011059719137847424, -0.011875311844050884, -0.0010810119565576315, -0.004485760349780321, -0.005800552200525999, 0.006060698069632053, 0.005361116025596857, -0.020080456510186195, -0.03026130422949791, -0.003519001416862011, 0.03161124885082245, 0.08881524205207825, 0.025677110999822617, -0.001785866916179657, 0.026745818555355072, -0.017900854349136353, 0.0007628604653291404, -0.024242792278528214, -0.016888394951820374, 0.0299238171428442, 0.005979841575026512, -0.01932111196219921, -0.004949804395437241, -0.001716436119750142, 0.01087691355496645, 0.01759149134159088, -0.0065880208276212215, 0.003116478445008397, -0.02098042145371437, -0.013021360151469707, -0.009119170717895031, -0.016930580139160156, -0.003343227319419384, 0.0355767197906971, -0.00015786729636602104, 0.04246707260608673, 0.021331969648599625, 0.031836241483688354, -0.0032219430431723595, 0.017127448692917824, -0.03931719437241554, -0.018519580364227295, 0.016185298562049866, -0.0021145648788660765, 0.01605874113738537, -0.023427199572324753, 0.022991279140114784, 0.007720007561147213, -0.021571021527051926, -0.006612629164010286, 0.00798015296459198, -0.0038037558551877737, 0.013394001871347427, 0.01377367414534092, -0.004390842281281948, 0.014265842735767365, -0.013569775968790054, -0.004942773375660181, 0.03402990475296974, -0.023806871846318245, -0.0019247286254540086, 0.022442862391471863, 0.0014624422183260322, 0.005702118389308453, 0.01446974091231823, 0.00683762039989233, -0.008929334580898285, -0.011474546045064926, -0.02358188107609749, -0.001879027346149087, -0.029164472594857216, -0.04055464640259743, -0.025663048028945923, 0.0008924940484575927, -0.011144090443849564, -0.003077808069065213, -0.03422677144408226, -0.016002492979168892, 0.005765397101640701, -0.029389463365077972, -0.0004427315143402666, -0.0032377627212554216, -0.03310181573033333, -0.04809184744954109, 0.0031498754397034645, 0.041257742792367935, 0.027434853836894035, 0.010300373658537865, -0.0010379472514614463, -0.0006147706299088895, 0.010103506967425346, -0.017197757959365845, -0.01761961542069912, 0.005941171199083328, -0.02144446410238743, -0.011263617314398289, -0.03450801223516464, -0.0241584200412035, -0.008655126206576824, -0.0017014952609315515, 0.02778640203177929, 0.009027767926454544, -0.02304752729833126, 0.009667586535215378, 0.010363653302192688, 0.014821289107203484, 0.015172838233411312, 0.010729263536632061, 0.0024344741832464933, 0.014765040948987007, -0.03208935633301735, 0.014343183487653732, -0.027406729757785797, -0.006299750879406929, -0.032989319413900375, -0.0018843004945665598, 0.01506034191697836, -0.00831764005124569, -0.0081699900329113, -0.0032272161915898323, -0.01925080083310604, 0.005565014202147722, -0.007502047345042229, -0.008957458660006523, -0.008591847494244576, 0.0043310788460075855, -0.001863207551650703, 0.01120033860206604, -0.00020587565086316317, 0.0007110070437192917, -0.00825436133891344, 0.005849768873304129, -0.02846137434244156, 0.019714845344424248, -0.009013705886900425, -0.0003095824795309454, 0.019813278689980507, 0.02375062368810177, -0.032145604491233826, -0.040582772344350815, 0.019433606415987015, 0.011305803433060646, -0.002559273736551404, -0.014441616833209991, -0.023975614458322525, -0.015341580845415592, -0.015904059633612633, -0.001644368632696569, -0.004503337666392326, -0.013436187990009785, 0.0024151389952749014, -0.038079746067523956, 0.008978551253676414, 0.00394789082929492, -0.000996640301309526, -0.015271271578967571, -0.031048772856593132, -0.039289072155952454, -0.010701139457523823, 0.00872543640434742, 0.02064293436706066, -0.011762816458940506, -0.010504272766411304, -0.019869526848196983, -0.012072179466485977, -0.02398967742919922, -0.003422325709834695, -0.012599501758813858, -0.005677510052919388, 0.04212958365678787, 0.015875935554504395, 0.025016197934746742, 0.015538448467850685, 0.018224280327558517, 0.009484780952334404, -0.005002536810934544, -0.015875935554504395, -0.012311232276260853, -0.013154949061572552, -0.0016285489546135068, 0.0074457996524870396, -0.001083648530766368, -0.003779147518798709, -0.0004701962461695075, 0.015397829003632069, -0.011038626544177532, 0.0067637949250638485, 0.00628568883985281, -0.007705945521593094, -0.02829263173043728, -0.045560698956251144, -0.013478373177349567, 0.024313101544976234, -0.014497864060103893, -0.018646137788891792, -0.018238341435790062, 0.002082925522699952, 0.028067640960216522, 0.0015081434976309538, 0.024524031206965446, 0.0016557939816266298, 0.01362602412700653, 0.00458419369533658, 0.015032218769192696, 0.0074739232659339905, 0.0042256140150129795, -0.015524386428296566, -0.01497597061097622, -0.037770383059978485, -0.008184051141142845, 0.02233036793768406, 0.03355179727077484, 0.021360093727707863, 0.0021092917304486036, -0.004162335302680731, 0.012177643366158009, 0.016410289332270622, -0.029051976278424263, 0.01152376364916563, -0.008198113180696964, -0.03177999332547188, 0.0036490745842456818, -0.04468885809183121, -0.010736294090747833, 0.024411534890532494, -0.023370951414108276, 0.0034680268727242947, -0.0013736761175096035, 0.0137596121057868, -0.023441260680556297, -0.017296191304922104, 0.027533287182450294, -0.010110537521541119, 0.024256853386759758, 0.016480598598718643, 0.017577430233359337, -0.0007189168827608228, 0.0011144090676680207, -0.010208971798419952, -0.012866678647696972, 0.010504272766411304, -0.007154013961553574, 0.011024564504623413, 0.03273620456457138, -0.009287914261221886, -0.016522783786058426, 0.00027772338944487274, -0.011903435923159122, 0.005543921608477831, -0.01853364333510399, 0.012733090668916702, 0.00035023028613068163, 0.0031498754397034645, -0.03616731986403465, -0.011158152483403683, -0.017408687621355057, 0.0008999644196592271, -0.01454005017876625, 0.012494037859141827, 0.006689969915896654, -0.006967693567276001, 0.02619740180671215, 0.01123549323529005, -0.013654148206114769, 0.00823326874524355, -0.014378338120877743, 0.0007611027103848755, -0.00220245192758739, 0.002691104542464018, 0.004450605250895023, -0.008289515972137451, 0.0002764051023405045, 0.04401388391852379, -0.023300642147660255, -0.00417639734223485, 0.014568174257874489, 0.029501959681510925, -0.005213466007262468, -0.0037686009891331196, -0.0025487274397164583, 0.03689854219555855, -0.03374866768717766, -0.02273816429078579, 0.002053043805062771, 0.00481973122805357, 0.036786045879125595, -0.03155500441789627, -0.009196511469781399, -0.0006051030359230936, 0.00963946245610714, 0.00840201135724783, 0.007748131174594164, -0.013394001871347427, -0.00353306345641613, -0.019503915682435036, 0.003255340037867427, -0.018238341435790062, 0.008198113180696964, 0.006496618036180735, 0.021303845569491386, -0.04367639869451523, -0.0028879716992378235, -0.015257209539413452, -0.02663332223892212, 0.013330723159015179, 0.005825160536915064, -0.0056986031122505665, -0.010187878273427486, 0.022752225399017334, -0.0021725704427808523, 0.01776023581624031, 0.03507049009203911, 0.015102528035640717, -0.03734852373600006, 0.016818085685372353, -0.01603061705827713, 0.006995817180722952, 0.00999804213643074, -0.001989765092730522, -0.031189391389489174, -0.021936632692813873, 0.025845853611826897, 0.0038107868749648333, 0.01004725880920887, -0.00371938431635499, 0.021064791828393936, 0.014849413186311722, 0.0051783109083771706, -0.008162958547472954, -0.023160021752119064, 0.019025810062885284, -0.005181826651096344, 0.02477714605629444, 0.00302507565356791, -0.007748131174594164, 0.018730510026216507, 0.0036139197181910276, 0.004886525683104992, -0.008177020587027073, -0.04381701722741127, -0.009758989326655865, -0.013900231570005417, -0.001805202104151249, 0.008022339083254337, 0.02535368502140045, 0.005452518817037344, -0.03222997486591339, -0.03957030922174454, 0.023638127371668816, 0.002720986260101199, 0.004067417234182358, 0.03321431204676628, -0.005157217849045992, 0.01735243946313858, 0.03507049009203911, -0.012205767445266247, -0.028137950226664543, -0.03374866768717766, -0.03360804542899132, -0.049694910645484924, -0.016972767189145088, 0.008964489214122295, 0.02300534024834633, 6.0751994169550017e-05, -0.029192596673965454, -0.02379280887544155, -0.03290494903922081, -0.029023852199316025, -0.019560163840651512, -0.008915272541344166, 0.02718173898756504, 0.03138625994324684, 0.012768245302140713, 0.005375178065150976, 0.02338501252233982, -0.0174227487295866, 0.0189836248755455, -0.033833038061857224, 0.0009983980562537909, -0.010462086647748947, -0.022611606866121292, 0.03923282399773598, -0.01462442148476839, -0.04232645034790039, 0.0038670345675200224, 0.009674618020653725, 0.005565014202147722, 0.005529859568923712, -0.0030110138468444347, -0.0017252247780561447, -4.995835115551017e-05, 0.0004636047233361751, 0.0065458351746201515, 0.01446974091231823, 0.03951406478881836, 0.001549450447782874, -0.023778747767210007, 0.00999804213643074, 0.018547704443335533, 0.005761881824582815, 0.0024538093712180853, 0.006338421255350113, 0.00921760406345129, -0.004489275626838207, 0.020221075043082237, 0.003835395211353898, -0.004629895091056824, 0.0037826630286872387, 0.004302954766899347, 0.01028631255030632, 0.008563724346458912, 0.024214668199419975, 0.03599857538938522, -0.0009878515265882015, 0.0005440214881673455, -0.014708793722093105, 0.008507476188242435, -0.007389551494270563, -0.013843984343111515, 0.03225810080766678, -0.028714489191770554, -0.005670479033142328, -0.0017225882038474083, 0.01245185174047947, -0.012360448949038982, -0.026000535115599632, -0.011776878498494625, -0.004197490401566029, -0.015566572546958923, -0.0016373376129195094, 0.0017269825330004096, -0.024116234853863716, -0.005839222110807896, -0.008964489214122295, 0.008901210501790047, 0.006528257392346859, -0.0019915227312594652, 0.0063981846906244755, -0.03507049009203911, -0.017647739499807358, -0.005051753483712673, 0.004292408470064402, -0.03279245272278786, -0.0008828264544717968, 0.020825739949941635, 0.0007386914803646505, -0.000493486353661865, 0.22026629745960236, 0.0031674529891461134, 0.0026612228248268366, 0.024594340473413467, 0.017563369125127792, -0.0149619085714221, 0.011425329372286797, 0.010483179241418839, 0.0051255784928798676, 0.010518333874642849, -0.0007162803085520864, -0.009287914261221886, -0.017886793240904808, -0.005132609512656927, 0.014174439944326878, -0.013886169530451298, -0.039429690688848495, -0.011467515490949154, -0.022344429045915604, 0.003779147518798709, 0.0029653124511241913, -0.008957458660006523, -0.00986445415765047, -0.0022481533233076334, 0.02396155335009098, 0.005452518817037344, -0.015510324388742447, -0.0003645119722932577, 0.011340958066284657, 0.02375062368810177, -0.006123976781964302, 0.01925080083310604, 0.0107573876157403, -0.017886793240904808, 0.0031692106276750565, -0.01850551925599575, 0.017816483974456787, -0.03321431204676628, 0.007705945521593094, 0.03222997486591339, 0.0033818974625319242, -0.0007914237794466317, -0.010665984824299812, -0.005304868333041668, 0.01650872267782688, -0.009674618020653725, -0.018491456285119057, 0.014343183487653732, 0.011453453451395035, 0.014012726955115795, -0.00578649016097188, 0.00605015130713582, 0.021219473332166672, 0.02466464973986149, 0.003047926351428032, 0.005399786401540041, -0.019307048991322517, 0.0037826630286872387, -0.021838199347257614, 0.0008002124959602952, -0.026619261130690575, 0.017127448692917824, -0.011551886796951294, 0.022625667974352837, -0.017985226586461067, -0.002953008282929659, -0.01123549323529005, 0.0326799601316452, -0.007776255253702402, 0.008514506742358208, 0.010314435698091984, -0.004939258098602295, -0.03057066723704338, -0.014736917801201344, -0.031189391389489174, -0.017844608053565025, 0.02867230400443077, 0.010701139457523823, 0.03636418655514717, 0.016480598598718643, 0.0022481533233076334, 0.002197178779169917, -0.024074047803878784, -0.025564614683389664, 0.0041834283620119095, -0.02490370348095894, 0.02083980105817318, -0.037264153361320496, -0.01069410890340805, -0.019335173070430756, -0.006524742115288973, -0.0017331346170976758, -0.011137059889733791, -0.012711997143924236, 0.010532395914196968, -0.012676842510700226, -0.012719028629362583, 0.019967960193753242, -0.003102416405454278, -0.016958704218268394, -0.020446067675948143, 0.05737273395061493, 0.027406729757785797, 0.009027767926454544, -0.017886793240904808, -0.00679543474689126, -0.0039021894335746765, 0.024284977465867996, 0.022344429045915604, 0.0029178534168750048, -0.005115032196044922, -0.018378961831331253, 0.0029073068872094154, 0.006619660183787346, 0.01238857302814722, 0.012346386909484863, 0.0290801003575325, -0.008212175220251083, 0.012641687877476215, -0.020122641697525978, 0.016621217131614685, -0.011256586760282516, 0.01771804876625538, 0.004795122891664505, -0.032961197197437286, -0.02036169543862343, -0.007161044981330633, 0.016761837527155876, -0.0268020648509264, -0.039598435163497925, 0.019152367487549782, -0.014610360376536846, 0.022372553125023842, -0.03093627654016018, -0.011629227548837662, -0.011172214522957802, -0.0001974165061255917, -0.0030321066733449697, -0.00862700305879116, -0.003968983888626099, -0.003077808069065213, 0.007375489920377731, 0.0006037847488187253, -0.004162335302680731, -0.0033326807897537947, -0.027083303779363632, 0.01927892491221428, 0.004264284390956163, 0.0049884747713804245, -0.03225810080766678, 0.012219829484820366, 0.0111159672960639, -0.008648095652461052, -0.002220029477030039, 0.04848558455705643, -0.02694268524646759, -0.022611606866121292, -0.02189444750547409, 0.00413421168923378, 0.0047775455750525, -0.02588803879916668, 0.0017269825330004096, 0.05171982944011688, -0.0016496417811140418, -0.030655037611722946, -0.0018948470242321491, -0.1810053437948227, 0.010799572803080082, 0.00683762039989233, -0.018927376717329025, 0.020966358482837677, 0.02300534024834633, 0.016593094915151596, 0.0019212131155654788, 0.0014721098123118281, 0.009955856017768383, -0.003891643136739731, 0.00019467003585305065, -0.022991279140114784, -0.0017261035973206162, -0.0004991990281268954, 0.016593094915151596, 0.008205144666135311, 0.021374154835939407, 0.05306977778673172, 0.0013209439348429441, 0.0008046068833209574, -0.029980065301060677, 0.0033572891261428595, -0.011010502465069294, 0.0182664655148983, 0.004538492299616337, -0.02398967742919922, 0.03442363813519478, 0.011291741393506527, -0.021022606641054153, 0.015215023420751095, -0.011144090443849564, 0.016902456060051918, -0.0019282441353425384, 0.025156818330287933, 0.006528257392346859, 0.01046911720186472, -0.015510324388742447, -0.021402278915047646, 0.014427554793655872, 0.018041474744677544, 0.0024151389952749014, 0.011017533019185066, 0.0016452474519610405, 0.0005958749097771943, 0.025156818330287933, 0.013492435216903687, -0.010771449655294418, -0.0011231978423893452, -0.013717426918447018, 0.03425489738583565, -0.028208259493112564, 0.007656728383153677, -0.00620131753385067, 0.020699182525277138, 0.005638839676976204, -0.001959883375093341, 0.030992524698376656, -0.007558295037597418, -0.010933161713182926, -0.008985582739114761, -0.005825160536915064, 0.019672660157084465, -0.00344341853633523, -0.006363029591739178, -0.023019403219223022, 0.008275453932583332, 0.0034135370515286922, 0.008830901235342026, -0.0011899920646101236, -6.17407204117626e-05, -0.0020600748248398304, 0.021430402994155884, 0.026113029569387436, 0.014610360376536846, 0.005273228976875544, -0.031217515468597412, 0.002272761659696698, 0.03459238260984421, 0.0008810686995275319, 0.009287914261221886, 0.004436543211340904, -0.015271271578967571, -0.001493202755227685, -0.025409933179616928, 0.00500605208799243, 0.010574582032859325, 0.005336507689207792, -0.024003738537430763, 0.011917497962713242, 0.026450516656041145, -0.026928622275590897, 0.017774296924471855, -0.01680402271449566, 0.01622748374938965, 0.014947846531867981, 0.027828587219119072, 0.004879494663327932, 0.011952652595937252, -0.009920701384544373, -0.002448535989969969, 0.027814526110887527, -0.023019403219223022, 0.010194909758865833, 0.04435137286782265, 0.02432716265320778, -0.015088465996086597, 0.00022334321693051606, 0.026928622275590897, -0.007727038115262985, -0.026352083310484886, 0.006197801791131496, 0.031667497009038925, 0.004752937238663435, -0.010019135661423206, 0.04435137286782265, -0.008830901235342026, -0.02792702056467533, 0.031020648777484894, -0.010223033837974072, 0.04069526493549347, -0.007776255253702402, -0.022513173520565033, 0.006239987909793854, -0.0012515130219981074, -0.006718093995004892, -0.10653328895568848, -0.04097650572657585, 0.02840512804687023, 0.009161356836557388, -0.009280882775783539, 0.007027456536889076, -0.012022961862385273, 0.028278570622205734, -0.002237606793642044, 0.030655037611722946, -0.0182664655148983, -0.0017814725870266557, -0.0025610316079109907, -0.00011414344044169411, 0.016649341210722923, -0.004844339564442635, -0.019138306379318237, 0.00046580188791267574, -0.007154013961553574, 0.029361339285969734, 0.0070169102400541306, -0.004172882065176964, 0.009379317052662373, 0.00037769501795992255, -0.005399786401540041, -0.027673905715346336, -0.03360804542899132, 0.015327518805861473, 0.003933828789740801, 0.009301976300776005, 0.033833038061857224, -0.02165539376437664, 0.012051085941493511, -0.020994482561945915, -0.029220720753073692, -0.024509968236088753, -0.008071555756032467, -0.01958828791975975, 0.012951050885021687, -0.043732646852731705, -0.005768912378698587, 0.008022339083254337, 0.009829298593103886, -0.028798861429095268, -0.018927376717329025, 0.003585795871913433, -0.004039293620735407, 0.02578960545361042, 0.03329868242144585, 0.001073980936780572, -0.0014044366544112563, -0.012465913780033588, -0.016550907865166664, -0.020586686208844185, 0.031864363700151443, 0.009273852221667767, 0.016930580139160156, 0.014251780696213245, -0.027533287182450294, 0.004738875199109316, -0.007516109384596348, -0.012599501758813858, -0.011502670124173164, 0.01506034191697836, 0.016733713448047638, -0.0036771984305232763, -0.0041834283620119095, -0.016579031944274902, 0.001343794516287744, 0.009836330078542233, -0.0003403429873287678, 0.014708793722093105, -0.017900854349136353, 0.014090067707002163, -0.020896049216389656, -0.011826095171272755, -0.011840157210826874, -0.020558562129735947, 0.01816803216934204, 0.020755428820848465, -0.02144446410238743, -0.010982378385961056, 0.009695710614323616, -0.027969207614660263, 0.0326799601316452, 3.383655348443426e-05, -0.003631497034803033, -0.0033010414335876703, 0.04198896512389183, -0.03259558603167534, -0.005434941500425339, 0.0213882178068161, 0.027505163103342056, -0.0051642488688230515, -0.001995038241147995, 0.008001246489584446, -0.015650944784283638, -0.009822268038988113, 0.02687237598001957, -0.006995817180722952, -0.026928622275590897, -0.0008463532431051135, -0.05883517488837242, 0.018139908090233803, -0.014125223271548748, -0.002402834827080369, 0.005529859568923712, -0.029333215206861496, -0.012184674851596355, 0.0008788715349510312, -0.0036174352280795574, 0.013562745414674282, -0.012796369381248951, 0.019067997112870216, -0.023202208802103996, -0.028587931767106056, -0.026689570397138596, -0.026886437088251114, 0.010546457953751087, -0.014343183487653732, 0.02192257158458233, 0.009991011582314968, -0.006085306406021118, -0.005069330800324678, 0.017071200534701347, 0.01299323607236147, -0.022681916132569313, 0.003891643136739731, -0.02100854553282261, 0.03059879131615162, -0.0042361607775092125, -0.03228622302412987, 0.005958748981356621, -0.008648095652461052, 0.010440993122756481, 0.03386116027832031, -0.021711641922593117, -0.029839444905519485, 0.005090423859655857, 0.008155927993357182, 0.01079254224896431, 0.017085261642932892, -0.02944571152329445, -0.019967960193753242, 0.028081702068448067, -0.028995728120207787, -0.00793093629181385, -0.005375178065150976, -0.017408687621355057, -0.0200663935393095, 0.0015503293834626675, 0.013056514784693718, 0.012346386909484863, 0.006661845836788416, -0.024214668199419975, -0.028826985508203506, 0.009667586535215378, -0.02009451761841774, 0.0055509526282548904, 0.02196475677192211, 0.0063454522751271725, 0.008120772428810596, 0.04286080598831177, 0.00879574567079544, 0.020207013934850693, -0.011938590556383133, 0.028039516881108284, -0.02453809231519699, -0.03670167550444603, 0.008036401122808456, 0.0038951586466282606, -0.014990032650530338, 0.006953631527721882, -0.02304752729833126, 0.025944286957383156, 0.03318618983030319, 0.01463848352432251, -0.01290886476635933, 0.010504272766411304, -0.009716803207993507, -0.006232956890016794, 0.03192061185836792, 0.017802421003580093, -0.011544856242835522, -0.02961445413529873, 0.008591847494244576, 0.02141634188592434, 0.003453965066000819, -0.01612905040383339, 0.01663528010249138, 0.024102171882987022, -0.00038824148941785097, -0.0027719608042389154, -0.00031112050055526197, 0.005431425757706165, 0.026183340698480606, 0.0049884747713804245, 0.030823782086372375, -0.02944571152329445, -0.0014132254291325808, 0.002835239516571164, 0.02975507453083992, 0.003192061325535178, 0.02321626991033554, 0.0009061165037564933, -0.02975507453083992, -0.008071555756032467, 0.026000535115599632, -0.02256941981613636, -0.0033010414335876703, 0.031667497009038925, 0.02304752729833126, 0.009526967070996761, -0.001427287352271378, -0.01152376364916563, 0.01336587779223919, -0.02141634188592434, 0.012508098967373371, -0.007189169060438871, -0.024144358932971954, -0.02585991472005844, 0.03225810080766678, 0.0158618725836277, 0.025128694251179695, 0.0396546833217144, -0.013379939831793308, 0.029051976278424263, 0.020446067675948143, 0.016382165253162384, -0.005336507689207792, 0.003538336604833603, -0.020375756546854973, 0.010138661600649357, 0.015144714154303074, -0.0054173641838133335, -0.012233891524374485, -0.004658019170165062, -0.0038283641915768385, -0.020713243633508682, 0.02531149983406067, 0.0016566728008911014, 0.08735279738903046, 0.03568921610713005, -0.027322357520461082, 0.010883945040404797, -0.029867568984627724, -0.004092025570571423, 0.014919722452759743, 0.012838555499911308, 0.006767310667783022, -0.03335493057966232, 0.0049779280088841915, -0.008922304026782513, -0.019982023164629936, -0.01941954530775547, -0.024481844156980515, -0.0005602805758826435, -0.0070028482005000114, 0.012747152708470821, -0.004201005678623915, 0.00371938431635499, 0.0011618681019172072, 0.007720007561147213, 0.025241190567612648, -0.0012515130219981074, -0.04797935485839844, 0.004974412731826305, 0.04030153155326843, 0.008036401122808456, -0.005069330800324678, -0.03560484200716019, 0.026745818555355072, -0.01193156000226736, -0.03043004684150219, -0.004629895091056824, 0.0014202563324943185, -0.0005119426641613245, 0.0008784320671111345, -0.019194554537534714, 0.0024872063659131527, 0.008514506742358208, 0.014582236297428608, -0.0010493726003915071, -0.023441260680556297, -0.03411427512764931, 0.016593094915151596, 0.0037686009891331196, -0.0050833928398787975, -0.028784800320863724, -0.02725204825401306], "28142fd1-8d5d-43ef-a8b5-9aad252d4444": [-0.015441293828189373, -0.009424464777112007, -0.0007485391688533127, -0.026277288794517517, -0.005763751454651356, 0.013110129162669182, -0.02874390408396721, -0.01904853992164135, -0.0273894052952528, -0.04305882379412651, 0.02128702774643898, 0.024822985753417015, 0.0022028437815606594, 0.0033096126280725002, 0.010044682770967484, 0.008034320548176765, 0.0112993773072958, -0.010764705948531628, 0.02251320704817772, -0.011078380048274994, -0.016867082566022873, -0.010978574864566326, -0.0019087749533355236, 0.00014269027451518923, -0.031053682789206505, -0.0010720150312408805, 0.03279314562678337, -0.022841138765215874, -0.008911180309951305, 0.043515078723430634, 0.012354460544884205, -0.030055630952119827, -0.01852099783718586, -0.010429645888507366, -0.01693837158381939, -0.005589092615991831, 0.011891079135239124, -0.0010238946415483952, 0.004284495487809181, 0.015298714861273766, 0.03427596390247345, 0.009666848927736282, -0.00831947848200798, -0.01672450453042984, -0.020003817975521088, 0.04442758113145828, -0.004737183451652527, -0.016425088047981262, 0.0037284379359334707, 0.008761473000049591, 0.0029121737461537123, 0.024951305240392685, -0.027289599180221558, 0.007970159873366356, 0.000990923261269927, 0.004512622021138668, 0.008854148909449577, 0.006455259397625923, -0.006683385465294123, -0.0012698431964963675, 0.0010390436509624124, -0.013922829180955887, -0.015298714861273766, -0.013509349897503853, -0.03444705903530121, -0.009360304102301598, 0.005218387581408024, -0.0016708463663235307, 0.02542181685566902, 0.0018838236574083567, 0.02669076807796955, 0.012796455062925816, -0.008875535801053047, -0.0005368986167013645, -0.0018749124137684703, -0.029570862650871277, 0.005393046420067549, -0.011577405966818333, -0.011185313574969769, 0.009973393753170967, 0.008490572683513165, 0.004013595636934042, -0.004648071713745594, -0.006690514273941517, 0.0380970798432827, 0.03327791392803192, -0.008968212641775608, 0.008604636415839195, -0.012518426403403282, -0.01468562614172697, -0.011249474249780178, -0.0006661107763648033, 0.02435247413814068, 0.0242669265717268, -0.004926100838929415, 0.005029470194131136, 0.011613050475716591, -0.0061380211263895035, -0.0017635226249694824, -0.03156696632504463, -0.02479446865618229, 0.00970249343663454, -0.024822985753417015, -0.006266342476010323, -0.0276032742112875, 0.013986988924443722, 0.014272146858274937, -0.016439346596598625, 0.017850877717137337, 0.01847822405397892, -0.017280561849474907, 0.04208928719162941, -0.009289015084505081, -0.043657656759023666, -0.009353174827992916, -0.01869209297001362, 0.009552786126732826, -0.0319661870598793, -0.010279937647283077, -0.007535294629633427, 0.01306022610515356, 0.013430931605398655, 0.034874796867370605, -0.019818466156721115, 0.015769224613904953, 0.012368719093501568, 0.01259684469550848, -0.014229373075067997, 0.01864931918680668, -0.0016057947650551796, 0.021401092410087585, -8.304106449941173e-05, 0.008034320548176765, -0.0008082441054284573, -0.03652871027588844, 0.0025468154344707727, -0.0010550838196650147, -0.0008750779670663178, -0.0050651151686906815, -0.018820414319634438, 0.018934477120637894, 0.020773744210600853, 0.004156174603849649, -0.040178731083869934, -0.013972731307148933, 0.03173806145787239, -0.00487263360992074, 0.02097335457801819, 0.008283833973109722, -0.01178414560854435, -0.008005804382264614, -0.01404402032494545, -0.01316716056317091, 0.0050936308689415455, 0.010543708689510822, 0.011064121499657631, -0.0004448906984180212, 0.026918895542621613, -0.015469809994101524, 0.001239545177668333, 0.0068010129034519196, 0.01729482039809227, 0.004291624762117863, -0.008789988234639168, 0.006394663359969854, 0.028758162632584572, 0.017879392951726913, -0.013010323978960514, -0.02027471922338009, -0.015897545963525772, -0.008725828491151333, 0.04556821286678314, -0.04303031042218208, 0.027232568711042404, 0.004990261048078537, 0.009046630933880806, 0.00781332328915596, 0.008034320548176765, -0.033334944397211075, -0.0020103624556213617, 0.015384262427687645, 0.0028088041581213474, 0.023853449150919914, 0.021044643595814705, -0.008447798900306225, -0.015498325228691101, 0.002627016045153141, -0.007563810329884291, -0.00016407710791099817, -0.007970159873366356, 0.005788702983409166, 0.006904382724314928, -0.029428282752633095, -0.018406935036182404, -0.6036220192909241, -0.02155792899429798, 0.014521660283207893, -0.01216197945177555, -0.016924114897847176, 0.010999961756169796, 0.006241390947252512, 0.0011557801626622677, -0.0044199456460773945, 0.028159331530332565, -0.0038353721611201763, 0.004494799766689539, 0.009802298620343208, -0.010237164795398712, -0.02365383878350258, -0.020046591758728027, 0.018934477120637894, -0.010037553496658802, -0.011313634924590588, 0.008055707439780235, -0.02979898825287819, 0.013053097762167454, -0.016924114897847176, -0.009645462036132812, -0.0008946825400926173, -0.004252415616065264, 0.01760849356651306, 0.03384822979569435, 0.0037783405277878046, 0.013359641656279564, -0.037555281072854996, 0.01746591366827488, 0.02878667786717415, -0.02251320704817772, 0.0486479178071022, -0.009795170277357101, -0.017522946000099182, 0.041319362819194794, 0.03416190296411514, 0.024965563789010048, -0.022727075964212418, -0.0022010616958141327, -0.007528165355324745, 0.03410487249493599, 0.013152902945876122, 0.00705765513703227, 0.0007485391688533127, -0.003131388919427991, -0.016182703897356987, -0.0066869501024484634, -0.0020745228976011276, -0.0157121941447258, -0.006808142177760601, 0.0048191663809120655, 0.0033915953245013952, -0.0029121737461537123, 0.015926063060760498, -0.015341488644480705, 0.013373900204896927, 0.00023391848662868142, 0.023582547903060913, -0.001142413355410099, 0.0016966888215392828, -0.03875294327735901, -0.04494086652994156, -0.007246572058647871, -0.0008483444107696414, -0.03208025172352791, -0.008932567201554775, -0.010465290397405624, 0.004284495487809181, -0.02221379056572914, 0.022684302181005478, -0.020431555807590485, 0.013259836472570896, 0.019333697855472565, 0.03687090054154396, 0.0030226726084947586, -0.0009499318548478186, 0.02515091560781002, 0.002479090355336666, -0.015526841394603252, -0.0034058531746268272, -0.019561823457479477, 0.03273611515760422, 0.03900958597660065, -0.027246825397014618, -0.0032311941031366587, -0.003498529549688101, -0.0015033162198960781, 0.03550214320421219, 0.03051188215613365, -0.002422058954834938, -0.037070512771606445, 0.04568227753043175, 0.037498246878385544, 0.012482781894505024, -0.003910226281732321, -0.004787086043506861, -0.01663895696401596, -0.03230837732553482, -0.013473705388605595, 0.0092818858101964, -0.006195052992552519, 0.019077055156230927, 0.02124425396323204, -0.024209896102547646, -0.004566088784486055, 0.01803622953593731, -0.024480795487761497, -0.021614959463477135, -0.0017661959864199162, -0.018292872235178947, -0.0017243134789168835, 0.0013500439235940576, -0.027104247361421585, 0.011598792858421803, 0.00825531780719757, -0.010650643147528172, -0.021301286295056343, -0.024281185120344162, 0.017751071602106094, -0.003856759052723646, -0.0043130116537213326, -0.00829809159040451, 0.014015505090355873, 0.01579774171113968, 0.008012933656573296, 0.0075851972214877605, 0.030968135222792625, 0.00420251302421093, 0.004844117909669876, 0.016795793548226357, -0.012368719093501568, 0.015042073093354702, 0.008027191273868084, 0.01993252895772457, 0.0025646379217505455, -0.002422058954834938, -0.04454164579510689, 0.002411365509033203, -0.01813603565096855, 0.022969460114836693, 0.005603350233286619, -0.001801840728148818, -0.02286965399980545, -0.031224777922034264, 0.015598130412399769, 0.004277366679161787, -0.031281810253858566, -0.014343436807394028, -0.020331749692559242, -0.013316868804395199, 0.03359158709645271, 0.008568990975618362, 0.006972107570618391, -0.0031652513425797224, -0.03727012127637863, -0.030055630952119827, -0.01949053443968296, -0.023069264367222786, 0.00932465959340334, -0.006455259397625923, 0.00562830176204443, -0.023853449150919914, 0.0008461166289635003, -0.01031558308750391, 0.01119244284927845, -0.010493806563317776, -0.025521621108055115, -0.0003399615525268018, -0.017579976469278336, 0.00970249343663454, -0.001971153076738119, -0.01268239226192236, -0.003842501202598214, -0.015270199626684189, -0.0036999222356826067, -0.002168981358408928, 0.008519088849425316, 0.008497701957821846, 0.01773681491613388, -0.011891079135239124, -0.012382976710796356, 0.033249396830797195, 0.02207121253013611, 0.03575878590345383, 0.010137359611690044, -0.009417335502803326, 0.00507937278598547, 0.005884943529963493, 0.025835294276475906, -0.013095871545374393, -0.0017376802861690521, -0.008854148909449577, 0.017722556367516518, -0.012561200186610222, -0.02326887473464012, -0.02637709490954876, 0.031538449227809906, 0.014279276132583618, 0.028900740668177605, -0.008397896774113178, -0.003120695473626256, 0.014557304792106152, -0.031196260824799538, 0.01277506910264492, -0.015926063060760498, 0.023382937535643578, -0.012981807813048363, -0.001996104372665286, -0.004911842755973339, -0.0010639949468895793, -0.018820414319634438, -0.005011647939682007, 0.008055707439780235, -0.021757539361715317, 0.008932567201554775, -0.027660304680466652, 0.002792763989418745, 0.0006999732577241957, 0.02172902226448059, 0.012860615737736225, 0.003459320403635502, -0.00012486791820265353, 0.013787378557026386, 0.00014012832252774388, 0.01218336634337902, 0.017665524035692215, -0.03570175543427467, -0.002673354232683778, 0.023938996717333794, -0.006840222515165806, -0.0010755795519798994, 0.04072052985429764, 0.03347752243280411, 0.021971406415104866, -0.02040303871035576, 0.029827503487467766, -0.038695912808179855, 0.006141585763543844, -0.009403077885508537, 0.025692716240882874, -0.03453260660171509, 0.029200157150626183, 0.009709622710943222, 0.03661425784230232, 0.0029389073606580496, -0.01830712892115116, 0.017722556367516518, -0.02097335457801819, 0.010950058698654175, -0.0069792368449270725, 0.011662953533232212, 0.022655785083770752, -0.024380991235375404, -0.004427074454724789, 0.008497701957821846, 0.017808103933930397, 0.011042735539376736, -0.010130230337381363, 0.015084846876561642, 0.00838363915681839, -0.014322049915790558, 0.01184830628335476, -0.005072243977338076, -0.013452318497002125, -0.015598130412399769, 0.0033060479909181595, -0.005685333162546158, -0.00041726604104042053, -0.029913051053881645, -0.004263109061866999, -0.023668095469474792, -0.0006821508868597448, 0.009909233078360558, -0.015612388961017132, 0.034475576132535934, 0.022855395451188087, 0.031709544360637665, -0.0022135372273623943, -0.024609116837382317, 0.014671367593109608, 0.00921772513538599, -0.013288352638483047, -0.004972438793629408, -0.026833347976207733, 0.019818466156721115, 0.016311025246977806, 0.0357302688062191, -0.0027125633787363768, 0.012675262987613678, -0.016268251463770866, 0.018806155771017075, -0.002842666581273079, 0.00930327270179987, 0.04200373962521553, -0.033334944397211075, 0.0023810674902051687, 0.012390105985105038, 0.019476275891065598, 0.020959097892045975, -0.011705727316439152, -0.014350565150380135, 0.06159408017992973, -0.014407596550881863, 0.0032133718486875296, -0.008618894033133984, -0.0029282139148563147, -0.0438002347946167, 0.010443903505802155, 0.000580117863137275, -0.0033826841972768307, 0.0035306098870933056, -0.003074357286095619, 0.0012386541347950697, 0.007891741581261158, -0.002357898512855172, 0.004541137721389532, -0.004958180710673332, -0.029684925451874733, -0.007763420697301626, -0.007464005146175623, 0.016097156330943108, 0.07573790848255157, 0.016054382547736168, 0.001131719909608364, 0.026719283312559128, -0.032935723662376404, -0.0030155435670167208, -0.025079626590013504, -0.02730385772883892, 0.0280880406498909, -0.004523315466940403, -0.021258512511849403, -0.028943514451384544, -0.0005097195389680564, 0.0008505721925757825, 0.013138644397258759, 0.012653877027332783, 0.004444896709173918, -0.029171641916036606, -0.005186307244002819, 0.0005939301918260753, -0.006886560469865799, 0.00789887085556984, 0.024723179638385773, 0.001621834933757782, 0.04534008726477623, 0.02629154734313488, 0.026876121759414673, 0.008626023307442665, 0.016667472198605537, -0.03076852485537529, -0.013602025806903839, 0.013495092280209064, 0.004687280859798193, 0.02067393995821476, 0.0028872224502265453, 0.02546459063887596, 0.015926063060760498, -0.014250759966671467, -0.009046630933880806, 0.0019622419495135546, 0.007827580906450748, 0.020331749692559242, 0.0058065252378582954, -0.00822680164128542, 0.023382937535643578, -0.023896222934126854, 0.007656486239284277, 0.03735566884279251, -0.021301286295056343, -0.00611307006329298, 0.02098761312663555, -0.0025182997342199087, -0.015726450830698013, 0.019861239939928055, 0.009559914469718933, 0.01077183522284031, 0.015027815476059914, -0.022056953981518745, 0.0002864944690372795, -0.027275342494249344, -0.022883912548422813, -0.027147021144628525, -0.000859483378008008, 0.000107435422251001, -0.012497039511799812, -0.003664277493953705, -0.01672450453042984, 0.011263732798397541, -0.026576705276966095, -0.0003279314551036805, -0.002817715285345912, -0.044798288494348526, -0.04408539459109306, 0.008633151650428772, 0.04833424463868141, 0.019804207608103752, 0.010935801081359386, 0.00036090280627831817, -0.004494799766689539, -0.003350603859871626, -0.02274133265018463, -0.024822985753417015, 0.015740709379315376, -0.0164108294993639, -0.01879189722239971, -0.04314437136054039, -0.01562664657831192, 0.0005417997599579394, -0.008932567201554775, 0.022855395451188087, 0.0074853915721178055, -0.024808727204799652, -0.011335021816194057, 0.0010809262748807669, 0.022014180198311806, 0.016011608764529228, 0.015270199626684189, -0.003120695473626256, 0.014008375816047192, -0.013887183740735054, 0.003867452498525381, -0.030797040089964867, -0.00884702056646347, -0.01703817769885063, -0.012047916650772095, 0.0017938206437975168, 0.002309778006747365, -0.011228087358176708, 0.004031418357044458, -0.023853449150919914, 0.008854148909449577, -0.017437398433685303, 0.019290924072265625, -0.015241683460772038, 0.025036852806806564, -0.008020062930881977, -0.002548597753047943, -0.0022438352461904287, 0.0020780873019248247, 0.0017145111924037337, 0.020388782024383545, -0.029071835801005363, 0.025436073541641235, 0.007464005146175623, 0.007827580906450748, 0.024723179638385773, 0.043258436024188995, -0.03473221883177757, -0.03356306999921799, 0.003999338019639254, 0.02063116617500782, 0.006840222515165806, -0.023596806451678276, -0.02348274365067482, -0.018250098451972008, -0.012817841954529285, 0.009068017825484276, 0.008433541283011436, -0.02194289118051529, 0.016867082566022873, -0.014771172776818275, 0.013395287096500397, 0.003995773382484913, -0.014970783144235611, -0.020859291777014732, -0.028829451650381088, -0.033420491963624954, -0.0127251660451293, 0.011841177009046078, 0.022056953981518745, 0.0005609588115476072, -0.009780911728739738, -0.02208547107875347, -0.023340163752436638, 0.0018731302116066217, -0.0037426957860589027, 0.008483444340527058, -0.0001416877785231918, 0.05052996054291725, 0.021671991795301437, 0.02979898825287819, 0.00777054950594902, 0.020902065560221672, 0.012055044993758202, 1.9980538127128966e-05, -0.02207121253013611, -0.007150331512093544, -0.01422224473208189, 0.012497039511799812, -0.008918309584259987, 0.009930619969964027, -0.0022099728230386972, -0.008576120249927044, 0.007913128472864628, 0.008198286406695843, 0.005624737124890089, 0.010094585828483105, -0.001708273310214281, -0.022584496065974236, -0.046366654336452484, -0.015897545963525772, 0.025436073541641235, -0.00824818853288889, -0.015683678910136223, -0.029114609584212303, -0.009916361421346664, 0.030340788885951042, -0.015312972478568554, 0.020331749692559242, 0.010900156572461128, 0.02128702774643898, 0.004280931316316128, 0.014279276132583618, 0.021258512511849403, 0.01602586731314659, -0.033648617565631866, 0.005596221424639225, -0.037983015179634094, 7.511846888519358e-06, 0.018107518553733826, 0.03307830169796944, 0.014421855099499226, -0.012960420921444893, 0.002915738383308053, -0.008540475741028786, 0.01325270812958479, -0.006369711831212044, -0.0011005308479070663, -0.002443445846438408, -0.038610365241765976, 0.011056993156671524, -0.039693962782621384, -0.014329178258776665, 0.01786513440310955, -0.02132980152964592, 0.0007659159600734711, 0.003477142658084631, 0.025379043072462082, -0.02743217907845974, -0.016396572813391685, 0.023354422301054, -0.003528827568516135, 0.04924675077199936, 0.012197623960673809, 0.037726376205682755, 0.012696649879217148, 0.013765991665422916, -0.0008946825400926173, -0.008091351948678493, -0.004676587413996458, -0.019105572253465652, -0.0014436112251132727, 0.022456174716353416, -0.0013741040602326393, -0.017808103933930397, -0.007118251174688339, -0.011940982192754745, 0.0014926227740943432, -0.04094865918159485, 0.02756050042808056, -0.0009084948687814176, 0.010237164795398712, -0.025863811373710632, -0.007093299645930529, -0.012796455062925816, 0.0067724972032010555, -0.005553447641432285, -0.0058065252378582954, 0.011670081876218319, -0.006105940788984299, 0.021928632631897926, 0.03370564803481102, -0.014029762707650661, 0.010565095581114292, -0.014514531008899212, -0.007863225415349007, -0.019861239939928055, -0.01077183522284031, -0.03165251389145851, -0.019205376505851746, 0.0071538956835865974, 0.0254503320902586, -0.028729647397994995, -0.005072243977338076, 0.01575496792793274, 0.011470471508800983, -0.012532684952020645, -0.005785138346254826, -0.0010212212800979614, 0.03595839813351631, -0.01588328927755356, -0.023710869252681732, 0.009802298620343208, 0.001808969653211534, 0.02778862603008747, -0.0221710167825222, -0.01659618318080902, -0.006797448731958866, -0.004861940164119005, 0.01799345575273037, 0.0053966110572218895, -0.006882995832711458, 0.002714345697313547, -0.01117105595767498, 0.01020864862948656, -0.02576400525867939, 0.013979860581457615, 0.0008077985257841647, 0.02853003703057766, -0.045140478760004044, 0.011705727316439152, -0.008162641897797585, -0.014913751743733883, -0.005638995207846165, -0.008326606824994087, 0.01997530274093151, 0.0009748831507749856, 0.03156696632504463, -0.005703155416995287, 0.01611141487956047, 0.009032372385263443, 0.02014639787375927, -0.0371275432407856, 0.019347956404089928, -0.016581924632191658, 0.005745929200202227, 0.016482120379805565, -0.011777016334235668, -0.029086094349622726, -0.017323335632681847, 0.014899494126439095, -0.0022367064375430346, -0.0032775322906672955, 0.009403077885508537, 0.026933152228593826, 0.0007213600911200047, 0.004273802042007446, -0.014799688942730427, -0.010051812045276165, 0.014093923382461071, -0.016753019765019417, 0.0009998345049098134, -0.009003857150673866, -0.008034320548176765, -0.005172049161046743, -0.02880093641579151, 0.00303336582146585, -0.011078380048274994, -0.039180681109428406, 0.001632528263144195, 0.003004850121214986, 0.00732855498790741, -0.004983132239431143, 0.013815894722938538, 0.013880055397748947, -0.02202843874692917, -0.0414334274828434, 0.028644099831581116, -0.015769224613904953, -0.011812660843133926, 0.034475576132535934, 0.004223899450153112, 0.019519049674272537, 0.029257187619805336, 0.0043237050995230675, -0.03242243826389313, -0.02804526872932911, -0.027360890060663223, -0.04687993973493576, -0.014642852358520031, -0.00873295683413744, 0.03133884072303772, 0.01029419619590044, -0.016624698415398598, -0.0002081874554278329, -0.03242243826389313, -0.025250721722841263, -0.01645360328257084, -0.017323335632681847, 0.02010362409055233, 0.028501519933342934, 0.02607767842710018, 0.006729723885655403, 0.011456213891506195, -0.009317530319094658, 0.025493105873465538, -0.023853449150919914, 0.006537242326885462, -0.016311025246977806, -0.005827912129461765, 0.012996066361665726, -0.009160693734884262, -0.04873346537351608, 0.006808142177760601, 0.010657772421836853, 0.012882002629339695, 0.01596883498132229, 0.00028359831776469946, -0.004904713947325945, 0.011335021816194057, 0.00831947848200798, 0.0164108294993639, 0.016624698415398598, 0.026091936975717545, 0.009994780644774437, -0.022883912548422813, -0.0043807365000247955, 0.012482781894505024, 0.006337631493806839, -0.009937748312950134, 0.005557012278586626, 0.013352513313293457, -0.01123521663248539, 0.012304558418691158, -0.0038246787153184414, -0.010115972720086575, 0.00787748396396637, 0.004737183451652527, 0.024808727204799652, 0.019034281373023987, 0.014421855099499226, 0.03453260660171509, -0.011477600783109665, -0.005115017760545015, -0.019290924072265625, -0.01320993434637785, -0.008576120249927044, -0.016040125861763954, 0.020730970427393913, -0.00826957542449236, 0.007549552246928215, -0.012147721834480762, 0.010030425153672695, -0.0007788371876813471, -0.023254618048667908, -0.021885860711336136, -0.0037248735316097736, -0.006494468543678522, -0.009574172087013721, -0.00730716809630394, -0.019376471638679504, 0.013659058138728142, -7.190208998508751e-05, 0.017879392951726913, 0.002270568860694766, -0.01712372526526451, 0.012974679470062256, -0.019561823457479477, -0.015113362111151218, 0.0011700380127876997, 0.008932567201554775, -0.02800249494612217, -0.0017973851645365357, 0.028145072981715202, -0.006629918236285448, 0.007039832882583141, 0.20497141778469086, 0.002104820916429162, 0.024152863770723343, 0.016610441729426384, 0.012903389520943165, -0.013316868804395199, 0.0223848856985569, 0.007642228621989489, -0.013552123680710793, 0.015312972478568554, 0.004127658903598785, -0.005407304503023624, -0.0037712117191404104, -0.011449084617197514, 0.018335646018385887, -0.01015874557197094, -0.037897467613220215, -0.02229933813214302, -0.01725204661488533, -0.005539190024137497, -0.01363054197281599, -0.00588137935847044, -0.013331126421689987, -0.007342813070863485, 0.009025244042277336, 0.0012511297827586532, -0.007784807588905096, -0.00033260980853810906, 0.025706974789500237, 0.022570239380002022, -0.019105572253465652, 0.02286965399980545, -0.001567476661875844, -0.026034904643893242, -0.00365358404815197, -0.01165582425892353, 0.011976626701653004, -0.02646264247596264, 0.009559914469718933, 0.02172902226448059, -0.013701830990612507, -0.030084146186709404, -0.0016271815402433276, -0.029513830319046974, 0.0004598169180098921, -0.007464005146175623, -0.024566343054175377, 0.014785431325435638, 0.01813603565096855, 0.018250098451972008, -0.010051812045276165, -0.003988644573837519, 0.02593510039150715, 0.02594935894012451, 0.010429645888507366, 0.0002544142189435661, -0.00703270360827446, 0.019062798470258713, -0.013352513313293457, 0.015084846876561642, -0.02010362409055233, 0.014500273391604424, -0.004594604950398207, 0.017765330150723457, -0.033506039530038834, -0.007841839455068111, -0.033990807831287384, 0.019191117957234383, -0.00037983906804583967, -0.0014355912571772933, 0.015370004810392857, -0.012297429144382477, -0.01926240883767605, -0.01909131370484829, -0.017266303300857544, -0.018891703337430954, 0.018506739288568497, 0.004327269271016121, 0.036100976169109344, 0.028373198583722115, -0.0017287690425291657, -0.013872926123440266, -0.015027815476059914, -0.021586444228887558, 0.016567667946219444, -0.013395287096500397, 0.03441854566335678, -0.034218933433294296, -0.027275342494249344, -0.012076431885361671, -0.02440950646996498, -0.011064121499657631, -0.007784807588905096, -0.0013143991818651557, 0.0005115017993375659, 0.00022255674412008375, 0.01411531027406454, 0.0255073644220829, -0.010165874846279621, -0.0223848856985569, -0.03841075301170349, 0.050187770277261734, 0.026576705276966095, 0.01655340939760208, -0.024737438187003136, 0.0015416342066600919, 0.01266100537031889, 0.02612045221030712, 0.016753019765019417, 0.00827670469880104, 0.0018374854698777199, -0.02831616811454296, 0.01940498687326908, 0.017679782584309578, 0.0035555611830204725, 0.021358318626880646, 0.014970783144235611, -0.03213728219270706, 0.007235878612846136, -0.010215777903795242, 0.017622750252485275, -0.011962369084358215, -0.0010809262748807669, -0.004074191674590111, -0.027332372963428497, -0.01909131370484829, -0.019732918590307236, 0.02107316069304943, -0.02747495286166668, -0.030226724222302437, 0.008554733358323574, -0.0175942350178957, 0.023981768637895584, -0.03621503710746765, -0.019590340554714203, -0.00044756405986845493, -0.008098481222987175, -0.019918270409107208, 0.0037498248275369406, -0.0009508229559287429, 0.004227464087307453, 0.0047229258343577385, 0.012625360861420631, -0.013566381298005581, -0.015370004810392857, -0.015198909677565098, 0.015997352078557014, 0.007927386090159416, -0.007107557728886604, -0.03898106887936592, 0.0038353721611201763, 0.007734904997050762, -0.00638753455132246, -0.009602688252925873, 0.03972247987985611, -0.025293495506048203, -0.014714141376316547, -0.012425750494003296, 0.003585859201848507, 0.006622789427638054, -0.034960344433784485, -0.009110791608691216, 0.027859915047883987, -0.0036607130896300077, -0.027360890060663223, -0.012903389520943165, -0.18341349065303802, 0.007506778463721275, -0.0011263731867074966, -0.02352551743388176, 0.027232568711042404, 0.029285704717040062, 0.019419245421886444, 0.010921543464064598, -0.013302610255777836, -0.006580015644431114, -0.0025539444759488106, 0.011021348647773266, -0.02202843874692917, -0.005033034831285477, -0.002990592271089554, 0.004198948387056589, -0.009438722394406796, 0.007542423438280821, 0.06615660339593887, -0.006120198871940374, 0.012390105985105038, -0.025749748572707176, -0.004630249459296465, -0.0074568758718669415, 0.009310401976108551, -0.011955239810049534, -0.027047215029597282, 0.022270822897553444, 0.01672450453042984, -0.018749123439192772, 0.005888508167117834, 0.011178185231983662, 0.011541761457920074, -0.00919633824378252, 0.018007714301347733, 0.003491400508210063, 0.009410207159817219, -0.01022290624678135, -0.018977250903844833, 0.011791273951530457, 0.023896222934126854, -0.005514238495379686, 0.00510432431474328, -0.009795170277357101, -0.0021422477439045906, 0.020388782024383545, 0.012917647138237953, -0.00820541474968195, 0.007913128472864628, -0.0027624659705907106, 0.030568914487957954, -0.023183327168226242, -0.0004219443944748491, -0.009125049225986004, 0.009167823009192944, 0.008718699216842651, 0.0011138975387439132, 0.03570175543427467, -0.012055044993758202, -0.028601326048374176, 0.003044059267267585, -0.019148344174027443, 0.004288060124963522, -0.01211207639425993, -0.018364161252975464, -0.03946583718061447, -0.011769887059926987, 0.016097156330943108, -0.006533677689731121, 0.008198286406695843, 0.002627016045153141, 0.00588137935847044, -0.006048909388482571, 0.01672450453042984, -0.00510075967758894, 0.006904382724314928, -0.03427596390247345, 0.01987549662590027, 0.037726376205682755, -0.023297389969229698, 0.004238157533109188, 0.028473004698753357, -0.002249181969091296, -0.0010479548946022987, -0.008996727876365185, 0.011071250773966312, 0.009039501659572124, 0.0011326110688969493, -0.016867082566022873, -0.005307499319314957, 0.020959097892045975, -0.008604636415839195, 0.010636385530233383, -0.02597787417471409, 0.005343143828213215, -0.007250136695802212, 0.022441918030381203, -0.002796328393742442, 0.006326938513666391, -0.008069965057075024, 0.003903097240254283, 0.013430931605398655, -0.04217483475804329, 0.012525555677711964, 0.03729863837361336, 0.03205173462629318, -0.007784807588905096, 0.007000623736530542, 0.037412699311971664, 0.002309778006747365, -0.017622750252485275, -6.393772491719574e-05, 0.012603973969817162, 0.014350565150380135, 0.003272185567766428, 0.04300179332494736, -0.0038318077567964792, -0.02379641681909561, 0.040977172553539276, -0.013972731307148933, 0.045454151928424835, -0.007799065206199884, -0.0136947026476264, 0.007841839455068111, 0.011891079135239124, -0.021443864330649376, -0.10533728450536728, -0.023325907066464424, 0.010992832481861115, 0.011156798340380192, -0.008098481222987175, 0.007513907738029957, -0.021429607644677162, 0.049531906843185425, -0.013238450512290001, 0.01913408748805523, -0.007784807588905096, -0.003268621163442731, 0.007599454838782549, 0.010500934906303883, 0.005214822944253683, -0.01566942036151886, -0.01178414560854435, -0.005193436052650213, -0.004031418357044458, 0.034760732203722, 0.008198286406695843, -0.006865173578262329, 0.026277288794517517, 0.007225185167044401, -0.006487339735031128, -0.01957608200609684, -0.028287652879953384, 0.014478886500000954, 0.004359349608421326, 0.014899494126439095, 0.027802884578704834, -0.021358318626880646, 0.012325945310294628, -0.0064017921686172485, -0.02084503322839737, -0.02515091560781002, -0.020032335072755814, -0.02660522051155567, 0.004052804782986641, -0.046110011637210846, 0.0008171552908606827, 0.00972388032823801, 0.006583580281585455, -0.015398520044982433, -0.010044682770967484, 0.014015505090355873, -0.015569615177810192, 0.017266303300857544, -0.0010399348102509975, -0.0064303078688681126, -0.006348324939608574, -0.01926240883767605, -0.02006085030734539, -0.012946163304150105, 0.027232568711042404, 0.016952630132436752, 0.02800249494612217, 0.01698114536702633, -0.021714765578508377, -0.0025931536220014095, -0.004626684822142124, -0.00611307006329298, -0.012767939828336239, 0.004405687563121319, 0.017180755734443665, -0.007243007887154818, -0.014699883759021759, -0.03359158709645271, 0.0035092229954898357, 0.010992832481861115, -0.020388782024383545, 0.010379742830991745, -0.02373938448727131, 0.011684340424835682, -0.022570239380002022, 0.0006424961029551923, 0.00024594858405180275, -0.017522946000099182, 0.0005832368042320013, 0.035844333469867706, -0.02422415278851986, 0.0010461725760251284, 0.001268952153623104, -0.03652871027588844, 0.03205173462629318, 0.008176899515092373, -0.010379742830991745, 0.004195383749902248, 0.0461670458316803, -0.045140478760004044, -0.009994780644774437, 0.0166817307472229, 0.015911804512143135, 0.009602688252925873, 0.00397082231938839, 0.01514187827706337, -0.016824308782815933, -0.009688235819339752, 0.007221620995551348, -0.009688235819339752, -0.023497002199292183, -0.006202181801199913, -0.06359018385410309, 0.004270237870514393, -0.008184028789401054, -0.006601402536034584, 0.017052436247467995, -0.04200373962521553, 0.0018660012865439057, -0.0058065252378582954, -0.0023935430217534304, 0.0014756915625184774, -0.012996066361665726, 0.006212875247001648, -0.030911102890968323, -0.024438021704554558, -0.02795972116291523, -0.030882587656378746, 0.0075851972214877605, -0.009495753794908524, 0.008768602274358273, 0.005314628127962351, -0.027489209547638893, -0.011990884318947792, 0.023454228416085243, 0.00510432431474328, -0.018535256385803223, 0.010572224855422974, -0.015655161812901497, 0.03339197486639023, 0.0003655811888165772, -0.0357302688062191, 0.0064017921686172485, -0.008761473000049591, 0.002021055668592453, 0.007022010162472725, -0.0043237050995230675, -0.02304074913263321, 0.02593510039150715, 0.0008238386362791061, 0.022727075964212418, 0.027360890060663223, -0.02870113030076027, -0.02097335457801819, 0.03664277493953705, -0.022441918030381203, -0.005075808614492416, -0.005984749179333448, -0.0008002240210771561, -0.017394624650478363, 0.011662953533232212, -0.0056603820994496346, 0.0175942350178957, 0.006205746438354254, -0.020859291777014732, -0.03230837732553482, 0.016482120379805565, -0.017565719783306122, 0.019276665523648262, 0.004537573084235191, -0.003339910414069891, 0.0025289931800216436, 0.04696548730134964, 0.004804908763617277, 0.014165212400257587, -0.011384924873709679, 0.017522946000099182, -0.023026490584015846, -0.026633737608790398, -0.0037819051649421453, -0.015469809994101524, -0.019818466156721115, 0.0010426081717014313, -0.01651063561439514, 0.030911102890968323, 0.029513830319046974, 0.01623973622918129, -0.02612045221030712, 0.004070627503097057, -0.002097691874951124, -0.021572185680270195, 0.02768881991505623, 0.019148344174027443, -0.025051111355423927, -0.019961044192314148, 0.010700546205043793, 0.019647371023893356, 0.006080989725887775, -0.009559914469718933, 0.006761803757399321, 0.020616907626390457, 0.010101714171469212, -0.0061273276805877686, -0.00307792192324996, -0.007221620995551348, 0.015598130412399769, 0.013238450512290001, 0.03880997374653816, -0.017537204548716545, -5.285444058245048e-05, 0.017195014283061028, 0.036100976169109344, 0.017494430765509605, 0.00831947848200798, 0.0025610732845962048, -0.01733759231865406, -0.025207947939634323, 0.025792522355914116, -0.01455017551779747, -0.0038745813071727753, 0.029071835801005363, 0.02365383878350258, 0.01169859804213047, -0.003448626957833767, -0.0011335022281855345, 0.021472381427884102, -0.008782859891653061, -0.0006883887108415365, -0.010115972720086575, -0.007300039287656546, -0.0197471771389246, 0.015555356629192829, 0.006202181801199913, 0.025749748572707176, 0.036984965205192566, -0.012917647138237953, 0.041062720119953156, 0.02185734361410141, 0.019818466156721115, -0.0036321971565485, 0.005685333162546158, -0.008854148909449577, 0.010386872105300426, 0.01509910449385643, -0.014386210590600967, -0.005254032090306282, -0.004968874156475067, -0.0035430854186415672, -0.0185637716203928, 0.011648694984614849, 0.008576120249927044, 0.09307549893856049, 0.031709544360637665, -0.028715388849377632, 0.00413835234940052, -0.024637632071971893, 0.006875867024064064, 0.02874390408396721, 0.006408920977264643, -0.004904713947325945, -0.03093961998820305, 0.006391098722815514, -0.00880424678325653, -0.024466536939144135, -0.03450409322977066, -0.00917495135217905, -0.014785431325435638, 0.0017127288738265634, 0.025778263807296753, -0.004298753570765257, 0.0011914249043911695, 0.004166868049651384, 0.008077094331383705, 0.030711492523550987, 0.0034931828267872334, -0.047250643372535706, 0.0021903682500123978, 0.055719830095767975, 0.006269906647503376, 0.012874874286353588, -0.03635761886835098, 0.02462337538599968, -0.007232314441353083, -0.03347752243280411, -0.002865835791453719, -0.0018446143949404359, -0.006433872506022453, 0.0016833220142871141, -0.027104247361421585, 0.019347956404089928, 0.012083561159670353, 0.010928671807050705, 0.011420569382607937, -0.0357302688062191, -0.052297938615083694, 0.010422516614198685, 0.007050526328384876, -0.0031367356423288584, -0.020745228976011276, -0.010942930355668068], "fe7fa115-165b-4947-823f-e35939ebe9da": [-0.020201798528432846, -0.006513991858810186, 0.0073633380234241486, -0.04250941425561905, -0.008598750457167625, 0.03113800473511219, -0.02724926359951496, -0.013042022474110126, -0.014389744959771633, -0.056660499423742294, 0.021928567439317703, 0.018657533451914787, 0.02463805116713047, -0.009904356673359871, 0.00956040620803833, 0.023528989404439926, 0.024553818628191948, -0.01111169159412384, 0.024174772202968597, -0.015540924854576588, -0.014445900917053223, -0.01829252578318119, -0.011273137293756008, 0.004660873673856258, -0.017927516251802444, -0.0018443441949784756, 0.03256995975971222, -0.009005874395370483, -0.02086162194609642, 0.03268226981163025, 0.01417214423418045, -0.01885407604277134, -0.005506709683686495, 0.005861188750714064, 0.0006484159384854138, 0.012684034183621407, 0.00652803061529994, 0.0008067908929660916, 0.0011195923434570432, -0.003514958545565605, 0.015007451176643372, 0.00679125776514411, -0.0031008145306259394, -0.0026094575878232718, -0.02044045738875866, 0.03383345156908035, 0.0065771667286753654, -0.012712111696600914, -0.009834162890911102, 0.015891894698143005, 0.0008511007763445377, 0.02678598463535309, -0.025634804740548134, -0.0019671835470944643, 0.0007673068321309984, 0.004474859684705734, 0.006257784552872181, -0.0007282614824362099, 0.00742651242762804, 0.01474071480333805, -0.009342805482447147, -0.0035114488564431667, -0.017281733453273773, -0.004432743415236473, -0.03554617986083031, -0.03680967167019844, -0.009005874395370483, -0.001066069584339857, 0.02557864971458912, 0.0024058951530605555, 0.01938754878938198, 0.023669376969337463, -0.007300163619220257, -0.020005255937576294, -0.0024339728988707066, -0.01976659707725048, -0.009714832529425621, -0.022167228162288666, 0.004573131445795298, -0.010444849729537964, 0.015035528689622879, 0.0003575500741135329, -0.016565755009651184, -0.009855221025645733, 0.02557864971458912, 0.04512062668800354, 0.004569621756672859, 0.0037062368355691433, 0.0002954723604489118, 0.00195489963516593, 0.0014459938975051045, 0.0088795255869627, 0.027333496138453484, 0.01919100619852543, -0.00393085740506649, -0.003142931032925844, 0.008809331804513931, -0.002602438209578395, -0.003653591498732567, -0.015119762159883976, -0.016369212418794632, -0.004180045332759619, -0.029762204736471176, -0.012389219366014004, -0.028891801834106445, -0.0031604794785380363, 0.01688864827156067, -0.0066508702002465725, 0.0014302002964541316, 0.02637886069715023, -0.008170567452907562, 0.024174772202968597, -0.011069574393332005, -0.005864698439836502, -0.006313939578831196, -0.011364389210939407, -0.007847676053643227, -0.004057206213474274, -0.011132749728858471, -0.00833201315253973, 0.021226629614830017, -0.0031639891676604748, 0.030183367431163788, -0.010866012424230576, 0.009237514808773994, -0.010114938020706177, 0.00729314424097538, -0.015091683715581894, 0.024020345881581306, 0.008535576052963734, 0.014354648068547249, 0.01390540786087513, 0.01722557842731476, 0.0037834502290934324, -0.043857134878635406, 0.012873557396233082, -0.018615417182445526, 0.002377817640081048, -0.0020338676404207945, -0.028288133442401886, 0.004390627145767212, 0.02660348080098629, 0.0005492671043612063, -0.025368068367242813, 0.009827143512666225, 0.03908395394682884, -0.00426076864823699, 0.009588483721017838, 0.001113450387492776, -0.013477224856615067, -0.00516626937314868, -0.01954197697341442, -0.010704566724598408, 0.019710442051291466, 0.012269889935851097, 0.00415547750890255, 0.008949719369411469, 0.03824162483215332, -0.019738519564270973, -0.009567425586283207, -0.0026234963443130255, 0.005948931444436312, -0.011041496880352497, -0.00840922724455595, 0.00417653564363718, 0.03346844017505646, 0.0012099669547751546, -0.032934967428445816, -0.01507764495909214, -0.023262251168489456, -0.005583923310041428, 0.03360883146524429, -0.028021397069096565, 0.021493365988135338, 0.005369831807911396, 0.017057113349437714, 0.010150034911930561, 0.01840483583509922, -0.015189955942332745, -0.018811959773302078, 0.017520392313599586, 0.0009800820844247937, 0.024287082254886627, 0.018306564539670944, -0.017857322469353676, -0.01294375117868185, 0.027066759765148163, 0.0005782220978289843, -0.0025778701528906822, -0.0012450639624148607, 0.023149941116571426, -0.008037199266254902, -0.02206895500421524, -0.012304986827075481, -0.6239955425262451, -0.0013073610607534647, 0.028091590851545334, -0.01753443107008934, -0.011890843510627747, 0.01869964972138405, 0.011462660506367683, -0.004092303104698658, -0.0113363116979599, 0.030941462144255638, 0.00476967403665185, -0.003506184322759509, -0.013371934182941914, -0.00437307870015502, -0.028779489919543266, -0.021900489926338196, 0.01405983418226242, -0.005945421755313873, -0.0025778701528906822, 0.010157054290175438, -0.015147839672863483, 0.0005181185551919043, -0.0025568120181560516, -0.011083614081144333, -0.009111166000366211, 0.002751599997282028, 0.011392466723918915, 0.02421688847243786, -0.009890317916870117, 0.015484769828617573, -0.03355267643928528, 0.0045310151763260365, 0.025325952097773552, -0.015611118637025356, 0.043772902339696884, -0.018236370757222176, -0.017057113349437714, 0.026701752096414566, 0.021717986091971397, 0.022209344431757927, -0.036332353949546814, 0.0060121058486402035, 0.026912333443760872, 0.026308666914701462, 0.010683508589863777, -0.007700268644839525, 0.008135470561683178, 0.009813104756176472, -0.010402733460068703, -0.009988589212298393, 0.008423266001045704, -0.00835307128727436, -0.009981569834053516, 0.0033833449706435204, 0.008360090665519238, -0.002916555618867278, 0.02037026360630989, -0.017548469826579094, 0.01169429998844862, 0.020959893241524696, 0.014333589933812618, 0.004811790306121111, -0.00786171481013298, -0.05345965921878815, -0.05242079123854637, -0.007566900458186865, -0.0095393480733037, -0.018432913348078728, 0.0024427471216768026, -0.00043015688424929976, 0.007630074862390757, -0.00381152774207294, 0.012936731800436974, -0.0011213471880182624, 0.021928567439317703, 0.024497663602232933, 0.037876617163419724, 0.006556108593940735, 0.013722903095185757, 0.030323756858706474, -0.002576115308329463, -0.014937257394194603, 0.006363075226545334, -0.0057137818075716496, 0.03532155975699425, 0.02112835831940174, -0.015091683715581894, -0.015302265994250774, 0.002907781396061182, -0.01659383252263069, 0.0190786961466074, 0.015611118637025356, -0.004534524865448475, -0.03978589177131653, 0.033917684108018875, 0.04719836637377739, 0.014754753559827805, 0.007489686831831932, 0.012550665996968746, -0.0213529784232378, -0.03543386980891228, -0.02150740474462509, 0.014867063611745834, -5.6813172705005854e-05, 0.034366924315690994, 0.022995514795184135, -0.04068437218666077, 0.008346051909029484, 0.023374561220407486, -0.028737373650074005, -0.013540399260818958, -0.00819864496588707, -0.022153189405798912, -0.013400011695921421, 0.002709483727812767, -0.026013851165771484, 0.0014424842083826661, -0.0031394213438034058, -0.004239710513502359, -0.01528822723776102, -0.01818021573126316, 0.0005312799476087093, -0.0043134139850735664, -0.015779584646224976, -0.004369569011032581, 0.016832493245601654, 3.1943698559189215e-05, 0.002132139168679714, 0.017183462157845497, 0.015526886098086834, 0.0008563653100281954, -0.01337895356118679, 0.018573300912976265, -0.013407031074166298, 0.02430112101137638, -0.00035425974056124687, 0.0088795255869627, 0.004443272482603788, 0.012803363613784313, -0.04820915684103966, 0.0011432828614488244, -0.01791347749531269, 0.02883564494550228, -0.013673767447471619, 0.006552598904818296, -0.010325519368052483, -0.014073872938752174, 0.017674818634986877, -0.0005501445266418159, -0.032626114785671234, -0.02320609614253044, -0.008374129422008991, -0.009286650456488132, 0.04220056161284447, -0.01401771791279316, -0.0010757212294265628, 0.006654379889369011, -0.03355267643928528, -0.012115463614463806, -0.0355181023478508, -0.01715538464486599, 0.0014574003871530294, -0.0042326911352574825, -0.0030674724839627743, -0.015372459776699543, -0.010964283719658852, -0.015316304750740528, -0.0049767461605370045, -0.026477131992578506, -0.015021489933133125, -0.006005086470395327, -0.02014564350247383, 0.01090110931545496, 0.022546274587512016, -0.006935155484825373, 0.018657533451914787, -0.01787136122584343, -0.01806790381669998, -0.01024128682911396, -0.0007839779136702418, 0.015386498533189297, 0.02557864971458912, -0.008795293048024178, -0.01809598132967949, 0.029649894684553146, -0.007377376779913902, 0.03335613012313843, 0.015428614802658558, -0.018573300912976265, 0.01587785594165325, -0.00986224040389061, 0.019148889929056168, -0.0100166667252779, -0.001914538093842566, -0.009321747347712517, -0.00599806709215045, -0.02108624204993248, -0.017408082261681557, -0.004843377508223057, 0.025115370750427246, 0.03804508224129677, 0.0010950245195999742, -0.00042335683247074485, 0.0037167659029364586, 0.011238040402531624, -0.03332805261015892, -0.001231025205925107, -0.0200333334505558, 0.013098178431391716, 0.01836271956562996, -0.00026015605544671416, -0.004474859684705734, 0.014354648068547249, -0.0119048822671175, -0.004804770927876234, 0.011364389210939407, -0.009026932530105114, 0.016200747340917587, -0.020566806197166443, -0.003751862794160843, 0.0028147746343165636, 0.0002261559129692614, 0.01579362340271473, 0.004548563621938229, 0.010283403098583221, 0.009153282269835472, 0.0011283665662631392, 0.011925940401852131, 0.03091338463127613, -0.012705092318356037, 0.0075177643448114395, 0.020187759771943092, -0.001847853884100914, 0.01528822723776102, 0.03004297986626625, 0.011596028693020344, 0.02637886069715023, 0.0019619190134108067, 0.022925321012735367, -0.017127307131886482, 0.01447397843003273, -0.0008651395910419524, 0.02459593489766121, -0.01026234496384859, 0.0328788124024868, 0.00029064653790555894, 0.017394043505191803, 0.0004588924930430949, -0.02653328701853752, 0.030351834371685982, -0.01655171625316143, 0.005597962066531181, -0.004846887197345495, 0.001023953198455274, 0.02432919852435589, -0.02338859997689724, 0.008289896883070469, 0.014045795425772667, 0.02081950567662716, 0.013708864338696003, 0.004818809684365988, 0.010030705481767654, 0.004681931808590889, 0.007026407402008772, 0.016607871279120445, -0.003586907172575593, -0.011273137293756008, -0.017506353557109833, 0.005945421755313873, -0.013154333457350731, 0.004825829062610865, -0.02830217219889164, 0.00619811937212944, -0.028105629608035088, -0.0005470735486596823, -0.00500833336263895, -0.003297357587143779, 0.022363770753145218, -0.00027331741875968874, 0.017211539670825005, -0.00026234964025206864, -0.017843283712863922, 0.01961217075586319, 0.017253655940294266, -0.01052206289023161, -0.011722377501428127, -0.013168372213840485, 0.0029218201525509357, 0.0072650667279958725, 0.028217939659953117, 0.005015352740883827, 0.0005181185551919043, -0.0021268746349960566, 0.013554438017308712, 0.0016916724853217602, 0.00909010786563158, 0.033384207636117935, -0.019176967442035675, -0.005861188750714064, 0.015330343507230282, 0.014838986098766327, 0.0175765473395586, -0.016256902366876602, -0.00476967403665185, 0.04556986689567566, -0.005464593414217234, 0.010943225584924221, 0.0037308046594262123, -0.0015179426409304142, -0.04607526212930679, 0.01243133656680584, -0.009328766725957394, -0.011216982267796993, -0.006005086470395327, -0.006387643050402403, 0.005278579890727997, 0.010402733460068703, -0.01961217075586319, 0.003357022302225232, 0.0005558477714657784, -0.016453444957733154, -0.029986824840307236, 0.007601997349411249, 0.025339990854263306, 0.06940770894289017, 0.02025795355439186, -0.008212683722376823, 0.020496612414717674, -0.024666128680109978, 0.0035904168616980314, -0.019176967442035675, -0.028498714789748192, 0.02305166982114315, 0.0028130197897553444, -0.008591731078922749, -0.013982621021568775, 0.009363863617181778, 0.013722903095185757, 0.011476699262857437, 0.006247255485504866, 0.008851448073983192, -0.014502055943012238, -0.01335789542645216, 0.005594452377408743, -0.012010172940790653, -0.0055663748644292355, 0.03725891187787056, 0.022476080805063248, 0.03377729654312134, 0.033384207636117935, 0.040937069803476334, 0.003214879659935832, 0.02263050712645054, -0.022967437282204628, -0.02724926359951496, 0.019429665058851242, 0.004853906575590372, 0.01719750091433525, -0.020763348788022995, 0.013842233456671238, 0.007159775588661432, -0.03346844017505646, -0.007875753566622734, 0.013652709312736988, 0.003639552742242813, 0.024736322462558746, 0.005275070201605558, 0.003639552742242813, 0.012873557396233082, -0.019289277493953705, -0.021268745884299278, 0.03846624493598938, -0.015260149724781513, -0.014361667446792126, 0.013638670556247234, -0.0026164769660681486, -0.010030705481767654, 0.012136521749198437, -0.004527505021542311, -0.0020917775109410286, -0.010648411698639393, -0.018952347338199615, -0.020468534901738167, -0.0366692841053009, -0.039813969284296036, -0.022012799978256226, -0.005594452377408743, -0.01594804972410202, -0.012655956670641899, -0.026392899453639984, -0.021184513345360756, 0.008851448073983192, -0.003629023674875498, 0.002153197303414345, -0.00977098848670721, -0.0324857272207737, -0.03091338463127613, -0.0005356670590117574, 0.017323849722743034, 0.016228824853897095, 0.012557685375213623, 0.0038080180529505014, 0.014031756669282913, -0.005861188750714064, -0.017436159774661064, -0.024441508576273918, 0.027038682252168655, -0.013954543508589268, -0.0014521358534693718, -0.030239524319767952, -0.016481522470712662, -0.008823370561003685, -0.01829252578318119, 0.02785293199121952, 0.022265499457716942, -0.01791347749531269, 0.0052680508233606815, 0.0017925761640071869, 0.0170009583234787, 0.010704566724598408, 0.012662976048886776, 0.013308759778738022, 0.008296916261315346, -0.01659383252263069, 0.009040971286594868, -0.025901541113853455, -0.01957005448639393, -0.04509254917502403, -0.0016223560087382793, 0.020019294694066048, -0.0014223034959286451, -0.013666748069226742, 0.00974993035197258, -0.026168279349803925, 0.002751599997282028, 0.0007418615859933197, -0.007609016727656126, -0.029256809502840042, 0.012754227966070175, -0.011961037293076515, 0.02037026360630989, 0.0023988757748156786, -0.00538387056440115, -0.0041695162653923035, 0.008837409317493439, -0.020300069823861122, 0.023739570751786232, -0.0032359377946704626, 0.01122400164604187, 0.02618231810629368, 0.010957264341413975, -0.04663681238889694, -0.04947264492511749, 0.0014477487420663238, 0.009237514808773994, -0.0033921191934496164, -0.020398341119289398, -0.00762305548414588, -0.012319025583565235, 0.002132139168679714, 0.00918135978281498, 0.0038396052550524473, -0.009118185378611088, 0.0012626124080270529, -0.021114319562911987, 0.014200221747159958, -0.0009669206920079887, -0.02090373821556568, 0.004538034554570913, -0.030436066910624504, -0.02803543582558632, -0.025031138211488724, 0.021886451169848442, 0.02743176743388176, -0.0113363116979599, -0.02256031334400177, -0.021970683708786964, -0.02709483727812767, -0.003274544607847929, -0.011364389210939407, -0.001703078974969685, 0.0003430725773796439, 0.05410544201731682, 0.028863724321126938, 0.03613580763339996, 0.002749845152720809, 0.027768699452280998, 0.017211539670825005, 0.0005255767027847469, -0.010571198537945747, 0.00044046659604646266, -0.01101341936737299, 0.0020566806197166443, 0.007601997349411249, -0.00046722800470888615, -0.0017592341173440218, 0.002627006033435464, 0.007945947349071503, -0.004980255849659443, -0.004116870928555727, 0.004562602378427982, -0.01610247604548931, -0.03265419229865074, -0.05034305155277252, -0.021521443501114845, 0.015709390863776207, 0.008570672944188118, -0.023416677489876747, -0.035686567425727844, 0.005134682171046734, 0.04492408409714699, -0.003506184322759509, 0.033384207636117935, -0.0020672096870839596, 0.031531091779470444, 0.0168184544891119, 0.003125382587313652, 0.023486873134970665, 0.013708864338696003, -0.03442307934165001, -0.004520485643297434, -0.03529348224401474, -0.012606821022927761, 0.029902592301368713, 0.00988329853862524, 0.007321221753954887, 0.0037764308508485556, -0.0017908213194459677, -0.001382819376885891, 0.010711586102843285, -0.026196356862783432, -0.007036936469376087, -0.0038676827680319548, -0.042340949177742004, 0.005229444243013859, -0.024441508576273918, -0.011483718641102314, 0.008739138022065163, -0.02410457842051983, 0.004292355850338936, -0.00840922724455595, 0.01840483583509922, -0.01753443107008934, -0.025971734896302223, 0.008844428695738316, 0.005826091859489679, 0.027670428156852722, 0.022040877491235733, 0.013996659778058529, 0.0012827931204810739, 0.010065802372992039, -0.00652803061529994, -0.004846887197345495, 0.001139773172326386, -0.010381674394011497, 0.011497757397592068, 0.025339990854263306, -0.029256809502840042, -0.01551284734159708, -0.003371061058714986, -0.018236370757222176, 0.0020268482621759176, -0.02483459562063217, 0.012010172940790653, 0.004271297715604305, 0.004738086834549904, -0.03377729654312134, -0.02334648370742798, -0.00988329853862524, 0.014558210968971252, -0.02260242961347103, 0.012782305479049683, -0.002370798261836171, -0.011399486102163792, 0.018545223399996758, 0.01572342962026596, -0.016088437288999557, 0.02237780950963497, -0.009623580612242222, 0.0022075974848121405, -0.012185657396912575, -0.006654379889369011, -0.010423791594803333, 0.0016820208402350545, 0.004130909685045481, 0.02800735831260681, -0.024694206193089485, 0.011589009314775467, 0.01311221718788147, 0.021970683708786964, -0.02441343106329441, -0.009462134912610054, -0.02282704971730709, 0.030436066910624504, -0.00661226361989975, -0.01624286361038685, 0.011617086827754974, 0.0023321916814893484, 0.006106867454946041, -0.03049222193658352, -0.021521443501114845, -0.0049276105128228664, -0.007981044240295887, 0.000156400739797391, 0.010823896154761314, -0.009616561233997345, -0.012290948070585728, -0.005131172481924295, 0.0066263023763895035, -0.01994910091161728, 0.008830389939248562, 0.0006238481146283448, 0.040038589388132095, -0.023683415725827217, -0.005562865175306797, -0.008282877504825592, -0.030520299449563026, 0.0016416594153270125, 0.003987012431025505, -0.0033745707478374243, -0.0048714554868638515, 0.02577519230544567, -0.002095287200063467, 0.013175391592085361, 0.02146528847515583, 0.017057113349437714, -0.042537491768598557, 0.021830296143889427, -0.0013573741307482123, 0.006935155484825373, 0.005261031445115805, -0.012536627240478992, -0.03352459520101547, -0.019373510032892227, 0.030857229605317116, -0.013147314079105854, -0.002204087795689702, 0.005892776418477297, 0.03461962193250656, 0.017562508583068848, -0.008781254291534424, -0.0012108443770557642, -0.014951296150684357, 0.019022541120648384, -0.016032282263040543, 0.019401587545871735, 0.003695707768201828, -0.002992014167830348, 0.021928567439317703, -0.022125110030174255, 0.015161878429353237, -0.008830389939248562, -0.028976034373044968, 2.3484788471250795e-05, -0.012845479883253574, 0.0009844691958278418, 2.5801735318964347e-05, 0.02354302816092968, 0.008865486830472946, -0.027459844946861267, -0.026771945878863335, 0.02032814733684063, -0.004180045332759619, 0.0004781958123203367, 0.038634710013866425, -0.008156528696417809, -0.003306131809949875, 0.03902779892086983, -0.003622004296630621, -0.03871894255280495, -0.03484424203634262, -0.030014902353286743, -0.04402559995651245, 0.002741070929914713, 0.01109063345938921, 0.02097393199801445, -0.0008901461260393262, -0.0377923846244812, -0.023795725777745247, -0.029425274580717087, -0.02962181717157364, -0.014782831072807312, -0.01954197697341442, 0.02694041095674038, 0.03554617986083031, 0.032850734889507294, -0.001981222303584218, 0.03824162483215332, -0.004825829062610865, 0.024778438732028008, -0.036220040172338486, 0.0056155105121433735, -0.015919972211122513, -0.02055276744067669, 0.019977178424596786, -0.019359471276402473, -0.05494776740670204, 0.010760721750557423, 0.006752651184797287, -0.005510219372808933, 0.016074398532509804, 0.006763180252164602, -0.003000788390636444, 0.002851626370102167, 0.011427563615143299, 0.009153282269835472, -0.0033359641674906015, 0.020959893241524696, -0.0004803893680218607, -0.04138631001114845, 0.012010172940790653, 0.007742384914308786, -0.004966217093169689, -0.00965165812522173, 0.01961217075586319, 0.012403258122503757, -0.012536627240478992, 0.0014889877056702971, 0.002502411836758256, 0.00017581373685970902, -0.010669469833374023, 0.012459414079785347, -0.013659728690981865, 0.02059488371014595, 0.02403438463807106, 0.02124066837131977, 0.02327628992497921, -0.005197856575250626, -0.01254364661872387, 0.01949986070394516, 0.007665171753615141, -0.014516094699501991, 0.03037991188466549, -0.01311221718788147, -0.010915148071944714, -0.028133707121014595, 0.0033850998152047396, -0.012894615530967712, -0.007503725588321686, -0.022883204743266106, -0.0023988757748156786, -0.02229357697069645, -0.0012977092992514372, -0.003457048675045371, -0.023865919560194016, 0.017169423401355743, 0.005201366730034351, -0.0013661483535543084, 0.012515569105744362, 0.004151967819780111, 0.010121957398951054, -0.033580753952264786, -0.011855746619403362, 0.00028933040448464453, 0.013708864338696003, -0.021212590858340263, -0.004320433363318443, 0.019584093242883682, -0.0032499765511602163, 0.014544172212481499, 0.20507843792438507, -0.004541544243693352, 0.01771693490445614, 0.03737122192978859, 0.0030200916808098555, -0.020580844953656197, 0.015175917185842991, -0.0008462749538011849, -0.01437570620328188, 0.015147839672863483, 0.012929712422192097, -0.013442127965390682, -0.02539614588022232, -0.003958934918045998, 0.017730973660945892, -0.0087882736697793, -0.03386152908205986, -0.003276299452409148, -0.009876279160380363, -0.005524258129298687, -0.006324468646198511, -0.0038747021462768316, -0.016495561227202415, 0.009644638746976852, 0.01613055355846882, 0.003720275592058897, -0.004931120201945305, -0.007707288023084402, 0.0073142023757100105, 0.018910231068730354, -0.026364821940660477, 0.009735891595482826, 0.0177590511739254, -0.0062297070398926735, -0.018489068374037743, -0.013884349726140499, 0.008360090665519238, -0.025676921010017395, 0.011392466723918915, 0.025789231061935425, -0.011532854288816452, -0.001863647485151887, -0.02618231810629368, -0.01847502961754799, 0.017351927235722542, -0.0106764892116189, -0.01481090858578682, 0.0015898913843557239, 0.003290338208898902, 0.01802578754723072, -0.01624286361038685, 0.006847412791103125, 0.008142489939928055, 0.032401494681835175, 0.0020496612414717674, 0.004864436108618975, -0.012178638018667698, 0.01267701480537653, -0.025382107123732567, -0.017323849722743034, -0.020454496145248413, 0.014333589933812618, -0.00048170550144277513, 0.02074931003153324, -0.03804508224129677, 0.0006229706923477352, -0.022813010960817337, 0.018545223399996758, 0.0022005781065672636, -0.0040150899440050125, 0.01131525356322527, -0.006373604293912649, -0.03902779892086983, -0.003951915539801121, -0.023023592308163643, -0.008051238022744656, 0.015302265994250774, 0.01540053728967905, 0.04677719995379448, 0.01900850236415863, 0.003214879659935832, 0.028554869815707207, -0.023065708577632904, -0.030323756858706474, 0.008781254291534424, -0.027080798521637917, 0.028217939659953117, -0.013329817913472652, -0.010957264341413975, -0.022462042048573494, -0.018685610964894295, -0.00512064341455698, -0.015919972211122513, -0.01271913107484579, -0.0007637971430085599, 0.002014564350247383, 0.00799508299678564, 0.0052926186472177505, -0.0023883467074483633, -0.03372114151716232, -0.03492847457528114, 0.06895846873521805, 0.004085283726453781, 0.02191452868282795, -0.016004204750061035, 0.007244008593261242, -0.0034535389859229326, 0.02010352723300457, 0.0009914885740727186, 0.008437304757535458, 0.0023567595053464174, -0.029256809502840042, 0.016270941123366356, 0.004352020565420389, -0.006268313620239496, 0.022756855934858322, 0.03683774918317795, -0.015597079880535603, 0.005411948077380657, -0.008472401648759842, 0.02168990857899189, 0.0010695792734622955, 0.006138454657047987, 0.0018654023297131062, -0.036220040172338486, -0.017365965992212296, 0.0037167659029364586, 0.0035763781052082777, -0.039505116641521454, -0.03650081902742386, 0.014298493042588234, -0.01673422008752823, 0.017787128686904907, -0.015161878429353237, -0.025073254480957985, 0.005576903931796551, 0.012213734909892082, -0.013996659778058529, -0.008100373670458794, -0.005478632170706987, -0.013547418639063835, 0.021703947335481644, 0.012389219366014004, 0.005148720927536488, -0.0018706668633967638, -0.02950950711965561, 0.004685441497713327, 0.006822844967246056, -0.006784238386899233, -0.0190786961466074, -0.00999560859054327, 0.01847502961754799, -0.00036435009678825736, 0.006836883723735809, 0.03582695499062538, -0.018825998529791832, -0.024890750646591187, -0.017702896147966385, 0.006738612428307533, 0.004583660513162613, -0.0366692841053009, 0.001981222303584218, 0.041470542550086975, -0.005289108958095312, -0.03607965260744095, 0.007938927970826626, -0.18037019670009613, 0.006759670563042164, -0.0025252248160541058, -0.006117396522313356, 0.0024146693758666515, 0.015007451176643372, 0.008226722478866577, -0.007475648075342178, -0.001752214739099145, -0.006387643050402403, 0.013175391592085361, 0.0031130986753851175, -0.015428614802658558, -0.00042335683247074485, 0.008254799991846085, -0.001453890698030591, -0.03344036266207695, 0.015189955942332745, 0.06306218355894089, 0.0008243393967859447, 0.00024853021022863686, -0.023571105673909187, -0.005696233361959457, -0.00522593455389142, 0.011869785375893116, -0.0018338151276111603, -0.023627260699868202, 0.02906026691198349, -0.006440288387238979, -0.0272071473300457, -0.011294195428490639, -0.021338939666748047, 0.038073159754276276, 0.0021742554381489754, 0.009055010043084621, 0.002477844012901187, 0.0019408607622608542, 0.0018355699721723795, -0.020089488476514816, 0.01919100619852543, 0.013842233456671238, 0.01347020547837019, 0.01371588371694088, 0.001947880140505731, 0.00795296672731638, 0.03461962193250656, 0.015302265994250774, -0.016846532002091408, -0.010416772216558456, -0.008156528696417809, 0.009904356673359871, -0.028540831059217453, 0.0075879585929214954, -0.006454327143728733, -0.0005444412818178535, 0.015442653559148312, 0.001881195930764079, 0.04352020472288132, 0.004741596523672342, -0.02736157365143299, -0.0018460990395396948, -0.01524611096829176, 0.02063699997961521, -0.009097127243876457, 0.0077353655360639095, -0.03310343250632286, -0.007742384914308786, 0.015807662159204483, -0.005636568646878004, 0.01052206289023161, 0.0021584618370980024, 0.002891987795010209, -0.010620334185659885, 0.02256031334400177, 0.0022672624327242374, -0.006317449267953634, -0.04520485922694206, 0.007050975225865841, 0.03203648701310158, -0.006001576781272888, 0.0065069724805653095, 0.01307711936533451, -0.007370357401669025, 0.016481522470712662, -0.026084044948220253, 0.006496443413197994, 0.011455641128122807, 0.007377376779913902, -0.012754227966070175, 0.0049276105128228664, 0.01905061863362789, -0.020735271275043488, 0.033917684108018875, 0.004320433363318443, 0.006717554293572903, 0.015232072211802006, 0.03268226981163025, 0.009097127243876457, 0.01369482558220625, -0.008226722478866577, 0.007791520562022924, 0.03374921903014183, -0.021591637283563614, 0.018643494695425034, 0.022869165986776352, 0.019022541120648384, -0.010683508589863777, -0.010950244963169098, 0.03068876452744007, -0.00942703802138567, -0.01054312102496624, 0.0024831085465848446, 0.011350350454449654, -0.004815299995243549, -0.010072821751236916, 0.040375519543886185, 0.0018338151276111603, -0.014249357394874096, 0.028274094685912132, -0.017674818634986877, 0.05233655869960785, -0.03071684204041958, -0.011813630349934101, -0.005039920564740896, -0.013961562886834145, -0.010641392320394516, -0.12309198826551437, -0.027010604739189148, 0.025325952097773552, 0.00707554304972291, -0.01572342962026596, 0.011083614081144333, -0.007672191131860018, 0.030660687014460564, -0.007117659319192171, 0.028695257380604744, -0.024315159767866135, -0.0016416594153270125, 0.007229969836771488, 0.0007962618255987763, 0.01008686050772667, -0.005710272118449211, -0.020243914797902107, -0.0003147756797261536, -0.01226287055760622, 0.03102569468319416, 0.016411328688263893, -0.01760462485253811, 0.027066759765148163, -0.008093354292213917, -0.009518289938569069, -0.03728698939085007, -0.02826005592942238, 0.011708338744938374, 0.0021093261893838644, 0.006320958957076073, 0.018825998529791832, -0.029312964528799057, 0.016762297600507736, -0.014200221747159958, -0.018882153555750847, -0.023781687021255493, -0.009700793772935867, -0.030857229605317116, -0.0012082121102139354, -0.03751160949468613, -0.0006062996108084917, 0.011399486102163792, 0.0035026746336370707, -0.013575496152043343, -0.002593663753941655, -0.00986224040389061, -0.009665696881711483, 0.01994910091161728, 0.015976127237081528, 0.005345263984054327, -0.02517152577638626, -0.009462134912610054, -0.013189430348575115, -0.02066507749259472, 0.035995420068502426, 0.029116421937942505, 0.007988063618540764, 0.02010352723300457, -0.024848634377121925, -0.005485651548951864, 0.0061349449679255486, -0.004569621756672859, -0.031727634370326996, 0.012894615530967712, 0.007763443049043417, -0.0009125204524025321, -0.020019294694066048, -0.004130909685045481, -0.009700793772935867, 0.003088530618697405, -0.011666222475469112, 0.013428089208900928, -0.0018934799591079354, 0.009609541855752468, -0.018236370757222176, 0.005927873309701681, -0.008668944239616394, -0.022616468369960785, 0.015175917185842991, 0.02365533821284771, -0.006664908956736326, -0.014782831072807312, 0.006766689941287041, -0.0396735817193985, 0.04304288700222969, -0.009897337295114994, -0.0035658490378409624, 0.0012029475765302777, 0.035798877477645874, -0.04186363145709038, -0.011378427967429161, 0.019317355006933212, -0.0015618138713762164, 0.0014354648301377892, 0.0010713341180235147, 0.014094931073486805, -0.013385972939431667, -0.01833464205265045, 0.015386498533189297, 0.0021040616557002068, -0.02403438463807106, 0.003671139944344759, -0.04731067642569542, 0.006598224863409996, -0.002574360463768244, -0.0010476436000317335, 0.004646834917366505, -0.019176967442035675, -0.0003476790734566748, 0.0026814062148332596, -0.0018338151276111603, 0.0015214523300528526, 0.0040887934155762196, 0.006370094604790211, -0.010858993045985699, -0.01655171625316143, -0.010830915533006191, -0.040038589388132095, 0.007777481805533171, 0.00143370998557657, 0.01912081241607666, 0.000779152091126889, -0.005190837197005749, -0.012726150453090668, 0.022532235831022263, 0.01992102339863777, -0.00931472796946764, 0.012340083718299866, -0.01905061863362789, 0.04051590710878372, 0.005538297351449728, -0.021282784640789032, 0.006784238386899233, -0.0049521783366799355, -0.008303935639560223, 0.0049767461605370045, -0.011462660506367683, -0.028554869815707207, -0.0016065624076873064, 0.020721232518553734, 0.00040800191345624626, 0.028863724321126938, -0.018503107130527496, -0.011532854288816452, 0.030239524319767952, -0.026631558313965797, -0.018811959773302078, -0.007566900458186865, -0.014684559777379036, -0.011687280610203743, 0.0029130459297448397, 0.010276383720338345, 0.023908035829663277, -0.0025550571735948324, -0.019598131999373436, -0.03268226981163025, 0.01311221718788147, -0.012290948070585728, 0.010227248072624207, 0.0070720333606004715, 0.008535576052963734, -0.006359565537422895, 0.04107745736837387, 0.01628497987985611, 0.021409133449196815, -0.007868734188377857, 0.02762831188738346, -0.019822752103209496, -0.03914010897278786, -0.010964283719658852, 0.005296128336340189, -0.04076860472559929, 0.00861278921365738, -0.0107677411288023, 0.029649894684553146, 0.01171535812318325, 0.017660779878497124, -0.018011748790740967, 0.0013801871100440621, -0.026364821940660477, -0.0050013139843940735, 0.025269797071814537, 0.030744919553399086, -0.018643494695425034, -0.02774062193930149, 0.01885407604277134, 0.010690527968108654, 0.007609016727656126, 0.0026392899453639984, 0.03049222193658352, 0.002662102924659848, 0.004081774037331343, 0.0005475122597999871, -0.0036921980790793896, -0.008493459783494473, 0.026252511888742447, -0.003190311836078763, 0.03332805261015892, -0.0156813133507967, 0.01976659707725048, 0.015470731072127819, 0.04304288700222969, 0.00310783414170146, 0.015653235837817192, -0.0003121434128843248, 0.001219618716277182, -0.022167228162288666, 0.015863817185163498, -0.023865919560194016, -0.02747388370335102, 0.029986824840307236, 0.01666402630507946, 0.011855746619403362, -0.008893564343452454, -0.021254707127809525, 0.023936113342642784, -0.006647360511124134, 0.008437304757535458, -0.00487496517598629, 0.005194346886128187, -0.01693076454102993, 0.018222332000732422, 0.0025146957486867905, 0.020805466920137405, 0.0275861956179142, -0.009104146622121334, 0.03192417696118355, 0.00810739304870367, 0.023795725777745247, -0.0024409922771155834, -0.005082036834210157, -0.014993412420153618, 0.010023686103522778, 0.008556634187698364, 0.000750197097659111, -0.0009484948241151869, -0.003065717639401555, -0.015175917185842991, -0.02032814733684063, 0.030520299449563026, -0.008030179888010025, 0.07260855287313461, 0.023065708577632904, -0.029986824840307236, 0.0033991385716944933, -0.026280589401721954, -0.009104146622121334, 0.021591637283563614, 0.022012799978256226, -0.007307182997465134, -0.02769850566983223, 0.013400011695921421, -0.012803363613784313, -0.02387995831668377, -0.017450198531150818, -0.011504776775836945, -0.001889970269985497, -0.0072159310802817345, 0.02633674442768097, -0.0010169338202103972, 0.013421069830656052, 0.021226629614830017, 0.010529082268476486, 0.022953398525714874, 0.0017671309178695083, -0.03798892721533775, -0.01037465501576662, 0.03812931478023529, 0.014684559777379036, -0.007510744966566563, -0.020243914797902107, 0.02470824494957924, 0.003987012431025505, -0.01599016599357128, -0.017099229618906975, -0.018194254487752914, -0.009076069109141827, 0.010774760507047176, -0.030520299449563026, 0.013947524130344391, 0.006710534915328026, 0.0070474655367434025, 0.008100373670458794, -0.01722557842731476, -0.013498282991349697, -0.003762391861528158, -0.0008506620652042329, -0.001545142731629312, -0.03026760183274746, -0.015456692315638065], "4e79713a-6e82-497a-a79f-7c97fc16f07c": [-0.011247921735048294, -0.004606490954756737, 0.011115511879324913, -0.03311655670404434, -0.002559355227276683, 0.02401508018374443, -0.012537182308733463, -0.040503669530153275, 0.0014138303231447935, -0.051793403923511505, 0.008857564069330692, 0.011889067478477955, 0.0014451907481998205, -0.0046552736312150955, 0.000851956894621253, 0.012272360734641552, 0.014899663627147675, -0.004143054131418467, 0.010098041035234928, -0.01402854174375534, -0.008871502242982388, -0.016307396814227104, -0.014969353564083576, -0.010662528686225414, -0.023973265662789345, 0.006815655156970024, 0.030440472066402435, -0.0039061091374605894, -0.008300046436488628, 0.03453822806477547, 0.010390738025307655, -0.022147394716739655, -0.019206488505005836, 0.001739629777148366, -0.011101573705673218, 0.009240858256816864, -0.002994915936142206, -0.009080571122467518, 0.00735923508182168, -0.01272534392774105, 0.01820295676589012, 0.009819282218813896, -0.010251359082758427, -0.007164103910326958, -0.02862853929400444, 0.024753790348768234, -0.0030471833888441324, 0.00793765950948, -0.013464055024087429, -0.008432457223534584, -0.018871977925300598, 0.017436370253562927, -0.017603624612092972, 0.009408113546669483, -0.018704723566770554, -0.0026098801754415035, 0.0024826964363455772, 0.0012849043123424053, 0.02132505737245083, 0.0019164674449712038, -0.002142959041520953, -0.002486180979758501, -0.02132505737245083, 0.013066823594272137, -0.037660326808691025, -0.01770118996500969, -0.0007047373801469803, 0.007063054013997316, -0.007895845919847488, 0.0038085435517132282, 0.019959138706326485, 0.03788333386182785, -0.0014852622989565134, -0.017673315480351448, -0.005407922901213169, -0.030050210654735565, -0.01533173955976963, -0.02033546194434166, 0.00715713482350111, -0.004707540851086378, 0.015248112380504608, -0.019652502611279488, -0.005888781975954771, -0.011310642585158348, 0.032057274132966995, 0.04596734419465065, -0.009317516349256039, 0.0035925053525716066, -0.0016228995518758893, -0.01587531901896, 0.008265201933681965, 0.0030855126678943634, 0.026482095941901207, 0.0238060113042593, 0.005536848679184914, 0.021032359451055527, 0.0018223864026367664, -0.010418614372611046, 0.005080380942672491, -0.014816036447882652, -0.016669781878590584, -0.007770404685288668, -0.031583383679389954, -0.01474634651094675, -0.014537276700139046, -0.008613650687038898, 0.014634842984378338, 0.003238830016925931, 0.007728590629994869, 0.034064337611198425, -0.006979426369071007, 0.027095366269350052, -0.0019269209587946534, -0.03701918199658394, -0.010070165619254112, -0.011178231798112392, 0.016641907393932343, -0.024781666696071625, 0.005049020517617464, -0.01190300565212965, 0.023457562550902367, 0.0035350113175809383, 0.028740042820572853, -0.015359615907073021, 0.01256505772471428, -0.002210906706750393, 0.011714843101799488, -0.016906727105379105, 0.021297181025147438, -0.0027353218756616116, 0.028712168335914612, 0.021840760484337807, 0.0021412167698144913, -0.011526680551469326, -0.026900235563516617, 0.014119138941168785, -0.008362767286598682, 0.011582432314753532, -0.01655827835202217, -0.01775694265961647, 0.028015270829200745, 0.021046297624707222, -0.018035700544714928, -0.023290306329727173, -0.008028256706893444, 0.030970115214586258, -0.01970825530588627, 0.035290878266096115, 0.010544056072831154, -0.022328589111566544, 0.003503651125356555, -0.010948256589472294, -0.012648685835301876, 0.00553336413577199, 0.0030349877197295427, -0.006090882234275341, 0.002008806448429823, 0.025924578309059143, -0.0263566542416811, -0.005334748420864344, 0.013261955231428146, 0.025701571255922318, 0.0010017898166552186, -0.0034879709128290415, 0.007714652922004461, 0.030468348413705826, 0.014816036447882652, -0.0326426699757576, -0.021269304677844048, -0.009965631179511547, 0.015791691839694977, 0.043737273663282394, -0.04117269068956375, 0.02784801460802555, 0.01474634651094675, 0.00672157434746623, 0.02419627271592617, 0.015052980743348598, -0.00564486812800169, -0.012627778574824333, 0.025492502376437187, -0.01595894806087017, 0.01658615469932556, 0.017533935606479645, -0.016154078766703606, -0.02078147605061531, 0.009003913030028343, -0.0011098089162260294, 0.006833077874034643, 0.0003347284800838679, 0.002048877999186516, 0.002749259816482663, -0.02062815986573696, -0.014042479917407036, -0.6212978363037109, -0.0074637699872255325, 0.00724076246842742, -0.023346059024333954, -0.001494844676926732, 0.01531780231744051, 0.007185010705143213, 0.004522863309830427, 0.008780905976891518, 0.03308868408203125, -0.0018589735263958573, -0.002280596410855651, -0.0011725296499207616, -0.01353374496102333, -0.03824572265148163, -0.023819949477910995, 0.016014698892831802, -0.008348829112946987, -0.012599902227520943, 2.7304216928314418e-05, -0.03241966292262077, 0.019722193479537964, 0.008739091455936432, -0.022119520232081413, 0.004860858432948589, 0.004561192821711302, 0.03147188201546669, 0.010948256589472294, -0.016753410920500755, 0.014209735207259655, -0.03306080773472786, 0.014634842984378338, 0.030022334307432175, -0.007076991721987724, 0.030078087002038956, -0.006205870304256678, -0.0209626704454422, 0.025046488270163536, 0.01958281360566616, 0.021938325837254524, -0.030440472066402435, -0.0063591874204576015, 0.0048260134644806385, 0.02281641587615013, 0.007770404685288668, -0.0009059664444066584, -0.005069927778095007, 0.013882193714380264, -0.032085150480270386, 0.0031813359819352627, 0.00808400847017765, -0.00889240950345993, -0.01715761050581932, 0.0008894151542335749, -0.0009469091892242432, -0.013965820893645287, 0.03336744010448456, -0.010850690305233002, 0.006557803135365248, 0.003305035410448909, 0.025952454656362534, -0.013303768821060658, -0.014286394231021404, -0.057814598083496094, -0.05196066200733185, 0.01410520076751709, -0.021283242851495743, -0.011268828995525837, 0.005961955990642309, -0.0034583527594804764, 0.008878471329808235, -0.006833077874034643, 0.01689279079437256, -0.0023224102333188057, 0.02039121463894844, 0.02231465093791485, 0.035736892372369766, 0.016544342041015625, 0.0023363481741398573, 0.03261479362845421, 0.000984367448836565, -0.01170787401497364, -0.009185106493532658, -0.015485057607293129, 0.041339945048093796, 0.01973613165318966, -0.005446251947432756, -0.017324866726994514, -0.011101573705673218, -0.016614031046628952, 0.028377657756209373, 0.023109113797545433, -0.008237325586378574, -0.03498424217104912, 0.034036461263895035, 0.042928870767354965, 0.019331930205225945, -0.015763815492391586, -0.00955446157604456, -0.01528992597013712, -0.031611260026693344, -0.027178993448615074, 0.015624436549842358, 0.0019600235391408205, 0.01117126364260912, 0.028795795515179634, -0.016098326072096825, 0.006376610137522221, 0.0068714069202542305, -0.013924007304012775, -0.019276179373264313, -0.010132886469364166, -0.01007713470607996, 0.0028119804337620735, 0.013512837700545788, -0.023248493671417236, 0.003916562534868717, 0.006808686535805464, 0.006035130470991135, -0.012781095691025257, -0.012244485318660736, 0.0019216942600905895, 0.0012091167736798525, 0.005164008587598801, 0.006707636173814535, 0.00967293418943882, 0.014272456057369709, 0.012948350980877876, -0.00929661002010107, 0.017896322533488274, 0.007672838866710663, -0.014816036447882652, 0.021492311730980873, -0.015066918917000294, 0.03386920690536499, 0.011338518932461739, 0.017617562785744667, 0.0017100116237998009, 0.013791597448289394, -0.04000190272927284, -0.008599712513387203, -0.00967293418943882, 0.03938863426446915, 0.0030872549396008253, -0.014774221926927567, -0.028043145313858986, -0.017812693491578102, 0.010920380242168903, -0.005756371654570103, -0.010237420909106731, -0.03548600897192955, -0.018788350746035576, -0.011296704411506653, 0.02602214366197586, -0.008557898923754692, 3.500819730106741e-05, -0.0032196654938161373, -0.04145145043730736, -0.007021239958703518, -0.02695598639547825, -0.012432646937668324, -0.007491645868867636, 0.004404390696436167, -0.020586345344781876, -0.011505774222314358, -0.023945391178131104, -0.01952706091105938, 0.019262241199612617, -0.006052552722394466, -0.01574987918138504, 0.005164008587598801, -0.027597131207585335, 0.014188828878104687, 0.014816036447882652, -0.02320667915046215, -0.003853841917589307, -0.011896036565303802, -0.009986537508666515, -0.005759855732321739, -0.0005048149614594877, 0.016795223578810692, 0.018007826060056686, 0.0010618972592055798, -0.0065612876787781715, 0.02012639306485653, 0.013457085937261581, 0.031137369573116302, 0.013241047970950603, -0.0161680169403553, -0.00139815011061728, -0.013826441951096058, 0.03183426707983017, -0.012690499424934387, -0.0032057275529950857, -0.008934223093092442, -0.01772906631231308, -0.012146919034421444, -0.01973613165318966, -0.020056704059243202, 0.03398071229457855, 0.01337345875799656, 0.02414052188396454, -0.008453363552689552, -0.00974959321320057, 0.02497679740190506, -0.015275987796485424, 0.017659377306699753, -0.014439711347222328, 0.007916753180325031, 0.015192360617220402, 0.0049967532977461815, 0.004989784676581621, -0.009944723919034004, -0.020488779991865158, -0.008230356499552727, 0.007526490371674299, -0.02078147605061531, 0.013380427844822407, -0.021854698657989502, 0.009429019875824451, 0.00402109744027257, 0.0263566542416811, 0.02497679740190506, 0.0002630787203088403, -0.01106672827154398, 0.001634224085137248, 0.002155154710635543, 0.01232114341109991, 0.021478373557329178, -0.024962861090898514, 0.0029496178030967712, 0.0326426699757576, -0.003132553305476904, -0.009491740725934505, 0.03963951766490936, 0.017296990379691124, 0.042594362050294876, -0.008021287620067596, 0.046218227595090866, -0.023945391178131104, 0.005707588512450457, 0.007784342393279076, 0.022203147411346436, -0.01689279079437256, 0.03191789612174034, 0.004062911029905081, 0.024698039516806602, 0.0010296656982973218, -0.030105961486697197, 0.01089947298169136, -0.02333212085068226, 0.016906727105379105, -0.028767919167876244, 0.0064010014757514, 0.0197640061378479, -0.021311119198799133, -0.0027388061862438917, 0.019331930205225945, 0.011749687604606152, 0.014537276700139046, -0.0002613364777062088, 0.015220236033201218, 0.007219855673611164, 0.002212648745626211, 0.024572597816586494, -0.018621094524860382, -0.0014809067361056805, -0.00894119217991829, -0.003097708337008953, -0.010307110846042633, 0.01190300565212965, -0.025854889303445816, 0.003745822934433818, -0.014251548796892166, 0.011192169971764088, 0.005941049195826054, -0.01320620346814394, 0.015791691839694977, 0.00011144911695737392, 0.02695598639547825, 0.00014721954357810318, -0.02138080820441246, 0.026997800916433334, 0.02425202541053295, -0.00408730236813426, 0.007819187827408314, -0.03715856373310089, 0.006003770045936108, 0.010056227445602417, 0.020196082070469856, -0.0011951788328588009, 0.01289259921759367, 0.006505535915493965, 0.03629440814256668, -0.015624436549842358, 0.003609927836805582, 0.03308868408203125, -0.01731092855334282, -0.012335081584751606, -0.010118948295712471, 0.017269114032387733, 0.009449927136301994, 0.0003445285838097334, -0.005404438357800245, 0.04159082844853401, -0.02273278869688511, 0.013282861560583115, -0.007672838866710663, 0.020349400117993355, -0.04075455293059349, 0.01059980783611536, -0.011714843101799488, 0.0020506202708929777, -0.01629345864057541, -0.010578900575637817, 0.00544276786968112, 0.0066693066619336605, -0.003909593913704157, 0.016697658225893974, 0.01448152493685484, -0.013498900458216667, -0.02907455340027809, 0.0028834124095737934, 0.02766682207584381, 0.06338977813720703, 0.010181669145822525, 0.0025436750147491693, 0.024182334542274475, -0.02677479386329651, 0.0036273503210395575, -0.021785007789731026, -0.023346059024333954, 0.023889638483524323, 0.00976353045552969, -0.016641907393932343, -0.00735923508182168, 0.0038329348899424076, 0.0018781381659209728, 0.007749497890472412, 0.0070909298956394196, -0.005073412321507931, -0.015025105327367783, -0.018607156351208687, 0.006129211280494928, -0.01106672827154398, -0.002008806448429823, 0.019248303025960922, 0.008718185126781464, 0.03395283594727516, 0.02940906397998333, 0.03194577246904373, 0.003472290700301528, 0.0017239496810361743, -0.016600092872977257, -0.027178993448615074, 0.010376800782978535, 0.006892314180731773, 0.023819949477910995, -0.008474270813167095, 0.009233889169991016, -0.0033555603586137295, -0.02377813495695591, -0.012342050671577454, 0.0029461332596838474, -0.0003001013828907162, 0.02111598663032055, 0.0036621950566768646, -0.02164562977850437, 0.01746424473822117, -0.013436179608106613, 0.006453268695622683, 0.026816606521606445, -0.020084578543901443, 0.0002822433889377862, 0.027931641787290573, 0.0011333292350172997, 0.010118948295712471, 0.011456991545855999, 0.004564676899462938, -0.00619890121743083, -0.004599521867930889, -0.016056513413786888, -0.015178422443568707, -0.037743955850601196, -0.029130306094884872, -0.025520378723740578, 0.0013206203002482653, -0.01289259921759367, -0.024307776242494583, -0.025924578309059143, -0.014272456057369709, 0.007132743485271931, -0.013903100974857807, -0.009080571122467518, -0.004097755998373032, -0.016363147646188736, -0.04596734419465065, 0.008181573823094368, 0.04663636535406113, 0.03027321770787239, 0.020014889538288116, -0.0009251311421394348, -0.009164199233055115, 0.020251834765076637, -0.016669781878590584, -0.02239827811717987, 0.017227301374077797, -0.02135293185710907, -0.005414891988039017, -0.03105374239385128, -0.02333212085068226, -0.014927539974451065, -0.019722193479537964, 0.0071989488787949085, 0.011742719449102879, -0.02482348121702671, 0.0070909298956394196, 0.013917038217186928, 0.014467587694525719, 0.01970825530588627, 0.008481239899992943, 0.0053870161063969135, 0.006819139700382948, -0.030161714181303978, 0.011282767169177532, -0.02078147605061531, -0.004832982551306486, -0.038468729704618454, -0.0038364194333553314, 0.0012648685369640589, -0.001464355387724936, -0.0170739833265543, 0.00030794148915447295, -0.029659947380423546, 0.008481239899992943, -0.004993268754333258, -0.001735274214297533, -0.0209626704454422, -0.005174462217837572, 0.0005239796591922641, 0.0026116224471479654, 0.005233698524534702, -0.004763293080031872, -0.00907360203564167, 0.001329331542365253, -0.028767919167876244, 0.02713717892765999, 0.011450022459030151, -0.00955446157604456, 0.0256040059030056, 0.02182682231068611, -0.0365452915430069, -0.05251817777752876, 0.009937754832208157, 0.012857754714787006, 0.010683435015380383, -0.013645248487591743, -0.0054950350895524025, -0.019234364852309227, -0.01859322004020214, 0.010669496841728687, -0.0033938896376639605, -0.003139522159472108, -0.004390452988445759, -0.020711787045001984, 0.015485057607293129, 0.002446109429001808, -0.005906204227358103, -0.016614031046628952, -0.026398468762636185, -0.0344267264008522, -0.02503255009651184, 0.004052457865327597, 0.024809543043375015, -0.01736667938530445, -0.016000760719180107, -0.017840569838881493, -0.022537657991051674, -0.005965440534055233, -0.0005858292570337653, 0.02039121463894844, -0.008397611789405346, 0.05915264040231705, 0.02533918432891369, 0.02281641587615013, 0.016014698892831802, 0.01877441257238388, 0.00915026105940342, -0.01401460450142622, -0.00889240950345993, -0.015485057607293129, -0.022049829363822937, -0.014997228980064392, 0.00724076246842742, -0.0008436812786385417, -0.002017517574131489, -0.01202147826552391, 0.01788238435983658, -0.00048521472490392625, 0.001599379233084619, 0.02093479409813881, -0.006488113664090633, -0.02716505527496338, -0.036963433027267456, -0.0013441406190395355, 0.017171548679471016, -0.0012004055315628648, 7.736648694844916e-05, -0.017227301374077797, 0.002862505614757538, 0.026398468762636185, -0.01248839870095253, 0.011547587811946869, -0.01488572545349598, 0.030830735340714455, 0.023290306329727173, 0.009707778692245483, 0.02586882747709751, 0.00796553585678339, -0.029966583475470543, 0.005481096915900707, -0.036907680332660675, -0.030078087002038956, 0.01085765939205885, 0.01450940128415823, 0.017087921500205994, 0.004414844326674938, -0.0051361327059566975, 0.0012326370924711227, 0.010836752131581306, -0.021366870030760765, -0.0033189733512699604, -0.0015584365464746952, -0.045381952077150345, -0.00031142597435973585, -0.030719231814146042, -0.01085765939205885, 0.021269304677844048, -0.01809145323932171, -0.0038991402834653854, 0.0038573264610022306, 0.014983291737735271, -0.025199804455041885, -0.012760189361870289, 0.011024914681911469, -0.0034269923344254494, 0.023304244503378868, 0.017533935606479645, 0.033674076199531555, 0.017422432079911232, -0.000732177693862468, -0.011735750362277031, -0.015011167153716087, 0.009324485436081886, -0.011840284802019596, 0.0065926481038331985, 0.04083818197250366, -0.025771260261535645, -0.018648970872163773, -0.0044845337979495525, -0.01869078539311886, 0.02119961567223072, -0.030774982646107674, 0.030774982646107674, 0.014983291737735271, 0.007916753180325031, -0.024098707363009453, -0.014941477216780186, -0.01422367338091135, 0.0026133647188544273, -0.015303864143788815, -0.011965726502239704, -0.014063387177884579, -0.01341527234762907, 0.026997800916433334, 0.011554556898772717, -0.01653040386736393, 0.02644028328359127, -0.009923817589879036, 0.00619890121743083, -0.0009085797937586904, 0.006463722325861454, -0.0021690926514565945, -0.006132695823907852, -0.0138473492115736, 0.04030853882431984, -0.012627778574824333, -0.02002882771193981, 0.003130811033770442, 0.015540809370577335, -0.019903386011719704, 0.008648495189845562, -0.0030036272946745157, 0.040559422224760056, -0.011408207938075066, -0.011749687604606152, 0.00974959321320057, -0.005630929954349995, 0.018885916098952293, -0.01697641797363758, -0.01036286260932684, -0.013735845685005188, -0.004613460041582584, 0.004310309421271086, 0.012376895174384117, -0.014453649520874023, -0.004442720208317041, -0.02422414906322956, -0.005505488254129887, -0.023819949477910995, 0.011965726502239704, -0.012439616024494171, 0.027234746143221855, -0.046134598553180695, -0.002717899391427636, 0.0016777801793068647, -0.029130306094884872, -0.0044845337979495525, -0.007185010705143213, -0.0008907217998057604, -0.0021255367901176214, 0.024154460057616234, -0.012648685835301876, 0.012906537391245365, 0.019722193479537964, 0.010585869662463665, -0.04239923134446144, 0.01170787401497364, -0.010160761885344982, -0.0021969685330986977, 0.001088902004994452, -0.013924007304012775, -0.022537657991051674, -0.01880228891968727, 0.02763894572854042, -0.005212791729718447, 0.004728448111563921, -0.004488018341362476, 0.024684101343154907, 0.01419579703360796, 0.003481001826003194, -0.004460142459720373, 0.004913125652819872, 0.014112169854342937, -0.0029443909879773855, 0.01958281360566616, 0.009707778692245483, -0.007366204168647528, 0.01817508041858673, -0.006634462159126997, 0.004038519691675901, -0.018161142244935036, -0.04922882467508316, -0.020948732271790504, -0.012662623077630997, -0.006571741309016943, 0.004188352730125189, 0.03175063803792, 0.004700572229921818, -0.026496034115552902, -0.040977559983730316, 0.026816606521606445, -0.011833315715193748, -0.0025732931680977345, 0.04000190272927284, -0.008090977557003498, 0.007916753180325031, 0.02395932748913765, -0.015945009887218475, -0.04435054212808609, -0.021129924803972244, -0.03618290647864342, -0.051403142511844635, -0.004024581518024206, 0.010279234498739243, 0.034900616854429245, 0.004247589036822319, -0.018830163404345512, -0.022356463596224785, -0.014816036447882652, -0.021129924803972244, -0.008153698407113552, -0.016028637066483498, 0.03030109405517578, 0.027889829128980637, 0.01733880490064621, -0.005010691471397877, 0.024419279769062996, 0.0014896178618073463, 0.016098326072096825, -0.03152763098478317, -0.004101240541785955, -0.028851546347141266, -0.014732408337295055, 0.037688203155994415, -0.01658615469932556, -0.06238624453544617, 0.0047807153314352036, 0.002508830279111862, 0.002244009170681238, 0.014620904810726643, 0.0012761931866407394, -0.0006184963276609778, 0.014258517883718014, 0.006045583635568619, 0.015220236033201218, 0.002761455485597253, 0.026286965236067772, 0.007547397632151842, -0.012126012705266476, 0.004829498007893562, 0.012077230028808117, 0.005627445410937071, 0.0017962526762858033, 0.010146824643015862, 0.010913411155343056, -0.007958566769957542, 0.023610878735780716, 0.007449831813573837, -0.0013354293769225478, -0.006216323468834162, 0.0019983528181910515, -0.0053068725392222404, 0.027095366269350052, 0.014997228980064392, 0.032475411891937256, -0.020879041403532028, -0.00935932993888855, -0.018133267760276794, -0.0005544688901863992, -0.0032266343478113413, -0.008550929836928844, 0.026300903409719467, -0.03908199816942215, -0.00917813740670681, -0.006042099557816982, 0.010230451822280884, -0.007226824760437012, -0.016516465693712234, -0.01731092855334282, -0.010132886469364166, -0.021729256957769394, -0.006526443175971508, -0.00648462912067771, -0.0190113577991724, 0.0018345820717513561, 0.009861096739768982, 0.002149928128346801, 0.0060699754394590855, 0.0016028637764975429, 0.02646815776824951, -0.035318754613399506, -0.00608042860403657, 0.0019042717758566141, -0.0015253338497132063, -0.023039422929286957, 0.012453554198145866, 0.02763894572854042, 0.004327732138335705, -0.009714747779071331, 0.2012639343738556, -0.0029130305629223585, 0.013930976390838623, 0.035625386983156204, 0.02179894596338272, -0.008913315832614899, 0.013450117781758308, 0.011052791029214859, -0.01230720616877079, 0.012955320067703724, 0.0071048676036298275, 0.0033555603586137295, -0.017506059259176254, -0.00272138393484056, 0.024210210889577866, -0.007428925018757582, -0.031193122267723083, -0.023067299276590347, -0.01814720407128334, 0.001429510535672307, -0.012509305961430073, 0.004501956515014172, -0.018635032698512077, 0.007310452405363321, 0.014816036447882652, 0.008014318533241749, -0.006707636173814535, -0.01450940128415823, 0.018830163404345512, 0.010613745078444481, -0.01069040410220623, 0.011805439367890358, 0.019094984978437424, -0.01566625013947487, -0.012613840401172638, -0.010801907628774643, 0.0136243412271142, -0.025353122502565384, -0.008014318533241749, 0.02677479386329651, -0.008195511996746063, -0.016725534573197365, -0.026105772703886032, 0.0005492421332746744, 0.014648780226707458, -0.008320953696966171, -0.010258328169584274, 0.009401144459843636, -0.004219713155180216, 0.026719041168689728, 0.0010375058045610785, 0.010091072879731655, 0.015680188313126564, 0.03222452849149704, -0.007833125069737434, 0.0009050953085534275, -0.01802176423370838, -0.0013206203002482653, -0.009805344976484776, -0.021910449489951134, -0.02857278846204281, 0.02375025860965252, 0.004202290438115597, 0.019875509664416313, -0.031583383679389954, -0.005916657857596874, -0.03177851438522339, 0.031973645091056824, 0.007185010705143213, 0.008418519049882889, -0.0028851546812802553, -0.008223387412726879, -0.022021953016519547, -0.014356084167957306, -0.01676734909415245, -0.026161523535847664, 0.016432838514447212, 0.002679570112377405, 0.03099799156188965, 0.017979949712753296, 0.009129353798925877, 0.005777278449386358, -0.020196082070469856, -0.02453078329563141, 0.01268353033810854, -0.006690213922411203, 0.02625908888876438, -0.015861382707953453, 0.0011620762525126338, -0.0365452915430069, -0.010878566652536392, 0.0026708587538450956, -0.005439283326268196, -0.006568256765604019, 0.009700809605419636, -0.010369831696152687, 0.007317421492189169, 0.013519806787371635, -0.004972361959517002, -0.013004102744162083, -0.03060772828757763, 0.05931989476084709, 0.03994615003466606, 0.02114386297762394, -0.024419279769062996, 0.0029443909879773855, 0.005139617249369621, 0.02625908888876438, -0.00796553585678339, 0.002623818116262555, -0.0034287346061319113, -0.027443815022706985, 0.00853699166327715, 0.004784199874848127, 0.017840569838881493, 0.015262050554156303, 0.018885916098952293, -0.008125822059810162, 0.00808400847017765, -0.01853746734559536, 0.026732979342341423, -0.0014260259922593832, 0.01531780231744051, 0.007421955931931734, -0.0335346981883049, -0.017952073365449905, -0.005003722384572029, 0.027541380375623703, -0.022955795750021935, -0.02797345630824566, 0.01391006913036108, -0.017269114032387733, 0.013554652221500874, -0.01754787378013134, -0.013143482618033886, -0.005725011229515076, 0.002176061738282442, -0.005146586336195469, -0.015429305844008923, -0.007909784093499184, -0.004143054131418467, 0.026537848636507988, 0.014620904810726643, -0.006658853497356176, -0.011777563951909542, -0.015415367670357227, 0.002919999649748206, 0.004428782034665346, 0.009115416556596756, -0.021394746378064156, -0.005763340275734663, 0.003158686915412545, 0.0005026371800340712, 0.0005544688901863992, 0.023666631430387497, -0.007087445352226496, -0.016070451587438583, -0.015680188313126564, -0.0058051543310284615, 0.020377276465296745, -0.043737273663282394, -0.010467397049069405, 0.03938863426446915, -0.0031534601002931595, -0.025492502376437187, -0.0041116937063634396, -0.1785172075033188, 0.008564867079257965, 0.018412025645375252, 0.0033973741810768843, 0.018662909045815468, 0.0187186598777771, 0.015094795264303684, -0.002353770425543189, -0.003127326490357518, -0.0060386150144040585, -0.0032545102294534445, -8.351878204848617e-05, -0.005578662734478712, -0.005000237841159105, -0.002078496152535081, 0.007268638350069523, -0.013505869545042515, 0.011247921735048294, 0.05876237899065018, 0.00565183674916625, 0.0025419327430427074, -0.02617546170949936, -0.01749212108552456, 0.0018833648646250367, 0.01853746734559536, 0.006059521809220314, -0.017673315480351448, 0.037743955850601196, 0.017171548679471016, -0.03258691728115082, 0.008334890939295292, -0.0161680169403553, 0.0161680169403553, -0.003752791788429022, 0.01488572545349598, 0.00619890121743083, 0.015080857090651989, 0.007310452405363321, -0.01626558229327202, 0.004773746244609356, 0.015192360617220402, 0.022272836416959763, 0.013052886351943016, -0.01676734909415245, 0.011519711464643478, 0.03342319279909134, 0.013115606270730495, -0.013826441951096058, 0.003261479316279292, -0.014056418091058731, 0.030830735340714455, -0.021269304677844048, 0.0002179981820518151, 0.0029774936847388744, 0.011136418208479881, 0.0058051543310284615, 0.011408207938075066, 0.024684101343154907, -0.00045036987285129726, -0.030496224761009216, 0.0030541522428393364, 0.001739629777148366, 0.016223767772316933, -0.01569412648677826, -0.0020994029473513365, -0.03434309735894203, -0.0029043194372206926, 0.008613650687038898, 0.009875033982098103, 0.0008297433378174901, -0.00463436683639884, -0.012328112497925758, 0.016279520466923714, 0.028154650703072548, 0.003191789612174034, 0.01142214611172676, -0.02476772852241993, -0.004129116423428059, 0.0407266765832901, 0.013714938424527645, 0.005042051896452904, 0.024279901757836342, -0.01000047568231821, -0.0028067538514733315, -0.008948161266744137, 0.005195369012653828, 0.006522958632558584, 0.0036308348644524813, -0.015359615907073021, -0.0034147966653108597, 0.01718548685312271, -0.01658615469932556, 0.0104813352227211, -0.007491645868867636, 0.017645439133048058, 0.009108447469770908, 0.02823827788233757, -0.010383768938481808, 0.009840189479291439, -0.019094984978437424, -0.002109856577590108, 0.03381345421075821, -0.035235125571489334, 0.0039026248268783092, 0.044545672833919525, 0.02985507994890213, -0.009638089686632156, 0.007728590629994869, 0.04382089897990227, -0.004975846502929926, -0.0028415985871106386, 0.004407875239849091, 0.03456610441207886, 0.00905966479331255, -0.006380094680935144, 0.03710281103849411, -0.010683435015380383, -0.0266493521630764, 0.028795795515179634, -0.014216704294085503, 0.03509574756026268, -0.02114386297762394, -0.02596639283001423, 0.008097946643829346, 0.007519521750509739, -0.007902815006673336, -0.11562919616699219, -0.028712168335914612, 0.017952073365449905, 0.013958852738142014, -0.016181955114006996, -0.0024652741849422455, -0.00437303027138114, 0.04691512510180473, -0.008181573823094368, 0.026635413989424706, -0.01802176423370838, -0.0022718850523233414, -0.0022701427806168795, 0.02033546194434166, 0.0029531021136790514, -0.00715016620233655, -0.011742719449102879, -0.013171358034014702, -0.027806201949715614, 0.018258707597851753, 0.005456705577671528, -0.008300046436488628, 0.021812884137034416, -0.009777468629181385, 0.0018833648646250367, -0.032447535544633865, -0.021269304677844048, 0.008878471329808235, 0.015540809370577335, 0.0007108352147042751, 0.016934603452682495, -0.024307776242494583, 0.016655845567584038, -0.015624436549842358, -0.019150737673044205, -0.012258422560989857, -0.008516084402799606, -0.02982720360159874, 0.01474634651094675, -0.036489542573690414, 0.005345202051103115, -0.002425202401354909, -0.0006441944278776646, -0.010669496841728687, -0.012599902227520943, -0.013289830647408962, -0.016627969220280647, 0.02476772852241993, 0.013958852738142014, 0.006819139700382948, -0.012927444651722908, -0.03228028118610382, -0.012495367787778378, -0.026454219594597816, 0.02497679740190506, 0.003008853876963258, 0.01650252752006054, 0.02263522334396839, -0.01671159639954567, 0.0034827440977096558, -0.0199173241853714, -0.004592553246766329, -0.02218920923769474, 0.015791691839694977, 0.015025105327367783, 0.003404343267902732, -0.0017675056587904692, -0.012955320067703724, 0.004644820466637611, 0.011519711464643478, -0.009094509296119213, 0.017060045152902603, -0.012906537391245365, 0.007017755415290594, -0.005421860609203577, -0.004428782034665346, -0.014140045270323753, -0.020265772938728333, 0.007373173255473375, 0.030524101108312607, -0.014070356264710426, -0.007428925018757582, -0.001157720573246479, -0.039695270359516144, 0.03272629529237747, -0.00045036987285129726, -0.0060699754394590855, -0.010272265411913395, 0.040531545877456665, -0.029213933274149895, -0.006446299608796835, 0.03342319279909134, 0.011450022459030151, -0.01528992597013712, -0.008599712513387203, 0.012139950878918171, -0.02662147581577301, -0.010836752131581306, 0.019875509664416313, -0.005763340275734663, -0.020293649286031723, -0.010955224744975567, -0.06344553083181381, 0.015512933023273945, 0.002068042755126953, -0.0039305007085204124, -0.0031464912462979555, -0.018133267760276794, -0.007366204168647528, -0.0013711453648284078, 0.004258042201399803, 0.006331311538815498, -0.01970825530588627, 0.011979663744568825, -0.028196463361382484, -0.010070165619254112, -0.02539493702352047, -0.03601565212011337, 0.0025924579240381718, -0.005202338099479675, 0.024628350511193275, 0.008390642702579498, -0.017896322533488274, 0.004418328870087862, 0.014829973690211773, 0.015262050554156303, -0.018760474398732185, 0.006676275748759508, -0.02252371981739998, 0.036963433027267456, -0.018161142244935036, -0.0012378637911751866, 0.01817508041858673, -0.010056227445602417, 0.00010883575305342674, -0.0030105961486697197, -0.0012491883244365454, -0.021910449489951134, 0.0072128865867853165, 0.010118948295712471, 0.014829973690211773, 0.02015426941215992, -0.021004483103752136, -0.016432838514447212, 0.03785546123981476, -0.015680188313126564, -0.005348686594516039, -0.01880228891968727, -0.006557803135365248, -0.022690976038575172, 0.020084578543901443, -0.004296371713280678, 0.014843911863863468, 0.009087540209293365, -0.013143482618033886, -0.04805803671479225, -0.005087350029498339, -0.003860810771584511, -0.0016107037663459778, 0.014258517883718014, 0.00571107305586338, -0.009408113546669483, 0.04624610394239426, 0.010634652338922024, 0.011136418208479881, -0.006310404743999243, 0.03297717869281769, -0.03668467327952385, -0.03230815753340721, 0.007484676782041788, -0.023973265662789345, -0.020530594512820244, 0.002087207278236747, -0.032475411891937256, 0.030970115214586258, 0.010174700058996677, 0.016516465693712234, -0.006815655156970024, 0.012216608971357346, -0.013066823594272137, -0.003710977965965867, 0.028043145313858986, 0.021464435383677483, -0.006289497949182987, -0.02688629738986492, 0.012551119551062584, 0.028740042820572853, 0.002627302659675479, -0.01640496216714382, 0.01673947274684906, 0.01961068995296955, 0.0005074283108115196, -0.01389613188803196, 0.0013058112235739827, -0.015248112380504608, 0.019443433731794357, -0.001634224085137248, 0.021088112145662308, -0.022119520232081413, 0.011742719449102879, 0.015596561133861542, 0.033674076199531555, -0.004488018341362476, 0.024781666696071625, -0.0036064432933926582, -0.015429305844008923, -0.02099054493010044, 0.023931453004479408, -0.02794557996094227, 0.0035959898959845304, 0.04064304754137993, 0.03222452849149704, 0.005616991780698299, -0.010892503894865513, 0.006014223676174879, 0.01422367338091135, -0.0065612876787781715, -0.0011690452229231596, -0.004832982551306486, -0.015596561133861542, -0.024572597816586494, 0.004265011288225651, 0.006195416674017906, 0.025534316897392273, 0.03069135546684265, -0.01614014059305191, 0.012146919034421444, 0.017617562785744667, 0.013387396931648254, 0.0035646294709295034, 0.0038677798584103584, -0.020739663392305374, 0.011143387295305729, 0.020488779991865158, 0.0004974104231223464, 0.001093257567845285, -0.005139617249369621, -0.020056704059243202, -0.014467587694525719, 0.02143656089901924, -0.0013354293769225478, 0.09048514068126678, 0.041339945048093796, -0.035736892372369766, 0.00907360203564167, -0.04114481434226036, -0.005791216157376766, 0.025506440550088882, -0.013066823594272137, 0.006289497949182987, -0.030328968539834023, 0.0011368136620149016, -0.010544056072831154, -0.03356257081031799, -0.016042575240135193, -0.009547492489218712, 0.002489665523171425, -0.00579470070078969, 0.011728781275451183, -0.014927539974451065, 0.0008746060775592923, 0.018844101577997208, -0.008139760233461857, 0.03671254962682724, -0.00018347999139223248, -0.034816987812519073, 6.103295527282171e-05, 0.040503669530153275, 0.008153698407113552, 0.013917038217186928, -0.011275798082351685, 0.024934984743595123, -0.01199360191822052, -0.02808495983481407, -0.004930548369884491, -0.0012457038974389434, 0.005272028036415577, -0.008836657740175724, -0.023304244503378868, 0.016098326072096825, 0.0012613841099664569, 0.007665869779884815, 0.0023920999374240637, -0.03356257081031799, -0.03598777577280998, 0.020656034350395203, -0.010801907628774643, -0.010035321116447449, -0.03347894549369812, -0.02069784887135029], "97019ad3-abb7-41f6-a177-7762daf8013e": [-0.02647750824689865, -0.0040403991006314754, 0.008646740578114986, -0.02054585888981819, -0.006332824006676674, -0.0018572224071249366, -0.016935288906097412, -0.022695006802678108, -0.017565706744790077, -0.02640587091445923, 0.0199870802462101, 0.021663416177034378, -0.0007607089937664568, 0.002797474851831794, -0.00282075721770525, -0.00035886300611309707, 0.0150583665817976, -0.015602817758917809, 0.02447163686156273, -0.01947128400206566, -0.0019324426539242268, 0.003005225909873843, -0.017365118488669395, -0.035389311611652374, -0.026434525847434998, 0.007267703767865896, 0.01634785532951355, -0.013955136761069298, -0.008840164169669151, 0.030919082462787628, 0.01619025133550167, -0.011390486732125282, -0.015660127624869347, -0.008037814870476723, -0.0033634172286838293, 0.007844392210245132, 0.012500880286097527, 0.0028297121170908213, 0.020001407712697983, -0.010373223572969437, 0.030288664624094963, 0.022723663598299026, -0.018396710976958275, 0.005405108444392681, -0.010688431560993195, 0.03404251113533974, 0.0041084554977715015, 0.001428288291208446, -0.013754550367593765, 0.007923194207251072, -0.005444509442895651, -0.005727480631321669, -0.009843099862337112, -0.0069668227806687355, -0.001733646378852427, 0.00991473812609911, 0.004412918351590633, 0.0012697884812951088, -0.00873987004160881, 0.0005251981783658266, 0.014843451790511608, 0.015344919636845589, -0.011777332983911037, -4.0156613977160305e-05, -0.01750839687883854, -0.0189268346875906, -0.01644814945757389, 0.004369935020804405, -0.0053513795137405396, -0.011297357268631458, 0.016562771052122116, 0.015588490292429924, -0.012959364801645279, -0.007188901305198669, 0.0015384320868179202, -0.035876452922821045, -0.01680634170770645, -0.022078918293118477, -0.002571814227849245, 0.008467644453048706, 0.02057451382279396, -0.0094634173437953, -0.006802054587751627, -0.004742454271763563, 0.03470158204436302, 0.03851274028420448, -0.0022064591757953167, -0.0036069874186068773, -0.010315912775695324, -0.019113093614578247, 0.0019306517206132412, 0.012572518549859524, 0.031291600316762924, 0.03395654633641243, 0.01712154969573021, 0.024686552584171295, -0.006880857050418854, 0.004190839361399412, 0.005000351928174496, -0.024643568322062492, -0.02467222325503826, -0.005089899990707636, -0.018654609099030495, -0.0027956839185208082, -0.02634855918586254, -0.019714854657649994, 0.020388254895806313, -0.02041690982878208, 0.0004378889861982316, 0.02441432699561119, -0.016161596402525902, 0.028397414833307266, -0.0037860830780118704, -0.00652982946485281, -0.028454724699258804, 0.0002957317919936031, 0.01573176681995392, -0.009785789065063, -0.012214327231049538, -0.020015735179185867, 0.016233233734965324, 0.009355959482491016, 0.03788232430815697, -0.01641949452459812, 0.014076922088861465, 0.005537639372050762, 0.0035604226868599653, -0.01419154368340969, 0.006862947251647711, 0.003565795486792922, 0.035332001745700836, 0.02183534763753414, 0.0029013503808528185, 0.010760069824755192, -0.041808102279901505, 0.016792012378573418, -0.001532163703814149, -0.0013378448784351349, -0.010444861836731434, -0.007192483637481928, 0.011906282044947147, 0.020689135417342186, 0.010258601978421211, -0.023597650229930878, -0.025431590154767036, 0.04570522531867027, -0.017880914732813835, 0.02395584061741829, 0.010201291181147099, -0.0318647064268589, -0.01384767983108759, -0.024772517383098602, -0.016118614003062248, 0.0015769376186653972, 0.013926481828093529, -0.004986024461686611, -0.0042194947600364685, 0.033555369824171066, -0.016920961439609528, -0.007443217560648918, 0.004728126339614391, 0.015072694048285484, 0.0015097768045961857, -0.01702125556766987, 0.0016369346994906664, 0.03212260454893112, 0.013604109175503254, -0.03341209515929222, -0.023740926757454872, -0.010910510085523129, 0.0017452876782044768, 0.043355487287044525, -0.030202699825167656, 0.020904051139950752, 0.010860363021492958, 0.009133880957961082, 0.015359247103333473, 0.006010451819747686, -0.016405167058110237, -0.0013082941295579076, 0.015660127624869347, 0.0054803285747766495, 0.002476893598213792, 0.016720375046133995, -0.021262241527438164, -0.017551379278302193, 0.041521549224853516, -0.016562771052122116, 0.00803065113723278, -0.0006398194236680865, 0.0009805490262806416, 0.006175220012664795, -0.025804108008742332, 0.008883146569132805, -0.6052001714706421, -0.0013727685436606407, 0.01831074431538582, -0.023268112912774086, -0.019657544791698456, 0.02379823662340641, -0.015344919636845589, -0.0016870815306901932, 0.0048176744021475315, 0.03441502898931503, 0.002777774352580309, 0.010516500100493431, -0.009721314534544945, -0.008138108998537064, -0.023626305162906647, -0.024844156578183174, 0.021362535655498505, -0.007765589747577906, -0.007507692091166973, 0.003569377353414893, -0.044587668031454086, 0.02472953498363495, 0.0029049322474747896, 0.001383514259941876, -0.01009383425116539, -0.00017909570306073874, 0.022064590826630592, 0.01689230650663376, -0.016261890530586243, 0.012078214436769485, -0.028254138305783272, -0.00965684000402689, 0.02660645730793476, -0.017852259799838066, 0.04556194692850113, -0.025073397904634476, -0.005408690311014652, 0.012199999764561653, 0.017852259799838066, 0.03650686889886856, -0.019843803718686104, 0.020889723673462868, 0.015774749219417572, 0.029944801703095436, -0.002686435589566827, -0.0009304021950811148, 0.005892248824238777, 0.02209324575960636, -0.014958073385059834, -0.009098061360418797, 0.009434761479496956, 0.005845683626830578, -0.009907574392855167, -0.006418790202587843, -0.002693599322810769, 0.015101349912583828, 0.0251880194991827, 0.003092982806265354, 0.017135877162218094, -0.003710862947627902, 0.024299705401062965, 0.0090264230966568, -0.02008737437427044, -0.04854210093617439, -0.0365641787648201, -0.0035389310214668512, -0.023268112912774086, -0.009513563476502895, 0.004842747934162617, -0.005186611786484718, 0.005397944711148739, -0.016877979040145874, 0.01951426826417446, 0.0016593217151239514, 0.008310040459036827, 0.017981208860874176, 0.03392789140343666, 0.015660127624869347, -0.0035908687859773636, 0.03375595808029175, -0.0036445974837988615, -0.015516852028667927, -0.008202583529055119, -0.002750909887254238, 0.039515674114227295, 0.006006869953125715, -0.012307456694543362, 0.0013091895962134004, 0.00996488519012928, -0.013503815978765488, 0.02415642887353897, 0.02305319905281067, 0.005179447587579489, -0.03983088582754135, 0.02472953498363495, 0.04498884081840515, -0.00494304159656167, 0.0043520256876945496, 0.008883146569132805, -0.015144332312047482, -0.029514972120523453, -0.026062006130814552, 0.03493082523345947, 0.0035031118895858526, 0.020230650901794434, 0.02356899529695511, -0.027236875146627426, -0.0027186728548258543, 0.015459541231393814, -0.025933057069778442, -0.00949923601001501, -0.012551026418805122, -0.008632413111627102, -0.007009805645793676, 0.00711009930819273, -0.03341209515929222, 0.01555983442813158, 0.00894762109965086, -0.020359599962830544, -0.0033043157309293747, -0.008582266047596931, -0.010774397291243076, 0.006837873719632626, 0.003021344542503357, 0.008811508305370808, 0.016147268936038017, 0.010638284496963024, -0.00015301488747354597, 0.013467997312545776, 0.015115677379071712, 0.00494304159656167, -0.009198355488479137, 0.025517554953694344, -0.023597650229930878, 0.024170756340026855, -0.015301937237381935, 0.023884203284978867, 0.006128654815256596, 0.0016199206002056599, -0.042323894798755646, -0.013711567036807537, -0.002145566511899233, 0.03364133834838867, -0.0030195536091923714, 0.002860158449038863, -0.015258953906595707, -0.0022583967074751854, 0.017522724345326424, -0.010659776628017426, -0.021047327667474747, -0.025904402136802673, -0.010989312082529068, -0.005175865720957518, 0.02831144817173481, -0.011798825114965439, -0.009792952798306942, -0.006039107218384743, -0.021548794582486153, -0.02096136100590229, -0.030718494206666946, -0.027423134073615074, -0.00029998531681485474, 0.00268106278963387, 0.012701467610895634, 0.0009581620106473565, -0.01776629313826561, -0.027064941823482513, 0.02364063262939453, -0.014886435121297836, -0.01531626470386982, -0.0062576038762927055, -0.031262945383787155, -0.00594239542260766, 0.012730122543871403, -0.003882794873788953, 0.004681561607867479, -0.006207457277923822, 0.005276159383356571, -0.009814444929361343, 0.0023640631698071957, 0.01317427959293127, 0.02369794435799122, 0.003915031906217337, 0.0078085726127028465, 0.03246646746993065, 0.020101701840758324, 0.024629240855574608, 0.011311684735119343, -0.03238050267100334, 0.0142990006133914, 0.012515207752585411, 0.01305965892970562, -0.0279532577842474, -0.015588490292429924, -0.006981150712817907, -0.011168408207595348, -0.004480974283069372, -0.018267761915922165, -0.017809277400374413, 0.03805425390601158, 0.024385670199990273, 0.01964321732521057, -0.005774045363068581, -0.006225366611033678, 0.01164122112095356, -0.025775453075766563, 0.005254667717963457, -0.029486317187547684, 0.008603757247328758, -0.002659571124240756, -0.005709570832550526, -0.004147856496274471, -0.009692659601569176, -0.011347503401339054, 0.003558631520718336, 0.01822477951645851, 0.008360187523066998, 0.014786140993237495, -0.02021632343530655, 0.004506047815084457, -0.009162535890936852, 0.01825343444943428, 0.017322136089205742, 0.005254667717963457, 0.02376958169043064, -0.0014560481067746878, 0.004552612546831369, 0.011082442477345467, 0.02493012137711048, -0.021849675104022026, 0.009678332135081291, 0.03197932988405228, -0.0008332427823916078, 0.002480475464835763, 0.040318023413419724, 0.023067526519298553, 0.03567586466670036, -0.0024142100010067225, 0.03825484216213226, -0.022193539887666702, 0.0065477387979626656, -0.006074926350265741, 0.04097709804773331, -0.03066118434071541, 0.017981208860874176, -0.006408044137060642, 0.0275377556681633, -0.007117263041436672, -0.021204931661486626, 0.013231590390205383, -0.031549498438835144, 0.016491131857037544, -0.030288664624094963, -0.010616793297231197, 0.02854069136083126, -0.019886786118149757, -0.006107163615524769, -0.002663153223693371, 0.022179212421178818, -0.0020560186821967363, -0.010151144117116928, 0.027451789006590843, 0.002183176577091217, -0.010946329683065414, 0.015789076685905457, -0.02279530093073845, -0.01371873077005148, 0.00016006678924895823, -0.011877627111971378, 0.009327304549515247, -0.012035231105983257, -0.03286764398217201, 0.0030732823070138693, -0.020273633301258087, 0.025073397904634476, 0.003555049654096365, 0.020159011706709862, 0.010473516769707203, 0.01502971164882183, 0.022078918293118477, -0.010767233557999134, -0.04069054499268532, 0.007636640686541796, 0.014041103422641754, -0.0034081912599503994, -0.010215618647634983, -0.007081443909555674, 0.015774749219417572, -0.0017811068100854754, 0.026549147441983223, 0.001020845491439104, -0.004767527803778648, -0.0056594242341816425, 0.006003288086503744, -0.012343276292085648, 0.005322724115103483, 0.026835700497031212, -0.01985813118517399, -0.0019915441516786814, 0.010910510085523129, 0.004516793414950371, 0.026950322091579437, -0.015373575501143932, -0.007543511223047972, 0.029300056397914886, 0.009692659601569176, -0.0007584703271277249, -0.009721314534544945, 0.009527891874313354, -0.03160680830478668, 0.006221784744411707, -0.019628889858722687, 0.014843451790511608, -0.01371873077005148, -0.008087961934506893, 0.0029497062787413597, -0.0005610173102468252, 0.006669524125754833, 0.011791661381721497, 0.006687433458864689, -0.020947033539414406, -0.01318860799074173, 0.0010871109552681446, 0.023139165714383125, 0.04304027929902077, 0.008467644453048706, -0.01480046845972538, 0.0034314736258238554, -0.01985813118517399, 0.0018572224071249366, -0.019872458651661873, -0.01689230650663376, 0.030575217679142952, 0.002430328633636236, -0.02544591762125492, 0.0013548589777201414, -0.002568232361227274, -0.007851555943489075, 0.010502171702682972, 0.004588432144373655, 0.014062594622373581, -0.01985813118517399, -0.024528946727514267, 0.010874691419303417, -0.018110157921910286, -0.011870463378727436, 0.03292495384812355, 0.00636147940531373, 0.025173692032694817, 0.0396016426384449, 0.02431403286755085, 0.0023336170706897974, 0.009900410659611225, -0.018597297370433807, -0.004839166067540646, 0.01683499664068222, 0.010738578625023365, 0.020875394344329834, -0.009764297865331173, 0.026878682896494865, 0.019485613331198692, -0.013998120091855526, -0.019628889858722687, 0.02202160842716694, -0.01702125556766987, 0.014829124324023724, -0.013145624659955502, -0.009520727209746838, 0.01925637014210224, -0.015903698280453682, -0.007206811103969812, 0.03544662147760391, -0.019012799486517906, -0.011576746590435505, 0.027064941823482513, -0.002437492599710822, -0.015488196164369583, 0.004384262952953577, 0.021663416177034378, -0.0006174324080348015, 0.01317427959293127, -0.024256721138954163, -0.013654256239533424, -0.03324016183614731, -0.023812564089894295, -0.02547457255423069, 0.011060950346291065, -0.003302524797618389, -0.012636993080377579, -0.028096534311771393, 0.0034028184600174427, 0.011426306329667568, -0.029429005458950996, 0.005648678634315729, 0.009105225093662739, -0.032323192805051804, -0.027910273522138596, 0.004971696529537439, 0.029142452403903008, 0.022838283330202103, 0.006619377061724663, 0.013575454242527485, -0.01641949452459812, -0.0008824940887279809, -0.01112542487680912, -0.021720726042985916, 0.01709289476275444, 0.0007884688093326986, 0.006794890854507685, -0.03014538809657097, -0.026549147441983223, 0.0011730768019333482, -0.021563122048974037, 0.016046974807977676, 0.00443440955132246, -0.03799694404006004, -0.0028064297512173653, 0.022494420409202576, 0.013475161045789719, 0.02018766850233078, 0.014578389935195446, 0.004402172286063433, 0.020144684240221977, -0.017436757683753967, 0.025789780542254448, -0.023225130513310432, -0.023726599290966988, -0.0226090420037508, -0.013575454242527485, 0.013274573720991611, -0.0038147384766489267, -0.0036786256823688745, -0.002038109116256237, -0.017952553927898407, -0.007951849140226841, -0.007045624777674675, 0.01455689873546362, -0.017207514494657516, 0.011698530986905098, -0.005476746708154678, 0.04120634123682976, 0.020230650901794434, 0.002267351606860757, -0.03134891018271446, 0.013761714100837708, -0.030288664624094963, 0.03212260454893112, -0.008080798201262951, 0.013088313862681389, 0.03014538809657097, 0.029171107336878777, -0.04223792999982834, -0.03673611208796501, 0.008503464050590992, 0.018239106982946396, 0.014134232886135578, -0.014614209532737732, -0.016405167058110237, -0.016046974807977676, -0.030775805935263634, 0.0009671167936176062, 0.01133317593485117, -0.008353023789823055, -0.008274221792817116, -0.03263840079307556, -0.009921901859343052, 0.013374866917729378, -0.017880914732813835, 0.0062110391445457935, -0.025030415505170822, -0.018883850425481796, -0.018812213093042374, 0.007242630235850811, 0.0150583665817976, -0.02031661570072174, -0.013990956358611584, -0.0365641787648201, -0.03312554210424423, -0.010065178386867046, 0.009291484951972961, -0.004498884081840515, -0.0010889018885791302, 0.052869051694869995, 0.018497005105018616, 0.03825484216213226, 0.015215970575809479, 0.015359247103333473, -0.0030267173424363136, -0.01673470251262188, -0.005795537028461695, -0.0011274074204266071, -0.00917686428874731, 0.0022315324749797583, -0.00030513430829159915, -0.010244274511933327, -0.008875982835888863, 0.007801408879458904, 0.011655548587441444, -0.008618085645139217, 0.015244626440107822, 0.013389194384217262, -0.012493716552853584, -0.01598966494202614, -0.042323894798755646, -0.006587139796465635, 0.02851203642785549, -0.0006116118165664375, -0.007507692091166973, -0.03089042752981186, -0.014700175262987614, 0.039229121059179306, -0.016046974807977676, 0.00515079265460372, 0.0005717630265280604, 0.033326126635074615, 0.020159011706709862, -0.004584849812090397, 0.023239457979798317, 0.012085378170013428, -0.0180528461933136, -0.009549383074045181, -0.036392245441675186, -0.017365118488669395, 0.017938226461410522, 0.010709922760725021, 0.009821608662605286, -0.017049910500645638, 0.0090264230966568, -0.01663440838456154, 0.003504902822896838, -0.030260009691119194, -0.014771813526749611, -0.0014506751904264092, -0.03169277682900429, -0.00286553124897182, -0.03401385620236397, -0.002568232361227274, 0.006540575064718723, -0.005605695303529501, 0.0023980913683772087, 0.005200939252972603, 0.029457660391926765, -0.03498813509941101, -0.02183534763753414, 0.021935641765594482, -0.0010620375396683812, 0.03584779426455498, 0.016233233734965324, 0.03544662147760391, 0.012923546135425568, 0.014119905419647694, -0.03183605149388313, -0.01918473094701767, 0.0029049322474747896, -0.009785789065063, 0.018267761915922165, 0.04498884081840515, -0.03862736001610756, -0.01879788562655449, 0.0009841308929026127, -0.001257251831702888, 0.0169926006346941, -0.03963029757142067, 0.03567586466670036, 0.019872458651661873, 0.0086109209805727, -0.03034597635269165, -0.01725049875676632, -0.02882724441587925, 0.021204931661486626, -0.007357251364737749, 0.016691720113158226, 0.0026524073909968138, -0.00823840219527483, 0.000655490264762193, 0.02892753854393959, -0.001740810228511691, 0.022437110543251038, -0.016204578801989555, 0.012844744138419628, 0.015172988176345825, 0.011003639549016953, -0.01631920039653778, -0.007908865809440613, -0.00841749832034111, 0.03470158204436302, -0.011863299645483494, 0.002895977580919862, 0.013969465158879757, 0.00012738181976601481, -0.01667739264667034, -0.008310040459036827, -0.009241337887942791, 0.03292495384812355, -0.014148560352623463, -0.0013288900954648852, 0.008396006189286709, 0.0005628082435578108, 0.03146353363990784, -0.026133645325899124, -0.012765942141413689, -0.013346211984753609, -0.003444010391831398, 0.018454020842909813, 0.0020452728495001793, -0.003950851038098335, -0.024256721138954163, -0.009212682954967022, -0.010315912775695324, -0.033555369824171066, -0.0035604226868599653, -0.007693951483815908, 0.03275302052497864, -0.05627903342247009, -0.00540152657777071, -0.008138108998537064, -0.005100645590573549, 0.009234174154698849, 0.0023031707387417555, -0.010967820882797241, 0.011161244474351406, 0.023081853985786438, -0.017880914732813835, 0.02415642887353897, 0.01985813118517399, 0.023912858217954636, -0.0361056923866272, 0.013955136761069298, -0.012973693199455738, 0.003846975741907954, -0.007428889628499746, -0.017035583034157753, -0.03759577125310898, -0.02498743310570717, 0.010487844236195087, 0.0016414121491834521, 0.01644814945757389, -0.0036213151179254055, 0.0301167331635952, 0.02028796076774597, -0.012114033102989197, -0.008460480719804764, -0.004842747934162617, 0.02441432699561119, -0.013367703184485435, 0.0031717848032712936, 0.0029461244121193886, -0.0042374045588076115, 0.006003288086503744, -0.018812213093042374, 0.006343569606542587, -0.016046974807977676, -0.02960093691945076, -0.00320044020190835, -0.007593657821416855, 0.003082236973568797, 0.005827774293720722, 0.014334820210933685, -0.01020845491439104, -0.026291249319911003, -0.036420900374650955, 0.010222782380878925, -0.02717956341803074, -0.0033311801962554455, 0.012178507633507252, -0.019070111215114594, 0.002747328020632267, 0.016792012378573418, -0.011662712320685387, -0.037022665143013, -0.022709334269165993, -0.03195067495107651, -0.0452180840075016, -0.023483028635382652, 0.002278097439557314, 0.028368759900331497, 0.0015894743846729398, -0.019499940797686577, -0.0413496159017086, -0.031520843505859375, -0.014098414219915867, -0.01030158530920744, -0.011813152581453323, 0.016906633973121643, 0.012937873601913452, 0.040489956736564636, -0.016233233734965324, 0.01825343444943428, -0.02057451382279396, 0.023067526519298553, -0.025517554953694344, 0.007260540034621954, -0.01843969337642193, 0.0011739723850041628, 0.040060125291347504, -0.017393775284290314, -0.04751050844788551, 0.001028904807753861, -0.013331884518265724, -0.017193187028169632, 0.010745742358267307, -0.0008287653909064829, 0.01680634170770645, 0.006175220012664795, 0.0038577213417738676, 0.00430546049028635, 0.0236692875623703, 0.015631472691893578, 0.009184028021991253, -0.025904402136802673, 0.000344759231666103, 0.008567938581109047, 0.010709922760725021, -0.005354961380362511, 0.004427245818078518, 0.020631825551390648, -0.027480443939566612, -0.0036213151179254055, -0.01305965892970562, -0.01318860799074173, 0.00272046378813684, -0.007307104766368866, 0.007765589747577906, 0.02312483638525009, -0.002007662784308195, 0.031549498438835144, -0.00841749832034111, 0.014492424204945564, -0.008768525905907154, -0.006880857050418854, 0.011132588610053062, -0.010580973699688911, 0.03805425390601158, -0.026305576786398888, -0.008288549259305, -0.010086669586598873, 0.015545506961643696, -0.004742454271763563, -0.009771461598575115, -0.0022064591757953167, -0.005469582974910736, -0.022437110543251038, -0.0001390230463584885, -0.0012948618968948722, -0.029400350525975227, 0.0012868025805801153, -0.008718378841876984, -0.005265413783490658, 0.00328461523167789, 0.009212682954967022, 0.015502523630857468, -0.035102758556604385, -0.0062110391445457935, 0.003521021455526352, 0.011863299645483494, -0.024844156578183174, 0.021290896460413933, 0.02222219482064247, 0.0003326702571939677, 0.011376159265637398, 0.2156025767326355, 0.0006393716321326792, 0.008933293633162975, 0.04424380138516426, 0.00975713413208723, -0.0024339105002582073, 0.007894538342952728, 0.002960451878607273, -0.007708278950303793, 0.019557250663638115, 0.011096769943833351, 0.004692307207733393, -0.01555983442813158, -0.010387551039457321, 0.007959012873470783, -0.0050612445920705795, -0.03364133834838867, -0.03366999328136444, -0.023239457979798317, 0.007181737571954727, -0.002663153223693371, 0.0028583675157278776, -0.0026416615583002567, 0.009062242694199085, 0.016333527863025665, -0.012257309630513191, -8.803672972135246e-05, 0.00823840219527483, 0.006963240914046764, 0.01544521376490593, -0.0240847896784544, -0.0005135569372214377, 0.005738226231187582, -0.0017999118426814675, 0.00016185773711185902, -0.003146711504086852, 0.005551966838538647, -0.02937169559299946, 0.010244274511933327, 0.02537427842617035, -0.013195771723985672, -0.012264473363757133, -0.012515207752585411, -0.005003933794796467, 0.010767233557999134, -0.004377099219709635, -0.014198707416653633, 0.005247503984719515, 0.005426599644124508, 0.009420434013009071, -0.02705061435699463, -0.004910804331302643, -0.002625542925670743, 0.010100997984409332, -0.011820316314697266, -0.005953141022473574, -0.01184897217899561, 0.0006183279328979552, -0.016046974807977676, 0.006841456051915884, -0.026978977024555206, 0.012988020665943623, 0.0061429827474057674, 0.01843969337642193, -0.0477970615029335, -0.009004931896924973, -0.016018319875001907, 0.013890663161873817, 0.007457545027136803, -0.009227010421454906, 0.002541368128731847, -0.0009814444929361343, -0.030689839273691177, -0.00917686428874731, -0.01876922883093357, -0.02093270607292652, -0.0014569435734301805, 0.030976392328739166, 0.035131413489580154, 0.017880914732813835, 0.003771755611523986, -0.005996124353259802, -0.0256035216152668, -0.0185113325715065, 0.007736934348940849, -0.01020845491439104, 0.03275302052497864, -0.029013503342866898, -0.020201995968818665, -0.02876993454992771, -0.008725542575120926, 0.004846329800784588, -0.027580738067626953, 0.003589077852666378, 0.00016376063285861164, -0.02276664599776268, 0.026649441570043564, 0.016877979040145874, -0.00836735125631094, -0.01300951186567545, -0.03212260454893112, 0.0606919527053833, 0.016906633973121643, 0.024399999529123306, -0.011956429108977318, 0.0005269891116768122, -0.004978860728442669, 0.030431941151618958, -0.00894762109965086, 0.017780620604753494, 0.004405754152685404, -0.028941866010427475, 0.02199295163154602, -0.0028243393171578646, 0.006726834457367659, 0.02253740280866623, 0.010437697172164917, -0.01104662287980318, 0.003961597103625536, -0.0070312973111867905, 0.028970520943403244, -0.0012026276672258973, 0.011390486732125282, 0.0014229153748601675, -0.0361056923866272, -0.029686903581023216, 0.007815736345946789, -0.0013772459933534265, -0.030976392328739166, -0.03865601494908333, 0.007221138570457697, -0.022365471348166466, 0.038484085351228714, -0.028497708961367607, -0.003021344542503357, -0.005294069182127714, -0.00925566628575325, -0.008152436465024948, -0.02124791406095028, -0.02054585888981819, -0.011526599526405334, 0.02802489511668682, 0.0014148560585454106, -0.010186963714659214, -0.0014229153748601675, -0.01663440838456154, 0.020760774612426758, 0.00034632632741704583, -0.011397650465369225, -0.03839812055230141, 0.013926481828093529, -0.010602465830743313, -0.0022225775755941868, 0.0019987081177532673, 0.038197532296180725, -0.01967187225818634, -0.01696394570171833, -0.014843451790511608, 0.008933293633162975, -0.001581415068358183, -0.04702336713671684, -0.011942101642489433, 0.03008807823061943, 0.01876922883093357, -0.024901466444134712, -0.009921901859343052, -0.1846548318862915, 0.006300586741417646, 0.00894762109965086, -0.0036051964852958918, 0.02099001593887806, 0.01951426826417446, 0.011483616195619106, 0.018239106982946396, -0.02080375701189041, 0.008768525905907154, 0.012185671366751194, -0.003078655106946826, -0.013682912103831768, 0.003696535248309374, -0.009678332135081291, 0.004115619231015444, -0.018081502988934517, 0.012307456694543362, 0.06361479312181473, -0.004402172286063433, 0.011218555271625519, -0.02114761993288994, -0.0030911918729543686, -0.009477744810283184, -0.0037323543801903725, 0.00342968269251287, -0.024944448843598366, 0.03556124120950699, 0.00409412756562233, -0.028067879378795624, 0.006458191201090813, -0.011712859384715557, 0.024758189916610718, -0.00857510231435299, 0.019170403480529785, 0.003383117727935314, 0.00833869632333517, -0.002613006392493844, -0.0003834886883851141, 0.019557250663638115, 0.010702759027481079, 0.01414139661937952, 0.0021706398110836744, 0.005466000642627478, 0.007307104766368866, 0.028168171644210815, 0.020244978368282318, -0.012071050703525543, 0.007887374609708786, -0.006085671950131655, 0.033813267946243286, -0.01964321732521057, -0.01112542487680912, -0.018525660037994385, -0.0033401348628103733, 0.009133880957961082, 0.0007020551711320877, 0.02727985754609108, 0.009355959482491016, -0.02640587091445923, -0.01326740998774767, -0.013167115859687328, 0.0045741042122244835, 0.003778919344767928, -0.02702195942401886, -0.029744215309619904, -0.013374866917729378, 0.004380681086331606, -0.01670604757964611, -0.0019073692383244634, 0.0034959481563419104, -0.014771813526749611, 0.014542571268975735, 0.03627762570977211, 0.010143980383872986, -0.0023801818024367094, -0.029772870242595673, 0.0004262477741576731, 0.03037463128566742, 0.01376887783408165, 0.000283866684185341, 0.022179212421178818, -0.008138108998537064, 0.003531767288222909, -0.01091767381876707, 0.021806692704558372, 0.011089606210589409, 0.016877979040145874, -0.0135611267760396, 0.008904638700187206, 0.030231354758143425, -0.00790170207619667, 0.030947737395763397, -0.014048267155885696, 0.013876334764063358, 0.017666000872850418, 0.021692071110010147, 0.0005368393613025546, 0.02544591762125492, 0.005043334793299437, 0.003821902209892869, 0.032552435994148254, -0.045934464782476425, 0.01650545932352543, 0.04504615068435669, 0.01876922883093357, -0.008861655369400978, -0.0026147973258048296, 0.04249582812190056, -0.028239810839295387, -0.023554665967822075, -0.01209254190325737, 0.014972400851547718, 0.008926129899919033, -0.014757486060261726, 0.028039222583174706, 0.021935641765594482, -0.0180528461933136, 0.030919082462787628, -0.010731414891779423, 0.056250378489494324, -0.03235184773802757, -0.016792012378573418, 0.01663440838456154, -0.0033884907606989145, 0.006067762617021799, -0.11250075697898865, -0.037968289107084274, 0.023225130513310432, 0.011662712320685387, -0.004728126339614391, 0.006680269725620747, -0.00036154946428723633, 0.03682207688689232, -0.011870463378727436, 0.023139165714383125, -0.015258953906595707, 0.004957369063049555, -0.0036929533816874027, 0.01036605890840292, 0.012128360569477081, -0.004971696529537439, 0.0030428359750658274, -0.01175584178417921, -0.003143129637464881, 0.0365641787648201, 0.009456252679228783, -0.0032864061649888754, 0.009384614415466785, 0.008653904311358929, -0.003359835362061858, -0.030260009691119194, -0.027451789006590843, 0.02273799106478691, 0.008532118983566761, 0.0012787432642653584, 0.041550204157829285, -0.016935288906097412, 0.033870577812194824, -0.015072694048285484, -0.02763804979622364, -0.005516147706657648, -0.022035935893654823, -0.036392245441675186, 0.015044039115309715, -0.030747151002287865, -0.013181443326175213, 0.012472224421799183, 0.014886435121297836, -0.018454020842909813, -0.01346083264797926, 0.004760363604873419, -0.019299352541565895, 0.031750086694955826, 0.0003120742621831596, -0.0077870809473097324, -0.010846035555005074, -0.017107222229242325, -0.014506751671433449, -0.014456605538725853, 0.02766670472919941, 0.003001644043251872, 0.01346083264797926, 0.008360187523066998, -0.014628536999225616, -0.006981150712817907, -0.01977216638624668, -0.01117557194083929, -0.02047422155737877, 0.016118614003062248, 0.005978214554488659, -0.010860363021492958, -0.008596593514084816, -0.030546562746167183, 0.008396006189286709, -0.0016378301661461592, -0.006024779286235571, 0.013231590390205383, -0.02611931785941124, -0.0025539046619087458, -0.03699401021003723, -0.008833000436425209, 0.0007974235923029482, -0.008195419795811176, -0.004627833142876625, 0.015230298973619938, -0.011132588610053062, -0.004767527803778648, 0.00033087932388298213, -0.035102758556604385, 0.022952904924750328, 0.0034619199577718973, 0.004448737483471632, 0.005620023235678673, 0.02047422155737877, -0.034873515367507935, 0.002947915345430374, 0.02924274653196335, 0.015344919636845589, -0.022723663598299026, -0.005165120121091604, 0.02498743310570717, -0.012658484280109406, -0.00046341013512574136, 0.019886786118149757, -0.014958073385059834, -0.00515079265460372, -0.008360187523066998, -0.06476100534200668, 0.012615500949323177, 0.0021043745800852776, 0.01737944781780243, 0.004420082084834576, -0.019456956535577774, -0.005863593425601721, -0.006626540794968605, -0.0014309746911749244, 0.013503815978765488, -0.01104662287980318, 0.0029747795779258013, -0.012035231105983257, -0.023239457979798317, -0.02808220684528351, -0.01702125556766987, 0.0064152078703045845, -0.01246506068855524, 0.016433821991086006, -0.003832648042589426, -0.009527891874313354, 0.004914386197924614, 0.023325424641370773, 0.005347797647118568, -0.007672459818422794, 0.025016088038682938, 0.0035675864201039076, 0.03607703745365143, -0.0067232525907456875, -0.033870577812194824, 0.013725894503295422, -0.006092835683375597, -0.00034856502315960824, -0.005971050821244717, -0.004559776745736599, -0.023941513150930405, 0.012765942141413689, 0.009162535890936852, 0.017408102750778198, 0.019499940797686577, -0.034128475934267044, -0.013152788393199444, 0.0236692875623703, -0.01326740998774767, -0.0007844391511753201, 0.010122489184141159, -0.014714502729475498, -0.03808290883898735, -0.01468584779649973, 0.009878918528556824, 0.030431941151618958, 0.0028064297512173653, -0.01831074431538582, -0.036965351551771164, -0.00011764348892029375, -0.01792389713227749, 0.0027168819215148687, 0.016877979040145874, -0.004233822226524353, -0.0008059306419454515, 0.04470228776335716, 0.008302876725792885, 0.02134820818901062, -0.0024177921004593372, 0.021419845521450043, -0.010745742358267307, -0.054702989757061005, -0.005423017777502537, 0.006314914673566818, -0.03415713086724281, -0.004341279622167349, -0.017666000872850418, 0.028110861778259277, 0.01670604757964611, 0.017236171290278435, -0.0070993537083268166, -0.00777991721406579, -0.013675747439265251, -0.006074926350265741, 0.03673611208796501, 0.03576182946562767, -0.026850027963519096, -0.0245432760566473, 0.0055448031052947044, 0.023210803046822548, 0.01573176681995392, -0.015344919636845589, 0.020130356773734093, 0.02766670472919941, 0.0038613034412264824, -0.012794597074389458, -0.0022351143416017294, 0.006898766383528709, 0.02018766850233078, 0.020875394344329834, 0.026692423969507217, -0.02331109717488289, 0.010602465830743313, 0.015846388414502144, 0.044587668031454086, -0.006468936800956726, 0.017465412616729736, 0.007586494088172913, -0.004531121347099543, -0.021935641765594482, 0.02756641060113907, -0.02779565379023552, -0.013224426656961441, 0.03673611208796501, 0.03283898904919624, -0.012780269607901573, -0.0007401129696518183, 0.0037466820795089006, 0.023683615028858185, -0.007443217560648918, 0.011576746590435505, -0.008195419795811176, -0.023454373702406883, -0.024070462211966515, 0.011469288729131222, 0.022465765476226807, 0.020459892228245735, 0.019428301602602005, -0.017006928101181984, 0.02831144817173481, 0.02985883504152298, 0.015287608839571476, -0.011634056456387043, 0.002373018069192767, -0.01573176681995392, 0.0030947737395763397, 0.018296416848897934, -0.021262241527438164, -0.00836735125631094, 0.0019915441516786814, -0.03596241772174835, -0.013052495196461678, 0.02160610631108284, 0.00430546049028635, 0.08734139055013657, 0.019528595730662346, -0.032810334116220474, -0.0062576038762927055, -0.019628889858722687, -0.00740023422986269, 0.008381678722798824, 0.014356311410665512, -0.010265765711665154, -0.026334231719374657, 0.012708631344139576, -0.012665648013353348, -0.014915090054273605, -0.014564062468707561, -0.03493082523345947, -0.014958073385059834, 0.00010230841871816665, 0.01138332299888134, -0.007128009106963873, 0.016132941469550133, 0.018210450187325478, -0.012063886970281601, 0.019657544791698456, -0.011390486732125282, -0.03283898904919624, 0.007672459818422794, 0.03215125948190689, 0.012959364801645279, 0.01531626470386982, -0.023583322763442993, 0.04040399193763733, -0.0046206689439713955, -0.020517203956842422, -0.01246506068855524, 0.002328244037926197, 0.0032559598330408335, -0.0037538460455834866, -0.016247563064098358, 0.0055913678370416164, 0.02057451382279396, -0.01099647581577301, -0.004455901216715574, -0.014886435121297836, -0.021792365238070488, 0.0077440980821847916, -0.006898766383528709, -0.016075629740953445, -0.026104990392923355, -0.010258601978421211], "9589d69f-c551-4155-8097-1658626b2946": [-0.012441087514162064, -0.007476977072656155, 0.0014858095673844218, -0.022335072979331017, 0.003943900112062693, 0.007271565496921539, -0.0049127573147416115, -0.017802326008677483, -0.001989067532122135, -0.048148445785045624, 0.011667370796203613, 0.01567974127829075, 0.018445948138833046, -0.011051136068999767, 0.00035198108525946736, 0.018623972311615944, 0.020349428057670593, 0.0019394265254959464, 0.009633797220885754, -0.003940476570278406, -0.011407182551920414, -0.006775154732167721, -0.011687912046909332, -0.019308676943182945, -0.029634026810526848, 0.018870465457439423, 0.03124992921948433, -0.013646167702972889, -0.006076755467802286, 0.02315671741962433, 0.02497803419828415, -0.017391502857208252, -0.011530430056154728, -0.011811158619821072, -0.016939599066972733, 0.006213696673512459, 0.009188739582896233, 0.0009474603575654328, 0.007860411889851093, -0.00494356919080019, 0.026922594755887985, 0.01939084194600582, -0.011016901582479477, -0.0019787971395999193, -0.024608293548226357, 0.03286583349108696, 0.0007142327376641333, -0.009873444214463234, -0.00481347506865859, 0.012982004322111607, -0.014817013405263424, 0.014091226272284985, -0.0199796874076128, 0.017788631841540337, -0.017172398045659065, 0.0008130870410241187, -0.015268918126821518, 0.009503703564405441, 0.015392165631055832, 0.00785356480628252, 0.0025334078818559647, -0.0023125906009227037, -0.019541475921869278, -0.004015794023871422, -0.021992720663547516, -0.025019114837050438, -0.004310217220336199, 0.005388627294450998, 0.007894647307693958, -0.003430371405556798, 0.023279964923858643, 0.023923587054014206, -0.0028517956379801035, -0.007757706101983786, 0.0018350089667364955, -0.021581897512078285, -0.019938604906201363, -0.01991121657192707, -0.016405528411269188, -0.0026429607532918453, 0.006107567343860865, -0.00571043835952878, 0.0006774298963136971, -0.013338050805032253, 0.018418559804558754, 0.03286583349108696, 0.00392678240314126, -3.3834046917036176e-05, 0.0014481507241725922, -0.01915804110467434, 0.01379680261015892, 0.017802326008677483, 0.023170411586761475, 0.034536514431238174, 0.0041116527281701565, 0.00814798753708601, 0.0012401717249304056, -0.0030349541921168566, 0.009243515320122242, -0.01870613731443882, -0.021417567506432533, 0.0014147714246064425, -0.02097935602068901, -0.011818005703389645, -0.031167766079306602, -0.014392496086657047, 0.027785323560237885, -0.003043513046577573, 0.0017109062755480409, 0.032126352190971375, -0.002007897011935711, 0.021472344174981117, -0.013824190944433212, -0.03111298941075802, -0.018076207488775253, -0.0022064615041017532, 0.026402220129966736, -0.026265278458595276, -0.00707984808832407, -0.006983989384025335, 0.008380787447094917, 0.014734848402440548, 0.044834475964307785, -0.01674788072705269, 0.011934406124055386, 0.0025145786348730326, 0.0038891236763447523, -0.025375161319971085, 0.014173390343785286, -0.0019394265254959464, 0.026333749294281006, 0.015405859798192978, 0.0023006084375083447, 0.002639537211507559, -0.04450581595301628, 0.0035775830037891865, -0.0062958612106740475, 0.010873112827539444, 0.007600224111229181, -0.015720823779702187, 0.016925904899835587, 0.016898516565561295, 0.007223636377602816, -0.014269249513745308, -0.012708121910691261, 0.03286583349108696, -0.003769300179556012, 0.03990459814667702, 0.014015908353030682, -0.011776923201978207, -0.008052129298448563, -0.018610278144478798, -0.02191055566072464, 0.01777493767440319, 0.006336943246424198, -0.00021354232740122825, 0.008901163004338741, 0.018035126850008965, -0.028018122538924217, 0.0065902844071388245, 0.0034286596346646547, 0.008983328007161617, -0.011201771907508373, -0.008606740273535252, -0.0014053566846996546, 0.03637152165174484, 0.013961131684482098, -0.032263293862342834, -0.025539491325616837, -0.016871128231287003, -0.0012299010995775461, 0.043629392981529236, -0.03659062832593918, 0.020171405747532845, 0.010133631527423859, 0.004549863748252392, 0.008935398422181606, 0.008640975691378117, -0.017528444528579712, -0.011776923201978207, 0.023827729746699333, 0.0010082279331982136, 0.004834016319364309, 0.010626619681715965, -0.011948099359869957, -0.020198794081807137, 0.02143126167356968, -0.0019051912240684032, 0.004553287290036678, 0.0016741034341976047, 0.019514087587594986, 0.0034201007802039385, -0.021034132689237595, -0.009428385645151138, -0.6266418695449829, -0.0023297083098441362, 0.02322518825531006, -0.0292779803276062, -0.006692990195006132, 0.01815837249159813, 0.0052071805112063885, -0.011811158619821072, -0.0015354506904259324, 0.02466306835412979, -0.008914857171475887, 0.003379018511623144, -0.010859418660402298, -0.007572835776954889, -0.022376155480742455, -0.034262631088495255, 0.012400005012750626, -0.02043159306049347, -0.018144678324460983, 0.008332857862114906, -0.024608293548226357, 0.007791941519826651, -0.008729986846446991, -0.00043906699283979833, -0.0033293773885816336, -0.004186970181763172, 0.01183169987052679, 0.016145341098308563, 0.0015474329702556133, 0.03593331202864647, -0.03500211238861084, 0.00901071634143591, 0.02525191567838192, -0.015310000628232956, 0.030620001256465912, -0.01178377028554678, -0.007066153921186924, 0.023896198719739914, 0.015939928591251373, 0.022965000942349434, -0.0265254657715559, 0.0005635977140627801, 0.011865935288369656, 0.02784010022878647, 0.0052414159290492535, 0.001555135939270258, 0.004207511432468891, 0.013954284600913525, -0.018665054813027382, -0.012612263672053814, 0.003416677238419652, -0.014474661089479923, -0.004536169581115246, -0.006271896418184042, 0.004827169235795736, -0.005570074077695608, 0.021759919822216034, -0.0003010561631526798, 0.004015794023871422, 5.1700564654311165e-05, 0.02632005512714386, -0.000768153287936002, -0.014337719418108463, -0.051900628954172134, -0.03834347054362297, 0.009380456991493702, -0.02690890058875084, -0.014529436826705933, -0.009394150227308273, -0.012516404502093792, -0.007730317767709494, -0.016528775915503502, -0.0026652137748897076, 0.002654943149536848, 0.010441749356687069, 0.03516644239425659, 0.029086261987686157, -0.0027371076866984367, 0.004005523398518562, 0.020335733890533447, 0.0025214257184416056, -0.008764222264289856, 0.013564003631472588, -0.030537836253643036, 0.03623457998037338, 0.019240206107497215, -0.014912871643900871, -0.016076870262622833, -0.00410822918638587, -0.010188408195972443, 0.024676762521266937, 0.018623972311615944, -0.006128108594566584, -0.04113706946372986, 0.02804551087319851, 0.03845302388072014, 0.006384872831404209, -0.015611270442605019, 0.016515081748366356, -0.019007407128810883, -0.025279304012656212, -0.024676762521266937, 0.03097604773938656, 0.01469376590102911, 0.009291444905102253, 0.027059536427259445, -0.04727202281355858, 0.0013771126978099346, 0.008777916431427002, -0.017898185178637505, -0.020513758063316345, -0.0030623425263911486, -0.027059536427259445, -0.006960025057196617, 0.010962124913930893, -0.025334080681204796, 0.004895639605820179, 0.0024238552432507277, 0.00380695890635252, -0.015666047111153603, -0.025991396978497505, -0.0027028725016862154, -0.0046799578703939915, 0.006692990195006132, 0.0037795708049088717, 0.010722477920353413, 0.011646829545497894, -0.0002546246105339378, 0.006097296718508005, 0.003346495097503066, 0.011482500471174717, 0.009804973378777504, 0.015378471463918686, -0.017583221197128296, 0.03155120089650154, 0.0018161796033382416, 0.0184322539716959, -0.006901824846863747, 0.012037111446261406, -0.0447796992957592, -0.006692990195006132, 0.0019394265254959464, 0.03450912609696388, -0.0034012713003903627, 0.00333793624304235, -0.004200664348900318, -0.010729325003921986, 0.012002876028418541, 0.008052129298448563, -0.02714170143008232, -0.0280728992074728, -0.014365107752382755, -0.003919935319572687, 0.018487030640244484, -0.01574821211397648, -0.005922697018831968, -0.009229821152985096, -0.028100287541747093, -0.011379795148968697, -0.040288034826517105, -0.014324025250971317, 0.004888792522251606, -0.007696082815527916, -0.0040774173103272915, -0.012050805613398552, 0.0032848715782165527, -0.04034281149506569, 0.026196807622909546, -0.022965000942349434, -0.00988713838160038, -0.004186970181763172, -0.02366339974105358, 0.006641637068241835, 0.02170514315366745, -0.008955939672887325, -0.0004994065966457129, -0.016268586739897728, 0.0032318069133907557, -0.013146333396434784, -0.007244177628308535, 0.007456435821950436, 0.027128007262945175, -0.004080840852111578, -0.011824852786958218, 0.03311232849955559, 0.013550309464335442, 0.033084940165281296, -1.838806929299608e-05, -0.019541475921869278, 0.001910326536744833, -0.0021088910289108753, 0.02911365032196045, -0.020308345556259155, 0.009175045415759087, -0.014926565811038017, -0.012187746353447437, -0.005905579309910536, -0.021622980013489723, -0.011996028944849968, 0.03568681702017784, 0.030565224587917328, 0.017418891191482544, -0.023101942613720894, -0.0013257598038762808, 0.013878967612981796, -0.01863766647875309, 0.011975487694144249, -0.018801994621753693, 0.015049812383949757, -0.003827500157058239, -0.005977473221719265, 0.006220543757081032, -0.0034868596121668816, -0.023375824093818665, 0.0025796254631131887, 0.009976149536669254, 0.006425955332815647, 0.020144017413258553, -0.02625158429145813, 0.00738111836835742, -0.0007484679808840156, 0.02845633402466774, 0.018514418974518776, 0.009031256660819054, 0.016145341098308563, 0.005463944748044014, -0.009565327316522598, 0.009277750737965107, 0.013639320619404316, -0.025785984471440315, -0.004440310876816511, 0.02731972374022007, -0.008887468837201595, -0.004426616709679365, 0.03448173776268959, 0.014556825160980225, 0.03806959092617035, -0.0065355077385902405, 0.04119184613227844, -0.01333120372146368, 0.0028586427215486765, 0.0010030926205217838, 0.031688142567873, -0.03220851719379425, 0.03645368665456772, -0.00021290041331667453, 0.0365084633231163, -0.01691221073269844, -0.03645368665456772, 0.029414920136332512, -0.024265939369797707, 0.013447603210806847, -0.01007885579019785, 3.600718400775804e-06, 0.02645699493587017, -0.013516074046492577, 0.003899394068866968, 0.010462290607392788, 0.012475322932004929, 0.023060860112309456, -0.009729656390845776, 0.013166874647140503, 0.003219824517145753, -0.0027953076642006636, 0.00957902055233717, -0.020732862874865532, -0.009969302453100681, -0.022307684645056725, -0.006456766743212938, -0.0038891236763447523, -0.0023485375568270683, -0.020239874720573425, 0.0019069029949605465, -0.01791187934577465, 0.015433247201144695, 0.0019514088053256273, 0.0030674778390675783, 0.01688482239842415, 0.00947631523013115, 0.029195815324783325, -0.008969633840024471, -0.03793264925479889, 0.022677425295114517, 0.009982996620237827, -0.013214804232120514, 0.01722717471420765, -0.02820984087884426, -0.0017186092445626855, 0.014269249513745308, 0.032811056822538376, 0.0010707072215154767, 0.006651907693594694, -0.009202433750033379, 0.019801665097475052, -0.007805635221302509, 0.012112429365515709, 0.03557726368308067, -0.022759590297937393, -0.0031513541471213102, -0.0035039770882576704, 0.01884307712316513, 0.013392827473580837, -0.003529653651639819, -0.010879959911108017, 0.03771354258060455, -0.010434902273118496, -0.0013711214996874332, -0.00027045843307860196, 0.010215796530246735, -0.03527599573135376, 0.009448926895856857, -0.0051934863440692425, 0.008038435131311417, -0.02002076990902424, -0.009222974069416523, -0.005583768244832754, 0.016720492392778397, -0.011105912737548351, -0.008469799533486366, 0.00894224550575018, -0.011105912737548351, -0.019308676943182945, 0.009243515320122242, 0.01677526906132698, 0.05080509930849075, 0.00405687652528286, -0.009394150227308273, 0.006651907693594694, -0.01811728999018669, 0.00744274165481329, -0.01818576082587242, -0.009298291988670826, 0.025402549654245377, -0.0020643852185457945, -0.019062183797359467, -0.009572174400091171, 0.012865603901445866, 0.0012239099014550447, 0.013201110064983368, -0.0001670037891017273, 0.00847664661705494, -0.010441749356687069, -0.02222551964223385, 0.008894315920770168, -0.007860411889851093, 0.000717228336725384, 0.037740930914878845, 0.0004110368900001049, 0.043766334652900696, 0.0158440712839365, 0.03300277516245842, 0.008901163004338741, 0.008065823465585709, -0.027100618928670883, -0.01388581469655037, 0.016556164249777794, 0.0028535074088722467, 0.02004815824329853, -0.005583768244832754, 0.03283844515681267, 0.01166052371263504, -0.019171735271811485, -0.022239213809370995, 0.0037521827034652233, -0.001541441772133112, 0.02256787195801735, -0.007059307303279638, -0.004272558260709047, 0.017692772671580315, -0.025416243821382523, -0.0051797921769320965, 0.026895206421613693, -0.005618003197014332, -0.01448835525661707, 0.012228828854858875, 0.012845063582062721, -0.011064830236136913, 0.01770646683871746, 0.004495087545365095, 0.0025453902781009674, -0.00447112275287509, -0.014584213495254517, -0.011064830236136913, -0.030510447919368744, -0.020472675561904907, -0.0379052609205246, -0.004245169926434755, -0.025991396978497505, -0.004101382102817297, -0.018350090831518173, -0.00954478606581688, 0.000661596073769033, -0.017391502857208252, -0.003515959484502673, 0.0010647160233929753, -0.04921658709645271, -0.034426961094141006, -0.00494356919080019, 0.023581234738230705, 0.015761906281113625, 0.013413367792963982, 0.007203095126897097, -0.006607402116060257, 0.00909288041293621, -0.019746888428926468, -0.022211825475096703, 0.013913203030824661, -0.013242191635072231, 0.022855447605252266, -0.022608954459428787, -0.02577229030430317, -0.014775930903851986, -0.010654008015990257, 0.025443632155656815, 0.015994705259799957, -0.02518344484269619, -0.00785356480628252, -0.0028329663909971714, 0.019034795463085175, 0.0227322019636631, 0.009359915740787983, -0.001659553381614387, 0.02236246131360531, -0.03171553090214729, 0.017624303698539734, -0.03716577962040901, -0.008202764205634594, -0.03530338406562805, -0.005758367944508791, 0.021417567506432533, 0.010941583663225174, 0.004868251737207174, -0.01704915054142475, -0.027922263368964195, 0.004608063492923975, -0.0026224195025861263, 0.016515081748366356, -0.008504034020006657, 0.012447934597730637, 0.006381449289619923, 0.005765215028077364, 0.0038685824256390333, -0.005758367944508791, -0.028100287541747093, 0.012954615987837315, -0.01918542943894863, 0.02132171019911766, 0.010072008706629276, -0.00032437892514280975, 0.01770646683871746, 0.018336396664381027, -0.0273881945759058, -0.04398544132709503, 0.007223636377602816, 0.0004412067064549774, 0.01763799786567688, -0.015967316925525665, -0.0007737164851278067, -0.0052140275947749615, -0.031030824407935143, -0.008360246196389198, 0.0012033687671646476, -0.00012035827967338264, 0.004094535019248724, -0.026306360960006714, 0.01379680261015892, 0.006645060610026121, -0.010743019171059132, -0.016076870262622833, -0.03275628015398979, -0.023937281221151352, -0.014200778678059578, 0.006918942555785179, 0.03382442146539688, -0.0071483189240098, 0.007182553876191378, -0.028620664030313492, -0.024758927524089813, -0.008141140453517437, -0.0043923817574977875, 0.0011896747164428234, -0.004768969491124153, 0.048559267073869705, 0.036563239991664886, 0.03256456181406975, 0.015967316925525665, 0.022033803164958954, 0.010243184864521027, -0.00768238864839077, -0.009298291988670826, -0.009031256660819054, -0.006319826003164053, -0.00857935193926096, 0.0016347328200936317, -0.00095173972658813, -0.001970238285139203, -0.00021429122716654092, 0.013872120529413223, 0.00012410274939611554, 0.0025214257184416056, -0.0006645916728302836, -0.025238221511244774, -0.018007738515734673, -0.052174508571624756, -0.017692772671580315, 0.028648050501942635, -0.006124685052782297, -0.0043376050889492035, -0.02797704003751278, -0.0013249039184302092, 0.03390658646821976, -0.013598238117992878, 0.029743578284978867, 0.01166052371263504, 0.02952447347342968, 0.011927559040486813, 0.009400997310876846, 0.013707791455090046, 0.003254059934988618, -0.02356754057109356, -0.00012142812920501456, -0.04705291613936424, -0.02145865000784397, 0.006758037023246288, 0.015720823779702187, 0.029086261987686157, -0.007908341474831104, -0.008250693790614605, 0.011653676629066467, 0.011804311536252499, -0.027278641238808632, -0.00969542097300291, 0.004970957059413195, -0.040288034826517105, 0.0052345688454806805, -0.04113706946372986, -0.008517728187143803, 0.021486038342118263, -0.019418230280280113, 0.01114699523895979, 0.001668968121521175, 0.027237558737397194, -0.02345798909664154, -0.022554177790880203, 0.027812711894512177, -0.009661185555160046, 0.0489153154194355, 0.013789955526590347, 0.03004484996199608, 0.014173390343785286, 0.01555649470537901, -0.012009723111987114, -0.007223636377602816, -0.0019787971395999193, 0.006696413736790419, 0.009133962914347649, 0.029634026810526848, -0.01818576082587242, -0.01488548330962658, -0.0004264427407179028, -0.01677526906132698, 0.0030623425263911486, -0.02845633402466774, 0.01255748700350523, 0.003339648013934493, 0.0044129230082035065, -0.027169087901711464, -0.019541475921869278, -0.03127731755375862, 0.005217451136559248, -9.350500477012247e-05, 0.004543016664683819, -0.004577252082526684, 0.0016253181966021657, 0.015077200718224049, 0.03127731755375862, -0.0032369422260671854, 0.014625295996665955, -0.010024079121649265, 0.00267890770919621, -0.002654943149536848, -0.01350237987935543, -0.0048853689804673195, -0.0006949754315428436, 0.011845394037663937, 0.035330772399902344, -0.012345228344202042, -0.006812813226133585, 0.026361137628555298, 0.00464229891076684, -0.024786315858364105, -0.008955939672887325, -1.4242395991459489e-05, 0.03530338406562805, -0.01902110129594803, -0.014337719418108463, -0.009565327316522598, -0.009599561803042889, 0.01984274759888649, -0.02229399047791958, -0.0146389901638031, 0.0015842358116060495, -0.007990505546331406, 0.02056853473186493, 0.007846717722713947, -0.0019993381574749947, -0.008038435131311417, -0.010380125604569912, 0.0004638875543605536, -0.019678417593240738, -0.004275981802493334, -0.003741912078112364, 0.02977096661925316, -0.02677196078002453, -1.4148784430290107e-05, 0.0009508838993497193, -0.02490956336259842, 0.01052391342818737, -0.008613587357103825, 0.0033875773660838604, 0.0006401990540325642, 0.024895869195461273, -0.009551633149385452, 0.01936345361173153, 0.025991396978497505, 0.024170082062482834, -0.049353525042533875, 0.017720161005854607, -0.023019777610898018, -0.0015234682941809297, 0.00039028178434818983, -0.0037247943691909313, -0.032263293862342834, -0.02145865000784397, 0.024882175028324127, 0.00446085212752223, 0.0040705702267587185, -0.009298291988670826, 0.016665715724229813, 0.019733194261789322, -0.0024358376394957304, -0.014707460068166256, 0.002641248982399702, 0.010907348245382309, -0.0015029271598905325, 0.013166874647140503, 0.0051524038426578045, -0.011927559040486813, 0.01629597507417202, -0.013831038028001785, 0.011044288985431194, 0.005837108939886093, -0.03483778238296509, -0.017679080367088318, -0.011236006394028664, -0.008106905966997147, 0.008264387957751751, 0.023006083443760872, -0.0022270025219768286, -0.016966985538601875, -0.030400896444916725, 0.020746557042002678, -0.008524575270712376, -0.001970238285139203, 0.015926234424114227, -0.013379133306443691, 0.0036357827484607697, 0.026621324941515923, -0.005155827384442091, -0.036125026643276215, -0.022540483623743057, -0.021308016031980515, -0.04820322245359421, -0.0034851478412747383, -0.0014652684330940247, 0.0368645079433918, -0.0010501660872250795, -0.027018453925848007, -0.03130470588803291, -0.019993381574749947, -0.02008924074470997, -0.01850072480738163, -0.013906355947256088, 0.024238552898168564, 0.027620993554592133, 0.04182177409529686, 0.01243424043059349, 0.010866265743970871, -0.003964441362768412, 0.021266933530569077, -0.039740271866321564, -0.0008909722091630101, -0.023471683263778687, -0.0014464390696957707, 0.025087585672736168, -0.016241198405623436, -0.05600885674357414, 0.002529984340071678, -0.00026489520678296685, -0.004467699211090803, 0.002516290405765176, 0.004245169926434755, 0.006169190630316734, 0.013646167702972889, 0.006169190630316734, 0.01052391342818737, 0.02845633402466774, 0.024882175028324127, 0.004553287290036678, -0.01715870387852192, -0.0009440368157811463, 0.006104143802076578, -0.006614248733967543, -0.0021020439453423023, -0.0028808957431465387, 0.00011821857333416119, -0.01709023304283619, 0.010564995929598808, 0.0006384872831404209, -0.005429709330201149, -0.013338050805032253, 0.004806627985090017, 0.006446496117860079, 0.014789625070989132, 0.0016492828726768494, 0.03201679885387421, -0.00689840130507946, 0.005145557224750519, -0.00785356480628252, 0.011824852786958218, 0.005525568034499884, -0.007942575961351395, 0.03757660090923309, -0.028921933844685555, -0.017994044348597527, -0.011605747044086456, 0.017596915364265442, -0.02659393660724163, -0.00785356480628252, -0.02466306835412979, -0.019582558423280716, -0.020828722044825554, -0.004217782057821751, 0.002427278785035014, -0.03316710516810417, 0.01221513468772173, 0.014406190253794193, 0.01192071195691824, 0.0033755949698388577, -0.006980565842241049, 0.009469468146562576, -0.021486038342118263, -0.018267925828695297, 0.0012821098789572716, 0.015446941368281841, -0.03072955459356308, 0.004087687935680151, 0.034290019422769547, 0.0006269328878261149, 0.0005974050145596266, 0.20365861058235168, 0.00397813506424427, 0.01691221073269844, 0.05066816136240959, 0.015131977386772633, -0.0292779803276062, 0.02459459938108921, 0.004827169235795736, -0.001891497173346579, 0.014460966922342777, 0.009024410508573055, 0.011859088204801083, -0.017008068040013313, -0.002126008505001664, 0.01643291674554348, -0.009168198332190514, -0.037740930914878845, -0.022211825475096703, -0.02625158429145813, 0.0038685824256390333, 0.0034509124234318733, 0.010263726115226746, -0.023074554279446602, -0.012803981080651283, 0.00928459782153368, 0.0019599676597863436, -0.01939084194600582, 0.007073001004755497, 0.010756713338196278, 0.0010450307745486498, -0.01522783562541008, 0.02256787195801735, 0.008442411199212074, -0.009305139072239399, -0.008997022174298763, -0.014789625070989132, 0.013214804232120514, -0.01984274759888649, 0.00019642470579128712, 0.02011662907898426, -0.010818337090313435, -0.009421538561582565, -0.020171405747532845, -0.004549863748252392, 0.02445765770971775, -0.011311324313282967, -0.025224527344107628, 6.108851084718481e-05, -0.005042851436883211, 0.02443026937544346, -0.00988713838160038, -0.010804642923176289, 0.0016569857252761722, 0.030510447919368744, -0.0016612651525065303, -0.0037658766377717257, -0.0031222542747855186, 0.00042965231114067137, -0.006463613826781511, -0.004929875023663044, -0.019801665097475052, 0.003967864438891411, -0.013584543950855732, 0.017733855172991753, -0.02284175343811512, 0.00427940534427762, -0.020335733890533447, 0.020869804546236992, 0.0005832829629071057, 0.004200664348900318, 0.003967864438891411, -0.006956601515412331, -0.023786647245287895, -0.001473827171139419, -0.02777162939310074, -0.020801333710551262, 0.007648153230547905, 0.0205000638961792, 0.023937281221151352, 0.023238882422447205, 0.004269134718924761, -0.012078193947672844, -0.014775930903851986, -0.027347112074494362, 0.018719831481575966, -0.018309008330106735, 0.03059261292219162, -0.017857102677226067, -0.007634459063410759, -0.032783668488264084, -0.0003425664035603404, 0.0038685824256390333, -0.012790286913514137, 0.0007090974831953645, -0.0043444521725177765, -0.003070901380851865, 0.012139816768467426, 0.022513095289468765, -0.009900832548737526, -0.020951969549059868, -0.03286583349108696, 0.057241328060626984, 0.015433247201144695, 0.027511442080140114, -0.015131977386772633, 0.005970626603811979, -0.0025522373616695404, 0.029579250141978264, -0.0016741034341976047, 0.018445948138833046, -0.009311986155807972, -0.03557726368308067, 0.020034464076161385, 0.0020900615490972996, 0.0068641663528978825, 0.010708783753216267, 0.01536477729678154, -0.005340697709470987, 0.018172066658735275, -0.01932237111032009, 0.012947768904268742, -0.0011126453755423427, 0.002351961098611355, 0.009120268747210503, -0.040835797786712646, -0.033084940165281296, -0.011722147464752197, 0.0066758724860847, -0.04206826537847519, -0.025101279839873314, 0.006987412925809622, -0.011619441211223602, 0.02897671051323414, -0.0022030379623174667, -0.0005751521093770862, -0.008723139762878418, 0.002365655265748501, 0.00868205726146698, -0.010291114449501038, -0.016145341098308563, 0.0029630602803081274, 0.008127446286380291, 0.0034081183839589357, -0.0043923817574977875, -0.007127777673304081, 0.0035125359427183867, 0.013947438448667526, 0.002221867209300399, -0.0020815026946365833, -0.03114037774503231, 0.011064830236136913, 0.0014070684555917978, 0.007634459063410759, 0.004515628330409527, 0.030565224587917328, -0.020130323246121407, -0.0199796874076128, -0.013776261359453201, 0.006080179009586573, -0.002615572651848197, -0.03554987534880638, -0.012667040340602398, 0.03845302388072014, 0.013125792145729065, -0.02579967863857746, -0.006956601515412331, -0.17484623193740845, -0.00618288479745388, 0.0068025426007807255, -0.014652684330940247, 0.014556825160980225, 0.03166075423359871, 0.002047267509624362, 0.0018350089667364955, 0.008298622444272041, -0.010626619681715965, 0.0021807849407196045, -0.01483070757240057, -0.011722147464752197, -0.003026395570486784, 0.003495418233796954, 0.01541955303400755, -0.02470415085554123, 0.019171735271811485, 0.054831165820360184, -0.0003046936762984842, 0.0026515196077525616, -0.027757935225963593, -0.004282828886061907, 0.012146663852036, 0.00482374569401145, 0.004457428585737944, -0.00994191411882639, 0.028675438836216927, 0.004529322497546673, -0.026155725121498108, -0.0012401717249304056, -0.003885700134560466, 0.038014814257621765, -0.003789841430261731, 0.014091226272284985, 0.002223578980192542, 0.00885323341935873, -0.002427278785035014, -0.01802143268287182, -0.006073331926018, 0.025265609845519066, 0.0006145226070657372, 0.009250362403690815, 0.005083933472633362, -0.003515959484502673, 0.028565887361764908, 0.008777916431427002, -0.024827398359775543, -0.004738157615065575, -0.019527781754732132, 0.03385180979967117, -0.018240537494421005, -0.0028911663684993982, -0.007374271284788847, 0.01704915054142475, 0.0014318890171125531, 0.0034286596346646547, 0.02649807743728161, 0.002844948787242174, -0.030428284779191017, -0.009038103744387627, -0.009955608285963535, 0.0033345127012580633, -0.008976480923593044, -0.00619315542280674, -0.04579306021332741, -0.009907679632306099, 0.010099397040903568, -0.0019274441292509437, -0.0037316414527595043, 0.0020558263640850782, -0.0038822765927761793, 0.00738111836835742, 0.015310000628232956, 0.009366762824356556, 0.013605085201561451, -0.03902817517518997, 0.0017519885441288352, 0.03850780054926872, -0.010489678010344505, 0.003646053373813629, 0.013057321310043335, 0.004433463793247938, -0.00012260496441740543, -0.01839117333292961, 0.02132171019911766, 0.017651692032814026, 0.013858426362276077, -0.013071015477180481, 0.008983328007161617, 0.022239213809370995, -0.017240868881344795, 0.02125323936343193, -0.020404204726219177, 0.01469376590102911, 0.0025471020489931107, 0.023266270756721497, -0.005190062802284956, 0.010893654078245163, -0.007449588738381863, 0.01781602017581463, 0.02883976884186268, -0.03497472405433655, -0.005902155768126249, 0.05540631711483002, 0.034290019422769547, -0.0013060745550319552, 0.0006414828822016716, 0.03798742592334747, -0.0096474913880229, -0.007935728877782822, 0.0010595808271318674, 0.013605085201561451, 0.0060493675991892815, -0.011715300381183624, 0.059651486575603485, -0.0043307580053806305, -0.029551861807703972, 0.008791610598564148, -0.009318833239376545, 0.042424313724040985, -0.019664723426103592, -0.013954284600913525, -0.0003340075782034546, 0.00014796043979004025, -0.0014866654528304935, -0.10522544384002686, -0.019007407128810883, 0.03297538682818413, 0.00909288041293621, -0.02208857797086239, 0.007518059574067593, -0.010140478610992432, 0.035330772399902344, -0.015515412203967571, 0.0334135964512825, -0.024895869195461273, 0.004423193167895079, 0.016337057575583458, 0.0031667600851505995, 0.003741912078112364, -0.014002214185893536, -0.00738111836835742, 0.00023536728986073285, -0.01155781839042902, 0.021787308156490326, 0.008079517632722855, -0.0036220888141542673, 0.007949423044919968, -0.003189012873917818, -0.0012350364122539759, -0.019349759444594383, -0.036398909986019135, 0.0040842643938958645, 0.006514966953545809, -0.005210604052990675, 0.02029465138912201, -0.03390658646821976, 0.022937612608075142, -0.016419222578406334, -0.02538885548710823, -0.008052129298448563, -0.007757706101983786, -0.03842563554644585, 0.013214804232120514, -0.030756942927837372, -0.017788631841540337, 0.0018161796033382416, -0.006788848899304867, -0.017692772671580315, -0.015652352944016457, -0.0008648678194731474, -0.0014241861645132303, 0.02166406251490116, 0.012221981771290302, -0.019609946757555008, -0.015789294615387917, -0.021417567506432533, -0.010489678010344505, -0.016200117766857147, 0.02818245254456997, 0.010119937360286713, 0.0227322019636631, 0.005730979610234499, -0.011770076118409634, 0.000768153287936002, -0.01001038495451212, 0.0021739378571510315, -0.017459973692893982, 0.004019217565655708, 0.020486369729042053, -0.003379018511623144, -4.795608765562065e-05, -0.0041321939788758755, 0.0068162367679178715, 0.0011503042187541723, -0.0013172009494155645, 0.024539822712540627, -0.021896861493587494, -0.0013146332930773497, -0.023375824093818665, -0.0019051912240684032, 0.0020387086551636457, -0.01410492043942213, 0.013673556037247181, 0.018610278144478798, -0.0136940972879529, -0.005083933472633362, 0.014817013405263424, -0.03448173776268959, 0.024991726502776146, -0.007264718413352966, -0.008017893880605698, -0.010879959911108017, 0.037467051297426224, -0.039493776857852936, 0.006059638224542141, 0.007607071194797754, 0.021198462694883347, -0.0105923842638731, 0.0008229296654462814, 0.018993712961673737, -0.023143025115132332, 0.003331089159473777, 0.014556825160980225, 0.004964110441505909, -0.024156387895345688, -0.009750197641551495, -0.06737495958805084, 0.0142966378480196, 0.008209611289203167, -0.0065218135714530945, 0.010106244124472141, -0.030784331262111664, 0.0008066679001785815, -0.0016655445797368884, 0.002882607514038682, 0.003385865595191717, -0.010256879031658173, -0.006692990195006132, -0.03689189627766609, -0.01618642359972, -0.023060860112309456, -0.021403873339295387, 0.0029647720512002707, -0.010708783753216267, 0.022170742973685265, -0.0006714386981911957, -0.009729656390845776, -0.012543792836368084, 0.02914103865623474, 0.03127731755375862, -0.01688482239842415, 0.013872120529413223, -0.02725125290453434, 0.043218571692705154, -0.01674788072705269, -0.019336065277457237, 0.02325257658958435, -0.006621095817536116, 0.0018024855526164174, -0.0027028725016862154, -0.0034851478412747383, -0.03924728184938431, 0.0044129230082035065, 0.018610278144478798, 0.011379795148968697, 0.015460635535418987, -0.02511497400701046, -0.010147325694561005, 0.032783668488264084, -0.004032911732792854, -0.01410492043942213, -0.008291776292026043, -0.021732531487941742, -0.03270150348544121, 0.012228828854858875, 0.009448926895856857, 0.035878535360097885, -0.0023125906009227037, -0.031222540885210037, -0.04595739021897316, 0.0027405312284827232, -0.023485377430915833, 0.014789625070989132, 0.022020108997821808, 0.007292106747627258, 0.004765545949339867, 0.04102751612663269, -0.0012435951502993703, 0.017145009711384773, 1.1761678251787089e-05, 0.0211847685277462, -0.008127446286380291, -0.043355513364076614, 0.0021636674646288157, 0.004854557570070028, -0.037740930914878845, 0.004477969836443663, -0.021061521023511887, 0.03163336589932442, 0.018007738515734673, 0.008531422354280949, -0.004183546639978886, 0.004477969836443663, -0.020623309537768364, -0.004830592777580023, 0.03609764203429222, 0.025950314477086067, -0.017076538875699043, -0.024786315858364105, 0.020445287227630615, 0.021129991859197617, 0.0205000638961792, -0.010448596440255642, 0.009866597130894661, 0.03259195014834404, -0.0005182360182516277, 0.00036653107963502407, 0.00095173972658813, 0.0030948659405112267, 0.018870465457439423, 0.012742357328534126, 0.015145671553909779, -0.020732862874865532, 0.01262595783919096, 0.018582889810204506, 0.03031873144209385, 0.005665932781994343, 0.005405745003372431, -0.0036802885588258505, -0.014926565811038017, -0.029743578284978867, 0.01836378499865532, -0.03045567125082016, 0.003396135987713933, 0.02645699493587017, 0.04157527908682823, 0.012310992926359177, -0.004594369791448116, -0.019623640924692154, 0.011338712647557259, -0.009380456991493702, -0.006076755467802286, -0.00606306130066514, -0.012961463071405888, -0.036398909986019135, 0.019130654633045197, 0.01829531416296959, 0.02938753180205822, 0.027264947071671486, -0.014529436826705933, 0.031332094222307205, 0.020486369729042053, 0.01615903526544571, 0.003461183048784733, 0.0180899016559124, -0.012564334087073803, 0.00013726192992180586, 0.012221981771290302, 0.0009012427763082087, -0.0030537836719304323, -0.005022310186177492, -0.027374500408768654, -0.02252678945660591, 0.027538828551769257, 0.006778578273952007, 0.09098358452320099, 0.03201679885387421, -0.026333749294281006, 0.01522783562541008, -0.03607025370001793, -0.007237330544739962, 0.019240206107497215, 0.00833970494568348, -0.002660078462213278, -0.021677756682038307, -0.003084595315158367, -0.01328327413648367, -0.017405197024345398, -0.008004199713468552, -0.023403212428092957, -0.009140809997916222, 0.0010039485059678555, 0.02177361398935318, -0.004854557570070028, 0.022033803164958954, 0.019527781754732132, -2.5462462872383185e-05, 0.01729564554989338, 0.0009825514862313867, -0.03628935664892197, 0.0033892891369760036, 0.03771354258060455, 0.01281767524778843, 0.005580344703048468, -0.0268678180873394, 0.03470084071159363, 0.0005323580116964877, -0.036946672946214676, -0.0035707359202206135, -0.01804882101714611, 0.005525568034499884, -0.0016586974961683154, -0.03174291551113129, 0.011051136068999767, 0.006032249890267849, 0.0007249312475323677, -8.14156883279793e-05, -0.0273881945759058, -0.034399572759866714, 0.02145865000784397, 0.021513426676392555, -0.012940921820700169, -0.03516644239425659, -0.023964669555425644], "f5d2dc23-f653-4730-8b4b-a47dcd9cc57d": [-0.014547744765877724, -0.009367022663354874, 0.00481563713401556, -0.04645264521241188, 0.00019981851801276207, 0.01951289176940918, -0.010291903279721737, -0.029373649507761, -0.010771729052066803, -0.04650827869772911, -0.007705019786953926, 0.012357237748801708, 0.01335165835916996, -0.004426213912665844, 0.0028928592801094055, 0.009770354256033897, 0.021320929750800133, 0.004944285843521357, 0.033073171973228455, -0.0008657716098241508, -0.015493487007915974, 0.005497128237038851, -0.005455404054373503, 0.000706699094735086, -0.02670331671833992, 0.002273954451084137, 0.026675501838326454, -0.0037551538553088903, -0.007732835598289967, 0.026480790227651596, 0.011230692267417908, -0.005785718560218811, -0.0080179488286376, -0.011953907087445259, -0.014436480589210987, 0.003974204417318106, 0.009415701031684875, 0.004081991501152515, 0.004422736819833517, -0.018817493692040443, 0.021070586517453194, 0.015924634411931038, -0.003268374828621745, -0.0019523323280736804, -0.01509015541523695, 0.03816349059343338, 0.008296108804643154, -0.0007240840932354331, -0.00838651042431593, 0.007447721902281046, -0.005924798548221588, 0.02481183223426342, -0.03682832419872284, 0.01426958478987217, -0.015688199549913406, -0.008775933645665646, 0.006863587070256472, 0.009909434244036674, 0.01993013173341751, 0.014081827364861965, 0.0149093521758914, 0.010340581648051739, -0.005371956154704094, -0.0020340417977422476, -0.018372438848018646, -0.028511354699730873, -0.009227943606674671, -0.008852427825331688, 0.011967814527451992, -0.005218968726694584, 0.04022186994552612, 0.033073171973228455, -0.0010856915032491088, 0.00240086461417377, 0.0018932234961539507, -0.021293113008141518, -0.008150074630975723, -0.017482327297329903, -0.004888654220849276, 0.003075401531532407, 0.009951158426702023, -0.00773978978395462, 0.005438019055873156, -0.0052885087206959724, 0.026898028329014778, 0.05830224230885506, -0.012079078704118729, 0.003998543601483107, -0.012002584524452686, -0.015298775397241116, 0.0003883368044625968, -0.0010691757779568434, 0.019791051745414734, 0.02695365995168686, 0.008463004603981972, 0.010570063255727291, 0.010257133282721043, -0.005267646629363298, -0.022475291043519974, -0.034603048115968704, -0.02798285149037838, -0.0009135802974924445, -0.01610543765127659, -0.018330713734030724, -0.028483537957072258, 0.005545806139707565, 0.02232230454683304, -0.009360069409012794, 0.005688362754881382, 0.021181849762797356, -0.007399043999612331, 0.019179102033376694, -0.02140437811613083, -0.02439459227025509, -0.012704937718808651, -0.003146679839119315, 0.026202630251646042, -0.024032985791563988, -0.0036786601413041353, -0.018636690452694893, 0.01706508919596672, 0.01237810030579567, 0.04011060670018196, -0.015924634411931038, 0.0199996717274189, -0.0002468666061758995, 0.009158403612673283, -0.014366940595209599, 0.013421198353171349, -0.005232876632362604, 0.012809247709810734, 0.023073334246873856, 0.0030441086273640394, 0.013699358329176903, -0.038552913814783096, 0.00881070364266634, -0.007802375592291355, -0.012628443539142609, -0.012482410296797752, -0.019276456907391548, 0.012239020317792892, 0.02890077792108059, 0.01962415687739849, -0.028191471472382545, -0.012266836129128933, 0.03699522092938423, 0.0002570802753325552, 0.050764117389917374, 0.007997087202966213, -0.019290365278720856, 0.002206153003498912, -0.022517016157507896, -0.0224335677921772, 0.006741892080754042, 0.010862130671739578, 0.00975644588470459, 0.0028702588751912117, 0.03674487769603729, -0.026605961844325066, 0.007392090279608965, 0.016063714399933815, 0.02250310778617859, -0.00972863007336855, 5.136715844855644e-05, -0.00013016998127568513, 0.03591039776802063, 0.011793965473771095, -0.03980463370680809, -0.013010913506150246, -0.021181849762797356, -0.0003965946671087295, 0.04030532017350197, -0.02499263547360897, 0.03390764817595482, 0.016258426010608673, 0.013942747376859188, 0.002032303251326084, 0.02061162330210209, -0.00573356356471777, -0.027593428269028664, 0.032099612057209015, -0.016077622771263123, 0.004982532933354378, 0.026425156742334366, -0.023518390953540802, -0.02518734708428383, 0.021905064582824707, 0.01496498379856348, 0.013789759948849678, -0.005657069850713015, 0.03293409198522568, 0.023017702624201775, 0.002293077763170004, -0.0186505988240242, -0.6115059852600098, 0.017092904075980186, 0.023087242618203163, -0.01913737691938877, -0.0038907567504793406, 0.010111100040376186, 0.017704855650663376, -0.006759277079254389, -0.01347682997584343, 0.028010666370391846, 0.014825903810560703, -0.0019193008774891496, -0.012906603515148163, 0.0016411413671448827, -0.015340499579906464, -0.024658843874931335, 0.027343083173036575, -0.015549118630588055, -0.01993013173341751, 0.018066462129354477, -0.008469958789646626, 0.012044308707118034, -0.001210863352753222, 0.01264930609613657, 0.005389341153204441, -0.008574267849326134, 0.010097191669046879, 0.007621571887284517, -0.0010622218251228333, 0.0209036897867918, -0.043615419417619705, 0.006321175955235958, 0.02023610658943653, -0.013831484131515026, 0.03919268026947975, -0.004394921008497477, -0.020208291709423065, 0.023059427738189697, 0.01725980080664158, 0.03054191917181015, -0.015451762825250626, -0.006755799986422062, 0.029902152717113495, 0.009666044265031815, -0.005684885662049055, 0.0014186137123033404, 0.0004620056424755603, 0.0032648977357894182, -0.01374803576618433, -0.008198752999305725, 0.0034231010358780622, -0.013539415784180164, -0.00573008693754673, -0.011654885485768318, -0.0046522184275090694, -0.005535375326871872, 0.02376873418688774, -0.0040993764996528625, 0.005827442742884159, 0.0037968778051435947, 0.024283329024910927, 0.003449178533628583, -0.003852509893476963, -0.05443582311272621, -0.060082461684942245, 0.002508651465177536, -0.020583806559443474, 0.0036751830484718084, 0.008803749457001686, -0.0003196661709807813, -0.002054903656244278, -0.01346987672150135, 0.005566668231040239, -0.009978974238038063, 0.01136977132409811, 0.016355780884623528, 0.025340335443615913, 0.007885823026299477, 0.0076146177016198635, 0.03674487769603729, -0.00945047102868557, -0.007579847704619169, -0.019860591739416122, -0.02182161621749401, 0.032405588775873184, 0.005903936456888914, -0.01821945048868656, -0.02547941543161869, -0.006481117568910122, -0.011202876456081867, 0.01267712190747261, 0.013344704173505306, -0.004120238590985537, -0.04570161551237106, 0.04189082980155945, 0.04047221317887306, 0.015632566064596176, -0.0014081827830523252, 0.020069211721420288, -0.024658843874931335, -0.03674487769603729, -0.019540708512067795, 0.012976143509149551, 0.01616106927394867, 0.02566021867096424, 0.01506233960390091, -0.02884514629840851, -0.005980430170893669, 0.008490820415318012, -0.007301688194274902, -0.021724261343479156, 0.0009396577370353043, -0.009610412642359734, -0.007489446084946394, 0.014074873179197311, -0.026619868353009224, 0.006310744676738977, -0.0001532050664536655, -0.0009370499756187201, -0.01951289176940918, -0.013845391571521759, 0.003092786530032754, -0.0026077458169311285, -0.0023869567085057497, 0.0016324488678947091, 0.020695071667432785, 0.015145787969231606, -0.009985927492380142, -0.002844181377440691, -0.0039011877961456776, 0.004940809216350317, -0.0015420470153912902, 0.021320929750800133, -0.009791215881705284, 0.030402839183807373, -0.00466612633317709, 0.019429445266723633, -0.00627945177257061, 0.014074873179197311, -0.049345504492521286, 0.00601867726072669, -0.007294734474271536, 0.032767195254564285, -0.006463732570409775, -0.0003555226721800864, -0.02554895542562008, -0.025590678676962852, 0.015104063786566257, 0.006463732570409775, -0.009464378468692303, -0.021126218140125275, -0.018817493692040443, -0.024227697402238846, 0.018191635608673096, -0.003442224580794573, -0.01186350453644991, -0.005427588243037462, -0.028872961178421974, -0.014450388960540295, -0.03115387074649334, -0.014700732193887234, 0.010312765836715698, 0.0022496154997497797, 0.010855176486074924, -0.015827277675271034, -0.015952451154589653, -0.04052784666419029, 0.018859216943383217, -0.014853720553219318, -0.014589468948543072, -0.004669603426009417, -0.029095489531755447, 0.012141664512455463, 0.017649224027991295, -0.01675911247730255, 0.0006875756662338972, -0.03413017839193344, 0.006084740161895752, -0.014012287370860577, 0.01411659736186266, 0.009554781019687653, 0.0313485823571682, -0.001056137029081583, -0.008400418795645237, 0.034909024834632874, 0.02127920649945736, 0.041000716388225555, 0.013574185781180859, -0.031543292105197906, 0.00507641164585948, -0.0028563509695231915, 0.032461218535900116, -0.016675665974617004, 0.01359504833817482, -0.012753615155816078, -0.012371146120131016, -0.006679306272417307, -0.01426958478987217, -0.012350284494459629, 0.015437855385243893, 0.03187708556652069, 0.016856469213962555, -0.0033796385396271944, -0.0023052473552525043, 0.030708814039826393, -0.024797923862934113, 0.025006543844938278, -0.004287133924663067, 0.016133254393935204, -0.011891321279108524, -0.01213471032679081, -0.0026546851731836796, -0.007378182373940945, -0.0005571883521042764, -0.011223738081753254, 0.005928275641053915, 0.00032227393239736557, 0.013435106724500656, -0.020403003320097923, -0.0008566444739699364, 0.001985363895073533, 0.012565857730805874, 0.030820079147815704, 0.0104518448933959, 0.003250989830121398, 0.011112473905086517, -0.002087935106828809, 0.010326673276722431, 0.036132924258708954, -0.02329586260020733, -0.003946388605982065, 0.0354931578040123, -0.0004476630419958383, -0.004607017617672682, 0.02956836111843586, 0.016814744099974632, 0.033629488199949265, -0.009652136825025082, 0.017969107255339622, -0.018149910494685173, 0.006147325970232487, 0.009520011022686958, 0.018428070470690727, -0.015396131202578545, 0.03451960161328316, 0.008268292993307114, 0.022962071001529694, 0.000998766627162695, -0.034603048115968704, 0.04141795635223389, -0.01253108773380518, 0.009513056837022305, 0.0016932962462306023, 0.0018549765227362514, 0.027649059891700745, -0.021014954894781113, 0.004182824399322271, 0.017704855650663376, 0.012468501925468445, 0.027231819927692413, -0.0037203840911388397, 0.009457425214350224, 0.01475636474788189, 0.004109807312488556, 0.017231984063982964, -0.0071973782032728195, -0.0037760159466415644, -0.021014954894781113, 0.005966522265225649, 0.00439144391566515, 0.001322996336966753, -0.04127887636423111, -0.007663295604288578, -0.02493700385093689, -0.003723860951140523, 0.02358793094754219, -0.006345514673739672, 0.021418286487460136, 0.0036577980499714613, 0.012906603515148163, -0.012711891904473305, -0.03966555371880531, 0.016689572483301163, 0.023115059360861778, -0.009429608471691608, -0.004683511331677437, -0.012621489353477955, 0.002206153003498912, 0.01093862485140562, 0.02518734708428383, -0.004415783099830151, -0.004349720198661089, -0.013052636757493019, 0.019596340134739876, -0.00016428797971457243, 0.006192527245730162, 0.03674487769603729, -0.021626904606819153, -0.0005311109125614166, -0.007280826102942228, 0.0050451187416911125, 0.004565293435007334, -0.008469958789646626, -0.010799544863402843, 0.04080600664019585, -0.009881618432700634, 0.0036056432873010635, -0.012788385152816772, 0.016967732459306717, -0.028733881190419197, 0.004565293435007334, 0.00426627229899168, -0.015410039573907852, -0.010535293258726597, -0.005827442742884159, 0.0008236130233854055, 0.01566038280725479, -0.01268407516181469, 0.012503271922469139, 0.007364274002611637, -0.008337832987308502, -0.01401924155652523, 0.004360151011496782, 0.004979055840522051, 0.04614666849374771, 0.010785636492073536, 0.003377899993211031, 0.01677302084863186, -0.011258508078753948, 0.020806334912776947, -0.02962399274110794, -0.016258426010608673, 0.01200953871011734, -0.003626505145803094, -0.028678249567747116, -0.00042549718637019396, 0.017704855650663376, 0.006258590146899223, 0.011960860341787338, 0.021654721349477768, -0.003640413051471114, -0.010062421672046185, -0.01646704599261284, 0.0034265778958797455, -0.012225111946463585, 0.014366940595209599, 0.0358547680079937, -0.0033639920875430107, 0.039721183478832245, 0.021501732990145683, 0.035020288079977036, 0.0013090884312987328, 0.013657634146511555, -0.014881536364555359, -0.026605961844325066, 0.00519810663536191, 0.005719655659049749, 0.027662968263030052, 0.007579847704619169, 0.03023594431579113, 0.0025781914591789246, -0.02372700907289982, -0.026480790227651596, 0.009610412642359734, -0.003654321189969778, 0.02151564136147499, 4.232154242345132e-05, -0.013949701562523842, 0.014867627993226051, -0.027885494753718376, 0.006192527245730162, 0.017524052411317825, -0.00654022628441453, -0.0011187229538336396, 0.014088781550526619, 0.006234250962734222, -0.010876038111746311, 0.01506233960390091, -0.008296108804643154, 1.3038728866376914e-05, 0.0008236130233854055, -0.01974932849407196, -0.01319867093116045, -0.024172065779566765, -0.0175657756626606, -0.021376561373472214, -0.008553406223654747, -0.018010830506682396, -0.0234210342168808, -0.03474212810397148, -0.015076247975230217, -0.004986010026186705, -0.02823319472372532, -0.00881070364266634, -0.0005093796644359827, -0.030736630782485008, -0.02102886140346527, 0.011383679695427418, 0.027106648311018944, 0.024311145767569542, -0.0008357825572602451, 0.009700814262032509, 0.004537477623671293, 0.00426974892616272, -0.012642351910471916, -0.01951289176940918, 0.017718764021992683, -0.004725235514342785, 0.006088217254728079, -0.021599089726805687, -0.03507591784000397, -0.010889946483075619, -0.004780867137014866, 0.03023594431579113, 0.009916388429701328, -0.038135673850774765, -0.018330713734030724, 0.011105519719421864, 0.02439459227025509, 0.035520974546670914, 0.01821945048868656, -0.0008249169331975281, 0.02183552458882332, -0.02945709601044655, 0.00695051159709692, -0.03140421211719513, -0.013233440928161144, -0.02504826709628105, -0.005389341153204441, 0.017649224027991295, -0.013636772520840168, -0.020875874906778336, -0.00521201454102993, -0.029790887609124184, 0.014047057367861271, -0.007176516577601433, -0.008678577840328217, -0.01931818015873432, -0.0012525871861726046, -0.018261173740029335, -0.0031049561221152544, 0.02280908264219761, 0.0047495742328464985, -0.005789195653051138, 0.02554895542562008, -0.017579684033989906, 0.035632237792015076, 0.009137541055679321, -0.001571601489558816, 0.013059590943157673, 0.020027488470077515, -0.03518718481063843, -0.0354931578040123, 0.00045114001841284335, 0.004460983909666538, 0.006164710968732834, -0.0011004686821252108, -0.005556236952543259, -0.014450388960540295, 0.0019332088995724916, -0.006644536275416613, 0.014464296400547028, -0.012343330308794975, 0.013970563188195229, -0.03129294887185097, 0.017301524057984352, 0.006171665154397488, -0.02408861741423607, -0.015549118630588055, -0.027454348281025887, -0.037273380905389786, -0.013497692532837391, 0.0056605469435453415, 0.00965909007936716, -0.016786929219961166, -0.014603376388549805, -0.03248903527855873, -0.031849268823862076, -0.013921885751187801, 0.003762108040973544, 0.016926009207963943, -0.006919218692928553, 0.053684793412685394, 0.02967962436378002, 0.042224619537591934, 0.01749623566865921, 0.03290627524256706, 0.010750866495072842, -0.015020615421235561, -0.008921967819333076, -0.010187593288719654, -0.020152660086750984, 0.005218968726694584, 0.005841350648552179, -0.0024304192047566175, 0.0005976083921268582, -0.008407372049987316, 0.017468420788645744, 0.0010204978752881289, 0.0012969189556315541, -0.0075381239876151085, -0.011515805497765541, -0.033685121685266495, -0.04706459492444992, -0.014165274798870087, 0.026063550263643265, -0.002508651465177536, -0.0011108997277915478, -0.01578555442392826, 0.003849032800644636, 0.034909024834632874, -0.010507477447390556, 0.034102361649274826, 0.01091776229441166, 0.024617120623588562, 0.011230692267417908, 0.009255759418010712, 0.002280908403918147, -0.004638310521841049, -0.021654721349477768, 0.004645264707505703, -0.028984226286411285, -0.0057787648402154446, 0.00492342421784997, 0.010618740692734718, 0.02292034775018692, -0.004933855030685663, -0.0026929322630167007, 0.009172311052680016, 0.01283010933548212, -0.0186505988240242, -0.00947828684002161, 0.010716096498072147, -0.0403609499335289, 0.004029836505651474, -0.024853555485606194, -0.00679752416908741, 0.013817575760185719, -0.026174813508987427, -0.007253010291606188, 0.011001210659742355, 0.02187724970281124, -0.0149093521758914, -0.008970645256340504, 0.020514266565442085, -0.004384489730000496, 0.04080600664019585, 0.009193173609673977, 0.031904902309179306, 0.005121612921357155, 0.003939434885978699, -0.012176434509456158, -0.02139046974480152, -0.005632731132209301, -0.005997815169394016, 0.0043531968258321285, 0.03810785710811615, -0.0072182402946054935, -0.01292746514081955, 0.007006143685430288, -0.016230609267950058, 0.003918572794646025, -0.03546534478664398, 0.021682536229491234, 4.965582775184885e-05, 0.0027833341155201197, -0.03671706095337868, -0.022350119426846504, -0.020806334912776947, -0.006060401443392038, -0.019888408482074738, 0.009471332654356956, -0.01335165835916996, -0.009499148465692997, 0.005031210836023092, 0.022447476163506508, -0.0008101396961137652, 0.023754825815558434, -0.018024738878011703, 0.018261173740029335, 6.008680793456733e-05, -0.0033900695852935314, -0.01084822230041027, -0.011724425479769707, 0.010778682306408882, 0.02725963667035103, -0.02767687477171421, -0.011703562922775745, 0.015312683768570423, 0.016661757603287697, -0.012899649329483509, -0.0034839482977986336, -0.010013744235038757, 0.03805222734808922, -0.0199996717274189, -0.013664588332176208, 0.00023817412147764117, 0.005371956154704094, 0.008296108804643154, -0.010570063255727291, -0.013087406754493713, -0.0067488462664186954, -0.012551950290799141, 0.013727174140512943, 0.0005793541786260903, -0.00239391066133976, -0.007183470297604799, 0.0023226323537528515, 0.006084740161895752, -0.008122258819639683, -0.006150803063064814, -0.0029902150854468346, 0.02030564658343792, -0.02627217024564743, -0.004196732304990292, -0.0045722476206719875, -0.017774395644664764, 0.005173767916858196, -0.003998543601483107, 0.013817575760185719, -0.013108269311487675, 0.014659008011221886, 0.001214340329170227, 0.006870540790259838, 0.01878967694938183, 0.012099940329790115, -0.04878918454051018, 0.01396360993385315, -0.01103598065674305, 0.017996923997998238, 0.020695071667432785, -0.011335001327097416, -0.02293425425887108, -0.020987138152122498, 0.01396360993385315, -0.0029067674186080694, 0.0006788831669837236, -0.008942829445004463, 0.015813371166586876, 0.025215163826942444, -0.003831647802144289, -0.0023869567085057497, -0.01835853047668934, 0.00947828684002161, -0.014081827364861965, 0.01176614873111248, 0.00666192127391696, -0.018330713734030724, -0.0022861238103359938, -0.022141501307487488, 0.015145787969231606, -0.009492194280028343, -0.04467242583632469, -0.01706508919596672, -0.012245974503457546, -0.009165356867015362, -0.004422736819833517, 0.03079226240515709, -0.006001292262226343, -0.029401464387774467, -0.037885330617427826, 0.03591039776802063, -0.007830191403627396, 0.0010709143243730068, 0.038747627288103104, 0.005719655659049749, 0.006116033066064119, 0.022642187774181366, 0.0003848598280455917, -0.03791314736008644, -0.022447476163506508, -0.005817011464387178, -0.04495058208703995, -0.012482410296797752, 0.013845391571521759, 0.03986026346683502, -0.0015994174173101783, -0.032767195254564285, -0.019651971757411957, -0.018567150458693504, -0.022642187774181366, -0.011077703908085823, -0.023685285821557045, 0.028678249567747116, 0.039415210485458374, 0.034658681601285934, 0.007461629807949066, 0.01386625412851572, 0.004464461002498865, 0.029985599219799042, -0.03079226240515709, 0.01560475118458271, -0.028566986322402954, -0.010020697489380836, 0.01693991757929325, -0.015368315391242504, -0.06492243707180023, 0.006665398366749287, 0.009923341684043407, -0.009805124253034592, 0.006769707892090082, 0.008379556238651276, 0.01742669567465782, -0.002908505732193589, 0.0021991990506649017, 0.0023921721149235964, 0.02504826709628105, 0.033991098403930664, 0.006157757248729467, -0.021237481385469437, 0.0017289355164393783, 0.015410039573907852, 0.0026216537225991488, -0.005156382918357849, 0.015952451154589653, 0.022642187774181366, -0.016995549201965332, 0.0054414961487054825, -0.007913638837635517, 0.0014142674626782537, -0.02146000973880291, 0.001524662016890943, -0.004711327608674765, 0.0224335677921772, 0.00614037225022912, 0.02061162330210209, -0.006780139170587063, -0.004624402616173029, -0.0016446183435618877, 0.004534000530838966, -0.004954717122018337, -0.011195922270417213, 0.022211039438843727, -0.019040022045373917, -0.015326591208577156, -0.01695382408797741, 0.0018514995463192463, -0.014506020583212376, -0.017148535698652267, -0.018441978842020035, -0.013066545128822327, -0.01632796600461006, 0.006929649971425533, 0.004718281328678131, -0.03196053206920624, 0.011689655482769012, 0.009784262627363205, 0.007677203509956598, -0.002475620014593005, -0.00425236439332366, 0.016258426010608673, -0.020347371697425842, -0.006025631446391344, -0.010889946483075619, -0.0019297319231554866, -0.020472543314099312, 0.010876038111746311, 0.027398716658353806, -0.012239020317792892, 0.004050698596984148, 0.21396033465862274, 0.0006893141544423997, 0.0146868247538805, 0.04967929795384407, 0.012127756141126156, -0.020277831703424454, 0.0109455781057477, -0.005823965650051832, -0.014659008011221886, 0.01411659736186266, 0.0010769990039989352, 0.004141100216656923, -0.02493700385093689, 0.002173121552914381, 0.017941290512681007, 0.003172757336869836, -0.030013415962457657, -0.03488120809197426, -0.011898274533450603, 0.0007992740720510483, -0.014283493161201477, 0.007329504005610943, -0.00963127426803112, -0.011286323890089989, 0.01785784400999546, -0.010577017441391945, -0.03285064175724983, -0.011439311318099499, 0.0243250522762537, 0.012691029347479343, -0.0199996717274189, 0.022113684564828873, 0.01663394086062908, -0.019707605242729187, -0.010604833252727985, 0.01014587003737688, 0.023323679342865944, -0.02425551228225231, 0.004624402616173029, 0.02133483812212944, -0.014603376388549805, 0.0006910526426509023, -0.013942747376859188, -0.014109643176198006, 0.017176352441310883, -0.0030771400779485703, -0.023379310965538025, 0.002223538001999259, -0.013581139966845512, 0.025868838652968407, 0.005959568545222282, -0.003762108040973544, -0.0008027511066757143, 0.016133254393935204, -0.0013708050828427076, 0.010959486477077007, 0.0035343647468835115, -0.005055550020188093, -0.025896653532981873, -0.015034523792564869, -0.019234733656048775, 0.013581139966845512, -0.012419824488461018, 0.014033148996531963, -0.02713446505367756, 0.00521201454102993, -0.01719026081264019, 0.02865043468773365, -0.00638723885640502, 0.01298309676349163, 0.0082891546189785, -0.0029311063699424267, -0.030263759195804596, -0.015104063786566257, -0.01267712190747261, -0.0109455781057477, -0.0034074545837938786, -0.0011543621076270938, 0.031126054003834724, 0.02524297870695591, 0.0031153869349509478, 0.00868553202599287, -0.010723050683736801, -0.024728383868932724, 0.011418449692428112, -0.012503271922469139, 0.029178937897086143, -0.020681163296103477, -0.00600476935505867, -0.02315678261220455, -0.0029606607276946306, 0.008609037846326828, -0.006759277079254389, -0.020514266565442085, 0.005048595834523439, -0.024283329024910927, 0.0033692074939608574, 0.03162674233317375, -0.011668792925775051, -0.023796549066901207, -0.02151564136147499, 0.04745401814579964, 0.014422573149204254, 0.018914850428700447, -0.020931506529450417, 0.0026755472645163536, -0.006501979660242796, 0.02535424381494522, 0.003619551192969084, 0.007823237217962742, -0.0015837709652259946, -0.015117972157895565, 0.015938542783260345, 0.0022339688148349524, 0.020528174936771393, 0.008873289451003075, 0.024116434156894684, -0.001186524285003543, 0.0034648249857127666, -0.017941290512681007, 0.02439459227025509, -0.00789277721196413, 0.006801001261919737, 0.005796149838715792, -0.03090352565050125, -0.043977025896310806, -0.014825903810560703, 0.022169316187500954, -0.026842396706342697, -0.021849432960152626, 0.016550492495298386, -0.019971854984760284, 0.02518734708428383, -0.016870377585291862, -0.0043775360099971294, -0.004193255212157965, 0.009040185250341892, -0.010862130671739578, 0.007280826102942228, -0.02036128006875515, -0.0007849314715713263, 0.011592299677431583, 0.009763400070369244, 0.00027924610185436904, -0.024978727102279663, -0.010716096498072147, 0.003172757336869836, 0.0034578710328787565, -0.012739707715809345, -0.015243143774569035, -0.0026807626709342003, 0.0023191552609205246, -0.0071626086719334126, -0.017537958920001984, 0.03732901066541672, -0.020347371697425842, -0.025799298658967018, -0.016675665974617004, -0.005236353725194931, 0.0062551130540668964, -0.03321225196123123, -0.0028024574276059866, 0.0380244106054306, -0.014109643176198006, -0.02439459227025509, -0.020681163296103477, -0.1774657964706421, 0.0068044778890907764, 0.011446265503764153, -0.005017302930355072, 0.02401907742023468, 0.00844214204698801, 0.007927547208964825, 0.006467209663242102, -0.006321175955235958, -0.006522841285914183, -0.00640114676207304, -0.0019453783752396703, -0.02529861219227314, -0.010632649064064026, 0.014825903810560703, -0.006637582555413246, -0.024853555485606194, 0.01076477486640215, 0.05735649913549423, 0.0006484594778157771, 0.0035221953876316547, -0.04987400770187378, -0.013928839936852455, 0.007169562391936779, 0.007364274002611637, -0.004534000530838966, -0.00789277721196413, 0.03212742879986763, 0.01719026081264019, -0.027217911556363106, 0.01015282329171896, -0.01742669567465782, 0.028024574741721153, -0.00333096063695848, 0.017412787303328514, 0.007607663981616497, 0.0003535668656695634, 2.8097781523683807e-06, -0.007246056571602821, 0.003377899993211031, 0.027106648311018944, -0.001279533957131207, 0.017204169183969498, 0.0021070586517453194, 0.01401924155652523, 0.024158157408237457, 0.010486614890396595, -0.02335149422287941, 0.001524662016890943, 0.004464461002498865, 0.022656096145510674, -0.013553324155509472, 0.007308642379939556, -0.009172311052680016, 0.01731543242931366, 0.015563027001917362, -0.008031857199966908, 0.03385201841592789, -0.009638228453695774, -0.025409875437617302, 0.0030406315345317125, -0.007997087202966213, 0.013247348368167877, -0.02061162330210209, -0.007232148200273514, -0.03223869204521179, 0.008393464609980583, 0.012614536099135876, 0.0032144812867045403, 0.00032488166471011937, -0.005382387433201075, 0.006348991766571999, 0.003918572794646025, 0.03515936806797981, 0.013754989951848984, 0.00734341237694025, -0.025924470275640488, 0.002814627019688487, 0.04236369952559471, 0.00013038728502579033, 0.003946388605982065, 0.023240230977535248, -0.010486614890396595, -0.0005450188764370978, -0.029401464387774467, 0.011098566465079784, 0.02091759815812111, 0.005924798548221588, -0.010354489088058472, -0.003075401531532407, 0.010403167456388474, -0.036967404186725616, -0.00748249189928174, -0.01805255562067032, 0.014575560577213764, 0.015340499579906464, 0.017343247309327126, -0.0012308560544624925, 0.01634187437593937, -0.0030719246715307236, 0.00783714558929205, 0.040388766676187515, -0.05023561418056488, 0.010597879067063332, 0.03871981054544449, 0.03126513212919235, 0.014770272187888622, -0.0027589951641857624, 0.03493684157729149, 0.006832294166088104, -0.013497692532837391, 0.009311391040682793, 0.02127920649945736, 0.01962415687739849, -0.024784015491604805, 0.04809378832578659, -0.012997005134820938, -0.017412787303328514, 0.026758948341012, -0.023615745827555656, 0.034547414630651474, -0.035576608031988144, -0.012920510955154896, -0.002599053317680955, 0.0026755472645163536, -0.003492640797048807, -0.11493552476167679, -0.021974604576826096, 0.025715850293636322, 0.010855176486074924, -0.009589551016688347, 0.0011491467012092471, -0.008449096232652664, 0.038552913814783096, -0.01646704599261284, 0.02853916957974434, -0.026508605107665062, -0.005138997919857502, 0.010876038111746311, 0.0036577980499714613, 0.0025503754150122404, -0.014798087999224663, 0.007322550285607576, -0.008908059448003769, -0.020987138152122498, 0.02951272949576378, 0.006634105462580919, -0.013219532556831837, 0.011258508078753948, 0.005278077442198992, -0.008122258819639683, -0.016008082777261734, -0.02755170315504074, 0.007920593023300171, -0.0010535293258726597, 6.497633148683235e-05, 0.015437855385243893, -0.019902316853404045, 0.017329340800642967, -0.020208291709423065, -0.025562863796949387, -0.02956836111843586, -0.024311145767569542, -0.03451960161328316, 0.023879997432231903, -0.028984226286411285, -0.009380931034684181, 0.004492276813834906, -0.006849679164588451, -0.013282118365168571, -0.012092986144125462, 1.9367946151760407e-05, -0.011195922270417213, 0.007030482869595289, 0.015646474435925484, -0.02785767987370491, -0.022405752912163734, -0.028678249567747116, -0.009387885220348835, -0.03396328166127205, 0.02529861219227314, 0.011939998716115952, 0.030820079147815704, 0.016063714399933815, -0.010681326501071453, 0.003211004426702857, 0.0023869567085057497, -0.0003731249598786235, -0.020514266565442085, 0.006515887565910816, 0.03059755079448223, -0.004634833429008722, -0.004141100216656923, -0.017718764021992683, -0.009227943606674671, 0.003325745230540633, -0.010723050683736801, 0.0181081872433424, -0.03176582232117653, 0.005038165021687746, -0.02279517613351345, -0.0020236107520759106, -0.004085468593984842, -0.014923259615898132, 0.0194572601467371, 0.018887033686041832, -0.020708978176116943, 0.0027311791200190783, 0.010750866495072842, -0.0410841666162014, 0.032767195254564285, -0.005841350648552179, -0.004325381014496088, -0.004568770527839661, 0.035326264798641205, -0.04333725944161415, 0.0012438948033377528, 0.00990248005837202, 0.0218911562114954, -0.022725636139512062, -0.005928275641053915, 0.013650679960846901, -0.021724261343479156, -0.000980512471869588, 0.012343330308794975, -0.0035274107940495014, -0.01993013173341751, -0.0012412869837135077, -0.05418547987937927, 0.012051262892782688, 0.0009274882613681257, -0.02102886140346527, 0.004568770527839661, -0.030096864327788353, -0.0051668137311935425, 0.002280908403918147, -0.010702189058065414, 0.004766959231346846, 0.0030980019364506006, -0.003518718294799328, -0.016786929219961166, -0.017510144039988518, -0.019401628524065018, -0.03159892559051514, 0.004579201806336641, -0.025451598688960075, 0.015368315391242504, 0.00999983586370945, -0.012440686114132404, -0.013038729317486286, 0.012725799344480038, 0.04061129316687584, -0.026856305077672005, 0.006168188061565161, -0.023128967732191086, 0.04050002992153168, -0.01308045256882906, -0.023560114204883575, 0.008129213005304337, -0.012642351910471916, -0.0015837709652259946, 0.00773978978395462, 0.011793965473771095, -0.0224335677921772, 0.00018449801427777857, 0.024464132264256477, 0.01228074450045824, 0.020778518170118332, -0.02048645168542862, -0.01076477486640215, 0.030764445662498474, -0.026689408347010612, -0.015716014429926872, -0.0035343647468835115, -0.007357320282608271, -0.023309770971536636, 0.002293077763170004, 0.012239020317792892, 0.02468666061758995, 0.0071626086719334126, -0.014325217343866825, -0.04528437554836273, 0.012385054491460323, -0.011967814527451992, 0.006178618874400854, 0.02292034775018692, 0.0015663859667256474, -0.0008192668319679797, 0.05396295338869095, 0.016174977645277977, 0.018372438848018646, -0.005431065335869789, 0.03129294887185097, -0.009679952636361122, -0.047148045152425766, -0.02237793616950512, -0.00039702930371277034, -0.046786434948444366, 0.0030180311296135187, -0.030096864327788353, 0.02456148900091648, 0.011119428090751171, 0.0004274529928807169, -0.017830027267336845, 0.0019436398288235068, -0.023142874240875244, 0.0020010103471577168, 0.033685121685266495, 0.010472707450389862, -0.014026195742189884, -0.02778813987970352, -0.006766231264919043, 0.025145623832941055, 0.01737106405198574, 0.011891321279108524, 0.021612998098134995, 0.021181849762797356, 0.003671706188470125, 0.009513056837022305, 0.009367022663354874, 0.006665398366749287, 0.02109840139746666, 0.009290529415011406, 0.0263973418623209, -0.02317069098353386, -0.004944285843521357, 0.013727174140512943, 0.02572975866496563, 0.0030510625801980495, 0.0027207480743527412, 0.010264087468385696, -0.013289072550833225, -0.027454348281025887, 0.005323278252035379, -0.028817329555749893, 3.5068747820332646e-05, 0.014992799609899521, 0.026258261874318123, 0.009916388429701328, -0.011870458722114563, -0.00708611449226737, 0.01693991757929325, 0.00411676149815321, -0.004874746315181255, -0.003019769676029682, -0.010910808108747005, -0.01962415687739849, 0.0051668137311935425, 0.004860838409513235, 0.02535424381494522, 0.03379638493061066, -0.010076330043375492, 0.0392761304974556, 0.007920593023300171, 0.017343247309327126, 0.009617366828024387, 0.002014918252825737, 0.003002384677529335, 0.01780221052467823, 0.004975579213351011, -0.012788385152816772, -0.019345996901392937, 0.0029032903257757425, -0.021779892966151237, -0.021668629720807076, 0.018636690452694893, 0.013671541586518288, 0.09546435624361038, 0.03616074100136757, -0.028441814705729485, -0.0017871750751510262, -0.026842396706342697, -0.018191635608673096, 0.012044308707118034, -0.0047495742328464985, -0.0021574751008301973, -0.02632780186831951, 0.01614716276526451, -0.008150074630975723, -0.020639438182115555, -0.016286242753267288, -0.018734045326709747, 0.003358776681125164, 0.013337750919163227, 0.004318426828831434, -0.006981804966926575, 0.01188436709344387, 0.018567150458693504, -0.0013777590356767178, 0.016717389225959778, 0.014492113143205643, -0.03413017839193344, -0.0002927194582298398, 0.028191471472382545, 0.0117105171084404, 0.00415848521515727, -0.03354604169726372, 0.03059755079448223, -0.009408746846020222, -0.04890044778585434, -0.0013021343620494008, -0.02084805816411972, 0.007027005776762962, -0.0013977517373859882, -0.020889783278107643, 0.008650762028992176, -0.0029971692711114883, -0.006147325970232487, 0.008191798813641071, -0.028678249567747116, -0.025284703820943832, 0.007621571887284517, -0.006620197556912899, -0.009408746846020222, -0.035326264798641205, -0.008908059448003769], "e32c5fc2-09b2-4a9e-9174-bcac03c84bdf": [-0.024189850315451622, -0.019234148785471916, -0.0025291878264397383, -0.04783210903406143, 0.005530673079192638, 0.014429033733904362, -0.0029107907321304083, -0.03729097545146942, -0.009877179749310017, -0.04665478691458702, 0.003401911584660411, 0.004839339293539524, 0.010979208163917065, -0.012272892519831657, 0.005712063051760197, 0.018919283524155617, 0.02670877054333687, -0.002465872559696436, 0.016811056062579155, 0.009938783943653107, -0.027105774730443954, -0.0002635283744893968, -0.008289164863526821, 0.0028902560006827116, -0.01846752129495144, -0.0008076973608694971, 0.016195015981793404, -0.00037668299046345055, -0.009165311232209206, 0.029296141117811203, 0.008740928024053574, -0.011307762935757637, -0.013511817902326584, -0.005078910384327173, -0.016249775886535645, 0.022163761779665947, 0.0029946404974907637, -0.008090662769973278, -0.009541780687868595, -0.0069920578971505165, 0.017413407564163208, 0.004100090824067593, -0.004199341870844364, 0.00449367193505168, -0.03011752851307392, 0.04517628997564316, 0.00026630909997038543, -0.0026215938851237297, -0.01225235778838396, 0.0044218008406460285, -0.022095313295722008, 0.0034652268514037132, -0.03217099606990814, 0.009343278594315052, -0.010924449190497398, -0.005024151410907507, -0.0013706897152587771, 0.005783934146165848, 0.010383701883256435, 0.008213871158659458, 0.006369172595441341, 0.001608549733646214, -0.016797367483377457, 0.0062904562801122665, -0.0218215174973011, -0.02581893466413021, 0.001908013829961419, 0.00441153347492218, 0.014565931633114815, 0.0022913278080523014, 0.0029980631079524755, 0.026968877762556076, 0.0019747514743357897, -0.005842115730047226, -0.001452828524634242, -0.02345060184597969, -0.026037972420454025, -0.013285936787724495, 0.006334948353469372, 0.004948857240378857, 0.007371949497610331, -0.008138577453792095, 0.0014057698426768184, -0.0024812736082822084, 0.02376546710729599, 0.04495725408196449, -0.005356128327548504, 0.0029381702188402414, -0.010082527063786983, -0.027215292677283287, 0.0030682231299579144, 0.007180292624980211, 0.024805890396237373, 0.021999485790729523, 0.016496190801262856, 0.008289164863526821, 0.006707994733005762, -0.008562960661947727, 0.005736019928008318, -0.012526153586804867, -0.010315253399312496, 0.002342664636671543, -0.030144907534122467, -0.01394304633140564, -0.026174869388341904, 0.0019456607988104224, 0.02369701862335205, -0.013662406243383884, 0.018946662545204163, 0.025093376636505127, 0.0006472701788879931, 0.013101124204695225, -0.01410047896206379, -0.02425829879939556, -0.010465840809047222, -0.015045073814690113, 0.011656852439045906, -0.028228336945176125, -0.008063283748924732, -0.005373240914195776, 0.020479919388890266, 0.012895777821540833, 0.04216453805565834, -0.02338215336203575, 0.011629472486674786, -0.0075567616149783134, -0.004699018783867359, -0.013758234679698944, 0.03972775861620903, 0.009418572299182415, 0.022560765966773033, 0.02688673883676529, 0.01032209862023592, -0.003836562391370535, -0.03646958991885185, 0.005479336716234684, -0.009719748049974442, -0.004281480330973864, -0.013450213707983494, -0.021739378571510315, 0.017988378182053566, 0.03395066782832146, 0.004062443971633911, -0.024354128167033195, 0.003679129760712385, 0.037948086857795715, -0.003891321597620845, 0.0318150594830513, 0.015332560054957867, -0.012389255687594414, 0.006690882612019777, -0.0038605195004493, -0.017016403377056122, 0.016509881243109703, 0.013826683163642883, -0.005917409900575876, 0.0023033064790070057, 0.02918662317097187, -0.02550406940281391, 0.004332817159593105, 0.015674803406000137, 0.018385382369160652, 0.0018053404055535793, -0.006530027836561203, 0.0005809602444060147, 0.03786594793200493, 0.006690882612019777, -0.039700377732515335, -0.022355418652296066, -0.031404368579387665, -0.0007700504502281547, 0.04657265171408653, -0.031075812876224518, 0.027913471683859825, 0.016947954893112183, -0.004346506670117378, 0.015921220183372498, 0.01578432321548462, -0.00746777793392539, -0.000429517007432878, 0.01525042112916708, -0.009808731265366077, 0.012936847284436226, 0.012279737740755081, -0.01889190450310707, -0.020479919388890266, 0.01764613389968872, 0.003328329185023904, 0.0010301563888788223, -0.0137240095064044, 0.02076740376651287, 0.0019285485614091158, -0.013231177814304829, -0.01431951578706503, -0.6321395039558411, 0.003191431285813451, 0.028419993817806244, -0.02364225871860981, -0.001692399731837213, 0.013860907405614853, 0.014565931633114815, -0.006061152555048466, -0.003330040257424116, 0.02064419724047184, 0.002275926759466529, 0.0022314349189400673, -0.013368075713515282, -0.011656852439045906, -0.02301253005862236, -0.023655949160456657, 0.011869044043123722, -0.0003967898664996028, -0.019631152972579002, 0.014730209484696388, -0.021342376247048378, 0.005948211532086134, -0.00030203087953850627, -0.016441432759165764, 0.008850445970892906, -0.006543717347085476, 0.02178044803440571, 0.0006652380106970668, -0.014497483149170876, 0.025476690381765366, -0.04829756170511246, -0.005448534619063139, 0.03734573349356651, -0.016920574009418488, 0.038030222058296204, -0.013409145176410675, -0.01634560339152813, 0.02115071751177311, 0.01483972743153572, 0.03392328694462776, -0.029405659064650536, 0.002500097034499049, 0.020233502611517906, 0.019973397254943848, 0.007016015239059925, 0.007139223162084818, 0.0034429810475558043, 0.010547979734838009, -0.01483972743153572, 0.008453442715108395, -0.004719553515315056, -0.00682778051123023, -0.017728272825479507, -0.010534290224313736, 0.010568514466285706, 0.004993349313735962, 0.030665120109915733, -0.00375100108794868, 0.004805114585906267, 0.0067045725882053375, 0.008521891199052334, -0.015140902251005173, -0.008720393292605877, -0.05495079979300499, -0.04284902662038803, 0.008090662769973278, -0.026407595723867416, -0.011971717700362206, 0.0015075876144692302, -0.015359939076006413, 0.004199341870844364, -0.005393775645643473, 0.004681906662881374, -0.009247450157999992, 0.00757729634642601, 0.014757588505744934, 0.03219837695360184, 0.0009317609947174788, -0.0027225560043007135, 0.016920574009418488, 0.0010241670534014702, -0.012012786231935024, -0.009815576486289501, -0.01871393620967865, 0.0355660617351532, 0.02483327127993107, -0.006790133658796549, -0.016455121338367462, -0.014620690606534481, -0.007666280027478933, 0.014730209484696388, -0.0006280189263634384, -0.0087272385135293, -0.02987111173570156, 0.03625055029988289, 0.04561436548829079, 0.011561024002730846, -0.0016419186722487211, 0.002145873848348856, -0.01908356137573719, -0.023163117468357086, -0.01759137399494648, 0.020288262516260147, 0.0041480050422251225, 0.014524862170219421, 0.016167636960744858, -0.034333981573581696, -0.007666280027478933, 0.010609583929181099, -0.01564742438495159, -0.013922511599957943, -0.002140740165486932, -0.007193982135504484, -0.004945435095578432, 0.009329589083790779, -0.024846959859132767, 0.007371949497610331, -0.0008226705249398947, -0.0014802080113440752, -0.012902623042464256, -0.02888544648885727, 0.005284257233142853, 0.0038536745123565197, 0.004096668213605881, 0.001904591335915029, 0.016167636960744858, 0.022930391132831573, 0.010753326117992401, 0.0023991349153220654, 0.01000723335891962, 0.0012551822001114488, -0.003836562391370535, 0.008994189091026783, -0.009610229171812534, 0.023094667121767998, 0.002310151234269142, 0.009952474385499954, 0.00273624574765563, 0.017057472839951515, -0.04547746852040291, 0.0004055598983541131, -0.01145150512456894, 0.0280640609562397, -0.0033163505140691996, -0.014990314841270447, -0.020479919388890266, -0.023491671308875084, 0.011020277626812458, -0.0006541150505654514, -0.014470103196799755, -0.02631176821887493, -0.014771278016269207, 0.0025052307173609734, 0.021794138476252556, -0.0005052386550232768, -0.004462869837880135, 0.001451972872018814, -0.0308841560035944, -0.009973009116947651, -0.021972104907035828, -0.016824746504426003, 0.003484050277620554, 0.0004079128266312182, -0.011396746151149273, -0.008097507990896702, -0.02350536175072193, -0.02551775984466076, 0.002412824658676982, -0.0067045725882053375, -0.014483792707324028, 0.003624370787292719, -0.0218215174973011, 0.006451311521232128, 0.011081880889832973, -0.026996256783604622, 0.011916957795619965, -0.017153300344944, -0.002903945744037628, -0.01564742438495159, 0.0075225369073450565, 0.011615782976150513, 0.025490380823612213, 0.00011903695849468932, -0.012580912560224533, 0.027899783104658127, 0.009124241769313812, 0.02894020639359951, 0.009445952251553535, -0.015072453767061234, -0.007378794252872467, -0.006564252078533173, 0.03154126554727554, -0.012218133546411991, -0.002597636776044965, -0.0127862598747015, -0.010767016559839249, -0.01808420568704605, -0.022738734260201454, -0.00804959423840046, 0.03641482815146446, 0.029953250661492348, 0.024846959859132767, -0.0016538972267881036, 0.009240604937076569, 0.017194369807839394, -0.03195196017622948, 0.00991140492260456, -0.016359293833374977, 0.019165700301527977, 0.0041480050422251225, -0.01019889023154974, 0.009870335459709167, 0.0010874823201447725, -0.012327651493251324, -0.002099670935422182, 0.004226721357554197, -0.0031794526148587465, 0.015332560054957867, -0.029487797990441322, 0.005640191491693258, -0.0014810636639595032, 0.018412761390209198, 0.01633191481232643, 0.0011063057463616133, 0.007159757893532515, 0.006838047876954079, 0.004794847220182419, 0.018618108704686165, 0.02350536175072193, -0.017139611765742302, 0.003461804473772645, 0.02495647966861725, -0.0006190349813550711, -0.015948599204421043, 0.03093891590833664, 0.0174544770270586, 0.03154126554727554, -0.015880150720477104, 0.04000155255198479, -0.010192045010626316, 0.0045278966426849365, 0.014826037921011448, 0.028146198019385338, -0.021534033119678497, 0.02657187357544899, 0.01609918847680092, 0.01990494877099991, -0.004462869837880135, -0.022601835429668427, 0.03518274798989296, -0.013504973612725735, 0.006848315242677927, -0.01878238469362259, 0.003410467877984047, 0.020479919388890266, -0.0137240095064044, 0.002140740165486932, 0.021725689992308617, 0.017303889617323875, 0.016482502222061157, -0.0044218008406460285, 0.010890224017202854, 0.014483792707324028, -0.008583495393395424, 0.033895909786224365, -0.012224978767335415, -0.013190108351409435, -0.009165311232209206, -0.006242542061954737, -0.013409145176410675, 0.001957639353349805, -0.03189719840884209, -0.0034224463161081076, -0.021739378571510315, -0.010020922869443893, -0.0031760302372276783, -0.004370464012026787, 0.017741961404681206, -0.0018327200086787343, 0.038331400603055954, -0.010082527063786983, -0.026968877762556076, 0.018002068623900414, 0.020794784650206566, 0.00019540029461495578, 0.00316576287150383, -0.027612296864390373, -0.0067182620987296104, 0.004226721357554197, 0.01422368735074997, -0.005414309911429882, 0.012218133546411991, -0.017043782398104668, 0.02139713428914547, -0.008254940621554852, 0.004021374508738518, 0.028419993817806244, -0.014182617887854576, -0.0035080076195299625, 0.009719748049974442, 0.014292135834693909, 0.0151272127404809, -0.004230143502354622, -0.012259203009307384, 0.036962419748306274, -0.023655949160456657, 0.007871626876294613, -0.01859072782099247, -0.009589694440364838, -0.04142529144883156, 0.002633572556078434, -0.010917603969573975, -0.002630149945616722, -0.00917215645313263, -0.009719748049974442, 0.0102947186678648, 0.015401008538901806, -0.0230809785425663, 0.020096605643630028, 0.009795041754841805, -0.01739971712231636, -0.01815265603363514, 0.009842955507338047, 0.009938783943653107, 0.06494434177875519, 0.008152266964316368, -0.0013638448435813189, 0.018180035054683685, -0.013840372674167156, 0.012307116761803627, -0.042383573949337006, -0.021068580448627472, 0.03011752851307392, -0.005506716202944517, -0.02176675945520401, 0.0014930422184988856, 0.014470103196799755, 0.005215808283537626, 0.010424771346151829, 0.007146067917346954, 0.006054307799786329, -0.005667570978403091, -0.021602481603622437, -0.0005137947737239301, -0.01244401466101408, -0.0018173189600929618, 0.020808473229408264, -0.0007987134158611298, 0.03219837695360184, 0.024230919778347015, 0.02064419724047184, 0.004777735099196434, 0.0021612748969346285, -0.02301253005862236, -0.02408033236861229, 0.021123338490724564, 0.00885729119181633, 0.013032675720751286, -0.005243187770247459, 0.023491671308875084, 0.008152266964316368, -0.018440140411257744, -0.02488802932202816, 0.013525508344173431, 0.002139028860256076, 0.02238279953598976, -0.001829297631047666, -0.016687847673892975, 0.01359395682811737, -0.01303952094167471, 0.001829297631047666, 0.028337854892015457, -0.015181971713900566, -0.004339661914855242, 0.011314607225358486, 0.016140256077051163, 0.0010669477051123977, 0.01471651904284954, -0.021301306784152985, -0.00773472897708416, -0.019001422449946404, -0.022177452221512794, -0.022725043818354607, -0.02825571782886982, -0.023970814421772957, -0.030582981184124947, -0.007543071638792753, -0.02158879116177559, -0.01969960145652294, -0.02825571782886982, -0.00488040829077363, -0.00626992154866457, -0.01141043659299612, -0.0002735817979555577, -0.009179000742733479, -0.027968231588602066, -0.03690766170620918, 0.0059105646796524525, 0.030582981184124947, 0.02820095792412758, 0.008193336427211761, 0.0032615913078188896, 0.0036004134453833103, 0.01294369250535965, -0.011964872479438782, -0.026037972420454025, 0.03239003196358681, -0.0053800856694579124, -0.005137091968208551, -0.03285548463463783, -0.027174223214387894, -0.017536615952849388, -0.013107969425618649, 0.026174869388341904, 0.010712256655097008, -0.025230273604393005, -0.016386672854423523, 0.003651750274002552, 0.017235439270734787, 0.019795428961515427, 0.009192691184580326, 0.014251066371798515, 0.018138965591788292, -0.010096216574311256, 0.012669896706938744, -0.027530157938599586, -0.022793492302298546, -0.024915410205721855, 0.00219892174936831, 0.010000388137996197, -0.001771115930750966, -0.010315253399312496, 0.0014630957739427686, -0.02844737470149994, 0.012526153586804867, -0.011869044043123722, -0.00895311962813139, -0.008905204944312572, 0.007714194245636463, -0.009151621721684933, 0.010883379727602005, 0.010575358755886555, -0.0056846835650503635, -0.021068580448627472, 0.004356774035841227, -0.017824100330471992, 0.03871471434831619, 0.02706470526754856, -0.0029330365359783173, 0.019754359498620033, 0.009096862748265266, -0.03636007010936737, -0.04334186017513275, -0.0012226689141243696, 0.016496190801262856, -0.00040449039079248905, -0.01733126863837242, -0.01857703924179077, -0.009753972291946411, -0.013388610444962978, -0.004213031381368637, -0.007584141101688147, -0.007214516866952181, -0.0034583820961415768, -0.035210128873586655, 0.02681829035282135, 0.0034994513262063265, -0.008350769057869911, -0.021191786974668503, -0.02071264572441578, -0.03605889528989792, -0.018316932022571564, 0.0038776316214352846, 0.01969960145652294, -0.019179388880729675, 0.0015649135457351804, -0.03132222965359688, -0.02551775984466076, -0.008467132225632668, -0.0075567616149783134, 0.007981144823133945, -0.009315898641943932, 0.045504845678806305, 0.03348521515727043, 0.03217099606990814, 0.020260881632566452, 0.018166344612836838, 0.02345060184597969, -0.008713548071682453, -0.007878471165895462, -0.024723753333091736, -0.020671576261520386, -0.014168927446007729, 0.006273344159126282, 0.003355708671733737, -0.004004262387752533, -0.007584141101688147, 0.002820095745846629, -0.010999742895364761, -0.018303243443369865, -0.000831654469948262, -0.005277412477880716, -0.014607001096010208, -0.04889991506934166, -0.0019833077676594257, 0.012498773634433746, -0.01001407764852047, -0.009165311232209206, -0.019302597269415855, 0.010534290224313736, 0.02438150718808174, -0.011581558734178543, 0.029296141117811203, 0.004479982424527407, 0.025586208328604698, 0.021356064826250076, 0.0009403171134181321, 0.021999485790729523, 0.01007568184286356, -0.017413407564163208, -0.0022793493699282408, -0.04564174637198448, -0.018618108704686165, 0.0029895068146288395, 0.034717295318841934, 0.024463646113872528, -0.006588209420442581, -0.009555470198392868, -0.0036620176397264004, 0.017372338101267815, -0.014196307398378849, -0.00247785123065114, 0.008022214286029339, -0.03200671821832657, -0.005318481475114822, -0.035264886915683746, -0.014661760069429874, 0.028173578903079033, -0.023614879697561264, 0.00898734387010336, 0.0031503618229180574, 0.014634381048381329, -0.026243317872285843, 0.002821807051077485, 0.012115459889173508, -0.005540940444916487, 0.025996902957558632, 0.02120547741651535, 0.02544931136071682, 0.006978367920964956, 0.008501356467604637, -0.005373240914195776, -0.017413407564163208, 0.005342438817024231, -0.012649361975491047, 0.012361876666545868, 0.033457834273576736, -0.009842955507338047, -0.0230809785425663, -0.0008898360538296402, -0.025846315547823906, 0.004719553515315056, -0.04336924105882645, 0.022437557578086853, 0.006694305222481489, -0.00011828829883597791, -0.03239003196358681, -0.0051336693577468395, -0.017988378182053566, -0.0007683392032049596, -0.004089823458343744, 0.011670541949570179, -0.0099798534065485, -0.002383733866736293, 0.024668993428349495, 0.017043782398104668, -0.014114168472588062, 0.02414878085255623, -0.015359939076006413, -0.0035285421181470156, -0.009589694440364838, 0.0035285421181470156, -0.011588403023779392, -0.00976081658154726, -0.000194437729078345, 0.025805246084928513, -0.017481856048107147, -0.00279784994199872, 0.01703009381890297, 0.011533644050359726, -0.011827974580228329, -0.00612617889419198, -2.9785978767904453e-05, 0.03575772047042847, -0.01006883755326271, -0.018604418262839317, 0.004055598750710487, -0.0017882281681522727, 0.017509235069155693, -0.015428388491272926, -0.019617462530732155, -0.014757588505744934, -0.010178355500102043, 0.008234405890107155, 0.003379665780812502, -0.005554630421102047, 0.0013082301011309028, -0.011328297667205334, -0.005362973548471928, -0.006122756749391556, 0.0013535774778574705, 0.006304146256297827, 0.013162728399038315, -0.038769472390413284, -0.009151621721684933, -0.01493555586785078, -0.02601059153676033, -0.00017764636140782386, 0.002467583864927292, 0.010821775533258915, 0.005989280994981527, 0.027516469359397888, -0.010589049197733402, 0.008275475353002548, 0.035648200660943985, 0.007604675833135843, -0.040768180042505264, 0.017427096143364906, -0.013361230492591858, 0.004839339293539524, 0.013682940043509007, -0.013388610444962978, -0.021972104907035828, -0.02395712397992611, 0.020630506798624992, 0.005106289871037006, 0.018878214061260223, -0.008501356467604637, 0.025243964046239853, 0.024299368262290955, 0.0016735763056203723, -0.010253649204969406, -0.006687460001558065, 0.010958673432469368, -0.011773215606808662, 0.02414878085255623, 0.009425417520105839, -0.0035353871062397957, 0.011718456633388996, -0.01708485186100006, 0.01004145760089159, -0.002340953331440687, -0.04903681203722954, -0.014702829532325268, -0.013190108351409435, -0.00778264319524169, -0.002905657049268484, 0.01493555586785078, -0.003348863683640957, -0.02332739345729351, -0.031048433855175972, 0.032910242676734924, -0.010746481828391552, 0.0036346379201859236, 0.033895909786224365, 0.004839339293539524, 0.003061378374695778, 0.021000130102038383, -0.008439752273261547, -0.029953250661492348, -0.02601059153676033, -0.028118818998336792, -0.04939274489879608, -0.006950988434255123, 0.008391838520765305, 0.03236265107989311, 0.011951182968914509, -0.02238279953598976, -0.023491671308875084, -0.02469637244939804, -0.02937828004360199, -0.0070365495048463345, -0.037701670080423355, 0.036716002970933914, 0.03392328694462776, 0.017865169793367386, 0.002388867549598217, 0.013771924190223217, 0.0073445700109004974, 0.02013767510652542, -0.03143174573779106, -0.01125300396233797, -0.02020612359046936, -0.006892806850373745, 0.025736795738339424, -0.029652075842022896, -0.059030354022979736, 0.004606612958014011, 0.000723419594578445, 0.0033334626350551844, 0.018604418262839317, 0.0004778590810019523, -0.0017933618510141969, 0.006444466300308704, 0.0024265144020318985, 0.004298592451959848, 0.02707839570939541, 0.036332689225673676, 0.01522304117679596, -0.024655302986502647, 0.004452602472156286, 0.006410242058336735, -0.003087046556174755, 0.0002133681409759447, -0.005438267253339291, 0.006533449981361628, -0.01041792705655098, 0.011896423064172268, -0.016318224370479584, -0.0033984892070293427, -0.012464549392461777, 0.005451957229524851, -0.006304146256297827, 0.006933876313269138, 0.01764613389968872, 0.02943303808569908, -0.012841018848121166, -0.00035807344829663634, -4.6443667088169605e-05, 0.019042491912841797, 0.006817513145506382, -0.027489088475704193, 0.025243964046239853, -0.03299238160252571, -0.02676353044807911, -0.015099833719432354, 0.004079556092619896, -0.01671522855758667, -0.006581364199519157, -0.021219167858362198, -0.022656595334410667, -0.026599252596497536, -0.0013338985154405236, -0.004171961918473244, -0.015510526485741138, 0.0004864151997026056, 0.0031760302372276783, -0.0003724049311131239, 0.008179646916687489, -0.007618365343660116, 0.021054890006780624, -0.02800930105149746, 0.00520896352827549, -0.014798657968640327, 0.006167248357087374, -0.02481958083808422, 0.019110940396785736, 0.04807852581143379, -0.003997417166829109, 0.0036346379201859236, 0.20468966662883759, 0.011964872479438782, 0.003143517067655921, 0.0386599525809288, 0.02069895528256893, -0.015168282203376293, -0.00011625622573774308, -0.0025052307173609734, -0.002956993645057082, 0.006690882612019777, 0.007125533185899258, 0.00283891917206347, -0.02008291520178318, -0.0038605195004493, 0.019412115216255188, -0.0023460870143026114, -0.033019762486219406, -0.018180035054683685, -0.01388144213706255, -0.012033320963382721, -0.009343278594315052, -0.0027276896871626377, -0.022601835429668427, 0.0027294009923934937, 0.0038742092438042164, 0.0110681913793087, -0.03113057278096676, -0.005427999887615442, 0.018535969778895378, 0.01808420568704605, -0.00866563431918621, 0.0017043782863765955, 0.02046622894704342, -0.013676095753908157, -0.002950148656964302, -0.024860650300979614, 0.01671522855758667, -0.02788609266281128, -0.00762521056458354, 0.018002068623900414, -0.013368075713515282, 0.0007482323562726378, -0.005520406179130077, -0.026873048394918442, 0.019371045753359795, -0.012197598814964294, -0.012964227236807346, 0.008864136412739754, 3.681803718791343e-05, 0.027598608285188675, -0.0025668346788734198, -0.010965517722070217, 0.01634560339152813, 0.01802944764494896, -0.0010592471808195114, -0.006232274696230888, -0.014702829532325268, -0.013635026291012764, -0.01577063277363777, -0.02015136368572712, -0.013580267317593098, 0.0047400882467627525, 0.0009155044099316001, 0.017481856048107147, -0.03348521515727043, 0.002768759150058031, -0.01633191481232643, 0.04952964186668396, -0.0031264047138392925, 0.0032034097239375114, -0.008172801695764065, -0.001798495533876121, -0.014346894808113575, -0.0102947186678648, -0.022410178557038307, -0.019138319417834282, 0.020233502611517906, 0.002128761727362871, 0.033156659454107285, 0.015414698049426079, 0.002438493072986603, 0.0031229823362082243, -0.027708126232028008, -0.03562081977725029, 0.015483147464692593, -0.029159242287278175, 0.02820095792412758, -0.005431422498077154, -0.0031075812876224518, -0.04109673574566841, -0.006851737387478352, 0.00622200733050704, -0.012526153586804867, -0.009158466011285782, 0.004031641874462366, -0.000779034337028861, 0.007584141101688147, 0.034772053360939026, -0.01231396198272705, -0.01001407764852047, -0.02831047587096691, 0.06308253109455109, 0.017947308719158173, 0.016441432759165764, -0.02078109420835972, -0.001042990479618311, 0.0014819193165749311, 0.018015757203102112, -0.008241251111030579, 0.007536226883530617, 0.00765943480655551, -0.038523055613040924, 0.009576004929840565, 0.00741986371576786, 0.017235439270734787, 0.016249775886535645, 0.013333850540220737, -0.012094925157725811, 0.005010461434721947, -0.027995610609650612, 0.018987732008099556, -0.0010686588939279318, 0.0058660730719566345, 0.018809765577316284, -0.03879685327410698, -0.028419993817806244, -0.00391527870669961, 0.023929744958877563, -0.03455301746726036, -0.017618753015995026, 0.010541134513914585, -0.02475113235414028, 0.020315641537308693, -0.021123338490724564, -0.021972104907035828, -0.0030716455075889826, -9.80744807748124e-05, -0.0027054438833147287, -0.004548431374132633, -0.004962547216564417, 0.01032209862023592, 0.016811056062579155, 0.0019490831764414907, 0.0022707930766046047, -0.026120111346244812, -0.00029625551542267203, 0.006437621545046568, -0.001319353119470179, -0.0015666248509660363, -0.008966809138655663, -0.0056538814678788185, 0.008022214286029339, -0.012327651493251324, -0.009877179749310017, 0.03441612049937248, -0.017796721309423447, -0.02601059153676033, -0.010096216574311256, -0.005670993588864803, 0.010999742895364761, -0.03479943424463272, -0.0019422383047640324, 0.04969391971826553, 0.0038810542318969965, -0.026147490367293358, -0.011944337747991085, -0.17490069568157196, 0.01390882208943367, 0.025148136541247368, -0.006841470021754503, 0.023190496489405632, 0.01815265603363514, 0.013901976868510246, -0.006225429940968752, -0.002732823370024562, -0.013155884109437466, -0.003330040257424116, -0.004870140925049782, -0.01128722820430994, -0.00013304760796017945, 0.012478239834308624, -0.0036175257991999388, 0.006509493105113506, 0.014921866357326508, 0.08274105936288834, -0.00093775027198717, -0.0005411743186414242, -0.01982280984520912, -0.006252809427678585, 0.010020922869443893, 0.01375138945877552, 0.0019473719876259565, -0.016496190801262856, 0.03225313499569893, 0.014634381048381329, -0.036086276173591614, 0.005664148833602667, -0.008022214286029339, 0.02015136368572712, -0.001422026427462697, 0.032280512154102325, 0.005137091968208551, -0.007399328984320164, -0.0009890870423987508, -0.008939430117607117, 0.001476785633713007, 0.013005295768380165, 0.007789487950503826, 0.02188996598124504, -0.008426062762737274, 0.008343923836946487, 0.030035389587283134, 0.017687203362584114, -0.014607001096010208, -0.0009753971826285124, 0.0003649183490779251, 0.04134315252304077, -0.013005295768380165, -0.0038742092438042164, -0.005979013629257679, 0.01525042112916708, 0.012396100908517838, -0.0013107969425618649, 0.03685290366411209, 0.0009035258553922176, -0.035210128873586655, 0.004736665636301041, -0.01381299365311861, 0.015305180102586746, -0.009699213318526745, -0.019302597269415855, -0.027489088475704193, -0.0025120757054537535, 0.014524862170219421, 0.004298592451959848, 0.005475914105772972, 0.008118042722344398, -0.004565543495118618, 0.005640191491693258, 0.031048433855175972, 0.004247256089001894, 0.006653235759586096, -0.02290301024913788, 0.0004864151997026056, 0.022629214450716972, 0.009281674399971962, 0.0177830308675766, 0.027968231588602066, 0.00047657566028647125, -0.0014417055062949657, -0.016318224370479584, 0.012704120948910713, 0.012731499969959259, 0.0031264047138392925, -0.012574068270623684, -0.005287679377943277, 0.014990314841270447, -0.012026476673781872, 0.01671522855758667, -0.011800594627857208, 0.012142839841544628, 0.008302855305373669, 0.02215007320046425, -0.004808537196367979, 0.018289553001523018, -0.01590752974152565, -0.0013279091799631715, 0.04783210903406143, -0.02451840601861477, 0.018056826665997505, 0.045258428901433945, 0.030199667438864708, 0.005400620400905609, -0.007543071638792753, 0.03375900909304619, 0.004055598750710487, -0.012040166184306145, 0.0034190239384770393, 0.0337042510509491, -0.0003328329185023904, -0.004281480330973864, 0.050186753273010254, -0.006591631565243006, -0.016181325539946556, 0.02095906063914299, 0.002630149945616722, 0.04022058844566345, -0.030719878152012825, -0.01556528639048338, 0.014771278016269207, 0.004538164008408785, -0.002763625467196107, -0.10738267749547958, -0.025148136541247368, 0.026215938851237297, 0.015510526485741138, -0.009124241769313812, 0.012293427251279354, 0.00013133637548889965, 0.03381377086043358, -0.007029704749584198, 0.02564096823334694, -0.02064419724047184, 0.0017779609188437462, 0.014976625330746174, 0.014702829532325268, 0.001557213137857616, -0.0039015887305140495, -0.0008551837527193129, -0.004575810860842466, -0.008015369065105915, 0.018604418262839317, 0.0053355940617620945, -0.012430325150489807, 0.012642516754567623, 0.0061843604780733585, -0.003410467877984047, -0.023300014436244965, -0.022341730073094368, 0.011985407210886478, 0.0015127212973311543, -0.0002712288696784526, 0.019685911014676094, -0.029898490756750107, 0.023245256394147873, -0.02695518732070923, -0.020041845738887787, -0.001742880791425705, -0.007946920581161976, -0.028337854892015457, 0.02401188388466835, -0.0442727655172348, -0.005075487773865461, 0.0031503618229180574, -0.005818158853799105, -0.018002068623900414, -0.005647036246955395, -0.0007456655148416758, -0.0037407339550554752, 0.029268762096762657, 0.0138745978474617, -0.0026472622994333506, -0.024586854502558708, -0.015688493847846985, -0.011718456633388996, -0.027927162125706673, 0.028858067467808723, 0.007837401703000069, 0.023163117468357086, 0.007871626876294613, -0.018727626651525497, 0.0009471620433032513, -0.011958027258515358, -0.009398037567734718, -0.009466486983001232, 0.007549916859716177, 0.012163374572992325, 0.004182229284197092, -0.009966163896024227, -0.019412115216255188, -0.004620302468538284, 0.005301369354128838, -0.008802532218396664, 0.00860403012484312, -0.028091439977288246, 0.00386736448854208, -0.006742219440639019, -0.0024333593901246786, -0.008042749017477036, -0.029788972809910774, 0.020986441522836685, 0.02208162471652031, -0.015359939076006413, -0.010493220761418343, 0.012875243090093136, -0.024039262905716896, 0.03225313499569893, -0.009699213318526745, -0.010609583929181099, -0.013107969425618649, 0.04591554030776024, -0.0411514937877655, 0.018604418262839317, 0.023806536570191383, 0.012772569432854652, -0.005852383095771074, -0.005510138813406229, 0.016071807593107224, -0.007851092144846916, -0.010116751305758953, 0.018193725496530533, -0.011061346158385277, -0.01659202016890049, -0.004962547216564417, -0.06593000888824463, 0.012649361975491047, 0.010643808171153069, -0.009096862748265266, 0.014524862170219421, -0.018193725496530533, 0.011109260842204094, -0.003593568690121174, 0.002469294937327504, -0.005451957229524851, -0.007878471165895462, 0.010376857593655586, -0.02225959114730358, -0.020110294222831726, -0.024929098784923553, -0.019179388880729675, 0.0024573164992034435, -0.009151621721684933, 0.014168927446007729, 0.004829071927815676, -0.014333205297589302, -0.008296010084450245, 0.026161180809140205, 0.02575048618018627, -0.020178744569420815, 0.018371691927313805, -0.017139611765742302, 0.03874209150671959, -0.004592922981828451, -0.021753069013357162, 0.006208317819982767, -0.005917409900575876, 0.009514400735497475, -0.0032513239420950413, 0.0011345410021021962, -0.03211623802781105, 0.004418378230184317, 0.014251066371798515, 0.014593311585485935, 0.02357381023466587, -0.01219075359404087, -0.016797367483377457, 0.029706833884119987, -0.02314942702651024, -0.009753972291946411, -0.023067288100719452, -0.013559732586145401, -0.01890559308230877, 0.017290199175477028, 0.0031092925928533077, 0.013765078969299793, 0.0006789278122596443, -0.02820095792412758, -0.04460132122039795, -0.005924254655838013, -0.019562702625989914, -0.00043315335642546415, 0.021985795348882675, -0.0018036292167380452, -0.0096649881452322, 0.05150097236037254, 0.005140514578670263, 0.013087434694170952, -0.006399974692612886, 0.028912827372550964, -0.008090662769973278, -0.03660648688673973, 0.0031281160190701485, 0.005636769346892834, -0.03154126554727554, 0.016359293833374977, -0.03186982125043869, 0.030336564406752586, 0.02290301024913788, 0.013128504157066345, -0.014292135834693909, -0.00011197816638741642, -0.012026476673781872, 0.004281480330973864, 0.03239003196358681, 0.034525640308856964, -0.007953764870762825, -0.025298723950982094, 0.005034418776631355, 0.02625700831413269, 0.012019631452858448, -0.010349477641284466, 0.01577063277363777, 0.013854063116014004, 0.0033112168312072754, -0.020657885819673538, -0.0061843604780733585, -0.0021099380683153868, 0.016578329727053642, 0.009411727078258991, 0.03534702584147453, -0.023532740771770477, 0.011403591372072697, 0.01493555586785078, 0.031075812876224518, -0.0037920705508440733, 0.003648327896371484, 0.0071734474040567875, -0.0011593536473810673, -0.022122692316770554, 0.015291490592062473, -0.021287616342306137, -0.00016459828475490212, 0.03715407848358154, 0.02251969650387764, 0.002193788066506386, -0.014264756813645363, -0.0006883395253680646, 0.010376857593655586, -0.010958673432469368, -0.009877179749310017, -0.006050885189324617, -0.004394420888274908, -0.023354774340987206, 0.024792201817035675, 0.0077689532190561295, 0.026476044207811356, 0.026585564017295837, -0.01608549803495407, 0.0411788746714592, 0.01764613389968872, 0.0021595635917037725, 0.007221361622214317, -0.0017283353954553604, -0.008556115441024303, 0.010808086022734642, 0.011677387170493603, -0.003573033958673477, -0.013956735841929913, 0.005852383095771074, -0.019658531993627548, -0.03293762356042862, 0.010315253399312496, -0.0008671623654663563, 0.08690275996923447, 0.025860004127025604, -0.024682683870196342, 0.005838693585246801, -0.02202686481177807, -0.0034515371080487967, 0.023163117468357086, 0.010082527063786983, 0.00041219088598154485, -0.02825571782886982, 0.008343923836946487, -0.018604418262839317, -0.026174869388341904, -0.008994189091026783, -0.009083172306418419, 0.007125533185899258, -0.016017049551010132, 0.014305825345218182, -0.002193788066506386, 0.0036859747488051653, 0.022861940786242485, -0.002358065452426672, 0.03230789303779602, 0.005585432518273592, -0.0355660617351532, -0.0030254425946623087, 0.029049724340438843, 0.016865815967321396, 0.00885729119181633, -0.01671522855758667, 0.023792846128344536, -0.011040812358260155, -0.02475113235414028, -0.0008427774300798774, -0.013107969425618649, -0.00010812791151693091, -0.011903268285095692, -0.0193299762904644, 0.01238241046667099, -0.003514852374792099, 0.00741986371576786, 0.011793750338256359, -0.03050084225833416, -0.03151388466358185, 0.01934366673231125, -0.003353997366502881, -0.006605321541428566, -0.030911535024642944, -0.016674159094691277]}, "text_id_to_ref_doc_id": {"db1785f6-757e-4817-95f1-3c68a6b14df7": "758d1b0b-ef44-40c6-922f-00ef33f63983", "d9064537-a6bf-4a34-a883-0db1a39fd2b2": "758d1b0b-ef44-40c6-922f-00ef33f63983", "ac137145-15a8-4587-9745-0a50eb1a49ff": "758d1b0b-ef44-40c6-922f-00ef33f63983", "e09ee097-cc44-4337-9851-729475b3188e": "758d1b0b-ef44-40c6-922f-00ef33f63983", "1b0c5199-9475-474f-ab5b-ef7aadd12087": "758d1b0b-ef44-40c6-922f-00ef33f63983", "64017536-5407-424e-ac7c-667ab0323871": "758d1b0b-ef44-40c6-922f-00ef33f63983", "067b5d34-dfe4-43f9-a607-5fa6aea16e59": "758d1b0b-ef44-40c6-922f-00ef33f63983", "6bb4664b-7a78-436b-b496-e99cfd7d3f74": "758d1b0b-ef44-40c6-922f-00ef33f63983", "57d479ac-14b0-4150-97d8-2e4981940c84": "758d1b0b-ef44-40c6-922f-00ef33f63983", "2a102d81-3648-4c2c-9708-087e2f32622b": "758d1b0b-ef44-40c6-922f-00ef33f63983", "2e49a6f3-6b45-4d22-82b9-6af69ace3a5e": "758d1b0b-ef44-40c6-922f-00ef33f63983", "28142fd1-8d5d-43ef-a8b5-9aad252d4444": "758d1b0b-ef44-40c6-922f-00ef33f63983", "fe7fa115-165b-4947-823f-e35939ebe9da": "758d1b0b-ef44-40c6-922f-00ef33f63983", "4e79713a-6e82-497a-a79f-7c97fc16f07c": "758d1b0b-ef44-40c6-922f-00ef33f63983", "97019ad3-abb7-41f6-a177-7762daf8013e": "758d1b0b-ef44-40c6-922f-00ef33f63983", "9589d69f-c551-4155-8097-1658626b2946": "758d1b0b-ef44-40c6-922f-00ef33f63983", "f5d2dc23-f653-4730-8b4b-a47dcd9cc57d": "758d1b0b-ef44-40c6-922f-00ef33f63983", "e32c5fc2-09b2-4a9e-9174-bcac03c84bdf": "758d1b0b-ef44-40c6-922f-00ef33f63983"}} \ No newline at end of file diff --git a/index_v2/Datadog/docstore.json b/index_v2/Datadog/docstore.json new file mode 100644 index 0000000000000000000000000000000000000000..a8dfe2ec1f887a9521522b19bfb6fa5daf9e7b69 --- /dev/null +++ b/index_v2/Datadog/docstore.json @@ -0,0 +1 @@ +{"docstore/metadata": {"08f41c1e-5cbd-4306-9c5d-5924326ccb1b": {"doc_hash": "6f393937a838276fb2aaa1f5bb098586d41f74c9eec26a80f875446b07436e07"}, "0c142657-6970-4ee7-9647-14dc60537a00": {"doc_hash": "6356cf00e14e1ad52a13fc2c3f0802f7aa9a6b07b56a13016b862555edb14c94", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "4d3fcfc7-9023-40a0-b807-5e89f013c374": {"doc_hash": "44c1027cec4bc2457c4643ad3af25a7f70e63c16c137d8e49f55162187707bbc", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "c3b56f26-887a-43d6-9de3-39e228261bc3": {"doc_hash": "a3c5a0acad8e264c50527df78f1d77173358a7473b8e2bcdb86c36017398e5f5", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "af3c10bd-1db5-4954-a3c4-d9e4cde600fd": {"doc_hash": "6be787384086b306d1e7c40baf8626b62b8cdfc99b01356e960ac81090243405", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "f891d754-5b71-4448-9069-3dff046be834": {"doc_hash": "69bdb469311b2ba7f74f5502dc08b49fc708637350101372bb6654e77eae0420", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "b1eb3ee1-929c-4cd2-9c3d-9a3a3869a6ef": {"doc_hash": "29d5366199ae9ad09b91f4e13344800b1204269b287fe589353643dc517a6536", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "8f6f8669-9943-4aa5-aa79-f185e413636c": {"doc_hash": "013c8efda0c23277df6a5f1fe855649f74473bf9973f992cddba3eb568c4d3db", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "8040e9e3-de8d-45d1-870e-8b2f0c44f4bc": {"doc_hash": "2c17214f0b0678228bd9613f1e41951591974bca2622c0512f69be5240943546", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "e45eea2c-fa16-4f6c-97d2-b145b149d1c1": {"doc_hash": "cadb5e719c084db5b58577f974a15ceb2487d6c8737e54480769e67d0d54c510", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "b5398d00-ce67-41e4-a0bd-59e194fca19a": {"doc_hash": "3006de3d8b95688c1afbfa3a7d192eaa5c7837d210a74b68ab1ec8c4ce6a1272", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "42d0f166-f343-47cd-ba6f-1383e67d8d54": {"doc_hash": "7c1d544db1257edc8e2be0edd0003109afff6085b9ad18145f5dc6bd55f405f4", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "8237bbcc-5302-466e-9dc2-db832e533372": {"doc_hash": "127df1f8eb3bc842caf3de6cb4e9fe1761d392b6b8f1a535070176aeeba7e9a5", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "5f252439-4174-4f21-8caf-f68533eecee0": {"doc_hash": "0b5de4646a0bd77a1e62b3dc2cbc2790cfa3afcb67a5518d39a071796af08afc", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "60f8b901-2d88-4334-9c72-687aa01d4b8d": {"doc_hash": "eb9f2f601c8284267f62350ec78dd203925e47cd022b484f77aac7ef39414ff1", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "478c060d-0015-4f8c-883f-57ca83956105": {"doc_hash": "9186c09c22e0d90156a9622b8e67fa01f89ab3eb209e3a2adaafbad4e778ef71", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "24a7a2fe-17f2-4bb0-a3d1-bf233235f75b": {"doc_hash": "f5079f5d9453d17cdf40e2ea3a4d9d9597b308a9685499aa85b7bd2d09917f7d", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "5cb45dc8-b174-4848-a875-d6a8775981e2": {"doc_hash": "6d8a97d48f895f3bd14d8cab6e432fd9fbda2a39548c21cc4d387105014740b7", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "764b01ac-db76-4081-af21-2483631ae895": {"doc_hash": "e593299b436856a42c3ea6d7603587c0840182bca7ed44a700dd4bf6ffdc7b83", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "c69ca865-8ff1-4557-816a-48675d98a997": {"doc_hash": "8e3d741ba5e86d281aaa25ca1f49e90bf77c29e5adf67b6ec71c511ebc7b27dd", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "026e2225-4c31-4004-afd6-8fcc6410d07f": {"doc_hash": "928427cbb2728a29e5d50fef0edc457c8e2b018a01df76c68d067bf595e2dcd0", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "7a7b5aad-cc36-4282-a044-1dfdfd66d09f": {"doc_hash": "d130f544cf09006a0de1998f1561e8e7b4577ae06a9228aae415411e89ddc64e", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "922a83e8-252c-46c7-a471-f74fe0bfb35c": {"doc_hash": "3068ef0fd2bb45f3387764aceaab52fe3faf63769e28847f0d1b6934219ced83", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "820c781f-0bc4-4d05-b91f-8df2f26be661": {"doc_hash": "9ad5fbe2a1595a4230cca188d6b10496270ae47336f00edefc7b7a979e7ec49a", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "68814d94-f4cb-45b6-bd96-e057286d2f56": {"doc_hash": "19b507eabc7f622635589552668448a8aec92ec1b8a047dbd74ab9d03cab9ab5", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "74773a00-8ea0-44ea-8c3a-2447481985b5": {"doc_hash": "7eb3a0d6822ff040167383945517dde3b9ad238e5aa7555619e7891ef295edc4", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "f1d0e2c4-f8f3-478b-bd36-1d395e26f7d1": {"doc_hash": "a7a6f731db5a194196d12e82f8b0f6678dd19ade217dc662fcfde1af1632ced0", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "36cc1197-845b-4606-870b-731ad308677a": {"doc_hash": "976424f077c49a1993d86f13922ffac6f1fe192b4b1666e01e77b2a53fc2a794", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "b1d6a962-e1e8-4fff-8ef0-b5fccc0a1260": {"doc_hash": "8e801960acb71b5c3eb4df0736a81f54a95c2e835afe28746f09d8883022c32c", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "b54e2b2b-366b-4afe-8ff7-80ffeb88d77c": {"doc_hash": "231cc77ef017a99d48a3f4e52ecd1a722c12cc278b2e28aa893acdb4aa746bfd", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "28e00375-f4da-4f42-8df0-4a4ca3bbf53c": {"doc_hash": "1fc42f3ec9663ae040da29f55c21145ce4c5ca79e8862ff2288d59eb07a530c6", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "1c72ea81-28e2-4e4a-ba15-7ae788d5c584": {"doc_hash": "4166ea8ba6d1e759056d6831fb4208acb3d6a312ed154bb5a6474bf333a19141", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "d0484d59-55d2-4197-84b6-7d9eed3bc501": {"doc_hash": "1b63c0820d1234c32c40edbd23bac8aad0129e301640edb807b4ca78efef9dac", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "b9455574-e3cb-4838-95d0-00256ab31595": {"doc_hash": "9f6a9d490a4386e218210f5ff899b3b309b81bae60de3c976f99910ee5de0b31", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "0273158c-ddd2-4574-ae6c-5061fb24282a": {"doc_hash": "34dc70b5a37c1177a26ad0b35d3d50924a96206b246357344c8dad9704233c48", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "0a13f4dd-7723-4ab1-8c78-ad41d2c9660a": {"doc_hash": "c13ef54f62cc0c02e5214249505fd6643dd3640f31a485978d166828355980c1", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "2ad1d5ea-2e57-4b5d-9c89-8b0d8b6056ca": {"doc_hash": "2a163764031eb47cf87b305be3324a92d8a1c35b2223d599ca41356e0114f0cb", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "635a43aa-23d9-4e2e-a76d-ae12f2968888": {"doc_hash": "22e8fc6b0511a8ea668d61815cc8b8d32620549cdcd0422db589a115e58b8f6a", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "43b721e9-efe0-41e3-b387-e32a09609efd": {"doc_hash": "44233a5369b3e768ab73d4269930b5597412a118467a8a5721018f80da15d216", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "307eca8f-2352-43d0-9760-0e10d0586e6b": {"doc_hash": "953090aaa5b7b8be99bc9c4775a510b678f5442d13a996ab7796e38af9691cba", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "f7d7f7aa-1a20-4297-8195-d6a2c8d681de": {"doc_hash": "ba6edcd6298944579edd2a356d1e4122a76c71fa6aca27632aaefef0e607291e", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "ec0cea14-8506-48af-a97e-dac7de3f928d": {"doc_hash": "5e3f166019ab206590a453d592803dd1ce2216df44081e1515ae367de92114bd", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "e682ce61-fb56-4a2d-a957-fbf6faf3a827": {"doc_hash": "0c7508c2ffe700a917696d54d2029863ad9f7626577e2dfcd2844434ca1fbe79", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "0a685b2c-0702-4790-a271-687cd0bdfe6f": {"doc_hash": "4d992180ceef04fb828a0540484f640151b3334752381916854bb2893dc5f289", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "0239f2fb-6432-444b-95a6-f00669901af5": {"doc_hash": "f0c7473c376df68e6fe972e9000279be056e831420f679f07c4e881695b3de13", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "92435c91-6b25-4870-b65c-fb292b61e3cf": {"doc_hash": "956bd8d5bb24ba37a5a07401934b15ff4a94fbcae8ac6c0cb885c5afa0ce5d64", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "6f4df675-71f3-4b0b-8e32-bd4e3e076a3b": {"doc_hash": "1f81fa7a9961666914628b2e029bee5a11980713915a05d3f282f61e489d74db", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "eb311335-0ee1-4bd8-bc94-bfa5e9e75c37": {"doc_hash": "462c6fff55dca208ded616f552f4b6ee28689d102cfbe7bdaa842d54c21063e9", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "af21247b-3377-47d5-8dbd-994fa2b1e1be": {"doc_hash": "9329bb9dbe4c242a2ab6a017c8c67dbcefb8cd35903774b9dbd8d1e86ff3a6e0", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "184bf94f-62b1-4835-8df6-f922e578b660": {"doc_hash": "cd6b3987fb17de1700fa47ef14d646fcbcee32767dbfeab3a195eeaf5a8acfd5", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "b2f62080-d437-4bf6-a39b-8fd08f0953c3": {"doc_hash": "85568a5a2835d0bf32a09c9f28fea85f7e3af8c14f40e9b8e5dfb7583b2d99dc", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "ffb7c329-65a8-4b3c-aed1-483e33e7db2d": {"doc_hash": "c22c3e9cd1bf850e2ba972ef01e10cbcfb53e7db36a3739ffc590d3167c49ecf", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "016fefde-7b3d-43b7-8c2f-97a0e3a90eec": {"doc_hash": "b9660b125407a281ec5b741716d8d8545fa7ce97e643640d156a1c915130c2e5", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "2226af7c-b46b-4600-b899-63c5dc50458f": {"doc_hash": "0fbc503b45d00fa7d37e1f03b8ecb29ba3bea4b1236c4e8193b2a545a7fd88f8", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "0335b885-e042-4a73-95ba-f4c87d2f57f1": {"doc_hash": "ef2d70a837d2501cc5c870ddfc186b68819200cb7a66f732d207ac04514cb37c", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}, "9139abf7-f504-4dbf-8c6e-77c0a8048025": {"doc_hash": "0172e34c9801f7bcc2e3fc161ce5ebf72afdd90625297cc867e5267abbccd49b", "ref_doc_id": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}}, "docstore/data": {"0c142657-6970-4ee7-9647-14dc60537a00": {"__data__": {"text": "G2.com, Suraj S, CEO, 5, Detailing of Logs & Ease of Use also i like the easiness to implement and connect it with our System & Software..\n\nDatadog came up with a simple yet unique software which helped me to tackle different attacks & abusive activities by our competitors., I'm totally satisfied with the datadog & i'm going to share it with our colleagues too, so they can also use it to tackle these things if they need it.\n\nI'm totally satisfied with the services offered by datadog.\nG2.com, Asa T, IT Consultant, 3.5, Datadog has tools that do not require a big learning curve. You can easily manage and monitor HTTP traffic in their dashboard. We can quickly take note of any spikes and spread out the workload., It is very robust and easy to learn, but it lacks some key components like automatic detection of devices and standard reporting. If you are looking to monitor network hardware or routers, this is not the software for you, look somewhere else.\nG2.com, \nPatr\u00edcia P., QA Automation Engineer, 4.5, Datadog is a widespread cloud-based monitoring and analytics platform that provides real-time visibility into the performance of applications, infrastructure, and logs. Some key benefits of using Datadog include the following: it allows users to collect and correlate data from various sources, sends alerts based on user-defined thresholds, provides customizable dashboards that enable users to visualize data and gain insights into the health and performance of their systems, and supports a wide range of integrations (such as AWS, Docker and Kubernetes)., The learning curve for Datadog can be steep, especially for those new to monitoring and analytics. Additionally, the pricing is relatively high compared to other similar tools.\nG2.com, Amit K, Software Architect, 3.5, So many Out of the box integrations which makes monitoring almost your entire tech stack is super fast easy and easy.\n\nFor example, earlier I was part of the search team and was managing 25+ large Elasticsearch clusters and Elasticsearch as a software has its own specialized metrics which we need to monitor and get alerted.\n\nWe didn't have to do anything with Datadog(DD) as Datadog already had a Out of the box integration with Elasticsearch and documentation for same can be easily found on google for ex: https://docs.datadoghq.com/integrations/elastic/?tab=host\n\nThis made our life super easy as we can just start monitoring large system without much configuration., Out of the box integrations are good but when you need to add more metrics which are not available, it requires a effort and sometime their documents can be confusing and outdated esp. with Out of the box integration where that software is changing rapidly.\n\nSecond it can be costly if you need to monitor large systems and is tight on the budget.\nG2.com, Sari R, nan, 5, Datadog is extremely helpful with organizing and visualizing data and data events across our client base. It helps with the implementation and ongoing client lifecycle process with alerting tools, Would love to see more support and guidance from the datadog team when we are in the platform with a chat feature or a support feature. Most of my experience using Datadog has been excellent.\nG2.com, Parth G, Lead cloud Engineer, 4.5, Datadog has many features that make it one of the best monitoring tools in the market. I like the ease of using these tools and the enterprise support that comes with it. It supports a lot of integration, making it easy for administrators to monitor any services/machine in the organization., Everything in the product is just good and there is nothing that you can dislike. However I would like them to have some training material/videos. The documentation can be simplified a little.\nG2.com, Omar.S, nan, 4.5, Datadog has enabled our team to monitor the health of our deployed services in a very customized way. The breadth and depth of features available on the Datadog platform amaze us. When we find a monitoring need, we learn that there's already a way in Datadog.,", "doc_id": "0c142657-6970-4ee7-9647-14dc60537a00", "embedding": null, "doc_hash": "6356cf00e14e1ad52a13fc2c3f0802f7aa9a6b07b56a13016b862555edb14c94", "extra_info": null, "node_info": {"start": 0, "end": 4042, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "3": "4d3fcfc7-9023-40a0-b807-5e89f013c374"}}, "__type__": "1"}, "4d3fcfc7-9023-40a0-b807-5e89f013c374": {"__data__": {"text": "find a monitoring need, we learn that there's already a way in Datadog., Datadog can improve the big picture view of how their services interact and support each other. It wasn't always clear to us which pieces fit (and how) together to make a solution.\nG2.com, Adrian B, nan, 5, During our automatic scripts (from Machine Learning services) we send various messages to logging, which then get sent to datadog. This is both to document various steps of the data, but also to show crashes when they happen. Then from the DataDog interface we can search for production/staging services, we can search by date, we can search by key words., We have the logs from only the past 2 weeks, so we can not find earlier errors. But in general we catch the errors within 2 weeks, so this is not such a big limitation after all.\nG2.com, Philip L , CEO, 1, We could not fully evaluate DataDog because they charged us for 50 hosts inadvertently sending metrics for 2 days out of the month. This was our mistake - we accidentally deployed the DataDog agent to an entire tier, not realizing this would incur charges. We rolled this back when we discovered the issue. There appears to be no way of having DataDog drop metrics from agents. You have to physically remove those agents.\n\nHowever, despite multiple conversations over the month with their sales team and support, explaining we did not want to monitor those hosts, they charged us for an entire month of usage.\n\nThe DataDog product looks great and we were excited to evaluate it. However, I now have to justify a month's worth of spend without getting value for it, which is an unfortunate place to be. Given the lack of support in helping us resolve this deployment mistake and the resulting billing issue, I also am not sure how much support I'd get down the road., As described in the previous section, the lack of support resulting in us not being able to resolve a deployment mistake and resulting billing issue.\nG2.com, Shaul A, VP Projects, 4, I was impressed with the integrations part of DataDog.\n\nOur main goal was to centralize activity and audit logs of critical systems in our organization.\n\nWe were able to integrate most of our systems in a matter of hours:\n\nJumpCloud, Gsuite, Azure, Google Cloud Platform, Auth0 and more.\n\nThe instructions were easy to follow, and an integration usually takes only a few minutes., Log parsing could be improved.\n\nThe logging format is not standard across machines when you have multiple devices with different OS.\n\nIf you want standardization, you must set up pipelines to ingest and parse the logs, which I found a bit tedious.\nG2.com, \nSantiago H., Head of Cloud, nan, We have been using Datadog for a while and we are generally satisfied with the product. However, we feel that the support could be improved as it can be slow to respond, and the payment processes are not always clear., The support is bad, often slow. The help is not enough. Also, many times the prices are not clear and you can get surprises on your bill.\nG2.com, Bashir M. S., Technology Consultant | CTO\nInformation Technology and Services, 5, I like its comprehensive monitoring capabilities, which allow us to track various aspects of our systems such as CPU and memory usage, network traffic, disk I/O, application performance metrics, and more., Initially, it took some time for me to get familiar with the interface and understand how to set up alerts, how to customize dashboards, and how to navigate through the extensive data provided. However, the support team was very helpful and responsive in addressing my questions and concerns, which helped me become proficient in using the tool.\nG2.com, Neha B, Product Manager, 3.5, It's straightforward to ingest logs for applications deployed through AWS. We can easily apply filters in the dashboard to load or fetch records by date, request IDs, and error levels., Creating dashboards and viewing he same is quite tricky over data dog. If I want to see weekly, monthly, and quarterly results and analyze", "doc_id": "4d3fcfc7-9023-40a0-b807-5e89f013c374", "embedding": null, "doc_hash": "44c1027cec4bc2457c4643ad3af25a7f70e63c16c137d8e49f55162187707bbc", "extra_info": null, "node_info": {"start": 3983, "end": 8008, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "0c142657-6970-4ee7-9647-14dc60537a00", "3": "c3b56f26-887a-43d6-9de3-39e228261bc3"}}, "__type__": "1"}, "c3b56f26-887a-43d6-9de3-39e228261bc3": {"__data__": {"text": "data dog. If I want to see weekly, monthly, and quarterly results and analyze them, it's not straightforward.\nG2.com, Przemek P., Information Technology and Services, 4, Datadog provides a powerful set of tools for monitoring and optimalization of IT infrastructure, enabling the reliability and performance of monitored systems., Sometime to much complexed and hard to manage withou proper training and expirience. Requires some knowledge about managed systems for better operations and understanding of the environment.\nG2.com, Yan A, nan, 4, Datadog is a perfect APM solution that is probably the best for serverless environments such AWS Lambda or Fargate monitoring. They are also able to monitor standard infrastructure, but where I think they differentiate themselves is with serverless compute., It can become quite expensive. This cost adds on top of an already expensive AWS infrastructure monthly bill which can make this cost prohibitive for some, but overall it's well worth the price if you can afford it.\nG2.com, Gary H, nan, 4, Using Datadog to investigate network and service issues on your environments where you are struggling to locate issues. It is great to identify a bottleneck in your system. It is simple and user friendly., Datadogs full package is rather costly and may not necessarily be affordable when it comes to small companies that are looking to diagnose a minor issue on the system\nG2.com, \nEduardo V., nan, 4.5, I like how it allows me to easily find data events, user behaviors thanks to the logs that are easy to interpret. It provides a lot of useful information., It has a huge learning curve because it is such an extensive application with so many tools. When using it, many parts of the interface are confusing and not very user friendly.\nG2.com, Deepak M, Senior software Engineer, 5, Tracking the application matrix to understand the feature popularity in the app, also helps us to understand user behavior and count progress on different wizards in the application, etc., We've used the Data dog in React mobile application and based on our need we were able to do what we wanted, so no dislike at the moment.\nG2.com, Andy V, nan, 4.5, It is easy to be able to look up a specific error and determine what the cause of the issue., There are a lot of different options that can get confusing if you don't know what you are looking for.\nG2.com, Rakesh N, nan, 5, Comprehensive Monitoring\n\n2. Easy to Use\n\n3. Powerful Analytics\n\n4. Integrations\n\n5.Customizable Alerts, Steep Learning Curve: While the platform is generally easy to use, the learning curve for more advanced features is steep.\nG2.com, Shivangani T., Devops Engineer, 4.5, It's a one-stop solution for monitoring, logging, metric collection, observability dashboards, application performance monitoring etc. The best thing I like about DataDog is its agent - It monitors apps and infra, collects logs and metrics, and keeps posting it on datadog.com 24x7 and it's great integration support with third-party apps and services, So far, There is not anything which I don't like about DataDog; It's better than newRelic, Dynatrace and SumoLogic. So - No dislike for DataDog at all from my experience.\nG2.com, \nJohn G., Sr. Director of Product Marketing\nComputer & Network Security, 4, What we like best about Datadog is its ability to provide real-time visibility into application performance, infrastructure, and logs, all in one place., The platform is pretty complex; it can take some time to learn how to use all of its features and may not be suitable for smaller applications.\nG2.com, Sierra M, nan, 3.5, Datadog has very clean dashboards that are both easy to use and understand., I wish that Datadog provided more education on how to use the product. The UI is very barebones and not super user friendly, causing me to get overwhelmed by the amount of information on a given page.\nG2.com, Jay B, Programmer Analyst, 4, with the help of data dog, I am able", "doc_id": "c3b56f26-887a-43d6-9de3-39e228261bc3", "embedding": null, "doc_hash": "a3c5a0acad8e264c50527df78f1d77173358a7473b8e2bcdb86c36017398e5f5", "extra_info": null, "node_info": {"start": 8005, "end": 11970, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "4d3fcfc7-9023-40a0-b807-5e89f013c374", "3": "af3c10bd-1db5-4954-a3c4-d9e4cde600fd"}}, "__type__": "1"}, "af3c10bd-1db5-4954-a3c4-d9e4cde600fd": {"__data__": {"text": "Jay B, Programmer Analyst, 4, with the help of data dog, I am able to monitor large-scale applications and it can be used to determine performance metrics. The data dog is available as SaaS and it also provides a customized dashboard, It is not easy to understand how to use it at total capacity. Initially, it is hard to track the data logs and Its integration with the spring boot project is also tricky. The Custom Dashboard is hard to manage.\nG2.com, Shaik firoz B., Senior Engineer, 5, Datadog has user friendly interface,it allows me to easily monitor my applications and services across multiple data sources, able to look up an specific error and determine the cause of issue. Livelogs,overall app breakup coverage,trails,CI and monitoring are the best., There is nothing to dislike about this product.\nG2.com, James D, CEO, 5, It has a number of integrations that make it easy to work with.\n\nits use tools are powerful in market monitoring\n\nConstant monitoring allows us to have control of all our services\n\ntheir customer service is very professional when required of them, A very professional quality of service has been maintained where I have not had any problem that is not resolved quickly and in a timely manner\nG2.com, \nSusannah G., Engineering Mannager, 3.5, Datadog is extremely powerful and has extensive documentation. Some of the UI is very user-friendly. The customer service has been incredibly helpful with setup, integrations, and troubleshooting., Datadog is so large that to new users it can be overwhelming. At times it felt that even to read documentation or do setup you already needed to be an expert. I still don't quite have a hand on the query language for creating metrics; I tend to reverse engineer those from dashboards.\nG2.com, Sandeep J, System engineer, 5, Everything you can think about regarding Observability is packed in a single consol., Too much data.Needs a few interfaces to easily manage it. A little costly.\nG2.com, Giorgio D., Site reliability Engineer, 4, Overview of the full infrastructure, and integration between all layers, (Infra, Databases, Traces,).\n\nEvery time we see a \"New\" badge we have to try it because it \"must be good\". So thank you for your effort on building those features, and thank you for releasing only \"high quality\" and complete features that provide ACTUAL value (vs competitors, that don't really do much and lag behind features)\n\nAlso big thank you for full OpenTelemetry integration/support. and the Datadog OTLP agent integration.\n\nKeep up the amazing work, A bit of heavier lock-in lately, dd-trace is getting a big monopoly to collect reliably all things (traces, profiles, and now, Security (ASM)). I wish there was an open standard for that, or you guys would release an open standard.\nG2.com, Thanh D, nan, 4.5, It is easy to use and has lots of feature. The UI looks much better for me than tool like kibana., I have good experience with datadog and wouldn't want to change anything about it.\nG2.com, Madison C., Software Engineer, 5, I'm a big fan of the time filter UI; it's incredibly straightforward and clear. Creating dashboards is very easy and intuitive. As a backend developer I can't imagine a more useful tool., The only thing I dislike about datadog is that it's very easy to have duplicate monitors or dashboards that end up double charging the company.\nG2.com, \nGiridharan U., Technical Architect, 5, It was the one stop shop for us to have a monitoring tool and for having a centralized logging solution., The initial costs were too high. Later, post optimization the costs were reduced.\nG2.com, No Name, nan, 4, We are just beginning to explore all the functionality that Datadog offers, and it's so good it's almost overwhelming for a small team. Really appreciate how they onboard new clients and put together customized resources!, As mentioned in the like response, it's almost a dislike that they have so many tools", "doc_id": "af3c10bd-1db5-4954-a3c4-d9e4cde600fd", "embedding": null, "doc_hash": "6be787384086b306d1e7c40baf8626b62b8cdfc99b01356e960ac81090243405", "extra_info": null, "node_info": {"start": 11982, "end": 15908, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "c3b56f26-887a-43d6-9de3-39e228261bc3", "3": "f891d754-5b71-4448-9069-3dff046be834"}}, "__type__": "1"}, "f891d754-5b71-4448-9069-3dff046be834": {"__data__": {"text": "As mentioned in the like response, it's almost a dislike that they have so many tools because it can be overwhelming. We wanted to prioritize security and posturing, which they are just starting to invest in. They're very responsive to user feedback, so I have no doubt they'll only continue to grow and improve their assortment and ease of use.\nG2.com, \nTushar B., Associate Software Engineer, 4.5, The simple yet feature-full UI of datadog & it's ease of integration with new technologies, Datadog quota management is an issue & it can happen that you get billed more than expected due to extra logs being pushed to datadog.\nG2.com, Puneet S, Solution Architect (Pre-Sales), APJ, 5, Easier to navigate UI. Shows most of the information and various customisable dashboard., Steep the learning curve to understand how to customise.\nG2.com, Amit Y, Software Engineer 2, 4.5, The user interface of their product is very thoughtful and easy to use., Personally I found latency at times in the event delivery\nG2.com, Shreya A, SQA, 5, Live logs, overall app break-up coverage, trails, CI, APM, monitorings., Its subscription cost it too high with lowest of keeping 3 months data in backup with high subscription cost.\nG2.com, \nBurhan B., Front Engineer 2, 4.5, By utilizing Datadog we had the option to see almost issues at the client's end a lot quicker than previously., It becomes tricky to find the data as there are a lot of different data tracked. Usually, it takes a bit of time to fully understand how features work but this is not a big deal since there are plenty of academy courses now.\nG2.com, \nKenneth D., nan, 3, The flexibility and customizable tools. Integration with Slack for realtime alerts., Level of experience/knowledge needed to use it effeciently.\nG2.com, \nNagendra K., Software Engineer, 3.5, They provide the best monitoring for servers, databases through SaaS based data analytics platform, The service is not straight forward, users definitely need to take their time to fully understand its features and how to maximize the benefits of the service\nG2.com, \nByron P., nan, 4.5, Great easy to configure analytics for tracking internal services, Generally, everything works well. Sometimes its difficult to drill into a metric to learn more.\nG2.com, No name, nan, 4.5, Seeing logs, metrics and tracing across disparate technology stacks makes finding and following problems across a microservice architecture much more straightforward. I find it easier than using AWS Cloudwatch to try and do the same., There is a lot of functionality, but some of these areas require configuration for them to work. However, this is par for the course with any monitoring and dashboarding product.\nG2.com, Akash S, Software Engineer, 4.5, Allows to create customizable dashboards with real-time visualisations of their data. This makes it easy to track key performance indicators and monitor system health, The integration process can be complex and time-consuming, especially if they are unfamiliar with the specific tools.\nG2.com, Dinesh G, Business analyst, 4.5, We use it to understand and analyze the performance of our systems and use it as a way to monitor our system health checks so it saves some effort on the developer side., The UI is not the best, and some charts are not user-friendly for a non-techie person. Analyzing queries is not intuitive and requires some training to understand it.\nG2.com, \nVibhuti J., Talent Acquistion, 4, Creative user interface and easy navigation, A little complicated for a common person to work on if you do not the technology\nG2.com, Josh S, IT Cordinator, 5, Highly versatile and modular; you can build out analytics exactly how you want them presented, The UI is pretty lightweight.. some cosmetic overhaul would be welcomed.\nG2.com, \nDevikiran M., Associate Quality Engineer, 4, monitoring is very easy, can", "doc_id": "f891d754-5b71-4448-9069-3dff046be834", "embedding": null, "doc_hash": "69bdb469311b2ba7f74f5502dc08b49fc708637350101372bb6654e77eae0420", "extra_info": null, "node_info": {"start": 15892, "end": 19756, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "af3c10bd-1db5-4954-a3c4-d9e4cde600fd", "3": "b1eb3ee1-929c-4cd2-9c3d-9a3a3869a6ef"}}, "__type__": "1"}, "b1eb3ee1-929c-4cd2-9c3d-9a3a3869a6ef": {"__data__": {"text": "M., Associate Quality Engineer, 4, monitoring is very easy, can see live log., nothing as of now, i like everything in datadog\nG2.com, No Name, nan, 3.5, Lots of out of the box integrations, overall good usability. Cover a big range of necessary observability for your applications and all integrated in one platform., Pricing is pretty high (you pay more to monitor a small k8s ec2 node than the ec2 itself), and I found it hard to pick what you want to measure using Kubernetes integration granularly. Sometimes it is hard to understand how your billing is calculated, and it also charges you multiple times for \"same stuff\" since it cannot automatically detect integrations. (Ex.: you are charged for AWS node monitoring + k8s node monitoring of the same ec2 instance!). Didn`t like the commercial support either; they only care until they sell it to you.\nG2.com, Ganesh P, nan, 5, They have the best UI/Interface to build dashboards and compare data metrics with each other., They are not up to the mark when it comes to 3rd party integrations.\nG2.com, Jaun R, Staff Software Engineer, 4, Our team uses a number of DD features. We are heavily invested in the dashboards and monitors. We have DD integrated with Slack and Pager Duty and it a primary source of notifications that drives actions w/in our Operations team., There is nothing I outwardly dislike. I consider myself an intermediate user, so gaining training and experience using the DD tools is interesting to me. I am especially interested in some of the newer features described at the Keynote today. Service Catalog, Security analysis, Workflows are all features that will integrate nicely w/ our current process suite.\nG2.com, No Name, nan, 5, Grat User Interface (UI), easy to set up and configure, and plenty of integrations with cloud and on-prem solutions. Granular control over the ingested data. Flexible licensing scheme., Data normalization and unstructured log ingestion require time and effort. Role-Based Access Control (RBAC) is not available out of the box and requires a ticket to the Support team. Despite RBAC, access granularity is hard to achieve, especially in an organization with small Site Reliability Engineering teams.\nG2.com, \nChanthini A., Site reliability Engineer, 4, The tool is easy to use, great monitoring feature with customizable dashboard., Proper support is not there, training materials / documentation needs to be more clear.\nG2.com, \nChinthaka J., IT Manager, nan, Have extensive webhooks microservice management features with support more for applications as well as infrastructure level., Datadog configurations screen are more suited for trained or product-savvy professionals rather than tech beginners\nG2.com, Bill M, VP of EM, 5, Log management and visualizations without having to write code. Data Dog is the fastest way to aggregate all your log management into on centralized view. Other products take time and glue code to try and scratch the surface of Data Dogs value., The only downside is with how easy it is to use you can get out of hand and drive the cost up right away. Lucky they have come out with monitors and easy ways to dial back to meet your budget.\nG2.com, Kipp M, Associate, 4, Visualizations and Dashboards can be easily derived\n\n- Customer Success Managers are highly-engaged, The price can sometimes be hard to justify to the rest of the company\nG2.com, Shubham D, Senior Data Analyst, 4.5, DataDog works as a excellent central resource to manage and monitor all our applications and infrastructure. The best thing about DataDog is that it's quite easy to use and user-friendly along with being a total value for money. Also, it has excellent support and learning resources to be utilized by everyone., Some of the integrations and connections docs for setting up are outdated and not very to understand for anyone who is new. The process of setting it up will require you to get in touch with the support team several times. However, they are quite quick and happy to assist as and when needed.\nG2.com, \nAnatolij N., Devops Engineer, 5, Datadog has many", "doc_id": "b1eb3ee1-929c-4cd2-9c3d-9a3a3869a6ef", "embedding": null, "doc_hash": "29d5366199ae9ad09b91f4e13344800b1204269b287fe589353643dc517a6536", "extra_info": null, "node_info": {"start": 19773, "end": 23864, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "f891d754-5b71-4448-9069-3dff046be834", "3": "8f6f8669-9943-4aa5-aa79-f185e413636c"}}, "__type__": "1"}, "8f6f8669-9943-4aa5-aa79-f185e413636c": {"__data__": {"text": "\nAnatolij N., Devops Engineer, 5, Datadog has many integrations for almost everything. It's easy to use if you want to configure the integration. Especially for AWS and Kubernetes, it allows you to start to monitor your cloud infrastructure., Especially for a long time, the cost overview for Datadog usage was very intransparent. Maybe it will be easier with the new Cost Management feature of Datadog.\nG2.com, Eran B, nan, 4, have integration with many cloud services, when you are counting this tool as main alerting tool, it has a lag of 5 minutes at minimum\nG2.com, \nRizwan K., Process Executive, 4.5, Datadog is user-friendly software with a comprehensive UI and enough settings and functionality to meet all of our needs. The most significant operating processes are mechanical and hence simple to use even for those with little familiarity with this equipment., While I'm working on new dashboards, it's always difficult to do so since the program is run quite slowly and takes several minutes to begin operating. I believed it was something to do with the machine, but it happened on every computer where Datadog was installed\nG2.com, AT W, Freelance devops engineer, 4, I like the interface and the fact that datadog continues to add new integrations. They support all the major platforms. It is a great tool for DevOps/SRE as well as product engineering teams, I would like to have datadog hand kubernetes metrics better. The alerting tools do not handle pod terminations or scaling events effectively. I would also like more advance kubernetes metrics. Improved iac options for configuring datadog\nG2.com, \nPratik S., Contributing Member - CWE/CAPEC Working Group for Attack Patterns, 4.5, I like its Security Analytics and Monitoring feature, The learning curve makes it hard to get things started ASAP\nG2.com, \nHarvin Kiel C., Software Engineer, 5, Ease of use, comprehensive reports, flexibility on the data you can track and real-time monitoring, UI can be improved by making it more user friendly.\nG2.com, Renee D., Sr.QA consltant, 4,5, Easy to set up monitoring with datadog,ui is not bad, i wish there was a user tutorial for new features\nG2.com, Rachel F., Sr data analyst, 4, data dog is greata nd help with all my data needs. thewir able to connect me qwith all the vendors i recive. also they just gavew me a free mug!l, that i have to log in to gewt my freemug. i would rather have just written a anaoymous review and then i would have been more hionest\nG2.com, \nRene K., Data Engineer, 5, Easy setup to monitor clusters in Databricks running Apache Spark. Pre-setup dashboards help to quickly gain insights on a infrastructure level without the needs of DevOps., The pricing on the Datadog website could be more precise, such as allowing using a calculator for price estimates\nG2.com, \nJeremy V., Data Engineer, 4, Easy usability, seamless log management and filtering. We're able to quickly build dashboards, share them with the team, and build alerts from them. Avi Verma helped us with our log pipeline/status remapper., Would love to have certain features added, but there are open source products that may help us\nG2.com, \nNitish Chandu O., Senior onsultant, 5, Datadog has so many integrations available, making it easy to use for AWS, Azure, GCP, On-prem, containers, serverless, and many more. The process to create monitors and dashboards is simple, helping the OPS team to implement the monitoring in quick time. The solution is excellent for application monitoring, as it supports monitoring using traces. Notification in Datadog is excellent as it integrates with Service-Now, Slack bringing immediate attention of the users., The support from Datadog is something I see to be improved, as they deal with tickets only on emails. The support team doesn't connect over calls for troubleshooting, and there is", "doc_id": "8f6f8669-9943-4aa5-aa79-f185e413636c", "embedding": null, "doc_hash": "013c8efda0c23277df6a5f1fe855649f74473bf9973f992cddba3eb568c4d3db", "extra_info": null, "node_info": {"start": 23876, "end": 27720, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "b1eb3ee1-929c-4cd2-9c3d-9a3a3869a6ef", "3": "8040e9e3-de8d-45d1-870e-8b2f0c44f4bc"}}, "__type__": "1"}, "8040e9e3-de8d-45d1-870e-8b2f0c44f4bc": {"__data__": {"text": "The support team doesn't connect over calls for troubleshooting, and there is no proper escalating process causing a delay in fixing monitoring issues.\nG2.com, Shubham V, Devops Engineer, 5, It is a SaaS-based tool that removes the overhead of managing the product itself and provides a good experience.\n\nIt supports a lot of different types of services such as monitoring servers, databases, etc but what caught my eye was log management and analysis.\n\nAlso,provides a variety of visualization to better observe the metrics, No dislikes as such, because it is specific to use-cases, how it serves your use-case is the first question to ask, and it got a lot of positives.\n\nStill, One such thing to mention is cost and also sometimes it is overwhelming for new users to use it for the first time.\nG2.com, \nMohammad W., //Cloud support Engineer, 5, The dashboards of each AWS service, the way they display the graphs, the number of metrics collected by the agent, also the number of features to monitor AWS resources allow you to monitor every single detail in your architecture., It is a little bit hard to start understanding the concept of datadog and how it works, also the cost of the services. And if possible to restructure the documentation, set proper title, put real case examples cause I did lost everytime so I am working on my own documentation.\nG2.com, nan, nan, 4.5, The learning curve is not as steep as many other monitoring tools, the auto-discovery and event/trace correlation works very well with very little manual help needed., It doesn't native support older technology like Informix so if you have an older stack this might not be ideal\nG2.com, Akshay K, Devops Engineer, 3.5, Datadog has infra and application-related all types of metrics from those we can monitor very effectively.\n\n- Datadog provides one of the best Dashboards from which we can create - Timeseries, Query value, Top list, Table, Heatmap, Distribution, Treemap, Pie chart, free text, Images, Host map, Log stream, List, Alert value, Service map and many more things also we can create customized Dashboards according to client requirements.\n\n- The pricing for the tool is very less as compared to other APM tools like Dynatrace, Nagios, and many other tools.\n\n- The tool can be deployed in on-premise as well as cloud\n\n- As it is agent based, by installing an agent we can get most of the data in Datadog UI\n\n- Datadog is user-friendly and easy to learn.\n\n- For any issue, we get quick help from the Datadog support team., There is nothing to dislike in Datadog but I feel the Datadog needs to increase more documentation and videos to configure the application and infra monitoring and Datadog should show live billing of the used data and should show the billing according to the services we used.\nG2.com, Ben Z, Civil Engineer, 5, When I have any issue, we have good technicians to address our problems, Price model, should be more flexible that's all\nG2.com, nan, nan, nan, It has great features, nan\nG2.com, nan, nan, nan, Simplicity, nan\nG2.com, nan, nan, nan, Easy to understand UI, nan\nG2.com, nan, nan, nan, Easy of installation, nan\nG2.com, nan, nan, nan, Useful metrics, nan\nG2.com, Shifali G, Sr Software Engineer, 5, The thing that stands out most about the Datadog product suite is its overall usability and architecture. From the installation of agents and the way metrics are gathered to the creation of dashboards, monitors, and alerts., Nothing as such. of course there are things that could be different, but these dislikes are nowhere near with the positives. Maybe alerting and monitoring time to alert could be shorter.\nG2.com, Icaro F, Devops Engineer, 5, I think the best part is centralized logs, metrics and traces, now we don't need to use a lot of tools to check logs, another one to check", "doc_id": "8040e9e3-de8d-45d1-870e-8b2f0c44f4bc", "embedding": null, "doc_hash": "2c17214f0b0678228bd9613f1e41951591974bca2622c0512f69be5240943546", "extra_info": null, "node_info": {"start": 27698, "end": 31508, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "8f6f8669-9943-4aa5-aa79-f185e413636c", "3": "e45eea2c-fa16-4f6c-97d2-b145b149d1c1"}}, "__type__": "1"}, "e45eea2c-fa16-4f6c-97d2-b145b149d1c1": {"__data__": {"text": "now we don't need to use a lot of tools to check logs, another one to check metrics etc etc etc, Actually, nothing. We are always looking for the new parts of the product and its great =)\nG2.com, \nLakshit K. S., Software Engineer, 3.5, It is supported by every cloud solution with excellent integrations and documentation that is relatively easy and accurate., The price is a little bit high as seen from an individual or a startup perspective but it does its job amazingly, it's actually worth the money you spend.\nG2.com, \nRodrigo Y., Partner, 5, The most incredible thing about Datadog is the way they continue updating his app and releasing new features, I guess they could improve CI with azure devops functionality\nG2.com, \nMarcio R., Observability Manager, nan, The way to find problems in our environment are so fast.\n\nWhen I need help, we have good technicians to address our problems., The quantity of information at the home screen. Some friends of organization have a little bit difficulty so find some.\nG2.com, Avinash U., Devops Engineer, 4, Having a single platform for monitoring all kinds of infrastructure is helpful. Datadog has excellent support and learning resources to get started with monitoring our application/infrastructure. There are integrations for almost all types of cloud or on-premise infrastructure and applications. The system is resilient with no issues in terms of performance or outages. The log management and tracing is very convenient using Datadog with features like retention, backup, formatting, and RBAC., The documentation for a few integrations is outdated and not always straightforward. You'll have to reach out to support quite a few times while setting it up. While creating new dashboards, it is not autosaved or even suggested for saving, which is a huge pain point if not known earlier.\nG2.com, \nFilippo S., Multilingual Support Specialist, 4, possibility to aggregate views in a single dashboard, Navigating the platform is not very straightforward\nG2.com, \nKunal S., Software engineer, 3.5, We monitor logs across multiple microservices in our infrastructure. I cannot emphasise how critical it is to debug the unhandled exceptions on production. Datadog provides an easy to understand UI unlike other(s) which I have used previously., I haven't encountered anything as it's been just over a year since I started using Datadog.\nG2.com, Vinit P, Associate, 4.5, The things i like most about it is the less time it takes and how efficiently it works it has best features it is easy to use and great for monetoring data . Really liked it., There is not much to dislike but i think the cost can be reduced as it is bit high for some people otherwise all is good no complaints \nG2.com, \nSubol S., Security Data Engineer, 4, Workshops provided good insights and the keynotes showcased what the company is focused on and where they plan to be in future, Workshops could have been trimmed into smaller sections\nG2.com, \npaulo a., Opertaions Director, 4.5, CLOUD SIEM IS ADVancing pretty fast but lacks of on prem support for legacy network devices such as firewalls, routers and switches., lack of support for on prem legacy devices\nG2.com, \nAlexander K., IT Specialist, 5, Very cost effective for their metrics services.\n\nIt keeps building new powerful features ( frequently upgrading and updating features)\n\nPre-built solution for SQL Server is excellent.\n\nIt's way easier for monitoring several scaled apps.\n\nAllows to collect data from log and performance counters.\n\nI really like the ability to see stats about company application., Sometimes it's very difficult to understand the graph report.its UI is sometimes a bit slower although it need to be integrated with multiple external apps.\n\nTo begginer it may not that much friendly.\nG2.com, \nSabrina K., Associate SRE, 5, There's a learning curve which takes time in terms of training, There's a learning curve which takes time in terms of training\nG2.com, nan, nan, 3.5, At ODB we have been happy with", "doc_id": "e45eea2c-fa16-4f6c-97d2-b145b149d1c1", "embedding": null, "doc_hash": "cadb5e719c084db5b58577f974a15ceb2487d6c8737e54480769e67d0d54c510", "extra_info": null, "node_info": {"start": 31516, "end": 35523, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "8040e9e3-de8d-45d1-870e-8b2f0c44f4bc", "3": "b5398d00-ce67-41e4-a0bd-59e194fca19a"}}, "__type__": "1"}, "b5398d00-ce67-41e4-a0bd-59e194fca19a": {"__data__": {"text": "nan, nan, 3.5, At ODB we have been happy with the performance and flexibility of DataDog to adapt to monitor and report. We've been able to point it at many critical infrastructure points and receive very quick notifications when there is an issue., There have been complaints about the interface on DataDog and some of the screens. There seems to be very little that one can do to change the look and feel to their liking. Some of the reports are not as detailed for some of the leadership's liking.\nG2.com, Ayush U, nan, 5, There are a lot of things that are present in Datadog:\n\n1. Traces: There are traces provided to track all the requests made to your app.\n\n2. Metrics: You can create metrics for your application. Using these metrics you can create monitors to set up alerts over them.\n\n3. Dashboard: You can also create a customized dashboard. We create multiple app dashboards for tracking them.\n\n4. Monitors: You can create monitors to set up alerts on top of various metrics.\n\n5. APM services: You can manage all your services deployed from here.\n\n6. You can tag your data. We use a lot of tags to provide in-depth ideas about all the services and metrics.\n\n7. Integrations: You can integrate your alerts with Slack and other apps. In this way you can receive notifications on your channels and manage alerts,, There is nothing that I dislike. But support for a query language would be great. While setting up monitors we felt a need for queries because we had to create metrics for various custom alerts.\nG2.com, nan, nan, 5, I've been using a lot of the application security product lately-- getting security signals from our deployed agents APM is a gamechanger., The datadog kubernetes operator often feels like an afterthought-- I wish the Kubernetes agent deployment story was more consistent and maintained.\nG2.com, Aman S, nan, 5, Log management is the best feature for troubleshooting as the logs are detailed and easy to understand., It only supports applications that are mainly based on Java, Python, .Net and Php. In the future, they should add support for more languages for broader industry usage.\nG2.com, Santa s, nan, 4, I love how even such a tool has api support and how i can just use those to pull and compline metrics from different clouds with a simple python script, I wish that DataDog was a bit more dynamic and also free\nG2.com, nan, nan, 3.5, I like the log searching ability as well as the appsec scanning. I would like to learn. more about the new feaures rolled out, when the app sec feature was originally rolled out it wasnt really integrated well with the platform. I assume it is better now. And the pricing for sensitive data\nG2.com, Praveen R, Software Engineer, 4.5, Nice looking UI. Easy to setup. Useful metrics, Toio much info prsented at once. UI could be improved\nG2.com, \nSasank Reddy A., Head Of Business Operations, 4, Data Integration Quality is perfect in the place, Little bit expensive but most of the customers like the quality\nG2.com, nan, nan, 0, All services in one place\n\n2. Excellent monitoring functionality in UI, Be prepared to be completely ripped off in billing. My Datadog bill came to 2x my AWS bill. Ludicrous.\n\n1. Datadog billing panel does now show how much you owe at the moment, or how much you've used. You just wait until the end of the month and pray it won't be something ridiculous.\n\n2. You'll be charged for random accidents / fluctuations. Accidentally spin up a 100 hosts for 10 seconds? Boom, 15$/host -> 1500 USD charged to you. No way to set caps, no limits, no way to even get alerted that you're gonna be charged this amount.\n\nI can't believe something with this level of professionalism has grown so big. If you're planning to use them PLEASE be aware of these extremely shady policies.\nG2.com, \nCristiano S., SRE, 5,", "doc_id": "b5398d00-ce67-41e4-a0bd-59e194fca19a", "embedding": null, "doc_hash": "3006de3d8b95688c1afbfa3a7d192eaa5c7837d210a74b68ab1ec8c4ce6a1272", "extra_info": null, "node_info": {"start": 35547, "end": 39357, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "e45eea2c-fa16-4f6c-97d2-b145b149d1c1", "3": "42d0f166-f343-47cd-ba6f-1383e67d8d54"}}, "__type__": "1"}, "42d0f166-f343-47cd-ba6f-1383e67d8d54": {"__data__": {"text": "\nCristiano S., SRE, 5, Features, simplicity and innovation of the product., Nothing really to dislike. Very good product.\nG2.com, nan, nan, 5, Datadog is able to roll out features in a short period of time., As they grow bigger their price is getting increased.\nG2.com, Ahmad H., Devops engineer, 5, I really like the Datadog real user monitoring (RUM), it provides us the insight of our frontend application as it was from our real users, it helps up a lot to understabnd it., We used datadog for RUM and we already liked this service and in future we will be using some integration service for amazon web services, so for now we do not dislike anything about datadog.\nG2.com, \nLuca B., IT Manager, 4, simple agent, no hassle, being cloud base it alerts you when your machine has something wrong or just simply is missing internet connection which can be meaning anything but at least you can debug it, the cloud interface is somwhow confusing, sometimes you do things and it's difficult to understand why you are not getting what you were thinking you were doing\nG2.com, Rakshith M, Crew Member, 5, It measures best in class performance matrix with minute details and detailed information for every user., UI can be slightly improved to make it more user friendly and so that it becomes easier to use\nG2.com, Himanshu K., Senior Software engineer, 5, Datadog can monitor distributed architectures.\n\nWe can use it to optimize performance.\n\nI use Oracle SQL Developer with it\n\nWhat makes Datadog different?\n\nDatadog can monitor distributed architectures, hybrid environments, and microservices, The documentation for a few integrations is outdated and not always straightforward.\n\nBy providing detailed documentation and a detailed description.\n\nIn documentation and control document part\nG2.com, nan, nan, 4, Metric and performance for SLOs is great, UI is not the most user-friendly for the user to understand all the features\nG2.com, Shubham G, Lead software engineer, 5, I really love the monitoring tools for database, servers and the data logs, It can be more mature, the database integration with different data set can be better.\nG2.com, nan, nan, 5, Datadog has a suite of products that provides excellent insights into application monitoring.\n\n- Integrating with datadog agents is relatively easier to get started.\n\n- Co-relating logs, apm, and metrics together make debugging easier.\n\n- Watchdog is a great feature\n\n- Datadog's anomaly and forecast on metrics helps in identifying issues at the earliest\n\n- Developer friendly integration, Need to monitor costs closely\n\n- Alert configuration needs to be improved\n\n- Need to improve documentation\nG2.com, \nRajender J., Frontend developer, 5, Easy implementation\n\n- APM is amazing\n\n- Log search syntax\n\n-Real-time logs, JSON is not supported in logs. Had to send stringified JSON\n\n- API requests should also log HTTP headers for better debugging.\nG2.com, No name, nan, 4.5, The ease of consolidating data with dashboards., The inability to effectively discern the monthly costs based on logging, tracing, retention, etc.\nG2.com, No name, nan, 5, LOG MONITORING MODULE, FOR MY CLIENTS, AT ALESTRA, THAT IS ONLY SAAS OPTIO, BUT IS OK, BECAUSE IS THE MODEL THAT IS NOW\nG2.com, No name, nan, 4, ease of integration to software systems and infra, ease of integration to software systems and infra\nG2.com, \nshweta k., nan, 5, It determines the performance metrics,which is very helpful for any sites, Somewhere lacking in documentation but overall it is understandable.\nG2.com, No name, nan, 5, Ease of installation, loads super fast, easy to understand UI., Have not encountered anything I dislike yet.\nG2.com, No name, nan, 4, They", "doc_id": "42d0f166-f343-47cd-ba6f-1383e67d8d54", "embedding": null, "doc_hash": "7c1d544db1257edc8e2be0edd0003109afff6085b9ad18145f5dc6bd55f405f4", "extra_info": null, "node_info": {"start": 39375, "end": 43061, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "b5398d00-ce67-41e4-a0bd-59e194fca19a", "3": "8237bbcc-5302-466e-9dc2-db832e533372"}}, "__type__": "1"}, "8237bbcc-5302-466e-9dc2-db832e533372": {"__data__": {"text": "anything I dislike yet.\nG2.com, No name, nan, 4, They provide us with the application to integrate any data source. Also, many prebuilt dashboards and out-of-the-box use cases are given to use. Create custom use cases are so easy., UI can be designed better for a better user experience.\nG2.com, \nSumeet S., nan, 5, It reduces time to problem resolution, secure applications and track key business metrics., A bit tricky to find the data..takes bit of time..\nG2.com, nan, nan, 5, Having unified visibility in to our infrastructure is huge win, Pricing can be complex and require tuning\nG2.com, \nAustin T., Manager of Information Systems, 5, I like all of the sub-products that Datadog offers. Each area in Datadog could almost be a standalone software., Datadog (currently) lacks billing monitoring/alerts. While you can log into the product to see your usage and billing so far for the month, you can't set a quota/threshold or any alerts for billing.\nG2.com, No name, nan, 5, I love the monitoring, dashboard visualization, native cloud integrations, I would like to see more plugins available\nG2.com, Garima C, Drug Safety Associate, 5, The best part about the data dog is the server management and monitoring., Exporting of logs for of the monitoring tools are cumbersome.\nG2.com, \nGufran A., Application support Engineer., 5, Automatic percentiles are a big plus point for monitoring It's easier to find bug detection on the backend., it's difficult to understand fresher the first time.\n\ndifficulties in checking the logs for fresher.\nG2.com, No name, nan, 5, The integration of datadog to our apps and servers was a breeze due to easy documentation. The options such as container, serverless and log monitoring in the same place made our life easier. The UI is also easy to use and loads very fast even with high number of data points. Their API also supports IPv6 which made interaction with our IPv6 only clusters so much easy., There is not much to dislike about datadog that I have experienced.\nG2.com, \nPoorna H., Associate Operations Lead, 5, Single stop for monitoring various database types and their infrastructure.\n\n- Easier to look into metrics history.\n\n- Managing downtime for various resources is simple., It would be good if there were a way to remove resources from Datadog faster.\nG2.com, Aditya G, Senior Marketing Manager, 4.5, Datadog has been the most useful in my APIs, error tracking and database monitoring., none as of now, I have started liking the platform.\nG2.com, No name, nan, 3.5, Datadog has allowed our organization to equip our various teams with more data, allows our teams to more easily track different trends, and creates the opportunity for better tracking., There are aspects that are harder for some users to pick up and immediately utilize. This is most likely - in large part - due to our current implementation and less directly related to Datadog itself, but the tool could provide more options for direction throughout.\nG2.com, No name, nan, 5, Correlation everything with APM Trace and log, Pricing model, it should be more flexible\nG2.com, Preet C, Manual Automation Engineer, 5, The best part was the UI and also we starred all the services and also the error rate was easily visible., Sometimes the services are gone blank so we can't able to check that services\nG2.com, Jaydeep S, Senior SRE, 4.5, logs tracing\n\n- logs management\n\n- infrastructure monitoring, difficult at code level to integrate with datadog\nG2.com, Ravinder T, SRE, 4, Best to monitor microservices running on Kubernetes and easy to push custom metrics, There is nothing special that i didn't dislike about datalog\nG2.com, \nRohan C., Technical & Application Engg, 5, Data Dog is best for Monitoring & Alert generating & easy for log searching, Sometimes", "doc_id": "8237bbcc-5302-466e-9dc2-db832e533372", "embedding": null, "doc_hash": "127df1f8eb3bc842caf3de6cb4e9fe1761d392b6b8f1a535070176aeeba7e9a5", "extra_info": null, "node_info": {"start": 43036, "end": 46817, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "42d0f166-f343-47cd-ba6f-1383e67d8d54", "3": "5f252439-4174-4f21-8caf-f68533eecee0"}}, "__type__": "1"}, "5f252439-4174-4f21-8caf-f68533eecee0": {"__data__": {"text": "Data Dog is best for Monitoring & Alert generating & easy for log searching, Sometimes observed slowness so at issue time, its get very touf to anazalse the issue\nG2.com, \nJimesh S., Senior Software Engineer, 4.5, feature to gain infrastructure visibility,\n\neffortlessly integrate the Datadog agent with running docker containers,\n\ncontinuous profiling,\n\nanalyze the traffic flow, customization support is a less, comparatively advanced APM tool.\nG2.com, \nZahidah M., Support Engineer, 4.5, can filter each attribute easily so it's easy to find, nothing, all good, already good enough for my use\nG2.com, \nImesh G., Senior DevOps Engineer, 4, Ease of monitor creation and alert setup, There is no cc option in alerting , whatever alerts you setup will be directed to all the teams which might cause confusion as to who has the ownership of the problem\nG2.com, Navdeep s, SRE, 5, It's easier to find bug detection of backend\n\nLogs monitoring also time stamps for all time zone, It would be good if we have some demo videos or tutorial it self in site for biggners from installation to set up and how to use\nG2.com, Yasir S, Application support Engineer., 5, we are monitoring multiple type of services like GoProxy 31 32 and cash collection, Sometimes we are getting late alerts and responses\nG2.com, No name, nan, 4, The tool can be deployed both on-premise or in Cloud as a SaaS service.\n\n- It is a versatile tool which can be used for application performance monitoring, incident logging, monitoring network stats and detecting security threats.\n\n- The pricing for the tool is competitive with respect to other APM tools like Dynatrace, Nagios etc.\n\n- Wide range of dashboards which can be customised and many third party integrations are available., The inbuilt integrations could cause the consumption of more system resources.\n\n- The installation process is a little cumbersome as many steps are involved, and updates/patches are released frequently.\nG2.com, Nitin K, Infra support engineer, 4.5, I have been using datadog for last more than one year. What I like about datadog is its features such as optimize performance and enhance communication between applications or different parts of infrastructure, There is nothing to dislike. But as a bigner I couldn't find enough documents to learn about it. But it was very easy to integrate with AWS using cloudformation.\nG2.com, \nMohd Anas A., Application Support Engineer., 5, For monitoring purposes, we are checked for Error rates which are helpful for monitoring., Sometimes we are getting blank Responses for particular service APIs.\n\nEx:- Request, Latency & Error Rates.\nG2.com, Amna K, Software Engineer, 4, I use to use prometheus, zipkin, and kibana to debug through issues for any environment other than local, and it was honestly confusing and annoying to go through each tool to figure out what the issue was with an application. DataDog is SO nice when it comes to this. It's basically all three applications merged into one, but better, faster, cleaner, and SO MUCH easier when looking through logs., I think originally there was a mini learning curve because there are a lot of tools in DataDog, but it was very easy to pick up. Nothing you can't learn from googling and watching a quick youtube video.\nG2.com, nan, nan, 4.5, Datadog has really good log search, and overall tracks metrics well and supports alerting to many different endpoints. Automatic percentiles is a big plus for engineering. Good for debugging issues., For making dashboards, sometimes the UI is overly complex and clunky. Also, there is an issue where rates are not averaged over individual minutes as expected, which confused some people on QPS graphs.\nG2.com, Sufiyan, nan, 5, fully customized, server management, alert management, and separated client log checking., fully customized mail setup was not there and for the new user, the tour guide is not available.\nG2.com, \nDeepak R., Observability", "doc_id": "5f252439-4174-4f21-8caf-f68533eecee0", "embedding": null, "doc_hash": "0b5de4646a0bd77a1e62b3dc2cbc2790cfa3afcb67a5518d39a071796af08afc", "extra_info": null, "node_info": {"start": 46791, "end": 50733, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "8237bbcc-5302-466e-9dc2-db832e533372", "3": "60f8b901-2d88-4334-9c72-687aa01d4b8d"}}, "__type__": "1"}, "60f8b901-2d88-4334-9c72-687aa01d4b8d": {"__data__": {"text": "guide is not available.\nG2.com, \nDeepak R., Observability Engineer, 3.5, I have implemented datadog in my organization. it's very good for infra and cloud monitoring. when it comes to the application there is lots of manual configuration req'd based on technology.so people can understand the terminology., they do not have on-prem.\n\nUI should be more attractive\nG2.com, \nPruthviraj G., Support Engineer, 5, Server analysis, checking log, monitoring jobs, goproxy error rate, Nothing everything is fine, implementation is also good, organized in easy way we can handled easily hence nothing to dislike here.\nG2.com, \nVeera C., Sr.Technical & Application Support, 5, Alert monitoring was best & Log found in details which help to find out issue, some time response get very late or some false alert also\nG2.com, No name, nan, 3.5, Installation and management of datadog was easy. It has enhanced features like mail alerting, pictorial representation of statistics gathered from servers in cloud., Only suggestion i would give is to improve the UI of datadog to make it more user friendly as sometimes its confusing. Also, would be helpful if the documentation regarding the use of datadog is made more available to users.\nG2.com, No name, nan, 4.5, Integrations are easy and user friendly, easy to learn and help documentation is available., Syslog integration with 3rd party applications should be improved, especially the way API send to the application.\nG2.com, GS S, Automation E ngineer, 4, to implement datadog, people can learn the entire technology stack and it is good for mid level Engg, Configuration is manual and it is a bit time consuming\nG2.com, Jaydeep S, nan, 4.5, application monitoring\n\n- infrastructure monitoring\n\n- container monitoring, difficult for fresher to understand at first time\n\n- costly when we have to scale it\nG2.com, No name, nan, 5, Easy to use, does a wide variety of jobs. It has integration with terraform which is wonderful. Quite handy tool to create monitors, dashboards and SLOs, Searching resources in datadog UI doesn't allow any special characters\nG2.com, Jaydeep Singh, Devops Engineer, 4.5, Incident investigations with log anamoly detection, although everything in data dog is so modern and implemented with ease, the navigation to diff dashboard can be made easy\nG2.com, No name, nan, 4, Datadog APM feature is most helpful for application observability., No such feature i dislike in general as all the feature are the required one in day to day operations.\nG2.com, No name, nan, 5, Really great NodeJS integration and great library support\n\n- Encompasses everything we need to monitor\n\n- Combines server, mobile, etc into one easy to use journey\n\n- Correlating datapoints is super easy, The UI could be clearer at times\n\n- Pricing is quite a bit more than competitors\n\n- For being so established, a lot of their great functionality has just been getting released. Lots of low hanging fruit left\nG2.com, Zaid S, nan, 4, All things about server management, UI, client log, difficulties in checking the logs and there is no tour guide when newly users joined.\nG2.com, Jaydeep Singh S, Devops Engineer, 4.5, We like ease of navigation and logs tracing capabilities of datadog. Also ease of installation of agents., Costly if need to scale and frequent updates\nG2.com, \nAnas A., Tech support Engineer, 5, we are getting request-response very easily., sometimes we are late notification as compared to snappy flow.\nG2.com, Savan S, SSE, 4.5, Datadog is a platform for data monitoring and analysis. In real-time, you can see the whole technical stack of your firm. All of your cloud-based applications and servers may be viewed in one location. Provides a bird's-eye view of your entire organisation. Personalize your dashboards.\n\nThere will be alerts sent out if", "doc_id": "60f8b901-2d88-4334-9c72-687aa01d4b8d", "embedding": null, "doc_hash": "eb9f2f601c8284267f62350ec78dd203925e47cd022b484f77aac7ef39414ff1", "extra_info": null, "node_info": {"start": 50755, "end": 54563, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "5f252439-4174-4f21-8caf-f68533eecee0", "3": "478c060d-0015-4f8c-883f-57ca83956105"}}, "__type__": "1"}, "478c060d-0015-4f8c-883f-57ca83956105": {"__data__": {"text": "organisation. Personalize your dashboards.\n\nThere will be alerts sent out if there are any major concerns that need urgent action. Ability to automatically acquire and analyse logs, latency, and error rates together with other information., Visualization of infrastructure flow.\n\nFor novices, features can be a bit overwhelming.\nG2.com, \nAamir M., BDE, 5, Getting multiple service on one page, and it is very comfortable to use, Late notifications some times for the monitoring\nG2.com, Ajay T, Staff COE, 5, Frameworks and UI, Platform, easily deploy, nothing all is good very good I will recommended to someone for sure\nG2.com, \nDebnita G., Associate Consultant, 5, DataDog tool is very useful if we have multiple applications and we are exposing REST endpoints to clients.\n\nIt's very Easy to Integrate with all the applications to create Interactive custom Dashboards and Alerts. These Dashboards help us analyze the data and the real-time alerts are a boon in the production environment. We can also Integrate it with Splunk and PagerDuty for alerts., It would be great if we are provided with multiple options to view the timings. Since my client is from U.S and I am working are working in a different timezone. Sometimes the Database error timing and the DataDog Dashboard timing are not in sync, and DataDog Dashboard timing is a bit delayed. Not sure if it's a configuration issue.\nG2.com, \ndeepanshu m., SDET 3, 4, Monitoring service level metrics\n\n+ Dashboards\n\n+ Infrastructure level monitoring, Nothing as such , datadog is best available tool\nG2.com, Priyabrat Prasad M., IT analyst, 5, It's an all-in-one monitoring tool to monitor your entire infrastructure with ease as it provides a wide variety of integrations and is also very easy to configure., Monitoring queries for logs needs some more addition to track more minutely.\nG2.com, No name, nan, 4.5, Integration with a lot of services\n\n- Providing detailed visibility into infrastructures, Could provide more insights on serverless events\nG2.com, No name, nan, 4.5, I like that is is easy to use and intuitive., I wish that there was a bit more detail when something is not delivered.\nG2.com, No name, nan, 4, Great instant visibility into KPIs and metrics, and flexibility of creating new reports/dashboards, once everything is set up, The learning curve can be a bit steep for someone who isn't on a db/bi/tech team, such as myself\nG2.com, Fritz S, Devops Engineer, 5, We found Datadogs APM integration to be extremely easy to integrate into our GO code base. The traces and anomaly detection were extremely valuable for debugging issues. We also found their platform to be highly performant and able to handle anything we threw at it. We were generating billions of traces during our early production phase., No default alerts. Some dashboard metrics need work.\nG2.com, Sourabh D, QA, 5, Ability to create metrics for your application that helps you to track incoming requests for your product, I did not find much tutorials on using notebook. There should be some.\nG2.com, Deepak R, nan, 4, Implementation and get to learn a lot. It's a very robust tool, and it supports more than 500 technology. Get to know a lot with this and even learning every day, They don't have to manage the environment.\nG2.com, Abdullah A, Software Engineer, 5, It has all the monitoring tools you need in one app: APM, logs aggregation, tracing, and host monitoring, Expensive and hard to set up.\n\nThe documentation could use some enhancements.\n\nThey don't have many geolocations.\nG2.com, No name, nan, 2.5, Creating a dashboard for monitoring system is the probably the easiest among competitors., Logging pales in comparison to other tools that focus on logging management such as Scalyr.\n\n- Expensive like really expensive.\nG2.com, Petr", "doc_id": "478c060d-0015-4f8c-883f-57ca83956105", "embedding": null, "doc_hash": "9186c09c22e0d90156a9622b8e67fa01f89ab3eb209e3a2adaafbad4e778ef71", "extra_info": null, "node_info": {"start": 54548, "end": 58341, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "60f8b901-2d88-4334-9c72-687aa01d4b8d", "3": "24a7a2fe-17f2-4bb0-a3d1-bf233235f75b"}}, "__type__": "1"}, "24a7a2fe-17f2-4bb0-a3d1-bf233235f75b": {"__data__": {"text": "Expensive like really expensive.\nG2.com, Petr H, Lead Devops engineer, 5, All in one observability tool. We have all the Metrics, Monitors, Logs and APMs in one place thanks to datadog, We would like to use SIEM tool as well and seems like Datadog is not quite there yet, so we are forced to look at other solutions\nG2.com, No name, nan, 5, User Interface is very good, easy to understand, User Interface presented by Datadog is good, found no dislikes\nG2.com, Petar C, IT manager, 4.5, Datadog is an amazing cloud monitoring solution that provides great insight and alerting and it's free to use., Sometimes it is very difficult to understand a graphical report and requires a bit more technical knowledge to use. Different types of metrics require little reading and understanding.\nG2.com, No name, nan, 5, Datadog is a monitoring and analytics tool for IT and devops team that can be used to determine performance metrics as well as event monitoring for infrastructure and cloud services, Application is set to explore and analyse logs from all the platforms, services and application, however the status on the dasboard is not that accurate. Even the UI can be better\nG2.com, Charlie O, CTO, 4.5, Excellent monitoring capabilities, full-stack logging and APM, Very expensive, but worth it for my use case. I just wish the cost were lower so the decision would be easier.\nG2.com, No name, nan, 5, I love the customizability of the DataDog's graphs and monitors and how easy it is to create those graphics and monitors on metrics from your application. There is a lot of cross functional capability, for example, my team uses spring and there's so much built in to connect everything together and not worry about it. I also love the ability to be able to analyze monitors before you create them by seeing the prior history., The only thing I dislike is the autocomplete feature of the functions for monitors and graphs. I can get to almost the end of a variable name and need to switch tabs to see the full name and the autocomplete feature will clear out my changes. I do enjoy that it only shows options that are available but I would prefer if it didn't try to fit one of those options every time I clicked out of the textbox.\nG2.com, David D, SR Front end Engineer, 4, DataDog has a huge array of options available for searching logs and creating monitors and dashboards., For someone who isn't super into logging/monitoring, all the options can be a bit overwhelming and the interface seems pretty advanced.\nG2.com, Trevor B, Senior Software engineer, 4.5, Logging to Datadog is easy. Once events are logged, the Datadog UI provides the power to search those logs and create dashboards., There's a bit of a learning curve for searching logs and creating dashboards. It's very much a pro tool, requiring some training.\nG2.com, No name, nan, 5, Super intuitive, so many features that feel overwhelming, but are easy to pickup and learn. Can make troubleshooting so much easier., Feels overwhelming at times, there is so much that I have to just accept that I don't know all of it\nG2.com, Muzzafar K, Devops engineer, 3.5, UI and UX Experience, extensive plugin and integration, some time take more take time integration\nG2.com, Himanshu S, QA Architect, 4.5, The very informative and easy-to-read graphs curated for the software service. It gives a great picture of the application's performance and helps find bottlenecks that might cause production issues at load., The team needs to be ramped up to ensure datadog inclusion in coding best practices.\nG2.com, No name, nan, 5, Great tool. Easy to set up. This tool provides excellent insight into the entire stack., Depending on how you set it up, the pricing model for this tool is quite oppressive.\nG2.com, Chris H, Head of technology, 4, Datadog is an excellent dashboarding tool to get up and running quickly and introspect your app and infrastructure", "doc_id": "24a7a2fe-17f2-4bb0-a3d1-bf233235f75b", "embedding": null, "doc_hash": "f5079f5d9453d17cdf40e2ea3a4d9d9597b308a9685499aa85b7bd2d09917f7d", "extra_info": null, "node_info": {"start": 58368, "end": 62279, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "478c060d-0015-4f8c-883f-57ca83956105", "3": "5cb45dc8-b174-4848-a875-d6a8775981e2"}}, "__type__": "1"}, "5cb45dc8-b174-4848-a875-d6a8775981e2": {"__data__": {"text": "dashboarding tool to get up and running quickly and introspect your app and infrastructure quickly., Setting up Datadog's different services to work together can be difficult.\nG2.com, No name, nan, 3.5, It's fast, almost not outages copmared to other platforms, I like that it can also be implented in other softwares (such as Slack) so users can be alerted on time!, The platform itself is a bit too messy, not the best UX, also its app won't work as expected. They should improve it.\nG2.com, No name, nan, 5, Dashboard, integration is so easy,monitoring and apm, Indexing logs is very costly and support takes much time to respond\nG2.com, Leo P, Devops Team Lead, 4.5, I have worked for more than four years with Datadog for monitoring. Their dashboards are very useful and never missed alerting as configured. They have a vast list of application plugins which gives insights about them, just plug in with connectors and DD will populate the metrices for you., Their capabilities to automatically populate stacks are minimal. DD should work more exposing their API such that customers can make use of them to automatically populate stacks with their metrices and alerts.\nG2.com, No name, nan, 4, I like the monitoring of servers service provided by Datadog the most, I dont see anything in Datadofg which i don't like, everything is very good\nG2.com, No name, nan, 5, Concisely information about the application logs., Nothing as such to dislike in datadog its a good product\nG2.com, Miguel C., Graphic Designer, 4, Track end requests to distributed systems, data control and remote files.\n\nRegistration data in context with labeling.\n\nGroup data center and containers., GRAPHIC MONITOR FOR DIFFERENT SERVICES At the same time, it is not necessary at specific times of high traffic.\nG2.com, Felipe U, CTO, 4, all the filters that I can apply when I'm debugging an issue, that you have to be careful when you are configuring the tool because if you do something wrong, it could be expensive\nG2.com, Nick L, Founder/CEO, 5, Dashboard visualizations, notifications and it just works, Some integrations could be smoother to integrate\nG2.com, Huyn K, Co Founder and CEO, 4, Intuitive UI/UX, robust monitoring, dashboards and alerts., The pricing can be quite expensive, even with yearly discount.\nG2.com, No name, nan, 4.5, Linked analysis tool to log, system, docker status.., at the first sight, it's very complex and hard to view\nG2.com, Noname, nan, 4.5, Easy to install and use.\n\nExcellent documentation.\n\nCapturing logs and then using datadog monitors to get alerts for failures., The metrics feature of datadog could have added functionalities.\nG2.com, No name, nan, 4.5, The APM and its support for both serverless functions and micro-services is great. It is easy to configure monitors and integrate with other products. Additionally, searching and viewing logs in context is handy, and the UI makes selecting time ranges quite easy., Datadog is a premium product wtih a premium price point.\nG2.com, No name, nan, 4.5, Tracing unique transactions is the best feature, Exporting dashboard info in an excel feature is not available as per my knowledge\nG2.com, No name, nan, 5, I like datadog dashboards monitors infrastructures and apm tracing support, Nothing everything looks good and improving\nG2.com, No name, nan, 5, It is very helpful in monitoring clous services, There are no dislikes to say about datadog\nG2.com, No name, nan, 5, It is so hard to narrow down which features I love the best. This is because no matter what you need from logs to engineering, to security, to infrastructure, there is not 1 team in an organization that can benefit from this product. Datadog is able to import your entire company into metrics, monitors, and triggers", "doc_id": "5cb45dc8-b174-4848-a875-d6a8775981e2", "embedding": null, "doc_hash": "6d8a97d48f895f3bd14d8cab6e432fd9fbda2a39548c21cc4d387105014740b7", "extra_info": null, "node_info": {"start": 62244, "end": 66004, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "24a7a2fe-17f2-4bb0-a3d1-bf233235f75b", "3": "764b01ac-db76-4081-af21-2483631ae895"}}, "__type__": "1"}, "764b01ac-db76-4081-af21-2483631ae895": {"__data__": {"text": "is able to import your entire company into metrics, monitors, and triggers to mitigate any issues and to respond as soon as possible to issues that arise. Their host map feature is a dream come true. You can see which EC2 instances in AWS are communicating with each other and how much traffic and what traffic is communicating through each instance., The feature I disliked at first was that there was no role-based access control which was a nightmare for security. But they just released a beta feature to resolve this!\n\nI think Datadog has come a long way over the years.\n\nOne huge problem I have come into is as their product changes their documentation is out of date at times and does not have current configurations for things which lead you having to reach out to support for assistance with resolving issues or setting up key integrations through your organization. I understand there are growing pains with any application but I wish there was an easy way to report outdated documents for them to update.\nG2.com, No name\t\t, nan, 5, easy to use the tool, provides errors and metrics in real-time, sometimes it is challenging to understand the graph aspects\nG2.com, Timo G, Devops engineer, 5, Datadog makes it easy to do monitoring and even setup alerts, also has a great APM.\n\nDatadog simplifies doing APM + monitoring + alerts with one product instead of possibly using two software as a service tools plus a self hosted monitoring stack., Documentation could be better, but that being said the documentation covers a very broad set of topics.\nG2.com, No name\t\t, nan, 4.5, Datadog is super fast when it comes to log searching. It allows powerful search queries and also allows to create graphs based on logs.\n\nSetting up alarms on specific log texts is easy and has integration with other tools like slack and pager duty, Navigating the UI and figuring out possible options and queries takes time.\nG2.com, \nDebabrata P., Technical Lead, 4.5, With datadog you can quickly get up and running. May be the easiest among all out there. Since it enables you to put everything into one dashboard irrespective of their zone,VPC or environment type we can have one bookmarked place to look at for the first report. Once you figure out how to set up datadog agents then it's a one point of solution. Integrating it to IMs like slack is really easy and thresholds can be set individually to prioritize alerts., Database monitoring would have a delay if agent is set up. If you have a complex structure of DB infrastructure. this is going to be pain point. The UI could have been a little better, but not a blocker issue\nG2.com, Juan Pablo A., nan, 4.5, How they constantly evolve their products., Because of the constant evolution of their functionalities, sometimes the documentation could not be up-to-date.\nG2.com, Jay G, Lead SRE, 4.5, Datadog is building out a platform that covers not only all logging and monitoring needs, but also integrates them together nicely. The interface has a consistent feel, and the support staff is generally well-above averagee., It is a bit on thee pricey side in some areas -- there are a lot of competitive open-source solutions but I'm thankfully at a business that allows us to get tools like this.\nG2.com, Roberto M, Bachelor of Fine Arts (B.F.A.), Photography, 3.5, It does a good job in managing records with full search, has a simple interface, offers a wide variety of integrations with third-party services and systems, easy to configure and use, There is no reduction in delays in the response time of the monitoring agent, additional reporting capabilities are missing, too, there is no custom query language that can be useful\nG2.com, \nAleksandr K., Devops engineer, 4.5, I like how easy it is to configure everything on the DataDog. If I want to add some metrics and visualize it, I can easily do that in a matter of few hours. Really good documentation and well written. I also enjoy the support team that is always ready to help out with any problems., I don't really like some of its functionality with", "doc_id": "764b01ac-db76-4081-af21-2483631ae895", "embedding": null, "doc_hash": "e593299b436856a42c3ea6d7603587c0840182bca7ed44a700dd4bf6ffdc7b83", "extra_info": null, "node_info": {"start": 66019, "end": 70076, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "5cb45dc8-b174-4848-a875-d6a8775981e2", "3": "c69ca865-8ff1-4557-816a-48675d98a997"}}, "__type__": "1"}, "c69ca865-8ff1-4557-816a-48675d98a997": {"__data__": {"text": "ready to help out with any problems., I don't really like some of its functionality with alarms and notifications. I think it could be better improved. But overall, I really enjoy it more than any other tools that I have used in the past. Easy configuration and integration.\nG2.com, Collin H., \n\nInformation Technology Staff, 4.5, Datadog is a complex software, but after using it for a while, you will notice you always have to do the same process, so it becomes easier and you can master it within time. The interface is simple and the visuals are clean, something that's really helpful to address most of our technical needs. It allows for customization of the dashboards, so you can make them more suitable for yourself., Datadog is a bit complicated at first. The Setup and configuration are hard to do correctly, so you may need the help of a specialist to do this\nG2.com, \nMarissa G., Associate Product Manager, 5, What we liked best was its seamless integration with the AWS services and the visibility of logs and traces of our applications on the dashboard., I think Datadog as such doesn't have something to dislike.\nG2.com, \nJustin R., Principal Cloud Architect, 5, Datadog provides a multitude of integration to monitor anything you probably need with a simple config. They also offer infrastructure and application monitoring all in one tool for great dash-boarding capabilities., The APM tool is still young and can have some issues. Their development has been great to work with and listens to our concerns when they arise. They are very transparent in what they do and work on via github.\nG2.com, \nMauricio G., Front End Engineer, 3.5, I think that Datadog is a nice tool to have in order to keep track of all the logs of your software and be aware of all the requests and failures that may happen. You can follow logs in real time, even in different environments, but all in a single complete dashboard., User interface in Datadog is not that easy to understand at first. First time setting all the logs can be a bit complicated to do.\nG2.com, \nMauricio S., Fullstack Developer, 4, You can track and view logs in real time, really helpful. I like the feature where you can create a custom view of a set of logs (with custom filters, column parsing and more)., It gets complicated to use or know all the available features that Datadog has. Interface is tricky to use sometimes. Some filters are hard to use if you haven't mapped all the fields.\nG2.com, \nOwen M., Engineer, 4, At all times this software warns about the performance of each program that is installed on the computer or how is the overall performance of the computer I am working to know if there is something that causes it to slow down or is on the verge of being damaged, with these observations that makes this software everything is well monitored and is in perfect condition always allowing work without complications and with 100% performance for greater agility and without delays, Its complicated use since I acquired it made me generate more knowledge of the basic knowledge I had for the configuration of these software and I had a long learning but that helped me to learn much more and expand my knowledge to improve each day the platform of a more functioning full\nG2.com, \nChristopher W., Bussiness analyst, 4.5, The monitoring of this software we use internally in the company in each server\n\nDatadog control panels help us monitor, debug, show data to those interested and simply show information live on the office screens\n\nThey gave us the complete solution and extended the test several times, and we were able to establish a substantial set of case studies that demonstrate the value to our business, The infrastructure of this software is a little complicated with few guides of learning that produces that the process of the correct operation has disadvantages at the beginning and it is not fast way to put to work this software in the company, it is necessary to obtain to learn to know its good operation and great results are achieved\nG2.com, Hart Q., ML Speacialist, 4.5, Datadog is a tool that's very easy to use, with a very complete interface and enough options and features make possible all our requirements. It includes dashboards where you can check how", "doc_id": "c69ca865-8ff1-4557-816a-48675d98a997", "embedding": null, "doc_hash": "8e3d741ba5e86d281aaa25ca1f49e90bf77c29e5adf67b6ec71c511ebc7b27dd", "extra_info": null, "node_info": {"start": 70067, "end": 74337, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "764b01ac-db76-4081-af21-2483631ae895", "3": "026e2225-4c31-4004-afd6-8fcc6410d07f"}}, "__type__": "1"}, "026e2225-4c31-4004-afd6-8fcc6410d07f": {"__data__": {"text": "options and features make possible all our requirements. It includes dashboards where you can check how is the development of the process in real time. Customer service is another great thing from Datadog, as it's always helpful with any of our questions. Whenever you encounter any specific issue, they will always be responsive to you., When I'm working on creating new dashboards, it's always hard to do it and it tends to run really slow and take several minutes before actually start working. I thought it was something that had to do with the computer, but then I discover it happened in every computer where Datadog was setup.\nG2.com, \nKevin G., Bussiness analyst, 4.5, It gives me a balance in the work to know how is the performance of each app and each installed software that works and so be aware of each one or that is consuming many resources in the system that makes it slow and does not allow me to execute the actions that I need to do to make my work efficient, without Datadog I could not know which are the app that cause discomfort and that delay me in my work and its good support allows me to have the confidence to ask all the complications that are caused for make your cash, When I started using this platform I found it very complicated to use that I did not know where to start, it caused me a lot of headaches to know how it was working and what other functions it offered, the technical team explained to me but there were vocabulary that did not understand what I was doing. I call for help from a senior engineer who knew more about the issue and put the correct configuration to what I realized that if I did not know about programming and systems at a high level, not anyone can start doing the configuration because it will not succeed\nG2.com, Harry P, AI Programmer, 4.5, Datadog allows us to handle all in one single platform, as its system is based on handling centralized data. The most important operative processes tend to be mechanical and, therefore, easy to use even for people with low experience with this tool. Whenever you have a question about the functionality of the software, it has a very extensive API documentation all of your questions will be answered., Datadog has a steep learning curve, but this can be solved with regular practice and training. Although it offers several integration options, the integration with AWS present some issues, as some configurations has to be done manually. Other than that, we have no more troubles in this matter, but I still think there's a lot of room for improvement.\nG2.com, \nChris O., IT consultant, 4.5, At first,\u00a0Datadog\u00a0may seem like a complex product, but you can get use to it with practice.\u00a0When\u00a0you get to know it enough, it will provide you full control of your system. Their RabbitMQ support is excellent, as it offers good insight into queues. The\u00a0APIs\u00a0allow you to interact with the data quickly and effectively and it's definitely this API functionality what makes\u00a0Datadog\u00a0one of the best monitoring tools on the market., I think Datadog could improve in some aspects, such as its logging capabilities, that seem weak compared with other similar solutions, like Splunk. This should be simplified, as it\u2019s one of the more frequent processes in Datadog. Also, I wish Datadog could be as dynamic as other monitoring tools, such as Icinga and Prometheus.\nG2.com, Christian K., accounting, 5, I can install multiple platforms in the system with the assurance that Datadog will monitor one by one very well verifying that its operation is correct and that the system progresses optimally without difficulties\n\nThe analysis that Datadog performs with each platform is very safe I have the peace of mind that if it is being monitored everything will work with its performance to the maximum without errors or low performance, The function it performs is very good but for this you have to know how to configure correctly and this takes time because the initial configuration is not so simple, it took me time to learn because it is a very broad platform with many functions that makes it a pretty guide How extensive is its operation\nG2.com, \nAlexander G., support engineer, 4.5, Makes application performance management with end-to-end monitoring warn of the security of data stored in the application that fail and cause a", "doc_id": "026e2225-4c31-4004-afd6-8fcc6410d07f", "embedding": null, "doc_hash": "928427cbb2728a29e5d50fef0edc457c8e2b018a01df76c68d067bf595e2dcd0", "extra_info": null, "node_info": {"start": 74323, "end": 78648, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "c69ca865-8ff1-4557-816a-48675d98a997", "3": "7a7b5aad-cc36-4282-a044-1dfdfd66d09f"}}, "__type__": "1"}, "7a7b5aad-cc36-4282-a044-1dfdfd66d09f": {"__data__": {"text": "monitoring warn of the security of data stored in the application that fail and cause a malfunction that may be compromised\n\nDatadog can monitor and alert on different source categories that incorporate log files, performance metrics, availability, configuration and tracking changes\n\nMonitoring is directed to data points that generate large amounts of records and data that focus on a series of critical events, The start of the monitoring configuration of the application must be carried out by an expert developer in the subject so that its configuration is correct from the beginning and its operation is correct and in the future there is no damage or stop working properly\nG2.com, Clark P., IT Audit Specialist, 4.5, Datadog shows short, simple and easy-to-understand graphs to give an appropriate overview of the system's performance, which is great because it turns something that\u2019s really complex into a very simple visual representation that can be understood quickly. It can be integrated with Cloud Watch, so you can monitor even without the agent installation, a very cool asset of an already powerful tool. Also, it provides a lightweight agent on hosts., Datadog is an expensive software compared to other similar tools, like Zabbix and Icinga. I think it should come with a custom query language, which could be very handy for programmers. Also, it would be great if they could reduce the delays in monitoring agent response time\nG2.com, Wesley B., Analys, 4, I have always felt that datadog has a very advanced system more than any other software that provides the same services because its good performance and the results that have been released have affirmed that all the monitoring of the app and programs of the company are well monitored by Datadog, providing a good 24/7 monitoring service making sure that any warning of something that is failing will reach the notification to the mail informing what is happening, To place a profile picture on my datadog account, direct it to another page to create an avatar and there is a possibility to customize the datadog account with the photo but I do not like to do all this process in order to have my photo and try to create my avatar in the page that directs me datadog and is a very slow page that has no explanation of how to do then choose to leave the photo without the account\nG2.com, \nJessica O., Devops engineer, 4, Datadog allows you to collect and cross-reference various metadata about your application--it's wonderful to have APM, container health monitoring, and logs in one place. Also, I spent a LOT of time with Datadog support... and I mean, A LOT, because our use case (our app is Dockerized and deployed on Aptible) is not typical. The support team was, pun intended, dogged in their persistence to help me get Datadog working for us. And it's a great value, cost-wise., The query functionality on the logs is not as advanced/flexible as I'd like, nor are the alerting capabilities. For instance, I'd like to be able to run a given log query (e.g., how many errors like X in the last 12 hours) and post it to slack or email or whatever, and right now this isn't supported. Also, for us to really get full use, we need them to offer a BAA, since we are HIPAA compliant. (Right now, we restrict what goes into Datadog to stay compliant.)\nG2.com, \nDaniel M., Senior Manager, 4.5, Quickly drag and drop the graphs to visualize metrics and events\n\nYou can clone and edit dashboards with templates\n\nThrough API it automatically generates new scorecards programmatically\n\nI visualize the graphics metrics with maps and main lists\n\nI supervise specific points in a graph to alert the members of the work team about possible problems\n\nYou can apply internal access controls to control panels, When it is integrated with too many app you start to see delays in the delivery of information that can last minutes is not much delay but if it affects so that my work is fast because those minutes make me lose time and therefore take the option to unlink several integrations so that the datadog platform is the same as fast as a start\nG2.com, \nCharly Y., Senior Financial, 4, Indicates the success or", "doc_id": "7a7b5aad-cc36-4282-a044-1dfdfd66d09f", "embedding": null, "doc_hash": "d130f544cf09006a0de1998f1561e8e7b4577ae06a9228aae415411e89ddc64e", "extra_info": null, "node_info": {"start": 78665, "end": 82844, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "026e2225-4c31-4004-afd6-8fcc6410d07f", "3": "922a83e8-252c-46c7-a471-f74fe0bfb35c"}}, "__type__": "1"}, "922a83e8-252c-46c7-a471-f74fe0bfb35c": {"__data__": {"text": "\nCharly Y., Senior Financial, 4, Indicates the success or failure of each app installed on the computers of the company and so know the performance of each if its functionality is correct or something is failing, looking for low performance solutions making each app work without any problem\n\nIt shows me the success of the service with codes that refer to the possible errors that are in the system or when there is a code in HTTP status indicates the success showing in detail well informed of each warning that produces, In the option that they have to use for a free period the platform does not have technical support enabled, but in the other paid plans if it is enabled but it is free, which if it is free it is obvious that to begin with I would have many questions but I had no one to answer it with the training tutorials I learned, but many things were missing that when I started paying I asked them but at the beginning I did not like that detail\nG2.com, \nHenry K., SSE, 4.5, Quickly analyze possible problems that may be occurring in the system filtering the solutions that can be generated before an error that causes serious damage\n\nWe discuss issues in context with production data to notify teams of changes and see who responded to alerts\n\nWhen they are critical issues datadog notifies the performance problems of any metric\n\nI collect the service statuses visualizing the correlations with graphic data to establish alert conditions in the infrastructure, The beginning of the process for the initial configuration took a lot of work to learn as I started to use it because I could not learn all the vocabulary that was strange in a certain way because you had words that you did not know what they were talking about, it was the only thing that cost me because after having learned all the correct process I realized how excellent this platform is\nG2.com, No name, nan, 4, We are using the dashboards for databases monitoring and some cloud integration. It's easy to set up, alerting is also easy to set up., Sometimes there is a delay before the metrics shows up on the dashboards, which can be up to 5 min and is very important during critical incidents.\nG2.com, \nDanny L., Data analyst, 5, Has many integrations with different cloud providers and technologies / applications out of the box., There is a small problem installing DSC (not DataDog website documentation) on Azure windows domain controllers in place (using Azure extension).\nG2.com, \nDylan C., CEO, 4, I find a software with a very advanced intelligence system to detect the alerts or performance problems of each system wherever the location is, which is well designed to validate all this information alerts with graphics that show in real time\n\nnotifies the performance problems that are affecting the system and this prevents that if it is a serious damage is solved in a quick time and not later when the system is more damaged and can not be easily fixed, The technical support I do not like because I ask them questions to which they respond with rather useless answers that do not give me a solution to what I ask or they make me review something that I tell them to review, I do not think that they have trained personnel to answer precisely in what you need to know\nG2.com, Leo K, devoper, 5, The dashboards are easy to setup and give a good overview, The errors aren't always clear as to the problem when setting up.\nG2.com, \nOliver G., software Developer, 4, can have app performance tracking\n\n- I have control of error rates and graphics with system latency percentages\n\n- Detects and alerts about the performance problems of each user in the location where he is for his system\n\n- saves engineering resources with self-maintained tests driven by AI\n\n- I receive notifications to the email about the performance problems, either only from my network or a massive problem in the company\n\n- the plans are economical are very affordable to buy\n\n- helps to optimize the use of capacity in the hybrid infrastructure, The learning curve is very complicated because there is not enough information on how to do the initial configuration and the rest of the process to learn how to use it, and the little information that is in a complicated vocabulary to understand, contact me with support which If you explain some things to me and I pass a more detailed guide but in the same way I felt vocabulary that I did not", "doc_id": "922a83e8-252c-46c7-a471-f74fe0bfb35c", "embedding": null, "doc_hash": "3068ef0fd2bb45f3387764aceaab52fe3faf63769e28847f0d1b6934219ced83", "extra_info": null, "node_info": {"start": 82868, "end": 87278, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "7a7b5aad-cc36-4282-a044-1dfdfd66d09f", "3": "820c781f-0bc4-4d05-b91f-8df2f26be661"}}, "__type__": "1"}, "820c781f-0bc4-4d05-b91f-8df2f26be661": {"__data__": {"text": "I pass a more detailed guide but in the same way I felt vocabulary that I did not understand\nG2.com, \nConnor G., Data administrator, 4.5, the monitoring that Datadog poses about the apop in the cloud and the database servers of the company is something spectacular and very reliable because I can work on my pc computer with the peace of mind that the whole system is working well and that if something is for being damaged or eating a lot of resources Datadog is going to make it known to close programs or visualize the app that is presenting problems and solve them before it is too late and it is a more serious damage\n\nanalyzes the app and shows me a detailed report of how they are working and the performance that each one is having to know if the performance that is presenting is normal or is failing something, is a difficult platform to learn to use has a lot of concept that is not familiar and requires time at the beginning of the configuration to do everything right and that is a well configured system but it is worth learning because it provides more intelligence and is very useful\nG2.com, Camila E., \nProject Development Coordinator, 4,5, The database is safe because with datadog it keeps me informed of any alert that can be presented with any app program that may be failing and causing possible damage\n\nThe prices are very economical to know so good service that they offer that help a lot with this software with the advanced functions and the visibility of app like java, python, go and others\n\nthe support is very good solves quickly and easily any concern you have, are very kind and understanding, I do not feel that I dislike some datadog because all the experience I have had with this software has been very good and it has helped me a lot because if I do not understand something they explain it to me in an easy and simple way to understand\nG2.com, Peter N, IT and Services, 2, The public dashboards are really useful for displaying and monitoring apps around the office. There are plenty of integrations and webhooks we can use to monitor our applications., Training is hard to find, and when I do find it, a lot of the instructions are outdated, or not Windows friendly. The learning curve was higher for me, and it discouraged me from moving forward with Datadog. I've sent emails to their training team and they said they'll update their training content in the future to make it more Windows friendly.\n\nThe Monitor Report that gets emails if formatted strangely, where the top alerting monitors / top notification is summarized, a lot of the monitor names get cut off. Even if you click in the email to view the report in a browser, our monitors and alerts have to be named a specific way since we share the account with other divisions in the company, so the report just shows a bunch of our monitors with the same initial name [Department] - [Product] - [Container]/[Service], the names get cut off after Department and Product, so the rest of the report is harder to read -- I'd have to hover my mouse over to see the full name.\nG2.com, \nLinda K., Operations Management, 3.5, With datadog I can control everything that happens in the system that can cause damage\n\nI have real graphics that show me in real time how the system performance is\n\nThe prices are quite cheap with many functions that are very useful to pay at such low cost\n\nI trace the errors shown by the data logging system to see if they have a solution, The support should be more specific with what they say with their explanations are little understood and manage to confuse me without being able to solve the problem, I think the software is very good just need a little more attention from the support service\nG2.com, \nBeatriz M., IT Staff, 4, It is perfect for monitoring your applications performance, showing up all the relevant information in real time. With Datadog you can set alarms to notify any irregularity within the system. The API is very simple, so it allows integration with several applications or services. Besides, it allows for creation of a centralized source of data. About their costumer support, it\u2019s very helpful and responsive., Although it has many benefits when monitoring your system, it also has some limitations when it comes to report and analyze. It does not have the right tools for doing", "doc_id": "820c781f-0bc4-4d05-b91f-8df2f26be661", "embedding": null, "doc_hash": "9ad5fbe2a1595a4230cca188d6b10496270ae47336f00edefc7b7a979e7ec49a", "extra_info": null, "node_info": {"start": 87264, "end": 91596, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "922a83e8-252c-46c7-a471-f74fe0bfb35c", "3": "68814d94-f4cb-45b6-bd96-e057286d2f56"}}, "__type__": "1"}, "68814d94-f4cb-45b6-bd96-e057286d2f56": {"__data__": {"text": "limitations when it comes to report and analyze. It does not have the right tools for doing advanced graphing operations. Also, Datadog needs to be more robust in order to improve its comercial image and become more reliable to the audience. When it comes to billing, it isn\u2019t completely straightforward, being confusing at times, while you end up without understanding the monthly costs.\nG2.com, \nKevin C., CMO, 4.5, through datadog you can have the tracking of errors that can be caused in the app and be able to solve them so that the performance of the app is still normal\n\nis an excellent platform that analyzes and gives solution to the problems that can be caused in the computer so that it can be navigated to perfection and if there is any program that could be damaging datadog, it is alert about this possible problem\n\nNot only alerts on a single computer but also alerts on performance problems to several users in the location where they are\n\nI receive critical question alerts by email to be more informed of the system that may be causing unwanted damages to the company, I do not see anything that I dislike about this monitoring platform I find the work it provides excellent to be calm that the computer or the app are good and will not lose information that is stored on the device\nG2.com, \nMylan P., Lead Engineer, 4, you can track a customer\n\nOptimize resources\n\nDetects usage patterns\n\nyou can set an alert notification message\n\nIt has more than 200 integrations and I see that more and more, It is a pretty platform but quite complicated to understand and to manage because of my position in the company it helps me to understand a little more but even so I feel that there are parts of this platform that I do not understand\n\nI feel that this platform is designed more for professional people in the area with extensive knowledge in the system because if there are people who execute this platform without having a wide knowledge it can fail in the attempt of the execution and programming\nG2.com, \nsamara j., IT team, 4,5, Something I especially like about Datadog is the endless integration options it provides. It works perfect with platforms like Slack and AWS. The dashboards always show all the relevant information on the same screen, especially when it comes to graphics. They\u2019re also easy to customize and read. The interface is modern and intuitive., Although I think the interface from Datadog is great, I think it lacks of options for configuring agents, so it can make this process quicker. Something Datadog really needs is to be woven into codes, in order to gain independence and become more efficient. Other than that, I consider Datadog to be a great tool.\nG2.com, \nArthur C., Senior engineering, 4, You can track the performance of each app you have\n\nQuickly analyze the solution to the problems that may arise in the app and platforms\n\nwarning of possible damages that may be caused before the damage is greater and causes irreparable damage\n\ncalculate the rates, ratios, or averages and see the graphs in real time\n\nyou can receive the alerts by email if at the moment I am not in the workplace\n\nI can silence all alerts with a single click, Basically this platform is aimed at professional engineers because the programming language it has is very complex that is only understood by engineers\nG2.com, \nSophia G., Supervisor, 4, The system events are pretty good. Datadog is very well designed to give visibility among the teams so that I can discuss issues in context of production data, write down the changes and notify my team, see who responded to that alert before, remember what was done to correct it and add their data together.\n\nyou only have to install agent and cloud integrations to bring metrics and events from your cloud and services in one place., The configuration of this platform is just opened is very complicated I could not understand it I had to ask for help of engineering and support so that they could explain each of the categories I had already afterwards, it has made it easy to use it, but the first ones months I get headaches this app\nG2.com, \nJuergen S., nan, 4, I pretty much only use the APM part of the software since that is most useful to my job (Developer). I can", "doc_id": "68814d94-f4cb-45b6-bd96-e057286d2f56", "embedding": null, "doc_hash": "19b507eabc7f622635589552668448a8aec92ec1b8a047dbd74ab9d03cab9ab5", "extra_info": null, "node_info": {"start": 91586, "end": 95834, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "820c781f-0bc4-4d05-b91f-8df2f26be661", "3": "74773a00-8ea0-44ea-8c3a-2447481985b5"}}, "__type__": "1"}, "74773a00-8ea0-44ea-8c3a-2447481985b5": {"__data__": {"text": "APM part of the software since that is most useful to my job (Developer). I can spent 5min in DataDog to identify work for the next week.\n\nIntegrating in existing product was very easy, setup and maintenance are easy. Does not feel like it adds any overhead to the app, There are a few features I would like to see as a developer, support is generally open to ideas, but it rarely ends up being implemented.\nG2.com, \nDavid T., Executive Director, 4, The free version offered to know it well before starting to pay I had a good idea of Datadog, I had my doubts if I was going to like it or not, that if it was good or not and I did not want to start paying for something that was not I knew how I was going to get out so I tried the free version and started using it and until now I have it, I liked it.\n\nThe attention to the client that they have from the beginning so it is free version and already later when it is bought it is equally good it does not change in anything and it is very fast, It is a great monitoring tool but to work properly, it is important to read a lot and see tutorials before starting to handle it. Everything is very complex, I have to ask for help from the engineers to understand words that said and did not understand what the icon was for or menu\nG2.com, \nAllan B., Executive Assistant, 4.5, With this software I can see the problems that I and my team have also the information of the system and infrastructure of the site, it works in different operating systems and this facilitates the work, you can create notifications when the cpu reaches a high level of use or when some system is inactive, the configuration process can take and be too complicated is not easy to learn to manage the platform from one moment to another, it requires a lot of time and knowledge to be able to achieve the correct way to use it so that everything is fine\nG2.com, \nAnthony N J., Information Technology Staff, 5, Datadog is a tool that can not be absent in any company, of whatever type, where different applications of different types are used, with its powerful tool, you can carry out a continuous monitoring of many programs and applications that are used daily, in a Same place, I must say that the first time I used this wonderful application surprised me, it has an optimal integration and in our university we can monitor almost 90% of the applications that we use from Datadog., Sometimes, due to the number of applications that we have integrated to Datadog, there may be certain bugs, or delays in the delivery of information, I have noticed in some cases, delays of up to 20 seconds, I do not understand why this is due When everything is connected to it, there should not be this type of delay in the delivery of information.\nG2.com, SeungYong O., Software Engineer, 4.5, It has enough features for monitoring, easy to use, good manuals, price-worthy., lack of notifications for breaking changes. I should check datadog blogs by myself to catch those changes.\nG2.com, \nbailey b., IT team, 3.5, Datadog has powerful integration. Practically, it can be supported with almost any service and it provides data collection with specific metrics and time series. The price is another great factor from Datadog, making it available and less expensive than the competition, especially for micro-services., This is not an easy software to learn. The learning curve is heavy and it will take some time. The UI is rough and it\u2019s something that definitely needs to be improved. Alerts are not precisely easy to set. This feature should be simplified.\nG2.com, No name, nan, 4, Really nice the way Datadog let the users search and do queries of a particular container/app, and also allows you to track related logs among other containers., Is not that easy to setup the different keywords or tags, by this I mean to allow the user to use some particular tags from logs to search/filter. You need to index those tags.\nG2.com, \nWilliam H., Executive Director, 4, It does not hinder other tools that I'm working with, when I work in datadog it does not slow down the computer or I block it and that seems great to me compared to", "doc_id": "74773a00-8ea0-44ea-8c3a-2447481985b5", "embedding": null, "doc_hash": "7eb3a0d6822ff040167383945517dde3b9ad238e5aa7555619e7891ef295edc4", "extra_info": null, "node_info": {"start": 95846, "end": 99987, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "68814d94-f4cb-45b6-bd96-e057286d2f56", "3": "f1d0e2c4-f8f3-478b-bd36-1d395e26f7d1"}}, "__type__": "1"}, "f1d0e2c4-f8f3-478b-bd36-1d395e26f7d1": {"__data__": {"text": "does not slow down the computer or I block it and that seems great to me compared to other platforms that when I open them slow down the computer and I can not work well, To put a profile picture in the datadog account, I have to register in another page to create an avatar and be able to put it in datadog I think it takes a long time to put a simple image should be upload a photo and go and not have to be registering in another page that takes me longer, choose not to put a photo that is not necessary and that I do not have time to be creating avatar\nG2.com, No Name, nan, 3.5, We use Azure which Datadog complies with which is beneficial for us. Very good at providing/displaying IT analysis for Management to understand., The interface is a little technical to use so IT still need to do a lot of the leg work when using this.\nG2.com, \nJames O., Middle Mgmnt, 4.5, Datadog is a great software for monitoring, provides a great overview of the state of the infrastructure at the time you want, the information and help that gives us the official website is very useful and quite good, I can have control of everything that happens in the system that could cause damage, we get graphics that show in real time the total performance of the system, besides the prices are quite accessible and also has many functions taking into account the good price., The support should improve a little, because when I have any questions and contact their explanations are not well known and can confuse me and I still leave with the same doubt without giving solution to the problem, however Datadog is a software that will comply with the work offered .\nG2.com, \nJason G., Engineer, 3.5, It is easy to manage to monitor the database in the cloud or servers, also integrates several cloud software tools, company and developer ready to use, maybe my profession is easy to use and is handled very well, from the principle I liked the technology that handled the platform so good, having to enter a platform to create an avatar to put in the profile picture auqnue is a different way of putting a photo should have the option of placing the normal photo that you want and not be mandatory to have to put the avatar created there are more important things to do to make an avatar to place it in the profile\nG2.com, \nChristopher L., IT, 5, System stats, software stats, API endpoints, events, dashboards, alerts, mobile apps, all in one. Datadog has a lot of pre-built solutions that you can implement in your infrastructure and if you will not find suitable solution you can build your own, great for AWS monitoring. Good customer support and documentation., Lack of Azure monitoring tools, Datadog is very complex in building your own solutions. A bit too expensive for it`s functionality,Not very good for Azure if you are going to use marketplace solutions. Most of these are made for AWS and you will have to make something similar by yourself.\nG2.com, \nCarolina S., nan, 5, La base de datos es segura porque con el registro de datos me mantiene informado de cualquier alerta que pueda presentarse con cualquier programa de aplicaci\u00f3n que pueda estar fallando y causando posibles da\u00f1os\n\nLos precios son muy econ\u00f3micos para saber tan buen servicio que ofrecen que ayudan mucho con este software con las funciones avanzadas y la visibilidad de aplicaciones como java, python, go y otras.\n\nEl soporte es muy bueno, resuelve r\u00e1pida y f\u00e1cilmente cualquier inquietud que tenga, es muy amable y comprensivo., No siento que me disguste alg\u00fan registro de datos porque toda la experiencia que he tenido con este software ha sido muy buena y me ha ayudado mucho porque si no entiendo algo me lo explican de una manera f\u00e1cil y sencilla.\nG2.com, \nJeremiah F., Senior Customer Care Engineer, 4.5, Although I'm not involved in the Deployment of Datadog, I use it's service", "doc_id": "f1d0e2c4-f8f3-478b-bd36-1d395e26f7d1", "embedding": null, "doc_hash": "a7a6f731db5a194196d12e82f8b0f6678dd19ade217dc662fcfde1af1632ced0", "extra_info": null, "node_info": {"start": 99985, "end": 103835, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "74773a00-8ea0-44ea-8c3a-2447481985b5", "3": "36cc1197-845b-4606-870b-731ad308677a"}}, "__type__": "1"}, "36cc1197-845b-4606-870b-731ad308677a": {"__data__": {"text": "Although I'm not involved in the Deployment of Datadog, I use it's service often to review alerts, logs, and Server Statuses. Recently I was tasked with building a Dashboard in React/Node. When it came time to figure out how to import Datadog without API access I found it was extremely easy to just pull an iframe from whatever charts/graphs I wanted., Although I don't have exact figures it's my understanding that Datadog is rather costly. All of the features are worth it though!\nG2.com, Nick H, nan, 5, Datadog as a solution based on the cloud, which works in an idea way the monitoring of implementations in the cloud, with a great set of API and analysis of records, not only it is possible to see the current status of its resources, you can also have data of them, you can always contact the helpdesk, the team works in a very responsible way and will help you find any solution to your problems, The system in the cloud has a fresh and current methodology, but from time to time some frames can not be presented on the open web due to security problems, but it's ok for me\nG2.com, \nAriadni-Karolina A., Principal Data Engineer, 5, Datadog is a monitoring service that gives you a great overview of the state of your infrastructure at any given time. I like how it works almost out of the box with many popular frameworks such as nginx, celery and django. The documentation and tutorials provided on the official website are quite good, and since Datadog widely adopted, it's easy to get one's questions answered., Datadog is a monitoring service that gives you a great overview of the state of your infrastructure at any given time. I like how it works almost out of the box with many popular frameworks such as nginx, celery and django. The documentation and tutorials provided on the official website are quite good, and since Datadog widely adopted, it's easy to get one's questions answered.\nG2.com, \nRex J., Marketing Manager, 4.5, The monitoring ability allows us to debug and troubleshoot our data and also be used to present analysis to upper management when needed, There is a high learning curve to get the initial onboarding configuration process to be working, which typically requires a developer or someone with extensive programming experience to set up.\nG2.com, No name, nan, 4.5, We use datadog to aggregate logs from very different source and easily dig through them. Viewing logs in context is amazing to identify and solve issues quickly, It\u2019s a bit more complex to setup than other alternatives\nG2.com, allan T, nan, 5, Datadog is a simple to install and use. It can be used across platform, on premise or cloud. You can monitor everything securely without installing many server because datafog is a SAAS monitoring solution. free version is available also., can cost a lost for big volume (more than 500 objects). Log retention politics is actually limited to 30 days and you need to ask for more. Price for 30 days is 2.5$ per object.\nG2.com, Cary W, Cloud Operations Engineer, 3.5, Fully customizable dashboards make it easy to see the things you look at most often. Also, it has a ton of integrations for alert systems like pagerduty and VictorOps, ticketing systems, AWS, etc., A lot of documentation found on their site is out of date. This makes it difficult to get things set up properly at times\nG2.com, Bess M, Lead System Analyst - Kronos, 5, Instant online chat support rather than waiting days for a return call. I also like that it is a java free web based program and that navigating the monitors via notification links is easy. Integration with an internal slack support channel helps organize monitoring into one channel rather than being mixed with email., For IP monitoring the IP has to be live to do the setup, would prefer if the setup could be done without the monitor being online yet but there is also an advantage to making sure it is up as part of the setup so that feature is both a like and dislike. We have had issues with monitors getting stuck and having to be restarted to clear.\nG2.com, Leena H, Event Manager, 3, It helps", "doc_id": "36cc1197-845b-4606-870b-731ad308677a", "embedding": null, "doc_hash": "976424f077c49a1993d86f13922ffac6f1fe192b4b1666e01e77b2a53fc2a794", "extra_info": null, "node_info": {"start": 103841, "end": 107929, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "f1d0e2c4-f8f3-478b-bd36-1d395e26f7d1", "3": "b1d6a962-e1e8-4fff-8ef0-b5fccc0a1260"}}, "__type__": "1"}, "b1d6a962-e1e8-4fff-8ef0-b5fccc0a1260": {"__data__": {"text": "to clear.\nG2.com, Leena H, Event Manager, 3, It helps us to monitor traffic on our website, Not very mobile friendly, some learning curve.\nG2.com, \nGary H., Software Engineer, 5, Datadog permits observing of all that you need without conveying extra equipment or using stockpiling in your datacenter. The greater part of your conceivable needs are secured by API commercial center, where you can discover bunches of answers for various use cases. You approach both current condition of assets and history of this state, so you can dissect your issues in review way to discover what was happening that time. Observing of both accessibility and execution of your administrations by using execution counters, log investigation and cautioning on explicit occasions. Incredible email and specialized instruments joining for warning purposes, permits to screen your frameworks proactively and discover conceivable issues previously genuine effect for your assets., Complex APIs settings to get wanted outcome. No disconnected arrangements and apparatuses, cloud living arrangement is cool and current methodology, however a few frameworks can not be presented to open web due to security concerns, and neighborhood intermediaries can influence the speed of information exchange\nG2.com, Mike D, Supervisor, 5, Framework details, programming details, API endpoints, occasions, dashboards, alarms, versatile applications, across the board. Datadog has a ton of pre-manufactured arrangements that you can actualize in your foundation and in the event that you won't discover reasonable arrangement you can assemble your own, incredible for AWS checking. Great client support and documentation.It does not prevent different instruments that I'm working with, when I work in datadog it doesn't back off the PC or I square it and that appears to be extraordinary to me contrasted with different stages that when I open them back off the PC and I can not function admirably, Absence of Azure observing apparatuses, Datadog is unpredictable in building your own answers. A bit unreasonably costly for it's usefulness There's loads of broadly utilized applications which log naturally to stderr, and this causes Datadog to arrange all that they log as a blunder, when it isn't the situation.\nG2.com, John E, Software Engineer, 4, Datadog has a nice dashboard that makes it extremely easy to use and very user friendly.\n\nEasily syncs with AWS.\n\nCustomer support is usually very quick and helpful.\n\nNot at all mobile friendly., Performs poorly on Microsoft Azure compared to how well it works with AWS.\n\nNot at all mobile friendly.\nG2.com, No name, nan, 5, They make it super easy to get metrics into datadog then to create monitors from those metrics, it is a bit pricey if you have many servers but it's also pretty worth it\nG2.com, No name, nan, 4, Easy to set up custom metric collection and dashboards. You get a lot of metrics collected automatically when you integrate with cloud providers like GCP. You get a lot of insight out of the data you collect., High price. Charged per. We're migrating off of it at work because we can't prevent it from charging us for every new ephemeral host we start with Dataflow on GCP etc. Usage based billing would make more sense.\nG2.com, Julian A, SRE, 4.5, It's written now in Go.\n\n- Allows integration with many tools and applications\n\n- Dashboards are just amazing\n\n- You can write your own scripts to parse logs and integrate them\n\n- You can monitor all your infrastructure on site or in the cloud\n\n- Agent installation can be automated.\n\n- Advanced graph functionality.\n\n- High level of customization.\n\n- Alert notifications via e-mail and PagerDuty\n\n- Full API access\n\n- Sampling intervals of 10 seconds\n\n- Mute all alerts with 1 click during upgrades and maintenance\n\n- Supports Windows, Linux, and Mac\n\n- Datadog\u2019s overall robustness\n\n- Easy to create custom graphs and metrics on the fly\n\n-", "doc_id": "b1d6a962-e1e8-4fff-8ef0-b5fccc0a1260", "embedding": null, "doc_hash": "8e801960acb71b5c3eb4df0736a81f54a95c2e835afe28746f09d8883022c32c", "extra_info": null, "node_info": {"start": 107947, "end": 111871, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "36cc1197-845b-4606-870b-731ad308677a", "3": "b54e2b2b-366b-4afe-8ff7-80ffeb88d77c"}}, "__type__": "1"}, "b54e2b2b-366b-4afe-8ff7-80ffeb88d77c": {"__data__": {"text": "Easy to create custom graphs and metrics on the fly\n\n- Monitors resource metrics well, Price. It's not cheap\n\n- Heavy learning curve to several key features.\n\n- Not very good for Azure\n\n- The datadog agent eats a bit too much memory\n\n- No significant cons, though I'd like to be able to monitor RDS health without integrating to the entire AWS.\nG2.com, Kellan O., Technical Support Representative, 4.5, I love how easy it is to design dashboards and the fact that DD pulls data from almost any part of our infrastructure., Datadog does not integrate directly with Azure alerts or MongoDB Atlas.\nG2.com, No name, nan, 5, The Datadog team keeps building new features that we need before we even know we need them! They are so quick to add features and fix bugs that we report., Not really a dislike but their APM and logging still lag behind some of the more mature products out there. They are rapidly improving both though and they're very much usable.\nG2.com, \nIgnacio A., Web Developer, 4.5, its alert system, it helped to quickly identify an ongoing issue in PROD, some of its query filters are hard to understand\nG2.com, Adam H, CTO, 5, It lets me know when my servers are having issues when they happen, instead of when an end user on the server contacts us. This has been critical for our operations, as occasionally there are some rogue processes that hog all of the server resources., It doesn't have a great solution for PHP.\nG2.com, John B, IT manager, 5, The ability to see the metrics across our whole stack in one place., I have nothing to dislike. The product is super helpful\nG2.com, \nKranthi K., nan, 4, Datadog is used by multiple teams in our company to constantly monitor the infrastructure and make sure that the systems are working smoothly.\n\nDatadog offers a simple and very easy to use interface which makes it easy for us to train the new team members on the tool.\n\nDatadog also offers a vast variety of integration with third party tool which makes it easy for us to build custom reports and alerts., The initial deployment of the tool can be a little challenging especially if you have not used the tool before.\n\n2. The delays in the monitoring agents can be reduced as sometimes it is very critical to receive the alerts in real time and delays can lead to system failures.\n\n3. The pricing of the tool is also a bit high as compared to other APM's.\nG2.com, Kent L, support engineer, 4.5, Extremely well detailed analytics for our cloud services, A little bit on the pricier side, so we need to scale back on our usage at times\nG2.com, No name, nan, 4.5, Setting up alerting for Windows servers and Linux containers was very easy. We had this plugged into our Dev systems all the way up to production systems within days., Having to adjust our tagging strategy/naming conventions in AWS to make dashboards for some instances. We have same server setups in dev environments through production and don't want individual dashboards. having them tagged correctly allows us to be in one view and just change environment through drop down menu\nG2.com, No name, nan, 4, The simple it is to get started, just install the agent and create a dashboard. Then personalize the metrics you want to track, So far I didn't find anything to strongly dislike. Everything is pretty much very well done.\nG2.com, No name, nan, 4.5, It provides united view of logs from multiple servers that is best, It doesn't maintain the history of logs.\nG2.com, Pascal L, Release Manager, 4, Data Dog is really great at collecting data and give real-time perfomance metrics.\n\nIt is super flexible and work for all the technologies that we are using.\n\nAlso it is super easy too configure an alerting system like Pagerduty to notify us if something is odd., Within Data Dog, the dashboarding is quite hard to figure out.\n\nThere is time were too much information is just disturbing. Data Dog could fall in this pattern", "doc_id": "b54e2b2b-366b-4afe-8ff7-80ffeb88d77c", "embedding": null, "doc_hash": "231cc77ef017a99d48a3f4e52ecd1a722c12cc278b2e28aa893acdb4aa746bfd", "extra_info": null, "node_info": {"start": 111872, "end": 115780, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "b1d6a962-e1e8-4fff-8ef0-b5fccc0a1260", "3": "28e00375-f4da-4f42-8df0-4a4ca3bbf53c"}}, "__type__": "1"}, "28e00375-f4da-4f42-8df0-4a4ca3bbf53c": {"__data__": {"text": "is time were too much information is just disturbing. Data Dog could fall in this pattern if you don't design properly your dashboard.\nG2.com, Luke H, SecDevOps Engineer, 4, Datadog's myriad integrations make it useful for monitoring just about any web stack you can imagine., The permissions model for dashboards make it a free-for-all. You have two choices, admin or unprotected. If the dashboards are unprotected, anyone can edit them. In larger team environments where users have varying levels of skill and a different view of which metrics are important, this can create a mess.\nG2.com, No name, nan, 3.5, It's a very good tool for data related queries, User Interface need to be improved. There can be more detailed statistics graphs\nG2.com, Jack J, Angular Developer, 4, It has a simple, clean and effective user interface. It provides advanced graphs and proficient documentation. It has a good pricing model. It brilliantly measures memory and CPU usage, Its installation can be confusing for a beginner. Logging capabilities of datadog are not very robust. The free version has limited features.\nG2.com, No name, nan, 2.5, Ability to create monitor/alerts and dashboards. Alarms are useful too. Dashboards are nice and lot of options to create graphical representations., Learning Curve is not straightforward, often there is latency in logs and you have to know your filters to search for events, it's not easy to identify based on filters attributes.\nG2.com, Peaveen T, Software developer, 4, The alerts are sent to email instantly and makes the job easy for the developers to monitor what's wrong in case with the applications., The UI in the web is little cluttered up and needs to be polished more.\nG2.com, Ramesh V, C++ Developer, 4.5, 1. User Interface is very good.\n\n2. API is flexible. Designed with keeping Developer view in mind.\n\n3. Good Admin part for team., I did't came across anything I feel disliking about.\nG2.com, Piyush G, Programmer Analyst, 4, -Very easy to use\n\n-It works for all technologies that we are using\n\n-its helps us writing our own parse logs and integrate them\n\n-Graph functionality within dotadog is very advanced as compared to other apm's\n\n-Staff is very supportive, Soemtimes working with the dashboard is little hard and i think the datadog agent eats a much memory as compared to other monitoring apps\nG2.com, No name, nan, 5, Dashboards let me display all important system status' on a single screen., This is a tool that I genuinely have no dislikes of.\nG2.com, No name, nan, 4, Super flexible and tons of metrics by which you can set alerts and build dashboards, You have to be pretty technical to use the product.\nG2.com, Mattew F, Capacity engineer, 5, I liked how easy it was to get my on-prem and AWS systems into the same dashboard and system., For me, I would have liked to seen pricing based on data points ingested, not just node count. This can cause things to get pricey pretty fast.\nG2.com, Philip E, nan, 4, We used Data Dog for our Saas and Paas alerting and incident monitoring. It integrated very nicely with our other systems, we integrated with Hipchat for instance to monitor some of our critical services. Our team could then keep an eye on issues as they develop and see trending problems very easily. The visualizations are very cool, while we tenedd to not get too much use out of them., I mostly have nothing negative to say, the pricing is very reasonable, the integrations are great. I suppose if I had to come up with something it would be that there can be a somewhat overwhelming amount of information being presented sometimes but once you get past the learning curve it is not bad at all.\nG2.com, No name, nan, 1.5, This Datadog service is very convenient with its structure for tracking personal site statistics, tracking, To master it you need to spend a lot of practice, this is a big minus, not everyone can", "doc_id": "28e00375-f4da-4f42-8df0-4a4ca3bbf53c", "embedding": null, "doc_hash": "1fc42f3ec9663ae040da29f55c21145ce4c5ca79e8862ff2288d59eb07a530c6", "extra_info": null, "node_info": {"start": 115752, "end": 119647, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "b54e2b2b-366b-4afe-8ff7-80ffeb88d77c", "3": "1c72ea81-28e2-4e4a-ba15-7ae788d5c584"}}, "__type__": "1"}, "1c72ea81-28e2-4e4a-ba15-7ae788d5c584": {"__data__": {"text": "it you need to spend a lot of practice, this is a big minus, not everyone can understand it.\nG2.com, No name, nan, 4.5, I really wish I had more systems to view. The dashboards and deep dive charts are excellent and easy to view and action on. Great use of color and charting to divide metrics., Not great for our small operation due to cost.\nG2.com, Ernest M, nan, 5, System stats, software stats, API endpoints, events, dashboards, alerts, mobile apps, all in one. Also basic APM and logging. Cloud integration plus agents, and extensible checks. Beats using something like nagios hollow., Expensive at scale, very little discounting.\nG2.com, Umesh R, Sr. Software engineer, 4, Easy to make health dashboards for all the services., The only thing that I dislike is there is no search for type of errors you need to filter.\nG2.com, Matt P, Principal Devops eng, 5, I most like the fact that I have nearly complete control of what and how I monitor my infrastructure, but am not tasked with maintaining the monitoring infrastructure., Some parts of the featureset are robust yet not intuitive. I would ideally like some cycles to be spent polishing those up.\nG2.com, No name, nan, 4, DataDog keeps up with features and platforms that modern team deploy and maintain. For example K8S and Containers, The UI can ben less than intuitive and could use some more UI tips IMO\nG2.com, No name, nan, 4.5, The fact that its extremely easy to get started. The agent install is a one line command and you are good to go. Integration with all popular channels such as Slack, Pagerduty. Ready made dashboards add to the charm as absolutely low barrier to entry and sensible defaults., The fact that its extremely easy to get started. The agent install is a one line command and you are good to go. Integration with all popular channels such as Slack, Pagerduty. Ready made dashboards add to the charm as absolutely low barrier to entry and sensible defaults.\nG2.com, \nStephen V., Director of Engineering Operations, 4.5, Highly performant visualizations and metric math. Very cost effective for their metric service, Logs service is expensive, although reasonably so. Somewhat frequent issues with metric ingest.\nG2.com, Manoj A, Lead Consultant, 4, Have used datadog for log analysis and it's features were very helpful, With respect to user experience it has to be improved\nG2.com, \nliguetta D., nan, 4, Monitoring of Docker containers and other containerization methods and approaches., Only available for modern deployment methods and not for legacy deployments.\nCapterra, Dnyanoba M., Deputy Manager, 5, The best feature of data dog is real time monitoring of logs and vulnerability scan which stands unique to save the server and cloud from further damaging, The datadog user interface is very hard to learn and with the minimum training anyone cannot operate it fully also a lot of integrations are very difficult to operate.\nCapterra, Verified Reviewer, nan, 4, One of the most praised features of Datadog is its comprehensive and flexible monitoring capabilities. It can collect and analyze data from various sources, such as servers, containers, databases, and cloud services, providing a unified view of the entire IT infrastructure., Datadog pricing model, which can be relatively expensive for smaller organizations or startups\nCapterra, Jim L., Engineer, 4, The dashboards and alerts are great for monitoring system status. The automated tests are great for checking the status of our systems externally., Because they are a one-stop shop it is difficult to figure out the exact tooling you need for a problem. They are solving EVERY problem so it's hard to sort things out.\nCapterra, Hyma Roshini G., Software Quality Analyst, 5, Able to see spikes on the dashboard , easy and fesiable, Takes more time sometimes to monitor logs\nCapterra, Christina Z., it specialist, 5, A lot of fun for less money. Great software for monitoring", "doc_id": "1c72ea81-28e2-4e4a-ba15-7ae788d5c584", "embedding": null, "doc_hash": "4166ea8ba6d1e759056d6831fb4208acb3d6a312ed154bb5a6474bf333a19141", "extra_info": null, "node_info": {"start": 119661, "end": 123593, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "28e00375-f4da-4f42-8df0-4a4ca3bbf53c", "3": "d0484d59-55d2-4197-84b6-7d9eed3bc501"}}, "__type__": "1"}, "d0484d59-55d2-4197-84b6-7d9eed3bc501": {"__data__": {"text": "it specialist, 5, A lot of fun for less money. Great software for monitoring kubernetes infrastructure. Very clear dashboards, monitoring is very intuitive, great to use. Setup is simple and installation of the agent on PC was seamless. Aggregate views into one clear dashboard and monitor all metrics at the same time according to various filters and parameters. Many additional features to enrich the data. User friendly., In the time I have been using it I have not found anything that would not suit me with DataDog I have been very satisfied and it has met my expectations.\nCapterra, Mbonjo R., Network Engineer, 5, Using Datadog has been an amazing journey, the feature of providing a unified view of the entire infrastructure of the system making it easier to work on makes it amazing, I haven't encountered any deficiency using Datadog\nCapterra, Verified Reviewer, nan, 4, Search Filter I liked the most in Datadog. We can easily find the desired data thru search parameters and on top of that we can filter out the data by specifying a date range., In the Search filter, we have to follow specific Datadog standards. It becomes slow when data is available in large amounts.\nCapterra, Jaspreet S., Software Engineer, 5, Its one of the best monitoring tool i have used so far. The UI is very beautiful, simple and easy to understand. Monitoring is very accurate and quick due to the UI.The log for servers can also be analyzed by simply searching via clusterid or other tags., None that I'm aware of. It does its work perfectly and accurately.\nCapterra, Laura D., Softwaredeveloper, 5, I really like that datadog offers a free tier to get startet with it. It helped building a net of monitoring around our servers and services. We have implemented a wide collection of (they call it synthetic tests) that we use as an continuous integration test suite. We even can monitor the performance of different application versions., Even if their locally installed agent on our servers is very flexible and can collect so many information, the configuration via YAML files is difficult to start with. The learning curve here is pretty steep in the beginning.\nCapterra, Tarang K., DevOps Engineer, 5, Some of the pros of Datadog are:1. The APM feature of Datadog is quite useful.2. You can stream logs into it too.3. Its easier to look into metrics history4. Managing the downtime for various resources is simple.5. Visualization provided in the dashboard is quite intuitive., 1. JSON parsing of logs can't be done.2. It has a bit lack of proper documentation.3. Navigating to new areas in the dashboard can be a hassle.4. A bit overwhelming for newcomers.5. It has more customizations but less simplicity.\nCapterra, Oskar R., Technical project leader, 5, One of the most notable things that I like about Datadog is its ability to provide real-time insights into the health and performance of IT systems, including servers, applications, networks, and cloud environments. Its wide range of monitoring and analytics features, including performance metrics, event logs, and alerts, can help teams identify and diagnose issues quickly and accurately, enabling them to take corrective action more efficiently., I have reported that Datadog can be expensive, particularly for larger organizations or those with complex IT systems. While Datadog does offer a range of pricing options, including usage-based plans, some users may find it difficult to justify the cost of the platform, particularly if they have limited IT resources or budget constraints.\nCapterra, Alexander H., President, 5, We were up and running in one night. I have minimal dev skills and required my dev to setup with me. Seemed really easy with even the knowledge I had and the free trial made it simple to try., When you initially signup make sure you choose the right server to log into. That should be in BOLD.\nCapterra, Paulo C., Founder, 5, Generous free plan with detailed information both on server and application monitoring., Nothing unusual. Being a paid platform, it naturally set limits on its free plan", "doc_id": "d0484d59-55d2-4197-84b6-7d9eed3bc501", "embedding": null, "doc_hash": "1b63c0820d1234c32c40edbd23bac8aad0129e301640edb807b4ca78efef9dac", "extra_info": null, "node_info": {"start": 123592, "end": 127672, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "1c72ea81-28e2-4e4a-ba15-7ae788d5c584", "3": "b9455574-e3cb-4838-95d0-00256ab31595"}}, "__type__": "1"}, "b9455574-e3cb-4838-95d0-00256ab31595": {"__data__": {"text": "Nothing unusual. Being a paid platform, it naturally set limits on its free plan (fair) but, for this reason, you may prefer the responsibility to deploy an open source alternative (to remove those limits) instead of upgrade to a paid plan.\nCapterra, Verified Reviewer, nan, 4, I liked the ease of use and the comprehensive monitoring capabilities that Datadog provides. The ability to quickly set up and customize dashboards to monitor application performance and health was very helpful. Furthermore, the alerting system was incredibly helpful in identifying problems quickly., I found that the dashboard setup and configuration process was a bit cumbersome and confusing. It took me a while to figure out how to customize and configure the dashboard to my specific needs. Additionally, I found the pricing to be quite expensive for the features it offers.\nCapterra, Verified Reviewer, nan, 5, Datadog is a user-friendly tool with strong visualization capabilities that allows for real-time monitoring of application and infrastructure performance. Its intuitive dashboard and efficient alert system make it an ideal tool for quickly addressing any issues that may arise, The downside of using this tool is the limited data granularity and customization options in the dashboard. There are very few possibilities to personalize the dashboard and the data displayed, which can make it challenging to gain the desired insights.\nCapterra, Verified Reviewer, nan, 4, I liked the fact that Datadog is extremely user-friendly, making it easy to set up and use. It also provides a great variety of features and integrations that offer real-time monitoring, alerts and analytics. The detailed metrics and reporting make it easy to identify and track performance issues, and the visualizations provide a great way to quickly understand performance trends., My least favorite thing about Datadog is the high cost associated with the service.\nCapterra, Verified Reviewer, nan, 4, I liked the fact that DataDog provides an easy-to-use platform for visualizing, monitoring, and alerting on all my infrastructure metrics. It's very comprehensive and the integrated dashboards allow me to quickly identify any issues. It's also great that it can integrate with other technologies, allowing me to have a complete view of my system., I didn't like the complexity of setting up custom dashboards and metrics. It was difficult to find the right combination of settings and tools to get the desired result.\nCapterra, Verified Reviewer, nan, 5, Dashboards are very nice, agents install easily and granularity can be adapted to your stack., Is expensive, very expensive. It makes sense if you don't want to worry about where to put your data.\nCapterra, billl w., dir of platform engineering, 5, the ease of implimentation and the ability to capture meaningfully info easilyquickly, it's super expensive....almost cost prohibitive\nCapterra, Isak P., Developer, 5, The interface is user-friendly and easy to navigate, and it provides detailed insights and analytics that allow me to identify and troubleshoot issues quickly. Datadog integrate seamlessly with other tools and services, giving us a great overview of our infrastructure., The most significant drawback is its price, which may be expensive for small businesses or organizations.\nCapterra, Maalainine Y., Head of Infra, 5, Datadog is on of the best observability tools. Well integrated in modern cloud infrastructure and applications, I would say the cost and cost management. From a FinOps perspective they can do better.\nCapterra, Verified Reviewer, nan, 5, I like Datadog APM which help our developer to troubleshoot various deep level issues., probably the integration with log management with DD trace with APM, as we have some difficulties link the log injested with trace ID etc but some of logs are not linked with APM. I hope there's a better compatibilities with custom PHP application with APM & Log management\nCapterra, Ryan C., CTO, 5, Love the ease and granularity you can get with APM. I use it weekly (almost daily) to see what are our underperforming DB queries and API calls, and has a nice correlation to the underlying timings. Ease of deployment was very important and also super", "doc_id": "b9455574-e3cb-4838-95d0-00256ab31595", "embedding": null, "doc_hash": "9f6a9d490a4386e218210f5ff899b3b309b81bae60de3c976f99910ee5de0b31", "extra_info": null, "node_info": {"start": 127669, "end": 131910, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "d0484d59-55d2-4197-84b6-7d9eed3bc501", "3": "0273158c-ddd2-4574-ae6c-5061fb24282a"}}, "__type__": "1"}, "0273158c-ddd2-4574-ae6c-5061fb24282a": {"__data__": {"text": "to the underlying timings. Ease of deployment was very important and also super simple. In a Kubernetes environment, we got a lot of powerful tooling simply by adding the datadog agent, Given the billing model, it is WAY too easy to get overcharged. We had an accidental infinite loop in our software and a logging statement in that loop. Because of that simple bug, we got charged 10x our normal monthly charges!\nCapterra, Josh Z., Staff Site Reliability Engineer, 5, Compared to our previous observability tool it was incredibly easy connecting Datadog to all of our data sources. All the connectors we needed were already created so my team didn't have to spend time writing code to collect and send telemetry., Some features can be a bit expensive such as synthetic tests and while there are tools to help track spend, there could be a bit more granularity in the RBAC on who can turn on features that have additional.\nCapterra, ryan l., it director, 5, It is easy to provision and integrates into modern applications, For basic monitoring of our legacy solutions, the software is to expensive\nCapterra, Rafeek M., SRE Engineer, 4, Metrics collection and it's representation, also would like to engage in RUM and synthetic monitoring., All are good, nothing to suggest anything\nCapterra, Sandeep J., Systems Engineer, 5, I need not have multiple monitoring solutions for different Applications. So, creating combined Dashboards/Monitors/Alerts is very convenient., Pricing is a little on the high end, but it's definitely worth it .\nCapterra, Marcos F., SRE Team Lead, 5, For us the most liked feature of Datadog is the possibility to compare all data that we received from our platform. Being able to compare the platform status, the network status, the performance traces, the logs is really helpful letting us find issues where we couldn't find if we will do it manually., Datadog is great but it misses something, for example it could include a self remediation tool. Since every server has already installed a Datadog agent it would be so helpful if with the UX we could add, edit or delete custom checks in python or something like that, and if we could automate some actions programmed in the UX so we could work and integrate with escalation policies, alerts and more.\nCapterra, Shagun R., Cloud Engineer, 4, Datadog provides real-time insights into the performance of applications, servers, and services. It helps you quickly identify and troubleshoot issues before they become critical.Datadog is easy to set up and use. It requires minimal configuration and supports various cloud services and integrations, It provides a comprehensive monitoring system for both on-premises and cloud-based applications., Limited Customization Options: While Datadog provides a lot of pre-built dashboards and visualizations, it does not support extensive customizations.Datadog is a high-end monitoring platform, and its pricing reflects that. It can be expensive for small businesses, especially those who don't have a large budget for monitoring software.\nCapterra, Ben C., VP of Software Engineering, 5, Easy monitoring and debugging of issues., Pricey for our scale. Some search features are not fully integrated into our main workflow (APM)\nCapterra, Jay L., Enterprise Architect, 4, Correlation between APM, Infra, Log, Network and everything can make it possible to view in multiple dimensions. Also, RUM feature is so strong to cover the end-to-end observability in realtime., One of the most expensive tool. And it could be challenged by the management.\nCapterra, Ashok R., SRE, 4, Building Dashboards, Observability at the granular level, Terminology , need to distinguish different resources and not tag them as one\nCapterra, Parag D., leader, 4, Will need to learn before commenting. Generally good dashboards but heavy lift and too little help from DD., Company seems difficult to have deep conversations or even pointers to assist, without having to pay for even 1 hour...\nCapterra, Garrett S., Senior System Administrator, 5, Ease of use, flexibility of dashboard creation and views., Almost too many configurations make it feel", "doc_id": "0273158c-ddd2-4574-ae6c-5061fb24282a", "embedding": null, "doc_hash": "34dc70b5a37c1177a26ad0b35d3d50924a96206b246357344c8dad9704233c48", "extra_info": null, "node_info": {"start": 131911, "end": 136055, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "b9455574-e3cb-4838-95d0-00256ab31595", "3": "0a13f4dd-7723-4ab1-8c78-ad41d2c9660a"}}, "__type__": "1"}, "0a13f4dd-7723-4ab1-8c78-ad41d2c9660a": {"__data__": {"text": "of use, flexibility of dashboard creation and views., Almost too many configurations make it feel overwhelming. there could be a little more documentation and guides to help point you in the right direction or have related tools in the datadog subset.\nCapterra, Verified Reviewer, Platform Lead, 5, We do like easy management and analysis of logs, tracing., Helm charts is bit hard to understand. Configuration might be hard for non experienced person\nCapterra, Donald H., Software Engineer, 5, easy filter logs and find errors- ability to setup alerts based on logs, was a little challenging to get the alerts setup just right but once figured out, it was easy going forward\nCapterra, Chris C., Head of Infrastructure, 5, Best user experience-Unified view of all metrics. It is a lifesaver when troubleshooting performance issues-A broad range of product offerings, Expensive!-The pricing model isn't as flexible as it should be. You can only adjust your yearly contract 3 times per year.-Expect to spend more time managing costs than you would like.\nCapterra, Kyle W., VP of Engineering, 5, We now have billions of logs hitting Data Dog every month. It's a great tool for monitoring and debugging what is going on in the platform. We have alserts setup based on the logging so we are instantly notified of any issues., Some of the JSON parsing on nested logs come out a little wonky. We overcame this by adding specific logs from our applications that we can search on.\nCapterra, Srinivas N., Vice President, 5, Service Map, Session Replay, Custom metrics and monitors, We had a sticker shock after onboarding, as the was the hosts were counted for certain infrastructure was not clear from the documentation.\nCapterra, Gijun L., Principal Solutions Architect, 4, We evaluated the log part due to the budget at this. time. Datadog implements seamless experience with our applications with minimum configuration., Interface seems a little bit outdate while it conveys the information that we are looking for.\nCapterra, Gavin M., Engineer, 5, Easy all in one platform. It connects to a ton of providers and gives me easy access, Cost. It expensive . Wish there was a free tier\nCapterra, Isaac J., Principal SRE Architect, 5, I can handle ALL things in Datadog. I have an answer for CI / Pipelines, arbitrary metrics, trace data, logging and more., There are a lot of specific costs. Compare, if you will, with NewRelic (all features are free) or Dynatrace (cost on retention and davis units). If you enable \"all the things\", it can be costly.\nCapterra, Matthew R., Director of Platform, 5, The software can scale with the business needs. You can start with basic features or leverage many as you like (for $$) to gain deeper insights. Engineers once onboarded use it heavily to spot issues or troubleshoot more obscure bugs both in production and development., You often need to review usage and costs. Misconfigurations, migration projects (where legacy + new infrastructures are required), integrations which may cause double reporting need to be observed to prevent run-away spend.\nCapterra, Drew M., Software Architect, 4, Overall observability is good, and the way all of the offerings interact is helpful., basic APM requires code customization, which isn't the case with competing products. Documentation for anything beyond basic integration is lacking. Customer support is a bit of a bait and switch; great during eval, and bad once you've bought the product.\nCapterra, Phi Vu N., Engineering Manager, 5, Realtime User Monitoring is a great feature that helps us to support customer requests., I don't see cons for this product yet. Everything is ok so far.\nCapterra, Matt H., Devops Engineer, 5, I love the ease of use, the up-to-date documentation, and the product capabilities., Support is slow and lacking, costs can get out of control fast and are not straightforward.\nCapterra, Justin H., Senior Engineer, 4, Easy to get all of our various sources of data into the platform., Murky", "doc_id": "0a13f4dd-7723-4ab1-8c78-ad41d2c9660a", "embedding": null, "doc_hash": "c13ef54f62cc0c02e5214249505fd6643dd3640f31a485978d166828355980c1", "extra_info": null, "node_info": {"start": 136040, "end": 140038, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "0273158c-ddd2-4574-ae6c-5061fb24282a", "3": "2ad1d5ea-2e57-4b5d-9c89-8b0d8b6056ca"}}, "__type__": "1"}, "2ad1d5ea-2e57-4b5d-9c89-8b0d8b6056ca": {"__data__": {"text": "4, Easy to get all of our various sources of data into the platform., Murky pricing model, dashboarding options are limited compared to other products.\nCapterra, Gaspar R., Principal Infrastructure Engineer, 5, Ease of use and integrations. Log management is outstanding, as well as Kubernetes integration, Lack of a simple Prometheus integration. Agent configuration docs (for specifics) is sometimes hard to find\nCapterra, Jason C., Senior Platform Engineer, 4, Super easy to spin up and deploy, especially in kubernetes., It is expensive for a company our size, we need to decide which logs are important to keep.\nCapterra, Cara M., Sr. Cloud Engineer, 5, Being able to combine all of our analytics tools in one place makes it easy to find the right information to investigate, monitor, and resolve operational issues quickly. Combining products like logs and APM traces makes both tools even more powerful for finding and understanding problems with our applications., If there's one drawback, it's the cost, which can become expensive for monitoring high-throughput systems or systems with a lot of hosts.\nCapterra, Supriya K., RPA Developer, 5, Datadog provides a great, easy-to-use and extensible interface for displaying data., The log analytics process is complex, difficult to analyze.\nCapterra, David G., Software Architect, 5, Can monitor ANYTHING. Centralized place for log analysis, security monitoring, end user monitoring, custom business metrics. Report and alert., Some items visible in the UI are not capable of being monitored. Unable to get APM for PHP working under litespeed.Improvements in alerting would be nice, better escalation, SMS integration, etc.\nCapterra, David D., Director of Security, 4, perfect tool for public cloud AWS based company with also internally using SaaS tools only ... Huge number of connectors, usable dashboards and reporting, quite nice and fast search in logs which is good for incident/security incident investigation, we integrate yet with another tooling like Laceworks ... I think one tool can't fit all use cases\nCapterra, Aviram R., Developer - devops, 4, All in one shop. APM, DB monitoring , synthetic transaction and log analysis, APM does not work well on nodejs asyc services. Might be hard to track transactions.\nCapterra, P S Syed K., Senior Technical Advisor, 5, Real User Monitoring and Application Performance Monitoring, End to End Tracing for .Net applications\nCapterra, Daniel L., CTO, 4, Easy to setup, looking through logs was straightforward, Doesn't have enough support for vercel serverless functions\nCapterra, Eric K., Owner, 5, I was amazed at how fast logs are searched, indexed, and filtered for a very reasonable price., The greatest difficulty was figuring out the pricing structure. It is very reasonable, but also very flexible, which creates many options when trying to discern index logs vs non-index logs vs. retention, etc. They were very supportive during my setup and had a few calls to discuss setup and answer my pricing questions.\nCapterra, Andy Q., Software Developer, 4, DD is great at ingesting and centralizing logs and infometrics generated across multiple applications within an organization and allows an easy overview, and easily drilling into specific instances, It can be difficult making sure the data is being aggregated correctly in the \"DD-esque\" way\nCapterra, Marco S., VP of Engineering, 4, lots of integrations readily available. Setup is quick and easy to have results back., cost, and no transparency on what the cost breakdowns, and how to improve/reduce them.\nCapterra, Verified Reviewer, nan, 5, Log Management for DataDogHQ is: Cheap, Easy to Use, Great Timeline UI., I think searching for logs by text has not always been the easiest to do.\nCapterra, Scott B., Director of Site Reliability, 5, It's pretty easy to get a lot out of Datadog right out of the box -- the AWS and other integrations are amazing and easy to use., It's REALLY expensive.It's not so easy to really really tweak the", "doc_id": "2ad1d5ea-2e57-4b5d-9c89-8b0d8b6056ca", "embedding": null, "doc_hash": "2a163764031eb47cf87b305be3324a92d8a1c35b2223d599ca41356e0114f0cb", "extra_info": null, "node_info": {"start": 140061, "end": 144071, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "0a13f4dd-7723-4ab1-8c78-ad41d2c9660a", "3": "635a43aa-23d9-4e2e-a76d-ae12f2968888"}}, "__type__": "1"}, "635a43aa-23d9-4e2e-a76d-ae12f2968888": {"__data__": {"text": "to use., It's REALLY expensive.It's not so easy to really really tweak the dashboarding and alerts to do more advanced mathematics or analysis.\nCapterra, James O., Senior Manager, Engineering, 5, Ease of use and flexibility. Beginning teams can leverage out of the box but you can grow into this product as it is quite feature rich. The product just works., It is so expensive that we consistently have to trim usage when not needed. Also due to this we have to justify the product constantly\nCapterra, Andrew G., Sr. Engineering manager, 4, Flexible logging with JSON payloads, ability to act on ingested data without indexing., Cost correlating to indexed logs makes some of what I'd like to do infeasible. Facets and some other concepts are not very intuitive\nCapterra, Joseph G., Systems & Network Admin, 5, Able to ingest system logs, app logs, and other logs along with process stats and system metrics to get a wholistic picture of how your servers and applications are running for your business., Setup does take a while and there is several configuration files to adjust, but once this is done you will not need to touch them again for the lifecycle of the install.\nCapterra, Ivan C., Head Of Engineering, 4, Application Performance Monitoring and USM, It's hard to know up front how much a particular configuration is going to cost\nCapterra, Mark D., VP of Engineering, 5, Being able to funnel AWS CloudWatch logs into Datadog made speed of deployment of Datadog incredibly fast - days instead of weeks.The log searching and faceting are extremely powerful. It's responsive, everything loads fast, and I can find single log lines in seconds., Being able to create facets on historical data would be great.When digging into log lines, being able to navigate back to previous lines that we read through would be great too. Sometimes we're clicking around so fast that a log line is long gone. I end up copying the URL and pasting it into a doc so I can refer back to it.\nCapterra, Jacob V., Systems Administrator, 4, Multiple tools / functions we needed provided by one service., Some services need additional development/features. Specifically I would like to replace our Site24x7 SLA reports with DataDog SLO monitoring / reports, but features and functionality are not there yet. We have also had less than stelar experience with DataDog support, basically being non-responsive.\nCapterra, George L., DevOps, 5, APM IntegrationLogs ManagementAlerts and NotificationsEasy to integrate with any cloud \"out of the box\", nan\nCapterra, Jeff G., Tech Director, 5, Datadog is intuitive, easy to configure, and easy to use., The cost for Datadog is too expensive.\nCapterra, Shervin Z., Senior Cloud Systems Engineer, 5, Diligence, details and deep of monitoring all detail., capturing every single details, validity of details and more importantly capability to monitor everything!!!\nCapterra, Krista V., QA Lead, 5, As a non-technical QA person, I needed a tool to help automate tests without a lot of the technical aspects. Datadog allows me to build and schedule tests by clicking through the online version of our tool, making it incredibly simple. It also records what's wrong and allows me to edit the paths at any time if we ever make changes., I wish I was able to use this same functionality for our mobile app or even for processes like account creation. Since we push our sign up through a payment portal we're unable to use Datadog in the same was there.\nCapterra, Tim C., Director, Software Platform Development, 5, Datadog is a solid and stable product. They provide easy to use features and functionality that sets the standard for APM and Security tools - and their suite of tools is continuously expanding to important areas. The APM capabilities were able to handle our complex technology stack with little to no configuration necessary., Not necessarily a con, more of a caution to monitor your consumption.. We worked with the customer success team to ensure our account was right sized based on forecasted usage. In the beginning we had to monitor our on-demand consumption as we outgrew our initial needs, this was handled incredibly well by the Datadog team, but you do", "doc_id": "635a43aa-23d9-4e2e-a76d-ae12f2968888", "embedding": null, "doc_hash": "22e8fc6b0511a8ea668d61815cc8b8d32620549cdcd0422db589a115e58b8f6a", "extra_info": null, "node_info": {"start": 144071, "end": 148265, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "2ad1d5ea-2e57-4b5d-9c89-8b0d8b6056ca", "3": "43b721e9-efe0-41e3-b387-e32a09609efd"}}, "__type__": "1"}, "43b721e9-efe0-41e3-b387-e32a09609efd": {"__data__": {"text": "our initial needs, this was handled incredibly well by the Datadog team, but you do need to keep an eye on your own consumption to avoid additional costs.\nCapterra, Scott S., Head of Engineering, 5, Easy to use, wide range of features all in one solution, dd-agent setup in Aptible is not usable or difficult\nCapterra, Rushabh P., Technical Specialist, 5, The Ability to pattern millions of log entries., The performance of the log ingestion reduces if more than 200 files are open. We have to constantly restart the agent and reach out to support but do not get much help.\nCapterra, Adam J., CISO, 4, We use this as our SIEM. It's not quite as easy touse as Splunk but it gets the job done at a much nicer price., Search interface/language is unintuitive.\nCapterra, Agustin S., Head of Infrastructure, 4, We discover Datadog as a better alternative to NewRelic which was extremely expensive.We found that Datadog is a very powerful tool with tons of features and services. It provides very detailed performance insights such as speed, latency, uptime, potential threats, etc. We use it mainly for Application monitoring and Real User Monitoring, and we found out that it correlates events between different services which makes it very easy to pinpoint issues with our apps., It was a little hard to installed all the integrations.And because of a lack of communication with our account managers we ended up paying much more than we thought when deciding to switch to Datadog.The integration with AWS resulted in all host from all environments to appear in Datadog, many of which we didn't need to, and that resulted in a very expensive bill for that specific month.\nCapterra, Michael L., Engineering Lead, 5, Easy to use and gives us the data we need to understand what is happening in our applications., It has taken us a while to implement. Ebs support is not as intuitive as others.\nCapterra, Darien T., Sr. Linux Engineer, 5, We use Datadog to monitor our Kubernetes cluster. It is easy to deploy by using Helm chart. Building the charts and graph is easy to learn., One of the charts, I would like for Datadog to change where I can select the date instead scrolling via the shorter duration timeline.\nCapterra, Verified Reviewer, nan, 5, The UI is fantastic! Easy to use and understand. The details that I get is unmatched in the industry., Tool opens too many tabs so it's difficult to go back to a previous screen.\nCapterra, Richard P., Senior DevOps Architect, 5, It is simple to setup and maintain. Plus the UI is really easy to understand., Polling period of the alerts are not short enough. The lowest is every 5 minutes but if a site is down, 5 minutes is too long to wait to see if it is down.\nCapterra, William M., VP of Engineering, 4, DataDog is able to ingest and make sense of a complicated cloud application without the developer having to understand the infrastructure or program specifically for it., That if I could afford it I would turn on all the features 24/7 and use them all.\nCapterra, Keyur P., IT Sr. System Engineer, 4, Log aggregation, Matrics and Dashboarding, APM is expensive feature withing Datadog.\nCapterra, Nat T., Sr Software Engineer, 4, Datadog provides a single place to collect all our metrics/logs/traces and integrated ways to look at them., Some of the search is unintuitive, for example, it's sometimes hard to search traces. I miss Kusto for exploratory log analysis.\nCapterra, Marcelo B., Staff SRE, 5, Datadog is great for bootstrapping and it can get you quite far! Monitoring and alerting tooling is awesome, integrate well with the new products, Datadog is one of the few solutions I'm the market that provides all stack (logs, security, apm, infra ) and they know it. It is not cheap, when compared individually but looking at the big scope the integration is what we are paying for.\nCapterra, Abbi D., Software Engineer, 4, A lot of great features in", "doc_id": "43b721e9-efe0-41e3-b387-e32a09609efd", "embedding": null, "doc_hash": "44233a5369b3e768ab73d4269930b5597412a118467a8a5721018f80da15d216", "extra_info": null, "node_info": {"start": 148259, "end": 152168, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "635a43aa-23d9-4e2e-a76d-ae12f2968888", "3": "307eca8f-2352-43d0-9760-0e10d0586e6b"}}, "__type__": "1"}, "307eca8f-2352-43d0-9760-0e10d0586e6b": {"__data__": {"text": "Abbi D., Software Engineer, 4, A lot of great features in logging, monitoring and APMA lot of great features in logging, monitoring and APM, Hard to weed through docs to get things set up\nCapterra, Wanny M., Director of Engineering, 4, Easy to setup and good feature/functionalities set, It is very very expensive, the bill can be huge without a lot of tuning and supervision\nCapterra, Mike F., Designer, 5, The range of integrations for the product allows us to pull every possible metric needed., Does have a little bit of a learning curve but provides an excellent learning academy\nCapterra, Bjorn v., Lead Tester, 4, The Synthetic testing is easy to setup and you have nice history. Also notifying to Slack or Teams is easy to setup., Making your own dashboard is sometimes hard because of the huge metrics you can chooise of. Also you could drown a hole day of looking and searching through the data you have at hand.\nCapterra, Verified Reviewer, nan, 3, Log management - easy to set up and hook up, also will consume custom feeds once linked in., It wasn't as plug and play as I thought it was going to be. But I think the 'ideal' shopping list we had was not realistic for what the market is providing.\nCapterra, Ola L., Cloud Engineer/Seinor System Administrator, 5, If you can afford it. Get Datadog.It's a phenomenal product that keeps getting better every day.Especially if you're using multiple clouds.There are tons of integrations that gives you out of the box dashboards and metrics. Logs are easy to ingest from basically everywhere.It's expensive but the pricing is easy to understand and keep track of., It's expensive, there is no other way to say it. But they work hard to make it worthwhile, and for us it is.Beyond that I can't really think of anything.\nCapterra, Mohammad Rabiul I., Freelancer, 5, From my opinion, with the most excellent features that Datadog has as user can track and take after logs in real time, something truly imperative to have within the case of extend is live. I usually like the idea of creating custom sees of sets of logs (with custom channels, information parsing and a parcel more) which user will share them together with the user group., Setting it up for the first time, seems like is a little challenging which is not at all simple to use or understand all the capabilities that Datadog provides at first. Interface is challenging and occasionally a roadblock. Then, filters are not very helpful if user fields are not properly mapped.\nCapterra, Shprotiv Paul S., Executive, 4, It can help the user to track and monitor log, and that can help to run the project smoothly., Its very much time consuming, and reporting system was not to the point, and integrations process is difficult\nCapterra, Dainius B., SE and BUM for Baltics, 5, I like saas cloud approach, so i wont have to mangle with it, just register and it works, i could not see many cons, as i am light user, so i am happy of what i actually get\nCapterra, Amiril Rahmi F., TPM, 4, We use Datadog mostly for our infra monitoring and log management. These features are very useful as they are real-time, helps to make sure our services are up and running, provide alerts whenever there's anomaly, and we can always trace back using their logs., Pretty pricey and their UI is not easy to understand, first time user will need more time to adjust.\nCapterra, Verified Reviewer, nan, 4, good integrations with collectors. Open text search. Alerting systems. custom downtime for deployments., Aggregation and APM metrics. More of alerting. New features to aggregate fields\nCapterra, Verified Reviewer, nan, 4, we can trace the request from end to end. we can track application performance and visualize it at its perfection, something it is difficult to read the reports and for beginners, it is not easy to set up although documentations are also not straightforward.\nCapterra, Verified Reviewer, nan, 5, Datadog is a very powerfull tools, it allows you to gatehered lot of", "doc_id": "307eca8f-2352-43d0-9760-0e10d0586e6b", "embedding": null, "doc_hash": "953090aaa5b7b8be99bc9c4775a510b678f5442d13a996ab7796e38af9691cba", "extra_info": null, "node_info": {"start": 152191, "end": 156177, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "43b721e9-efe0-41e3-b387-e32a09609efd", "3": "f7d7f7aa-1a20-4297-8195-d6a2c8d681de"}}, "__type__": "1"}, "f7d7f7aa-1a20-4297-8195-d6a2c8d681de": {"__data__": {"text": "5, Datadog is a very powerfull tools, it allows you to gatehered lot of differents metrics, and create very powerfull dashboard to monitor everything that append in your app (server side) but also to monitor your API or your network. it's a very powerful tool !, It can be a bit tricky at the beginning to setup your dashboard, there is a learning curve to understand how to implements everythings\nCapterra, Verified Reviewer, nan, 4, Setup is easy and is highly useful right from the get go, t can get expensive depending on the way it's used\nCapterra, Verified Reviewer, nan, 5, Application performance monitoring, server and database monitoring, dashboards & reporting, proactive incident management, Sythentic queries are difficult to grasp. Need support for more geographies for application performance Monitoring\nCapterra, Dikshyaraj B., Infosystem engineer, 5, The best part about datadog is the user friendly the UI it has the graphs and metics are just perfect and doing analysis is also very fine ,with accordance to time frame. Log monitoring is the best., error tracking and mangement is good but we need to set all the metrics else there is chance that downtime occured and we seeing afterwards.\nCapterra, Sawan J., Director of Infosec, 5, Fast, connected to everything that matters for a cloud first company, Dashboard customisation does not allow you to mute false positives needs a more simplified approach\nCapterra, Will R., Product Manager, 4, Customizability. Able to get the views for my product analytics needs., Can't really think of much! Maybe the onboarding/user guide materials could be more intuitive.\nCapterra, Verified Reviewer, nan, 5, I use this tool on a daily basis for handling errors both in our live environment and for testing. It allows me to see where an error may be coming from and follow it through to its source. I could not do my job effectively without datadog, The filtering of data is not as comprehensive as I would like. I sometimes need to search through the results to find what I need. Displaying a record in the chronological order is not always perfect and I sometimes don't get the context I want.\nCapterra, Yaniv V., Director, QA & Processes, 4, The searching and filtering capabilities where quite convenient, The stability issues in the last year got more often than usual, which is quite problematic when you need access to you logs in real-time\nCapterra, Donovan G., Head of QA, 4, It is brilliant in how it helps to detect flaws in your system, especially their \"AI\" parts which give intelligent indications on where to look. It also helps to keep everything you need to diagnose issues in 1 place. Making for a clear end to end vision., It works out super expensive and the pricing is really hard to understand. Especially when it comes to K8s clusters.\nCapterra, Uddipan M., Senior Engineer, 4, Datadog works great as a log aggregator. Useful features such as alerting and notification helps support teams to take quick actions. Dashboards help to visualize issue trends., Datadog can improve on connecting custom metrics through an external database\nCapterra, Verified Reviewer, Human Resources, 5, Dashboards. Custom metrics. Ruby integration. Notebooks. Monitors & alerts., It takes time to understand each part and understand how to use it. It's a complex thing and if you're not familiar with monitoring systems it could be difficult to figure it out how you can find what you need.\nCapterra, Henry G., SRE, 4, I truly enjoy the integrations that datadog provides. It allows us to view more metrics that are more of a deep dive into specific applications. These metrics help us understand what is widely monitored in the industry that we did not think about monitoring ourself. Another key item is that datadog comes out of the box systematic checks that we normally had to add in manually for a newly onboarded host., The item I dislike least is that when you decommission a host the application requires up to 24 hours for that host to officially disappear from the list rather than being removed immediately.\nCapterra, Verified Reviewer, nan, 5, It\u00b4s very useful to use it as TV", "doc_id": "f7d7f7aa-1a20-4297-8195-d6a2c8d681de", "embedding": null, "doc_hash": "ba6edcd6298944579edd2a356d1e4122a76c71fa6aca27632aaefef0e607291e", "extra_info": null, "node_info": {"start": 156167, "end": 160317, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "307eca8f-2352-43d0-9760-0e10d0586e6b", "3": "ec0cea14-8506-48af-a97e-dac7de3f928d"}}, "__type__": "1"}, "ec0cea14-8506-48af-a97e-dac7de3f928d": {"__data__": {"text": "Verified Reviewer, nan, 5, It\u00b4s very useful to use it as TV Dashboards of Apps health. It allows you to use personalized counters for metrics you can set in your code. It' s great to see app performance during product launching., Theree's no mobile version of the app, would be very useful to carry those dashboards and monitors on your phone.\nCapterra, Craig v., Owner, 3, Looks like it should do the job, less log limits than other products., Spent days trying to get it working on a pretty vanilla Windows VM but never could get it up and running. Support pretty much just told me to read the documentation which wasn't really helpful after going over it ten times already. Had similar problem with another product and they could tell me the exact lines of the config and registry that needed changing.\nCapterra, Verified Reviewer, nan, 4, It has a great UI feature. It offers a variety of integrations with other third party software. Communication e-mail reports are valuable, even to non-users of the tool., It can get very expensive to use and can be extremely complicated to use. There is a steep learning curve to try to get users up to speed with the needed functionality of the tool.\nCapterra, Hassan H., Cloud Security Analyst/Pen Tester, 5, The vast no of integration you can do with your cloud, whether its AWS Azure or Google, is phenomenal. The pre installed dashboards really help to set it up quickly. The notebook feature is quite useful too, if you are not ready to spend much on dashboards. Overall, nice all in one solution to capture logs from cloud and analyze them., The metric creation process is not very easy. If you want to create metrics from logs, it gets more complicated.\nCapterra, cauvery g., Sr. QA Engineer, 5, Its really good tool if you are searching or shopping for monitoring tools., I don't use it on daily basis, but so far no issues.\nCapterra, Samantha R., Customer Service Representative, 5, I use DataDog a ton throughout my day to monitor customer service queues and it's amazing. Would not be able to do my job the same without the real time info and insights it offers., So far nothing! I've thoroughly enjoyed using the software and have not experienced any significant issues.\nCapterra, Verified Reviewer, nan, 4, The ability to filter and monitor data is definitely the highlight for me. The easy to setup dashboards as well as the built-in options are a huge plus. Integrations and monitoring/alerting options are also worth taking advantage of., There's not much that I can complain about so far. There is a bit of a learning curve in understanding the toolset because there are lots of features to take advantage of.\nCapterra, M. Serhat D., Senior Software Engineer, 5, Rich features, well-documented functionality, easy to use UI, being able to create custom dashboards that can integrate with hundreds of tools., Custom dashboard creation is a little bit tricky. There is a learning curve for building your dashboard in the beginning, but after spending a day or two - you can create dashboards as you always imagined.\nCapterra, Satbyul K., Staff, 4, Really simple set up to monitor our full stack environment. Dashboard is very clear and suitable for both technical and non-technical stakeholders., Nothing really. Migrating to any product can be challenging but setup was pretty simple and no key functionality absent.\nCapterra, Verified Reviewer, nan, 4, We can quickly create customizable requests and filters to get all the data and organize it like we need. We can get a real overview of all are valuable data in a glance., Using Datadog can get pricy when you need many features or you have many hosts. However, its ease-of-use make it understandable.\nCapterra, Ciprian P., Senior PHP Developer, 5, Great web monitoring tool if you have the time to dig into all the options and settings. The user interface is really professional and good looking and the charts and graphs are well thought out., It requires a bit of server tinkering, which I wasn't familiar with. Not really a minus.\nCapterra, Verified Reviewer, nan, 5, The log imports from AWS work really well and", "doc_id": "ec0cea14-8506-48af-a97e-dac7de3f928d", "embedding": null, "doc_hash": "5e3f166019ab206590a453d592803dd1ce2216df44081e1515ae367de92114bd", "extra_info": null, "node_info": {"start": 160328, "end": 164458, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "f7d7f7aa-1a20-4297-8195-d6a2c8d681de", "3": "e682ce61-fb56-4a2d-a957-fbf6faf3a827"}}, "__type__": "1"}, "e682ce61-fb56-4a2d-a957-fbf6faf3a827": {"__data__": {"text": "Verified Reviewer, nan, 5, The log imports from AWS work really well and are much faster at searching than using AWS Cloudwatch. I find it easy day to day to search for items in logs, especially after implementing a few log transformers, initial setup gets a bit confusing sometimes, and it was easier to change the logging format of our code than to implement lots of parsers to make the log interpretation better\nCapterra, Verified Reviewer, nan, 5, Datadog provides a great, easy-to-use and extensible interface for displaying data out of your own systems, providing you the insight to sniff out issues as they arise., No matter how many integrations Datadog builds in, there will always be gaps, and some of those gaps hit our needs. As such, we need to use several monitoring solutions to cover our whole platform.\nCapterra, Verified Reviewer, nan, 5, I easily integrated the agent and the integration with AWS. With a few clicks you have everything online, the creation of monitors is not so intuitive but you can figure it out. There are bugs in the documentation since they always refer to the \".com\" domain but if you are an european user they also have \".eu\" domains, I had to contact the support in order to have this problem solved.\nCapterra, Verified Reviewer, nan, 4, Feature-rich cloud monitoring solution which works across multiple cloud providers (AWS, Azure, etc), It takes a bit of time to get familiar with the admin portal user interface.\nCapterra, Ankush K., Engineer, 5, The filter functionality is great which lets you filter out errors for quick analysis, can easily create custom dashboards. - Great Visualizations, easy to set up dashboards/monitors with options do maths like ratios, rates, average, interval. - It can be easily integrated with other apps like Slack to set alerts for failed jobs. -, A slow learning curve, lack of resources on how to get useful functionality from UI or APIs. - UI sometimes be bit slower although not bad if you've integrated with multiple external apps.\nCapterra, Bryan I., VP, Digital Services, 4, Datadog solves most of our needs for general system/application health monitoring and even covers some performance metrics that we use to make improvements., Some of the detailed views of where bottlenecks are troubling a system can be lacking. Something we've seen a lag getting data refreshed in the dashboards.\nCapterra, Javier C., Production Engineer, 5, The visibility is great and it allows us to keep a close eye on the performance of our infrastructure - we know in real time when something changes of is starting to slow down. We can track users or cohorts of users and identify any issues right away. We can also group those issues and track metrics over time to ensure that we are improving our metrics as a team., It can take a while to figure out and because it holds a lot of data, the costs can add fairly quickly.\nCapterra, Mauricio S., Full Stack Engineer, 5, I think that the best features that Datadog has is that you can track and follow logs in real time, something really important to have if your project is live. I like the idea of creating custom views of sets of logs (with custom filters, data parsing and a lot more) and that you can share them with your team., It is a bit complicated to set for the first time. Is not quite easy to use or know at first about all the available features that Datadog has. Interface is tricky and can be a blocker sometimes. Following that, if your fields are not mapped in the right way, filters are not that useful.\nCapterra, Rayla V., Graduate Research Assistant, 5, Datadog is useful for visualizing and monitoring your cloud applications. If you have agents on you devices, it can analyze a ton of information coming in and show it to you, but that's where it ends, at least, as far as I could figure out in my free trial., I was very hopeful of this software, but I didn't want to throw agents from a product I've never used before on my servers and instances, so I tried to upload a data pull ( about 500,000 log entries) to Datadog, to see what it could do,", "doc_id": "e682ce61-fb56-4a2d-a957-fbf6faf3a827", "embedding": null, "doc_hash": "0c7508c2ffe700a917696d54d2029863ad9f7626577e2dfcd2844434ca1fbe79", "extra_info": null, "node_info": {"start": 164447, "end": 168539, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "ec0cea14-8506-48af-a97e-dac7de3f928d", "3": "0a685b2c-0702-4790-a271-687cd0bdfe6f"}}, "__type__": "1"}, "0a685b2c-0702-4790-a271-687cd0bdfe6f": {"__data__": {"text": "about 500,000 log entries) to Datadog, to see what it could do, but there's no way to upload a csv/txt file to the software. It has to be via agents on your services. I know that metadata would be missing from a csv, but it seems like a major oversight to not be able to accept a csv of logs for a new user to experiment at low risk.\nCapterra, Luis Miguel R., Software Developer, 4, User-friendly UI. * chart gives meaningful information. * It has real-time metrics., It is a great tool, it takes some technical skills to understand and configure the tool.\nCapterra, Verified Reviewer, nan, 4, Datadog is probably one of the most notable analytics tool out there for large companies. It's easy to track users' flow in terms of what routes they're hitting, when they hit a snag and 404, or other metrics like how performant certain requests are which allows us to identify bottlenecks and get rid of them immediately., There is a steep learning curve I will say with this software and needs an expert to help lead tutorials or sessions to get the ball rolling with new tool users. Although there are many built in functionalities and easily customizable features, it can be overwhelming and hard to pinpoint exactly what type of analytics you're looking for. It's one of those softwares where you have to play around with it to get the stars to align and find a model or metric that works best for your customers and use cases.\nCapterra, Enrique M., Software Developer, 5, dashboards are super customizable and refreshing time is very quick - templates save you lot of time, building the queries for the dashboards require quite a lot of knowledge (not intuitive)\nCapterra, Verified Reviewer, nan, 5, My admins helped set this up. Able to pull in data from whole tech stack, A bit difficult to use without any coding knowledge\nCapterra, Charley C., Owner, 5, It helps us to monitor traffic on our website, I think the product does not have cons that I have discovered\nCapterra, Damian N., Chief Executive Officer, 5, It's got everything that's needed for infrastructure and application monitoring and alerting. It also fits extremely well into our Infrastructure-as-Code paradigm where everything we set up is kept in a git repository as a Terraform project. DataDog is what we recommend and implement for our clients, and provides more useful features than Sensu., Metrics and monitors don't render correctly on mobile phones. It's totally unusable in portrait mode, and barely usable in landscape mode.\nCapterra, Caroline S., Software Engineer, 4, Datadog is a tool that I like for several reasons, because implementing it does not require technical knowledge, has a series of metrics that allow you to read whether the performance of applications or servers is appropriate or not, so if you find a failure or something out of the ordinary in these applications the user immediately receives alerts that notify him of this problem so that it can be resolved in the shortest possible time, these alerts being received at any time since Datadog works continuously 24/7 and the best thing is that it is a software that is very easy to use and implement, in addition to being extremely flexible because it allows you to choose the monitoring parameters that you want to apply., Datadog is not a perfect tool because it has some drawbacks and is that the more applications are integrated with this software the performance or speed of information delivery tends to slow down which should not be since the integrations are to improve even more the performance of said tool.\nCapterra, Neyda Jose M., Software Developer, 4, This tool called Datadog I love mainly because it is really efficient and very useful because it allows through it you can carry out a monitoring of the performance of applications in a very simple way, being this through the reading of metrics that are really simple to understand and issue very detailed information that is useful to diagnose the cause and thus be able to solve the problem in the shortest time possible, also is available 24/7 so in case of any fault send immediately a mail informing the same and the best thing is that it has a clean interface, intuitive and easy to use without having technical knowledge to manage it., One of its", "doc_id": "0a685b2c-0702-4790-a271-687cd0bdfe6f", "embedding": null, "doc_hash": "4d992180ceef04fb828a0540484f640151b3334752381916854bb2893dc5f289", "extra_info": null, "node_info": {"start": 168548, "end": 172818, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "e682ce61-fb56-4a2d-a957-fbf6faf3a827", "3": "0239f2fb-6432-444b-95a6-f00669901af5"}}, "__type__": "1"}, "0239f2fb-6432-444b-95a6-f00669901af5": {"__data__": {"text": "clean interface, intuitive and easy to use without having technical knowledge to manage it., One of its drawbacks is that when it is integrated with a large number of tools it can become heavy, which causes the information to be slowed down.\nCapterra, Verified Reviewer, nan, 5, For our AWS deployment, we use Datadog for application performance and server monitoring as well as synthetic HTTP tests . DataDog enables real-time information and measuring engineering-specific metrics and allows you to control how you trace and diagnose data. If you are looking to track the time it takes for a web hook to fire after an asynchronous request has been made, you can store the time the request has been sent in your database and when the webhook fires for that request, measure the delta and send it to DataDog. DataDog integrates with Slack, which allows for alerts on average and max thresholds., Datadog has a mature product but features are limited, the tool feels dated and the UI is very plain.\nCapterra, Christopher Kyle D., QA Engineer, 4, Customization for integrating software -Extreme level of analytical tracking -Alerts regarding errors -Excellent customer support, Large learning curve -More documentation needed\nCapterra, Verified Reviewer, nan, 4, Configuring monitoring tools is not always trivial, half of the battle is making sure metrics are flowing. Datadog is very flexible when it comes to sending metrics to their cloud. You can use collectD, statsd, file beats, or the 84523982 other options. Our orchestration software already had an option to enable Datadog collection. Once the data is in place, you need to figure out what metrics are relevant. Datadog has a number of pre-built dashboards tweaked for popular software systems. If you are using something homegrown, they can provide recommendations and optimizations after enough data has been ingested. API and documentation are top notch and we were able to build integrations quite easily., Datadog is purely cloud-based system so there's no on-prem option, only SaaS. Depending on your company, this may be a deal-breaker since all of your metrics data is hosted in the cloud. Since it's a SaaS based service, it won't be easy to move data to another service. Occasionally web UI will bog down but it's fairly performant for the most part.\nCapterra, Verified Reviewer, nan, 4, Rich set of filters and plenty of graphs possible. You are only limited by your imagination. You think of some use case and Datadog mostly has it or you may get it in the very near future., Though super feature rich, not a very easy to learn. You need to get some tutorials otherwise you may miss a lot of important features. Plus I find the time range filters are little too strict, they should be more flexible IMO.\nCapterra, Kevin V., Software Architect, 4, Datadog has integrations with pretty much every main software service you can think of. It has pretty robust support for Windows machines and the custom metrics support is great, so you can track anything you'd like., The usability could be improved in some areas, the custom dashboard features are powerful but the syntax can be hard to work with.\nCapterra, Diego M., VP Engineering, 5, The metrics navigator, you start by picking a metric or server, and it then tells you all the information it is collecting from it, so you can start designing your monitoring dashboards and see the data that will appear as you go, There are times where a chart would omit certain spikes, due to the way they aggregate values. But a quick email to support and they'll give you the settings you need to adjust not to miss such events, even when you look at a chart for the month\nCapterra, Gaurav Y., Software Developer, 5, Datadog is very good for monitoring the applications and the host infrastructure. We have used it for lots of purpose for maintaining the infra like maintaining the kafka servers where we can plug this and can easily see the performance of kafka, it's offset value for different different consumers and lot more. Apart from this, we can also see the application performance with this., Only one negative to say, it is difficult to start with this, writing the query to fetch the details and to do analysis is not easy. You need to learn", "doc_id": "0239f2fb-6432-444b-95a6-f00669901af5", "embedding": null, "doc_hash": "f0c7473c376df68e6fe972e9000279be056e831420f679f07c4e881695b3de13", "extra_info": null, "node_info": {"start": 172784, "end": 177047, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "0a685b2c-0702-4790-a271-687cd0bdfe6f", "3": "92435c91-6b25-4870-b65c-fb292b61e3cf"}}, "__type__": "1"}, "92435c91-6b25-4870-b65c-fb292b61e3cf": {"__data__": {"text": "writing the query to fetch the details and to do analysis is not easy. You need to learn it.\nCapterra, Andrey P., SQL Server DBA, 4, Lots of pre-configured solution for different aspects of infrastructure and applications. Rich reporting capabilities, A bit too expansive for log analitics and basic monitoring solution. Creation of your own solutions is possible but very hard to learn for new users\nCapterra, mohamed a., L3 Support Engineer and Service Management, 5, great tool for monitoring, and it support wide range of monitoring like infrastructure monitoring, cloud based monitoring, application monitoring and business service monitoring - Support wide range of integrations like the integration with HPE OMi, It's a great application for monitoring cloud based applications, the support takes sometime to resolve the reported issues\nG2.com, No name, nan, 4, Gives a graph of cpu utilization, memory over a range of days, Some notifications are hard to get for Amazon SQS\nG2.com, No name, nan, 5, Everything is easily and cost effectively aggregated into a single repository. Support staff is quite helpful., Version upgrades on all clients should be manageable from a central console. Instead, they rely on integration with Puppet and Chef. In my opinion, while using something like Puppet should certainly be an option, an enterprise product should include the ability to centrally manage endpoint agents.\nG2.com, No name, nan, 5, I love how easy it integrates with other tools. Any infrastructure we make in AWS will show up in Datadog with metrics to alert on. The dashboards are also very useful., I dislike that the agent sometimes will take longer than expected to send metrics to Datadog.\nG2.com, No name, nan, 5, How easy it is to setup. DataDog's documentation along with their support chat make setup a breeze., Sometimes you'll get a support representative that gives conflicting information. This is easily resolved by starting a new chat.\nG2.com, No name, nan, 5, How easy it is to setup. DataDog's documentation along with their support chat make setup a breeze., Sometimes you'll get a support representative that gives conflicting information. This is easily resolved by starting a new chat.\nG2.com, No name, nan, 5, The ability to aggregate metrics to pull out outliers across a large group of processes/instances., It's difficult to drill down from metrics to logs especially when looking at aggregate groups.\nG2.com, No name, nan, 4, The visualizations, especially how it can differentiate between different services, API's, HTTP status codes, etc., No official way of converting screenboard dashboards to timeboard dashboards and vice versa.\nG2.com, No name, nan, 0, Their service is around giving you the option to pull data from your services, clusters, and infrastructure in one site. After you send all your data there you can create dashboards, and analyze the analytics. You are able to create alarms and with those, you would receive a notification when the threshold of the alarm is triggered.\n\nThey offer also many different integrations with third-party services, systems and products., It is not easy to set up. You need to investigate a bit before setting up. It is worth it though. Another thing is the price. It is not the best in availability when you compare it with other options.\nG2.com, Denis V, DBA, 3.5, Perfect monitoring tool.\n\nYou can monitor your infrastructure as on premise as in the cloud by monitoring performance counters of different applications and collecting information from logs.\n\nYou can monitor your infrastructure as in real time mode or just receiving alerts for example to email.\n\nIt allows you to use different ready solutions with predefined logic for to monitor even different software such as: SQL Server, MySQL and so on.\n\nIt can be integrated with different products such as slack, where you can receive different alerts and where slacks bot can perform setuped actions.\n\nYou can create different dashboards for your convenience., No suitable for all cloud services, for example if you're going to monitor your infrastructure in Azure it would be better to use Azure's Log", "doc_id": "92435c91-6b25-4870-b65c-fb292b61e3cf", "embedding": null, "doc_hash": "956bd8d5bb24ba37a5a07401934b15ff4a94fbcae8ac6c0cb885c5afa0ce5d64", "extra_info": null, "node_info": {"start": 177064, "end": 181215, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "0239f2fb-6432-444b-95a6-f00669901af5", "3": "6f4df675-71f3-4b0b-8e32-bd4e3e076a3b"}}, "__type__": "1"}, "6f4df675-71f3-4b0b-8e32-bd4e3e076a3b": {"__data__": {"text": "going to monitor your infrastructure in Azure it would be better to use Azure's Log Analytics.\n\nThis solution is not for non-experienced users and required time to learn it . Features used in free price tiers very limited for example no alert capabilities.\nG2.com, No name, nan, 4, We like the software as it provides us a lot of value., I think we can do better with the UI as it would make it way better.\nG2.com, Maxim S, Devops Manager, 4, Datadog allows monitoring of everything you need without deploying additional hardware or utilizing storage in your datacenter. Most of your possible needs are covered by API marketplace, where you can find lots of solutions for different use cases. You have access to both current state of resources and history of this state, so you can analyze your issues in retrospective manner to find out what was going on that time. Monitoring of both availability and performance of your services by utilizing performance counters, log analytics and alerting on specific events. Great email and communications tools integration for notification purposes, allows to monitor your systems proactively and find possible issues before actual impact for your resources., Complex APIs settings to get desired result. No off-line solutions and tools, cloud residence is cool and modern approach, but some systems can not be exposed to public internet because of security concerns, and local proxies can affect the speed of data transfer\nG2.com, \nAnatoly E., Developer, 5, Datadog is cloud based solution, perfectly working with monitoring of your cloud deployments, wide range of different solutions on marketplace, good set of APIs, log analytics. You can not only see current state of your resources, but have a historical data for the same, so you can find the bottlenecks in your systems and get rid of these. If you will not find what you need on marketplace you can always develop your own solution and use it. Somebody told that it is very hard for new users, but it is not true, you just need to have some patience, when exploring the documentation. And you can always contact helpdesk, team if very responsible and will be able to help you finding appropriate solution for your needs, Not very good for Azure if you are going to use marketplace solutions. Most of these are made for AWS and you will have to make something similar by yourself.\nG2.com, No name, nan, 5, The integration with Amazon. We can easily see our AWS performance, set up alerts, and easily respond to them., It's really hard to think of anything we don't like. Rewriting all of our alerts was painful, but we'd get that switching to any other tool.\nG2.com, No name, nan, 4.5, Easy to use, simple installation, great features which allow you to observe variety of metrics and extract critical observations about system performance. CPU monitoring is very useful. Creating graphs and metric customization is easy., User interface is technical, not a naive user's playground. Learning the basics can be time-consuming at first.\nG2.com, No name, nan, 4.5, It's integrations with various tools and platforms, made my life easy to see all the metrics in one place, It's integrations with various tools and platforms, made my life easy to see all the metrics in one place\nG2.com, Vadim I, DBA, 4, A lot of features that are able to work out of a box, you just need to install agents and you are in. You can find much more special APIs on marketplace to extend basic functionality. Good analytics platform allows to find bottlenecks in your infrastructure and fix at proactive basis instead of reaction on incident. Does not requires additional resources on your infrastructure as Datadog is provided as a service. The only really working Docker container monitoring solution we were able to find, Installation and configuration can be painful for non-experienced users. Not very clear reporting capabilities. Most solution requires additional customization to be suitable for your needs. Not very straightforward pricing policy often makes users confusing about budget planning for Datadog\nG2.com, Vitaly P, Cloud solution Architect, 4, Datadog is very flexible monitoring tool, perfectly fits the requirements of cloud solutions monitoring. It has a great set of", "doc_id": "6f4df675-71f3-4b0b-8e32-bd4e3e076a3b", "embedding": null, "doc_hash": "1f81fa7a9961666914628b2e029bee5a11980713915a05d3f282f61e489d74db", "extra_info": null, "node_info": {"start": 181218, "end": 185483, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "92435c91-6b25-4870-b65c-fb292b61e3cf", "3": "eb311335-0ee1-4bd8-bc94-bfa5e9e75c37"}}, "__type__": "1"}, "eb311335-0ee1-4bd8-bc94-bfa5e9e75c37": {"__data__": {"text": "perfectly fits the requirements of cloud solutions monitoring. It has a great set of embedded solutions as well as great API marketplace, where you can find almost everithing you need to set up for your environment. It also allows building you custom solutions for fine tuning according to your needs. Datadog can collect logs and performance counters information, for alerting and analysis. You can move any dashboard back in time to see the condition of your infrastructure and dynamics of changes., Starting your work with Datadog in a pain. It`s has a complex query language and too much different settings, so you will have to contact helpdesk and read a tons of documentation to get it doing what you need\nG2.com, No name, nan, 4, Data dog does a great job of providing a \"single pane of glass\" consolidated dashboard view of of our live applications and giving us a single go-to source of truth for performance monitoring., The UI can be slow to load at times and is not 100% intuitive when setting up.\nG2.com, No name, nan, 4.5, It\u2019s very user friendly interface is something I liked a lot, Customer service when I have issues is rather unhelpful usually\nG2.com, No name, nan, 4, Integrations and quick follow up from Datadog team., The features you get by subscribing to the higher tiers. But haven't used is for long.\nG2.com, No name, nan, 3.5, The monitoring, visualizations and aggregation with our aws integration worked out pretty well for us., The license is quite expensive, could have been better for Azure integration and features.\nG2.com, No name, nan, 1.5, Easy to get going, performs a simple task well., It's very easy to drive up the bill to ridiculous amounts.\n\n* The pricing model does not scale with enterprise.\n\n* Recently, an engineer accidentally left an ephemeral port attached to an IP address in the stream. This increased our bill by $10,000 per-month.\nG2.com, No name, nan, 4, The ability to integrate with almost all of the cloud services is the best thing I like about datadog. Having used it for almost 7-8 months I found out that you can configure logs for even the smallest of unexpected behaviours in datadog, Would've appreciated if they offered a free plan with limited functionality for early-stage startups. Currently they only have a 14days trial period\nG2.com, Jacob A, nan, 3.5, Dashboards make it easy to visualize different types of data, trends. Has powerful customization features for the data, as well as powerful filtering techniques. Easy to monitor for issues, trends, overall stats., Searching for dashboards could be a little easier\nG2.com, Gleb M, System engineer, 5, Log analytics work perfectly, great APIs, performance management tools, informative dashboards and customization options. Datadog has a lot of pre-built solutions that you can implement in your infrastructure and if you will not find suitable solution you can build your own, great for AWS monitoring. Good customer support and documentation, Lack of Azure monitoring tools, Datadog is very complex in building your own solutions. A bit too expensive for it`s functionality\nG2.com, Alon N, Sr.Fillstack developer, 4, Monitoring based on thresholds, moving averages, anomalies detection. Also basic server integration works \"from the box\". Also product moves forward all the time with new integrations, and features., Disk space integration isn't working completely as expected. also per process monitor needs more love. Didn't try APM yet since my current stack isn't supported\nG2.com, No name, nan, 4.5, Love their integration with almost all popular frameworks out there. Can get started in just one line agent installation. Looked into their Log management solution which is also great!, Alas, they are not PCI compliant therefore exporting logs to them becomes a challenge as it comes under purview of PCI.\nG2.com, Daniel E, Sr.DBA, 5, Datadog is cloud based, so you don`t have to set up additional monitoring stations and can collect your data offsite. Great choice of APIs allows you to quickly set up monitoring", "doc_id": "eb311335-0ee1-4bd8-bc94-bfa5e9e75c37", "embedding": null, "doc_hash": "462c6fff55dca208ded616f552f4b6ee28689d102cfbe7bdaa842d54c21063e9", "extra_info": null, "node_info": {"start": 185482, "end": 189526, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "6f4df675-71f3-4b0b-8e32-bd4e3e076a3b", "3": "af21247b-3377-47d5-8dbd-994fa2b1e1be"}}, "__type__": "1"}, "af21247b-3377-47d5-8dbd-994fa2b1e1be": {"__data__": {"text": "collect your data offsite. Great choice of APIs allows you to quickly set up monitoring to almost everything you may need, you can monitor availability and performance of your resources, collect different logs and set up alerting for critical events to be able to react quickly when these happens., A bit expensive just for log analytics and metric monitoring\nG2.com, No name, nan, 4.5, Really valuable third party analytics software, allows me to save time by tracking useful metrics and see what's happening in real time., Not too intuitive at first, takes some time to understand the metrics.\nG2.com, Andrey G, Network Security engineer, 2,5, A lot of features of monitoring different aspects of your infrastructure, can monitor server parameters and most of widely used software. Good capabilities for AWS workloads monitoring, Agent based, it is not always possible to deploy agent per security concerns. Very limited Azure support, just basic services. Very hard for new users, which is not a good way to start working with solution. A bit expensive just for log analytics\nG2.com, Mario S, PM, 4, Datadog permite el dise\u00f1o sencillo y c\u00f3modo de dashboards con los que definir tus estad\u00edsticas y datos maestros de la aplicaci\u00f3n., En algunos casos es un poco lento o presenta errores de lectura.\nG2.com, sharon L, nan, 4, I really enjoyed how the documentation for Datadog really allowed anyone to start using their services., It was pretty confusing setting up the software at first, since the UI isn't entirely intuitive.\nG2.com, Mitchell B, Sr web developer, 4, It's incredibly easy to use from a developer's standpoint and provides very versatile dashboards to be used by analytics and product, It gets really disorderly, very quickly. A better way to organize dashboards would be welcome.\nG2.com, Brian R, IT sepcialist, 5, The ability to clearly see stats about company applications, Some items are hard to find and take more clicks than expected to reach\nG2.com, Timur z, Web software developer, 4, Datadog is very stable and has a lot of preconfigured solutions for AWS services. Very flexible configuration options, very good support and always the lates documentation available for users., Datadog is very hard for new users, even great work of support team, does not makes your first steps easy\nG2.com, \nJuan Camilo M., Scrum Master - Agile Practitioner, 4.5, They thought out the product very well.\n\nThe UI is easy to use and understand, setting up dashboards and editing them is super easy for anyone technical or not.\n\nThe alerts are quite useful and powerful.\n\nThe possibilities are endless of what you can measure and how you can take advantage of., Sometimes it can be easy to run into decision paralysis. There is so much that can be done with it that is hard to know where to start and what to measure.\n\nRecently they have been puting out more blog posts and suggestions on industry standards and best practices, which is a great way to address this (if you keep up with their blog) otherwise it would be great to have this in-app.\nG2.com, \nAndre M., RFID Manager, 3.5, Datadog gives companies the ability to bringing together data from servers, databases, tools, and services to present a unified view of an entire stack, Data dog does offer a free service but it limits you to one day of retention, five hosts, and no alert capability\nG2.com, No name, nan, 5, Very easy to monitor the cloud servers\n\nTrack any kind of servers with the proper alerts\n\nBest dash board support. that will help to get the gist in the very less time\n\nAble to get the metrics\n\nHelps to monitor the whole infrastructure just from one place, Needs training to understand and use the software\n\nOtherwise there are no complaints\nG2.com, Ameya K, Program analyst, 4.5, Its super easy to setup and start monitoring your system/clusters. The Infrastructure Host map and dashboards are impressive and give a quick overview of your \"Health Dashboard\"", "doc_id": "af21247b-3377-47d5-8dbd-994fa2b1e1be", "embedding": null, "doc_hash": "9329bb9dbe4c242a2ab6a017c8c67dbcefb8cd35903774b9dbd8d1e86ff3a6e0", "extra_info": null, "node_info": {"start": 189525, "end": 193467, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "eb311335-0ee1-4bd8-bc94-bfa5e9e75c37", "3": "184bf94f-62b1-4835-8df6-f922e578b660"}}, "__type__": "1"}, "184bf94f-62b1-4835-8df6-f922e578b660": {"__data__": {"text": "map and dashboards are impressive and give a quick overview of your \"Health Dashboard\" to be able to diagnose the issue with a server/cluster and quickly fix it. The \"Events\" tab gives a quick overview of all the \"state\" changes that occurred during the given time - period so that we have a time series trend to look at. Also the priority of an event can be changed/raised to be able to quickly take an action., Setting up Monitoring/Alerts is a bit non - intuitive to begin with. It takes a bit of understanding to be able to configure the alerts\nG2.com, No name, nan, 3.5, Well integrated with other relevant cloud services, especially with Amazon Web Services. Graphs are sophisticated in a good way. Initially was talking to the salesperson who had a technical background and that helped moving the needle. Has a strong brand so we weren't worried about data becoming available to the untrusted entity., They have functionality that goes far behind graphs and analytics and probably this is where it failed for our team. Sysops couldn't easily figure it out, so there was some cultural push back. The user interface is somewhat special, probably too techie, raising adoption bar quite high.\nG2.com, Prashant K, Consultant, 5, Datadog can be easily integrated with many tools like slack etc., can not say anything write now about dislike of datadog.\nG2.com, No name, nan, 4.5, At other places I've worked, we had to rely on different types of infrastructure -- Datadog does all that. Its very time saving. Datadog has alerting events and metrics all in one place; This was a huge plus, other solutions were trying to treat monitoring as a multi-faceted problem. Datadog treated it as one problem. Also, We no longer use Nagios for alerting, we use Datadog\u2019s alarms, and then we push the data into PagerDuty., The performance, especially when were drilling into metrics we've been running for a year and a half. When you're launching old data it can get slow. Also, more granular control over dashboard sharing. Timeboard sharing.\nG2.com, No name, nan, 3.5, Reliable, easy to integrate, supports all important types of monitors and events, fast UI., When used extensively the tool contains quite a complex set of data and to understand the data properly a better user-friendlier GUI is required. My main concern is with graph presentations, time and again some alert is raised and there are multiple graphs that are presented but it is hard to understand what is the difference and sometime (due to the default selection of scale) the graph is all green despite the alert.\nG2.com, No name, nan, 4, Dashboards,Metrics, APIs, Connectors and Graphs, Nothing as such , just the naming convention of metrics should be enforced.\nG2.com, \nVasiliy P., Network security engineer, 5, Lots of pre-configured features to monitor different parts on your infrastructure on-premises and cloud based. Very good AWS experience. Very easy server registration, Very complex for new users, you need to work a lot of time with support. Poor Azure monitoring tools\nG2.com, Kirill B, Application system engineer, 4, Fully cloud system, no new virtual machines, just install agent and server is under monitoring, A lot of complex scripting required to get what you need, takes a lot of time\nG2.com, No name, nan, 4, Datadog offers very powerful observability for your applications and has many built in integrations with existing apps and services. The graphs are powerful and tagging feature on graphs are extremely useful., Datadog has outages than are a result of delayed ingestion. When the data in delayed false alerts begin to fire and and cause our company to pull the cord and hault deploys until they are back online.\nG2.com, No name, nan, 5, easy to install agent, have a lot of templaites .. easy to abapt to our enviroment.. flexible, not to cool for microservisec.. like container.. docker etc\nG2.com, Nils K, Principal cosultant, 4, Very easy and quick to set up. And very", "doc_id": "184bf94f-62b1-4835-8df6-f922e578b660", "embedding": null, "doc_hash": "cd6b3987fb17de1700fa47ef14d646fcbcee32767dbfeab3a195eeaf5a8acfd5", "extra_info": null, "node_info": {"start": 193468, "end": 197433, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "af21247b-3377-47d5-8dbd-994fa2b1e1be", "3": "b2f62080-d437-4bf6-a39b-8fd08f0953c3"}}, "__type__": "1"}, "b2f62080-d437-4bf6-a39b-8fd08f0953c3": {"__data__": {"text": "K, Principal cosultant, 4, Very easy and quick to set up. And very flexible on how to interpret, and massage, the incoming metrics., Setting up the various views can be a little less than intuitive.\nG2.com, No name, nan, 3.5, Security on this program is great! Easy behind the scenes, Takes a little getting use to with interfaces\nG2.com, Prashant K, Consultant engineering, 4.5, the way it visualise data. is very impressive., I like most of part of datadog one part i don't like that is cost.\nG2.com, Rahul N, Sr Engineer, 4, really like the real-time monitoring aspect with the analysis and development chops to get the most out of the data being captured., Agent installation and configuration is a little painful. Classic reporting capability is nonexistent. No custom query language.\nG2.com, Ivan R, SQL server developer, 4.5, Cloud based solution, you do not need to set up monitoring stations in your on-premises insfrastructure. Good set of monitoring tools, great dashboards, For those who concerned in security aspests, it can be strange to keep you monitoring data and history somewhere in cloud.\nG2.com, Vlad D, window system admistrator, 4, Integration with a lot of products and services, AWS monitoring is good enough, Monitoring of Azure resources is weak, all solutions requires agent deployment, so for SaaS/PaaS services you need to deploy additional VM just for agent\nG2.com, No name, nan, 4, Easy to visualize data. Interactive and lite., Can be too overwhelming or complex for new users.\nG2.com, Adam B, Sr Web Developer, 4, Datadog\u2019s integrated solution for monitoring applications, services, and servers makes it easy to spot and troubleshoot problems early., The setup and configuration of Dashboards and Monitors could be easier.\nG2.com, adrew T, Sr Engineering manager, 4, Easy to setup and use in the code, a couple lines code calling Datadog library you would be able to use it as a fairly scalable and handy counter service\n\n- Comes with UI, UI is simply designed but supports all the key functionalities that you would expect from a counter services, and to be able to create dashboard based on counters\n\n- Has built-in alerting/notification functionality which can also be configured from the UI, Nothing in particular, but one thing is, the more data you have, the slower response Datadog service will become, when you query the service, query a specific counter, as well as when the counter contains high dimensional data, which is normal, we haven't yet tested what is the upper limit for how much data it can decently handle, but it should be enough for small to mid size company\nG2.com, Dhara P, Sr Manager BI, 5, easy to use and create dashboards, lost of integrations with other applications in your IT stack. provides real time visibility and alerting for your services., There is not much that I don't like about the product. But it is a little pricey. Also it is not very mobile friendly and some learning curve is required when you get started.\nG2.com, Boris P, system administrator, 4, Resides in Cloud, you don`t need to add anything to your datacenter\n\nWindows, Linux OS minitoring\n\nSQL Server monitoring, Complex configuration and not very good customization\nG2.com, Fedor F, Sr. system architect, 4.5, Good possibilities for AWS resources monitoring, integration with most of software used in our company, Azure monitoring still needs some work, you can monitor VMs but Cloud services fmonitoring features are still not enough\nG2.com, chris H, Test engineering manaer, 4.5, I like how easy it is to add metrics to a dashboard for meaningful data visualization, I don't really have much to say here. It does what it needs to do.\nG2.com, andrey P, Sr SQL Server DBA, 5, Pre-built solution for SQL Server is excellent, allows collect data from logs and performance counters, set up appropriate alerts and view analytical dashboards, Initial set-up is a", "doc_id": "b2f62080-d437-4bf6-a39b-8fd08f0953c3", "embedding": null, "doc_hash": "85568a5a2835d0bf32a09c9f28fea85f7e3af8c14f40e9b8e5dfb7583b2d99dc", "extra_info": null, "node_info": {"start": 197453, "end": 201352, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "184bf94f-62b1-4835-8df6-f922e578b660", "3": "ffb7c329-65a8-4b3c-aed1-483e33e7db2d"}}, "__type__": "1"}, "ffb7c329-65a8-4b3c-aed1-483e33e7db2d": {"__data__": {"text": "set up appropriate alerts and view analytical dashboards, Initial set-up is a bit complex, documentation could be more detailed\nG2.com, Victor V, system engineer, 5, Datadog is cloud based solution, so you do not need to deploy additional resources in your datacenter for it., I still have some concerns about how secure is keeping your data outside of organization\nG2.com, Igor R, UI engineer, 4, It's way easier for monitoring several scaled apps., Sometimes it's a bit confusing to create a dashboard. As a developer, it's a kind difficult to understand several DevOps knowledge.\nG2.com, No name, nan, 2.5, Datadog organizes reports in a clear way. Integration with Airflow is also very useful, since that's what handles all of out production jobs., Comparing custom metrics is limited right now. Improving flexibility in the future would be nice.\nG2.com, No name, nan, 4.5, I love how easy it is to put together a nice looking dashboard with the integrated data feeds, There are data points in integrations I'd like to be able to be able to use on a screenboard that I just can't get to (like metrics from GitHub)\nG2.com, Damitry P, SSE, 4, VERY flexible, you can track pretty much any metric\n\n* Sources data from the standard statsd\n\n* Dashboard functionality\n\n* Easy sharing of dashboards\n\n* Great integration with many services like AWS, Chef, Couchbase, JVM, HAProxy, MySQL etc., The datadog agent eats a bit too much memory\n\n* The front-end lets you create graphs of virtually any kind, but it's a challenge to make a TV-friendly dashboard that would be readable from distance.\n\n* There are also issues like the user being periodically logged out or the dashboard URL being lost when datadog is down -- every now and then I have to manually come over to the computer connected to a wall TV and fix issues\n\n* It's also annoying that I can't just convert a dashboard between a TimeBoard and a ScreenBoard - it seems like the difference is mostly in the representation, but I have to re-do the whole board if I want to display it on a big screen.\nG2.com, No name, nan, 3.5, Graphs monitoring and alerting. We monitor application metrics and get alerts when they are our of trend, UI is so-so, APM is not good enough and expesive\nG2.com, Jeff D, Software eng Manager, 4.5, Great pricing lets you scale up from nothing to a fair price for a large product.\n\nStupid easy to get setup with AWS.\n\nGood docs for more complex things like Docker/ECS., Graph JSON language can feel rough around the edges.\n\nTime scales can be confusing or accidentally smooth out important features.\n\nCharting options sometimes feel limited.\n\nTexting alerts required custom Twilio setup.\nG2.com, No name, nan, 5, Infrastructure Host Map\n\n-Anomaly Detection Monitors\n\n-Outlier detection\n\n-Vast number of integration points, Nothing to dislike. This tool meets most of my demands. I'm really satisfied with the feature set\nG2.com, No name, nan, 4, Visualization of performance for webapps, User interface is a bit confusing, hard to know how to phrase things the first time.\nG2.com, No name, nan, 4, It makes finding relevant data to what's going on in a system super easy. Diagnosing problems is a breeze., The learning curve is a little too steep.\nG2.com, No name, nan, 4.5, It shows me how the performance of my database queries, I would like to be able to create my own filter to show my queries\nG2.com, No name, nan, 4, Love their dashboard functionality. The APIs and interactions are very good,. The built in notification functionality is good, Sometimes the datadog service is slow. No flaws other than that.\nG2.com, No name, nan, 4.5, Very easy to install and get running on Ubuntu servers, APM product is really new, and definitely not on par with what New Relic has", "doc_id": "ffb7c329-65a8-4b3c-aed1-483e33e7db2d", "embedding": null, "doc_hash": "c22c3e9cd1bf850e2ba972ef01e10cbcfb53e7db36a3739ffc590d3167c49ecf", "extra_info": null, "node_info": {"start": 201341, "end": 205094, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "b2f62080-d437-4bf6-a39b-8fd08f0953c3", "3": "016fefde-7b3d-43b7-8c2f-97a0e3a90eec"}}, "__type__": "1"}, "016fefde-7b3d-43b7-8c2f-97a0e3a90eec": {"__data__": {"text": "APM product is really new, and definitely not on par with what New Relic has to offer.\nG2.com, No name, nan, 5, The dashboards could look better also the graophs, monitoring and different filtering options, apis for writing data.\nG2.com, No name, nan, 4, Seamless integration with slack and insight into metrics, Nothing that I can think of, liked using the product\nG2.com, No name, nan, 3.5, We love Datadog. It is a great way to consume metrics from aws and alert on them and build dashboards., The pricing model per server is very odd. In modern cloud environments, servers are usually cattle. We see the value in datadog's \"free\" statsd collection and data processing.\nG2.com, No name, nan, 4, I started to use datadog due to a stand on europython, and it's really easy to setup, Pricing is too heavy with docker containers\nG2.com, No name, nan, 4.5, we were using datadog software for monitoring purpose for doing a health check of all the services instances running on the cloud. It gave us a good exposure and notified us in a QuickTime for any failures!, Based on my knowledge, sending a notification on email having a delay than the runtime text notification. We relied on texts to get a quick update on any failures.\nG2.com, \nVinicios W., Diretor de assuntos academicos, 4, Easy to use, robust, easy to write your own plugins, insane solid API, great documentation, awesome customer support, works nice with automation tools, nice UI, most integration application compatibility, Very expensive, need some carefull with AWS integrations\nG2.com, No name, nan, 3.5, I find that its very easy to log errors and other metrics to Datadog but trying to view that data is not as easy., It's hard to find the data you're looking for.\nG2.com, No name, nan, 3.5, great visualization and intuitive interface, not enough customization capabilities for my needs to monitor several disparate data stores.\nG2.com, No name, nan, 4, Many features like Dashboard customisations, managing monitors, events, alerts . and also Datadog has an easy integration through his API, Metrics infrastructures needs more improvements in term of functionalities\nG2.com, No name, nan, 5, The fact that it has out-of-the-box integrations with a wide variety of platforms, Difficult to understand and configure complex alerting rules\nG2.com, No name, nan, 4, The data visualization features and API integrations are fantastic. The product is also incredibly easy to use and, Sometimes it's clunky to create the exact filters for data you're looking for, but overall I don't have much to complain about.\nG2.com, No name, nan, 3.5, Sending metrics in statsd is pretty simple and straightforward. Datadog does a great job reliably parsing tags and helps get to the root cause of any problem easily, Not much really. Datadog is pretty good at what it does\nG2.com, No name, nan, 4.5, industry standard for monitoring. great in providing whollistic view of things and very customizable., no out-of-box dashboards or suggested monitoring tactics / screens. theres a steep learning curve and overhead in managing\nG2.com, \nAlexandre C., Sr. Go engineer, 4, It is really easy to setup, the UI is clean and very user-friendly. If you have been using a StatsD / Grafana setup you will be delighted by the ease of use.\n\nYou can also set alerts that are triggered when a metric reach a certain value which is really useful.\n\nThere are also lots of plugins to automatically fetch metrics from databases, message queues, CPU, etc.\n\nSetting up all these services on you own would be very time-consuming., Once we migrated all our servers to an other host. Due to the migration, we ended up paying twice the price for two or three month as we forgot to disable the Datadog agents on our old servers.\n\nSo be careful and ask", "doc_id": "016fefde-7b3d-43b7-8c2f-97a0e3a90eec", "embedding": null, "doc_hash": "b9660b125407a281ec5b741716d8d8545fa7ce97e643640d156a1c915130c2e5", "extra_info": null, "node_info": {"start": 205099, "end": 208877, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "ffb7c329-65a8-4b3c-aed1-483e33e7db2d", "3": "2226af7c-b46b-4600-b899-63c5dc50458f"}}, "__type__": "1"}, "2226af7c-b46b-4600-b899-63c5dc50458f": {"__data__": {"text": "disable the Datadog agents on our old servers.\n\nSo be careful and ask for information if you are hosting your applications on cloud servers and are using lots of short-time instances, it might be very expensive.\n\nAlso the documentation states that only 100 metrics are allowed per host, which can be very low depending on the type and number of applications running on your hosts.\n\nIn practice, we where sending more than 100 metrics per host and did not have any issues.\n\nThe UI is very good. The only thing was that it was not very convenient to change the scale of the vertical axis of a graph.\nG2.com, Mois\u00e9s Gabriel C., nan, 3, A very flexible monitor, you can track a lot of things (there are more than 100 possible integrations)\n\n* Also a server health checker.\n\n* Unbeatable custom dashboard creator: you can basically mix everything you want to track into a single dashboard without problems.\n\n* Custom tracking stats: With it's powerful event-tracking API you can build your own statistics and gauges so you can measure what you really want to., Steep learning curve: As powerful as it sounds, requires some level of skill to understand every aspect of the service and get the exact measurements you want. Datadog is huge.\n\n* Some prebuilt alers were not working: this is a very subjective subject (hehe) since I might be caused this problem, I didn't give it enough research time.\n\n* Partial service integration: Sure there are 100+ services to integrate with, but some of them only shows basic and somewhat trivial statistics, not so useful at first so you need to learn and implement your own statistics.\nG2.com, No name, nan, 4.5, I like that Datadog makes it extremely easy to visualize the amount of data that my app is using and the metrics that it employs along with the visualizations to keep you appraised of how the app is doing in terms of latency is also very helpful., I don't dislike anything about it yet, so far it has been everything I need it to be and then some.\nG2.com, Stewart H., Principal engineer, 3.5, The ease of setting up was what I appreciated the most. It was easy to setup with our automated deployment tools as well (Chef)., It is very hard to use the freemium version of the tool without dodging countless sales people. Additionally, they shut-off your free account after so many days and force you yo speak to a sales person before you can get it enabled. Update: It also appears now there is a plan downgrade option to circumvent the call to sales. This was the biggest turn off to my evaluation of it. The other note here, is that we were looking for a self-hosted option due to security concerns. At the time, this was available with them but perhaps it has changed by now.\nG2.com, Andrew D, Web developer, 4, The available integrations are amazing and really easy to setup. Creating a dashboard to share with your team so you can see instantly see how things are perform (even without having to log in). Also, the dashboards look great on a large TV screen., Writing your own integrations isn't difficult but is time consuming. Sometimes it takes awhile to come up with the right formula for a widget that displays the information you want.\n\nIt'd be nice if there was a better way to look at data/dashboards on a mobile device.\nG2.com, No name, nan, 4, Easy to configure and report to. Also, very easy to set up dashboards and see visualisation of data., Slow real-time updating of visualisation. There's at least a 20 sec lag between reporting of a metric and updating the graph/metric count on the dashboard.\nG2.com, Christophe N., Technical Team Lead (API), 4, Simple dashboards are really easy to setup but also powerful. We're able to easily monitor many parts of our infrastructure with a few easy integrations using already built Datadog agents. Alerting is also great and easy to setup for simple use cases, The minute you get into more complicated scenarios the language used to write more complicated queries the documentation is not so great. From my personal experience I've quite a bit of trouble finding documentation even on functions like", "doc_id": "2226af7c-b46b-4600-b899-63c5dc50458f", "embedding": null, "doc_hash": "0fbc503b45d00fa7d37e1f03b8ecb29ba3bea4b1236c4e8193b2a545a7fd88f8", "extra_info": null, "node_info": {"start": 208882, "end": 212985, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "016fefde-7b3d-43b7-8c2f-97a0e3a90eec", "3": "0335b885-e042-4a73-95ba-f4c87d2f57f1"}}, "__type__": "1"}, "0335b885-e042-4a73-95ba-f4c87d2f57f1": {"__data__": {"text": "personal experience I've quite a bit of trouble finding documentation even on functions like `rollup` I end up using quite often.\nG2.com, No name, nan, 3.5, I do like the easy to use interface and how simple it is to just get started., Im so used to google analytics, its really just a simple js insert and you're done. Data dog is a bit different.\nG2.com, \nJo\u00e3o F., Head of software engineer, 4,5, The ability to get up and running in moments was a key element in choosing the service, as well as the ability to have the system dynamically adapt graphs and alerts based on other criteria than hostnames, such as aggregating counts across datacenters, system types, or any other arbitrary dimension that made sense to our team., One negative mentioned was if you already have your apps instrumented with statsd then there is a little catching up to be done.\nG2.com, Cl\u00e9ment N., Head of marketing, 3.5, Datadog has a nice UX. It's easy to pick up integration and start a configuration for your apps or services. Also, the support is really cool: you got an email on a regular basis from the Datadog team checking up if everything is ok. This is the kind of proactive support I like., During my trial, the web interface evolved completely. There was no new on-boarding, which was pretty confusing to me.\nG2.com, No name, nan, 4.5, I like that all of the data is collected into one place and easily searched, tagged, and commented on. As a less-informed user of some of the more down-to-the-metal services, it's easy to visualize each service and its health. The social-like feed of events is also helpful to see what's happening in your system, and in what order.\n\nCustom dashboards are also nice to see the systems you interact with most., Sometimes there is an overwhelming amount of information to search through in order to start using the product.\nG2.com, Oded S., CTO/country head, 3.5, The dashboard and metrics are pretty ok., Agent installation is kind of a overhead. Unlike newrelic which integrates very easily as part of the deployment itself, here we need to install stuff manually / per machine. Moreover the agent file is huge.\n\nThe installation didn't went smooth for the first time.\n\nEach integration should be done specifically. There is not single point of installation. too much hassle.\nG2.com, No name, nan, 3.5, The daily digest emails\n\n- The quick systems overview\n\n- Database performance overview, Inability to get more context for a particular event to drill down into.\nG2.com, \nJaime L. R., Associate Attorney, 5, I like the ability to create my own dashboard so as to monitor what I think is important at the same time, It seems to run a little slower than some other similar programs although not so much as to be a problem\nG2.com, No name, nan, 4, The train and user interface is relatively simple and easy to use. Integration is also just a drop in. The daemon is relatively lightweight, It's hard to convince people to use it over New Relic, but that's a simple matter of brand recognition. The dashboards could be more customizable.\nG2.com, \nChristian Nahuel P., Software engineer, 5, Perfect real time dashboards to checkout traffic metrics, server status, and hardware performance., It's very complex for new users. There is too much information and the UX is not perfect.\nG2.com, No name, nan, 4.5, Datadog provide many different integrations \"out of the box\", and it is easy to create custom ones using the API., The website could be more mobile/tablet friendly. It would also be great if there was a mobile app for monitoring metrics and alerts while on the road.\nG2.com, Kevin V, Software Architect, 5, Datadog's Windows support is fantastic, the Windows agent supports detailed IIS and MSSQL statisticsas well as WMI support for complete customizability for any metrics that may be missing. Their RabbitMQ support is excellent as well - we routinely look at the queue dashboard to see what is processing in our", "doc_id": "0335b885-e042-4a73-95ba-f4c87d2f57f1", "embedding": null, "doc_hash": "ef2d70a837d2501cc5c870ddfc186b68819200cb7a66f732d207ac04514cb37c", "extra_info": null, "node_info": {"start": 212965, "end": 216913, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "2226af7c-b46b-4600-b899-63c5dc50458f", "3": "9139abf7-f504-4dbf-8c6e-77c0a8048025"}}, "__type__": "1"}, "9139abf7-f504-4dbf-8c6e-77c0a8048025": {"__data__": {"text": "as well - we routinely look at the queue dashboard to see what is processing in our system. Customizable dashboards are very useful, we have a dashboard that we jump to in the case of any production problem., The User Interface generally is excellent but configuring dashboards can be tricky at times. Some elements have autocomplete and dropdowns but others require typing in fields from memory.\nG2.com, No name, nan, 4, all the integrations are great - even turned me on to new services we could use, The linux service is a pain to use, always having to check the manual for how to do anything, even like what its called.\nG2.com, No name, nan, 4, easy to use cloud based web app, pretty simple integration into your environment, most of the basic postgres metrics are obtained, cloud based only, wished it ran on-premise\nG2.com, \nDenish P., Sr Database architect, 2, Easy to setup with AWS instances\n\ngood documentation, Datadog doesn't provide on-premise solution\nG2.com, No name, nan, 5, The cluster visualization is amazing ! Easy to integrate with Amazon Web Services like Amazon Elastic Compute Cloud ( EC2 ) , Amazon Simple Storage Service ( S3 ) , Amazon Relational Database Service ( RDS ) , Amazon RedShift , etc ., I did not have any big problems with the Datadog . Easy to set up , easy to use .\nG2.com, No name, nan, 4.5, Multi platform support\n\nEasy to use GUI\n\nCustomizable dashboard, Command line installation on windows is cumbersome\nG2.com, \nMichelle W., Business Leader & co-founder, 5, Streamlines metrics into one place. My CIO LOVES this solution!, Nothing really. It has helped us as we start the business.", "doc_id": "9139abf7-f504-4dbf-8c6e-77c0a8048025", "embedding": null, "doc_hash": "0172e34c9801f7bcc2e3fc161ce5ebf72afdd90625297cc867e5267abbccd49b", "extra_info": null, "node_info": {"start": 216909, "end": 218539, "_node_type": "1"}, "relationships": {"1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2": "0335b885-e042-4a73-95ba-f4c87d2f57f1"}}, "__type__": "1"}}, "docstore/ref_doc_info": {"08f41c1e-5cbd-4306-9c5d-5924326ccb1b": {"doc_ids": ["0c142657-6970-4ee7-9647-14dc60537a00", "4d3fcfc7-9023-40a0-b807-5e89f013c374", "c3b56f26-887a-43d6-9de3-39e228261bc3", "af3c10bd-1db5-4954-a3c4-d9e4cde600fd", "f891d754-5b71-4448-9069-3dff046be834", "b1eb3ee1-929c-4cd2-9c3d-9a3a3869a6ef", "8f6f8669-9943-4aa5-aa79-f185e413636c", "8040e9e3-de8d-45d1-870e-8b2f0c44f4bc", "e45eea2c-fa16-4f6c-97d2-b145b149d1c1", "b5398d00-ce67-41e4-a0bd-59e194fca19a", "42d0f166-f343-47cd-ba6f-1383e67d8d54", "8237bbcc-5302-466e-9dc2-db832e533372", "5f252439-4174-4f21-8caf-f68533eecee0", "60f8b901-2d88-4334-9c72-687aa01d4b8d", "478c060d-0015-4f8c-883f-57ca83956105", "24a7a2fe-17f2-4bb0-a3d1-bf233235f75b", "5cb45dc8-b174-4848-a875-d6a8775981e2", "764b01ac-db76-4081-af21-2483631ae895", "c69ca865-8ff1-4557-816a-48675d98a997", "026e2225-4c31-4004-afd6-8fcc6410d07f", "7a7b5aad-cc36-4282-a044-1dfdfd66d09f", "922a83e8-252c-46c7-a471-f74fe0bfb35c", "820c781f-0bc4-4d05-b91f-8df2f26be661", "68814d94-f4cb-45b6-bd96-e057286d2f56", "74773a00-8ea0-44ea-8c3a-2447481985b5", "f1d0e2c4-f8f3-478b-bd36-1d395e26f7d1", "36cc1197-845b-4606-870b-731ad308677a", "b1d6a962-e1e8-4fff-8ef0-b5fccc0a1260", "b54e2b2b-366b-4afe-8ff7-80ffeb88d77c", "28e00375-f4da-4f42-8df0-4a4ca3bbf53c", "1c72ea81-28e2-4e4a-ba15-7ae788d5c584", "d0484d59-55d2-4197-84b6-7d9eed3bc501", "b9455574-e3cb-4838-95d0-00256ab31595", "0273158c-ddd2-4574-ae6c-5061fb24282a", "0a13f4dd-7723-4ab1-8c78-ad41d2c9660a", "2ad1d5ea-2e57-4b5d-9c89-8b0d8b6056ca", "635a43aa-23d9-4e2e-a76d-ae12f2968888", "43b721e9-efe0-41e3-b387-e32a09609efd", "307eca8f-2352-43d0-9760-0e10d0586e6b", "f7d7f7aa-1a20-4297-8195-d6a2c8d681de", "ec0cea14-8506-48af-a97e-dac7de3f928d", "e682ce61-fb56-4a2d-a957-fbf6faf3a827", "0a685b2c-0702-4790-a271-687cd0bdfe6f", "0239f2fb-6432-444b-95a6-f00669901af5", "92435c91-6b25-4870-b65c-fb292b61e3cf", "6f4df675-71f3-4b0b-8e32-bd4e3e076a3b", "eb311335-0ee1-4bd8-bc94-bfa5e9e75c37", "af21247b-3377-47d5-8dbd-994fa2b1e1be", "184bf94f-62b1-4835-8df6-f922e578b660", "b2f62080-d437-4bf6-a39b-8fd08f0953c3", "ffb7c329-65a8-4b3c-aed1-483e33e7db2d", "016fefde-7b3d-43b7-8c2f-97a0e3a90eec", "2226af7c-b46b-4600-b899-63c5dc50458f", "0335b885-e042-4a73-95ba-f4c87d2f57f1", "9139abf7-f504-4dbf-8c6e-77c0a8048025"], "extra_info": {}}}} \ No newline at end of file diff --git a/index_v2/Datadog/index_store.json b/index_v2/Datadog/index_store.json new file mode 100644 index 0000000000000000000000000000000000000000..dfe9e5cc5963172b4dc80e1c929b5b3a79373a08 --- /dev/null +++ b/index_v2/Datadog/index_store.json @@ -0,0 +1 @@ +{"index_store/data": {"593b6e84-6dae-4851-b8b4-02d56fa00d15": {"__type__": "vector_store", "__data__": "{\"index_id\": \"593b6e84-6dae-4851-b8b4-02d56fa00d15\", \"summary\": null, \"nodes_dict\": {\"0c142657-6970-4ee7-9647-14dc60537a00\": \"0c142657-6970-4ee7-9647-14dc60537a00\", \"4d3fcfc7-9023-40a0-b807-5e89f013c374\": \"4d3fcfc7-9023-40a0-b807-5e89f013c374\", \"c3b56f26-887a-43d6-9de3-39e228261bc3\": \"c3b56f26-887a-43d6-9de3-39e228261bc3\", \"af3c10bd-1db5-4954-a3c4-d9e4cde600fd\": \"af3c10bd-1db5-4954-a3c4-d9e4cde600fd\", \"f891d754-5b71-4448-9069-3dff046be834\": \"f891d754-5b71-4448-9069-3dff046be834\", \"b1eb3ee1-929c-4cd2-9c3d-9a3a3869a6ef\": \"b1eb3ee1-929c-4cd2-9c3d-9a3a3869a6ef\", \"8f6f8669-9943-4aa5-aa79-f185e413636c\": \"8f6f8669-9943-4aa5-aa79-f185e413636c\", \"8040e9e3-de8d-45d1-870e-8b2f0c44f4bc\": \"8040e9e3-de8d-45d1-870e-8b2f0c44f4bc\", \"e45eea2c-fa16-4f6c-97d2-b145b149d1c1\": \"e45eea2c-fa16-4f6c-97d2-b145b149d1c1\", \"b5398d00-ce67-41e4-a0bd-59e194fca19a\": \"b5398d00-ce67-41e4-a0bd-59e194fca19a\", \"42d0f166-f343-47cd-ba6f-1383e67d8d54\": \"42d0f166-f343-47cd-ba6f-1383e67d8d54\", \"8237bbcc-5302-466e-9dc2-db832e533372\": \"8237bbcc-5302-466e-9dc2-db832e533372\", \"5f252439-4174-4f21-8caf-f68533eecee0\": \"5f252439-4174-4f21-8caf-f68533eecee0\", \"60f8b901-2d88-4334-9c72-687aa01d4b8d\": \"60f8b901-2d88-4334-9c72-687aa01d4b8d\", \"478c060d-0015-4f8c-883f-57ca83956105\": \"478c060d-0015-4f8c-883f-57ca83956105\", \"24a7a2fe-17f2-4bb0-a3d1-bf233235f75b\": \"24a7a2fe-17f2-4bb0-a3d1-bf233235f75b\", \"5cb45dc8-b174-4848-a875-d6a8775981e2\": \"5cb45dc8-b174-4848-a875-d6a8775981e2\", \"764b01ac-db76-4081-af21-2483631ae895\": \"764b01ac-db76-4081-af21-2483631ae895\", \"c69ca865-8ff1-4557-816a-48675d98a997\": \"c69ca865-8ff1-4557-816a-48675d98a997\", \"026e2225-4c31-4004-afd6-8fcc6410d07f\": \"026e2225-4c31-4004-afd6-8fcc6410d07f\", \"7a7b5aad-cc36-4282-a044-1dfdfd66d09f\": \"7a7b5aad-cc36-4282-a044-1dfdfd66d09f\", \"922a83e8-252c-46c7-a471-f74fe0bfb35c\": \"922a83e8-252c-46c7-a471-f74fe0bfb35c\", \"820c781f-0bc4-4d05-b91f-8df2f26be661\": \"820c781f-0bc4-4d05-b91f-8df2f26be661\", \"68814d94-f4cb-45b6-bd96-e057286d2f56\": \"68814d94-f4cb-45b6-bd96-e057286d2f56\", \"74773a00-8ea0-44ea-8c3a-2447481985b5\": \"74773a00-8ea0-44ea-8c3a-2447481985b5\", \"f1d0e2c4-f8f3-478b-bd36-1d395e26f7d1\": \"f1d0e2c4-f8f3-478b-bd36-1d395e26f7d1\", \"36cc1197-845b-4606-870b-731ad308677a\": \"36cc1197-845b-4606-870b-731ad308677a\", \"b1d6a962-e1e8-4fff-8ef0-b5fccc0a1260\": \"b1d6a962-e1e8-4fff-8ef0-b5fccc0a1260\", \"b54e2b2b-366b-4afe-8ff7-80ffeb88d77c\": \"b54e2b2b-366b-4afe-8ff7-80ffeb88d77c\", \"28e00375-f4da-4f42-8df0-4a4ca3bbf53c\": \"28e00375-f4da-4f42-8df0-4a4ca3bbf53c\", \"1c72ea81-28e2-4e4a-ba15-7ae788d5c584\": \"1c72ea81-28e2-4e4a-ba15-7ae788d5c584\", \"d0484d59-55d2-4197-84b6-7d9eed3bc501\": \"d0484d59-55d2-4197-84b6-7d9eed3bc501\", \"b9455574-e3cb-4838-95d0-00256ab31595\": \"b9455574-e3cb-4838-95d0-00256ab31595\", \"0273158c-ddd2-4574-ae6c-5061fb24282a\": \"0273158c-ddd2-4574-ae6c-5061fb24282a\", \"0a13f4dd-7723-4ab1-8c78-ad41d2c9660a\": \"0a13f4dd-7723-4ab1-8c78-ad41d2c9660a\", \"2ad1d5ea-2e57-4b5d-9c89-8b0d8b6056ca\": \"2ad1d5ea-2e57-4b5d-9c89-8b0d8b6056ca\", \"635a43aa-23d9-4e2e-a76d-ae12f2968888\": \"635a43aa-23d9-4e2e-a76d-ae12f2968888\", \"43b721e9-efe0-41e3-b387-e32a09609efd\": \"43b721e9-efe0-41e3-b387-e32a09609efd\", \"307eca8f-2352-43d0-9760-0e10d0586e6b\": \"307eca8f-2352-43d0-9760-0e10d0586e6b\", \"f7d7f7aa-1a20-4297-8195-d6a2c8d681de\": \"f7d7f7aa-1a20-4297-8195-d6a2c8d681de\", \"ec0cea14-8506-48af-a97e-dac7de3f928d\": \"ec0cea14-8506-48af-a97e-dac7de3f928d\", \"e682ce61-fb56-4a2d-a957-fbf6faf3a827\": \"e682ce61-fb56-4a2d-a957-fbf6faf3a827\", \"0a685b2c-0702-4790-a271-687cd0bdfe6f\": \"0a685b2c-0702-4790-a271-687cd0bdfe6f\", \"0239f2fb-6432-444b-95a6-f00669901af5\": \"0239f2fb-6432-444b-95a6-f00669901af5\", \"92435c91-6b25-4870-b65c-fb292b61e3cf\": \"92435c91-6b25-4870-b65c-fb292b61e3cf\", \"6f4df675-71f3-4b0b-8e32-bd4e3e076a3b\": \"6f4df675-71f3-4b0b-8e32-bd4e3e076a3b\", \"eb311335-0ee1-4bd8-bc94-bfa5e9e75c37\": \"eb311335-0ee1-4bd8-bc94-bfa5e9e75c37\", \"af21247b-3377-47d5-8dbd-994fa2b1e1be\": \"af21247b-3377-47d5-8dbd-994fa2b1e1be\", \"184bf94f-62b1-4835-8df6-f922e578b660\": \"184bf94f-62b1-4835-8df6-f922e578b660\", \"b2f62080-d437-4bf6-a39b-8fd08f0953c3\": \"b2f62080-d437-4bf6-a39b-8fd08f0953c3\", \"ffb7c329-65a8-4b3c-aed1-483e33e7db2d\": \"ffb7c329-65a8-4b3c-aed1-483e33e7db2d\", \"016fefde-7b3d-43b7-8c2f-97a0e3a90eec\": \"016fefde-7b3d-43b7-8c2f-97a0e3a90eec\", \"2226af7c-b46b-4600-b899-63c5dc50458f\": \"2226af7c-b46b-4600-b899-63c5dc50458f\", \"0335b885-e042-4a73-95ba-f4c87d2f57f1\": \"0335b885-e042-4a73-95ba-f4c87d2f57f1\", \"9139abf7-f504-4dbf-8c6e-77c0a8048025\": \"9139abf7-f504-4dbf-8c6e-77c0a8048025\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} \ No newline at end of file diff --git a/index_v2/Datadog/vector_store.json b/index_v2/Datadog/vector_store.json new file mode 100644 index 0000000000000000000000000000000000000000..a568d1d195fe74c0ab4950eb78257e4e11f6e61a --- /dev/null +++ b/index_v2/Datadog/vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {"0c142657-6970-4ee7-9647-14dc60537a00": [0.0014757364988327026, 0.0013682717690244317, -0.0011964973527938128, -0.029785508289933205, 0.025060443207621574, 0.02799837850034237, -0.014026266522705555, -0.012882232666015625, -0.006254956591874361, -0.025466609746217728, 0.005638938397169113, 0.028729476034641266, 0.022812992334365845, -0.012415141798555851, -0.00440690154209733, 0.011650195345282555, 0.026414331048727036, -0.002531768288463354, -0.0023337623570114374, 0.008664875291287899, -0.01742452196776867, 0.00011888817971339449, -0.014933370985090733, 0.003384716808795929, -0.02575092576444149, 0.002746697748079896, 0.016991278156638145, -0.0024725357070565224, -0.026184169575572014, 0.01885964162647724, 0.00993075966835022, -0.025507226586341858, -0.023489935323596, -0.004677678924053907, -0.00881380308419466, 0.021797576919198036, 0.005598321557044983, 0.0065054260194301605, 0.009511054493486881, -0.013220704160630703, 0.013809644617140293, 0.026427868753671646, 0.003076707711443305, -0.020145835354924202, -0.011744967661798, 0.027172507718205452, 0.013166548684239388, -0.015474925749003887, -0.02229851484298706, 0.004593060817569494, -0.006001103203743696, -0.001293807988986373, -0.029595963656902313, 0.013904416933655739, 0.005226003006100655, 0.0075479187071323395, 0.010167689062654972, 0.007466685492545366, 0.01513645425438881, -0.010817554779350758, 0.0030360911041498184, -0.005236157216131687, -0.015028143301606178, -0.010567085817456245, -0.012002206407487392, -0.028621165081858635, -0.013890878297388554, -0.0030327062122523785, -0.008624258451163769, -0.01747867837548256, 0.0540742352604866, 0.01883256435394287, 0.019306425005197525, -0.008576872758567333, -0.0006147492094896734, -0.019468890503048897, -0.026211246848106384, -0.023070229217410088, 0.0005707478849217296, -0.010059378109872341, 0.016882967203855515, -0.015420770272612572, -0.0175328329205513, -0.0027517748530954123, 0.02449181117117405, 0.018439937382936478, 0.010729552246630192, 0.006830358412116766, -0.006928515620529652, -0.008441483601927757, 0.013606561347842216, 0.013741950504481792, 0.014242888428270817, 0.023016074672341347, 0.008779955096542835, 0.01769530028104782, 0.0009900296572595835, 0.0034084098879247904, -0.02102586068212986, -0.007913468405604362, -0.0052056945860385895, -0.0035167208407074213, -0.00492137810215354, -0.015190609730780125, -0.008631028234958649, -0.023016074672341347, 0.010208305902779102, -0.025493687018752098, -0.0003716842329595238, 0.02223082073032856, -0.021770499646663666, 0.0327911376953125, -0.0009621057542972267, -0.006089105736464262, 0.0003494720149319619, 0.005618629977107048, 0.03346807882189751, -0.01757344976067543, -0.003509951289743185, -0.02242036536335945, -0.009903681464493275, 0.012875462882220745, 0.05816297605633736, -0.01233390811830759, 0.0140533447265625, -0.004728449508547783, 0.0013826568610966206, -0.016706962138414383, 0.02927103079855442, 0.007101135794073343, 0.009504284709692001, 0.011196643114089966, 0.01982090249657631, 0.004867222625762224, -0.028594087809324265, 0.0017042049439623952, -0.003415179206058383, 0.03035414032638073, 0.020321840420365334, -0.02089047245681286, 0.019563663750886917, 0.02438350021839142, 0.011541884392499924, -0.007554688025265932, 0.003418564097955823, 0.04169971123337746, 0.002418380230665207, 0.024221034720540047, 0.008265478536486626, 0.0036758026108145714, 0.001014568842947483, -0.020822778344154358, -0.03246620297431946, 0.0024403808638453484, 0.012083439156413078, 0.018020233139395714, 0.00527338869869709, 0.03419917821884155, -0.011338801123201847, 0.0001996982900891453, 0.007134983316063881, 0.033251456916332245, -0.0030208597891032696, -0.012103747576475143, -0.005953717045485973, 0.032222505658864975, 0.01749221608042717, -0.023002535104751587, -0.02573738619685173, -0.01757344976067543, 0.008888266049325466, 0.033305615186691284, -0.0022728373296558857, 0.011805891990661621, 0.0032391741406172514, 0.012909309938549995, 0.006596812978386879, 0.006495271809399128, -0.00876641646027565, -0.037990063428878784, 0.02319207973778248, -0.01003230083733797, -0.0008017548243515193, 0.01454074401408434, -0.00810301210731268, -0.005297082010656595, 0.021973581984639168, 0.021364333108067513, 0.00016585113189648837, -0.005151539109647274, 0.008015009574592113, -0.008238401263952255, -0.012516682967543602, -0.013721642084419727, -0.6299363970756531, -0.004762296564877033, 0.023801328614354134, -0.003132555400952697, -0.0024386884178966284, 0.02557492069900036, 0.017966076731681824, 0.003245943458750844, -0.0014698132872581482, 0.026427868753671646, 0.015569697134196758, 0.0023777636233717203, -0.012137594632804394, -0.013802875764667988, -0.018291009590029716, -0.02324623614549637, -0.009896911680698395, -0.01279423013329506, -0.0003763381973840296, -0.008367019705474377, -0.03170802816748619, 0.013153010047972202, 0.005303851328790188, 0.0042715128511190414, -5.63766916457098e-05, -0.015583236701786518, 0.007886390201747417, -0.008319634012877941, -0.0002984897291753441, 0.053288981318473816, -0.026495562866330147, 0.006414038594812155, 0.019116880372166634, -0.004447517916560173, 0.03430749103426933, -0.03143725171685219, -0.006877744570374489, 0.029487652704119682, 0.016151869669556618, 0.030733229592442513, -0.012503144331276417, -0.009829217568039894, 0.01234067790210247, 0.022961918264627457, -0.009416282176971436, 0.0014334275620058179, 0.025249987840652466, 0.0028888557571917772, -0.009152274578809738, -0.0035336443688720465, -0.0020155988167971373, -0.009531362913548946, -0.015298919752240181, -0.01864301972091198, 0.012807768769562244, 0.008644566871225834, 0.01631433516740799, -0.008678413927555084, 0.009206430055201054, -0.01218498032540083, 0.01764114387333393, 0.012347446754574776, -0.00984952598810196, -0.04354099929332733, -0.050716597586870193, 0.014093960635364056, -0.020714467391371727, -0.009659982286393642, -0.009700598195195198, 0.004593060817569494, 0.0175328329205513, -0.002276221988722682, 0.0038314994890242815, -0.002856701146811247, -0.0010027224197983742, 0.028810709714889526, 0.03400963544845581, -0.011514807119965553, 0.008224861696362495, 0.02237974852323532, -0.006826973985880613, -0.0015036604600027204, -0.0071823690086603165, -0.01630079559981823, 0.030191674828529358, 0.009267354384064674, -0.005077075213193893, -0.014026266522705555, 0.0031460942700505257, -0.015028143301606178, -0.0013293474912643433, 0.03029998578131199, -0.009544901549816132, -0.02006460167467594, 0.021337255835533142, 0.054236702620983124, -0.007872851565480232, -0.002606231952086091, 0.0064817327074706554, -0.012624993920326233, -0.030651995912194252, -0.024180417880415916, 0.02331393025815487, 0.0018835949013009667, 0.026658030226826668, 0.024938594549894333, -0.022948380559682846, -0.013599792495369911, 0.0023760711774230003, -0.004356130491942167, -0.005178616847842932, -0.01230006106197834, -0.021689265966415405, -0.02098524384200573, 0.0029362419154495, -0.017776532098650932, -0.011839739978313446, 0.015014603734016418, 0.017031894996762276, -0.00037803055602125823, -0.028350388631224632, -0.03176218271255493, 0.03127478435635567, 0.004785989411175251, 0.0161924846470356, 0.02125602215528488, 0.0047995285131037235, -0.009003346785902977, 0.00824517011642456, -0.014175194315612316, -0.01983444020152092, -0.013389939442276955, -0.015935247763991356, -0.005293697118759155, 0.028377465903759003, -0.0065426575019955635, 0.026238325983285904, -0.01290254108607769, 0.016598651185631752, -0.046140458434820175, -9.577690798323601e-05, 0.006573120132088661, 0.018236855044960976, -0.015041681937873363, -0.005662631243467331, -0.020186452195048332, -0.0003215481119696051, -0.003977042157202959, 0.007595304865390062, -0.014973987825214863, -0.015799857676029205, -0.008035317994654179, 0.00869195256382227, 0.0080962423235178, -0.01649034023284912, -0.008082703687250614, -0.002794083673506975, -0.03422625735402107, -0.002995474496856332, -0.01768176071345806, -0.003729958087205887, -0.006454654969274998, -0.020673850551247597, 0.002929472364485264, -0.015732163563370705, -0.007737462874501944, -0.013329015113413334, 0.027497440576553345, -0.020199989899992943, -0.014107500202953815, -0.0038890396244823933, -0.005026304628700018, -0.00044847498065792024, 0.013945033773779869, 0.021526798605918884, 0.018101464956998825, -0.005530627444386482, -0.012029283680021763, -0.009159043431282043, -0.0030970158986747265, 0.009497515857219696, 0.02102586068212986, -0.010499391704797745, -0.029595963656902313, 0.054453324526548386, 0.0027179275639355183, 0.018155621364712715, 0.02694234624505043, -0.03438872471451759, -0.000413570087403059, -0.012807768769562244, 0.006766049191355705, -0.023963795974850655, -0.007290679961442947, -0.0173974446952343, -0.01632787473499775, -0.013471173122525215, -0.0020409843418747187, 0.020430151373147964, 0.022785913199186325, 0.0235576294362545, 0.005148154217749834, -0.00440013175830245, -2.0929714082740247e-05, 0.009693829342722893, -0.027362050488591194, 0.013085315003991127, -0.025277065113186836, 0.0200781412422657, -0.000951951602473855, -0.008062395267188549, -0.005686324555426836, 0.012875462882220745, -0.019455352798104286, -0.003523490158841014, 0.04410963132977486, 0.022799452766776085, 0.021486181765794754, -0.012841615825891495, -0.013599792495369911, 0.019441813230514526, 0.015461386181414127, 0.021310176700353622, -0.014297043904662132, 0.004065045155584812, 0.021445566788315773, 0.01055354718118906, 0.03755681961774826, 0.0033119453582912683, -0.027835911139845848, -0.01631433516740799, 0.02591339312493801, -0.0004150509194005281, 0.015799857676029205, 0.03834207355976105, 0.0028685475699603558, 0.020213529467582703, -0.0034761042334139347, 0.03143725171685219, 0.0006367498426698148, -0.0006528272642754018, -0.0006845589959993958, 0.025263527408242226, -0.04427209496498108, 0.018087927252054214, 0.004579521715641022, 0.01282807718962431, -0.003669033059850335, -0.021824654191732407, -0.008455023169517517, 0.003012398025020957, -0.010797246359288692, 3.989602646470303e-06, -0.00884765014052391, 0.03836914896965027, -0.012706226669251919, 0.023083768784999847, 0.008035317994654179, 0.004427209496498108, 0.004298590589314699, 0.01650387980043888, 0.00873933918774128, 0.016977740451693535, -0.006217724643647671, 0.015772780403494835, -0.010837863199412823, 0.004447517916560173, -0.03541767597198486, -0.0040311976335942745, -0.017884843051433563, 0.024938594549894333, -0.01056031696498394, 0.007114674896001816, -0.012394833378493786, -0.0077780792489647865, 0.00202406058087945, -0.0007755232509225607, -0.000609249051194638, -0.007805156987160444, 0.018480554223060608, -0.019008569419384003, -0.022677602246403694, 0.019577201455831528, 0.01342378742992878, 0.005682939663529396, -0.0006811742787249386, -0.011765276081860065, -0.005432470701634884, -0.002870239783078432, 0.013308706693351269, 0.004447517916560173, 0.003432102967053652, -0.018995031714439392, 0.0014571206411346793, 0.007893159985542297, 0.0005868253065273166, 0.027429744601249695, -0.01047908328473568, -0.012726535089313984, 0.0041598170064389706, 0.02581861987709999, 0.018047310411930084, -0.028404543176293373, -0.028648244217038155, 0.03395548090338707, -0.009599057026207447, -0.031058162450790405, -0.02001044526696205, -0.0134170176461339, -0.024843821302056313, 0.009747984819114208, 0.006129722110927105, -0.020172912627458572, -0.009030424989759922, -0.008448253385722637, 0.00758176576346159, 0.0072500635869801044, -0.013606561347842216, 0.008678413927555084, 0.00810301210731268, 0.0016906660748645663, -0.010397850535809994, 0.008515947498381138, 0.0022440673783421516, 0.07018548995256424, 0.007317757699638605, 0.0024437655229121447, 0.015637392178177834, -0.0026925422716885805, -0.010282769799232483, -0.031004006043076515, -0.017221439629793167, 0.04760265722870827, 0.02323269657790661, -0.027307895943522453, 0.008901805616915226, 0.003631801111623645, -0.0027416206430643797, 0.014730287715792656, -0.003631801111623645, -0.0032087115105241537, -0.019509507343173027, -0.012218828313052654, 0.025087520480155945, 0.00471829529851675, 0.0026756187435239553, 0.03314314782619476, 0.013890878297388554, 0.04332437738776207, 0.022515136748552322, 0.03254743665456772, 0.03181633725762367, 0.0045659830793738365, -0.013295168057084084, -0.020470768213272095, 0.021310176700353622, -0.00020731390395667404, 0.01624664105474949, -0.049714721739292145, 0.03709649667143822, -0.016111252829432487, -0.031978804618120193, -0.020348917692899704, 0.0022491442505270243, -0.012740074656903744, 0.018940875306725502, -0.009734445251524448, -0.009876604191958904, 0.016598651185631752, -0.008969499729573727, -0.016882967203855515, 0.040264591574668884, -0.01657157391309738, -0.003960118629038334, 0.020254146307706833, 0.020403074100613594, -0.011460651643574238, 0.020782161504030228, 0.011981897987425327, -0.024180417880415916, 0.004785989411175251, -0.022826530039310455, -0.027172507718205452, -0.014297043904662132, -0.03178926184773445, -0.009741215035319328, -0.019468890503048897, -0.03411794453859329, -0.020389534533023834, -0.04053536802530289, -0.01234067790210247, -0.011359109543263912, -0.023083768784999847, -0.0004093392053619027, -0.02118832804262638, -0.039235636591911316, -0.033197302371263504, 0.009206430055201054, 0.02439703978598118, 0.02120186574757099, -0.0011601117439568043, 0.010567085817456245, 1.3247993592813145e-05, 0.0031037854496389627, 0.006945439148694277, -0.026211246848106384, 0.005530627444386482, -0.020606156438589096, 0.018182698637247086, -0.009754753671586514, -0.019577201455831528, -0.0031613255850970745, 0.008475330658257008, 0.024803204461932182, -0.0026011548470705748, -0.024112723767757416, 0.003919502254575491, -0.002623155480250716, 0.01649034023284912, 0.016991278156638145, 0.02091754972934723, -0.018467014655470848, 0.024911515414714813, -0.03357639163732529, 0.026265403255820274, -0.033197302371263504, -0.016869429498910904, -0.0063734217546880245, 0.021689265966415405, 0.031193550676107407, 0.0008339096093550324, -0.012868693098425865, -0.01223236694931984, -0.01051293034106493, 0.01850763149559498, 0.0011127257021144032, -0.02472197264432907, -0.019428275525569916, -0.00408535310998559, -0.012239135801792145, 0.00984952598810196, 0.016097713261842728, 0.004190279636532068, -0.01286192424595356, 0.00468106335029006, -0.011000329628586769, 0.03468657657504082, 0.007913468405604362, -0.0070808278396725655, -5.5477623391197994e-05, 0.013092084787786007, -0.01745159924030304, -0.03300775960087776, -0.006342959590256214, 0.012117286212742329, -0.002606231952086091, -0.008515947498381138, -0.01171112060546875, -0.010350463911890984, -0.0033034835942089558, -0.015881091356277466, 0.008996577002108097, -0.018426397815346718, 0.0022999150678515434, -0.027375590056180954, 0.010763399302959442, 0.015569697134196758, -0.007317757699638605, 0.004934917204082012, -0.02438350021839142, -0.03141017258167267, 0.00408535310998559, 0.0029734738636761904, 0.036771565675735474, -0.020227067172527313, -0.004389977548271418, -0.03430749103426933, -0.020267684012651443, -0.019523046910762787, -0.036717407405376434, 0.001763437525369227, 0.010864941403269768, 0.0352010540664196, 0.03891070559620857, 0.011555423028767109, 0.0055678593926131725, 0.024221034720540047, 0.027646366506814957, -0.013877338729798794, -0.008333172649145126, -0.013295168057084084, -0.01862948201596737, 0.009375665336847305, -0.021865271031856537, -0.018169160932302475, -0.00029447037377394736, 0.0028059303294867277, 0.01463551539927721, -0.005114307161420584, -0.017925459891557693, 0.003513336181640625, -0.003574260976165533, -0.03317022696137428, -0.044949039816856384, 0.013044699095189571, 0.04316191002726555, 0.006634044926613569, 0.013552405871450901, -0.022907763719558716, 0.00277885259129107, 0.019550124183297157, -0.0009426436736248434, 0.03631124272942543, 0.004819836933165789, 0.022934840992093086, -0.00146727473475039, 0.004237665329128504, 0.020741544663906097, -0.005601706448942423, -0.009646442718803883, -0.018981492146849632, -0.042864054441452026, 0.005175231955945492, 0.010181228630244732, 0.02319207973778248, 0.010357233695685863, -0.008515947498381138, 0.0008267171215265989, 0.012347446754574776, 0.019387658685445786, -0.015325997956097126, -0.02709127403795719, 0.012638532556593418, -0.025033365935087204, -0.011061254888772964, -0.02684757485985756, -0.021391410380601883, 0.0134847117587924, -0.008468561805784702, 0.003430410521104932, -0.007243294268846512, 0.013836722820997238, -0.021418487653136253, -0.024925054982304573, 0.013085315003991127, -0.008421175181865692, 0.005127846263349056, 0.012949926778674126, 0.022691141813993454, 0.022718219086527824, 0.015407230705022812, -0.01397211104631424, -0.019428275525569916, -0.007094366475939751, 0.0031748644541949034, -0.008116550743579865, 0.04364930838346481, -0.017884843051433563, -0.01111541036516428, -0.008326403796672821, 0.0009121812181547284, 0.007751001510769129, -0.032032959163188934, 0.026102935895323753, 0.009585518389940262, -0.005723556037992239, -0.03181633725762367, -0.013092084787786007, 0.003418564097955823, 0.005391853861510754, -0.010966482572257519, 0.02557492069900036, 0.0005377468769438565, 0.009043963626027107, -0.007216216530650854, 0.034659501165151596, -0.007426068652421236, 0.022515136748552322, -0.009240277111530304, 0.01864301972091198, -0.007520840968936682, -0.005872483830899, -0.003669033059850335, -0.028539933264255524, -0.004765681456774473, -0.007256832905113697, -0.03855869546532631, -0.0037231885362416506, 0.013796105980873108, 0.012767151929438114, -0.0033187149092555046, -0.006732201669365168, -0.025155216455459595, 0.032168347388505936, 0.005337698385119438, -0.014594899490475655, -0.0037434969563037157, -0.011812661774456501, 0.01738390512764454, -0.01984797976911068, -0.02244744263589382, -0.012130824849009514, -0.007805156987160444, -0.01290254108607769, 0.003264559432864189, 0.01047908328473568, -0.0063124969601631165, 0.009571978822350502, 0.007676537614315748, -0.01871071569621563, -0.016693424433469772, 0.003339023096486926, 0.01892733760178089, -0.02472197264432907, -0.014432433061301708, -0.010330155491828918, -0.01750575564801693, 0.002915933495387435, 0.0087325694039464, 0.0014418893260881305, 0.0031562484800815582, 0.02701004035770893, -0.023625323548913002, 0.03149140626192093, 0.013660716824233532, 0.028729476034641266, -0.04521981626749039, 0.024045027792453766, 0.0035370290279388428, -0.001170265837572515, 0.01762760616838932, 0.010011992417275906, -0.036798641085624695, -0.039046093821525574, -0.0023303774651139975, 0.0067389714531600475, 0.01642264612019062, -0.001932673272676766, 0.015298919752240181, 0.015461386181414127, -0.0009688751888461411, -0.014066883362829685, -0.013369631953537464, -0.0008910266915336251, 0.000827563286293298, -0.008482100442051888, 0.013741950504481792, -0.008333172649145126, 0.0188054870814085, 0.013227473944425583, -0.00277885259129107, 0.007371913176029921, -0.028621165081858635, -0.027632828801870346, -0.02813376672565937, -0.010120303370058537, 0.00277885259129107, 0.022853609174489975, -0.004349361173808575, -0.03609462082386017, -0.019062725827097893, 0.03376593440771103, -0.003939810208976269, 0.003746881615370512, 0.020416611805558205, -0.01114248763769865, -0.030814461410045624, -0.0023997642565518618, -0.0013090393040329218, -0.05583428964018822, -0.026251863688230515, -0.02350347302854061, -0.038044217973947525, -1.8959703083964996e-05, -0.010898788459599018, 0.04462410882115364, 0.00353025970980525, -0.013342553749680519, -0.026238325983285904, -0.014066883362829685, -0.028567010536789894, 0.00131073163356632, -0.02686111256480217, 0.02821500040590763, 0.015678009018301964, 0.03509274497628212, 0.0059740254655480385, 0.02461366169154644, -0.0070740580558776855, 0.03647371008992195, -0.022474519908428192, -0.01757344976067543, -0.021499721333384514, -0.027659906074404716, 0.022894224151968956, -0.042593277990818024, -0.046302925795316696, -0.004109046421945095, 0.0075479187071323395, -0.02319207973778248, 0.0006540965405292809, 0.013843491673469543, 0.0024894592352211475, -0.007554688025265932, -0.002904087072238326, -0.0006282880785875022, 0.010797246359288692, 0.006102644372731447, -0.003587799845263362, -0.02557492069900036, 0.01286192424595356, 0.01658511348068714, -0.007974392734467983, -0.0161924846470356, -0.0032696365378797054, 0.019022108986973763, -0.015799857676029205, -0.008759647607803345, -0.03406378999352455, -0.0012870385544374585, -0.027470361441373825, -0.006931900046765804, -0.011555423028767109, 0.003702880349010229, -0.0032104039564728737, 0.02924395352602005, 0.00013253281940706074, 0.000577094207983464, -0.003366100834682584, 0.02236620895564556, 0.022691141813993454, 0.00047978360089473426, 0.014297043904662132, -0.022853609174489975, -0.009720906615257263, -0.020646773278713226, 0.02470843307673931, -0.0017702069599181414, -0.019252268597483635, -0.031031083315610886, -0.005530627444386482, -0.029623042792081833, -0.00495861005038023, 0.0022237589582800865, -0.020118756219744682, -0.004884146619588137, -0.01512291468679905, 0.003885654965415597, -0.010824324563145638, -0.006177108269184828, 0.006068797316402197, -0.017857765778899193, -0.02705065719783306, -0.006549427285790443, 0.016869429498910904, -0.023124385625123978, -0.01104771625250578, 0.027510978281497955, -0.023733634501695633, 0.006048488896340132, 0.21163958311080933, 0.0005077075329609215, 0.00048612995306029916, 0.0417538657784462, 0.011013868264853954, -0.010824324563145638, 0.007866081781685352, 0.011880355887115002, 0.0087325694039464, 0.026265403255820274, 0.0031156318727880716, 0.010783707723021507, -0.024139801040291786, -0.002418380230665207, 0.01773591712117195, -0.015190609730780125, -0.023828405886888504, -0.014473048970103264, -0.008962729945778847, 0.0030800923705101013, 0.018426397815346718, -0.008624258451163769, -0.03132893890142441, -0.006799896247684956, 0.0302458293735981, 0.03509274497628212, -0.002264375565573573, 0.0026553103234618902, 0.010783707723021507, 0.00872579962015152, -0.019279347732663155, -0.01630079559981823, 0.019644897431135178, -0.01352532859891653, -0.01971259154379368, 0.0027500824071466923, 0.011643425561487675, -0.03132893890142441, 0.015664469450712204, 0.00643096212297678, -0.0016644345596432686, -0.023936716839671135, -0.003635186003521085, -0.00884088035672903, 0.017993154004216194, -0.012800998985767365, 0.0004907839465886354, 0.004410285968333483, 0.0074396077543497086, 0.03655494377017021, 0.000718406168743968, 0.009619365446269512, 0.009043963626027107, 8.646893547847867e-05, -0.011379417963325977, -0.015718625858426094, -0.015881091356277466, -0.004813067149370909, -0.01864301972091198, 0.013958572410047054, -0.00024369961465708911, -0.003899193834513426, -0.023584706708788872, 0.020673850551247597, -0.03468657657504082, 0.009592287242412567, -0.013999189250171185, 0.029541809111833572, 0.0134170176461339, -0.0018429782940074801, -0.003428718075156212, -0.014175194315612316, -0.027835911139845848, 0.0010213382774963975, -0.017031894996762276, -0.00499584199860692, -4.384266139823012e-05, 0.025101060047745705, 0.046113383024930954, 0.02684757485985756, 0.01229329127818346, 0.013579484075307846, -0.016030019149184227, -0.006830358412116766, 0.014418893493711948, -0.004169971216470003, 0.033495157957077026, -0.020836317911744118, 0.013829953037202358, -0.01403980515897274, -0.014256427064538002, 0.0033576390706002712, -0.009544901549816132, -0.0050364588387310505, -0.005645707715302706, -0.015718625858426094, 0.002074831398203969, 0.021946504712104797, 0.0005910561885684729, -0.014242888428270817, -0.02468135580420494, 0.055617667734622955, 0.022501597180962563, 0.02340870164334774, -0.020091678947210312, -0.015623852610588074, 0.0007171368924900889, 0.0200781412422657, -0.006725432351231575, 0.006001103203743696, -0.006769433617591858, -0.04115815833210945, 0.018453476950526237, 0.006735586561262608, 0.006058643106371164, 0.029514731839299202, 0.03276405856013298, -0.014486588537693024, -0.011426804587244987, -0.01044523622840643, 0.02691526897251606, -0.018967952579259872, -0.017830688506364822, 0.015583236701786518, -0.027605751529335976, -0.021540338173508644, 7.790137169649825e-05, 0.007839004509150982, -0.03168094903230667, -0.02213604748249054, 0.010648319497704506, -0.0014621976297348738, 0.00985629577189684, -0.013904416933655739, 0.00409212289378047, -0.005754018668085337, 0.0015180455520749092, -0.021635109558701515, -0.01345086470246315, 0.006102644372731447, 0.0001321097370237112, 0.014445971697568893, 0.008915344253182411, -0.00579801993444562, 0.02927103079855442, 0.0058420212008059025, 0.0013716565445065498, 0.014811521396040916, -0.009544901549816132, -0.011487728916108608, 0.006366652436554432, 0.022988997399806976, -0.005967255681753159, 0.00412596995010972, 0.01761406660079956, -0.02216312661767006, -0.03127478435635567, -0.009788600727915764, 0.01644972339272499, -0.01356594543904066, -0.040454134345054626, -0.011013868264853954, 0.0421600341796875, 0.017830688506364822, -0.025141676887869835, -0.0002929895417764783, -0.17221438884735107, 0.009585518389940262, 0.008915344253182411, 0.004515212494879961, -0.011196643114089966, 0.029920896515250206, 0.030164597555994987, 0.005253080744296312, -0.021838193759322166, -0.00984952598810196, 0.011535114608705044, -0.0014554281951859593, -0.019130419939756393, -0.01651741750538349, -0.0060349502600729465, -0.00701990257948637, -0.005696478299796581, 0.026157092303037643, 0.03379301354289055, -0.006102644372731447, 0.026130015030503273, -0.011900664307177067, 0.004664139822125435, -0.014689670875668526, 0.025981087237596512, 0.026482025161385536, -0.017803611233830452, 0.03159971535205841, 0.0012709611328318715, -0.03620292991399765, -0.011981897987425327, -0.0016466648085042834, 0.027158968150615692, 0.011562192812561989, -0.011548654176294804, 0.0019225191790610552, 0.018358703702688217, 0.007283910643309355, -0.022460980340838432, 0.011887125670909882, 0.02908148802816868, 0.013200395740568638, 0.026373714208602905, 0.0033034835942089558, 0.019577201455831528, 0.01891379803419113, 0.012157903052866459, -0.004877376835793257, -0.0034727195743471384, -0.003437180072069168, 0.041726790368556976, -0.01850763149559498, -0.0026806958485394716, -0.014825060032308102, 0.0093012023717165, 0.0016305873868986964, 0.007148521952331066, 0.021702803671360016, -0.002513152314350009, -0.014825060032308102, 0.0022085276432335377, -0.007940545678138733, -0.006833743304014206, 0.002013906603679061, 0.006383575964719057, -0.04941686615347862, -0.04102277010679245, 0.02569677121937275, -0.00552385812625289, 0.014973987825214863, 0.007927007041871548, 0.0013843491906300187, 0.0014012728352099657, -0.0010103379609063268, 0.0173974446952343, 0.013308706693351269, -0.032195426523685455, 0.006992824841290712, 0.030110441148281097, 0.004593060817569494, 0.019265808165073395, 0.00524292653426528, 0.005016150418668985, 0.002594385528936982, -0.028539933264255524, -0.009896911680698395, 0.005635553505271673, 0.014743826352059841, -0.01279423013329506, 0.01891379803419113, 0.022542214021086693, -0.015867551788687706, 0.02478966675698757, -0.011325262486934662, 0.001138957217335701, 0.0067389714531600475, 0.024356422945857048, -0.0030716306064277887, -0.002712850458920002, -0.009138735942542553, 0.010160920210182667, 0.009274124167859554, -0.03409086912870407, 0.002993782050907612, 0.026454947888851166, 0.024166878312826157, 0.02223082073032856, -0.011359109543263912, 0.03877531737089157, -0.002279606880620122, -0.03847746178507805, 0.028567010536789894, 0.023990873247385025, -0.008028548210859299, -0.010804016143083572, 0.04475949704647064, -0.00321548106148839, -0.015745703130960464, 0.0016255102818831801, -0.01169758103787899, 0.05989595130085945, -0.02818792127072811, -0.010749860666692257, -0.0055543202906847, -0.015583236701786518, -0.009517824277281761, -0.09612596035003662, -0.021418487653136253, 0.029650120064616203, 0.0033830245956778526, -0.010282769799232483, 0.009037193842232227, -0.002154372166842222, 0.029460575431585312, 0.009023655205965042, 0.025466609746217728, -0.023354547098279, -0.0013022698694840074, -0.010255692526698112, -0.015840474516153336, 0.009781831875443459, -0.0019377503776922822, 0.006214340217411518, -0.03536352142691612, -0.015650929883122444, 0.015055220574140549, 0.009314741007983685, -0.006769433617591858, 0.024153338745236397, 0.010072917677462101, -0.011832970194518566, -0.023896101862192154, -0.03755681961774826, 0.006826973985880613, 0.005178616847842932, 0.007879620417952538, 0.027781756594777107, -0.010925865732133389, 0.03983134776353836, -0.020443689078092575, 0.004129354376345873, -0.01107479352504015, -0.0026282325852662325, -0.02006460167467594, 0.035688456147909164, -0.028810709714889526, -0.006336189806461334, 0.013241012580692768, 0.0022880686447024345, -0.018602404743433, -0.017018357291817665, 0.003435487626120448, 0.0058014048263430595, 0.025155216455459595, 0.011169565841555595, -0.007426068652421236, -0.0325203612446785, -0.021553877741098404, -0.022488059476017952, -0.02935226447880268, 0.03709649667143822, -0.0015772780170664191, 0.008509178645908833, 0.01464905496686697, -0.018412860110402107, -0.0037367274053394794, -0.006403884384781122, 0.004819836933165789, -0.015908168628811836, 0.010411389172077179, 0.009118427522480488, 0.006119567900896072, -0.009693829342722893, 0.01054677739739418, 0.002310069277882576, 0.0006485963822342455, -0.006867590360343456, 0.007757770828902721, -0.015001065097749233, 0.0008068318711593747, -0.019279347732663155, 0.006420807912945747, -0.0013242705026641488, -0.022569291293621063, 0.0006684815743938088, 0.01290254108607769, -0.009477207437157631, -0.012171441689133644, 0.013877338729798794, -0.03051660768687725, 0.009233507327735424, -0.015407230705022812, -0.009456899017095566, -0.0068845138885080814, 0.018426397815346718, -0.04010212421417236, 0.01397211104631424, 0.01850763149559498, 0.018304549157619476, 0.009984915144741535, 0.003919502254575491, 0.0012134209973737597, -0.020592616870999336, 0.003279790747910738, 0.016111252829432487, 0.0073109883815050125, -0.00639711506664753, -0.002059600315988064, -0.057675573974847794, 0.0016627421136945486, 0.013295168057084084, 0.016598651185631752, 0.006806665565818548, -0.03165387362241745, 0.005740479566156864, -0.009659982286393642, 0.010824324563145638, -0.00048739922931417823, -0.026211246848106384, 0.003291637171059847, -0.02002398483455181, -0.010418158955872059, -0.030868617817759514, -0.022636987268924713, 0.009145504795014858, -0.007297449745237827, 0.020321840420365334, 0.003885654965415597, 0.006650968454778194, -0.002760236617177725, 0.02910856530070305, 0.02918979898095131, -0.0020680620800703764, 0.03836914896965027, -0.017749454826116562, 0.02090401202440262, -0.017221439629793167, -0.018494093790650368, 0.0012929618824273348, 0.008021779358386993, 0.004782604984939098, 0.006810050457715988, -0.012706226669251919, -0.03281821310520172, 0.0014401969965547323, 0.017153745517134666, 0.00381119130179286, 0.003828114829957485, -0.007331296801567078, -0.012679149396717548, 0.029785508289933205, -0.024965671822428703, -0.01342378742992878, -0.01408042199909687, -0.02103940024971962, -0.019482430070638657, 0.01628725789487362, 0.006346344016492367, 0.031004006043076515, 0.0036453399807214737, -0.03403671458363533, -0.0221495870500803, 0.005327544175088406, -0.008055626414716244, 0.005490010604262352, 0.02698296308517456, -0.004708141088485718, -0.014743826352059841, 0.03896486014127731, -0.00810978189110756, 0.006664507556706667, -0.011819431558251381, 0.03858577087521553, 0.01393149420619011, -0.05220587179064751, -0.014703210443258286, 0.012029283680021763, -0.027646366506814957, -0.006579889450222254, -0.014960448257625103, 0.022596370428800583, 0.008387328125536442, 0.017302673310041428, -0.004349361173808575, -0.008996577002108097, -0.022000659257173538, -0.012063130736351013, 0.020321840420365334, 0.015190609730780125, -0.017045434564352036, -0.013173318468034267, 0.02334100753068924, 0.027307895943522453, -0.0025097676552832127, -0.02327331341803074, 0.008279017172753811, 0.02451888844370842, 0.0110409464687109, -0.026658030226826668, 0.0026146937161684036, 0.0036114929243922234, 0.010973252356052399, -0.001404657494276762, 0.02223082073032856, 0.009145504795014858, 0.0005694786086678505, 0.03146432712674141, 0.020240606740117073, 0.0055441660806536674, 0.016734039410948753, -0.015488464385271072, -0.010770169086754322, 0.0015527388313785195, 0.009348588064312935, -0.01169758103787899, -0.019550124183297157, 0.013213934376835823, 0.02099878340959549, 0.004823221359401941, -0.03146432712674141, -0.005506934132426977, 0.019143957644701004, 0.004349361173808575, 0.003171479795128107, 0.005405392963439226, -0.024207495152950287, -0.02707773447036743, 0.004494904074817896, 0.006295573431998491, 0.007324527483433485, 0.01047908328473568, -0.01991567388176918, 0.032032959163188934, -0.005043228156864643, 0.005134615581482649, -0.00039030014886520803, -0.003828114829957485, -0.00380780640989542, -0.004789374303072691, -0.015650929883122444, 0.010614472441375256, -0.008163937367498875, -0.004356130491942167, -0.015474925749003887, -0.004677678924053907, 0.03414502367377281, -0.012394833378493786, 0.08849003911018372, 0.03317022696137428, -0.014378277584910393, -0.0004857068706769496, -0.009944298304617405, 0.013017620891332626, 0.0063091120682656765, 0.022488059476017952, -0.012618224136531353, -0.024870898574590683, 0.020836317911744118, -0.021269559860229492, -0.017817148938775063, 0.009314741007983685, -0.012327139265835285, 0.004941686522215605, -0.008482100442051888, 0.006082336418330669, -0.006769433617591858, 0.006092490162700415, 0.010099994949996471, -0.0007949853898026049, -0.0056321690790355206, -0.0222849752753973, -0.021892348304390907, -0.012428680434823036, 0.012536991387605667, 0.022772375494241714, -0.004538905341178179, -0.04446164146065712, 0.03966888040304184, -0.0002155641559511423, -0.02565615437924862, -0.020416611805558205, -0.012428680434823036, 0.008001470938324928, -0.013098854571580887, -0.0353364422917366, 0.0008220631279982626, 0.020497845485806465, 0.002978550735861063, 0.021283099427819252, -0.026143552735447884, -0.015353075228631496, 0.003983811940997839, 0.0037705746944993734, -0.007954084314405918, -0.021513260900974274, -0.0036114929243922234], "4d3fcfc7-9023-40a0-b807-5e89f013c374": [-0.012456107884645462, 0.0008165882318280637, 0.005327946040779352, -0.027681777253746986, 0.015648027881979942, 0.026740126311779022, -0.018597612157464027, -0.013390835374593735, -0.010856685228645802, -0.029080407693982124, 0.006376917939633131, 0.040491003543138504, 0.022904282435774803, -0.010323544032871723, -0.00914647988975048, 0.008537176996469498, 0.031794577836990356, 0.003593507455661893, 0.010399707593023777, 0.002516839886084199, -0.020702479407191277, -0.011950662359595299, 0.002331625437363982, -0.0006465197657234967, -0.025410735979676247, -0.01704665832221508, 0.026933996006846428, -0.016492744907736778, -0.021381022408604622, 0.020965589210391045, 0.016963571310043335, -0.028443407267332077, -0.018999198451638222, -0.004590549971908331, -0.006414999254047871, 0.0025358807761222124, 0.012248390354216099, 0.009610381908714771, 0.012276086024940014, -0.025673843920230865, 0.014761768281459808, 0.023167390376329422, 0.0015483585884794593, -0.017060505226254463, -0.0038046864792704582, 0.03536731377243996, 0.007477818988263607, -0.010468946769833565, -0.02553536742925644, 0.0032576979137957096, -0.0027886033058166504, 0.0012739987578243017, -0.02164413221180439, -0.00277302460744977, 0.0013631440233439207, 0.01503872498869896, 0.013494693674147129, 0.01444326899945736, 0.013716258108615875, -0.020536307245492935, 0.0006508472142741084, -0.0007166243158280849, 0.001867723767645657, -0.020148567855358124, -0.025299953296780586, -0.031351447105407715, -0.018583765253424644, -0.011950662359595299, -0.020037785172462463, -0.024662954732775688, 0.026878604665398598, 0.02363821677863598, 0.007429351564496756, -0.009098012931644917, 0.0036488985642790794, -0.010233533568680286, -0.021727217361330986, -0.03176688402891159, 0.00531755993142724, 0.0033857901580631733, 0.012213771231472492, -0.013723182491958141, -0.007900177501142025, 0.013993214815855026, 0.01682509295642376, 0.022364217787981033, 0.013730105943977833, 0.010011968202888966, -0.00273321196436882, -0.004663250874727964, 0.02153334952890873, 0.010863608680665493, 0.0229458250105381, 0.02223958820104599, 0.02883114665746689, 0.014623289927840233, 0.009963501244783401, 0.0034342575818300247, -0.011777564883232117, -0.013439302332699299, -0.01498333364725113, -0.0028976548928767443, -0.012276086024940014, -0.010129675269126892, -0.00944420788437128, -0.017434395849704742, 0.01241456437855959, -0.020037785172462463, -0.009485751390457153, 0.020688632503151894, -0.016838939860463142, 0.03808148577809334, 0.007879405282437801, -0.009264186955988407, 0.005805695429444313, 0.01019891444593668, 0.006286907009780407, -0.022973520681262016, -0.022599630057811737, -0.01753133162856102, 0.0026414701715111732, 0.0003909843508154154, 0.05220625549554825, -0.006241901777684689, 0.012026824988424778, -0.00023952388437464833, 0.009291882626712322, -0.022031869739294052, 0.01654813624918461, -0.0011857189238071442, 0.006470390595495701, 0.005269092973321676, 0.029412753880023956, 0.013944747857749462, -0.01660352759063244, 0.00524832122027874, -0.020979436114430428, 0.006165738683193922, 0.001840028096921742, -0.026753975078463554, 0.0008888564771041274, 0.01829295977950096, 0.018112938851118088, -0.009672697633504868, -0.011369054205715656, 0.054671164602041245, 0.003565811784937978, 0.012324552983045578, 0.01187449973076582, 0.0014505584258586168, 0.0076370686292648315, -0.019345395267009735, -0.03326244652271271, 0.002113522496074438, 0.018431438133120537, -0.0018365661380812526, 0.0024718346539884806, 0.03057597018778324, -0.017932917922735214, 0.011597543023526669, 0.008038654923439026, 0.025659997016191483, 0.00811481848359108, -0.008647958748042583, 0.004981750622391701, 0.03852461650967598, 0.006082651671022177, -0.03315166383981705, -0.017919069156050682, -0.004905587527900934, -0.001518066506832838, 0.02678167074918747, 0.004064333159476519, 0.01385473646223545, 0.002393940696492791, 0.02331971749663353, 0.0041820392943918705, 0.0038358441088348627, -0.008737970143556595, -0.02017626352608204, 0.03403792530298233, -0.003283662488684058, -0.010953620076179504, 0.013238509185612202, -0.013577780686318874, -0.015204898081719875, 0.012102988548576832, 0.011126717552542686, -0.0008507749880664051, -0.010808218270540237, 0.010212762281298637, -0.006041108164936304, -0.01985776424407959, -0.004344751127064228, -0.6350052952766418, 0.0015691302251070738, 0.023568976670503616, -0.00258434796705842, 0.006778504233807325, 0.014235551469027996, -0.0037735290825366974, -0.005591054446995258, -0.014207855798304081, 0.03323474898934364, 0.018514525145292282, 0.003725061658769846, 0.003821996273472905, -0.0031901898328214884, -0.009942729957401752, -0.019193068146705627, -0.010586652904748917, -0.0202870462089777, -0.011362130753695965, 0.00426166458055377, -0.03171149268746376, 0.011043630540370941, 0.010960543528199196, 0.00979040376842022, -0.0033148201182484627, -0.019400784745812416, 0.006622716318815947, 0.004645941313356161, 0.0031244128476828337, 0.05420034006237984, -0.03769374638795853, 0.0039050832856446505, 0.017614418640732765, -0.013619324192404747, 0.04096183180809021, -0.022281130775809288, -0.0005816081538796425, 0.026490865275263786, 0.00411280058324337, 0.020273197442293167, -0.0167143102735281, -0.013238509185612202, 0.022710412740707397, 0.027390973642468452, 0.0029945895075798035, 0.0026951306499540806, 0.0061276573687791824, 0.010108903050422668, -0.007207786664366722, -0.0205640010535717, 0.011611390858888626, -0.0024458698462694883, -0.008571796119213104, -0.027197103947401047, 0.008592567406594753, -0.002257193438708782, 0.006494624074548483, -0.014526356011629105, 0.020813262090086937, -0.014415573328733444, 0.01947002485394478, -0.0008602953748777509, 0.003152108285576105, -0.026490865275263786, -0.0531202107667923, 0.01591113768517971, -0.023195086047053337, 0.0027487908955663443, -0.008024807088077068, -0.016700461506843567, 0.029468145221471786, -0.006494624074548483, 0.008433317765593529, -0.005622211843729019, 0.0018538759322836995, 0.02704477868974209, 0.029938971623778343, -0.0010472408030182123, -0.009125708602368832, 0.013335444033145905, -0.002378361765295267, 0.0009788672905415297, -0.01775289513170719, -0.025840017944574356, 0.03511805459856987, 0.01591113768517971, -0.016409657895565033, -0.020190110430121422, 0.0015457620611414313, -0.003439450403675437, -0.004188963212072849, 0.037472181022167206, -0.002944391220808029, -0.030215928331017494, 0.007013916969299316, 0.05572360008955002, 0.011189032346010208, 0.015191050246357918, 0.016312723979353905, -0.018099091947078705, -0.03858000785112381, -0.026823213323950768, 0.024109041318297386, -0.006338836159557104, 0.03614279255270958, 0.020910197868943214, -0.017185134813189507, -0.01747594028711319, 0.001867723767645657, -0.006861591245979071, -0.010247381404042244, -0.007187014911323786, -0.008551024831831455, -0.0012419756967574358, 0.008253296837210655, -0.022225739434361458, -0.016215788200497627, 0.015107964165508747, -0.0034429123625159264, 0.014470964670181274, -0.011292891576886177, -0.009409588761627674, 0.015066420659422874, 0.008551024831831455, 0.0226688701659441, 0.009894262067973614, 0.004701332654803991, 0.0009866566397249699, -0.0018071396043524146, -0.009977349080145359, -0.02071632817387581, -0.023416651412844658, -0.006117271259427071, -0.005127152893692255, 0.0327916219830513, 0.0022831580135971308, 0.006930830422788858, -0.002871690085157752, 0.007650916464626789, -0.04603013023734093, -0.008751817978918552, 0.006470390595495701, 0.013937823474407196, -0.024967607110738754, 0.008585643954575062, -0.02136717550456524, -0.0015570134855806828, -0.006709265056997538, 0.014166312292218208, 0.003569273743778467, -0.020494762808084488, -0.002814567880704999, -0.0016677959356456995, 0.011396749876439571, -0.02516147494316101, -0.0031988448463380337, 0.006124195177108049, -0.026338540017604828, -0.005930325947701931, -0.014332486316561699, -0.02002393640577793, 0.010586652904748917, -0.004303207620978355, 0.011362130753695965, -0.011438293382525444, -0.02456601895391941, -0.010005044750869274, 0.023818237707018852, -0.030271317809820175, -0.01509411633014679, 0.013653943315148354, -0.025009149685502052, -0.008017883636057377, 0.010898228734731674, 0.024164432659745216, 0.0205640010535717, -0.02776486426591873, -0.006262673530727625, -0.020813262090086937, 0.0007512438460253179, 0.0035208063200116158, 0.02120100148022175, 0.007671688217669725, -0.016520440578460693, 0.04697177931666374, 0.003631589002907276, 0.017835982143878937, 0.012643053196370602, -0.04242969676852226, 0.02488452009856701, -0.012566889636218548, 0.014526356011629105, -0.019165372475981712, -0.01807139627635479, -0.015371072106063366, -0.013764725998044014, -0.017517482861876488, -0.009575762785971165, 0.010988239198923111, 0.007415503729134798, 0.01444326899945736, 0.013113878667354584, -0.013093107379972935, 0.0014202663442119956, -0.0005413629114627838, -0.009575762785971165, 0.013120802119374275, -0.04013096168637276, 0.02164413221180439, -0.00758860120549798, -0.0054941195994615555, -0.028097212314605713, 0.004936745390295982, -0.018320655450224876, -0.0025029920507222414, 0.03193305805325508, 0.013529312796890736, 0.016478898003697395, -0.008682578802108765, -0.000452650390798226, 0.00852332916110754, 0.012532270513474941, 0.01963619887828827, -0.009921957738697529, -0.000646086991764605, 0.006664259824901819, 0.007678612135350704, 0.02597849629819393, 0.007997111417353153, -0.022419609129428864, 0.0017777129542082548, 0.01840374246239662, -0.005563358776271343, 0.013750878162682056, 0.04085104912519455, -0.004251278471201658, 0.025092236697673798, 0.005892244167625904, 0.025078389793634415, 0.001867723767645657, 0.001510277041234076, -0.0001517850032541901, 0.02493991144001484, -0.025826171040534973, 0.006574248895049095, -0.0014098804676905274, 0.02305660769343376, 0.0017006845446303487, -0.03387175127863884, 0.011105946265161037, -0.015592637471854687, -0.0024839513935148716, 0.0013700679410248995, -0.011105946265161037, 0.023015065118670464, -0.032431576400995255, 0.016894331201910973, 0.010406631045043468, 0.0043343654833734035, 0.02239191345870495, 0.01710204966366291, -0.001885033561848104, 0.0070173791609704494, -0.01812678761780262, 0.037582963705062866, -0.014470964670181274, 0.010995163582265377, -0.019331546500325203, -0.012137607671320438, -0.0004074286262039095, 0.01055203378200531, -0.033400923013687134, 0.011625238694250584, -0.028609581291675568, 0.016091158613562584, 0.004929821472615004, 0.005210239440202713, -0.0043343654833734035, -0.0032853935845196247, 0.012539194896817207, -0.022142652422189713, -0.016146549955010414, 0.02482912875711918, 0.0021533349063247442, -0.002224304946139455, -0.006802738178521395, -0.008204828947782516, 0.0037319855764508247, -0.0017067429143935442, 0.0015223938971757889, 0.005653369706124067, -0.004656326957046986, -0.004618245642632246, -0.00600648857653141, 0.004981750622391701, 0.009520371444523335, 0.02921888418495655, -0.013813192956149578, -0.009049545973539352, 0.016963571310043335, 0.014401725493371487, 0.023472042754292488, -0.03301318734884262, -0.020633241161704063, 0.0306867528706789, -0.009568838402628899, -0.017392853274941444, -0.022475000470876694, -0.011618315242230892, -0.02769562602043152, 0.0059995646588504314, 0.016146549955010414, -0.022364217787981033, -0.0017604031600058079, -0.008966458961367607, -0.004725566133856773, 0.016146549955010414, 0.0012843846343457699, 0.013397758826613426, 0.03473031520843506, 0.013674715533852577, -0.027723321691155434, 0.014000138267874718, 0.015011029317975044, 0.06774350255727768, 0.022516543045639992, 0.011666782200336456, 0.00455939257517457, -0.003146915463730693, -0.008924915455281734, -0.030271317809820175, -0.02001008950173855, 0.045808564871549606, 0.026629343628883362, -0.01838989555835724, 0.02127023972570896, 0.0049886745400726795, 0.009561914950609207, 0.009278034791350365, -4.930578506900929e-05, -0.0027989891823381186, -0.01509411633014679, -0.00846793781965971, 0.02006548084318638, 0.010178142227232456, -0.007948644459247589, 0.028443407267332077, 0.011369054205715656, 0.032237708568573, 0.025452280417084694, 0.031462229788303375, 0.008336382918059826, 0.0021360251121222973, -0.02365206368267536, -0.023513585329055786, 0.020840957760810852, 0.006072266027331352, 0.015398767776787281, -0.02905271202325821, 0.03204383701086044, 0.0019629274029284716, -0.025840017944574356, 0.0008914529462344944, -0.0011675436981022358, -0.00561528792604804, 0.027460211887955666, -0.0025860790628939867, -0.017822135239839554, 0.015412615612149239, -0.0056464457884430885, 0.0021931473165750504, 0.03126836195588112, -0.0075539820827543736, -0.015509550459682941, 0.0199685450643301, 0.01141752116382122, -0.0271140169352293, 0.006273059174418449, 0.009686545468866825, -0.012248390354216099, 0.010219685733318329, -0.011652934364974499, -0.02824953757226467, -0.019054589793086052, -0.023776695132255554, -0.021879544481635094, -0.0049644410610198975, -0.027778713032603264, -0.02039782889187336, -0.033677879720926285, -0.020951740443706512, 0.00038038211641833186, -0.016423506662249565, 0.005691451020538807, -0.030852926895022392, -0.026490865275263786, -0.021034827455878258, 0.015523398295044899, 0.013709334656596184, 0.027418669313192368, 0.010406631045043468, -0.0006880632136017084, 0.006643488071858883, -0.0024458698462694883, 0.00524832122027874, -0.027238648384809494, 0.010808218270540237, -0.014678681269288063, 0.005608364008367062, -0.0036350509617477655, -0.015537246130406857, 0.0011727366363629699, -0.0030569047667086124, 0.02932966686785221, -0.0045420825481414795, -0.01350161712616682, 0.008087122812867165, 0.01449866034090519, 0.028041820973157883, 0.00509945722296834, 0.017295917496085167, -0.01660352759063244, 0.025230715051293373, -0.043260566890239716, 0.011777564883232117, -0.022101109847426414, -0.02536919340491295, -0.014720224775373936, 0.010129675269126892, 0.021408718079328537, -0.011064402759075165, -0.014332486316561699, 0.005372951272875071, -0.02185184881091118, 0.029938971623778343, -0.003531192196533084, -0.019650045782327652, -0.01773904822766781, 0.011625238694250584, -0.02769562602043152, 0.005244859028607607, 0.01260843314230442, 0.013321596197783947, -0.021671827882528305, 7.935446046758443e-05, -0.010060436092317104, 0.026338540017604828, 0.016368115320801735, -0.00034294973011128604, 0.012379944324493408, -0.0016677959356456995, -0.004718642216175795, -0.044174522161483765, -0.012497651390731335, -0.009028773754835129, -0.0005699240718968213, -0.016742005944252014, -0.01295462902635336, -0.017226679250597954, 0.0036696703173220158, -0.014235551469027996, 0.013716258108615875, -0.008350230753421783, -0.00038016572943888605, -0.039410874247550964, -0.003519075457006693, 0.008793361485004425, -0.013439302332699299, 0.014138616621494293, -0.031240666285157204, -0.03539500758051872, 0.007380884140729904, 0.021381022408604622, 0.02493991144001484, -0.015204898081719875, -0.023195086047053337, -0.03437026962637901, -0.029911275953054428, -0.02304276078939438, -0.015246441587805748, 0.016645070165395737, 0.03403792530298233, 0.0453377403318882, 0.033400923013687134, 0.024912215769290924, 0.012816150672733784, 0.01872224360704422, 0.025355344638228416, 0.0010005044750869274, 0.003873925656080246, -0.0028561113867908716, -0.011313662864267826, 0.01844528689980507, -0.026310844346880913, -0.00974193587899208, -0.02127023972570896, 0.010150446556508541, 0.011535228230059147, -0.009485751390457153, -0.015412615612149239, 0.002899385755881667, 0.010268153622746468, -0.025784626603126526, -0.0405740924179554, -0.0019300389103591442, 0.048771996051073074, 0.017614418640732765, 0.01068358775228262, -0.03018823266029358, -0.008530252613127232, 0.013238509185612202, -0.010392783209681511, 0.04062948375940323, 0.0006192568689584732, 0.029080407693982124, -0.0027418669778853655, -0.006937754340469837, 0.025064541026949883, 0.00032261075102724135, -0.010815141722559929, -0.01827911287546158, -0.04362060874700546, 0.003354632528498769, 0.00954806711524725, 0.011736021377146244, 0.00764399254694581, -0.0027245571836829185, -0.0021567968651652336, 0.02077171951532364, 0.020757870748639107, -0.023513585329055786, -0.02179645746946335, 0.0047151800245046616, -0.030963709577918053, -0.020647088065743446, -0.02656010538339615, -0.01915152557194233, 0.029662014916539192, 0.0016349074430763721, -0.0037908386439085007, -0.0001377208245685324, 0.017628265544772148, -0.0185006782412529, -0.03240388259291649, 0.004611321724951267, -0.01622963696718216, 0.024482933804392815, 0.008682578802108765, 0.018542220816016197, 0.02689245156943798, 0.014567898586392403, -0.019400784745812416, -0.013695486821234226, 0.0005067433812655509, -0.0018313731998205185, -0.007051998749375343, 0.045531608164310455, -0.02374899946153164, -0.017018962651491165, 0.0018261802615597844, -0.0071039278991520405, 0.009104937314987183, -0.035838138312101364, 0.021616436541080475, 0.0022035331930965185, -0.0076993838883936405, -0.026920147240161896, -0.0277094729244709, -0.005667217541486025, 0.007325492799282074, -0.005812619347125292, 0.027626385912299156, 0.0028111059218645096, 0.01276768371462822, -0.013286976143717766, 0.022710412740707397, -0.010025816038250923, 0.028180299326777458, 0.0005811753799207509, 0.005237935110926628, 0.004078180994838476, 0.0068096620962023735, 0.0015483585884794593, -0.004005479626357555, -0.0014219973236322403, 0.01563418097794056, -0.02759869024157524, 0.006428847089409828, 0.019248459488153458, 0.010095055215060711, -0.017005113884806633, -0.007512438576668501, -0.01877763494849205, 0.030548274517059326, -0.014540203846991062, 0.0029011168517172337, -0.00944420788437128, -0.01747594028711319, 0.009928882122039795, -0.027681777253746986, -0.02824953757226467, 0.007086618337780237, -0.004594011697918177, 0.001381319365464151, 0.008142514154314995, 0.005269092973321676, -0.01350161712616682, 0.012109912000596523, 0.012518422678112984, -0.02093789353966713, -0.004105876665562391, -0.00018034612003248185, -0.00046563270734623075, -0.01812678761780262, 0.0008113952935673296, -0.00047428757534362376, -0.009098012931644917, 0.004507462959736586, -0.0024718346539884806, -0.0007430217228829861, -0.0014799849595874548, 0.030908318236470222, -0.020536307245492935, 0.021117914468050003, 0.004368985071778297, 0.014567898586392403, -0.03677979111671448, 0.011272119358181953, 0.004389756824821234, -0.0018209873232990503, 0.010406631045043468, -0.005622211843729019, -0.04528234899044037, -0.026587801054120064, 0.020411675795912743, 0.001369202509522438, 0.00859949178993702, 0.009278034791350365, 0.02250269614160061, 0.023167390376329422, -0.011244423687458038, -0.01181910838931799, -0.019165372475981712, 0.007235482335090637, -0.00292188860476017, 0.002795527223497629, 0.00974193587899208, -0.016575831919908524, 0.015052572824060917, 0.005237935110926628, 0.007727079559117556, -0.008862599730491638, -0.020273197442293167, -0.017032809555530548, -0.013169270008802414, 0.00046563270734623075, -0.0033044342417269945, 0.013051563873887062, -0.012705367989838123, -0.03769374638795853, -0.011756792664527893, 0.03425948694348335, 0.008066350594162941, 0.01682509295642376, 0.02700323425233364, -0.007325492799282074, -0.00569491321220994, 0.007394731976091862, -0.008945686742663383, -0.04636247828602791, -0.01747594028711319, -0.025119932368397713, -0.025078389793634415, -0.00621074391528964, -0.015218745917081833, 0.03916161507368088, -0.008087122812867165, -0.01622963696718216, -0.03176688402891159, -0.01595268025994301, -0.014117845334112644, -0.010060436092317104, -0.018791481852531433, 0.018999198451638222, 0.030271317809820175, 0.039854004979133606, -0.0034256025683134794, 0.02732173539698124, -0.01639581099152565, 0.036170486360788345, -0.019276155158877373, -0.02732173539698124, 0.002293543890118599, -0.025659997016191483, 0.015924984589219093, -0.039244700223207474, -0.040878742933273315, -0.0024822205305099487, 0.010766674764454365, -0.01563418097794056, 0.008827980607748032, 0.022807348519563675, 0.007692459970712662, -0.006352683994919062, -0.007602449040859938, -0.011064402759075165, 0.010005044750869274, 0.004275512415915728, -0.0012090872041881084, -0.03348401188850403, 0.008959534578025341, -0.0014998911647126079, -0.006553477607667446, -0.023111999034881592, 0.008398698642849922, 0.026047736406326294, -0.016298875212669373, -0.00925033912062645, -0.021657979115843773, 0.0019335008691996336, -0.02082711085677147, -0.022101109847426414, 0.0027418669778853655, -0.004130110144615173, -0.0002713305875658989, 0.025341497734189034, 0.0017673270776867867, -0.011126717552542686, -0.016381962224841118, 0.0241367369890213, 0.0065950206480920315, -0.0019109981367364526, 0.02423367276787758, -0.03268083930015564, -0.016132701188325882, -0.013432377949357033, 0.03257005661725998, -0.009257262572646141, -0.008336382918059826, -0.021339479833841324, -0.0006910923984833062, -0.028166450560092926, -0.006944678258150816, -0.00801095925271511, -0.02434445545077324, 0.005868010688573122, -0.014360181987285614, 0.0041231862269341946, -0.009575762785971165, -0.019705437123775482, -0.013079259544610977, -0.028415711596608162, -0.02819414623081684, -0.0013008288806304336, 0.02192108705639839, -0.026532409712672234, -0.007505514658987522, 0.032237708568573, -0.012158379890024662, 0.000322394393151626, 0.2169121354818344, -0.004258202388882637, -0.00014010092127136886, 0.0306867528706789, -0.005743380170315504, -0.023125847801566124, -0.009928882122039795, 0.012186075560748577, 0.012220694683492184, 0.01855606958270073, 0.015537246130406857, 0.006186510436236858, -0.017545178532600403, 4.349078517407179e-05, 0.01512181106954813, -0.019068438559770584, -0.02417828142642975, -0.013183117844164371, -0.013169270008802414, 0.004555930383503437, 0.01877763494849205, 0.003846229985356331, -0.015066420659422874, 0.0003154704754706472, 0.037638355046510696, 0.011943738907575607, 0.0036385126877576113, 0.002125639235600829, 0.005829929374158382, 0.016478898003697395, -0.02477373741567135, -0.012317629531025887, 0.0199685450643301, 0.0005560762365348637, -0.02240576036274433, 0.004497077316045761, 0.011341358534991741, -0.018112938851118088, 0.014249399304389954, 0.02125639282166958, 0.009935805574059486, -0.015426463447511196, -0.003524268278852105, -0.016146549955010414, 0.0256461501121521, -0.009326501749455929, 0.006473852321505547, -0.01296155247837305, 0.014374029822647572, 0.034121010452508926, -0.0029824727680534124, -0.002946122083812952, 0.00811481848359108, 0.012829998508095741, -0.017517482861876488, -0.012615357525646687, -0.010046588256955147, -0.0015414346707984805, -0.019622350111603737, 0.02244730480015278, -0.021117914468050003, 0.00444860989227891, -0.009084165096282959, 0.02006548084318638, -0.026338540017604828, 0.009430360049009323, -0.016700461506843567, 0.024496780708432198, 0.00871027447283268, -0.00017331403796561062, 0.003519075457006693, -0.002023511566221714, -0.027626385912299156, -0.010157370939850807, 0.00949267577379942, -0.014927942305803299, -0.00021615570585709065, 0.03677979111671448, 0.03448105230927467, 0.025853866711258888, 0.003863539779558778, 0.00895261112600565, -0.008024807088077068, -0.013882432132959366, -0.006044570356607437, -0.0017863678513094783, 0.03154531866312027, -0.02363821677863598, -0.001341506838798523, -0.01217222772538662, -0.01133443508297205, 0.0027782174292951822, -0.023555129766464233, 0.010171218775212765, -0.01693587563931942, -0.011382902041077614, 0.016520440578460693, 0.038192268460989, 0.002560114488005638, -0.016866635531187057, -0.03126836195588112, 0.04863351956009865, 0.020799415186047554, 0.027474060654640198, -0.016783548519015312, -0.0037666051648557186, -0.022682717069983482, 0.018902264535427094, -0.010725131258368492, -3.6864392313873395e-05, -0.013120802119374275, -0.032597750425338745, 0.022475000470876694, 0.002343742409721017, 0.004497077316045761, 0.03057597018778324, 0.029662014916539192, -0.0059407115913927555, -0.013709334656596184, -0.003821996273472905, 0.0161188542842865, -0.017822135239839554, -0.004490153398364782, 0.01563418097794056, -0.0241367369890213, -0.035311922430992126, -0.0065984828397631645, 0.00187984062358737, -0.016811244189739227, -0.01844528689980507, -5.912366759730503e-05, -0.006688493769615889, 0.008066350594162941, -0.016700461506843567, -0.0017586721805855632, 0.00487096793949604, 0.006913520395755768, -0.009021850302815437, -0.012670748867094517, -0.001555282506160438, 0.0018140635220333934, 0.006653874181210995, 0.00294092926196754, -0.0030465188901871443, 0.030797535553574562, 0.006515395827591419, 0.011445216834545135, 0.010344316251575947, -0.018085243180394173, -0.019068438559770584, 0.0073393406346440315, 0.023236630484461784, -0.004535158630460501, 0.009873490780591965, 0.0229458250105381, -0.024926062673330307, -0.03880156949162483, -0.02899732068181038, 0.011306739412248135, -0.012130684219300747, -0.03783222287893295, -0.015384919941425323, 0.024385998025536537, 0.001931769889779389, -0.013647019863128662, -0.010129675269126892, -0.17758435010910034, 0.014207855798304081, 0.009236491285264492, 0.006768118590116501, 0.007560905534774065, 0.032237708568573, 0.026089278981089592, 0.0027989891823381186, -0.018154483288526535, -0.020896349102258682, 0.0049021258018910885, -0.010122750885784626, -0.03592122718691826, -0.012573814019560814, -0.0049644410610198975, -0.007533210329711437, -0.011327510699629784, 0.02921888418495655, 0.03018823266029358, -0.007997111417353153, 0.024593714624643326, -0.007498590741306543, 0.006352683994919062, -0.022170348092913628, 0.0028266848530620337, 0.0241367369890213, -0.015260289423167706, 0.02365206368267536, -0.0032525050919502974, -0.03018823266029358, -0.011846804060041904, 0.005269092973321676, 0.014526356011629105, 0.017766743898391724, -0.0009269379661418498, 0.001840028096921742, 0.008668730966746807, -0.005691451020538807, -0.027986429631710052, 0.014789463952183723, 0.024746041744947433, 0.02581232227385044, 0.030382100492715836, -0.009852718561887741, 0.013570856302976608, 0.025022998452186584, 0.012566889636218548, -0.014290942810475826, 0.0055598970502614975, 0.0020789029076695442, 0.03592122718691826, -0.026657039299607277, -0.004569778218865395, -0.0034359884448349476, 0.015191050246357918, 0.010642044246196747, 0.0054975817911326885, 0.01834835112094879, -0.004237430635839701, -0.01177064049988985, -0.006885824725031853, -0.01409707311540842, -0.014817159622907639, 0.004718642216175795, -0.014159388840198517, -0.013598551973700523, -0.01888841576874256, 0.021824153140187263, -0.014789463952183723, 0.010780522599816322, -0.005030218046158552, 0.00509945722296834, -0.004888277966529131, -0.004701332654803991, 0.019719285890460014, 0.006698879413306713, -0.04143265634775162, -0.012871542014181614, 0.03669670224189758, 0.017032809555530548, 0.012546118348836899, 0.010302772745490074, 0.003082869341596961, 0.0030880621634423733, -0.032597750425338745, -0.008253296837210655, 0.019220763817429543, -0.0003323474957142025, -0.012677672319114208, 0.00758860120549798, 0.01512181106954813, -0.014941790141165257, 0.028858842328190804, -0.007242406252771616, 0.01092592440545559, 0.011846804060041904, 0.016298875212669373, 0.002253731479868293, 0.017185134813189507, -0.01498333364725113, 0.009527294896543026, 0.015412615612149239, -0.043094392865896225, 0.010808218270540237, 0.026753975078463554, 0.01898535154759884, 0.02013471908867359, -0.011514456011354923, 0.03777683153748512, -0.018971502780914307, -0.04079565778374672, 0.023167390376329422, 0.005968407262116671, 0.008377926424145699, -0.008149437606334686, 0.045033086091279984, -0.0019040742190554738, -0.016742005944252014, -0.006588096730411053, -0.017572874203324318, 0.043482132256031036, -0.04384217411279678, -0.026269299909472466, -0.004233968909829855, -0.006518858019262552, -0.01057972852140665, -0.11665397137403488, -0.01920691691339016, 0.022738108411431313, -0.01773904822766781, 0.0023229706566780806, 0.0008265413343906403, 0.0012073562247678638, 0.016589678823947906, 0.0004898663610219955, 0.01931769959628582, -0.03002205863595009, -0.0017396315233781934, -0.0005231876857578754, -0.01877763494849205, 0.011244423687458038, -0.005885320249944925, 0.0008317342726513743, -0.025950800627470016, -0.0060030268505215645, 0.016243483871221542, 0.01699126698076725, -0.01355700846761465, 0.015703419223427773, -0.0027920652646571398, -0.02246115170419216, -0.03052057884633541, -0.037472181022167206, 0.012996172532439232, 0.007664764299988747, 0.00288207596167922, 0.035893529653549194, -0.009291882626712322, 0.026864755898714066, -0.022488847374916077, -0.007789394818246365, -0.024413693696260452, -0.010011968202888966, -0.004774033557623625, 0.03337322920560837, -0.011694477871060371, -0.005033679772168398, 0.018085243180394173, 0.007058922667056322, -0.025840017944574356, -0.002608581678941846, -0.0023420113138854504, -0.0025999268982559443, 0.03317935764789581, 0.0030136301647871733, -0.0067438846454024315, -0.03063136152923107, -0.019123829901218414, -0.023015065118670464, -0.026933996006846428, 0.042291220277547836, 0.0027314811013638973, 0.010607424192130566, 0.02239191345870495, -0.022710412740707397, 0.0068685151636600494, -0.019068438559770584, 0.004053947050124407, -0.014831007458269596, 0.011465989053249359, 0.013176193460822105, 0.0029582390561699867, -0.017129743471741676, 0.021671827882528305, 0.01580035500228405, -0.005691451020538807, 0.00023952388437464833, 0.013612399809062481, -0.01109209842979908, 0.007214710582047701, -0.020245501771569252, 0.01033739186823368, 0.005040603689849377, -0.013806269504129887, 0.002406057436019182, 0.002236421685665846, -0.012379944324493408, -0.004285898059606552, 0.006414999254047871, -0.03013284131884575, 0.012151455506682396, -0.014650985598564148, 0.010482794605195522, -0.0009061662713065743, 0.0049021258018910885, -0.04209735244512558, 0.0044555338099598885, 0.015523398295044899, 0.01931769959628582, 0.011105946265161037, -0.0013380448799580336, 0.005961483344435692, -0.021394871175289154, -0.02391517348587513, 0.003519075457006693, -0.007249330170452595, -0.002708978485316038, -0.005722608417272568, -0.04353752359747887, -0.0011969703482463956, 0.017835982143878937, 0.01206836849451065, 0.001959465444087982, -0.04007557034492493, -0.006930830422788858, -0.023181239143013954, 0.0008209156221710145, 0.0019213840132579207, -0.01109209842979908, 0.008876447565853596, -0.013058487325906754, -0.015398767776787281, -0.02635238692164421, -0.035893529653549194, 0.01827911287546158, -0.0006945543573237956, 0.012920008972287178, -0.007920948788523674, 0.0072770253755152225, 0.00041089055594056845, 0.020439371466636658, 0.03689057379961014, 0.005376413464546204, 0.021657979115843773, -0.017822135239839554, 0.013086182996630669, 0.002194878412410617, -0.03323474898934364, 0.013335444033145905, 0.007720155641436577, 0.009506523609161377, -0.00331308925524354, 0.008038654923439026, -0.026172365993261337, -0.016797397285699844, 0.016160396859049797, 0.019386937841773033, 0.014706376940011978, -0.0020477452781051397, -0.008509481325745583, 0.031517621129751205, -0.017226679250597954, -0.021976478397846222, -0.015412615612149239, -0.01920691691339016, -0.020840957760810852, 0.0026847447734326124, 0.018542220816016197, 0.048716604709625244, -0.0029391981661319733, -0.04193117842078209, -0.024302911013364792, 0.003365018405020237, -0.006972373928874731, -0.006781966425478458, 0.029191188514232635, -0.00865488313138485, 0.00465286523103714, 0.038109179586172104, -0.005220625549554825, 0.017822135239839554, -0.012089140713214874, 0.03880156949162483, -0.002871690085157752, -0.037472181022167206, -0.010108903050422668, 0.010697435587644577, -0.026421627029776573, -0.007367036305367947, -0.013681638985872269, 0.015731114894151688, 0.010372011922299862, 0.022378064692020416, 0.001788098830729723, -0.016188092529773712, -0.027875646948814392, -0.008274068124592304, 0.025784626603126526, 0.016354266554117203, -0.012719215825200081, -0.015011029317975044, 0.023402802646160126, 0.028471102938055992, 0.012220694683492184, -0.0019075361778959632, 0.01242148783057928, 0.013397758826613426, 0.006041108164936304, -0.019082285463809967, 0.0007097003981471062, 0.004919435363262892, 0.002728019142523408, 0.0031209508888423443, 0.022267282009124756, -0.008945686742663383, 0.004943669307976961, 0.03204383701086044, 0.021076371893286705, 0.008945686742663383, 0.012130684219300747, -0.018819177523255348, 0.0038358441088348627, -0.00846793781965971, 0.026006191968917847, -0.005864548496901989, -0.030603665858507156, 0.019331546500325203, 0.023084303364157677, -0.008883371949195862, -0.020217806100845337, -0.013529312796890736, 0.022641174495220184, -0.00044399549369700253, 0.013563932850956917, -0.00022697431268170476, -0.03196075186133385, -0.03558887913823128, 0.012490727007389069, 0.01628502830862999, 0.013286976143717766, 0.010448174551129341, -0.027086321264505386, 0.03196075186133385, 0.005307174287736416, 0.009942729957401752, -0.0059995646588504314, -0.006352683994919062, -0.009665773250162601, -0.010835913941264153, -0.025286106392741203, 0.011126717552542686, -0.003250773996114731, 0.002560114488005638, -0.009423436596989632, -0.008371002972126007, 0.029468145221471786, -0.005127152893692255, 0.08768434822559357, 0.025078389793634415, -0.019109981134533882, -0.0014522894052788615, -0.01152138039469719, 0.00911878515034914, 0.019816219806671143, 0.017448244616389275, -0.013917052187025547, -0.013349291868507862, 0.024261368438601494, -0.01187449973076582, -0.0038185343146324158, -0.009596534073352814, -0.010136598721146584, 0.011043630540370941, 0.007934796623885632, 0.000959826516918838, 0.005424880422651768, 0.003249043133109808, 0.012199923396110535, -0.0062972926534712315, -0.0007196535007096827, -0.01141752116382122, -0.022419609129428864, -0.0029080407693982124, 0.0006188241532072425, 0.01628502830862999, -0.010295848362147808, -0.022322673350572586, 0.02683706022799015, -0.009921957738697529, -0.030963709577918053, -0.013577780686318874, -0.008516404777765274, 0.010801293887197971, -0.025092236697673798, -0.018819177523255348, 0.018002156168222427, 0.017129743471741676, 0.011292891576886177, 0.025396889075636864, -0.028263386338949203, -0.01325235702097416, -0.0060030268505215645, 0.017074353992938995, 0.0026674349792301655, -0.02201802283525467, -0.0033615564461797476], "c3b56f26-887a-43d6-9de3-39e228261bc3": [-0.019074590876698494, 0.0016091250581666827, -0.008087573572993279, -0.03487388417124748, 0.00970508810132742, 0.018081262707710266, -0.01817522570490837, -0.02130286954343319, -0.006580801215022802, -0.03294092044234276, 0.012544128112494946, 0.02240358479321003, 0.024135198444128036, -0.006057290360331535, -0.0021225684322416782, 0.004778715316206217, 0.03256506472826004, 0.0017114781076088548, -0.0014757304452359676, 0.00035383133217692375, -0.025987621396780014, -0.021960614249110222, -0.011785708367824554, 0.010087653063237667, -0.024524474516510963, -0.0055170003324747086, 0.01872558519244194, -0.020886745303869247, -0.026269512251019478, 0.019088014960289, 0.014269029721617699, -0.02528960630297661, -0.03036363609135151, 0.00283065065741539, -0.009604412131011486, 0.016752351075410843, 0.009832609444856644, 0.004879390820860863, 0.009376215748488903, -0.010302427224814892, 0.019504139199852943, 0.02331637218594551, 0.005416324827820063, -0.01166489813476801, -0.013128044083714485, 0.03401478752493858, 0.02185322716832161, -0.025195643305778503, -0.03371947631239891, -0.01043666061013937, -0.0024363393895328045, 0.01276561338454485, -0.023034481331706047, -0.0021678723860532045, 0.007241901475936174, 0.009194999933242798, 0.005741841159760952, 0.007859376259148121, 0.005949903279542923, -0.014362992718815804, 0.005023691803216934, 0.002629300346598029, -0.002780312905088067, -0.004812273662537336, -0.014483802951872349, -0.033638935536146164, -0.018564503639936447, 0.016242263838648796, -0.015571095049381256, -0.006819065660238266, 0.0479750819504261, 0.028081664815545082, 0.006285487208515406, -0.018255766481161118, -0.004500180948525667, -0.014242182485759258, -0.025933926925063133, -0.008040591143071651, -0.009315810166299343, 0.0019866570364683867, 0.021893497556447983, -0.014456956647336483, -0.015316051431000233, 0.008980226702988148, 0.03205497935414314, 0.02319556288421154, 0.009181576780974865, -0.003872638801112771, -0.017799371853470802, -0.015490555204451084, 0.017181897535920143, 0.014362992718815804, 0.022188810631632805, 0.0293166134506464, 0.008946668356657028, 0.018014146015048027, 0.012262237258255482, 0.021074671298265457, -0.026645366102457047, -0.0014648239593952894, -0.01379921194165945, 0.005131078418344259, -0.008564102463424206, -0.014537496492266655, -0.004359235521405935, -0.009255405515432358, 0.00564787769690156, -0.017732255160808563, 0.008812434040009975, 0.022255927324295044, -0.020161883905529976, 0.043545372784137726, 0.006661341525614262, -0.013087773695588112, -0.003087372286245227, 0.006604291964322329, 0.027262840420007706, -0.033880554139614105, 0.00023721590696368366, -0.017759103327989578, 0.0026444015093147755, 0.005560625810176134, 0.06201591342687607, 0.00425520446151495, 0.027021219953894615, 0.012228678911924362, -0.0019077947363257408, -0.004087412264198065, 0.020430350676178932, 0.006530463695526123, 0.014269029721617699, 0.0062485733069479465, 0.021208904683589935, 0.013456916436553001, -0.020886745303869247, 0.0033793302718549967, -0.017423518002033234, 0.02087332122027874, 0.010007113218307495, -0.030927415937185287, 0.009597701020538807, 0.018564503639936447, 0.01683288998901844, -0.005157925188541412, -0.0028407180216163397, 0.04974696412682533, -0.0008129521156661212, 0.018389999866485596, 0.014362992718815804, 0.0032769772224128246, 0.0028340064454823732, -0.009423197247087955, -0.037800174206495285, 0.007161361631006002, 0.006040511187165976, 0.009765492752194405, 0.004570653196424246, 0.022618358954787254, -0.008409733884036541, 0.013195160776376724, -0.007939916104078293, 0.046981751918792725, -0.010825938545167446, 0.0024447289761155844, 0.00341288885101676, 0.04279366508126259, 0.008778875693678856, -0.02265862748026848, -0.013772365637123585, -0.0032920786179602146, -0.001835644245147705, 0.029826700687408447, -0.0017517482629045844, 0.024900328367948532, -0.01016148179769516, 0.02398754097521305, 0.007611043751239777, 0.0004253526567481458, -0.024940598756074905, -0.031786512583494186, 0.03422956168651581, -0.01025544572621584, -0.01046350784599781, 0.008470138534903526, -0.009765492752194405, -0.00195813225582242, 0.019866568967700005, 0.029960934072732925, 0.015893256291747093, -0.002177939750254154, 0.013289124704897404, -0.010027248412370682, -0.02068539522588253, -0.015651635825634003, -0.6340120434761047, 0.007443252019584179, 0.022792860865592957, -0.008040591143071651, 0.00339778745546937, 0.010544047690927982, -0.005070673301815987, -0.0003328573366161436, -0.0066344947554171085, 0.03788071498274803, 0.02295394241809845, -0.0029162245336920023, -0.0031108632683753967, -0.012174985371530056, -0.010785668157041073, -0.027866890653967857, 0.005641166120767593, -0.019061168655753136, -0.007396270055323839, -0.011819266714155674, -0.032779838889837265, 0.022551240399479866, 0.00042765980469994247, 0.003983381669968367, -0.009799051098525524, -0.015490555204451084, 0.021638453006744385, 0.0004150753957219422, -0.0037954545114189386, 0.042390964925289154, -0.02706149034202099, 0.01520866435021162, 0.025920504704117775, -0.007080821320414543, 0.039142511785030365, -0.020739087834954262, -0.009604412131011486, 0.03860557824373245, 0.015141547657549381, 0.02214854024350643, -0.02190691977739334, -0.01304079219698906, 0.016926854848861694, 0.031195884570479393, -0.01434956956654787, 0.009805763140320778, 0.012208543717861176, -0.0031108632683753967, -0.002115856856107712, -0.007322441786527634, -0.006751948967576027, -0.005859295837581158, -0.019624948501586914, -0.020027650520205498, 0.006043866742402315, -0.0036746442783623934, 0.011658186092972755, -0.01610802859067917, 0.011866248212754726, -0.010866208001971245, 0.013577726669609547, 0.00650361692532897, -0.0033021459821611643, -0.04400176554918289, -0.039437826722860336, 0.015329474583268166, -0.014873080886900425, -0.004678040277212858, -0.009758781641721725, -0.014805964194238186, 0.02503456175327301, 0.008919821120798588, 0.015383168123662472, 0.004889457952231169, 0.006631138734519482, 0.021437102928757668, 0.05047182738780975, -0.015141547657549381, -0.002651113085448742, 0.015181818045675755, 0.005600896198302507, -0.0008116936660371721, -0.024954022839665413, -0.025732576847076416, 0.031920745968818665, 0.024645285680890083, -0.004097479861229658, -0.014805964194238186, 0.010671569965779781, -0.0035202756989747286, 0.0003013963287230581, 0.025678884238004684, -0.00783252902328968, -0.028940759599208832, 0.0043021864257752895, 0.061425287276506424, -0.0004010228149127215, 0.0146583067253232, -0.014027409255504608, -0.02069881744682789, -0.03186705335974693, -0.01855108141899109, 0.021678723394870758, -0.0019396751886233687, 0.019745759665966034, 0.022725744172930717, -0.016873160377144814, -0.010718551464378834, 0.012342778034508228, -0.011000441387295723, -0.015047584660351276, -0.007033839356154203, -0.004711598623543978, -0.004013583995401859, 0.02049746736884117, -0.030497869476675987, 0.0038155894726514816, 0.025987621396780014, 0.002642723498865962, -0.0067720841616392136, -0.012503857724368572, -0.025571497157216072, 0.04080700874328613, 0.0027853467036038637, -0.0014329435070976615, 0.0017920183017849922, 0.006798930931836367, -0.0028138714842498302, 0.007537215482443571, -0.009799051098525524, -0.010382967069745064, -0.010027248412370682, -0.0004891136195510626, -0.01824234426021576, 0.04123655706644058, -0.0038827061653137207, 0.030927415937185287, -0.0024162044283002615, 0.006003596819937229, -0.03887404501438141, 0.005305582191795111, 0.008114419877529144, 0.02281970903277397, -0.01551740150898695, 0.013758941553533077, -0.02558491937816143, -0.010020536370575428, -0.001073868595995009, 0.019624948501586914, -0.003922976553440094, -0.027517883107066154, 7.330411608563736e-05, 0.018658466637134552, 0.017772525548934937, -0.008161401376128197, 0.0014723745407536626, 0.006661341525614262, -0.02851121313869953, -0.019061168655753136, -0.016926854848861694, -0.016685234382748604, -0.012926694005727768, 0.005829093046486378, 0.009658105671405792, -0.001462307060137391, -0.028108511120080948, -0.00991315022110939, 0.020779358223080635, -0.01602748967707157, -0.010604452341794968, -0.01300723385065794, -0.0018255766481161118, -0.013738807290792465, 0.023611687123775482, 0.0029111907351762056, 0.009483602829277515, -0.015087854117155075, -0.012295795604586601, -0.006000240799039602, -0.011617916636168957, 9.375376248499379e-05, 0.021020978689193726, 0.003909552935510874, -0.019920263439416885, 0.05108930170536041, 0.015007314272224903, 0.03514235094189644, 0.01640334352850914, -0.021329715847969055, 0.006597580388188362, 0.001891015563160181, 0.021141787990927696, -0.014215336181223392, -0.010148058645427227, -0.03444433584809303, -0.02171899378299713, -0.003523631487041712, 0.008805722929537296, 0.014805964194238186, 0.03433695062994957, 0.008758741430938244, 0.017369825392961502, -0.0020302829798310995, -0.007369423285126686, 0.003872638801112771, -0.03151804581284523, 0.01413479633629322, -0.013604572974145412, 0.019624948501586914, 0.0057351295836269855, -0.006355959922075272, -0.009181576780974865, 0.010644722729921341, -0.03221605718135834, -0.0019681998528540134, 0.03269929811358452, 0.006594224367290735, 0.010141346603631973, -0.016725504770874977, -0.012886423617601395, 0.027947431430220604, 0.010027248412370682, 0.018470540642738342, -0.009899726137518883, -0.004956575110554695, 0.011376296170055866, 0.011060846969485283, 0.03374632075428963, 0.002303783781826496, -0.03248452767729759, -0.01898062787950039, 0.027625270187854767, -0.010899766348302364, 0.011510529555380344, 0.04343798756599426, 0.013322683051228523, 0.009792339988052845, -0.004013583995401859, 0.02618897147476673, 0.0019094726303592324, -0.008470138534903526, -0.0003827754408121109, 0.03390740230679512, -0.02907499298453331, 0.009684952907264233, 0.005084096919745207, 0.014362992718815804, 0.013268989510834217, -0.02467213198542595, -0.01592010259628296, -0.022618358954787254, 0.004184731747955084, 0.0030655593145638704, -0.005691503640264273, 0.018564503639936447, -0.01891351118683815, 0.012772325426340103, 0.004745156969875097, 0.02018873021006584, 0.008705047890543938, 0.01767856255173683, 0.005292159039527178, 0.003597459988668561, -0.014483802951872349, 0.03361208736896515, -0.014712000265717506, 0.001741680665872991, -0.02644401602447033, -0.004537094850093126, -0.006661341525614262, 0.005738485604524612, -0.00991315022110939, 0.005194839555770159, -0.019369905814528465, 0.004386082291603088, 0.007624467369168997, 0.010886343196034431, -0.002253446262329817, 0.0002995086833834648, 0.019571255892515182, -0.010080941952764988, -0.0124233178794384, 0.018832970410585403, 0.016067760065197945, 0.012248814105987549, -0.008503696881234646, -0.016967125236988068, 0.0029229361098259687, 0.005859295837581158, -0.0003137709863949567, -0.0043424563482403755, -0.001391834462992847, -0.008792299777269363, -0.008047303184866905, 0.009080901741981506, 0.015128124505281448, 0.04582734405994415, -0.007886222563683987, -0.013027369044721127, -0.009993690066039562, 0.03970629349350929, 0.010658145882189274, -0.032296597957611084, -0.025692306458950043, 0.02606816031038761, -0.004587432369589806, -0.01499389111995697, -0.013322683051228523, -0.005567337851971388, -0.016430189833045006, -0.007000281009823084, -0.014282452873885632, -0.02465870790183544, -0.010966883040964603, -0.004876034799963236, -0.0027635337319225073, -0.003976669628173113, 0.00595325930044055, 0.012094445526599884, 0.017222167924046516, 0.0021225684322416782, -0.01578586921095848, 0.00170224963221699, 0.01359114982187748, 0.06260654330253601, -0.0036746442783623934, 0.003310535568743944, 0.012315930798649788, -0.020054496824741364, -0.017181897535920143, -0.031007956713438034, -0.007000281009823084, 0.051330920308828354, 0.023651957511901855, -0.011342737823724747, 0.0015302627580240369, 0.010544047690927982, -0.0033122135791927576, 0.012826018035411835, -0.005714994855225086, -0.006000240799039602, -0.026054738089442253, -0.014054255560040474, 0.01441668625921011, 0.001671208068728447, -0.004678040277212858, 0.03036363609135151, 0.01677919737994671, 0.037424322217702866, 0.026779599487781525, 0.025490956380963326, 0.02510167844593525, 0.0009144662762992084, -0.027652116492390633, -0.02637689746916294, 0.008302346803247929, -0.0005612641689367592, 0.010537335649132729, -0.03984052687883377, 0.03133011609315872, -0.011772285215556622, -0.013470339588820934, -0.009698376059532166, 0.007033839356154203, -0.02179953269660473, 0.028242744505405426, -0.008114419877529144, -0.010893055237829685, 0.011946788989007473, -0.020980708301067352, -0.007235189899802208, 0.042068805545568466, -0.010839361697435379, -0.004516960121691227, 0.02307475171983242, 0.014148219488561153, -0.021705569699406624, 0.0015118056908249855, 0.002013503573834896, -0.02056458406150341, 0.008470138534903526, -0.021531065925955772, -0.03138381242752075, -0.022202234715223312, -0.01812153309583664, -0.005241821054369211, -0.005996885243803263, -0.020846474915742874, -0.018631620332598686, -0.04308898001909256, -0.018832970410585403, -0.010718551464378834, -0.019678642973303795, -0.008483562618494034, -0.01836315356194973, -0.0318133570253849, -0.024833211675286293, 0.009631259366869926, 0.021316291764378548, 0.02608158439397812, -0.0014480447862297297, 0.0031276424415409565, 0.00708753289654851, 0.011832689866423607, 0.012047464028000832, -0.01677919737994671, 0.00253869267180562, -0.028967605903744698, 0.0038827061653137207, -0.014765693806111813, -0.010617876425385475, -0.006255284883081913, -0.0001613948988961056, 0.019853146746754646, -0.013356241397559643, -0.02087332122027874, 0.017772525548934937, 0.01276561338454485, 0.01218169741332531, 0.011443412862718105, 0.008530544117093086, -0.006564022041857243, 0.014671729877591133, -0.03967944532632828, 0.039759986102581024, -0.009752069599926472, -0.019879993051290512, -0.013128044083714485, 0.03312884643673897, 0.03275299444794655, -0.009315810166299343, -0.019235672429203987, -0.0037686077412217855, -0.02331637218594551, 0.019906839355826378, -0.004949863068759441, -0.018108109012246132, -0.010638010688126087, -0.002203108510002494, -0.01927594281733036, -0.004396149888634682, 0.007168073207139969, 0.009255405515432358, -0.003976669628173113, -0.009228558279573917, -0.01163133978843689, 0.040860701352357864, 0.025786271318793297, -0.002756822155788541, 0.0010075907921418548, 0.0016955379396677017, -0.010080941952764988, -0.036941081285476685, -0.016806043684482574, 0.011342737823724747, -0.008020455949008465, -0.030256249010562897, -0.019061168655753136, -0.013698536902666092, 0.005493509117513895, -0.01622883975505829, 0.015342897735536098, 0.0035873923916369677, -0.004500180948525667, -0.03084687702357769, 0.0010612842161208391, 0.015195241197943687, -0.012725342996418476, 0.0015118056908249855, -0.03288722783327103, -0.030095169320702553, -0.005157925188541412, 0.019732335582375526, 0.0288870669901371, -0.020604854449629784, -0.013000521808862686, -0.03707531467080116, -0.02314186841249466, -0.011893095448613167, -0.026591671630740166, 0.010356120765209198, 0.016269110143184662, 0.0404043085873127, 0.034551724791526794, 0.014470379799604416, 0.026148701086640358, 0.019128285348415375, 0.029343459755182266, -0.010591029189527035, -0.014000562019646168, 9.967891674023122e-05, -0.017973875626921654, 0.009718511253595352, -0.028135357424616814, -0.018228920176625252, -0.003872638801112771, -0.008215094916522503, -0.0013943513622507453, 0.006174744572490454, -0.00816811341792345, 0.002339020138606429, -0.005547202657908201, -0.022967364639043808, -0.03047102317214012, 0.023477453738451004, 0.03820287808775902, 0.025007715448737144, 0.015866409987211227, -0.03328992798924446, -0.008054014295339584, 0.01652415283024311, 0.00025567301781848073, 0.047840848565101624, -0.008953379467129707, 0.0352497361600399, -0.014712000265717506, 0.005701571237295866, 0.021195482462644577, 0.013322683051228523, -0.010443372651934624, -0.019020898267626762, -0.03256506472826004, -0.008859416469931602, 0.006553954444825649, 0.00844329223036766, 0.02259151078760624, -0.002365866908803582, 0.004396149888634682, 0.005392834078520536, 0.021383408457040787, -0.01238975953310728, -0.017155051231384277, 0.006174744572490454, -0.031061649322509766, -0.02014845982193947, -0.0352497361600399, -0.01884639449417591, 0.019678642973303795, 0.002760177943855524, 0.002996764611452818, -0.006926452741026878, 0.01080580335110426, -0.014644883573055267, -0.022537818178534508, 0.011268909089267254, -0.010993730276823044, 0.006137830205261707, 0.01095345988869667, 0.014269029721617699, 0.02711518295109272, 0.015503978356719017, -0.017249014228582382, -0.012960252352058887, -0.005409613251686096, 0.002025249181315303, -0.006010308396071196, 0.04204195737838745, -0.02479294128715992, -0.02202773094177246, 0.014765693806111813, -0.015141547657549381, 0.003594103967770934, -0.04998858645558357, 0.030390482395887375, 0.008060726337134838, -0.008644642308354378, -0.0275984238833189, -0.017155051231384277, -0.0006657146732322872, 0.0036343741230666637, -0.017369825392961502, 0.020484043285250664, 0.006906317546963692, 0.009483602829277515, -0.007429828401654959, 0.006268708035349846, -0.01677919737994671, 0.02204115316271782, -0.014362992718815804, 0.009382926858961582, 0.014738846570253372, -0.005990173667669296, 0.0031997929327189922, -0.016604693606495857, 0.0034900731407105923, 0.008832569234073162, -0.021947190165519714, 0.0007731015211902559, 0.015477132052183151, 0.017181897535920143, 0.0048391204327344894, 0.00394646730273962, -0.02498086914420128, 0.023410337045788765, -0.007483521942049265, -0.017114780843257904, -0.00814126618206501, -0.016363073140382767, 0.016081182286143303, -0.02601446770131588, -0.01506100781261921, 0.0016032522544264793, -0.008557390421628952, 0.007107668090611696, -0.001969877863302827, 0.004634414333850145, -0.0031091852579265833, -0.003808877896517515, 0.002218209905549884, -0.023115022107958794, -0.018685314804315567, -0.0072687482461333275, 0.023772766813635826, -0.018470540642738342, -0.005292159039527178, 0.006352604366838932, -0.013201872818171978, -0.007382846903055906, 0.004963286686688662, -0.0050069126300513744, -0.004604211542755365, 0.026980949565768242, -0.016685234382748604, 0.012866288423538208, 0.012255526147782803, 0.018497386947274208, -0.037182699888944626, 0.022175386548042297, -0.005580761004239321, 0.0028809881769120693, 0.012443453073501587, 0.013087773695588112, -0.03887404501438141, -0.02210826985538006, 0.005255244672298431, 0.008960091508924961, -0.012557551264762878, 0.005688148085027933, 0.017598021775484085, 0.018027570098638535, -0.010564182884991169, -0.023423759266734123, -0.01927594281733036, 0.002147737191990018, -0.0033491277135908604, -0.007107668090611696, 0.0163362268358469, -0.01750405877828598, 0.02142367884516716, 0.007255325093865395, 0.0030387125443667173, 0.01523551158607006, -0.00963797140866518, -0.02422916144132614, -0.013685113750398159, 0.0005281252670101821, -0.0075036571361124516, 0.019732335582375526, -0.013383087702095509, -0.03637729957699776, -0.01585298590362072, 0.02711518295109272, -0.0034699379466474056, 0.0008582559530623257, 0.022188810631632805, -0.010389679111540318, -0.008557390421628952, 0.004654549527913332, -0.007819105871021748, -0.048512015491724014, -0.027437344193458557, -0.016551000997424126, -0.029236072674393654, -0.009953419677913189, -0.018027570098638535, 0.0369679294526577, 0.0008666455396451056, -0.0227794386446476, -0.029585080221295357, -0.004808918107300997, -0.022484123706817627, -0.008262076415121555, -0.02020215429365635, 0.01590667851269245, 0.018336307257413864, 0.03030994161963463, 0.009248693473637104, 0.028618598356842995, -0.006879470776766539, 0.035464510321617126, -0.02532987669110298, -0.02749103680253029, -0.008772164583206177, -0.025477534160017967, 0.036135680973529816, -0.04150502383708954, -0.038337111473083496, -0.0012735411291942, 0.016201993450522423, -0.026967525482177734, -0.0024195602163672447, 0.0318133570253849, 0.006775439716875553, 0.005772043950855732, -0.018376577645540237, -0.001407774630934, -0.007798971142619848, -0.011758861131966114, 0.008268788456916809, -0.026846716180443764, 0.009040631353855133, 0.00647341413423419, 0.0031276424415409565, -0.022242503240704536, 0.01053062453866005, 0.026900408789515495, -0.02171899378299713, -0.005674724467098713, -0.009154730476439, 0.005037114955484867, -0.04056538641452789, -0.01800072379410267, -0.007221766747534275, -0.0025856744032353163, -0.0007055652677081525, 0.03849818930029869, -0.002956494688987732, -0.019450444728136063, -0.015262357890605927, 0.015154970809817314, 0.005030403379350901, 0.008537255227565765, 0.016926854848861694, -0.009604412131011486, -0.012873000465333462, -0.010476930998265743, 0.027249416336417198, 0.008275500498712063, -0.01677919737994671, -0.024376818910241127, 0.00283232843503356, -0.03294092044234276, -0.005312293767929077, 0.007537215482443571, -0.0047988505102694035, 0.001156086684204638, -0.019208824262022972, 0.0004129779990762472, -0.02068539522588253, -0.015222087502479553, 0.014456956647336483, -0.014013986103236675, -0.02589365653693676, -0.004929728340357542, 0.009450043551623821, -0.033316776156425476, -0.006483481731265783, 0.033451009541749954, -0.013772365637123585, 0.009228558279573917, 0.20156514644622803, 0.01016148179769516, 0.0026796378660947084, 0.03030994161963463, 0.013698536902666092, -0.017047664150595665, -0.001014302484691143, -0.0031830137595534325, 0.0033122135791927576, 0.018886664882302284, 0.007705007679760456, 0.004429708234965801, -0.018819548189640045, -0.0036947792395949364, 0.01260453276336193, -0.016134876757860184, -0.022255927324295044, -0.010087653063237667, -0.015369744971394539, 0.011785708367824554, 0.014094525948166847, -0.0005474213394336402, -0.016416767612099648, 0.008530544117093086, 0.01098701823502779, 0.014456956647336483, -0.00046981751802377403, -0.0006363510619848967, 0.01352403312921524, 0.01872558519244194, -0.03165227919816971, -0.009074189700186253, 0.01499389111995697, -0.012873000465333462, -0.009590988978743553, -0.00018152994744013995, 0.00624521728605032, -0.03420271724462509, 0.012926694005727768, -0.0001145180212915875, -0.004949863068759441, -0.02343718335032463, -0.003500140504911542, -0.01249043457210064, 0.03468595817685127, -0.010013825260102749, 0.005909633357077837, -0.012309218756854534, 0.002964884275570512, 0.03753170743584633, -0.013423358090221882, 0.004429708234965801, 0.001179577549919486, 0.012349489144980907, -0.006251928862184286, -0.017302708700299263, -0.0051847719587385654, 0.008356040343642235, -0.027625270187854767, 0.02228277362883091, -0.019504139199852943, -0.006718390621244907, -0.023598263040184975, 0.02375934273004532, -0.02835013158619404, 0.001211458002217114, -0.015020737424492836, 0.03358524292707443, 0.015316051431000233, -0.01102057658135891, -0.014940197579562664, -0.0036947792395949364, -0.023598263040184975, -0.012027328833937645, -0.002293716184794903, -0.015490555204451084, 0.008765452541410923, 0.04663274437189102, 0.030283095315098763, 0.014054255560040474, 0.010913190431892872, 0.003829012857750058, -0.0034732939675450325, -0.002411170629784465, 0.007221766747534275, -0.00624521728605032, 0.027813198044896126, -0.03557189926505089, -0.008966803550720215, -0.019544409587979317, -0.02030954137444496, -0.002182973548769951, -0.016940277069807053, 0.0013817668659612536, -0.014228759333491325, -0.01707451045513153, 0.010228598490357399, 0.0238130372017622, 0.00708753289654851, -0.01989341713488102, -0.024766094982624054, 0.032591912895441055, 0.0232089851051569, 0.026980949565768242, -0.02063170075416565, -0.008678200654685497, -0.011148098856210709, 0.028242744505405426, -0.004325677175074816, 0.009134595282375813, -0.012987098656594753, -0.0459078848361969, 0.01441668625921011, 0.0033122135791927576, 0.012107868678867817, 0.03860557824373245, 0.028135357424616814, -0.018202073872089386, -0.016443613916635513, -0.0005285447114147246, 0.010289004072546959, -0.03452487662434578, 0.00844329223036766, -0.0006833327934145927, -0.03484703600406647, -0.03358524292707443, 0.006349248345941305, 0.015329474583268166, -0.025477534160017967, -0.010886343196034431, 0.020967284217476845, -0.004782071337103844, 0.010080941952764988, -0.019920263439416885, 0.0117789963260293, 0.002594063989818096, -0.0011116218520328403, -0.02422916144132614, -0.016363073140382767, 0.004379370715469122, 0.011315890587866306, 0.012094445526599884, 0.0020671971142292023, -0.0042451368644833565, 0.026900408789515495, 0.011557511053979397, 0.0031041514594107866, 0.02993408776819706, -0.007906357757747173, -0.02014845982193947, 0.010611164383590221, 0.020671971142292023, -0.004899525549262762, 0.003042068565264344, 0.02410835027694702, -0.029719313606619835, -0.03251137211918831, -0.020537737756967545, 0.019692065194249153, -0.004634414333850145, -0.0412634015083313, -0.006124407052993774, 0.022081423550844193, 0.028994452208280563, -0.017598021775484085, 0.004845832008868456, -0.1698860228061676, 0.016430189833045006, 0.016564423218369484, 0.006278775632381439, -0.0008599338470958173, 0.024457357823848724, 0.028752831742167473, 0.000601534207817167, -0.01745036616921425, -0.016926854848861694, 0.004416284617036581, -0.008013744838535786, -0.015181818045675755, -0.009523872286081314, -0.004345811903476715, -0.002060485538095236, 0.00423842528834939, 0.03844449669122696, 0.03581351786851883, -0.003255164250731468, 0.02436339482665062, -0.00820167176425457, 0.009745357558131218, -0.022430431097745895, 0.02240358479321003, 0.0306052565574646, -0.01647046022117138, 0.023719074204564095, -0.0032585200387984514, -0.031249577179551125, -0.033075153827667236, -0.013960292562842369, 0.021007554605603218, 0.01214813906699419, -0.007121091242879629, 0.0058458722196519375, 0.006265352480113506, 0.008450004272162914, -0.029289767146110535, 0.01475227065384388, 0.019195402041077614, 0.02601446770131588, 0.025719154626131058, -0.0031007956713438034, 0.023235833272337914, 0.01260453276336193, 0.003973314072936773, -0.0011124607408419251, 0.005181415937840939, -0.0016586236888542771, 0.029960934072732925, -0.008007032796740532, 0.0011493749916553497, -0.019745759665966034, 0.0076848724856972694, 0.003035356756299734, 0.0059163449332118034, 0.018698737025260925, -0.009315810166299343, -0.030685795471072197, -0.005711638834327459, -0.004486757330596447, -0.00981918629258871, -0.0004264013550709933, -0.01016148179769516, -0.026886986568570137, -0.023276101797819138, 0.03237713873386383, -0.014819387346506119, 0.008537255227565765, -0.001721545704640448, 0.007221766747534275, 0.005060605704784393, 0.010000402107834816, 0.012470299378037453, 0.01812153309583664, -0.02405465766787529, 0.005829093046486378, 0.03036363609135151, 0.014013986103236675, 0.01743694208562374, 0.0037887427024543285, 0.005476729944348335, 0.0070204162038862705, -0.03637729957699776, -0.004355879500508308, 0.014188488945364952, 0.007812394294887781, -0.009792339988052845, 0.017853066325187683, 0.013483762741088867, -0.009866167791187763, 0.025383569300174713, -0.0047585805878043175, 0.010020536370575428, 0.007409693673253059, 0.019853146746754646, -0.005634454544633627, 0.0083828866481781, -0.02300763502717018, 0.010899766348302364, 0.02784004434943199, -0.03788071498274803, -0.0020218933932483196, 0.032350294291973114, 0.022081423550844193, 0.022739168256521225, -0.00878558773547411, 0.04088754951953888, 0.0023725784849375486, -0.046793825924396515, 0.022229081019759178, 0.019168555736541748, 0.0030655593145638704, -0.01664496399462223, 0.04145132750272751, 0.010268868878483772, -0.008577525615692139, -0.0009396350360475481, -0.009973554871976376, 0.05675395578145981, -0.02159818261861801, -0.013497186824679375, 0.009926573373377323, -0.013121332041919231, -0.016859738156199455, -0.10835334658622742, -0.018161803483963013, 0.03090056963264942, 0.01208773348480463, 0.0037182702217251062, -0.0025974197778850794, -0.0017467144643887877, 0.021812956780195236, 0.0029162245336920023, 0.0153026282787323, -0.026645366102457047, -0.006423076614737511, -0.005020335782319307, -0.013785788789391518, 0.007194919977337122, -0.017114780843257904, 0.002904479159042239, -0.03098111040890217, -0.012403182685375214, 0.018779277801513672, 0.021343139931559563, -0.0016997327329590917, 0.026779599487781525, 0.012101157568395138, -0.012685073539614677, -0.010899766348302364, -0.031732819974422455, 0.01444353349506855, 0.013054215349256992, 0.0018926934571936727, 0.03739747405052185, -0.01616172306239605, 0.04537095129489899, -0.019624948501586914, -0.004258560482412577, -0.007443252019584179, -0.007550638634711504, -0.028752831742167473, 0.040726467967033386, -0.008040591143071651, -0.005513644311577082, 0.007121091242879629, 0.005745197180658579, -0.027437344193458557, -0.00035383133217692375, 0.0011846113484352827, -0.0024866771418601274, 0.033075153827667236, 0.0035303430631756783, -0.00920842308551073, -0.012383047491312027, -0.028135357424616814, -0.012745478190481663, -0.022309621796011925, 0.0398942194879055, -0.005231753922998905, 0.012611244805157185, 0.016993971541523933, -0.021839803084731102, 0.0003068495716433972, -0.019665218889713287, -0.006225082091987133, -0.02926292084157467, 0.02068539522588253, 0.017034241929650307, 0.017369825392961502, -0.020792782306671143, 0.003087372286245227, 0.008309058845043182, 0.004929728340357542, -0.007168073207139969, 0.011450123973190784, -0.021880073472857475, -0.004087412264198065, -0.02204115316271782, -0.005201551131904125, -0.0014086136361584067, -0.0032618760596960783, 0.009033920243382454, 0.015436861664056778, -0.012242102064192295, -0.008094284683465958, -0.006335824728012085, -0.01249043457210064, 0.005725061986595392, 0.0013549202121794224, 0.0030840164981782436, 0.0002653210540302098, 0.01451065018773079, -0.03390740230679512, -0.003506852313876152, 0.021437102928757668, 0.022725744172930717, 0.0027232638094574213, -0.012705208733677864, 0.004020295571535826, -0.014067678712308407, -0.020175306126475334, 0.006251928862184286, -0.0023440539371222258, -0.0009941674070432782, -0.004812273662537336, -0.048136159777641296, 0.0014178422279655933, 0.013537456281483173, 0.008590948767960072, 0.014295876026153564, -0.032108671963214874, -0.003761896165087819, -0.012483722530305386, 0.010564182884991169, -0.0026158769614994526, -0.023531146347522736, -0.002795414300635457, -0.024470781907439232, -0.008684912696480751, -0.03243083134293556, -0.02039008028805256, 0.015034160576760769, -0.019181977957487106, 0.017759103327989578, -0.005037114955484867, 0.0003376813547220081, 0.016000643372535706, 0.020658547058701515, 0.02498086914420128, -0.013342817313969135, 0.02259151078760624, -0.037182699888944626, 0.015866409987211227, -9.75946295511676e-06, -0.01243002898991108, 0.00737613532692194, -0.005315649788826704, 0.0010705128079280257, 0.01578586921095848, 0.0051713488064706326, -0.02632320486009121, -0.019987380132079124, 0.01910143904387951, 0.010181616991758347, 0.012275660410523415, 0.0017232235986739397, -0.012094445526599884, 0.028081664815545082, -0.02479294128715992, -0.03965260088443756, -0.020430350676178932, -0.018202073872089386, -0.03710216283798218, 0.012611244805157185, -0.0040672775357961655, 0.04131709411740303, 0.004003516398370266, -0.018524233251810074, -0.02508825622498989, -0.010248733684420586, -0.019571255892515182, 0.0011695100693032146, 0.026860138401389122, -0.0051445020362734795, -0.002456474583595991, 0.03022940270602703, -0.006557310465723276, -0.008664777502417564, -0.010684993118047714, 0.032108671963214874, -0.010027248412370682, -0.046364277601242065, -0.011034000664949417, 0.006906317546963692, -0.023155292496085167, -0.004047142341732979, -0.008188248611986637, 0.02405465766787529, 0.003523631487041712, 0.015262357890605927, -0.01659126952290535, 0.00014891538012307137, -0.025866810232400894, -0.008194959722459316, 0.023651957511901855, 0.021020978689193726, -0.008711759001016617, 0.002874276600778103, 0.025598343461751938, 0.027464190497994423, -0.0060136644169688225, -0.016873160377144814, 0.006137830205261707, 0.022188810631632805, 0.0037417609710246325, -0.020739087834954262, -0.005470018368214369, -0.011919941753149033, 0.02405465766787529, -0.0064398557879030704, 0.0021343138068914413, -0.008262076415121555, -0.00761775579303503, 0.030068321153521538, 0.02594735100865364, 0.016859738156199455, 0.0065774451941251755, -0.018403423950076103, 0.0037853869143873453, -0.004456555005162954, 0.002783668925985694, -0.018591349944472313, -0.01963837258517742, 0.02510167844593525, 0.008342617191374302, -0.002386001870036125, -0.03122273087501526, -0.004013583995401859, 0.00309743988327682, -0.0014514005742967129, 0.01903432235121727, 0.003506852313876152, -0.026095008477568626, -0.030068321153521538, -0.0032836890313774347, 0.012530704960227013, 0.018457116559147835, -0.0006686510168947279, -0.026658788323402405, 0.021289445459842682, 0.0026527910958975554, 0.011973635293543339, -0.011221927590668201, -0.005580761004239321, -0.01166489813476801, -0.009993690066039562, -0.014604613184928894, 0.004802206065505743, -0.011691744439303875, -0.012926694005727768, -0.0062619964592158794, 0.006597580388188362, 0.028806526213884354, -0.014483802951872349, 0.08032537251710892, 0.02883337251842022, -0.02594735100865364, 0.011919941753149033, 0.0034498029854148626, 0.013389799743890762, 0.013094485737383366, 0.017181897535920143, 0.000264482107013464, -0.01622883975505829, 0.012819306924939156, -0.013510609976947308, -0.01475227065384388, 0.013161602430045605, -0.012564263306558132, 0.0023792902939021587, -0.01012792345136404, 0.0030957618728280067, -0.0016326159238815308, -0.0017433585599064827, 0.019624948501586914, 0.008664777502417564, -0.0025907079689204693, -0.018309460952878, -0.021638453006744385, -0.010758820921182632, 0.015262357890605927, 0.028108511120080948, 0.004097479861229658, -0.014832810498774052, 0.036457840353250504, -0.0075170802883803844, -0.016846314072608948, -0.020833050832152367, -0.007819105871021748, 0.001265990431420505, -0.018497386947274208, -0.03624306619167328, 0.010074229910969734, 0.011852825060486794, -0.0049767098389565945, 0.018027570098638535, -0.021651877090334892, -0.017302708700299263, 0.012980387546122074, 0.006738525815308094, 0.004265272058546543, -0.023289525881409645, -0.004872678779065609], "af3c10bd-1db5-4954-a3c4-d9e4cde600fd": [-0.006502529606223106, -0.0013924192171543837, -0.0009311375324614346, -0.03476246818900108, 0.015488091856241226, 0.019109753891825676, -0.012566069141030312, -0.020413003861904144, -0.014061376452445984, -0.029384847730398178, 0.008477981202304363, 0.014322026632726192, 0.006245309021323919, -0.014939355663955212, -0.012408307753503323, 0.013876178301870823, 0.026325641199946404, 0.005127258133143187, 0.0020937733352184296, 0.005185561254620552, -0.02500867284834385, 0.013965347781777382, -0.009884119033813477, 0.0068694972433149815, -0.027574017643928528, 0.0016179156955331564, 0.020316975191235542, -0.014445492066442966, -0.026942970231175423, 0.01547437347471714, 0.023417336866259575, -0.017202893272042274, -0.03133286163210869, 0.005309027153998613, -0.008436826057732105, 0.011763541959226131, 0.006262456998229027, 0.010837549343705177, 0.019974013790488243, -0.005617691669613123, 0.01705199107527733, 0.02592780627310276, 0.0015510384691879153, -0.013553795404732227, -0.003930326085537672, 0.03481734171509743, -0.0011694950517266989, -0.01547437347471714, -0.017463544383645058, 0.001743953675031662, -0.005473648197948933, 0.0060155256651341915, -0.005672565195709467, 0.014568958431482315, 0.005446211434900761, 0.005631410051137209, 0.012806141749024391, 0.008910111151635647, 0.015460655093193054, -0.01415740605443716, 0.01060433592647314, -0.00016590709856245667, -0.005720579531043768, -0.01060433592647314, -0.011832133866846561, -0.037835393100976944, -0.01484332699328661, -0.005243864841759205, -0.0052095684222877026, -0.006763179320842028, 0.04891987144947052, 0.024981236085295677, 0.005034659057855606, -0.017161738127470016, -0.009335382841527462, -0.009685201570391655, -0.031854163855314255, -0.02227870747447014, -0.009781231172382832, -0.004070939961820841, 0.02306065708398819, -0.015350908041000366, -0.02264910563826561, 0.0037931420374661684, 0.02489892579615116, 0.032540082931518555, 0.009774371981620789, 0.008985563181340694, -0.005051807034760714, -0.02312925085425377, 0.0005521662533283234, 0.015611558221280575, 0.0199191402643919, 0.02251192182302475, 0.011111916974186897, 0.011550907045602798, 0.01386931911110878, 0.0072981975972652435, -0.019192064180970192, -0.005789171904325485, -0.016064265742897987, -0.009842963889241219, -0.016859933733940125, -0.014280871488153934, 0.0028311382047832012, -0.019192064180970192, 0.01277870498597622, -0.009122746996581554, 0.004389893263578415, 0.024336470291018486, -0.008670039474964142, 0.046477995812892914, 0.008299642242491245, -0.016420943662524223, -0.001245803665369749, 0.0038651637732982635, 0.03256751969456673, -0.038987740874290466, -0.009198198094964027, -0.016475819051265717, 0.005199279636144638, 0.008745490573346615, 0.041896045207977295, -0.004259568173438311, 0.007037547416985035, 0.0009817241225391626, 0.0008899822714738548, -0.0031826726626604795, 0.022319862619042397, 0.016654158011078835, 0.015927081927657127, 0.007915526628494263, 0.03147004544734955, 0.015007947571575642, -0.04110037535429001, -0.003827438224107027, -0.019685927778482437, 0.022758852690458298, 0.019260656088590622, -0.029659217223525047, 0.016379788517951965, 0.029604341834783554, 0.02418556809425354, -0.013958488591015339, 0.02008376084268093, 0.055148035287857056, -0.005483936984091997, 0.02356823906302452, 0.011153072118759155, -0.007126717362552881, -0.019864266738295555, -0.01930181123316288, -0.03668304532766342, 0.0015098832082003355, 0.002992329653352499, 0.006193865090608597, 0.007202168460935354, 0.024844052270054817, -0.007414804305881262, 0.015021665953099728, 0.004527077544480562, 0.036847665905952454, 0.006183576304465532, -0.013313722796738148, 0.003995488863438368, 0.033527810126543045, 0.006667150184512138, -0.026421669870615005, -0.020138636231422424, -0.015515528619289398, 0.00891697034239769, 0.04826138913631439, -0.01436318177729845, 0.026243330910801888, -0.010158487595617771, 0.027272211387753487, -0.004609387833625078, -0.009198198094964027, -0.02360939420759678, -0.022196397185325623, 0.029329974204301834, -0.00989097822457552, 0.003258123993873596, 0.016516974195837975, -0.013416611589491367, -0.009417693130671978, 0.030893873423337936, 0.0056279804557561874, 0.010741519741714, -0.006962096318602562, 0.024501090869307518, -0.004846030380576849, -0.01783394068479538, -0.01724405027925968, -0.6242428421974182, 0.0016967966221272945, 0.015858490020036697, -0.01415740605443716, 0.005820038262754679, 0.01511769462376833, 0.003988629672676325, -0.0006726310821250081, -0.0005826039705425501, 0.02524188533425331, 0.023513365536928177, -0.002644224790856242, -0.007030688226222992, -0.01142744068056345, -0.018259212374687195, -0.01790253259241581, 0.010391700081527233, -0.020989177748560905, -0.019356684759259224, 0.0009834389202296734, -0.026311922818422318, 0.017065709456801414, 0.0032049650326371193, 0.0012440888676792383, -0.0037005427293479443, -0.027477988973259926, 0.013176538981497288, 0.0028002718463540077, 0.002786553231999278, 0.04513359069824219, -0.028040442615747452, 0.004527077544480562, 0.025914087891578674, -0.015364626422524452, 0.04359712824225426, -0.029083043336868286, -0.008368234150111675, 0.027642609551548958, 0.02155163139104843, 0.03023538924753666, -0.018698202446103096, -0.008368234150111675, 0.016695313155651093, 0.025337915867567062, -0.017202893272042274, -0.0006640570936724544, 0.016516974195837975, -0.0037794236559420824, -0.0072433240711688995, -0.009829245507717133, -0.0011694950517266989, -0.0034416078124195337, -0.004266427364200354, -0.008032132871448994, 0.005381048657000065, -0.005785742308944464, 0.025529973208904266, -0.008745490573346615, 0.005864623002707958, 0.002320127096027136, 0.017436107620596886, 0.008923829533159733, 0.005946933291852474, -0.04573719948530197, -0.037698209285736084, 0.01202419213950634, -0.013958488591015339, -0.01953502558171749, -0.004489351995289326, -0.009383397176861763, 0.024130694568157196, -0.004307582974433899, 0.005336463917046785, -0.0007185020367614925, 0.0013203975977376103, 0.02384260855615139, 0.05133431404829025, -0.014184842817485332, -0.003522203303873539, 0.011523469351232052, 0.00475686090067029, 0.0007480824133381248, -0.016009392216801643, -0.008477981202304363, 0.01902744360268116, 0.016901088878512383, -0.012771845795214176, -0.007483396213501692, 0.005219857674092054, -0.013162820599973202, 0.005315886344760656, 0.02288231812417507, -0.005192420445382595, -0.021853437647223473, 0.010083036497235298, 0.06727511435747147, -0.0015141702024266124, 0.01687365211546421, 0.0015313181793317199, -0.027080154046416283, -0.03023538924753666, -0.017065709456801414, 0.015831053256988525, 0.0051615540869534016, 0.014500366523861885, 0.03147004544734955, -0.01233285665512085, -0.004516788758337498, 0.005991518497467041, -0.015227442607283592, -0.005638269241899252, -0.00045785214751958847, -0.019219500944018364, -0.0069175115786492825, 0.018506143242120743, -0.024405062198638916, 0.0059743705205619335, 0.00980180874466896, 0.01694224402308464, -0.004729424137622118, -0.019123472273349762, -0.015419499948620796, 0.03133286163210869, 0.013876178301870823, 0.01337545644491911, 0.018053436651825905, 0.006499100010842085, -0.013656683266162872, 0.018986288458108902, -0.007867511361837387, -0.01664043962955475, 0.00018198337056674063, -0.008038992062211037, -0.005267872009426355, 0.0243227519094944, -0.0008544001029804349, 0.020989177748560905, 0.0011832134332507849, 0.006824912037700415, -0.04282889515161514, 0.0018365529831498861, 0.008766068145632744, 0.024473654106259346, -0.01953502558171749, -0.00513411732390523, -0.019123472273349762, 0.0039200372993946075, -0.0015630420530214906, 0.01937040314078331, -0.003714261343702674, -0.023856326937675476, -0.01783394068479538, 0.012867874465882778, 0.009390256367623806, -0.002517329528927803, -0.00527816079556942, 0.0010871845297515392, -0.030207952484488487, -0.016475819051265717, -0.022059213370084763, -0.01253863237798214, -0.00579946069046855, -0.024775460362434387, -0.002364712068811059, -0.01865704543888569, -0.01803971827030182, -0.008340797387063503, 0.016928525641560555, -0.02244332991540432, -0.01598195545375347, -0.008327079005539417, -0.013533217832446098, -0.01334115955978632, 0.01415740605443716, 0.013636105693876743, 0.011269679293036461, -0.014678705483675003, -0.01806715503334999, -0.007112998981028795, -0.01618773117661476, 0.009109028615057468, 0.022525640204548836, -0.014815889298915863, -0.03182672709226608, 0.03764333575963974, 0.0034347486216574907, 0.020577624440193176, 0.01851986162364483, -0.019795674830675125, 0.007744045928120613, -0.010185924358665943, 0.012929607182741165, -0.0184512697160244, -0.0037108317483216524, -0.01636607013642788, -0.01554296538233757, -0.007881230674684048, -0.0020011740271002054, 0.019342966377735138, 0.023444773629307747, 0.023142969235777855, 0.008553432300686836, 0.007634298875927925, 0.009314804337918758, 0.005357041489332914, -0.026654882356524467, 0.02033069357275963, -0.02551625482738018, 0.011461736634373665, -0.008519136346876621, -0.0050655254162848, 0.006653431802988052, 0.015241160988807678, -0.016997117549180984, 0.010062457993626595, 0.030207952484488487, 0.012476899661123753, 0.014939355663955212, -0.007469677831977606, -0.016215167939662933, 0.006526536773890257, 0.009486285038292408, 0.01407509483397007, -0.020646216347813606, 0.006749460939317942, 0.018368959426879883, -0.002747112885117531, 0.03432347625494003, 0.008978703990578651, -0.02900073304772377, -0.007702890783548355, 0.028095316141843796, -0.009122746996581554, 0.018286649137735367, 0.038246944546699524, 0.006447655614465475, 0.020413003861904144, -0.007462818641215563, 0.03179929032921791, -0.0015510384691879153, 0.0022069502156227827, 0.005068955011665821, 0.01511769462376833, -0.033939361572265625, 0.020728526636958122, 0.0013444047654047608, 0.004009207244962454, -0.0014635835541412234, -0.02370542287826538, 0.010336826555430889, -0.005487366579473019, -0.0072913384065032005, -0.005686283577233553, -0.007757764309644699, 0.02677834965288639, -0.022223833948373795, 0.018766794353723526, 0.014129969291388988, 0.009307945147156715, 0.016585566103458405, 0.01019964274019003, 0.01342347078025341, -0.0012166521046310663, -0.00549079617485404, 0.016585566103458405, -0.007840074598789215, -0.00958231370896101, -0.02152419462800026, 0.0036490987986326218, -0.017463544383645058, 0.010988451540470123, -0.015872208401560783, 0.0012861015275120735, -0.020851992070674896, -0.001363267656415701, -0.0017173743108287454, 0.00017040845705196261, 0.004372745286673307, -0.0012338000815361738, 0.025941524654626846, -0.021332137286663055, -0.021194953471422195, 0.018945133313536644, 0.020097479224205017, 0.007222746033221483, 0.004527077544480562, -0.005950363352894783, -0.012181953527033329, 0.014239716343581676, 0.02681950479745865, 0.005377619061619043, -0.004396752454340458, -0.00790866743773222, -0.01351264026015997, 0.008738631382584572, -0.0011129064951092005, 0.031305424869060516, -0.019631054252386093, -0.02086571231484413, 0.004187546670436859, 0.037423841655254364, 0.0106935054063797, -0.02336246334016323, -0.02913791686296463, 0.03040001168847084, -0.00797725934535265, -0.04024983197450638, -0.02104405127465725, -0.015309752896428108, -0.02927510067820549, -0.005977800115942955, -0.003892600769177079, -0.019768238067626953, -0.008958125486969948, 0.003285560756921768, -0.013087369501590729, 0.00013761286390945315, -0.0033490085043013096, 0.012367152608931065, 0.024912644177675247, -0.007414804305881262, -0.010405418463051319, 0.004057221580296755, 0.019068598747253418, 0.07550616562366486, -0.006547114346176386, -0.0007420805632136762, 0.009987006895244122, -0.004331590142101049, -0.007812637835741043, -0.029631778597831726, -0.017257768660783768, 0.042307596653699875, 0.020742245018482208, -0.023719141259789467, -0.004043503198772669, 0.00891697034239769, -0.00442418921738863, 0.007723468355834484, -0.007517692167311907, 0.0047877272590994835, -0.02288231812417507, -0.003148376476019621, 0.02487148903310299, 0.00828592386096716, -0.0014138543047010899, 0.02982383780181408, 0.02008376084268093, 0.04115524888038635, 0.029522031545639038, 0.03706716001033783, 0.012504336424171925, -7.218244718387723e-05, -0.021565349772572517, -0.009314804337918758, 0.014376900158822536, 0.0021863726433366537, 0.016613002866506577, -0.039920590817928314, 0.041621673852205276, -0.006406500469893217, -0.01140686310827732, -0.013780149631202221, 0.021373292431235313, -0.0033301454968750477, 0.028095316141843796, -0.013999643735587597, -0.014143687672913074, 0.02118123508989811, -0.012456322088837624, -0.023074377328157425, 0.029110480099916458, -0.011400003917515278, -0.005339893512427807, 0.014486648142337799, 0.017751630395650864, -0.006807764060795307, 0.01275812741369009, 0.009506862610578537, -0.0246657133102417, -0.0029305967036634684, -0.029933584854006767, -0.0339667983353138, -0.02124982699751854, -0.023623112589120865, -0.01415740605443716, -0.013567513786256313, -0.024158131331205368, -0.019548743963241577, -0.03739640489220619, -0.0218260008841753, -0.012970762327313423, -0.024994954466819763, 0.004578521475195885, -0.020413003861904144, -0.03432347625494003, -0.036600735038518906, 0.015584121458232403, 0.013876178301870823, 0.00993899255990982, 0.00038733091787435114, -0.002906589535996318, -0.00046128174290060997, -0.0010786105412989855, 0.007119858171790838, -0.014623831957578659, 0.01067292783409357, -0.02333502657711506, 0.006591699086129665, -0.019754519686102867, -0.008066428825259209, -0.010501448065042496, 0.0013992785243317485, 0.02496751770377159, -0.005826897453516722, -0.01769675686955452, 0.0027419684920459986, 0.005384478252381086, 0.017408670857548714, 0.011235383339226246, 0.015858490020036697, -0.0069312299601733685, 0.03344549983739853, -0.041347306221723557, 0.015927081927657127, -0.01598195545375347, -0.017065709456801414, -0.01147545501589775, 0.019562462344765663, 0.025296760722994804, -0.01185271143913269, -0.011948741041123867, -0.015721304342150688, -0.02042672224342823, 0.010768956504762173, 0.006941518746316433, -0.023924918845295906, -0.008574009872972965, 0.007771482691168785, -0.019356684759259224, 0.0051615540869534016, 0.016613002866506577, 0.007984118536114693, -0.011098198592662811, -0.0018485565669834614, -0.007558847311884165, 0.04387149587273598, 0.016791341826319695, -0.003105506533756852, 0.011797837913036346, 0.015666430816054344, -0.018286649137735367, -0.04115524888038635, -0.013862459920346737, 0.015076539479196072, -0.0017079428071156144, -0.026394233107566833, -0.017367515712976456, -0.005957222543656826, 0.0029700370505452156, -0.017436107620596886, 0.01677762344479561, -0.005590254906564951, 0.00397834088653326, -0.03857618570327759, 0.010089895687997341, 0.0188902597874403, -0.017394952476024628, -0.0014721575425937772, -0.03037257306277752, -0.0350368358194828, -0.005003792233765125, 0.013128524646162987, 0.04074369743466377, -0.02179856412112713, -0.009534299373626709, -0.02968665398657322, -0.021579068154096603, -0.008944407105445862, -0.010185924358665943, 0.005874911788851023, 0.019054880365729332, 0.04598413035273552, 0.040633950382471085, 0.01393791101872921, 0.015584121458232403, 0.02391120046377182, 0.01574874296784401, -0.010439715348184109, -0.009047295898199081, -0.002318412298336625, -0.029220227152109146, 0.012579787522554398, -0.02494008094072342, -0.008814082480967045, -0.011832133866846561, 0.0018074014224112034, 0.0022686831653118134, -0.014376900158822536, -0.01000758446753025, -0.005387907847762108, -0.010727801360189915, -0.015927081927657127, -0.0332808792591095, 0.017504699528217316, 0.038795679807662964, 0.007551988121122122, 0.0003361011913511902, -0.02462455816566944, 0.005041518248617649, 0.015392063185572624, -0.01055632159113884, 0.038274381309747696, 0.005813179071992636, 0.026037555187940598, -0.002278971951454878, 0.005123828537762165, 0.040908318012952805, -0.007627439685165882, 0.0016736468533053994, -0.014994229190051556, -0.03306138515472412, -0.007936104200780392, 0.021922029554843903, 0.015652712434530258, 0.01783394068479538, -0.008327079005539417, 0.004098376724869013, 0.02008376084268093, 0.012003614567220211, -0.0246657133102417, -0.01636607013642788, 0.011173650622367859, -0.02223755232989788, -0.008656321093440056, -0.03558557108044624, -0.0170794278383255, 0.009307945147156715, -0.021483039483428, 0.006032673642039299, 0.0012175095034763217, 0.013958488591015339, -0.02114007994532585, -0.02473430521786213, 0.007503973785787821, -0.014761015772819519, 0.014953074045479298, 0.017847659066319466, 0.018190620467066765, 0.02063249796628952, 0.015035384334623814, -0.02189459279179573, -0.021976903080940247, 0.007167872507125139, -0.0037314093206077814, -0.00093199493130669, 0.04096319153904915, -0.016763905063271523, -0.012127080000936985, -0.004503070376813412, -0.012106502428650856, 0.006375634111464024, -0.036189183592796326, 0.02462455816566944, 0.004527077544480562, -0.012339715845882893, -0.0332808792591095, -0.026586290448904037, 0.000783235824201256, 0.001439576270058751, -0.015035384334623814, 0.018972570076584816, 0.003285560756921768, 0.010638631880283356, 0.008971844799816608, 0.02606499195098877, -0.008443685248494148, 0.02111264318227768, -0.002318412298336625, 0.005778883118182421, -0.0029511742759495974, -0.010597476735711098, 0.0005311599234119058, -0.02869892679154873, 0.009609750472009182, 0.0009534299606457353, -0.027560299262404442, -0.0015981955220922828, 0.017367515712976456, 0.012819860130548477, 0.0029563186690211296, -0.004242420196533203, -0.01998773217201233, 0.034350913017988205, -0.00404693279415369, -0.014555240049958229, 0.0014713001437485218, -0.012120220810174942, 0.009040436707437038, -0.014418055303394794, -0.019658491015434265, -0.018492424860596657, -0.008656321093440056, 0.007469677831977606, 0.00016011964180506766, -0.008073288016021252, -0.00546678900718689, 0.0061046951450407505, 0.006245309021323919, -0.01953502558171749, -0.017408670857548714, -0.003800001461058855, 0.01067292783409357, -0.024912644177675247, 0.007915526628494263, -0.012867874465882778, -0.012675817124545574, 0.0034793333616107702, 0.009287367574870586, -0.017669320106506348, 0.009966429322957993, 0.013636105693876743, -0.0247617419809103, 0.024034665897488594, 0.01666787639260292, 0.027642609551548958, -0.043432507663965225, 0.03122311644256115, -0.011379426345229149, 0.00222409819252789, 0.011057043448090553, 0.0010211645858362317, -0.035750191658735275, -0.02602383680641651, 0.005425633862614632, 0.000820104090962559, 0.007140435744076967, -0.00017523134010843933, 0.01093357801437378, 0.007730327546596527, -0.005099821370095015, -0.025735748931765556, -0.02746427059173584, -0.0008899822714738548, -0.0150491027161479, 0.002623647218570113, 0.002378430450335145, -0.006313900928944349, 0.012236827053129673, 0.0038651637732982635, 0.015762461349368095, 0.0051752724684774876, -0.022607950493693352, -0.020440440624952316, -0.02982383780181408, -0.00899928156286478, -0.005576536059379578, 0.019452715292572975, -0.008608306758105755, -0.03723178058862686, -0.02555740997195244, 0.024432498961687088, -0.0069449483416974545, 0.006478521972894669, 0.023458492010831833, -0.015446936711668968, -0.019823111593723297, 0.012195671908557415, -0.0005727438838221133, -0.056794244796037674, -0.04351481795310974, -0.024473654106259346, -0.036984849721193314, -0.011214805766940117, -0.009335382841527462, 0.03026282601058483, 0.01251805480569601, -0.010336826555430889, -0.03610687330365181, -0.023883763700723648, -0.024912644177675247, 8.890176832210273e-05, 0.0008333937730640173, 0.024295315146446228, 0.023307589814066887, 0.029659217223525047, 0.003294134745374322, 0.02661372721195221, -0.017683038488030434, 0.03308882191777229, -0.029768964275717735, -0.02127726376056671, -0.021085206419229507, -0.028369685634970665, 0.025804340839385986, -0.03289676085114479, -0.04463972523808479, -0.014884482137858868, 0.008532854728400707, -0.02223755232989788, -0.004561373498290777, 0.015460655093193054, 0.002891156356781721, -0.001139485975727439, -0.00975379440933466, -0.004232131410390139, 0.01304621435701847, 0.004533936735242605, 0.005425633862614632, -0.023650549352169037, 0.007140435744076967, 0.00889639277011156, -0.007929245010018349, -0.001031453488394618, 0.0026545135769993067, 0.016558129340410233, -0.024171849712729454, -0.008244768716394901, -0.029878711327910423, -0.004465344361960888, -0.025776904076337814, 8.895535574993119e-05, -0.00449964078143239, -0.005470218602567911, -0.006337908562272787, 0.04033214598894119, -0.011015888303518295, -0.0034587557893246412, -0.00862202513962984, 0.010103614069521427, 0.013396034017205238, -0.0009079877054318786, 0.026586290448904037, -0.03613431006669998, -0.0014815889298915863, -0.023787733167409897, 0.03215596824884415, -0.01422599796205759, -0.01762816496193409, -0.030345136299729347, -0.013526358641684055, -0.03424116596579552, -0.011790978722274303, 0.008416248485445976, -0.006550543941557407, -0.00906787347048521, -0.011811556294560432, 0.00105889025144279, -0.012943325564265251, -0.013787008821964264, 0.0027934126555919647, -0.016105420887470245, -0.018533580005168915, 0.003347293706610799, 0.011365707963705063, -0.026600008830428123, -0.0001817690208554268, 0.03734153136610985, -0.01971336454153061, 0.010240797884762287, 0.21598275005817413, 0.00020266816136427224, 0.009664623998105526, 0.03531120344996452, 0.014582676813006401, -0.010151628404855728, 0.005003792233765125, -0.00012507337669376284, 0.004708846565335989, 0.025228166952729225, 0.003806860651820898, 0.007462818641215563, -0.019219500944018364, -0.0022875459399074316, 0.014678705483675003, -0.015501810237765312, -0.016270041465759277, -0.022388456389307976, 0.0006096121505834162, -0.0005054378998465836, 0.00320667983032763, 0.005597114097326994, -0.031003620475530624, 0.003321571508422494, 0.02954946830868721, 0.02462455816566944, -0.0010254515800625086, 0.020344411954283714, 0.010748378932476044, 0.013101087883114815, -0.026353077962994576, -0.017134301364421844, 0.0247617419809103, -0.008080147206783295, -0.012861015275120735, -0.009054155088961124, 0.012813000939786434, -0.02968665398657322, -0.0012055058032274246, 0.009561736136674881, 0.003120939712971449, -0.013286286033689976, 0.0031106509268283844, -0.01584477163851261, 0.02732708491384983, -0.016270041465759277, 0.007195309270173311, -0.006742601748555899, 0.01380072720348835, 0.04173142462968826, -0.006787186488509178, 0.007188450079411268, 0.010755238123238087, 0.010405418463051319, -0.006375634111464024, -0.01684621535241604, -0.005720579531043768, -0.008059569634497166, -0.01950758881866932, 0.016283759847283363, -0.009808667935431004, 2.8267440939089283e-05, -0.012703253887593746, 0.017161738127470016, -0.03410398215055466, 0.00428014574572444, -0.011153072118759155, 0.04274658486247063, 0.004266427364200354, 0.010021302849054337, -0.013039355166256428, -0.018464988097548485, -0.02347221039235592, -0.010439715348184109, 0.008855237625539303, -0.008971844799816608, -0.005000362638384104, 0.03843900188803673, 0.03596968948841095, 0.018876541405916214, 0.0036765355616807938, 0.018327804282307625, -0.017038272693753242, -0.011749823577702045, 0.010508307255804539, -0.01783394068479538, 0.024994954466819763, -0.02913791686296463, 0.00891697034239769, -0.006289893761277199, -0.01107076182961464, 0.003132943296805024, -0.010542603209614754, -0.0010906141251325607, -0.0013752712402492762, -0.010096754878759384, 0.007949822582304478, 0.028205065056681633, 0.005473648197948933, -0.013313722796738148, -0.026558853685855865, 0.05523034557700157, 0.02210036851465702, 0.024213004857301712, -0.01714801974594593, -0.012668957933783531, -0.0048494599759578705, 0.015090257860720158, 0.003755416488274932, -0.0006314758793450892, -0.01584477163851261, -0.04266427457332611, 0.01980939321219921, 0.0028431417886167765, 0.011797837913036346, 0.032128531485795975, 0.03284188732504845, -0.0035564994905143976, -0.013485203497111797, -0.010405418463051319, 0.020797118544578552, -0.02166138030588627, -0.0003740412066690624, 0.009993866086006165, -0.02343105524778366, -0.03218340501189232, -0.010830690152943134, 0.006584839895367622, -0.027711201459169388, -0.02274513430893421, 0.008450544439256191, -0.010597476735711098, 0.01568014919757843, -0.014102532528340816, -0.00042269870755262673, -0.0025361923035234213, -0.0020869141444563866, -0.02019350975751877, -0.007936104200780392, 0.005357041489332914, 0.01577617973089218, 0.00951372180134058, 0.01031624898314476, -0.01185271143913269, 0.02445993572473526, -0.009561736136674881, -0.0022275277879089117, 0.0022155242040753365, -0.01371841598302126, -0.02596896141767502, 0.014404336921870708, 0.026558853685855865, -0.00700325146317482, 0.01298448070883751, 0.03256751969456673, -0.014349463395774364, -0.03168954327702522, -0.01758700981736183, 0.016695313155651093, -0.011962459422647953, -0.046066440641880035, -0.008663180284202099, 0.04806933179497719, 0.014925637282431126, -0.017532136291265488, -0.003307853126898408, -0.17493724822998047, 0.006920941174030304, 0.013231412507593632, -0.008457403630018234, 0.0004169112362433225, 0.018012281507253647, 0.017888814210891724, -0.00020813409355469048, -0.027107590809464455, -0.012408307753503323, 0.008855237625539303, 0.002052617957815528, -0.030290262773633003, -0.021976903080940247, 0.0036388100124895573, -0.01776534877717495, -0.014733579009771347, 0.019068598747253418, 0.0457097627222538, -0.008189894258975983, 0.016516974195837975, -0.010803253389894962, 0.012806141749024391, -0.01960361748933792, 0.012888452038168907, 0.03413141891360283, -0.010474011301994324, 0.030976183712482452, 0.009170761331915855, -0.03498196229338646, -0.027203619480133057, -0.013327441178262234, 0.021085206419229507, 0.012243686243891716, 0.002954603871330619, 0.005672565195709467, 0.009849823080003262, 0.010995310731232166, -0.025914087891578674, 0.010014443658292294, 0.019329247996211052, 0.013903615064918995, 0.017875095829367638, 0.00010637131344992667, 0.01978195644915104, 0.01718917489051819, 0.018849104642868042, -0.004715705756098032, -0.004173828288912773, 0.0007600859971717, 0.03358268365263939, -0.027491707354784012, -0.00632076058536768, -0.023760296404361725, 0.0037451277021318674, -0.00120636320207268, -0.00014415054465644062, 0.024542247876524925, -0.0014404336689040065, -0.021153798326849937, -0.010227079503238201, -0.008169316686689854, -0.020755963400006294, -0.0015844771405681968, -0.003091788152232766, -0.03975597023963928, -0.03843900188803673, 0.03155235946178436, -0.007119858171790838, 0.0025567698758095503, 0.005943503696471453, 0.009664623998105526, 0.008532854728400707, 0.022937191650271416, 0.014349463395774364, 0.016681594774127007, -0.02808159776031971, -0.002239531371742487, 0.03481734171509743, 0.008004696108400822, 0.013903615064918995, 0.005092962179332972, 0.006663720589131117, -0.0001002623321255669, -0.04233503341674805, -0.0027282501105219126, 0.01349206268787384, 0.003892600769177079, 0.0006529109086841345, 0.012744409032166004, 0.01728520542383194, -0.019356684759259224, 0.026325641199946404, 0.001857130671851337, 0.0003661102382466197, 0.0004269857017789036, 0.026119865477085114, -0.00527816079556942, 0.008525995537638664, -0.00901985913515091, 0.010288812220096588, 0.02159278653562069, -0.04167654737830162, 0.0106935054063797, 0.024638276547193527, 0.011166791431605816, 0.022347301244735718, -0.013979066163301468, 0.021537913009524345, 0.003508484922349453, -0.03695741295814514, 0.027313366532325745, 0.01724405027925968, 0.0028877267614006996, -0.010220220312476158, 0.04269171133637428, 0.006173287518322468, -0.01284729689359665, 0.00383429741486907, -0.006598558276891708, 0.06266572326421738, -0.028973296284675598, -0.019000006839632988, 0.012723831459879875, -0.005384478252381086, -0.0060841175727546215, -0.1086498573422432, -0.025118419900536537, 0.03931698203086853, 0.000724503886885941, 0.0039028895553201437, 0.011729246005415916, -0.0004810019745491445, 0.028671490028500557, -0.016338633373379707, 0.012476899661123753, -0.026901815086603165, -0.011989896185696125, -0.016215167939662933, -0.012010473757982254, 0.01407509483397007, -0.0135812321677804, 0.015638994053006172, -0.030427448451519012, 0.0007283621816895902, 0.01422599796205759, 0.013190257363021374, -0.01342347078025341, 0.01520000584423542, 0.002618502825498581, -0.012374011799693108, -0.02455596625804901, -0.03215596824884415, 0.0027505424804985523, 0.003180957864969969, 0.0009114173008129001, 0.043130699545145035, -0.016791341826319695, 0.027313366532325745, -0.023664267733693123, -0.0007815210265107453, -0.01806715503334999, 0.00029301681206561625, -0.015529247000813484, 0.0369025394320488, -0.025063546374440193, 0.0059880889020860195, 0.01810831017792225, 0.0073119159787893295, -0.0321010947227478, -0.006245309021323919, -0.0012046484043821692, -0.00360794342122972, 0.044529978185892105, 0.014335745014250278, -0.0022755423560738564, -0.02033069357275963, -0.022319862619042397, -0.014651268720626831, -0.027038998901844025, 0.04068882390856743, -0.0009414263186044991, 0.006691157817840576, 0.0048014456406235695, -0.027450550347566605, 0.006591699086129665, -0.013217694126069546, -0.0002072766947094351, -0.019864266738295555, 0.013348018750548363, 0.007826356217265129, 0.013258849270641804, -0.013752712868154049, 0.01498051080852747, -0.000791381171438843, -0.0073393527418375015, -0.016887370496988297, 0.001589621533639729, -0.020728526636958122, -0.01055632159113884, -0.024981236085295677, 0.004571662284433842, -0.002242961199954152, -0.009548017755150795, 0.004441337194293737, 0.009623468853533268, -0.02166138030588627, -0.006773468106985092, -0.0048014456406235695, -0.013176538981497288, 0.006564262323081493, -0.008299642242491245, 0.014802170917391777, 0.0007939533679746091, 0.015460655093193054, -0.03473503142595291, 0.003120939712971449, 0.021990621462464333, 0.008011555299162865, 0.005099821370095015, -0.013876178301870823, 0.00421155383810401, -0.00899928156286478, 0.003546210704371333, 0.00901985913515091, 8.134591917041689e-05, -0.00468826899304986, -0.0047671496868133545, -0.05169099196791649, 0.01026823464781046, 0.008594587445259094, 0.0069175115786492825, 0.021126361563801765, -0.037451278418302536, -0.008525995537638664, -0.01772419363260269, 0.010206501930952072, -0.0023870044387876987, -0.017641883343458176, 0.005096391774713993, -0.032265715301036835, -0.015172568149864674, -0.029741527512669563, -0.021153798326849937, 0.01994657702744007, -0.0019257226958870888, 0.01140686310827732, 0.0030437735840678215, -0.00045870954636484385, -0.0033164271153509617, 0.03517401963472366, 0.03462528437376022, 0.0010434570722281933, 0.02503610961139202, -0.03234802559018135, 0.03361012041568756, -0.01484332699328661, -0.026558853685855865, 0.009884119033813477, 0.006478521972894669, 0.0012003614101558924, 0.005861193407326937, -0.009163902141153812, -0.03361012041568756, -0.007661735638976097, 0.014472929760813713, 0.018231775611639023, -0.005789171904325485, -0.001005731406621635, -0.019054880365729332, 0.02913791686296463, -0.027135027572512627, -0.03489965200424194, -0.020454159006476402, -0.018286649137735367, -0.024514809250831604, 0.01666787639260292, 0.004530507139861584, 0.032402899116277695, -0.005360471084713936, -0.024267878383398056, -0.019205782562494278, -0.0036628171801567078, -0.024089539423584938, 0.0069655259139835835, 0.026764631271362305, -0.006550543941557407, 0.007030688226222992, 0.0391523614525795, -0.00823104940354824, 0.007126717362552881, -0.017751630395650864, 0.039097487926483154, -0.005285019986331463, -0.04274658486247063, -0.005579965654760599, 0.006776897702366114, -0.01749098114669323, -0.006577980704605579, -0.0034553261939436197, 0.025612283498048782, 0.005569676868617535, 0.016722749918699265, -0.016818778589367867, -0.010796393267810345, -0.01659928448498249, -0.014116250909864902, 0.03136029839515686, 0.020111197605729103, -0.015378344804048538, -0.004420759622007608, 0.014472929760813713, 0.028026724234223366, 0.007099280599504709, -0.019754519686102867, 0.015364626422524452, 0.015584121458232403, 0.009767512790858746, -0.02705271728336811, -0.0022292425855994225, -0.0029563186690211296, 0.012106502428650856, -0.004321301355957985, 0.023321308195590973, -0.01429458986967802, 0.0037314093206077814, 0.0217299722135067, 0.03528376668691635, 0.0010408848756924272, 0.006735742557793856, -0.015460655093193054, 0.005439352244138718, -0.0011986466124653816, 0.014404336921870708, -0.01511769462376833, -0.009630328044295311, 0.023938637226819992, 0.024089539423584938, 0.004551084712147713, -0.02743683196604252, 0.003508484922349453, 0.013677260838449001, -0.012552350759506226, 0.004266427364200354, 0.004979785066097975, -0.016379788517951965, -0.03377474099397659, 0.012675817124545574, 0.01238087099045515, 0.018492424860596657, 0.01226426474750042, -0.017394952476024628, 0.023952355608344078, 0.005487366579473019, 0.019205782562494278, -0.006317330989986658, -0.004918052349239588, -0.004372745286673307, -0.00014607970661018044, -0.00982238631695509, 0.01140686310827732, -0.008011555299162865, -0.007620580494403839, -0.003827438224107027, -0.011434299871325493, 0.026668600738048553, -0.013389174826443195, 0.08637114614248276, 0.024610839784145355, -0.01639350689947605, 0.003242690581828356, -0.009746935218572617, 0.007696031592786312, 0.01838267780840397, 0.02633935958147049, -0.008210471831262112, -0.014212279580533504, 0.03193647414445877, -0.011550907045602798, -0.009849823080003262, 0.00561083247885108, -0.006831771228462458, 0.0048220232129096985, -0.0011000455124303699, 0.01797112636268139, -0.009342242032289505, 0.017669320106506348, 0.002693953923881054, 0.005768594332039356, -0.0020560475531965494, -0.012881592847406864, -0.028232501819729805, -0.013965347781777382, 0.018602171912789345, 0.024789178743958473, 0.0005427348660305142, -0.019425278529524803, 0.031168242916464806, 0.0009954426204785705, -0.02650398015975952, -0.00809386558830738, -0.0036936835385859013, 0.009150183759629726, -0.016928525641560555, -0.024679431691765785, -0.0014798741322010756, 0.01957618072628975, 0.008368234150111675, 0.012991339899599552, -0.02462455816566944, -0.012929607182741165, 0.012737549841403961, 0.002304693916812539, 0.0009517151629552245, -0.0170794278383255, 0.00022656822693534195], "f891d754-5b71-4448-9069-3dff046be834": [-0.001795227755792439, -0.014214987866580486, 0.004614801611751318, -0.033730003982782364, 0.011516028083860874, 0.02584289014339447, -0.021815426647663116, -0.023227835074067116, -0.017718041315674782, -0.03661075979471207, 0.017480310052633286, 0.010683964937925339, 0.02036106400191784, -0.012886484153568745, -0.0023161410354077816, 0.025898827239871025, 0.03051362745463848, 0.004093888681381941, 0.00927155651152134, -0.009565225802361965, -0.024640243500471115, 0.003024093573912978, -0.020011458545923233, 0.007782233878970146, -0.02624843269586563, -0.00607965188100934, 0.023241819813847542, -0.008061918430030346, -0.023269787430763245, 0.026206480339169502, 0.0058768801391124725, -0.013173161074519157, -0.020668717101216316, -0.002819573972374201, -0.00795703660696745, 0.011718799360096455, 0.013005350716412067, 0.007544501684606075, 0.006418769713491201, -0.004544880706816912, 0.011467083357274532, 0.03722606599330902, -0.003789731068536639, -0.013403900898993015, -0.01913045160472393, 0.038540586829185486, -0.005855903495103121, -0.007243840489536524, -0.026094606146216393, -0.0013809445081278682, -7.980853843037039e-05, 0.003260077675804496, -0.02143785171210766, 0.013173161074519157, 0.007796218153089285, -0.0011685587232932448, 0.011648878455162048, 0.009229603223502636, 0.014907208271324635, 0.001261204364709556, -0.00012902653543278575, 0.003849164117127657, -0.00850941427052021, -0.01262777578085661, -0.01064201258122921, -0.029618635773658752, -0.012767618522047997, -0.0028160777874290943, -0.0010785351041704416, -0.024234700947999954, 0.0467073880136013, 0.03574373573064804, 0.014291901141405106, -0.008110863156616688, -0.0053245024755597115, -0.005817446857690811, -0.026863738894462585, -0.039911042898893356, 0.003454109188169241, -0.005037825088948011, 0.02469618059694767, 0.0004531770246103406, -0.02065473422408104, 0.009222610853612423, 0.013522767461836338, 0.024794071912765503, 0.018599050119519234, 0.011117476969957352, 0.0022794322576373816, -0.01739640347659588, 0.010334358550608158, 0.015676341950893402, 0.026486165821552277, 0.0381210595369339, 0.006509667262434959, 0.009614170528948307, 0.010236469097435474, -0.006862769369035959, -0.018361316993832588, -0.01576024666428566, -0.009299525059759617, -0.00019599797087721527, -0.01980169489979744, -0.013166168704628944, -0.015326735563576221, -0.015844153240323067, 0.013271050527691841, -0.014012215659022331, -0.007369698490947485, 0.016962891444563866, -0.011991492472589016, 0.044581782072782516, 0.0011117476969957352, -0.0021430859342217445, 0.008124847896397114, -0.01438979059457779, 0.02833208627998829, -0.015144940465688705, -0.004377069417387247, -0.02610859088599682, 0.012166295200586319, -0.0021430859342217445, 0.0648869052529335, -0.004394549876451492, 0.01861303299665451, -0.0024734637700021267, 0.000625358079560101, -0.009670107625424862, 0.023563457652926445, -0.0010566847631707788, 0.024038922041654587, 0.003413904458284378, 0.014242956414818764, 0.015970010310411453, -0.03336641564965248, 0.010984626598656178, -0.011026578955352306, 0.014019208028912544, 0.01056509930640459, -0.02514367736876011, 0.004772124346345663, 0.02721334621310234, 0.019522009417414665, -0.002765384968370199, 0.015144940465688705, 0.04804987460374832, 0.005813951138406992, 0.03400969132781029, -0.0011169917415827513, -0.008215745911002159, -0.0076773520559072495, -0.009341477416455746, -0.03331047669053078, 0.004076408222317696, 0.004020471125841141, 0.013914326205849648, 0.0006074407720007002, 0.03096112422645092, -0.022011205554008484, 0.0027042038273066282, -0.005254581104964018, 0.022011205554008484, -0.0004217124660499394, -0.00990084744989872, 0.010194516740739346, 0.03526827320456505, 0.009963775984942913, -0.01650141179561615, -0.020235206931829453, -0.014089129865169525, 0.01106853224337101, 0.023675331845879555, -0.006153068970888853, 0.018599050119519234, 0.005621667485684156, 0.02462626062333584, 0.016920939087867737, 0.0004022656357847154, -0.014529633335769176, -0.025577189400792122, 0.02505977265536785, -0.011341224424540997, 0.005635651759803295, 0.015270798467099667, -0.02725529856979847, -0.017270546406507492, 0.03868043050169945, 0.012928436510264874, 0.0065446277149021626, -0.0022130070719867945, 0.02157769352197647, 0.01099161896854639, -0.02543734572827816, -0.003525778418406844, -0.6126219034194946, 0.0035187862813472748, 0.01901857741177082, -0.008264690637588501, -0.0012183776125311852, 0.01672516018152237, 0.005740533582866192, -0.0006109368405304849, -0.0020067396108061075, 0.03473687171936035, 0.009628154337406158, -0.01045322511345148, -0.008817068301141262, -0.009523272514343262, -0.024863991886377335, -0.035799674689769745, -0.002414030721411109, -0.015956027433276176, -0.011432122439146042, -0.006618045270442963, -0.012613791041076183, 0.008998863399028778, 0.0011650626547634602, 0.0033247547689825296, 0.008215745911002159, -0.022976119071245193, 0.015634389594197273, 0.002920959610491991, -0.007128470111638308, 0.040022917091846466, -0.03210783377289772, 0.017843900248408318, 0.015102987177670002, -0.013879366219043732, 0.03235954791307449, -0.02013731747865677, -0.013466830365359783, 0.017857884988188744, 0.0267658494412899, 0.022528622299432755, -0.02669592946767807, -0.012746641412377357, 0.015704309567809105, 0.0129424212500453, -0.016585318371653557, -0.0030712904408574104, 0.015970010310411453, 0.0020347079262137413, 0.0015741018578410149, -0.02175948955118656, 0.005614675581455231, -0.014501664787530899, 0.0026605031453073025, -0.001080283080227673, 0.009705067612230778, -0.0006524525815621018, 0.018864750862121582, -0.011816688813269138, 0.008390548638999462, -0.014117098413407803, 0.013928310945630074, 0.021829411387443542, -0.004118361044675112, -0.0392957367002964, -0.044553812593221664, 0.022011205554008484, -0.019522009417414665, -0.020528875291347504, -0.011530011892318726, 0.0037862351164221764, 0.008558359928429127, -0.008047934621572495, -0.004027463495731354, -0.0054818252101540565, 0.001675487612374127, 0.01876685954630375, 0.04419022426009178, -0.012858515605330467, 0.00915968231856823, 0.02496188133955002, 0.00048158253775909543, -0.000260019616689533, -0.00438406178727746, -0.022640496492385864, 0.031156903132796288, -0.001977022970095277, -0.00573004549369216, -0.018445221707224846, 0.006838297005742788, -0.0041078729555010796, -0.005852407775819302, 0.018892718479037285, -0.010369319468736649, -0.02580093778669834, 0.011138453148305416, 0.061195068061351776, 0.012180279940366745, 0.008873005397617817, 0.01739640347659588, -0.01769007369875908, -0.029059266671538353, -0.029422856867313385, 0.024752117693424225, 0.01782991550862789, 0.023311741650104523, 0.04027463495731354, -0.02599671669304371, -0.008991871029138565, 0.004971399903297424, -0.011788721196353436, -0.013802452012896538, -0.014781349338591099, -0.01616579107940197, -0.016823049634695053, 0.019340215250849724, -0.024080874398350716, -0.005348974838852882, 0.019480057060718536, -0.0014368814881891012, -0.006901226006448269, -0.02528351917862892, -0.019158419221639633, 0.02117215096950531, 0.012061413377523422, 0.0037407863419502974, 0.017214609310030937, 0.014585570432245731, -1.2680052350333426e-05, 0.014655491337180138, -0.0014622278977185488, -0.007607430685311556, 0.0009299524826928973, 0.007502548862248659, -0.0034051642287522554, 0.030709408223628998, 0.006027210503816605, 0.024528371170163155, -0.012033444829285145, 0.013313003815710545, -0.058789778500795364, 0.0020364560186862946, -0.002181542571634054, 0.021256055682897568, -0.02970254234969616, 0.00543987238779664, -0.029562698677182198, -0.003564235055819154, 0.00908276904374361, 0.010809823870658875, -0.021605663001537323, -0.01953599415719509, -0.01029240619391203, 0.012879491783678532, 0.017214609310030937, -0.006502675358206034, -0.0019490545382723212, 0.004335116595029831, -0.029562698677182198, -0.01146009098738432, -0.015326735563576221, -0.007922076620161533, -0.006289415527135134, -0.017382420599460602, 0.0020661726593971252, -0.019312245771288872, -0.019074514508247375, -0.010474201291799545, 0.011082516051828861, -0.016557348892092705, -0.017102735117077827, -0.011173414066433907, -0.012858515605330467, -0.0014491176698356867, 0.02703155018389225, 0.0063033998012542725, 0.012844531796872616, -0.012823554687201977, -0.004845541901886463, -0.023899078369140625, -0.010551114566624165, 0.005114738363772631, 0.023563457652926445, -0.00536645483225584, -0.019340215250849724, 0.03515639901161194, 0.0030573061667382717, 0.021298009902238846, 0.021633630618453026, -0.03767356276512146, 0.0035170381888747215, -0.007908091880381107, -0.0004999368684366345, -0.026639992371201515, -0.0017191884107887745, -0.030457692220807076, -0.012697696685791016, -0.004971399903297424, 0.0021430859342217445, 0.013229098170995712, 0.023591425269842148, 0.0358276441693306, 0.012257193215191364, -0.005296533927321434, 0.0009876374388113618, 0.0075235250405967236, -0.029115203768014908, 0.012767618522047997, -0.02610859088599682, 0.011998484842479229, 0.004667242523282766, -0.0038981090765446424, -0.009327493607997894, 0.012005476281046867, -0.017158672213554382, -0.009970768354833126, 0.02680780179798603, 0.017843900248408318, 0.02858380228281021, 0.003214628901332617, -0.007691336330026388, 0.013704562559723854, 0.017382420599460602, 0.012662735767662525, -0.009460343979299068, -0.0037617625202983618, 0.024262670427560806, 0.006215997971594334, 0.027940526604652405, 0.0022497158497571945, -0.022234953939914703, -0.021857379004359245, 0.023745251819491386, -0.0074396198615431786, 0.012788594700396061, 0.03652685508131981, 0.01701882854104042, 0.0276188887655735, -0.0006074407720007002, 0.035436082631349564, -0.011816688813269138, 0.002851038472726941, -0.0016973380697891116, 0.02069668658077717, -0.03448515385389328, 0.036247171461582184, -0.0029803926590830088, 0.026486165821552277, -0.008110863156616688, -0.026667959988117218, 0.022165032103657722, 0.012271177023649216, -0.01049517747014761, -0.0019263301510363817, -0.006691462360322475, 0.02016528509557247, -0.017158672213554382, 0.029394889250397682, 0.0030975108966231346, 0.00219203089363873, 0.010558106936514378, 0.006939683109521866, -0.005950297228991985, -0.006436250172555447, 0.00018223222286906093, 0.023563457652926445, -0.009767997078597546, -0.005142706912010908, -0.030010195448994637, -0.0027531487867236137, -0.010830800049006939, 0.006153068970888853, -0.02027715928852558, 0.011250327341258526, -0.003866644576191902, 0.0021780466195195913, -0.008012973703444004, -0.00912472140043974, -0.00845347810536623, -0.00795004516839981, 0.02061278186738491, -0.017144687473773956, -0.03196799010038376, 0.017564214766025543, 0.010935681872069836, 0.00039527349872514606, 0.0033614635467529297, -0.01571829430758953, -0.018067648634314537, 0.019354198127985, 0.015033066272735596, 0.0036254161968827248, -0.0043386127799749374, -0.0132221058011055, -7.259791163960472e-05, 0.0008565351599827409, 0.007023588288575411, 0.025227582082152367, -0.015578451566398144, -0.02687772363424301, 0.006890737917274237, 0.0301780067384243, 0.015704309567809105, -0.021969253197312355, -0.023633377626538277, 0.020962387323379517, 0.010935681872069836, -0.0347089022397995, -0.01899060793220997, -0.00802695844322443, -0.029227077960968018, 0.006243966519832611, -0.010229476727545261, -0.011956531554460526, -0.0030747863929718733, -0.007530517410486937, -0.0005466966540552676, 0.000770881655625999, -0.01232711412012577, -0.0016807317733764648, 0.008796092122793198, 0.002171054482460022, -0.01434783823788166, 0.011446106247603893, 0.00682431273162365, 0.07434026151895523, -0.0005178541759960353, 0.0009317005169577897, 0.018417254090309143, -0.017927804961800575, 0.002307400805875659, -0.02792654186487198, -0.03062550164759159, 0.035911548882722855, 0.012529886327683926, -0.02725529856979847, 0.0052930377423763275, 0.009767997078597546, -0.015424625016748905, 0.028639739379286766, -0.002288172487169504, 0.0019105977844446898, -0.01816553808748722, -0.017815930768847466, 0.016892971470952034, 0.012383051216602325, 0.007502548862248659, 0.032723139971494675, 0.014431743882596493, 0.03152049332857132, 0.03963135927915573, 0.031464558094739914, 0.018417254090309143, 0.00643275398761034, -0.021228088065981865, -0.009110737591981888, 0.014445727691054344, -0.0009692831663414836, 0.02202519029378891, -0.047770190984010696, 0.037030287086963654, -0.005268565379083157, -0.02410884201526642, -0.023227835074067116, 0.0008346847607754171, -0.008817068301141262, 0.0210602767765522, -0.005352470558136702, -0.005058801732957363, 0.02058481238782406, -0.02561914175748825, -0.010355335660278797, 0.03633107617497444, -0.003017101436853409, -0.0032758100423961878, 0.008082895539700985, 0.011054547503590584, -0.010886737145483494, 0.008607304655015469, 0.0006271061138249934, -0.02429063804447651, -0.003144707763567567, -0.024528371170163155, -0.03599545359611511, -0.03501655533909798, -0.025073755532503128, -0.01485127117484808, -0.015886105597019196, -0.033506255596876144, -0.00742563558742404, -0.04460975155234337, -0.021367929875850677, -0.013166168704628944, -0.013557728379964828, -0.0002978207776322961, -0.012222232297062874, -0.03775746747851372, -0.022416748106479645, 0.007076029200106859, 0.01899060793220997, 0.01508900336921215, 0.0013223853893578053, 0.01021549291908741, 0.006380313076078892, 0.005261573009192944, -0.004121856763958931, -0.022626511752605438, 0.00936245359480381, -0.019703805446624756, 0.01631961762905121, -0.017438357695937157, -0.01953599415719509, -0.0016684955917298794, 0.010243461467325687, 0.02573101595044136, -0.0040414477698504925, -0.029618635773658752, 0.005251084920018911, 0.008257698267698288, 0.019955521449446678, 0.01809561625123024, 0.012501917779445648, -0.010334358550608158, 0.02573101595044136, -0.03697435185313225, 0.01451564859598875, -0.022486669942736626, -0.01536868792027235, -0.022332843393087387, 0.018011711537837982, 0.0267378818243742, -0.013012342154979706, -0.01360667310655117, -0.003621920244768262, -0.025423362851142883, 0.005341982468962669, -0.0015190389240160584, -0.023759236559271812, -0.02299010381102562, -0.011243334971368313, -0.022276906296610832, 0.011320248246192932, 0.017480310052633286, 0.018892718479037285, -0.017732026055455208, 0.010662988759577274, -0.012390043586492538, 0.0284719280898571, 0.0028615265619009733, -0.0015688578132539988, 0.0023143929429352283, 0.014991112984716892, -0.017885852605104446, -0.04005088657140732, -0.0037058256566524506, 0.0032093848567456007, -0.003067794255912304, -0.009747020900249481, -0.00802695844322443, -0.009222610853612423, -0.009278547950088978, -0.020011458545923233, 0.012620783410966396, -0.00710050156340003, 0.006852281279861927, -0.03730997443199158, 0.011264311149716377, 0.010970641858875751, -0.005247588735073805, 0.009068784303963184, -0.035464052110910416, -0.0244724340736866, 0.0006804210715927184, 0.014571585692465305, 0.030010195448994637, -0.03037378564476967, -0.012299145571887493, -0.03577170521020889, -0.030345818027853966, -0.021493788808584213, -0.026542101055383682, -0.009243587963283062, 0.018668970093131065, 0.04360288381576538, 0.04385460168123245, 0.0066739823669195175, 0.025157662108540535, 0.02299010381102562, 0.013662610203027725, -0.00819476880133152, -0.011250327341258526, -0.00236858194693923, -0.01787186786532402, 0.008488438092172146, -0.014837286435067654, -0.014256940223276615, -0.007051556836813688, -0.0012157554738223553, 0.009292532689869404, -0.005670612212270498, -0.00258184177801013, 0.004419022239744663, -0.0034418730065226555, -0.030681438744068146, -0.04276382923126221, 0.010837791487574577, 0.04055431857705116, -0.004030959215015173, -0.0036428964231163263, -0.028150290250778198, 0.0210602767765522, 0.014445727691054344, 0.004146329592913389, 0.029087234288454056, 0.008257698267698288, 0.031240809708833694, 0.01650141179561615, 0.00307828257791698, 0.017340466380119324, -0.0027566447388380766, -0.006327872164547443, -0.009998736903071404, -0.035128429532051086, -0.006813824642449617, 0.008005981333553791, 0.017032813280820847, 0.012886484153568745, -0.010201508179306984, -0.007418643217533827, 0.019214356318116188, 0.011620909906923771, -0.03196799010038376, -0.023451583459973335, 0.015928057953715324, -0.019997473806142807, -0.006034202873706818, -0.026038669049739838, -0.018109600991010666, 0.009572217240929604, -0.01764812134206295, -0.0033404871355742216, -0.0004994998453184962, 0.019158419221639633, -0.03289094939827919, -0.019857631996273994, 0.015886105597019196, -0.010739902034401894, 0.02505977265536785, 0.018752876669168472, 0.009341477416455746, 0.010068658739328384, 0.023269787430763245, -0.014921192079782486, -0.017032813280820847, -0.0059607853181660175, 0.005401415750384331, 0.003824691753834486, 0.04019072651863098, -0.016669223085045815, -0.020458953455090523, -0.016249695792794228, -0.004936439450830221, 0.003048565937206149, -0.028527865186333656, 0.00756547786295414, 0.008285666815936565, 0.017228592187166214, -0.029898321256041527, -0.028346069157123566, -0.008180784992873669, 0.0051706754602491856, -0.009383429773151875, 0.02065473422408104, 0.009313508868217468, 0.009306516498327255, 0.004380565602332354, 0.03308672830462456, -0.00819476880133152, 0.010669981129467487, 0.002830062061548233, 0.007194895297288895, -0.017480310052633286, -0.0037407863419502974, 0.00756547786295414, -0.015158924274146557, 0.002387810265645385, 0.011641886085271835, -0.030597534030675888, 0.013802452012896538, 0.015424625016748905, 0.005118234548717737, -0.005072786007076502, -0.00016748321650084108, -0.017885852605104446, 0.03406562656164169, -0.004104376770555973, -0.017522262409329414, -0.00279510160908103, -0.015047050081193447, 0.012788594700396061, -0.018934670835733414, -0.020682701840996742, -0.01883678138256073, 0.0020049915183335543, 0.006939683109521866, 0.002912219613790512, 0.00010144041880266741, -0.005922328680753708, 0.007292785216122866, 0.00018081195594277233, -0.010977634228765965, -0.02391306310892105, -0.0050133527256548405, 0.028164274990558624, -0.01645945943892002, -0.00512522691860795, -0.009103745222091675, -0.021829411387443542, 0.0070690372958779335, 0.005362959112972021, -0.01338292472064495, 0.00810387171804905, 0.02198323793709278, -0.02094840258359909, 0.02561914175748825, 0.011005602777004242, 0.03907198831439018, -0.04726675525307655, 0.01890670321881771, -0.010054673999547958, 0.0048000928945839405, 0.021186135709285736, -0.0006061297608539462, -0.03633107617497444, -0.022934166714549065, 0.0007512163138017058, 0.00265176291577518, 0.010572090744972229, 0.009851902723312378, 0.011634893715381622, 0.017340466380119324, 0.002281180350109935, -0.025465315207839012, -0.013900342397391796, 0.006418769713491201, 0.0022846765350550413, 0.013501791283488274, 0.010970641858875751, -0.01434783823788166, 0.018067648634314537, 0.0018336845096200705, 0.010348343290388584, 0.009117729030549526, -0.027646858245134354, -0.022234953939914703, -0.03152049332857132, -0.006558611989021301, 0.007072533015161753, 0.011851649731397629, -0.011921570636332035, -0.03633107617497444, -0.032835014164447784, 0.02636030688881874, -0.0010024957591667771, 0.012788594700396061, 0.018668970093131065, -0.0027111959643661976, -0.030541596934199333, 0.007072533015161753, -0.019032560288906097, -0.04693113639950752, -0.02959066815674305, -0.023018071427941322, -0.03303079307079315, -0.006663493812084198, -0.010299398563802242, 0.03574373573064804, 0.007048060651868582, -0.023199867457151413, -0.027940526604652405, -0.02258455939590931, -0.026374291628599167, 0.0011161178117617965, -0.0241787638515234, 0.02328377217054367, 0.016851019114255905, 0.03619123250246048, 0.003590455511584878, 0.006202013697475195, -0.014207995496690273, 0.0307373758405447, -0.04086197167634964, -0.013410893268883228, -0.021549725905060768, -0.021857379004359245, 0.025926794856786728, -0.029115203768014908, -0.04712691530585289, -0.011984500102698803, 0.012117350473999977, -0.027087487280368805, -0.0019088498083874583, 0.02250065468251705, 0.0031569439452141523, 0.008852028287947178, -0.0021413378417491913, -0.002419274765998125, 0.021004339680075645, 0.012466956861317158, -0.002469967817887664, -0.017815930768847466, 0.010949665680527687, 0.008082895539700985, -0.0020504402928054333, -0.016962891444563866, 0.0033107707276940346, 0.020682701840996742, -0.021032309159636497, 0.004188281949609518, -0.011893603019416332, -0.0045274002477526665, -0.02076660841703415, -0.002875510836020112, 0.0051112426444888115, 0.013326987624168396, -0.001194779179058969, 0.024052906781435013, -0.006621541455388069, 0.003947054035961628, -0.0017296766163781285, 0.01939615234732628, 0.020556844770908356, 0.0054154000245034695, 0.023633377626538277, -0.024682197719812393, -0.004604313522577286, -0.013005350716412067, 0.03437327966094017, -0.008257698267698288, -0.023046040907502174, -0.02550726756453514, -0.009726043790578842, -0.025717031210660934, -0.0028143299277871847, 0.006285919342190027, -0.004317636601626873, 0.011865634471178055, -0.014068152755498886, 0.0096770990639925, -0.0035572429187595844, -0.011655870825052261, 0.0027531487867236137, -0.01813756860792637, -0.021116213873028755, -0.0008849406731314957, 0.03048565983772278, -0.038764335215091705, -0.011250327341258526, 0.04452584311366081, -0.016403522342443466, 0.0028073377907276154, 0.21345555782318115, -0.004439998418092728, 0.003174424171447754, 0.04427412897348404, 0.01901857741177082, -0.02328377217054367, 0.02168956771492958, -0.005964281503111124, 0.01717265695333481, 0.014907208271324635, 0.005314013920724392, 0.0046777306124567986, -0.021186135709285736, -0.0006633777520619333, 0.02554921992123127, -0.017186639830470085, -0.03051362745463848, -0.015270798467099667, -0.012669728137552738, 0.009907839819788933, 0.000558932893909514, 0.00046104314969852567, -0.013837412931025028, -0.003702329471707344, 0.042735859751701355, 0.025856873020529747, -0.004932943265885115, 0.008810075931251049, 0.012606799602508545, 0.014403775334358215, -0.021773474290966988, -0.002307400805875659, 0.021004339680075645, -0.010774862952530384, -0.016585318371653557, -0.004534392151981592, -0.004614801611751318, -0.01950802467763424, 0.00025630503660067916, 0.024612275883555412, -0.003999494947493076, 0.003908597398549318, 0.006100628059357405, -0.009453351609408855, 0.01683703437447548, -0.02465422824025154, 0.0022637001238763332, -0.006992124021053314, 0.0026447707787156105, 0.039883073419332504, -0.007079525385051966, 0.016627270728349686, 0.018752876669168472, 0.011397161521017551, -0.008579336106777191, -0.006841793190687895, -0.017550230026245117, -0.002744408557191491, -0.01672516018152237, 0.014298893511295319, -0.010068658739328384, -0.00356947910040617, -0.017564214766025543, 0.027646858245134354, -0.023969000205397606, 0.016487427055835724, -0.012257193215191364, 0.0352962426841259, 0.0016020704060792923, 0.00975401233881712, -0.010173540562391281, -0.00928554031997919, -0.036722633987665176, -0.006023714784532785, -0.003964534029364586, -0.005677604582160711, -6.467714410973713e-05, 0.029338952153921127, 0.03675060346722603, 0.0085443751886487, 0.0027933535166084766, 0.017298514023423195, -0.014585570432245731, -0.007747272960841656, 0.02272440306842327, -0.002997873118147254, 0.03879230469465256, -0.021270040422677994, 0.017787963151931763, -0.019116466864943504, -0.020570827648043633, 0.005684596486389637, -0.015047050081193447, -6.571503763552755e-05, -0.003195400582626462, -0.006562108173966408, -0.005883872043341398, 0.03554795682430267, -0.003307274542748928, -0.01664125546813011, -0.019857631996273994, 0.04838549718260765, 0.017004845663905144, 0.030457692220807076, -0.019563961774110794, -0.009593193419277668, -0.009523272514343262, 0.03152049332857132, 0.00042870460310950875, 0.001533897127956152, -0.009684091433882713, -0.028150290250778198, 0.021158166229724884, 0.009460343979299068, 0.0030520621221512556, 0.02202519029378891, 0.02770279534161091, 0.003496062010526657, -0.006957163102924824, -0.008369572460651398, 0.02269643358886242, -0.009229603223502636, 0.00271993619389832, 0.004544880706816912, -0.02721334621310234, -0.02784263715147972, -0.020976372063159943, 0.010628027841448784, -0.027017567306756973, -0.0324714221060276, 0.02855583280324936, -0.009040815755724907, 0.011914579197764397, -0.02047293819487095, -0.005806958768516779, -0.004733667708933353, 0.0005628659855574369, -0.03149252384901047, -0.010362327098846436, 0.010767870582640171, 0.01204742956906557, 0.013564719818532467, 0.012418012134730816, -0.009320501238107681, 0.02869567647576332, -0.007635399233549833, 0.004604313522577286, 0.014529633335769176, -0.003824691753834486, -0.004943431355059147, 0.015956027433276176, 0.023004086688160896, -0.007971021346747875, -0.01118040643632412, 0.024486416950821877, -0.028318101540207863, -0.03549202159047127, -0.025381408631801605, 0.017843900248408318, -0.0066984547302126884, -0.03462499752640724, -0.00027356683858670294, 0.043295230716466904, 0.00530352583155036, -0.03798121586441994, 0.0019962512888014317, -0.17899836599826813, 0.019088497385382652, 0.009026831947267056, 0.0030118573922663927, -0.0071529424749314785, 0.016962891444563866, 0.019927551969885826, 0.002501432318240404, -0.0301780067384243, -0.005453856661915779, 0.021270040422677994, -0.014040184207260609, -0.021256055682897568, -0.016445474699139595, 0.0031971486750990152, -0.010886737145483494, -0.022262921556830406, 0.02696163021028042, 0.0460641123354435, -0.002429763088002801, 0.01953599415719509, -0.0059922500513494015, 0.015438609756529331, -0.01205442100763321, 0.023004086688160896, 0.020976372063159943, -0.008397541008889675, 0.0455327108502388, 0.0136486254632473, -0.02970254234969616, -0.02514367736876011, -0.015186892822384834, 0.02669592946767807, 0.018081631511449814, 0.010481193661689758, 0.008921950124204159, 0.012998358346521854, 0.0023545976728200912, -0.017074765637516975, 0.016669223085045815, 0.02231885865330696, 0.007264816667884588, 0.02384314127266407, 0.008495430462062359, 0.011634893715381622, 0.019773725420236588, 0.02496188133955002, 0.00339292804710567, 0.006317384075373411, -0.010711933486163616, 0.029227077960968018, -0.01525681372731924, -0.0008569721831008792, -0.01701882854104042, 0.020333096385002136, -0.005813951138406992, 0.007544501684606075, 0.015396656468510628, 0.000617491954471916, -0.02031911164522171, 0.0012113854754716158, -0.008614296093583107, 0.007362706586718559, -0.0018231963040307164, -0.0007529643480665982, -0.04768628254532814, -0.020934417843818665, 0.016305632889270782, 0.0014281412586569786, 0.0031359675340354443, 0.002517164684832096, 0.005887368228286505, 0.00999174453318119, 0.009851902723312378, 0.02087848260998726, 0.019382167607545853, -0.03963135927915573, 0.0008504170691594481, 0.04281976446509361, 0.008859020657837391, 0.016697192564606667, -0.0018074640538543463, -0.0003557243035174906, 0.010348343290388584, -0.03479280695319176, 0.006135588511824608, -0.0059992424212396145, 0.0042162504978477955, -0.016081884503364563, 0.020235206931829453, 0.008754138834774494, -0.017522262409329414, 0.022053157910704613, -0.006988627836108208, 0.008264690637588501, 0.0037163137458264828, 0.02806638553738594, -0.013152184896171093, 0.001755023025907576, -0.01349479891359806, 0.012445980682969093, 0.019312245771288872, -0.02866770699620247, -0.015214861370623112, 0.025940779596567154, 0.011320248246192932, 0.010348343290388584, -0.005838423501700163, 0.028639739379286766, -0.0016702435677871108, -0.03166033700108528, 0.016081884503364563, 0.01991356909275055, -0.007894108071923256, -0.028569817543029785, 0.04237227141857147, 0.008852028287947178, -0.007236848119646311, 0.01357171218842268, -0.015144940465688705, 0.05300029739737511, -0.02795451134443283, -0.024933913722634315, -0.0010601807152852416, -0.012082389555871487, -0.024891961365938187, -0.10488186031579971, -0.016333600506186485, 0.03823293372988701, -0.0034978098701685667, -0.011830673553049564, 0.012816563248634338, -0.005740533582866192, 0.028863487765192986, -0.0019001096952706575, 0.0244724340736866, -0.022710418328642845, -0.01188661064952612, -0.007411651313304901, -0.006292911246418953, 0.002323133172467351, -0.008893981575965881, 0.013781475834548473, -0.039994947612285614, -0.011082516051828861, 0.022570576518774033, -0.0004138463409617543, -0.009530264884233475, 0.021311992779374123, 0.006355840712785721, -0.016934923827648163, -0.03163236752152443, -0.033534225076436996, 0.006366328801959753, 0.004733667708933353, 0.014214987866580486, 0.03834480792284012, -0.006995619740337133, 0.027786700055003166, -0.03210783377289772, -0.0025433851405978203, -0.011026578955352306, -0.01697687618434429, -0.024276653304696083, 0.03426140546798706, -0.030681438744068146, -0.010124594904482365, 0.0033597154542803764, -0.006831305101513863, -0.025758983567357063, -0.01583016850054264, 0.007824186235666275, 0.0028790070209652185, 0.018011711537837982, 0.01411010604351759, -0.01590009033679962, -0.04033057019114494, -0.034764841198921204, -0.022906197234988213, -0.030793312937021255, 0.02669592946767807, 0.012711681425571442, 0.017480310052633286, 0.004149825312197208, -0.023857126012444496, 0.010299398563802242, -0.011830673553049564, -0.008886989206075668, -0.019270293414592743, 0.02655608579516411, 0.01887873373925686, 0.005023840814828873, -0.004062423948198557, 0.0031936524901539087, -0.00307303830049932, -0.0012358578387647867, 0.0013512279838323593, 0.0142219802364707, -0.01571829430758953, 0.009642139077186584, -0.030429722741246223, 0.003560739103704691, 0.00969807617366314, -0.008873005397617817, 0.002424519043415785, 0.010334358550608158, -0.01724257692694664, -0.007243840489536524, 0.0027706290129572153, -0.02947879396378994, 0.011012595146894455, -0.008376563899219036, 0.007086517289280891, -0.0011108736507594585, 0.015494545921683311, -0.05129421874880791, 0.012557853944599628, 0.015158924274146557, 0.01229215320199728, 0.0033334949985146523, 0.009593193419277668, 0.01668320782482624, -0.018011711537837982, -0.011753760278224945, 0.021549725905060768, 0.006659998092800379, -0.014501664787530899, 0.0021273535676300526, -0.04192477464675903, 0.012173287570476532, 0.013592688366770744, 0.0006445863982662559, 0.009886862710118294, -0.03560389578342438, 0.006523651536554098, -0.01353675127029419, 0.011369192972779274, -0.0012306137941777706, -0.013012342154979706, 0.00850941427052021, -0.02580093778669834, -0.019270293414592743, -0.02175948955118656, -0.030345818027853966, -0.0007791848038323224, 0.00017327356908936054, 0.012872500345110893, 0.0003437065752223134, 0.0027933535166084766, -0.00381420343182981, 0.02480805478990078, 0.026150543242692947, -0.008747146464884281, 0.0318281464278698, -0.0375337190926075, 0.026542101055383682, -0.010334358550608158, -0.017969757318496704, 0.023339709267020226, 0.01075388677418232, -0.006278926972299814, 8.581739530200139e-05, -0.0035589910112321377, -0.036918412894010544, -0.008649257011711597, 0.017270546406507492, 0.0014604798052459955, 0.003947054035961628, -0.0047161877155303955, -0.011956531554460526, 0.011488059535622597, -0.028611769899725914, -0.038288868963718414, -0.01950802467763424, -0.025912810117006302, -0.016585318371653557, 0.01130626443773508, 0.004398046061396599, 0.03507249429821968, -0.0034890698734670877, -0.03884823992848396, -0.03308672830462456, -0.008362580090761185, -0.010635020211338997, 0.0006847911281511188, 0.024863991886377335, 0.001999747473746538, 0.004723179619759321, 0.039547450840473175, 0.007460596039891243, -0.003024093573912978, -0.01865498721599579, 0.03627513721585274, -0.0035939516965299845, -0.0636562928557396, -0.008313635364174843, 0.01013857964426279, -0.03697435185313225, 0.007873130962252617, -0.0162357110530138, 0.01924232393503189, 0.017158672213554382, 0.016627270728349686, -0.013264059089124203, 0.004037951584905386, -0.01913045160472393, -0.02036106400191784, 0.032275643199682236, 0.014375806786119938, -0.01724257692694664, -0.01590009033679962, 0.007684343960136175, 0.023591425269842148, 0.006656501907855272, -0.013340972363948822, 0.020123332738876343, 0.02113019861280918, 0.005995746236294508, -0.006481698714196682, -0.0068557774648070335, -0.0029349438846111298, 0.00579297449439764, 0.0005130470963194966, 0.024416496977210045, -0.01513095572590828, 0.027632873505353928, 0.02024918980896473, 0.028457943350076675, 0.0008220115560106933, 0.0059677776880562305, -0.01580219902098179, 0.0018022198928520083, -0.0027618890162557364, 0.003211132949218154, -0.022220969200134277, -0.011725791729986668, 0.02087848260998726, 0.02781466767191887, 0.005841919220983982, -0.015410641208291054, -0.008963902480900288, 0.01215930376201868, -0.018081631511449814, 0.002941936021670699, -0.011648878455162048, -0.008649257011711597, -0.033730003982782364, 0.0005025588907301426, 0.010446232743561268, 0.025633126497268677, 0.017102735117077827, -0.016669223085045815, 0.035575926303863525, -0.013949287123978138, 0.0233257245272398, -0.01739640347659588, 0.0068802498281002045, -0.003001369070261717, 0.005369951017200947, 0.0006249210564419627, 0.0014237712603062391, -0.016291648149490356, 0.0012008972698822618, -0.019633883610367775, -0.01953599415719509, 0.03490468114614487, -0.012369067408144474, 0.0831223651766777, 0.028975361958146095, -0.017662104219198227, 0.0015907081542536616, -0.013522767461836338, 0.012963397428393364, 0.011795712634921074, 0.02528351917862892, 2.4991379177663475e-05, -0.021857379004359245, 0.016711175441741943, -0.0133689409121871, -0.018039679154753685, 0.00484903808683157, -0.010278422385454178, 0.006569100543856621, -0.005233604460954666, 0.011571965180337429, -0.009795965626835823, 0.014194011688232422, 0.01451564859598875, 0.0002040826075244695, 0.006191525608301163, -0.010886737145483494, -0.038065120577812195, -0.016585318371653557, 0.016711175441741943, 0.03258329629898071, -0.0056566279381513596, -0.023563457652926445, 0.028262164443731308, 0.0011091256747022271, -0.032247673720121384, -0.018752876669168472, -0.011082516051828861, 0.005625163670629263, -0.0058698877692222595, -0.03652685508131981, 0.0013433618005365133, 0.01627766340970993, -0.004733667708933353, 0.023535488173365593, -0.0224726852029562, -0.018641002476215363, 0.01377448346465826, 0.000526594347320497, -0.008593319915235043, -0.025717031210660934, -0.0030293376184999943], "b1eb3ee1-929c-4cd2-9c3d-9a3a3869a6ef": [-0.001052369363605976, -0.006822020746767521, 0.006056039594113827, -0.03698595240712166, 0.011886388063430786, 0.022514378651976585, -0.020818276330828667, -0.029490279033780098, -0.013295246288180351, -0.022569091990590096, 1.6483343642903492e-05, 0.02046264335513115, 0.01544272992759943, -0.017685960978269577, -0.00832320749759674, 0.018137343227863312, 0.025769798085093498, 0.01018344797194004, 0.0037375784013420343, -0.010087699629366398, -0.02615278959274292, 0.0009891075314953923, -0.021543223410844803, 7.758125138934702e-05, -0.017152508720755577, 0.006839118432253599, 0.02057206816971302, -0.01464939210563898, -0.022678516805171967, 0.014840886928141117, 0.013486742042005062, -0.022828977555036545, -0.030228903517127037, 0.0034469158854335546, -0.011161441914737225, 0.021611614152789116, 0.008384759537875652, 0.008542058989405632, 0.023567602038383484, -0.005997906904667616, 0.008138551376760006, 0.03197971731424332, 0.010032987222075462, -0.011954779736697674, -0.006972481496632099, 0.03895562142133713, -0.008015447296202183, -0.011188797652721405, -0.03312868997454643, 0.011052015237510204, -0.02079091966152191, 0.009889365173876286, -0.010703220963478088, 0.02142011933028698, -0.0018363033886998892, 0.007687169127166271, 0.022049318999052048, 0.00070100964512676, 0.012850703671574593, -0.011031498201191425, -0.005355029832571745, -0.007078487891703844, -0.018356194719672203, -0.014020193368196487, -0.02497646026313305, -0.024867035448551178, -0.016290780156850815, -0.00791969895362854, -0.012460874393582344, -0.019163209944963455, 0.05203201249241829, 0.02615278959274292, 0.010621150955557823, -0.026084398850798607, -0.006107333116233349, -0.021433798596262932, -0.02652210183441639, -0.03247213363647461, -0.006288569420576096, -0.010374942794442177, 0.019217923283576965, -0.01843826286494732, -0.020900346338748932, 0.01946413144469261, 0.02626221626996994, 0.033675819635391235, 0.0055499449372291565, 0.004223155789077282, 0.0086378064006567, -0.00969787035137415, 0.009985113516449928, 0.01254978310316801, 0.033566392958164215, 0.02801303006708622, 0.01156494952738285, 0.015333304181694984, 0.007933377288281918, 0.0017644925974309444, -0.00813171174377203, -0.0015593190910294652, -0.011961618438363075, -0.00682885991409421, -0.004493300803005695, -0.019682982936501503, -0.008042803034186363, -0.025427842512726784, 0.007735043298453093, -0.02083195559680462, 0.0034503352362662554, 0.023745419457554817, -0.025441521778702736, 0.044782549142837524, -0.004623244050890207, -0.010395459830760956, 0.001712344354018569, 0.0037204804830253124, 0.025126921012997627, -0.02987327054142952, -0.007823951542377472, -0.02541416510939598, 0.006586071103811264, -0.0027168397791683674, 0.060457807034254074, -0.015661582350730896, 0.005960291717201471, 0.008931889198720455, 0.014362148940563202, -0.012098400853574276, 0.011243510991334915, 0.002884398214519024, 0.009513214230537415, 0.013808180578052998, 0.01791848987340927, 0.0244430098682642, -0.029052576050162315, 0.011400810442864895, -0.0231298990547657, 0.03197971731424332, 0.005789313931018114, -0.027999350801110268, 0.010621150955557823, 0.026330607011914253, 0.017316648736596107, -0.00402824068441987, 0.004934424068778753, 0.05039062723517418, 0.00019470116239972413, 0.03318340331315994, 0.005259282421320677, -0.0106279905885458, -0.011838514357805252, -0.0042128972709178925, -0.03321075811982155, 0.006363799795508385, 0.005491812247782946, 0.0014909278834238648, 0.010019308887422085, 0.02291104756295681, -0.00781711284071207, 0.0008959245169535279, 0.0022859754972159863, 0.034305017441511154, -0.006743371021002531, -0.004469363950192928, -0.0012361706467345357, 0.039311252534389496, 0.023526567965745926, -0.026125432923436165, -0.031186381354928017, -0.010210803709924221, 0.009048153646290302, 0.043031733483076096, -0.02322564646601677, 0.03780664876103401, 0.0015558995073661208, 0.017658604308962822, 0.00104296556673944, 0.001614886918105185, -0.019067462533712387, -0.024675540626049042, 0.02806774340569973, -0.011653858236968517, -0.021392762660980225, 0.018780220299959183, -0.012925934046506882, -0.015497442334890366, 0.02375909872353077, 0.02344449795782566, 0.013384154997766018, -0.0009677353082224727, 0.012460874393582344, 0.0015046061016619205, -0.022049318999052048, -0.008035964332520962, -0.6145358681678772, 0.005225086584687233, 0.028997862711548805, -0.007652973756194115, 0.017398716881871223, 0.022514378651976585, 0.02206299640238285, 0.0008548898040316999, 0.002403950085863471, 0.028505446389317513, 0.014389505609869957, -0.00567304901778698, -0.01786377839744091, -0.0036657676100730896, -0.022938404232263565, -0.02066781558096409, 0.002210745122283697, -0.012843864969909191, -0.019751373678445816, -0.00946534052491188, -0.025017496198415756, 0.004872872028499842, 0.002046606270596385, -0.001377227483317256, -0.0057516987435519695, -0.029627062380313873, 0.0027270985301584005, 1.7177942936541513e-05, -0.0005180632579140365, 0.04609565809369087, -0.04210161417722702, 0.017685960978269577, 0.021611614152789116, 0.002321880776435137, 0.041007354855537415, -0.024949105456471443, -0.02248702198266983, 0.03055718168616295, 0.007099004928022623, 0.03214385733008385, -0.02891579270362854, -0.006914348807185888, 0.025181634351611137, 0.021351728588342667, -0.025523589923977852, 0.0024655023589730263, 0.01278231292963028, 0.003407590789720416, -0.011099889874458313, -0.003552922047674656, -0.0010788709623739123, -0.004062436521053314, -0.009752582758665085, -0.0020089910831302404, 0.01041597779840231, -0.01185219269245863, 0.02073620818555355, 0.0005732036079280078, 0.0056798881851136684, 0.0032024173997342587, 0.01856136880815029, 0.006739951204508543, -0.011865871027112007, -0.04158183932304382, -0.051211319863796234, 0.017740674316883087, -0.01988815702497959, -0.007475156802684069, -0.007283661514520645, -0.014581000432372093, 0.028560159727931023, -0.004281288478523493, 0.013322602957487106, 0.0005249023670330644, 0.021597936749458313, 0.02269219607114792, 0.04812003672122955, -0.020872989669442177, 0.0008420664817094803, 0.03274570032954216, -0.00019224334391765296, -0.010675864294171333, -0.011305063031613827, -0.00791969895362854, 0.03217121213674545, 0.009007119573652744, -0.009615800343453884, -0.014676748774945736, -0.0035905372351408005, -0.007570904213935137, 0.0010788709623739123, 0.01988815702497959, -0.01749446615576744, -0.026549458503723145, 0.016783196479082108, 0.05930883809924126, -0.007782917004078627, 0.01200949214398861, 0.004455685615539551, -0.018315158784389496, -0.031542014330625534, -0.017617570236325264, 0.010388621129095554, 0.004380455240607262, 0.012139435857534409, 0.03326547145843506, -0.03151465952396393, -0.009294361807405949, 0.012365126051008701, -0.007646134588867426, -0.013958641327917576, -0.0025715085212141275, -0.020271146669983864, -0.006052619777619839, 0.008972923271358013, -0.026617849245667458, -0.011277706362307072, 0.030858103185892105, 0.0063706389628350735, -0.0060389419086277485, -0.024593470618128777, -0.018041593953967094, 0.02806774340569973, 0.009164419025182724, 0.018328838050365448, 0.010696381330490112, -0.00283652450889349, -0.008261655457317829, 0.009882526472210884, 6.053688412066549e-05, -0.008884015493094921, -0.0030519566498696804, -0.004486461635679007, -0.0004988281871192157, 0.03200707584619522, 0.006045781075954437, 0.026645205914974213, -0.002869010204449296, 0.002566379262134433, -0.04880395159125328, -0.004089792724698782, 0.005437099374830723, 0.02970913052558899, -0.01882125437259674, 0.00797441229224205, -0.027356473729014397, -8.864139090292156e-05, 0.0020021519158035517, 0.01151023618876934, -0.000929265224840492, -0.027971995994448662, -0.00962263997644186, 0.0059295156970620155, 0.015812043100595474, -0.016550667583942413, -0.012098400853574276, -0.004606146365404129, -0.026918770745396614, -0.013493580743670464, -0.01769963838160038, -0.009903043508529663, -0.008384759537875652, -0.026398997753858566, 0.0010378361912444234, -0.00839843787252903, -0.01998390443623066, -0.01206420548260212, 0.01653698831796646, -0.018246768042445183, -0.007119522430002689, -0.00990988314151764, -0.012672887183725834, 0.0015601739287376404, 0.011961618438363075, 0.01711147464811802, 0.009472179226577282, -0.012604495510458946, -0.011893227696418762, -0.011093050241470337, 0.0069075096398591995, 0.009882526472210884, 0.014608357101678848, -0.009020796976983547, -0.016386527568101883, 0.04924165457487106, 0.010272355750203133, 0.023526567965745926, 0.02121494524180889, -0.02801303006708622, 0.009472179226577282, -0.021351728588342667, 0.008206942118704319, -0.02252805605530739, -0.0015712875174358487, -0.015032382681965828, -0.01507341768592596, -0.026809344068169594, -0.0034759819973260164, 0.010101377964019775, 0.02747957780957222, 0.027411187067627907, 0.018575046211481094, 0.0010651927441358566, 0.0014327953103929758, 0.006350121460855007, -0.013924445025622845, 0.013616684824228287, -0.01563422568142414, 0.010463851504027843, 0.014909278601408005, -0.004818159155547619, -0.003099830588325858, 0.01583939790725708, -0.021228624507784843, 0.0009181516943499446, 0.02987327054142952, 0.005844026803970337, 0.011790640652179718, -0.007789756171405315, -0.00919861439615488, 0.007776077836751938, 0.020243791863322258, 0.014403183944523335, -0.0072426265105605125, -0.005324253812432289, 0.0060868156142532825, 0.0156752597540617, 0.032937195152044296, 0.005536266602575779, -0.01823309063911438, -0.021037129685282707, 0.024210479110479355, -0.004766865633428097, 0.014211688190698624, 0.03783400356769562, 0.0033956223633140326, 0.022897368296980858, 0.010751094669103622, 0.031925003975629807, 0.004924165550619364, 0.009417465887963772, -0.007652973756194115, 0.015005026012659073, -0.027041874825954437, 0.017672281712293625, -0.012563460506498814, 0.004985717590898275, 0.0010267227189615369, -0.01679687574505806, -0.0027595844585448503, -0.0002940820995718241, 0.004007723648101091, -0.018041593953967094, -0.011188797652721405, 0.03208914399147034, -0.026617849245667458, 0.018739184364676476, 0.009718387387692928, -0.0028963666409254074, 0.009718387387692928, -0.002190227620303631, 0.013124268501996994, 0.010251838713884354, -0.008856658823788166, 0.022979438304901123, -0.016386527568101883, 0.006449288688600063, -0.017562856897711754, -0.010785290040075779, -0.02173471823334694, 0.020394250750541687, -0.015798363834619522, -0.003081022994592786, -0.01801423914730549, 0.004069275688380003, -0.0014892180915921926, 0.004989136941730976, 0.008289012126624584, -0.007933377288281918, 0.018739184364676476, -0.02462082728743553, -0.01834251545369625, 0.027630038559436798, 0.007803434506058693, 0.0014396344777196646, 0.007440960966050625, -0.01328840758651495, -0.0003515734279062599, 0.006664721295237541, 0.012289895676076412, 0.007283661514520645, -0.008001768961548805, -0.0037102217320352793, -0.009424305520951748, 0.00430522533133626, -0.002486019628122449, 0.03851791471242905, -0.023882202804088593, -0.017740674316883087, -0.0029544993303716183, 0.03009212203323841, 0.01459467876702547, -0.015196521766483784, -0.0218031108379364, 0.01716618798673153, -0.010682702995836735, -0.032827768474817276, -0.015688937157392502, -0.009403788484632969, -0.029517635703086853, 0.00970470905303955, 0.004691635258495808, -0.028587516397237778, -0.017084117978811264, -0.0089045325294137, 0.0030057926196604967, 0.0014567322796210647, -0.013671398162841797, 0.014717782847583294, 0.018616080284118652, -0.005854285322129726, -0.013240533880889416, 0.01988815702497959, 0.015155486762523651, 0.06598381698131561, 5.308331674314104e-05, 0.006209919694811106, 0.0194094181060791, -0.0019371802918612957, -0.01668744906783104, -0.03211650252342224, -0.025756120681762695, 0.03312868997454643, 0.03528985381126404, -0.03009212203323841, 0.0020910606253892183, 0.013787663541734219, -0.005734601058065891, 0.01437582727521658, -0.01598985865712166, -0.0008014591876417398, -0.02795831672847271, -0.012611335143446922, 0.021625293418765068, 0.007564065046608448, -0.010231321677565575, 0.039365965873003006, 0.017672281712293625, 0.033046621829271317, 0.01977873034775257, 0.03269098699092865, 0.012748116627335548, 0.009479017928242683, -0.02567405067384243, -0.00589873967692256, 0.013178981840610504, 0.013623524457216263, 0.008459989912807941, -0.04672485962510109, 0.03061189502477646, 0.002903205808252096, -0.014704105444252491, -0.011729088611900806, -0.006951963994652033, -0.013815019279718399, 0.034469157457351685, -0.012030009180307388, -0.009246488101780415, 0.026987161487340927, -0.022897368296980858, -0.010997302830219269, 0.03214385733008385, -0.004175282083451748, 0.001019028713926673, 0.014252723194658756, 0.015593190677464008, -0.0026672561652958393, 0.005389225669205189, 0.009745744056999683, -0.02440197579562664, -0.006924607791006565, -0.01148288045078516, -0.020900346338748932, -0.01988815702497959, -0.017945846542716026, -0.020271146669983864, -0.01315846387296915, -0.02263748273253441, -0.022787943482398987, -0.03156937286257744, -0.021461153402924538, -0.009526892565190792, -0.02929878421127796, 0.007174235302954912, -0.026645205914974213, -0.020243791863322258, -0.025742443278431892, 0.010101377964019775, 0.015346982516348362, 0.02460714802145958, 0.004886550363153219, -0.003652089275419712, 0.010607472620904446, 0.010778451338410378, 0.0076803299598395824, -0.011188797652721405, 0.000969445041846484, -0.008521541953086853, 0.003193868324160576, -0.0033460387494415045, 0.0003272090689279139, 0.010395459830760956, -0.0013430318795144558, 0.017781708389520645, 0.0006304812268353999, -0.021597936749458313, 0.0029801458586007357, 0.004308644682168961, 0.017986882477998734, -0.0034263983834534883, 0.01129138469696045, -0.02099609375, 0.025277381762862206, -0.039256539195775986, 0.014252723194658756, -0.025742443278431892, -7.694008672842756e-06, -0.0026313508860766888, 0.013404672034084797, 0.028478089720010757, -0.017768030986189842, -0.0032212247606366873, -0.018274124711751938, -0.01919056661427021, 0.018670793622732162, -0.005635433830320835, -0.017097797244787216, -0.02274690754711628, -0.004780543968081474, -0.009663674980401993, 0.0033853636123239994, 0.013432028703391552, -0.006165465340018272, -0.014293758198618889, -0.002125255996361375, -0.010785290040075779, 0.041171494871377945, 0.008227460086345673, 0.007933377288281918, 0.018643436953425407, 0.005789313931018114, -0.004342840518802404, -0.04530232027173042, -0.0019747954793274403, 0.011544432491064072, 0.0028074581641703844, -0.0175491776317358, -0.02057206816971302, -0.0019337608246132731, -0.010463851504027843, -0.015688937157392502, 0.02364967204630375, -0.012734439224004745, 0.01127086766064167, -0.05006234720349312, 0.018041593953967094, 0.01834251545369625, -0.003039988223463297, 0.0018551108660176396, -0.030639251694083214, -0.03646618127822876, -0.0022312623914331198, 0.014047550037503242, 0.03646618127822876, -0.012659208849072456, -0.010641668923199177, -0.03504364192485809, -0.02169368416070938, -0.014102262444794178, -0.01845194213092327, 0.005649112164974213, 0.013561972416937351, 0.037451013922691345, 0.037970785051584244, 0.01012873463332653, 0.0228563342243433, 0.03392202779650688, 0.016783196479082108, -0.017002047970891, -0.0019594074692577124, 0.006507421378046274, -0.012775473296642303, 0.016619058325886726, -0.022760586813092232, -0.012406161054968834, -0.010744255036115646, -0.00611075246706605, 0.011181958951056004, -0.0159488245844841, -0.003048537066206336, 0.008945567533373833, 0.0019115336472168565, -0.03200707584619522, -0.047436125576496124, 0.022309204563498497, 0.036821816116571426, -0.0037307392340153456, -0.00753670884296298, -0.013835537247359753, -0.0016935367602854967, 0.01323369424790144, -0.007509352173656225, 0.032663632184267044, 0.001247284235432744, 0.021652650088071823, -0.005013073794543743, 0.007146879099309444, 0.021433798596262932, 0.005973970051854849, -0.007331535220146179, -0.009732065722346306, -0.039311252534389496, -0.010607472620904446, 0.019122175872325897, 0.0212696585804224, 0.02317093312740326, 0.0016824231715872884, 0.008972923271358013, 0.008658324368298054, 0.0017020856030285358, -0.01987447775900364, -0.02466186136007309, 0.012036848813295364, -0.030912816524505615, -0.007146879099309444, -0.04024137556552887, -0.02169368416070938, 0.020175399258732796, -0.01812366396188736, -0.0021235463209450245, 0.0032468715216964483, 0.017562856897711754, -0.022309204563498497, -0.01611296273767948, 0.01530594751238823, 0.002185098361223936, 0.019491488113999367, 0.009957756847143173, 0.004831837490200996, 0.008938727900385857, 0.012091562151908875, -0.026029685512185097, -0.01538801658898592, -0.006274891551584005, -0.005796153098344803, 0.0007104134419932961, 0.04418070614337921, -0.02079091966152191, -0.007406765595078468, -0.003039988223463297, -0.006534778047353029, 0.009663674980401993, -0.04125356301665306, 0.026016006246209145, 0.027876246720552444, -0.011188797652721405, -0.02646738849580288, -0.015169165097177029, -0.009554248303174973, -0.0012344608549028635, -0.006842538248747587, 0.0039735278114676476, 0.009691030718386173, 0.007611939217895269, 0.0003708084695972502, 0.026029685512185097, -0.010696381330490112, 0.014047550037503242, -2.7129393856739625e-05, 0.00046890706289559603, 0.001596934162080288, 0.005016493611037731, -0.002827975433319807, -0.012645530514419079, -0.000920716323889792, 0.010545920580625534, -0.02440197579562664, 0.0035495024640113115, 0.014403183944523335, 0.0032896159682422876, -0.004896808881312609, -0.013042199425399303, -0.021515866741538048, 0.032608918845653534, -0.0002543297305237502, -0.0193957407027483, 0.011701731942594051, -0.02099609375, 0.009212292730808258, -0.02035321667790413, -0.012536104768514633, -0.009048153646290302, -0.016290780156850815, 0.0036897044628858566, -0.0008831011946313083, -0.005464455578476191, -0.0010164639679715037, -0.0012618174077942967, 0.01107937190681696, -0.015415373258292675, -0.018889645114541054, -0.010887877084314823, 0.027356473729014397, -0.033675819635391235, -0.00502333277836442, -0.002061994280666113, -0.02280162088572979, 0.014362148940563202, 0.011982135474681854, -0.008446311578154564, 0.00032036995980888605, 0.026303250342607498, -0.020531034097075462, 0.019915513694286346, 0.011038337834179401, 0.024990139529109, -0.02897050604224205, 0.013226855546236038, 0.0013550004223361611, -0.0025150859728455544, 0.007345213554799557, 0.008254815824329853, -0.04721727594733238, -0.02147483266890049, 0.009437983855605125, 0.0027578745502978563, 0.009608961641788483, 0.002150902757421136, 0.009670513682067394, 0.027506934478878975, 0.002985275350511074, -0.02062678150832653, -0.010956267826259136, 0.0008373645832762122, -0.005279799457639456, -0.005847446620464325, 0.0106279905885458, -0.009048153646290302, 0.002903205808252096, 0.008083838038146496, 0.0019508586265146732, -0.018301481381058693, -0.023909559473395348, -0.011305063031613827, -0.023006794974207878, -0.007010096684098244, -0.0026313508860766888, 0.020134365186095238, -0.0003639693313743919, -0.043825071305036545, -0.02514060027897358, 0.0387914814054966, -0.0015293979085981846, -0.004907067399471998, 0.022336561232805252, -0.006079976446926594, -0.010648507624864578, 0.029599705711007118, -0.0026039944496005774, -0.055260077118873596, -0.030693965032696724, -0.02408737502992153, -0.026111755520105362, -0.006230437196791172, -0.006206500343978405, 0.046123016625642776, 0.01172224897891283, -0.0047737048007547855, -0.03479743376374245, -0.01786377839744091, -0.016810553148388863, -0.016468597576022148, -0.029353497549891472, 0.024894392117857933, 0.02110552042722702, 0.04193747416138649, -0.0074204434640705585, 0.036493536084890366, -0.009335396811366081, 0.02291104756295681, -0.04234782233834267, -0.009848331101238728, -0.011099889874458313, -0.022281847894191742, 0.03466065227985382, -0.03586433827877045, -0.046013589948415756, -0.005351610481739044, 0.022336561232805252, -0.013883410952985287, -0.004801061470061541, 0.01616767607629299, 0.01179747935384512, 0.0012455744436010718, -0.002104738727211952, -0.005994487553834915, -0.004219735972583294, 0.007769238669425249, 0.011592306196689606, -0.03126845136284828, 0.0047224112786352634, 0.0023270100355148315, -9.820546983974054e-05, -0.011729088611900806, 0.013575650751590729, 0.027602681890130043, -0.024319905787706375, 0.002780101727694273, -0.023034151643514633, 0.0022928144317120314, -0.012775473296642303, -0.013801340945065022, -0.012139435857534409, 0.012583978474140167, -0.003877780167385936, 0.04029608517885208, -0.004961780738085508, -0.002436436014249921, -0.007611939217895269, 0.009745744056999683, 0.002747615799307823, 0.0007651263731531799, 0.02462082728743553, -0.02987327054142952, -0.016400206834077835, -0.008842980489134789, 0.014416862279176712, -0.0028809786308556795, -0.03479743376374245, -0.02828659489750862, -0.011592306196689606, -0.033511679619550705, -0.0033357799984514713, 0.005625174846500158, -0.008589932695031166, 0.005125919356942177, -0.018383551388978958, 0.0002900213876273483, -0.01501870434731245, -0.016988370567560196, 0.0013319182908162475, -0.028095100075006485, -0.02477128803730011, -0.0033067138865590096, 0.018670793622732162, -0.026166466996073723, 0.003024600213393569, 0.030420400202274323, -0.01801423914730549, 0.009260166436433792, 0.20331332087516785, 0.01158546656370163, -0.003723900066688657, 0.042922306805849075, 0.01648227497935295, -0.023882202804088593, 0.013917606323957443, 0.014581000432372093, 0.01105885487049818, 0.027178658172488213, 0.015264912508428097, 0.01241300068795681, -0.018055273219943047, -0.00683227926492691, 0.021543223410844803, -0.019901834428310394, -0.028669584542512894, -0.010874198749661446, -0.00999195221811533, 0.011154602281749249, -0.005806411616504192, -0.0085010239854455, -0.0172756128013134, -0.0008638661820441484, 0.02408737502992153, 0.02137908525764942, 0.0005903014098294079, 0.016714805737137794, 0.0035973764024674892, 0.02663152851164341, -0.020654138177633286, -0.009868848137557507, 0.024374619126319885, -0.02641267515718937, -0.014622035436332226, -0.0074204434640705585, 0.0057756355963647366, -0.02550991252064705, 0.01679687574505806, 0.024525079876184464, 0.0027202593628317118, -0.028396019712090492, -0.0016567765269428492, -0.006305667571723461, 0.021652650088071823, -0.011209315620362759, 0.01020396500825882, -0.00070955854607746, 0.0038435845635831356, 0.03485214710235596, -0.00805648136883974, 0.013206337578594685, 0.010231321677565575, 0.014963991940021515, -0.02099609375, -0.01707044057548046, -0.019368384033441544, -0.005816670600324869, -0.03345697000622749, 0.008405276574194431, -0.00762561708688736, 0.0040795342065393925, -0.009691030718386173, 0.025003816932439804, -0.026672562584280968, 0.010368104092776775, -0.027520613744854927, 0.03094017319381237, 0.008665163069963455, 0.014950313605368137, -0.018205733969807625, -0.013247372582554817, -0.026166466996073723, -0.0106348292902112, -0.00718791363760829, -0.008583093993365765, 0.005984228570014238, 0.03504364192485809, 0.042238395661115646, 0.015976181253790855, 0.009123384021222591, 0.009827813133597374, -0.010060343891382217, -0.017672281712293625, -0.0016422433545812964, -0.006493743043392897, 0.03832641988992691, -0.019710339605808258, 0.020161721855401993, -0.009985113516449928, -0.014854565262794495, 0.004322323016822338, -0.009820974431931973, 0.0001271648652618751, -0.008918210864067078, -0.011906905099749565, 0.012474552728235722, 0.014799852855503559, -0.012501908466219902, -0.018164699897170067, -0.022336561232805252, 0.052387647330760956, 0.026658885180950165, 0.021762074902653694, -0.012912255711853504, -0.0074819959700107574, -0.014334792271256447, 0.02663152851164341, -0.013377316296100616, -0.004818159155547619, -0.0033648463431745768, -0.028040386736392975, 0.017138831317424774, 0.02178943157196045, 0.003638411173596978, 0.03195236250758171, 0.020448964089155197, 0.001988473813980818, -0.016085606068372726, -0.0069314464926719666, 0.022186100482940674, -0.02057206816971302, -0.010990463197231293, -0.0008095806697383523, -0.02572876401245594, -0.027411187067627907, -0.007844468578696251, 0.012953290715813637, -0.02248702198266983, -0.026781989261507988, -0.001174618606455624, -0.007570904213935137, 0.024429332464933395, -0.019053785130381584, 0.0030758935026824474, -0.0072221094742417336, 0.001207104418426752, -0.016523310914635658, -0.014129619114100933, 0.003328941063955426, 0.0031665118876844645, 0.00718791363760829, 0.008138551376760006, -0.007201591972261667, 0.017234578728675842, 0.00017065738211385906, 0.010347586125135422, 0.018999071791768074, -0.011086211539804935, -0.02132437191903591, 0.009027636609971523, 0.02589290216565132, -0.00022355369583237916, 0.0028895277064293623, 0.03862734138965607, -0.022418631240725517, -0.03126845136284828, -0.02211770974099636, 0.01961459219455719, -0.00898660160601139, -0.047490838915109634, -0.02020275592803955, 0.041280921548604965, 0.009581604972481728, -0.02737015299499035, 0.01041597779840231, -0.1737683266401291, 0.0109015554189682, 0.023088864982128143, 0.0008172746747732162, -0.013418350368738174, 0.027096588164567947, 0.007844468578696251, 0.006541616749018431, -0.027985673397779465, -0.01557951234281063, 0.012734439224004745, -0.004900228697806597, -0.027930960059165955, -0.02834130823612213, 0.0053687081672251225, 0.0019474390428513288, -0.017002047970891, 0.024360939860343933, 0.042293108999729156, -0.012830186635255814, 0.021652650088071823, -0.010942589491605759, -0.0033716855105012655, -0.02068149484694004, 0.01557951234281063, 0.012317252345383167, -0.01293961238116026, 0.035317208617925644, 0.012789151631295681, -0.028587516397237778, -0.01935470476746559, -0.006295408587902784, 0.013685076497495174, 0.011154602281749249, 0.014266401529312134, 0.012481391429901123, 0.013979158364236355, 0.0026228020433336496, -0.018958035856485367, 0.008576254360377789, 0.022391274571418762, 0.008063321001827717, 0.0180826298892498, -0.009957756847143173, 0.015292269177734852, 0.017453430220484734, 0.012002653442323208, 0.00192350207362324, 0.003976947627961636, -0.005252443253993988, 0.03783400356769562, -0.019970227032899857, -0.007358891423791647, -0.0026381900534033775, 0.0064219324849545956, 0.006890411954373121, 0.00503701064735651, 0.021009773015975952, -0.006285150069743395, -0.02131069265305996, -0.006203080527484417, -0.011886388063430786, -0.010272355750203133, -0.015182843431830406, -0.0019833443220704794, -0.03731423243880272, -0.03200707584619522, 0.022391274571418762, -0.009007119573652744, 0.004753187298774719, 0.0024022404104471207, -0.012084722518920898, 0.015497442334890366, 0.007926538586616516, 0.008863497525453568, 0.009191775694489479, -0.03099488466978073, -0.003007502295076847, 0.04139034450054169, 0.005738020408898592, 0.02302047237753868, 0.005512329749763012, -0.00045993071398697793, -0.005276380106806755, -0.03980366885662079, -0.008993441238999367, 0.008076999336481094, 0.0003840592398773879, 0.0038538433145731688, 0.018055273219943047, 0.020380573347210884, -0.022391274571418762, 0.03099488466978073, -0.010019308887422085, 0.01151023618876934, 0.004783963318914175, 0.00932855810970068, -0.01414329744875431, 0.0003981649351771921, -0.017207222059369087, 0.004479622468352318, 0.02088666893541813, -0.0409252867102623, 0.004041919019073248, 0.029955338686704636, 0.028943149372935295, 0.021502189338207245, -0.01227621827274561, 0.03321075811982155, -0.010231321677565575, -0.028505446389317513, 0.027151301503181458, 0.025126921012997627, 0.01113408524543047, -0.014635713770985603, 0.04284023866057396, -0.008015447296202183, -0.01100414153188467, 0.00574144022539258, -0.008425794541835785, 0.054986514151096344, -0.037505727261304855, -0.02780785597860813, -0.010894715785980225, 0.0005659370799548924, -0.009738905355334282, -0.10182079672813416, -0.0075025130063295364, 0.03162408620119095, 0.00804964266717434, -0.0042607709765434265, 0.0015447859186679125, -0.0062406957149505615, 0.025851868093013763, -0.0037888716906309128, 0.014868243597447872, -0.029627062380313873, 0.0027100008446723223, -0.005088304169476032, -0.004353099036961794, 0.007085327059030533, -0.015100773423910141, 0.003063925076276064, -0.035153068602085114, -0.002200486371293664, 0.020900346338748932, 0.0034776919055730104, -0.005720922723412514, 0.02062678150832653, 0.003717060899361968, -0.006380897480994463, -0.015456408262252808, -0.03865469992160797, 0.008514702320098877, 0.010463851504027843, 0.006363799795508385, 0.023991627618670464, -0.012262539938092232, 0.034305017441511154, -0.026193823665380478, -0.020216435194015503, -0.008808785118162632, -0.005474714562296867, -0.01674216240644455, 0.027028197422623634, -0.012118917889893055, -0.0011156311957165599, 0.023895880207419395, -0.006904090289026499, -0.026877736672759056, -0.004989136941730976, 0.0031015402637422085, -0.001378082437440753, 0.03425030782818794, 0.004113730043172836, 0.0036213132552802563, -0.02546887844800949, -0.02779417857527733, -0.01432111393660307, -0.015688937157392502, 0.031241094693541527, -0.010545920580625534, 0.005642272997647524, 0.005115660838782787, -0.017932169139385223, 0.008863497525453568, -0.02051735669374466, 0.002561250003054738, -0.01850665546953678, 0.020872989669442177, 0.01642756350338459, 0.0068356990814208984, -0.01749446615576744, 0.012625012546777725, 0.005019912961870432, 0.010374942794442177, -0.005556783638894558, 0.007030613720417023, -0.013972319662570953, -0.004691635258495808, -0.03422294929623604, 0.0030109218787401915, 0.0026210921350866556, -0.020476320758461952, 0.0019696662202477455, 0.013315764255821705, -0.02530473843216896, -0.01525123417377472, 0.009964595548808575, -0.03263627365231514, 0.017029404640197754, -0.0045445943251252174, -0.003652089275419712, -0.0016311297658830881, 0.022254491224884987, -0.04346943646669388, 0.004182121250778437, 0.02280162088572979, 0.017261935397982597, 0.014581000432372093, -0.002944240579381585, 0.008309529162943363, -0.011400810442864895, -0.012666047550737858, 0.004691635258495808, -0.004110310226678848, -0.014389505609869957, -0.005717503372579813, -0.06188034638762474, 0.007509352173656225, 0.005474714562296867, 0.009800457395613194, 0.01764492690563202, -0.03788871690630913, 0.0028963666409254074, -0.0106279905885458, 0.017316648736596107, 0.00919861439615488, -0.021187588572502136, 0.009007119573652744, -0.021857822313904762, -0.014198009856045246, -0.03315604850649834, -0.032937195152044296, 0.003383653936907649, 0.0038743605837225914, 0.020230112597346306, 0.003528985194861889, -0.005980809219181538, 0.007823951542377472, 0.02318461239337921, 0.032718341797590256, 0.007317856885492802, 0.04062436521053314, -0.033839959651231766, 0.026029685512185097, -0.013404672034084797, -0.014061227440834045, 0.021597936749458313, -0.0006775002111680806, -0.010942589491605759, 0.010190286673605442, 0.001646517775952816, -0.026987161487340927, -0.008090677671134472, 0.027342796325683594, -0.0009198614279739559, -0.002834814600646496, -0.001867079408839345, -0.01079212874174118, 0.01589411124587059, -0.00921913143247366, -0.029572349041700363, -0.017002047970891, -0.028149811550974846, -0.024867035448551178, 0.010764773003757, 0.005508909933269024, 0.02668623998761177, -0.004199218936264515, -0.029408210888504982, -0.025058530271053314, 0.004640342202037573, -0.011380293406546116, -0.0029322721529752016, 0.022254491224884987, 0.011571788229048252, -0.0037615152541548014, 0.04937843605875969, -0.01007402129471302, 0.0037307392340153456, -0.014922956936061382, 0.03156937286257744, -0.010785290040075779, -0.043989211320877075, -0.007618777919560671, 0.0029784361831843853, -0.04486461728811264, -0.012214666232466698, -0.021023450419306755, 0.01891700178384781, 0.020763564854860306, 0.0055499449372291565, -0.007878664880990982, -0.002501407638192177, -0.023006794974207878, -0.015100773423910141, 0.023663349449634552, 0.014498931355774403, -0.001319949864409864, -0.009581604972481728, 0.010094539262354374, 0.019532522186636925, 0.001704650348983705, -0.018739184364676476, 0.0196693055331707, 0.03580962494015694, 0.018205733969807625, -0.02333507314324379, -0.00018690028809942305, 0.0037649348378181458, 0.009137062355875969, -0.0010780161246657372, 0.010060343891382217, 0.0016097575426101685, 0.0018431424396112561, 0.03594640642404556, 0.025591982528567314, 0.0060355220921337605, 0.013753467239439487, -0.019641948863863945, -0.00040479033486917615, 0.002166290767490864, 0.015292269177734852, -0.029216714203357697, -0.01716618798673153, 0.021406441926956177, 0.03408616781234741, -0.0013396124122664332, -0.03416823595762253, -0.004045338835567236, 0.016304459422826767, -0.00946534052491188, 0.0021731299348175526, -0.0009412337094545364, -0.015716293826699257, -0.032499492168426514, 0.009150740690529346, 0.0026039944496005774, 0.02753429114818573, 0.010039825923740864, -0.024894392117857933, 0.03072131983935833, 0.0027578745502978563, 0.01679687574505806, -0.007215270306915045, 0.0034759819973260164, -0.014444218948483467, 0.004500139970332384, -0.017398716881871223, 0.0065245190635323524, -0.003727319650352001, -0.011113567277789116, -0.02403266355395317, -0.010463851504027843, 0.036657676100730896, -0.015333304181694984, 0.09585708379745483, 0.03337489813566208, -0.02913464605808258, 0.006380897480994463, -0.013972319662570953, 0.021242301911115646, 0.01294645108282566, 0.011072533205151558, -0.0009489277144894004, -0.0106348292902112, 0.026125432923436165, -0.02828659489750862, -0.018479298800230026, 0.008042803034186363, -0.006664721295237541, 0.00014789594570174813, 0.01113408524543047, 0.018834931775927544, 0.005033591296523809, 0.010402299463748932, 0.008282172493636608, -0.013165303505957127, 0.0042607709765434265, -0.0015926597407087684, -0.026809344068169594, -0.0028313950169831514, 0.03496157377958298, 0.03545399010181427, 0.002633060561493039, -0.031596727669239044, 0.03195236250758171, -0.00312889670021832, -0.03129580616950989, -0.009335396811366081, -0.012577138841152191, 0.009930400177836418, -0.016810553148388863, -0.02689141407608986, 0.009260166436433792, 0.01690630055963993, 0.012105239555239677, 0.018616080284118652, -0.018274124711751938, -0.0074204434640705585, 0.022021962329745293, 0.00589873967692256, -0.01241300068795681, -0.022774264216423035, -0.00495494157075882], "8f6f8669-9943-4aa5-aa79-f185e413636c": [-0.0072135599330067635, -0.010642058216035366, -0.00411762623116374, -0.02899138070642948, 0.014824825339019299, 0.03425755351781845, -0.012699156999588013, -0.018993878737092018, -0.013899131678044796, -0.019624723121523857, 0.00308564817532897, 0.031048478558659554, 0.01343971211463213, -0.002401662990450859, -0.013473997823894024, 0.01359742321074009, 0.01727963052690029, 0.0041279117576777935, -0.00626729428768158, -0.011005478911101818, -0.03288615494966507, 0.004731327295303345, -0.010011214762926102, 0.01156089548021555, -0.025850875303149223, 0.009853503666818142, 0.025274887681007385, -0.009551795199513435, -0.012260309420526028, 0.005139318760484457, 0.014619115740060806, -0.008221538737416267, -0.024287480860948563, -0.011080905795097351, -0.015263673849403858, 0.002564516616985202, 0.017197346314787865, 0.00734384311363101, 0.024890895932912827, -0.012946008704602718, 0.007666121702641249, 0.013124290853738785, 0.004169053863734007, -0.017307057976722717, -0.027592552825808525, 0.03475125506520271, 0.010443205013871193, -0.029457654803991318, -0.017142489552497864, -0.0060752984136343, 0.0016216796357184649, 0.022202953696250916, -0.018143611028790474, 0.01572994887828827, 0.006630715448409319, -0.005708449520170689, 0.0012514018453657627, -0.0023210931103676558, 0.013995129615068436, -0.015496810898184776, -0.005879874341189861, -0.00639072060585022, -0.0028696528170257807, -0.008043256588280201, -0.018143611028790474, -0.019021308049559593, -0.024657757952809334, 0.0006149868713691831, -0.001861674478277564, -0.013700278475880623, 0.05386856198310852, 0.029978787526488304, 0.015771090984344482, -0.011794033460319042, 0.010738056153059006, -0.009874074719846249, -0.009277516044676304, -0.013953987509012222, -0.009757505729794502, 0.0015196817694231868, 0.00968207884579897, -0.016964208334684372, -0.0046010445803403854, 0.013028292916715145, 0.02995136007666588, 0.03288615494966507, 0.006572430953383446, 0.007590694818645716, -0.014509404078125954, -0.005355313885957003, -0.0047073280438780785, 0.011581466533243656, 0.01114947535097599, 0.022010957822203636, 0.015140247531235218, 0.00901694968342781, 0.02066698670387268, 0.007727834861725569, -0.02517889067530632, -0.010045499540865421, -0.0053278859704732895, 0.0124317342415452, -0.0005867017316631973, -0.01466025784611702, 6.605216185562313e-05, -0.010127783752977848, 0.026975423097610474, -0.015400812961161137, 0.004426191095262766, 0.01778704859316349, -0.022285237908363342, 0.041882533580064774, -0.000635129283182323, -0.009346085600554943, -0.008831811137497425, -0.005595308728516102, 0.01604537107050419, -0.03516267612576485, -0.02187381684780121, -0.020077284425497055, 0.0023296645376831293, 0.031981028616428375, 0.040757983922958374, -0.0029176517855376005, 0.016127655282616615, 0.01792418770492077, 0.019953858107328415, 0.0035090676974505186, 0.01114947535097599, -0.007906116545200348, 0.023519497364759445, 0.003274215618148446, 0.009592937305569649, 0.0033702135551720858, -0.03274901211261749, 0.020776698365807533, -0.016991635784506798, 0.022888652980327606, 0.008118683472275734, -0.03132275864481926, 0.018116183578968048, 0.02644057758152485, 0.021284116432070732, -0.012747155502438545, -0.011012336239218712, 0.05507539212703705, 0.010779198259115219, 0.030527347698807716, 0.008440962061285973, 0.0028507960960268974, -0.0004373478004708886, -0.012034027837216854, -0.02986907586455345, -0.008694671094417572, -0.004861610475927591, 0.004145054146647453, 0.01136889960616827, 0.01168432179838419, 0.002667371416464448, 0.00421362416818738, -0.0015445384196937084, 0.03220045566558838, 0.003337642876431346, -0.024081770330667496, 0.009976929053664207, 0.03313300386071205, 0.011800890788435936, -0.02179153449833393, -0.02461661584675312, -0.022847510874271393, 0.015400812961161137, 0.02268294245004654, -0.025754878297448158, 0.0352175310254097, 0.01139632798731327, 0.004494761116802692, -0.0028970809653401375, 0.005804447457194328, -0.023272644728422165, -0.03650664910674095, 0.02530231513082981, -0.010964336805045605, -0.011183761060237885, 0.024945752695202827, -0.013240859843790531, -0.0028542247600853443, 0.026481719687581062, 0.027235988527536392, 0.014070556499063969, 2.9008308047195897e-05, 0.009709506295621395, -0.009736934676766396, -0.023944631218910217, -0.021503539755940437, -0.617897629737854, -0.009709506295621395, 0.00743984105065465, -0.007542695850133896, 0.004210195504128933, 0.01544195506721735, 0.020145853981375694, 0.007556409575045109, 0.002322807442396879, 0.03546438366174698, 0.009030664339661598, -0.000568273535463959, -0.005489025264978409, -0.011835175566375256, -0.009051235392689705, -0.016827069222927094, -0.005770162213593721, -0.021064693108201027, -0.0036513505037873983, -0.0034884968772530556, -0.026454290375113487, 0.005537024233490229, 0.003310214960947633, -0.015071677975356579, -0.003534781513735652, -0.025028036907315254, 0.007336985785514116, -0.0013139719376340508, 0.004727898631244898, 0.03214559704065323, -0.03919459134340286, 0.010134640149772167, 0.029293088242411613, -0.0007371270912699401, 0.041937388479709625, -0.019775576889514923, -0.00313364714384079, 0.03455926105380058, 0.02799025923013687, 0.017567623406648636, -0.02011842653155327, -0.012383734807372093, 0.011362042278051376, 0.02048870362341404, -0.012424876913428307, -0.008653528988361359, 0.019062450155615807, -0.013206575065851212, 0.009544938802719116, -0.016004228964447975, 0.0012599730398505926, -0.003582780482247472, -0.007480982691049576, -0.018527602776885033, 0.0006514146225526929, -0.008091255091130733, 0.011218045838177204, -0.018335606902837753, 0.014262552373111248, -0.008914095349609852, 0.013672850094735622, 0.01734820008277893, 0.002725655911490321, -0.037740908563137054, -0.04531103000044823, 0.01475625578314066, -0.026851996779441833, -0.016264794394373894, -0.021270401775836945, -0.008420391008257866, 0.032035887241363525, 0.003747348440811038, 0.009222660213708878, 0.0026536574587225914, 0.008056970313191414, 0.019281873479485512, 0.04171796515583992, -0.009812361560761929, 0.005345028359442949, 0.027674837037920952, 0.0008476961520500481, -0.007151846773922443, -0.009983786381781101, -0.01998128741979599, 0.023533210158348083, 0.026824569329619408, -0.015167675912380219, -0.02022813819348812, -0.0020382420625537634, -0.01036777812987566, 0.009435227140784264, 0.03365413844585419, -0.017389342188835144, -0.03894773870706558, 0.029155947268009186, 0.04514646157622337, -0.005670735612511635, 0.014481975696980953, 0.000694270886015147, -0.01158832386136055, -0.023162933066487312, -0.022820083424448967, 0.015633951872587204, -0.0021445255260914564, 0.00933237187564373, 0.016141368076205254, -0.02142125554382801, -0.015496810898184776, 0.005835303571075201, 0.002334807300940156, -0.023752635344862938, -0.015455669723451138, -0.009531225077807903, -0.007199845742434263, 0.016689928248524666, -0.023574352264404297, 0.0006595572922378778, 0.020461276173591614, 0.01055977400392294, -0.004079912789165974, -0.022696657106280327, -0.005941587034612894, 0.024904610589146614, 0.0001252473157364875, 0.010614629834890366, 0.011231759563088417, -0.0010345493210479617, -0.020447563380002975, 0.01124547328799963, -0.008502675220370293, -0.017499053850769997, -0.012479732744395733, -0.006476433016359806, -0.009133518673479557, 0.02918337658047676, 0.008194110356271267, 0.028662243857979774, 0.006010157056152821, 0.0077895475551486015, -0.03540952876210213, 0.0067747123539447784, 0.012568874284625053, 0.016744785010814667, -0.0265502892434597, 0.003613637061789632, -0.025658879429101944, -0.01178031973540783, -0.0039153448306024075, 0.02212066948413849, -0.00306850578635931, -0.01250030379742384, -0.0160316564142704, 0.010909480974078178, 0.0075632669031620026, 0.0006964136846363544, -0.0049644652754068375, -0.0034302123822271824, -0.03365413844585419, -0.012898010201752186, 0.0014896824723109603, -0.0028456533327698708, 0.015332243405282497, -0.022161811590194702, 0.020090999081730843, -0.014577973634004593, -0.018376749008893967, -0.010443205013871193, 0.005674164276570082, -0.013974558562040329, -0.013919701799750328, -0.020954979583621025, -0.022628087550401688, -0.010436348617076874, 0.002134239999577403, 0.0076386937871575356, 0.012349450029432774, -0.01572994887828827, -0.014769969508051872, -0.018129898235201836, -0.0013893988216295838, 0.012884295545518398, 0.007570123765617609, -0.010731198824942112, -0.02686571143567562, 0.04333621636033058, -0.0026759428437799215, 0.02061212994158268, 0.03074677102267742, -0.01941901259124279, 0.021434970200061798, -0.028223395347595215, 0.003073648549616337, -0.02124297432601452, -0.010292351245880127, -0.021777819842100143, -0.010573487728834152, -0.007947258651256561, 0.017677336931228638, 0.003617065493017435, 0.023450927808880806, 0.039496298879384995, 0.016580216586589813, 0.003671921556815505, -0.011540324427187443, 0.007549552712589502, -0.013569995760917664, 0.012027171440422535, -0.024479476734995842, 0.009167803451418877, 0.0041484828107059, 0.0021685250103473663, 0.006507289130240679, 0.01692306622862816, -0.009908359497785568, 0.003822775324806571, 0.03425755351781845, -0.00048341823276132345, 0.01463282946497202, -0.008955237455666065, -0.01578480564057827, 0.02122925966978073, 0.004906180780380964, 0.020900124683976173, -0.012966579757630825, -0.011423755437135696, 0.0025542310904711485, 0.02324521727859974, 0.023066934198141098, 0.009222660213708878, -0.019281873479485512, -0.017238488420844078, 0.021393828094005585, -0.004923323169350624, 0.015551667660474777, 0.03897516801953316, -0.0016945351380854845, 0.016635073348879814, 0.007158704102039337, 0.02631715126335621, -0.003281072713434696, 0.016881924122571945, -0.01572994887828827, 0.023601781576871872, -0.02091383747756481, 0.015825947746634483, 0.002537088468670845, 0.02932051569223404, 0.012747155502438545, -0.01647050492465496, -0.0018685314571484923, -0.0014193982351571321, -0.016744785010814667, 0.01324771624058485, -0.008804382756352425, 0.022148096933960915, -0.028168540447950363, 0.02630343660712242, 0.021078405901789665, 0.02135268598794937, 0.016689928248524666, 0.009860360063612461, 0.014454548247158527, 0.018335606902837753, 0.006229580845683813, 0.0375763401389122, -0.020653272047638893, -0.004823897033929825, -0.027729691937565804, -0.01444083359092474, -0.01910359039902687, 0.0006428433698602021, -0.015140247531235218, 0.010196353308856487, -0.022079527378082275, -0.02011842653155327, 0.012726584449410439, -0.02568630687892437, 0.008132397197186947, -0.0060752984136343, 0.004943894222378731, -0.0171013493090868, -0.025631451979279518, 0.025288602337241173, 0.011677464470267296, 0.0008691242546774447, 0.0026793712750077248, -0.02517889067530632, 0.015675093978643417, -0.0027325130067765713, 0.016689928248524666, -0.00216166814789176, 0.00929808709770441, -0.011190617457032204, 0.008989522233605385, 0.011320901103317738, -0.007323272060602903, 0.03941401466727257, -0.00962036568671465, -0.016113940626382828, -0.011828318238258362, 0.02292979508638382, 0.016374506056308746, -0.0364517904818058, -0.018582459539175034, 0.038371749222278595, -0.004426191095262766, -0.020063571631908417, -0.02981421910226345, -0.015099105425179005, -0.018719598650932312, -0.0013825418427586555, 0.005910730920732021, -0.027043992653489113, -0.008063827641308308, -0.012877439148724079, -0.006383863277733326, 0.001029406557790935, -0.020077284425497055, 0.0016045371303334832, 0.015167675912380219, -0.0010919766500592232, -0.006719856057316065, 0.010840910486876965, 0.014358550310134888, 0.08277765661478043, 0.007254702039062977, 0.009565509855747223, 0.028799382969737053, -0.00022692371567245573, -0.022134384140372276, -0.02768854983150959, -0.01748534105718136, 0.04506417736411095, 0.026947995647788048, -0.010189495980739594, -0.00022713799262419343, 0.01042949128895998, -0.009976929053664207, 0.019693292677402496, -0.009887788444757462, -0.003562209429219365, -0.015263673849403858, -0.010196353308856487, -0.005687878467142582, 0.003665064461529255, -0.005821589846163988, 0.035244960337877274, 0.019624723121523857, 0.046188727021217346, 0.021325258538126945, 0.02298465184867382, 0.03107590600848198, 0.00395991513505578, -0.013830561190843582, -0.015057963319122791, 0.01935044303536415, 0.013672850094735622, 0.010772340930998325, -0.051262903958559036, 0.018623601645231247, -0.006442147772759199, -0.0002963508013635874, -0.012651157565414906, 0.007906116545200348, -0.012376878410577774, 0.003953058272600174, -0.0038262037560343742, -0.01961100846529007, 0.017073919996619225, -0.031981028616428375, -0.01829446665942669, 0.031158190220594406, -0.02142125554382801, -0.012822582386434078, 2.8204753107274882e-05, 0.003634207881987095, -0.025535453110933304, 0.006736998911947012, 0.008811240084469318, -0.016360793262720108, 0.01121118851006031, -0.018143611028790474, -0.025453168898820877, -0.024150339886546135, -0.018705885857343674, -0.01754019595682621, -0.023834919556975365, -0.032913580536842346, -0.016689928248524666, -0.026289723813533783, -0.024520618841052055, -0.012514018453657627, -0.024698900058865547, -0.0077895475551486015, -0.017142489552497864, -0.03357185423374176, -0.02122925966978073, 0.02768854983150959, 0.011732320301234722, 0.022970937192440033, -0.0022456662263721228, 0.005526738706976175, 0.011917459778487682, 0.016113940626382828, 0.014043128117918968, -0.011691178195178509, 0.011485468596220016, -0.02254580333828926, -0.005348457023501396, -0.014207695610821247, -0.028579959645867348, 0.004570188000798225, -0.0002112811926053837, 0.007741548586636782, -0.001357685192488134, -0.012040885165333748, 0.011691178195178509, 0.01040206290781498, 0.018843024969100952, 0.025974301621317863, 0.012178025208413601, -0.008022685535252094, 0.020570987835526466, -0.03274901211261749, 0.018870454281568527, -0.0072135599330067635, -0.013576852157711983, -0.008091255091130733, 0.01249344740062952, 0.023505782708525658, -0.00731641473248601, -0.010710627771914005, -0.0039462014101445675, -0.02561773732304573, 0.0059793004766106606, -0.016621358692646027, -0.018184753134846687, -0.01362485159188509, -0.004885609727352858, -0.01243859063833952, -0.001964529510587454, -0.003582780482247472, -0.0030702201183885336, -0.020378991961479187, 0.009599794633686543, -0.03137761354446411, 0.026646286249160767, 0.02549431100487709, -0.0034490691032260656, 0.02010471187531948, 0.018376749008893967, -0.013885417021811008, -0.03612265735864639, 0.010738056153059006, -0.004940465558320284, -0.0020690986420959234, -0.009202089160680771, -0.016621358692646027, -0.010991765186190605, 0.01029920857399702, -0.011416899040341377, 0.01903502084314823, -0.017553910613059998, -0.0005387027631513774, -0.0226692296564579, 0.010895767249166965, 0.030801625922322273, -0.011938029900193214, -0.006661571562290192, -0.026029156520962715, -0.04717613384127617, 0.0037542053032666445, 0.02186010405421257, 0.02524746023118496, -0.010916338302195072, -0.0030307923443615437, -0.03831689432263374, -0.03176160529255867, -0.0019062448991462588, -0.01337114255875349, 0.0059038735926151276, 0.006284437142312527, 0.03477868437767029, 0.03782318904995918, -0.000335349963279441, 0.018390463665127754, 0.030280495062470436, 0.01678592711687088, -0.002706799190491438, 0.00027192276320420206, -0.006212438456714153, -0.030362779274582863, 0.009051235392689705, -0.030609630048274994, -0.0012522588949650526, 0.011204332113265991, -0.003265644423663616, 0.003042791970074177, 0.004906180780380964, -0.004419334232807159, 0.003380499081686139, -0.0012085455236956477, -0.021654393523931503, -0.05639193579554558, 0.0062261526472866535, 0.0363420806825161, 0.004398763179779053, 0.005993014667183161, -0.026454290375113487, 0.010511775501072407, 0.016374506056308746, -0.008804382756352425, 0.04468018561601639, 0.013425998389720917, 0.013234002515673637, -0.018006471917033195, 0.02105097845196724, 0.03049991838634014, -0.013953987509012222, -0.0209824088960886, -0.012075169943273067, -0.023135505616664886, 0.005276458337903023, 0.023533210158348083, 0.018651029095053673, 0.00619872473180294, 0.003274215618148446, 0.007048991974443197, -0.0016911067068576813, 0.018966451287269592, -0.013748276978731155, -0.04201967269182205, 0.019761862233281136, -0.028579959645867348, -0.01343971211463213, -0.03165189549326897, -0.02724970318377018, 0.016648786142468452, -0.02073555625975132, 0.0017656765412539244, -0.0018445319728925824, 0.01959729567170143, -0.01592194475233555, -0.02198353037238121, 0.008872953243553638, -0.011869460344314575, 0.01368656475096941, 0.012946008704602718, 0.03220045566558838, 0.021407542750239372, 0.018335606902837753, -0.02217552624642849, -0.008447819389402866, -0.010710627771914005, -0.0035142104607075453, -0.011471754871308804, 0.02888166718184948, -0.013131147250533104, -0.024150339886546135, -0.005996443331241608, -0.010964336805045605, 0.0031576466280966997, -0.035793520510196686, 0.03475125506520271, 0.012754012830555439, 0.001763962209224701, -0.037740908563137054, -0.010820340365171432, -0.013357428833842278, 0.0014999678824096918, -0.00791983027011156, 0.026577716693282127, 0.01353571005165577, 0.0060444422997534275, 0.0038879169151186943, 0.02212066948413849, -0.018116183578968048, 0.012651157565414906, -0.008612386882305145, 0.0063770064152777195, -0.00424448074772954, 0.0038159184623509645, -0.006671857088804245, -0.026152582839131355, -0.0021393827628344297, 0.012699156999588013, -0.0192407313734293, 0.01459168829023838, 0.02292979508638382, 0.013288858346641064, -0.0063015795312821865, -0.0007049849373288453, -0.028086256235837936, 0.03209074214100838, 0.003997628577053547, -0.02506917715072632, 0.0033496427349746227, -0.016182510182261467, 0.010354064404964447, -0.031103335320949554, -0.01610022783279419, 0.003911916166543961, -0.012582588009536266, -0.013192860409617424, 0.005355313885957003, -0.014043128117918968, 0.014550546184182167, 0.004895895253866911, 0.01133461482822895, -0.011410041712224483, -0.013837418518960476, -0.004950751084834337, 0.032858725637197495, -0.030664486810564995, -0.0003582780482247472, -0.00526274461299181, -0.01615508273243904, -0.021160690113902092, 0.006387291941791773, -0.001782819046638906, 0.0025028036907315254, 0.032474733889102936, -0.028141112998127937, 0.013412284664809704, 0.005519881844520569, 0.022285237908363342, -0.03584837540984154, 0.031158190220594406, -0.008907238021492958, 0.0005691307014785707, 0.01947386935353279, 0.002173667773604393, -0.03966086730360985, -0.013631707988679409, 0.005794161930680275, 0.018006471917033195, -0.010820340365171432, 0.010511775501072407, 0.010744912549853325, 0.007775833830237389, 0.009243231266736984, -0.015688806772232056, -0.018747027963399887, 0.003589637577533722, -0.0027942259330302477, -0.00836553517729044, 0.023204075172543526, -0.014166554436087608, -0.00010215852671535686, 0.009558652527630329, 0.005492453929036856, -0.0148796821013093, -0.02136640064418316, -0.03606779873371124, -0.018623601645231247, -0.018568744882941246, 0.0014031128957867622, 0.025508025661110878, -0.01866474375128746, -0.04333621636033058, -0.017992757260799408, 0.016319651156663895, 0.0021993815898895264, 0.020077284425497055, 0.027235988527536392, 0.006606715731322765, -0.004590759053826332, 0.011026049964129925, -0.005605594255030155, -0.04830067977309227, -0.03381870687007904, -0.012082027271389961, -0.036369506269693375, -0.0024668043479323387, -0.0231766477227211, 0.03628722205758095, 0.005530167371034622, -0.01992643065750599, -0.01641564816236496, -0.009963215328752995, -0.021434970200061798, -0.015620237216353416, -0.04797154664993286, 0.027139991521835327, 0.016196224838495255, 0.02775712125003338, 0.013240859843790531, 0.015140247531235218, -0.0014373977901414037, 0.042623087763786316, -0.026961708441376686, -0.00927065871655941, -0.004419334232807159, -0.03395584598183632, 0.026961708441376686, -0.04026428237557411, -0.057653624564409256, 0.005825018044561148, 0.01834932155907154, -0.02981421910226345, 0.012411163188517094, 0.016072798520326614, 0.005924444645643234, 0.007762119639664888, -0.005307314917445183, -0.0001319971779594198, -0.004316478967666626, 0.005489025264978409, 0.017197346314787865, -0.013576852157711983, 0.00811182614415884, 0.0171013493090868, 9.803361899685115e-05, -0.010093498043715954, 0.013487711548805237, 0.007467268966138363, -0.008475246839225292, 0.001427969429641962, -0.024397192522883415, 0.0010602630209177732, -0.018678458407521248, -0.0209275521337986, 0.006188439205288887, -0.00013146147830411792, 0.014948251657187939, 0.03425755351781845, -0.017252203077077866, 0.0015453954692929983, -0.008694671094417572, 0.009154089726507664, 0.003641064977273345, -0.017115062102675438, 0.0057667335495352745, 0.0008626958588138223, -0.010854625143110752, -0.010120926424860954, 0.024342335760593414, -0.0075769806280732155, -0.04138882830739021, -0.025233745574951172, 0.004721041768789291, -0.015277387574315071, -0.002358806785196066, 0.010354064404964447, -0.004549616947770119, 0.003527924418449402, -0.00514960428699851, 0.018404178321361542, -0.017238488420844078, -0.01892530918121338, 0.002055384684354067, -0.02417776919901371, -0.0518663190305233, -0.0028456533327698708, 0.009613508358597755, -0.033681564033031464, 0.0007791261887177825, 0.026975423097610474, -0.019432727247476578, 0.0071038478054106236, 0.19078905880451202, -0.0021873817313462496, 0.004217052832245827, 0.03455926105380058, 0.00524560222402215, -0.011231759563088417, 0.014605402015149593, 0.019816718995571136, -0.0038570603355765343, 0.02768854983150959, 0.009606651961803436, 0.01321343146264553, -0.020954979583621025, -0.004659329075366259, 0.02888166718184948, -0.013254573568701744, -0.02199724316596985, -0.022532088682055473, -0.02217552624642849, 0.016689928248524666, 0.006973565090447664, -0.008022685535252094, -0.02693428099155426, -0.012925437651574612, 0.009263801388442516, 0.03658893331885338, -0.01463282946497202, 0.029786791652441025, 0.01224659476429224, 0.010978050529956818, -0.03231016546487808, 0.006287865340709686, 0.017896760255098343, -0.02981421910226345, -0.0028662243857979774, 0.001534252893179655, 0.011266044341027737, -0.02361549437046051, 0.021078405901789665, -0.0006719856173731387, 0.009202089160680771, -0.03519010543823242, 0.0016148225404322147, -0.023012079298496246, 0.006545003037899733, -0.0011511181946843863, 0.012123169377446175, -0.004138197284191847, 0.015387099236249924, 0.032419878989458084, -0.009003235958516598, 0.001297686481848359, 0.012630586512386799, 0.006610144395381212, -0.003658207366243005, -0.011711749248206615, -0.0082969656214118, 0.008063827641308308, -0.017581338062882423, 0.033160433173179626, -0.0004184910503681749, 0.014056841842830181, -0.019336728379130363, 0.019624723121523857, -0.037000350654125214, 0.015880802646279335, -0.025233745574951172, 0.02730455808341503, 0.017691049724817276, -0.0034267837181687355, -0.01590823195874691, -0.012267165817320347, -0.0231766477227211, -0.000487275276100263, -0.019720720127224922, -0.011204332113265991, -0.000572130607906729, 0.0297593642026186, 0.029923930764198303, 0.029402799904346466, 0.0027633693534880877, 0.02073555625975132, -0.018582459539175034, -0.0027205131482332945, 0.000183424650458619, -0.003966772463172674, 0.0309387668967247, -0.034038130193948746, 0.0066341436468064785, -0.014920823276042938, -0.014893395826220512, -0.0160316564142704, -0.0055095963180065155, 0.006812425795942545, -0.0011828318238258362, -0.007947258651256561, 0.00946265459060669, 0.027523983269929886, -0.0057975901290774345, -0.020817840471863747, -0.028086256235837936, 0.04980922117829323, 0.030609630048274994, 0.019323015585541725, -0.03225531056523323, -0.009250087663531303, -0.007858118042349815, 0.02331378683447838, -0.00017849617870524526, 0.005732448771595955, -0.011074048466980457, -0.011074048466980457, 0.015935659408569336, 0.01466025784611702, -0.000313493306748569, 0.03233759477734566, 0.022641802206635475, -0.0020382420625537634, -0.02136640064418316, -0.002734227105975151, 0.00968207884579897, -0.02330007217824459, -0.0059827291406691074, 0.005783876404166222, -0.020817840471863747, -0.025110319256782532, -0.019144732505083084, 0.005156461149454117, -0.015688806772232056, -0.013830561190843582, 0.030170783400535583, 0.016497932374477386, 0.009119804948568344, -0.02642686292529106, -0.019446441903710365, 0.006641000974923372, 0.003471354255452752, -0.02863481640815735, -0.00039834860945120454, -0.00209138379432261, -3.626707984949462e-05, -0.005063891876488924, 0.014481975696980953, 0.0075769806280732155, 0.01324771624058485, -0.0015642523067072034, 0.01690935343503952, 0.0209275521337986, -0.012472876347601414, -0.02423262409865856, 0.008872953243553638, 0.03255701810121536, -0.0017982472199946642, 0.015112819150090218, 0.02456176094710827, -0.021750392392277718, -0.018678458407521248, -0.010079784318804741, 0.008934666402637959, -0.017115062102675438, -0.04426876828074455, -0.005413598380982876, 0.030801625922322273, 0.01566137932240963, -0.02637200802564621, -0.005043320823460817, -0.17455169558525085, 0.009832932613790035, 0.003668492892757058, 0.00030385065474547446, 0.011807747185230255, 0.03126790374517441, 0.010539202950894833, 0.002574802143499255, -0.016127655282616615, -0.010443205013871193, 0.010408920235931873, 0.01278144121170044, -0.02624858170747757, -0.023135505616664886, 0.006541574373841286, -0.0008498389506712556, -0.013316286727786064, 0.017115062102675438, 0.03903002291917801, -0.012575730681419373, 0.03606779873371124, -0.03302329406142235, 0.008420391008257866, -0.03252958878874779, 0.017622480168938637, 0.014797397889196873, -0.010319779627025127, 0.01227402314543724, 0.006339292973279953, -0.031213046982884407, -0.015236245468258858, -0.008159825578331947, 0.011444326490163803, 0.00621929531916976, 0.005399884656071663, -0.0017305343644693494, 0.015688806772232056, 0.010450062341988087, -0.023766348138451576, 0.023889774456620216, 0.028415391221642494, 0.009853503666818142, 0.03220045566558838, 0.0009994071442633867, 0.011910602450370789, 0.01446826197206974, 0.021750392392277718, -0.01992643065750599, 0.0009582652128301561, 0.0034542118664830923, 0.04454304650425911, -0.014235123991966248, -0.012075169943273067, -0.008900380693376064, 0.01143746916204691, 0.009359799325466156, 0.0011331186397001147, 0.02524746023118496, -0.005029606632888317, -0.019775576889514923, 0.001969672041013837, -0.013391713611781597, -0.010086641646921635, -0.0082695372402668, -0.0015488240169361234, -0.04004485905170441, -0.03376384824514389, 0.03853631764650345, -0.01262373011559248, 0.004974750801920891, 0.017526481300592422, 0.011670607142150402, -0.0014262552140280604, 0.0102374954149127, 0.009901502169668674, 0.00974379200488329, -0.03151475265622139, 0.01622365228831768, 0.0375763401389122, -0.0021925244946032763, 0.02236752212047577, 0.01524995919317007, -0.008440962061285973, -0.004042199347168207, -0.04391220211982727, -0.006353007163852453, 0.014934537932276726, -0.005897016730159521, -0.01848646253347397, 0.01815732568502426, 0.012390592135488987, -0.02017328329384327, 0.03173417970538139, -0.008063827641308308, -0.0017605337779968977, 0.0031285046134144068, 0.036808356642723083, -0.019583581015467644, 0.00813925452530384, -0.0099563580006361, 0.00907866284251213, 0.010840910486876965, -0.036616358906030655, 0.011732320301234722, 0.02004985697567463, 0.02918337658047676, 0.015702521428465843, -0.021818961948156357, 0.024726327508687973, -0.0019096734467893839, -0.03850889205932617, 0.022518375888466835, 0.029046235606074333, 0.006291294004768133, -0.017937902361154556, 0.05683078244328499, 0.00515303248539567, -0.00958608090877533, 0.008824953809380531, -0.014893395826220512, 0.0462435819208622, -0.0365615040063858, -0.024781184270977974, -0.01143746916204691, -0.005825018044561148, -0.023697778582572937, -0.09890531003475189, 0.005084462463855743, 0.03381870687007904, 0.009119804948568344, -0.007556409575045109, 0.0034404979087412357, -0.004285622388124466, 0.025233745574951172, -0.007707263808697462, 0.016443077474832535, -0.011266044341027737, -0.008386106230318546, -0.014797397889196873, -0.0026330866385251284, 0.005561023950576782, -0.014358550310134888, 0.0051016053184866905, -0.03812490031123161, -0.0021119548473507166, 0.013412284664809704, 0.00839296355843544, -0.007878688164055347, 0.024342335760593414, 0.006620429921895266, -0.013144861906766891, -0.0048547531478106976, -0.04627101123332977, 0.004402191378176212, -0.0013748276978731155, 0.010539202950894833, 0.03985286131501198, -0.008914095349609852, 0.021407542750239372, -0.02024185284972191, -0.0027170847170054913, -0.00429247971624136, -0.006867281626909971, -0.026577716693282127, 0.03760376572608948, -0.021393828094005585, -0.00520103145390749, 0.01817104034125805, -0.011794033460319042, -0.010326636023819447, -0.010546060279011726, 0.006610144395381212, 0.006832996848970652, 0.028031399473547935, 0.0070627061650156975, -0.00629472266882658, -0.00737812789157033, -0.02567259408533573, -0.02456176094710827, -0.010731198824942112, 0.03151475265622139, -0.00025713734794408083, 0.007432983722537756, 0.026289723813533783, -0.023094363510608673, 0.007419269997626543, -0.0023759491741657257, -0.006308436393737793, -0.014934537932276726, 0.017389342188835144, 0.01679963991045952, -0.0015916802221909165, -0.017622480168938637, 0.013165432959794998, -0.00520103145390749, 0.0022028100211173296, -0.0036856355145573616, -0.007988400757312775, -0.025823447853326797, -0.004474190063774586, -0.028662243857979774, -0.0015051106456667185, 0.008098112419247627, -0.015798518434166908, 0.006702713668346405, 0.005365599412471056, -0.02187381684780121, -0.008831811137497425, 0.013117433525621891, -0.02674228511750698, 0.012013457715511322, -0.002355378121137619, -0.007007849868386984, -0.007885545492172241, 0.011506039649248123, -0.0442139096558094, -0.0008301251218654215, 0.022847510874271393, 0.011965458281338215, 0.015743663534522057, -0.006538145709782839, 0.020570987835526466, -0.00104140629991889, -0.0012205452658236027, 0.0019302443834021688, 0.015757376328110695, -0.002039956394582987, -0.002310807816684246, -0.06050613522529602, 0.00858495943248272, -0.0072889868170022964, 0.015126533806324005, 0.01139632798731327, -0.03269415721297264, -0.0022850940003991127, -0.005773590877652168, 0.006099298130720854, 0.024260051548480988, -0.019446441903710365, -0.00027599409804679453, -0.020694414153695107, -0.006500432267785072, -0.0270028505474329, -0.02061212994158268, 0.009483225643634796, -0.019391585141420364, 0.017759619280695915, -0.007604408543556929, -0.0033342144452035427, 0.004391905851662159, 0.007755262777209282, 0.04330878704786301, 0.008091255091130733, 0.025905732065439224, -0.027386842295527458, 0.02605658583343029, -0.006322150584310293, -0.015880802646279335, 0.006548431236296892, 0.0006951279938220978, -0.0010405491339042783, 0.008228395134210587, 0.0075015537440776825, -0.03540952876210213, -0.0009342657285742462, 0.012541445903480053, -0.0004343478649388999, 0.002919366117566824, -0.00613701157271862, -0.002437662100419402, 0.03938658535480499, -0.03132275864481926, -0.01948758400976658, -0.03927687555551529, -0.01158832386136055, -0.025590309873223305, 0.01966586522758007, 0.014550546184182167, 0.03513524681329727, -0.0015059678116813302, -0.03872831538319588, -0.032666727900505066, 0.005849017761647701, -0.018129898235201836, 0.014893395826220512, 0.008221538737416267, -0.008351821452379227, 0.0029605079907923937, 0.04089512676000595, -0.009483225643634796, 0.0016148225404322147, -0.008283250965178013, 0.029485084116458893, -0.0012368307216092944, -0.05699535086750984, -0.0124043058604002, 0.002338235732167959, -0.036177512258291245, -0.017457911744713783, -0.008276394568383694, 0.016113940626382828, 0.014989393763244152, 0.01359742321074009, -0.012706014327704906, -0.01903502084314823, -0.0071038478054106236, -0.01697792299091816, 0.02774340659379959, 0.014824825339019299, -0.013165432959794998, -0.0017862474778667092, 0.015620237216353416, 0.016264794394373894, -0.003953058272600174, -0.025206318125128746, 0.018335606902837753, 0.032721586525440216, 0.010059213265776634, -0.02424633875489235, -0.005379313603043556, 0.0029365085065364838, 0.007110705133527517, 0.004470761399716139, 0.01671735756099224, -0.004237623419612646, -0.007892402820289135, 0.03165189549326897, 0.013521996326744556, 0.024081770330667496, -0.0049198949709534645, -0.015990514308214188, -0.003966772463172674, 0.007542695850133896, 0.011005478911101818, -0.012904866598546505, -0.025466883555054665, 0.021709250286221504, 0.022778941318392754, -0.00316450372338295, -0.02986907586455345, 0.003474782919511199, 0.019556153565645218, -0.008927809074521065, 0.010079784318804741, 0.003190217539668083, -0.015400812961161137, -0.02830567955970764, 0.010038642212748528, 0.009613508358597755, 0.036863211542367935, 0.011835175566375256, -0.009613508358597755, 0.035985514521598816, -0.0003737062797881663, 0.0013208289165049791, -0.01258944533765316, 0.002855938859283924, -0.005300458054989576, -0.0007585551938973367, -0.012706014327704906, -0.0052524590864777565, -0.019281873479485512, 0.0012908295029774308, -0.002468518679961562, 0.015702521428465843, 0.02899138070642948, -0.020570987835526466, 0.09117062389850616, 0.027907975018024445, -0.0320633128285408, 0.006500432267785072, -0.012267165817320347, 0.026166297495365143, 0.00615415396168828, 0.006843282375484705, -0.013316286727786064, -0.014715113677084446, 0.01678592711687088, -0.0004159196687396616, -0.018678458407521248, 0.012884295545518398, 0.0015676807379350066, -0.013919701799750328, 0.01250030379742384, 0.004583901725709438, 0.002007385715842247, -0.0010122640524059534, 0.005170175340026617, -0.01747162640094757, -0.0039770579896867275, 0.0055850232020020485, -0.026015443727374077, -0.01754019595682621, 0.024698900058865547, 0.03615008294582367, -0.0007611265755258501, -0.03713748976588249, 0.024026915431022644, -0.015606523491442204, -0.035546667873859406, -0.016840782016515732, -0.010806625708937645, 0.006209010258316994, -0.02805882878601551, -0.02718113362789154, 0.009167803451418877, 0.012328878976404667, -0.003541638609021902, 0.026605146005749702, -0.032721586525440216, -0.021133262664079666, 0.022079527378082275, 0.022504661232233047, 0.010984907858073711, -0.01973443478345871, -0.004364477936178446], "8040e9e3-de8d-45d1-870e-8b2f0c44f4bc": [-0.0005096535314805806, -0.001755898934789002, 0.014796556904911995, -0.02629590779542923, 0.009680435992777348, 0.029075371101498604, -0.013924567960202694, -0.027018021792173386, -0.007520901970565319, -0.02246733196079731, 0.015559546649456024, 0.02155446819961071, 0.02576453797519207, -0.016540534794330597, -0.006580789107829332, 0.006410479079931974, 0.033026568591594696, -0.005647488869726658, 0.0033840651158243418, 0.0031575525645166636, -0.022726204246282578, -0.008277079090476036, -0.001456152880564332, 0.01261658500880003, -0.021513594314455986, -0.004366755485534668, 0.027603888884186745, -0.00992568302899599, -0.014401436783373356, 0.023421069607138634, 0.007881959900259972, -0.018502509221434593, -0.030219854786992073, 0.0074868397787213326, -0.005661113653331995, 0.013229702599346638, 0.012078404426574707, -0.003828575136139989, 0.0015498235588893294, -0.018339009955525398, 0.018243636935949326, 0.02735864371061325, 0.007166656665503979, -0.012255528010427952, -0.01622716337442398, 0.03569703549146652, 0.00383879360742867, -0.014919180423021317, -0.02246733196079731, 0.00030166207579895854, -0.012057967483997345, -0.0015762216644361615, -0.027140645310282707, 0.011199603788554668, 0.008413327857851982, 0.001256038318388164, 0.00957143772393465, 0.0024643896613270044, 0.019115624949336052, -0.008270267397165298, 0.0007638416136614978, -0.0009315971983596683, -0.007691211998462677, -0.015573171898722649, -0.01940174773335457, -0.03278132155537605, -0.01575029455125332, -0.0032427075784653425, -0.01055923756211996, -0.022222084924578667, 0.052074071019887924, 0.0310373455286026, 0.006049421150237322, -0.03316281735897064, -0.0006718740332871675, -0.019279124215245247, -0.032754071056842804, -0.02358456701040268, 0.0027419955004006624, -0.002677277661859989, 0.023897938430309296, -0.011124667711555958, -0.016744906082749367, 0.008120394311845303, 0.024456555023789406, 0.02532854489982128, 0.018884003162384033, 0.004700563848018646, 0.009442001581192017, -0.01569579541683197, 0.013291014358401299, 0.011642410419881344, 0.01876137964427471, 0.02538304403424263, 0.01719452627003193, 0.009557812474668026, -0.003174583660438657, 0.010640986263751984, -0.013168390840291977, -0.007684399839490652, -0.0012577413581311703, -0.007854710333049297, -0.009264878928661346, -0.010484300553798676, -0.011233665980398655, -0.01407444104552269, -6.812410902057309e-06, -0.01660865917801857, 0.0020369109697639942, 0.015505047515034676, -0.02188146486878395, 0.03428005427122116, -0.009006007574498653, -0.010504737496376038, 0.001216866890899837, 0.0030059763230383396, 0.03370780870318413, -0.0209958516061306, -0.004748250357806683, -0.02665015310049057, 0.005892735440284014, 0.003087725257501006, 0.05526227876543999, -0.007452777586877346, 0.016390660777688026, -0.005674738436937332, -0.005068433936685324, -0.017303524538874626, 0.014891930855810642, 0.0019023658242076635, 0.01002786960452795, 0.008079519495368004, 0.006965690292418003, 0.022957826033234596, -0.0219359640032053, 0.0060289837419986725, -0.0155186727643013, 0.015055428259074688, -0.0015779247041791677, -0.019183749333024025, 0.008202143013477325, 0.026418529450893402, 0.008781197480857372, -0.011846782639622688, -0.007445965427905321, 0.050248343497514725, 0.004053384531289339, 0.017943890765309334, 0.014510435983538628, 0.006311698816716671, 0.0046392520889639854, -0.01775314286351204, -0.04169195517897606, -0.010715922340750694, 0.012528023682534695, 0.01313432864844799, -0.0006344057619571686, 0.03283582255244255, -0.01990586519241333, 0.0030706943944096565, 0.01482380647212267, 0.03836749866604805, 0.001156406826339662, -0.005855267401784658, 0.0017422741511836648, 0.030247105285525322, 0.011751409620046616, -0.028666626662015915, -0.034552548080682755, -0.010007431730628014, 0.01061373669654131, 0.04283644258975983, -0.01767139509320259, 0.01985136605799198, -0.00934662763029337, 0.008215767331421375, 0.00992568302899599, 0.00446894159540534, -0.005845048930495977, -0.02761751413345337, 0.027454016730189323, 0.006904378533363342, -0.012337276712059975, 0.020082987844944, -0.030437853187322617, -0.012391775846481323, 0.03210008144378662, 0.028285130858421326, 0.01331145130097866, 0.005575958639383316, 0.0034981730859726667, 0.008263454772531986, -0.01517805177718401, -0.003024710575118661, -0.6225998997688293, -0.014265188947319984, 0.008903820998966694, -0.004097665194422007, 0.007956895977258682, 0.01348857395350933, 0.0014152784133329988, 0.003814950119704008, -0.013672509230673313, 0.037114016711711884, 0.01605004072189331, -0.0012901003938168287, -0.0127937076613307, -0.007575401104986668, -0.010184554383158684, -0.02880287356674671, -0.004690344911068678, -0.008243017829954624, -0.013870068825781345, -0.005075246095657349, -0.024156808853149414, 0.0075617763213813305, 0.005347742699086666, 0.012623397633433342, 0.0017013996839523315, -0.012705146335065365, 0.019388122484087944, 0.007078095339238644, -0.007745711598545313, 0.043354183435440063, -0.03245432674884796, 0.011015668511390686, 0.01481018215417862, 0.0008260048343800008, 0.03324456512928009, -0.02596891112625599, -0.016159038990736008, 0.018216386437416077, -0.007459590211510658, 0.032263580709695816, -0.022044962272047997, -0.009087756276130676, 0.03166408836841583, 0.02314857207238674, -0.012902706861495972, -0.0033704403322190046, 0.017657769843935966, 0.014128940179944038, -0.0057701123878359795, -0.01157428603619337, 0.005875704810023308, -0.013570322655141354, -0.016145413741469383, -0.011567474342882633, 0.009046882390975952, -0.01149934995919466, 0.019824115559458733, -0.015028178691864014, 0.0010388926602900028, 0.0035833283327519894, 0.010995231568813324, 0.011117855086922646, -0.00499009108170867, -0.03643277287483215, -0.05041184276342392, 0.012848207727074623, -0.02432030811905861, -0.003263144986703992, 0.0007996067288331687, -0.008481452241539955, 0.00846782699227333, -0.010225429199635983, -0.0022634235210716724, -0.003205239539965987, 0.007514089345932007, 0.03784975782036781, 0.025996161624789238, -0.007813835516571999, 0.007411903236061335, 0.014537685550749302, -0.00597789091989398, 0.001366739976219833, -0.005429491866379976, -0.029674863442778587, 0.03752275928854942, 0.00396822951734066, -0.013924567960202694, -0.01808013953268528, -0.004387192893773317, -0.004124914761632681, 0.002108441200107336, 0.018543383106589317, -0.020341860130429268, -0.026691026985645294, 0.012759646400809288, 0.05885923281311989, -0.004983278922736645, 0.012555273249745369, 0.009707685559988022, -0.01996036432683468, -0.034934043884277344, -0.01810738816857338, 0.02234470844268799, 0.017943890765309334, 0.029375117272138596, 0.019742367789149284, -0.03534279018640518, -0.01195578183978796, 0.018884003162384033, -0.0026312938425689936, -0.013979068025946617, -0.00976218469440937, -0.02211308665573597, -0.010300365276634693, 0.010021056979894638, -0.025219546630978584, 0.004060197155922651, 0.01177865918725729, 0.00976218469440937, -0.007807023357599974, -0.03245432674884796, -0.0227670781314373, 0.015573171898722649, 0.018625132739543915, 0.016199912875890732, 0.007684399839490652, 0.013876881450414658, -0.01015730481594801, 0.002183377742767334, -0.006362792104482651, -0.005351149011403322, 0.0022532050497829914, 0.0048231869004666805, -0.00992568302899599, 0.03763175755739212, -0.00466650165617466, 0.02373444102704525, -0.022685328498482704, 0.01213290449231863, -0.0474688820540905, -0.002168049803003669, 0.008951508440077305, 0.02682727575302124, -0.019510746002197266, 0.008515513502061367, -0.026922648772597313, -0.011758221313357353, 0.00041938904905691743, 0.016881154850125313, -0.01038211490958929, -0.02058710716664791, -0.005524865351617336, 0.007221155799925327, 0.016717657446861267, -0.012889081612229347, -0.0043326932936906815, 0.013318263925611973, -0.033844057470560074, -0.016949279233813286, -0.02579178847372532, -0.004864061716943979, -0.01622716337442398, -0.012964018620550632, 0.01354307308793068, -0.01648603565990925, -0.008181706070899963, -0.02122747339308262, 0.02122747339308262, -0.030110856518149376, -0.011063355952501297, -0.01731714978814125, -0.013727008365094662, 0.00043982628267258406, 0.02064160630106926, 0.0010193070629611611, 0.0006067303474992514, -0.012630210258066654, -0.0006361088599078357, -0.02317582257091999, 0.005814393050968647, 0.007602650672197342, 0.020723354071378708, -0.012711958959698677, -0.02526042051613331, 0.04201894998550415, -0.0023145165760070086, 0.035560786724090576, 0.008045457303524017, -0.026064284145832062, 0.008917446248233318, -0.023393819108605385, 0.010116430930793285, -0.02761751413345337, -0.0057701123878359795, -0.021976837888360023, -0.01331145130097866, -0.003276769770309329, -0.006229950115084648, 0.011860407888889313, 0.021990463137626648, 0.019973989576101303, 0.0069963461719453335, 0.0025750913191586733, -0.0049662478268146515, 0.004598377272486687, -0.0173988975584507, 0.006846473086625338, -0.02718152105808258, 0.01775314286351204, 0.009578250348567963, -0.014973679557442665, -0.003627608995884657, 0.0033823621924966574, -0.01719452627003193, -0.0030536632984876633, 0.02964761294424534, 0.01678578183054924, 0.024742677807807922, -0.004799343645572662, -0.015232550911605358, 0.011771846562623978, 0.01341363787651062, 0.01775314286351204, -0.013495386578142643, 0.009489689022302628, 0.023216696456074715, 0.01993311569094658, 0.021690716966986656, 0.00978943519294262, -0.021717967465519905, -0.005170620046555996, 0.03387130796909332, -0.020246485248208046, 0.0004351427487563342, 0.04270019382238388, 0.009741747751832008, 0.02579178847372532, -0.002621075138449669, 0.03793150559067726, 0.0016528612468391657, -0.0010627361480146646, 0.0016085805837064981, 0.015028178691864014, -0.03716851398348808, 0.025846287608146667, 0.007963708601891994, 0.0292116180062294, -0.005422679241746664, -0.024551929906010628, 0.013583947904407978, 0.0024677959736436605, 0.012575711123645306, 0.00923081673681736, -0.005245556589215994, 0.0347432978451252, -0.007963708601891994, 0.017276274040341377, 0.007418715860694647, 0.00869944877922535, 0.019796866923570633, 0.010961169376969337, 0.007330154534429312, 0.019565245136618614, -0.008576825261116028, 0.02208583615720272, -0.014851056039333344, 0.0003676573105622083, -0.01394500583410263, -0.0044110361486673355, -0.019824115559458733, 0.018952127546072006, -0.019537994638085365, 0.0014076144434511662, -0.031255342066287994, -0.0006608038675040007, -0.008835697546601295, -0.0005833127070218325, 0.013032142072916031, -0.0017363133374601603, 0.025083297863602638, -0.01922462321817875, -0.02013748697936535, 0.023802563548088074, 0.0021254722960293293, -0.006056233309209347, -0.0010380411986261606, -0.018570633605122566, 0.00369232683442533, 0.003818356432020664, 0.021159349009394646, 0.008195330388844013, 0.00552145903930068, -0.008311141282320023, 0.0014246454229578376, 0.008556388318538666, 0.005804174114018679, 0.03133708983659744, 5.9129601140739396e-05, -0.01607728935778141, 0.002949774032458663, 0.016349786892533302, 0.017385272309184074, -0.02385706454515457, -0.027249643579125404, 0.02396606281399727, -0.017535146325826645, -0.019415371119976044, -0.02114572376012802, -0.006294667720794678, -0.02888462319970131, -0.003511797869578004, -0.006458165589720011, -0.01972874253988266, -0.015300675295293331, -0.007616275455802679, -0.005082058720290661, -0.012391775846481323, -0.006526289973407984, 0.011628786101937294, 0.016417911276221275, -0.00396822951734066, -0.009619124233722687, 0.009837121702730656, 0.005238743964582682, 0.07706199586391449, 0.01628166250884533, 0.012562085874378681, 0.015491423197090626, -0.012105654925107956, -0.007050845306366682, -0.03332631662487984, -0.02776738815009594, 0.04610639810562134, 0.014728432521224022, -0.02850312739610672, 0.0021935964468866587, 0.014210689812898636, -0.004608596209436655, 0.013052579946815968, 0.005265993997454643, -0.0059540471993386745, -0.02125472202897072, -0.007023595739156008, 0.010491113178431988, -2.8793081582989544e-05, -0.007091720122843981, 0.03610577806830406, 0.007527714129537344, 0.026132408529520035, 0.033435314893722534, 0.020886853337287903, 0.008229392580688, 0.0036446398589760065, -0.025696415454149246, -0.03387130796909332, -0.002311110496520996, 0.005330711603164673, 0.017589645460247993, -0.029429616406559944, 0.038857992738485336, -0.00023268641962204129, -0.016063665971159935, -0.01663590781390667, -0.001919396803714335, -0.018270887434482574, 0.024006936699151993, -0.008324766531586647, -0.007718461565673351, 0.02188146486878395, -0.02720876969397068, -0.008154456503689289, 0.03220907971262932, -0.008399702608585358, 0.006567164324223995, 0.01161516085267067, 0.015218926593661308, -0.01517805177718401, 0.013965442776679993, 0.013107079081237316, -0.018475258722901344, -0.012003468349575996, -0.020341860130429268, -0.032754071056842804, -0.01459218468517065, -0.021036725491285324, -0.0255601666867733, -0.010198179632425308, -0.02447018027305603, -0.02122747339308262, -0.043299686163663864, -0.02340744435787201, -0.006243574898689985, -0.01032080315053463, -0.004850436933338642, -0.011165541596710682, -0.03027435578405857, -0.03436180204153061, 0.009060506708920002, 0.020859602838754654, 0.026432154700160027, -0.00437356811016798, 0.0027419955004006624, 0.007459590211510658, 0.007793398108333349, -0.006621663458645344, -0.02226295880973339, 0.007616275455802679, -0.011812720447778702, 0.006873722653836012, -0.004308850038796663, -0.021445469930768013, 0.00607326440513134, -0.0034181273076683283, 0.02885737270116806, -3.885203113895841e-06, -0.02081872895359993, -9.691718878457323e-05, 0.0062606059946119785, 0.023080449551343918, 0.01937449723482132, 0.01372019574046135, -0.023039573803544044, 0.024361182004213333, -0.03749551251530647, 0.02125472202897072, -0.04447142034769058, -0.013325076550245285, -0.009421564638614655, 0.01975599303841591, 0.028230631723999977, -0.014851056039333344, -0.008733510971069336, -0.005930203944444656, -0.020682480186223984, 0.008134018629789352, -0.0054567414335906506, -0.02173159085214138, -0.022903326898813248, -0.005024153273552656, -0.026922648772597313, 0.013256952166557312, 0.017099151387810707, 0.004772094078361988, -0.009850746020674706, 0.003828575136139989, -0.003312534885481, 0.027454016730189323, 0.010136867873370647, 0.0019790055230259895, 0.012834582477807999, 0.013686133548617363, -0.017153650522232056, -0.045125409960746765, -0.013788320124149323, 0.004285006783902645, 0.005930203944444656, -0.01952436938881874, -0.019892239943146706, -0.013393200002610683, -0.010457050986588001, -0.011301790364086628, 0.003590140724554658, -0.0066727567464113235, 0.00952375028282404, -0.04229144752025604, 0.011696909554302692, 0.014496810734272003, -0.010606924071907997, 0.00258360686711967, -0.03245432674884796, -0.023393819108605385, -0.003981854300945997, 0.019864991307258606, 0.02046448364853859, -0.019837740808725357, -0.019456246867775917, -0.04163745790719986, -0.033489812165498734, -0.023829814046621323, -0.017889391630887985, -0.003651452250778675, 0.007268842775374651, 0.05147457867860794, 0.038939740508794785, 0.01607728935778141, 0.01878863014280796, 0.03220907971262932, 0.011472100391983986, 0.0014851056039333344, -0.007473214995115995, -0.009837121702730656, -0.01389731839299202, 0.008978758007287979, -0.0029599927365779877, -0.0035731096286326647, -0.0061073265969753265, 0.006577382795512676, 0.009850746020674706, -0.004714188631623983, -0.003702545538544655, 0.0061141387559473515, 0.0015285346889868379, -0.021649843081831932, -0.047632377594709396, 0.006223137490451336, 0.03847649693489075, 0.004928779322654009, -0.002496748697012663, -0.027958136051893234, 0.005044590216130018, 0.022358333691954613, -0.0015012851217761636, 0.0329720713198185, 0.009823496453464031, 0.021677091717720032, 0.0009307456784881651, 0.013250139541924, 0.022535456344485283, -0.0044212546199560165, -0.013679321855306625, -0.022903326898813248, -0.03874899446964264, -0.005538490135222673, 0.011111042462289333, 0.009857558645308018, 0.016922028735280037, -0.0031933176796883345, -0.006652319338172674, 0.004741438198834658, 0.023189447820186615, -0.025015173479914665, -0.01846163347363472, 0.009210379794239998, -0.025928037241101265, -0.0006633585435338318, -0.04523440822958946, -0.001165773835964501, 0.011254102922976017, -0.01590016670525074, 0.0026415123138576746, -0.004128321073949337, 0.02132284641265869, -0.026214158162474632, -0.024456555023789406, 0.006723849568516016, -0.011492537334561348, 0.009135443717241287, 0.025015173479914665, 0.00531368050724268, 0.014973679557442665, 0.017984764650464058, -0.009871183894574642, -0.00893788319081068, -0.010709110647439957, -0.0011359695345163345, 0.0011206415947526693, 0.032917570322752, -0.005483991000801325, -0.02079147845506668, -0.004819781053811312, -0.010858983732759953, 0.012746021151542664, -0.021063975989818573, 0.023843439295887947, 0.0011487428564578295, 0.0006616554455831647, -0.0292116180062294, -0.019156500697135925, -0.011288165114820004, 0.0035220165736973286, -0.013979068025946617, 0.023489193990826607, 0.0032205672468990088, 0.003603765508159995, -0.013120703399181366, 0.030519600957632065, -0.013345513492822647, 0.011962593533098698, 0.002387750195339322, 0.0047380318865180016, -0.004274787846952677, -0.0013531151926144958, -0.010232241824269295, 0.0020113643258810043, 0.013372763060033321, 0.012705146335065365, -0.035261038690805435, 0.00934662763029337, 0.011458475142717361, 0.01858425699174404, -0.012098842300474644, -0.009884808212518692, -0.01610453985631466, 0.027508515864610672, -0.01014368049800396, -0.008590450510382652, 0.004635845776647329, -0.015545922331511974, 0.022903326898813248, -0.018979378044605255, -0.015150802209973335, -0.003040038514882326, -0.011111042462289333, 0.000551805307622999, 0.0010865795193240047, 0.003350003156810999, -0.0075617763213813305, 0.005501022096723318, 0.009830309078097343, -0.01711277663707733, -0.02323032170534134, -0.004915154539048672, 0.020341860130429268, -0.019537994638085365, -0.00921719241887331, -0.012521211989223957, -0.02652752958238125, 0.0118944700807333, -0.007534526754170656, -0.0127937076613307, 0.0017243915935978293, 0.033026568591594696, -0.012378150597214699, 0.02061435580253601, 0.010239053517580032, 0.020191986113786697, -0.04114696383476257, 0.015191677026450634, -0.001944943331182003, -0.0066795689053833485, 0.01793026551604271, 0.005126339383423328, -0.04321793466806412, -0.02614603377878666, 0.024279432371258736, -0.0020011458545923233, 0.0064990404061973095, 0.005136557854712009, 0.018502509221434593, 0.030437853187322617, -0.0008966836030595005, -0.026691026985645294, -0.011451663449406624, 0.005637270398437977, -0.0017371647991240025, 0.0010763609316200018, 0.020396359264850616, 0.00030442961724475026, 0.006175450515002012, 0.015191677026450634, 0.0025308106560260057, -0.006638694554567337, -0.01587291806936264, -0.01775314286351204, -0.006349167320877314, -0.019333623349666595, 0.001594955800101161, 0.010095993056893349, -0.014115315861999989, -0.04354493319988251, -0.01876137964427471, 0.02287607640028, -0.008917446248233318, 0.012180591002106667, 0.020505357533693314, -0.004104477819055319, -0.02399331144988537, 0.013774694874882698, -0.01142441388219595, -0.04379018023610115, -0.02447018027305603, -0.024906175211071968, -0.03027435578405857, -0.00557255232706666, -0.010293553583323956, 0.03509754315018654, 0.006246981211006641, -0.009952932596206665, -0.026255032047629356, -0.019715117290616035, -0.03207283094525337, -0.005599801894277334, -0.014483186416327953, 0.025928037241101265, 0.01784851774573326, 0.03877624496817589, 0.006860097870230675, 0.019033877179026604, -0.014019941911101341, 0.026173284277319908, -0.024483805522322655, -0.017439773306250572, -0.015191677026450634, -0.023339319974184036, 0.03695051744580269, -0.03335356339812279, -0.047659628093242645, 0.003089428413659334, 0.016499659046530724, -0.011022481136023998, -0.005150182638317347, 0.015736669301986694, 0.004775500390678644, 0.003077506786212325, -0.0009682139498181641, -0.011908094398677349, 0.015818418934941292, 0.0078002107329666615, 0.0046596890315413475, -0.015763919800519943, 0.01142441388219595, 0.01775314286351204, -0.008018207736313343, -0.015804793685674667, 0.01564129628241062, 0.022371958941221237, -0.021826965734362602, 0.01722177490592003, -0.022480957210063934, 0.0020522389095276594, -0.016295287758111954, -0.010586487129330635, 0.004329287447035313, 0.008985570631921291, 0.002660246565937996, 0.03068310022354126, -0.006819223519414663, -0.0014323093928396702, -0.014401436783373356, 0.020246485248208046, 0.021063975989818573, 0.004612002521753311, 0.03188208490610123, -0.02502879872918129, -0.02214033529162407, -0.010818108916282654, 0.016799405217170715, 0.003879668191075325, -0.01463305950164795, -0.024987924844026566, -0.004806155804544687, -0.033816806972026825, -0.005824611522257328, 0.010170930065214634, -0.003252926282584667, 0.01810738816857338, -0.01840713433921337, 0.012344089336693287, -0.008311141282320023, -0.0016860717441886663, -0.004267975687980652, -0.02756301499903202, -0.026513904333114624, -0.009857558645308018, 0.014905555173754692, -0.03624202683568001, -0.018529757857322693, 0.03610577806830406, -0.0274403914809227, 0.00464606424793601, 0.2077512890100479, -0.0008558091358281672, -0.001104462193325162, 0.03795875608921051, 0.008345203474164009, -0.03207283094525337, 0.020082987844944, -0.007112157065421343, 0.01033442746847868, 0.019251873716711998, 0.0055418964475393295, 0.0055418964475393295, -0.01899300143122673, -0.0005441413377411664, 0.015287050977349281, -0.01784851774573326, -0.03035610355436802, -0.01934724673628807, -0.01772589422762394, 0.009659999050199986, 0.01622716337442398, -0.003501579398289323, -0.014088066294789314, -0.0029174149967730045, 0.023284820839762688, 0.02452467940747738, -0.00253592012450099, 0.004731219727545977, 0.01840713433921337, 0.023421069607138634, -0.02323032170534134, -0.012173778377473354, 0.019592493772506714, -0.009952932596206665, -0.01566854491829872, 0.0017158760456368327, -0.0007727828924544156, -0.015859292820096016, 0.007711649406701326, 0.01336595043540001, -0.006315105129033327, -0.015654921531677246, 0.0018086951458826661, -0.009973369538784027, 0.02779463678598404, -0.01441506203263998, -0.007670775055885315, -0.004594971425831318, 0.008801635354757309, 0.045806653797626495, -0.01937449723482132, 0.023243946954607964, 0.011315414682030678, 0.014156190678477287, -0.014891930855810642, -0.021690716966986656, -0.006737474352121353, -0.004993497394025326, -0.02517867088317871, 0.013727008365094662, -0.012657459825277328, 0.010579674504697323, 0.000307197158690542, 0.022004088386893272, -0.027644764631986618, 0.009551000781357288, -0.022889701649546623, 0.020396359264850616, -0.00014699905295856297, -0.00044791604159399867, -0.00569858169183135, -0.009680435992777348, -0.0219632126390934, -0.006025577429682016, -0.003566297236829996, -0.012044343166053295, -0.005238743964582682, 0.0328085720539093, 0.036787018179893494, 0.00688394159078598, 0.007452777586877346, 0.023366570472717285, -0.012820958159863949, -0.00905369408428669, 0.00527961878105998, 0.008208955638110638, 0.03904873877763748, -0.01335232611745596, 0.016363412141799927, -0.0191428754478693, -0.01851613260805607, 0.011874032206833363, -0.01876137964427471, -0.0040091038681566715, -0.009905246086418629, -0.018625132739543915, 0.004833405837416649, 0.027522141113877296, 0.0006701709353365004, -0.015477797947824001, -0.01996036432683468, 0.056406762450933456, 0.0039001053664833307, 0.025778163224458694, -0.007091720122843981, -0.01423793938010931, -0.01161516085267067, 0.024102309718728065, -0.015436923131346703, 0.012330464087426662, -0.012180591002106667, -0.034879546612501144, 0.008801635354757309, 0.017589645460247993, 0.013611197471618652, 0.03141884133219719, 0.02111847512423992, -0.002745401579886675, -0.01553229708224535, -0.02302595041692257, 0.02264445461332798, -0.019074751064181328, -0.008120394311845303, 0.011390351690351963, -0.02244008146226406, -0.03408930450677872, -0.013747445307672024, 0.005654301028698683, -0.022562704980373383, -0.029702112078666687, 0.019074751064181328, -0.005409054458141327, 0.0012245308607816696, -0.021213848143815994, 0.010375302284955978, 0.0037740757688879967, 0.012139716185629368, -0.01114510465413332, -0.01388369407504797, 0.005957453511655331, 0.002963398816064, 0.008236205205321312, 0.0041691954247653484, -0.003627608995884657, 0.01161516085267067, 0.002896977821364999, 0.006928222253918648, 0.0210231002420187, -0.018121013417840004, -0.019183749333024025, 0.005116120912134647, 0.005650895182043314, 0.0010610329918563366, 0.017180901020765305, 0.02697714790701866, -0.022426458075642586, -0.0246200542896986, -0.0329720713198185, 0.0227670781314373, -0.007793398108333349, -0.04161020740866661, -0.020682480186223984, 0.03784975782036781, 0.017616895958781242, -0.012371338903903961, 0.006461571902036667, -0.17319874465465546, 0.008249829523265362, 0.013386387377977371, 0.010961169376969337, -0.006635288242250681, 0.0274131428450346, 0.022153960540890694, -0.010722734965384007, -0.028584877029061317, -0.005361367482692003, 0.015777545049786568, -0.010770422406494617, -0.028721125796437263, -0.00670681893825531, 0.006086889188736677, -0.006291261874139309, -0.008753947913646698, 0.023952437564730644, 0.03621477633714676, -0.007772961165755987, 0.013502199202775955, -0.017099151387810707, 0.005906360223889351, -0.013795132748782635, 0.011962593533098698, 0.002973617520183325, -0.022126711905002594, 0.04798662289977074, 0.010586487129330635, -0.026745526120066643, -0.023012325167655945, -0.00720753101631999, 0.01972874253988266, 0.01884312927722931, -0.0010950950672850013, 0.011656035669147968, 0.004267975687980652, -0.001806991989724338, -0.009755373001098633, 0.014837431721389294, 0.012773270718753338, 0.0013982474338263273, 0.017289899289608, -0.0024132966063916683, 0.0036718896590173244, 0.013570322655141354, 0.023952437564730644, 0.005105901975184679, 0.020696105435490608, 0.0024694991298019886, 0.02385706454515457, -0.0019108813721686602, -0.01086579542607069, -0.01693565398454666, 0.017003778368234634, -0.00023034465266391635, 0.01793026551604271, 0.025669164955615997, -0.008556388318538666, -0.02532854489982128, -0.0077252741903066635, -0.014905555173754692, -0.012187403626739979, 0.009700873866677284, -0.008563200943171978, -0.03477054461836815, -0.026486653834581375, 0.0062708244659006596, -0.01394500583410263, 0.009728123433887959, -0.00019340860308147967, 0.004690344911068678, 0.003225676715373993, 0.008529138751327991, 0.018352635204792023, 0.0036582648754119873, -0.03793150559067726, -1.9392753074498614e-06, 0.0365145243704319, -0.006206106394529343, 0.03332631662487984, 0.007330154534429312, 0.011540224775671959, 0.002699417993426323, -0.021840589120984077, 0.003944386262446642, 0.011254102922976017, 0.00019042818166781217, -0.010954356752336025, 0.018952127546072006, 0.027167895808815956, -0.01876137964427471, 0.030792098492383957, -0.012609773315489292, 0.017535146325826645, 0.01607728935778141, 0.016826655715703964, -0.009312566369771957, 0.016772156581282616, -0.01183997094631195, -0.0031677712686359882, 0.015287050977349281, -0.035642534494400024, -0.0036957329139113426, 0.031909335404634476, 0.03166408836841583, 0.033053819090127945, -0.005296649411320686, 0.03806775435805321, -0.005984703078866005, -0.03139159083366394, 0.025928037241101265, 0.02517867088317871, 0.00775933638215065, -0.01569579541683197, 0.045833900570869446, 0.007432340644299984, -0.018543383106589317, -0.0015242770314216614, 0.0038456059992313385, 0.05580727010965347, -0.03861274570226669, -0.026745526120066643, -0.009237629361450672, -0.009189942851662636, -0.01266427244991064, -0.1059466153383255, -0.0137065714225173, 0.029838360846042633, -0.0011121261632069945, -0.009503313340246677, 0.0016256115632131696, -0.011608348228037357, 0.014687558636069298, -0.0016375333070755005, 0.022508205845952034, -0.025492042303085327, -0.01271877158433199, 0.010824921540915966, -0.012419025413691998, 0.00915588065981865, -0.007623088080435991, -0.012296401895582676, -0.027140645310282707, -0.003702545538544655, 0.0292661190032959, 0.01179228350520134, -0.01498730480670929, 0.015327924862504005, -0.0018648975528776646, -0.01919737458229065, -0.01904750056564808, -0.035588037222623825, -0.005633864086121321, 0.015559546649456024, 0.005766706075519323, 0.034934043884277344, -0.017412522807717323, 0.033489812165498734, -0.025069672614336014, -0.007854710333049297, -0.01784851774573326, -0.005449928808957338, -0.04084721580147743, 0.03547903522849083, -0.012357713654637337, -0.011567474342882633, 0.005460147280246019, 0.000903495994862169, -0.039648231118917465, -0.004189632833003998, -0.002144206315279007, 0.006454759743064642, 0.02723602019250393, 0.014701182954013348, -0.007888772524893284, -0.025165047496557236, -0.016526909545063972, -0.01848888397216797, -0.028639376163482666, 0.046978387981653214, 0.00022119047935120761, 0.013638447038829327, 0.012214653193950653, -0.02122747339308262, 0.006482009310275316, -0.019646992906928062, 0.00703040836378932, -0.016308913007378578, 0.015246176160871983, 0.019715117290616035, 0.017657769843935966, -0.01226233970373869, 0.005971078295260668, 0.007187093608081341, -0.00038064346881583333, -0.004669907968491316, 0.02049173228442669, -0.02561466582119465, -0.011356289498507977, -0.02535579353570938, -0.0011155323591083288, -5.1758357585640624e-05, -0.0155186727643013, 0.0040840404108166695, 0.016172664240002632, -0.015082677826285362, -0.016894780099391937, 0.014401436783373356, -0.0346887968480587, 0.01061373669654131, -0.003361924784258008, 0.00876076053828001, 0.0077252741903066635, 0.01802564039826393, -0.04482566565275192, 0.007984145544469357, 0.01535517442971468, 0.024456555023789406, 0.012105654925107956, 0.005507834255695343, 0.003184802131727338, -0.019074751064181328, -0.004387192893773317, 0.008549575693905354, -0.0061924816109240055, -0.01643153466284275, -0.0015242770314216614, -0.05046634003520012, 0.0024933423846960068, 0.015777545049786568, 0.017685018479824066, -0.007330154534429312, -0.03812225162982941, 0.0040840404108166695, -0.002610856667160988, 0.007262030150741339, -0.006144794635474682, -0.013229702599346638, 0.004758469294756651, -0.020341860130429268, -0.018747756257653236, -0.02338019572198391, -0.040383972227573395, 0.013890506699681282, -0.00934662763029337, 0.02449743077158928, -0.005289837252348661, 0.002587013179436326, 0.0019040688639506698, 0.020273735746741295, 0.03842199966311455, -0.008106769062578678, 0.02953861467540264, -0.02673190087080002, 0.023816188797354698, -0.008031832985579967, -0.018175512552261353, 0.014319688081741333, -0.008365640416741371, -0.005088870879262686, 0.0018223199294880033, 0.001482550986111164, -0.03321731835603714, -0.008610887452960014, 0.02252183109521866, 0.016199912875890732, 0.008617700077593327, 0.0011342664947733283, 0.002474608365446329, 0.02229020930826664, -0.029293367639183998, -0.034498050808906555, -0.015736669301986694, -0.029129870235919952, -0.02350281924009323, 0.022685328498482704, 0.0025580604560673237, 0.03111909329891205, -0.01267789676785469, -0.03098284639418125, -0.024633677676320076, -0.0003904363256879151, -0.015436923131346703, 0.004213476087898016, 0.034852296113967896, 0.013890506699681282, 0.007330154534429312, 0.036732520908117294, 0.005518053192645311, 0.011036106385290623, -0.010518362745642662, 0.03607852756977081, -0.009094568900763988, -0.04817737266421318, -0.022549081593751907, 0.0014748870162293315, -0.03981173038482666, -0.005916579160839319, -0.02137734554708004, 0.0328085720539093, 0.010191367007791996, 0.012405400164425373, -0.003961416892707348, -0.016336161643266678, -0.025246795266866684, -0.006417291238903999, 0.027549389749765396, 0.0049764662981033325, -0.011724159121513367, -0.01389731839299202, 0.016390660777688026, 0.02417043410241604, -0.0025580604560673237, -0.030410602688789368, 0.01534155011177063, 0.0292116180062294, 0.005885923281311989, -0.027576640248298645, -0.0020999256521463394, 0.00045472843339666724, 0.016145413741469383, 0.004227100871503353, 0.018420759588479996, -0.004441692028194666, 0.012044343166053295, 0.028312381356954575, 0.022017711773514748, 0.0004977317876182497, 0.009632749482989311, -0.018597882241010666, 0.0011981327552348375, -0.002096519572660327, 0.022099461406469345, -0.007275654934346676, -0.019796866923570633, 0.01967424340546131, 0.019864991307258606, 0.014047191478312016, -0.03820400312542915, -0.01020499225705862, 0.015436923131346703, 0.004182820208370686, 0.014864681288599968, -0.010940732434391975, -0.00992568302899599, -0.027930885553359985, 0.006287855561822653, 0.014197064563632011, 0.022153960540890694, 0.019156500697135925, -0.0155186727643013, 0.033408064395189285, -0.0027709482237696648, 0.009959745220839977, -0.01535517442971468, -0.0016434942372143269, -0.00452003488317132, 0.0008370750001631677, -0.004714188631623983, -0.0036446398589760065, -0.007868334650993347, -0.009516938589513302, -0.023489193990826607, -0.01015730481594801, 0.03398030623793602, -0.00986437126994133, 0.08202143013477325, 0.0365690216422081, -0.015287050977349281, 0.003702545538544655, -0.014837431721389294, 0.010531987994909286, 0.013801944442093372, 0.02267170324921608, -0.004741438198834658, -0.024361182004213333, 0.018543383106589317, -0.024374807253479958, -0.01767139509320259, 0.008931070566177368, -0.024388432502746582, 0.009605499915778637, -0.004067009314894676, -4.670227281167172e-05, 0.0022804546169936657, 0.012820958159863949, 0.015559546649456024, 0.00383879360742867, 0.009469251148402691, -0.0010967982234433293, -0.025628291070461273, 0.0008796525653451681, 0.019919490441679955, 0.028339629992842674, 0.010477487929165363, -0.018448010087013245, 0.02891187183558941, 0.0012015389511361718, -0.027876386418938637, -0.008379265666007996, -0.009074131958186626, 0.004996903706341982, -0.007309717126190662, -0.039293985813856125, 0.0183117613196373, 0.02396606281399727, 0.003227379871532321, 0.029048120602965355, -0.03000185824930668, -0.01476930733770132, 0.011880844831466675, 0.00793645903468132, 0.009387502446770668, -0.02883012406527996, -0.001692884135991335], "e45eea2c-fa16-4f6c-97d2-b145b149d1c1": [-0.0020617672707885504, 0.010922539979219437, -0.0007408398669213057, -0.030754121020436287, 0.004588983487337828, 0.030450716614723206, -0.01585974730551243, -0.028299307450652122, -0.008240173570811749, -0.029705997556447983, 0.01667342148721218, 0.01904548890888691, 0.015377060510218143, -0.013418725691735744, -0.006478362251073122, 0.017859455198049545, 0.0278993658721447, 0.010694986209273338, 0.016080405563116074, -0.013004993088543415, -0.020410805940628052, -0.00430626654997468, -0.009695133194327354, -0.006002570036798716, -0.0306713730096817, -0.0016850982792675495, 0.022686336189508438, -0.012784335762262344, -0.009184862487018108, 0.017928410321474075, 0.011198361404240131, -0.015252940356731415, -0.031691912561655045, -0.0028340681456029415, -0.009191757999360561, 0.006578347645699978, 0.00222553638741374, 0.018107695505023003, 0.010026118718087673, -0.012177527882158756, 0.021679585799574852, 0.03149883821606636, -0.0007115338230505586, -0.00039800209924578667, -0.01197755802422762, 0.035056937485933304, -0.0013860040344297886, -0.017376767471432686, -0.02127964422106743, -0.002044528489932418, -0.005206134635955095, 0.005464717745780945, -0.02810623124241829, 0.003468457842245698, 0.005050985142588615, 0.0034960401244461536, 0.01625968888401985, 0.008626324124634266, 0.019638504832983017, -0.009495162405073643, 0.0067438408732414246, -0.00500961160287261, -0.008771129883825779, -0.015514970757067204, -0.02799590304493904, -0.03679461404681206, -0.03080928511917591, -0.008674592711031437, -0.0064404369331896305, -0.01146039180457592, 0.047882650047540665, 0.03232630342245102, 0.01290156040340662, -0.013108426705002785, 0.005561255384236574, -0.013598009943962097, -0.021638212725520134, -0.022451886907219887, 0.0030995465349406004, -0.005847420077770948, 0.026272017508745193, -0.015845956280827522, -0.012060304172337055, 0.005537120625376701, 0.02610652521252632, 0.030864449217915535, 0.010646717622876167, 0.009543430991470814, -0.0008834914187900722, -0.010026118718087673, 0.017252648249268532, 0.011336272582411766, 0.025306642055511475, 0.026713332161307335, 0.01674237847328186, 0.0020686627831310034, 0.004823432303965092, 0.007819545455276966, -0.011032868176698685, -0.003277106676250696, -0.017404349520802498, -0.008860772475600243, -0.007964352145791054, -0.014370311051607132, -0.008205696009099483, -0.0230586938560009, 0.02254842408001423, -0.017335394397377968, 0.003554652212187648, 0.033126186579465866, -0.016963034868240356, 0.03345717117190361, -0.000986062572337687, 0.004557953681796789, 0.008447039872407913, -0.0011894811177626252, 0.03091961331665516, -0.012942933477461338, -0.010067492723464966, -0.015901122242212296, 0.005123388022184372, 0.008350501768290997, 0.049868565052747726, 0.0011670705862343311, 0.008881459012627602, 0.006995528005063534, 0.007323066238313913, -0.016287270933389664, 0.017169902101159096, -0.00445107277482748, 0.014397893100976944, 0.008364292792975903, 0.008557368069887161, 0.014866789802908897, -0.026134107261896133, 0.014025533571839333, -0.020769374445080757, 0.020479761064052582, 0.01185343787074089, -0.01941784843802452, 0.014356520026922226, 0.018604174256324768, 0.016273479908704758, 0.00525785144418478, 0.0002749597770161927, 0.04653112217783928, 0.0031409196089953184, 0.023389680311083794, 0.0032598678953945637, -0.012811917811632156, -0.00238413386978209, -0.024754997342824936, -0.02923710085451603, 0.007764380890876055, 0.013991056010127068, 0.009984745644032955, 0.006657646503299475, 0.03952525183558464, -0.010812210850417614, -0.0010593277402222157, 0.0020410807337611914, 0.03847712650895119, -0.0026909855660051107, -0.008647010661661625, -0.0008352225995622575, 0.029181936755776405, 0.023306934162974358, -0.027678707614541054, -0.024286100640892982, -0.008474621921777725, 0.006967945955693722, 0.03417430818080902, -0.008812503889203072, 0.017749127000570297, -0.004026996903121471, 0.02298973873257637, 0.012053408659994602, -0.0006145652150735259, -0.008240173570811749, -0.024520549923181534, 0.03384332358837128, -0.011963766068220139, 0.003196083940565586, 0.018714502453804016, -0.015404642559587955, -0.010743255726993084, 0.02412060834467411, 0.025099774822592735, 0.00857805460691452, -0.0026909855660051107, 0.00042860108078457415, -0.001061051618307829, -0.020190149545669556, -0.016245897859334946, -0.6173993349075317, 0.003320203861221671, 0.020190149545669556, -0.006950707174837589, 0.0043166098184883595, 0.013453204184770584, 0.014508221298456192, -0.0020324611105024815, -0.015032283030450344, 0.034808699041604996, 0.013101531192660332, -0.0022272602654993534, -0.019859163090586662, -0.0043717739172279835, -0.017556050792336464, -0.030202476307749748, 0.00023487942235078663, -0.02061767317354679, -0.016590675339102745, -0.011839646846055984, -0.03400881588459015, 0.014770252630114555, 0.00042536878027021885, 0.003606368787586689, -0.008060889318585396, -0.012570573948323727, 0.014218608848750591, 0.006181853823363781, 0.001759225269779563, 0.051937226206064224, -0.030064566060900688, 0.007778171915560961, 0.009281400591135025, -0.0030788597650825977, 0.04040788114070892, -0.03290553018450737, -0.013549741357564926, 0.02638234570622444, 0.005633658263832331, 0.02261737920343876, -0.024451594799757004, -0.003964936826378107, 0.01918339915573597, 0.012736067175865173, -0.008067784830927849, 0.0033788159489631653, 0.02587207593023777, 0.006967945955693722, -0.0046682823449373245, -0.017955992370843887, 0.018024949356913567, -0.00587500212714076, -0.006726602092385292, -0.020645255222916603, 0.00627839146181941, -0.004544162657111883, 0.016425183042883873, -0.004454520530998707, 0.0016247621970251203, -0.004020101390779018, 0.010736360214650631, 0.01092943549156189, -0.008274651132524014, -0.039304591715335846, -0.051964808255434036, 0.011729317717254162, -0.02209331840276718, -0.004761372227221727, 0.0016057995380833745, -0.010419164784252644, 0.014852998778223991, -0.004533819388598204, -0.00494065647944808, 0.0001873648288892582, 0.010812210850417614, 0.02515493892133236, 0.0352775976061821, -0.006443884689360857, 0.012674007564783096, 0.03378815948963165, 0.0019376474665477872, -0.004495893605053425, -0.00404768344014883, -0.019362684339284897, 0.03365024924278259, 0.012384394183754921, -0.012742962688207626, -0.013108426705002785, -0.00029349152464419603, -0.004785506520420313, 0.009053847752511501, 0.025692792609333992, -0.00573019590228796, -0.025637628510594368, 0.02395511604845524, 0.05637795850634575, -0.003390883095562458, 0.017818082123994827, 0.011763796210289001, -0.011846542358398438, -0.03348475694656372, -0.021431347355246544, 0.030864449217915535, 0.01111561432480812, 0.013136008754372597, 0.03825647011399269, -0.017349185422062874, -0.0046820733696222305, 0.00850909948348999, -0.01115009281784296, -0.016107987612485886, -0.009895103983581066, -0.024479176849126816, -0.015059865079820156, 0.002325521782040596, -0.023210396990180016, -0.017969783395528793, 0.01828697882592678, 0.00030943748424761, 0.002584104659035802, -0.027954529970884323, -0.022934574633836746, 0.014963327907025814, 0.0027961425948888063, 0.0046751778572797775, 0.009522744454443455, 0.01187412440776825, 0.0009826148161664605, 0.013129113242030144, -0.0032426288817077875, -0.0006296492647379637, -0.004471759311854839, -0.006671437527984381, -0.007791963405907154, 0.030478298664093018, 0.0013368732761591673, 0.020066028460860252, -0.018314560875296593, 0.01568046398460865, -0.050696030259132385, -0.010253671556711197, -0.001004163408651948, 0.029457759112119675, -0.028795786201953888, 0.00787470955401659, -0.03555341809988022, -0.003111613681539893, -0.0015601165359839797, 0.0064335414208471775, -0.00835739728063345, -0.01456338632851839, -0.010708778165280819, 0.004947551991790533, 0.015942495316267014, -0.017390558496117592, -0.006795557215809822, -0.0004137325449846685, -0.02909919060766697, -0.013046367093920708, -0.022493259981274605, -0.013494577258825302, -0.008178113959729671, -0.006719706114381552, 0.004261445254087448, -0.017183693125844002, -0.01904548890888691, -0.02642371878027916, 0.022355349734425545, -0.019610922783613205, -0.011550034396350384, -0.007495454978197813, -0.01489437185227871, 0.010005432181060314, 0.011984453536570072, 0.01678375154733658, 0.010543284937739372, -0.021114151924848557, 0.0014377206098288298, -0.006554213352501392, 0.001187757239677012, 0.005237164441496134, 0.02038322389125824, -0.018466264009475708, -0.012536096386611462, 0.0371256023645401, -0.0028357920236885548, 0.022148482501506805, 0.02250705100595951, -0.026713332161307335, 0.010612240061163902, -0.019335102289915085, 0.00797814317047596, -0.016894079744815826, -0.006188749335706234, -0.022286394611001015, -0.016659630462527275, -0.010660508647561073, -0.014659923501312733, 0.01598386839032173, 0.02271391823887825, 0.023968907073140144, 0.008329815231263638, -0.0009403796284459531, -0.006585243158042431, 0.0006507668294943869, -0.019059279933571815, 0.02059009112417698, -0.020259104669094086, 0.00692312465980649, 0.001162760891020298, -0.010026118718087673, -0.01001922320574522, 0.007136886473745108, -0.011205256916582584, 0.008240173570811749, 0.043800488114356995, 0.01990053616464138, 0.02423093654215336, -0.004861357621848583, -0.009288296103477478, 0.010812210850417614, 0.026037568226456642, 0.01561150886118412, -0.00984683446586132, 0.002685813931748271, 0.006599034182727337, 0.008805608376860619, 0.0281338132917881, 0.012846396304666996, -0.01060534454882145, -0.01623210683465004, 0.018135277554392815, 0.0015713217435404658, 0.007785067427903414, 0.04247654229402542, 0.012384394183754921, 0.031416092067956924, -0.0061232419684529305, 0.03039555251598358, -0.0016678593819960952, 0.0056853750720620155, -0.005940509960055351, 0.010081283748149872, -0.03447771444916725, 0.030174894258379936, 0.003354681422933936, 0.02669954113662243, -0.0033012409694492817, -0.02003844641149044, 0.01019161194562912, -0.0014316870365291834, -0.004916521720588207, 0.0011739660985767841, -0.011667258106172085, 0.032684873789548874, -0.024630878120660782, 0.011936184018850327, 0.01729402132332325, 0.011949975043535233, 0.016935452818870544, 0.004802745301276445, 0.014108280651271343, 0.01226717047393322, -0.01667342148721218, 0.02127964422106743, -0.0017126804450526834, -0.0004546748532447964, -0.028988860547542572, -0.002218640875071287, -0.005843972321599722, 0.01248782780021429, -0.015363269485533237, 0.005088910460472107, -0.018038740381598473, 0.008929727599024773, 0.0009920961456373334, -0.003270211163908243, 0.009695133194327354, -0.008950414136052132, 0.019955700263381004, -0.013501472771167755, -0.02676849626004696, 0.013584218919277191, 0.017004407942295074, 0.001147245871834457, -0.0014997805701568723, -0.013542845845222473, -0.010791524313390255, 0.007660947740077972, 0.030616208910942078, 0.005906032398343086, -0.0061370329931378365, -0.012301648035645485, 0.0011506936280056834, 0.012915351428091526, 0.008240173570811749, 0.03475353494286537, -0.018824830651283264, -0.012260274961590767, -0.000274744292255491, 0.018480055034160614, 0.0054302397184073925, -0.02460329607129097, -0.01980399899184704, 0.023720666766166687, -0.007598888128995895, -0.015708046033978462, -0.012129259295761585, -0.010177820920944214, -0.030174894258379936, 0.010164029896259308, 0.0015385679434984922, -0.025968613103032112, -0.015708046033978462, 0.00013747988850809634, 0.0009584804065525532, 0.010591553524136543, -0.0061715105548501015, 0.004882044158875942, 0.01987295411527157, -0.00445107277482748, -0.006943811662495136, 0.014053115621209145, 0.012474036775529385, 0.06382514536380768, 0.00048613574472256005, 0.006457675714045763, 0.02518252097070217, -0.009833043441176414, -0.007985038682818413, -0.019473012536764145, -0.014039324596524239, 0.04482102766633034, 0.019707461819052696, -0.019431639462709427, -0.0006960188620723784, 0.012956724502146244, -0.007991934195160866, 0.00652663130313158, -0.008826294913887978, 0.004530371632426977, -0.013908309862017632, -0.014839207753539085, 0.022962156683206558, 0.00017346598906442523, 0.011887915432453156, 0.04217313975095749, 0.02024531364440918, 0.036932528018951416, 0.03050588071346283, 0.02001086436212063, 0.0179835744202137, 0.004182146396487951, -0.02363792061805725, -0.02518252097070217, 0.010681195184588432, 0.003578786738216877, 0.011667258106172085, -0.035774074494838715, 0.03580165654420853, -0.006074972916394472, -0.021914035081863403, -0.01329460646957159, 0.00279269483871758, -0.010626031085848808, 0.021045196801424026, -0.00024328335712198168, -0.014025533571839333, 0.012591260485351086, -0.01814906857907772, -0.021914035081863403, 0.038752950727939606, -0.011522451415657997, 0.0005408691358752549, 0.004530371632426977, 0.02343105338513851, -0.0054509262554347515, 0.017831873148679733, 0.020507343113422394, -0.021389972418546677, -0.009274505078792572, -0.019100653007626534, -0.023858577013015747, -0.02377583086490631, -0.025334224104881287, -0.024851536378264427, -0.011536242440342903, -0.027595961466431618, -0.019128235056996346, -0.040987104177474976, -0.022079527378082275, -0.0033426142763346434, -0.025913449004292488, 2.5481185730313882e-05, -0.024079235270619392, -0.033402007073163986, -0.029181936755776405, 0.014218608848750591, 0.02127964422106743, 0.0320504829287529, -0.005309567786753178, 0.007109304424375296, 0.001185171422548592, 0.01089495699852705, 0.004099400248378515, -0.021486511453986168, 0.017542259767651558, -0.02134859934449196, 0.008888354524970055, -0.018466264009475708, -0.01996949128806591, 0.0036339510697871447, 0.00012390427582431585, 0.02714085578918457, -0.0013653174974024296, -0.014025533571839333, -0.0012463693274185061, 0.012405081652104855, 0.016149360686540604, 0.01163278054445982, 0.008081575855612755, -0.01921098120510578, 0.024286100640892982, -0.04206281155347824, 0.009674446657299995, -0.015777001157402992, -0.014287563972175121, -0.02103140577673912, 0.01283260527998209, 0.032546959817409515, -0.009633072651922703, -0.007057588081806898, -0.005985331255942583, -0.016590675339102745, 0.012494723312556744, -0.007026557810604572, -0.026437509804964066, -0.015597717836499214, -0.006081868428736925, -0.021058987826108932, 0.020672837272286415, 0.018521428108215332, 0.008040202781558037, -0.025099774822592735, 0.005799151491373777, -0.011274212040007114, 0.026534048840403557, -0.0037304884754121304, 0.006554213352501392, 0.007047244813293219, 0.006964498199522495, -0.006299077998846769, -0.04573123902082443, 0.0024565369822084904, -0.000154718742123805, 0.0018893786473199725, -0.013218754902482033, -0.006564556621015072, -0.015597717836499214, -0.0035443089436739683, -0.009943372569978237, 0.011998244561254978, -0.01353595033288002, 0.012184424325823784, -0.03842196241021156, 0.004106295760720968, 0.0212106890976429, -0.00924692302942276, -0.000642578408587724, -0.03257454186677933, -0.03378815948963165, 0.0010446746600791812, 0.014439266175031662, 0.0240930262953043, -0.017542259767651558, -0.015473597683012486, -0.04708276689052582, -0.032850366085767746, -0.013701443560421467, -0.018535219132900238, 0.0023927532602101564, 0.005564703140407801, 0.0403527170419693, 0.03833921626210213, 0.0199419092386961, 0.016756169497966766, 0.022286394611001015, 0.013825562782585621, -0.0036167120561003685, -0.002180715324357152, -0.005664688069373369, -0.025334224104881287, 0.005964644253253937, -0.017031989991664886, -0.0195971317589283, -0.00047277563135139644, -0.010646717622876167, 0.009040056727826595, -0.010377791710197926, 0.0008093643118627369, 0.0043717739172279835, 0.0014851274900138378, -0.02676849626004696, -0.04826879873871803, 0.009564117528498173, 0.03171949461102486, 0.008564263582229614, 0.003152986988425255, -0.02134859934449196, 0.0010644993744790554, 0.015928704291582108, -0.0021393420174717903, 0.035636164247989655, 0.009543430991470814, 0.03376057744026184, -0.004582087974995375, -7.014059519860893e-05, 0.02508598379790783, -0.010839792899787426, -0.009308982640504837, -0.012315439060330391, -0.04087677597999573, -0.00883319042623043, 0.016066614538431168, 0.0243274737149477, 0.012177527882158756, -0.007350648287683725, 0.004826880060136318, 0.014273772947490215, 0.011550034396350384, -0.029016442596912384, -0.018686920404434204, 0.0004960480728186667, -0.03119543567299843, 0.007778171915560961, -0.018093904480338097, -0.018383515998721123, 0.02061767317354679, -0.011915497481822968, -0.0006145652150735259, -0.0030857552774250507, 0.02068662829697132, -0.01261194795370102, -0.019679877907037735, 0.015583926811814308, -0.003606368787586689, 0.022079527378082275, 0.017625007778406143, 0.011177674867212772, 0.009322773665189743, 0.01897653378546238, -0.022107109427452087, -0.0199419092386961, -0.008412562310695648, -0.005861211102455854, -0.00159114645794034, 0.0415111668407917, -0.01637001894414425, -0.008564263582229614, 0.006054286379367113, -0.004799297545105219, 0.002909919014200568, -0.03616022691130638, 0.02285182848572731, 0.007192051038146019, -0.00580604700371623, -0.03238146752119064, -0.027527006343007088, -0.010350209660828114, -0.0015532210236415267, -0.013253233395516872, 0.009281400591135025, 0.0012817089445888996, 0.0011343167861923575, -0.002599619561806321, 0.030726538971066475, -0.007985038682818413, 0.0212106890976429, 0.0006861065048724413, 0.011584511958062649, -0.00477861100807786, -0.006340451538562775, -0.0008197076385840774, -0.017197484150528908, 0.004802745301276445, 0.0019238564418628812, -0.028602711856365204, 0.006809348240494728, 0.01688028872013092, 0.009991641156375408, -0.00885387696325779, -0.002656507771462202, -0.020190149545669556, 0.0300921481102705, -0.009819252416491508, -0.019859163090586662, -5.6457254686392844e-05, -0.007695425767451525, 0.01952817663550377, -0.025761747732758522, -0.015101238153874874, -0.006078420672565699, -0.00748855946585536, 0.005016507115215063, -0.0025565223768353462, -0.0017962888814508915, -0.016245897859334946, 0.006409407127648592, 0.006212884094566107, -0.020493552088737488, -0.009350355714559555, -0.008281546644866467, 0.01545980665832758, -0.021982990205287933, -0.006930020172148943, -0.005023402627557516, -0.016797542572021484, 0.0024306788109242916, 0.004723446909338236, -0.021252062171697617, -0.0027323588728904724, 0.02545834332704544, -0.029016442596912384, 0.02758217044174671, 0.01911444403231144, 0.0230586938560009, -0.0341191440820694, 0.02635476365685463, -0.004009758122265339, 0.007254110649228096, 0.016287270933389664, 0.008743547834455967, -0.04010447487235069, -0.02261737920343876, 0.01801115833222866, 0.0006348208989948034, 0.01434272900223732, -1.096283540391596e-05, 0.031857408583164215, 0.022286394611001015, -0.00819880049675703, -0.03138851001858711, -0.01893516071140766, 0.004671730101108551, -0.004071817733347416, 0.004347639624029398, 0.017197484150528908, -0.007074826862663031, 0.010074388235807419, 0.001242059632204473, 0.006885199341922998, -0.0004245068412274122, -0.030588626861572266, -0.021527884528040886, -0.02607894316315651, -2.1562038455158472e-05, -0.004368326161056757, 0.016590675339102745, -0.019790207967162132, -0.03519485145807266, -0.023182814940810204, 0.0320504829287529, -0.0009757193038240075, 0.011019077152013779, 0.021900244057178497, -0.008398771286010742, -0.026754705235362053, 0.01130868960171938, -0.005571598652750254, -0.05221305042505264, -0.024313682690262794, -0.014039324596524239, -0.03447771444916725, -0.007674738764762878, -0.011329376138746738, 0.044655535370111465, 0.0025668656453490257, -0.015735628083348274, -0.028795786201953888, -0.025375597178936005, -0.026134107261896133, -0.0012773992493748665, -0.02704431861639023, 0.02679607830941677, 0.02744426019489765, 0.03593956679105759, 0.001019678427837789, 0.025472134351730347, -0.01036400068551302, 0.035084519535303116, -0.028120022267103195, -0.008109157904982567, -0.02230018563568592, -0.021183107048273087, 0.031278181821107864, -0.03820130601525307, -0.05064086616039276, -0.002135894261300564, 0.01360490545630455, -0.023169023916125298, 0.008667697198688984, 0.023789621889591217, 0.003644294338300824, 0.008253964595496655, -0.0006149961845949292, -0.015252940356731415, 0.018811039626598358, 0.011163883842527866, 0.0013110151048749685, -0.023527592420578003, 0.010853583924472332, 0.014301355928182602, -0.0026961572002619505, -0.006988632492721081, 0.00548885203897953, 0.017749127000570297, -0.008260860107839108, 0.0012860187562182546, -0.027816619724035263, -0.0008067784947343171, -0.014935745857656002, -0.014232399873435497, -0.002622030209749937, 0.012377498671412468, -0.008247069083154202, 0.029292264953255653, -0.0005831043235957623, 0.0007106718840077519, -0.01156382542103529, 0.026989154517650604, 0.008867667987942696, 0.010301941074430943, 0.0195971317589283, -0.025306642055511475, -0.006550765596330166, -0.01574941910803318, 0.024851536378264427, -0.010336418636143208, -0.02195540815591812, -0.02580312080681324, -0.01346699520945549, -0.03679461404681206, -0.016728585585951805, 0.024492967873811722, -0.010205402970314026, 0.014618550427258015, -0.017887037247419357, 0.01890757866203785, -0.011370750144124031, -0.006647303234785795, 0.004968238528817892, -0.028602711856365204, -0.031581584364175797, 0.002661679405719042, 0.020852120593190193, -0.03941492363810539, -0.01519777625799179, 0.03613264486193657, -0.016480347141623497, -0.0023548277094960213, 0.22286394238471985, 0.002878888975828886, 0.004161459859460592, 0.042807530611753464, 0.011598302982747555, -0.017142318189144135, -0.0019979835487902164, 0.006268048193305731, 0.007716112304478884, 0.028630293905735016, 0.008060889318585396, 0.007074826862663031, -0.02683745138347149, 0.0007727317279204726, 0.01812148652970791, -0.020921075716614723, -0.02398269809782505, -0.01545980665832758, -0.009329669177532196, 0.015377060510218143, 0.00972961075603962, -0.013563532382249832, -0.025996195152401924, 0.00010731188376666978, 0.03461562469601631, 0.019473012536764145, 0.003037486458197236, 0.003954593557864428, 0.021334808319807053, 0.01948680356144905, -0.023513799533247948, -0.004526923876255751, 0.022217437624931335, -0.013204963877797127, -0.018024949356913567, -0.007585097104310989, 0.006464571226388216, -0.030147312209010124, 0.009474475868046284, 0.02285182848572731, 0.0037925485521554947, -0.011094927787780762, -0.00010574961197562516, -0.014811625704169273, 0.02096244879066944, -0.010467433370649815, -0.004802745301276445, 0.0028409636579453945, 0.010626031085848808, 0.03933217376470566, -0.01279812678694725, 0.014397893100976944, 0.022451886907219887, 0.018369724974036217, 0.003116785315796733, -0.0054302397184073925, -0.01012265682220459, -0.009177966974675655, -0.021900244057178497, 0.016149360686540604, -0.012722276151180267, 0.00772990332916379, -0.014232399873435497, 0.02096244879066944, -0.03604989871382713, 0.003161606378853321, -0.01897653378546238, 0.027430469170212746, 0.005244060419499874, -0.00033982095192186534, 0.008260860107839108, -0.00883319042623043, -0.03318135067820549, -0.008412562310695648, -0.004285579547286034, -0.01104665920138359, -0.00021580893371719867, 0.04236621409654617, 0.042531706392765045, 0.014384102076292038, 0.007495454978197813, 0.013942787423729897, -0.011515555903315544, -0.012087886221706867, 0.0023565515875816345, -0.004040787927806377, 0.029457759112119675, -0.014908162876963615, 0.007198946550488472, -0.01312221772968769, -0.017542259767651558, 0.010219193994998932, -0.011060450226068497, 0.0013635935029014945, -0.01406690664589405, -0.012846396304666996, 0.0026444406248629093, 0.019679877907037735, -0.0003128852404188365, -0.00861253309994936, -0.02089349366724491, 0.046200137585401535, 0.011570720933377743, 0.02363792061805725, -0.013591114431619644, -0.008895250037312508, -0.015721837058663368, 0.03257454186677933, -0.002777179703116417, 0.0007003285572864115, 0.005833629053086042, -0.03080928511917591, 0.014866789802908897, 0.01266021654009819, 0.010529493913054466, 0.021017614752054214, 0.026920199394226074, 0.006747288629412651, -0.022107109427452087, -0.015652881935238838, 0.0307817030698061, -0.011467287316918373, -0.009591699577867985, 0.008129844442009926, -0.024368848651647568, -0.031029941514134407, -0.010984599590301514, 0.012908455915749073, -0.03318135067820549, -0.036767031997442245, 0.007516141515225172, -0.005068223923444748, 0.01918339915573597, -0.02377583086490631, 0.00025556606124155223, -0.006733497604727745, -0.002001431304961443, -0.022672545164823532, -0.01883862167596817, -0.0005050984909757972, -0.00030103352037258446, 0.015652881935238838, 0.005637106020003557, -0.009571013040840626, 0.024286100640892982, 0.01180516928434372, -0.004368326161056757, 0.00645078020170331, -0.004995820578187704, -0.018273187801241875, 0.003975280560553074, 0.025844493880867958, -0.011867228895425797, -0.0032546960283070803, 0.03191257268190384, -0.022727709263563156, -0.031112687662243843, -0.025927240028977394, 0.013653174042701721, -0.010308836586773396, -0.044765863567590714, -0.025513507425785065, 0.04120776429772377, 0.012784335762262344, -0.023803412914276123, -0.0064680189825594425, -0.17630523443222046, 0.01243955921381712, 0.0010412269039079547, -0.005202686879783869, 0.009019370190799236, 0.017459513619542122, 0.012846396304666996, 0.0022341557778418064, -0.025706583634018898, -0.014370311051607132, 0.0067507363855838776, 0.008253964595496655, -0.030147312209010124, -0.02151409350335598, -0.0009171071578748524, -0.004085609223693609, -0.019197190180420876, 0.0357464924454689, 0.03566374629735947, -0.002978874370455742, 0.017652589827775955, -0.01331529300659895, 0.017280230298638344, -0.022355349734425545, 0.006799004971981049, 0.01475646160542965, -0.01261194795370102, 0.03671186789870262, 0.007647156715393066, -0.03365024924278259, -0.010474328882992268, -0.013025679625570774, 0.022810455411672592, 0.018480055034160614, -0.0021772675681859255, 0.00564400153234601, 0.016011450439691544, 0.006271495949476957, -0.020093610510230064, 0.013032576069235802, 0.017487095668911934, 0.014232399873435497, 0.021472720429301262, 0.0004982029786333442, 0.010970808565616608, 0.037759993225336075, 0.023389680311083794, -0.017031989991664886, 0.005475061014294624, -0.00046113942516967654, 0.03726351261138916, -0.02031426876783371, -0.013184277340769768, -0.02024531364440918, 0.003202979452908039, -0.0020410807337611914, -0.005185448098927736, 0.019569549709558487, -0.0032512482721358538, -0.020424596965312958, 0.007681634742766619, -0.017680171877145767, -0.007591992616653442, -0.0026530600152909756, -0.006881751585751772, -0.0332089327275753, -0.014728879556059837, 0.018590383231639862, -0.008302233181893826, 0.004592431243509054, 0.005661240313202143, -0.006106003187596798, 0.0031788451597094536, 0.010370896197855473, 0.023141441866755486, 0.012936037965118885, -0.038035813719034195, 0.0015945942141115665, 0.04159391298890114, 0.0069265724159777164, 0.02656163088977337, -0.00139376160223037, -0.001198962447233498, 0.008688383735716343, -0.03993898257613182, -0.009495162405073643, 0.004195937886834145, 0.00875044334679842, -0.017790500074625015, 0.01660446636378765, 0.023348307237029076, -0.01533568650484085, 0.03265729174017906, -0.00454761041328311, -0.0005611247615888715, 0.01219821535050869, 0.021541675552725792, -0.008695279248058796, 0.004140773322433233, -0.013542845845222473, 0.00596119649708271, 0.01632864587008953, -0.03023005835711956, -0.0004003724316135049, 0.03489144518971443, 0.02188645303249359, 0.022396722808480263, -0.0027530454099178314, 0.029761161655187607, -0.008626324124634266, -0.0288233682513237, 0.026161689311265945, 0.028988860547542572, 0.00946758035570383, -0.024865327402949333, 0.04835154488682747, -0.00023617233091499656, -0.015280522406101227, 0.004954447504132986, -0.008715965785086155, 0.05737091600894928, -0.04642079398036003, -0.028795786201953888, -0.009177966974675655, -0.010501911863684654, -0.005016507115215063, -0.10133689641952515, -0.026506466791033745, 0.03196773678064346, 0.0019048936665058136, -0.006805900484323502, 0.009564117528498173, -0.00652663130313158, 0.02806485816836357, 0.0032167707104235888, 0.020190149545669556, -0.01321185939013958, -0.008591846562922001, -0.00485446210950613, -0.0012153394054621458, 0.006574899889528751, -0.011350063607096672, 0.006909333635121584, -0.02439643070101738, 0.000911073584575206, 0.01609419658780098, -4.492876905715093e-05, -0.012791231274604797, 0.012639530003070831, 0.00833671074360609, -0.02402407117187977, -0.024713624268770218, -0.02751321531832218, -0.0016247621970251203, 0.0006524907075800002, -0.0037339364644140005, 0.03709802031517029, -0.01003990974277258, 0.04024238511919975, -0.020465970039367676, 0.0009257266065105796, -0.02013498544692993, -0.011763796210289001, -0.02107277885079384, 0.025816911831498146, -0.017335394397377968, -0.0007158435182645917, 0.011901706457138062, -0.00021193019347265363, -0.03604989871382713, -0.009715819731354713, -0.004916521720588207, 0.007881605066359043, 0.020769374445080757, 0.013039471581578255, -0.010708778165280819, -0.02744426019489765, -0.027802828699350357, -0.01907307095825672, -0.04360741004347801, 0.02658921293914318, -0.00897110067307949, 0.007281693164259195, 0.006140480749309063, -0.020121192559599876, 0.00852978602051735, -0.028575127944350243, 0.00604739086702466, -0.017445722594857216, 0.0179835744202137, 0.011467287316918373, 0.0043786694295704365, -0.010157134383916855, 0.012294752523303032, 0.004368326161056757, -0.001879035378806293, -0.005778464954346418, 0.011377645656466484, -0.021541675552725792, -0.005340597592294216, -0.017790500074625015, 0.007681634742766619, 0.005033746361732483, -0.010736360214650631, 0.002678918419405818, 0.010563971474766731, -0.015570134855806828, -0.006685228552669287, 0.004785506520420313, -0.03315376862883568, 0.013970369473099709, 0.0007128267316147685, 0.0012661940418183804, -0.009019370190799236, 0.022051945328712463, -0.04724825918674469, 0.0015058141434565187, 0.008564263582229614, 0.02292078360915184, 0.004999268334358931, -0.0026840900536626577, 0.015101238153874874, -0.018383515998721123, -0.010908748023211956, 0.02391374111175537, -0.004747581202536821, -0.00809536688029766, -0.012149945832788944, -0.04810330644249916, 0.008481517434120178, 0.003751175245270133, 0.008012620732188225, 0.003844265127554536, -0.03544308990240097, -0.008633219636976719, -0.009288296103477478, 0.00963996909558773, 0.011543137952685356, -0.022686336189508438, -0.0018617964815348387, -0.02425851859152317, -0.019886745139956474, -0.03414672613143921, -0.02107277885079384, 0.013439412228763103, 0.002604791196063161, 0.022562215104699135, -0.003678771900013089, 0.0025806569028645754, -0.0038408173713833094, 0.020052237436175346, 0.03456046059727669, -0.010281254537403584, 0.031167853623628616, -0.03456046059727669, 0.023941325023770332, -0.009522744454443455, -0.025541089475154877, 0.02460329607129097, -0.007764380890876055, 0.005054432898759842, 0.004840671084821224, -0.011929288506507874, -0.03053346276283264, -0.015211567282676697, 0.01399795152246952, 0.009398624300956726, -5.3278839914128184e-05, -0.006054286379367113, -0.005916375666856766, 0.02785799279808998, -0.021321017295122147, -0.021679585799574852, -0.028933696448802948, -0.025058401748538017, -0.027333931997418404, 0.01825939677655697, 0.017321603372693062, 0.03756691515445709, -0.004485550336539745, -0.0417318232357502, -0.02967841550707817, 0.0079574566334486, -0.010612240061163902, 0.0035718909930437803, 0.031554002314805984, 0.0031909123063087463, -0.00358568225055933, 0.04076644778251648, -0.007743694353848696, 0.01168104913085699, -0.016218315809965134, 0.05356457456946373, -0.0028668218292295933, -0.049289338290691376, -0.004475207068026066, 0.007067931350320578, -0.020465970039367676, -0.010350209660828114, -0.018755875527858734, 0.0295129232108593, 0.019928118214011192, 0.0170595720410347, -0.00883319042623043, -0.009908895008265972, -0.03593956679105759, -0.002878888975828886, 0.031554002314805984, 0.006233570631593466, -0.010881165973842144, -0.006916229147464037, 0.006243913900107145, 0.01835593394935131, 0.000188119025551714, -0.023141441866755486, 0.007847127504646778, 0.025237686932086945, 0.005709509365260601, -0.02188645303249359, -0.004123534541577101, -0.0024220594204962254, 0.00662316894158721, 0.0017600872088223696, 0.012170632369816303, -0.008067784830927849, 0.009495162405073643, 0.01914202608168125, 0.015790792182087898, 0.006747288629412651, 0.000819276669062674, -0.019031697884202003, -0.003727040719240904, -0.005433687474578619, 0.014425475150346756, -0.011384541168808937, -0.01568046398460865, 0.01715610921382904, 0.030864449217915535, 0.01346699520945549, -0.020921075716614723, -0.0010757046984508634, 0.01814906857907772, -0.006140480749309063, 0.005788808222860098, -0.005033746361732483, -0.021293435245752335, -0.030009401962161064, 0.009198653511703014, 0.005285433493554592, 0.02034185081720352, 0.015087447129189968, -0.01399795152246952, 0.027595961466431618, -0.0028461352922022343, 0.009329669177532196, -0.009157280437648296, -0.0010007156524807215, -0.011143197305500507, 0.005595732945948839, -0.01983158104121685, 0.003520174417644739, -0.01456338632851839, -0.001065361313521862, -0.02423093654215336, -0.008074680343270302, 0.027499424293637276, -0.007833336479961872, 0.08771130442619324, 0.03767724335193634, -0.012860187329351902, 0.0020066029392182827, -0.007481663953512907, 0.01678375154733658, 0.004802745301276445, 0.02624443545937538, -0.010570866987109184, -0.027058109641075134, 0.02532043308019638, -0.01808011345565319, -0.01106734573841095, 0.016039032489061356, -0.026037568226456642, -1.0437588571221568e-06, -0.00787470955401659, 0.002497910289093852, -0.0056991660967469215, 0.005637106020003557, 0.005047537386417389, -0.0008067784947343171, 0.00037796192918904126, -0.009184862487018108, -0.020493552088737488, -0.016356227919459343, 0.017252648249268532, 0.03406397998332977, -0.00804709829390049, -0.024203354492783546, 0.027775246649980545, -0.0020272894762456417, -0.038311634212732315, -0.0037753095384687185, -0.011101823300123215, -0.001659239991568029, -0.006657646503299475, -0.0352775976061821, 0.0035718909930437803, 0.020217731595039368, 0.005313015542924404, 0.01839730702340603, -0.03723593056201935, -0.021155524998903275, 0.02792694792151451, 0.019473012536764145, -0.001457545324228704, -0.017045781016349792, -0.0033857114613056183], "b5398d00-ce67-41e4-a0bd-59e194fca19a": [-0.0018665619427338243, 3.3377757063135505e-05, 0.00023007969139143825, -0.024265306070446968, 0.014711273834109306, 0.023739902302622795, -0.01111641339957714, -0.018831536173820496, -0.01740741916000843, -0.02358781360089779, 0.016052432358264923, 0.01809873804450035, 0.005858930759131908, -0.0069961510598659515, 0.010577184148132801, 0.014172044582664967, 0.021195847541093826, 0.009809819981455803, -0.009761427529156208, 0.009491813369095325, -0.03536789491772652, 0.002127534942701459, -0.015554683282971382, -0.005312788300216198, -0.02093314751982689, -0.01007943507283926, 0.020103564485907555, -0.013708860613405704, -0.010155479423701763, 0.012644229456782341, 0.016743753105401993, -0.016577836126089096, -0.0363633930683136, 0.014282655902206898, -0.01700645312666893, 0.02241257019340992, 0.012741013430058956, 0.0024576399009674788, 0.022868841886520386, -0.013625902123749256, 0.01165564265102148, 0.026684923097491264, 0.010909018106758595, -0.006491487845778465, -0.008164480328559875, 0.03420647606253624, -0.0010715448297560215, -0.015665294602513313, -0.025440549477934837, -0.002893171040341258, -0.009028629399836063, 0.013287155888974667, -0.005665361415594816, -0.009056282229721546, -0.0024749229196459055, -0.00241097598336637, 0.005153784994035959, 0.014393267221748829, -0.0035533809568732977, -0.014725100249052048, 0.005741406232118607, -0.002903540851548314, -0.007106761913746595, -0.010397441685199738, -0.02371225133538246, -0.025122541934251785, -0.01218795869499445, 0.016273654997348785, -0.02803990989923477, -0.01682671159505844, 0.04100905731320381, 0.030252130702137947, 0.01602477952837944, -0.019025105983018875, 0.002229504520073533, -0.009554032236337662, -0.03448300436139107, -0.02210838906466961, -0.0037953427527099848, 0.0016487963730469346, 0.014711273834109306, -0.010120914317667484, -0.006470748223364353, 0.0024541832972317934, 0.03420647606253624, 0.02969907596707344, 0.001352393301203847, 0.010473486967384815, 0.006401616148650646, -0.019343113526701927, 0.019426070153713226, 0.012160305865108967, 0.03146885335445404, 0.022564660757780075, 0.02476305514574051, 0.02416852116584778, 0.019052758812904358, 0.003843734972178936, -0.014766579493880272, 0.0002817125932779163, -0.010107087902724743, 0.00432765856385231, -0.01242992002516985, -0.01710323803126812, 0.004573076963424683, -0.023463375866413116, 0.02250935509800911, -0.016467224806547165, 0.005516727454960346, 0.02870357595384121, -0.02476305514574051, 0.026809360831975937, 0.0013411593390628695, -0.01840291917324066, 0.0008278547902591527, -0.0020635880064219236, 0.027099715545773506, -0.029920296743512154, -0.00909776147454977, -0.020808709785342216, 0.009408854879438877, 0.004476292058825493, 0.047811638563871384, -0.006716166622936726, 0.00918763317167759, 0.006830234080553055, 0.015969473868608475, -0.01760098896920681, 0.014600662514567375, 0.0017957017989829183, 0.01208426058292389, 0.014711273834109306, 0.02556498534977436, 0.01847205124795437, -0.0222051739692688, -0.0016591661842539907, -0.028178172186017036, 0.020587487146258354, 0.0022329611238092184, -0.030943449586629868, 0.015416419133543968, 0.017670121043920517, 0.017365939915180206, -0.006802581250667572, 0.006854430306702852, 0.056273385882377625, 0.0051365019753575325, 0.02250935509800911, 0.013466899283230305, -0.0032146344892680645, 0.00020804388623218983, -0.014808058738708496, -0.03321097791194916, 0.009498726576566696, -0.012768666259944439, 0.006339397747069597, -0.0014673251425847411, 0.015706773847341537, -0.011607250198721886, 0.013169631361961365, 0.007507727015763521, 0.03326628357172012, -0.00604558689519763, -0.0021724707912653685, -0.005247113294899464, 0.030639270320534706, 0.008171393536031246, -0.03882449120283127, -0.020324785262346268, -0.020421570166945457, 0.00405804393813014, 0.026574311777949333, -0.002627013251185417, 0.02466627024114132, -0.0002477947564329952, 0.021500028669834137, 0.013363201171159744, -0.0031887099612504244, -0.02105758525431156, -0.015029280446469784, 0.02350485511124134, -0.021569160744547844, -0.008710622787475586, 0.018928321078419685, -0.002499119145795703, -0.007168980780988932, 0.04421677812933922, 0.017158543691039085, 0.01509841252118349, -0.002309006405994296, 0.022744404152035713, -0.009014802984893322, -0.022384917363524437, -0.009920431300997734, -0.63004070520401, -0.006446551997214556, 0.00437259441241622, 0.0024213457945734262, 0.002758363727480173, 0.02299327775835991, 0.016384266316890717, -0.007189720403403044, -0.008295831270515919, 0.0326579213142395, 0.00776351522654295, -0.0084479209035635, -0.004932562820613384, -0.016093911603093147, -0.029146019369363785, -0.019398419186472893, -0.01602477952837944, -0.007092935498803854, -0.013183457776904106, -0.015181371010839939, -0.03550615534186363, 0.015374939888715744, 0.014061433263123035, -0.01155194453895092, -0.013363201171159744, -0.02556498534977436, 0.0009453790844418108, 0.009236025623977184, 0.005067370366305113, 0.046954404562711716, -0.03312801942229271, 0.010991976596415043, 0.0310540609061718, 0.0023297457955777645, 0.03321097791194916, -0.029726728796958923, -0.009104674682021141, 0.0373312383890152, 0.02281353622674942, 0.011766253970563412, -0.021970126777887344, -0.0013921441277489066, 0.01331480871886015, 0.021970126777887344, -0.014351787976920605, 0.0013999214861541986, 0.005523640662431717, 0.005613512359559536, -0.00537846377119422, -0.0041893948800861835, 0.011227024719119072, 0.01254053134471178, -0.015803558751940727, 0.0007466247770935297, -0.0034203019458800554, -0.012153392657637596, 0.021859515458345413, -0.012505965307354927, 0.008040042594075203, 0.003140317741781473, 0.010058695450425148, 0.007009977474808693, -0.0015952191315591335, -0.04736919701099396, -0.03235374018549919, 0.029809685423970222, -0.03431708738207817, 0.009512552991509438, -0.008060782216489315, -0.01508458610624075, 0.026173347607254982, 0.001792245195247233, 0.00909776147454977, -0.00510884914547205, 0.0015805286820977926, 0.024804534390568733, 0.04338719695806503, -0.009159980341792107, -0.0013109141727909446, 0.013003715313971043, 0.008876538835465908, -0.017573336139321327, -0.017186196520924568, -0.0048323217779397964, 0.01740741916000843, 0.021016106009483337, -0.0046836878173053265, -0.005679187830537558, 0.00082612648839131, -0.01229857001453638, 0.0034825208131223917, 0.033957600593566895, -0.008295831270515919, -0.03639104589819908, 0.00042580944136716425, 0.057960204780101776, -0.0028344090096652508, 0.01130998320877552, -0.01307976059615612, -0.025316111743450165, -0.04042835161089897, -0.010902104899287224, 0.011918343603610992, -0.0028413222171366215, 0.018458224833011627, 0.009477986954152584, -0.01975790411233902, 0.00046188768465071917, 0.023269806057214737, -0.006567533127963543, -0.007915605790913105, -0.007742775604128838, -0.02672640234231949, -0.010473486967384815, 0.007113675121217966, -0.02318684756755829, -0.011068020947277546, 0.028178172186017036, 0.01119937188923359, 0.003816082375124097, -0.016093911603093147, -0.00019281325512565672, 0.024030257016420364, 0.013148892670869827, 0.015983300283551216, -0.0008019303204491735, 0.003556837560608983, -0.0084479209035635, 0.007168980780988932, -0.014151304960250854, -0.016882015392184258, 0.001670400146394968, -0.012402267195284367, -0.006429268978536129, 0.04501871019601822, 0.022440223023295403, 0.01768394745886326, -0.0040995231829583645, 0.0061734807677567005, -0.04416147246956825, -0.0024472700897604227, -3.656430635601282e-05, 0.013059020973742008, -0.027403894811868668, -0.0064361821860075, -0.025246979668736458, 0.006387789733707905, -0.00933972280472517, 0.009830559603869915, -0.001278940588235855, -0.009236025623977184, -0.012257090769708157, 0.005779428873211145, 0.007203546818345785, -0.005641165189445019, 0.0014690534444525838, 0.004210134036839008, -0.032381393015384674, -0.013598249293863773, -0.0024852927308529615, -0.016481051221489906, 0.0020221087615936995, -0.012381527572870255, 0.005644621793180704, -0.0028102127835154533, -0.024320611730217934, 0.0006381740677170455, 0.019909994676709175, -0.00644309539347887, -0.025233153253793716, -0.0010741372825577855, -0.02546820044517517, -0.006059413310140371, 0.008489400148391724, -0.0017853319877758622, 0.010286830365657806, -0.015361113473773003, -0.012644229456782341, -0.013826385140419006, -0.00255788117647171, -0.0017118792748078704, 0.01066705584526062, -0.003999281674623489, -0.01926015503704548, 0.0550290122628212, 0.004161742050200701, 0.024652443826198578, 0.020864015445113182, -0.01917719654738903, 0.022592313587665558, -0.017739251255989075, 0.008641490712761879, -0.023255979642271996, -0.017863688990473747, -0.015416419133543968, -0.01789134182035923, -0.016494877636432648, -0.00034933225833810866, 0.012167219072580338, 0.025233153253793716, 0.016577836126089096, 0.00998265016824007, 0.013591337017714977, 0.004268896300345659, -0.0009764884598553181, -0.011918343603610992, 0.0186656191945076, -0.015983300283551216, 0.0117455143481493, 0.005610055755823851, -0.0028240391984581947, 0.0021413613576442003, -0.0003823859733529389, -0.03182834014296532, -0.0042516132816672325, 0.025039583444595337, 0.012941496446728706, 0.012492138892412186, -0.003594860201701522, -0.011171719059348106, 0.01042509451508522, 0.023477202281355858, 0.01957816071808338, -0.0008801358053460717, -0.0013333819806575775, 0.0037158410996198654, 0.007245025597512722, 0.028731228783726692, -0.004604186397045851, -0.01749037764966488, -0.011240851134061813, 0.0049256496131420135, -0.005734493024647236, 0.003074642503634095, 0.045184627175331116, 0.007798081263899803, 0.03835439309477806, 0.002839593915268779, 0.02310388907790184, -0.0001812552654882893, 0.011282330378890038, -0.0020756861194968224, 0.02566177025437355, -0.03713766857981682, 0.01419969741255045, 0.01209808699786663, 0.02419617399573326, 0.013259503059089184, -0.021375590935349464, -0.003926693461835384, -0.0172968078404665, -0.004002738278359175, -0.021569160744547844, -0.004490118473768234, 0.026366915553808212, -0.033487506210803986, 0.01341159362345934, 0.009166893549263477, 0.0023556703235954046, 0.013992302119731903, 0.01798812672495842, -0.004127176012843847, 0.019108064472675323, -0.02104375883936882, 0.03323863074183464, -0.011137153021991253, 0.0135152917355299, -0.018831536173820496, -0.0009946356294676661, 0.008233612403273582, 0.017075585201382637, -0.01849970407783985, 0.005153784994035959, -0.01720002293586731, 0.004255069885402918, -0.0022727120667696, 0.0035395545419305563, -0.005416486412286758, -0.006429268978536129, 0.02909071370959282, -0.011040368117392063, -0.015043106861412525, 0.0181816965341568, 0.012478312477469444, 0.0016315134707838297, -0.004248156677931547, -0.01885918900370598, -0.004801212344318628, -0.0007440323242917657, 0.014490051195025444, -0.002417889190837741, -0.014573009684681892, -0.0044106170535087585, 0.004324201960116625, 0.003432400058954954, -0.004158285446465015, 0.03166242316365242, -0.015167544595897198, -0.015319635160267353, 0.004977498669177294, 0.028344089165329933, 0.018126390874385834, -0.02675405517220497, -0.029947949573397636, 0.01898362673819065, -0.012595837004482746, -0.02320067398250103, -0.027403894811868668, -0.010826059617102146, -0.033570464700460434, 0.0011674653505906463, -0.009249852038919926, -0.013798732310533524, -0.014877190813422203, 0.01111641339957714, 0.001271163229830563, -0.011462072841823101, -0.006961585022509098, 0.009173806756734848, 0.02102993242442608, -7.928567356429994e-05, -0.01974407769739628, 0.004901453386992216, 0.01690966822206974, 0.06221873313188553, 0.00046188768465071917, 0.016494877636432648, 0.0137572530657053, -0.004420986864715815, -0.023325111716985703, -0.024915145710110664, -0.018610313534736633, 0.050687529146671295, 0.020919321104884148, -0.016259828582406044, 0.008046955801546574, 0.00954020582139492, -0.011164805851876736, 0.019218675792217255, -0.012229437939822674, -0.010985063388943672, -0.02586916647851467, -0.009623164311051369, 0.019522855058312416, 0.02085018903017044, -0.005547836888581514, 0.03545084968209267, 0.0320219062268734, 0.027998430654406548, 0.020324785262346268, 0.03368107229471207, 0.00016980529471766204, -1.2540288025775226e-06, -0.02250935509800911, -0.01242992002516985, 0.008468660525977612, 0.00379879935644567, 0.015471724793314934, -0.05447595566511154, 0.02055983431637287, 0.0027825599536299706, -0.014061433263123035, -0.0005712025449611247, 0.013888604007661343, -0.010411268100142479, 0.015775905922055244, -0.005489075090736151, -0.01731063425540924, 0.02389199286699295, -0.01097123697400093, -0.0043311151675879955, 0.028980102390050888, -0.015070759691298008, -0.000483059324324131, 0.0019789014477282763, 0.0047735595144331455, -0.019038932397961617, 0.0013973290333524346, 0.008807407692074776, -0.009422681294381618, -0.0021465462632477283, -0.020006779581308365, -0.018306134268641472, -0.027113541960716248, -0.03227078169584274, -0.012416093610227108, -0.003515358315780759, -0.02909071370959282, -0.0159279964864254, -0.02812286652624607, -0.02810904011130333, -0.010335222817957401, -0.021804209798574448, 0.0041686552576720715, -0.02102993242442608, -0.019204849377274513, -0.026615791022777557, 0.03805021196603775, 0.018250828608870506, 0.0168128851801157, 0.002207036828622222, 0.0021932104136794806, 0.012823971919715405, 0.018015779554843903, 0.014095999300479889, -0.014158218167722225, 0.001802615006454289, -0.019923821091651917, 0.0015321363462135196, -0.011510465294122696, -0.002322832588106394, 0.004752819892019033, -0.003363268217071891, 0.003961259499192238, -0.022066909819841385, -0.023670772090554237, 0.010044869035482407, 0.013238763436675072, 0.00609743595123291, -0.00025535604800097644, 0.006723079830408096, 0.003320060670375824, 0.012768666259944439, -0.03144120052456856, 0.020283307880163193, -0.011316896416246891, -0.006567533127963543, -0.00481503875926137, 0.016467224806547165, 0.02065661922097206, -0.018209349364042282, -0.005520184058696032, -0.006284092087298632, -0.016771405935287476, 0.012962236069142818, -0.00889036525040865, -0.0025457830633968115, -0.017338287085294724, -0.0011631445959210396, -0.016370439901947975, 0.017061758786439896, 0.010335222817957401, -0.005959171801805496, -0.015236676670610905, -0.005616968963295221, -0.007265765219926834, 0.028648270294070244, 0.016840536147356033, 0.002174199093133211, 0.02194247394800186, 0.01554085686802864, 0.008157567121088505, -0.026297785341739655, 0.0038679311983287334, 0.007113675121217966, -0.0015442343428730965, -0.02252318151295185, -0.028482353314757347, -0.00811608787626028, -0.005229830276221037, -0.026214826852083206, 0.003881757613271475, -0.00604558689519763, -0.004344941582530737, -0.04465922340750694, 0.0048426915891468525, 0.025288458913564682, -0.015444071963429451, 0.01165564265102148, -0.02978203259408474, -0.03354281187057495, 0.00015738315414637327, 0.010687795467674732, 0.035423196852207184, -0.01699262671172619, -0.014877190813422203, -0.04120262712240219, -0.027348589152097702, -0.02387816645205021, -0.007099848706275225, 0.0034410415682941675, 0.005610055755823851, 0.04806051403284073, 0.03232608735561371, 0.021887168288230896, 0.018071085214614868, 0.027390068396925926, 0.025910645723342896, -0.008268178440630436, 0.0033857361413538456, -0.015043106861412525, -0.02371225133538246, 0.0008222378673963249, -0.029035408049821854, -0.012623489834368229, -0.013632815331220627, -0.013798732310533524, -0.008171393536031246, -0.017172370105981827, 0.008157567121088505, 0.010985063388943672, 0.008600011467933655, -0.025896819308400154, -0.047147974371910095, 0.01475275307893753, 0.03290679678320885, -0.0029450200963765383, 0.014877190813422203, -0.028758881613612175, -0.009070108644664288, 0.010618663392961025, -0.013701947405934334, 0.03498075529932976, -0.014268829487264156, 0.02801225706934929, 0.008862712420523167, 0.004949845839291811, 0.03166242316365242, 0.009242938831448555, -0.008959497325122356, -0.02025565505027771, -0.03899040445685387, -0.009395028464496136, 0.011939083226025105, 0.034068211913108826, 0.0033494418021291494, -0.0022969082929193974, 0.005250569898635149, 0.0023764099460095167, 0.025233153253793716, -0.024140868335962296, -0.027555985376238823, 0.00415482884272933, -0.013715773820877075, -0.01342542003840208, -0.04009651765227318, -0.022053083404898643, 0.0016384266782552004, 0.0019719882402569056, 0.0061838505789637566, -0.001863105338998139, 0.010991976596415043, -0.018513530492782593, -0.029256630688905716, 0.022689098492264748, 0.011773167178034782, 0.0102176982909441, -9.057362331077456e-05, 0.01966111920773983, 0.013349374756217003, 0.0181816965341568, -0.02694762498140335, -0.022039256989955902, -0.007445508148521185, -0.003088468685746193, 0.010100174695253372, 0.034565962851047516, -0.02732093632221222, -0.008040042594075203, -0.00899406336247921, 0.012305482290685177, 0.0006761966506019235, -0.04352546110749245, 0.03589329496026039, 0.01489101629704237, -0.0035430111456662416, -0.03177303448319435, -0.033293936401605606, -0.008945670910179615, 0.019688772037625313, -0.01052879262715578, 0.0077220359817147255, 0.005682644434273243, 0.017352113500237465, -0.015955649316310883, 0.0213202852755785, 0.0010214241920039058, 0.02556498534977436, -0.002699601696804166, 0.01229165680706501, -0.004697514232248068, 0.012146479450166225, 0.006799124646931887, -0.021983953192830086, 0.000917726312763989, 0.016259828582406044, -0.02694762498140335, -0.0009782167617231607, 0.012464486062526703, 0.004901453386992216, 0.000287329574348405, -0.0043207453563809395, -0.01731063425540924, 0.032602615654468536, -0.008510139770805836, -0.023076236248016357, 0.012174132280051708, -0.023242153227329254, 0.025786207988858223, -0.016757579520344734, -0.01797430031001568, 0.0028361373115330935, -0.024721575900912285, -0.00307118589989841, -0.009028629399836063, 0.006698883604258299, -0.01650870405137539, -0.009318983182311058, 0.0018077997956424952, -0.01790516823530197, -0.026919972151517868, -0.011869951151311398, 0.02210838906466961, -0.026104215532541275, -0.0027479941491037607, 0.007099848706275225, -0.011786993592977524, 0.0063324845395982265, 0.00016624067211523652, -0.011095673777163029, 0.004096066579222679, 0.03204955905675888, -0.02693379856646061, 0.014026867225766182, 0.021209673956036568, 0.02025565505027771, -0.04358076676726341, 0.016273654997348785, -0.010881365276873112, 0.006170024164021015, 0.011945996433496475, 0.004645665176212788, -0.04559941962361336, -0.032187823206186295, -0.004690601024776697, 0.009056282229721546, 0.022467875853180885, 0.011330722831189632, 0.01584503799676895, 0.015167544595897198, -0.000788103963714093, -0.030030908063054085, -0.018555009737610817, -0.005779428873211145, -0.01708941161632538, 0.0024144325871020555, 0.009049369022250175, -0.009581685066223145, 0.00874518882483244, -0.004182481672614813, -0.0027065149042755365, -0.00383336516097188, -0.014946321956813335, -0.025385243818163872, -0.025495853275060654, 0.003525728126987815, -0.011475899256765842, 0.013888604007661343, -0.017531856894493103, -0.02783251367509365, -0.016591662541031837, 0.026325438171625137, -0.0025872623082250357, 0.002929465379565954, 0.020476875826716423, -0.007625251542776823, -0.012623489834368229, 0.0033390719909220934, -0.0032422873191535473, -0.031192325055599213, -0.017186196520924568, -0.018361439928412437, -0.04512932151556015, -0.013688120990991592, -0.014503877609968185, 0.041921600699424744, 0.018955973908305168, -0.0028914427384734154, -0.03567207232117653, -0.016149217262864113, -0.019688772037625313, -0.004272352904081345, -0.02350485511124134, 0.03332158923149109, 0.018140217289328575, 0.02073957771062851, 0.012512878514826298, 0.029754381626844406, 0.0017905168933793902, 0.03008621372282505, -0.0283993948251009, -0.027002930641174316, -0.002915638964623213, -0.030639270320534706, 0.034842491149902344, -0.023435723036527634, -0.04866887629032135, -0.00653988029807806, 0.015582336112856865, -0.018140217289328575, 0.01008634828031063, 0.030611617490649223, 0.020905494689941406, -0.014476224780082703, -0.013577510602772236, 0.0024472700897604227, 0.008945670910179615, 0.014794232323765755, 0.003228460904210806, -0.019633466377854347, 0.0017049660673364997, 0.009242938831448555, -0.007238112390041351, -0.016149217262864113, 0.009139240719377995, 0.027846340090036392, -0.019827036187052727, 0.005243656691163778, -0.01809873804450035, -0.003826452186331153, -0.007894866168498993, -0.006425812374800444, -0.011344549246132374, 0.010107087902724743, -0.002704786602407694, 0.03528493642807007, -0.014517704024910927, -0.010162392631173134, -0.0043898774310946465, 0.005744862835854292, -0.0028862578328698874, 0.0015407777391374111, 0.024749228730797768, -0.020283307880163193, -0.009547119028866291, -0.012588923797011375, 0.014932495541870594, -0.007355636917054653, -0.012215611524879932, -0.02281353622674942, -0.017324460670351982, -0.01974407769739628, -0.014517704024910927, 0.004002738278359175, -0.02033861167728901, 0.008074608631432056, -0.02329745888710022, 0.011144066229462624, -0.0034998038318008184, -0.007431682199239731, 0.002656394150108099, -0.034759532660245895, -0.02387816645205021, 0.003919780254364014, 0.01661931537091732, -0.03384698927402496, 0.00749390060082078, 0.03127528354525566, -0.017379766330122948, -0.003632882609963417, 0.21115654706954956, 0.0038506481796503067, -0.0013273329241201282, 0.030943449586629868, 0.0006325571448542178, -0.014282655902206898, -0.0038471915759146214, 0.010266090743243694, 0.00854470580816269, 0.02842704765498638, 0.018306134268641472, 0.012920756824314594, -0.030307436361908913, -0.0007578587392345071, 0.010542619042098522, -0.01209117379039526, -0.030224477872252464, -0.013446159660816193, -0.01076384074985981, 0.008143740706145763, 0.0037192977033555508, -0.006277178879827261, -0.014821885153651237, 0.0011069749016314745, 0.027155021205544472, 0.027652770280838013, -0.011192458681762218, 0.00565499160438776, 0.004382964223623276, 0.025979777798056602, -0.020698098465800285, -0.01489101629704237, 0.01787751540541649, -0.002132719848304987, -0.004790842533111572, -0.0014474496711045504, 0.007113675121217966, -0.022246653214097023, 0.007300331257283688, 0.023947298526763916, 0.013847124762833118, 0.009609337896108627, 0.0031022951006889343, -0.025025757029652596, 0.024901319295167923, 0.0027013299986720085, 0.009132327511906624, -0.015181371010839939, 0.003444498172029853, 0.031109366565942764, -0.009574771858751774, 0.01023152470588684, 0.012360787950456142, 1.1335205272189341e-05, -0.012823971919715405, -0.02114054374396801, -0.02555115893483162, -0.001802615006454289, -0.023325111716985703, 0.025896819308400154, -0.009809819981455803, 0.003292407840490341, -0.005371550563722849, 0.02900775521993637, -0.039183974266052246, 0.01533346064388752, -0.014420920051634312, 0.03915632143616676, 0.0137572530657053, -0.009236025623977184, -0.02458331361413002, -0.007362550124526024, -0.02025565505027771, -0.01692349463701248, -0.00393015006557107, -0.0035499243531376123, -0.0006563212373293936, 0.033874642103910446, 0.02447270229458809, 0.010383615270256996, 0.02722415141761303, 0.005070826970040798, 0.005057000555098057, -0.0003033163375221193, 0.00274108094163239, -0.004870343953371048, 0.03207721188664436, -0.021375590935349464, 0.013010628521442413, -0.01838909275829792, -0.017269155010581017, 0.0033701814245432615, -0.015222850255668163, 0.01663314178586006, -0.011088760569691658, -0.013052107766270638, 0.02122350037097931, 0.02438974380493164, 0.0005815722979605198, -0.009844386018812656, -0.01867944560945034, 0.04839234799146652, 0.01509841252118349, 0.022039256989955902, -0.024693923071026802, -0.00047484991955570877, -0.013038281351327896, 0.027804860845208168, -0.0060110208578407764, -0.002260613953694701, -0.0146421417593956, -0.03752480819821358, 0.008364963345229626, 0.004210134036839008, 0.008053869009017944, 0.037994906306266785, 0.014151304960250854, -0.009070108644664288, -0.007604511920362711, -0.007991650141775608, 0.01917719654738903, -0.02615952119231224, -0.00830965768545866, -0.000480466871522367, -0.01760098896920681, -0.02134793810546398, -0.001154503202997148, 0.005516727454960346, -0.009595511481165886, -0.023767555132508278, 0.008053869009017944, -0.004949845839291811, 0.00324401562102139, -0.012920756824314594, -0.005675731226801872, -0.0027877448592334986, 0.0063221147283911705, -0.025108715519309044, -0.00011449975136201829, 0.0013938724296167493, 0.0060317604802548885, 0.012319308705627918, 0.007549206260591745, -0.01141368132084608, 0.020103564485907555, -0.014794232323765755, 0.01076384074985981, 0.007030716631561518, -0.007715122774243355, -0.013625902123749256, 0.017476551234722137, 0.015554683282971382, -0.008738275617361069, 0.011192458681762218, 0.02851000614464283, -0.0310540609061718, -0.03232608735561371, -0.02517784759402275, 0.006049043498933315, -0.002148274565115571, -0.04335954412817955, -0.029367242008447647, 0.02842704765498638, 0.012464486062526703, -0.018541183322668076, 0.00831657089293003, -0.17719894647598267, 0.017836036160588264, 0.02075340412557125, -0.0013359744334593415, 0.010978150181472301, 0.02712736837565899, 0.019329287111759186, -0.002877616323530674, -0.020864015445113182, -0.019716424867510796, 0.01573442667722702, -0.0064742048271000385, -0.02537141740322113, -0.027362415567040443, 0.0190665852278471, -0.008088435046374798, -0.0021517311688512564, 0.027058236300945282, 0.04142384976148605, -0.02152768149971962, 0.010473486967384815, -0.007583772297948599, 0.006933932192623615, -0.017282981425523758, 0.026684923097491264, 0.016937321051955223, -0.0099757369607687, 0.028592964634299278, -0.00114931829739362, -0.026076562702655792, -0.012250177562236786, -0.017656294628977776, 0.014766579493880272, 0.021693598479032516, 0.016467224806547165, 0.006007564254105091, 0.014151304960250854, -0.003491162322461605, -0.025578811764717102, 0.018513530492782593, 0.014918669126927853, 0.015997126698493958, 0.013736513443291187, -0.004376051016151905, 0.013632815331220627, 0.014130565337836742, 0.010646316222846508, -0.0027013299986720085, 0.004116806201636791, -0.003577577183023095, 0.02969907596707344, -0.024237653240561485, -0.011033454909920692, -0.021693598479032516, 0.002606273628771305, -0.0015044835163280368, -0.004096066579222679, 0.030611617490649223, 0.01141368132084608, -0.03509136661887169, -0.01120628509670496, -0.011883777566254139, -0.010210785083472729, 0.005278222728520632, -0.0058105383068323135, -0.03146885335445404, -0.027113541960716248, 0.02694762498140335, -0.01603860594332218, 0.008226699195802212, -4.706911931862123e-05, -0.015112238936126232, 0.010985063388943672, -0.002735896036028862, 0.01672992669045925, 0.007853386923670769, -0.041230279952287674, 0.00235912692733109, 0.025800034403800964, 0.02202543057501316, 0.018513530492782593, 0.015955649316310883, -0.001192525727674365, 0.004714797250926495, -0.030556311830878258, 0.006947758607566357, 0.00943650770932436, 0.008143740706145763, -0.005544380284845829, 0.006194220390170813, 0.02694762498140335, -0.024915145710110664, 0.03852031007409096, -0.008157567121088505, 0.0046664047986269, 0.0017170641804113984, 0.027486853301525116, -0.011759340763092041, 0.014185870997607708, -0.01749037764966488, 0.008434094488620758, 0.024251479655504227, -0.018209349364042282, 0.0186656191945076, 0.028731228783726692, 0.017448898404836655, 0.028786534443497658, -0.01856883428990841, 0.03473187983036041, -0.020698098465800285, -0.028980102390050888, 0.019702598452568054, 0.02279970981180668, 0.013135066255927086, -0.010701621882617474, 0.04009651765227318, 0.006802581250667572, -0.00875210203230381, 0.00954020582139492, -0.012872364372015, 0.05287209525704384, -0.028537658974528313, -0.02772190235555172, 0.008337310515344143, -0.017545683309435844, -0.01671610027551651, -0.10950496792793274, -0.019509028643369675, 0.02114054374396801, 0.00577597226947546, 0.003501532133668661, 0.0019512486178427935, 0.0059626284055411816, 0.017559509724378586, 0.00191668258048594, 0.01996530033648014, -0.022384917363524437, -0.01321802381426096, 0.00017099350225180387, 0.014490051195025444, 0.010819146409630775, -0.011475899256765842, 0.016937321051955223, -0.0316900759935379, 0.0026546658482402563, 0.014420920051634312, 0.011904517188668251, -0.013791819103062153, 0.010860625654459, 0.012319308705627918, -0.014151304960250854, -0.00884197372943163, -0.03182834014296532, 0.014918669126927853, 0.008129914291203022, 0.01975790411233902, 0.036142170429229736, -0.014379440806806087, 0.03417882323265076, -0.02586916647851467, -0.00786721333861351, -0.01332172192633152, -0.007708209566771984, -0.0006701475940644741, 0.024417396634817123, -0.025205500423908234, 0.006052500102669001, 0.014600662514567375, 0.00023396835604216903, -0.0172968078404665, -0.0020653163082897663, 0.00900097656995058, -0.004697514232248068, 0.032574962824583054, -0.0006018798449076712, -0.005693014245480299, -0.014047606848180294, -0.0252608060836792, 0.0036155995912849903, -0.03188364580273628, 0.034565962851047516, -0.023477202281355858, 0.013549857772886753, 0.020670445635914803, -0.028053734451532364, 0.0003298889205325395, -0.02279970981180668, -0.00043531510164029896, -0.02466627024114132, 0.01682671159505844, -0.0015606532106176019, 0.006850973702967167, -0.016674621030688286, 0.025813860818743706, 0.010445834137499332, 0.006560619920492172, -0.010376702062785625, 0.015471724793314934, -0.01710323803126812, 0.006422355771064758, -0.018167870119214058, 0.000437907554442063, -0.0037815163377672434, -0.012803232297301292, -0.008468660525977612, 0.015043106861412525, -0.0213202852755785, -0.01052879262715578, -0.00786721333861351, -0.017863688990473747, 0.008586185052990913, -0.0007708209450356662, 0.010708535090088844, 0.0047735595144331455, 0.019619639962911606, -0.042917098850011826, 0.004680231213569641, 0.020518355071544647, 0.011019628494977951, 0.008786668069660664, -0.01610773801803589, 0.009318983182311058, -0.007507727015763521, -0.011137153021991253, 0.0172968078404665, -0.010639403015375137, -0.004344941582530737, -0.0015079401200637221, -0.056688178330659866, 0.011863038875162601, 0.010653229430317879, 0.006470748223364353, 0.004604186397045851, -0.034261781722307205, 0.0009488356881774962, -0.022454049438238144, -0.004711340647190809, 0.0006308288429863751, -0.02387816645205021, 0.008848886005580425, -0.028841840103268623, -0.011980562470853329, -0.03086049109697342, -0.032685574144124985, 0.010743101127445698, -0.0009592054411768913, 0.02192864753305912, 0.011579597368836403, -0.011538118124008179, 0.006598642095923424, 0.017269155010581017, 0.021099064499139786, 0.002811941085383296, 0.029947949573397636, -0.017462724819779396, 0.013840211555361748, -0.005105392541736364, -0.02291031926870346, 0.02466627024114132, 0.00742476899176836, -0.0014638685388490558, -0.005696470849215984, -0.007514640223234892, -0.03097110241651535, -0.019702598452568054, 0.013501465320587158, 0.01243683323264122, -0.00020674765983130783, -0.005727579817175865, -0.02310388907790184, 0.040456004440784454, -0.014151304960250854, -0.036142170429229736, -0.02017269656062126, -0.020960800349712372, -0.028136692941188812, 0.013446159660816193, 0.0036743618547916412, 0.04136854410171509, 0.006854430306702852, -0.025523506104946136, -0.035533808171749115, -0.014904842711985111, -0.011081847362220287, 0.0017291622934862971, 0.021679772064089775, -0.005599685944616795, 0.0032664835453033447, 0.04410616680979729, 0.002580349100753665, -0.0012633859878405929, -0.01032139640301466, 0.04416147246956825, -0.0003994528960902244, -0.05262322351336479, -0.006249526049941778, 0.003871387802064419, -0.024735402315855026, -0.005852017551660538, -0.01790516823530197, 0.02506723627448082, 0.013840211555361748, 0.01243683323264122, -0.000879703729879111, -0.010722361505031586, -0.030058560892939568, -0.014337961561977863, 0.02201160416007042, 0.013591337017714977, -0.006771472282707691, -0.014040693640708923, 0.01253361813724041, 0.016978800296783447, -0.0034583245869725943, -0.02055983431637287, 0.013743426650762558, 0.020711924880743027, 0.013722687028348446, -0.030943449586629868, -0.0012521520256996155, -0.006273722276091576, -0.0022001236211508512, -0.0009600695921108127, 0.012720274738967419, -0.0030037821270525455, -0.006740362849086523, 0.02154150791466236, 0.020407743752002716, 0.0071275015361607075, 0.009312069974839687, -0.0020428483840078115, 0.004348398186266422, -0.004026934504508972, 0.016093911603093147, -0.019840862601995468, -0.025813860818743706, 0.03359811753034592, 0.013059020973742008, -0.0004925649845972657, -0.030252130702137947, 0.012575097382068634, 0.020393917337059975, -0.01307284738868475, 0.0035291847307235003, -0.007618338335305452, -0.014683621004223824, -0.029560811817646027, -0.0007150833262130618, 0.01584503799676895, 0.025302285328507423, -0.0006308288429863751, -0.017932821065187454, 0.0344276987016201, 0.009740687906742096, 0.009768340736627579, -0.004911823198199272, 0.005278222728520632, -0.015209023840725422, -0.0007194040808826685, -0.01711706444621086, 0.01007252186536789, -0.015347287058830261, 0.0003545171639416367, -0.021472375839948654, -0.009388115257024765, 0.02408556267619133, -0.01708941161632538, 0.08904191851615906, 0.03097110241651535, -0.021748904138803482, 0.011178632266819477, 0.002519858768209815, 0.0243759173899889, 0.007563032675534487, -0.005036260932683945, -0.011759340763092041, -0.017144717276096344, 0.029173672199249268, -0.008779754862189293, -0.028924796730279922, -0.003129947930574417, -0.01140676811337471, -0.000704281497746706, -0.00786030013114214, 0.01856883428990841, -0.0029778575990349054, -0.004255069885402918, 0.01877623051404953, -0.011081847362220287, 0.008613837882876396, -0.01234004832804203, -0.0160109531134367, -0.0015234948368743062, 0.0204353965818882, 0.01847205124795437, -0.007777341641485691, -0.030639270320534706, 0.025924472138285637, -0.01297606248408556, -0.02506723627448082, -0.006882083136588335, -0.023573987185955048, 0.00942959450185299, -0.022965624928474426, -0.022578487172722816, 0.012955322861671448, 0.007715122774243355, 0.009858212433755398, 0.037110019475221634, -0.02408556267619133, -0.016895841807127, 0.02537141740322113, 0.010017216205596924, -0.003653622232377529, -0.009768340736627579, -1.5514176993747242e-05], "42d0f166-f343-47cd-ba6f-1383e67d8d54": [-0.0034703975543379784, 0.013694282621145248, -0.0016927076503634453, -0.026458963751792908, 0.01407583523541689, 0.018633658066391945, -0.013611034490168095, -0.028415288776159286, -0.011120534501969814, -0.03388190269470215, 0.015511862002313137, 0.027388565242290497, 0.0038467475678771734, -0.02176932990550995, 0.016025224700570107, 0.016413714736700058, 0.01925801858305931, 0.002905005356296897, 0.007180132903158665, -0.0038294042460620403, -0.011016474105417728, -0.011606147512793541, -0.02301804907619953, 0.006500274874269962, -0.027666058391332626, -0.010856916196644306, 0.028332041576504707, -0.012605122290551662, -0.010260305367410183, 0.023448163643479347, 0.010385178029537201, -0.034298140555620193, -0.028498537838459015, -0.0053694904781877995, -0.009129521436989307, 0.015733856707811356, 0.0012183679500594735, 0.002330941613763571, 0.014263142831623554, -0.0071454462595283985, 0.0065904599614441395, 0.025515487417578697, 0.007762868423014879, -0.006233187858015299, -0.024280643090605736, 0.018272917717695236, 0.004478044342249632, -0.00803342368453741, -0.01436026580631733, -0.015983600169420242, -0.012702244333922863, 0.007783680222928524, 8.845091360853985e-05, 0.008963026106357574, -0.002825226169079542, -0.0018227825639769435, 0.0008610956720076501, 0.006725737825036049, 0.01756531000137329, -0.012702244333922863, -0.002478359965607524, 0.0014117459068074822, -0.014943000860512257, 0.0061534084379673, -0.03246668726205826, -0.022671183571219444, -0.015400865115225315, -0.008456600829958916, -0.01587260328233242, -0.004311548545956612, 0.03743381425738335, 0.028887027874588966, 7.013203139649704e-05, -0.016691207885742188, 0.008685532957315445, -0.012258255854249, -0.030551984906196594, -0.020298616960644722, -0.0056851389817893505, -0.013624909333884716, 0.022504687309265137, -0.008012612350285053, -0.0035241618752479553, 0.0027766649145632982, 0.04179045557975769, 0.03932076692581177, 0.011439651250839233, 0.008560661226511002, 0.0038120609242469072, -0.023684032261371613, 0.016580210998654366, 0.02160283550620079, 0.026042724028229713, 0.0399867482483387, 0.007721244357526302, 0.018758531659841537, 0.01291036419570446, -0.003191170282661915, -0.025570984929800034, -0.014172958210110664, -0.008692470379173756, -0.010170120745897293, -0.006410089787095785, -0.015164995566010475, 0.0001233543298440054, -0.022601809352636337, 0.005119747016578913, -0.01248718798160553, 0.009039336815476418, 0.020243119448423386, -0.027194319292902946, 0.03993125259876251, 0.004377453122287989, -0.006753487512469292, 0.007103822194039822, 0.011474338360130787, 0.02261568419635296, -0.014103584922850132, -0.00506771681830287, -0.026070473715662956, 0.005952225998044014, 0.0044641694985330105, 0.052251942455768585, -0.015234368853271008, 0.009781630709767342, 0.006808985956013203, -0.010343553498387337, -0.01634434051811695, 0.02224106900393963, -0.0003345092118252069, 0.01159227266907692, 0.005345209967344999, 0.019119272008538246, 0.005282774101942778, -0.02095072530210018, 0.01187670323997736, -0.03396515175700188, 0.034020647406578064, 0.008387227542698383, -0.039098773151636124, 0.0149707505479455, 0.018189670518040657, 0.006611272227019072, 0.0003219353093300015, 0.012286005541682243, 0.053278665989637375, -0.006788174156099558, 0.021949701011180878, 0.00010221717093372717, -0.004516199696809053, -0.001826251158490777, -0.009823254309594631, -0.021144971251487732, 0.014193769544363022, 0.005289711523801088, 0.023406539112329483, -0.0008155694231390953, 0.03915426880121231, -0.0008823412354104221, -0.006323372945189476, 0.00312353135086596, 0.03213369473814964, -0.01473488099873066, -0.02226881869137287, 0.011099722236394882, 0.034880876541137695, 0.016011349856853485, -0.01942451484501362, -0.01972975581884384, -0.012195819988846779, 0.0006876625120639801, 0.02817942015826702, -0.010281117632985115, 0.026417339220643044, 0.005993850063532591, 0.011099722236394882, 0.025668106973171234, -0.004554355051368475, -0.027485687285661697, -0.016372090205550194, 0.02525186911225319, -0.0262924674898386, 0.0023031923919916153, 0.015109497122466564, -0.009004649706184864, 0.00830397941172123, 0.042761679738759995, 0.02253243699669838, 0.01318785734474659, 0.00035640515852719545, 0.014485137537121773, -0.00826235581189394, -0.02290705218911171, -0.03041323833167553, -0.6109287142753601, -0.013950963504612446, 0.004679226782172918, 0.0049012210220098495, -0.0060979099944233894, 0.025654233992099762, 0.016372090205550194, -0.009851003997027874, 0.0014282220508903265, 0.037322815507650375, 0.010621046647429466, -0.002830429235473275, -0.00675695575773716, -0.008394164964556694, -0.022671183571219444, -0.01999337412416935, -0.006593928672373295, -0.0006096175638958812, -0.008172170259058475, -0.00859534740447998, -0.0328829288482666, 0.0071454462595283985, 0.001855734852142632, -0.004970594309270382, -0.004949782509356737, -0.01737106591463089, -0.0029344891663640738, 0.00245407922193408, -0.0009573510615155101, 0.03457563370466232, -0.03812754526734352, 0.023406539112329483, 0.02608434669673443, -0.011238468810915947, 0.043427664786577225, -0.023739531636238098, -0.005421520676463842, 0.02883152849972248, 0.023614659905433655, 0.013493100181221962, -0.02020149491727352, -0.008234606124460697, 0.010600234381854534, 0.017981549724936485, -0.00493243895471096, -0.002950098132714629, 0.007915489375591278, 0.00859534740447998, -0.01005218643695116, -0.006687582936137915, 0.013382102362811565, 0.0014828535495325923, -0.0113217169418931, -0.006087503861635923, 0.008324791677296162, -0.026486711576581, 0.024169646203517914, -0.001921639428474009, 0.00532786687836051, 0.0008489553001709282, 0.007086479105055332, 0.01037824060767889, 0.0004214425862301141, -0.03768355771899223, -0.04278942942619324, 0.024724630638957024, -0.03612959757447243, -0.004665351938456297, 0.002551201730966568, -0.00443988898769021, 0.012771617621183395, -0.0011177767300978303, -0.0016727627953514457, 0.004141584038734436, -0.012098697014153004, 0.022032948210835457, 0.03687882795929909, -0.009296017698943615, 0.010405989363789558, 0.02658383548259735, 0.002939691999927163, 0.002282380359247327, -0.00020573509391397238, -0.014707132242619991, 0.028859278187155724, 0.016177846118807793, -0.0038189981132745743, -0.015456363558769226, -0.008713281713426113, 0.003003862453624606, 0.0009599525365047157, 0.026833578944206238, -0.013284980319440365, -0.0218664538115263, 0.024544261395931244, 0.06404539942741394, -0.008657783269882202, 0.003933464176952839, -0.0061083161272108555, -0.02150571160018444, -0.02450263686478138, -0.015206619165837765, 0.01197382528334856, -0.0036420964170247316, 0.014873627573251724, 0.030857227742671967, -0.008817342109978199, -0.014096647500991821, 0.011897514574229717, -0.023503661155700684, -0.010357428342103958, -0.004686164204031229, -0.026639332994818687, -0.01159227266907692, 0.006243593990802765, -0.030829478055238724, -0.006857546977698803, 0.02534899115562439, 0.02301804907619953, -0.024058647453784943, -0.03399290144443512, -0.012237443588674068, 0.011751830577850342, 0.03213369473814964, 0.009316829033195972, -0.0017568778712302446, 0.00626440579071641, 0.009178082458674908, -0.003494678298011422, -0.01914702169597149, 0.008519036695361137, -0.007617184426635504, -0.008741031400859356, -0.010905477218329906, 0.04648008570075035, 0.015275992453098297, 0.015109497122466564, -0.008963026106357574, 0.02364240773022175, -0.050753481686115265, -0.0020378397312015295, 0.003130468539893627, 0.025418363511562347, -0.01764855906367302, 0.006770830601453781, -0.03304942324757576, 0.013812216930091381, 0.0024454076774418354, 0.015289867296814919, -0.015317616984248161, -0.009386202320456505, -0.008137484081089497, 0.015206619165837765, 0.020506737753748894, -0.014540635980665684, -0.006555773317813873, -0.007124634459614754, -0.03785005211830139, -0.008137484081089497, -0.003825935535132885, -0.009372328408062458, 0.0013441069750115275, -0.004401733633130789, -0.0031408744398504496, -0.021894201636314392, -0.014762630686163902, -0.010718169622123241, 0.030496487393975258, -0.019507762044668198, -0.028290417045354843, -0.016954826191067696, -0.005490893963724375, -0.001119511085562408, 0.012029323726892471, 0.009559636004269123, 0.014290892519056797, -0.015650607645511627, -0.007873865775763988, -0.011904451996088028, 0.00231186393648386, 0.002800945658236742, 0.02160283550620079, -0.012688370421528816, -0.017162945121526718, 0.036851078271865845, 0.00011414069740567356, 0.03568560630083084, 0.01971588097512722, -0.03193945065140724, 0.014048086479306221, -0.012660620734095573, 0.012272130697965622, -0.0080264862626791, 8.644559420645237e-05, -0.021519586443901062, -0.017107447609305382, 0.0017325972439721227, -0.0038398101460188627, 0.010329678654670715, 0.03174520656466484, 0.01263287104666233, 0.012279068119823933, 0.004863065667450428, -0.005626171827316284, 0.008019549772143364, -0.024766255170106888, 0.011855890974402428, -0.013271105475723743, 0.007610247004777193, 0.005053842440247536, -0.0061742207035422325, 0.0013397712027654052, 0.0060562859289348125, -0.014249268919229507, -0.005293180234730244, 0.033465661108493805, 0.017218444496393204, 0.0200904980301857, -0.0033489943016320467, -0.016219468787312508, 0.006888765376061201, 0.0326886810362339, -0.001052739331498742, -0.01248718798160553, 0.004325422924011946, 0.013312729075551033, 0.0008480881806463003, 0.01013543363660574, 0.004762474447488785, -0.022976424545049667, -0.01680220477283001, 0.022407565265893936, 0.012126446701586246, 0.0029882534872740507, 0.041068971157073975, 0.016594083979725838, 0.03471438214182854, -0.004630665294826031, 0.01906377263367176, -0.006156877148896456, 0.0044745756313204765, -0.0006386676104739308, 0.01689932681620121, -0.04120771959424019, 0.018481038510799408, -0.007117697037756443, 0.024280643090605736, 0.005719825625419617, -0.0013345681363716722, 0.012688370421528816, -0.008158296346664429, -0.004065273329615593, -0.01154371164739132, -0.0019077648175880313, 0.03782230243086815, -0.012709181755781174, 0.006139534059911966, 0.0157616063952446, -0.0021332278847694397, 0.011474338360130787, 0.013819154351949692, 0.01004524901509285, 0.02665320783853531, -0.0016085925744846463, 0.032549936324357986, -0.0010752856032922864, 0.0074506886303424835, -0.02759668417274952, -0.0017083166167140007, -0.003947338555008173, 0.017704056575894356, -0.016857704147696495, 0.0030576265417039394, -0.005296648945659399, 0.004592509940266609, -0.006951201241463423, 0.010405989363789558, 0.00020465113630052656, -0.0022789116483181715, 0.019036022946238518, -0.01032274216413498, -0.023725656792521477, 0.01615009643137455, 0.011155220679938793, -0.0006902639870531857, -0.004870003089308739, -0.01775955595076084, -0.0016909732948988676, 0.006316435523331165, 0.025404488667845726, -0.007464563474059105, 0.0035900664515793324, -0.018841778859496117, 0.008408039808273315, 0.00040626717964187264, 0.009400077164173126, 0.04256743565201759, -0.020811978727579117, -0.02253243699669838, 0.0037322817370295525, 0.022698931396007538, 0.018911151215434074, -0.023503661155700684, -0.029553011059761047, 0.018481038510799408, -0.009212769567966461, -0.018370039761066437, -0.02139471471309662, -0.009351516142487526, -0.02121434360742569, 0.015109497122466564, -0.006614740937948227, -0.011855890974402428, -0.00732581689953804, 0.000172132407897152, 0.0012799367541447282, 0.0032397315371781588, -0.024017024785280228, -0.0022355534601956606, -0.00020638546266127378, -0.00013300155114848167, -0.006434370297938585, 0.010149308480322361, 0.014901377260684967, 0.07320266962051392, 0.008130546659231186, 0.02329554222524166, 0.014804254285991192, -0.01008687261492014, -0.005529049318283796, -0.021450214087963104, -0.0013683876022696495, 0.044371139258146286, 0.02046511322259903, -0.03876578062772751, -0.0077004325576126575, 0.01979913003742695, -0.007825303822755814, 0.02140858955681324, -0.0023673626128584146, 0.002646590117365122, -0.019410640001296997, -0.011259281076490879, 0.02946976199746132, 0.015803229063749313, -0.002724634949117899, 0.03119022026658058, 0.014776505529880524, 0.03329916670918465, 0.027277568355202675, 0.03099597431719303, 0.009018524549901485, 0.010523924604058266, -0.02798517420887947, 0.003992431331425905, 0.0038467475678771734, 0.0005480488180182874, 0.0130976727232337, -0.04761780798435211, 0.023115171119570732, -0.0014152146177366376, -0.010412926785647869, -0.03729506582021713, -0.0028477725572884083, -0.00849128793925047, 0.01689932681620121, -0.004384390544146299, -0.02056223526597023, 0.007735119201242924, -0.03532486781477928, -0.014943000860512257, 0.03513062000274658, 0.006028536707162857, 0.0006651161820627749, 0.0041693332605063915, 0.003406227333471179, -0.006014661863446236, 0.015636734664440155, -0.0008853762992657721, -0.01802317425608635, -0.02609822154045105, -0.019230268895626068, -0.013833029195666313, -0.022365940734744072, -0.01764855906367302, -0.027818679809570312, -0.004242175258696079, -0.03443688899278641, -0.03032999113202095, -0.03463113307952881, -0.022046823054552078, -0.014582260511815548, -0.023961525410413742, -0.007783680222928524, -0.014776505529880524, -0.025029873475432396, -0.023822778835892677, 0.02507149800658226, 0.02544611319899559, 0.027582809329032898, -0.002017027698457241, 0.0050746542401611805, 0.015137245878577232, 0.019965626299381256, 0.0016328732017427683, -0.022019073367118835, 0.008699407801032066, -0.01813417114317417, 0.018342291936278343, -0.018814029172062874, -0.02318454533815384, -0.0007197476224973798, -0.007520061917603016, 0.016108471900224686, -0.00490815844386816, -0.016219468787312508, 0.014526762068271637, 0.004353172145783901, 0.002615372184664011, 0.008553723804652691, 0.015386990271508694, -0.008470475673675537, 0.014145208522677422, -0.03293842449784279, 0.031217969954013824, -0.0053139920346438885, -0.004141584038734436, -0.014166020788252354, 0.01895277574658394, 0.02272668108344078, -0.011099722236394882, -0.003909183666110039, -0.028332041576504707, -0.035824354737997055, 0.025043748319149017, -0.008942213840782642, -0.01689932681620121, -0.021935826167464256, -0.012223569676280022, -0.009934251196682453, 0.005001812241971493, 0.008248480968177319, -0.0018522661412134767, -0.020909102633595467, 0.00357966055162251, -0.006094441283494234, 0.042123448103666306, 0.010614109225571156, 0.007804492488503456, 0.012230506166815758, 0.01989625208079815, 0.0047798180021345615, -0.029608508571982384, 0.0022893177811056376, 0.00252518686465919, 0.0010917617473751307, -0.021144971251487732, -0.026236968114972115, -0.002088135341182351, -0.008005674928426743, -0.014804254285991192, 0.011626958847045898, 0.0017863615648820996, 0.014554510824382305, -0.046424590051174164, 0.010634921491146088, 0.016857704147696495, -0.0001823216152843088, 0.0008966494351625443, -0.03160645812749863, -0.03821079432964325, -0.007721244357526302, 0.01934126578271389, 0.02590397745370865, -0.029414264485239983, -0.00831091683357954, -0.04442663863301277, -0.02779093012213707, -0.015137245878577232, -0.009025461971759796, 0.011675520800054073, 0.000685494567733258, 0.034520138055086136, 0.04498162493109703, 0.014512887224555016, 0.022046823054552078, 0.04345541447401047, 0.015941975638270378, -0.00577185582369566, 0.01037824060767889, 0.008560661226511002, -0.021075597032904625, 0.004370515700429678, -0.02946976199746132, -0.006125659216195345, -0.002407252322882414, -0.019785255193710327, -0.012077885679900646, -0.015386990271508694, -0.0073327538557350636, 0.007228694390505552, -0.012834053486585617, -0.01999337412416935, -0.048783279955387115, 0.003244934370741248, 0.03640709072351456, 0.00518565159291029, 0.006354590877890587, -0.013250293210148811, -0.000416239578044042, 0.012112571857869625, -0.007762868423014879, 0.032161444425582886, -0.004422545433044434, 0.040042247623205185, 0.003255340503528714, 0.010738980956375599, 0.017343316227197647, 0.008581472560763359, -0.00614647101610899, -0.013347416184842587, -0.03762805834412575, -0.016219468787312508, 0.02139471471309662, 0.01774568110704422, 0.013444538228213787, 0.005955694708973169, -0.004429482854902744, 0.012757743708789349, 0.008747968822717667, -0.017329441383481026, -0.02808229811489582, 0.008081985637545586, -0.024433264508843422, -0.005851634778082371, -0.03596309944987297, -0.010794480331242085, 0.00014297396410256624, -0.024821754544973373, -0.003957744687795639, -0.0032345284707844257, 0.014887502416968346, -0.019091522321105003, -0.020673232153058052, 0.007915489375591278, -0.007686557713896036, 0.018925026059150696, 0.018342291936278343, 0.021172720938920975, 0.02479400485754013, 0.01276468113064766, -0.027111072093248367, -0.014679382555186749, -0.0023673626128584146, -0.005230744369328022, 0.0005003546830266714, 0.03632384166121483, -0.028776030987501144, -0.010149308480322361, -0.018647532910108566, -0.005310523323714733, -0.014249268919229507, -0.03607409819960594, 0.015123371966183186, 0.02261568419635296, 0.00915033370256424, -0.034409139305353165, -0.03476988151669502, -0.008130546659231186, -0.011176032945513725, -0.014637758955359459, 0.007103822194039822, -0.0018592034466564655, 0.011953013949096203, -0.01624721847474575, 0.03501962497830391, -0.01802317425608635, 0.005272367969155312, 0.00032605434535071254, 0.000685494567733258, 0.0019736692775040865, -0.00168923893943429, 0.0027818679809570312, -0.020451238378882408, -0.01013543363660574, 0.009830191731452942, -0.023434288799762726, -0.016122346743941307, 0.023975400254130363, 0.010510049760341644, 0.00033732751035131514, -0.004481513053178787, -0.01498462539166212, 0.03274418041110039, -0.010843041352927685, -0.02113109640777111, 0.0025945601519197226, -0.014915252104401588, 0.028387539088726044, -0.010232556611299515, -0.01820354536175728, 0.000904453918337822, -0.018439413979649544, -0.007922426797449589, 0.0019719351548701525, 0.011731019243597984, -0.013791404664516449, 0.006628615316003561, 0.0007891209097579122, -0.009733068756759167, -0.01567835733294487, -0.010829166509211063, 0.030024748295545578, -0.03529711812734604, -0.0070691355504095554, -0.007922426797449589, -0.007832241244614124, 0.01037824060767889, 0.005570672918111086, -0.01164777111262083, 0.009455575607717037, 0.030857227742671967, -0.02046511322259903, 0.021186595782637596, 0.011495149694383144, 0.014512887224555016, -0.04231769219040871, 0.016274968162178993, -0.0023066611029207706, -0.0017794242594391108, 0.009080960415303707, 0.011911389417946339, -0.03438138961791992, -0.03418714553117752, -0.003035080386325717, 0.0027801336254924536, 0.0024644851218909025, 0.005261962302029133, 0.01810642145574093, 0.021283717826008797, -0.01249412540346384, -0.028803778812289238, -0.016205593943595886, 0.013437601737678051, 0.008199919946491718, -0.0037530935369431973, 0.004082616418600082, -0.012729994021356106, 0.005955694708973169, 0.016455339267849922, 0.0033021674025803804, 0.006926920264959335, -0.026902951300144196, -0.008421914651989937, -0.019840754568576813, -0.005320929456502199, -0.003198107471689582, 0.016316592693328857, -0.01961875893175602, -0.04301142320036888, -0.027471812441945076, 0.03041323833167553, -0.01131477952003479, -0.004637602716684341, 0.01634434051811695, -0.01981300488114357, -0.028859278187155724, 0.016177846118807793, -0.005605359561741352, -0.04328891634941101, -0.019188644364476204, -0.022088447585701942, -0.04109672084450722, -0.0056192344054579735, -0.0031877015717327595, 0.046424590051174164, 0.021547336131334305, -0.0016753643285483122, -0.02902577444911003, -0.014943000860512257, -0.023697907105088234, -0.010294992476701736, -0.03510287031531334, 0.02919226884841919, 0.007991800084710121, 0.014200706966221333, -0.000988568994216621, 0.03474213182926178, -0.0051405588164925575, 0.025307366624474525, -0.022185569629073143, -0.014762630686163902, -0.019646508619189262, -0.03080173023045063, 0.034020647406578064, -0.025182494893670082, -0.047368064522743225, 0.005261962302029133, 0.025945600122213364, -0.01691320165991783, 0.005830822978168726, 0.01197382528334856, 0.009240519255399704, 0.001209696289151907, -0.009046273306012154, -0.009677570313215256, 0.014748755842447281, -0.0029258173890411854, 0.00675695575773716, -0.015789354220032692, -4.5228116505313665e-05, 0.005882852710783482, -0.005123215727508068, -0.020728731527924538, 0.006614740937948227, 0.01526211854070425, -0.009497200138866901, -0.009372328408062458, -0.014027274213731289, -0.00156783580314368, -0.011980762705206871, -0.013326603919267654, -0.001030192943289876, 0.014596134424209595, 0.0078808031976223, 0.03832179307937622, -0.018356164917349815, -0.0018661408685147762, -0.01775955595076084, 0.013382102362811565, 0.031106971204280853, -0.00033862824784591794, 0.025570984929800034, -0.010510049760341644, -0.0019181707175448537, -0.019882377237081528, 0.019493887200951576, 0.00488387793302536, -0.02111722156405449, -0.027763180434703827, -0.006687582936137915, -0.023309417068958282, -0.002282380359247327, 0.012931176461279392, -0.021727707237005234, 0.010301929898560047, -0.012050135992467403, 0.0226434338837862, -0.005137090105563402, -0.008338666521012783, 0.010738980956375599, -0.0178289283066988, -0.02471075765788555, -0.003442648332566023, 0.009629009291529655, -0.027249818667769432, 0.0024644851218909025, 0.021852578967809677, -0.01820354536175728, 0.0013553801691159606, 0.21489062905311584, 0.009656758047640324, 0.00825541839003563, 0.03032999113202095, 0.010329678654670715, -0.027846427634358406, 0.014485137537121773, 0.0006993692368268967, 0.003728813026100397, 0.03135671466588974, 0.01925801858305931, 0.023351041600108147, -0.03418714553117752, 0.00035185253364033997, 0.016829954460263252, -0.0029240830335766077, -0.0263895895332098, -0.02883152849972248, -0.016108471900224686, 0.005220338236540556, 0.002700354438275099, 0.0005562868900597095, -0.02487725205719471, -0.007180132903158665, 0.020437363535165787, 0.02564035914838314, -0.013555536046624184, 0.0013883324572816491, 0.006788174156099558, 0.009899565018713474, -0.021755455061793327, -0.019868502393364906, 0.020922977477312088, -0.01681607961654663, -0.017606934532523155, 0.003742687636986375, 0.00749231269583106, -0.02552936226129532, 0.0008645643247291446, 0.00947638787329197, -0.010829166509211063, -0.013770593330264091, 0.003281355369836092, -0.018744656816124916, 0.030440988019108772, -0.0041138348169624805, 6.866869080113247e-05, -0.0025962945073843002, 0.009448638185858727, 0.0397925041615963, -0.00673267524689436, 0.009074022993445396, 0.03021899424493313, 0.014623884111642838, -0.0011828141286969185, -0.019771380349993706, -0.019285768270492554, -2.390125700912904e-05, -0.02891477756202221, 0.02601497434079647, -0.013125421479344368, 0.0004773747641593218, -0.026125971227884293, 0.014186833053827286, -0.04534236714243889, 0.013659595511853695, -0.02102009952068329, 0.02272668108344078, 0.015567360445857048, -0.01014237105846405, -0.009670632891356945, -0.014200706966221333, -0.02357303537428379, -0.007457626052200794, -0.0056747328490018845, -0.005598422605544329, 0.0037080009933561087, 0.03804429993033409, 0.0366290844976902, 0.025751356035470963, 0.019133146852254868, 0.0055117057636380196, -0.01888340339064598, 0.0024228612892329693, 0.01616397127509117, -0.002292786492034793, 0.032161444425582886, -0.01577548123896122, 0.003477334976196289, -0.03529711812734604, -0.012639808468520641, -0.0009686241974122822, -0.0018644065130501986, 0.0005419786320999265, 0.0011151751969009638, -0.010537798516452312, 0.008525974117219448, 0.017717931419610977, -0.002485297154635191, -0.017787305638194084, -0.027485687285661697, 0.05289017781615257, 0.02299029938876629, 0.02656996063888073, -0.02103397436439991, -0.011231531389057636, -0.0057406374253332615, 0.026056598871946335, -0.0022771775256842375, 0.005268899258226156, -0.006632084026932716, -0.024072522297501564, 0.00410689739510417, 0.017121322453022003, 0.0011897514341399074, 0.03654583543539047, 0.017315566539764404, -0.006077098194509745, 0.00948332529515028, -0.02132534235715866, 0.020825853571295738, -0.005719825625419617, -0.013347416184842587, 0.015511862002313137, -0.027846427634358406, -0.011842016130685806, -4.71792409371119e-05, 0.0010145839769393206, -0.009878752753138542, -0.030080247670412064, 0.02656996063888073, -0.007305004633963108, 0.013347416184842587, -0.02695845067501068, -0.005012218374758959, 0.0006169884582050145, -0.003597003873437643, -0.006843672599643469, -0.0008641307358630002, 7.473885489162058e-05, -0.00015739059017505497, 0.01587260328233242, 0.008054235950112343, -0.008754906244575977, 0.0028529753908514977, -0.009733068756759167, 0.00676389317959547, 0.026778079569339752, -0.016385965049266815, -0.013860777951776981, 0.013833029195666313, 0.019924001768231392, 0.009143396280705929, 0.013201732188463211, 0.035630106925964355, -0.022407565265893936, -0.04120771959424019, -0.02852628566324711, 0.011980762705206871, -0.0060562859289348125, -0.043788403272628784, -0.02459975890815258, 0.030107997357845306, 0.027402440086007118, -0.036573585122823715, 0.0006005123141221702, -0.17737355828285217, 0.017121322453022003, 0.016177846118807793, -0.0006959005841054022, -0.015733856707811356, 0.013992587104439735, 0.021089471876621246, -0.0023847059346735477, -0.023420413956046104, -0.020714856684207916, 0.014998500235378742, -0.010627984069287777, -0.020687106996774673, -0.01624721847474575, -0.0009824988665059209, -0.010163183324038982, -0.01633046567440033, 0.02611209638416767, 0.047479063272476196, -0.00502609321847558, 0.015955850481987, -0.018231293186545372, 0.007866928353905678, -0.004238706547766924, 0.01999337412416935, 0.016385965049266815, -0.009226644411683083, 0.031967200338840485, -0.011210719123482704, -0.036767829209566116, -0.011016474105417728, -0.023323291912674904, 0.018356164917349815, 0.011120534501969814, 0.01952163688838482, 0.010780605487525463, 0.01559511013329029, 0.0030368147417902946, -0.015886478126049042, 0.014887502416968346, 0.012355378828942776, 0.017717931419610977, 0.02375340647995472, -0.0011784783564507961, -0.006170751992613077, 0.020437363535165787, 0.018814029172062874, 0.0031408744398504496, 0.019077647477388382, -0.004557823296636343, 0.027652183547616005, -0.020326366648077965, -0.0035657857079058886, -0.006059754639863968, 0.012175007723271847, -0.005688607692718506, 3.880566873704083e-05, 0.026639332994818687, -0.004547417629510164, -0.025002123787999153, -0.008858965709805489, 0.001202758983708918, -0.0010189198656007648, -0.006049348507076502, 0.011571460403501987, -0.04592509940266609, -0.024072522297501564, 0.01699645072221756, -0.009719193913042545, 0.0040375241078436375, -0.02225494384765625, 4.0885511225496884e-06, -0.00687489053234458, -0.005813479423522949, 0.009629009291529655, 0.012355378828942776, -0.02974725514650345, -0.0026968857273459435, 0.025792980566620827, 0.0015895148972049356, 0.010579423047602177, 0.000946077867411077, 0.0020014187321066856, 0.01070429477840662, -0.03041323833167553, 0.005157902371138334, 0.0009660227224230766, 0.009233581833541393, -0.015941975638270378, 0.013715093955397606, 0.014956875704228878, -0.010079935193061829, 0.0326886810362339, -1.6801337551441975e-05, -0.0013085531536489725, 0.010038311593234539, 0.02855403535068035, -0.02226881869137287, -0.005910601932555437, -0.019119272008538246, -0.002341347746551037, 0.019604884088039398, -0.03427039086818695, -0.0028061484917998314, 0.040791478008031845, 0.02272668108344078, 0.01849491149187088, -0.007526999339461327, 0.032161444425582886, -0.01037824060767889, -0.029220018535852432, 0.026070473715662956, 0.020811978727579117, 0.0015513596590608358, -0.0122096948325634, 0.05380590260028839, -0.002516515087336302, -0.021353090181946754, 0.012840990908443928, -0.02376728132367134, 0.03887677565217018, -0.036851078271865845, -0.017301691696047783, 0.003808592213317752, -0.0027801336254924536, -0.015192745253443718, -0.10106296837329865, -0.014873627573251724, 0.013944026082754135, 0.008241543546319008, -0.012119509279727936, 0.01168939471244812, -0.009226644411683083, 0.020631609484553337, 0.006420495454221964, 0.017482062801718712, -0.019660383462905884, 0.0007180132670328021, -0.0003709301818162203, 0.014249268919229507, 0.0024887658655643463, -0.005310523323714733, 0.003923058044165373, -0.031134720891714096, -0.016746705397963524, 0.009878752753138542, 0.008463538251817226, -0.024363890290260315, 0.015789354220032692, 0.002651792950928211, -0.003203310538083315, -0.004998343531042337, -0.022976424545049667, -0.004897752311080694, 0.014554510824382305, 0.02582072839140892, 0.0257097315043211, -0.01606684736907482, 0.03785005211830139, -0.02769380807876587, -0.013326603919267654, -0.01070429477840662, -0.01688545197248459, -0.021339215338230133, 0.027555061504244804, -0.03107922337949276, -0.007339691277593374, 0.00920583214610815, -0.015789354220032692, -0.012827116996049881, -0.015053998678922653, 0.000933937553782016, 0.0008814740576781332, 0.03116247057914734, 0.0065349615179002285, 0.004391327500343323, -0.025002123787999153, -0.024724630638957024, -0.010163183324038982, -0.04001449793577194, 0.027582809329032898, -0.01249412540346384, 0.020243119448423386, 0.01651083678007126, -0.019757505506277084, 0.010523924604058266, -0.02010437287390232, -0.006500274874269962, -0.0263895895332098, 0.01999337412416935, 0.014443513937294483, 0.010877727530896664, -0.0021713832393288612, 0.01906377263367176, 0.00288592791184783, -0.0029951906763017178, -0.009788567200303078, 0.009018524549901485, -0.01709357276558876, -0.0057510435581207275, -0.028234919533133507, 0.0075061870738863945, -1.6503248843946494e-05, -0.01906377263367176, 0.004363578278571367, 0.010815291665494442, -0.015151120722293854, -0.0149707505479455, 0.0013961369404569268, -0.045203618705272675, 0.015373115427792072, 0.007846116088330746, 0.016677333042025566, 0.009268268011510372, 0.025751356035470963, -0.044731881469488144, 0.0029171458445489407, 0.014998500235378742, 0.025390615686774254, 0.014172958210110664, -0.009635946713387966, 0.016177846118807793, -0.010773668065667152, -0.0032397315371781588, 0.022213319316506386, -0.015040123835206032, -0.009178082458674908, -0.013160108588635921, -0.04978225380182266, 0.0018349228193983436, -0.0028945994563400745, 0.0054458011873066425, 0.011772642843425274, -0.03504737466573715, -0.001174142467789352, -0.013604097068309784, 0.019036022946238518, -0.011481274850666523, -0.012507999315857887, 0.013458413071930408, -0.02552936226129532, -0.01671895757317543, -0.038821280002593994, -0.03915426880121231, 0.012792429886758327, 0.004394796211272478, 0.01709357276558876, -0.011703269556164742, -0.0015010640490800142, 0.008900590240955353, 0.015511862002313137, 0.030163494870066643, 0.0013996056513860822, 0.018342291936278343, -0.022490812465548515, 0.0328829288482666, -0.0023188013583421707, -0.012195819988846779, 0.007970987819135189, -0.001814110903069377, 0.0033195107243955135, 0.004724319092929363, -0.004429482854902744, -0.018938900902867317, -0.0015409536426886916, 0.008858965709805489, 0.008095859549939632, -0.002802679780870676, -0.008713281713426113, -0.01553961168974638, 0.024086397141218185, -0.020492862910032272, -0.02872053161263466, -0.02046511322259903, -0.03166195750236511, -0.02515474520623684, 0.023892153054475784, 0.013416789472103119, 0.022088447585701942, 0.0015062669990584254, -0.02958076074719429, -0.03349341079592705, -0.005112809594720602, 0.0024714225437492132, 0.0050850603729486465, 0.02326779253780842, 0.002461016643792391, -0.008657783269882202, 0.05325091630220413, -0.0032397315371781588, 0.01408971007913351, -0.017426563426852226, 0.03823854401707649, -0.010121559724211693, -0.06521087139844894, -0.0005562868900597095, 0.007436813786625862, -0.006639021448791027, -0.012237443588674068, -0.00947638787329197, 0.029830504208803177, 0.018342291936278343, -0.0010787543142214417, -0.004602916073054075, -0.008997712284326553, -0.04062498360872269, -0.010412926785647869, 0.02515474520623684, 0.023115171119570732, -0.010843041352927685, -0.010856916196644306, 0.0013813951518386602, 0.008900590240955353, 0.00853984896093607, -0.00971225742250681, 0.004970594309270382, 0.03349341079592705, 0.011862828396260738, -0.022698931396007538, -0.00549436267465353, -0.004772880580276251, 0.009795504622161388, 0.009053210727870464, 0.022851552814245224, -0.024350015446543694, -0.0015001968713477254, 0.04187370091676712, 0.025307366624474525, 0.006451713386923075, 0.01291730161756277, -0.02064548432826996, 0.002162711462005973, 0.002485297154635191, 0.03160645812749863, -0.02815167047083378, -0.005407645832747221, 0.030912727117538452, 0.014166020788252354, 0.017537562176585197, -0.034520138055086136, -0.00582041684538126, 0.02224106900393963, -0.014887502416968346, 0.0056747328490018845, 0.0011836813064292073, -0.00720788212493062, -0.024197394028306007, 0.0012782023986801505, 0.00948332529515028, 0.010940163396298885, 0.02242143824696541, -0.007346628699451685, 0.016580210998654366, 0.007575560361146927, 0.012237443588674068, -0.013735906220972538, 0.008401102386415005, -0.016871577128767967, 0.0030975162517279387, -0.019924001768231392, 0.0017378003103658557, -0.01342372689396143, -0.006267874501645565, -0.012098697014153004, -0.00976081844419241, 0.03135671466588974, -0.013583284802734852, 0.09795504808425903, 0.032522186636924744, -0.02290705218911171, 1.5202500435407273e-05, -0.009615134447813034, 0.032161444425582886, 0.008130546659231186, 0.015386990271508694, -0.013728968799114227, -0.011786517687141895, 0.02385052852332592, -0.009074022993445396, -0.017690181732177734, -0.005261962302029133, -0.019285768270492554, -0.010794480331242085, -0.0059903813526034355, 0.021533461287617683, -0.007072604261338711, 0.0023083954583853483, 0.011994637548923492, -0.013257230632007122, 0.007037917617708445, -0.009129521436989307, -0.01569223217666149, -0.012570435181260109, 0.02788805216550827, 0.030773980543017387, 0.004405202344059944, -0.024516511708498, 0.022962549701333046, -0.00019186043937224895, -0.03607409819960594, -0.020132120698690414, -0.017398815602064133, 0.00014167321205604821, -0.012397002428770065, -0.02367015741765499, 0.010399051941931248, 0.016580210998654366, -0.00343744526617229, 0.03635159134864807, -0.03316042199730873, -0.01953551173210144, 0.03737831488251686, 0.013694282621145248, -0.010884664952754974, -0.02225494384765625, -0.0022962549701333046], "8237bbcc-5302-466e-9dc2-db832e533372": [-0.004049795214086771, 0.0018829817418009043, 0.007476544938981533, -0.024118779227137566, 0.008750326931476593, 0.017819099128246307, -0.012163231149315834, -0.029906179755926132, -0.0015126158250495791, -0.03408750519156456, 0.01322240848094225, 0.012142462655901909, 0.020463580265641212, -0.005932776723057032, -0.0036136633716523647, 0.019175952300429344, 0.029795415699481964, 0.0030633066780865192, 0.01774987205862999, -0.0004993016482330859, -0.02006206288933754, 0.012260149233043194, -0.01412928570061922, -0.002118354430422187, -0.02668018825352192, -0.0013499316992238164, 0.023523425683379173, -0.008148049004375935, -0.01779140718281269, 0.01763910800218582, 0.022388098761439323, -0.017389889806509018, -0.02440953440964222, -0.0031411873642355204, -0.016822226345539093, 0.019660543650388718, 0.0031031123362481594, 0.006368908565491438, 0.012315531261265278, -0.012211689725518227, 0.001200227765366435, 0.03029385209083557, 0.003997874911874533, -0.016448399052023888, -0.021418916061520576, 0.03519514203071594, 0.0024316078051924706, -0.0012106118956580758, -0.027607833966612816, -0.003855958813801408, -0.00995488092303276, -0.013257022015750408, -0.009671049192547798, 0.011803248897194862, -0.009082617238163948, 0.01028717216104269, 0.008570335805416107, 0.005347806494683027, 0.011512494646012783, -0.004146713297814131, 0.0026687111239880323, 0.00242468505166471, -0.014177744276821613, -0.014510035514831543, -0.0229972992092371, -0.03198299929499626, -0.01680838130414486, 0.0007433277787640691, -0.0035478975623846054, -0.015576135367155075, 0.04557923227548599, 0.03386598080396652, -0.000635160191450268, -0.024520298466086388, -0.006199301686137915, -0.016434554010629654, -0.026237133890390396, -0.04109330475330353, -0.00832804013043642, -0.008923394605517387, 0.024894125759601593, -0.004890906624495983, -0.028355488553643227, -0.0002777744084596634, 0.026070989668369293, 0.023384971544146538, 0.012959344312548637, 0.009297221899032593, -0.0008090937044471502, -0.02704017050564289, 0.0195913165807724, 0.030432306230068207, 0.028964689001441002, 0.030653834342956543, 0.016309944912791252, 0.018982116132974625, -0.0038351905532181263, -0.003741733729839325, -0.001983361318707466, -0.013270867057144642, -0.014302353374660015, -0.007511158473789692, -0.01529922615736723, -0.015853043645620346, 0.003679429180920124, -0.018317535519599915, 0.013790071941912174, -0.019619008526206017, -0.0028504326473921537, 0.036496616899967194, -0.019577471539378166, 0.03688428923487663, 0.0034094429574906826, -0.019882071763277054, 0.001777410157956183, -0.010176408104598522, 0.03533359616994858, -0.021501990035176277, -0.010314863175153732, -0.02276192605495453, 0.0008735615992918611, 0.006600819993764162, 0.05964621528983116, -0.011256353929638863, 0.017846789211034775, 0.0052093518897891045, 0.005344345234334469, -0.013173948973417282, 0.01696068048477173, -0.000907742534764111, 0.02468644455075264, 0.012945499271154404, 0.010612539947032928, 0.008840322494506836, -0.032979872077703476, 0.008383422158658504, -0.012917808257043362, 0.020602034404873848, 0.0057008652947843075, -0.03059845231473446, 0.009754122234880924, 0.028770852833986282, 0.017251435667276382, -0.006244299467653036, 0.012488598935306072, 0.057929378002882004, -0.012100926600396633, 0.014080826193094254, 0.008688022382557392, -0.009172612801194191, -0.012834735214710236, -0.006863883696496487, -0.03178916126489639, -0.00418132683262229, 0.003284833859652281, 0.002450645202770829, 0.012183998711407185, 0.03505668789148331, -0.014371580444276333, 0.0022481554187834263, 0.0019262487767264247, 0.01783294416964054, -0.00240910891443491, -0.005403188057243824, 0.005676636006683111, 0.031401488929986954, 0.01657300814986229, -0.026403279975056648, -0.036773525178432465, -0.01567305438220501, 0.004091331735253334, 0.03414288908243179, -0.029684651643037796, 0.016642235219478607, -0.005804706364870071, 0.02115585282444954, 0.009809504263103008, 0.010397935286164284, -0.01680838130414486, -0.022748081013560295, 0.023204980418086052, -0.01995129883289337, -0.0014693487901240587, 0.016545316204428673, -0.016863763332366943, -0.0009761044639162719, 0.029324671253561974, 0.010370244272053242, 0.011685563251376152, 0.0016553970053792, 0.0038871110882610083, -0.009587976150214672, -0.022678852081298828, -0.006998876575380564, -0.6185041069984436, -0.004527463112026453, 0.025531016290187836, -0.0057562473230063915, 0.0033454077783972025, 0.02918621525168419, -0.0005187718197703362, -0.014634644612669945, -0.0008843783289194107, 0.03267526999115944, 0.012156308628618717, -0.0018085624324157834, -0.007808835711330175, 0.003208683803677559, -0.02209734357893467, -0.026901716366410255, 0.001993745332583785, -0.010757917538285255, -0.014828480780124664, -0.010024107992649078, -0.04089947044849396, 0.009428753517568111, 0.007009260822087526, 0.0043197814375162125, 0.002554486272856593, -0.021529680117964745, 0.008625717833638191, 0.0011206164490431547, -0.006441597361117601, 0.03871188685297966, -0.03156763315200806, 0.010072567500174046, 0.019369790330529213, -0.005867010913789272, 0.03580434247851372, -0.02762167900800705, -0.005877395160496235, 0.037438105791807175, 0.020325126126408577, 0.020671261474490166, -0.023758798837661743, -0.008341886103153229, 0.017583725973963737, 0.024589525535702705, -0.014108517207205296, 0.002268923679366708, 0.013610080815851688, 0.009878731332719326, -0.010266403667628765, -0.0019193260231986642, 0.012578594498336315, -0.01165787223726511, -0.015894580632448196, -0.006555822212249041, -0.0001330461527686566, -0.005472415592521429, 0.0184144526720047, -0.0038767270743846893, 0.00029183621518313885, 0.0003993548161815852, 0.017168361693620682, 0.006483133416622877, -0.005084742791950703, -0.04350241646170616, -0.04521925002336502, 0.017486806958913803, -0.020366663113236427, -0.010363321751356125, 0.005292424466460943, -0.007462699431926012, 0.006666585803031921, -0.003515014424920082, 0.002184120239689946, -0.0021356611978262663, 0.0031740702688694, 0.034419797360897064, 0.03824114426970482, -0.022305026650428772, -0.002943889470770955, 0.017625262960791588, -0.001320510171353817, -0.008286504074931145, -0.004783604294061661, -0.013360862620174885, 0.03993028774857521, 0.005558949429541826, -0.007372703868895769, -0.0045932293869555, 0.004742067772895098, -0.002919659949839115, 0.00247314409352839, 0.022969607263803482, -0.0048978291451931, -0.03594279661774635, 0.0017739487811923027, 0.0665135607123375, -0.0015022316947579384, 0.0023554577492177486, -0.00027842342387884855, -0.012682435102760792, -0.026694035157561302, -0.023620344698429108, 0.02503257989883423, 0.00743500841781497, 0.01826215349137783, 0.027760135009884834, -0.016988372430205345, -0.0027344771660864353, 0.005960467737168074, -0.0173206627368927, -0.019231334328651428, -0.007511158473789692, -0.02573869749903679, -0.00032169045880436897, 0.026181751862168312, -0.029795415699481964, -0.012038622051477432, 0.014274662360548973, 0.01289011724293232, 0.0030408077873289585, -0.02339881658554077, -0.019965143874287605, 0.020311281085014343, 0.018871353939175606, 0.013014726340770721, 0.003579049836844206, 0.009546440094709396, 0.0030806134454905987, 0.009338758885860443, -0.005655867978930473, -0.0060989223420619965, 0.002109701046720147, -0.009414908476173878, -0.0025475635193288326, 0.03115227073431015, 0.007621922064572573, 0.032536815851926804, -0.0027604373171925545, 0.006119690369814634, -0.04544077813625336, -0.0045863064005970955, 0.0016268407925963402, 0.029767725616693497, -0.01328471302986145, 0.006666585803031921, -0.025614088401198387, 0.00836957711726427, -0.006050463300198317, 0.014980780892074108, -0.014454653486609459, -0.021308153867721558, -0.006929649505764246, 0.008798785507678986, 0.013097799383103848, -0.018386762589216232, -0.007476544938981533, 0.009830271825194359, -0.03231528773903847, -0.013416244648396969, -0.018788279965519905, -0.011830939911305904, -0.014399271458387375, -0.011055594310164452, -0.010391012765467167, -0.015216153115034103, -0.019563626497983932, -0.02256808988749981, 0.02272038906812668, -0.011311735957860947, -0.0149669349193573, -0.005022438243031502, -0.023523425683379173, 0.001969515811651945, 0.014454653486609459, 0.01038409024477005, 0.016199180856347084, -0.01426081731915474, -0.008958008140325546, -0.012391680851578712, -0.007857294753193855, 0.004129406530410051, 0.009414908476173878, -0.0066458177752792835, -0.01520230807363987, 0.03898879885673523, 0.010411781258881092, 0.025420252233743668, 0.00840419065207243, -0.03068152442574501, -0.0070161838084459305, -0.00901339016854763, 0.006867344956845045, -0.02366187982261181, -0.012682435102760792, -0.02014513500034809, -0.02017282508313656, -0.007781144697219133, -0.0007801047759130597, 0.008154972456395626, 0.02758014388382435, 0.016683772206306458, 0.014717716723680496, -0.006763503886759281, -0.0016960680950433016, 0.016863763332366943, -0.022305026650428772, 0.017694490030407906, -0.025835616514086723, 0.003655199659988284, 0.015659207478165627, -0.007085410878062248, 0.0036378928925842047, 0.011401730589568615, -0.018275998532772064, 0.004101715516299009, 0.02798166126012802, 0.0077880676835775375, 0.02342650666832924, -6.901093001943082e-05, -0.0016026112716645002, 0.016171488910913467, 0.018483679741621017, 0.014246971346437931, -0.009816426783800125, 0.007518081460148096, 0.010571003891527653, 0.002324305474758148, 0.025724852457642555, 0.013499317690730095, -0.024464916437864304, -0.021695826202630997, 0.025364870205521584, -0.014468499459326267, 0.010494853369891644, 0.04737914353609085, 0.018151389434933662, 0.044886961579322815, 0.005378958769142628, 0.036025870591402054, -0.0025614090263843536, 0.006327372509986162, -0.0001766376954037696, 0.012620130553841591, -0.024700289592146873, 0.024547988548874855, -0.0008688021916896105, 0.011533263139426708, -0.011505572125315666, -0.03530590608716011, 0.017459116876125336, -0.004738606512546539, 0.0029975406359881163, -0.024866433814167976, -0.014828480780124664, 0.029712343588471413, -0.028037043288350105, 0.009927189908921719, 0.015506908297538757, 0.0031896464060992002, 0.01322240848094225, 0.005524335894733667, -0.00326233496889472, 0.002220464637503028, -0.0098579628393054, 0.022277334704995155, -0.018746744841337204, 0.0010271596256643534, -0.02308037132024765, -0.007947290316224098, -0.0040671019814908504, -0.0011249431408941746, -0.018372917547822, 0.005309731233865023, -0.012710126116871834, 0.007628845050930977, 0.0038628815673291683, 0.001492712995968759, 0.004845908842980862, -0.0018483680905774236, 0.028147807344794273, -0.01416389923542738, -0.01978515274822712, 0.014759253710508347, 0.01924518123269081, 0.010550235398113728, 0.004922058898955584, -0.019466707482933998, -0.013360862620174885, 0.013409322127699852, 0.01763910800218582, 0.005991620011627674, -0.0077326856553554535, 0.00553472014144063, -0.001879520365037024, -0.0007796721183694899, 0.0071650221943855286, 0.03774270787835121, -0.011844785884022713, -0.02029743418097496, 0.011969394981861115, 0.030183088034391403, 0.019992835819721222, -0.012862426228821278, -0.015091544017195702, 0.017736025154590607, -0.0014373312005773187, -0.01997898891568184, -0.01676684431731701, 0.00018864430603571236, -0.035998180508613586, 0.004015181679278612, 7.696125248912722e-05, -0.014302353374660015, -0.011692485772073269, -0.018372917547822, -0.004828602075576782, -0.0030165782663971186, -0.013250099495053291, 0.005513952113687992, 0.013852376490831375, 0.001230514724738896, -0.013803916983306408, 0.012350144796073437, 0.027635525912046432, 0.06258144974708557, -0.0008804842946119606, 0.0020647032652050257, 0.01798524335026741, -0.011027904227375984, -0.007331167813390493, -0.03436441719532013, -0.027054015547037125, 0.03907186910510063, 0.022706544026732445, -0.03217683359980583, 0.00018258692580275238, 0.007303476799279451, -0.0037036589346826077, 0.00908954069018364, -0.007005799561738968, -0.0026721726171672344, -0.01412236224859953, -0.010951753705739975, 0.02061588130891323, -0.0028608168940991163, -0.012225535698235035, 0.028300106525421143, 0.018802126869559288, 0.030459998175501823, 0.03275834396481514, 0.03588741645216942, 0.014856171794235706, 0.004402854014188051, -0.01860828883945942, -0.012827812694013119, 0.012924730777740479, 0.003416365711018443, 0.01246090792119503, -0.040096431970596313, 0.04001336172223091, 0.00036841887049376965, -0.01073714904487133, -0.018469834700226784, 0.003490784903988242, -0.010432548820972443, 0.021418916061520576, -0.007030028849840164, -0.006306604016572237, 0.021183544769883156, -0.027164779603481293, -0.01794370822608471, 0.028770852833986282, -0.008058054372668266, -0.00426093814894557, 0.014606953598558903, 0.019023653119802475, 0.002459298586472869, 0.004510156344622374, 0.020269744098186493, -0.022277334704995155, -0.020006680861115456, -0.02123892493546009, -0.024824898689985275, -0.025877153500914574, -0.026638653129339218, -0.01578381657600403, -0.0069884927943348885, -0.032509125769138336, -0.023523425683379173, -0.04497003182768822, -0.02002052590250969, -0.016282252967357635, -0.023094216361641884, 0.004371701739728451, -0.015119235031306744, -0.03527821600437164, -0.025641780346632004, 0.012924730777740479, 0.01759757101535797, 0.025877153500914574, 0.004215940833091736, 0.006306604016572237, 0.007677304092794657, 0.014454653486609459, 0.003097920212894678, -0.025212571024894714, 0.008542644791305065, -0.019065190106630325, 0.010764840058982372, -0.006057385820895433, -0.014606953598558903, 0.006029694806784391, -0.0080718994140625, 0.019798997789621353, -0.0049982089549303055, -0.020865097641944885, 0.010183331556618214, 0.011927857995033264, 0.016600698232650757, 0.009518749080598354, 0.009449522010982037, -0.012211689725518227, 0.018386762589216232, -0.03763194382190704, 0.011768635362386703, -0.020782025530934334, -0.007206558715552092, -0.012571671977639198, 0.002866008784621954, 0.02440953440964222, -0.009802580811083317, -0.006358524784445763, -0.012813967652618885, -0.02841087058186531, 0.010536390356719494, -0.005254349671304226, -0.024824898689985275, -0.015603826381266117, -0.009297221899032593, -0.009511826559901237, 0.008044208399951458, 0.024160316213965416, 0.002589099807664752, -0.015146926045417786, -0.007981903851032257, -0.009283376857638359, 0.023191135376691818, 0.002942158840596676, -0.00021190034749452025, 0.011761712841689587, 0.007981903851032257, -0.014565417543053627, -0.04533001407980919, -0.005593563430011272, 0.003842113306745887, 0.008348808623850346, -0.027524761855602264, -0.006915803998708725, -0.009428753517568111, -0.00236064987257123, -0.009830271825194359, 0.004883983638137579, -0.006123151630163193, 0.008148049004375935, -0.03749348968267441, 0.0197159256786108, 0.010349476709961891, -0.0030494611710309982, 0.0037140429485589266, -0.03325678035616875, -0.03198299929499626, -0.01787448115646839, 0.016780689358711243, 0.036302778869867325, -0.021681981161236763, -0.007836527191102505, -0.03765963390469551, -0.03184454143047333, -0.02280346117913723, -0.014620798639953136, -0.0015896311961114407, 0.012287840247154236, 0.057154033333063126, 0.03660738095641136, 0.010965599678456783, 0.019259026274085045, 0.0347243994474411, 0.009221072308719158, -6.614449375774711e-05, 0.00081168970791623, -0.010501776821911335, -0.013665462844073772, 0.0023641111329197884, -0.019065190106630325, -0.01575612649321556, -0.009144921787083149, -0.00017447434947825968, 0.014731562696397305, -0.0184975266456604, -0.009463367983698845, 0.007905754260718822, -0.007711917627602816, -0.019757462665438652, -0.03754886984825134, 0.016254562884569168, 0.036745835095644, 0.004676301963627338, -0.0038628815673291683, -0.022969607263803482, -0.005344345234334469, 0.011893244460225105, -0.0036136633716523647, 0.03461363539099693, -0.012703203596174717, 0.028577016666531563, 0.011145589873194695, 0.0034319418482482433, 0.028064735233783722, 0.010238712653517723, -0.014246971346437931, -0.008314195089042187, -0.040068741887807846, -0.018552908673882484, 0.01406698115170002, 0.01931440830230713, 0.00832804013043642, -0.006486595142632723, -0.0026098680682480335, 0.013000881299376488, 0.013623926788568497, -0.029989251866936684, -0.018746744841337204, 0.0003100083558820188, -0.03278603404760361, 0.0026842872612178326, -0.020394353196024895, -0.01642070710659027, 0.01907903514802456, -0.005493183620274067, -0.0033609839156270027, -0.002095855539664626, 0.01684991642832756, -0.02926928922533989, -0.022789616137742996, 0.00670119933784008, -0.01939748041331768, 0.013679307885468006, 0.02841087058186531, 0.014745407737791538, 0.02085125260055065, 0.007594231516122818, -0.020989706739783287, -0.021017398685216904, -0.0030373462941497564, 0.003845574799925089, 0.001484924927353859, 0.03192761540412903, -0.026500198990106583, -0.019411325454711914, 0.004233247600495815, -0.0021737362258136272, 0.00013618302182294428, -0.03286910802125931, 0.02276192605495453, 0.015340762212872505, -0.0010453317081555724, -0.03353368863463402, -0.027926279231905937, -0.011768635362386703, 0.004870138131082058, -0.009214149788022041, 0.007926521822810173, -0.010134872049093246, 0.0027223622892051935, 0.005617792718112469, 0.03538898006081581, -0.012488598935306072, 0.019619008526206017, -0.00904800370335579, 0.011090208776295185, -0.004617458675056696, -0.002616790821775794, 0.006292758509516716, -0.02154352515935898, 0.0037486564833670855, 0.015562289394438267, -0.02417416125535965, -0.006715044844895601, 0.014703871682286263, 0.009352603927254677, -0.00748346745967865, -0.007310399319976568, -0.02265116199851036, 0.03500130772590637, -0.008473417721688747, -0.01774987205862999, -0.0007238576072268188, -0.01696068048477173, 0.02226348966360092, -0.020394353196024895, -0.014897707849740982, -0.006531592924147844, -0.01116635836660862, 0.005441263318061829, -0.007075026631355286, 0.007635767571628094, -0.009830271825194359, -0.0077603766694664955, 3.1584939279127866e-05, -0.019535934552550316, -0.00875724945217371, -0.020089752972126007, 0.03131841495633125, -0.01950824446976185, 0.0008103916770778596, -0.007594231516122818, -0.02479720674455166, 0.002208349760621786, 0.00642775185406208, -0.01809600740671158, 0.0016528010601177812, 0.02425723522901535, -0.01997898891568184, 0.021529680117964745, 0.022194262593984604, 0.020602034404873848, -0.03843497857451439, 0.013617003336548805, -0.0012910885270684958, 0.007490390446037054, 0.011886321939527988, -0.0026583271101117134, -0.03198299929499626, -0.02954619750380516, 0.011159435845911503, 0.0006771291955374181, 0.01610226184129715, 0.009878731332719326, 0.017680644989013672, 0.024561835452914238, -0.006199301686137915, -0.016559163108468056, -0.013291635550558567, 0.0070161838084459305, -0.0027465918101370335, 0.011235585436224937, 0.006496978923678398, -0.006528131198137999, 0.025101806968450546, 0.005247426684945822, 0.00713040865957737, -0.0008964931475929916, -0.02483874373137951, -0.017916016280651093, -0.02425723522901535, -0.003540974808856845, 0.0017341430066153407, 0.017486806958913803, -0.010702535510063171, -0.03688428923487663, -0.028549324721097946, 0.0344751812517643, -0.0029508122242987156, -0.0030806134454905987, 0.026403279975056648, -0.016822226345539093, -0.029906179755926132, 0.01520230807363987, -0.008992621675133705, -0.04317012429237366, -0.024631062522530556, -0.026154061779379845, -0.04416699707508087, -0.0022810385562479496, -0.0028573554009199142, 0.03907186910510063, 0.0126962810754776, -0.006683892570436001, -0.03400443494319916, -0.016919143497943878, -0.015853043645620346, -0.009193381294608116, -0.014537726528942585, 0.02260962501168251, 0.025240261107683182, 0.03209375962615013, -0.0007792394608259201, 0.03170608729124069, -0.00698503153398633, 0.03115227073431015, -0.03126303479075432, -0.014662335626780987, -0.020422043278813362, -0.029601579532027245, 0.025129498913884163, -0.03181685134768486, -0.05333268642425537, -0.003260604338720441, 0.010404858738183975, -0.02096201665699482, 0.0014096401864662766, 0.020048215985298157, 0.004991285968571901, 0.014994625933468342, -0.01077176257967949, -0.012779354117810726, 0.007684226613491774, 0.005306269973516464, 0.0023693032562732697, -0.01389391254633665, 0.004112099763005972, -0.0024800668470561504, 0.0021114316768944263, -0.009117230772972107, 0.01008641254156828, 0.017265280708670616, -0.01308395341038704, -0.004911674652248621, -0.012467831373214722, -0.0058600883930921555, -0.022983452305197716, -0.007030028849840164, -0.005617792718112469, 0.014786944724619389, 0.007594231516122818, 0.03248143568634987, -0.015742281451821327, 0.008812631480395794, -0.016157643869519234, 0.011173280887305737, 0.017209898680448532, 0.0028469713870435953, 0.029130835086107254, -0.043197814375162125, -0.01136019453406334, -0.018594443798065186, 0.03095843456685543, -0.002980233868584037, -0.016905298456549644, -0.02190350741147995, -0.016752999275922775, -0.026043297722935677, -0.011117898859083652, 0.01416389923542738, -0.012059389613568783, 0.008480340242385864, -0.013070108368992805, 0.003970183897763491, -0.0016173220938071609, -0.010896371677517891, 0.005849704146385193, -0.03126303479075432, -0.013748534955084324, -0.0040671019814908504, 0.013208562508225441, -0.03386598080396652, -0.010432548820972443, 0.03184454143047333, -0.009352603927254677, 0.0018102930625900626, 0.21211235225200653, -0.007933445274829865, 0.007781144697219133, 0.04267168790102005, 0.017016062512993813, -0.022872690111398697, -0.00026046758284792304, -0.0017350084381178021, 0.01610226184129715, 0.03198299929499626, 0.009581053629517555, 0.00545510882511735, -0.02550332620739937, -0.00016387391951866448, 0.02100355364382267, -0.020325126126408577, -0.036385852843523026, -0.020546652376651764, -0.02554486133158207, 0.004465158563107252, 0.0026739032473415136, 0.010757917538285255, -0.019466707482933998, 0.0029144680593162775, 0.029878489673137665, 0.02704017050564289, 0.0071650221943855286, 0.01246090792119503, 0.002217003144323826, 0.015936117619276047, -0.032426051795482635, -0.006029694806784391, 0.02594638057053089, -0.01571458950638771, -0.013880067504942417, -0.0007208289462141693, 0.004119022283703089, -0.02965696156024933, 0.00908954069018364, 0.02425723522901535, -0.005953545216470957, -0.01467618066817522, 0.00017836838378570974, -0.011256353929638863, 0.03519514203071594, -0.013090875931084156, 0.001104174880310893, -0.003430211218073964, 0.0071373311802744865, 0.044056233018636703, -0.01099328976124525, 0.013173948973417282, 0.023620344698429108, 0.01642070710659027, -0.003390405559912324, -0.012973190285265446, -0.0206435713917017, -0.00328656448982656, -0.020754335448145866, 0.020823562517762184, -0.005915469955652952, 0.006029694806784391, -0.009664126671850681, 0.024658752605319023, -0.038850340992212296, 0.007829603739082813, -0.01830369047820568, 0.027607833966612816, 0.012273994274437428, 0.002637558849528432, -0.010723304003477097, -0.01201093103736639, -0.029380053281784058, -0.002395263407379389, -0.009851040318608284, -0.00823112204670906, -0.001270320382900536, 0.049123670905828476, 0.03511207178235054, 0.018663670867681503, 0.00240910891443491, 0.011110976338386536, -0.02233271673321724, -0.016448399052023888, 0.011886321939527988, -0.003513283794745803, 0.025184880942106247, -0.018525216728448868, 0.012765508145093918, -0.02331574447453022, -0.0185390617698431, 0.011907090432941914, -0.006528131198137999, -0.0040532564744353294, -0.00040086914668790996, -0.018082162365317345, 0.010404858738183975, 0.01087560411542654, 0.005129740573465824, -0.004444390535354614, -0.031761471182107925, 0.05563103407621384, 0.01676684431731701, 0.027967816218733788, -0.013713921420276165, -0.007372703868895769, -0.00859802681952715, 0.021294306963682175, -0.0027587066870182753, 0.00023039699590299278, -0.012910885736346245, -0.03209375962615013, 0.016116108745336533, 0.007608076557517052, 0.0031273418571799994, 0.02500488981604576, 0.024091089144349098, -0.0025614090263843536, -0.00915184523910284, -0.006943495012819767, 0.019577471539378166, -0.00908954069018364, -0.010307940654456615, 0.01054331287741661, -0.02260962501168251, -0.016863763332366943, -0.0031619553919881582, 0.008778017945587635, -0.006708122324198484, -0.027261698618531227, 0.015243844129145145, -0.010965599678456783, 0.015506908297538757, -0.01259936299175024, -0.0004997343639843166, -1.2236460861458909e-05, -0.00011682101467158645, -0.01467618066817522, -0.007614999543875456, 0.005884317681193352, 0.010903295129537582, 0.020671261474490166, 0.015963807702064514, -0.012758585624396801, 0.01736219972372055, -0.0022914225701242685, 0.007365781348198652, 0.007884985767304897, -0.011685563251376152, -0.019812844693660736, 0.018788279965519905, 0.014274662360548973, 0.008874936029314995, 0.01390775851905346, 0.034115198999643326, -0.02915852516889572, -0.043197814375162125, -0.033838286995887756, 0.01916210725903511, -0.00476975878700614, -0.04042872413992882, -0.023011144250631332, 0.044056233018636703, 0.017569880932569504, -0.024035707116127014, 0.00470399297773838, -0.17677874863147736, 0.017016062512993813, 0.010065644979476929, 0.005243965424597263, -0.005112433806061745, 0.02398032508790493, 0.02295576222240925, -0.005912008695304394, -0.026403279975056648, -0.016559163108468056, 0.019189799204468727, -0.023177288472652435, -0.021266616880893707, -0.020698953419923782, 0.006753120105713606, -0.008708789944648743, -0.01884366199374199, 0.03619201481342316, 0.04400085285305977, -0.002703324891626835, 0.001356854452751577, -0.00240045553073287, 0.0007891908753663301, -0.00960182212293148, 0.022152725607156754, 0.02817549742758274, -0.010003340430557728, 0.036302778869867325, 0.009830271825194359, -0.024437226355075836, -0.005479338113218546, -0.023066526278853416, 0.014094672165811062, 0.01629609800875187, -4.913513475912623e-05, 0.010605617426335812, 0.011727099306881428, -0.002232579281553626, -0.004510156344622374, 0.0109725221991539, 0.026472507044672966, 0.012827812694013119, 0.02061588130891323, -0.006479672156274319, 0.009712585248053074, 0.017777562141418457, 0.01161633525043726, -0.008840322494506836, 0.011927857995033264, -0.010785608552396297, 0.030709216371178627, -0.01845598965883255, -0.01122866291552782, -0.0143577354028821, 0.0034734781365841627, 4.276000709069194e-06, 0.009394139982759953, 0.01642070710659027, 0.0004902156069874763, -0.018442144617438316, -0.013623926788568497, -0.012543980963528156, -0.0003370502672623843, -0.0033592532854527235, -0.007095795124769211, -0.03500130772590637, -0.026347897946834564, 0.015659207478165627, 0.000657226366456598, 0.0008973584626801312, -0.0022135418839752674, -0.006389677058905363, 0.01783294416964054, 0.007725763134658337, 0.025087961927056313, 0.01873289793729782, -0.03796423226594925, 0.002705055521801114, 0.02935236133635044, 0.0029369669500738382, 0.011048671789467335, 0.004409777000546455, 0.007296553812921047, 0.009705662727355957, -0.0310691986232996, 0.009574131108820438, 0.015437680296599865, -0.0027621679473668337, -0.007843449711799622, 0.017929863184690475, 0.019328253343701363, -0.014385426416993141, 0.03275834396481514, -0.0026219827122986317, -0.00028145211399532855, 0.0133054805919528, 0.029380053281784058, -0.012447062879800797, 0.004693608731031418, -0.017417579889297485, 0.011824017390608788, 0.02061588130891323, -0.02691556140780449, -0.005157431587576866, 0.035555124282836914, 0.01806831732392311, 0.016393017023801804, -0.00314984074793756, 0.03201068937778473, -0.01014871709048748, -0.02096201665699482, 0.011941703967750072, 0.019729770720005035, -0.0018518294673413038, -0.018511371687054634, 0.039044179022312164, 0.0020595111418515444, -0.018871353939175606, 0.00936644896864891, -0.010529467836022377, 0.04258861392736435, -0.0348074696958065, -0.0077603766694664955, 0.0029923487454652786, -0.0036240473855286837, -0.009324912913143635, -0.11137282848358154, -0.016752999275922775, 0.04430545121431351, -0.004157097544521093, -0.008715713396668434, 0.012024776078760624, -0.005108972545713186, 0.02213888056576252, 0.003911340609192848, 0.023384971544146538, -0.022083498537540436, 0.005392804276198149, -0.015506908297538757, 0.001865674857981503, 4.123889812035486e-05, -0.00823112204670906, -0.0024056476540863514, -0.036385852843523026, -0.013935448601841927, 0.021681981161236763, 0.000963989703450352, -0.014046212658286095, 0.01943901740014553, 0.000739433744456619, -0.013900835067033768, -0.028770852833986282, -0.02543409913778305, 0.010044876486063004, 0.0045863064005970955, 0.006033156532794237, 0.031595323234796524, -0.010868680663406849, 0.03303525224328041, -0.027870897203683853, -0.008431881666183472, -0.012128617614507675, -0.009594899602234364, -0.027732443064451218, 0.02965696156024933, -0.03173378109931946, -0.0029386975802481174, 0.019411325454711914, 0.009906422346830368, -0.019563626497983932, -0.002274115802720189, 0.0002855624770745635, 0.00543780205771327, 0.04325319826602936, 0.01704375259578228, -0.0032311826944351196, -0.017389889806509018, -0.022318871691823006, -0.011484803631901741, -0.038656506687402725, 0.04078870639204979, -0.0014381965156644583, 0.012869348749518394, 0.010986367240548134, -0.020934326574206352, 0.007670381106436253, -0.03170608729124069, -0.0018829817418009043, -0.023758798837661743, 0.019494399428367615, 0.011374040506780148, 0.008314195089042187, -0.0037036589346826077, 0.016822226345539093, 0.0038144225254654884, -0.0036898134276270866, -0.007345013320446014, 0.021211234852671623, -0.011941703967750072, -0.009054926224052906, -0.022166570648550987, 0.0027742828242480755, 0.005081281531602144, -0.016282252967357635, 0.005368574522435665, 0.0092487633228302, -0.012786276638507843, -0.011284044943749905, 0.0015333839692175388, -0.02813396230340004, 0.006784272380173206, 0.002438530558720231, 0.011824017390608788, 0.0012175345327705145, 0.012980112805962563, -0.039127252995967865, 0.0071650221943855286, 0.016254562884569168, 0.02295576222240925, 0.0006022772286087275, 0.005648944992572069, 0.012121694162487984, -0.016005344688892365, -0.004451313521713018, 0.01633763499557972, -0.013388553634285927, -0.004793988075107336, -0.010307940654456615, -0.04812679812312126, 0.010404858738183975, 0.004683224484324455, 0.012779354117810726, 0.0031619553919881582, -0.03126303479075432, -0.005974313244223595, -0.007455776911228895, 0.0037244269624352455, -0.005344345234334469, -0.012945499271154404, 0.010854835622012615, -0.03153994306921959, -0.01943901740014553, -0.029407743364572525, -0.03549974411725998, 0.010370244272053242, 0.007898830808699131, 0.022249644622206688, 0.005157431587576866, -0.004738606512546539, 0.002082010032609105, 0.012924730777740479, 0.02481105364859104, 0.005257810931652784, 0.025281798094511032, -0.03732734173536301, 0.031041506677865982, -0.013776225969195366, -0.011429421603679657, 0.025420252233743668, 0.0017220282461494207, 0.001815485069528222, -0.009144921787083149, -0.002540640765801072, -0.031179960817098618, -0.013880067504942417, 0.014018521644175053, 0.01116635836660862, -0.00472129974514246, -0.012045544572174549, -0.006763503886759281, 0.01759757101535797, -0.017763717100024223, -0.031872235238552094, -0.023066526278853416, -0.039597995579242706, -0.027400152757763863, 0.010460239835083485, -0.00388364982791245, 0.02774628810584545, -0.0003621451323851943, -0.03652430698275566, -0.028272416442632675, -0.00413286779075861, -0.015382299199700356, 0.001979899825528264, 0.02954619750380516, 0.003160224761813879, -0.0036655839066952467, 0.05959083139896393, -0.003959799651056528, -0.000129260282847099, -0.014191590249538422, 0.04400085285305977, -0.008037285879254341, -0.0665135607123375, -0.009131076745688915, 0.0035392441786825657, -0.023246517404913902, -0.006638894788920879, -0.01650378108024597, 0.0287154708057642, 0.023994171991944313, 0.017099134624004364, -0.004735145252197981, -0.006739274598658085, -0.017722180113196373, -0.009103385731577873, 0.026126371696591377, 0.013056262396275997, -0.007573463022708893, -0.01787448115646839, 0.014219281263649464, 0.019812844693660736, 0.0007000607438385487, -0.02100355364382267, 0.007635767571628094, 0.030376926064491272, 0.010446394793689251, -0.017016062512993813, -0.006116229109466076, -0.002095855539664626, 0.0019487475510686636, 0.0007420298061333597, 0.029380053281784058, -0.01467618066817522, 0.010917140170931816, 0.018372917547822, 0.031484562903642654, 0.011650948785245419, 0.01845598965883255, -0.014800789766013622, 0.001889904378913343, -0.002452376065775752, 0.03663507103919983, -0.024506453424692154, -0.012710126116871834, 0.03868419677019119, 0.021958889439702034, 0.0072827087715268135, -0.020269744098186493, -0.003068498568609357, 0.01633763499557972, -0.013464703224599361, -0.0019954759627580643, -0.0036898134276270866, -0.0218204353004694, -0.032896798104047775, 0.004060179460793734, 0.017140671610832214, 0.02342650666832924, 0.008978776633739471, -0.021654289215803146, 0.0219450443983078, -0.004690147470682859, 0.023800333961844444, -0.004766297526657581, 0.011249431408941746, -0.017112981528043747, -0.004527463112026453, -0.004233247600495815, 0.008196508511900902, -0.011020980775356293, 0.0045724608935415745, -0.022443480789661407, -0.006811963394284248, 0.03192761540412903, -0.003592895111069083, 0.08783555775880814, 0.030543070286512375, -0.016129953786730766, -0.0027621679473668337, -0.012218613177537918, 0.010840990580618382, 0.01500847190618515, 0.01116635836660862, -0.008715713396668434, -0.024381844326853752, 0.023301897570490837, -0.01520230807363987, -0.01529922615736723, -0.0013741612201556563, -0.018899044021964073, -0.0011145590106025338, -0.015493062324821949, 0.016157643869519234, -0.0016804919578135014, 0.00989257637411356, 0.017334507778286934, 0.0023191135842353106, 0.010903295129537582, -0.009747199714183807, -0.03444748744368553, -0.006666585803031921, 0.015479217283427715, 0.02476951666176319, -0.0043059359304606915, -0.01014871709048748, 0.029573889449238777, -0.0072827087715268135, -0.023371126502752304, -0.011526339687407017, -0.01009333599358797, 0.007871140725910664, -0.014316199347376823, -0.028549324721097946, 0.02457568049430847, 0.02676326222717762, 0.00023991575289983302, 0.020657416433095932, -0.025752544403076172, -0.009788735769689083, 0.013755458407104015, 0.0036067406181246042, -0.011387885548174381, -0.020754335448145866, -0.005884317681193352], "5f252439-4174-4f21-8caf-f68533eecee0": [-0.02626127563416958, 0.004900920204818249, 0.007969975471496582, -0.040984541177749634, 0.013684297911822796, 0.022829947993159294, -0.020902389660477638, -0.024907883256673813, -0.009036284871399403, -0.032618116587400436, 0.013759486377239227, 0.02133985050022602, 0.0172249898314476, -0.013581768609583378, -0.008366423659026623, 0.018619393929839134, 0.025769133120775223, 0.00946007389575243, 0.000576729595195502, 0.011278267949819565, -0.03458668664097786, 0.0006284216651692986, -0.004477130714803934, 0.0024419159162789583, -0.02807946875691414, 0.0006369657930918038, 0.020820366218686104, -0.020464928820729256, -0.025276990607380867, 0.012173693627119064, 0.01844167709350586, -0.024388398975133896, -0.03907065466046333, 0.008667177520692348, -0.013123802840709686, 0.014928325079381466, 0.007334291469305754, 0.0042959945276379585, 0.021941356360912323, -0.013198991306126118, 0.01741638034582138, 0.023841574788093567, 0.001917305518873036, -0.01550249196588993, -0.007942634634673595, 0.027669349685311317, 0.010068417526781559, -0.025769133120775223, -0.03376644849777222, 0.003673981176689267, -0.005051296669989824, -0.0019497732864692807, -0.016377411782741547, 0.007327456492930651, 0.012911907397210598, -0.006008240859955549, 0.015570844523608685, 0.015365784987807274, -0.002429954009130597, -0.0017959787510335445, 0.006151782348752022, 0.0007834978168830276, -0.0059193819761276245, -0.002969943918287754, -0.016637153923511505, -0.03975418582558632, -0.019740385934710503, 0.016486776992678642, -0.004736872389912605, -0.010888654738664627, 0.04604267328977585, 0.02980196848511696, 0.020601635798811913, -0.013786828145384789, -0.004002076108008623, -0.006678101606667042, -0.025851156562566757, -0.024989906698465347, -0.006698607467114925, -0.006749872583895922, 0.032043952494859695, -0.005922799464315176, -0.007306950632482767, 0.011059537529945374, 0.03762156888842583, 0.023363102227449417, 0.011599527671933174, -0.0001325410121353343, -0.009959052316844463, -0.018455347046256065, 0.017498403787612915, 0.009008944034576416, 0.0322900228202343, 0.03729347139596939, 0.008933755569159985, -0.001939520239830017, 0.006226970814168453, 0.015598186291754246, -0.020875047892332077, -0.011162067763507366, -0.007744410540908575, -0.008161365054547787, -0.011968634091317654, -0.00947374477982521, 0.009822346270084381, -0.021326178684830666, 0.009234508499503136, -0.011879775673151016, 0.0015815207734704018, 0.030731569975614548, -0.02076568268239498, 0.03945343196392059, 0.006038999650627375, -0.006459371652454138, -0.0006438011187128723, 0.0062850709073245525, 0.023554490879178047, -0.03149712458252907, -0.011688387021422386, -0.032426729798316956, 0.006917337421327829, 0.009883863851428032, 0.04915957525372505, -0.002694822382181883, 0.012775201350450516, 0.006684937048703432, -0.00035180506529286504, -0.01796320453286171, 0.005382809787988663, 0.006722531281411648, 0.008161365054547787, 0.016213364899158478, 0.015420467592775822, 0.02287095971405506, -0.026521017774939537, 0.0012072873068973422, -0.012522295117378235, 0.007464162539690733, -0.0018557877046987414, -0.03056752309203148, 0.00515382643789053, 0.028407564386725426, 0.012686342000961304, -0.0035167690366506577, -0.002139453310519457, 0.05413568392395973, -0.0011021943064406514, 0.02188667468726635, 0.009015779010951519, -0.00135424651671201, 0.001835281727835536, -0.012262552976608276, -0.035652995109558105, 0.004213971085846424, 0.006541395094245672, 0.009384885430335999, 0.010635748505592346, 0.024962566792964935, -0.015666538849473, 0.002775137312710285, -0.004586495459079742, 0.03595374897122383, 0.00451472494751215, -0.012563306838274002, -0.008147694170475006, 0.040218986570835114, 0.006517471745610237, -0.037539541721343994, -0.03499680757522583, -0.020847707986831665, 0.0032638623379170895, 0.0196173507720232, -0.018004216253757477, 0.023814233019948006, -0.01576223410665989, 0.0076008690521121025, 0.01624070480465889, -0.0009868483757600188, -0.005140156019479036, -0.03671930730342865, 0.021955028176307678, -0.020902389660477638, -0.007341126911342144, 0.013779992237687111, -0.012201035395264626, -0.0023017919156700373, 0.028981730341911316, 0.020656317472457886, 0.0027495049871504307, -0.0064525362104177475, 0.015338444150984287, -0.003193800337612629, -0.012816213071346283, -0.007375303655862808, -0.6194434762001038, -0.0006690063164569438, 0.004565989598631859, -0.002975070383399725, 0.011141561903059483, 0.02217375859618187, 0.004853072576224804, -0.0020317970775067806, -0.0013482656795531511, 0.02906375378370285, 0.014012393541634083, 0.0027443785220384598, -0.01102536078542471, -0.007539351005107164, -0.01223521213978529, -0.030676888301968575, -0.006035582162439823, -0.016514118760824203, -0.0066200015135109425, -0.00816820003092289, -0.0488041415810585, 0.007395809516310692, 0.008332247845828533, 0.007047208491712809, -0.012112176045775414, -0.030102722346782684, 0.01241292990744114, -0.002347930334508419, 0.004651430994272232, 0.045605212450027466, -0.0351608544588089, 0.011831928044557571, 0.02252919413149357, 0.0014097834937274456, 0.03688335418701172, -0.0281068105250597, 0.0044634598307311535, 0.03330164775252342, 0.02057429403066635, 0.02645266428589821, -0.01825028844177723, -0.0065038008615374565, 0.018961161375045776, 0.01863306574523449, -0.007265938445925713, -0.0017583845183253288, 0.014777948148548603, 0.016732847318053246, -0.003978152759373188, -0.014996678568422794, -0.007402644958347082, 0.0037047399673610926, -0.008386930450797081, -0.020027469843626022, 0.012378753162920475, 0.00417295889928937, 0.020820366218686104, -0.013834674842655659, 0.01464124210178852, -0.009836016222834587, 0.009391721338033676, 0.018578382208943367, -0.010649418458342552, -0.04585128650069237, -0.044812317937612534, 0.015434138476848602, -0.027040502056479454, -0.013151143677532673, 0.0009501086315140128, -0.0016421840991824865, 0.014791619032621384, -0.008626165799796581, 0.007771751843392849, -0.006493547931313515, -0.0024965982884168625, 0.02561875618994236, 0.034887440502643585, -0.014313147403299809, 0.002204388612881303, 0.0139918876811862, 0.008721860125660896, -0.005833940114825964, -0.018332311883568764, -0.02217375859618187, 0.031469784677028656, 0.012447106651961803, -0.0062782359309494495, -0.012652166187763214, -0.0073889740742743015, -0.02112112008035183, 0.009870192967355251, 0.02731391414999962, -0.014928325079381466, -0.02963791973888874, 0.0021411620546132326, 0.053998980671167374, 0.008010988123714924, 0.00614152941852808, 0.005645969416946173, -0.01424479391425848, -0.02463447116315365, -0.016924237832427025, 0.007095055654644966, 0.010068417526781559, 0.014217453077435493, 0.01260431855916977, -0.00974715780466795, -0.0009979557944461703, 0.00894742552191019, -0.0011867813300341368, -0.001021879375912249, -0.004665101878345013, -0.014969336800277233, -0.029856650158762932, 0.009214002639055252, -0.01980873942375183, -0.0031134854070842266, 0.02466181293129921, 0.017142966389656067, -0.014545547775924206, -0.02922780252993107, -0.024620801210403442, 0.02255653589963913, 0.0020095822401344776, 0.008557813242077827, 0.013602274470031261, -0.0021223649382591248, -0.01084764301776886, 0.010731442831456661, -0.01693790778517723, -0.013267343863844872, -0.013451897539198399, 0.003443289315328002, -0.007928963750600815, 0.03868787735700607, -0.007142902817577124, 0.02619292214512825, 0.003188673872500658, 0.015119713731110096, -0.03264546021819115, -0.006862655282020569, 0.0004665101587306708, 0.022611217573285103, -0.025946851819753647, 0.007279609329998493, -0.024511436000466347, 0.0014225996565073729, 0.000586128153372556, 0.007887952029705048, -0.023021336644887924, -0.014381499961018562, 0.006558483466506004, 0.003827775828540325, 0.0076965633779764175, -0.010355500504374504, -0.006814807653427124, 0.009248179383575916, -0.03589906916022301, -0.011086879298090935, -0.02233780547976494, -0.0005656222347170115, -0.005946722812950611, -0.0069788554683327675, 0.009658298455178738, -0.004008911550045013, -0.012542800977826118, -0.012201035395264626, 0.019863421097397804, -0.032590776681900024, -0.01563919708132744, -0.00024457607651129365, -0.015188067220151424, -0.0036944870371371508, 0.014162770472466946, 0.007669222075492144, 0.010840808041393757, -0.02348613739013672, -0.01248811837285757, -0.014955666847527027, 3.196043326170184e-05, 0.0008710753172636032, 0.019726715981960297, -0.014285805635154247, -0.020847707986831665, 0.05719790607690811, -0.004258400294929743, 0.029583238065242767, 0.02683544158935547, -0.03857851028442383, 0.018031558021903038, -0.00799048226326704, 0.012187364511191845, -0.02258387766778469, -0.007395809516310692, -0.0309776421636343, -0.017238661646842957, -0.010157275944948196, 0.008291235193610191, 0.021189473569393158, 0.026808099821209908, 0.01872875913977623, 0.009384885430335999, 0.004548901226371527, -0.004518142435699701, -0.0021838827524334192, -0.02124415524303913, 0.014463524334132671, -0.02676708810031414, 0.015529832802712917, -0.0023786891251802444, -0.006784048862755299, -0.005960393697023392, 0.0024641305208206177, -0.011640539392828941, 0.009432733058929443, 0.03436795622110367, 0.01293924916535616, 0.020533282309770584, -0.006985690910369158, -0.007006196770817041, 0.018414335325360298, 0.021462885662913322, 0.009644627571105957, -0.014080746099352837, 0.014026063494384289, 0.02035556361079216, 0.023650186136364937, 0.03548894822597504, 0.010259806178510189, -0.020628977566957474, -0.02504459023475647, 0.02944653108716011, -0.010615242645144463, 0.009726651944220066, 0.05626830458641052, 0.00960361585021019, 0.02332209050655365, 0.0026521016843616962, 0.02760099619626999, 3.238763747503981e-05, -0.007423150818794966, -0.0023103361018002033, 0.0212851669639349, -0.03187990188598633, 0.024812189862132072, 0.0002749077684711665, 0.017019931226968765, 0.010006899014115334, -0.01971304416656494, -0.003971317317336798, 0.0005476794904097915, -0.01313063781708479, -0.007245432585477829, -0.006261147558689117, 0.018879136070609093, -0.005410151090472937, 0.025577744469046593, 0.005581033881753683, 0.007853775285184383, 0.013069120235741138, 0.02121681347489357, -0.0019155966583639383, 0.011524339206516743, -0.0035817043390125036, 0.02351347915828228, -0.020902389660477638, 0.004610419273376465, -0.0309776421636343, 0.007327456492930651, -0.006787466816604137, 0.018496358767151833, -0.009877028875052929, 0.004049923270940781, -0.023240067064762115, 0.012611153535544872, 0.005827105138450861, -0.01226938795298338, 0.01624070480465889, -0.0036637282464653254, 0.01528376154601574, -0.010006899014115334, -0.020875047892332077, 0.022501852363348007, 0.025769133120775223, 0.006702024955302477, 0.0007647007587365806, -0.02185933291912079, 0.001331177307292819, 0.0027956434059888124, 0.01424479391425848, 0.0020386322867125273, -0.006373930256813765, -0.01142180897295475, -0.011715727858245373, 0.012494953349232674, 0.010608406737446785, 0.03346569463610649, -0.015775904059410095, -0.017826497554779053, 0.0026008368004113436, 0.023267408832907677, 0.01990443468093872, -0.028024787083268166, -0.02485320158302784, 0.022433500736951828, -0.01509237289428711, -0.020109493285417557, -0.013882522471249104, -0.008120352402329445, -0.019316596910357475, 0.0027563401963561773, -0.0021240736823529005, -0.019125208258628845, -0.012194199487566948, -0.006985690910369158, -0.012002810835838318, 0.007300115190446377, -0.006825061049312353, 0.015543503686785698, 0.02408764511346817, -0.0036124633625149727, -0.010170946829020977, 0.01645943522453308, 0.014668582938611507, 0.059767983853816986, -0.0019207231234759092, 0.0066439248621463776, 0.008892742916941643, -0.01138763315975666, -0.010232464410364628, -0.031114349141716957, -0.011319279670715332, 0.04896818846464157, 0.017211319878697395, -0.02463447116315365, 0.0012277932837605476, 0.005475086160004139, -0.003171585500240326, 0.01464124210178852, -0.0013192155165597796, -0.007204420864582062, -0.029665261507034302, -0.005652804393321276, 0.021544909104704857, 0.006114188116043806, -0.015447809360921383, 0.03040347620844841, 0.01614501141011715, 0.02590584009885788, 0.01691056601703167, 0.01607665792107582, 0.020273540169000626, 0.004231059458106756, -0.015201738104224205, -0.027559984475374222, 0.013041778467595577, -9.088831575354561e-05, 0.010157275944948196, -0.026685064658522606, 0.038141049444675446, -0.008585154078900814, -0.0181819349527359, -0.01688322424888611, 0.005461415741592646, -0.006893414072692394, 0.03830510005354881, -0.016445765271782875, -0.014682253822684288, 0.020273540169000626, -0.018605723977088928, -0.007887952029705048, 0.02587849833071232, -0.010895490646362305, 0.0004669373738579452, 0.017881181091070175, 0.0139918876811862, -0.009214002639055252, 0.017539415508508682, 0.01655513048171997, -0.02080669440329075, -0.0047266194596886635, -0.018482688814401627, -0.03937140852212906, -0.026903795078396797, -0.023144371807575226, -0.011524339206516743, -0.010451194830238819, -0.02887236513197422, -0.025276990607380867, -0.0449763648211956, -0.01090916059911251, -0.02344512566924095, -0.02066998928785324, -0.004388271365314722, -0.018619393929839134, -0.026849113404750824, -0.026425322517752647, 0.00913881417363882, 0.016678165644407272, 0.030075380578637123, 0.00016255230002570897, 0.002230021171271801, -0.00010188889427809045, 0.007375303655862808, 0.00535888597369194, -0.016664495691657066, -0.00025824669864960015, -0.02827085740864277, 0.005324709229171276, -0.016377411782741547, -0.019453303888440132, -0.004049923270940781, -0.0011978887487202883, 0.022119075059890747, -0.0104648657143116, -0.02485320158302784, 0.021189473569393158, 0.010136770084500313, 0.016965249553322792, 0.014531876891851425, 0.02717720717191696, -0.012590647675096989, 0.024607129395008087, -0.044730294495821, 0.02645266428589821, -0.025987863540649414, -0.025632426142692566, -0.0051640793681144714, 0.021421873942017555, 0.027901750057935715, -0.019931774586439133, -0.01012993510812521, 0.0026521016843616962, -0.0180588997900486, 0.01207799930125475, -0.00398840568959713, -0.01280937809497118, -0.024552447721362114, -0.010724606923758984, -0.013711639679968357, 0.006630254443734884, 0.022993994876742363, -0.004873578902333975, -0.01650044694542885, 0.003062220523133874, -0.010786125436425209, 0.028188833966851234, 0.012016481719911098, 0.0013892775168642402, 0.008093011565506458, 0.008557813242077827, -0.011722562834620476, -0.04109390825033188, -0.006121023558080196, -0.001167984213680029, -0.004723201971501112, -0.027669349685311317, -0.012399259023368359, -0.010560560040175915, -0.0024367894511669874, -0.003961064387112856, 0.009330203756690025, -0.004319918341934681, 0.00019512684957589954, -0.04248831048607826, 0.002821275731548667, 0.012324070557951927, -0.011462821625173092, 0.007395809516310692, -0.029966015368700027, -0.03551629185676575, -0.0020642648451030254, 0.016678165644407272, 0.027095183730125427, -0.01799054630100727, -0.011018525809049606, -0.03518819436430931, -0.02832554094493389, -0.019097866490483284, -0.016787530854344368, 0.0017737639136612415, 0.01786751113831997, 0.03822307288646698, 0.03425859287381172, 0.014162770472466946, 0.01789485104382038, 0.018646735697984695, 0.038879264146089554, -0.011838763952255249, -0.001244881539605558, -0.00889957882463932, -0.01490098424255848, 0.008332247845828533, -0.018715089187026024, -0.01354075688868761, -0.00906362570822239, -0.0003325807338114828, 0.0035680336877703667, -0.006927590351551771, -0.01032132375985384, 0.016090327873826027, 0.002780263777822256, -0.029583238065242767, -0.04803858697414398, 0.008598824962973595, 0.03882458060979843, 0.00869451928883791, 0.0015866472385823727, -0.03455934673547745, 0.0010791252134367824, 0.02648000605404377, -0.0038722052704542875, 0.03885192424058914, 0.006155200302600861, 0.02459345944225788, -0.00012762812548317015, 0.011066373437643051, 0.02638431079685688, -0.0068558198399841785, -0.007368468213826418, -0.010649418458342552, -0.03475073352456093, -0.008926919661462307, 0.013424556702375412, 0.019439632073044777, 0.012973425909876823, 0.0036124633625149727, 0.003971317317336798, 0.008824390359222889, 0.023855244740843773, -0.015215408056974411, -0.018674077466130257, 0.0067669604904949665, -0.03341101482510567, -0.015967292711138725, -0.037020061165094376, -0.02555040270090103, 0.016213364899158478, 0.0041490355506539345, 0.0025495721492916346, 0.0018711671000346541, 0.01758042722940445, -0.0065755718387663364, -0.018209276720881462, 0.008482624776661396, -0.0007856338634155691, 0.016008304432034492, 0.012884566560387611, 0.014996678568422794, 0.02641165256500244, 0.009945381432771683, -0.012255718000233173, -0.01156535092741251, 0.0007386410725302994, 0.006804554723203182, -0.006527724675834179, 0.03376644849777222, -0.01371847465634346, -0.007860611192882061, -0.0009407100733369589, -0.00483256671577692, 0.012946084141731262, -0.03625450283288956, 0.03617247939109802, 0.011045866645872593, 0.0031989268027246, -0.035106170922517776, -0.023281078785657883, -0.016896896064281464, 0.0050854734145104885, -0.01827762834727764, 0.01607665792107582, 0.009097802452743053, 0.001485826331190765, 0.0028998819179832935, 0.028243517503142357, -0.010676760226488113, 0.020697331055998802, -0.008427942171692848, 0.01228305883705616, 0.0033903156872838736, -0.003081017639487982, 0.011524339206516743, -0.008222882635891438, 0.002086479449644685, 0.010041075758635998, -0.042351603507995605, 0.0020147087052464485, 0.017019931226968765, 0.020492270588874817, -0.004617254249751568, -0.0023650184739381075, -0.026780759915709496, 0.028927048668265343, -0.011613198556005955, -0.015721222385764122, 0.001654145889915526, -0.020875047892332077, 0.0166234839707613, -0.02865363471210003, -0.024388398975133896, -0.004036252852529287, -0.0019412291003391147, 0.00035308668157085776, 0.0001483476662542671, 0.007190749980509281, 0.0020300881005823612, 0.00410802336409688, 0.011209914460778236, -0.016062987968325615, -0.02310336008667946, -0.0017874345649033785, 0.018906477838754654, -0.025851156562566757, -0.014381499961018562, 0.008400600403547287, -0.01669183559715748, 0.009453238919377327, 0.010068417526781559, -0.0005698942695744336, -0.0003466785710770637, 0.031661175191402435, -0.03021208755671978, 0.02131250873208046, 0.014313147403299809, 0.021230485290288925, -0.03617247939109802, 0.030895618721842766, -0.008441612124443054, -0.006599495653063059, 0.010259806178510189, 0.007375303655862808, -0.0380316860973835, -0.02239248715341091, 0.013643286190927029, 0.005963811185210943, 0.006719113327562809, 0.008325411938130856, 0.029665261507034302, 0.025085601955652237, -0.007306950632482767, -0.01939862035214901, -0.010676760226488113, -0.000921912956982851, -0.007546186447143555, 0.0007416315493173897, 0.019507985562086105, -0.012563306838274002, 0.017662450671195984, 0.005071802996098995, 0.007067714352160692, 0.003180129686370492, -0.026726076379418373, -0.03294621407985687, -0.02224211022257805, -0.01177041046321392, 0.001672088634222746, 0.017758145928382874, -0.0036910695489495993, -0.031633831560611725, -0.013075955212116241, 0.02430637553334236, -0.004128529690206051, 0.001635348773561418, 0.032809507101774216, -0.009049955755472183, -0.028598953038454056, 0.026233933866024017, -0.004627507645636797, -0.05129219591617584, -0.02520863711833954, -0.02348613739013672, -0.026630382984876633, -0.010458029806613922, -0.014586559496819973, 0.030895618721842766, 0.012030152603983879, -0.01548882108181715, -0.03403986245393753, -0.014941995963454247, -0.008810719475150108, -0.018892807886004448, -0.025755463168025017, 0.03155180811882019, 0.015844257548451424, 0.0330008938908577, 0.008920084685087204, 0.03614513948559761, -0.0022966654505580664, 0.03371176868677139, -0.02358183264732361, -0.0257144495844841, -0.020177846774458885, -0.024484094232320786, 0.027860738337039948, -0.026179252192378044, -0.03907065466046333, -0.0007578654331155121, 0.011825093068182468, -0.024073975160717964, -0.007013031747192144, 0.01990443468093872, 0.007108726538717747, -0.0065038008615374565, -0.008134023286402225, -0.005782675463706255, 0.01327417977154255, -0.003697904758155346, 0.0038961288519203663, -0.043691325932741165, 0.01866040751338005, 0.017142966389656067, -0.012187364511191845, -0.011777245439589024, 0.0051743327639997005, 0.027518972754478455, -0.019836081191897392, -0.00764871621504426, -0.02645266428589821, 0.0009637792245484889, -0.018113581463694572, -0.0172249898314476, -0.003219432896003127, 0.0027597579173743725, 0.001794269890524447, 0.030649546533823013, -0.007662386633455753, -0.010950172320008278, -0.018140923231840134, 0.02042391709983349, 0.006387600675225258, -0.010943337343633175, 0.019658362492918968, -0.019466973841190338, -0.02382790297269821, -0.02252919413149357, 0.020123163238167763, 0.0013200700050219893, -0.012700012885034084, -0.022474512457847595, -0.012214705348014832, -0.03693803399801254, -0.007628210354596376, 0.0034996806643903255, -0.00641152448952198, 0.01105270255357027, -0.011462821625173092, 0.0042447298765182495, -0.018701419234275818, -0.003171585500240326, -0.004596748389303684, -0.021462885662913322, -0.02714986726641655, -0.007730740122497082, 0.009008944034576416, -0.03267280012369156, -0.008598824962973595, 0.030649546533823013, -0.023937268182635307, 0.008352753706276417, 0.20943401753902435, 0.0018950907979160547, 0.004094352945685387, 0.042542994022369385, 0.013328861445188522, -0.019056854769587517, 0.008222882635891438, 0.00528711499646306, 0.01228305883705616, 0.02865363471210003, 0.018687747418880463, -8.261117181973532e-05, -0.030840935185551643, -0.0040601762011647224, -0.0013798789586871862, -0.010683595202863216, -0.022624889388680458, -0.02504459023475647, -0.01032132375985384, -0.0022368563804775476, 0.013855180703103542, -0.0059706466272473335, -0.015734892338514328, 0.004152453038841486, 0.022925643250346184, 0.026138240471482277, -0.0019736967515200377, 0.0054716686718165874, 0.0113602913916111, 0.011804587207734585, -0.02252919413149357, -0.02028721198439598, 0.019890762865543365, -0.02473016455769539, -0.018222946673631668, 0.0019480644259601831, 0.016062987968325615, -0.03483276069164276, 0.009104638360440731, 0.005960393697023392, -0.009371215477585793, -0.026657722890377045, 0.004750543273985386, -0.012050658464431763, 0.028380222618579865, -0.01770346239209175, 0.005666475277394056, -0.0070745497941970825, 0.008284400217235088, 0.03250875324010849, -0.0048940847627818584, 0.010362335480749607, -0.007163408678025007, 0.005984317045658827, -0.0008069942123256624, -0.020492270588874817, -0.011469656601548195, -0.0064525362104177475, -0.021558579057455063, 0.008701354265213013, -0.009036284871399403, 0.004155870992690325, -0.016158681362867355, 0.026206593960523605, -0.028434906154870987, 0.012959755025804043, -0.02159959077835083, 0.025468379259109497, 0.014928325079381466, -0.0036773988977074623, -0.015147055499255657, -0.01443618256598711, -0.03630918636918068, 0.004159288480877876, -0.012064328417181969, -0.016103999689221382, -0.004131947178393602, 0.04453890398144722, 0.0354069247841835, 0.022023381665349007, 0.013944040052592754, 0.005475086160004139, -0.012071164324879646, -0.0038619523402303457, 0.007149738259613514, -0.005509262904524803, 0.02686278335750103, -0.02925514243543148, 0.008058834820985794, -0.022898301482200623, -0.015680210664868355, -0.004907755181193352, -0.013028108514845371, 0.008633001707494259, -0.0020181264262646437, -0.018222946673631668, 0.01084764301776886, 0.031087007373571396, -0.0005412714090198278, -0.012433435767889023, -0.028352880850434303, 0.04243362694978714, 0.019767727702856064, 0.02274792455136776, -0.015420467592775822, 0.0014337070751935244, -0.008605659939348698, 0.011517503298819065, -0.01282304897904396, 0.0018797112861648202, -0.010232464410364628, -0.03693803399801254, 0.017717134207487106, 0.003175003221258521, 0.0044121951796114445, 0.03535224124789238, 0.03502414748072624, -0.010170946829020977, -0.020300881937146187, -0.009255015291273594, 0.01793586276471615, -0.030458157882094383, 0.00020644783216994256, 0.004019164480268955, -0.03081359528005123, -0.021380862221121788, 0.00012367646559141576, 0.0017566756578162313, -0.032207999378442764, -0.02358183264732361, 0.002558116102591157, -0.002629887079820037, 0.012782037258148193, -0.01057422999292612, -0.002865705406293273, -0.01000006403774023, -0.003366392105817795, -0.018510030582547188, -0.010293982923030853, 0.007054043933749199, 0.0068899961188435555, 0.0015550338430330157, 0.016391081735491753, -0.00889957882463932, 0.020519612357020378, -0.004432701040059328, 0.0010389677481725812, 0.019959116354584694, -0.018933819606900215, -0.008339082822203636, 0.006428612396121025, 0.019248243421316147, 0.0042959945276379585, 0.006825061049312353, 0.026466334238648415, -0.02889970690011978, -0.03671930730342865, -0.016855884343385696, 0.014313147403299809, -0.01911153644323349, -0.03743017837405205, -0.012378753162920475, 0.02909109555184841, 0.027806056663393974, -0.017689792439341545, -0.00316987675614655, -0.17410911619663239, 0.010184617713093758, 0.019548997282981873, 0.002802478615194559, -0.02191401645541191, 0.026780759915709496, 0.008790213614702225, -0.003714993130415678, -0.016158681362867355, -0.01614501141011715, 0.0016849047970026731, -0.015830587595701218, -0.02329474873840809, -0.01789485104382038, 0.0031579150818288326, -0.005365721415728331, -0.015379455871880054, 0.02265222929418087, 0.03685601055622101, -0.017717134207487106, 0.01719764992594719, -0.013048614375293255, 0.012652166187763214, -0.021353520452976227, 0.025249648839235306, 0.022447170689702034, -0.01188661064952612, 0.023267408832907677, 0.013041778467595577, -0.03748486191034317, -0.020628977566957474, -0.011517503298819065, 0.011114220134913921, 0.015529832802712917, -0.009330203756690025, 0.007532516028732061, 0.00626798253506422, 0.005239267833530903, -0.02807946875691414, 0.023868916556239128, 0.0212851669639349, 0.01942596212029457, 0.018523700535297394, -0.008933755569159985, 0.010006899014115334, 0.03081359528005123, 0.015775904059410095, -0.01684221252799034, 0.006691772025078535, 0.0028776670806109905, 0.023048678413033485, -0.01017778180539608, -0.0005036771763116121, -0.01863306574523449, 0.016568800434470177, 0.002235147636383772, -0.002380398102104664, 0.02389625646173954, -0.0017002843087539077, -0.024265363812446594, -0.004015746992081404, -0.014354159124195576, -0.003180129686370492, -0.003238230012357235, -0.01894748955965042, -0.04030101001262665, -0.03267280012369156, 0.03040347620844841, -0.008010988123714924, 0.011264597065746784, -0.0014012393075972795, 0.013363038189709187, 0.002599128056317568, 0.012727354653179646, 0.015215408056974411, 0.0010825428180396557, -0.03136042132973671, 0.010280312038958073, 0.02999335713684559, 0.006486712954938412, 0.021134790033102036, 0.02153123915195465, 0.004080682527273893, 0.002370145171880722, -0.029145777225494385, 0.011278267949819565, 0.005868116859346628, -0.0062850709073245525, -0.01373214554041624, 0.021394532173871994, 0.026110898703336716, -0.008838060311973095, 0.027559984475374222, -0.0018028139602392912, 0.007771751843392849, 0.00673278421163559, 0.024265363812446594, -0.0019412291003391147, -0.0012021608417853713, -0.007375303655862808, 0.008967931382358074, 0.032973553985357285, -0.021831993013620377, -0.003974734805524349, 0.03625450283288956, 0.029938673600554466, 0.023978279903531075, -0.013445062562823296, 0.04623406380414963, 0.0018728759605437517, -0.029173118993639946, 0.02169528603553772, 0.02064264751970768, 0.010594736784696579, -0.016705507412552834, 0.04935096576809883, 0.0064012715592980385, -0.009172990918159485, 0.01351341512054205, -0.005205091554671526, 0.05025322735309601, -0.040027596056461334, -0.018195604905486107, 0.008523636497557163, -0.012036987580358982, -0.017566757276654243, -0.0944913774728775, -0.01808623969554901, 0.03294621407985687, 0.004607001319527626, 0.006298741791397333, 0.009685639292001724, -0.009719816036522388, 0.019316596910357475, -0.0008005861309356987, 0.018291300162672997, -0.014928325079381466, -0.0027512137312442064, -0.008735531009733677, -0.012002810835838318, 0.0133356973528862, 0.0008535598171874881, 0.004924843553453684, -0.024415740743279457, -0.007764916401356459, 0.02019151672720909, 0.01901584304869175, -0.004764213692396879, 0.023363102227449417, 0.00418662978336215, -0.014026063494384289, -0.014586559496819973, -0.03483276069164276, 0.003591957502067089, 0.016855884343385696, 0.0006006531766615808, 0.04112124815583229, -0.013069120235741138, 0.0227205827832222, -0.011380797252058983, -0.009774498641490936, -0.0013644995633512735, -0.006616583559662104, -0.03075891174376011, 0.045605212450027466, -0.006062923464924097, -0.003687651827931404, 0.012214705348014832, -0.0020420500077307224, -0.02648000605404377, 0.0032365210354328156, -0.010369171388447285, -8.250437531387433e-05, 0.0389886312186718, 0.003193800337612629, -0.0076077040284872055, -0.028407564386725426, -0.02676708810031414, -0.026329629123210907, -0.022542864084243774, 0.032426729798316956, -0.013240003027021885, 0.016090327873826027, 0.010957008227705956, -0.017361696809530258, 0.004986361600458622, -0.013198991306126118, 0.0005327272810973227, -0.015734892338514328, 0.01285722479224205, 0.005731410812586546, 0.004241312388330698, -0.01443618256598711, 0.01261798944324255, 0.0046309251338243484, -0.004446371458470821, -0.016732847318053246, 0.01049904152750969, -0.011715727858245373, -0.004839402157813311, -0.022802606225013733, 0.0002785390242934227, -0.0019873674027621746, -0.00745049212127924, -0.0002870831813197583, 0.009671969339251518, -0.016609812155365944, -0.014135428704321384, 0.0029733614064753056, -0.0210527665913105, 0.008790213614702225, -0.001980532193556428, 0.003615881083533168, -0.010820302180945873, 0.01370480377227068, -0.05276862159371376, 0.00803832896053791, 0.01885179616510868, 0.021162131801247597, 0.02961057983338833, -0.008940590545535088, 0.007491503842175007, -0.016213364899158478, -0.0075120097026228905, 0.005563945509493351, -0.00026785884983837605, 0.0017976874951273203, -0.010546889156103134, -0.07026702910661697, -0.0017378785414621234, 0.02083403617143631, 0.018113581463694572, 0.00725910346955061, -0.04609735682606697, 0.013650122098624706, -0.004661683924496174, 0.010458029806613922, -0.0014516498195007443, -0.019576339051127434, 0.003388606710359454, -0.020519612357020378, -0.01170889288187027, -0.02734125591814518, -0.028544269502162933, 0.01327417977154255, -0.008851731196045876, 0.024060305207967758, 0.0035030983854085207, 0.0076077040284872055, 0.007785422261804342, 0.011784081347286701, 0.02944653108716011, -0.006886578630656004, 0.030895618721842766, -0.020779354497790337, 0.022857289761304855, -0.017457392066717148, -0.01229672972112894, 0.018236616626381874, 0.003673981176689267, 0.003092979546636343, -0.0014413967728614807, -0.001977114472538233, -0.02851692959666252, -0.007730740122497082, 0.013246838003396988, 0.006831896025687456, -0.002793934429064393, 0.0005476794904097915, -0.01669183559715748, 0.024320047348737717, -0.025577744469046593, -0.03272748365998268, -0.02549572102725506, -0.0157895740121603, -0.029309825971722603, 0.014504536055028439, -0.001249153632670641, 0.047710489481687546, 0.0024060304276645184, -0.017443720251321793, -0.027970103546977043, -0.008585154078900814, -0.014682253822684288, -0.002811022801324725, 0.03190724551677704, 0.0017549667973071337, 0.009863357990980148, 0.045003704726696014, 0.001203869585879147, 0.0022146417759358883, -0.005915964022278786, 0.03671930730342865, -0.005406733136624098, -0.05528401955962181, -0.018291300162672997, 0.018222946673631668, -0.02444308251142502, -0.010806631296873093, -0.012645330280065536, 0.03365708515048027, 0.01844167709350586, 0.01879711262881756, -0.004248147364705801, -0.0069959438405931, -0.01815459318459034, -0.008434777148067951, 0.02961057983338833, 0.012542800977826118, 0.0007864882936701179, -0.009234508499503136, 0.0198497511446476, 0.02329474873840809, -0.006264565046876669, -0.023677527904510498, 0.019726715981960297, 0.013260508887469769, 0.004425865598022938, -0.020519612357020378, -0.011114220134913921, -0.004254982806742191, 0.017689792439341545, -0.009207167662680149, 0.017826497554779053, -0.004032835364341736, 0.012754695490002632, 0.0351608544588089, 0.019357608631253242, 0.002670898800715804, 0.005054714623838663, -0.020205186679959297, 0.0032946213614195585, -0.0018728759605437517, 0.01959000900387764, -0.02102542482316494, -0.009576275013387203, 0.021189473569393158, 0.019220901653170586, 0.009302861988544464, -0.0315791480243206, -0.013663792051374912, 0.020341893658041954, -0.0036192985717207193, 0.015803245827555656, -0.002440206939354539, -0.012071164324879646, -0.027737703174352646, 0.0020369235426187515, 0.009822346270084381, 0.012433435767889023, 0.01595362275838852, -0.02205072157084942, 0.03187990188598633, 0.004743707831948996, 0.011298773810267448, -0.006377347745001316, 0.01282304897904396, -0.015967292711138725, -0.0005737391766160727, 0.0008928628521971405, 0.005933052394539118, -0.005293950438499451, -0.004446371458470821, -0.01373214554041624, 0.006654177792370319, 0.027327584102749825, -0.016678165644407272, 0.09492883831262589, 0.033547721803188324, -0.023882586508989334, 0.003081017639487982, -0.008762871846556664, 0.010123100131750107, 0.005434074439108372, 0.018619393929839134, -0.003797016805037856, -0.024046633392572403, 0.019248243421316147, -0.02162693254649639, -0.009207167662680149, 0.014764278195798397, -0.009753992781043053, 0.005071802996098995, -0.012754695490002632, -0.001983949914574623, 0.009712981060147285, 0.004213971085846424, 0.005806599278002977, -0.005198256112635136, 0.004337006714195013, -0.011688387021422386, -0.020724670961499214, -0.00516066187992692, 0.023048678413033485, 0.017088284716010094, 0.0011987431207671762, -0.022324135527014732, 0.02928248420357704, 0.004094352945685387, -0.02459345944225788, -0.018687747418880463, -0.015816915780305862, 0.0030331704765558243, -0.024251693859696388, -0.03876990079879761, 0.007429986260831356, 0.027286572381854057, 3.0411805710173212e-05, 0.029555896297097206, -0.017853839322924614, -0.01464124210178852, 0.016596142202615738, 0.005434074439108372, 0.0009390012128278613, -0.025796474888920784, -0.0007702544098719954], "60f8b901-2d88-4334-9c72-687aa01d4b8d": [-0.01700727641582489, -0.0067817713133990765, 0.008203590288758278, -0.028286362066864967, 0.030413975939154625, 0.018998505547642708, -0.012520193122327328, -0.017757397145032883, -0.016161687672138214, -0.022421782836318016, 0.00693179527297616, 0.01622987911105156, 0.011770072393119335, -0.009901590645313263, -0.012349710799753666, 0.014852385967969894, 0.024508481845259666, 0.0005689834360964596, 0.002356060314923525, -0.004391614347696304, -0.014361397363245487, 0.002823180751875043, -0.006969301030039787, -0.01387722883373499, -0.02929561398923397, -0.002978319302201271, 0.020880626514554024, -0.013065734878182411, -0.02694978378713131, 0.02693614549934864, 0.009881132282316685, -0.02300824038684368, -0.027522603049874306, -0.0005988177726976573, 0.004439349286258221, 0.00915146991610527, 0.0064885420724749565, 0.00967655424028635, 0.01322257798165083, -0.012329253368079662, 0.021903518587350845, 0.028231807053089142, -0.0018207470420747995, -0.015657059848308563, -0.014293204993009567, 0.04263412207365036, -0.00338406627997756, -0.01072672288864851, -0.022667277604341507, 0.012336072511970997, -0.012097397819161415, -0.00810130126774311, -0.01973498798906803, 0.0022708193864673376, 0.007814891636371613, -0.0005498042446561158, 0.014647806994616985, 0.017702843993902206, 0.002204331336542964, -0.007692144718021154, -0.0037881084717810154, -0.010842650197446346, -0.014102265238761902, -0.015316096134483814, -0.01689816825091839, -0.02277638576924801, -0.017089108005166054, -0.0013919849880039692, -0.005090590566396713, -0.011081324890255928, 0.04849869757890701, 0.033032577484846115, 7.922082295408472e-05, -0.01636626571416855, -0.0045791445299983025, -0.026745205745100975, -0.025272240862250328, -0.03098679520189762, -0.00947879534214735, -0.014906940050423145, 0.024958554655313492, -0.024522120133042336, -0.02068968676030636, 0.01144956611096859, 0.021998988464474678, 0.03150505945086479, 0.017225494608283043, 0.009669735096395016, -0.007051132619380951, -0.021508000791072845, 0.011967831291258335, 0.02119431272149086, 0.019953204318881035, 0.029322892427444458, 0.0029510422609746456, 0.013161204755306244, 0.0040404219180345535, 0.0061032529920339584, -0.007923999801278114, -0.010849470272660255, -0.012397445738315582, -0.01164732500910759, -0.012261060066521168, -0.003409638535231352, -0.00869457796216011, -0.030904963612556458, 0.01833021640777588, -0.012390626594424248, -0.0057827471755445, 0.03060491569340229, -0.02722255513072014, 0.027277108281850815, -0.01052896399050951, -0.008578650653362274, -0.0028180661611258984, -0.0022077409084886312, 0.018630264326930046, -0.03319624066352844, -0.004592783283442259, -0.030059373006224632, 0.0009845331078395247, -0.00392449414357543, 0.044025253504514694, -0.008087662979960442, 0.016979999840259552, 0.0014005090342834592, -0.0009853855008259416, -0.019980482757091522, 0.01714366301894188, 0.006021421868354082, 0.023512868210673332, 0.016038939356803894, 0.01197465043514967, 0.01897122897207737, -0.020103229209780693, 0.021794410422444344, -0.017730120569467545, 0.01549339760094881, 0.004759855568408966, -0.03322351723909378, 0.006041879300028086, 0.01805744506418705, 0.020225975662469864, -0.011354096233844757, 0.0041086142882704735, 0.054090507328510284, -0.0013161204988136888, 0.01444322895258665, 0.0027021386194974184, 0.0042177229188382626, -0.0033209880348294973, -0.017961975187063217, -0.03164144605398178, 0.004524590447545052, 0.01406134944409132, 0.02015778236091137, 0.003522156737744808, 0.03101407177746296, -0.015016048215329647, 0.017184577882289886, 0.009471976198256016, 0.020103229209780693, -0.0006107515073381364, -0.007132963743060827, -0.00816949363797903, 0.0295683853328228, 0.007262530270963907, -0.023594697937369347, -0.027440771460533142, -0.010433494113385677, -0.0021531868260353804, 0.039060819894075394, -0.011210891418159008, 0.016516288742423058, 0.006880650762468576, 0.013243036344647408, 0.017811952158808708, 0.0036653615534305573, -0.005342903546988964, -0.018234746530652046, 0.01320893969386816, -0.015929831191897392, -0.0019451987463980913, 0.020062312483787537, -0.01792106032371521, -0.013788578100502491, 0.02146708406507969, 0.02356742136180401, 0.005810024216771126, -0.010235735215246677, 0.023526506498456, 0.0001596137008164078, -0.006601060274988413, 0.0021395483054220676, -0.6144986748695374, 0.002581096487119794, 0.005871397443115711, -0.0033704277593642473, 9.573625720804557e-05, 0.029895711690187454, 0.00771942175924778, 0.0025708675384521484, 0.0019929336849600077, 0.03300530090928078, 0.007726240903139114, 0.009008265100419521, -0.01237016823142767, -0.007269349414855242, -0.016516288742423058, -0.022149011492729187, 0.0026816807221621275, -0.01685725338757038, -0.014947855845093727, -0.006358976010233164, -0.028995566070079803, 0.006065746769309044, -0.00018614495638757944, 0.00165111746173352, -0.0027345300186425447, -0.02656790427863598, 0.017634650692343712, -0.005431554280221462, 0.0023867469280958176, 0.04577098786830902, -0.03169599920511246, 0.009383325465023518, 0.012397445738315582, -0.013924963772296906, 0.03922448307275772, -0.02640424109995365, -0.008830963633954525, 0.024617590010166168, 0.013256674632430077, 0.029104674234986305, -0.025108577683568, -0.00752166286110878, 0.013543084263801575, 0.01647537387907505, -0.017825590446591377, -0.0016724277520552278, 0.022053541615605354, 0.015016048215329647, -0.007487566210329533, -0.012717952020466328, 0.009697011671960354, -0.0013084488455206156, -0.01583436131477356, -0.005547482054680586, 0.004773493856191635, -0.010938120074570179, 0.015588867478072643, -0.014634168706834316, 0.010460770688951015, 0.01243154238909483, 0.01183144561946392, 0.013270312920212746, -0.002160005969926715, -0.042825061827898026, -0.034450989216566086, 0.02209445834159851, -0.019312193617224693, -0.017880145460367203, -0.005813433788716793, -0.0005186912603676319, 0.017348241060972214, -0.011790529824793339, 0.005649771075695753, -0.0015616144519299269, -0.0025879156310111284, 0.018793927505612373, 0.033141687512397766, -0.01268385536968708, -0.0004449578409548849, 0.0201441440731287, -0.0008796867332421243, -0.0002621159655973315, 0.004333650693297386, -0.02118067443370819, 0.030413975939154625, 0.014811470173299313, -0.013263493776321411, -0.010808554477989674, -0.008210409432649612, -0.023894747719168663, 0.0009862380102276802, 0.026486072689294815, -0.013427156955003738, -0.02551773563027382, 0.015056964010000229, 0.058427564799785614, -0.006270325277000666, 0.0007756927516311407, 0.008960530161857605, -0.02238086797297001, -0.023976577445864677, -0.011333638802170753, 0.01322257798165083, 0.014115903526544571, 0.03188693895936012, 0.035269301384687424, -0.03936086595058441, -0.006372614298015833, 0.0031078855972737074, -0.00432001193985343, -0.0067169880494475365, -0.002910126466304064, -0.023376481607556343, -0.017811952158808708, 0.011688240803778172, -0.03046853095293045, 0.003880168776959181, 0.030714023858308792, 0.010985855013132095, -0.0050940001383423805, -0.02223084308207035, -0.024126602336764336, 0.020471470430493355, 0.010706265456974506, 0.017743758857250214, 0.021903518587350845, -0.0035835301969200373, -0.014170457608997822, 0.003114704741165042, 0.0003921084280591458, -0.011197253130376339, -0.012247421778738499, -0.00038891189615242183, 0.0012385512236505747, 0.04293416813015938, 0.001757668680511415, 0.0335235670208931, -0.007453470025211573, 0.008196771144866943, -0.03925175964832306, -0.0036619517486542463, 0.015070602297782898, 0.02734530158340931, -0.036687709391117096, 0.0026237168349325657, -0.02195807173848152, 0.004524590447545052, 0.005922541953623295, 0.00647149421274662, -0.019394023343920708, -0.018125638365745544, -0.0014115903759375215, 0.014279566705226898, 0.02064877189695835, -0.009840216487646103, -0.0048212287947535515, -0.0021941023878753185, -0.03360539674758911, -0.005264481995254755, -0.01950313337147236, -0.014347759075462818, 0.0033619035966694355, -0.018002891913056374, 0.002478807233273983, -0.01047440990805626, -0.022858217358589172, -0.015861637890338898, 0.025872336700558662, -0.018766650930047035, -0.016038939356803894, -0.002437891671434045, -0.01373402401804924, -0.006512409541755915, 0.011722337454557419, 0.011217710562050343, 0.0018650722922757268, -0.002078174613416195, -0.002548704855144024, -0.012213325127959251, 0.004105204716324806, 0.006522638723254204, 0.01938038505613804, -0.008285421878099442, -0.01947585493326187, 0.03859710693359375, -0.002473692875355482, 0.02422207221388817, 0.024903999641537666, -0.03483286872506142, 0.011660964228212833, -0.014906940050423145, 0.0056122648529708385, -0.02040327712893486, -0.0038903974927961826, -0.03297802433371544, -0.015397927723824978, 0.0006768132443539798, -0.0031402769964188337, 0.00855819322168827, 0.03175055608153343, 0.032350651919841766, 0.010106168687343597, 0.003880168776959181, -0.0025333615485578775, 0.0014431294985115528, -0.01636626571416855, 0.012792963534593582, -0.02498583123087883, 0.007044313475489616, -0.007371638435870409, -0.00988795142620802, -0.004834867548197508, 0.019025783985853195, -0.020880626514554024, 0.0034471445251256227, 0.02393566258251667, 0.020307807251811028, 0.0295683853328228, -0.015056964010000229, -0.017893783748149872, 0.00949243362993002, 0.021235229447484016, 0.01725277118384838, -0.0020747650414705276, 0.0017883554100990295, 0.01833021640777588, 0.012492915615439415, 0.02146708406507969, 0.005421325098723173, -0.01973498798906803, -0.02330828830599785, 0.030004819855093956, -0.011920096352696419, 0.0034437349531799555, 0.043234217911958694, 0.00876959040760994, 0.021658023819327354, -0.005513385403901339, 0.03360539674758911, 0.003508517984300852, 0.005523614585399628, -0.0029919578228145838, 0.01674814522266388, -0.04091566428542137, 0.023771999403834343, 0.0022725241724401712, 0.004572325386106968, 0.001249632565304637, -0.030004819855093956, 0.006679481826722622, -0.006021421868354082, -0.000505905132740736, -0.007467108312994242, -0.01183144561946392, 0.029513832181692123, -0.014893300831317902, 0.013427156955003738, 0.010385759174823761, 0.011933734640479088, 0.009185566566884518, 0.017866505309939384, 0.008674120530486107, 0.008039928041398525, -0.013563542626798153, 0.020239613950252533, -0.014565976336598396, -0.002113975817337632, -0.019925927743315697, -0.007944458164274693, -0.01366583164781332, 0.005973686929792166, -0.015629783272743225, 0.009792481549084187, -0.01933947019279003, 0.0151797104626894, -0.002446415601298213, 0.0010373825207352638, 0.009731108322739601, -4.5151071390137076e-05, 0.0098197590559721, -0.015411566011607647, -0.024903999641537666, 0.015725253149867058, 0.015670698136091232, 0.01085628941655159, 0.011047229170799255, -0.024767614901065826, -0.00279419869184494, -0.00571796391159296, 0.015452481806278229, -0.008994626812636852, -0.013290771283209324, -0.01387722883373499, -0.010699445381760597, 0.008149036206305027, -0.0031061808113008738, 0.03777879476547241, -0.01633898727595806, -0.02143980748951435, 0.00791718065738678, 0.038788046687841415, 0.017730120569467545, -0.027440771460533142, -0.01584799960255623, 0.01606621779501438, -0.009485614486038685, -0.028095422312617302, -0.004967843182384968, -0.0025265421718358994, -0.018671181052923203, -0.006430578418076038, -0.003355084452778101, -0.024317542091012, -0.029213782399892807, -0.022940048947930336, -0.015547951683402061, -0.017089108005166054, -0.011640505865216255, 0.005090590566396713, 0.011497301049530506, -0.0007420225883834064, -0.004466626327484846, 0.007835349068045616, 0.0059395902790129185, 0.05569985508918762, 0.015125156380236149, 0.007371638435870409, 0.0005012168549001217, -0.00369604816660285, -0.0038528915029019117, -0.03911537304520607, -0.02524496428668499, 0.035923950374126434, 0.021303420886397362, -0.015329735353589058, 0.01858934946358204, 0.0022145602852106094, -0.0038733494002372026, 0.01026983093470335, -0.004047241061925888, -0.0008153298404067755, -0.0287773497402668, -0.007569397799670696, 0.014211373403668404, -0.002553819213062525, 0.0020014578476548195, 0.028831902891397476, -0.008346795104444027, 0.03783334791660309, 0.027959035709500313, 0.0379151813685894, 0.01138137374073267, 0.0028248855378478765, -0.026199663057923317, -0.024944916367530823, 0.021671662107110023, 0.010549421422183514, -0.0006589126423932612, -0.02853185497224331, 0.03701503574848175, -0.004991710651665926, -0.014252289198338985, -0.017239132896065712, 0.009240120649337769, -0.00994932558387518, 0.03221426531672478, -0.003297120565548539, -0.008599108085036278, 0.03180510923266411, -0.02759079448878765, -0.02303551882505417, 0.03805156797170639, -0.007992193102836609, 0.0016442982014268637, 0.021480722352862358, 0.026649735867977142, -0.0023441265802830458, 0.02068968676030636, 0.009417422115802765, -0.02235358953475952, -0.013420337811112404, -0.011074505746364594, -0.016952723264694214, -0.029650216922163963, -0.028340915217995644, -0.021385252475738525, -0.012677036225795746, -0.023867469280958176, -0.012049662880599499, -0.03385089337825775, -0.01828930154442787, -0.011210891418159008, -0.015602505765855312, 0.013720385730266571, -0.012977084144949913, -0.016434457153081894, -0.03715142235159874, 0.01112224068492651, 0.0192440003156662, 0.018780289217829704, -0.011763253249228, -0.000716876529622823, -0.001798584358766675, 0.010822192765772343, 0.0016187259461730719, -0.02787720412015915, 0.024003855884075165, -0.012636120431125164, 0.008128578774631023, -0.010917662642896175, -0.015998024493455887, -0.001967361429706216, -0.006938614416867495, 0.025435904040932655, -0.0024430060293525457, -0.01894395239651203, 0.012472458183765411, 0.008646843023598194, 0.029241060838103294, 0.006318060215562582, 0.010222095996141434, -0.011810988187789917, 0.03278708457946777, -0.038542553782463074, 0.020880626514554024, -0.016052577644586563, -0.011695059947669506, -0.0061816745437681675, 0.01556158997118473, 0.027645349502563477, -0.01715730130672455, 0.00034565210808068514, -0.011340457946062088, -0.018112000077962875, 0.016720866784453392, 0.003658542176708579, -0.010419855825603008, -0.014047711156308651, -0.002499265130609274, -0.015125156380236149, 0.015534313395619392, 0.025326795876026154, 0.010453951545059681, -0.013508987613022327, 0.002814656589180231, -0.01301118079572916, 0.038024287670850754, 0.0028487530071288347, -0.002163415774703026, 0.00988795142620802, 0.0026629276107996702, -0.015547951683402061, -0.03993368521332741, -0.013836313039064407, 0.010078891180455685, -0.0056634098291397095, -0.0037369639612734318, -0.028422746807336807, -0.007514843251556158, -0.002642469946295023, -0.013829493895173073, 0.014756916090846062, -0.011231349781155586, -0.001282876473851502, -0.039960965514183044, 0.007173879537731409, 0.016952723264694214, -0.021917156875133514, 0.00285898195579648, -0.03415093943476677, -0.03297802433371544, -0.017716482281684875, 0.0030925420578569174, 0.032759808003902435, -0.016161687672138214, -0.013474891893565655, -0.03412366285920143, -0.028831902891397476, -0.022408144548535347, -0.016011662781238556, -0.008878698572516441, 0.0010348253417760134, 0.03507836163043976, 0.03417821601033211, 0.011060867458581924, 0.01483874674886465, 0.028231807053089142, 0.014279566705226898, -0.013720385730266571, -0.00377787952311337, -0.01248609647154808, -0.0038494819309562445, -0.0010228916071355343, -0.025585927069187164, -0.001167801208794117, -0.017348241060972214, 0.0018565482459962368, -0.00471212062984705, -0.014743276871740818, 0.0006239638314582407, 0.0102152768522501, 0.007146602496504784, -0.02562684379518032, -0.053435854613780975, 0.010099349543452263, 0.05046265199780464, 0.0009197500185109675, 0.005165602546185255, -0.023649252951145172, 0.012417903169989586, 0.02326737344264984, -0.0009171927813440561, 0.03529657796025276, -0.011470024473965168, 0.030523084104061127, 0.00011347703548381105, 0.016843615099787712, 0.01689816825091839, -0.012411084026098251, -0.01333850622177124, -0.007664867676794529, -0.03543296456336975, -0.006133939605206251, 0.011497301049530506, 0.027181638404726982, 0.00402337359264493, -0.0077057830058038235, -0.0026203072629868984, 0.0026254216209053993, 0.018466603010892868, -0.014074987731873989, -0.019557686522603035, 0.0032016506884247065, -0.03518747165799141, -0.0017730121035128832, -0.03698775917291641, -0.025585927069187164, 0.016529927030205727, -0.014306843280792236, 0.009137831628322601, 0.004650746937841177, 0.012070120312273502, -0.025872336700558662, -0.030550360679626465, 0.011545035988092422, -0.008333156816661358, 0.028422746807336807, 0.025940530002117157, 0.015793446451425552, 0.020839711651206017, 0.011551855131983757, -0.022967325523495674, -0.01353626511991024, 0.008796867914497852, 0.004753035958856344, -0.003281777026131749, 0.034069109708070755, -0.014893300831317902, -0.019025783985853195, -0.008394530043005943, -0.008360433392226696, 0.0094242412596941, -0.03660587966442108, 0.03164144605398178, 0.01027665100991726, 0.0018957590218633413, -0.03540568798780441, -0.024767614901065826, -0.022708192467689514, 0.004510951694101095, -0.004565506242215633, 0.015916192904114723, 0.003757421625778079, 0.014893300831317902, -0.01112224068492651, 0.03060491569340229, -0.016584482043981552, 0.018602987751364708, 0.00857183150947094, 0.019271276891231537, -0.008183132857084274, -0.007221614476293325, 0.008858241140842438, -0.014143181033432484, -0.0013578885700553656, 0.014606891199946404, -0.021276144310832024, -0.0012811716878786683, -0.0005988177726976573, 0.019312193617224693, -0.004510951694101095, -0.0034079337492585182, -0.022012626752257347, 0.02836819365620613, -0.009301493875682354, -0.01831657811999321, 0.010372120887041092, -0.029350169003009796, 0.01713002473115921, -0.020512385293841362, -0.015670698136091232, -0.0009325361461378634, -0.018234746530652046, 0.008108120411634445, -0.009724289178848267, 0.011006313376128674, -0.005687277298420668, 0.011558674275875092, 0.006137349177151918, -0.021017011255025864, -0.018521156162023544, -0.006584011949598789, 0.012792963534593582, -0.021344337612390518, -0.006075975950807333, -0.01647537387907505, -0.010638072155416012, 0.005731602199375629, 0.0005647214129567146, -0.0030090059153735638, 0.001430343370884657, 0.029377445578575134, -0.028586409986019135, 0.010447132401168346, 0.02210809662938118, 0.0319414958357811, -0.03466920554637909, 0.023185541853308678, -0.006399891804903746, 0.0008362138760276139, 0.00883778277784586, -0.0005493779899552464, -0.04001551866531372, -0.03843344748020172, 0.010829011909663677, -0.007385277189314365, 0.011967831291258335, 0.0035460242070257664, 0.021548915654420853, 0.022858217358589172, 0.002064536092802882, -0.022339951246976852, -0.010099349543452263, 0.00282659032382071, -0.009847036562860012, 0.000979418633505702, 0.010263011790812016, -0.00464733736589551, 0.01803016848862171, 0.0011984879383817315, 0.01386359054595232, -0.001363855437375605, -0.031314119696617126, -0.023117348551750183, -0.017621012404561043, 0.0024481203872710466, -0.01052896399050951, 0.009192385710775852, -0.0015761053655296564, -0.03706958889961243, -0.02562684379518032, 0.01818019337952137, -0.004227951634675264, 0.0036312651354819536, 0.025845060124993324, -0.021508000791072845, -0.0287773497402668, 0.03338718041777611, 0.0007833644631318748, -0.04748944565653801, -0.01689816825091839, -0.013952241279184818, -0.03731508553028107, -0.008135397918522358, -0.01366583164781332, 0.03660587966442108, 0.0030396927613765, -0.022926408797502518, -0.03788790479302406, -0.021003372967243195, -0.03240520507097244, 0.002098632510751486, -0.020771518349647522, 0.028204530477523804, 0.015357011929154396, 0.03595123067498207, -0.004889421630650759, 0.023471951484680176, 0.0023901567328721285, 0.041024770587682724, -0.02396293915808201, -0.020307807251811028, -0.023321928456425667, -0.016802698373794556, 0.02891373448073864, -0.02709980681538582, -0.043616097420454025, -0.00454845791682601, 0.015479759313166142, -0.01648901216685772, -0.005155373364686966, 0.025217685848474503, 0.012145132757723331, -0.004770084284245968, -0.005076951812952757, -0.011340457946062088, 0.014265927486121655, 0.005342903546988964, 0.014947855845093727, -0.03319624066352844, 0.02052602358162403, -0.00039700980414636433, -0.004988301079720259, -0.004405253101140261, 0.006843144539743662, 0.025299517437815666, -0.025790506973862648, -0.005165602546185255, -0.021753493696451187, -0.0026765663642436266, -0.022435421124100685, -0.0014866023557260633, -0.005823662504553795, 0.0008362138760276139, -0.01034484338015318, 0.029104674234986305, -0.014020433649420738, 0.001282876473851502, 0.0006499623414129019, 0.02186260186135769, -0.005213337484747171, -0.005261072423309088, 0.023253735154867172, -0.011258626356720924, -0.0062805539928376675, -0.008271783590316772, 0.032105155289173126, -0.0037744699511677027, -0.010324385948479176, -0.018753012642264366, -0.009833397343754768, -0.022189928218722343, -0.01897122897207737, 0.015316096134483814, -0.003331216983497143, 0.004725758917629719, -0.016939084976911545, 0.008687758818268776, -0.02223084308207035, 0.0008187394705601037, -0.0016937379259616137, -0.031068626791238785, -0.01335214450955391, -0.009683373384177685, 0.014688722789287567, -0.0288864579051733, -0.010372120887041092, 0.023240096867084503, -0.01674814522266388, 0.021494360640645027, 0.21025195717811584, -0.0033994095865637064, 0.004879192914813757, 0.04574371129274368, 0.009131012484431267, -0.021167036145925522, 0.011804169043898582, 0.012929349206387997, 0.010985855013132095, 0.019816819578409195, 0.012151951901614666, 0.012465638108551502, -0.018371133133769035, 0.0011072801426053047, 0.007630771026015282, -0.013965879566967487, -0.038133397698402405, -0.026336047798395157, -0.0094242412596941, 0.01620260253548622, 0.016120770946145058, -0.006573783233761787, -0.016584482043981552, 0.006301011890172958, 0.027781734243035316, 0.03248703479766846, -0.01104041002690792, 0.019925927743315697, 0.01609349437057972, 0.0246039517223835, -0.029786601662635803, -0.007378458045423031, 0.019025783985853195, -0.01648901216685772, -0.010747180320322514, -0.0015599096659570932, 0.02549045719206333, -0.01740279607474804, 0.0068158674985170364, 0.0295683853328228, -0.009465157054364681, -0.015779808163642883, -0.0003202929219696671, -0.01386359054595232, 0.015888916328549385, -0.014565976336598396, 0.0004683990846388042, -0.013106650672852993, 0.002183873439207673, 0.041024770587682724, 0.0027345300186425447, 0.006870421580970287, 0.02615874633193016, 0.013099831528961658, -0.016407180577516556, -0.024644866585731506, -0.016298072412610054, -0.0016084969975054264, -0.014906940050423145, 0.020580578595399857, -0.018507517874240875, 0.01230197586119175, -0.017866505309939384, 0.026240577921271324, -0.039688192307949066, 0.012145132757723331, -0.015725253149867058, 0.01543884351849556, 0.00915146991610527, 0.009990241378545761, 0.0052917590364813805, -0.004814409650862217, -0.029486553743481636, 0.0023952710907906294, -0.01353626511991024, -0.013740843161940575, -0.01014708448201418, 0.0387062169611454, 0.042715951800346375, 0.02145344577729702, 0.0002825738047249615, 0.020866988226771355, -0.015752529725432396, -0.013127108104526997, 0.011197253130376339, -0.009451517835259438, 0.04137937352061272, -0.01752554252743721, 0.009799301624298096, -0.021630747243762016, -0.016161687672138214, -0.004620060324668884, -0.00468143355101347, -0.0014661445748060942, -0.0027498735580593348, -0.009635638445615768, 0.009369687177240849, 0.022844579070806503, 0.005134915467351675, -0.016557205468416214, -0.025026746094226837, 0.04814409464597702, 0.015766168013215065, 0.025435904040932655, -0.018739374354481697, 0.007248891517519951, 0.006515819113701582, 0.027890844270586967, -0.004330241121351719, -0.0010697741527110338, -0.023240096867084503, -0.038378890603780746, 0.016393542289733887, 0.009315132163465023, 0.01595710776746273, 0.038406167179346085, 0.024753976613283157, 0.004889421630650759, -0.01543884351849556, -0.014975132420659065, 0.018930314108729362, -0.021357975900173187, -0.0023748131934553385, 0.008462723344564438, -0.03709686920046806, -0.035105638206005096, -0.00640671094879508, 0.007180698681622744, -0.021276144310832024, -0.02564048208296299, 0.023731084540486336, -0.004234771244227886, 0.01804380677640438, -0.023103710263967514, 0.009342409670352936, -0.005179240833967924, 0.0027396446093916893, -0.020607855170965195, -0.007828529924154282, 0.0012879909481853247, 0.007092048414051533, 0.004701891448348761, 0.014729638583958149, 0.0008796867332421243, 0.02029416896402836, 0.001404771115630865, 0.003655132604762912, 0.007385277189314365, -0.020348722115159035, -0.0017141958232969046, 0.013645373284816742, 0.008653663098812103, 0.0069965785369277, 0.01725277118384838, 0.033687230199575424, -0.031996048986911774, -0.0363331101834774, -0.02486308477818966, 0.023594697937369347, -0.001827566302381456, -0.038269784301519394, 0.002047488000243902, 0.036824095994234085, 0.012908891774713993, -0.02525860257446766, -0.00040936973528005183, -0.1733732968568802, 0.007419373374432325, 0.013829493895173073, -0.0074739279225468636, 0.0009333885391242802, 0.0295683853328228, 0.01471600029617548, 0.009015084244310856, -0.022449059411883354, -0.01163368672132492, 0.012724771164357662, 0.0008592288941144943, -0.020307807251811028, -0.019394023343920708, -0.0032050602603703737, 0.003941542003303766, -0.022694554179906845, 0.01597074791789055, 0.0510081946849823, -0.013195301406085491, 0.01281342189759016, -0.018862120807170868, 0.00010671103518689051, -0.0295683853328228, 0.018862120807170868, 0.026322409510612488, -0.021780770272016525, 0.023390119895339012, 0.000503774092067033, -0.019789543002843857, -0.023253735154867172, -0.00817631371319294, 0.021344337612390518, 0.023062795400619507, 0.008012650534510612, 0.0036994577385485172, 0.003904036246240139, 0.008960530161857605, -0.020185060799121857, 0.01633898727595806, 0.029650216922163963, 0.01123816892504692, 0.025572288781404495, -0.006556734908372164, 0.010603975504636765, 0.01819383166730404, 0.010999494232237339, -0.0067169880494475365, 0.009260578081011772, -0.0015556475846096873, 0.02981388010084629, -0.009990241378545761, -0.014484144747257233, -0.018016530200839043, 0.007869445718824863, 0.001024596393108368, 0.002630536211654544, 0.019939566031098366, 0.0005783599335700274, -0.01583436131477356, -0.00896734930574894, -0.018371133133769035, -0.016148047521710396, 0.0025674577336758375, -0.017470987513661385, -0.04397070035338402, -0.03284163773059845, 0.019912289455533028, -0.008892337791621685, -0.0013655602233484387, 0.007051132619380951, 0.005492927506566048, 0.0034727167803794146, 0.003675590269267559, 0.016829976812005043, 0.008871879428625107, -0.04364337399601936, 0.013256674632430077, 0.02787720412015915, 0.0006789442850276828, 0.03390544652938843, 0.006089614238590002, 0.008817325346171856, 0.012779325246810913, -0.038897156715393066, -0.008339975960552692, 0.0077057830058038235, 0.003839252982288599, 0.00043771235505118966, 0.01650265045464039, 0.025163132697343826, -0.01295662671327591, 0.035514794290065765, -0.01633898727595806, 0.014279566705226898, 0.008933252654969692, 0.01936674676835537, -0.014702361077070236, -0.002473692875355482, -0.0249994695186615, 0.004804180935025215, 0.012465638108551502, -0.028313638642430305, 0.00385971087962389, 0.03911537304520607, 0.017470987513661385, 0.007385277189314365, -0.002516313223168254, 0.048198651522397995, -0.004718939773738384, -0.03139595314860344, 0.021276144310832024, 0.013297590427100658, 0.004016554448753595, -0.028040867298841476, 0.053190361708402634, 0.004268867429345846, -0.008203590288758278, 0.010563060641288757, -0.01406134944409132, 0.04118843376636505, -0.035896673798561096, -0.02538134902715683, -0.007235253229737282, -0.022176289930939674, -0.012874795123934746, -0.09519711136817932, -0.02722255513072014, 0.046371083706617355, 0.012131493538618088, -0.003167554270476103, 0.005080361384898424, -0.009867493994534016, 0.024835806339979172, -0.008605928160250187, 0.01661175861954689, -0.012022385373711586, -0.01118361484259367, -0.0015403041616082191, -0.012192867696285248, 0.013952241279184818, -0.0040745181031525135, 0.0013945421669632196, -0.029077397659420967, 0.0007433011778630316, 0.021548915654420853, -0.005012168549001217, -0.010351662524044514, 0.0193531084805727, 0.013795397244393826, -0.02640424109995365, -0.02629513293504715, -0.02629513293504715, -0.0038563013076782227, 0.006774951703846455, 0.004800770897418261, 0.039060819894075394, -0.012820241041481495, 0.02709980681538582, -0.022844579070806503, -0.008455903269350529, -0.015916192904114723, -0.010549421422183514, -0.02329465001821518, 0.05038081854581833, -0.018616626039147377, -0.0047871326096355915, 0.004667795263230801, 0.007467108312994242, -0.02954110875725746, -0.02562684379518032, 0.003576710820198059, -0.003968819510191679, 0.03333262726664543, -0.002067945897579193, -0.007255710661411285, -0.026895228773355484, -0.028422746807336807, -0.014156819321215153, -0.026758844032883644, 0.040342845022678375, -0.008469542488455772, 0.011695059947669506, 0.010829011909663677, -0.019966842606663704, 0.0003136867599096149, -0.002129319356754422, 0.004872373305261135, -0.006369204726070166, 0.02079879492521286, 0.008319518528878689, 0.016679951921105385, 0.008210409432649612, 0.011940553784370422, 0.006744265090674162, 0.005557710770517588, -0.0022469519171863794, 0.01607985608279705, -0.02291277050971985, -0.005179240833967924, -0.02026689238846302, 0.004105204716324806, 0.004101795144379139, -0.0025060842745006084, 0.0023083253763616085, 0.013058915734291077, -0.025190409272909164, -0.016148047521710396, 0.011006313376128674, -0.020103229209780693, 0.015234265476465225, -0.005141735076904297, 0.012383807450532913, -0.001982704736292362, 0.020075952634215355, -0.040615614503622055, -0.002434481866657734, 0.014265927486121655, 0.023103710263967514, 0.0036619517486542463, -0.009301493875682354, 0.009853855706751347, -0.013447614386677742, 0.0007739879656583071, 0.015998024493455887, -0.002697024028748274, -0.00864002387970686, -0.0029800240881741047, -0.05548163875937462, 0.010174361057579517, 0.009881132282316685, 0.0058748070150613785, 0.005946409422904253, -0.05253571271896362, -0.006584011949598789, -0.001258156611584127, 0.01354990340769291, 0.0008899156819097698, -0.019966842606663704, 0.0042825061827898026, -0.014743276871740818, -0.001979295164346695, -0.018616626039147377, -0.016557205468416214, 0.007119325455278158, -0.0068942890502512455, 0.030768578872084618, -0.006508999969810247, -0.004098385572433472, 0.005820252932608128, 0.025204047560691833, 0.021398890763521194, -0.023621976375579834, 0.03177783265709877, -0.031041350215673447, 0.016188964247703552, -0.00287603004835546, -0.01550703588873148, 0.02183532528579235, -0.0011277379235252738, 0.0029203554149717093, 0.0011865542037412524, -0.003152210731059313, -0.038406167179346085, -0.005278120283037424, 0.014620530419051647, 0.015302457846701145, 0.020962458103895187, -0.011988288722932339, -0.020362362265586853, 0.024126602336764336, -0.017880145460367203, -0.04045195132493973, -0.01543884351849556, -0.026977060362696648, -0.03046853095293045, 0.0242084339261055, -0.0033908856566995382, 0.042443182319402695, 0.004398433957248926, -0.038378890603780746, -0.02133069932460785, -0.012820241041481495, -0.01883484423160553, -0.005584987811744213, 0.023103710263967514, -0.0036653615534305573, 0.007828529924154282, 0.048880577087402344, -0.003245975822210312, 0.008074023760855198, -0.004060879349708557, 0.05561802536249161, 0.0014721114421263337, -0.04909879341721535, -0.014306843280792236, 0.008408168330788612, -0.022435421124100685, -0.013202120549976826, -0.016148047521710396, 0.024399373680353165, 0.007214795332401991, 0.019448578357696533, 0.007889904081821442, -0.005687277298420668, -0.029404722154140472, -0.009737927466630936, 0.036142170429229736, 0.015793446451425552, -0.012117855250835419, -0.022203566506505013, 0.012970265001058578, 0.01583436131477356, 0.0011456385254859924, -0.021098842844367027, 0.016516288742423058, 0.02656790427863598, 0.00706477090716362, -0.03128684312105179, 0.005527024157345295, 0.01412954181432724, 0.014825108461081982, -0.013918144628405571, 0.01549339760094881, -0.01177689153701067, 0.009758385829627514, 0.024112964048981667, 0.03150505945086479, 0.005574759095907211, 0.010835831053555012, -0.004313192795962095, -0.0016528222477063537, -0.0037676505744457245, 0.0204305537045002, -0.024767614901065826, -0.024126602336764336, 0.024522120133042336, 0.019816819578409195, 0.0005250843241810799, -0.031859662383794785, -0.008380891755223274, 0.01753918081521988, -0.0015718434005975723, 0.012451999820768833, -0.004828048404306173, -0.030004819855093956, -0.03180510923266411, 0.002262295223772526, 0.005885036196559668, 0.02561320550739765, 0.005949819460511208, -0.016911806538701057, 0.045852817595005035, 0.007548939902335405, 0.022994602099061012, -0.017730120569467545, 0.006116891745477915, -0.010897205211222172, -0.00817631371319294, -0.019789543002843857, 0.010631253011524677, -0.015725253149867058, -0.01361127756536007, -0.011456385254859924, 0.0017303915228694677, 0.031177734956145287, -0.013072554022073746, 0.08799595385789871, 0.02302187867462635, -0.021426169201731682, 0.009274217300117016, -0.009131012484431267, 0.008210409432649612, -0.00693179527297616, 0.02643151767551899, -0.009335590526461601, -0.025463180616497993, 0.021603470668196678, -0.017334602773189545, -8.913008059607819e-05, 0.008933252654969692, -0.017811952158808708, -0.007269349414855242, -0.0013084488455206156, 0.008680939674377441, 0.01444322895258665, 0.015466120094060898, 0.01583436131477356, -0.005830482114106417, -0.00025955872843042016, -0.007180698681622744, -0.025831421837210655, -0.006563554052263498, 0.02367652952671051, 0.030959518626332283, 0.0049951206892728806, -0.029650216922163963, 0.030550360679626465, 0.0004134186892770231, -0.018766650930047035, -0.00752166286110878, -0.0012956626014783978, 0.001241960795596242, -0.015902554616332054, -0.036305829882621765, 0.0098197590559721, 0.021153397858142853, 0.010351662524044514, 0.027836289256811142, -0.015002409927546978, -0.013515807688236237, 0.006079385522753, 0.008108120411634445, -0.008155855350196362, -0.009615181013941765, -0.007487566210329533], "478c060d-0015-4f8c-883f-57ca83956105": [-0.018180781975388527, -0.0028085391968488693, 0.006685525644570589, -0.02774527482688427, 0.0035179744008928537, 0.02367761731147766, -0.02172623947262764, -0.018648013472557068, -0.004582986235618591, -0.030699823051691055, 0.013975703157484531, 0.006177068222314119, 0.018812917172908783, -0.005623949225991964, -0.007729924283921719, 0.007997894659638405, 0.02905077300965786, -0.0006707856664434075, 0.0010383864864706993, -0.0039405436255037785, -0.02172623947262764, -0.008987325243651867, -0.00959197711199522, 0.004613905679434538, -0.03476748242974281, 0.006036211736500263, 0.011179188266396523, -0.01621566340327263, -0.02081926167011261, 0.012965659610927105, 0.019664926454424858, -0.01889537088572979, -0.019829832017421722, -0.0035214098170399666, -0.0015571502735838294, 0.03787319362163544, 0.019706154242157936, 0.012141134589910507, 0.023017996922135353, -0.012285426259040833, 0.011323479935526848, 0.03248629346489906, -0.0032276727724820375, -0.014113123528659344, -0.01117231696844101, 0.03919243440032005, -0.006235472392290831, -0.010361533612012863, -0.02785521186888218, 0.0070703038945794106, -0.005136105231940746, -0.001306357211433351, -0.022674445062875748, 0.0036622663028538227, -0.0036553952377289534, 0.0044627427123487, 0.0028927093371748924, 0.009372103959321976, 0.008190284483134747, -0.006049953866750002, 0.011254769749939442, -0.004813166335225105, -0.01113796140998602, -0.00975688174366951, -0.020681841298937798, -0.024598335847258568, -0.020035963505506516, -0.00221247598528862, -0.014717775397002697, -0.020393257960677147, 0.05705714598298073, 0.02600003033876419, 0.0031074294820427895, -0.011488385498523712, -0.017644839361310005, -0.016985220834612846, -0.028638510033488274, -0.03847784548997879, -0.0070290775038301945, -0.00030232593417167664, 0.018510591238737106, -0.008836162276566029, -0.021080361679196358, 0.01763109862804413, 0.02237211912870407, 0.0380106121301651, 0.00845138356089592, 0.005551803391426802, -0.016160694882273674, -0.01464906521141529, 0.010430244728922844, 0.012924433685839176, 0.021423913538455963, 0.026467259973287582, 0.01719135046005249, 0.019829832017421722, 0.0012505300110206008, 0.007455082610249519, 0.0024838822428137064, -0.021959856152534485, -0.007626858539879322, -0.004765068646520376, -0.015940820798277855, -0.012299167923629284, -0.0025440040044486523, -0.026742102578282356, 0.008781193755567074, -0.008080347441136837, 0.00036545362672768533, 0.022427085787057877, -0.015487332828342915, 0.03520722687244415, 0.009543879888951778, -0.006754235830157995, 0.008238381706178188, -0.009495782665908337, 0.02814379520714283, -0.03641653060913086, -0.013886379078030586, -0.027030685916543007, -0.008107831701636314, 0.003792816074565053, 0.04587108641862869, -0.010478341951966286, 0.005383462645113468, -0.01022411324083805, 0.011818194761872292, -0.013700861483812332, 0.0024615514557808638, 0.0035901202354580164, 0.002811974612995982, 0.006719880737364292, 0.019967252388596535, 0.013391664251685143, -0.025903834030032158, 0.006537798326462507, -0.016449278220534325, 0.011928131803870201, -0.00677141360938549, -0.03254126384854317, 0.009021680802106857, 0.02683829702436924, 0.005352543201297522, -0.013659634627401829, -0.005620513577014208, 0.054638538509607315, -0.007702440023422241, 0.016779089346528053, 0.0036176044959574938, 0.004315015394240618, 0.007372629828751087, -0.015418621711432934, -0.03611420467495918, -0.011797581799328327, -0.001520218444056809, 0.009550751186907291, -0.0004964328836649656, 0.03133196011185646, -0.01140593271702528, 0.012464073486626148, 0.00543155986815691, 0.028116310015320778, 0.006204552482813597, -0.0019874493591487408, 0.0017469628946855664, 0.030589886009693146, 0.00600185664370656, -0.03144189715385437, -0.031469378620386124, -0.0018517462303861976, 0.004579550586640835, 0.031002148985862732, -0.022317150607705116, 0.017933424562215805, -0.007097788155078888, 0.012422846630215645, 0.0041398038156330585, 0.011667031794786453, -0.019266406074166298, -0.030919697135686874, 0.030809760093688965, -0.016270631924271584, 0.0033238674513995647, 0.012938175350427628, -0.021135330200195312, -0.01480022817850113, 0.0403192862868309, 0.018551817163825035, 0.019527506083250046, -0.0023000817745923996, 0.013206145726144314, -0.0018414397491142154, -0.005891920067369938, -0.00021300234948284924, -0.6261994242668152, 0.007125272415578365, 0.021739982068538666, -0.016050757840275764, -0.0057407571002841, 0.032376356422901154, -0.001115685678087175, 0.0027947970665991306, -0.005778547842055559, 0.021423913538455963, 0.013556568883359432, 0.0022468313109129667, -0.00670957425609231, -0.01267707534134388, -0.006019034422934055, -0.026316097006201744, 0.0016490505076944828, -0.01632560044527054, 0.0007983294199220836, 0.0009129899553954601, -0.017287546768784523, 0.011722000315785408, 0.0065755886025726795, 0.0026848602574318647, -0.004332193173468113, -0.01827697642147541, 0.018331944942474365, 0.003026694757863879, -0.0024495271500200033, 0.042847827076911926, -0.03207403048872948, 0.0071939826011657715, 0.021808693185448647, -0.0014884398551657796, 0.036801308393478394, -0.025505313649773598, -0.016160694882273674, 0.024818209931254387, 0.016160694882273674, 0.0408414825797081, -0.016050757840275764, -0.005754499230533838, 0.02610996551811695, 0.02473575808107853, -0.001959965331479907, -0.005751063581556082, 0.011302866972982883, -0.008307091891765594, -0.004156981594860554, -0.02208353392779827, 0.006936318706721067, -0.019321374595165253, -0.013577182777225971, -0.005888484418392181, 0.010705086402595043, -0.0006368598551489413, 0.02694823406636715, 0.00011369430285412818, 0.0013372768880799413, 0.004352806136012077, 0.018414396792650223, 0.009344619698822498, -0.013556568883359432, -0.05243980512022972, -0.05392394959926605, 0.02114907279610634, -0.018812917172908783, -0.015762174502015114, -0.011536482721567154, -0.007042819634079933, 0.017026446759700775, -0.006922576576471329, -0.002691731322556734, -0.0023258482106029987, 0.010107304900884628, 0.025367893278598785, 0.04537637159228325, 0.004242869559675455, 0.006032776553183794, 0.003141784807667136, 0.004366548266261816, -0.00290129822678864, -0.015858368948101997, -0.02814379520714283, 0.033530693501234055, 0.005558674223721027, -0.005881613586097956, -0.01853807643055916, -0.001789906877093017, -0.008877388201653957, 0.014717775397002697, 0.026810811832547188, -0.015803400427103043, -0.03303597867488861, 0.015927080065011978, 0.054858412593603134, 0.008245252072811127, 0.01701270416378975, 0.006867608055472374, -0.01515752263367176, -0.036141689866781235, -0.035811878740787506, 0.006881350185722113, 0.0036210401449352503, 0.018483107909560204, 0.017315030097961426, -0.01962370052933693, -0.010402760468423367, 0.01003172341734171, -0.007269564084708691, -0.013604666106402874, -0.001545984880067408, -0.017397481948137283, -0.0178509708493948, 0.011213542893528938, -0.021478882059454918, 0.005483092740178108, 0.025903834030032158, 0.006527491379529238, 0.0009439096320420504, -0.016889024525880814, -0.015693463385105133, 0.02444717288017273, -0.0010942136868834496, 0.017273804172873497, 0.008073476143181324, 0.010169144719839096, -0.013790184631943703, 0.015927080065011978, -0.007640600670129061, -0.008245252072811127, -0.0029081692919135094, -0.009598848409950733, -0.009207198396325111, 0.030809760093688965, -0.001226481283083558, 0.027264300733804703, -0.0037550253327935934, 0.00019314074597787112, -0.03839539363980293, 0.002123152604326606, 2.6840014470508322e-05, 0.0278139840811491, -0.022289665415883064, 0.004741020034998655, -0.017163867130875587, -0.007592503447085619, 0.0033221496269106865, 0.014010057784616947, -0.023993683978915215, -0.019417569041252136, -0.019788606092333794, -0.002133459085598588, 0.01258775219321251, 0.003024976933375001, -0.00015212919970508665, 0.0029030160512775183, -0.029243161901831627, -0.007159627508372068, -0.031716737896203995, -0.011687645688652992, -0.009172843769192696, -0.010505826212465763, 0.0016138363862410188, -0.012642720714211464, -0.016751604154706, -0.017315030097961426, 0.015501074492931366, -0.013295469805598259, -0.01834568753838539, -0.012457202188670635, -0.02077803574502468, -0.008547578006982803, 0.018922854214906693, 0.007104658987373114, 0.020255837589502335, -0.011309738270938396, -0.013178661465644836, -0.009585105814039707, 0.002451244741678238, 0.013254242949187756, 0.012285426259040833, -0.011034896597266197, -0.016091983765363693, 0.04543134197592735, -0.002746699610725045, 0.026975717395544052, 0.018084587529301643, -0.044084616005420685, 0.014223060570657253, -0.016270631924271584, 0.002557746134698391, -0.024598335847258568, -0.014319255016744137, -0.03952224180102348, -0.006462216842919588, -0.01260149385780096, -0.001750398427248001, 0.00888425949960947, 0.030342528596520424, 0.03839539363980293, 0.01933511719107628, 0.004899054300040007, 0.003334173932671547, 0.007619987707585096, -0.02110784687101841, 0.014278029091656208, -0.02869347855448723, 0.016050757840275764, -0.00041634231456555426, -0.0016722402069717646, -0.012642720714211464, 0.012086166068911552, -0.01838691346347332, -0.00519450893625617, 0.020723067224025726, 0.014168092049658298, 0.019321374595165253, -0.013632150366902351, -0.00935836136341095, 0.020475709810853004, 0.01358405314385891, 0.01603701524436474, -0.0133435670286417, 0.0032225195318460464, 0.022798122838139534, 0.011831937357783318, 0.031469378620386124, 0.008767452090978622, -0.022069793194532394, -0.01820826530456543, 0.03586684912443161, -0.006420990452170372, 0.01849685050547123, 0.03608672320842743, 0.020764295011758804, 0.021753724664449692, -0.010182886384427547, 0.028226247057318687, -0.0025543104857206345, 0.007881087251007557, -0.00017714410205371678, 0.02650848589837551, -0.026824554428458214, 0.033668115735054016, -0.00911787524819374, 0.014387965202331543, 0.00519450893625617, -0.03039749711751938, 0.001141452114097774, -0.008898001164197922, -0.013666505925357342, -0.004411209840327501, -0.007248951122164726, 0.021959856152534485, -0.02491440437734127, 0.019596217200160027, -0.0003293806512374431, -0.00145064911339432, 0.023017996922135353, 0.012965659610927105, 0.009214069694280624, 0.0038855751045048237, -0.012690817937254906, 0.01679283007979393, -0.0070771751925349236, -0.009007938206195831, -0.02226218208670616, -0.009296522475779057, -0.008506352081894875, 0.015720948576927185, -0.021959856152534485, 0.008279607631266117, -0.03281610459089279, -0.0032740524038672447, -0.003803122788667679, -0.007757408544421196, 0.002980315126478672, -0.001046975259669125, 0.026563454419374466, -0.013645892962813377, -0.02288057468831539, 0.012938175350427628, 0.014896422624588013, 0.004957458004355431, -0.011955616064369678, -0.011364705860614777, -0.006688960827887058, 0.0067473649978637695, 0.006534362677484751, 0.002042417647317052, -0.02227592281997204, -0.01632560044527054, -0.018180781975388527, 0.0022056049201637506, 0.007626858539879322, 0.03168925270438194, 0.003861526492983103, -0.014346739277243614, 0.008808678016066551, 0.029792845249176025, 0.014621580950915813, -0.019994737580418587, -0.02288057468831539, 0.017603613436222076, 0.0138932503759861, -0.0306448545306921, -0.01168077439069748, -0.004150110296905041, -0.031057117506861687, 0.006589330732822418, -0.002397994277998805, -0.009001066908240318, -0.020407000556588173, -0.008726225234568119, -0.0032757699955254793, 0.006795462220907211, -0.019926026463508606, 0.008059734478592873, 0.03086472861468792, -0.002322412794455886, -0.0138932503759861, 0.0126221077516675, 0.025051824748516083, 0.06425800174474716, 0.0009095544228330255, -0.0006123817875050008, 0.00788795854896307, -0.020791778340935707, -0.018015876412391663, -0.03526219725608826, -0.02869347855448723, 0.03878017142415047, 0.0175898727029562, -0.022317150607705116, 0.010835635475814342, 0.016256889328360558, 0.0018225443782284856, 0.018373170867562294, -0.000986853614449501, -0.0021506366319954395, -0.02024209499359131, -0.012663333676755428, 0.012415976263582706, 0.0023138239048421383, -0.015858368948101997, 0.04130871593952179, 0.008417028933763504, 0.04207827150821686, 0.01697147823870182, 0.02024209499359131, 0.013027498498558998, 0.0044627427123487, -0.02020086906850338, -0.019238922744989395, 0.016669152304530144, 0.012106779031455517, 0.013460374437272549, -0.037955645471811295, 0.03174422308802605, 0.007558147888630629, -0.01570720598101616, -0.014470417983829975, 0.006183939520269632, 0.0034372396767139435, 0.03174422308802605, -0.013261114247143269, -0.01918395422399044, 0.019829832017421722, -0.014882680959999561, -0.02150636725127697, 0.026824554428458214, -0.009427071548998356, 0.0067061386071145535, 0.012869465164840221, 0.021808693185448647, -0.014511643908917904, 0.009516395628452301, 0.024776984006166458, -0.012443460524082184, 0.00211284589022398, -0.021423913538455963, -0.02683829702436924, -0.02763533778488636, -0.03259623050689697, -0.007090917322784662, -0.015858368948101997, -0.03880765661597252, -0.018661754205822945, -0.04754762351512909, -0.0238287802785635, -0.005984678864479065, -0.017672324553132057, -0.0017607049085199833, -0.01133035123348236, -0.032871074974536896, -0.025587767362594604, 0.015982048586010933, 0.025848867371678352, 0.026604680344462395, -0.0011500408872961998, 0.006321360357105732, 0.0032036241609603167, 0.00452458206564188, 0.005895355716347694, -0.011612064205110073, 0.003834042465314269, -0.018757948651909828, 0.002676271600648761, -0.022537022829055786, -0.0060293409042060375, -0.002904733642935753, -0.0016473326832056046, 0.03476748242974281, -0.012230457738041878, -0.025683961808681488, 0.02026957832276821, 0.00817654188722372, 0.018661754205822945, 0.018359428271651268, 0.01113109104335308, -0.015418621711432934, 0.02433723770081997, -0.03658143803477287, 0.010979928076267242, -0.037158604711294174, -0.023883748799562454, -0.01038901787251234, 0.016641667112708092, 0.029792845249176025, -0.023045480251312256, -0.012491557747125626, -0.006792026571929455, -0.012718302197754383, 0.002054442185908556, -0.005352543201297522, -0.02197359688580036, -0.00990117434412241, -0.014030671678483486, -0.01581714302301407, 0.01690276712179184, 0.017493676394224167, 0.0016919944901019335, -0.02066809870302677, 0.010815022513270378, -0.0026934491470456123, 0.027497917413711548, 0.012154876254498959, 0.0006033634999766946, 0.01984357461333275, 0.019788606092333794, -0.01635308377444744, -0.03215648606419563, 0.0014326126547530293, 0.013735216110944748, 0.007248951122164726, -0.024502141401171684, -0.02343025989830494, -0.008595675230026245, -0.006630557123571634, -0.006328231189399958, 0.006469087675213814, -0.014937649480998516, -0.0029236290138214827, -0.031936611980199814, 0.008520093746483326, 0.017933424562215805, -0.008348317816853523, 0.014442933723330498, -0.035372134298086166, -0.03479496389627457, -0.014676549471914768, 0.005270090419799089, 0.03317340090870857, -0.020475709810853004, -0.011831937357783318, -0.04672309756278992, -0.03333830460906029, -0.012697689235210419, -0.012099907733500004, -0.004885312169790268, 0.00015416904352605343, 0.04128123074769974, 0.04721781238913536, 0.01254652626812458, 0.018125813454389572, 0.014772743918001652, 0.011948744766414165, -0.007757408544421196, -0.00043695542262867093, -0.014140607789158821, -0.021533850580453873, 0.007626858539879322, -0.016078243032097816, -0.002324130618944764, -0.013261114247143269, -0.003378835739567876, 0.0029648554045706987, -0.005850693676620722, 0.0009267320274375379, 0.010279081761837006, -0.015652237460017204, -0.03199157863855362, -0.04507404565811157, 0.003409755416214466, 0.0431501530110836, -0.004668874200433493, 0.0030833808705210686, -0.03721357136964798, 0.0059881145134568214, 0.023773811757564545, -0.008183413185179234, 0.03669137507677078, -0.01058827806264162, 0.02219347096979618, -0.00270203803665936, 0.0073795011267066, 0.02451588399708271, 0.003548894077539444, -0.0022262181155383587, -0.01823575049638748, -0.042160723358392715, -0.012422846630215645, 0.003744718851521611, 0.027759017422795296, 0.01010043453425169, -0.0036072980146855116, -0.006362586282193661, 0.00912474561482668, 0.014113123528659344, -0.02128649316728115, -0.014786486513912678, 0.008471996523439884, -0.026082482188940048, -0.0138932503759861, -0.022976770997047424, -0.009585105814039707, 0.012415976263582706, -2.2196691134013236e-05, 0.001984013943001628, -0.008554449304938316, 0.02498311549425125, -0.026137450709939003, -0.02665964886546135, -0.00012722167593892664, -0.010904346592724323, 0.02498311549425125, 0.016078243032097816, 0.007015335839241743, 0.006225165445357561, 0.016751604154706, -0.00647252332419157, -0.009337748400866985, -0.0037962517235428095, 0.010244726203382015, -0.0027896438259631395, 0.038093067705631256, -0.016710378229618073, -0.01878543384373188, 0.0010547052370384336, 0.0016232840716838837, 0.006537798326462507, -0.03583936393260956, 0.02325161173939705, 0.0065412335097789764, 0.007949797436594963, -0.030150139704346657, -0.029655424878001213, 0.000608087342698127, 0.004029867239296436, -0.007118401117622852, 0.021671270951628685, 0.0075306640937924385, 2.4827013476169668e-05, -0.00030254063312895596, 0.02367761731147766, -0.026206159964203835, 0.027030685916543007, -0.01532242726534605, 0.012628978118300438, -0.0034011665266007185, -0.004449000582098961, -0.004936845041811466, -0.026357322931289673, 0.01022411324083805, 0.023856263607740402, -0.017205093055963516, -0.0005994985694997013, 0.018757948651909828, 0.014456676319241524, -0.0007223184802569449, -0.003913059365004301, -0.014594096690416336, 0.0311945378780365, -0.008781193755567074, -0.018840402364730835, 0.010650117881596088, -0.015803400427103043, 0.02498311549425125, -0.01519874855875969, -0.012244200333952904, -0.00020280314492993057, -0.007619987707585096, -0.002875531790778041, -0.01022411324083805, -9.952277468983084e-05, -0.00891861505806446, -0.0028480475302785635, 0.005623949225991964, -0.016779089346528053, -0.0030026461463421583, -0.0028892739210277796, 0.01991228386759758, -0.01653173193335533, -0.006366021931171417, 0.010643246583640575, -0.008114702999591827, 0.008863646537065506, -0.0030679209157824516, -0.007997894659638405, 0.00045821271487511694, 0.021739982068538666, -0.01097305677831173, 0.020407000556588173, 0.010959315113723278, 0.02621990256011486, -0.030370013788342476, 0.019280148670077324, -0.010437115095555782, 0.010739441029727459, 0.015075069852173328, -0.007510050665587187, -0.05026855692267418, -0.018180781975388527, 0.016476763412356377, 0.004143239464610815, -0.0025508750695735216, 0.0024117364082485437, 0.010746312327682972, 0.00911787524819374, -0.007901700213551521, -0.018139556050300598, -0.024433432146906853, -0.0027295220643281937, -0.004053915850818157, 0.0037722031120210886, 0.016298115253448486, -0.008217768743634224, 0.0147590022534132, 0.005390333943068981, 0.009076648391783237, -0.0003965880605392158, -0.01679283007979393, -0.03212900087237358, -0.018730465322732925, -0.0002883691049646586, -0.002781054936349392, 0.026590939611196518, -0.018702980130910873, -0.04051167517900467, -0.031029634177684784, 0.02520298771560192, -0.005342236720025539, 0.008334576152265072, 0.01980234868824482, -0.012244200333952904, -0.013494729995727539, 0.021094104275107384, -0.008513223379850388, -0.04048418998718262, -0.02447465807199478, -0.012883206829428673, -0.02407613769173622, -0.010780667886137962, -0.014882680959999561, 0.0397421158850193, 0.013611537404358387, -0.02048945240676403, -0.022550765424966812, -0.01998099498450756, -0.018043361604213715, -0.005678917746990919, -0.018867885693907738, 0.025793898850679398, 0.027470432221889496, 0.03952224180102348, 0.007970410399138927, 0.021245267242193222, -0.0060293409042060375, 0.04163852334022522, -0.03506980836391449, -0.012615236453711987, -0.015308685600757599, -0.028391152620315552, 0.028528572991490364, -0.037955645471811295, -0.04117129370570183, -0.006262956187129021, 0.011825066059827805, -0.021987339481711388, -0.010471470654010773, 0.024034911766648293, 0.010011110454797745, 0.004143239464610815, -0.005197944585233927, -0.015652237460017204, 0.016435537487268448, 0.012759528122842312, -0.002712344517931342, -0.015858368948101997, 0.016889024525880814, 0.0012402234133332968, -0.001436048187315464, -0.02223469689488411, 0.015652237460017204, 0.020283320918679237, -0.008465126156806946, 0.0023447435814887285, -0.01370773185044527, 0.001007466809824109, -0.01686154119670391, -0.006644299253821373, -0.004775375593453646, 0.0034269329626113176, 0.009832463227212429, 0.03677382692694664, -0.00028343056328594685, 0.0021248701959848404, -0.00986681878566742, 0.010828765109181404, 0.012106779031455517, -0.004308144561946392, 0.02048945240676403, -0.03724105656147003, -0.01401692908257246, -0.010052337311208248, 0.02487317845225334, -0.010004240088164806, -0.02332032285630703, -0.019266406074166298, -0.011186059564352036, -0.024749498814344406, -0.006822946481406689, 0.004837214946746826, -0.01809832826256752, 0.00919345673173666, -0.014223060570657253, 5.183478037906752e-07, -0.01896408013999462, -0.014401707798242569, -0.006520620547235012, -0.01893659681081772, -0.020283320918679237, -0.001276296330615878, 0.018634270876646042, -0.026632165536284447, -0.006840123794972897, 0.037186089903116226, -0.020104674622416496, 0.006146148778498173, 0.2166852355003357, -0.00513266958296299, -0.00194450537674129, 0.02546408772468567, 0.002775901695713401, -0.022674445062875748, 0.013267985545098782, 0.0029871861916035414, 0.005538061261177063, 0.021671270951628685, 0.0018775126663967967, -0.0006248355493880808, -0.029545487836003304, -0.0055999006144702435, 0.003909623716026545, -0.01401692908257246, -0.028198763728141785, -0.012367879040539265, -0.01203806884586811, 0.012168618850409985, 0.013639021664857864, -0.0036622663028538227, -0.009585105814039707, 0.0037069281097501516, 0.036251626908779144, 0.024598335847258568, -0.0012402234133332968, 0.017617356032133102, 0.01621566340327263, 0.01962370052933693, -0.02066809870302677, -0.00100660789757967, 0.012608365155756474, -0.014140607789158821, -0.01697147823870182, -0.001136298873461783, 0.011955616064369678, -0.01922518014907837, 0.012656462378799915, 0.021932370960712433, -0.0086506437510252, -0.010567665100097656, 0.00315037346445024, -0.018991565331816673, 0.025409119203686714, -0.011618934571743011, -0.0021214347798377275, -0.013377921655774117, 0.01849685050547123, 0.04358990117907524, -0.011234156787395477, 0.018331944942474365, 0.005984678864479065, 0.005936581641435623, -0.010966185480356216, -0.009722527116537094, -0.014387965202331543, 0.008045991882681847, -0.01668289490044117, 0.023347806185483932, -0.010691343806684017, 0.009935528971254826, -0.0030438723042607307, 0.025958802551031113, -0.028006374835968018, 0.008224639110267162, -0.007427598349750042, 0.022028565406799316, 0.008382673375308514, 0.009502653032541275, -0.010368404909968376, -0.0038546554278582335, -0.03223893791437149, -0.0018672061851248145, -0.004308144561946392, -0.011735742911696434, 0.0044627427123487, 0.041583556681871414, 0.042627956718206406, 0.013632150366902351, 0.013364179991185665, 0.015624753199517727, -0.015226232819259167, -0.006441603414714336, 0.013790184631943703, -0.0030541790183633566, 0.03435521945357323, -0.022537022829055786, 0.003957721404731274, -0.0244059469550848, -0.016050757840275764, 0.0014729800168424845, -0.022179728373885155, 0.010478341951966286, -0.003638217691332102, -0.006132406648248434, 0.014099381864070892, 0.024776984006166458, 0.008217768743634224, -0.019829832017421722, -0.027291785925626755, 0.05285206809639931, 0.02270192839205265, 0.021245267242193222, -0.03127698972821236, -0.01679283007979393, -0.005118927452713251, 0.016408052295446396, -0.0026745537761598825, 0.010643246583640575, -0.016229405999183655, -0.03493238613009453, 0.009021680802106857, 0.006108358036726713, 0.009399588219821453, 0.02458459511399269, 0.02799263224005699, -0.0014987464528530836, -0.02266070246696472, 0.00043953207205049694, 0.010182886384427547, -0.008705612272024155, 0.009351490065455437, -0.003459570463746786, -0.02092919871211052, -0.019390085712075233, -0.02535415068268776, 0.008506352081894875, -0.024598335847258568, -0.023155417293310165, 0.016380568966269493, -0.007283306214958429, 0.011598321609199047, -0.009035422466695309, 0.008815549314022064, 0.0025783590972423553, -0.00684699509292841, -0.017356256023049355, -0.013535955920815468, 0.013226758688688278, -0.00473414920270443, -0.005129233933985233, 0.015171264298260212, -0.009454555809497833, 0.021630045026540756, 0.004332193173468113, 0.006218294613063335, 0.012099907733500004, -0.0049162316136062145, -0.004840650130063295, 0.0008958123507909477, 0.019101502373814583, -0.004033302888274193, 0.008870517835021019, 0.029353098943829536, -0.022440828382968903, -0.029930265620350838, -0.03333830460906029, 0.022179728373885155, -0.0026728359516710043, -0.033420756459236145, -0.0050811367109417915, 0.03831293806433678, 0.015143780037760735, -0.02121778391301632, -0.0021523544564843178, -0.17611859738826752, 0.010382147505879402, 0.01991228386759758, 0.0033668114338070154, -0.009653815999627113, 0.023512711748480797, 0.012361007742583752, 0.004404339008033276, -0.024433432146906853, 0.0004214955843053758, 0.01765858195722103, -0.017315030097961426, -0.029133224859833717, -0.024598335847258568, 0.007310790475457907, -0.00801850762218237, -0.013900121673941612, 0.023842521011829376, 0.04059412702918053, -0.011536482721567154, 0.012903819791972637, -0.017672324553132057, 0.018730465322732925, -0.016559215262532234, 0.008368930779397488, 0.0124778151512146, -0.01925266534090042, 0.03798313066363335, -0.004469614010304213, -0.02433723770081997, -0.011110478080809116, -0.013412277214229107, 0.03168925270438194, 0.016847798600792885, -0.0006226883269846439, 0.0030318479984998703, -0.0002615290868561715, -0.015088812448084354, -0.01763109862804413, 0.0029373711440712214, 0.024199815467000008, 0.014065026305615902, 0.009207198396325111, -0.005953759420663118, 0.020187126472592354, 0.014841454103589058, 0.015968305990099907, -0.006008727941662073, 0.005620513577014208, -0.011928131803870201, 0.027442948892712593, -0.013116822578012943, -0.0066820899955928326, -0.0204482264816761, 0.018620528280735016, 0.0062389075756073, 3.507989822537638e-05, 0.0150338439270854, 0.007551277056336403, -0.015720948576927185, -0.0027673128060996532, 0.0010289388010278344, 0.005057088099420071, -0.002597254468128085, -0.00868499930948019, -0.03996198996901512, -0.02404865249991417, 0.019926026463508606, -0.008135315962135792, 0.008238381706178188, -0.00046637209015898407, 0.003995512146502733, 0.005689224228262901, -0.002495906548574567, 0.01998099498450756, 0.0067404936999082565, -0.040704064071178436, -0.0063179247081279755, 0.03504232317209244, 0.00036888915929012, 0.018180781975388527, 0.019678669050335884, 0.00037983988295309246, 0.0003283070691395551, -0.02615119330585003, -0.0026058433577418327, -0.002638480858877301, 0.015789657831192017, -0.01606450043618679, 0.013357308693230152, 0.028913352638483047, -0.02128649316728115, 0.023732585832476616, -0.012615236453711987, 0.012835109606385231, 0.008423899300396442, 0.028198763728141785, -0.004418081138283014, 0.014992617070674896, -0.014346739277243614, 0.0010778949363157153, 0.040456704795360565, -0.028528572991490364, -0.0035162565764039755, 0.031386926770210266, 0.017672324553132057, 0.029710393399000168, -0.005761370062828064, 0.03471251204609871, -0.009399588219821453, -0.027717789635062218, 0.02628861367702484, 0.022330891340970993, 0.004868134390562773, -0.014387965202331543, 0.03721357136964798, 0.009997368790209293, 0.0006883926689624786, 0.011825066059827805, -0.0036004269495606422, 0.0465032234787941, -0.023375291377305984, -0.025271698832511902, 0.011996841989457607, -0.008437641896307468, -0.014401707798242569, -0.09278657287359238, -0.027429206296801567, 0.032513778656721115, 0.012828238308429718, -0.0022193470504134893, -0.0020303933415561914, -0.0028875560965389013, 0.007922313176095486, -0.004266918171197176, 0.023801295086741447, -0.017534904181957245, -0.015624753199517727, -0.012560267932713032, -0.017287546768784523, 0.013164919801056385, -0.011234156787395477, 0.005610207095742226, -0.02683829702436924, -0.006386635359376669, 0.019582474604249, 0.019527506083250046, -0.012725172564387321, 0.009062906727194786, 0.009908044710755348, -0.02205605059862137, -0.026302354410290718, -0.02995775081217289, 0.002906451467424631, 0.01029969472438097, 0.0030782276298850775, 0.035921815782785416, -0.011247898451983929, 0.024831952527165413, -0.02088797278702259, -0.0021059748250991106, -0.01834568753838539, -0.006939754355698824, -0.027607854455709457, 0.032376356422901154, -0.01046459935605526, 0.0006471664528362453, 0.011776968836784363, 0.01769980788230896, -0.035482071340084076, 0.004411209840327501, -0.007221466861665249, -0.007180240470916033, 0.02792392112314701, 0.007997894659638405, -0.016545472666621208, -0.023004254326224327, -0.03779074177145958, -0.01831820234656334, -0.028748447075486183, 0.03163428604602814, 0.007839861325919628, 0.01425054483115673, 0.01177009753882885, -0.025628993287682533, 0.005421253386884928, -0.00968130026012659, -0.006376328412443399, -0.006355715449899435, 0.03397044166922569, 0.01412686612457037, 0.003548894077539444, -0.02604125626385212, 0.006355715449899435, 0.014552870765328407, 0.0021952984388917685, -0.009777495637536049, 0.014037542045116425, -0.023636389523744583, 0.002418607473373413, -0.02836366929113865, 0.002452962566167116, -0.006816075183451176, -0.0029923394322395325, 0.0005793148884549737, 0.014978875406086445, -0.021630045026540756, -0.009413329884409904, 0.013199275359511375, -0.02070932649075985, 0.010876862332224846, -0.010086691938340664, 0.008636902086436749, -0.006833252962678671, 0.006599637679755688, -0.0380106121301651, 0.02075055241584778, 0.029078256338834763, 0.023691358044743538, 0.01372834574431181, -0.005101750139147043, 0.02114907279610634, -0.00904916413128376, -0.009172843769192696, 0.00435967743396759, 0.008540707640349865, -0.010141660459339619, -0.002588665811344981, -0.061894360929727554, 0.007173369638621807, 0.008320833556354046, 0.013831410557031631, 0.008533836342394352, -0.034107860177755356, 0.0006067990325391293, -0.012704559601843357, 0.007049690932035446, 0.00221247598528862, -0.021011652424931526, -0.00012303462426643819, -0.003024976933375001, -0.00566517561674118, -0.024680789560079575, -0.025903834030032158, 0.01365276426076889, 0.0010280798887833953, 0.0158858522772789, 0.012141134589910507, -0.0007759985164739192, 0.005352543201297522, 0.021520107984542847, 0.019390085712075233, 0.006221730262041092, 0.03935733810067177, -0.020874230191111565, 0.024021169170737267, -0.013295469805598259, -0.024969372898340225, 0.02883089892566204, 0.008258994668722153, -0.00550370616838336, -0.0054418668150901794, -0.004782246425747871, -0.04620089754462242, -0.012759528122842312, 0.012855722568929195, 0.012903819791972637, 0.004122626036405563, -0.00603964738547802, -0.007434469182044268, 0.026742102578282356, -0.028047600761055946, -0.02270192839205265, -0.013776442967355251, -0.01885414309799671, -0.019500022754073143, 0.005136105231940746, -0.008279607631266117, 0.03619665652513504, 0.00038306068745441735, -0.03622414171695709, -0.025835124775767326, -0.0037515899166464806, -0.01933511719107628, 0.013858894817531109, 0.027759017422795296, -0.0035626362077891827, -0.002023522276431322, 0.05208251252770424, 0.012367879040539265, 0.01563849486410618, -0.01734251342713833, 0.04345247894525528, 0.008898001164197922, -0.05004868283867836, -0.026123708114027977, 0.00794292613863945, -0.02135520428419113, -0.006603072863072157, -0.012841980904340744, 0.016490504145622253, 0.020324546843767166, 0.02132771909236908, -0.0036966216284781694, 0.007963540032505989, -0.00990117434412241, -0.0076886978931725025, 0.03028756007552147, 0.017205093055963516, -0.006293876096606255, -0.01824949122965336, 0.02332032285630703, 0.028088826686143875, 0.007784892339259386, -0.028885867446660995, 0.01805710233747959, 0.006956931669265032, -0.0027295220643281937, -0.0235401950776577, -0.0010933547746390104, -0.0022657266817986965, 0.002681424841284752, 0.004682616330683231, 0.005558674223721027, -0.010760053992271423, 0.010876862332224846, 0.03506980836391449, 0.025257956236600876, 0.0065755886025726795, 0.01140593271702528, -0.01231291051954031, -0.010691343806684017, 0.00536628533154726, 0.014442933723330498, -0.013735216110944748, -0.0229905117303133, 0.02197359688580036, 0.017823487520217896, 0.009372103959321976, -0.025587767362594604, 0.0012788730673491955, 0.01481396984308958, -0.01117231696844101, 0.009811850264668465, -0.004875005688518286, -0.007832990027964115, -0.026865780353546143, 0.0024134539999067783, 0.024763241410255432, 0.026054996997117996, 0.0087949363514781, -0.011866292916238308, 0.027360495179891586, -0.007468824740499258, 0.009062906727194786, -0.011831937357783318, 0.002552592661231756, -0.0062526497058570385, -0.005084572359919548, -0.009001066908240318, 0.00986681878566742, -0.0070290775038301945, -0.01469029113650322, -0.025244215503335, -0.0072420802898705006, 0.03482244908809662, -0.006441603414714336, 0.08822420239448547, 0.028446121141314507, -0.013467245735228062, 0.0072352089919149876, -0.014855196699500084, 0.0032087774015963078, -0.00073777831858024, 0.017205093055963516, -0.0024289139546453953, -0.019060274586081505, 0.02219347096979618, -0.017493676394224167, -0.011900647543370724, -0.00408827094361186, -0.008471996523439884, 0.004802859388291836, -0.009516395628452301, 0.006530927028506994, -0.0009327441803179681, 0.002995775081217289, 0.01231291051954031, 0.0004378143057692796, 0.009310264140367508, -0.007214596029371023, -0.034437671303749084, -0.010176016017794609, 0.03306346386671066, 0.025766413658857346, 0.0004736725823022425, -0.013013756833970547, 0.03031504526734352, -0.013948218896985054, -0.03572942689061165, -0.010711956769227982, -0.024776984006166458, 0.005562109872698784, -0.007558147888630629, -0.03583936393260956, -0.0008279607864096761, 0.02650848589837551, -0.004342499654740095, 0.035344649106264114, -0.016751604154706, -0.02367761731147766, 0.0006093757110647857, 0.009777495637536049, -0.0011646419297903776, -0.03028756007552147, 0.00030468785553239286], "24a7a2fe-17f2-4bb0-a3d1-bf233235f75b": [-0.0025479330215603113, -0.008130557835102081, -0.005982103291898966, -0.04116976261138916, 0.015683718025684357, 0.026936249807476997, -0.006361439824104309, -0.019403230398893356, -0.010728845372796059, -0.03582547977566719, 0.0016793194226920605, 0.024680372327566147, 0.012252905406057835, -0.015388306230306625, -0.005713546648621559, 0.016945935785770416, 0.029997797682881355, 0.003759795567020774, 0.0032898210920393467, 0.006871697958558798, -0.030937746167182922, -0.005079081282019615, -0.007895571179687977, 0.006663566455245018, -0.020437175408005714, -0.008533393032848835, 0.02098771557211876, -0.014690058305859566, -0.03480496630072594, 0.018812406808137894, 0.008305120281875134, -0.013897815719246864, -0.027634497731924057, -2.254146420455072e-05, 0.0020897078793495893, 0.019644932821393013, 0.0007200679974630475, 0.02486836165189743, 0.013078717514872551, -0.0033351401798427105, 0.010117878206074238, 0.03824249282479286, 0.009191357530653477, -0.007237606681883335, -0.02038346417248249, 0.020759442821145058, -0.004317051265388727, -0.011722506023943424, -0.02297503687441349, -0.002616750542074442, -0.009983600117266178, 0.0024572950787842274, -0.02065202035009861, 0.010983974672853947, 0.008580390363931656, 0.0034912386909127235, 0.007002619560807943, 0.007519591134041548, 0.015012326650321484, -0.01097054686397314, 0.006015672814100981, -0.009842608124017715, -0.012293188832700253, -0.00720403715968132, -0.016851941123604774, -0.035906046628952026, -0.021605396643280983, 0.0018765408312901855, -0.013535263948142529, -0.018033592030405998, 0.050220128148794174, 0.03287135437130928, 0.009292066097259521, -0.03230738639831543, -0.0025042924098670483, -0.015321167185902596, -0.022437922656536102, -0.02281390316784382, 0.0009483413305133581, -0.002035996410995722, 0.03383816033601761, -0.010030597448348999, -0.01460949145257473, 0.014569208025932312, 0.020047767087817192, 0.029165271669626236, 0.008002993650734425, 0.010910121724009514, -0.007029475178569555, -0.025418903678655624, 0.02214251086115837, 0.01175607554614544, 0.019309235736727715, 0.028171611949801445, 0.016287971287965775, 0.015455445274710655, 0.013669542968273163, 0.009386061690747738, -0.01391124352812767, -0.017281632870435715, -0.014622919261455536, -0.007291317917406559, -0.01517346128821373, -0.011910495348274708, -0.008493109606206417, -0.010594567283987999, 0.017590472474694252, -0.015482300892472267, -0.01175607554614544, 0.016381965950131416, -0.014139517210423946, 0.02417011559009552, 0.0052972836419939995, -0.006989191751927137, 0.00408542063087225, 0.011198819614946842, 0.029272694140672684, -0.026184290647506714, -0.0003579359035938978, -0.023726996034383774, 0.00829840637743473, 0.0059183211997151375, 0.05183146893978119, -0.00968147348612547, 0.008519965223968029, 0.005475202575325966, 0.001617215690203011, -0.021121995523571968, 0.023498723283410072, 0.005451703444123268, 0.01979263871908188, 0.00801642145961523, 0.019416658207774162, 0.014032094739377499, -0.03064233437180519, 0.018167870119214058, -0.022625913843512535, 0.018167870119214058, 0.00871466938406229, -0.02231707237660885, 0.006055956706404686, 0.02709738351404667, 0.01509289350360632, -0.0010952083393931389, 0.0007955995970405638, 0.047695692628622055, -0.011098111048340797, 0.034079860895872116, 0.012232763692736626, -0.009862749837338924, -0.00015536432329099625, -0.008593818172812462, -0.029621819034218788, 0.005105936899781227, 0.020074622705578804, 0.014622919261455536, 0.00190507504157722, 0.035476356744766235, -0.020974287763237953, 0.014434929937124252, -0.00825140904635191, 0.04245883598923683, 7.726254261797294e-05, -0.014945187605917454, 0.0030128718353807926, 0.03257594257593155, 0.01356211956590414, -0.023257020860910416, -0.02101457118988037, -0.009211499243974686, 0.0018563991179689765, 0.025284625589847565, -0.012024631723761559, 0.022397639229893684, 0.007136897649616003, 0.011702364310622215, 0.0033737451303750277, -0.0006201984360814095, -0.009439772926270962, -0.029863519594073296, 0.021242845803499222, -0.015186889097094536, -0.017818745225667953, 0.017174208536744118, -0.011259244754910469, -0.021471118554472923, 0.03485867753624916, 0.029568107798695564, 0.011997776105999947, -0.006626639980822802, 0.014340934343636036, 0.008519965223968029, -0.012447609566152096, -0.01460949145257473, -0.6307862997055054, 0.0006546072545461357, 0.01349498052150011, -0.01855727657675743, 0.012588601559400558, 0.018678126856684685, 0.010856409557163715, 0.002306231763213873, -0.0037362969014793634, 0.029138416051864624, 0.017160780727863312, -0.012138769030570984, -0.018866118043661118, -0.0052704280242323875, -0.01972549967467785, -0.03300563618540764, -0.007486021611839533, -0.013750109821557999, -0.010916835628449917, -0.006354725919663906, -0.03330104798078537, 0.007526305038481951, 0.002912163035944104, -4.12538975069765e-05, -0.013159284368157387, -0.022088799625635147, 0.013964954763650894, -0.0060458858497440815, -0.007116755936294794, 0.048823632299900055, -0.02520405873656273, 0.018073875457048416, 0.016180548816919327, -0.008110416121780872, 0.03920929878950119, -0.03327419236302376, -0.007439024280756712, 0.025177203118801117, 0.007096614222973585, 0.027715064585208893, -0.017536761239171028, -0.0126825962215662, 0.018087303265929222, 0.012434180825948715, -0.02284075878560543, -0.01250132080167532, 0.013186139985918999, 0.006213733460754156, -0.005656478460878134, -0.00720403715968132, 0.0026956391520798206, -0.002615072065964341, -0.013924671337008476, 0.005975389387458563, -0.005978746339678764, -0.0008786843973211944, 0.020678875967860222, -0.011964206583797932, 0.0018681484507396817, -0.005421490874141455, 0.012696024030447006, 0.018933257088065147, -0.010547569952905178, -0.037732236087322235, -0.04380162060260773, 0.020128333941102028, -0.029192127287387848, -0.018570704385638237, -0.025687461718916893, -0.02207537181675434, 0.023149598389863968, -0.002452259650453925, 0.00678105978295207, 0.0042666965164244175, 0.010634850710630417, 0.02556660957634449, 0.0541142001748085, -0.007016047369688749, -0.005948533769696951, 0.00948005635291338, 0.007721008732914925, 0.015428589656949043, -0.013327132910490036, -0.016355110332369804, 0.037732236087322235, 0.005767257884144783, -0.010111164301633835, -0.01112496666610241, 0.009023509919643402, -0.013434555381536484, -0.000984428683295846, 0.026157435029745102, -0.01614026539027691, -0.016287971287965775, 0.0020108192693442106, 0.056289512664079666, 0.007882143370807171, 0.022290216758847237, 0.00803656317293644, -0.01885269023478031, -0.025016069412231445, -0.0208534374833107, 0.015361450612545013, 0.01198434829711914, 0.007177181541919708, 0.027285374701023102, -0.03354274854063988, -0.0011782931396737695, 0.017080213874578476, -0.0016877118032425642, -0.012346900068223476, -0.01666395179927349, -0.017536761239171028, -0.0051630050875246525, 0.012320044450461864, -0.019779210910201073, -0.0027342443354427814, 0.021175706759095192, 0.0034945958759635687, 0.005186503753066063, -0.020907148718833923, -0.028869859874248505, 0.016341682523489, 0.017147352918982506, 0.018047019839286804, 0.01298472285270691, 0.010856409557163715, -0.013803821057081223, -0.001571896718814969, -0.005545698571950197, -0.0007158718071877956, -0.00439090421423316, -0.009600906632840633, -0.01285044476389885, 0.03751739114522934, -0.006864984054118395, 0.03104517050087452, -0.010735559277236462, 0.006908624432981014, -0.04568151757121086, -0.007298031821846962, 0.016972791403532028, 0.02782248705625534, -0.01467663049697876, 0.007318173535168171, -0.026117151603102684, -0.002873558085411787, -0.003293178044259548, 0.019134674221277237, -0.007627014070749283, -0.020168617367744446, -0.0095270536839962, 0.014596063643693924, 0.00045570736983790994, -0.016757946461439133, -0.006207019556313753, -0.0044009750708937645, -0.02978295274078846, -0.019242096692323685, -0.021001143380999565, -0.005542341619729996, -0.019107818603515625, -0.01489147637039423, 0.002020890126004815, -0.001794295385479927, -0.01070870365947485, -0.01544201746582985, 0.018798978999257088, -0.027849342674016953, -0.00810370221734047, -0.005146220326423645, -0.01440807431936264, -0.009171215817332268, 0.024062691256403923, 0.006217090412974358, 0.007197323255240917, -0.014206656254827976, -0.014139517210423946, -0.013340560719370842, -0.0029558036476373672, 0.009560623206198215, 0.020061194896697998, -0.018020164221525192, -0.011930637061595917, 0.04562780633568764, 0.0034442413598299026, 0.027231663465499878, 0.03034692257642746, -0.021806813776493073, 0.007895571179687977, -0.013011578470468521, 0.015294311568140984, -0.019148102030158043, -0.012863872572779655, -0.022505061700940132, -0.015992559492588043, -0.004887734539806843, 0.000366328313248232, 0.008076846599578857, 0.03442898392677307, 0.0063412981107831, 0.023189881816506386, -0.007365170866250992, 0.003571805777028203, 0.009970172308385372, -0.024828078225255013, 0.012299902737140656, -0.016408821567893028, 0.010044025257229805, 0.008902658708393574, -0.0042532687075436115, -0.0019705358427017927, 0.007445738185197115, -0.009909747168421745, 0.0030497985426336527, 0.037866514176130295, 0.011782931163907051, 0.024747511371970177, 0.0029457327909767628, -0.015066037885844707, 0.015213744714856148, 0.021833671256899834, 0.012071629986166954, -0.00754644675180316, 0.0030447631143033504, 0.0124006113037467, 0.009359205141663551, 0.029111560434103012, 0.0025110063143074512, -0.022988464683294296, -0.021121995523571968, 0.022290216758847237, -0.010654992423951626, 0.016516245901584625, 0.029890375211834908, 0.010930263437330723, 0.022558772936463356, -0.0030179074965417385, 0.02549947053194046, 0.007089900318533182, 0.0051630050875246525, -0.005663192365318537, 0.019430086016654968, -0.039424143731594086, 0.017523333430290222, -0.003931000828742981, 0.012212621979415417, -0.0019537508487701416, -0.025942590087652206, 0.014448357746005058, -0.007378599140793085, 0.006703849881887436, -0.006106310989707708, -0.00045193079859018326, 0.028305890038609505, -0.00796942412853241, 0.023995552211999893, 0.016059698536992073, 0.00631779944524169, 0.017671039327979088, 0.0068213436752557755, -0.001723799156025052, 0.0055524124763906, 0.0020326394587755203, 0.02423725463449955, -0.011064541526138783, -0.004847450647503138, -0.02380756288766861, 0.004343906883150339, -0.014663202688097954, 0.0016726055182516575, -0.015536013059318066, 0.0005824326071888208, -0.00899665430188179, 0.007613586261868477, -0.010319296270608902, -0.011829928494989872, -0.0020746015943586826, 0.0015022397274151444, 0.011017544195055962, -0.019242096692323685, -0.03440212830901146, 0.029406972229480743, 0.017013074830174446, 0.0033368186559528112, -0.0017859028885141015, -0.01677137427031994, -0.0004236064269207418, 0.0009332349873147905, 0.018798978999257088, 0.011064541526138783, -0.0035147375892847776, -0.014381218701601028, -0.0024707228876650333, 0.009560623206198215, -0.004595678765326738, 0.041921719908714294, -0.01932266354560852, -0.022988464683294296, 0.01467663049697876, 0.03370388224720955, 0.02194109372794628, -0.023001892492175102, -0.027849342674016953, 0.01855727657675743, 0.005082438234239817, -0.026345424354076385, -0.008009707555174828, -0.004921304062008858, -0.020638592541217804, -0.007781434338539839, -0.007989565841853619, -0.01740248315036297, -0.023283876478672028, 0.0012236121110618114, -0.012326758354902267, -0.010936977341771126, -0.0038067931309342384, -0.0042398408986628056, 0.029675530269742012, -0.0017741535557433963, -0.010433432646095753, 0.01057442557066679, 0.009909747168421745, 0.0739605501294136, 0.002317981095984578, 0.005394635256379843, 0.011359954252839088, -0.011729219928383827, -0.012192480266094208, -0.03185084089636803, -0.006616569124162197, 0.039692699909210205, 0.021296557039022446, -0.019242096692323685, 0.012367041781544685, 0.008419256657361984, -0.009070507250726223, 0.012743021361529827, -0.009164501912891865, 0.00871466938406229, -0.010869837366044521, -0.01152108795940876, 0.017160780727863312, -0.0020746015943586826, 0.00640843715518713, 0.030293211340904236, 0.0008081882260739803, 0.02825217880308628, 0.018785551190376282, 0.020531170070171356, 0.01740248315036297, 8.24028902570717e-05, -0.023391300812363625, -0.018476709723472595, 0.0026184290181845427, -0.0011354918824508786, 0.0014963650610297918, -0.03206568583846092, 0.02423725463449955, -0.005703475791960955, -0.00506229605525732, -0.010064166970551014, -0.008237981237471104, -0.006324513349682093, 0.033784449100494385, -0.010560997761785984, -0.004941445775330067, 0.009694901295006275, -0.01614026539027691, -0.01168893650174141, 0.04041780158877373, 0.0003562574274837971, -0.00404178025200963, 0.013011578470468521, 0.0182618647813797, -0.011682222597301006, 0.006257374305278063, -0.00022617520880885422, -0.022464778274297714, -0.003524808445945382, -0.03316676989197731, -0.03437527269124985, -0.023082459345459938, -0.014448357746005058, -0.01587170921266079, -0.011245816946029663, -0.03389187157154083, -0.022437922656536102, -0.0392361544072628, -0.008654244244098663, -0.010943691246211529, -0.01163522433489561, 0.0014367790427058935, -0.017308488488197327, -0.03160914033651352, -0.03953156620264053, 0.004045137204229832, 0.02410297468304634, 0.02049088664352894, -0.010681848041713238, 0.007828431203961372, -0.002029282506555319, -0.006619926076382399, 0.0016264473088085651, -0.004437901545315981, 0.0026587126776576042, -0.014810909517109394, 0.0063782245852053165, -0.01918838545680046, -0.016959363594651222, 0.0063916523940861225, 0.00994331669062376, 0.03437527269124985, 0.007868715561926365, -0.027500219643115997, 0.013676256872713566, 0.009493484161794186, 0.02263934165239334, -0.002161882584914565, 0.010715417563915253, -0.02360614575445652, 0.02792990952730179, -0.030105220153927803, 0.029138416051864624, -0.03107202611863613, -0.01866469904780388, -0.01733534410595894, 0.018087303265929222, 0.026815399527549744, -0.014206656254827976, -0.018449854105710983, -0.0003392627986613661, -0.016059698536992073, 0.005700118839740753, -0.005703475791960955, -0.02175310254096985, -0.02656027115881443, -0.008815377950668335, -0.02951439656317234, 0.008056704886257648, 0.016341682523489, 0.006035814993083477, -0.023928413167595863, 0.005787399597465992, -0.014998898841440678, 0.031985118985176086, 0.015777714550495148, 0.00410891929641366, 0.014730341732501984, -0.0009995349682867527, -0.009983600117266178, -0.03257594257593155, -0.017013074830174446, 0.010930263437330723, -0.0005614515976049006, -0.017026502639055252, -0.02509663626551628, -0.005814255215227604, -0.011762789450585842, -0.02290789783000946, 0.010460288263857365, 0.0035919477231800556, 0.0011438842630013824, -0.04358677193522453, 0.008929514326155186, 0.004988443106412888, -0.008291692472994328, 0.004098848439753056, -0.030266355723142624, -0.03851104900240898, 0.001517346128821373, 0.008190982975065708, 0.02951439656317234, -0.025217486545443535, 0.0032898210920393467, -0.0455472394824028, -0.024653516709804535, -0.01291758380830288, -0.015844853594899178, -0.0030162290204316378, 0.011547943577170372, 0.030239500105381012, 0.03735625371336937, 0.01342784147709608, 0.02333758771419525, 0.023257020860910416, 0.03389187157154083, -0.005293926689773798, 0.0025596823543310165, -0.012078343890607357, -0.02543233148753643, -0.003954499494284391, -0.022934753447771072, -0.012944439426064491, 0.002410297514870763, -0.002370014088228345, -0.0016809978988021612, -0.010185018181800842, -0.004216342233121395, 0.0017640826990827918, -0.014112661592662334, -0.02825217880308628, -0.039558421820402145, 0.021121995523571968, 0.03542264550924301, 0.00849982351064682, 0.003110223915427923, -0.02948754094541073, -0.00976204127073288, 0.017093641683459282, 0.008660958148539066, 0.03375759348273277, 0.00532078230753541, 0.027903053909540176, 0.0009542159968987107, 0.017241349443793297, 0.022961609065532684, 0.00035709666553884745, -0.014770626090466976, -0.01057442557066679, -0.04181429743766785, -0.0158985648304224, 0.0019168243743479252, 0.009520339779555798, 0.012434180825948715, -0.007257748395204544, 0.009741898626089096, 0.018503565341234207, 0.01896011270582676, -0.016650523990392685, -0.015428589656949043, 0.006468862760812044, -0.0259291622787714, -0.012165624648332596, -0.034912388771772385, -0.01489147637039423, 0.007707580924034119, -0.01173593383282423, -0.0051361494697630405, -0.012769876979291439, 0.02002091147005558, -0.021726246923208237, -0.027580786496400833, 0.005703475791960955, -0.005213359370827675, 0.014152945019304752, 0.016811657696962357, 0.01283030305057764, 0.019537510350346565, 0.010218587704002857, -0.02766135334968567, 0.0013520157663151622, 0.005273784976452589, 0.006358082871884108, -0.004750099033117294, 0.04114290699362755, -0.017979878932237625, -0.004773597698658705, -0.0005916642840020359, -0.0051697189919650555, 0.0045621092431247234, -0.03837677091360092, 0.026023156940937042, -0.0026050012093037367, -0.0008728096727281809, -0.03453641012310982, -0.024156687781214714, -0.00829840637743473, -0.00188661168795079, -0.00532078230753541, 0.0176978949457407, 0.010279012843966484, 0.006029101088643074, -0.005058939103037119, 0.021591968834400177, -0.021457690745592117, 0.013978383503854275, -0.0006424383027479053, 0.0030262998770922422, 0.0008417578064836562, -0.012172338552772999, 0.011594940908253193, -0.009090648964047432, 0.0019470370607450604, 0.005213359370827675, -0.03625517338514328, 0.005065653007477522, 0.015388306230306625, 0.010916835628449917, -0.006267445161938667, -0.008352117612957954, -0.012736307457089424, 0.027043672278523445, 0.0008602211019024253, -0.018073875457048416, -0.0032243605237454176, -0.01846328191459179, 0.01869155466556549, -0.020866865292191505, -0.02360614575445652, -0.012508034706115723, -0.0029876946937292814, 0.00919807143509388, -0.002950768219307065, -0.009057079441845417, -0.008130557835102081, 0.0016415535937994719, 0.0018329003360122442, -0.012058202177286148, -0.03120630420744419, 0.0012387183960527182, 0.01729506067931652, -0.020101478323340416, -0.014340934343636036, 0.0014518853276968002, -0.010634850710630417, 0.003732939949259162, 0.012662454508244991, -0.01263559889048338, -0.004525182768702507, 0.01839614287018776, -0.0313405804336071, 0.0253651924431324, 0.017644183710217476, 0.041653163731098175, -0.03074975684285164, 0.027607642114162445, -0.004894448444247246, 0.002086350927129388, 0.014287223108112812, -0.0041122762486338615, -0.049951571971178055, -0.019644932821393013, 0.0011187070049345493, -0.0009055400732904673, 0.017456194385886192, 0.00019690670887939632, 0.02234392799437046, 0.022357355803251266, 0.0007150325691327453, -0.026305140927433968, -0.004337192978709936, 0.006008958909660578, -0.005438275635242462, 0.003073297208175063, 0.01349498052150011, -0.011641938239336014, 0.00021694356109946966, -0.008244695141911507, 0.0018631130224093795, -0.0008128040353767574, -0.019806066527962685, -0.019994055852293968, -0.02042374759912491, -0.009446486830711365, 0.008143985643982887, 0.012823589146137238, -0.017603900283575058, -0.029165271669626236, -0.024210399016737938, 0.024626661092042923, -0.012454323470592499, 0.012367041781544685, 0.02184709906578064, -0.005451703444123268, -0.024720655754208565, 0.010258871130645275, -0.0056229084730148315, -0.05424847826361656, -0.028762437403202057, -0.009688187390565872, -0.03550321236252785, -0.007083186414092779, -0.0012437538243830204, 0.03228053078055382, 0.006438650190830231, -0.02878929302096367, -0.03692656382918358, -0.009976886212825775, -0.03373073786497116, -0.0025244341231882572, -0.027110811322927475, 0.022867614403367043, 0.021591968834400177, 0.0347243994474411, 0.008620674721896648, 0.01916152983903885, -0.0025714316871017218, 0.023995552211999893, -0.04176058620214462, -0.016784802079200745, -0.016623668372631073, -0.014918331988155842, 0.0219813771545887, -0.02991723082959652, -0.04449986666440964, -0.007633727975189686, 0.020866865292191505, -0.02540547586977482, -0.001550915651023388, 0.01918838545680046, -0.0021971305832266808, 0.004058565013110638, -0.0042801243253052235, -0.0043741194531321526, 0.014139517210423946, 0.0015777713852003217, 0.012588601559400558, -0.0313405804336071, 0.015146605670452118, -0.001433422090485692, 0.004011567682027817, -0.015227172523736954, 0.008587104268372059, 0.01925552450120449, -0.024559522047638893, 0.001084298244677484, -0.01356211956590414, -0.0037799375131726265, -0.01955093815922737, -0.003685942618176341, -0.008546820841729641, -0.005518842954188585, 0.001229486777447164, 0.03442898392677307, 0.005914964247494936, -0.009231640957295895, -0.020544597879052162, 0.022505061700940132, 0.006196948699653149, -0.00569340493530035, 0.023713568225502968, -0.029836663976311684, -0.013273421674966812, -0.019282380118966103, 0.030696045607328415, -0.005418133921921253, -0.012810160405933857, -0.026117151603102684, -0.005847825203090906, -0.03340847045183182, -0.015791142359375954, 0.014797481708228588, -0.0004313694080337882, 0.006301014684140682, -0.029406972229480743, 0.018073875457048416, -0.026305140927433968, -0.008096988312900066, 0.009392775595188141, -0.018637843430042267, -0.028413312509655952, 0.0013461410999298096, 0.014233511872589588, -0.033945582807064056, -0.01228647492825985, 0.036174606531858444, -0.01064156461507082, 0.008540106937289238, 0.20678876340389252, 0.0057504731230437756, 0.0035919477231800556, 0.04815223813056946, 0.018221581354737282, -0.01331370510160923, 0.014945187605917454, 0.005831039976328611, 0.007157039362937212, 0.022531917318701744, 0.006223804783076048, 0.003101831302046776, -0.016046270728111267, 0.0007641281117685139, 0.018275292590260506, -0.021202562376856804, -0.03262965381145477, -0.011279386468231678, -0.007432310376316309, 0.005220073275268078, 0.0034945958759635687, -0.0003136659797746688, -0.018449854105710983, -0.0012806804152205586, 0.013541977852582932, 0.03050805628299713, -0.014166372828185558, 0.010527428239583969, 0.01862441562116146, 0.016878796741366386, -0.027741920202970505, -0.015200316905975342, 0.007512877229601145, -0.012716165743768215, 0.0012966259382665157, 0.000272123608738184, 0.011366668157279491, -0.030024653300642967, 0.0039410716854035854, 0.02367328479886055, 0.0014518853276968002, -0.001589520717971027, 0.004424473736435175, -0.014220084063708782, 0.01567029021680355, -0.016878796741366386, -0.004256625659763813, -0.0007011850830167532, 0.011594940908253193, 0.03536893427371979, -0.0035013097804039717, 0.021242845803499222, 0.002526112599298358, 0.007177181541919708, -0.015321167185902596, -0.007472593802958727, 0.008519965223968029, -0.0020124977454543114, -0.023324159905314445, 0.01099068857729435, -0.008936228230595589, 0.013488266617059708, -0.0027610999532043934, 0.013320419006049633, -0.02506978064775467, 0.003719512140378356, -0.016355110332369804, 0.0320119746029377, 0.0027997049037367105, 0.002259234432131052, -0.0126825962215662, -0.00768743921071291, -0.021860526874661446, -0.00671392073854804, -0.0009198071202263236, -0.010144734755158424, -0.0007016047020442784, 0.037436820566654205, 0.036040328443050385, 0.012796732597053051, 0.013333846814930439, 0.0057639009319245815, -0.01663709618151188, -0.012024631723761559, 0.01656995713710785, -0.008513251319527626, 0.02938011661171913, -0.017738178372383118, 0.010238729417324066, -0.017174208536744118, -0.011668793857097626, 0.007935854606330395, -0.01656995713710785, 0.015146605670452118, 3.312375702080317e-05, -0.013159284368157387, -0.0001899829803733155, 0.03007836453616619, 0.0025982873048633337, -0.007801576051861048, -0.026882538571953773, 0.04662146419286728, 0.02443867176771164, 0.04455357789993286, -0.01573743112385273, -0.002970909932628274, -0.0007032831781543791, 0.016153693199157715, 2.326268622709904e-05, 0.011272672563791275, -0.025915734469890594, -0.034912388771772385, 0.015401734039187431, 0.007895571179687977, 0.016019415110349655, 0.033515892922878265, 0.033784449100494385, 0.003608732484281063, -0.01620740443468094, -0.01140695158392191, 0.01902725175023079, -0.01650281809270382, -0.006311085540801287, -0.0010440147016197443, -0.02838645689189434, -0.026318568736314774, -0.002118241973221302, 0.016287971287965775, -0.022854186594486237, -0.023230165243148804, 0.016959363594651222, -0.012434180825948715, 0.026251429691910744, -0.017953023314476013, -0.012514748610556126, 0.004810524173080921, 0.0005073206266388297, -0.002227343153208494, -0.022424494847655296, 0.004102205391973257, 0.0034643830731511116, 0.007136897649616003, 0.012111913412809372, -0.0009483413305133581, 0.03107202611863613, 0.009164501912891865, 0.0009088970255106688, 0.018047019839286804, -0.007600158452987671, -0.02194109372794628, 0.005508772097527981, 0.023928413167595863, 0.004706458654254675, -0.00754644675180316, 0.030830323696136475, -0.03193140774965286, -0.032656509429216385, -0.024143259972333908, 0.010151448659598827, -0.0037228690925985575, -0.04525182768702507, -0.008506537415087223, 0.03808135911822319, 0.010480429977178574, -0.02795676700770855, 0.0046896738931536674, -0.17058730125427246, 0.008291692472994328, 0.019604649394750595, 0.007895571179687977, -0.009285352192819118, 0.03163599595427513, 0.012252905406057835, 0.002049424219876528, -0.01779188960790634, -0.012011203914880753, 0.013152570463716984, -0.0013696398818865418, -0.01117196399718523, -0.013273421674966812, 0.008002993650734425, -0.004975015297532082, 0.0011170285288244486, 0.028628157451748848, 0.03327419236302376, -0.007955996319651604, 0.01873183809220791, -0.006942193955183029, 0.012293188832700253, -0.01909439079463482, 0.018100731074810028, 0.00976204127073288, -0.019201813265681267, 0.030239500105381012, 0.006888482719659805, -0.028037333860993385, -0.017120497301220894, -0.012884014286100864, 0.02211565524339676, 0.006472219713032246, -0.005025369580835104, 0.0010188374435529113, 0.007103328127413988, 0.007962710224092007, -0.020370036363601685, 0.008224552497267723, 0.01600598730146885, 0.00678105978295207, 0.017644183710217476, -0.006082812324166298, 0.001995712984353304, 0.01796645112335682, 0.02606344036757946, -0.012528176419436932, 0.00891608651727438, 0.0031337225809693336, 0.038967594504356384, -0.018114158883690834, -0.00933234952390194, -0.022021660581231117, 0.019980628043413162, 0.0050085848197340965, 0.013454697094857693, 0.026519987732172012, 0.0009021831210702658, -0.02038346417248249, -0.01564343459904194, -0.015227172523736954, -0.014394646510481834, -0.004605749621987343, -0.0031202947720885277, -0.03187769651412964, -0.028628157451748848, 0.023686712607741356, -0.011709078215062618, 0.0035986616276204586, 0.018409570679068565, -0.0027879555709660053, 0.01630139909684658, 0.009077221155166626, 0.01399181131273508, 0.02022232860326767, -0.030400633811950684, 0.003293178044259548, 0.02755393087863922, -0.0010935298632830381, 0.01567029021680355, 0.006163379177451134, 0.009292066097259521, 0.009204785339534283, -0.031018314883112907, -0.007841859012842178, 0.010802698321640491, 0.014340934343636036, -0.0035550210159271955, 0.007277890108525753, 0.013830676674842834, -0.013454697094857693, 0.04302280396223068, -0.008472967892885208, 0.015992559492588043, 0.011621796526014805, 0.019000396132469177, 0.0006814629305154085, 0.008540106937289238, -0.016919080168008804, 0.003254573093727231, 0.03340847045183182, -0.0320119746029377, 0.007371885236352682, 0.031985118985176086, 0.021202562376856804, 0.030669189989566803, -0.0053107114508748055, 0.02506978064775467, 0.0020511026959866285, -0.043049659579992294, 0.020678875967860222, 0.024908646941184998, 0.008177555166184902, -0.021833671256899834, 0.03679228574037552, 0.008956369943916798, -0.008936228230595589, 0.0015148284146562219, -0.0030380492098629475, 0.05886765569448471, -0.03609403967857361, -0.02261248603463173, 0.00678105978295207, -0.016261115670204163, -0.007029475178569555, -0.09211499243974686, -0.020034339278936386, 0.04286167025566101, 0.005928392056375742, -0.004750099033117294, 0.0038202209398150444, -0.0005354351596906781, 0.02098771557211876, 0.007170467171818018, 0.009634476155042648, -0.021175706759095192, 0.00349795282818377, -0.006166736129671335, -0.01088997907936573, 0.013548691757023335, -0.011534515768289566, 0.004129061475396156, -0.03233424201607704, -0.021994804963469505, 0.019430086016654968, 0.006536001805216074, -0.0030229429248720407, 0.030588623136281967, 0.008378973230719566, -0.01896011270582676, -0.019671788439154625, -0.034509554505348206, 0.018610987812280655, 0.006895196624100208, 0.005438275635242462, 0.03287135437130928, -0.017281632870435715, 0.03461697697639465, -0.019806066527962685, -0.007707580924034119, -0.006321156397461891, -0.007264462299644947, -0.02502949722111225, 0.03722197562456131, -0.009748612530529499, -0.0007297192933037877, 0.016556529328227043, -0.005837754346430302, -0.035180944949388504, -0.013152570463716984, -0.0001459228660678491, 0.005260356701910496, 0.024452099576592445, 0.0032780717592686415, -0.005679977126419544, -0.023216737434267998, -0.029970942065119743, -0.016180548816919327, -0.03289820998907089, 0.02629171311855316, 0.002435474656522274, 0.006442007143050432, 0.012796732597053051, -0.011460662819445133, 0.006881768815219402, -0.017953023314476013, -0.001462795538827777, -0.008728097192943096, 0.013803821057081223, 0.004800453316420317, 0.01729506067931652, -0.007606872357428074, 0.010567711666226387, -0.002678854390978813, 0.009137646295130253, -0.016220832243561745, 0.008788522332906723, -0.015294311568140984, 0.002907127607613802, -0.02439838834106922, -0.004451329354196787, -0.0029692314565181732, -0.017241349443793297, 0.013461410999298096, 0.017389055341482162, -0.019148102030158043, -0.01250132080167532, -0.005854539107531309, -0.022021660581231117, -0.012669168412685394, 0.00035709666553884745, 0.01391124352812767, -0.004165987949818373, 0.02978295274078846, -0.05389935523271561, 0.014945187605917454, 0.029460683465003967, 0.026439420878887177, 0.0006848199409432709, -0.007392026949673891, 0.005948533769696951, -0.014864620752632618, -0.009446486830711365, 0.004938088823109865, 0.003551664063706994, -0.002354907803237438, -0.015791142359375954, -0.05827683210372925, -0.0005438275984488428, 0.011675508692860603, 0.013461410999298096, 0.0023028748109936714, -0.050354406237602234, -0.004649390000849962, -0.00418277271091938, 0.003242823760956526, 0.007573302835226059, -0.029272694140672684, 0.011742647737264633, -0.01936294697225094, -0.005374493543058634, -0.02835960127413273, -0.023028748109936714, -0.0038000792264938354, 0.013951526954770088, 0.014904904179275036, -0.0009886248735710979, -0.0017070143949240446, 0.01673109084367752, 0.021054856479167938, 0.027245091274380684, -0.010567711666226387, 0.025956017896533012, -0.028332745656371117, 0.03241480886936188, -0.013750109821557999, -0.00906379334628582, 0.021565113216638565, -0.008936228230595589, 0.005847825203090906, 0.007566588930785656, 0.0002310008421773091, -0.03655058518052101, -0.015133177861571312, 0.018610987812280655, 0.018020164221525192, 0.005854539107531309, -0.005646407604217529, -0.009795610792934895, 0.018141014501452446, -0.026157435029745102, -0.032253675162792206, -0.01447521336376667, -0.014139517210423946, -0.025942590087652206, 0.014851192943751812, 0.004964944440871477, 0.03934357687830925, -0.0021283128298819065, -0.03536893427371979, -0.029863519594073296, -0.012716165743768215, -0.012655740603804588, -0.013018292374908924, 0.028869859874248505, 0.008090274408459663, 0.001925216754898429, 0.046003784984350204, 0.00959419272840023, 0.012306616641581059, 0.0007880464545451105, 0.04466100037097931, -0.004065278917551041, -0.05124064162373543, -0.010299154557287693, 0.01270273793488741, -0.026439420878887177, -0.010420004837214947, -0.012313330546021461, 0.031018314883112907, 0.016086554154753685, 0.022397639229893684, -0.008526679128408432, 0.0022877685260027647, -0.029460683465003967, -0.009117504581809044, 0.036335740238428116, 0.013394271954894066, -0.015267455950379372, -0.022021660581231117, 0.007459165994077921, 0.026909394189715385, 0.006774345878511667, -0.03872589394450188, 0.011648652143776417, 0.023095887154340744, 0.009023509919643402, -0.022666197270154953, -0.003106866730377078, -0.015052610076963902, 0.0020678876899182796, -0.0052637141197919846, 0.017657611519098282, -0.001052407082170248, 0.0017707966035231948, 0.02410297468304634, 0.021591968834400177, 0.008989939466118813, 0.0022407709620893, -0.005706832744181156, 0.004699744749814272, 0.005834396928548813, 0.0024304392281919718, -0.02407611906528473, -0.02098771557211876, 0.02464008890092373, 0.021793385967612267, 0.01180307287722826, -0.025714317336678505, -0.00408542063087225, 0.01226633321493864, -0.017603900283575058, 0.009164501912891865, -0.0021484545432031155, -0.014716913923621178, -0.03356960415840149, 0.0034140287898480892, 0.008640816435217857, 0.02619771845638752, 0.005223430227488279, -0.019846349954605103, 0.030454345047473907, -0.0014804195379838347, 0.003241145284846425, -0.02135026827454567, 0.007714294828474522, -0.012440895661711693, -0.004847450647503138, -0.016381965950131416, 0.007002619560807943, -0.0043875472620129585, -0.008526679128408432, -0.01070870365947485, 0.0011480804532766342, 0.0208534374833107, -0.011279386468231678, 0.08255437016487122, 0.03402614966034889, -0.01650281809270382, 0.010802698321640491, -0.0058041843585669994, 0.024049263447523117, 0.007868715561926365, 0.017577044665813446, -0.007700867019593716, -0.026372279971837997, 0.015455445274710655, -0.018570704385638237, -0.014179800637066364, 0.015227172523736954, -0.011017544195055962, -0.0020041053649038076, -0.015119750052690506, -9.834844968281686e-05, -0.016341682523489, 0.003197504673153162, 0.012064916081726551, 0.010399863123893738, 0.0005748794646933675, -0.009030223824083805, -0.020141761749982834, -0.00720403715968132, 0.02835960127413273, 0.02629171311855316, 0.0081708412617445, -0.014152945019304752, 0.028171611949801445, -0.0057639009319245815, -0.011709078215062618, -0.007855287753045559, -0.007606872357428074, 0.00503879738971591, -0.013293563388288021, -0.03558377921581268, 8.387155685340986e-05, 0.015750858932733536, 0.01614026539027691, 0.01656995713710785, -0.02484150603413582, -0.016341682523489, 0.02200823277235031, 0.01412608940154314, -0.0050220126286149025, -0.017120497301220894, 0.0008161609875969589], "5cb45dc8-b174-4848-a875-d6a8775981e2": [-0.019762519747018814, 0.002766344463452697, -0.001362756360322237, -0.031032055616378784, 0.016877083107829094, 0.01830619014799595, -0.01727178879082203, -0.016917914152145386, 0.002140259137377143, -0.0298343263566494, 0.01102454587817192, 0.012610174715518951, 0.012753086164593697, -0.007955366745591164, -0.014359130524098873, 0.014440794475376606, 0.021082742139697075, 0.00538297276943922, 0.0032120898831635714, 0.0033788192085921764, -0.020565541461110115, -0.009506969712674618, -0.014005256816744804, 0.009486553259193897, -0.02703055366873741, 0.0013899775221943855, 0.012936828657984734, -0.008452151902019978, -0.019708076491951942, 0.02094663679599762, 0.02196742780506611, -0.025996152311563492, -0.02041582576930523, -0.00023860996589064598, -0.0005593085661530495, 0.022879336029291153, 0.009384474717080593, 0.005471441429108381, 0.017761768773198128, -0.009010184556245804, 0.011262730695307255, 0.024567043408751488, -5.1730723498621956e-05, -0.009261979721486568, -0.01833341084420681, 0.025615055114030838, 0.004665016196668148, -0.007594686932861805, -0.02042943611741066, 0.00497125368565321, -0.011841178871691227, -0.006226826924830675, -0.02332848310470581, 0.006730417255312204, 0.011439668014645576, 0.006359529681503773, 0.005018890369683504, 0.00753343990072608, 0.013562913984060287, -0.0005269835237413645, -0.0035897826310247183, -0.0023869501892477274, -0.010657060891389847, -0.007608297746628523, -0.016863472759723663, -0.03280142694711685, -0.01699957810342312, 0.002524757059291005, -0.009357253089547157, 0.0008459807722829282, 0.05000516399741173, 0.03040597029030323, 0.012542122043669224, -0.02937156707048416, -0.0022644554264843464, -0.012998076155781746, -0.027683859691023827, -0.037102360278367996, -0.004113788716495037, -0.002919462975114584, 0.024444548413157463, -0.016890693455934525, -0.019708076491951942, 0.007349697407335043, 0.032365888357162476, 0.02119162678718567, 0.007383723743259907, 0.007764819078147411, -0.0010573696345090866, -0.022198807448148727, 0.016033228486776352, 0.015815459191799164, 0.03163091838359833, 0.025342844426631927, 0.014372740872204304, 0.014291077852249146, 0.006488829851150513, -0.0002922014973592013, -0.0029211645014584064, -0.010391655378043652, -0.013222649693489075, -0.006043084431439638, -0.007628713734447956, -0.014808278530836105, -0.0004725412873085588, -0.028963251039385796, 0.022688787430524826, -0.01216102670878172, 0.000215429492527619, 0.026105035096406937, -0.011358004063367844, 0.029289904981851578, 0.005869549699127674, -0.014046087861061096, 0.0028514103032648563, 0.00394025444984436, 0.02568310871720314, -0.02833716571331024, -0.005862744525074959, -0.029671000316739082, 0.005536091513931751, 0.008826442062854767, 0.05316280946135521, -0.010915661230683327, -0.0008642699685879052, 0.0016034930013120174, 0.008227577432990074, -0.020089171826839447, 0.011106208898127079, 0.0009527385118417442, 0.02328765206038952, 0.0027221101336181164, 0.021123575046658516, 0.016305439174175262, -0.030215421691536903, 0.007669545244425535, -0.011147040873765945, 0.025465339422225952, -0.0020398811902850866, -0.03247477486729622, 0.01178673654794693, 0.02697611041367054, 0.009445722214877605, -0.010303186252713203, -0.003957267384976149, 0.04995071887969971, -0.0038994227070361376, 0.019463086500763893, 0.010520955547690392, -0.007873703725636005, 0.00013142687384970486, -0.0036680432967841625, -0.03348195552825928, -0.010976908728480339, 0.003742901375517249, 0.015216595493257046, 0.01649598777294159, 0.03375416621565819, -0.020279720425605774, 0.014209414832293987, -0.006437790580093861, 0.029262684285640717, -0.0037531093694269657, -0.015788238495588303, 0.0028480077162384987, 0.032120898365974426, 0.007689961232244968, -0.03410803899168968, -0.03269254043698311, -0.01830619014799595, 0.007023043930530548, 0.034679681062698364, -0.017693715170025826, 0.020075561478734016, 0.0025877058506011963, 0.009561412036418915, -0.002315494930371642, 0.01702679879963398, -0.013903177343308926, -0.030324306339025497, 0.026350025087594986, -0.015502416528761387, -0.01034401822835207, 0.015910733491182327, -0.01912282407283783, -0.012998076155781746, 0.027316374704241753, 0.028119396418333054, 0.009023794904351234, -0.0032665322069078684, 0.013222649693489075, -0.0037463039625436068, -0.00932322721928358, 0.0010999025544151664, -0.6267386078834534, -0.003957267384976149, 0.019027549773454666, -0.015379922464489937, -0.004181841854006052, 0.02150467038154602, 0.008302436210215092, -0.0033141691237688065, -0.005883160512894392, 0.027860796079039574, 0.011058572679758072, -0.012548927217721939, -0.008030224591493607, -0.006189398001879454, -0.016890693455934525, -0.027956070378422737, -0.0017157800029963255, -0.014195804484188557, -0.016863472759723663, -0.004106983542442322, -0.031848687678575516, 0.01416858285665512, 0.016917914152145386, 0.0001521616941317916, -0.008220772258937359, -0.01493077352643013, 0.021096352487802505, 0.0054238042794167995, -0.01335875503718853, 0.04477871209383011, -0.04183883219957352, 0.010480123572051525, 0.02306988276541233, -0.006638546008616686, 0.04028723016381264, -0.02879992499947548, -0.016659313812851906, 0.028663819655776024, 0.008962547406554222, 0.027588585391640663, -0.017707325518131256, -0.0034077416639775038, 0.02439010702073574, 0.02330126240849495, -0.021123575046658516, -0.010854413732886314, 0.0225662924349308, -0.0053591541945934296, 0.00029730546521022916, -0.012739474885165691, 0.011997700668871403, -0.010452902875840664, -0.014195804484188557, 0.002468613674864173, 0.0021674800664186478, -0.002347819972783327, 0.018714506179094315, -0.007798845414072275, 0.0010982012609019876, -0.007417750079184771, 0.006499038077890873, 0.013828319497406483, -0.004613976459950209, -0.04306378215551376, -0.04428873211145401, 0.017639273777604103, -0.040232788771390915, -0.010323602706193924, -0.007336086593568325, -0.01386234536767006, 0.02149106003344059, -0.014386352151632309, 0.009207537397742271, 9.123321797233075e-05, 0.013324729166924953, 0.03138592839241028, 0.03832731023430824, -0.0018306190613657236, 0.006774651352316141, 0.022960998117923737, 0.00022521207574754953, 0.007513023912906647, -0.014018867164850235, -0.022171586751937866, 0.035196881741285324, 0.0019037757301703095, -0.004961045458912849, -0.019816961139440536, 0.003383923089131713, -0.002485626842826605, 0.007758013904094696, 0.024009011685848236, -0.0117731261998415, -0.03383582830429077, 0.013147791847586632, 0.06211855262517929, 0.00019947963301092386, 0.006172384601086378, 0.009527385234832764, -0.019068380817770958, -0.023791242390871048, -0.01838785409927368, 0.023791242390871048, 0.003470690455287695, 0.02780635468661785, 0.021014690399169922, -0.02513868734240532, 0.003448573173955083, 0.00825479906052351, -0.0056824046187102795, -0.023382926359772682, -0.013889566995203495, -0.019993899390101433, -0.01482188981026411, 0.01965363509953022, -0.021327732130885124, 0.0007843079511076212, 0.01089524570852518, 0.0051243724301457405, -0.004015112295746803, -0.032093677669763565, -0.030814286321401596, 0.023355703800916672, 0.01439996249973774, 0.013236260041594505, 0.00394025444984436, 0.0023427160922437906, -0.004961045458912849, -0.007798845414072275, -0.0035557562950998545, -0.009486553259193897, -0.0009340240503661335, -0.0030419579707086086, -0.009806402027606964, 0.04496925696730614, -0.0004444695368874818, 0.025791993364691734, -0.007826066575944424, 0.00647862209007144, -0.0540066659450531, 0.0007600641692988575, -0.00010308928904123604, 0.025097854435443878, -0.010793166235089302, 0.01625099778175354, -0.032120898365974426, -0.0017021694220602512, -0.002614927012473345, 0.021055521443486214, -0.008561036549508572, -0.024716759100556374, -0.009207537397742271, -0.00012313295155763626, 0.009370864368975163, -0.008302436210215092, -0.005212840624153614, 0.005406791344285011, -0.027956070378422737, -0.0030742830131202936, -0.027711080387234688, -0.009404890239238739, -0.0026353427674621344, -0.008057446219027042, -0.005440817680209875, -0.01939503476023674, -0.014018867164850235, -0.021572722122073174, 0.018142864108085632, -0.013161402195692062, -0.012759891338646412, -0.01415497250854969, -0.019068380817770958, -0.004556131549179554, 0.00945252738893032, 0.008697141893208027, 0.014331909827888012, -0.018238138407468796, -0.01441357284784317, -0.02072886750102043, -0.0025383676402270794, 0.012685033492743969, 0.0133451446890831, -0.008751584216952324, -0.015012437477707863, 0.04717416688799858, -0.006213216111063957, 0.025996152311563492, 0.018768949434161186, -0.03816398233175278, 0.010173886083066463, -0.010541371069848537, 0.016182944178581238, -0.015897123143076897, -0.017380673438310623, -0.024226779118180275, -0.012964049354195595, -0.0111266253516078, 0.0009238161146640778, 0.005144787952303886, 0.023641526699066162, 0.02151828072965145, 0.01599239744246006, -0.001271735760383308, -0.0006592610152438283, 0.00890129990875721, -0.018741728737950325, 0.01244004350155592, -0.015257427468895912, 0.006628338247537613, -0.0007149792509153485, -0.0086290892213583, -0.006594311911612749, 0.006237034685909748, -0.018768949434161186, -0.006669169757515192, 0.028772704303264618, 0.009241564199328423, 0.012889191508293152, -0.0061587742529809475, -0.010636645369231701, 0.020361384376883507, 0.02727554365992546, 0.005161801353096962, -0.014522457495331764, 0.005828718189150095, 0.014617730863392353, 0.004743276629596949, 0.026526963338255882, 0.011630215682089329, -0.02909935638308525, -0.011358004063367844, 0.023723188787698746, -0.01456328947097063, 0.00758788175880909, 0.041022200137376785, 0.004991669207811356, 0.02331487275660038, 0.0009671997395344079, 0.03065096028149128, 0.005481649190187454, 0.009622659534215927, -0.012930022552609444, 0.03220256417989731, -0.025846434757113457, 0.026526963338255882, -0.008186746388673782, 0.019231708720326424, -0.005223048850893974, -0.03037874773144722, 0.007737597916275263, -0.014944384805858135, 0.0015422455035150051, -0.008336462080478668, -0.003189972834661603, 0.03320974484086037, -0.0193542018532753, 0.027928849682211876, 0.005917186848819256, -0.0008451301255263388, 0.02117801643908024, 0.007506218738853931, 0.0065875062718987465, 0.005461233202368021, 0.00035387431853450835, 0.021667996421456337, -0.02852771431207657, -0.004736471455544233, -0.023001831024885178, -0.014263857156038284, -0.012249495834112167, 0.022920167073607445, -0.007826066575944424, 0.00595121318474412, -0.021327732130885124, 0.004079762380570173, -0.005335335619747639, -0.004294128622859716, 0.00045680408948101103, 0.0003119793254882097, 0.021559111773967743, -0.015447975136339664, -0.030705401673913002, 0.028228281065821648, 0.010629840195178986, 0.0006690436275675893, 0.0015567067312076688, -0.022579902783036232, -0.00041299514123238623, 0.009540995582938194, 0.0064718169160187244, 0.00444384478032589, -0.010636645369231701, -0.010833998210728168, 0.0013270286144688725, 0.012800722382962704, -3.477070276858285e-05, 0.03432580828666687, -0.018714506179094315, -0.01506687980145216, 0.0020007509738206863, 0.029262684285640717, 0.02380485273897648, -0.016128502786159515, -0.028418829664587975, 0.01600600779056549, 0.0023869501892477274, -0.0288543663918972, -0.012038531713187695, -0.001587330480106175, -0.024294832721352577, 0.009037405252456665, -0.0013117168564349413, -0.015053268522024155, -0.026363635435700417, -0.009615854360163212, 0.0014563289005309343, -0.0071931760758161545, -0.008969352580606937, 0.0043894024565815926, 0.023668747395277023, -0.004719458520412445, -0.014985215850174427, 0.011623410508036613, 0.022348523139953613, 0.06538508087396622, -0.00343326129950583, 0.0037531093694269657, 0.016291828826069832, -0.016604872420430183, -0.010248744860291481, -0.02617308869957924, -0.01913643442094326, 0.04347210004925728, 0.018238138407468796, -0.02381846308708191, 0.009364058263599873, 0.017720935866236687, -0.0031151147559285164, 0.00996972806751728, 0.0015907330671325326, -0.003518327372148633, -0.013317923992872238, -0.014359130524098873, 0.018469516187906265, -0.0053693619556725025, -0.0030742830131202936, 0.0367484875023365, 0.014127751812338829, 0.034216925501823425, 0.026554184034466743, 0.016686534509062767, 0.01439996249973774, 0.006924367509782314, -0.02833716571331024, -0.021872155368328094, 0.0015388429164886475, 0.0063527245074510574, 0.014481625519692898, -0.036312948912382126, 0.026050593703985214, 0.001671545673161745, -0.013930398039519787, -0.017462335526943207, 0.007703571580350399, -0.010030975565314293, 0.030024874955415726, -0.01934059150516987, -0.013004881329834461, 0.023464588448405266, -0.017911484465003014, -0.01626460812985897, 0.02649974264204502, -0.006056694779545069, -0.008601867593824863, 0.02406345307826996, 0.02123245783150196, -0.00708429142832756, 0.015829069539904594, 0.018551180139183998, -0.016604872420430183, -0.0032257004640996456, -0.020347772166132927, -0.025805603712797165, -0.03013375960290432, -0.02964377962052822, -0.01468578353524208, -0.02512507699429989, -0.03329140692949295, -0.02074247971177101, -0.052019525319337845, -0.02172243781387806, -0.0006558584282174706, -0.008880884386599064, -0.004266907460987568, -0.015202985145151615, -0.028745481744408607, -0.02439010702073574, 0.019558360800147057, 0.017462335526943207, 0.02643168903887272, 0.002701694378629327, -0.0002728489926084876, 0.0040355282835662365, 0.015475195832550526, 0.0020790116395801306, -0.012344769202172756, 0.009003379382193089, -0.017761768773198128, 0.014876331202685833, -0.017394283786416054, -0.01217463705688715, -0.0019412047695368528, 0.005083540454506874, 0.023437367752194405, -0.010697892867028713, -0.02384568378329277, 0.016128502786159515, 0.0031219199299812317, 0.02074247971177101, 0.013011686503887177, 0.014018867164850235, -0.012685033492743969, 0.01886422373354435, -0.02961655706167221, 0.021314121782779694, -0.02493452839553356, -0.014345520175993443, -0.01706762984395027, 0.012317548505961895, 0.02596892975270748, -0.013705824501812458, -0.01045970804989338, -0.0162782184779644, -0.02200826071202755, 0.009255174547433853, 0.001345743192359805, -0.015447975136339664, -0.020347772166132927, -0.005859341938048601, -0.012208663858473301, 0.008003003895282745, 0.024498991668224335, -0.004654808435589075, -0.01048692874610424, 0.011208288371562958, -0.01679541915655136, 0.023791242390871048, 0.007444971241056919, -0.003599990624934435, 0.021395785734057426, 0.007941756397485733, -0.013290702365338802, -0.03726568818092346, -0.006032876670360565, 0.018142864108085632, -0.00023329333635047078, -0.028609376400709152, -0.015379922464489937, -0.007744403090327978, -0.006134955678135157, -0.01126953586935997, -5.6249853514600545e-05, -0.0027289153076708317, 0.0006048188079148531, -0.041566621512174606, 0.007485802751034498, 0.011582578532397747, -0.0023716383147984743, 0.006958393845707178, -0.028473271057009697, -0.029752662405371666, -0.006873327773064375, 0.011922841891646385, 0.03065096028149128, -0.014291077852249146, -0.007764819078147411, -0.048317454755306244, -0.033100858330726624, -0.0253972876816988, -0.014889942482113838, 0.0048317452892661095, 0.012950439006090164, 0.03979725018143654, 0.034734126180410385, 0.011616604402661324, 0.027928849682211876, 0.028473271057009697, 0.007635518908500671, -0.01322945486754179, -0.0010828893864527345, -0.013712629675865173, -0.024417327716946602, 0.0032580255065113306, -0.014590510167181492, -0.022729618474841118, -0.005917186848819256, -0.009051015600562096, 0.004845356103032827, -0.009983338415622711, -0.005872952751815319, 0.012249495834112167, -0.011691463179886341, -0.02281128242611885, -0.04894353821873665, 0.010759140364825726, 0.02958933636546135, 0.004733068868517876, -0.00022499941405840218, -0.02964377962052822, -0.0031236212234944105, 0.018251748755574226, 0.0032086872961372137, 0.04162106290459633, 0.002579199383035302, 0.02230769209563732, 0.005702820606529713, 0.0041546206921339035, 0.02909935638308525, 0.0012598265893757343, -0.0162782184779644, -0.014223025180399418, -0.03696625679731369, -0.010936077684164047, 0.008071056567132473, 0.016441544517874718, 0.02019805647432804, -0.010296381078660488, -0.006465011276304722, 0.008894494734704494, 0.011827568523585796, -0.018183695152401924, -0.024199558421969414, 0.008615478873252869, -0.026526963338255882, -0.010793166235089302, -0.039443373680114746, -0.011004130356013775, 0.009772375226020813, -0.003317571710795164, -0.0025196531787514687, -0.010105833411216736, 0.013256676495075226, -0.02511146478354931, -0.023519031703472137, 0.006560285110026598, -0.013780682347714901, 0.013923592865467072, 0.012038531713187695, 0.011950063519179821, 0.010187497362494469, 0.015638522803783417, -0.022852113470435143, -0.008288824930787086, 0.0034043388441205025, -0.0037531093694269657, -0.006172384601086378, 0.04039611294865608, -0.023668747395277023, -0.009820012375712395, -0.001714929356239736, 0.0005329381092451513, 0.0036884592846035957, -0.03326418623328209, 0.028936030343174934, 0.01324987132102251, 0.007043459918349981, -0.03644905239343643, -0.027928849682211876, -0.004209062550216913, 0.00016928122204262763, -0.007172760087996721, 0.007540245074778795, 0.006798469927161932, 0.008547425270080566, 0.005396583117544651, 0.02703055366873741, -0.021409396082162857, 0.022688787430524826, -0.001066726865246892, 0.012426432222127914, 0.005753860343247652, -0.016101282089948654, 0.007574271410703659, -0.014576899819076061, 0.004505092278122902, 0.011739099398255348, -0.021654386073350906, 0.005246867425739765, 0.014876331202685833, 0.011344393715262413, -0.00641397200524807, -0.0010463111102581024, -0.018551180139183998, 0.03067818097770214, -0.006311892997473478, -0.00771718192845583, -0.0022950791753828526, -0.02230769209563732, 0.02411789633333683, -0.019041160121560097, -0.00811188854277134, 0.00012111262913094833, -0.008969352580606937, 0.006179189775139093, -0.004236283712089062, -0.008431736379861832, -0.007873703725636005, 0.003200180595740676, 0.004610573872923851, -0.022103533148765564, -0.017979538068175316, -0.009745154529809952, 0.017870653420686722, -0.02439010702073574, -0.010180692188441753, -0.009513774886727333, -0.022947387769818306, 0.0010871427366510034, 0.004773900378495455, -0.008574646897614002, 0.003300558542832732, 0.021695217117667198, -0.022348523139953613, 0.023723188787698746, 0.008057446219027042, 0.029208241030573845, -0.02855493500828743, 0.02493452839553356, -0.004450649954378605, 0.007499413099139929, 0.016427934169769287, -0.0034723917488008738, -0.03571408614516258, -0.016101282089948654, 0.016945134848356247, -0.0011866699205711484, 0.014454404823482037, 0.0008455554489046335, 0.01909560151398182, 0.016046838834881783, -0.008486177772283554, -0.024703148752450943, -0.010105833411216736, 0.006869925186038017, -0.008043834939599037, 0.006376543082296848, 0.0167681984603405, -0.002204909222200513, 0.008247993886470795, 0.00014269811799749732, 0.012419627048075199, -0.005202632863074541, -0.026595015078783035, -0.01964002475142479, -0.020252499729394913, -0.014604120515286922, 0.0038926175329834223, 0.024281222373247147, -0.019789740443229675, -0.04461538419127464, -0.02754775434732437, 0.014849110506474972, -0.0039810859598219395, 0.00432815495878458, 0.029671000316739082, -0.009078237228095531, -0.03141314908862114, 0.01061622891575098, -0.0011739099863916636, -0.05392500013113022, -0.024294832721352577, -0.02042943611741066, -0.03560519963502884, -0.010786361061036587, -0.0012887490447610617, 0.026867225766181946, 0.014740225858986378, -0.01915004476904869, -0.0325564369559288, -0.01626460812985897, -0.01908199116587639, -0.013188623823225498, -0.01803397946059704, 0.026091424748301506, 0.021858543157577515, 0.03955226019024849, -0.0006596863968297839, 0.02360069379210472, -0.003729290794581175, 0.02754775434732437, -0.03217533975839615, -0.021681606769561768, -0.010262355208396912, -0.02728915400803089, 0.03092317096889019, -0.04295489564538002, -0.034216925501823425, -0.002276364481076598, 0.004746679682284594, -0.01574740745127201, 0.001282794401049614, 0.013719434849917889, 0.010235133580863476, 0.006829093676060438, -0.009881259873509407, -0.007254423573613167, 0.01992584578692913, -0.00016226328443735838, 0.00904421042650938, -0.024022622033953667, 0.013263481669127941, 0.006675974931567907, -0.005274088121950626, -0.018483128398656845, 0.007356502581387758, 0.01706762984395027, -0.019558360800147057, -0.0018867625622078776, -0.01439996249973774, 0.0066419485956430435, -0.015502416528761387, -0.011895621195435524, -0.005944408010691404, -0.006138358265161514, 0.012644201517105103, 0.03508799895644188, 0.004049138631671667, -0.0056177545338869095, -0.007628713734447956, 0.008908105082809925, -0.0022559487260878086, -0.010786361061036587, 0.029725441709160805, -0.03977002948522568, -0.025220349431037903, -0.012392406351864338, 0.02330126240849495, -0.0022321303840726614, -0.02068803645670414, -0.022688787430524826, -0.011221898719668388, -0.025043413043022156, -0.013025296851992607, 0.004083164967596531, -0.006958393845707178, 0.008166329935193062, -0.006570493336766958, 0.01350847166031599, -0.014985215850174427, -0.013168207369744778, 0.008452151902019978, -0.02173605002462864, -0.020048340782523155, -0.004151218105107546, 0.011113014072179794, -0.029507674276828766, -0.0068903411738574505, 0.024975359439849854, -0.007907729595899582, 0.008996574208140373, 0.20633594691753387, 0.005287698935717344, 0.003268233500421047, 0.042328812181949615, 0.013869150541722775, -0.018442295491695404, 0.015488806180655956, 0.00766274007037282, 0.0067610410042107105, 0.033400289714336395, 0.008288824930787086, -0.008574646897614002, -0.02331487275660038, -0.006260853260755539, 0.00786689855158329, -0.014699394814670086, -0.03187590837478638, -0.019612804055213928, -0.009799595922231674, 0.002150466898456216, 0.012875581160187721, 0.0032818440813571215, -0.017666494473814964, -0.004801121540367603, 0.03301919624209404, 0.03478856757283211, -0.013848735019564629, 0.0015771224861964583, 0.019476696848869324, 0.01230393722653389, -0.023655137047171593, -0.009200732223689556, 0.017666494473814964, -0.006131553091108799, -0.007104707416146994, 0.0012802424607798457, 0.010520955547690392, -0.032365888357162476, -0.002118141856044531, 0.0222532507032156, -0.007227202411741018, -0.02091941609978676, -0.005573520436882973, -0.016713755205273628, 0.02617308869957924, -0.021654386073350906, 0.006271061021834612, -0.008635894395411015, 0.00875838939100504, 0.04251936078071594, -0.004382597282528877, 0.014086919836699963, 0.0065772985108196735, 0.010010560043156147, -0.011684658005833626, -0.011684658005833626, -0.014059698209166527, 0.003188271541148424, -0.017394283786416054, 0.02671751007437706, -0.009336837567389011, 0.023410147055983543, -0.008703947067260742, 0.017897874116897583, -0.03244755417108536, 0.009255174547433853, -0.012671422213315964, 0.0162782184779644, 0.014059698209166527, -0.002187896054238081, -0.007295255083590746, -0.007023043930530548, -0.03271976485848427, -0.0010794867994263768, -0.008948937058448792, -0.014590510167181492, 0.0041648284532129765, 0.03487022966146469, 0.04265546426177025, 0.02517951838672161, 0.010936077684164047, 0.012964049354195595, -0.01258295401930809, -0.013120570220053196, 0.008316046558320522, -0.00168430560734123, 0.033890269696712494, -0.02174966037273407, 0.007737597916275263, -0.028963251039385796, -0.014345520175993443, 0.001438465085811913, -0.016958745196461678, 0.011392030864953995, -0.005202632863074541, -0.009622659534215927, 0.008962547406554222, 0.02777913399040699, 0.0011585981119424105, -0.008159524761140347, -0.05131177604198456, 0.044125404208898544, 0.019517529755830765, 0.031086497008800507, -0.022062702104449272, -0.0028412023093551397, -0.0046480027958750725, 0.01782982051372528, -0.0006418225239031017, 0.009602243080735207, -0.02251185104250908, -0.034734126180410385, 0.01857840083539486, 0.008846857585012913, 0.024254001677036285, 0.036830149590969086, 0.03606795892119408, -0.0010718308622017503, -0.013855540193617344, 2.57590309047373e-05, 0.019177265465259552, -0.01284155435860157, -0.003142335917800665, 0.011705073527991772, -0.02618669904768467, -0.019435865804553032, -0.009779180400073528, 0.014372740872204304, -0.015788238495588303, -0.018918665125966072, 0.0002641297469381243, -0.004396207630634308, 0.020048340782523155, -0.007465386763215065, -0.0023903530091047287, 0.004372389521449804, 0.005291101522743702, -0.014223025180399418, -0.01856479048728943, 0.003092997707426548, 0.002565588802099228, 0.005444220267236233, 0.016958745196461678, -0.01193645317107439, 0.0191092137247324, -0.0009910182561725378, 0.006795067340135574, 0.02388651669025421, 0.0007940905634313822, -0.013283897191286087, 0.0013006582157686353, 0.021926596760749817, -0.0029483854304999113, 0.005614351946860552, 0.03614962100982666, -0.020565541461110115, -0.02806495502591133, -0.02511146478354931, 0.021436616778373718, -0.014971605502068996, -0.03767400234937668, -0.0036408223677426577, 0.03593185171484947, 0.011174261569976807, -0.02493452839553356, -0.006063500419259071, -0.17323508858680725, 0.004385999869555235, 0.017394283786416054, 0.01232435368001461, -0.006846107076853514, 0.02519312873482704, 0.007696766406297684, 0.007635518908500671, -0.013937204144895077, -0.01310015469789505, 0.0063425167463719845, -0.004566339775919914, -0.023178767412900925, -0.015148542821407318, 0.0046514058485627174, -0.004566339775919914, -0.01139883603900671, 0.021082742139697075, 0.04878021404147148, -0.009609048254787922, 0.007288449909538031, -0.016727367416024208, 0.010119444690644741, -0.0075470502488315105, 0.00745858158916235, 0.012092974036931992, -0.024485379457473755, 0.03173980489373207, -0.0033141691237688065, -0.03198479488492012, -0.020347772166132927, -0.01574740745127201, 0.01804758980870247, 0.013726240023970604, 0.0031134134624153376, 0.00824118871241808, 0.008023419417440891, 0.005879757925868034, -0.015393532812595367, 0.018796170130372047, 0.024675928056240082, 0.013773877173662186, 0.012188248336315155, -0.007635518908500671, 0.018523959442973137, 0.027561364695429802, 0.014100530184805393, -0.011637020856142044, 0.006482024677097797, -0.007016238756477833, 0.03280142694711685, -0.021382175385951996, -0.01246726419776678, -0.018537569791078568, 0.013583329506218433, 0.0070094335824251175, 0.007302060257643461, 0.03179424628615379, 0.005787886679172516, -0.02222602814435959, -0.00354214571416378, -0.000801321177277714, 0.0017115267692133784, -0.010670671239495277, -0.014250246807932854, -0.039470598101615906, -0.021613555029034615, 0.026880837976932526, -0.004042333457618952, 0.008343267254531384, 0.016985967755317688, -0.0034026375506073236, 0.010772750712931156, 0.0048215375281870365, 0.013835124671459198, 0.0028820340521633625, -0.032338667660951614, -0.004600366111844778, 0.03282864764332771, 0.009343642741441727, 0.025070633739233017, 0.01086121890693903, 0.011092598550021648, -0.0012666318798437715, -0.024471769109368324, -0.0008957443642430007, 0.009901675395667553, 0.012079363688826561, -0.01456328947097063, 0.012746280059218407, 0.020007509738206863, -0.015829069539904594, 0.030215421691536903, -0.013127376325428486, 0.014481625519692898, 0.013154597021639347, 0.029181020334362984, -0.007315671071410179, 0.008812831714749336, -0.018442295491695404, 0.006982212420552969, 0.03299197554588318, -0.03383582830429077, -0.000562711211387068, 0.029181020334362984, 0.03250199556350708, 0.02413150668144226, -0.013263481669127941, 0.03326418623328209, -0.0008591659716330469, -0.02150467038154602, 0.02146383747458458, 0.02673112042248249, 0.0023869501892477274, -0.018265359103679657, 0.045677006244659424, 0.009636269882321358, -0.006550077348947525, 0.004178438801318407, -0.002186194760724902, 0.04714694619178772, -0.03849063813686371, -0.021545501425862312, 0.004916811361908913, 0.0014716407749801874, -0.010262355208396912, -0.10687004029750824, -0.0175712201744318, 0.038926173001527786, 0.00668618269264698, -0.004317947197705507, 0.008581452071666718, -0.002766344463452697, 0.008697141893208027, -0.0017259878804907203, 0.014372740872204304, -0.027819965034723282, 0.009833622723817825, -0.009534190408885479, -0.0058014970272779465, 0.014644952490925789, 0.003155946498736739, 0.01115384604781866, -0.029725441709160805, -0.009466137737035751, 0.020579151809215546, 0.005172009114176035, -0.017435114830732346, 0.011575773358345032, 0.008540620096027851, -0.03013375960290432, -0.02047026716172695, -0.029453231021761894, 0.014018867164850235, 0.011521331034600735, 0.0049406299367547035, 0.03429858759045601, -0.009717932902276516, 0.03650349751114845, -0.01781621016561985, -0.005056319292634726, -0.024471769109368324, -0.0050801378674805164, -0.025302013382315636, 0.031331486999988556, -0.021395785734057426, -0.004760290030390024, 0.005828718189150095, -0.0012198456097394228, -0.03222978487610817, 0.0004257550463080406, 0.00680187251418829, 0.0006282119429670274, 0.03086872771382332, 0.010976908728480339, -0.009670295752584934, -0.017598440870642662, -0.028446050360798836, -0.0062234243378043175, -0.03171258419752121, 0.03217533975839615, 0.003552353708073497, 0.007472192402929068, 0.01857840083539486, -0.020007509738206863, 0.0012802424607798457, -0.00719998124986887, 0.002654057228937745, -0.02014361508190632, 0.006917562335729599, 0.013787487521767616, 0.0022729618940502405, -0.017407894134521484, 0.02091941609978676, 0.012759891338646412, 0.009928897023200989, -0.008976157754659653, 0.010902050882577896, -0.018918665125966072, -0.003077685832977295, -0.02097385749220848, 0.00043489961535669863, -0.013127376325428486, -0.011167456395924091, 0.00011973031359957531, 0.01376707199960947, -0.019490309059619904, -0.013209039345383644, 0.010010560043156147, -0.018782559782266617, -0.0026319401804357767, -0.003943657036870718, 0.005012085195630789, 0.0012683331733569503, 0.01939503476023674, -0.04262824356555939, 0.021028300747275352, 0.024022622033953667, 0.03386304900050163, 0.008071056567132473, -0.0038177594542503357, 0.010133055038750172, -0.014549678191542625, -0.008778804913163185, 0.009214342571794987, 0.0036204063799232244, -0.003872201545163989, -0.006053292192518711, -0.05994086340069771, -0.0042703100480139256, 0.014182193204760551, 0.0023903530091047287, 0.012004505842924118, -0.048616886138916016, -0.011446473188698292, -0.012072558514773846, 0.0032188952900469303, -0.0011458381777629256, -0.02196742780506611, 0.01389637216925621, -0.01675458811223507, -0.0008225876372307539, -0.01864645443856716, -0.028418829664587975, 0.01808842085301876, -0.0030504646711051464, 0.021613555029034615, 0.001980334986001253, 0.0017982940189540386, 0.004627587273716927, 0.012365184724330902, 0.026023373007774353, -0.004858966451138258, 0.036830149590969086, -0.019286150112748146, 0.036013517528772354, -0.008547425270080566, -0.013175012543797493, 0.0180612001568079, 0.010337213054299355, 0.004773900378495455, 0.00045297612086869776, 0.0037394987884908915, -0.03644905239343643, -0.0030130355153232813, 0.01833341084420681, 0.007145538926124573, 0.014386352151632309, 9.86233280855231e-05, -0.010847608558833599, 0.03010653704404831, -0.023913737386465073, -0.028500493615865707, -0.022443797439336777, -0.012691838666796684, -0.03239310905337334, 0.016359882429242134, -0.006516051013022661, 0.03647627681493759, -0.0010769348591566086, -0.032883089035749435, -0.030514854937791824, -0.004477871116250753, -0.02015722543001175, 0.0067712487652897835, 0.02746609039604664, 0.002153869718313217, -0.007839676924049854, 0.0491885282099247, 0.006846107076853514, 0.010936077684164047, -0.008710752241313457, 0.03936171159148216, -0.003383923089131713, -0.04929741472005844, -0.01543436385691166, 0.02174966037273407, -0.029153799638152122, -0.008050641044974327, -0.012889191508293152, 0.028609376400709152, 0.009629464708268642, 0.005719834007322788, -0.010976908728480339, -0.005185619927942753, -0.019612804055213928, -0.015352700836956501, 0.03399915620684624, 0.0047126528806984425, -0.015910733491182327, -0.012474069371819496, 0.022157976403832436, 0.029289904981851578, 0.006447998341172934, -0.023532642051577568, 0.027357205748558044, 0.01784343086183071, 0.0017914887284860015, -0.030297085642814636, 0.00018342342809773982, -0.005321725271642208, 0.014086919836699963, -6.624509842367843e-05, 0.012263106182217598, -0.012297132052481174, 0.01518937386572361, 0.033917490392923355, 0.023995401337742805, 0.0026030177250504494, 0.010541371069848537, -0.014998826198279858, -0.004824940115213394, 0.014713005162775517, 0.016958745196461678, -0.018006758764386177, -0.023001831024885178, 0.03533298894762993, 0.004127399530261755, -0.0012930022785440087, -0.038354530930519104, -0.016033228486776352, 0.018523959442973137, -0.016169333830475807, -0.001347444485872984, -0.0059103816747665405, -0.010269160382449627, -0.028446050360798836, 0.0004695639945566654, 0.020048340782523155, 0.021572722122073174, 0.013066128827631474, -0.023015441372990608, 0.03247477486729622, -0.0047670952044427395, 0.00424989452585578, -0.0020500891841948032, 0.007506218738853931, -0.015257427468895912, -0.0021113366819918156, 0.003814356867223978, 0.013515276834368706, -0.016128502786159515, -0.00904421042650938, -0.012283521704375744, -0.011133430525660515, 0.035278547555208206, -0.009731543250381947, 0.08563758432865143, 0.02489369735121727, -0.029181020334362984, 0.0011892218608409166, -0.013630966655910015, 0.019966676831245422, 0.004569742362946272, 0.010806777514517307, -0.007227202411741018, -0.014985215850174427, 0.025329234078526497, -0.014549678191542625, -0.011004130356013775, 0.00023159202828537673, -0.016931524500250816, 0.009296005591750145, -0.011963673867285252, 0.007118317764252424, 0.0014605822507292032, 0.010051391087472439, 0.016305439174175262, -0.0015975383576005697, 0.008567841723561287, -0.0076219080947339535, -0.029779884964227676, -0.00766274007037282, 0.01623738743364811, 0.03781010955572128, -0.005076735280454159, -0.02042943611741066, 0.036585159599781036, -0.0063425167463719845, -0.021395785734057426, -0.011337588541209698, -0.019735299050807953, 0.010221523232758045, -0.014018867164850235, -0.03095039166510105, 0.01778898946940899, 0.024512602016329765, 0.00654327217489481, 0.02698972076177597, -0.029779884964227676, -0.018523959442973137, 0.013964424841105938, 0.0019207888981327415, 0.0021198431495577097, -0.02226686105132103, -0.006281269248574972], "764b01ac-db76-4081-af21-2483631ae895": [-0.011817489750683308, -0.012857761234045029, 0.002524393377825618, -0.03204037621617317, 0.012982593849301338, 0.04333079606294632, -0.012767604552209377, -0.017545919865369797, -0.012136505916714668, -0.04480104520916939, 0.0187387652695179, 0.001379227265715599, 0.01502152718603611, -0.016907887533307076, -0.009924194775521755, 0.016436297446489334, 0.023218870162963867, 8.045853610383347e-05, -0.008981014601886272, 9.03736290638335e-05, -0.0247584730386734, -0.019016170874238014, -0.016699831932783127, 0.011921516619622707, -0.031846191734075546, -0.008003158494830132, 0.026478389278054237, -0.012816150672733784, -0.014827342703938484, 0.018086861819028854, 0.011436056345701218, -0.01823943480849266, -0.04197150468826294, 0.009029560722410679, -0.009882583282887936, 0.003883681958541274, 0.009230679832398891, -0.0012110499665141106, 0.015756651759147644, -0.009882583282887936, 0.00782978069037199, 0.024827824905514717, 0.00438994774594903, -0.020971883088350296, -0.012316820211708546, 0.04213795065879822, 0.002911027753725648, -0.015326673164963722, -0.024938786402344704, 0.012490198947489262, -0.008391527459025383, 0.022913724184036255, -0.035563431680202484, -0.006498232018202543, 0.010028221644461155, -0.010465135797858238, -0.0008382858359254897, -0.001189377624541521, 0.02589583583176136, -0.016283724457025528, 0.011186391115188599, 0.0015283329412341118, -0.022580835968255997, -0.02043094113469124, -0.013246129266917706, -0.0310139749199152, -0.012434717267751694, -0.007247228175401688, -0.015923095867037773, -0.016824664548039436, 0.053372886031866074, 0.025507468730211258, 0.015077007934451103, -0.027352217584848404, 0.017171422019600868, -0.011033818125724792, -0.01916874386370182, -0.035064101219177246, -0.0025729392655193806, 0.0094595393165946, 0.016145020723342896, 0.002711642300710082, -0.02201215550303459, 0.009466474875807762, 0.01861393265426159, 0.018544580787420273, 0.011567824520170689, 0.0022937997709959745, 0.002598946215584874, -0.0024533080868422985, 0.010908985510468483, 0.00861345138400793, 0.016283724457025528, 0.013405637815594673, 0.011831359937787056, 0.01176200807094574, 0.018059121444821358, 0.007496893405914307, 0.006720156874507666, -0.0045910668559372425, -0.007323514670133591, -0.006897002924233675, -0.023537887260317802, -0.016311464831233025, -0.014688639901578426, -0.024425584822893143, 0.007961547933518887, -0.001818742137402296, 0.017296254634857178, 0.007559309713542461, -0.03478669375181198, 0.04366368055343628, -0.009175199083983898, -0.019737426191568375, -0.0034485014621168375, -0.0036444193683564663, 0.017337866127490997, -0.00829443521797657, -0.0013081419747322798, -0.024550417438149452, 0.003634016728028655, 0.006359529215842485, 0.047880250960588455, -0.008447008207440376, 0.003247382352128625, -0.00037168050766922534, 0.00701490044593811, -0.024702992290258408, 0.023385314270853996, -0.006657740566879511, 0.007538503967225552, -0.008342981338500977, 0.03980774059891701, -0.008003158494830132, -0.01861393265426159, 0.0009085041820071638, -0.019959351047873497, 0.0018135408172383904, -0.009598243050277233, -0.031152676790952682, 0.013620627112686634, 0.022885983809828758, 0.00285034510307014, -0.018475230783224106, -0.001895028748549521, 0.0507652722299099, -0.00841926783323288, 0.0211521964520216, 0.02645064890384674, -0.0012804013676941395, -0.0011850431328639388, -0.017171422019600868, -0.04419075325131416, -0.0010732138762250543, -0.002021595137193799, 0.032567448914051056, 0.005794314667582512, 0.023510146886110306, -0.012198922224342823, -0.011574759148061275, 0.007157071027904749, 0.035230543464422226, 0.0023839566856622696, 0.004885810427367687, 0.010368043556809425, 0.02923857793211937, 0.016311464831233025, -0.0358130969107151, -0.024522677063941956, -0.018253305926918983, 0.01104075275361538, 0.02822604589164257, -0.020930271595716476, 0.026339685544371605, -0.005190956871956587, 0.016977237537503242, 0.007309644483029842, 0.0004245610034558922, -0.01679692417383194, -0.026769666001200676, 0.03439832478761673, -0.004969032481312752, 0.00025985128013417125, 0.015770522877573967, -0.017462698742747307, -0.011033818125724792, 0.020236756652593613, 0.014480586163699627, 0.022872112691402435, -0.006536375265568495, 0.015077007934451103, 0.0051008001901209354, -0.03051464445888996, -0.007372060790657997, -0.6116244196891785, 0.0006692416500300169, 0.014619288966059685, -0.002038933103904128, 0.009938064962625504, 0.0058671338483691216, 0.023537887260317802, -0.006505167111754417, -0.020042574033141136, 0.030181758105754852, -0.012587291188538074, 0.006408075336366892, -0.014015930704772472, -0.003479709615930915, -0.010673190467059612, -0.012330690398812294, -0.0034901124890893698, -0.022123116999864578, -0.014494456350803375, -0.002129090018570423, -0.022026024758815765, 0.000333970645442605, 0.0011174255050718784, 0.0028590140864253044, -0.0034901124890893698, -0.018516840413212776, 0.02044481225311756, 0.001262196688912809, -0.005430219694972038, 0.0314023420214653, -0.04163862019777298, 0.024813953787088394, 0.026728054508566856, -0.0038386036176234484, 0.04113928973674774, -0.018586192280054092, -0.027268996462225914, 0.04002966359257698, 0.007517698686569929, 0.036534350365400314, -0.010180794633924961, -0.01347498968243599, 0.022539226338267326, 0.015493117272853851, -0.00559666333720088, 0.008960208855569363, 0.017115941271185875, 0.009799362160265446, 0.01704658940434456, -0.04435719549655914, 0.006321385968476534, -0.003204037668183446, -0.00877989549189806, 0.01264970749616623, 0.004917018581181765, -0.004171490669250488, 0.022234078496694565, -0.010714801028370857, -0.0007411937694996595, -0.013162908144295216, 0.006928211078047752, 0.018433619290590286, 0.0033115323167294264, -0.03678401559591293, -0.03800460323691368, 0.022830501198768616, -0.011692657135426998, 0.0028087343089282513, -0.005565455183386803, -0.010437395423650742, 0.010229340754449368, -0.0033392729237675667, -0.018267175182700157, -0.004733237437903881, 0.004102139268070459, 0.01603405922651291, 0.03242874518036842, 0.004435026086866856, -0.0036028085742145777, 0.023329831659793854, 0.006397672463208437, 0.005926082376390696, -0.004722834564745426, -0.020597385242581367, 0.028031861409544945, 0.018821988254785538, -0.03270614892244339, -0.029765648767352104, -0.004736705217510462, -0.008259759284555912, -0.012372300960123539, 0.0350363589823246, -0.006283242721110582, -0.024897174909710884, 0.016602739691734314, 0.03559117019176483, 0.001422571949660778, 0.010250146500766277, -0.001808339380659163, -0.028850208967924118, -0.022400522604584694, -0.02965468540787697, 0.018544580787420273, 0.0038940845988690853, 0.031041715294122696, 0.018669413402676582, -0.03295581415295601, -0.014355752617120743, 0.02111058495938778, -0.014341882430016994, -0.02166539803147316, -0.004837264772504568, -0.029044393450021744, -0.023218870162963867, 0.011436056345701218, -0.01722690276801586, -0.0031190821900963783, 0.017740104347467422, 0.014272531494498253, 0.0003036293783225119, -0.00998661108314991, 0.0023198064882308245, 0.018253305926918983, 0.0016314932145178318, 0.008460878394544125, 0.027282865718007088, 0.010257081128656864, -0.02199828438460827, 0.012913242913782597, -0.0044870395213365555, 0.005208294838666916, -0.004379544872790575, 0.001901963958516717, 0.0017545920563861728, 0.043608199805021286, 0.011137844994664192, 0.023218870162963867, -0.007802039850503206, 0.0031364199239760637, -0.041361212730407715, 0.013842551968991756, -0.022747280076146126, 0.01739334687590599, -0.03592405840754509, 0.0014442442916333675, -0.008176537230610847, 0.002560802735388279, -0.0014702510088682175, 0.014425104483962059, -0.01565956138074398, -0.01019466482102871, -0.011130910366773605, 0.010506746359169483, 0.010860439389944077, -0.013162908144295216, -0.004580663982778788, 0.006359529215842485, -0.026298075914382935, -0.014549937099218369, -0.010076767764985561, -0.008960208855569363, 0.00762866111472249, -0.011644111014902592, -1.945091935340315e-05, -0.008225083351135254, -0.024092698469758034, -0.026298075914382935, 0.018183954060077667, -0.02052803337574005, -0.019792906939983368, -0.007656401488929987, -0.00950115080922842, -0.01561794988811016, 0.006577986292541027, 0.005884471815079451, 0.0038351360708475113, -0.02061125449836254, -0.006796443369239569, -0.02026449702680111, 0.006425413303077221, 0.01904391124844551, 0.02284437231719494, -0.0024654446169734, -0.03550795093178749, 0.030486904084682465, 0.0054267519153654575, 0.03229004144668579, 0.008447008207440376, -0.044912006705999374, 0.014868954196572304, -0.02395399659872055, 0.015673430636525154, -0.012233598157763481, -0.011505408212542534, -0.014855084009468555, -0.0015474045649170876, -0.0017927353037521243, 0.014647029340267181, 0.012365366332232952, 0.021776359528303146, 0.007337384857237339, -0.0001648180914344266, -0.002129090018570423, 0.002510522957891226, 0.011352834291756153, -0.02665870264172554, 0.0019695814698934555, -0.01803138107061386, 0.014203179627656937, -0.008946338668465614, -0.0032595188822597265, -0.004185360856354237, 0.015298932790756226, -0.026755794882774353, -0.0017372542060911655, 0.02129090018570423, 0.014244791120290756, 0.009438734501600266, -0.010062897577881813, -0.015368284657597542, 0.017240773886442184, 0.0185307115316391, 0.02280276082456112, 0.005197892431169748, 0.011415250599384308, 0.003477975958958268, -0.004410753026604652, 0.01068706065416336, 0.0063768671825528145, -0.03276163339614868, -0.004067463334649801, -0.0005036650109104812, -0.027768326923251152, 0.014328012242913246, 0.03847619146108627, 0.013773201033473015, 0.03681175783276558, 0.008648127317428589, 0.035091839730739594, -0.013516600243747234, 0.011082364246249199, -0.0022660591639578342, 0.024994267150759697, -0.02077769860625267, 0.026006799191236496, 0.006428880617022514, 0.016436297446489334, -0.004819926805794239, -0.017823325470089912, 0.0061861504800617695, 0.005503038875758648, -0.012406976893544197, -0.014827342703938484, -0.00012396574311424047, 0.030542384833097458, -0.020958011969923973, 0.015243452042341232, 0.01692175678908825, 0.008384591899812222, 0.020319979637861252, 0.012171181850135326, 0.017129812389612198, 0.010465135797858238, 0.008828441612422466, 0.027698975056409836, -0.017629142850637436, -0.004611872136592865, -0.018600063398480415, -0.01009063795208931, 0.001592483022250235, 0.011075428687036037, -0.016353074461221695, 0.004580663982778788, -0.007857521064579487, 7.547390123363584e-05, -0.004670821130275726, -0.0052637760527431965, -0.006095993798226118, -0.0028590140864253044, 0.024508807808160782, -0.017407217994332314, -0.034925397485494614, 0.028253786265850067, 0.012032479047775269, 0.0033652798738330603, -0.009771620854735374, -0.025909706950187683, 0.0019626463763415813, 0.0185307115316391, 0.02560456097126007, 0.024106569588184357, -0.008939404040575027, -0.009348577819764614, -0.002085745334625244, -0.00041805929504334927, 0.011477666907012463, 0.03875359892845154, -0.010146119631826878, -0.00958437193185091, 0.005624403711408377, 0.013655303046107292, 0.0059538232162594795, -0.02546585723757744, -0.021207677200436592, 0.04419075325131416, -0.00844007357954979, -0.018891338258981705, -0.024550417438149452, -0.026561610400676727, -0.020042574033141136, -0.004878875333815813, -0.016907887533307076, -0.019612593576312065, -0.009591307491064072, 0.00025681714760139585, 0.016436297446489334, -0.002538263564929366, -0.017712363973259926, 0.00924455001950264, 0.016061799600720406, -0.0028832871466875076, -0.029765648767352104, 0.008571840822696686, 0.016894016414880753, 0.06613355875015259, 0.0076355962082743645, 0.0055134412832558155, 0.005010643508285284, -0.027518661692738533, -0.017157552763819695, -0.03143008425831795, -0.03683949634432793, 0.04113928973674774, 0.01620050147175789, -0.01059690397232771, 0.01582600362598896, 0.02263631857931614, -0.0013965651160106063, 0.02302468568086624, 0.0054544927552342415, 0.010264016687870026, -0.03176296874880791, -0.01954324170947075, 0.010264016687870026, 0.006487829610705376, -0.01453606691211462, 0.034758955240249634, 0.030570125207304955, 0.03794912248849869, 0.019834518432617188, 0.01997322216629982, 0.008897792547941208, 0.00683458661660552, -0.023843033239245415, -0.019446151331067085, -0.010284822434186935, 0.009813232347369194, 0.014452844858169556, -0.03417640179395676, 0.027310606092214584, -0.006484361831098795, -0.02331596240401268, -0.021304769441485405, 0.0016072201542556286, 0.012871631421148777, 0.031291380524635315, -0.012857761234045029, -0.01789267733693123, 0.025923578068614006, -0.029377279803156853, -0.010049027390778065, 0.027990251779556274, -0.0015265990514308214, 0.003446767805144191, 0.012594225816428661, 0.01823943480849266, -0.025077490136027336, 0.004171490669250488, 0.015215711668133736, -0.00854410044848919, 0.006345659028738737, -0.017629142850637436, -0.011019947938621044, -0.010978336445987225, -0.03029271960258484, -0.01405060663819313, -0.013988190330564976, -0.022872112691402435, -0.0028850208036601543, -0.03600728139281273, -0.04485652595758438, -0.012351496145129204, -0.023080166429281235, 0.0012075824197381735, -0.0310139749199152, -0.03761623427271843, -0.011859100311994553, 0.007170941215008497, 0.02805960178375244, 0.018253305926918983, -0.0038177981041371822, 0.004469702020287514, 0.012760668992996216, 0.005825522821396589, 0.006310983095318079, -0.003914890345185995, 0.006380334496498108, -0.02238665334880352, -0.015104749239981174, -0.009827102534472942, -0.013038075529038906, 0.004161087796092033, 0.005593195557594299, 0.031679749488830566, -0.014064476825296879, -0.014002060517668724, 0.018086861819028854, 0.015423765406012535, 0.024134309962391853, 0.010992206633090973, 0.005256840959191322, 0.002954372437670827, 0.01696336828172207, -0.046104852110147476, 0.019071653485298157, -0.008772959932684898, -0.017462698742747307, -0.004667353350669146, 0.024175919592380524, 0.029682425782084465, 0.0007528968271799386, -0.012621966190636158, -0.008592646569013596, -0.03481443598866463, 0.014397364109754562, 0.0032699215225875378, -0.017878808081150055, -0.0386703759431839, 0.0027931302320212126, -0.02284437231719494, 0.004826861899346113, 0.01861393265426159, 0.005846328567713499, -0.0031156144104897976, -0.00534353032708168, -0.009993545711040497, 0.018419748172163963, 0.016644351184368134, -0.017864936962723732, 0.02179023064672947, 0.009847908280789852, 0.0035958734806627035, -0.037255607545375824, -0.00901569053530693, 0.007170941215008497, -0.005863666068762541, 0.01565956138074398, -0.00010424391803098843, -0.023593368008732796, -0.005971161182969809, -0.003991176839917898, 0.005017578601837158, -0.0018603530479595065, 0.015354414470493793, -0.047158993780612946, 0.011699591763317585, 0.015354414470493793, -0.016783054918050766, -0.00019537608022801578, -0.029127614572644234, -0.029099874198436737, 0.0017788650002330542, 0.012386171147227287, 0.02873924747109413, -0.004819926805794239, -0.013051945716142654, -0.035091839730739594, -0.032900333404541016, -0.023094037547707558, -0.03839297220110893, -0.0039183576591312885, 0.033371925354003906, 0.04002966359257698, 0.03567439317703247, 0.01381481159478426, 0.02327435091137886, 0.0322345606982708, 0.014328012242913246, 0.002897157333791256, -0.01525732222944498, 0.0010029955301433802, -0.013065815903246403, 0.009875648654997349, -0.020805438980460167, 0.006910873576998711, 0.00958437193185091, -0.00937631819397211, 0.006002369336783886, 0.00703570619225502, 0.004334466531872749, -3.58406214218121e-05, 0.001997322076931596, -0.036756277084350586, -0.05420510470867157, 0.015645690262317657, 0.025549080222845078, 0.016644351184368134, 0.0033687474206089973, -0.038781337440013885, -0.0011182923335582018, 0.01250406913459301, -0.021387992426753044, 0.04252631962299347, 0.00782978069037199, 0.029044393450021744, -0.00654677813872695, 0.01117252092808485, 0.009771620854735374, -0.002307669958099723, -0.019779037684202194, -0.013599822297692299, -0.03162426874041557, 0.00829443521797657, 0.024217531085014343, 0.021387992426753044, 0.009667593985795975, 0.00901569053530693, -0.011179455555975437, 0.015215711668133736, 0.020999623462557793, -0.023815292865037918, -0.008266694843769073, 0.016658222302794456, -0.024647509679198265, 0.0014806537656113505, -0.030653346329927444, -0.025549080222845078, 0.023579496890306473, 0.0005491768824867904, -0.006890067830681801, -0.003377416403964162, 0.02713029272854328, -0.028766987845301628, -0.01714368164539337, 0.005998901557177305, 0.0015864147571846843, 0.03489765524864197, 0.026076151058077812, 0.007337384857237339, 0.014827342703938484, 0.016783054918050766, -0.022206338122487068, -0.015007656998932362, -0.014979916624724865, 0.001728585222736001, -0.0017962029669433832, 0.030625605955719948, -0.005114670377224684, -0.026395168155431747, -0.0020077249500900507, -0.015812134370207787, -0.017698492854833603, -0.04100058600306511, 0.034620251506567, 0.007420606445521116, -0.0006072587566450238, -0.019931610673666, -0.015493117272853851, -0.008405397646129131, 0.00019255866936873645, -0.011186391115188599, 0.02492491528391838, 0.020472552627325058, 0.003521320642903447, -0.01045126561075449, 0.02787928842008114, -0.007538503967225552, 0.02645064890384674, -0.017115941271185875, 0.0067999111488461494, -0.008911662735044956, -0.002997717121616006, -0.003887149505317211, -0.0034433002583682537, -0.005967693403363228, 0.005041851662099361, -0.010388849303126335, 0.010943661443889141, 0.017171422019600868, 0.01883585751056671, -0.01131815928965807, -0.010763347148895264, -0.03176296874880791, 0.028711505234241486, -0.0006428014021366835, -0.01811460219323635, 0.006633467506617308, -0.013468054123222828, 0.006231228820979595, -0.0350363589823246, -0.009951935149729252, 0.003935695625841618, -0.0008205145131796598, -0.0013497528852894902, -0.002368352608755231, -0.003380883950740099, -0.017074329778552055, 0.004240842070430517, 0.0005175353144295514, -0.010354173369705677, -0.007469152566045523, -0.008772959932684898, 0.007198682054877281, -0.023579496890306473, 0.0012006472097709775, -0.012753734365105629, -0.027102552354335785, 0.0019141003722324967, 0.006002369336783886, -0.0066265324130654335, -0.003949565812945366, 0.0283924899995327, -0.01284389104694128, 0.022206338122487068, 0.002380488906055689, 0.017864936962723732, -0.021859580650925636, 0.014494456350803375, -0.009293096140027046, 0.008460878394544125, 0.011741203255951405, 0.02682514674961567, -0.05187489464879036, -0.019959351047873497, 0.002600679872557521, 0.0010342036839574575, 0.01347498968243599, 0.017837196588516235, 0.011963127180933952, 0.03400995954871178, -0.005336595233529806, -0.020722217857837677, -0.021679267287254333, -0.011352834291756153, -0.0046777562238276005, 0.012601161375641823, 0.01525732222944498, -0.012101830914616585, 0.00984097272157669, 0.007483022753149271, 0.005086930003017187, 0.0022573901806026697, -0.022539226338267326, -0.022830501198768616, -0.012212792411446571, 0.002162031829357147, -0.008474748581647873, 0.006761767901480198, 0.004226971883326769, -0.04252631962299347, -0.028031861409544945, 0.021401861682534218, 0.0017043122788891196, -0.0030583995394408703, 0.02661709114909172, -0.005187489558011293, -0.017337866127490997, 0.003037594025954604, -0.014217049814760685, -0.036201465874910355, -0.02589583583176136, -0.015576338395476341, -0.032983556389808655, -0.0039183576591312885, -0.013405637815594673, 0.043303053826093674, -0.00015669096319470555, -0.019238095730543137, -0.03819878771901131, -0.02653387002646923, -0.026797406375408173, -0.01514635980129242, -0.03839297220110893, 0.02649225853383541, 0.0430811308324337, 0.03750527277588844, 0.0037311087362468243, 0.022775020450353622, -0.007836715318262577, 0.026922238990664482, -0.026381297037005424, -0.01070786640048027, 0.0019349058857187629, -0.025979058817029, 0.02670031413435936, -0.03536924719810486, -0.054815396666526794, -0.0005721495836041868, 0.019612593576312065, -0.011123974807560444, 0.01848910003900528, 0.017962029203772545, 0.007115460000932217, 0.0019765167962759733, -0.009036495350301266, -0.010638514533638954, 0.01419624499976635, 0.0049447594210505486, 0.014369623735547066, -0.037810418754816055, -0.0010541422525420785, 0.012101830914616585, 0.006071720737963915, -0.019362928345799446, -0.001242258120328188, 0.03445380553603172, 0.001775397453457117, -0.008044769987463951, -0.019834518432617188, 0.0009847907349467278, -0.01912713423371315, -0.015396025031805038, -0.003403423121199012, 0.020000962540507317, 0.0074899583123624325, 0.03656209260225296, -0.007344319950789213, -0.0061272019520401955, -0.018086861819028854, 0.011560888960957527, 0.0006969821988604963, 0.006151475012302399, 0.017032720148563385, -0.02391238510608673, 0.008252824656665325, -0.008481684140861034, 0.01789267733693123, -0.019071653485298157, -0.023135649040341377, -0.02453654818236828, -0.01405060663819313, -0.018170082941651344, -0.009764686226844788, -0.0015517390565946698, -0.014757991768419743, 0.005783912260085344, -0.014126893132925034, 0.014182374812662601, -0.0021464277524501085, -0.016977237537503242, -0.0012873365776613355, -0.022664058953523636, -0.028933430090546608, -7.856220327084884e-05, 0.015271192416548729, -0.03206811845302582, 0.012871631421148777, 0.019265836104750633, -0.012573420070111752, -0.002040666760876775, 0.22048217058181763, 0.004268582444638014, -0.012795344926416874, 0.03642338886857033, 0.004164555575698614, -0.010929790325462818, 0.015479247085750103, 0.013731589540839195, 0.0044280909933149815, 0.015201840549707413, 0.014064476825296879, 0.01368997897952795, -0.02428688295185566, -0.002191506326198578, 0.012552615255117416, -0.013405637815594673, -0.025035878643393517, -0.01671370305120945, -0.0011703060008585453, 0.0009466474875807762, 0.012434717267751694, 0.004698561504483223, -0.023745940998196602, -0.014591547660529613, 0.03143008425831795, 0.01760140247642994, -0.006893535610288382, 0.015562468208372593, 0.008363786153495312, 0.029932091012597084, -0.02158217504620552, -0.002538263564929366, 0.027740586549043655, -0.01663048192858696, -0.026963848620653152, 0.005607065744698048, 0.00803783442825079, -0.01823943480849266, 0.011221067048609257, 0.012455523014068604, -0.010264016687870026, -0.01704658940434456, 0.0035109177697449923, -0.022442134097218513, 0.025327155366539955, -0.010700930841267109, 0.007989288307726383, -0.011692657135426998, 0.003939162939786911, 0.04133347421884537, -0.0017294521676376462, -0.0036825628485530615, -0.0009310434106737375, 0.009875648654997349, 0.0026856353506445885, -0.02162378653883934, -0.013856422156095505, 0.006595324259251356, -0.025840355083346367, 0.021360250189900398, -0.011137844994664192, 0.010042091831564903, -0.01226827409118414, 0.017615271732211113, -0.023094037547707558, 0.012961789034307003, -0.017254645004868507, 0.019917741417884827, 0.017074329778552055, 0.0012968723895028234, -0.015090879052877426, -0.0235656276345253, -0.025451987981796265, -0.008107186295092106, 0.0073581901378929615, -0.02149895392358303, 0.015090879052877426, 0.02754640206694603, 0.0314023420214653, 0.006716689094901085, 0.014043671078979969, 0.006064785644412041, -0.013662238605320454, -0.007677207235246897, 0.003932227846235037, -0.011394445784389973, 0.031541045755147934, -0.013537405990064144, -0.002290331991389394, -0.016283724457025528, -0.01755979098379612, 0.005679884925484657, -0.0070495763793587685, 0.002487983787432313, -0.023621108382940292, -0.010277886874973774, -9.216159378411248e-05, 0.033788032829761505, -0.0003658289788290858, -0.021942803636193275, -0.024439455941319466, 0.0471312552690506, 0.03093075379729271, 0.013724654912948608, -0.017698492854833603, 0.0013246129965409636, -0.018641673028469086, 0.02525780349969864, -0.0036028085742145777, 0.008564906194806099, -0.01912713423371315, -0.02746317908167839, 0.019141003489494324, 0.01688014715909958, 0.00695941923186183, 0.016047928482294083, 0.020042574033141136, 0.0011052889749407768, -0.018711024895310402, 0.0008989683701656759, 0.02453654818236828, -0.009112782776355743, 0.0016540323849767447, 0.006630000192672014, -0.033399663865566254, -0.00829443521797657, -0.019862258806824684, 0.006737494841217995, -0.03334418311715126, -0.026131631806492805, 0.007129330653697252, 0.01430027186870575, 0.009390188381075859, -0.03409317880868912, -0.003953033592551947, -0.005308854393661022, 0.011387510225176811, -0.006557181011885405, -0.010257081128656864, 0.01155395433306694, 0.0020926804281771183, 0.01415463350713253, 0.01836426742374897, 0.003224843181669712, 0.007538503967225552, -0.01671370305120945, 0.004278985317796469, 0.010680125094950199, -0.013662238605320454, -0.01976516656577587, 0.006300580687820911, 0.018086861819028854, 0.00984097272157669, 0.014730251394212246, 0.030625605955719948, -0.02217859774827957, -0.020417071878910065, -0.0175181794911623, 0.030819790437817574, 0.0005205694469623268, -0.040723178535699844, -0.010270952247083187, 0.03392673656344414, 0.0016548993298783898, -0.022775020450353622, 0.00814879685640335, -0.17731782793998718, 0.009189069271087646, 0.02238665334880352, -0.0045737288892269135, -0.005943420343101025, 0.01246245764195919, 0.00911971740424633, -0.0002490151091478765, -0.029127614572644234, -0.017337866127490997, 0.012927113100886345, 0.0047644455917179585, -0.014924434944987297, -0.01366917323321104, -0.0014277732698246837, 0.01216424722224474, -0.017282385379076004, 0.01883585751056671, 0.03345514461398125, 0.004410753026604652, 0.011158650740981102, -0.006577986292541027, 0.01683853566646576, -0.012427782639861107, 0.010173860006034374, 0.009875648654997349, -0.0046084048226475716, 0.049960795789957047, 0.01798976957798004, -0.027393829077482224, -0.01638081669807434, -0.015132489614188671, 0.0366453118622303, 0.015326673164963722, 0.020597385242581367, 0.007039173506200314, 0.012254403904080391, 0.011026882566511631, -0.017421087250113487, 0.008218148723244667, 0.04205472767353058, 0.009251485578715801, 0.009868713095784187, -0.0073165795765817165, 0.00827362947165966, 0.018378138542175293, 0.01654725894331932, -0.005364335607737303, 0.006279774941504002, -0.0046950941905379295, 0.03029271960258484, -0.02509135939180851, -0.011768943630158901, -0.01453606691211462, 0.008537164889276028, -0.008405397646129131, 0.00936938263475895, 0.01658887043595314, 0.003790057497099042, -0.027019331231713295, -0.012289079837501049, -0.003273389069363475, 0.003280324162915349, 0.0024030283093452454, 0.00831524096429348, -0.04677062854170799, -0.011477666907012463, 0.006293645594269037, -0.003897552378475666, 0.012670512311160564, -0.01828104630112648, 0.007670272141695023, -0.022885983809828758, 0.011304289102554321, 0.03204037621617317, -0.003436364931985736, -0.04607711359858513, -0.0016401620814576745, 0.03553568944334984, -0.004674288909882307, 0.008155732415616512, -0.001695643295533955, -0.0013800940942019224, -0.007247228175401688, -0.03658983111381531, 0.0029925156850367785, -6.339156971080229e-05, 0.00012017308472422883, -0.007420606445521116, 0.028212174773216248, 0.01502152718603611, -0.028877949342131615, 0.023288222029805183, -0.018808117136359215, -0.0028763520531356335, 0.010284822434186935, 0.03287259489297867, -0.0012179850600659847, 0.007545439526438713, -0.02449493668973446, 0.016283724457025528, 0.0129895294085145, -0.03464799001812935, -0.0037449791561812162, 0.026603221893310547, 0.0124832633882761, 0.018183954060077667, -0.018419748172163963, 0.03143008425831795, -0.014230920001864433, -0.022691799327731133, 0.01127654779702425, 0.017115941271185875, -0.002328475471585989, -0.00210481695830822, 0.03803234174847603, 0.003561197780072689, -0.007767363917082548, 0.0023042024113237858, -0.010562228038907051, 0.04036255180835724, -0.023732071742415428, -0.023718200623989105, -0.0027289800345897675, -0.004320596344769001, -0.012171181850135326, -0.10779991745948792, -0.02729673683643341, 0.029349539428949356, -0.003627081634476781, -0.01095753163099289, 0.005516909062862396, -0.010638514533638954, 0.0021707008127123117, 0.003921825438737869, -6.317484803730622e-05, -0.027060940861701965, -0.0019193018088117242, -0.0021897724363952875, -0.008232018910348415, 0.008738284930586815, -0.010652384720742702, 0.003047996899113059, -0.014563807286322117, -0.0025764068122953176, 0.020999623462557793, 0.010964466258883476, -0.015631819143891335, 0.02026449702680111, -0.008488618768751621, -0.006584921386092901, -0.019113263115286827, -0.03004305437207222, 0.009216809645295143, 0.005256840959191322, 0.015437635593116283, 0.03043142333626747, -0.011019947938621044, 0.030542384833097458, -0.022192468866705894, -0.011269613169133663, -0.023815292865037918, -0.0038767468649894, 0.001445111120119691, 0.01654725894331932, -0.012538745068013668, -0.006928211078047752, 0.012594225816428661, -0.01620050147175789, -0.026159372180700302, 0.005933017935603857, -0.012226663529872894, -0.012698252685368061, 0.026422908529639244, 0.005045318976044655, 0.008897792547941208, -0.023177258670330048, -0.016283724457025528, -0.02957146428525448, -0.025285543873906136, 0.02589583583176136, 0.004643080290406942, 0.012857761234045029, 0.030625605955719948, -0.01803138107061386, 0.024092698469758034, -0.015687301754951477, -0.00816960260272026, 0.0013029406545683742, 0.033233221620321274, 0.011477666907012463, -0.0006800778210163116, -0.014771861955523491, 0.018267175182700157, 0.004809523932635784, 0.0005162349552847445, -0.02009805478155613, 0.017837196588516235, -0.025660041719675064, 0.0042373742908239365, -0.03312226012349129, 0.013766265474259853, -0.012094895355403423, -0.022331170737743378, 0.01603405922651291, 0.0073581901378929615, -0.009847908280789852, -0.006154942326247692, 0.006102928891777992, -0.03176296874880791, 0.027324477210640907, -0.01692175678908825, 0.006165345199406147, 0.002900624880567193, 0.015479247085750103, -0.043053388595581055, 0.004258180037140846, 0.006668143440037966, 0.03994644433259964, 0.018059121444821358, 0.0013766265474259853, 0.0038212656509131193, -0.01478573214262724, 0.00803783442825079, 0.01603405922651291, -0.015174100175499916, -0.031541045755147934, 0.012011673301458359, -0.05462121218442917, 0.01679692417383194, 0.009556631557643414, 0.007600920274853706, 0.02208150550723076, -0.05484313890337944, -0.0025295945815742016, -0.01570117101073265, 0.010319497436285019, -0.004095204174518585, -0.008578776381909847, 0.01045126561075449, -0.018461359664797783, -0.0020371992141008377, -0.009868713095784187, -0.03439832478761673, 0.008502489887177944, 0.0034259622916579247, 0.011033818125724792, -0.011859100311994553, -0.0015569403767585754, -0.010583033785223961, 0.022996945306658745, 0.03187393397092819, 0.002082277787849307, 0.024661380797624588, -0.026339685544371605, 0.029266318306326866, -0.010631579905748367, -0.025576820597052574, 0.01933518797159195, -0.006505167111754417, 0.004525183234363794, 0.007399801164865494, 0.001848216517828405, -0.03373255208134651, -0.02201215550303459, 0.013468054123222828, 0.014133828692138195, 0.0075662448070943356, 0.007989288307726383, 0.007344319950789213, 0.032179079949855804, -0.024522677063941956, -0.018988430500030518, -0.012240533716976643, -0.03165200725197792, -0.01988999918103218, 0.013807876966893673, 0.012802280485630035, 0.014702510088682175, -0.006068252958357334, -0.037394311279058456, -0.032817114144563675, -0.005083462223410606, -0.02699158899486065, 0.014106087386608124, 0.02704707160592079, -0.002560802735388279, -0.0043587395921349525, 0.03914196789264679, -0.0028659491799771786, 0.017129812389612198, -0.027518661692738533, 0.02995983324944973, -0.012240533716976643, -0.054898619651794434, -0.004989837761968374, 0.014813472516834736, -0.030958494171500206, -0.004303258378058672, -0.019362928345799446, 0.012802280485630035, 0.004334466531872749, 0.004774848464876413, -0.00521522993221879, -0.006033577490597963, -0.01106849405914545, -0.009001820348203182, 0.022400522604584694, 0.020403200760483742, -0.017157552763819695, -0.014633159153163433, 0.010804957710206509, 0.007621726021170616, 0.011123974807560444, -0.011644111014902592, 0.017615271732211113, 0.022123116999864578, 9.579170728102326e-05, -0.029377279803156853, -0.003814330557361245, 0.009043430909514427, 0.0213325098156929, -0.002085745334625244, 0.013128232210874557, 0.0012084492482244968, 0.01790654845535755, 0.051098160445690155, 0.0225530955940485, -0.000609426002483815, 0.00863425713032484, -0.006931678857654333, 0.003254317445680499, -0.003932227846235037, 0.013877227902412415, -0.01785106770694256, -0.01706046052277088, 0.01764301210641861, 0.011304289102554321, -0.010465135797858238, -0.015465376898646355, -0.0076355962082743645, 0.016907887533307076, -0.005666014738380909, 0.011671851389110088, -0.005586260464042425, 0.012975659221410751, -0.022566966712474823, 0.010735606774687767, 0.018059121444821358, 0.021096715703606606, 0.007441412191838026, -0.02242826297879219, 0.03947485238313675, -0.007018368225544691, 0.010950596071779728, 0.0017407217528671026, 0.009653723798692226, -0.012795344926416874, 0.010770282708108425, -0.0010784153128042817, -0.0027133759576827288, -0.018946820870041847, 0.0029162289574742317, -0.004050125367939472, 0.006276307627558708, 0.03473121300339699, -0.008911662735044956, 0.08566293120384216, 0.029821129515767097, -0.018183954060077667, 0.004702029284089804, -0.005277646239846945, 0.0129895294085145, 0.014647029340267181, 0.013322416692972183, -0.0028260722756385803, -0.013481924310326576, 0.01706046052277088, -0.0045043774880468845, -0.016491778194904327, -0.0025434650015085936, -0.015673430636525154, 0.00914052315056324, 0.0031919011380523443, 0.009688399732112885, 0.009182133711874485, 0.007191746961325407, 0.02620098367333412, 0.0021602981723845005, 0.01131815928965807, 0.002201908966526389, -0.03356610983610153, -0.00017316194134764373, 0.03312226012349129, 0.02424527145922184, -0.013787071220576763, -0.018100732937455177, 0.03320547938346863, -0.029682425782084465, -0.02987661026418209, 0.004057060461491346, -0.02271953970193863, 0.01083269901573658, -0.006411542650312185, -0.028545062988996506, 0.020000962540507317, 0.014057542197406292, 0.003887149505317211, 0.013468054123222828, -0.0187387652695179, -0.02543811686336994, 0.030958494171500206, 0.0011919783428311348, -0.009334706701338291, -0.03043142333626747, -0.009778556413948536], "c69ca865-8ff1-4557-816a-48675d98a997": [-0.008978770114481449, 0.003899215254932642, -0.0027342266403138638, -0.027332032099366188, 0.01863981783390045, 0.02565363049507141, -0.011011957190930843, -0.015746962279081345, -0.00471453694626689, -0.02760494314134121, 0.0027632233686745167, 0.013167953118681908, 0.01569237932562828, -0.008753619156777859, -0.010281920433044434, 0.008071341551840305, 0.01760275661945343, 0.0073481276631355286, 0.0025448945816606283, -0.005990395322442055, -0.022678900510072708, 0.003503494430333376, -0.01531030423939228, 0.0027802803087979555, -0.028628358617424965, -0.007893949747085571, 0.012533435598015785, -0.006099559832364321, -0.01649746671319008, 0.01586977206170559, 0.02138257399201393, -0.015091976150870323, -0.03378637507557869, -5.35427825525403e-05, -0.007955354638397694, 0.006819362286478281, 0.004598549567162991, -0.002033186610788107, 0.004878283478319645, -0.008200974203646183, 0.01194667723029852, 0.025953831151127815, 0.00664879335090518, -0.020304575562477112, -0.012376511469483376, 0.032067038118839264, 0.009470010176301003, -0.013918458484113216, -0.01791660487651825, -0.008132746443152428, 0.0027256980538368225, 0.002493723761290312, -0.02009989134967327, -0.004922631196677685, 0.00994760449975729, 0.0038651013746857643, 0.0038582785055041313, 0.002609710907563567, 0.005331997759640217, -0.007873481139540672, -9.290699381381273e-05, 0.0032612858340144157, -0.0044006891548633575, -0.016579341143369675, -0.007730202749371529, -0.035014476627111435, -0.019922500476241112, 0.0003125683288089931, -0.009770211763679981, -0.01460073608905077, 0.053872622549533844, 0.01711151748895645, 0.013502269051969051, -0.010316033847630024, -0.00490557448938489, -0.004932865500450134, -0.020918624475598335, -0.017302554100751877, -0.0034284438006579876, 0.004380221012979746, 0.024248138070106506, -0.017384428530931473, -0.01955406926572323, 0.010288743302226067, 0.028901269659399986, 0.02947438322007656, 0.014873647131025791, 0.0015632680151611567, -0.006266717799007893, -0.01805306039750576, -6.140496407169849e-05, 0.022692546248435974, 0.0201681200414896, 0.026717983186244965, 0.013536383397877216, 0.00717755826190114, 0.016674859449267387, 0.006232603918761015, -0.0213552825152874, -0.0034881432075053453, -0.008282847702503204, -0.005212599411606789, -0.009531415067613125, -0.012717650271952152, -0.01241062581539154, -0.03228536620736122, 0.015610506758093834, -0.02291087433695793, -0.00043836323311552405, 0.024384593591094017, -0.019949790090322495, 0.03223078325390816, 0.008207797072827816, -0.014423344284296036, 0.002671116031706333, -0.0108686788007617, 0.01749359257519245, -0.02871023304760456, -0.0007014664588496089, -0.030948102474212646, -0.0025039580650627613, 0.007341304793953896, 0.055537380278110504, -0.009695162065327168, 0.007859835401177406, 0.0052637699991464615, 0.006454343907535076, -0.002952555427327752, 0.023238368332386017, -0.0010984665714204311, 0.006846653763204813, 0.005236478988081217, 0.020018018782138824, 0.010459312237799168, -0.030675191432237625, 0.01300420705229044, -0.017316199839115143, 0.01863981783390045, 0.004097075667232275, -0.017070580273866653, 0.014832710847258568, 0.034878019243478775, 0.012942802160978317, -0.004301758948713541, -0.00334657053463161, 0.047895871102809906, 0.0035205513704568148, 0.0156241524964571, 0.0058778198435902596, 0.014123141765594482, -0.0013585848500952125, -0.009367668069899082, -0.03351346403360367, -0.005028384272009134, 0.006809128448367119, 0.008050872944295406, -0.001217865152284503, 0.02881939709186554, -0.013700129464268684, 0.013529560528695583, -0.004397277720272541, 0.030920810997486115, 9.280038648284972e-05, -0.012240055948495865, 0.012581194750964642, 0.04052727669477463, 0.014177723787724972, -0.03072977438569069, -0.021136952564120293, -0.010889147408306599, 0.012185473926365376, 0.02378419041633606, 0.005840294528752565, 0.025162389501929283, 0.0006012569647282362, 0.01951313391327858, 0.006184844300150871, 0.00027141848113387823, -0.021437155082821846, -0.02360679768025875, 0.025298845022916794, -0.004926042631268501, 0.0012562432093545794, 0.01187162660062313, -0.005816414952278137, -0.0156241524964571, 0.031684961169958115, 0.02659517340362072, 0.011987613514065742, -0.007614215835928917, 0.02441188506782055, -0.005505978595465422, -0.01816222444176674, -0.014900937676429749, -0.6152504682540894, -0.00029551138868555427, 0.01690683327615261, -0.00010569969163043424, 0.00016534565656911582, 0.021587256342172623, 0.0017031349707394838, -0.007641506846994162, -0.02503957971930504, 0.030156660825014114, 0.01742536388337612, -0.00446209404617548, -0.01825774274766445, -0.005140960216522217, -0.02104143425822258, -0.02555811032652855, -0.008630809374153614, -0.016934124752879143, -0.016988707706332207, -0.006116616539657116, -0.021505383774638176, 0.004008379764854908, -0.001218718010932207, -0.0032612858340144157, -0.007334481924772263, -0.03165766969323158, 0.01013864204287529, -0.0004439067270141095, -0.000965422485023737, 0.047513797879219055, -0.03569675236940384, -0.0005978455883450806, 0.016047164797782898, -0.016060810536146164, 0.03749796375632286, -0.02499864436686039, -0.017439009621739388, 0.02690901979804039, 0.014505216851830482, 0.021519029513001442, -0.016129037365317345, -0.006826185155659914, 0.020741231739521027, 0.014559799805283546, -0.01192620862275362, -0.008603517897427082, 0.014614381827414036, -0.0011206406634300947, 0.005417282227426767, -0.02909230813384056, 0.00800311379134655, 0.00012110423267586157, -0.016620276495814323, -0.015856126323342323, -0.0014353410806506872, -0.0021014143712818623, 0.02881939709186554, -0.012588017620146275, -0.0018523831386119127, -0.011721525341272354, 0.010827742516994476, 0.01874898187816143, -0.0055571491830050945, -0.04069102182984352, -0.042137451469898224, 0.013597788289189339, -0.027209222316741943, -0.008617163635790348, -0.01081409677863121, -0.0012349220924079418, 0.0197860449552536, -0.00717755826190114, -0.0068364194594323635, 0.0022105786483734846, 0.004267645068466663, 0.020427385345101357, 0.026472361758351326, -0.0026728217490017414, 0.00746411457657814, 0.02517603524029255, -0.0002652353432495147, 0.006307654548436403, 0.002237869892269373, -0.027973372489213943, 0.03397741541266441, 0.010343325324356556, -0.005284238141030073, -0.014300533570349216, -0.001847265986725688, 0.00127159443218261, -0.005048852879554033, 0.021368928253650665, -0.0015402411809191108, -0.03381366655230522, 0.01003629993647337, 0.05818461626768112, -0.0024971351958811283, 0.004373398143798113, -0.009933958761394024, -0.017862021923065186, -0.0225015077739954, -0.021819230169057846, 0.026690691709518433, 0.007013811729848385, 0.021655485033988953, 0.021450800821185112, -0.01746630109846592, 0.0052705928683280945, 0.0064475215040147305, 0.0008912248304113746, -0.010077237151563168, -0.008228265680372715, -0.01621090993285179, -0.017507238313555717, 0.014314179308712482, -0.024630213156342506, -0.013106548227369785, 0.02871023304760456, 0.0025755970273166895, -0.016415594145655632, -0.021027788519859314, -0.02857377752661705, 0.013515914790332317, 0.007389063946902752, 0.007000165991485119, 0.01189209520816803, 0.008644454181194305, -0.023552214726805687, -0.003926506265997887, -0.012205942533910275, -0.006314477417618036, -0.004588315263390541, -0.0034455007407814264, -0.007061570882797241, 0.029119599610567093, 0.009415428154170513, 0.029365219175815582, -0.011537310667335987, 0.005628788378089666, -0.04964250326156616, 0.001588853425346315, 0.008269201964139938, 0.017193390056490898, -0.024016164243221283, 0.012178651057183743, -0.012635776773095131, 0.00239991070702672, -0.007552810478955507, 0.010855033062398434, -0.00916980765759945, -0.007505051326006651, -0.013208890333771706, 0.013468155637383461, 0.01317477598786354, -0.004871460609138012, -0.004847581032663584, 0.0040117911994457245, -0.0267043374478817, -0.002130411099642515, -0.019158348441123962, -0.004090252798050642, 0.0038378103636205196, -0.008835491724312305, 0.0022771006915718317, -0.018394198268651962, -0.028928561136126518, -0.02259702794253826, 0.01317477598786354, -0.022474216297268867, -0.019772399216890335, -0.010015832260251045, 0.00062385736964643, -0.011844335123896599, 0.0209732074290514, 0.007709734607487917, 0.02475302293896675, -0.02291087433695793, -0.011278045363724232, -0.025735503062605858, 0.001092496677301824, 0.014382407069206238, 0.020127182826399803, -0.008965125307440758, -0.02673162892460823, 0.04350200667977333, 0.004315404687076807, 0.029010433703660965, 0.022788064554333687, -0.04284701868891716, 0.00786665827035904, -0.01958136074244976, 0.012642599642276764, -0.016824960708618164, -0.011148412711918354, -0.03236724063754082, -0.014300533570349216, -0.013399927876889706, 0.004550789948552847, 0.016715796664357185, 0.026581527665257454, 0.0225015077739954, 0.001349203521385789, 0.0020673004910349846, -0.005891465116292238, 0.011155235581099987, -0.030374988913536072, 0.015337595716118813, -0.01818951591849327, 0.011278045363724232, -0.006795482710003853, -0.01387069933116436, -0.003348276251927018, 0.01387069933116436, -0.01043202169239521, 0.010820919647812843, 0.03326784446835518, 0.0057686553336679935, 0.035778626799583435, -0.008692214265465736, -0.008467062376439571, 0.021955685690045357, 0.023634089156985283, 0.006659027189016342, -0.0167703777551651, -0.0025414833799004555, 0.005922167561948299, 0.016811314970254898, 0.02603570558130741, 0.0005590410437434912, -0.028082536533474922, -0.01829867996275425, 0.020686650648713112, -0.01760275661945343, 0.01387069933116436, 0.046504028141498566, 0.008016759529709816, 0.017548173666000366, 0.004097075667232275, 0.03034769743680954, 0.011325804516673088, 0.004090252798050642, -0.011121121235191822, 0.03375908359885216, -0.03962666913866997, 0.02767316997051239, -0.005420693662017584, 0.006833008024841547, 0.004226708319038153, -0.026486007496714592, 0.005598085932433605, -0.00805769581347704, -0.019185639917850494, -0.0102750975638628, -0.009606465697288513, 0.026486007496714592, -0.018380552530288696, 0.030702482908964157, -0.008200974203646183, 0.02083675190806389, 0.01919928565621376, 0.014491572044789791, 0.0010148875880986452, 0.00210994272492826, 0.007580101955682039, 0.017343491315841675, -0.014136787503957748, -0.001763687003403902, -0.03700672462582588, -0.009797503240406513, -0.004421157296746969, 0.014327825047075748, -0.025025933980941772, 0.011666943319141865, -0.03433219715952873, 0.001578619354404509, 0.0034540293272584677, -0.00902653019875288, 0.00036501840804703534, -0.00854211300611496, 0.01213771477341652, -0.01569237932562828, -0.027100058272480965, 0.024220846593379974, 0.011960322968661785, 0.013550029136240482, 0.01052071712911129, -0.015269367955625057, -0.0006085061468183994, 0.00572089571505785, 0.018489716574549675, 0.0029372042044997215, -0.004022025037556887, -0.0006485899211838841, -0.0007347274804487824, 0.022214950993657112, 0.0018728513969108462, 0.03370450437068939, -0.007928063161671162, -0.02319743111729622, -0.006294008810073137, 0.020372802391648293, 0.01767098344862461, -0.023838771507143974, -0.03048415295779705, 0.019253868609666824, 0.004441625904291868, -0.016743086278438568, -0.01955406926572323, -0.016852252185344696, -0.01847607083618641, 0.006307654548436403, -0.007600570097565651, -0.006717020645737648, -0.009504123590886593, -0.011817044578492641, -0.004885105881839991, 0.008289670571684837, -0.01057529915124178, -0.0053797573782503605, 0.015364887192845345, -0.0019956612959504128, -0.011953500099480152, 0.00886960607022047, 0.006928526796400547, 0.06331533938646317, 0.0021457623224705458, 0.0038241648580878973, 0.019540423527359962, -0.00873315054923296, -0.01454615406692028, -0.03364992141723633, -0.02846461348235607, 0.05253535881638527, 0.02201026864349842, -0.0106776412576437, 0.005222833249717951, 0.017766503617167473, -0.005751598160713911, 0.01484635565429926, -0.0036740638315677643, -0.0028348625637590885, -0.012867751531302929, -0.014723545871675014, 0.01621090993285179, 0.010759514756500721, -0.0012255407636985183, 0.03231265768408775, 0.009278972633183002, 0.030838938429951668, 0.018421489745378494, 0.016442885622382164, 0.016756732016801834, 0.0017381015932187438, -0.02457563206553459, -0.0023316829465329647, 0.007641506846994162, 0.0020434206817299128, 0.01357731968164444, -0.04857815057039261, 0.04235577955842018, -0.0028536252211779356, -0.01013864204287529, -0.01868075504899025, 0.005986983887851238, -0.021955685690045357, 0.01857159100472927, -0.014205015264451504, -0.01742536388337612, 0.0024851954076439142, -0.020359156653285027, -0.0063315341249108315, 0.04142788425087929, -0.007743848487734795, -0.00045030307956039906, 0.016224555671215057, 0.015815189108252525, -0.009817971847951412, 0.012635776773095131, 0.010582122020423412, -0.029911041259765625, -0.013550029136240482, -0.024589277803897858, -0.03632444888353348, -0.021096017211675644, -0.027332032099366188, -0.011817044578492641, -0.019595006480813026, -0.024889478459954262, -0.012001259252429008, -0.048005037009716034, -0.016361011192202568, -0.0055503263138234615, -0.025094162672758102, -0.0027222868520766497, -0.01969052478671074, -0.03547842428088188, -0.019608652219176292, 0.010104527696967125, 0.014464280568063259, 0.031193722039461136, -0.009852085262537003, 0.009258504025638103, 0.007116153370589018, 0.009238035418093204, 0.004871460609138012, -0.027441196143627167, 0.007853012531995773, -0.025612693279981613, 0.009681516326963902, -0.007777962367981672, -0.023129204288125038, -0.0010157404467463493, 0.004755473230034113, 0.025476237758994102, 0.007784784771502018, -0.014368761330842972, 0.004138012416660786, 0.011312158778309822, 0.020877687260508537, 0.019949790090322495, 0.018380552530288696, -0.008951479569077492, 0.021641839295625687, -0.03569675236940384, 0.028218992054462433, -0.015392177738249302, -0.024834897369146347, -0.019035538658499718, 0.030784355476498604, 0.029665421694517136, -0.012854105792939663, -0.0030020205304026604, -0.015637798234820366, -0.015555924735963345, 0.02086404338479042, -0.0015163614880293608, -0.01825774274766445, -0.017234327271580696, 0.0004937982303090394, -0.015555924735963345, -0.00470430264249444, 0.008378366008400917, 0.010527539998292923, -0.015051038935780525, -0.00620531290769577, -0.013570496812462807, 0.03247640281915665, 0.02884668856859207, 5.73006400372833e-05, 0.009258504025638103, 0.010691286996006966, -0.008146392181515694, -0.03165766969323158, -0.006764780264347792, 0.008951479569077492, 0.0016698739491403103, -0.026581527665257454, -0.01281316950917244, -0.019663235172629356, 0.0023112145718187094, -0.010609413497149944, 0.018066704273223877, -0.010316033847630024, 0.008726327680051327, -0.024589277803897858, 0.007198026403784752, 0.018489716574549675, -0.014341470785439014, -0.0033670389093458652, -0.037034016102552414, -0.02558540180325508, 0.005888053681701422, 0.009183453395962715, 0.03940834105014801, -0.012547081336379051, -0.027345677837729454, -0.04740463197231293, -0.02830086648464203, -0.015351241454482079, -0.017889313399791718, 2.2866952349431813e-05, 0.024152619764208794, 0.04120955243706703, 0.04887835308909416, 0.014259597286581993, 0.023866062983870506, 0.027905145660042763, 0.009831617586314678, -0.006212135776877403, -0.0015931177185848355, -0.01460073608905077, -0.01208313275128603, 0.011414500884711742, -0.00998171791434288, -0.021723711863160133, -0.00406978465616703, 0.0028280396945774555, -0.001859205891378224, -0.0034693805500864983, -0.013372636400163174, 0.00838518887758255, -0.017862021923065186, -0.03171225264668465, -0.03504176810383797, 0.015555924735963345, 0.035642169415950775, 0.012704004533588886, 0.005048852879554033, -0.027236513793468475, 0.01081409677863121, 0.012315106578171253, -0.0001263279264094308, 0.03662465140223503, 0.0049499222077429295, 0.028410030528903008, -0.00017408734129276127, 0.009197099134325981, 0.02252879925072193, 0.0008989004418253899, 0.0022105786483734846, -0.019294803962111473, -0.04129142686724663, -0.006792071275413036, 0.01670215092599392, 0.018148578703403473, 0.01081409677863121, -0.00984526239335537, 0.002556834602728486, 0.00387533544562757, 0.014914583414793015, -0.01529665943235159, -0.013788825832307339, 0.011155235581099987, -0.020754877477884293, -0.01618362031877041, -0.03681568801403046, -0.013509091921150684, 0.011776107363402843, -0.0038241648580878973, -0.001715074758976698, -0.0011718113673850894, 0.019813334569334984, -0.008780909702181816, -0.02236505225300789, 0.008303315378725529, -0.008644454181194305, -0.0006989078829064965, 0.010861855931580067, 0.005833471659570932, 0.033486172556877136, 0.009913490153849125, -0.018080350011587143, -0.012321929447352886, -0.0028519195038825274, 0.005656079389154911, -0.0015521810855716467, 0.049178555607795715, -0.018421489745378494, -0.01319524459540844, -0.011503196321427822, 0.0038787468802183867, 0.0108482101932168, -0.03370450437068939, 0.027577651664614677, 0.026758918538689613, 0.018626172095537186, -0.03253098577260971, -0.02308826707303524, 0.000822144269477576, -0.0034642633982002735, -0.009388136677443981, 0.016292784363031387, 0.0026011825539171696, 0.002633590716868639, -0.015051038935780525, 0.020249992609024048, -0.007402709685266018, 0.004468916915357113, -0.002621650928631425, 0.019840626046061516, -0.004697479773312807, -0.0009952721884474158, 0.0006711903843097389, -0.014232306741178036, 0.010895970277488232, 0.004390454851090908, -0.038589607924222946, -0.010793628171086311, 0.014423344284296036, 0.010616236366331577, 0.0010993194300681353, -0.003888981183990836, -0.025530820712447166, 0.029801875352859497, -0.010363793931901455, -0.023593151941895485, -0.009927135892212391, -0.012076309882104397, 0.014969165436923504, -0.024698441848158836, -0.013536383397877216, -0.014396052807569504, -0.01548769697546959, -0.004499619361013174, 0.003377272980287671, 0.00470430264249444, -0.0026677045971155167, 0.015856126323342323, 0.0059801614843308926, -0.006294008810073137, -0.019704170525074005, -0.0021559966262429953, 0.008944656699895859, -0.016361011192202568, -0.0054241050966084, -0.014805419370532036, -0.0270864125341177, -0.006304243113845587, 0.018039414659142494, -0.00794853176921606, 0.011707879602909088, 0.02544894628226757, -0.016429239884018898, 0.026717983186244965, 0.007805253379046917, 0.031930580735206604, -0.038726065307855606, 0.026581527665257454, -0.001612733118236065, 0.0163883026689291, 0.016784023493528366, 0.0171524528414011, -0.03465969115495682, -0.023879708722233772, 0.009865731000900269, 0.0028911505360156298, 0.007641506846994162, 0.004833935294300318, 0.009285795502364635, 0.012608486227691174, -0.0015487696509808302, -0.013461332768201828, -0.01746630109846592, -0.0028894448187202215, 0.0019359621219336987, 0.010643526911735535, 0.014491572044789791, -0.009340377524495125, 0.018421489745378494, 0.01836690679192543, 0.010097705759108067, 0.00871268194168806, -0.026363197714090347, -0.022092141211032867, -0.027768690139055252, -0.016088100150227547, -0.016893187537789345, 0.014941874891519547, -0.017002351582050323, -0.03337701037526131, -0.03034769743680954, 0.027973372489213943, -0.00046394861419685185, 0.004363163840025663, 0.01823045127093792, 0.001420842600055039, -0.034878019243478775, 0.013509091921150684, -0.0067409006878733635, -0.04767754301428795, -0.0335407555103302, -0.02038644813001156, -0.03823482617735863, -0.011933031491935253, -0.01809399574995041, 0.03179412707686424, 0.006928526796400547, -0.011782930232584476, -0.030647899955511093, -0.01937667839229107, -0.029256055131554604, -0.013099725358188152, -0.021723711863160133, 0.030675191432237625, 0.02468479610979557, 0.028246283531188965, 0.0031111848074942827, 0.02735932357609272, 0.0007671356434002519, 0.036133408546447754, -0.020195411518216133, -0.012608486227691174, -0.008207797072827816, -0.02871023304760456, 0.01317477598786354, -0.04077289626002312, -0.05024290829896927, -0.005396814085543156, 0.013877522200345993, -0.03561487793922424, 0.002190110506489873, 0.023483987897634506, -0.0011735170846804976, 0.004352929536253214, -0.006682907231152058, -0.00606885738670826, 0.01154413353651762, 0.0027256980538368225, -0.004571258556097746, -0.018517008051276207, -0.0021031200885772705, 0.01843513548374176, -0.00890371948480606, -0.02291087433695793, 0.0037695826031267643, 0.017479946836829185, -0.011755639687180519, -0.011046070605516434, -0.024289075285196304, -0.007109330501407385, -0.030675191432237625, -0.024916769936680794, -0.010322856716811657, 0.0011257576989009976, 0.00010015619045589119, 0.030293116346001625, -0.0005859056836925447, 0.005106846336275339, -0.0071297986432909966, 0.018530653789639473, 0.014518862590193748, 2.2174015612108633e-05, 0.010930083692073822, -0.018803564831614494, -0.00890371948480606, -0.008555758744478226, 0.032694730907678604, -0.006232603918761015, -0.020536549389362335, -0.028000663965940475, -0.0036399499513208866, -0.038726065307855606, 0.00011182952584931627, 0.011960322968661785, -0.0012144537176936865, 0.004455271176993847, -0.020645713433623314, 0.00528764957562089, -0.005594674497842789, -0.017138807103037834, 0.0058778198435902596, -0.01373424381017685, -0.020618421956896782, 0.001560709555633366, 0.01885814778506756, -0.03034769743680954, 0.008207797072827816, 0.029010433703660965, -0.011428146623075008, 0.010827742516994476, 0.2201845645904541, -0.003455735044553876, 0.0018847913015633821, 0.03264015167951584, 0.004485973622649908, -0.020645713433623314, -0.0007172441110014915, 0.008412480354309082, 0.009006061591207981, 0.020632067695260048, 0.00911522563546896, 0.001523184240795672, -0.03648819401860237, -0.0010652055498212576, 0.02374325320124626, 0.0009671282023191452, -0.019049184396862984, -0.018899083137512207, -0.017725566402077675, 0.007853012531995773, 0.008562581613659859, 0.0015675323083996773, -0.037061307579278946, -0.017698274925351143, 0.03989958018064499, 0.02985645830631256, -0.009763389825820923, 0.0022463982459157705, 0.008931010961532593, 0.011707879602909088, -0.037961915135383606, -0.0032015866599977016, 0.024248138070106506, -0.014314179308712482, -0.017261618748307228, 0.0031811182852834463, 0.008644454181194305, -0.023620443418622017, -0.003957208711653948, 0.011189348995685577, -0.003269814420491457, -0.013938927091658115, 0.004465505480766296, -0.02881939709186554, 0.027277449145913124, -0.017384428530931473, 0.017384428530931473, -0.0006460314034484327, 0.0013125310651957989, 0.03405928611755371, 0.0009142517228610814, 0.007375418674200773, -0.005117080174386501, 0.013590965420007706, -0.003691120771691203, -0.021273408085107803, -0.0205501951277256, -0.01926751248538494, -0.014505216851830482, 0.01863981783390045, -0.01338628213852644, 0.007375418674200773, -0.018462426960468292, 0.023483987897634506, -0.03326784446835518, 0.019158348441123962, -0.009422251023352146, 0.025817375630140305, 0.01140767801553011, 0.006372470874339342, -0.007191203534603119, -0.011557779274880886, -0.03179412707686424, -0.002831451129168272, 0.0025466002989560366, -0.002423790516331792, 0.004833935294300318, 0.043693043291568756, 0.04388407990336418, 0.021027788519859314, 0.01373424381017685, 0.020686650648713112, -0.023511279374361038, 0.0036501840222626925, 0.011189348995685577, -0.012594840489327908, 0.028546486049890518, -0.024643858894705772, 0.001883085584267974, -0.02333388663828373, -0.011653297580778599, 0.017439009621739388, -0.006082503125071526, 0.007593747228384018, 0.004127778112888336, -0.00854211300611496, 0.004325638525187969, 0.03455052524805069, 0.007163912523537874, -0.00819415133446455, -0.027168285101652145, 0.04426615685224533, 0.016811314970254898, 0.028027955442667007, -0.015992581844329834, -0.0104661351069808, -0.0038582785055041313, 0.013440864160656929, 0.0008106307941488922, 0.0104661351069808, -0.01711151748895645, -0.046476736664772034, 0.01955406926572323, 0.011148412711918354, 0.017452655360102654, 0.03741609305143356, 0.03798920661211014, -0.0025807141792029142, -0.009817971847951412, -0.011994436383247375, 0.024289075285196304, -0.017766503617167473, 0.0035103170666843653, 0.013420396484434605, -0.024589277803897858, -0.028737522661685944, -0.015242076478898525, 0.009640579111874104, -0.018517008051276207, -0.02357950620353222, 0.01909012161195278, 0.007157089654356241, 0.015774253755807877, -0.02909230813384056, -0.003121419111266732, -0.007757493760436773, -0.0041141328401863575, -0.019363032653927803, -0.022023914381861687, 0.011284868232905865, 0.007934886030852795, 0.014245951548218727, 0.012819992378354073, -0.013324877247214317, 0.01823045127093792, -0.0011300218757241964, -0.00020265769853722304, 0.005188719369471073, -0.009367668069899082, -0.013243003748357296, 0.007505051326006651, 0.03618799149990082, -0.003448912175372243, 0.013079257681965828, 0.03725234419107437, -0.012594840489327908, -0.030265824869275093, -0.029174180701375008, 0.021068725734949112, -0.015364887192845345, -0.034250326454639435, -0.002159407828003168, 0.04131871834397316, 0.012785878032445908, -0.028546486049890518, 0.009006061591207981, -0.17346219718456268, 0.011885272338986397, 0.009865731000900269, 0.0028041601181030273, -0.004308581817895174, 0.024971352890133858, 0.025408009067177773, 0.0009040175355039537, -0.023907000198960304, -0.01732984557747841, 0.016265492886304855, -0.007498228456825018, -0.016552049666643143, -0.015132912434637547, 0.0059801614843308926, -0.006263306364417076, -0.00857622642070055, 0.023593151941895485, 0.044184282422065735, -0.004131189547479153, 0.023429404944181442, -0.024984998628497124, 0.008214619942009449, -0.022924520075321198, 0.01773921214044094, 0.025994768366217613, -0.010841387324035168, 0.03468698263168335, -0.017834730446338654, -0.030920810997486115, -0.01784837618470192, -0.02427542954683304, 0.03662465140223503, 0.01672944240272045, 0.0020741233602166176, 0.0001835752627812326, 0.004550789948552847, 0.004540556110441685, -0.02020905539393425, 0.016784023493528366, 0.025858312845230103, 0.02014082856476307, 0.031166430562734604, 0.005355877336114645, 0.00800311379134655, 0.02596747688949108, 0.02641778066754341, -0.00538316834717989, 0.00962011143565178, -0.001613585976883769, 0.042164742946624756, -0.022023914381861687, -0.0010575299384072423, -0.006560096982866526, 0.008030405268073082, 0.0038958038203418255, -0.012895043008029461, 0.004738416522741318, -0.004073196090757847, -0.011373563669621944, -0.0056594908237457275, -0.005308118183165789, -0.0064202300272881985, 0.005407048389315605, 0.0020724176429212093, -0.028382739052176476, -0.03173954412341118, 0.029392510652542114, -0.0016818137373775244, 0.013468155637383461, 0.008603517897427082, -0.01076633669435978, -0.009933958761394024, 0.01357731968164444, 0.029938330873847008, 0.00963375624269247, -0.03976312652230263, 0.001409755670465529, 0.03747067227959633, -0.0024340245872735977, 0.01241062581539154, -0.00786665827035904, -0.003694531973451376, -0.007552810478955507, -0.025230618193745613, -0.012246878817677498, -0.002843390917405486, 0.004223296884447336, -0.00994760449975729, 0.0228835828602314, 0.020918624475598335, -0.021464446559548378, 0.026513298973441124, -0.0038105191197246313, 0.0014293710701167583, 0.007696088869124651, 0.03127559646964073, -0.011080184951424599, 0.009367668069899082, -0.01805306039750576, 0.007566456217318773, 0.02236505225300789, -0.02594018541276455, -0.006897824350744486, 0.023879708722233772, 0.006850064732134342, 0.016606630757451057, -0.011612361297011375, 0.0373615100979805, -0.010732223279774189, -0.021614547818899155, 0.017125163227319717, 0.03097539395093918, -0.002382853766903281, -0.02166912890970707, 0.04249223694205284, 0.011469082906842232, -0.01548769697546959, 0.014245951548218727, -0.00944271869957447, 0.054909683763980865, -0.03173954412341118, -0.016961416229605675, 0.005669725127518177, -0.018871791660785675, -0.022419635206460953, -0.10305117815732956, -0.03023853339254856, 0.035123638808727264, 0.0005262064514681697, 0.0017585699679329991, 0.019158348441123962, 0.007682443596422672, 0.020331867039203644, -0.002585831331089139, 0.012826815247535706, -0.01924022287130356, 0.0012929156655445695, -0.015405823476612568, -0.01529665943235159, 0.003496671561151743, 0.001259654643945396, 0.004973802249878645, -0.04511218145489693, 0.0007291839574463665, 0.018080350011587143, 0.005082966759800911, -0.011175703257322311, 0.015010102652013302, -0.003813930554315448, -0.01645653136074543, -0.02218766137957573, -0.033840958029031754, 0.006369059439748526, 0.010425198823213577, 0.005952870007604361, 0.029801875352859497, -0.006897824350744486, 0.03072977438569069, -0.026199450716376305, -0.002896267455071211, -0.011967144906520844, -0.006160964723676443, -0.025612693279981613, 0.03534196689724922, -0.01902189292013645, -0.014764483086764812, 0.022283179685473442, -0.006314477417618036, -0.025462592020630836, 0.004161891993135214, 0.0012613603612408042, -0.0002778148336801678, 0.035887788981199265, 0.017370782792568207, -0.006908058654516935, -0.029174180701375008, -0.021723711863160133, -0.01317477598786354, -0.02180558443069458, 0.039599377661943436, 0.004349518567323685, 0.00030020205304026604, 0.01816222444176674, -0.02194203995168209, 0.01902189292013645, -0.018735336139798164, 0.0027393437922000885, -0.02419355697929859, 0.015146558173000813, 0.01371377520263195, 0.003708177711814642, 0.0008357897750101984, 0.01627913862466812, 0.00445185974240303, -0.00103109166957438, -0.0042915246449410915, 0.007382241543382406, -0.032339949160814285, 0.0017184861935675144, -0.02115059830248356, -0.0005505125736817718, 0.0037150003481656313, -0.010472957976162434, 0.004155069123953581, 0.025298845022916794, -0.0216964203864336, -0.006914881523698568, -0.0008801378426142037, -0.02443917654454708, 0.011080184951424599, -0.010445666499435902, -0.0024152619298547506, -0.013897990807890892, 0.012035372667014599, -0.03662465140223503, 0.005120491608977318, 0.022310471162199974, 0.027577651664614677, 0.017834730446338654, -0.0006626619142480195, -0.0027222868520766497, -0.006085914094001055, -0.013727420940995216, 0.006072268821299076, 0.004915808793157339, 0.005621965508908033, -0.006007452495396137, -0.05076143890619278, 0.0063178883865475655, 0.01043202169239521, 0.009142517112195492, 0.023170139640569687, -0.039845000952482224, -0.002387970918789506, -0.0008703300845809281, 0.010895970277488232, -0.003882158314809203, -0.014778127893805504, -0.0025875370483845472, -0.009606465697288513, -0.01812128722667694, -0.028382739052176476, -0.01840784400701523, 0.014000331982970238, 0.0002115059905918315, 0.017889313399791718, -0.007102507632225752, -0.007771139498800039, 0.007641506846994162, 0.02846461348235607, 0.03171225264668465, -7.894162263255566e-05, 0.02645871788263321, -0.021860167384147644, 0.021014142781496048, -0.007777962367981672, -0.01503739319741726, 0.003803696483373642, 0.014450634829699993, -0.00354101974517107, 0.019499488174915314, -0.005693604703992605, -0.028519194573163986, -0.0026250621303915977, 0.026690691709518433, 0.0031828240025788546, 0.010309210978448391, -0.0007654299261048436, -0.014750837348401546, 0.027072766795754433, -0.03556029871106148, -0.020754877477884293, -0.02933792769908905, -0.023211076855659485, -0.018462426960468292, 0.019499488174915314, 0.008255556225776672, 0.03160308673977852, 0.004178949166089296, -0.032858479768037796, -0.01818951591849327, 0.0002511633501853794, -0.0274275504052639, 0.01017275545746088, 0.03023853339254856, -0.003912860993295908, -0.001086526783183217, 0.03697943314909935, -0.004554201383143663, 0.003844632999971509, -0.0114417914301157, 0.03979041799902916, -0.005553737748414278, -0.04811420291662216, -0.021205181255936623, 0.014177723787724972, -0.021710066124796867, -0.0041960058733820915, -0.012772232294082642, 0.033213261514902115, 0.0009125460055656731, 0.012956447899341583, -0.009231213480234146, -0.008917365223169327, -0.02090497873723507, -0.01888543739914894, 0.024398239329457283, 0.0263222623616457, -0.01697506196796894, -0.010650349780917168, 0.0175345279276371, 0.025053225457668304, 0.01531030423939228, -0.027755044400691986, 0.023838771507143974, 0.03010207787156105, 0.0160062275826931, -0.01962229795753956, -0.004561024252325296, -0.0022174015175551176, 0.018421489745378494, 0.002991786226630211, 0.02382512576878071, -0.002531249076128006, 0.012199119664728642, 0.03023853339254856, 0.019854271784424782, -0.0007696941611357033, 0.00908111222088337, -0.033622629940509796, -0.0051375487819314, -0.0011368447449058294, 0.01000218652188778, -0.01548769697546959, -0.02405710145831108, 0.029801875352859497, 0.02639048919081688, 0.009197099134325981, -0.03992687165737152, 0.001619555987417698, 0.019485842436552048, -0.012424271553754807, 0.010056768544018269, 0.006696552503854036, 0.005229656118899584, -0.0343049056828022, -0.0029730238020420074, 0.012922333553433418, 0.019840626046061516, 0.01517384871840477, -0.014709900133311749, 0.026963602751493454, -0.007566456217318773, 0.0071229757741093636, -0.013051966205239296, -0.005195542238652706, -0.006512337829917669, -0.002316331723704934, -0.003694531973451376, 0.0051818969659507275, -0.016238201409578323, -0.013072434812784195, -0.004352929536253214, -0.010459312237799168, 0.028218992054462433, -0.012192296795547009, 0.08820482343435287, 0.03048415295779705, -0.015965290367603302, 0.009019707329571247, -0.003813930554315448, 0.016920479014515877, 0.012035372667014599, 0.02513509802520275, -0.012642599642276764, -0.011237108148634434, 0.014300533570349216, -0.007341304793953896, -0.019253868609666824, 0.0012391862692311406, -0.019485842436552048, 0.008507998660206795, -0.005765243899077177, -0.0029610837809741497, 0.002555128885433078, 0.014232306741178036, 0.012144537642598152, 0.006021097768098116, -0.005260358564555645, -0.004857814870774746, -0.029365219175815582, -0.02371596172451973, 0.01878991909325123, 0.035396549850702286, -0.0044143348932266235, -0.02760494314134121, 0.04080018773674965, -0.009401782415807247, -0.029774585738778114, -0.014136787503957748, -0.017643693834543228, 0.00514778308570385, -0.013420396484434605, -0.04350200667977333, 0.007661974988877773, 0.01517384871840477, -0.0021218827459961176, 0.01746630109846592, -0.02596747688949108, -0.018762627616524696, 0.021273408085107803, 0.00479982141405344, 0.006184844300150871, -0.01899460330605507, 0.0015257428167387843], "026e2225-4c31-4004-afd6-8fcc6410d07f": [-0.010185204446315765, -0.009624299593269825, 0.007640613242983818, -0.03567899763584137, 0.008051031269133091, 0.018427763134241104, -0.00500709842890501, -0.02455667033791542, -0.0019597455393522978, -0.02618466131389141, 0.0063306959345936775, 0.01812679134309292, 0.004709545522928238, -0.01522650383412838, -0.004220464266836643, 0.013646394945681095, 0.02053457498550415, 0.0013877255842089653, -0.010616143234074116, -0.006932642310857773, -0.01592421531677246, -0.022463539615273476, -0.01078715082257986, 0.01057510171085596, -0.032641902565956116, 0.0035261737648397684, 0.02764848619699478, -0.010978679172694683, -0.011519062332808971, 0.020055754110217094, 0.014132056385278702, -0.030234118923544884, -0.04457138478755951, -0.0002637790166772902, -0.010622983798384666, 0.012442503124475479, 0.016361992806196213, 0.004138380289077759, 0.008639296516776085, -0.014405668713152409, 0.017675330862402916, 0.01752484403550625, 0.0009431061334908009, -0.0035637954715639353, -0.013454866595566273, 0.04405152052640915, -0.009726904332637787, -0.019467489793896675, -0.01167638972401619, -0.003909230697900057, 0.0014911850448697805, 0.013872125186026096, -0.023421181365847588, 0.00097901769913733, 0.017730053514242172, 0.0039194910787045956, -0.00566718727350235, -0.00198881677351892, 0.014446710236370564, -0.023927364498376846, 0.0016869886312633753, 0.007024986203759909, -0.008960790932178497, -0.012907642871141434, -0.022860277444124222, -0.0342288538813591, -0.005516700446605682, 0.009036034345626831, 0.004186262376606464, -0.005277290008962154, 0.04561110958456993, 0.020219922065734863, 0.005632985848933458, 7.567080319859087e-05, -0.0031379868742078543, -0.01643039658665657, -0.018359361216425896, -0.008564054034650326, 0.003302154131233692, -0.0002894301142077893, 0.009877391159534454, -0.01608838140964508, -0.017264913767576218, 0.010082599706947803, 0.02892078086733818, 0.02892078086733818, 0.001323597738519311, 0.010062078945338726, -0.014132056385278702, -0.013837923295795918, 0.00838620588183403, 0.01592421531677246, 0.015691643580794334, 0.020931312814354897, 0.01565060205757618, 0.008064711466431618, 0.02147853747010231, 0.014911850914359093, -0.026813969016075134, 0.01600629836320877, 0.004849771503359079, 0.005229407921433449, -0.01295552495867014, -0.013885805383324623, 0.0025651119649410248, -0.020302005112171173, -0.0013355682604014874, -0.009070235304534435, 0.00796210765838623, 0.008502490818500519, -0.022860277444124222, 0.03061717562377453, 0.0016998141072690487, -0.006453821435570717, 0.00774321798235178, -0.0037348028272390366, 0.01573268696665764, -0.0235306266695261, -0.012702434323728085, -0.006470922380685806, -0.00462062144652009, 0.004155481234192848, 0.045994166284799576, 0.004712965805083513, 0.012592989020049572, 0.003727962728589773, 0.003724542446434498, -0.006912121549248695, 0.020808188244700432, 0.017415400594472885, 0.009761106222867966, 0.0076611340045928955, 0.019111793488264084, 0.00959009863436222, -0.032888155430555344, -0.002654035808518529, -0.023557987064123154, 0.020657701417803764, 0.015842130407691002, -0.017921581864356995, 0.008611936122179031, 0.024146253243088722, 0.006063924636691809, -0.007195993792265654, -0.013632714748382568, 0.04251929372549057, -0.004935275297611952, 0.013762679882347584, 0.020042074844241142, -0.0035706358030438423, -0.0028079424519091845, -0.015376990661025047, -0.03655455633997917, -0.006918961647897959, 0.0017186249606311321, 0.004617201630026102, 0.015582200139760971, 0.030945509672164917, -0.012346738949418068, -0.003543274477124214, 0.014132056385278702, 0.04645930603146553, -0.0038032059092074633, -0.007230195216834545, 0.015294907614588737, 0.034776076674461365, 0.007455925457179546, -0.021943677216768265, -0.008112593553960323, -0.004989997483789921, 0.003244011430069804, 0.03721122443675995, -0.003608257509768009, 0.022299373522400856, -0.0019922368228435516, 0.01056826114654541, -0.0006233222084119916, 0.007873183116316795, -0.008557213470339775, -0.015185462310910225, 0.03283343091607094, -0.011580625548958778, 0.0021632444113492966, 0.02796313911676407, -0.019782142713665962, -0.015554838813841343, 0.023038124665617943, 0.015527477487921715, 0.022860277444124222, -0.002696787705644965, 0.011129165068268776, 0.001345828757621348, -0.008290441706776619, -0.011778993532061577, -0.6225218772888184, 0.00251209968701005, 0.021765829995274544, -0.00549959996715188, -0.00043200759682804346, 0.02533646486699581, 0.018167832866311073, -0.0008631601231172681, -0.011881598271429539, 0.029303837567567825, 0.009001832455396652, -0.00248131831176579, 0.0033226748928427696, -0.021109160035848618, -0.015937894582748413, -0.02779897302389145, 0.0007195138605311513, -0.015595880337059498, -0.016827134415507317, -0.013714797794818878, -0.020767146721482277, 0.0023154409136623144, -0.002188895596191287, 0.0011004330590367317, -0.009596938267350197, -0.0139063261449337, 0.018181513994932175, -0.0026181242428719997, -0.001971716061234474, 0.05176737904548645, -0.026581399142742157, 0.010876074433326721, 0.014816086739301682, -0.014665599912405014, 0.045036524534225464, -0.01001419685781002, -0.019795823842287064, 0.027251748368144035, 0.021615343168377876, 0.033243849873542786, -0.014610877260565758, -0.011409617960453033, 0.009979994967579842, 0.017141787335276604, 0.0021033918019384146, -0.004634302109479904, 0.019713740795850754, -0.0004574449558276683, -0.005588523577898741, -0.013660076074302197, -0.0036663999781012535, -0.01424150075763464, -0.01883818209171295, -0.012415141798555851, 0.0055611627176404, 0.002228227211162448, 0.023681113496422768, -0.020685061812400818, -0.007223355118185282, -0.018427763134241104, 0.013215456157922745, 0.014747682958841324, -0.000766540935728699, -0.04396943747997284, -0.032559819519519806, 0.012415141798555851, -0.016717689111828804, -0.015240184962749481, -0.005800573155283928, -0.009008673019707203, 0.02318861149251461, 0.004832671023905277, -0.012572468258440495, 0.0014851997839286923, -0.0058518750593066216, 0.025021811947226524, 0.0350770503282547, -0.004028935916721821, 0.0081331143155694, 0.025774244219064713, -0.0028284634463489056, 0.00012857622641604394, -0.025514312088489532, -0.02035672776401043, 0.03390051797032356, 0.026061536744236946, -0.007496966980397701, -0.00945329200476408, 0.004925014916807413, -0.004429093096405268, 0.0018075488042086363, 0.026567718014121056, -0.0033397756051272154, -0.03357218578457832, 0.008618775755167007, 0.05529697239398956, 0.009637980721890926, 0.0059681604616343975, -0.017155468463897705, -0.026321468874812126, -0.03414677083492279, -0.0256784800440073, 0.006505123805254698, 0.006966843735426664, 0.025035491213202477, 0.01985054649412632, -0.02369479276239872, -0.006060504354536533, 0.00248131831176579, -0.0009636270115152001, -0.010841872543096542, -0.015034975484013557, -0.021109160035848618, -0.028264112770557404, -9.405409946339205e-05, -0.02815466746687889, 0.002002497436478734, 0.022381456568837166, 0.007072868291288614, 0.001068796613253653, -0.02968689426779747, -0.014528794214129448, 0.02670452557504177, 0.0035637954715639353, 0.0046924445778131485, 0.013701117597520351, 0.010068919509649277, -0.015595880337059498, 0.0010534059256315231, -0.008652977645397186, -0.0017049444140866399, -0.010506697930395603, -0.0043983119539916515, -0.006693231873214245, 0.03277871012687683, -0.00635463697835803, 0.03105495497584343, -0.003201259532943368, -0.0009020643774420023, -0.04063137248158455, 0.004227304365485907, 0.0048258304595947266, 0.018756099045276642, -0.008365685120224953, -0.002207706216722727, -0.005277290008962154, -0.004223884083330631, -0.007893703877925873, 0.0019939469639211893, -0.01270927395671606, -0.006101546343415976, -0.01514442078769207, 0.006573526654392481, 0.025555355474352837, 0.0019340943545103073, 0.005547482054680586, 0.007722696755081415, -0.031766343861818314, -0.001457838574424386, -0.007141271606087685, -0.0033089942298829556, -0.00035484047839418054, -0.01437830738723278, 0.007736377418041229, -0.016457756981253624, -0.030781343579292297, -0.02131436951458454, 0.010198884643614292, -0.02944064512848854, -0.012285175733268261, -0.01574636623263359, -0.012093647383153439, -0.006747954525053501, 0.016320951282978058, 0.01047933753579855, 0.010800831019878387, -0.01287344191223383, -0.005308071617037058, -0.013933687470853329, -0.01467928010970354, 0.00528755085542798, 0.013509589247405529, -0.006638509687036276, -0.041123874485492706, 0.04317596182227135, -0.005862135905772448, 0.034009963274002075, 0.02428305894136429, -0.028729252517223358, 0.017989985644817352, -0.016717689111828804, 0.008871867321431637, -0.025391187518835068, -0.010732428170740604, -0.014761364087462425, -0.018031027168035507, -0.009521695785224438, 0.005516700446605682, 0.01167638972401619, 0.02164270356297493, 0.018715055659413338, -0.007428564131259918, -0.00637173792347312, -0.003543274477124214, 0.004521437454968691, -0.019864225760102272, 0.017237551510334015, -0.018208874389529228, 0.013092330656945705, -0.00937120895832777, -0.005414096172899008, 0.005444877315312624, 0.005267029628157616, -0.016307272017002106, 0.008187836967408657, 0.03660927712917328, 0.0043333289213478565, 0.016827134415507317, -0.013270178809762001, -0.009412250481545925, 0.019303321838378906, 0.005133643746376038, 0.019440127536654472, -0.0068060969933867455, 0.010793990455567837, 0.012114168144762516, 0.006662450730800629, 0.03154745697975159, 0.01983686536550522, -0.0239547248929739, -0.009959474205970764, 0.01968637853860855, -0.010472496971487999, 0.011033400893211365, 0.0427655465900898, 0.022641386836767197, 0.01608838140964508, -0.009070235304534435, 0.027689527720212936, -0.014309904538094997, 0.0016271360218524933, -0.012155210599303246, 0.01797630451619625, -0.026677163317799568, 0.018414083868265152, 0.007620092481374741, 0.012866601347923279, 0.011026561260223389, -0.02867453172802925, 0.0018212294671684504, -0.006183629855513573, -0.005585103761404753, -0.002633514814078808, -0.0026061537209898233, 0.031793706119060516, -0.013885805383324623, 0.02788105607032776, 0.012770837172865868, 0.0007686785538680851, 0.011929480358958244, 0.01099235936999321, 0.011669549159705639, 0.020944993942975998, -0.0017023792024701834, 0.015390671789646149, -0.016403036192059517, -0.004148641135543585, -0.02197103761136532, 0.003505653003230691, -0.004976317286491394, 0.017593247815966606, -0.028948143124580383, -0.0009473813115619123, -0.03431093692779541, 0.0021564040798693895, 0.004097338765859604, -0.005612464621663094, 0.022053122520446777, -0.016129422932863235, 0.03365426883101463, -0.003700601402670145, -0.01022624596953392, 0.019098112359642982, 0.014446710236370564, 0.004822410177439451, -0.0011081283446401358, -0.014884489588439465, 0.009056555107235909, 0.010089440271258354, 0.021273327991366386, 0.008652977645397186, 0.0034885520581156015, -0.010212565772235394, 0.0034423801116645336, 0.020520895719528198, 0.013995250687003136, 0.04662347212433815, -0.002517229877412319, -0.01796262338757515, -0.00690870126709342, 0.027511680498719215, 0.003611677559092641, -0.024255698546767235, -0.040932346135377884, 0.02867453172802925, -0.0124083012342453, -0.02071242406964302, -0.030918149277567863, -0.003244011430069804, -0.028866060078144073, -0.002669426379725337, -0.004247825127094984, -0.024584032595157623, -0.01077346969395876, -0.008680338971316814, -0.009767945855855942, 0.0007443099748343229, -0.0011705460492521524, 0.02685501053929329, 0.019713740795850754, -0.004179422277957201, -0.01831831969320774, 0.016717689111828804, 0.005321752279996872, 0.07135799527168274, 0.006481182761490345, -0.003922910895198584, 0.004747167229652405, -0.018851863220334053, -0.00850933138281107, -0.031875789165496826, -0.03149273246526718, 0.05149376764893532, 0.015404351986944675, -0.011368575505912304, 0.00022637112124357373, 0.013201775960624218, -0.006272553466260433, 0.0025685320142656565, 0.005010518711060286, -0.008194677531719208, -0.011409617960453033, -0.01915283501148224, 0.011505382135510445, 0.00695316307246685, -0.003751903772354126, 0.031164400279521942, 0.00868717860430479, 0.04167109727859497, 0.01968637853860855, 0.022600345313549042, 0.015089698135852814, 0.001875951886177063, -0.01753852516412735, -0.016102062538266182, 0.010103120468556881, -0.0042786067351698875, 0.007510647643357515, -0.042491935193538666, 0.040084149688482285, -0.009843189269304276, -0.007873183116316795, -0.009213881567120552, 0.011505382135510445, -0.014200459234416485, 0.021587980911135674, -6.546379154315218e-05, -0.008365685120224953, 0.013400144875049591, -0.017059704288840294, -0.003833987284451723, 0.03258718177676201, -0.01933068409562111, -0.001771637238562107, 0.015527477487921715, 0.008543532341718674, -0.025883689522743225, 0.018017346039414406, 0.014624558389186859, -0.024228336289525032, -0.006669290829449892, -0.030945509672164917, -0.033079683780670166, -0.02840091846883297, -0.020384090021252632, -0.004972897004336119, -0.02559639699757099, -0.021505897864699364, -0.010363051667809486, -0.03669136017560959, -0.0209586750715971, -0.005277290008962154, -0.02431042119860649, -0.008495650254189968, -0.02165638469159603, -0.02659508027136326, -0.024570351466536522, 0.01056142058223486, 0.0243925042450428, 0.041096512228250504, 0.0017374358139932156, 0.006888180505484343, -0.011026561260223389, 0.014734002761542797, 0.006334116216748953, -0.019371725618839264, 0.003693761071190238, -0.018427763134241104, -0.011573784984648228, -0.013967889361083508, -0.012572468258440495, -0.010759789496660233, 0.001869111554697156, 0.01960429549217224, -0.014857128262519836, -0.01770269311964512, 0.004217043984681368, 0.001600629766471684, 0.018113110214471817, 0.012018403969705105, 0.003491972340270877, -0.01047933753579855, 0.015691643580794334, -0.039564285427331924, 0.02473451942205429, -0.003943432122468948, -0.027607444673776627, -0.007072868291288614, 0.021423814818263054, 0.02848300151526928, -0.01770269311964512, -0.025281742215156555, -0.01185423694550991, -0.017223872244358063, 0.01600629836320877, -0.01339330431073904, -0.01796262338757515, -0.0235306266695261, -0.003141406923532486, -0.012976045720279217, 0.01044513564556837, 0.014337265864014626, 0.00847512949258089, -0.00453169783577323, 0.007490126881748438, -0.016813453286886215, 0.026567718014121056, 0.010506697930395603, 0.010752948932349682, 0.014186779037117958, 0.017921581864356995, -0.00635463697835803, -0.03983789682388306, -0.008495650254189968, 0.02301076427102089, 0.0025651119649410248, -0.01678609289228916, -0.01907075196504593, -0.014966572634875774, 0.008126274682581425, -0.014775044284760952, 0.015500116162002087, -0.011601146310567856, -0.0017904480919241905, -0.03797733783721924, 0.011922639794647694, 0.02559639699757099, -0.029194394126534462, 0.013352262787520885, -0.03483080118894577, -0.024857643991708755, -0.0024915786925703287, 0.015158100984990597, 0.02593841217458248, -0.02240881696343422, -0.009275444783270359, -0.04057665169239044, -0.02670452557504177, -0.012134688906371593, -0.008317803032696247, 0.019782142713665962, 0.01993262954056263, 0.027826333418488503, 0.051384322345256805, 0.012155210599303246, 0.02773056924343109, 0.03154745697975159, 0.01778477616608143, -0.008160475641489029, -0.015076017938554287, 0.0006399954436346889, -0.014173097908496857, 0.018715055659413338, -0.020944993942975998, 0.0005540641723200679, 0.0037861051969230175, -0.007271237205713987, -0.012209932319819927, 0.000890093797352165, -0.0016852784901857376, 0.01736067794263363, -0.004422252997756004, -0.03904442489147186, -0.050946541130542755, 0.01574636623263359, 0.03836039453744888, 0.006084445398300886, 0.016457756981253624, -0.041889987885951996, 0.011607985943555832, 0.012545106932520866, -0.013844763860106468, 0.03138328716158867, 0.004251245409250259, 0.02318861149251461, -0.008324642665684223, 0.006334116216748953, 0.028004180639982224, -0.01047933753579855, 0.0030764241237193346, -0.029632173478603363, -0.0359526090323925, -0.00746276555582881, 0.012948684394359589, 0.020903952419757843, 0.015842130407691002, 0.0015937895514070988, 0.0021700847428292036, 0.0035911565646529198, 0.012073126621544361, -0.022381456568837166, -0.02379055693745613, 0.01437830738723278, -0.025049172341823578, -0.018961306661367416, -0.03436565771698952, -0.007004465442150831, 0.022203609347343445, -0.00967218168079853, 0.0060878656804561615, 0.0005467963637784123, 0.0213827732950449, -0.008912908844649792, -0.017771095037460327, 0.00528071029111743, -0.00453169783577323, 0.013776361010968685, 0.010205725207924843, 0.032313570380210876, 0.026540357619524002, 0.015773728489875793, -0.005892917048186064, -0.0350496880710125, 0.0022829496301710606, 0.012223613448441029, 0.002457377268001437, 0.0393453948199749, -0.02188895456492901, -0.022367775440216064, -0.023120207712054253, -0.0027788712177425623, -0.003066163742914796, -0.036581914871931076, 0.042491935193538666, 0.01534962933510542, -0.001240659155882895, -0.022449858486652374, -0.02045249193906784, 0.005420936271548271, -0.0009413960506208241, -0.0209586750715971, 0.016799772158265114, 0.007202834356576204, -0.003192709293216467, -0.0038613483775407076, 0.008317803032696247, -0.020753465592861176, 0.015322268009185791, -0.013372783549129963, 0.009145478717982769, -0.015034975484013557, -0.005865555722266436, 0.000308454706100747, -0.03447510302066803, 0.002117072232067585, 0.006628249306231737, -0.020069435238838196, -0.003967373166233301, 0.0209586750715971, 0.015322268009185791, -0.00014749393449164927, -0.00418968265876174, -0.013769520446658134, 0.03387315571308136, -0.0010927376570180058, -0.010212565772235394, 0.008523011580109596, -0.022285692393779755, 0.012367259711027145, -0.02164270356297493, -0.02361270971596241, 0.007319119293242693, -0.013099171221256256, -0.008399886079132557, -0.0010525508550927043, -0.010732428170740604, -0.019782142713665962, 0.013523269444704056, 0.01822255551815033, -0.026827650144696236, -0.021068118512630463, -0.004336749203503132, 0.018113110214471817, -0.022614026442170143, -0.011649028398096561, -0.00571164907887578, -0.005786892492324114, -0.0012834109365940094, 0.014022612012922764, -0.002760060364380479, -0.0016057600732892752, 0.022572984918951988, -0.009118117392063141, 0.025692161172628403, 0.015007615089416504, 0.019467489793896675, -0.03904442489147186, 0.02379055693745613, -0.018441444262862206, 0.014446710236370564, 0.021245967596769333, 0.014145736582577229, -0.029331199824810028, -0.02856508642435074, 0.0021923156455159187, 0.001711784629151225, 0.00014450130402110517, 0.019358044490218163, 0.011580625548958778, 0.022367775440216064, 0.001225268468260765, -0.015760047361254692, -0.03302495926618576, -0.0017818977357819676, -0.01394052803516388, -0.0027412495110183954, 0.02089027129113674, -0.01729227416217327, 0.011710590682923794, 0.010964998044073582, 0.006884760223329067, 0.000717376300599426, -0.0162662286311388, -0.019645337015390396, -0.0316295400261879, -0.012018403969705105, -0.0036527193151414394, 0.018701376393437386, -0.0029721097089350224, -0.02856508642435074, -0.019864225760102272, 0.027320152148604393, -0.0062109907157719135, 0.016320951282978058, 0.029030226171016693, 0.002337672049179673, -0.017812136560678482, 0.010055238381028175, -0.01526754628866911, -0.03406468406319618, -0.03792261332273483, -0.016731370240449905, -0.03644511103630066, -0.007633773144334555, -0.016307272017002106, 0.04686972498893738, 0.010978679172694683, -0.009679022245109081, -0.035979971289634705, -0.00838620588183403, -0.029276477172970772, -0.007278077304363251, -0.01916651614010334, 0.021451175212860107, 0.030918149277567863, 0.02232673391699791, 0.004008414689451456, 0.019727420061826706, -0.000538673484697938, 0.03543274477124214, -0.020671382546424866, -0.023475904017686844, -0.02317493036389351, -0.033490099012851715, 0.028948143124580383, -0.033927880227565765, -0.05004362389445305, 0.0021033918019384146, 0.009726904332637787, -0.018031027168035507, 0.009213881567120552, 0.012722955085337162, 0.005547482054680586, -0.0036219379398971796, 0.0017442760290578008, 0.0029515887144953012, 0.015554838813841343, 0.014857128262519836, -0.0004907913971692324, -0.020425131544470787, -0.0037484834901988506, 0.025309104472398758, -0.014884489588439465, -0.01711442694067955, 0.007414883468300104, 0.021095480769872665, -0.010547740384936333, -0.010711907409131527, -0.0269507747143507, -0.0002445406571496278, -0.018359361216425896, -0.018783459439873695, -0.004959216341376305, -0.0012278335634618998, 0.007230195216834545, 0.03442038223147392, -0.019864225760102272, -0.011826875619590282, -0.007838982157409191, 0.02199839986860752, 0.010684546083211899, 0.000748157617636025, 0.003179028630256653, -0.03141064941883087, -0.01719650998711586, 0.0049284351989626884, 0.01907075196504593, -0.0010850423714146018, -0.01727859303355217, -0.026225704699754715, 0.0016476568998768926, -0.04416096583008766, -0.0061425878666341305, -0.0038989700842648745, -0.001195342163555324, 0.00539357541128993, -0.01351642981171608, 0.01617046445608139, -0.018933946266770363, -0.0031311465427279472, 0.004921594634652138, -0.022272011265158653, -0.017004981637001038, 0.005420936271548271, 0.01857824996113777, -0.040932346135377884, -0.005362793803215027, 0.02600681409239769, -0.01184739638119936, 0.005400415509939194, 0.22567512094974518, 0.00740120280534029, -0.00782530102878809, 0.03414677083492279, -0.002183765172958374, -0.01573268696665764, 0.00620415061712265, 0.014610877260565758, -0.004456454422324896, 0.025391187518835068, 0.013872125186026096, 0.009432771243155003, -0.02320229262113571, -0.004152060952037573, 0.013920007273554802, -0.011731111444532871, -0.025870008394122124, -0.0231065284460783, 0.003844247665256262, 0.004227304365485907, 0.005085761658847332, -0.0023000503424555063, -0.03866136819124222, -0.00209484132938087, 0.027607444673776627, 0.03603469207882881, -0.004292287398129702, 0.010192045010626316, 0.01770269311964512, 0.013400144875049591, -0.018331998959183693, -0.00447013508528471, 0.025021811947226524, -0.000926860433537513, -0.019877906888723373, -0.000261641398537904, 0.00035697806742973626, -0.034776076674461365, 0.0044496143236756325, 0.005318331997841597, -0.0009533665725030005, -0.017346996814012527, 0.01907075196504593, -0.013961048796772957, 0.01240146066993475, -0.002640355145558715, 0.00489423330873251, 5.30657525814604e-05, 0.009644820354878902, 0.03827831149101257, -0.009104437194764614, 0.006176789291203022, 0.007948426529765129, 0.002922517480328679, -0.013064970262348652, -0.015158100984990597, -0.015089698135852814, -0.01329754013568163, -0.02027464471757412, 0.030644536018371582, -0.008919749408960342, 0.008215198293328285, -0.012941844761371613, 0.029194394126534462, -0.027826333418488503, 0.005961319897323847, -0.024419864639639854, 0.030069950968027115, 0.025692161172628403, 0.013119691982865334, -0.021013395860791206, -0.01753852516412735, -0.015185462310910225, -0.0018485906766727567, 0.006737693678587675, -0.013037608936429024, 0.00118166150059551, 0.03816886618733406, 0.04670555889606476, 0.037348028272390366, 0.01934436336159706, 0.0235443077981472, -0.024666115641593933, -0.007756898179650307, 0.009767945855855942, -0.002631804905831814, 0.0393453948199749, -0.02429674006998539, -0.006440140772610903, -0.007797940168529749, -0.015554838813841343, 0.001188501832075417, -0.017223872244358063, 0.0021991559769958258, -0.008543532341718674, -0.004251245409250259, 0.010322010144591331, 0.04002942517399788, 0.005089181941002607, -0.024871325120329857, -0.029221754521131516, 0.041534293442964554, 0.010404094122350216, 0.015609560534358025, -0.015253865160048008, -0.006812937092036009, -0.013112852349877357, 0.022873958572745323, -0.008557213470339775, 0.003358586458489299, -0.012763996608555317, -0.03619885817170143, 0.014542474411427975, 0.0040255156345665455, 0.009610619395971298, 0.02079450711607933, 0.03261454403400421, -0.014002090319991112, -0.02165638469159603, -0.008304121904075146, 0.034174129366874695, -0.011840556748211384, -0.0008516171365045011, -0.006122067105025053, -0.027087582275271416, -0.031027592718601227, -0.013311220332980156, 0.0013526689726859331, -0.025637438520789146, -0.02369479276239872, 0.01394736859947443, -0.013482227921485901, 0.007004465442150831, -0.02002839371562004, -0.006241772323846817, -0.0025514313019812107, -0.006026302929967642, -0.015034975484013557, -0.01565060205757618, 0.005574843380600214, -0.006464081816375256, 0.014775044284760952, 0.013126532547175884, 0.002594183199107647, 0.019125474616885185, -0.004203363321721554, 0.0016365413321182132, 0.002782291267067194, -0.014870808459818363, -0.01727859303355217, 0.0030456427484750748, 0.03277871012687683, -0.008680338971316814, 0.008769262582063675, 0.03291551396250725, 0.0022008661180734634, -0.014077333733439445, -0.01634831354022026, 0.018591931089758873, 0.0010696516837924719, -0.03844247758388519, -0.01359851285815239, 0.028455641120672226, 0.016019979491829872, -0.0111223254352808, -0.01771637238562107, -0.17401719093322754, 0.009330167435109615, 0.013591673225164413, 0.010198884643614292, 0.010390412993729115, 0.018605612218379974, 0.02779897302389145, 0.00489423330873251, -0.018195193260908127, -0.0057287500239908695, -0.003050773171707988, -0.003550114808604121, -0.022559303790330887, -0.011231769807636738, 0.010944477282464504, -0.009508014656603336, -0.01600629836320877, 0.030644536018371582, 0.0342288538813591, -0.0014167968183755875, 0.029413282871246338, -0.020493533462285995, 0.0026352249551564455, -0.021355411037802696, 0.013044448569417, 0.01078715082257986, -0.013311220332980156, 0.035542190074920654, -9.619169577490538e-05, -0.03688288852572441, -0.02164270356297493, -0.002168374601751566, 0.029741616919636726, 0.01659456454217434, 0.009904752485454082, -0.004890813492238522, 0.01108128298074007, 0.011813195422291756, -0.022135205566883087, 0.0023462222889065742, 0.024091530591249466, 0.03045300766825676, 0.019057070836424828, 0.0071823131293058395, 0.02703285962343216, 0.00979530718177557, 0.02112284116446972, -0.0068744998425245285, 0.003724542446434498, -0.0024710576981306076, 0.03502232953906059, -0.02670452557504177, -0.010027877055108547, -0.017237551510334015, 0.007414883468300104, -0.013010247610509396, -0.005267029628157616, 0.019303321838378906, -0.0040802378207445145, -0.01779845729470253, 0.01736067794263363, 0.0016878435853868723, -0.0015219664201140404, 0.004210203420370817, -0.0036287782713770866, -0.0350496880710125, -0.026280425488948822, 0.03037092462182045, -0.007031826768070459, 0.010718747973442078, 0.005482499022036791, 0.0032166503369808197, -0.0041999430395662785, 0.017948942258954048, 0.018345680087804794, 0.0070591880939900875, -0.032313570380210876, 0.007517487742006779, 0.03130120411515236, 0.002893446246162057, 0.02069874294102192, 0.009248083457350731, -0.0009687572601251304, -0.014145736582577229, -0.03573371842503548, -0.02089027129113674, 0.004661663435399532, 0.006638509687036276, -0.018756099045276642, 0.0030712939333170652, 0.02343486249446869, -0.00796210765838623, 0.01318125519901514, -0.006525644566863775, 0.0014911850448697805, 0.01210732851177454, 0.01329754013568163, -0.030507730320096016, 0.0064469813369214535, -0.01660824380815029, 0.006556426174938679, 0.00515758479014039, -0.041041791439056396, 0.005824514199048281, 0.017415400594472885, 0.026909733191132545, 0.030234118923544884, -0.011731111444532871, 0.03291551396250725, 0.0006609438569284976, -0.029987867921590805, 0.02446090616285801, 0.035460107028484344, 0.014296223409473896, -0.021369092166423798, 0.03201259672641754, 0.006997625343501568, -0.005615884903818369, 0.0042136237025260925, -0.001741710933856666, 0.04681500047445297, -0.030753981322050095, -0.018345680087804794, 0.0060365633107721806, -0.003425279399380088, -0.015418032184243202, -0.11820035427808762, -0.03387315571308136, 0.021492216736078262, 0.0035330140963196754, 0.0035466947592794895, 0.009624299593269825, -0.0019101533107459545, 0.004268346354365349, -0.0008238284499384463, 0.018974987789988518, -0.017429079860448837, -0.014624558389186859, -0.013140212744474411, -0.007599571719765663, -0.0031807387713342905, -0.014214140363037586, 0.005814253818243742, -0.02027464471757412, -0.005020779091864824, 0.012688753195106983, 0.00928228534758091, -0.017647970467805862, 0.01745644211769104, 0.001121808891184628, -0.02172478847205639, -0.01669032871723175, -0.0230928473174572, -0.0016570623265579343, 0.009501174092292786, 0.01437830738723278, 0.03715649992227554, -0.007319119293242693, 0.03061717562377453, -0.027840014547109604, -0.0038852894213050604, -0.014309904538094997, -0.012114168144762516, -0.02831883542239666, 0.03491288423538208, -0.018208874389529228, 0.000560904445592314, 0.017223872244358063, -0.006334116216748953, -0.030179396271705627, 0.00894027017056942, -0.008885547518730164, -0.012695593759417534, 0.041725821793079376, 0.0050241993740201, -0.006358057260513306, -0.02729278989136219, -0.014638238586485386, -0.010055238381028175, -0.04774528369307518, 0.035460107028484344, -0.002483028220012784, 0.007934746332466602, 0.0243788231164217, -0.01721019111573696, 0.011690069921314716, -0.008858186192810535, -0.008085232228040695, -0.0049455356784164906, 0.019399086013436317, 0.0034697414375841618, 0.004155481234192848, -0.020055754110217094, 0.02019256167113781, 0.007066028192639351, -0.009542216546833515, -0.00825623981654644, -0.004921594634652138, -0.025801604613661766, -0.0014262022450566292, -0.015034975484013557, 0.015117059461772442, -0.012681913562119007, -0.0069394828751683235, 0.005328592378646135, 0.01968637853860855, -0.028701892122626305, -0.00949433445930481, 0.006378578022122383, -0.03277871012687683, 0.011573784984648228, 0.0051712654531002045, 0.01164218783378601, -0.0014193619135767221, 0.017921581864356995, -0.04238248988986015, 0.001532226800918579, 0.019549572840332985, 0.011628507636487484, 0.01770269311964512, -0.0015279516810551286, 0.011177047155797482, -0.007148111704736948, -0.012887122109532356, 0.01035621203482151, 0.002953298855572939, -0.0001915283501148224, 0.0012474993709474802, -0.03986525908112526, -0.001144039910286665, 0.011915800161659718, 0.013311220332980156, 0.011436979286372662, -0.03882553428411484, 0.00902235321700573, -0.016471438109874725, 0.010725587606430054, 0.01056142058223486, -0.025185978040099144, 0.006135747767984867, 0.0032901836093515158, -0.009391729719936848, -0.03499496728181839, -0.017935262992978096, 0.03141064941883087, -0.0022863696794956923, 0.010027877055108547, 0.002518939785659313, -0.013256498612463474, 0.004032355733215809, 0.015459074638783932, 0.028346195816993713, -0.007237035781145096, 0.01641671545803547, -0.022709790617227554, 0.01985054649412632, -0.0030747142154723406, -0.019905269145965576, 0.019987352192401886, 0.0033295152243226767, 0.015335949137806892, -0.0033739772625267506, -0.016197826713323593, -0.02191631682217121, -0.017305955290794373, 0.026225704699754715, 0.023038124665617943, 0.012510905973613262, -0.007243875879794359, -0.015787407755851746, 0.030836064368486404, -0.04027567803859711, -0.019713740795850754, -0.021793190389871597, -0.0200967974960804, -0.023653751239180565, 0.019371725618839264, 0.01526754628866911, 0.02045249193906784, -0.005205466877669096, -0.028948143124580383, -0.027224387973546982, 0.005581683479249477, -0.02472083829343319, 0.005311491899192333, 0.025870008394122124, -0.006296494510024786, -0.0036458789836615324, 0.04394207522273064, -0.008249400183558464, -0.00019879617320839316, -0.03171162307262421, 0.034529827535152435, -0.004870292264968157, -0.04169845953583717, -0.017073385417461395, 0.01685449481010437, -0.016403036192059517, -0.010369892232120037, -0.012941844761371613, 0.03053509257733822, -0.012367259711027145, 0.015158100984990597, -0.014186779037117958, -0.004914754536002874, -0.027019178494811058, -0.01898866891860962, 0.024173613637685776, 0.020589297637343407, -0.004340169485658407, -0.005841614678502083, 0.01581477001309395, 0.03660927712917328, -0.0038818693719804287, -0.01667664758861065, 0.009145478717982769, 0.02206680178642273, 0.01185423694550991, -0.032477736473083496, 0.0013424085918813944, -0.0033825275022536516, 0.018496166914701462, 0.0030456427484750748, 0.012175731360912323, -0.004323068540543318, 0.008317803032696247, 0.022655067965388298, 0.023133888840675354, 0.0037997858598828316, -0.003042222699150443, -0.020548256114125252, 0.0025292003992944956, -0.0005626145284622908, 0.008735060691833496, -0.0011106934398412704, -0.030343564227223396, 0.014747682958841324, 0.01985054649412632, -0.00019933056319132447, -0.03294287621974945, 0.008310962468385696, 0.010513538494706154, -0.001525386585853994, 0.013283859007060528, 0.00018458117847330868, -0.010308329947292805, -0.03359954431653023, 0.003714282065629959, 0.01745644211769104, 0.014870808459818363, 0.006659030448645353, -0.008016829378902912, 0.026321468874812126, 0.0031704783905297518, 0.005044720135629177, -0.009528535418212414, -0.012360419146716595, -0.002518939785659313, 0.014364626258611679, -0.0063956789672374725, 0.013926847837865353, -0.012483544647693634, -0.00168955372646451, -0.017305955290794373, 0.00024047924671322107, 0.030234118923544884, -0.02361270971596241, 0.08263080567121506, 0.03688288852572441, -0.016813453286886215, 0.007408043369650841, -0.0014569835038855672, 0.009966314770281315, 0.01941276714205742, 0.012333057820796967, -0.006724013481289148, -0.008331483229994774, 0.031164400279521942, -0.0004211058549117297, -0.012415141798555851, -0.0047437469474971294, -0.0008952240459620953, 0.013995250687003136, -0.011101804673671722, -0.004832671023905277, -0.011067602783441544, 0.0072985985316336155, 0.007873183116316795, 0.0012663102243095636, 0.007079708855599165, -0.016225187107920647, -0.025363827124238014, -0.0109102763235569, 0.022436179220676422, 0.024433545768260956, -0.012490385212004185, -0.025090213865041733, 0.028592446818947792, -0.0036458789836615324, -0.02131436951458454, -0.009234403260052204, -0.011614826507866383, 0.0010183494305238128, -0.011587465181946754, -0.025514312088489532, 0.00019804801559075713, 0.02498077042400837, -0.00740120280534029, 0.011436979286372662, -0.030234118923544884, -0.01814047060906887, 0.010198884643614292, -0.00015615118900313973, -0.0064504011534154415, -0.014857128262519836, 0.00040293633355759084], "7a7b5aad-cc36-4282-a044-1dfdfd66d09f": [-0.01656215824186802, -0.0004926348337903619, -0.00695019168779254, -0.04085515812039375, 0.023261304944753647, 0.037856362760066986, -0.022078294306993484, -0.014306183904409409, 0.0034321085549890995, -0.03180374577641487, 0.011568750254809856, 0.023495156317949295, 0.00954662635922432, 0.00023041210079099983, -0.01477388571947813, 0.010220668278634548, 0.026493951678276062, 0.0007011233828961849, -0.016410844400525093, -0.021803174167871475, -0.027140481397509575, -0.0064962455071508884, -0.015379147604107857, 0.009766722097992897, -0.01940963976085186, -0.0043915859423577785, 0.026947898790240288, -0.028887486085295677, -0.025737375020980835, 0.01477388571947813, 0.026012493297457695, -0.022999942302703857, -0.030290592461824417, 0.011747578158974648, -0.004150856751948595, 0.004697655793279409, 0.01323322020471096, -0.0058531551621854305, 0.01828165166079998, -0.01489768922328949, 0.020069925114512444, 0.02784203551709652, 0.00970481988042593, -0.017291223630309105, -0.0015466841869056225, 0.044569265097379684, 0.011156071908771992, -0.020413823425769806, -0.012421619147062302, -0.0007802200852893293, 0.002503582276403904, 0.01207772083580494, -0.02872241474688053, -0.010275691747665405, 0.010867197066545486, 0.0023144378792494535, 0.006785120349377394, -0.0018759671365842223, 0.005261649377644062, -0.015227831900119781, 0.0053166733123362064, -0.0013884907821193337, 0.002809651894494891, -0.015049004927277565, -0.008012838661670685, -0.028474807739257812, -0.008294835686683655, 0.016796009615063667, -0.014608814381062984, -0.01854301616549492, 0.05045681074261665, 0.024086661636829376, 0.01576431468129158, -0.011775089427828789, 0.0006908064242452383, -0.0062039317563176155, -0.013288243673741817, -0.016259528696537018, -0.006723218597471714, 0.007448844611644745, 0.02079899050295353, -0.009780477732419968, -0.02418295294046402, 0.021555567160248756, 0.019244568422436714, 0.024953287094831467, -0.00046598268090747297, 7.426061347359791e-05, -0.012290937826037407, -0.009415945038199425, 0.007827132940292358, 0.0043331230990588665, 0.010034962557256222, 0.011472458951175213, 0.008590588346123695, 0.018611794337630272, 0.017057372257113457, 0.0067541697062551975, -0.02559981495141983, 0.01718117669224739, -0.0018794061616063118, 0.00287843169644475, -0.033922161906957626, -0.012187767773866653, -0.002512179547920823, -0.014099844731390476, 0.012139622122049332, -0.007930302992463112, 0.006224565673619509, 0.01533787976950407, -0.041212815791368484, 0.04811830073595047, 0.007056800182908773, -0.027154237031936646, -0.004972774535417557, 0.0030159910675138235, 0.02813090942800045, -0.03513268753886223, -0.010344471782445908, -0.01854301616549492, 0.0036178138107061386, 0.00901702232658863, 0.03483005613088608, 5.2363942813826725e-05, 0.008961998857557774, 0.017098641023039818, 0.019217057153582573, -0.0239353459328413, 0.0013102538650855422, 0.0017435661284253001, 0.0005932251806370914, -0.002520777052268386, 0.02246345952153206, 0.01431993953883648, -0.035545364022254944, 0.00972545426338911, -0.021858198568224907, 0.005701839458197355, -0.008095374330878258, -0.026108786463737488, 0.01361838635057211, 0.029712842777371407, 0.008184787817299366, -0.007978448644280434, -0.02136298455297947, 0.041212815791368484, -0.003093368373811245, 0.024059150367975235, 0.0010334154358133674, 0.009794233366847038, 0.0027838596142828465, -0.0011907491134479642, -0.040029801428318024, -0.010715882293879986, -0.016507135704159737, 0.015269099734723568, 0.007490112446248531, 0.008521808311343193, -0.01140367891639471, 0.007338797207921743, 0.017965266481041908, 0.03972717374563217, -0.007331919390708208, -0.006100762169808149, -0.010138132609426975, 0.04071760177612305, 0.004058003891259432, -0.019340859726071358, -0.02143176458775997, -0.0069158016704022884, 0.018694330006837845, 0.03213388845324516, -0.01719493232667446, 0.01968475803732872, -0.010935977101325989, 0.029107581824064255, 0.00027769815642386675, -0.0018398577813059092, -0.022312143817543983, -0.027621939778327942, 0.02389407902956009, -0.013927895575761795, 0.005282283294945955, 0.02394910156726837, -0.016245773062109947, -0.00870751403272152, 0.0275944285094738, 0.016424600034952164, 0.013962285593152046, -0.011142316274344921, 0.008356736972928047, 0.003363328753039241, -0.02784203551709652, -0.017538830637931824, -0.6197879314422607, -0.0160119216889143, 0.01365277636796236, -0.0012861809227615595, 0.006953630596399307, 0.008913853205740452, 0.020372556522488594, -0.0027529087383300066, -0.014168624766170979, 0.031308531761169434, 0.014787642285227776, -0.005282283294945955, 0.00816415436565876, -0.02114288881421089, -0.007682695984840393, -0.005117211956530809, -0.0069054849445819855, -0.02078523486852646, -0.013852237723767757, -0.007180603686720133, -0.03125350922346115, 0.01654840260744095, -0.008294835686683655, 0.002629105234518647, -0.017277467995882034, -0.02106035314500332, 0.002749469829723239, 0.005137845873832703, -0.0013979480136185884, 0.055821627378463745, -0.028062129393219948, 0.0001170330069726333, 0.018680574372410774, -0.005602109245955944, 0.038654208183288574, -0.016452111303806305, -0.0028663952834904194, 0.03681091219186783, 0.03210637718439102, 0.018116580322384834, -0.01141055766493082, -0.012146499939262867, 0.01277927402406931, 0.02075772173702717, -0.006991459522396326, -0.0038929327856749296, 0.019904853776097298, -0.003824152983725071, 0.004137100651860237, -0.01658967137336731, 0.014388719573616982, -0.011513726785779, -0.003786324057728052, -0.013549607247114182, 0.005471427459269762, -0.0020840258803218603, 0.024265488609671593, -0.012958100996911526, -0.00023363615036942065, -0.00661661010235548, -0.0006344930152408779, 0.01419613603502512, -0.003285951679572463, -0.035545364022254944, -0.025159625336527824, 0.012050208635628223, -0.007132458034902811, -0.008542442694306374, -0.01207772083580494, -0.028529832139611244, 0.04311113432049751, -0.004161173477768898, -0.002954089315608144, -0.010131253860890865, 0.014168624766170979, 0.027085456997156143, 0.036453258246183395, -0.014010431244969368, 0.007263139355927706, 0.01716742105782032, 0.018460480496287346, -0.005822204053401947, -0.032519057393074036, -0.023852810263633728, 0.01742878369987011, 0.014691350050270557, -0.016658451408147812, -0.01628703996539116, 0.0049521406181156635, 0.0028732733335345984, 0.0013403450138866901, 0.042670946568250656, -0.005839399062097073, -0.054418522864580154, -0.007490112446248531, 0.05645440146327019, -0.010220668278634548, 0.005148162599653006, -0.009072046726942062, -0.02283487096428871, -0.043138645589351654, -0.007056800182908773, -0.007902790792286396, 0.001409984426572919, 0.03967214748263359, 0.016176993027329445, -0.008267323486506939, 0.004443170502781868, 0.0071049463003873825, -0.01690605841577053, -0.004477560520172119, 0.0047526792623102665, -0.006107639987021685, -0.008851950988173485, 0.0064721726812422276, -0.023192524909973145, 0.008631856180727482, 0.01800653338432312, 0.013563362881541252, 0.008487418293952942, 0.0012586690718308091, -0.022944917902350426, 0.030455663800239563, 0.00341319409199059, 0.0033650482073426247, 0.0030968072824180126, 0.01196767296642065, -0.018680574372410774, 0.015104028396308422, -0.009415945038199425, -0.009642918594181538, -0.0053751361556351185, -0.010440763086080551, -0.008549320511519909, 0.027759499847888947, -0.00039333407767117023, 0.021500544622540474, -0.003659081645309925, 0.0030727344565093517, -0.035847995430231094, -0.0071874819695949554, -0.00859746616333723, 0.021473031491041183, -0.016121968626976013, 0.0071874819695949554, -0.028199689462780952, -0.008232933469116688, -0.0230962336063385, 0.002199231879785657, -0.0076070381328463554, -0.008968876674771309, -0.007648305967450142, 0.005299478303641081, 0.020056169480085373, -0.003280793083831668, 0.005072505213320255, 0.004745801445096731, -0.04151544347405434, -0.007971570827066898, -0.011541238985955715, -0.017772682011127472, 0.0056433770805597305, -0.006083567161113024, 0.011341777630150318, -0.01800653338432312, -0.025462256744503975, 0.0008524387958459556, 0.012848054058849812, -0.025984982028603554, -0.014540035277605057, -0.010399495251476765, -0.005952885840088129, -0.014787642285227776, 0.016438355669379234, 0.009072046726942062, 0.021184157580137253, -0.01738751493394375, -0.009367799386382103, -0.0002936034870799631, -0.01168567594140768, 0.0030744539108127356, 0.002770103747025132, -0.00715996976941824, -0.030290592461824417, 0.04088267311453819, 0.00018065425683744252, 0.026081273332238197, 0.018212873488664627, -0.029107581824064255, 0.025379721075296402, -0.009415945038199425, 0.01348082721233368, -0.02333008497953415, -0.011465581133961678, -0.021486787125468254, -0.011348655447363853, -0.018487991765141487, 0.016713473945856094, 0.013453315012156963, 0.01825414039194584, 0.030290592461824417, -0.0005330428830347955, 0.0015888117486611009, 0.0021510859951376915, -0.006444660946726799, -0.02753940410912037, 0.01909325271844864, -0.025228405371308327, 0.00547486636787653, -0.009684186428785324, 0.001437496393918991, 0.0005596950650215149, 0.0068332660011947155, -0.010007450357079506, 0.010316959582269192, 0.037608757615089417, 0.0028646758291870356, 0.013563362881541252, -0.020964061841368675, -0.014113600365817547, 0.015846850350499153, 0.005110334139317274, 0.014361207373440266, -0.02449933998286724, 0.00902390107512474, 0.02189946547150612, 0.005320112220942974, 0.029052557423710823, -0.0066131711937487125, -0.026040006428956985, 0.005189430434256792, 0.004508511163294315, -0.007208115886896849, 0.017029860988259315, 0.049356333911418915, 0.020303776487708092, 0.01945090852677822, -0.0008679142338223755, 0.014429987408220768, -0.004443170502781868, -0.0020530750043690205, -0.010158766061067581, 0.018432967364788055, -0.025668594986200333, 0.02112913317978382, 0.004092393908649683, 0.010303203947842121, 0.013742189854383469, -0.021211668848991394, -0.008384249173104763, -0.011630652472376823, -0.009037656709551811, -0.005925373639911413, 0.0010901587083935738, 0.024100417271256447, -0.03210637718439102, 0.020042413845658302, -0.005478305742144585, 0.011582506820559502, 0.02084025740623474, 0.02780076675117016, 0.00415773456916213, -0.0025843982584774494, 0.0004999426892027259, 0.03174872323870659, -0.02478821575641632, -0.0011365850223228335, -0.027773255482316017, 0.01167192030698061, -0.004247148521244526, 0.007428210694342852, -0.004498194437474012, 0.004787069279700518, -0.024925773963332176, 0.0012242791708558798, 0.0011056341463699937, -0.011424313299357891, 0.024265488609671593, 0.002675531432032585, 0.0007720525027252734, -0.02199575863778591, -0.027952082455158234, 0.015654265880584717, 0.0076070381328463554, 0.0014890811871737242, -0.0016412562690675259, -0.020111193880438805, -0.0035077661741524935, -0.0044844383373856544, 0.006675072945654392, 0.012896199710667133, -0.007407576777040958, -0.015585486777126789, -0.017263712361454964, 0.017965266481041908, -0.004804264288395643, 0.029327677562832832, -0.0028973461594432592, -0.006943313870579004, 0.006310540251433849, 0.038131482899188995, 0.010021206922829151, -0.04272596910595894, -0.03485756739974022, 0.032491546124219894, -0.008796927519142628, -0.012380351312458515, -0.013102538883686066, -0.020743966102600098, -0.02388032153248787, -0.00221986579708755, 0.011754455976188183, -0.023412620648741722, -0.023811543360352516, -0.0012105233035981655, 0.005884105805307627, -0.006523757241666317, 3.989761808043113e-06, 0.018955694511532784, 0.026851607486605644, -0.0032429643906652927, -0.020303776487708092, -0.001714334823191166, 0.018130337819457054, 0.062011804431676865, 0.0024537169374525547, 0.0030469419434666634, 0.00926462933421135, -0.02753940410912037, -0.016424600034952164, -0.01628703996539116, -0.02026250772178173, 0.0518324039876461, 0.026232589036226273, -0.014540035277605057, 0.01713990792632103, 0.010509543120861053, 0.005285722203552723, 0.022889893501996994, -0.0026273857802152634, -0.00337020680308342, -0.02361895889043808, -0.014113600365817547, 0.011637530289590359, 0.020922793075442314, -0.01916203275322914, 0.03513268753886223, 0.019065741449594498, 0.026824094355106354, 0.0016593110049143434, 0.036453258246183395, 0.00982862338423729, -0.009072046726942062, -0.01851550303399563, -0.023701494559645653, 0.01969851553440094, -0.0030813319608569145, 0.011162950657308102, -0.04311113432049751, 0.0433037169277668, -0.005471427459269762, -0.005578035954385996, -0.005189430434256792, 0.011328021995723248, 0.0033117439597845078, 0.02359144762158394, 0.001989453798159957, 0.004666704684495926, 0.012442253530025482, 0.0020375994499772787, -0.005822204053401947, 0.02760818414390087, -0.010770905762910843, 0.0034097551833838224, 0.017373759299516678, 0.00927150808274746, -0.021803174167871475, 0.012896199710667133, 0.02251848392188549, -0.021803174167871475, 0.015833094716072083, -0.024127928540110588, -0.020331287756562233, -0.021473031491041183, -0.03876425698399544, 0.004130222834646702, -0.01887315884232521, -0.009993694722652435, -0.01053017657250166, -0.030593223869800568, -0.0214180089533329, -0.007146214134991169, -0.014374963939189911, 0.007813377305865288, -0.015654265880584717, -0.03568292409181595, -0.024100417271256447, 0.013185074552893639, 0.005890984088182449, 0.02389407902956009, -0.00016593109467066824, 0.0021734393667429686, -0.004714850336313248, 0.014553790912032127, 0.00108843925409019, -0.02276609092950821, -0.00828107912093401, -0.03353699669241905, -0.011974550783634186, -0.01431993953883648, -0.0037553731817752123, -0.011720065958797932, -0.0009852696675807238, 0.020372556522488594, -0.022078294306993484, -0.005330428946763277, 0.016232015565037727, 0.016383331269025803, 0.006860778201371431, 0.008528686128556728, 0.016163237392902374, -0.0050346762873232365, 0.027456868439912796, -0.04638504981994629, 0.011348655447363853, -0.00803347211331129, -0.029877914115786552, 0.006761047523468733, 0.025489768013358116, 0.021816929802298546, -0.01546168327331543, -0.010612712241709232, 0.0014469536254182458, -0.005870350170880556, 0.010227546095848083, 0.0013300280552357435, -0.009773599915206432, -0.014663838781416416, 0.004862727131694555, -0.03012552112340927, 0.012689860537648201, 0.01419613603502512, 0.006733535788953304, -0.00773771945387125, 0.0012500715674832463, -0.007490112446248531, 0.033619530498981476, 0.038406603038311005, 0.006970825605094433, 0.007435088977217674, 0.0002218146255472675, -0.0066957068629562855, -0.031170973554253578, -0.015612998977303505, 0.008693757466971874, 0.0032102938275784254, -0.028914999216794968, -0.026315124705433846, -0.012731128372251987, 0.016988594084978104, -0.010935977101325989, 0.015269099734723568, -0.015668023377656937, 0.0030159910675138235, -0.03485756739974022, 0.005237576551735401, 0.038434114307165146, -0.012022696435451508, 0.022408436983823776, -0.03788387402892113, -0.026604000478982925, 0.008851950988173485, 0.01572304591536522, 0.04363385960459709, -0.014870177954435349, -0.00898951105773449, -0.04286352917551994, -0.035545364022254944, -0.020620163530111313, -0.013666532002389431, 0.013171317987143993, 0.014677594415843487, 0.03177623450756073, 0.023233793675899506, 0.011740700341761112, 0.021858198568224907, 0.03912191092967987, 0.015695534646511078, -0.004855848848819733, 0.0032395252492278814, 0.0040511260740458965, -0.014278671704232693, 0.017607610672712326, -0.016259528696537018, -0.005901300814002752, -0.011926405131816864, 0.00207198946736753, -0.02022124081850052, 0.00603886041790247, 0.003817274933680892, 0.006296784151345491, 0.0025379720609635115, -0.025255916640162468, -0.034995127469301224, 0.0018157848389819264, 0.055876653641462326, 0.014292428269982338, 0.01606694422662258, -0.03549034148454666, -0.0032154524233192205, -2.2098174667917192e-05, -0.009257751516997814, 0.030813319608569145, -0.006080128252506256, 0.020950306206941605, -0.017965266481041908, 0.0010892989812418818, 0.025764886289834976, 0.007696451619267464, 0.0028285663574934006, -0.015612998977303505, -0.023976614698767662, 0.007572648115456104, 0.025434743613004684, 0.01993236504495144, 0.012524789199233055, 0.002436521928757429, -0.002034160541370511, 0.015489195473492146, 0.033371925354003906, -0.00477331317961216, -0.016163237392902374, 0.01605318859219551, -0.03507766127586365, -0.02361895889043808, -0.032436519861221313, -0.02723677270114422, 0.004113027825951576, -0.0034596205223351717, 0.013398291543126106, 0.0024330830201506615, 0.018639307469129562, -0.013033758848905563, -0.0261500533670187, 0.0008438412914983928, -0.0003398148692212999, 0.013205708004534245, 0.0022422191686928272, 0.017029860988259315, 0.022422192618250847, 0.023426376283168793, -0.017497563734650612, -0.007194359786808491, 0.012153378687798977, -0.002603312721475959, -0.0027546281926333904, 0.0337020680308342, -0.027498135343194008, -0.010901587083935738, -0.0026772511191666126, 0.0064859287813305855, 0.004591046832501888, -0.043771419674158096, 0.04049750417470932, 0.01658967137336731, -0.0056433770805597305, -0.026562731713056564, -0.022889893501996994, 0.0022009513340890408, 0.003368487348780036, -0.004831776022911072, 0.020647674798965454, 0.02279360219836235, -0.0035937409847974777, -0.0026119102258235216, 0.02283487096428871, -0.014429987408220768, 0.015681779012084007, -0.01321258582174778, 0.00870751403272152, -0.0032360863406211138, 0.00828107912093401, -0.010647102259099483, -0.022408436983823776, 0.003875737776979804, 0.0013360462617129087, -0.011960795149207115, -0.004835214931517839, 0.012125866487622261, 0.021748151630163193, 0.010399495251476765, -0.008081618696451187, -0.02814466506242752, 0.029630307108163834, -0.014113600365817547, -0.012015818618237972, -0.0006301942630670965, -0.03183126077055931, 0.009168338030576706, -0.025104600936174393, -0.019285837188363075, 0.0038138360250741243, -0.00738006504252553, -0.012662348337471485, -8.26968826004304e-05, -0.0057259127497673035, -0.01112856063991785, 0.012428496964275837, 0.01335702370852232, -0.014801397919654846, -0.010200033895671368, -0.005787814501672983, 0.013810969889163971, -0.004312489181756973, -0.01738751493394375, -0.001982575748115778, -0.008212300017476082, -0.004016736056655645, 0.007765231654047966, 0.00033874018117785454, -0.003114002291113138, 0.02648019604384899, -0.015255344100296497, 0.009374677203595638, 0.0030159910675138235, 0.014925201423466206, -0.0359855554997921, 0.03034561686217785, -0.014127356931567192, 0.005323551129549742, 0.028075886890292168, 0.0064721726812422276, -0.04467931389808655, -0.023962857201695442, 0.008088496513664722, 0.015571731142699718, 0.0025362526066601276, 0.0106746144592762, 0.02196824550628662, 0.006148907821625471, -0.005523012485355139, -0.013742189854383469, -0.03144609183073044, -0.004969335626810789, -0.02418295294046402, -0.0020479164086282253, 0.018996961414813995, -0.004267782438546419, 0.017882730811834335, -0.004494755528867245, 0.008219177834689617, -0.0030383446719497442, -0.030813319608569145, -0.03034561686217785, -0.012985613197088242, -0.00715996976941824, 0.00013766692427452654, 0.016988594084978104, -0.014663838781416416, -0.02562732808291912, -0.006527196615934372, 0.018075313419103622, 0.0023746201768517494, 0.018212873488664627, 0.01715366542339325, -0.015324124135077, -0.020895281806588173, 0.026232589036226273, -0.017084885388612747, -0.04088267311453819, -0.015282856300473213, -0.010344471782445908, -0.037801340222358704, -0.019863586872816086, -0.030868342146277428, 0.0359855554997921, 0.011630652472376823, -0.007070556282997131, -0.034444887191057205, -0.011272997595369816, -0.02049635909497738, -0.007400698959827423, -0.015860605984926224, 0.028062129393219948, 0.025654839351773262, 0.035875506699085236, 0.0006989740068092942, 0.03510517627000809, 0.008102252148091793, 0.03452742472290993, -0.018694330006837845, -0.024939529597759247, -0.02422422170639038, -0.03738866001367569, 0.03356450796127319, -0.02696165442466736, -0.032739151269197464, -0.0067507303319871426, 0.0011168108321726322, -0.036453258246183395, 0.0024640338961035013, 0.03315183147788048, 0.0019327104091644287, -0.01154811680316925, -0.015434171073138714, -0.004171490669250488, 0.013941651210188866, -0.007214993704110384, -0.004749240353703499, -0.023027453571558, 0.0043915859423577785, 0.017868973314762115, -0.004762996453791857, -0.024856993928551674, 0.00674041360616684, 0.02418295294046402, -0.01476013008505106, 0.00688828993588686, -0.04492691904306412, 0.003524961182847619, -0.016121968626976013, -0.008900097571313381, -0.003093368373811245, 0.0008601765148341656, 0.0016369576333090663, 0.02645268477499485, -0.005096578039228916, 0.0009113314445130527, -0.021555567160248756, 0.008060984313488007, -0.0015217515174299479, -0.011947039514780045, 0.0012191206915304065, -0.021239180117845535, -0.01663093827664852, -0.007283773273229599, 0.02586117945611477, 0.0023522668052464724, -0.001401387038640678, -0.014938957057893276, -0.016108212992548943, -0.03422479331493378, -0.006159225013107061, -0.005815326236188412, -0.004725167527794838, -0.0013833323027938604, -0.02196824550628662, 0.0042024413123726845, -0.021197913214564323, -0.011300509795546532, -0.01083280798047781, -0.021761907264590263, -0.009519115090370178, -0.0015759156085550785, 0.022917406633496284, -0.03158365190029144, -0.010399495251476765, 0.01632830873131752, -0.019010717049241066, 0.003468217793852091, 0.20666933059692383, -0.0027322748210281134, -0.010028084740042686, 0.0321614034473896, 0.002340230392292142, -0.00886570755392313, 0.0034235110506415367, 0.01741502806544304, 0.014966469258069992, 0.026934143155813217, 0.0015819338150322437, 0.01263483613729477, -0.015970652922987938, 0.0015449647326022387, 0.02283487096428871, -0.011802601628005505, -0.007139335852116346, -0.020166216418147087, 0.004247148521244526, 0.0043434398248791695, 0.00041332319960929453, 0.00043417204869911075, -0.012648592703044415, -0.005488622467964888, 0.032436519861221313, 0.032243937253952026, 0.00870751403272152, 0.02753940410912037, 0.01431993953883648, 0.022037025541067123, -0.017552588135004044, -0.022656043991446495, 0.004212758503854275, -0.016520891338586807, -0.011465581133961678, 0.005657132714986801, -0.001424600137397647, -0.024623144418001175, 0.004725167527794838, 0.007751475553959608, 0.0021373301278799772, -0.014815153554081917, 0.018914425745606422, -0.02872241474688053, 0.01968475803732872, -0.008054106496274471, 0.008508052676916122, -0.011981428600847721, 0.01068837009370327, 0.022711066529154778, -0.0046701435931026936, 0.006877973210066557, -0.012339083477854729, -0.006499684415757656, -0.019808562472462654, -0.013384535908699036, -0.00702241063117981, -0.0022095488384366035, -0.027112970128655434, 0.026287613436579704, -0.02250472828745842, -0.005416403990238905, -0.01053017657250166, 0.021486787125468254, -0.03606808930635452, 0.029025046154856682, -0.01024817954748869, 0.021541811525821686, 0.02674155868589878, -0.010935977101325989, -0.014856421388685703, -0.0021785979624837637, -0.03062073513865471, -0.004267782438546419, 0.008446150459349155, -0.008886341005563736, -0.0026445805560797453, 0.04137788712978363, 0.04132286086678505, 0.014113600365817547, 0.004780191462486982, 0.01110792625695467, -0.005956324748694897, 0.005553963128477335, -0.004174929577857256, -0.0046942164190113544, 0.03488507866859436, -0.042891040444374084, 0.004553218372166157, 0.003576545976102352, -0.01660342700779438, -0.010048718191683292, -0.014416231773793697, 0.009326531551778316, -0.01110792625695467, -0.01165128592401743, 0.014581303112208843, 0.03312431648373604, 0.009092680178582668, -0.02536596544086933, -0.021541811525821686, 0.0567295216023922, 0.027401844039559364, 0.013865993358194828, -0.0185980387032032, -0.011740700341761112, -0.01094973273575306, 0.014828910119831562, -0.009491602890193462, 0.0031776234973222017, -0.014650082215666771, -0.050236716866493225, 0.006558147259056568, -0.0017710780957713723, -0.0005201466847211123, 0.033344414085149765, 0.03378460183739662, 0.0030968072824180126, -0.024636900052428246, -0.005774058401584625, 0.009519115090370178, -0.022697310894727707, 0.005368257872760296, -0.010502665303647518, -0.010069352574646473, -0.02282111532986164, -0.008961998857557774, 0.00760016031563282, -0.01795150898396969, -0.006977703422307968, 0.02189946547150612, -0.012648592703044415, 0.006172980647534132, -0.012648592703044415, 0.008129764348268509, 0.0036040579434484243, 0.0031638676300644875, -0.026920385658740997, -0.005007164552807808, 0.010103742592036724, -0.00914082583039999, 0.00584283797070384, 0.019615979865193367, 0.0022903650533407927, 0.03650828078389168, -0.0018140653846785426, -0.008184787817299366, 0.008171032182872295, -0.01319883018732071, -0.016121968626976013, 0.0059219347313046455, 0.03986473008990288, -0.007118701934814453, 0.016163237392902374, 0.029190117493271828, -0.011568750254809856, -0.012400985695421696, -0.029602795839309692, 0.02275233529508114, -0.013769702054560184, -0.03738866001367569, -0.007414455059915781, 0.019822318106889725, 0.013398291543126106, -0.0038138360250741243, -0.0033134634140878916, -0.17486558854579926, 0.012029575183987617, 0.01690605841577053, -0.005708717741072178, -0.012036453001201153, 0.018116580322384834, 0.006523757241666317, 0.0003582994104363024, -0.03799392282962799, -0.007352553308010101, 0.008941365405917168, -0.009457212872803211, -0.027112970128655434, -0.022697310894727707, 0.0014865018893033266, -0.0018003094010055065, -0.0015148735838010907, 0.03185877203941345, 0.038929328322410583, -0.007971570827066898, 0.03339943662285805, -0.020743966102600098, 0.013522095046937466, -0.035572875291109085, 0.010770905762910843, 0.014966469258069992, -0.027649451047182083, 0.03510517627000809, -0.004666704684495926, -0.04184558615088463, -0.016232015565037727, -0.005096578039228916, 0.010413250885903835, 0.027511892840266228, -0.013556485064327717, 0.00022869260283187032, -0.0002802773960866034, -0.009594772011041641, -0.0283647608011961, 0.004168051760643721, 0.03582048416137695, 0.030565712600946426, 0.012621080502867699, -0.015489195473492146, 0.01575055904686451, 0.029685331508517265, 0.03298676013946533, -0.015654265880584717, 0.013308878056704998, 0.004756118170917034, 0.020179972052574158, -0.003999541513621807, -0.0038069579750299454, -0.017841462045907974, 0.004491316620260477, 0.009670429863035679, -0.00344414496794343, 0.01449876744300127, 0.0008068722090683877, -0.023137500509619713, -0.00874190405011177, -0.012751761823892593, -0.017923997715115547, 0.002011807169765234, 0.002630824688822031, -0.04555969312787056, -0.02532469667494297, 0.03590301796793938, -0.020014900714159012, 0.01404482126235962, 0.006317418068647385, 0.000730784609913826, -0.0033426948357373476, -0.00249154563061893, 0.007854645140469074, 0.0163145512342453, -0.03397718816995621, 0.01654840260744095, 0.02249097265303135, 0.0040511260740458965, 0.02283487096428871, 0.023742763325572014, 0.0029489309526979923, 0.0016481343191117048, -0.01321258582174778, -0.009608528576791286, 0.010605834424495697, -0.0035352781414985657, -0.008948243223130703, 0.0062176878564059734, 0.027401844039559364, -0.009429700672626495, 0.017896486446261406, -0.018501747399568558, 0.010667736642062664, 0.01293746754527092, 0.009732332080602646, -0.004037369973957539, 0.008955121040344238, -0.02810339815914631, 0.007125580217689276, -0.0016128846909850836, -0.024650655686855316, -0.012758639641106129, 0.010523298755288124, 0.009312775917351246, 0.02696165442466736, -0.01533787976950407, 0.040029801428318024, -0.004068321082741022, -0.0247744582593441, 0.028584856539964676, 0.0283647608011961, 0.005760302301496267, -0.015007737092673779, 0.030235569924116135, 0.02337135188281536, -0.007992204278707504, -0.00828795786947012, -0.0163145512342453, 0.061791710555553436, -0.030730783939361572, -0.015159052796661854, 0.011321143247187138, -0.0185980387032032, -0.019533444195985794, -0.1213824674487114, -0.021748151630163193, 0.033922161906957626, 0.0042609041556715965, 0.004350318107753992, 0.008432394824922085, -0.0068917288444936275, 0.006424027029424906, -0.00020515703363344073, 0.009539748542010784, -0.025723619386553764, -0.024526851251721382, -0.021280448883771896, -0.02192697860300541, -0.0005343325319699943, -0.008432394824922085, 0.010798417963087559, -0.024375535547733307, -9.725883865030482e-05, 0.016685962677001953, 0.014086089096963406, -0.009807989932596684, 0.0038207140751183033, 0.01167192030698061, -0.017593855038285255, -0.011816357262432575, -0.015544218942523003, 0.01237347349524498, -0.0035868629347532988, 0.018061557784676552, 0.025998737663030624, 0.0007862382917664945, 0.017360003665089607, -0.011073536239564419, 0.0074419667944312096, -0.019244568422436714, -0.005333868321031332, -0.011878259479999542, 0.02564108371734619, -0.011919527314603329, 0.014746374450623989, 0.019299592822790146, 0.01251791138201952, -0.015145296230912209, 0.007435088977217674, -0.0059907143004238605, -0.015956897288560867, 0.042340803891420364, 0.004903994966298342, 0.002415888011455536, -0.014608814381062984, -0.03714105486869812, -0.007421332877129316, -0.01858428306877613, 0.03097839094698429, -0.014705106616020203, 0.008975754491984844, 0.017263712361454964, -0.016410844400525093, 0.02645268477499485, -0.006434343755245209, 0.0027391528710722923, -0.014828910119831562, 0.013810969889163971, -0.0003630280261859298, 0.003882615827023983, -0.017236201092600822, 0.021514300256967545, 0.026370149105787277, -0.0026463002432137728, -0.018171604722738266, 0.009519115090370178, -0.018391700461506844, -0.012118988670408726, -0.00831546913832426, 0.009065168909728527, -0.0009268068824894726, -0.008404882624745369, -0.0028062129858881235, 0.015282856300473213, -0.0253109410405159, -0.01081217359751463, 0.0010368544608354568, -0.026108786463737488, 0.023123744875192642, -0.0005283143254928291, 0.013047514483332634, -0.0055849142372608185, 0.01419613603502512, -0.0314185805618763, 0.009773599915206432, 0.02730555273592472, 0.013941651210188866, 0.01658967137336731, -0.01123172976076603, 0.005347623955458403, 0.0020823064260184765, -0.020771479234099388, -0.001192468567751348, 0.014168624766170979, 0.010089986026287079, 0.0025689229369163513, -0.041763052344322205, 0.011369289830327034, 0.016452111303806305, 0.02562732808291912, 0.018680574372410774, -0.040414970368146896, -0.016644693911075592, -0.009911159053444862, 0.009250873699784279, 0.011892015114426613, -0.03350948542356491, 0.009464090690016747, -0.013625264167785645, -0.00984237901866436, -0.01826789602637291, -0.025090845301747322, 0.023233793675899506, -0.001200206344947219, 0.005860032979398966, -0.005406086798757315, -0.0018432968063279986, 0.013755946420133114, 0.02192697860300541, 0.014663838781416416, 0.005481744650751352, 0.02246345952153206, -0.00563305988907814, 0.01887315884232521, -0.007221871521323919, -0.020427579060196877, 0.024251732975244522, 0.011369289830327034, 0.005952885840088129, -0.00703616626560688, -0.012593568302690983, -0.03601306676864624, -0.014361207373440266, 0.002249097218737006, 0.022050781175494194, 0.009931793436408043, 0.013109416700899601, -0.026356393471360207, 0.026920385658740997, -0.02246345952153206, -0.025764886289834976, -0.019051985815167427, -0.01802028901875019, -0.03689344599843025, 0.01391413901001215, -0.0080403508618474, 0.03967214748263359, 0.004793947096914053, -0.02334384061396122, -0.03133604675531387, -0.01309566106647253, -0.009759843349456787, 0.018102824687957764, 0.027429357171058655, -0.020455092191696167, 0.0031724651344120502, 0.04113027825951576, 0.002309279516339302, 0.0066131711937487125, -0.017800195142626762, 0.03455493599176407, -0.011836991645395756, -0.03901186212897301, -0.008129764348268509, 0.0006478190771304071, -0.027223017066717148, -0.024609386920928955, -0.010908464901149273, 0.021321715787053108, -0.011190461926162243, 0.02415544167160988, -0.006492806598544121, -0.013879749923944473, -0.015640510246157646, -0.006420587655156851, 0.016245773062109947, 0.018226629123091698, 0.002579239895567298, -0.0042299535125494, 0.03648076951503754, 0.043166160583496094, 0.00970481988042593, -0.019492175430059433, 0.019272079691290855, 0.005770619492977858, 0.006007909309118986, -0.02648019604384899, -0.0028423224575817585, 0.00682638818398118, 0.007545136380940676, -0.009924914687871933, 0.015654265880584717, -0.0015784947900101542, 0.0050209201872348785, 0.03067575953900814, 0.02645268477499485, 0.012063964270055294, -0.0026652144733816385, -0.018185360357165337, -0.006805754266679287, 0.00034346876782365143, 0.015668023377656937, -0.011506848968565464, -0.03122599795460701, 0.010055596940219402, 0.010213789530098438, -0.0015234709717333317, -0.012242792174220085, 0.012400985695421696, 0.01321258582174778, -0.00970481988042593, 0.017249956727027893, 0.007194359786808491, -0.010887831449508667, -0.019767293706536293, 0.003793202107772231, 0.01993236504495144, 0.00526508828625083, 0.009429700672626495, -0.010887831449508667, 0.03433484211564064, 0.0074419667944312096, 0.00912707019597292, -0.029107581824064255, -0.004264343064278364, -0.008913853205740452, 0.007586404215544462, -0.011472458951175213, 0.0016868228558450937, -0.01689230091869831, -0.016410844400525093, -0.012050208635628223, 0.004707972519099712, 0.027663206681609154, -0.008638733997941017, 0.08490169793367386, 0.03972717374563217, -0.02027626521885395, 0.004450048785656691, -0.00900326669216156, 0.01477388571947813, 0.014787642285227776, 0.02507708966732025, -0.020909037441015244, -0.015833094716072083, 0.035050150007009506, -0.009470968507230282, -0.013439559377729893, -0.01363902073353529, -0.0058634718880057335, 0.01098412275314331, -0.012139622122049332, -0.0026170688215643167, -0.006228004582226276, -0.001424600137397647, 0.0018914425745606422, -0.005258210469037294, -0.004769874271005392, -0.010034962557256222, -0.016479622572660446, -0.014650082215666771, 0.016163237392902374, 0.03350948542356491, -0.017511319369077682, -0.016135724261403084, 0.02506333403289318, -0.01912076584994793, -0.0064859287813305855, -0.03870923072099686, -0.007902790792286396, 0.01533787976950407, -0.015131540596485138, -0.032519057393074036, 0.007923425175249577, 0.030015474185347557, 0.005306356120854616, 0.016121968626976013, -0.029932938516139984, -0.006688828580081463, 0.003913566470146179, 0.011369289830327034, 0.00817791000008583, -0.027154237031936646, -0.001870808657258749], "922a83e8-252c-46c7-a471-f74fe0bfb35c": [-0.008956171572208405, 0.011597002856433392, 0.0011443013790994883, -0.03687252104282379, 0.006963157560676336, 0.010011088103055954, -0.00018098192231263965, -0.009097770787775517, 0.003805487882345915, -0.0338422916829586, 0.022117849439382553, 0.0278667900711298, -0.01451395358890295, 0.004120546858757734, 0.002154082991182804, 0.008906611241400242, 0.015745868906378746, 0.003550608642399311, 0.01139876339584589, -0.004095766693353653, -0.02725791186094284, 0.00184787402395159, -0.027272071689367294, 0.001008011749945581, -0.00976328831166029, 0.005819741170853376, 0.02472328022122383, -0.015278590843081474, -0.0007124227122403681, 0.021367371082305908, 0.019753137603402138, -0.012248360551893711, -0.02479408122599125, -0.009218130260705948, -0.0011956312227994204, -0.004839164670556784, 0.01030136737972498, -0.003182449843734503, 0.008474732749164104, -0.0021841730922460556, 0.019172579050064087, 0.030472222715616226, -0.011710282415151596, -0.008927850984036922, -0.0034444089978933334, 0.027399512007832527, 0.004446225706487894, -0.021693050861358643, -0.01956905797123909, -0.00573832169175148, 0.0012540409807115793, -0.006088780704885721, -0.019710656255483627, 0.002177092945203185, 9.313212103734259e-06, -0.0011168663622811437, -0.02044697478413582, 0.012687318958342075, 0.005593182053416967, 0.006294099614024162, -0.008722531609237194, -0.0035382185596972704, 0.0004132936883252114, -0.004053287208080292, -0.002518701832741499, -0.01719018444418907, -0.0032408596016466618, 0.024114402011036873, -0.011993481777608395, 0.0025098519399762154, 0.03149173781275749, 0.026663195341825485, -0.0023381623905152082, 0.0020478833466768265, 0.01741674356162548, -0.002396572381258011, -0.04024259001016617, -0.0034267089795321226, 0.008141973987221718, -0.0002458079543430358, 0.017926502972841263, -0.013189997524023056, -0.007412736304104328, 0.006701198406517506, 0.008701291866600513, 0.004587825387716293, 0.019498256966471672, 0.02053193375468254, -0.021239932626485825, -0.00981992855668068, 0.010655365884304047, 0.021480651572346687, 0.01779906265437603, 0.011696122586727142, 0.013791795819997787, 0.0037665478885173798, 0.005908241029828787, 0.015278590843081474, -0.0180681012570858, -0.0037559280171990395, -0.004386045970022678, 0.003182449843734503, -0.013218317180871964, -0.01097396481782198, -0.01719018444418907, -0.010117287747561932, 0.00590116111561656, 0.0023363924119621515, 0.0016062698559835553, -0.013919235207140446, -0.020390335470438004, 0.03398388996720314, 0.0007602125406265259, -0.001406260533258319, -0.011186364106833935, 0.00811365433037281, 0.014981231652200222, -0.02887214720249176, -0.01656714640557766, -0.005833901464939117, 0.0083614531904459, -0.003378919092938304, 0.039987713098526, -0.009069451130926609, -0.007823375053703785, 0.006287019699811935, -0.016850346699357033, -0.017501704394817352, -0.006821558345109224, -0.012248360551893711, 0.04786064475774765, 0.010867765173316002, 0.017232663929462433, -0.001411570468917489, -0.022542648017406464, 0.007002097554504871, -0.022712567821145058, 0.03483348712325096, -0.004509945400059223, -0.0322846956551075, 0.022854166105389595, 0.02914118580520153, 0.006711818277835846, -0.013593556359410286, -0.002973590511828661, 0.0403558723628521, -0.007313616573810577, 0.018974339589476585, -0.019158419221639633, -0.020942572504281998, -0.005947181023657322, -0.012312080711126328, -0.0178840234875679, -0.01362895593047142, 7.135289342841133e-05, 0.026309195905923843, 0.0197956170886755, 0.031888216733932495, -0.011873122304677963, -0.014570592902600765, -0.005363082978874445, 0.0407523475587368, -0.019866416230797768, -0.019923055544495583, -0.006945457775145769, 0.0338422916829586, -0.003550608642399311, -0.021282412111759186, -0.02936774678528309, -0.018705299124121666, -0.004325866233557463, 0.028546469286084175, -0.009770368225872517, 0.031463418155908585, 0.013416556641459465, 0.006796778179705143, 0.002194792963564396, -0.0003358564281370491, -0.007646375335752964, -0.017402583733201027, 0.02898542769253254, 0.013820115476846695, 0.017360104247927666, 0.0078800143674016, -0.005533002316951752, -0.001980623695999384, 0.03732563927769661, 0.036957480013370514, 0.0032709494698792696, 0.0013540457002818584, 0.008474732749164104, 0.0006956077413633466, -0.029112866148352623, -0.0019700035918504, -0.6221317648887634, -0.007787975016981363, 0.003325819270685315, 0.00918981060385704, -0.02022041566669941, 0.034040529280900955, 0.008099493570625782, -0.003562998492270708, -0.034465327858924866, 0.032539576292037964, -0.0002537729451432824, -0.011207603849470615, -0.02528967894613743, -0.022132009267807007, 0.0007615400827489793, -0.023944484069943428, 0.005971960723400116, -0.02891462668776512, -0.004109926987439394, 0.013543996959924698, -0.0139333950355649, 0.019993856549263, 0.006871117744594812, 0.0004320998559705913, -0.02322232536971569, 0.009203970432281494, 0.01062704622745514, -0.008757932111620903, -0.013274957425892353, 0.025204719975590706, -0.033275894820690155, 0.03455029055476189, 0.03211477771401405, -0.00517192343249917, 0.04182850569486618, -0.0178698617964983, -0.02125409245491028, 0.02248600870370865, 0.010478366166353226, 0.023392245173454285, -0.024284321814775467, -0.0005442732363007963, 0.006202060263603926, 0.029707584530115128, -0.0009460619767196476, 0.0019381437450647354, 0.014400674030184746, -0.008899531327188015, -0.0019257537787780166, -0.014754672534763813, -0.004400205798447132, -0.03902483358979225, -0.020022176206111908, -0.011618242599070072, 0.019866416230797768, -0.005253343377262354, 0.014315714128315449, -0.01425907388329506, -0.011434162966907024, -0.015901628881692886, -0.007511856034398079, 0.0021452330984175205, -0.0039364672265946865, -0.02075849287211895, -0.020928412675857544, 0.019172579050064087, -0.012156320735812187, -0.0010504915844649076, -0.005894081201404333, 0.002039033453911543, 0.008120734244585037, -0.003290419466793537, -0.0157600287348032, 0.0020567334722727537, -0.0034904289059340954, 0.03905315324664116, 0.04270642250776291, 0.0016788396751508117, 0.004524105694144964, 0.02102753333747387, 0.0015248501440510154, -0.006209140177816153, 0.015448510646820068, -0.03658932447433472, 0.011575763113796711, 0.01721850410103798, -0.012262520380318165, 0.007703015115112066, -0.01587330922484398, 0.005278123077005148, 0.01532107125967741, 0.006956077646464109, -0.008736692368984222, -0.04216834530234337, 0.014393594115972519, 0.04517025500535965, -0.02407192252576351, -0.009692489169538021, -0.004233826417475939, -0.016595466062426567, -0.02999078296124935, -0.016354747116565704, -0.0002674903953447938, 0.018167221918702126, 0.01918673887848854, 0.032964374870061874, -0.01220588106662035, -0.0011797011829912663, 0.03375733271241188, -0.021381530910730362, -0.004934743978083134, 0.004095766693353653, -0.003890447551384568, 0.0057418616488575935, 0.0178698617964983, -0.02667735517024994, 0.01795482262969017, 0.011037684977054596, 0.004056827165186405, -0.00022744426678400487, 0.0032019198406487703, -0.019158419221639633, 0.031350139528512955, -0.018280500546097755, 0.01260943990200758, 0.019172579050064087, 0.022018728777766228, 0.010641206055879593, -0.009699569083750248, -0.007830454967916012, -0.005125903524458408, -0.012297920882701874, 0.0007588850567117333, 0.0021859430707991123, 0.02768271043896675, 0.01988057605922222, 0.020008016377687454, -0.004548885393887758, 0.01580251008272171, -0.036164525896310806, -0.0031028001103550196, -0.00909069087356329, 0.0018832739442586899, 0.007172016892582178, 0.012637759558856487, -0.01042172685265541, 0.010329687036573887, -0.021551450714468956, -0.01164656225591898, -0.007526015862822533, -0.017176024615764618, -0.004336486104875803, 0.003964787349104881, 0.03624948486685753, -0.013643116690218449, -0.011023524217307568, -0.00746937608346343, -0.03341749310493469, -0.01089608483016491, -0.026479115709662437, -0.012545719742774963, 0.018705299124121666, -0.007058737333863974, -0.00893493089824915, -0.01418827474117279, -0.009026970714330673, -0.011540362611413002, 0.025516238063573837, -0.03372901305556297, -0.019427457824349403, -0.013827195391058922, -0.006361359730362892, 0.012092601507902145, 0.0244117621332407, 0.005444502457976341, 0.02191960997879505, -0.017445063218474388, -0.009182730689644814, -0.015236111357808113, -0.009380970150232315, 0.014683873392641544, 0.012928038835525513, -0.016637947410345078, -0.018549541011452675, 0.03270949423313141, 0.013147518038749695, 0.023420564830303192, 0.017289305105805397, -0.01741674356162548, 0.016552986577153206, -0.010535006411373615, 0.0014593603555113077, -0.034125491976737976, -0.014138714410364628, -0.024227682501077652, 0.0044037457555532455, -0.020362013950943947, 0.0031983796507120132, -0.017360104247927666, 0.028900466859340668, 0.024312641471624374, 0.012680239044129848, 0.013692676089704037, -0.007780895102769136, 0.007157857064157724, -0.0032196196261793375, 0.025572877377271652, -0.0035895484033972025, 0.0035329086240381002, 0.010478366166353226, -0.006842798087745905, -0.006538358982652426, -0.0023009926080703735, -0.016085708513855934, -0.00876501202583313, 0.005157763604074717, 0.013756396248936653, 0.032539576292037964, -0.0051436033099889755, -0.0048462445847690105, 0.014655552804470062, 0.0030585501808673143, 0.033700693398714066, -0.014117474667727947, 0.004743584897369146, 0.00943760946393013, 0.017006104812026024, 0.01289971824735403, 0.019965536892414093, -0.021268252283334732, -0.01032260712236166, 0.012439520098268986, 0.008141973987221718, 0.0259551964700222, 0.03429540991783142, 0.024156883358955383, 0.03588132560253143, -0.008531372994184494, 0.01779906265437603, -0.01741674356162548, 0.008092413656413555, 0.005894081201404333, 0.02084345370531082, -0.03293605521321297, 0.015788350254297256, 0.014584753662347794, 0.023264804854989052, 0.004124086815863848, -0.037807077169418335, 0.009628769010305405, -0.01580251008272171, 0.0053453827276825905, -0.008354373276233673, -0.003904607379809022, 0.00916857086122036, -0.015859149396419525, 0.02044697478413582, 0.003734688041731715, 0.0038869075942784548, 0.028206629678606987, 0.026351675391197205, 0.004173646681010723, 0.021084172651171684, 0.008956171572208405, 0.014613073319196701, -0.009961527772247791, -0.014613073319196701, -0.023094885051250458, 0.014797152951359749, -0.027555271983146667, 0.01295635849237442, -0.010258886963129044, 0.015561790205538273, -0.01760082319378853, 0.004786064848303795, 0.01435819361358881, 0.004612605087459087, 0.0017947742016986012, 0.009465930052101612, 0.008354373276233673, -0.01934249885380268, -0.016963625326752663, 0.008042854256927967, 0.010358006693422794, 0.020900093019008636, 0.005263963248580694, -0.01289971824735403, 0.01840794086456299, -0.0036922080907970667, 0.012786438688635826, 0.0015469749923795462, 0.008212774060666561, -0.017699943855404854, 0.008588012307882309, 0.010251807048916817, 0.023590484634041786, 0.034890126436948776, -0.017558343708515167, -0.00943760946393013, 0.017388423904776573, 0.030500542372465134, 0.004934743978083134, -0.024213522672653198, -0.024652481079101562, 0.044122420251369476, -0.0027806609869003296, -0.010867765173316002, -0.009119010530412197, -0.0016584846889600158, -0.009770368225872517, 0.004198426380753517, 0.0036532683297991753, -0.025587037205696106, -0.019285857677459717, 0.003555918578058481, -0.0018390241311863065, -0.002442592056468129, -0.0009159720502793789, 0.025388797745108604, 0.02340640500187874, -0.002585961716249585, -0.02698887325823307, 0.010209327563643456, 0.010393406264483929, 0.05321310833096504, 0.0236471239477396, 0.00011239464220125228, -0.009777449071407318, -0.015278590843081474, -0.005699381697922945, -0.03902483358979225, -0.026932233944535255, 0.04950319975614548, 0.017331784591078758, 0.009041131474077702, -0.0007991524180397391, -0.007943734526634216, 0.0014159954153001308, 0.020815134048461914, 0.006067540496587753, 0.023618804290890694, 0.00020509809837676585, -0.014216594398021698, 0.008446413092315197, -0.005816201213747263, 0.010612886399030685, 0.03491844981908798, 0.009402209892868996, 0.009557968936860561, 0.014273234643042088, 0.029735904186964035, 0.020206255838274956, -0.01040048711001873, -0.019399138167500496, -0.046189770102500916, 0.02429848164319992, -0.005097583867609501, 0.013720995746552944, -0.03432372957468033, 0.028702227398753166, 0.007320696488022804, 0.0040214271284639835, -0.021778009831905365, -0.01591578871011734, -0.012326240539550781, 0.009657088667154312, -0.006120640318840742, -0.033502452075481415, 0.023477204144001007, -0.02060273475944996, -0.005012623965740204, 0.023208165541291237, -0.007349016610532999, -0.004251526203006506, 0.013650196604430676, -0.006658718455582857, -0.011915601789951324, 0.00779505493119359, 0.0014106854796409607, -0.007278216537088156, -0.00458428543061018, -0.03180325776338577, -0.010584565810859203, -0.027541112154722214, -0.008672972209751606, -0.022471848875284195, -0.0030426201410591602, -0.024199362844228745, -0.021862970665097237, -0.032426297664642334, -0.012772278860211372, -0.011575763113796711, -0.01745922490954399, -0.0015664449892938137, -0.010287206619977951, -0.026903914287686348, -0.0197956170886755, 0.024128561839461327, 0.013834275305271149, 0.004039126913994551, -0.007816295139491558, 0.00369574804790318, -0.013678516261279583, -0.006970237474888563, -0.009196890518069267, -0.018124742433428764, 0.00016162260726559907, -0.030160702764987946, 0.00573832169175148, -0.023123206570744514, -0.0028550007846206427, 0.002085053361952305, -0.014952911995351315, 0.003152359975501895, -0.009883648715913296, -0.012545719742774963, 0.0063011799938976765, -0.0027399512473493814, 0.018153062090277672, 0.008000374771654606, 0.0031842198222875595, -0.01220588106662035, 0.018478740006685257, -0.056526537984609604, 0.023236485198140144, -0.04086562991142273, -0.0190309789031744, -0.021636411547660828, 0.009380970150232315, 0.005373702850192785, 0.002830220852047205, -0.006287019699811935, -0.016269788146018982, -0.01022348739206791, -0.00015830386837478727, -0.008906611241400242, -0.005557782016694546, 0.012411200441420078, -0.01840794086456299, 0.004460385534912348, 0.0165246669203043, 0.006704738363623619, 0.0182663407176733, -0.020206255838274956, 0.008156133815646172, -0.03658932447433472, 0.03786372020840645, 0.025657838210463524, -0.006782618351280689, 0.011129723861813545, 0.01335991732776165, -0.004860404413193464, -0.04590657353401184, 0.00640029925853014, -0.009635848924517632, -0.008800411596894264, -0.03772211819887161, -0.020206255838274956, -0.015349390916526318, -0.015377710573375225, -0.04562337324023247, 0.009232290089130402, -0.01726098544895649, 0.002090363297611475, -0.030019104480743408, 0.005940101109445095, 0.008885371498763561, -0.020900093019008636, 0.021622249856591225, -0.03256789594888687, -0.024001123383641243, 0.006577298976480961, 0.0003703713009599596, 0.01426615472882986, -0.02414272353053093, -0.0067082783207297325, -0.04970144107937813, -0.025006480515003204, 0.008658812381327152, -0.010067727416753769, 0.01571754924952984, -0.0013646655716001987, 0.024709120392799377, 0.026436634361743927, 0.005979040637612343, 0.0118235619738698, 0.025091439485549927, 0.01719018444418907, -0.009288930334150791, 0.0005473707569763064, -0.024326801300048828, -0.04633137211203575, -0.0076888552866876125, -0.00026837538462132215, -0.004598445259034634, 0.0019009739626199007, -0.002585961716249585, -0.02880134806036949, -0.00021804118296131492, 0.006782618351280689, 0.017204344272613525, -0.0030815601348876953, -0.022627606987953186, -0.04964480176568031, -0.002170013030990958, 0.040695708245038986, 0.0039010674227029085, 0.0022779826540499926, -0.028319908306002617, -0.010053567588329315, 0.005302902776747942, 0.0003389539197087288, 0.025473758578300476, 0.01914425939321518, 0.04160194844007492, 0.01378471590578556, 0.018521221354603767, 0.013444877229630947, 0.0038585877045989037, -0.008920771069824696, -0.02003633603453636, -0.03681588172912598, -0.003971867263317108, 0.009529649280011654, 0.0009274770272895694, 0.0278667900711298, -0.021962089464068413, 0.00886413175612688, 0.00737025635316968, 0.024001123383641243, -0.009756208397448063, -0.028815507888793945, 0.025884397327899933, -0.01571754924952984, 0.0003212539595551789, -0.05389278754591942, 0.010103127919137478, 0.025006480515003204, -0.01532107125967741, 0.016241468489170074, 0.005062183830887079, 0.01611402817070484, -0.02414272353053093, -0.02044697478413582, -0.0025558718480169773, 0.0008637572173029184, 0.012014721520245075, 0.007349016610532999, 0.02891462668776512, 0.012595280073583126, 0.024935679510235786, -0.02679063379764557, -0.004258606117218733, 0.017232663929462433, 0.008368533104658127, 0.0013876755256205797, 0.02925446629524231, -0.0036461884155869484, -0.005710001569241285, 0.029424386098980904, -0.0038125677965581417, 0.007009177468717098, -0.0388265959918499, 0.024241842329502106, 0.004471005871891975, -0.0095154894515872, -0.032652854919433594, -0.032086458057165146, -0.033389173448085785, 0.017402583733201027, 0.002883320674300194, 0.011512042954564095, 0.01212800107896328, 0.012382879853248596, -0.007589735556393862, 0.03033062256872654, -0.01910177804529667, 0.017657462507486343, 0.00949424970895052, -0.018507061526179314, -0.006379059515893459, -0.011101404204964638, -0.00949424970895052, -0.012722719460725784, 0.023094885051250458, 0.028617268428206444, -0.024312641471624374, -0.016354747116565704, 0.018308822065591812, 0.029962463304400444, 0.011044764891266823, -0.008524293079972267, -0.014542273245751858, 0.028249109163880348, -0.024057762697339058, -0.006736598443239927, -0.009869487956166267, -0.018846899271011353, 0.005579022224992514, -0.011604082770645618, -0.012545719742774963, -0.017006104812026024, -0.012142160907387733, 0.001870883977971971, 0.035116687417030334, 0.008545532822608948, -0.02172137051820755, 0.018549541011452675, 0.001689459546469152, -0.012106761336326599, -0.014202434569597244, 0.008672972209751606, 0.034663569182157516, -0.008991571143269539, -0.011504963040351868, -0.02640831470489502, -0.011448323726654053, 0.0008947321330197155, 0.014060835354030132, -0.0009947367943823338, 0.0065277391113340855, 0.03372901305556297, -0.007037497591227293, 0.018280500546097755, -0.007695935200899839, -0.0010611115721985698, -0.04839872568845749, 0.040384192019701004, -0.01753002405166626, -0.014251993969082832, 0.028121670708060265, -0.007292376831173897, -0.036079563200473785, -0.034153811633586884, 0.024652481079101562, 0.013041318394243717, 0.00926769059151411, 0.02044697478413582, 0.01721850410103798, 0.0118235619738698, -0.015731709077954292, -0.022188648581504822, -0.030387261882424355, 0.01930001750588417, -0.004782524891197681, 0.00949424970895052, 0.021707210689783096, -0.007426896132528782, 0.008793331682682037, 0.005040943622589111, 0.00451702531427145, -0.001174391247332096, -0.020631054416298866, -0.0280650295317173, -0.007232196629047394, -0.0036745083052664995, 0.011356283910572529, -0.0009637619368731976, -0.03503172844648361, -0.0246100015938282, -0.008269413374364376, 0.019738975912332535, 0.0038444276433438063, 0.023774564266204834, 0.02187713049352169, -0.033502452075481415, -0.025360478088259697, 0.03075542114675045, -0.003460338804870844, -0.049616482108831406, -0.024340961128473282, -0.015675069764256477, -0.033389173448085785, -0.002228422788903117, -0.02429848164319992, 0.041460346430540085, 0.014237834140658379, -0.013076717965304852, -0.03055718168616295, -0.018889378756284714, -0.02560119703412056, -0.012085521593689919, -0.026266716420650482, 0.029622625559568405, 0.014669712632894516, 0.02987750433385372, -0.0035081286914646626, 0.01634058728814125, -0.010818205773830414, 0.0159582681953907, -0.02526135928928852, -0.01598658785223961, -0.018662819638848305, -0.012786438688635826, 0.01799730211496353, -0.030387261882424355, -0.02167889103293419, -0.019059298560023308, 0.014082075096666813, -0.013289117254316807, -0.011589922942221165, 0.014613073319196701, 0.0020921332761645317, -0.0018885839963331819, 0.008807491511106491, 0.008637572638690472, 0.03313429281115532, -0.00991904828697443, 0.0169211458414793, -0.03539988771080971, -0.0007057852344587445, -0.0019682336132973433, -0.0031045700889080763, -0.009933208115398884, 0.012913879007101059, 0.005844521336257458, -0.02279752679169178, -0.018818579614162445, -0.0025381718296557665, -0.002157623181119561, -0.00457366555929184, 0.004109926987439394, 0.018733620643615723, -0.0058586811646819115, -0.010959804989397526, 0.03118021972477436, 0.007327776402235031, 0.0027611912228167057, -0.012786438688635826, 0.008715451695024967, 0.002136383205652237, 0.006039220839738846, 0.028659747913479805, -0.004428525920957327, -0.009062371216714382, -0.010280126705765724, 0.023746244609355927, -0.004201966337859631, -0.009310170076787472, -0.019215058535337448, -0.018351301550865173, -0.02286832593381405, 0.00909069087356329, 0.010039407759904861, -0.008793331682682037, 0.021282412111759186, -0.012850158847868443, 0.023774564266204834, -0.0010558016365393996, -0.015136991627514362, 0.004435605835169554, -0.012913879007101059, 0.0099969282746315, 0.0033842292614281178, 0.012028881348669529, -0.05128735676407814, -0.005182543303817511, 0.025204719975590706, -0.016510507091879845, -0.006379059515893459, 0.21806329488754272, 0.007249896880239248, 0.01532107125967741, 0.03953459486365318, 0.014655552804470062, -0.00623745983466506, 0.01660962589085102, 0.002136383205652237, 0.0015514000551775098, 0.020362013950943947, -0.0027275611646473408, 0.004899344407021999, 0.0005190508090890944, -0.0004597560327965766, 0.006704738363623619, -0.005879921372979879, -0.012404120527207851, -0.004520565737038851, -0.005440962500870228, 0.008134894073009491, 0.001319530769251287, -0.0006438354612328112, -0.013919235207140446, -0.0015354701317846775, 0.0326811745762825, 0.040724027901887894, -0.003573618596419692, 0.0016558297211304307, 0.022542648017406464, 0.017020264640450478, -0.009473009966313839, -0.017445063218474388, 0.021339051425457, -0.014683873392641544, -0.017629142850637436, 0.006973777431994677, 0.004481625743210316, -0.006517119240015745, 0.00369574804790318, 0.022670086473226547, 0.00943760946393013, 0.005979040637612343, 0.018889378756284714, -0.02380288392305374, 0.03372901305556297, -0.0016983095556497574, -0.009834088385105133, -0.01963985711336136, 0.0023186926264315844, 0.008488892577588558, -0.02445424161851406, 0.0020195634569972754, 0.01934249885380268, 0.02487904019653797, -0.02418520301580429, -0.0019505337113514543, -0.00801453460007906, -0.008488892577588558, -0.02356216497719288, 0.020588574931025505, -0.01649634726345539, -0.00689235795289278, -0.017006104812026024, 0.02730039320886135, -0.03214309737086296, 0.023618804290890694, -0.006605618633329868, -9.862187289400026e-05, 0.005717081483453512, -0.005348922684788704, -0.01956905797123909, 0.002610741648823023, -0.021693050861358643, -0.0021098332945257425, -0.015604269690811634, -0.008474732749164104, -0.0019009739626199007, 0.026847273111343384, 0.03455029055476189, 0.03197317570447922, -0.011894362047314644, 0.005904701072722673, -0.013218317180871964, 0.00574894156306982, 0.001682379632256925, -0.026096796616911888, 0.03548484668135643, -0.026422474533319473, 0.0011540362611413002, -0.020135454833507538, -0.018011461943387985, -0.010478366166353226, -0.009041131474077702, -0.006644558627158403, 0.0037736278027296066, -0.014924592338502407, 0.013211237266659737, 0.02705967240035534, 0.009345569647848606, -0.015929948538541794, -0.04052579030394554, 0.05601678043603897, 0.015547630377113819, 0.0265215951949358, -0.015816669911146164, -0.021636411547660828, -0.014584753662347794, 0.02860310859978199, -0.0069489977322518826, 0.003748847870156169, -0.002281522611156106, -0.0319165363907814, 0.015887469053268433, 0.0015894549433141947, 0.0048462445847690105, 0.031236859038472176, 0.007851694710552692, -0.00739149609580636, -0.014478554017841816, -0.005363082978874445, 0.03248293697834015, -0.001155806239694357, -0.01795482262969017, 0.003851507557556033, -0.02299576625227928, -0.03514500707387924, -0.03409717231988907, 0.0031258100643754005, -0.009373890236020088, -0.013409476727247238, 0.029112866148352623, -0.03579636663198471, 0.01737426407635212, -0.013713915832340717, -0.021324891597032547, -0.00021173557615838945, 0.01425907388329506, -0.015929948538541794, -0.016807865351438522, -0.0071507771499454975, -0.004672784823924303, 0.014924592338502407, 0.010796965099871159, -0.011172204278409481, -0.0020461133681237698, 0.01418827474117279, 0.0006836603279225528, 0.02414272353053093, -0.01064828597009182, -0.030585501343011856, 0.007087057456374168, 0.01032260712236166, 0.012616519816219807, 0.008828731253743172, 0.042423222213983536, -0.002263822825625539, -0.01591578871011734, -0.021622249856591225, 0.036306124180555344, -0.01753002405166626, -0.0372973196208477, -0.01425907388329506, 0.028433188796043396, 0.012998837977647781, -0.02014961466193199, -0.02095673233270645, -0.18272005021572113, -0.0099969282746315, 0.0026372915599495173, -0.003759467974305153, -0.0011221764143556356, 0.0004730309883598238, 0.02203288860619068, 0.010088968090713024, -0.023845363408327103, -0.0018160141771659255, 0.003748847870156169, -0.018507061526179314, -0.00040776244713924825, -0.026464955881237984, -0.010414646938443184, 0.00034957387833856046, -0.029792545363307, 0.033615730702877045, 0.05706461891531944, -0.00874377228319645, 0.02526135928928852, -0.019979696720838547, 0.02145233191549778, -0.015236111357808113, 0.01564675010740757, 0.017133545130491257, -0.019469937309622765, 0.014655552804470062, 0.006187899969518185, -0.02714463323354721, -0.006010900717228651, -0.010039407759904861, 0.020362013950943947, 0.005667521618306637, -0.0028868606314063072, 0.0005110858473926783, -0.0065985387191176414, 0.005564861930906773, -0.03333253413438797, 0.01218464132398367, 0.012814759276807308, 0.008524293079972267, 0.018549541011452675, 0.01026596687734127, 0.0023788723628968, 0.021537290886044502, 0.014698033221065998, -0.020135454833507538, 0.023250645026564598, 0.005561321973800659, 0.003986027091741562, -0.012715639546513557, 0.0073773362673819065, -0.024709120392799377, 0.0019947835244238377, 0.007334856316447258, -0.02026289515197277, 0.03310597315430641, -0.0027842011768370867, -0.019469937309622765, -0.015972428023815155, -0.0165246669203043, -0.012212960980832577, 0.0008385347900912166, -0.004117006901651621, -0.013466116972267628, -0.008595092222094536, 0.015774188563227654, -0.01757250353693962, 0.012347480282187462, -0.0022142629604786634, -0.01726098544895649, 0.007589735556393862, -0.0028284508734941483, 0.018153062090277672, 0.007695935200899839, -0.026422474533319473, -0.007164936978369951, 0.011327963322401047, 0.025204719975590706, 0.00744813634082675, 0.02160809002816677, 0.009968607686460018, -0.023321446031332016, -0.01853538118302822, 0.018946019932627678, 0.027201272547245026, 0.006425079423934221, -0.01370683591812849, 0.00665163854137063, 0.010173927061259747, -0.00901281088590622, -0.0028886308427900076, -0.00459490530192852, 0.003918767441064119, 0.006081700325012207, 0.012269600294530392, -0.001539010088890791, 0.02275504730641842, -0.019243378192186356, 0.011313803493976593, 0.013274957425892353, -0.02990582399070263, -0.004152406472712755, 0.02129657194018364, 0.025728637352585793, 0.006166660226881504, 0.003534678602591157, 0.02864558808505535, 0.002355862408876419, -0.04018595069646835, 0.01247491966933012, 0.021735530346632004, 0.02203288860619068, -0.037042442709207535, 0.03270949423313141, 0.015136991627514362, 0.003971867263317108, -0.005646281875669956, 0.007356096524745226, 0.04933328181505203, -0.021962089464068413, -0.011243004351854324, 0.0036886681336909533, 0.01001816801726818, -0.01049252599477768, -0.11543194949626923, -0.009664168581366539, 0.016383066773414612, 0.01791234314441681, -0.01099520456045866, 0.014924592338502407, 0.009281850419938564, 0.013225398026406765, -0.006991477683186531, 0.028263268992304802, -0.0346069298684597, -0.016425548121333122, -0.01618482731282711, 0.000758000067435205, -0.025275519117712975, -0.016510507091879845, 0.022047048434615135, -0.027427831664681435, -0.01641138829290867, 0.012765198945999146, 0.008333133533596992, -0.016213148832321167, 0.010612886399030685, 0.005005544051527977, -0.035654764622449875, -0.018322981894016266, -0.024355122819542885, -0.006393219344317913, -0.01170320250093937, 0.013409476727247238, 0.03491844981908798, -0.005196703132241964, 0.018846899271011353, -0.022585127502679825, -0.005069263745099306, -0.017629142850637436, -0.007384416181594133, -0.020631054416298866, 0.04029922932386398, -0.021480651572346687, -0.0031629798468202353, 0.000407098705181852, 0.007540175691246986, -0.020900093019008636, -0.0032054597977548838, -0.003816107753664255, -0.006039220839738846, 0.02579943649470806, -0.00435418589040637, -0.019441617652773857, -0.028971267864108086, -0.011604082770645618, -0.014641392976045609, -0.04635969176888466, 0.02095673233270645, -0.011717362329363823, 0.010796965099871159, 0.029792545363307, -0.010237647220492363, 0.006584378890693188, -0.012290840968489647, -0.009288930334150791, -0.00532414298504591, 0.024652481079101562, 0.02436928264796734, 6.659603968728334e-05, 0.0021983329206705093, 0.02122577279806137, 0.013508596457540989, -0.003840887686237693, -0.01129964366555214, 0.010563326068222523, -0.018662819638848305, -0.00909069087356329, -0.02165057137608528, -0.001059341593645513, -0.0034744988661259413, -8.567878830945119e-05, 0.0029647403862327337, 0.011469563469290733, -0.018124742433428764, -0.00893493089824915, 0.01260943990200758, -0.022924967110157013, -0.00493120402097702, -0.0023912624455988407, 0.02044697478413582, -0.003350599203258753, 0.013416556641459465, -0.03222805634140968, 0.02033369429409504, -0.0013841355685144663, 0.008779171854257584, -0.003968327306210995, -0.011597002856433392, 0.003922307398170233, 0.012297920882701874, -0.018946019932627678, -0.0003002352896146476, 0.0033806890714913607, 0.0028514608275145292, -0.023859523236751556, -0.04386753961443901, 0.01285723876208067, -0.0018815039657056332, 0.01247491966933012, 0.01180232223123312, -0.016099868342280388, -0.016737066209316254, 0.003101030131801963, -0.00019503124349284917, 0.015406030230224133, -0.013841355219483376, 0.016255628317594528, -0.005933021195232868, -0.004141786601394415, -0.006927757989615202, -0.021055852994322777, 0.012347480282187462, 9.906436753226444e-05, 0.004371886141598225, -0.0018177841557189822, -0.01411039475351572, -0.00476836459711194, 0.03871331736445427, 0.03202981874346733, 0.020277054980397224, 0.03330421447753906, -0.033700693398714066, 0.02468080073595047, -0.002573571866378188, -0.030500542372465134, 0.030613820999860764, 0.022500168532133102, -0.0007509200950153172, 0.002170013030990958, -0.021084172651171684, -0.01629810780286789, -0.0028284508734941483, 0.005398482549935579, 0.026592394337058067, 0.004856864456087351, -0.020701853558421135, -0.009798688814043999, 0.005377242807298899, -0.036192845553159714, -0.010294287465512753, -0.0123050007969141, -0.012262520380318165, -0.019243378192186356, 0.0190309789031744, 0.025544557720422745, 0.012489080429077148, -0.0028904008213430643, -0.03503172844648361, -0.024425921961665154, 0.0012266060803085566, -0.04001603275537491, -0.00147529027890414, 0.01032260712236166, -0.003053240245208144, -0.010981044732034206, 0.034890126436948776, 0.011568683199584484, 0.015207791700959206, -0.01059164572507143, 0.04010099172592163, -0.014365273527801037, -0.03721236065030098, -0.011851881630718708, -0.0019841636531054974, -0.032086458057165146, -0.00402850704267621, -0.01493875216692686, 0.024241842329502106, 0.012991758063435555, 0.015944108366966248, 0.004216126631945372, -0.008241093717515469, -0.023548005148768425, -0.015236111357808113, 0.03044390305876732, 0.03163333982229233, -0.00665163854137063, 0.0013947555562481284, 0.02356216497719288, 0.05290159210562706, -0.011632402427494526, -0.0025452517438679934, 0.020588574931025505, 0.018464580178260803, 0.004286926239728928, -0.008800411596894264, 0.0050940434448421, 0.001449625357054174, -0.008984491229057312, 0.005522382445633411, 0.0064109195955097675, -0.010053567588329315, 0.017006104812026024, 0.024468401446938515, 0.01730346493422985, -0.0007814525160938501, -0.008906611241400242, -0.021268252283334732, 0.004194886423647404, 0.003550608642399311, 0.022075369954109192, -0.0019841636531054974, -0.025275519117712975, 0.010358006693422794, 0.0008199498988687992, -0.0007814525160938501, -0.02371792308986187, 0.012892638333141804, 0.023505523800849915, -0.0028656208887696266, 0.01059164572507143, 0.019498256966471672, -0.004750664811581373, -0.022924967110157013, -0.019540736451745033, 0.02167889103293419, -0.0005916206282563508, 0.03687252104282379, -6.1292967075132765e-06, 0.02221696823835373, 0.012382879853248596, 0.010520846582949162, -0.027399512007832527, -0.005706461612135172, -0.014407753944396973, -0.013579396530985832, -0.00841809343546629, 0.010598725639283657, -0.020730173215270042, 0.0006810053018853068, -0.024963999167084694, -0.012269600294530392, 0.010145607404410839, 0.006771998479962349, 0.10178175568580627, 0.022316088899970055, -0.019087618216872215, -0.01220588106662035, 0.00805701408535242, 0.009982768446207047, 0.012538639828562737, 0.006534819025546312, -0.008425173349678516, -0.02591271698474884, 0.052873268723487854, -0.016057388857007027, 0.001533700036816299, -0.022047048434615135, -0.016977785155177116, -0.008156133815646172, -0.012312080711126328, 0.017515864223241806, -0.012828919105231762, 0.0011035914067178965, 0.019753137603402138, 0.01247491966933012, 0.005058643873780966, -0.004694025032222271, -0.020092975348234177, -0.021353211253881454, 0.014683873392641544, 0.014344033785164356, -0.0288296677172184, -0.018422100692987442, 0.01963985711336136, -0.004000187385827303, -0.032737813889980316, -0.020404495298862457, 0.011618242599070072, -0.008920771069824696, -0.017983142286539078, -0.023859523236751556, 0.004648005124181509, 0.014924592338502407, -0.01645386777818203, -0.002639061538502574, -0.014768832363188267, -0.025247199460864067, 0.01386259589344263, 0.008481812663376331, -0.005058643873780966, -0.012913879007101059, -0.023944484069943428], "820c781f-0bc4-4d05-b91f-8df2f26be661": [-0.016348958015441895, -0.008664672262966633, -0.0027115934062749147, -0.03606712818145752, 0.016431808471679688, 0.030212434008717537, -0.015575696714222431, -0.020891869440674782, -0.006779846735298634, -0.02979818545281887, 0.00020572122593875974, 0.02990865148603916, 0.0033105260226875544, -0.0053230770863592625, -0.004598144441843033, 0.0237916000187397, 0.02579379640519619, 0.00760834151878953, -0.017315534874796867, 0.0006321585969999433, -0.022700749337673187, 0.005474967882037163, -0.016114218160510063, 0.0016561259981244802, -0.02693988010287285, -0.004905377980321646, 0.028362128883600235, -0.01420868095010519, -0.013973941095173359, 0.01527191512286663, 0.01070829201489687, -0.029963884502649307, -0.028472594916820526, -0.0017407014966011047, -0.005329981446266174, 0.006486421450972557, 0.007829273119568825, 0.005374858155846596, 0.016362765803933144, -0.007711903192102909, 0.02852782793343067, 0.01902775652706623, 0.008940836414694786, -0.012662157416343689, -0.004501486662775278, 0.03565287962555885, 0.009493166580796242, -0.01563093066215515, -0.02154085785150528, 0.00011855670163640752, -0.008609439246356487, 0.01727411150932312, -0.03518339991569519, 0.001646632794290781, 0.007131956983357668, 0.005730420351028442, 0.003331238403916359, 0.007615245413035154, 0.010231907479465008, -0.004857049323618412, -0.0038283350877463818, 0.0026718948502093554, -0.0025389904621988535, -0.011350374668836594, -0.013628735207021236, -0.024951493367552757, -0.013766816817224026, 0.006327626761049032, -0.0018019755370914936, -0.004007842391729355, 0.04520818591117859, 0.02478579431772232, 0.012068403884768486, -0.01750885136425495, 0.017495041713118553, -0.013007364235818386, -0.022203652188181877, -0.01326972059905529, -0.010052399709820747, -0.0012228924315422773, 0.0256833303719759, -0.013566597364842892, -0.016970328986644745, 0.0019659483805298805, 0.03043336607515812, 0.03363687917590141, 0.003942253068089485, 0.0031810738146305084, -0.00944483745843172, -0.02028430812060833, 0.009796947240829468, 0.016114218160510063, 0.01057711336761713, 0.0312894769012928, 0.016431808471679688, 0.005015844013541937, 0.0144019965082407, 0.01753646694123745, -0.02101614512503147, -0.003538361983373761, -0.010998264886438847, 0.00626203790307045, -0.015865670517086983, -0.00839541107416153, -0.011046593077480793, -0.019193455576896667, 0.025586672127246857, -0.0028358676936477423, 0.006286201998591423, 0.010176674462854862, -0.0175226591527462, 0.03280838206410408, 0.010632346384227276, -0.010425223037600517, -0.006092886906117201, 0.0068488880060613155, 0.025628097355365753, -0.026069961488246918, 0.007622149772942066, -0.016556082293391228, -0.009714098647236824, 0.01027333177626133, 0.04559481516480446, -0.0023318668827414513, 0.015313340350985527, 0.01764693297445774, -0.0002254627033835277, -0.018944907933473587, 0.019607704132795334, 0.008595630526542664, 0.016735589131712914, 0.015865670517086983, 0.023943491280078888, 0.016597507521510124, -0.031869422644376755, 0.0070387511514127254, -0.011674868874251842, 0.01654227450489998, 0.011750813573598862, -0.0294391717761755, 0.018337344750761986, 0.0300743505358696, 0.014678161591291428, -0.005657927133142948, 0.0029031827580183744, 0.04821838065981865, -0.006810915190726519, 0.029383938759565353, 0.0016267835162580013, 0.006275846157222986, 0.002816881285980344, -0.018323536962270737, -0.034244440495967865, -0.0067315180785954, 0.009030589833855629, 0.007380505092442036, -0.00512976199388504, 0.03054383024573326, -0.013062597252428532, 0.0016664821887388825, 0.0018606606172397733, 0.04424160718917847, -0.003735129488632083, -0.012185773812234402, 0.0004746583290398121, 0.04048576578497887, 0.01151607371866703, -0.028155004605650902, -0.01626610942184925, -0.020104799419641495, 0.0016768383793532848, 0.03228367120027542, -0.004018198233097792, 0.02517242543399334, -0.006762586534023285, 0.01817164570093155, -0.004273650702089071, 0.0003732540353666991, -0.01579662784934044, -0.025890452787280083, 0.019635319709777832, -0.01096374448388815, -0.0014576325193047523, 0.011681772768497467, -0.02289406582713127, -0.01502336747944355, 0.023487819358706474, 0.02466152049601078, 0.01641799882054329, -0.01046664733439684, 0.012876185588538647, 0.00444625411182642, -0.019731977954506874, -0.011495361104607582, -0.6243534684181213, -0.0024337025824934244, 0.019939102232456207, -0.0059789689257740974, -0.0039111846126616, 0.019842443987727165, 0.008471356704831123, -0.0027409361209720373, -0.009189384989440441, 0.02930109016597271, 0.012489554472267628, -0.013980844989418983, -0.01333185750991106, -0.006048009730875492, -0.01233076024800539, -0.022106995806097984, 0.010121441446244717, -0.013552789576351643, -0.02239696867763996, 0.0006675422191619873, -0.02565571293234825, 0.020450007170438766, -0.008616343140602112, 0.006624503992497921, -0.02141658402979374, -0.009541494771838188, 0.0031534573063254356, -0.004135568626224995, 0.0020746884401887655, 0.050289615988731384, -0.03170372173190117, -0.00045006239088252187, 0.014498653821647167, -0.005530200898647308, 0.03797266632318497, -0.03015720099210739, -0.00833327416330576, 0.023625902831554413, 0.006438092794269323, 0.01778501644730568, -0.023570669814944267, -0.00907891895622015, 0.024744369089603424, 0.03145517408847809, -0.006272393744438887, -0.003391649341210723, 0.021623706445097923, -0.00261666183359921, 0.005778749473392963, -0.006866148207336664, 0.007843081839382648, -0.004118307959288359, -0.012579308822751045, -0.02566952258348465, 0.006075626239180565, 0.0014507283922284842, 0.023460203781723976, -0.01471958588808775, 0.0054922280833125114, -0.0067280656658113, 0.00895464513450861, 0.01575520448386669, -0.00851968489587307, -0.03344356268644333, -0.028886841610074043, 0.014871476218104362, -0.02141658402979374, -0.0051021454855799675, -0.011785334907472134, -0.005392118357121944, 0.020974719896912575, -0.013304241001605988, -0.0018951812526211143, 0.0030792378820478916, 0.0015508381184190512, 0.027243660762906075, 0.03692323714494705, -0.013469940051436424, -0.0065796272829174995, 0.022990722209215164, -0.0009562207269482315, -0.0054231868125498295, -0.006634860299527645, -0.026014728471636772, 0.028362128883600235, 0.016997946426272392, -0.013318049721419811, -0.007484067231416702, -0.009237714111804962, -0.016224684193730354, 0.002421620534732938, 0.03145517408847809, -0.008126150816679, -0.034106358885765076, 0.01113634742796421, 0.05534343421459198, -0.013794433325529099, -0.008871795609593391, -0.009679577313363552, -0.0187930166721344, -0.01980101875960827, -0.00773261534050107, 0.010556400753557682, -0.0006300010136328638, 0.032117970287799835, 0.029825802892446518, -0.028237855061888695, 0.003600499127060175, 0.008402314968407154, -0.005668283440172672, -0.007504779379814863, 0.004680993966758251, -0.0038973763585090637, -0.024454396218061447, 0.01452627032995224, -0.02966010384261608, 0.004111404065042734, 0.02728508599102497, -0.004653377458453178, 0.008788946084678173, -0.0225212424993515, -0.015244299545884132, 0.0169150959700346, -0.00021920584549661726, 0.014132735319435596, 0.005775297060608864, 0.014774818904697895, -0.013359474018216133, -0.0036798964720219374, -0.0012401527492329478, -0.002323236782103777, -0.006593435537070036, -0.008423027582466602, -0.0015879478305578232, 0.03916017338633537, -0.007283847779035568, 0.025987111032009125, -0.007801656611263752, 0.0038801159244030714, -0.04545673355460167, 0.0010908511467278004, -0.0031776216346770525, 0.022714557126164436, -0.017108412459492683, 0.009099631570279598, -0.02954963780939579, 0.010411414317786694, -0.015575696714222431, 0.0009993715211749077, -0.011239908635616302, -0.019952910020947456, -0.019759593531489372, 0.010915415361523628, 0.01401536539196968, -0.002887648530304432, 9.040083386935294e-05, 0.002528634387999773, -0.022383160889148712, -0.0036522799637168646, -0.01070138718932867, -0.011046593077480793, -0.0013911803252995014, -0.008423027582466602, 0.013428514823317528, -0.0073183681815862656, -0.032615065574645996, -0.011654156260192394, 0.01563093066215515, -0.029245857149362564, -0.015230490826070309, -0.008146862499415874, -0.01603136956691742, -0.0042149657383561134, 0.01930392161011696, 0.018254496157169342, 0.004187349230051041, -0.01296593900769949, -0.01132275816053152, -0.013663255609571934, -0.002078140387311578, 0.018309729173779488, 0.022093186154961586, -0.006672833114862442, -0.029632486402988434, 0.04344072937965393, 0.002965319901704788, 0.028969692066311836, 0.016625123098492622, -0.0269122626632452, 0.010287140496075153, -0.006072174292057753, 0.01190270483493805, -0.031206626445055008, -0.0048501449637115, -0.028831608593463898, -0.005264392122626305, -0.010128345340490341, 0.007000778801739216, 0.005050364416092634, 0.026622289791703224, 0.03844214603304863, -0.0029359774198383093, 0.011053497903048992, 0.002996388589963317, -0.0014559065457433462, -0.028389746323227882, 0.01690128818154335, -0.01728791929781437, 0.008899412117898464, -0.01703936979174614, -0.0047638434916734695, -0.005216063465923071, 0.010390701703727245, -0.010659962892532349, 0.0040768831968307495, 0.03214558586478233, 0.012006266042590141, 0.02202414534986019, -0.022327927872538567, -0.0042253220453858376, 0.010597825981676579, 0.01840638555586338, 0.02456486225128174, -0.0019383319886401296, -0.0008897685911506414, 0.00019007908122148365, 0.015120024792850018, 0.0312894769012928, 0.007359792944043875, -0.02591807022690773, -0.012323856353759766, 0.013407803140580654, -0.010804949328303337, 0.014388187788426876, 0.03407873958349228, 0.009099631570279598, 0.012855472974479198, 0.0030723337549716234, 0.020629514008760452, -0.006199900526553392, -0.005443899426609278, 0.0038283350877463818, 0.01679082214832306, -0.03363687917590141, 0.016956521198153496, -0.0034106357488781214, 0.013532076962292194, 0.005140117835253477, -0.039132557809352875, 0.0019141675438731909, -0.01352517306804657, -0.007863793522119522, -0.01727411150932312, -0.011957937851548195, 0.027243660762906075, -0.03220082074403763, 0.014236297458410263, 0.008561110123991966, 0.01027333177626133, 0.014691969379782677, 0.012427417561411858, 0.004159732721745968, 0.014194873161613941, -0.006503682117909193, 0.012461937963962555, -0.013559693470597267, -0.0020125512965023518, -0.03554241359233856, -0.004218417685478926, -0.0087613295763731, 0.02029811590909958, -0.0238054096698761, 0.012158157303929329, -0.025849029421806335, 0.008188287727534771, 0.0011167415650561452, -0.013614926487207413, 0.006217160727828741, 0.014664352871477604, 0.01964912749826908, -0.012047691270709038, -0.028721142560243607, 0.02318403869867325, 0.011909608729183674, 0.0035228277556598186, 0.005274748429656029, -0.013725392520427704, 0.002109208842739463, 0.0020591539796441793, 0.0168874803930521, 0.0001784283813321963, -0.005554365459829569, -0.009679577313363552, -0.0014049885794520378, 0.019483428448438644, 0.001960770459845662, 0.03104092739522457, -0.007028395310044289, -0.013504460453987122, -0.005309268832206726, 0.026401357725262642, 0.009189384989440441, -0.035901427268981934, -0.018806826323270798, 0.029604870826005936, -0.008492068387567997, -0.010777332819998264, -0.016749396920204163, -0.0007857752498239279, -0.021195651963353157, -0.007035299204289913, 0.0066003394313156605, -0.029218239709734917, -0.02091948688030243, -0.007718807086348534, -0.011723197065293789, -0.013808242045342922, 0.002017729450017214, 0.019055373966693878, 0.017812632024288177, -0.0042149657383561134, -0.02140277437865734, -0.0013868652749806643, -0.0037213212344795465, 0.06395977735519409, -0.0016940986970439553, 0.005067624617367983, 0.005067624617367983, -0.0006757408264093101, -0.009037494659423828, -0.028500210493803024, -0.018489236012101173, 0.03976773843169212, 0.021996529772877693, -0.01742600090801716, 0.008809658698737621, 0.023736367002129555, 0.0017027287976816297, 0.015409997664391994, -0.006741873919963837, -0.007760231848806143, -0.012696678750216961, -0.01589328609406948, 0.002057428006082773, 0.0012306595453992486, 0.010570209473371506, 0.035901427268981934, 0.012130540795624256, 0.030654296278953552, 0.013166158460080624, 0.028362128883600235, 0.004670637659728527, -0.0027961689047515392, -0.020450007170438766, -0.027395552024245262, 0.0067280656658113, 0.0027754565235227346, 0.01132275816053152, -0.038994476199150085, 0.04197705537080765, -0.010004071518778801, -0.02027049846947193, -0.017066987231373787, 0.014664352871477604, -0.008416123688220978, 0.030019117519259453, -0.0031361968722194433, -0.014609119854867458, 0.01866874285042286, -0.018130222335457802, -0.004373760428279638, 0.04217037186026573, -0.005526748951524496, -0.004066527355462313, 0.01019738707691431, 0.01045283954590559, -0.012696678750216961, 0.01804737187922001, 0.006058366037905216, -0.026456590741872787, -0.002252469537779689, -0.014691969379782677, -0.02076759561896324, -0.01096374448388815, -0.02340497076511383, -0.010984456166625023, -0.010411414317786694, -0.01792309805750847, -0.01779882423579693, -0.032863616943359375, -0.016473231837153435, 0.009092727676033974, -0.024233464151620865, 0.0031396490521728992, -0.024385355412960052, -0.02869352698326111, -0.023998724296689034, 0.014553886838257313, 0.025006726384162903, 0.024205848574638367, 0.0030464434530586004, 0.004981323145329952, -0.00976242683827877, 0.0016984137473627925, 0.003738581435754895, -0.0269122626632452, 0.008050205186009407, -0.02140277437865734, 0.01891729235649109, -0.009886701591312885, -0.006755682174116373, 0.0016060711350291967, 0.0033122519962489605, 0.028251662850379944, -0.014733393676578999, -0.012731199152767658, 0.011743909679353237, 0.008064012974500656, 0.00788450613617897, 0.015851860865950584, 0.012717390432953835, -0.007960451766848564, 0.027754565700888634, -0.03736510127782822, 0.022189844399690628, -0.014153447933495045, -0.022466009482741356, -0.011543690226972103, 0.031372327357530594, 0.031372327357530594, -0.016583697870373726, -0.013663255609571934, 0.0016319615533575416, -0.014512462541460991, 0.014153447933495045, -0.0028082511853426695, -0.01083256583660841, -0.014001557603478432, 0.0005160830332897604, -0.012876185588538647, 0.004680993966758251, 0.015479039400815964, 0.014871476218104362, -0.02301833964884281, 0.006058366037905216, -0.018254496157169342, 0.0438273586332798, 0.014346763491630554, -0.004518747329711914, 0.006931737530976534, 0.009348180145025253, -0.013380186632275581, -0.031234243884682655, -0.019718170166015625, 0.0023456751368939877, -0.006372503470629454, -0.02604234404861927, -0.02317022904753685, -0.009865988977253437, -0.010300948284566402, -0.0147057780995965, 0.02464771270751953, -0.007166477385908365, 0.0010528784478083253, -0.038801159709692, 0.00394915696233511, 0.013242104090750217, -0.017978331074118614, 0.01201317086815834, -0.03706132248044014, -0.028155004605650902, -0.011612731032073498, 0.007504779379814863, 0.04907449334859848, -0.01208911556750536, -0.011529882438480854, -0.04545673355460167, -0.023874450474977493, -0.007780944462865591, -0.007760231848806143, 0.011440128087997437, 0.006824723444879055, 0.03239413723349571, 0.0363156758248806, 0.016321342438459396, 0.022355543449521065, 0.025255274027585983, 0.019428197294473648, -0.01365635171532631, -0.004967514891177416, -0.02253505028784275, -0.028748759999871254, 0.0004082061641383916, -0.017232686281204224, -0.010045495815575123, -0.0032121422700583935, 0.0019555923063308, -0.014388187788426876, 0.003638471709564328, -0.008975356817245483, 0.007421929854899645, -0.007642861921340227, -0.03515578433871269, -0.0338025763630867, 0.007401217706501484, 0.043026480823755264, 0.004819076508283615, 0.007870698347687721, -0.03015720099210739, -0.012627637013792992, 0.019566278904676437, -0.01904156617820263, 0.031869422644376755, -0.0032363065984100103, 0.03181418776512146, -0.003904280485585332, 0.004618857055902481, 0.018503043800592422, -0.0015853587538003922, -0.002116112969815731, -0.007967355661094189, -0.0338301919400692, -0.0051539260894060135, 0.024095382541418076, 0.01126062124967575, 0.012924514710903168, -0.0036626362707465887, -0.002922169165685773, 0.009030589833855629, 0.02253505028784275, -0.009700289927423, -0.02630470134317875, 0.00927223451435566, -0.015437614172697067, -0.013249007984995842, -0.0375860333442688, -0.017826439812779427, 0.026332316920161247, -0.018599702045321465, 0.009672673419117928, 0.004705158527940512, 0.023073572665452957, -0.019317731261253357, -0.03189703822135925, -0.004387568682432175, -0.0037213212344795465, 0.008726809173822403, 0.01420868095010519, 0.01320758368819952, 0.03139994293451309, 0.014263913966715336, -0.014291530475020409, -0.012503363192081451, 0.006099790800362825, 0.009727906435728073, 0.0016440438339486718, 0.04984775185585022, -0.016804629936814308, -0.009631249122321606, 0.007276943419128656, -0.004501486662775278, 0.012033882550895214, -0.04647854343056679, 0.02930109016597271, 0.01853066124022007, -0.01177152618765831, -0.041783738881349564, -0.025600479915738106, -0.004791459999978542, 0.009714098647236824, -0.016804629936814308, 0.018074989318847656, 0.009023685939610004, 0.013925611972808838, -0.002521730260923505, 0.010570209473371506, -0.012116732075810432, 0.012717390432953835, -0.008464451879262924, 0.0032760053873062134, 0.0018295920453965664, -0.004201157484203577, -0.0066003394313156605, -0.010425223037600517, 0.008478260599076748, 0.007953546941280365, -0.02705034613609314, -0.010307852178812027, 0.012040787376463413, 0.012751911766827106, 0.0006425147294066846, 0.001646632794290781, -0.024095382541418076, 0.027202237397432327, -0.005506036337465048, -0.019759593531489372, -0.0022283049765974283, -0.018461618572473526, 0.01495432574301958, -0.01902775652706623, -0.01483005192130804, -0.010404510423541069, -0.00871300045400858, 2.1359624952310696e-05, 0.002792716957628727, 0.00482598040252924, -0.016694163903594017, 0.018226878717541695, 0.008188287727534771, -0.013794433325529099, -0.021306117996573448, 0.004960610996931791, 0.022466009482741356, -0.00587885919958353, -0.013276624493300915, -0.017108412459492683, -0.01952485367655754, -0.0003583670186344534, -0.0021057568956166506, -0.006745326332747936, 0.012296239845454693, 0.036122359335422516, -0.010998264886438847, 0.021858446300029755, 0.010439030826091766, 0.02492387592792511, -0.04857739433646202, 0.03446537256240845, -0.0153409568592906, 0.009645056910812855, 0.02366732619702816, -0.009127248078584671, -0.035128168761730194, -0.038110747933387756, 0.015575696714222431, 0.01615564338862896, 0.012192677706480026, -0.00316208740696311, 0.021734172478318214, 0.017218878492712975, -0.005654475186020136, -0.02039477415382862, -0.024951493367552757, 0.003433074103668332, -0.003060251707211137, -0.005412830971181393, 0.01929011382162571, -0.00958982389420271, 0.018613509833812714, 0.008754425682127476, -0.0040251025930047035, 0.003742033615708351, -0.01727411150932312, -0.02664990723133087, -0.02154085785150528, -0.007104340475052595, -0.011343470774590969, 0.011951033025979996, -0.02091948688030243, -0.019718170166015625, -0.017232686281204224, 0.027478400617837906, 0.004839788656681776, 0.012130540795624256, 0.015851860865950584, -0.0144019965082407, -0.02053285576403141, 0.01728791929781437, -0.007988068275153637, -0.041894204914569855, -0.03272553160786629, -0.015120024792850018, -0.032753150910139084, -0.0005014117923565209, -0.023874450474977493, 0.046782322227954865, 0.0026080317329615355, -0.010100728832185268, -0.03921540826559067, -0.0051021454855799675, -0.030985694378614426, 0.006907572969794273, -0.0187654010951519, 0.030709529295563698, 0.024841027334332466, 0.026000918820500374, 0.00033657590392977, 0.027519825845956802, 0.0022403872571885586, 0.03592904657125473, -0.043136946856975555, -0.02329450473189354, -0.026843221858143806, -0.020809020847082138, 0.03529386594891548, -0.0450701005756855, -0.036370910704135895, -0.0050538163632154465, 0.009672673419117928, -0.01864112727344036, 0.0074081216007471085, 0.021347541362047195, 0.003997486084699631, 3.9617789298063144e-05, -0.0027771827299147844, 0.004221870098263025, 0.016694163903594017, -0.001413618796505034, 0.0039767734706401825, -0.012724295258522034, 0.01514764130115509, 0.02844497747719288, -0.002152359811589122, -0.011336566880345345, 0.0021281952504068613, 0.03684039041399956, -0.021747980266809464, -0.004874309524893761, -0.023874450474977493, -0.0010899880435317755, -0.01565854623913765, 0.00869919266551733, -0.009465550072491169, -0.0003529731766320765, -0.014940517954528332, 0.032504603266716, -0.007145765237510204, -0.006904121022671461, -0.00283068954013288, 0.025103384628891945, 0.01119848433881998, 0.002418168354779482, 0.02155466563999653, -0.013476843945682049, -0.006914477329701185, -0.013552789576351643, 0.031979888677597046, -0.008423027582466602, -0.01382895465940237, -0.021568473428487778, -0.01679082214832306, -0.03678515553474426, -0.004504939075559378, 0.010266427882015705, -0.015244299545884132, 0.003959513269364834, -0.010059304535388947, 0.010811853222548962, -0.0027789087034761906, -0.008719904348254204, -0.0031810738146305084, -0.019731977954506874, -0.013242104090750217, 0.014691969379782677, 0.019566278904676437, -0.0362880602478981, -0.010266427882015705, 0.02343258634209633, -0.013083308935165405, 0.005865050945430994, 0.21883301436901093, -0.001414481783285737, 0.004353048279881477, 0.04658900946378708, 0.01357350219041109, -0.012986651621758938, 0.008298753760755062, 0.01941438764333725, 0.007553108502179384, 0.015202874317765236, -0.0021350993774831295, 0.00064122024923563, -0.005713160149753094, 0.0006848024786449969, 0.0256833303719759, -0.020836636424064636, -0.030516214668750763, -0.017205068841576576, -0.007394313346594572, 0.002288716146722436, 0.016183258965611458, -0.005606146063655615, -0.023625902831554413, 0.0075876289047300816, 0.03479677066206932, 0.02718842774629593, -0.010659962892532349, 0.013918708078563213, 0.019593894481658936, 0.014733393676578999, -0.02455105446279049, -0.0066797370091080666, 0.02352924458682537, -0.021085185930132866, -0.0147057780995965, 0.0024992916733026505, 0.009237714111804962, -0.026580866426229477, -0.002024633577093482, 0.009182481095194817, 0.0009993715211749077, -0.016335150226950645, 0.008975356817245483, -0.019621511921286583, 0.01665274053812027, -0.0037558418698608875, 0.0033847452141344547, -0.012427417561411858, 0.007573820650577545, 0.022093186154961586, -0.011219196952879429, 0.003496937220916152, 0.01001787930727005, 0.004591240547597408, -0.025144807994365692, -0.016956521198153496, -0.016680356115102768, -0.017094602808356285, -0.03769649937748909, 0.024122998118400574, -0.017577892169356346, 0.0005139255081303418, -0.01865493506193161, 0.03352641314268112, -0.03559764847159386, 0.006493325810879469, -0.005885763093829155, 0.03104092739522457, 0.009002973325550556, -0.011357278563082218, -0.011046593077480793, 0.000842302746605128, -0.030985694378614426, -0.006341435015201569, -0.011426320299506187, -0.005178090650588274, -0.010749716311693192, 0.04769366607069969, 0.041369494050741196, 0.01603136956691742, 0.007746423594653606, 0.013608022592961788, -0.010162865743041039, -0.007159573491662741, 0.005267844069749117, -0.00431852787733078, 0.0338025763630867, -0.027077961713075638, -0.0035935949999839067, -0.01339399442076683, -0.01371848862618208, -0.006938641425222158, -0.018806826323270798, -0.005533652845770121, -0.005813269875943661, -0.009424124844372272, 0.002627018140628934, 0.022949298843741417, 0.008574917912483215, -0.021582281216979027, -0.022327927872538567, 0.046257611364126205, 0.016003752127289772, 0.02565571293234825, -0.01877920888364315, -0.01021119486540556, -0.009030589833855629, 0.02489626035094261, -0.006507134065032005, -0.0018244140082970262, -0.01716364547610283, -0.04446253925561905, 0.024454396218061447, 0.008623247034847736, 0.010404510423541069, 0.034382522106170654, 0.028224047273397446, 0.0006977477460168302, -0.013946324586868286, -0.01108801830559969, 0.02979818545281887, -0.02664990723133087, 0.0008457548101432621, -0.00544735137373209, -0.027713142335414886, -0.02554524689912796, -0.0024975656997412443, 0.0035124714486300945, -0.0288039930164814, -0.02604234404861927, 0.02680179849267006, -0.018723975867033005, 0.021458007395267487, -0.02090567909181118, 0.0006947271758690476, 0.0036108552012592554, 0.007401217706501484, -0.014871476218104362, -0.013497556559741497, 0.0040941438637673855, 0.002016003243625164, 0.0044151851907372475, 0.012510267086327076, 0.004998583346605301, 0.017743591219186783, 0.006866148207336664, 0.0011288237292319536, 0.007463354617357254, -0.008851082995533943, -0.02301833964884281, 0.011688676662743092, 0.02317022904753685, -0.007283847779035568, 0.012510267086327076, 0.04045815020799637, -0.007615245413035154, -0.0312618613243103, -0.01589328609406948, 0.02143039181828499, -0.015285723842680454, -0.035735730081796646, -0.0009337823721580207, 0.031372327357530594, 0.01364944688975811, -0.020436197519302368, -0.005871954839676619, -0.1767454892396927, 0.014622928574681282, 0.0078223692253232, 0.017108412459492683, 0.0022006884682923555, 0.01690128818154335, 0.012434321455657482, 0.015258107334375381, -0.013324953615665436, -0.022686941549181938, -0.0025113739538937807, -0.002968772081658244, -0.011163963936269283, -0.015851860865950584, 0.0027202237397432327, -0.00794664304703474, -0.017715973779559135, 0.023335928097367287, 0.0375860333442688, -0.006168832071125507, 0.02664990723133087, -0.008982261642813683, 0.013097117654979229, -0.030267667025327682, 0.015368573367595673, 0.02028430812060833, -0.02392968349158764, 0.03526625037193298, -0.01019738707691431, -0.02891445904970169, -0.013290433213114738, -0.004470418207347393, 0.02466152049601078, 0.011750813573598862, 0.00504346052184701, 0.0017588248010724783, 0.0033778410870581865, 0.010908511467278004, -0.024261081591248512, 0.011978649534285069, 0.023474011570215225, 0.017094602808356285, 0.02167893946170807, 0.011094922199845314, 0.016238491982221603, 0.029245857149362564, 0.011115634813904762, -0.010135249234735966, 0.017577892169356346, -0.00741502596065402, 0.033360712230205536, -0.01626610942184925, 0.007635957561433315, -0.013773721642792225, -0.009244618006050587, 0.003869759850203991, -0.007131956983357668, 0.013200678862631321, -0.005578529555350542, -0.010107632726430893, -0.010411414317786694, -0.015561888925731182, -0.01977340318262577, 0.01164725236594677, 0.001173700555227697, -0.041756123304367065, -0.03358164429664612, 0.014429613016545773, -0.01917964778840542, 0.010425223037600517, 0.0033864714205265045, -0.01102588139474392, 0.007877602241933346, 0.003607403254136443, 0.02091948688030243, 0.017260301858186722, -0.0300467349588871, 0.006293106358498335, 0.025117192417383194, 0.01196484174579382, 0.014816243201494217, -0.0034348000772297382, -0.0028962786309421062, -0.006627955939620733, -0.0313447080552578, -0.004957159049808979, 0.017356960102915764, 0.013601118698716164, -0.00529546057805419, 0.019359154626727104, 0.03545956686139107, -0.019138222560286522, 0.02180321328341961, -0.01213744468986988, 0.018378769978880882, 0.011806046590209007, 0.02489626035094261, -0.00958982389420271, 0.0024147164076566696, -0.019000140950083733, 0.007932835258543491, 0.010535688139498234, -0.036260444670915604, 0.002117839176207781, 0.034106358885765076, 0.021471817046403885, 0.02644278295338154, -0.013387090526521206, 0.026898454874753952, -0.009099631570279598, -0.03529386594891548, 0.023722559213638306, 0.025710945948958397, 0.012848569080233574, -0.023998724296689034, 0.04683755710721016, 0.011488457210361958, -0.015106217004358768, -0.008416123688220978, -0.006814367603510618, 0.05318934842944145, -0.031758956611156464, -0.005488776136189699, -0.0011020703241229057, -0.013835858553647995, -0.008816562592983246, -0.11250955611467361, -0.024979108944535255, 0.03195227310061455, 0.010176674462854862, -0.005619954317808151, 0.005119405686855316, -0.0014636736596003175, 0.015810437500476837, -0.007566916756331921, 0.014049885794520378, -0.028638293966650963, -0.009790043346583843, -0.013097117654979229, -0.013041884638369083, -0.007069820072501898, -0.008001876063644886, 0.015589505434036255, -0.03371972590684891, -0.0053714062087237835, 0.012558596208691597, 0.015479039400815964, -8.926812370191328e-06, 0.005174638703465462, 0.000311332696583122, -0.030599063262343407, -0.03833167999982834, -0.02554524689912796, 0.00015113552217371762, 0.012551692314445972, 0.010556400753557682, 0.04534626752138138, -0.010204290971159935, 0.02930109016597271, -0.01866874285042286, -0.006227517034858465, -0.01902775652706623, -0.007553108502179384, -0.02453724667429924, 0.035238634794950485, -0.022631708532571793, -0.011357278563082218, 0.0073183681815862656, 0.000906165863852948, -0.024702945724129677, -0.008844179101288319, -0.0026667166966944933, -0.0031085803639143705, 0.027768375352025032, 0.0021730719599872828, -0.0027357579674571753, -0.021195651963353157, -0.030847612768411636, 0.0030136487912386656, -0.04081716388463974, 0.028334513306617737, 0.00024272300652228296, 0.0019003592897206545, 0.013497556559741497, -0.018434002995491028, 0.01140560768544674, -0.008036396466195583, -0.0002733600267674774, -0.014167256653308868, 0.004069979302585125, 0.019939102232456207, 0.0035935949999839067, -0.0074081216007471085, 0.013725392520427704, 0.010846373625099659, -0.004960610996931791, -0.0084575479850173, -0.0014006735291332006, -0.028748759999871254, -0.0068178195506334305, -0.016942713409662247, 0.005985872820019722, -0.0067280656658113, -0.006255133543163538, 0.00958982389420271, 0.019193455576896667, -0.022355543449521065, -0.010439030826091766, 0.004967514891177416, -0.03327786177396774, 0.012448130175471306, -0.009990262798964977, 0.00544735137373209, -0.00046559664770029485, 0.013193774968385696, -0.0306819137185812, 0.001610386185348034, 0.013311144895851612, 0.023225462064146996, 0.00869919266551733, -0.011716293171048164, 0.007131956983357668, -0.005147022195160389, -0.00457052793353796, 0.005074528977274895, -0.003990581724792719, -0.006586531177163124, -0.00019612019241321832, -0.046892788261175156, -0.0038870200514793396, -0.0010338921565562487, 0.013918708078563213, 0.02352924458682537, -0.03670230880379677, -0.009417220950126648, -0.003293265588581562, 0.0054231868125498295, -0.0023404969833791256, -0.02203795500099659, 0.005778749473392963, -0.0068178195506334305, -0.02203795500099659, -0.03153802454471588, -0.01692890375852585, 0.011619635857641697, -0.0018002495635300875, 0.01679082214832306, -0.005084885284304619, -0.011923416517674923, 0.005240228027105331, 0.024247271940112114, 0.04269508272409439, 0.0011305498192086816, 0.040237218141555786, -0.01868255063891411, 0.029107773676514626, 0.0017407014966011047, -0.01992529258131981, 0.02076759561896324, 0.018447810783982277, 0.0004496308683883399, 0.0016613041516393423, -0.007684286683797836, -0.025600479915738106, -0.01320758368819952, 0.01779882423579693, 0.02542097307741642, 0.018116412684321404, -0.00789831392467022, -0.010556400753557682, 0.027602676302194595, -0.027216045185923576, -0.021471817046403885, -0.026884647086262703, -0.023211654275655746, -0.02866590954363346, 0.021209459751844406, 0.005947900004684925, 0.027699332684278488, -0.001241015736013651, -0.03526625037193298, -0.02304595522582531, -0.008360890671610832, -0.021195651963353157, 0.0057097082026302814, 0.019759593531489372, -0.001680290442891419, 0.0037213212344795465, 0.04020959883928299, 0.002430250635370612, 0.000939823454245925, -0.007698094937950373, 0.04145234078168869, -0.0052022552117705345, -0.054017841815948486, -0.017964523285627365, 0.015009558759629726, -0.02242458425462246, -0.009997166693210602, -0.018958715721964836, 0.02652563340961933, 0.0009933303808793426, 0.0162799172103405, -0.0035487182904034853, -0.004511842969805002, -0.02265932410955429, -0.006634860299527645, 0.03145517408847809, 0.0206433217972517, -0.005830530077219009, -0.015382381156086922, 0.017439808696508408, 0.0400439016520977, -0.004608500748872757, -0.006286201998591423, 0.021361351013183594, 0.023888258263468742, 0.0032483888790011406, -0.01579662784934044, -0.00613431166857481, 0.0026805249508470297, 0.007339080795645714, -0.0010580564849078655, 0.00807782169431448, -0.010818757116794586, -0.0033122519962489605, 0.0162799172103405, 0.02039477415382862, 0.020450007170438766, 0.0006610695854760706, -0.026774181053042412, 0.003196608042344451, -0.009534590877592564, 0.011881992220878601, -0.018834441900253296, -0.027989305555820465, 0.018848249688744545, 0.012247910723090172, 4.568586155073717e-05, -0.027644099667668343, 0.01422248873859644, 0.017481233924627304, -0.002053976058959961, 0.01422248873859644, 0.003296717768535018, -0.010749716311693192, -0.029135391116142273, 0.0031655393540859222, 0.016321342438459396, 0.008927028626203537, 0.014761010184884071, -0.010238811373710632, 0.025835219770669937, 0.00833327416330576, 0.02203795500099659, -0.02855544351041317, -0.006911024916917086, -0.0012867555487900972, -0.008208999410271645, -0.00914796069264412, 0.011226100847125053, -0.012082211673259735, -0.003807622706517577, -0.020311923697590828, -0.0076704784296453, 0.029715336859226227, -0.01208911556750536, 0.08920124173164368, 0.022617900744080544, -0.01978721097111702, -0.00020496609795372933, -0.0024337025824934244, 0.009279138408601284, 0.015561888925731182, 0.01764693297445774, -0.008188287727534771, -0.010998264886438847, 0.0413418747484684, -0.015202874317765236, -0.012717390432953835, -0.0004360383900348097, -0.01866874285042286, 0.0156447384506464, -0.013131638057529926, -0.0008466178551316261, -0.00598242087289691, 0.007221710402518511, 0.014622928574681282, -0.005668283440172672, -0.006942093838006258, -0.007497875485569239, -0.025490013882517815, -0.007774040102958679, 0.008561110123991966, 0.026995113119482994, -0.0093965083360672, -0.02078140340745449, 0.030378133058547974, -0.0175226591527462, -0.022189844399690628, -0.012399801053106785, -0.007704998832195997, -0.003156909253448248, -0.012620733119547367, -0.027257470414042473, 0.0036626362707465887, 0.013690872117877007, 0.010715195909142494, 0.013186871074140072, -0.028859226033091545, -0.012800239957869053, 0.00028436348657123744, 0.011440128087997437, -0.0012936596758663654, -0.012448130175471306, -0.007698094937950373], "68814d94-f4cb-45b6-bd96-e057286d2f56": [-0.013284576125442982, -0.001907413825392723, -0.009369631297886372, -0.02713533490896225, 0.016322629526257515, 0.020783042535185814, -0.025782020762562752, -0.026099635288119316, -0.004004706162959337, -0.03209288418292999, 0.011116511188447475, 0.0328938253223896, 0.001988543663173914, -0.01405099406838417, -0.008976064622402191, 0.015632161870598793, 0.016474531963467598, 0.002594428136944771, -0.01735832914710045, 0.0044604139402508736, -0.021017801016569138, -0.002226754557341337, -0.015604543499648571, 0.007011687848716974, -0.031706225126981735, 0.002672105561941862, 0.03341858088970184, -0.011081987991929054, -0.01896021142601967, 0.03043576516211033, 0.01498312409967184, -0.018021177500486374, -0.041234660893678665, -0.0026807363610714674, -0.009645817801356316, -0.0002649665402714163, 0.011026750318706036, 0.005875870119780302, 0.008244170807301998, -0.014320275746285915, 0.02339300699532032, 0.02437346987426281, 0.004353391472250223, -0.005972535815089941, -0.0072498987428843975, 0.03700900822877884, 0.01789689250290394, -0.005665278062224388, -0.019167350605130196, 0.0003288346924819052, -0.007574418094009161, 0.005882774945348501, -0.0337776243686676, -0.004726243671029806, 0.003105373354628682, -0.0036422109697014093, 0.008617022074759007, 0.007588227279484272, 0.01636405661702156, -0.007878223434090614, -0.008520357310771942, 0.00995652750134468, -0.0015250679571181536, -0.008865590207278728, -0.020617330446839333, -0.03656710684299469, -0.018352601677179337, 0.013988852500915527, -0.0031830507796257734, -0.013008389621973038, 0.048001233488321304, 0.023862523958086967, 0.011130320839583874, -0.007726320531219244, 0.012138402089476585, -0.01930544525384903, -0.03051862120628357, -0.024691084399819374, -0.005606588441878557, 0.001588936080224812, 0.03015957958996296, -0.009493915364146233, -0.006017415784299374, 0.003928754478693008, 0.026279157027602196, 0.034385234117507935, 0.02090732753276825, 0.006825261749327183, -0.013291480951011181, -0.015093598514795303, 0.013029104098677635, 0.008244170807301998, 0.01875307224690914, 0.023972999304533005, 0.013981947675347328, 0.012269590049982071, 0.022564446553587914, 0.009535343386232853, -0.01814546063542366, 0.003381559858098626, 0.006638835649937391, 0.0018746167188510299, -0.021418271586298943, -0.011945071630179882, -0.006286697927862406, -0.007747034542262554, 0.004122085403650999, -0.001897056819871068, 0.006407529581338167, 0.005751586519181728, -0.022550636902451515, 0.023710621520876884, 0.00577920489013195, -0.007781557738780975, -0.005896584130823612, -0.009493915364146233, 0.02303396351635456, -0.033473819494247437, -0.004740052856504917, -0.02143208123743534, 0.0018245578976348042, -0.0038320892490446568, 0.04847075045108795, -0.0024632394779473543, 0.008092268370091915, 0.0050127869471907616, 0.0005135344690643251, -0.014306467026472092, 0.012428398244082928, -0.006897760555148125, 0.010571043007075787, -0.006997878663241863, 0.017220236361026764, 0.0182421263307333, -0.027894848957657814, 0.007919651456177235, -0.016764527186751366, 0.009673436172306538, 0.010971513576805592, -0.03363953158259392, 0.0015466450713574886, 0.015024552121758461, 0.00849273893982172, -0.007850605063140392, -0.0074984668754041195, 0.04637173190712929, 0.010778183117508888, 0.027356283739209175, 0.006576693616807461, -0.004550174344331026, 0.0005851704045198858, -0.009217727929353714, -0.029662443324923515, -0.006279793102294207, -0.002332050818949938, 0.01160674262791872, -0.014651699922978878, 0.03231383487582207, -0.01582549326121807, 0.013788617216050625, -0.0009459391585551202, 0.03253478184342384, 2.961454083560966e-05, -0.0025668093003332615, 0.0005463316338136792, 0.039715636521577835, 0.005561708007007837, -0.035987116396427155, -0.015728827565908432, -0.014389323070645332, 0.003276263829320669, 0.039080407470464706, 0.00024231060524471104, 0.02278539538383484, 0.0004250684578437358, 0.02321348525583744, 0.01138579286634922, 0.008154409937560558, -0.022523019462823868, -0.03877660259604454, 0.036429014056921005, -0.026817720383405685, 0.011247700080275536, 0.01582549326121807, -0.02215016633272171, -0.005382186733186245, 0.035904258489608765, 0.015576925128698349, -5.512943971552886e-05, -0.011095797643065453, 0.02118351310491562, -0.005064572207629681, -0.026721054688096046, -0.013899091631174088, -0.6182160973548889, -0.008810353465378284, 0.01405099406838417, -0.0009537069126963615, 0.0025046675000339746, 0.01886354573071003, 0.010329379700124264, -0.014485987834632397, -0.01169650349766016, 0.029137687757611275, -0.0043672011233866215, -0.007394896820187569, -0.013042912818491459, -0.01418218296021223, -0.014120040461421013, -0.022039692848920822, 0.004995525348931551, -0.010356998071074486, -0.013291480951011181, -0.0044086286798119545, -0.02089351788163185, 0.008568690158426762, -0.004553626757115126, -0.0040081581100821495, -0.014513607136905193, -0.02383490465581417, 0.030491001904010773, 0.003324596444144845, -0.002982815494760871, 0.040792763233184814, -0.03977087140083313, 0.02384871430695057, 0.0195816308259964, -0.015701210126280785, 0.03319763019680977, -0.01851831190288067, -0.008893209509551525, 0.02687295712530613, 0.016695480793714523, 0.015963586047291756, -0.023779667913913727, -0.014347895048558712, 0.004746957682073116, 0.014665509574115276, 0.0019143185345456004, -0.005485756788402796, 0.012725298292934895, 0.0015630436828359962, 0.005730872508138418, -0.003189955372363329, -0.0009752839687280357, -0.004015062935650349, -0.015369785018265247, -0.009100348688662052, -0.0032382879871875048, -0.004287797026336193, 0.011454840190708637, -0.013540049083530903, -0.012849582359194756, -0.006114081479609013, 0.004305059090256691, 0.00827178917825222, 0.004764219280332327, -0.047559335827827454, -0.033860478550195694, 0.006138247437775135, -0.03032528981566429, -0.0062590790912508965, -0.015853112563490868, 0.0006969396490603685, 0.019995911046862602, -0.014223610982298851, -0.013850758783519268, 0.0005217337748035789, -0.0018262839876115322, 0.026914386078715324, 0.04010229557752609, -0.014845030382275581, -0.013111960142850876, 0.011772454716265202, 0.006248722318559885, -0.006480028387159109, -0.022661112248897552, -0.027687707915902138, 0.04153846576809883, 0.007436324842274189, -0.012642442248761654, -0.021501127630472183, 0.01628120057284832, -0.008251075632870197, -0.0007659863331355155, 0.029607204720377922, -0.010571043007075787, -0.026127254590392113, 0.015273120254278183, 0.047642190009355545, 0.00044125126441940665, -0.005423614755272865, -0.012262686155736446, -0.025243457406759262, -0.03869374468922615, -0.0074018011800944805, 0.024884413927793503, 0.005585874430835247, 0.02580964006483555, 0.0391632616519928, -0.01858736015856266, -0.0025840711314231157, 0.013546953909099102, -0.010336284525692463, -0.012172925285995007, -0.0034074524883180857, 0.004273987840861082, -0.01786927506327629, 0.006486933212727308, -0.02927578240633011, 2.961454083560966e-05, 0.024497753009200096, -0.0022094929590821266, 0.0016838753363117576, -0.016971668228507042, -0.01600501500070095, 0.015977395698428154, -0.009390344843268394, 0.00210074451752007, 0.012711488641798496, 0.014444559812545776, -0.015328356996178627, -0.005126714240759611, -0.007581322453916073, -0.0051681422628462315, -0.01321552973240614, -0.0027497829869389534, -0.00805774424225092, 0.05170213431119919, 0.00831321720033884, 0.018711643293499947, -0.002616868121549487, 0.008706782944500446, -0.03593187779188156, 0.008347740396857262, -0.010964608751237392, 0.020341144874691963, -0.010819611139595509, -0.002090387511998415, -0.02855769544839859, 0.0049195741303265095, -0.009438677690923214, 0.011599837802350521, 0.0008268337114714086, -0.022481590509414673, -0.004526008386164904, 0.006452410016208887, 0.0164607223123312, -0.0011263235937803984, -0.005751586519181728, 0.007961079478263855, -0.024138709530234337, -0.01219363883137703, -0.020147813484072685, -0.016861192882061005, -0.0038666126783937216, -0.004191131796687841, 0.012946248054504395, -0.0038182800635695457, -0.019015448167920113, -0.018297363072633743, 0.014044089242815971, -0.018725452944636345, -0.016502151265740395, -0.018366409465670586, -0.008775829337537289, -0.01593596860766411, 0.02563011832535267, 0.013367432169616222, 0.013222434557974339, -0.017537850886583328, -0.005326949525624514, -0.02847483940422535, -0.012076259590685368, 0.012269590049982071, 0.022481590509414673, -0.005213022232055664, -0.027383903041481972, 0.028309129178524017, 0.0008544523734599352, 0.018352601677179337, 0.017303092405200005, -0.03684329614043236, 0.014596463181078434, -0.006808000151067972, 0.018877355381846428, -0.02723200060427189, -0.0018573550041764975, -0.03515855595469475, -0.010439854115247726, -0.0015958407893776894, 0.010861039161682129, -9.499309089733288e-05, 0.03543474152684212, 0.02661058120429516, 0.004615768790245056, -0.0018452717922627926, 0.007740130182355642, 0.007753939367830753, -0.023876333609223366, 0.018283553421497345, -0.01884973607957363, 0.011116511188447475, -0.0068494281731545925, -0.012739107944071293, -0.007809176575392485, 0.009003683924674988, -0.010930085554718971, -0.0029569228645414114, 0.019512584432959557, 0.013015294447541237, 0.019181160256266594, -0.00046218105126172304, -0.011882929131388664, 0.0015932515962049365, 0.006566336844116449, 0.022191595286130905, -0.01093699038028717, -0.0008699878235347569, 0.009480105713009834, 0.008554880507290363, 0.03416428342461586, 0.005078381393104792, -0.025146791711449623, -0.02215016633272171, 0.015286928974092007, -0.009680340997874737, 0.016433103010058403, 0.04938216879963875, 0.007039306219667196, 0.027245810255408287, 0.008561785332858562, 0.022992536425590515, -0.004885050933808088, 0.0029621014837175608, -0.003542093327268958, 0.01832498237490654, -0.01920877955853939, 0.025768211111426353, -0.0003620634088292718, 0.03261763975024223, 0.004591602366417646, -0.020506856963038445, 0.016143107786774635, -0.01955401338636875, -0.006704430095851421, -0.009487010538578033, 0.0001580521056894213, 0.02598915994167328, -0.03399857133626938, 0.025063935667276382, 0.02198445424437523, 0.021735886111855507, 0.016322629526257515, 0.010646994225680828, 0.0042567262426018715, 0.008251075632870197, -0.010039383545517921, 0.03308715671300888, -0.012614823877811432, 0.0029983508866280317, -0.03311477601528168, -0.009673436172306538, 0.010363902896642685, 0.01383694913238287, -0.027328666299581528, 0.009141776710748672, -0.012138402089476585, -0.0014180457219481468, 0.0005817180499434471, -0.013774807564914227, -0.0020023530814796686, 0.004208393394947052, 0.020064957439899445, -0.02045161835849285, -0.033584292978048325, 0.027604851871728897, 0.012904820032417774, 0.003987444099038839, -0.006866689771413803, -0.01262863352894783, 0.005036953371018171, 0.00012957036960870028, 0.01600501500070095, 0.005775752477347851, -0.0025737141259014606, -0.004463866353034973, 0.0034885823260992765, 0.01654357835650444, 0.011006036773324013, 0.028309129178524017, -0.003452332690358162, -0.019001638516783714, 0.005361472722142935, 0.030573857948184013, 0.004836718086153269, -0.023365387693047523, -0.026085825636982918, 0.03612520918250084, -0.00045786562259308994, -0.029054831713438034, -0.021846361458301544, -0.0074018011800944805, -0.014416941441595554, 0.003611139953136444, -0.0076365601271390915, -0.010791991837322712, 0.0030432313214987516, -0.008886304683983326, -0.004125537816435099, -0.0016208701999858022, 0.0012074533151462674, 0.0023113368079066277, 0.01868402399122715, -0.0015837576938793063, -0.023779667913913727, -0.0019229493336752057, 0.009362726472318172, 0.0703171119093895, 0.0056756348349153996, -0.0026099635288119316, 0.013760997913777828, -0.01565978117287159, -0.009942717850208282, -0.03656710684299469, -0.027908658608794212, 0.05656301975250244, 0.01931925304234028, 0.0010546876583248377, 0.006901212967932224, 0.00921082403510809, -0.001223851926624775, 0.021846361458301544, -0.006417886354029179, -0.00907273031771183, -0.009480105713009834, -0.013132673688232899, 0.020672569051384926, 0.017662134021520615, -0.0021076491102576256, 0.018338792026042938, 0.005879322532564402, 0.027549615129828453, 0.023517290130257607, 0.025782020762562752, 0.026444869115948677, -0.0016131025040522218, -0.02046542800962925, -0.02329634130001068, 0.00814060028642416, -0.00032926624407991767, 0.021929217502474785, -0.042643215507268906, 0.038748983293771744, -0.0002766181714832783, -0.020520666614174843, -0.018380219116806984, 0.013940519653260708, -0.0182283166795969, 0.02703866921365261, -0.002083482686430216, -0.018366409465670586, 0.012835772708058357, -0.015507878735661507, -0.010129144415259361, 0.04156608507037163, -0.00376994744874537, 0.00038730856613256037, 0.014444559812545776, 0.01681976579129696, -0.022978726774454117, 0.029110070317983627, 0.0021525295451283455, -0.011144130490720272, -0.00374578102491796, -0.024773940443992615, -0.01752404123544693, -0.010695327073335648, -0.01600501500070095, -0.012331732548773289, -0.002523655304685235, -0.025395359843969345, -0.01170340832322836, -0.033943336457014084, -0.021570174023509026, -0.009535343386232853, -0.02883388288319111, -0.0018987830262631178, -0.022826824337244034, -0.019264016300439835, -0.02126636914908886, 0.01067461259663105, 0.014624081552028656, 0.020216859877109528, 0.01017747726291418, -0.0025633571203798056, 0.010336284525692463, 0.004546722397208214, 0.0032313833944499493, -0.028971975669264793, 0.007726320531219244, -0.024884413927793503, 0.0004820319591090083, -0.020299715921282768, -0.019001638516783714, -0.0034799512941390276, -0.0019402110483497381, 0.015052170492708683, -0.006590503267943859, -0.018269745633006096, 0.017234044149518013, 0.005199213046580553, 0.013056722469627857, 0.021059229969978333, 0.012248876504600048, 0.0050576673820614815, 0.02580964006483555, -0.04957549646496773, 0.017234044149518013, -0.010840324684977531, -0.025740593671798706, -0.024953460320830345, 0.021943027153611183, 0.01619834452867508, -0.017924511805176735, -0.008748210966587067, -0.019526394084095955, -0.010867943055927753, 0.023641575127840042, 0.000822518253698945, -0.011351269669830799, -0.019512584432959557, -0.00018318940419703722, -0.018394028767943382, -0.00329179922118783, 0.012166020460426807, 0.013243148103356361, -0.012925533577799797, -0.005033500958234072, -0.01173793151974678, 0.029579587280750275, 0.022302068769931793, 0.004056490957736969, 0.0082303611561656, 0.0076503693126142025, -0.017910702154040337, -0.03640139475464821, -0.011834596283733845, 0.007892032153904438, -0.005302783101797104, -0.021556366235017776, -0.014403131790459156, -0.017289282754063606, -0.004332677461206913, -0.023075392469763756, 0.013609095476567745, -0.00031373073579743505, 0.015770256519317627, -0.03524141386151314, 0.00970105454325676, 0.01770356297492981, -0.024773940443992615, 0.017952129244804382, -0.03753376007080078, -0.027149144560098648, -0.006072653457522392, 0.011330556124448776, 0.02659677155315876, -0.02375204861164093, -0.004902312532067299, -0.04109656810760498, -0.02963482402265072, -0.00992200430482626, -0.011806977912783623, 0.012200543656945229, 0.021142086014151573, 0.03143003582954407, 0.04910597950220108, 0.01138579286634922, 0.02633439376950264, 0.022923490032553673, 0.01610168069601059, -0.013174101710319519, 0.001462926040403545, -0.016032632440328598, -0.03024243377149105, 0.006438600365072489, -0.0028171034064143896, -0.006210746709257364, -0.009694150649011135, -0.0022302069701254368, -0.016529768705368042, -0.0037492334377020597, -0.0026462129317224026, 0.012117687612771988, -0.0030760285444557667, -0.02232968807220459, -0.039991822093725204, 0.020175432786345482, 0.039549924433231354, 0.006148604676127434, -0.0018556287977844477, -0.03261763975024223, 0.00587241817265749, 0.019899245351552963, -0.011896738782525063, 0.03165098652243614, 0.004077204968780279, 0.030297672376036644, -0.0018193793948739767, 0.018974021077156067, 0.01325005292892456, -0.003485129913315177, 0.004588150419294834, -0.02633439376950264, -0.04101371392607689, 0.005927655380219221, 0.012062450870871544, 0.019512584432959557, 0.007353468798100948, -0.010653899051249027, 0.001370576093904674, -0.0013196541694924235, 0.018808308988809586, -0.014651699922978878, -0.026679627597332, 0.024428706616163254, -0.02545059658586979, -0.0072360895574092865, -0.025146791711449623, -0.009052016772329807, 0.019636869430541992, 0.0010037657339125872, 0.003517927136272192, -0.009694150649011135, 0.019277825951576233, -0.021666839718818665, -0.026002969592809677, 0.004809099715203047, -0.00813369546085596, -0.004733148030936718, 0.010356998071074486, 0.014651699922978878, 0.023089202120900154, 0.023351578041911125, -0.008209647610783577, -0.020700186491012573, 0.00911415833979845, 0.006086462642997503, -0.004629577975720167, 0.04606792703270912, -0.015701210126280785, -0.0053062355145812035, -0.0015561389736831188, -0.008382263593375683, -0.010308665223419666, -0.04465937614440918, 0.030794808641076088, 0.012131497263908386, -0.0034592372830957174, -0.029303399845957756, -0.024138709530234337, -0.010695327073335648, 0.01662643440067768, -0.0056618256494402885, 0.016405485570430756, 0.005765395704656839, -0.007615846116095781, -0.003859708085656166, 0.02500869892537594, -0.011820787563920021, 0.01143412571400404, 0.0022906227968633175, 0.0029223996680229902, 0.00025914073921740055, 0.004560531582683325, 0.0016856014262884855, -0.009383440017700195, 0.0061727710999548435, 0.008913923054933548, -0.020520666614174843, -0.012911723926663399, 0.015853112563490868, 0.016129298135638237, 0.00978391058743, -0.003528284141793847, -0.02705247886478901, 0.030573857948184013, -0.01930544525384903, -0.011088892817497253, 0.0050576673820614815, -0.016654053702950478, 0.011758645065128803, -0.02471870183944702, -0.026348203420639038, -0.018463075160980225, -0.004898860119283199, -0.00013981947267893702, 0.0032382879871875048, -0.0024615132715553045, -0.01912592351436615, 0.017372138798236847, 0.00903130229562521, -0.012207448482513428, -0.017662134021520615, -0.0021300893276929855, 0.012794344685971737, -0.012241971679031849, -0.005810276139527559, -0.009328203275799751, -0.012573395855724812, 0.008996779099106789, 0.0020161622669547796, -0.008023221045732498, 0.007325849961489439, 0.028861502185463905, -0.012559586204588413, 0.018559740856289864, 0.0213492251932621, 0.01814546063542366, -0.045874595642089844, 0.022302068769931793, -0.009749387390911579, 0.011855310760438442, 0.015397404320538044, -0.006124438252300024, -0.039467066526412964, -0.03698138892650604, 0.013029104098677635, 0.0031243611592799425, 0.01664024405181408, 0.00849273893982172, 0.01947115734219551, 0.01151698175817728, -0.016598815098404884, -0.029054831713438034, -0.024124901741743088, -0.0003245192638132721, -0.007180851884186268, 0.009314393624663353, 0.019788771867752075, -0.011958880349993706, 0.0217911247164011, 0.012172925285995007, 0.0015716744819656014, 0.0042567262426018715, 0.0027912110090255737, -0.021749695762991905, -0.01804879494011402, -0.005796466488391161, -0.004891955293715, 0.020051147788763046, -0.015797873958945274, -0.036069970577955246, -0.01904306747019291, 0.014706937596201897, 0.0034903082996606827, 0.018338792026042938, 0.029469111934304237, -0.016792146489024162, -0.03051862120628357, 0.013236243277788162, -0.008554880507290363, -0.04681363329291344, -0.030739570036530495, -0.010833419859409332, -0.03151289373636246, -0.021680649369955063, -0.010329379700124264, 0.029855772852897644, 0.018352601677179337, -0.015328356996178627, -0.031706225126981735, -0.015521688386797905, -0.02331015095114708, -0.010515805333852768, -0.029331019148230553, 0.021501127630472183, 0.03159574791789055, 0.03333572298288345, 0.002195683540776372, 0.030656713992357254, 0.0027169857639819384, 0.02792246639728546, -0.03372238576412201, -0.03283859044313431, -0.0075260852463543415, -0.03143003582954407, 0.02836436592042446, -0.03344620019197464, -0.03792042285203934, 0.00012018433335470036, 0.013457193039357662, -0.021335415542125702, 0.012656251899898052, 0.031070994213223457, 0.0061727710999548435, -0.0031985861714929342, 0.00736037315800786, 0.000222891234443523, 0.019015448167920113, 0.007132519502192736, 0.00907273031771183, -0.015949776396155357, -0.0062314607203006744, 0.015687400475144386, -0.008126791566610336, -0.029192926362156868, -0.0017883083783090115, 0.011979594826698303, -0.024083472788333893, -0.016239773482084274, -0.008465119637548923, 0.0007871318375691772, -0.0244701337069273, -0.006083010230213404, -0.008506547659635544, 0.006196937058120966, 0.00036378955701366067, 0.016861192882061005, -0.0030121603049337864, -0.017316900193691254, -0.011406507343053818, 0.01974734291434288, 0.011261509731411934, -0.005544446408748627, 0.02063114009797573, -0.02402823604643345, -0.003942564129829407, -0.0025840711314231157, 0.033059537410736084, -0.0033090608194470406, -0.014361703768372536, -0.026306774467229843, -0.010522710159420967, -0.03416428342461586, -0.0031001947354525328, -0.0033194178249686956, -0.009935813955962658, 0.01219363883137703, -0.015977395698428154, 0.00836155004799366, -0.010101525112986565, -0.016571197658777237, 0.0014344442170113325, -0.023061582818627357, -0.011123416014015675, 0.0024994888808578253, 0.017579277977347374, -0.04369272291660309, -0.0034212616737931967, 0.035904258489608765, -0.024884413927793503, 0.007981793023645878, 0.22569970786571503, -0.00011209293006686494, -0.0026341299526393414, 0.0417870357632637, 0.006811452563852072, -0.019139733165502548, 0.011986499652266502, 0.005371829494833946, 0.0074984668754041195, 0.0029310304671525955, 0.0025875233113765717, 0.016419295221567154, -0.02963482402265072, -0.006511099636554718, 0.015355976298451424, -0.007298231590539217, -0.027521995827555656, -0.022371115162968636, -0.01481741201132536, 0.0032382879871875048, 0.008195837959647179, 0.004084109794348478, -0.03192717209458351, -0.0027497829869389534, 0.025685355067253113, 0.02614106424152851, -0.0037216146010905504, 0.008285598829388618, 0.005530637223273516, 0.0084444060921669, -0.03220336139202118, -0.0021214585285633802, 0.026127254590392113, -0.010350093245506287, -0.011820787563920021, 0.0013887007953599095, 0.01636405661702156, -0.014596463181078434, -0.001588936080224812, 0.009514628909528255, -0.0022008621599525213, -0.020009720697999, 0.024677274748682976, -0.030380528420209885, 0.02916530705988407, -0.003029421903192997, 0.00805774424225092, -0.0001015740999719128, 0.004608863964676857, 0.026928195729851723, -0.009666531346738338, 0.009279870428144932, 0.0020748518873006105, 0.00409101415425539, -0.017634514719247818, -0.016598815098404884, -0.01085413433611393, -0.012462921440601349, -0.030049104243516922, 0.02197064459323883, -0.02463584579527378, 0.0002489995094947517, -0.021197322756052017, 0.028889119625091553, -0.03568331152200699, 0.0029206734616309404, -0.014582653529942036, 0.02828150987625122, 0.002855079248547554, 0.003669829573482275, -0.020120196044445038, -0.015452641062438488, -0.02891673892736435, -0.009901289828121662, -0.002387288026511669, -0.02277158573269844, 0.003257276024669409, 0.03664996474981308, 0.03543474152684212, 0.02009257674217224, 0.019636869430541992, 0.025422977283596992, -0.01244911178946495, -0.017482612282037735, 0.005520279984921217, -0.005330401938408613, 0.03159574791789055, -0.02071399614214897, 0.007277517579495907, -0.021390654146671295, -0.018891165032982826, -0.008872495032846928, -0.012490539811551571, 0.004888503346592188, 0.0008052565972320735, -0.01232482772320509, 0.010405330918729305, 0.023972999304533005, 0.005561708007007837, -0.033750005066394806, -0.03165098652243614, 0.0507354810833931, 0.0070979963056743145, 0.028889119625091553, -0.021045420318841934, -0.009314393624663353, -0.0010728123597800732, 0.022205404937267303, 0.005219927057623863, 0.0037492334377020597, -0.020120196044445038, -0.0320376493036747, 0.0231168195605278, 0.01396813802421093, 0.014693127945065498, 0.030214816331863403, 0.02963482402265072, 0.0015604543732479215, -0.010702231898903847, -0.005561708007007837, 0.030049104243516922, -0.004546722397208214, 0.004253273829817772, 0.0023061581887304783, -0.021998263895511627, -0.0249120332300663, 0.00015449189231730998, 0.0024874056689441204, -0.02107303962111473, -0.03264525905251503, 0.021666839718818665, -0.007532990071922541, 0.02551964297890663, -0.02259206585586071, 0.001679559820331633, 0.003511022310703993, -0.0017175355460494757, -0.018380219116806984, -0.00890011340379715, 0.01084722951054573, 0.006873594596982002, 0.02038257196545601, 0.007892032153904438, -0.0033988214563578367, 0.019802579656243324, 0.0031019209418445826, 8.053644705796614e-05, 0.011337460950016975, -0.0037009005900472403, -0.011351269669830799, 0.006949545815587044, 0.03015957958996296, -0.005351115949451923, 0.011296032927930355, 0.04076514393091202, -0.0023579432163387537, -0.03673281893134117, -0.014582653529942036, 0.016239773482084274, -0.013602190650999546, -0.0328938253223896, 0.010598661378026009, 0.03764423727989197, 0.014416941441595554, -0.024539180099964142, -0.00740870600566268, -0.17642800509929657, 0.008513452485203743, 0.005340758711099625, 0.002364847809076309, 0.010232714004814625, 0.019636869430541992, 0.02197064459323883, 0.002608237322419882, -0.011399602517485619, -0.009017492644488811, 0.007905841805040836, -0.0010443306528031826, -0.012746012769639492, -0.005496113561093807, 0.007318945601582527, -0.005451233591884375, -0.01768975332379341, 0.03311477601528168, 0.035103317350149155, -0.0034937607124447823, 0.022647302597761154, -0.012166020460426807, 0.011910547502338886, -0.02766009047627449, 0.008734402246773243, 0.02605820819735527, -0.006890856195241213, 0.03076718933880329, -0.011289128102362156, -0.03582140430808067, -0.019540203735232353, -0.009003683924674988, 0.032866206020116806, 0.01955401338636875, 0.005699801258742809, -0.00020541380217764527, -0.00020552167552523315, 0.012621728703379631, -0.02605820819735527, 0.00890011340379715, 0.026375822722911835, 0.015176454558968544, 0.016585007309913635, 0.00246841786429286, 0.02144589088857174, 0.02331015095114708, 0.02420775778591633, -0.005551351234316826, 0.01503836177289486, 0.000901921943295747, 0.028447221964597702, -0.02010638639330864, 0.002295801183208823, -0.008568690158426762, 0.015369785018265247, -0.0004785796336364001, -0.009010588750243187, 0.015355976298451424, 0.0011142403818666935, -0.023876333609223366, -0.01321552973240614, -0.001862533506937325, -0.0026652009692043066, -0.0024994888808578253, -0.017496421933174133, -0.02774294652044773, -0.023986807093024254, 0.022191595286130905, -0.012607919052243233, 0.01245601661503315, 0.004236012231558561, -0.0033435842487961054, -0.005143975839018822, -0.0029534706845879555, 0.031264323741197586, 0.013629809953272343, -0.030711952596902847, -0.0038458986673504114, 0.01984400860965252, 0.0117862643674016, 0.023006346076726913, 0.015797873958945274, 0.01009462121874094, -0.00571361044421792, -0.02818484418094158, -0.003966730087995529, 0.02027209848165512, 0.005116357002407312, -0.0008950172341428697, 0.004211845807731152, 0.015314548276364803, -0.022564446553587914, 0.021238751709461212, -0.022274451330304146, 0.013443383388221264, 0.00482981326058507, 0.03584902361035347, -0.01075746864080429, 0.017220236361026764, -0.01770356297492981, 0.010467472486197948, 0.029911011457443237, -0.03609758988022804, -0.0058586085215210915, 0.0320376493036747, 0.011289128102362156, 0.022453971207141876, 0.000491094309836626, 0.029607204720377922, 0.006362649146467447, -0.0409032367169857, 0.0231306292116642, 0.02855769544839859, 0.008582498878240585, -0.020244479179382324, 0.03623568266630173, 0.011144130490720272, -0.008755115792155266, 0.002133541740477085, -0.0007905841921456158, 0.04637173190712929, -0.024442516267299652, -0.016654053702950478, 0.00924534723162651, -0.02376585826277733, -0.0026358559262007475, -0.11887072026729584, -0.026099635288119316, 0.019139733165502548, 0.008078458718955517, -0.009307488799095154, 0.006680263672024012, -0.007595132105052471, 0.019512584432959557, 0.002549547702074051, 0.02766009047627449, -0.03631854057312012, -0.006790738552808762, -0.013484811410307884, 0.0006960766040720046, 0.0028291866183280945, -0.02152874693274498, 0.0045191035605967045, -0.04209084063768387, -0.014292657375335693, 0.013719569891691208, 0.007332754787057638, -0.013560762628912926, 0.011510076932609081, 0.0005355431349016726, -0.03060147725045681, -0.030546240508556366, -0.02267492190003395, -0.005654920823872089, 0.014927886426448822, 0.014430751092731953, 0.043278444558382034, -0.008547975681722164, 0.030021484941244125, -0.01734451949596405, 0.0024304422549903393, -0.01770356297492981, -0.004947192966938019, -0.0182283166795969, 0.023710621520876884, -0.029690060764551163, -0.0009873671224340796, 0.012518158182501793, 0.0046433876268565655, -0.03441285341978073, -0.0005066298181191087, -0.004412081092596054, -0.006286697927862406, 0.039881348609924316, 0.013098150491714478, -0.008264884352684021, -0.03352905437350273, -0.021128276363015175, -0.0032089431770145893, -0.04476984962821007, 0.03209288418292999, 0.0021525295451283455, 0.0027376997750252485, 0.013588381931185722, -0.024663465097546577, 0.00751918088644743, -0.025685355067253113, -0.015107408165931702, -0.01662643440067768, 0.015466450713574886, 0.007167042698711157, 0.005106000229716301, -0.003804470645263791, 0.008630831725895405, 0.011586029082536697, 0.0023596694227308035, -0.0006076105637475848, 0.009908194653689861, -0.020796852186322212, 0.0007474300218746066, -0.02455298975110054, 0.0073879919946193695, -0.006669906899333, -0.0023337770253419876, 0.0014939969405531883, 0.022550636902451515, -0.025685355067253113, -0.004581245593726635, 0.006203841883689165, -0.015853112563490868, 0.0131257688626647, -0.004898860119283199, 0.009569866582751274, -0.000251157209277153, 0.020686376839876175, -0.028971975669264793, 0.008817257359623909, 0.02020305022597313, 0.021059229969978333, 0.012435302138328552, -0.007291326764971018, 0.013705761171877384, -0.009279870428144932, -0.018352601677179337, 0.011468648910522461, -0.0030812069308012724, -0.0008220867021009326, 0.0001490976137574762, -0.03143003582954407, 0.008727497421205044, 0.014914077706634998, 0.011882929131388664, 0.015121216885745525, -0.03496522456407547, -0.005841346923261881, -0.010536519810557365, 0.007436324842274189, -0.005313139874488115, -0.0038804220966994762, 0.005099095404148102, -0.020617330446839333, -0.016778336837887764, -0.019526394084095955, -0.01983019895851612, 0.008603213354945183, -0.0020731259137392044, 0.0100048603489995, -0.004653744399547577, 0.001223851926624775, 0.0026807363610714674, 0.02035495452582836, 0.042643215507268906, -0.0018090223893523216, 0.02161160297691822, -0.018255935981869698, 0.024166328832507133, 4.582432302413508e-05, -0.018891165032982826, 0.02927578240633011, 0.012787440791726112, 0.012842677533626556, -0.001838367199525237, -0.004211845807731152, -0.027701517567038536, -0.023683002218604088, 0.024166328832507133, 0.007588227279484272, 0.01849069446325302, 0.0061209858395159245, -0.003267633030191064, 0.03167860582470894, -0.033059537410736084, -0.022826824337244034, -0.03789280354976654, -0.02064494974911213, -0.02340681664645672, 0.022260641679167747, 0.0013058448676019907, 0.03239668905735016, -0.008106077089905739, -0.034744277596473694, -0.02463584579527378, -0.004729695618152618, -0.03725757449865341, 0.0058447993360459805, 0.031070994213223457, -0.01063318457454443, -0.0011712039122357965, 0.03515855595469475, 0.0025668093003332615, 0.010218905285000801, -0.03449570760130882, 0.03529664874076843, -0.009625103324651718, -0.05551350861787796, 0.0005847388529218733, 0.002192231360822916, -0.020948754623532295, -0.005054214969277382, -0.00974248256534338, 0.02571297436952591, 0.003276263829320669, 0.020700186491012573, -0.010184381157159805, -0.00577920489013195, -0.0200235303491354, -0.006352292373776436, 0.021293988451361656, 0.025657737627625465, -0.010467472486197948, -0.008589403703808784, 0.01574263721704483, 0.02295110747218132, -0.0063695539720356464, -0.004750409629195929, 0.019871627911925316, 0.015286928974092007, 0.013146483339369297, -0.023254912346601486, -0.00012611802958417684, -0.0022474685683846474, 0.01965067721903324, 0.00023777941532898694, 0.022895870730280876, -0.025464406237006187, 0.004001253750175238, 0.023172058165073395, 0.02224683202803135, 0.006808000151067972, -0.002456334652379155, -0.018628787249326706, 0.0033798336517065763, -0.0032400141935795546, 0.015715017914772034, -0.01726166345179081, -0.016681671142578125, 0.026030588895082474, 0.019070686772465706, -0.0022785395849496126, -0.024332040920853615, 0.010156762786209583, 0.009852957911789417, -0.007705606520175934, 0.0115653146058321, 0.015190264210104942, -0.015521688386797905, -0.023793477565050125, -0.003345310455188155, 0.021376844495534897, 0.021583983674645424, 0.011793168261647224, -0.01629501022398472, 0.02757723443210125, -0.0048954077064991, 0.015148836188018322, -0.010343188419938087, -0.0011444482952356339, -0.013767902739346027, 0.004798742476850748, -0.002228480763733387, 0.009549152106046677, -0.006721691694110632, 0.0022802657913416624, -0.004636482801288366, -0.009707959368824959, 0.030711952596902847, -0.005254450254142284, 0.08937399089336395, 0.033750005066394806, -0.023006346076726913, -0.003621496958658099, 0.005955273751169443, 0.01706833392381668, 0.012124592438340187, 0.009514628909528255, -0.0049057649448513985, -0.00827178917825222, 0.028695790097117424, -0.004760766867548227, -0.009645817801356316, 0.0007344837649725378, 0.0005351115833036602, 0.012870296835899353, -0.007767748553305864, 0.002842996036633849, -0.008106077089905739, 0.006621574051678181, 0.014237419702112675, 0.000861788576003164, -0.0014042363036423922, -0.005344211123883724, -0.03333572298288345, -0.016598815098404884, 0.007629655301570892, 0.03841755911707878, -0.00853416696190834, -0.029607204720377922, 0.0213630348443985, -0.024925842881202698, -0.018366409465670586, -0.024414896965026855, -0.006925379391759634, 0.004588150419294834, -0.01770356297492981, -0.025547262281179428, 0.00032344041392207146, 0.0017865821719169617, 0.0032158480025827885, 0.0164607223123312, -0.031209086999297142, -0.025768211111426353, 0.004173870198428631, 0.01059175655245781, 0.007270612753927708, -0.023972999304533005, -0.009438677690923214], "74773a00-8ea0-44ea-8c3a-2447481985b5": [-0.010914849117398262, 0.0021055936813354492, -0.008559323847293854, -0.03193654865026474, -0.0004153411719016731, 0.030457496643066406, 0.0020319833420217037, -0.0158724095672369, -0.00516640767455101, -0.028896275907754898, 0.007956746965646744, 0.024554986506700516, 0.003363814204931259, -0.009483730420470238, -0.005115051753818989, 0.010798442177474499, 0.023034851998090744, 0.00020339092588983476, -0.0033484073355793953, 0.00844291690737009, -0.016707800328731537, 0.00027347038849256933, -0.008573018014431, -0.007141899783164263, -0.010339662432670593, 0.01496854517608881, 0.018296409398317337, -0.013393629342317581, -0.018173156306147575, 0.01546156220138073, 0.017214510589838028, -0.01669410429894924, -0.025828614830970764, 0.006710509769618511, -0.005269119516015053, 0.01149003580212593, 0.00500891637057066, 0.017091257497668266, 0.020514987409114838, -0.01141471415758133, 0.010038374923169613, 0.019090715795755386, 0.00718983169645071, -0.008210103027522564, -0.013948273845016956, 0.024075664579868317, 0.010579324327409267, -0.013866104185581207, -0.02517125941812992, -0.005056848283857107, -0.007669154088944197, 0.008025221526622772, -0.018200546503067017, -0.0036428479943424463, 0.0006453730165958405, 0.007792408112436533, 0.0038174584042280912, 0.0030727970879524946, 0.012345968745648861, -0.013681222684681416, 0.005861424840986729, 0.017214510589838028, -0.006231187377125025, -0.006429763976484537, -0.017625359818339348, -0.030786175280809402, -0.02066563069820404, 0.008463459089398384, -0.006155865266919136, -0.006933052092790604, 0.04913736507296562, 0.027828073129057884, 0.00882637407630682, -0.020720411092042923, 0.009216679260134697, -0.013242985121905804, -0.02044651284813881, -0.027225496247410774, -0.005231458693742752, 0.00024565259809605777, 0.019857630133628845, -0.011044951155781746, -0.0115859005600214, 0.008210103027522564, 0.04212556779384613, 0.029608411714434624, 0.01705017313361168, 0.007039187476038933, 0.0083333570510149, -0.016146307811141014, 0.0009988730307668447, 0.022802038118243217, 0.013174510560929775, 0.02791024185717106, -0.0006166992825455964, 0.01041498500853777, 0.017406240105628967, 0.012195324525237083, -0.01822793483734131, -0.007847188040614128, -0.01106549333781004, 0.009709696285426617, -0.0211175624281168, -0.013434714637696743, -0.004899356979876757, -0.01106549333781004, 0.008737357333302498, -0.030594445765018463, 0.0001722563902148977, 0.025951869785785675, -0.03256651386618614, 0.03390861675143242, -0.0038688143249601126, -0.0037524073850363493, -0.011455798521637917, -0.0100794592872262, 0.020939528942108154, -0.0317448191344738, -0.008086849004030228, -0.013920883648097515, -0.003002610756084323, 0.018104681745171547, 0.058340348303318024, -0.00553274666890502, 0.01155851036310196, 0.011147662997245789, 0.009504272602498531, -0.007059730123728514, 0.005026035010814667, -0.0029135937802493572, 0.009709696285426617, 0.0059162043035030365, 0.0163517314940691, 0.014146849513053894, -0.027198106050491333, -0.0015064409235492349, -0.016748884692788124, 0.011202442459762096, 0.0029974752105772495, -0.026020344346761703, 0.022487055510282516, 0.018310105428099632, 0.019104409962892532, -0.006686543580144644, -0.012345968745648861, 0.051575060933828354, 0.00554644176736474, 0.010750510729849339, 0.010182171128690243, -0.007230916526168585, -0.004854848142713308, -0.008114238269627094, -0.041824277490377426, -0.0028553903102874756, -0.004772678948938847, 0.011305154301226139, 0.01122298464179039, 0.03347037732601166, -0.00351617019623518, 0.005864848382771015, 0.0023572377394884825, 0.0333334282040596, 0.0033535428810864687, -0.004926746711134911, 0.008196407929062843, 0.04105736315250397, 0.019816545769572258, -0.03051227703690529, -0.017639053985476494, -0.020816273987293243, 0.00653932336717844, 0.02473302185535431, -0.014105765148997307, 0.027198106050491333, -0.0026859156787395477, 0.00981240812689066, 0.007963594980537891, 0.0030317124910652637, -0.01589979976415634, -0.029690582305192947, 0.03390861675143242, -0.01818685047328472, 0.0034151701256632805, 0.020597156137228012, -0.012503460049629211, -0.01688583381474018, 0.02704746276140213, 0.015242443419992924, 0.017310375347733498, -0.007251458708196878, 0.025308208540081978, -0.007203526794910431, -0.011722849681973457, -0.014667256735265255, -0.6222970485687256, -0.0021877631079405546, 0.025992954149842262, -0.011647527106106281, 0.013297765515744686, 0.01758427359163761, 0.02755417488515377, -0.008353900164365768, -0.013003324158489704, 0.026116207242012024, 0.0034802209120243788, -0.005364983808249235, -0.015283527784049511, 0.00028095979359932244, -0.013510036282241344, -0.03073139488697052, 0.0019669325556606054, -0.020939528942108154, -0.02743091993033886, -0.001867644372396171, -0.03686671704053879, 0.010914849117398262, -0.007073424756526947, 0.002223712159320712, -0.002920441096648574, -0.017529495060443878, 0.012941697612404823, -0.0021038816776126623, 0.01066834107041359, 0.04716529697179794, -0.02771851420402527, 0.02596556395292282, 0.020172614604234695, -0.005436882376670837, 0.038427937775850296, -0.024459123611450195, -0.010086307302117348, 0.03147092089056969, 0.02228163182735443, 0.0231718011200428, -0.02117234282195568, -0.008648340590298176, -0.00842922180891037, 0.01535200234502554, -0.011243527755141258, -0.003543559927493334, 0.017912952229380608, 0.003872237866744399, -0.0015663561644032598, -0.009257764555513859, 0.0009843221632763743, -0.00641264533624053, -0.021446241065859795, -0.014023595489561558, 0.0027115936391055584, 0.0006432331865653396, 0.0135716637596488, -0.016721494495868683, 0.004276237916201353, -0.005443729925900698, 0.014530307613313198, 0.017611663788557053, -0.00743634020909667, -0.036017633974552155, -0.05050685629248619, 0.01644759625196457, -0.016077833250164986, -0.00742949265986681, -0.009545357897877693, -0.015639595687389374, 0.018898986279964447, -0.008258035406470299, -0.004392644856125116, -0.0029050344601273537, 0.010483459569513798, 0.0196795966476202, 0.04009871929883957, 0.0037661022506654263, 0.005104780662804842, 0.022404884919524193, 0.012345968745648861, -0.015447867102921009, -0.002009729156270623, -0.018926376476883888, 0.03179959952831268, 0.017228206619620323, -0.028074581176042557, -0.009757628664374352, 0.007703391369432211, -0.015201359055936337, -0.002583203837275505, 0.0365106500685215, 0.0002512161445338279, -0.03229261562228203, -0.001173483207821846, 0.05373885855078697, -0.005847729742527008, 0.006963865831494331, 0.002593474928289652, -0.02692420780658722, -0.022870512679219246, -0.020966919139027596, 0.013160815462470055, 0.004683661740273237, 0.027348751202225685, 0.013044409453868866, -0.02511647902429104, -0.008792136795818806, 0.007915662601590157, -0.009832951240241528, 3.993459540652111e-05, -0.001136678154580295, -0.008353900164365768, -0.013660680502653122, 0.007381560746580362, -0.022309020161628723, -0.012359662912786007, 0.0188852921128273, 0.0012530849780887365, -0.004053695593029261, -0.03278563171625137, -0.021501021459698677, 0.018214240670204163, 0.0163517314940691, 0.010599866509437561, 0.025376683101058006, 0.0007681992719881237, -0.019638512283563614, 0.008853764273226261, -0.004005763214081526, 0.0003368093748576939, -0.009086578153073788, -0.003093339502811432, -0.0007497967453673482, 0.0365106500685215, 0.00023067377333063632, 0.006618069019168615, 0.00039308692794293165, 0.006494814530014992, -0.04927431419491768, 0.0037866446655243635, 6.0396727349143475e-05, 0.013058103621006012, -0.017406240105628967, 0.005878543481230736, -0.03870183601975441, 0.00906603503972292, -0.0028519665356725454, 0.01883051171898842, -0.0028262885753065348, -0.015037019737064838, -0.004526170436292887, 0.0028742209542542696, 0.012120001949369907, 0.008408679626882076, -0.008983866311609745, -0.004170102532953024, -0.030183598399162292, -0.015146578662097454, -0.013263528235256672, -0.009565900079905987, 0.0025181530509144068, -0.012914307415485382, 0.005875119473785162, -0.014448137953877449, -0.013160815462470055, -0.02172013930976391, 0.020213698968291283, -0.009613832458853722, -0.01565329171717167, -0.0033929159399122, -0.001198305282741785, -0.01131884939968586, 0.009107120335102081, 0.003968102391809225, 0.004279661923646927, -0.014078374952077866, -0.0005079958355054259, -0.024801496416330338, -0.0018727800343185663, 0.0015937460120767355, 0.015310917980968952, 0.0020508139859884977, -0.02422630973160267, 0.05724475532770157, -0.0012419578852131963, 0.011380476877093315, 0.03475769981741905, -0.03640109300613403, 0.020391732454299927, -0.011613289825618267, 0.005275967065244913, -0.006214068736881018, -0.006662577390670776, -0.023089630529284477, -0.013386782258749008, -0.010456069372594357, 0.007388408295810223, 0.018898986279964447, 0.025212343782186508, 0.019761765375733376, 0.0064811198972165585, -0.005234882235527039, -0.0023812036961317062, 0.012455527670681477, -0.041221700608730316, 0.009606984443962574, -0.026280546560883522, 0.009024950675666332, -0.0072240689769387245, -0.011907731182873249, -0.006494814530014992, 0.010250645689666271, -0.014215325005352497, 0.006998103111982346, 0.03456597402691841, 0.00998359452933073, 0.017022782936692238, -0.004543289076536894, -0.007402102928608656, 0.008812679909169674, 0.015393087640404701, 0.015571121126413345, -0.016023052856326103, 0.0027783564291894436, 0.01223640888929367, 0.013961968943476677, 0.043796345591545105, -0.004087932873517275, -0.026143597438931465, -0.02076149545609951, 0.0037455600686371326, -0.007066577672958374, 0.02073410525918007, 0.047028347849845886, -0.010832679457962513, 0.023377224802970886, 0.0013147121062502265, 0.01996718905866146, -0.00043673947220668197, 0.006398950237780809, -0.000979186617769301, 0.028841497376561165, -0.032237835228443146, 0.027376139536499977, -0.0051527125760912895, 0.01498224027454853, 0.014489223249256611, -0.023158105090260506, 0.013311459682881832, -0.013311459682881832, -0.006241458933800459, -0.006994679104536772, -0.003581220982596278, 0.031169632449746132, -0.015817629173398018, 0.024198919534683228, -0.0037421362940222025, 0.014941154979169369, 0.019282443448901176, 0.007860883139073849, 0.007319933269172907, 0.0051732552237808704, -0.005868272390216589, 0.023199191316962242, -0.014283799566328526, 0.006491390988230705, -0.04894563555717468, 0.001133254379965365, -0.008600408211350441, 0.02203512191772461, -0.016077833250164986, 0.002615729346871376, -0.020295867696404457, 0.004902780521661043, -0.005710780620574951, -0.02025478333234787, 0.002706458093598485, 0.0027920512948185205, 0.007340475916862488, -0.021199733018875122, -0.021925562992691994, 0.024678241461515427, 0.006012069061398506, 0.006587255280464888, 0.009552204981446266, -0.019789155572652817, -0.004529593978077173, 0.0029307124204933643, 0.014763121493160725, 0.002740695374086499, -0.003220017533749342, -0.021418850868940353, 0.00877844262868166, 0.010086307302117348, 0.007929357700049877, 0.04026305675506592, 0.00363942445255816, -0.017570579424500465, -0.0052554248832166195, 0.01606413908302784, 0.014393358491361141, -0.03697627782821655, -0.033799055963754654, 0.030238378793001175, -0.003050542902201414, -0.009593290276825428, -0.042426854372024536, -0.014913765713572502, -0.020583461970090866, 0.0023264242336153984, -0.009011255577206612, -0.013085493817925453, -0.018515529111027718, 0.0016279832925647497, -0.01447552815079689, 0.0004380233876872808, -0.0011084324214607477, 0.01885790191590786, 0.010298578068614006, -0.005923051852732897, -0.023281360045075417, 0.015502646565437317, 0.01355796866118908, 0.07006319612264633, -0.0016262715216726065, 0.016899527981877327, 0.014434442855417728, -0.008730510249733925, -0.006196950096637011, -0.013242985121905804, -0.0028365598991513252, 0.04009871929883957, 0.02298007160425186, -0.017707528546452522, 0.010100001469254494, 0.0021141530014574528, -0.009038645774126053, 0.017666444182395935, -0.014735731296241283, 0.001358364592306316, -0.011955663561820984, -0.018926376476883888, 0.010750510729849339, 0.0166667141020298, -0.007408950477838516, 0.033196479082107544, 0.013085493817925453, 0.03032054752111435, 0.023883936926722527, 0.037031058222055435, 0.010154781863093376, 0.016516070812940598, -0.027211802080273628, -0.006005221512168646, 0.00901810359209776, -0.005943594500422478, 0.015488951466977596, -0.03629153221845627, 0.03486726060509682, -0.008169018663465977, -0.01155851036310196, -0.01898115500807762, 0.014160544611513615, -0.006984408013522625, 0.03533288836479187, -0.009408408775925636, -0.012434985488653183, 0.006299661938101053, -0.021788613870739937, -0.006470848806202412, 0.03889356553554535, -0.0041016279719769955, -0.0028879158198833466, -0.0009449493372812867, 0.02213098667562008, -0.009819256141781807, 0.020008275285363197, 0.02266508899629116, -0.0204739011824131, -0.015324613079428673, -0.013345696963369846, -0.01657085120677948, -0.02387024089694023, -0.027157021686434746, -0.013160815462470055, -0.025376683101058006, -0.024787800386548042, -0.020364342257380486, -0.03470292314887047, -0.012017290107905865, -0.006768713239580393, -0.015598511323332787, -0.006282543297857046, -0.013530578464269638, -0.02812936156988144, -0.02251444384455681, 0.011935120448470116, 0.02095322497189045, 0.02577383443713188, -0.003060813993215561, 0.006919356994330883, -0.0037866446655243635, 0.014763121493160725, 0.0057997978292405605, -0.031224412843585014, 0.007888272404670715, -0.015708070248365402, 0.006885119713842869, -0.014585087075829506, -0.02158319018781185, 0.003957831300795078, -0.002126135863363743, 0.025308208540081978, -0.019898714497685432, -0.022555530071258545, 0.024075664579868317, 0.0029632376972585917, 0.007819797843694687, 0.0068714250810444355, 0.004570678807795048, -0.0002460805408190936, 0.011722849681973457, -0.02562319114804268, 0.02993709035217762, -0.02625315636396408, -0.010661493055522442, -0.023281360045075417, 0.019802851602435112, 0.029060615226626396, -0.009771323762834072, -0.015817629173398018, -0.017625359818339348, -0.016324341297149658, 0.012147392146289349, 0.0004617755184881389, -0.02003566548228264, -0.018844205886125565, 0.019159190356731415, -0.011907731182873249, 0.011359933763742447, 0.016707800328731537, 0.014229019172489643, -0.014927459880709648, -0.00119659339543432, -0.02418522536754608, 0.032813023775815964, 0.02425369992852211, -0.003312458284199238, 0.002906746231019497, 0.022404884919524193, 0.0048890854232013226, -0.028266310691833496, -0.010736815631389618, -0.009004408493638039, -0.009620679542422295, -0.02145993523299694, -0.005878543481230736, -0.011599595658481121, -0.0017991698114201427, -0.023473089560866356, 0.02184339426457882, -0.014941154979169369, 0.017926646396517754, -0.027252886444330215, 0.0038790854159742594, 0.016420206055045128, -0.003940712660551071, 0.00827173050493002, -0.03147092089056969, -0.03138875216245651, -0.002086763037368655, 0.0005396653432399035, 0.03418251499533653, -0.01116135809570551, -0.009367323480546474, -0.03911268338561058, -0.027691124007105827, -0.02914278395473957, -0.006210645195096731, 0.002319576684385538, 0.0048719667829573154, 0.03648326173424721, 0.04546712711453438, 0.007888272404670715, 0.03297736123204231, 0.02586969919502735, 0.02056976594030857, -0.004214610904455185, 0.005611492320895195, -0.009545357897877693, -0.015338308177888393, 0.017817087471485138, -0.012996477074921131, -0.009552204981446266, 0.0083333570510149, -0.0026807801332324743, 0.012708883732557297, -0.003831153269857168, -0.005536170676350594, 0.0018813393544405699, -0.0037250176537781954, -0.02892366610467434, -0.05124638229608536, 0.009148204699158669, 0.03114224225282669, -0.006826916243880987, -0.004782950039952993, -0.029279733076691628, 0.008436068892478943, 0.011401019059121609, -0.0013189917663112283, 0.04212556779384613, 0.005197221413254738, 0.01917288452386856, -0.00603945879265666, 0.014927459880709648, 0.02644488587975502, -0.002025136025622487, -0.00966861192137003, -0.013099188916385174, -0.04354983940720558, 0.003529865061864257, 0.021131258457899094, 0.022719867527484894, -0.0005957289249636233, 0.0051082042045891285, 0.00289305136539042, 0.007361018098890781, 0.010168476030230522, -0.016310647130012512, -0.038619667291641235, 0.009141357615590096, -0.02018630877137184, -0.002333271550014615, -0.03330603986978531, -0.012147392146289349, 0.015530036762356758, -0.013468951918184757, 0.004902780521661043, 0.006374984048306942, 0.009353628382086754, -0.006018916144967079, -0.026992682367563248, 0.03355254977941513, -0.0052999332547187805, 0.01006576418876648, 0.017118647694587708, 0.014900070615112782, 0.03355254977941513, 0.021254511550068855, -0.03834576904773712, -0.021514715626835823, 0.0016322629526257515, 0.009511120617389679, -0.012277493253350258, 0.037414513528347015, -0.01577654480934143, -0.019063325598835945, -0.004467966966331005, -0.003838000586256385, -0.006238034926354885, -0.0355520062148571, 0.02711593732237816, 0.007395255379378796, -0.003673661733046174, -0.03015620820224285, -0.013667527586221695, -0.011544815264642239, 0.008408679626882076, -0.002817729255184531, 0.025992954149842262, 0.004676814191043377, 0.0021055936813354492, -0.009038645774126053, 0.023185495287179947, -0.0025883393827825785, 0.012914307415485382, 0.0018334070919081569, 0.002742407377809286, -0.007785560563206673, -0.0006359577528201044, 0.011818713508546352, -0.00827173050493002, 0.011887189000844955, 0.013722307048738003, -0.031443532556295395, -0.0021398309618234634, 0.025157563388347626, 0.014352274127304554, 0.0019686443265527487, 0.00030535386758856475, -0.024650851264595985, 0.028375869616866112, -0.0049096280708909035, -0.01717342622578144, -0.006361289415508509, -0.010360205546021461, 0.012681493535637856, -0.02145993523299694, -0.019693290814757347, -0.006580407731235027, -0.00868257787078619, 0.004242000635713339, 0.004926746711134911, -0.009230374358594418, -0.01584501937031746, 0.007456882856786251, 0.008134781382977962, -0.012229561805725098, -0.010202713310718536, 0.004704204387962818, 0.004224881995469332, -0.013920883648097515, -0.013242985121905804, -0.002814305480569601, -0.009476883336901665, -0.0046083396300673485, 0.013961968943476677, -0.015530036762356758, -0.0019035935401916504, 0.01787186786532402, -0.010469764471054077, 0.017118647694587708, 0.01192142628133297, 0.024746716022491455, -0.03557939454913139, 0.031854379922151566, -0.014941154979169369, -0.00023324156063608825, 0.008264882490038872, 0.010853222571313381, -0.03733234480023384, -0.029800141230225563, 0.008100544102489948, 0.019830239936709404, 0.0030351360328495502, 0.002802322618663311, 0.013907188549637794, 0.017707528546452522, 0.0035572547931224108, -0.013742850162088871, -0.027033766731619835, -0.0015680680517107248, -0.0064605772495269775, 0.003872237866744399, 0.014900070615112782, -0.009654916822910309, 0.004392644856125116, 0.019022241234779358, 0.00727884890511632, 0.00703234039247036, -0.03752407431602478, -0.029581021517515182, -0.03136136010289192, 0.00125822052359581, -0.0018607969395816326, 0.009476883336901665, -0.01825532503426075, -0.030183598399162292, -0.020049359649419785, 0.03790753334760666, 0.0003575657319743186, 0.012298036366701126, 0.03053966723382473, -0.019515257328748703, -0.031662650406360626, 0.010052070021629333, -0.007669154088944197, -0.03796231001615524, -0.0323747843503952, -0.008011526428163052, -0.031854379922151566, -0.016680410131812096, -0.013961968943476677, 0.031416140496730804, 0.015735460445284843, -0.022404884919524193, -0.03475769981741905, -0.02682834304869175, -0.031060073524713516, -0.02437695302069187, -0.03308692201972008, 0.017310375347733498, 0.024678241461515427, 0.025445157662034035, 0.0006432331865653396, 0.028266310691833496, 0.0033056107349693775, 0.013174510560929775, -0.030046649277210236, -0.022582918405532837, -0.0211175624281168, -0.025102784857153893, 0.027828073129057884, -0.03916746377944946, -0.03853749856352806, -0.006012069061398506, 0.009367323480546474, -0.027321361005306244, 0.007450035307556391, 0.022911597043275833, -0.012256951071321964, 0.005950441583991051, 0.0031823564786463976, 0.010106849484145641, 0.00703234039247036, 0.008792136795818806, 0.007888272404670715, -0.01644759625196457, -0.008538780733942986, 0.023692207410931587, 0.0004883094225078821, -0.019953494891524315, 0.0013455256121233106, 0.019912410527467728, -0.017543189227581024, -0.0029478310607373714, -0.020528681576251984, -0.003670237958431244, -0.02056976594030857, -0.011654375120997429, -0.0006487967330031097, -0.0013455256121233106, -0.0015646443935111165, 0.01904962956905365, -0.00036805091076530516, -0.010353357531130314, -0.016009358689188957, 0.017666444182395935, -0.005186949856579304, -0.009819256141781807, 0.015187663957476616, -0.0049986448138952255, -0.007073424756526947, -0.01748841069638729, 0.028677158057689667, -0.010469764471054077, -0.019528953358530998, -0.015447867102921009, -0.003608610713854432, -0.02851281873881817, -0.008805831894278526, 0.004776102490723133, -0.001483330735936761, 0.009161899797618389, -0.02367851324379444, 0.018844205886125565, -0.0105587812140584, -0.012770510278642178, 0.007867730222642422, -0.005693661980330944, -0.021829698234796524, 3.6029403418069705e-05, 0.015817629173398018, -0.025349292904138565, -0.004070814233273268, 0.03171743080019951, 0.0003233284514863044, 0.010716273449361324, 0.23599082231521606, 0.00868257787078619, -0.0056080687791109085, 0.03944136202335358, 0.017310375347733498, 0.0014071527402848005, 0.008155323565006256, 0.01729668118059635, 0.005221187137067318, 0.029197564348578453, 0.004094780422747135, 0.0019463901408016682, -0.03070400469005108, -0.0008439493249170482, 0.024075664579868317, -0.007970442064106464, -0.016050443053245544, -0.02730766497552395, -0.013961968943476677, 0.014530307613313198, 0.022240545600652695, -0.00827173050493002, -0.022172071039676666, -0.0020405426621437073, 0.022309020161628723, 0.03155308961868286, -0.010531391948461533, 0.01192142628133297, 0.0003479364968370646, 0.011147662997245789, -0.028896275907754898, -0.00351617019623518, 0.030210988596081734, -0.019501563161611557, -0.00993566308170557, -0.0017700680764392018, 0.011339391581714153, -0.021213427186012268, 0.0016279832925647497, 0.01736515574157238, -0.001306152786128223, -0.03015620820224285, 0.001586898579262197, -0.02517125941812992, 0.03127919137477875, -0.009497425518929958, 0.003286780323833227, -0.008867459371685982, 0.013646985404193401, 0.034045565873384476, -0.007586984429508448, 0.0056731197983026505, 0.012311730533838272, 0.002158661372959614, -0.009908272884786129, -0.012722578831017017, -0.02526712231338024, 0.0020131529308855534, -0.028101971372961998, 0.03653804212808609, -0.001486754510551691, 0.0014670680975541472, -0.018323799595236778, 0.028786716982722282, -0.03818143159151077, 0.0143659682944417, -0.018214240670204163, 0.027800682932138443, 0.02133668214082718, -0.001071627251803875, -0.012770510278642178, -0.008874306455254555, -0.02911539562046528, -0.005834035109728575, -0.007408950477838516, -0.014338579028844833, 0.009113967418670654, 0.04765831306576729, 0.0441250242292881, 0.016214782372117043, 0.008408679626882076, 0.008942781016230583, -0.015201359055936337, -0.008942781016230583, 0.0038825091905891895, -0.008716815151274204, 0.03883878514170647, -0.03138875216245651, 0.006604373920708895, -0.012270646169781685, -0.011195595376193523, -0.010421832092106342, -0.007888272404670715, 0.0019378308206796646, -0.005125322844833136, -0.010880611836910248, -0.0008268306264653802, 0.02517125941812992, -0.0005178391002118587, -0.010709425434470177, -0.01663932576775551, 0.04653533175587654, 0.01876203715801239, 0.020432816818356514, -0.01622847653925419, 0.0016553731402382255, -0.0027475429233163595, 0.03034793771803379, 0.01192142628133297, 0.0030402718111872673, -0.00981240812689066, -0.041605159640312195, 0.005484814755618572, 0.00046305940486490726, 0.014804205857217312, 0.0349220409989357, 0.035825904458761215, -0.008559323847293854, -0.011626984924077988, 0.008737357333302498, 0.023418309167027473, -0.019200274720788002, -0.007265153806656599, -0.001656229142099619, -0.021665358915925026, -0.02422630973160267, -0.000320332677802071, -0.0022185766138136387, -0.020556071773171425, -0.02755417488515377, -0.0012736273929476738, -0.00628596730530262, 0.012708883732557297, -0.02295268140733242, -0.010873764753341675, -0.005423187278211117, -0.004050272051244974, -0.02298007160425186, 0.0012933138059452176, 0.008552475832402706, 0.00629281485453248, 0.02235010638833046, 0.016077833250164986, 0.0036017633974552155, 0.0204739011824131, 0.004728170111775398, 0.010620408691465855, 0.017625359818339348, -0.011483188718557358, -0.01241444330662489, 0.0044987802393734455, 0.029252344742417336, -0.006751594599336386, 0.007073424756526947, 0.04467282071709633, -0.011133967898786068, -0.0206382405012846, -0.007073424756526947, 0.016296952962875366, -0.029005834832787514, -0.04045478627085686, -0.01246237475425005, 0.033032141625881195, 0.011366781778633595, -0.030430106446146965, -0.0006535043357871473, -0.1749662607908249, 0.005758712999522686, 0.007628069259226322, 0.006368136499077082, -0.008319662883877754, 0.030649226158857346, 0.01098332367837429, -0.0013395341811701655, -0.026403801515698433, -0.02018630877137184, 0.0033997632563114166, -0.00981240812689066, -0.016009358689188957, -0.01943308860063553, 0.018214240670204163, -0.006183255463838577, -0.014311188831925392, 0.03577112406492233, 0.037852752953767776, -0.010380747728049755, 0.010716273449361324, -0.011955663561820984, 0.0016365426126867533, -0.009661764837801456, 0.023610038682818413, 0.026335326954722404, -0.007977289147675037, 0.028786716982722282, -0.01106549333781004, -0.039633091539144516, -0.0063338992185890675, -0.005060272291302681, 0.031169632449746132, 0.011250374838709831, 0.014338579028844833, 0.0010776187991723418, 0.0035538312513381243, 0.009887730702757835, -0.021501021459698677, 0.0161873921751976, 0.021980343386530876, 0.01857030764222145, 0.012777358293533325, -0.0004395212745293975, 0.019309833645820618, 0.023692207410931587, 0.022391190752387047, -0.008853764273226261, 0.013160815462470055, -0.0031155936885625124, 0.031087463721632957, -0.027704818174242973, 0.00213127164170146, -0.008867459371685982, -0.0050397296436131, -0.0023777801543474197, -0.012291188351809978, 0.013284070417284966, 0.008066306822001934, -0.019213968887925148, -0.0003291059983894229, -0.008716815151274204, -0.016516070812940598, 0.0044097634963691235, 0.0022202886175364256, -0.040400005877017975, -0.017817087471485138, 0.03470292314887047, -0.009387865662574768, 0.01495485007762909, 0.00528623815625906, 0.00163483084179461, 0.00768969627097249, 0.006508509628474712, 0.015721766278147697, 0.0036360006779432297, -0.0323747843503952, -0.0031378481071442366, 0.02466454729437828, 0.008812679909169674, 0.015557426027953625, 0.0013720595743507147, 0.0032148819882422686, -0.006994679104536772, -0.03196393698453903, -0.002555814106017351, 0.012893765233457088, 0.003000898752361536, -0.015598511323332787, 0.014680951833724976, 0.01283898577094078, -0.020871054381132126, 0.021665358915925026, -0.0017383985687047243, 0.011592747643589973, 0.018200546503067017, 0.01298278197646141, -0.009223527275025845, -0.00040635387995280325, -0.029690582305192947, 0.02073410525918007, 0.02463715709745884, -0.029170174151659012, -0.0011769069824367762, 0.027211802080273628, 0.0201589185744524, 0.02495213970541954, -0.015132884494960308, 0.024993224069476128, -0.012037832289934158, -0.035004209727048874, 0.02054237574338913, 0.03015620820224285, 0.0005242585903033614, -0.022870512679219246, 0.057409096509218216, 0.009072883054614067, -0.02235010638833046, 0.0057997978292405605, -0.009627527557313442, 0.052780210971832275, -0.03374427556991577, 0.0018334070919081569, 0.006556442007422447, -0.008970171213150024, -0.01068203616887331, -0.10616300255060196, -0.02911539562046528, 0.028622377663850784, 0.015721766278147697, -0.013174510560929775, 0.007963594980537891, -0.0025951869320124388, 0.018077291548252106, 0.00032290047965943813, 0.016420206055045128, -0.019213968887925148, -0.006498238537460566, -0.014023595489561558, -0.02311702072620392, -0.00020874050096608698, -0.014749426394701004, 0.008812679909169674, -0.035825904458761215, -0.011270917020738125, 0.0161873921751976, 0.010777899995446205, -0.00629281485453248, 0.024527598172426224, -0.0027920512948185205, -0.018241630867123604, -0.011229832656681538, -0.025445157662034035, 4.2127921915380284e-05, 0.0034459836315363646, 0.0024445427116006613, 0.033415600657463074, -0.009832951240241528, 0.03678454831242561, -0.015297222882509232, -0.0065701366402208805, -0.016557155176997185, -0.009107120335102081, -0.01904962956905365, 0.047603532671928406, -0.01546156220138073, -0.0018590850522741675, 0.006977560464292765, -0.009435798041522503, -0.02673248015344143, -0.0034134581219404936, -0.014831596054136753, -0.005447153467684984, 0.029581021517515182, 0.020802579820156097, -0.012934849597513676, -0.03155308961868286, -0.016584545373916626, -0.021925562992691994, -0.02834847941994667, 0.03051227703690529, 0.002550678327679634, 0.010853222571313381, 0.019118105992674828, -0.017104951664805412, 0.007545899599790573, -0.01695430837571621, -0.00969600211828947, -0.007963594980537891, 0.0030385598074644804, 0.01599566452205181, 0.0006419492419809103, -0.004550136625766754, 0.010818985290825367, 0.01241444330662489, 0.008367594331502914, -0.0026996105443686247, -0.008662035688757896, -0.0254040714353323, -0.004505627788603306, -0.020049359649419785, -0.0022956104949116707, -0.007977289147675037, -0.0083333570510149, 0.00884006917476654, 0.012325425632297993, -0.010442374274134636, -0.011017560958862305, -0.0002625572378747165, -0.028074581176042557, 0.0004955848562531173, 0.005645729601383209, 0.01183925662189722, 0.0028280005790293217, 0.009216679260134697, -0.0412764810025692, 0.005642306059598923, 0.016899527981877327, 0.031416140496730804, 0.01320874784141779, -0.012421290390193462, 0.012482917867600918, -0.002569508971646428, -0.012934849597513676, 0.010709425434470177, -0.0028725089505314827, -0.010894306935369968, -0.009298848919570446, -0.0539579764008522, 0.004875390790402889, 0.0004917331389151514, 0.008744205348193645, 0.0076349168084561825, -0.03793492168188095, -0.008484001271426678, -0.008812679909169674, 0.006611221469938755, -0.005313627887517214, -0.023103326559066772, 0.009976747445762157, -0.01322244293987751, -0.011873493902385235, -0.02437695302069187, -0.0061079333536326885, 0.012003595009446144, -0.0028810682706534863, 0.018844205886125565, -0.00942895095795393, 0.011380476877093315, 0.0006171272252686322, 0.013441561721265316, 0.027376139536499977, -0.002054237760603428, 0.02641749568283558, -0.027608953416347504, 0.026458580046892166, 0.0002664089552126825, -0.025801224634051323, 0.024363258853554726, 0.007847188040614128, -0.0009124238858930767, 0.011846103705465794, -0.008463459089398384, -0.02193925902247429, -0.006231187377125025, 0.00893593393266201, 0.008162170648574829, 0.00024180089531000704, -0.009805561043322086, -0.004663119558244944, 0.028978446498513222, -0.03870183601975441, -0.023089630529284477, -0.03410034626722336, -0.0044987802393734455, -0.030567055568099022, 0.011188747361302376, 0.009511120617389679, 0.03727756440639496, 0.0064537301659584045, -0.031826987862586975, -0.03829098865389824, -0.008819526992738247, -0.02615729346871376, 0.003113881917670369, 0.005748441908508539, -0.0033586786594241858, -0.005474543198943138, 0.03305952996015549, -0.005228034686297178, -0.008894848637282848, -0.01974807120859623, 0.030019259080290794, 0.0008910255855880678, -0.04689139872789383, -0.006864577531814575, 0.010120544582605362, -0.025486242026090622, -0.00958644226193428, -0.011763934046030045, 0.027348751202225685, 0.0036668141838163137, 0.018748342990875244, -0.0012633561855182052, -0.004515898879617453, -0.02143254689872265, -0.017419936135411263, 0.023541564121842384, 0.026896817609667778, -0.01625586673617363, -0.011674917303025723, 0.01584501937031746, 0.01663932576775551, 0.007833492942154408, -0.018652478232979774, 0.01876203715801239, 0.009401560761034489, -0.0030317124910652637, -0.018501833081245422, -0.0021843393333256245, -0.0008927374728955328, 0.01487268041819334, -0.003187492024153471, 0.012743121013045311, 0.00030984749901108444, -0.0030916277319192886, 0.022418580949306488, 0.023664817214012146, 0.015160273760557175, -0.008970171213150024, -0.014174239709973335, 0.0016040172195062041, -0.008545628748834133, 0.022418580949306488, -0.01625586673617363, -0.021309291943907738, 0.017419936135411263, 0.016748884692788124, 0.020145224407315254, -0.030621835961937904, -0.013941425830125809, 0.019706986844539642, -0.010551934130489826, 0.006861153524369001, 0.005587526597082615, 0.00417352607473731, -0.03946875408291817, -0.0020799157209694386, 0.010757357813417912, 0.014941154979169369, 0.018145766109228134, -0.01222271379083395, 0.022719867527484894, 0.013256680220365524, 0.0076143741607666016, -0.01116135809570551, 0.006782407872378826, -0.015502646565437317, -0.00034879244049079716, -0.014160544611513615, 0.005207492504268885, -0.0030556784477084875, 0.0010245509911328554, -0.012818442657589912, -0.006755018141120672, 0.03311431035399437, -0.014256409369409084, 0.09087947010993958, 0.02584230899810791, -0.02571905590593815, -0.001540678204037249, -0.0018402545247226954, 0.0036017633974552155, 0.014763121493160725, 0.016406511887907982, -0.00035499793011695147, -0.022528139874339104, 0.02235010638833046, -0.017378849908709526, -0.023637427017092705, 0.009976747445762157, -0.017009086906909943, -0.0007005806546658278, -0.015132884494960308, 0.006282543297857046, -0.002942695515230298, 0.01447552815079689, 0.009209832176566124, -0.0061353230848908424, 0.0009167035459540784, 0.004149559885263443, -0.031197022646665573, -0.012106306850910187, 0.014270104467868805, 0.023568952456116676, -0.006597526371479034, -0.0355520062148571, 0.030293157324194908, -0.009976747445762157, -0.03807187080383301, -0.013653832487761974, -0.005399221088737249, 0.0017837630584836006, -0.02104908786714077, -0.02473302185535431, 0.010962781496345997, 0.008100544102489948, 0.00020713562844321132, 0.014516612514853477, -0.030101429671049118, -0.013599053025245667, 0.013188205659389496, 0.00792250968515873, -0.008853764273226261, -0.024774106219410896, 0.0071350522339344025], "f1d0e2c4-f8f3-478b-bd36-1d395e26f7d1": [-0.03301718086004257, -0.009054629132151604, -0.005568427499383688, -0.03866021707653999, 0.01642720028758049, 0.029246114194393158, -0.026112601161003113, -0.02837795577943325, 0.007725260686129332, -0.0325288400053978, 0.00415766891092062, 0.02329108491539955, 0.01680701971054077, -0.005300519056618214, 0.011611629277467728, 0.002850343007594347, 0.01783795841038227, 0.0008609528304077685, 0.0069656213745474815, -0.00694188242778182, -0.007840562611818314, 0.012493354268372059, -0.008776547387242317, -0.0065518892370164394, -0.03776492550969124, 0.007867692969739437, 0.032990049570798874, -0.015274176374077797, 0.01409402210265398, 0.013171602971851826, 0.008878285065293312, -0.02856786549091339, -0.019926967099308968, 0.012954563833773136, -0.018801072612404823, -0.005256433039903641, 0.01247978862375021, -0.000802877708338201, 0.00782021600753069, 0.002479001646861434, 0.019370803609490395, 0.01565399579703808, -0.012439093552529812, -0.01245944108814001, -0.026872241869568825, 0.02921898476779461, -0.0026146513409912586, -0.018814638257026672, -0.025922691449522972, 0.0057108597829937935, -0.01907237246632576, 0.0057515548542141914, -0.01500287652015686, -0.003404811955988407, -0.004859657026827335, -0.004191581159830093, -0.006094071082770824, 0.01117076724767685, 0.02289769984781742, -0.008912197314202785, 0.012323791161179543, 0.009692183695733547, -0.010967292822897434, -0.018556904047727585, -0.01471801195293665, -0.02718423679471016, -0.007664218079298735, -0.014148282818496227, 0.0023467428982257843, -0.014623057097196579, 0.03429228812456131, 0.005480255000293255, -0.005544689018279314, -0.014623057097196579, 0.022178756073117256, -0.016467895358800888, -0.005459907464683056, -0.018923157826066017, -0.011652324348688126, -0.010194088332355022, 0.02594982273876667, -0.03423802927136421, -0.0016812107060104609, -0.001159806502982974, 0.04001671448349953, 0.029490284621715546, 0.007881257683038712, 0.006745190359652042, -0.003984715323895216, -0.01600668579339981, 0.007677783258259296, 0.029924362897872925, 0.007372571155428886, 0.011842234991490841, -0.008084733039140701, 0.006585801485925913, 0.028513604775071144, 0.010967292822897434, -0.005334431305527687, -0.006979186553508043, -0.008057602681219578, -0.001462475280277431, -0.014460276812314987, -0.014745142310857773, -0.00983461644500494, -0.01500287652015686, -0.0069452738389372826, -0.00832211971282959, 0.007989778183400631, -0.006789276376366615, -0.006765537895262241, 0.050814446061849594, -0.002229744801297784, -0.005368344020098448, -0.011231809854507446, 0.00027235952438786626, 0.027699705213308334, -0.0057074688374996185, 0.002696041250601411, -0.009983831085264683, -0.001046199700795114, 0.0024637409951537848, 0.03271875157952309, 0.0022941785864531994, 0.023480994626879692, -0.008817242458462715, -0.0029012118466198444, -0.01702406071126461, 0.017322489991784096, 0.00136921601369977, 0.033125702291727066, 0.009963483549654484, 0.01509783137589693, -0.0007634544745087624, -0.028269434347748756, 0.006721451412886381, -0.008973239921033382, 0.013497162610292435, 0.014433147385716438, -0.02494601346552372, 0.014663752168416977, 0.012723959051072598, -0.006585801485925913, -0.01869255304336548, -0.015084266662597656, 0.04234989359974861, -0.0020635738037526608, 0.01865185797214508, 0.00578207615762949, 0.000302456843201071, -0.014229672029614449, -0.0050800880417227745, -0.030331313610076904, -0.013137690722942352, 0.013564988039433956, 0.013639595359563828, 0.00791517086327076, 0.04560548812150955, -0.006260241847485304, 0.010946945287287235, 0.00801012571901083, 0.03488915041089058, -0.011923624202609062, -0.017892219126224518, 0.006592584308236837, 0.031090952455997467, 0.023996463045477867, -0.03285440057516098, -0.01866542361676693, -0.018326299265027046, 0.0018126214854419231, 0.03263736143708229, -0.012418746948242188, 0.01762091927230358, 0.014867226593196392, 0.011726931668817997, -0.019723491743206978, -0.003236945252865553, -0.02333177998661995, -0.022748485207557678, 0.004038975108414888, -0.0192622821778059, -0.0019177502254024148, 0.03231180086731911, -0.021988846361637115, -0.004425577353686094, 0.037195198237895966, 0.015504781156778336, 0.016169466078281403, -0.005246259272098541, 0.012825695797801018, 0.01125894021242857, -0.0014938443200662732, -0.021609025076031685, -0.6163930296897888, 0.0006451847148127854, 0.03564878925681114, -0.002558695850893855, -0.0005739685730077326, 0.03223041072487831, -0.0015616692835465074, 0.0023467428982257843, 0.002658737590536475, 0.014500971883535385, -0.004174625035375357, -0.010784165002405643, -0.011218245141208172, 0.0003853304369840771, -0.021948151290416718, -0.025230877101421356, 0.009373406879603863, 0.011279287748038769, -0.018299167975783348, -0.006311110686510801, -0.01565399579703808, 0.01802786998450756, 0.01679345592856407, -0.0016184726264327765, -0.011889711953699589, -0.014853661879897118, 0.025814171880483627, 0.0031402946915477514, 0.0044289687648415565, 0.05420569330453873, -0.03692389652132988, 0.00558199267834425, 0.01644076593220234, -0.012113533914089203, 0.03689676895737648, -0.02311473898589611, 0.007447178475558758, 0.03024992346763611, 0.013232645578682423, 0.018190648406744003, -0.016359375789761543, -0.00912923738360405, 0.024810362607240677, 0.025420786812901497, 0.002451871521770954, -0.014080457389354706, 0.010038090869784355, -0.006619714200496674, -0.0034183769021183252, 0.0037948053795844316, 0.0015887991758063436, 0.004578183405101299, -0.010824860073626041, -0.015124961733818054, 0.014745142310857773, -0.007365788333117962, 0.020578086376190186, -0.006202590651810169, 0.008389945141971111, -0.015938861295580864, 0.0037981965579092503, 0.0009834616212174296, -0.005090261809527874, -0.03307143971323967, -0.022585704922676086, 0.01175406202673912, -0.023386038839817047, -0.006382327061146498, -0.013103778474032879, -0.007338658440858126, 0.016522156074643135, -0.00984139833599329, 0.0162644200026989, 0.00791517086327076, 0.0029944709967821836, 0.015952425077557564, 0.009271669201552868, 0.00185162085108459, 0.001671884790994227, 0.017905784770846367, -0.0008732461137697101, -0.00799656007438898, 0.007447178475558758, -0.0036659380421042442, 0.02251788042485714, 0.01805499941110611, -0.012615438550710678, -0.012093186378479004, 0.00039359659422188997, -0.005673556122928858, 0.010112698189914227, 0.03890438377857208, -0.02091721072793007, -0.032121893018484116, -0.002696041250601411, 0.04926803708076477, -0.007732043042778969, -0.0006854558014310896, 0.010153393261134624, -0.013795592822134495, -0.016535719856619835, -0.01565399579703808, 0.01882820390164852, 0.014134717173874378, 0.04701624810695648, 0.039040036499500275, -0.040884874761104584, 0.0032454233150929213, 0.011225027963519096, -0.011889711953699589, -0.009156366810202599, 0.0081050805747509, -0.00792195275425911, -0.025515742599964142, 0.012099969200789928, -0.027509795501828194, -0.008403509855270386, 0.023684469982981682, -0.003771066665649414, -0.0021958323195576668, -0.012188142165541649, -0.01782439462840557, 0.00904106441885233, -6.512254185508937e-05, 0.009468361735343933, 0.017892219126224518, -0.002270439872518182, -0.0034828106872737408, -0.0020957905799150467, -0.014243237674236298, 0.0011674368288367987, -0.009542969055473804, 0.008857937529683113, -0.020238962024450302, 0.04994628578424454, 0.014772271737456322, 0.03138938173651695, 0.011475980281829834, 0.00832211971282959, -0.03190485015511513, 0.008084733039140701, -0.009163149632513523, 0.014243237674236298, -0.007935518398880959, 0.009176714345812798, -0.02554287202656269, -0.003564200596883893, 0.010587473399937153, -0.0023942203260958195, 0.006897796411067247, -0.012486571446061134, -0.021839629858732224, 0.00663667032495141, 0.030738262459635735, -0.001359890098683536, -0.0006350110052153468, -0.006314502097666264, -0.029300374910235405, -0.006907970178872347, -0.006758755072951317, -0.009963483549654484, 0.008885066956281662, -0.019031677395105362, 0.008681592531502247, -0.020985037088394165, -0.02193458564579487, -0.011557369492948055, 0.02778109535574913, -0.022260146215558052, -0.010641733184456825, -0.003855847753584385, -0.0030758611392229795, -0.0002488327445462346, 0.010309390723705292, 0.006222938187420368, -0.0015574301360175014, -0.009712531231343746, 0.009678618982434273, -0.004249232355505228, -0.004038975108414888, 0.01319873332977295, 0.012839261442422867, 0.007955865003168583, -0.020415306091308594, 0.031090952455997467, 0.007338658440858126, 0.0162237249314785, 0.03868734464049339, -0.031742073595523834, 0.012527266517281532, 0.0036354167386889458, 0.006494238041341305, -0.018380558118224144, -0.004083061590790749, -0.014799402095377445, -0.022816309705376625, 6.846080214018002e-05, -0.003916890360414982, -0.0020686606876552105, 0.01705119013786316, 0.01380237564444542, 0.0015820167027413845, 0.010377216152846813, 0.004289927426725626, 0.0044323597103357315, -0.0253665279597044, 0.013449685648083687, -0.013917678035795689, 0.004771484527736902, -0.012866390869021416, -0.0023959160316735506, -0.009977048262953758, 0.017702309414744377, -0.012418746948242188, 0.013605683110654354, 0.03686963766813278, 0.01530130673199892, 0.005314084235578775, -0.02011687681078911, 0.013714202679693699, 0.014962181448936462, -0.009502273984253407, 0.003045339835807681, -0.006267024669796228, -0.005449734162539244, 0.012493354268372059, 0.021446246653795242, 0.01013982854783535, 0.013246211223304272, -0.04232276231050491, -0.016522156074643135, 0.012452659197151661, -0.017159709706902504, 0.004069496411830187, 0.02818804420530796, -0.002419654745608568, 0.02147337608039379, 0.010499300435185432, 0.03573017939925194, -0.0023670904338359833, 0.011815104633569717, -0.014053327962756157, 0.02654668129980564, -0.027102846652269363, 0.03866021707653999, 0.013632812537252903, 0.012188142165541649, 0.009237756952643394, -0.03301718086004257, 0.0010343303438276052, 0.006189025938510895, -0.012554395943880081, -0.01035008579492569, 0.006572236772626638, 0.044113341718912125, -0.014175412245094776, 0.015464086085557938, 0.004998697899281979, 0.014799402095377445, 0.017091885209083557, 0.017064755782485008, 0.022178756073117256, 0.0223008394241333, 0.0032420321367681026, 0.030114272609353065, -0.011842234991490841, -0.0015514955157414079, -0.029951494187116623, 0.002729953732341528, -0.01599312014877796, 0.008668026886880398, -0.030765391886234283, 0.022558575496077538, -0.028459344059228897, -0.012608656659722328, -0.005249650217592716, -0.01680701971054077, 0.009258104488253593, 0.01380237564444542, 0.02087651565670967, -0.014528102241456509, -0.03505193069577217, 0.02516305260360241, 0.016277985647320747, 0.014460276812314987, 0.002963949926197529, -0.030738262459635735, -0.005955029744654894, 0.003920281305909157, 0.027835356071591377, -0.0019686189480125904, 0.011299635283648968, -0.01448740717023611, 0.00587703101336956, -9.707444405648857e-05, 0.007542133331298828, 0.04416760057210922, -0.007359005976468325, -0.001185240806080401, -0.01599312014877796, 0.012432311661541462, 0.019764186814427376, -0.015898166224360466, -0.0284050852060318, 0.020740866661071777, -0.01766161434352398, -0.00491730822250247, -0.02193458564579487, -0.009665054269134998, -0.020401742309331894, 0.009448014199733734, 0.008966457098722458, -0.013470033183693886, -0.0072504859417676926, -0.009854963980615139, 0.0061856345273554325, -0.02555643767118454, -0.017105448991060257, 0.02030678652226925, 0.017091885209083557, -0.019126633182168007, -0.015450521372258663, -0.016929104924201965, -0.002753692679107189, 0.06451508402824402, 0.0035947219002991915, 0.0038728041108697653, 0.012961345724761486, -0.00782021600753069, -0.007453960832208395, -0.009936354123055935, -0.028052395209670067, 0.03065687231719494, 0.029924362897872925, -0.035811569541692734, 0.01665780507028103, 0.0066604092717170715, 0.006158504635095596, 0.030738262459635735, -0.0018092303071171045, 0.026234686374664307, -0.015369131229817867, -0.036788247525691986, 0.0023077435325831175, 0.006904578767716885, -0.006914752535521984, 0.009787138551473618, 0.0016862975899130106, 0.029056204482913017, 0.017376748844981194, 0.020238962024450302, 0.007582828402519226, 0.005561645142734051, -0.0213105957955122, -0.016684934496879578, 0.02414567954838276, 0.006718060467392206, 0.010526430793106556, -0.03960976377129555, 0.034156639128923416, -0.011516674421727657, -0.005205564200878143, -0.01247300673276186, 0.010818078182637691, 0.0076167406514286995, 0.020550956949591637, -0.003364117117598653, -0.007420048583298922, 0.00623650336638093, -0.01984557695686817, -0.018421253189444542, 0.03757501766085625, 0.004761310759931803, -0.002945298096165061, 0.013008823618292809, 0.004191581159830093, -0.014175412245094776, 0.0031487727537751198, 0.006860492751002312, -0.023386038839817047, -0.015260611660778522, -0.016060946509242058, -0.02112068608403206, -0.012737523764371872, -0.03901290521025658, -0.026126166805624962, -0.01984557695686817, -0.030304182320833206, -0.02571921795606613, -0.037032417953014374, -0.02072730101644993, -0.023046914488077164, -0.01969636231660843, 0.015531911514699459, 0.0001766627683537081, -0.017322489991784096, -0.03738510608673096, 0.004510358441621065, -0.012466223910450935, 0.023277519270777702, 0.009305581450462341, -0.012554395943880081, 0.0182313434779644, 0.013585335575044155, -0.003923672717064619, -0.034780628979206085, 0.004425577353686094, -0.022748485207557678, -0.0012208488769829273, -0.019031677395105362, -0.012974911369383335, -0.0028096481692045927, -0.006863884162157774, 0.025258008390665054, -0.003203032771125436, -0.003838891629129648, 0.011950754560530186, 0.012629004195332527, 0.015355566516518593, 0.005242867860943079, 0.007569263223558664, 0.005514167714864016, 0.024674713611602783, -0.031118081882596016, 0.0222872756421566, -0.003047035541385412, -0.011842234991490841, -0.021202076226472855, 0.01804143376648426, 0.02188032492995262, -0.008762982673943043, -0.01641363464295864, -0.004652790725231171, -0.03404812142252922, 0.008240730501711369, -0.0017566659953445196, -0.028839165344834328, -0.023616643622517586, -0.0049274819903075695, -0.012147447094321251, 0.024186372756958008, 0.006222938187420368, 0.003057209076359868, -0.012439093552529812, 0.012032144702970982, -0.025881996378302574, 0.03714093565940857, 0.012744306586682796, -0.003023296594619751, 0.0012522179167717695, 0.005036002025008202, -0.006111027207225561, -0.03220328316092491, -0.010702775791287422, 0.01378202810883522, -0.006979186553508043, -0.015694690868258476, -0.020035486668348312, -0.02128346636891365, -0.0014048240846022964, 0.00603641988709569, 0.011503109708428383, -0.004161059856414795, 0.009793921373784542, -0.03714093565940857, 0.019357237964868546, 0.023223258554935455, -0.022816309705376625, 0.023182565346360207, -0.03868734464049339, -0.024186372756958008, -0.007365788333117962, 0.014663752168416977, 0.04842700809240341, -0.024674713611602783, -0.012581526301801205, -0.042702581733465195, -0.018570467829704285, -0.01509783137589693, -0.010811295360326767, 0.01348359789699316, -0.004730789456516504, 0.033776819705963135, 0.026031212881207466, 0.016155900433659554, 0.008912197314202785, 0.020415306091308594, 0.007121618837118149, -0.004028801340609789, 0.0034929844550788403, -0.0022772224619984627, -0.013110561296343803, -0.0030351660680025816, -0.009773573838174343, -0.017295360565185547, 0.014175412245094776, -0.001246283296495676, -0.013958373107016087, -0.005297127645462751, -0.016508590430021286, 0.0005777837359346449, -0.004174625035375357, -0.02613973245024681, -0.041888684034347534, 0.02151407115161419, 0.033125702291727066, 0.004578183405101299, 0.00019510267884470522, -0.031552162021398544, 0.00567694753408432, 0.03220328316092491, -0.012744306586682796, 0.04400482028722763, 0.018516208976507187, 0.01317838579416275, 0.001699014799669385, -0.0021483548916876316, 0.00922419223934412, -0.01640007086098194, 0.0049308729358017445, -0.009386971592903137, -0.02192102000117302, 0.002831691177561879, 0.012466223910450935, 0.014229672029614449, 0.02087651565670967, -0.003964367788285017, 0.0026061732787638903, 0.008783329278230667, 0.022165190428495407, -0.016088075935840607, -0.017146144062280655, 0.015382695943117142, -0.011530240066349506, -0.003906716592609882, -0.04028801620006561, -0.01599312014877796, -0.003133512334898114, -0.0284050852060318, 0.006602758076041937, -0.005480255000293255, 0.023874379694461823, -0.005134347826242447, -0.014229672029614449, -0.000912245421204716, -0.007609958294779062, 0.013395425863564014, 0.01520635187625885, 0.0345364585518837, 0.031931981444358826, 0.01764804869890213, -0.014921486377716064, -0.011252157390117645, 0.0024993489496409893, 0.009264886379241943, 0.004534097388386726, 0.043706391006708145, -0.024023594334721565, -0.0014166934415698051, 0.001039417227730155, -0.021134251728653908, 0.0010080481879413128, -0.05290345475077629, 0.014948616735637188, 0.005585383623838425, 0.00271638878621161, -0.028459344059228897, -0.024810362607240677, -0.028540734201669693, -0.0193029772490263, -0.005483646411448717, 0.002884255489334464, -0.0192622821778059, -0.0015692994929850101, -0.0029826017562299967, 0.0011776104802265763, -0.0015913426177576184, 0.028486475348472595, -0.02471540868282318, 0.018109258264303207, -0.015070701949298382, 7.471341086784378e-05, -0.0003047883219551295, -0.003570983186364174, 0.002784213749691844, 0.018801072612404823, -0.008668026886880398, -0.012045709416270256, 0.003372595179826021, 0.014582362025976181, 0.0015769298188388348, -0.012649351730942726, 0.007243703585118055, 0.026424596086144447, -0.012635786086320877, -0.016142336651682854, -0.0029402112122625113, -0.009095324203372002, 0.0304127037525177, 0.00197370583191514, -0.014500971883535385, -0.0182177796959877, -0.006999533623456955, 0.00347602809779346, 0.00852559506893158, -0.011286069639027119, -0.02170398086309433, 0.009454797022044659, 0.0008418770739808679, -0.011509892530739307, 0.0024433934595435858, 0.021419115364551544, 0.018773943185806274, -0.014975747093558311, 0.01327334064990282, -0.003950802609324455, -0.023386038839817047, -0.006697712931782007, 0.0031063822098076344, -0.0006256850901991129, 0.008912197314202785, 0.005531123839318752, -0.023589514195919037, 0.028079524636268616, 0.01969636231660843, 0.013734550215303898, -0.031145213171839714, 0.01802786998450756, -0.02497314289212227, 0.006361979525536299, 0.011421719565987587, 0.009970266371965408, -0.03201337158679962, -0.039826806634664536, 0.006046593189239502, 0.016562851145863533, -0.004042366519570351, 0.00922419223934412, 0.0037066328804939985, 0.01561330072581768, 0.0007091945153661072, -0.024430543184280396, -0.025475047528743744, 0.000511654419824481, 0.0033488564658910036, -0.0038015879690647125, 0.004344187211245298, -0.0073318760842084885, 0.01257474347949028, -0.008186470717191696, 0.000848235678859055, 0.014623057097196579, -0.034346550703048706, -0.035404618829488754, -0.021663285791873932, -0.0003225923574063927, -0.023874379694461823, 0.011577717028558254, -0.022043105214834213, -0.03198624029755592, -0.02938176319003105, 0.0365440770983696, -0.006005898583680391, -0.0038999340031296015, 0.041644513607025146, -0.0030758611392229795, -0.03586582839488983, 0.01053999550640583, -0.023575948551297188, -0.04495437070727348, -0.014731576666235924, -0.028079524636268616, -0.04199720174074173, -0.00395758543163538, -0.0069656213745474815, 0.03402099013328552, 0.019343672320246696, -0.011414937674999237, -0.0182584747672081, -0.01378880999982357, -0.022422924637794495, -0.012405181303620338, -0.019140198826789856, 0.027889614924788475, 0.016101641580462456, 0.015179221518337727, 0.003730371594429016, 0.027943875640630722, 0.005347996484488249, 0.04986489564180374, -0.0304127037525177, -0.022219451144337654, -0.028947684913873672, -0.00944123137742281, 0.015165656805038452, -0.027631880715489388, -0.043706391006708145, -0.00578207615762949, 0.003669329220429063, -0.018760377541184425, 0.00719622615724802, 0.02414567954838276, -0.0121542289853096, 0.003096208442002535, -0.0018889246275648475, -0.0020550957415252924, -0.003297987626865506, 0.012337356805801392, 0.010946945287287235, -0.030141403898596764, -0.010804512538015842, 0.010248348116874695, -0.0013904112856835127, -0.010987640358507633, 0.008267859928309917, 0.015721820294857025, -0.013117343187332153, -0.0018227952532470226, -0.018746813759207726, -0.0032945964485406876, -0.022029541432857513, -0.01664423942565918, 0.010797730647027493, 0.012710393406450748, 0.0005760880885645747, 0.03727658838033676, -0.014351757243275642, -0.0006439130520448089, 0.003923672717064619, 0.024837493896484375, 0.0006998686003498733, -0.01702406071126461, 0.005361561663448811, -0.030466962605714798, -0.0038863690569996834, -0.0025400440208613873, 0.04017949476838112, -0.019574277102947235, -0.005585383623838425, -0.01565399579703808, -0.00030139708542265, -0.030466962605714798, -0.0016142335953190923, 0.008349250070750713, -0.014188977889716625, -0.006283980794250965, -0.014433147385716438, 0.009827833622694016, -0.004361143801361322, -0.016915539279580116, -0.0007274224772118032, -0.011916842311620712, -0.004330622497946024, -0.0029300374444574118, 0.003937237896025181, -0.027645446360111237, 0.01908593811094761, 0.03402099013328552, 0.018936723470687866, 0.00577190238982439, 0.21541200578212738, -0.0047782668843865395, -0.008661244995892048, 0.04012523591518402, 0.007677783258259296, -0.013225863687694073, 0.019425062462687492, 0.014921486377716064, 0.015355566516518593, 0.015152091160416603, -0.018963852897286415, 0.004418794997036457, -0.027441971004009247, 0.0036659380421042442, 0.03157929331064224, -0.022558575496077538, -0.015233481302857399, -0.007860910147428513, -0.01378880999982357, 0.01032973825931549, -0.0027689530979841948, -0.02188032492995262, -0.03326135128736496, -0.01228309702128172, 0.044113341718912125, 0.03372256085276604, -0.019818447530269623, 0.01663067564368248, 0.00934627652168274, 0.005924508441239595, -0.018312733620405197, -0.009854963980615139, 0.014758707024157047, -0.0038015879690647125, -0.03491627797484398, -0.0018160127801820636, -0.004188190214335918, -0.021581895649433136, -0.008091514930129051, 0.01964210346341133, -0.005076696630567312, -0.022260146215558052, 0.003286118386313319, -0.025217313319444656, 0.02535296231508255, 0.0008473878260701895, 0.019099503755569458, -0.019140198826789856, 0.0014980833511799574, 0.025081662461161613, 0.011109725572168827, -0.014867226593196392, 0.013680290430784225, -0.0025807388592511415, -0.025258008390665054, -0.005849901121109724, -0.008559507317841053, -0.004829135723412037, -0.03665259853005409, 0.012622221373021603, -0.007223356049507856, 0.015531911514699459, -0.029897233471274376, 0.005744772497564554, -0.029978623613715172, 0.0021144424099475145, -0.02247718535363674, 0.031199472025036812, 0.014012632891535759, 0.003459071973338723, -0.01539626158773899, -0.00271130190230906, -0.01946575753390789, -0.0030029492918401957, -0.006633278913795948, -0.020442437380552292, -0.004493402317166328, 0.04378778114914894, 0.0486440472304821, 0.026071906089782715, 0.018095694482326508, 0.0014802793739363551, -0.0027740399818867445, -0.010194088332355022, 0.0020008357241749763, 0.004405229818075895, 0.03787344694137573, -0.027659010142087936, 0.02192102000117302, -0.02046956680715084, -0.009827833622694016, 0.007365788333117962, -0.014840097166597843, -0.007508221082389355, 0.0014243237674236298, -0.016115205362439156, 0.010268695652484894, 0.027089281007647514, -0.01619659550487995, -0.004649399779736996, -0.031362250447273254, 0.025637827813625336, 0.02109355665743351, 0.01745813898742199, -0.01359211839735508, -0.0014582362491637468, -0.01380915753543377, 0.033369868993759155, -0.006375544238835573, 0.012161011807620525, -0.01804143376648426, -0.03871447592973709, 0.016725629568099976, 0.020130442455410957, 0.02147337608039379, 0.023440299555659294, 0.040043845772743225, -0.014826531521975994, 0.00690118782222271, -0.0012106752255931497, 0.03689676895737648, -0.002638390054926276, -0.009156366810202599, -0.0056905122473835945, -0.012723959051072598, -0.026031212881207466, -0.012255966663360596, 0.012038926593959332, -0.014351757243275642, -0.03933846578001976, 0.009814268909394741, 0.0009944831253960729, 0.00912923738360405, -0.016684934496879578, -0.00801690760999918, -0.0003698578802868724, -0.0017464922275394201, -0.027509795501828194, -0.016332246363162994, -0.00347602809779346, -0.008552724495530128, 0.0005828705616295338, 0.008871502242982388, -0.003004644764587283, 0.025475047528743744, -0.019411498680710793, -0.005975377280265093, 0.00994991883635521, -0.00994991883635521, 0.0019160545198246837, -0.013971937820315361, 0.026492422446608543, 0.010173740796744823, 0.011740497313439846, 0.027102846652269363, 0.006361979525536299, -0.0162508562207222, -0.01319873332977295, -0.002472219057381153, -0.0192894134670496, -0.019384367391467094, -0.017566658556461334, 0.032962922006845474, 0.0014217803254723549, -0.03331561014056206, -0.003564200596883893, -0.1721125692129135, 0.0006163591169752181, 0.00547686405479908, -0.005453125108033419, 0.0019228369928896427, 0.02310117520391941, 0.005765120033174753, -0.004334013443440199, -0.017580224201083183, -0.0162101611495018, 0.005775293800979853, 0.015748951584100723, -0.026438161730766296, -0.002631607698276639, -0.0066638002172112465, -0.0012132186675444245, -0.02613973245024681, 0.027347015216946602, 0.06169356405735016, 0.005076696630567312, 0.03217615187168121, -0.02493244782090187, 0.014935052022337914, -0.017919348552823067, 0.01863829419016838, 0.005927899852395058, -0.0057278163731098175, 0.033125702291727066, -0.0007333571556955576, -0.026017647236585617, -0.007718478329479694, -0.00852559506893158, 0.03979967534542084, 0.03024992346763611, 0.016305115073919296, 0.005293736699968576, 0.010974075645208359, 0.0021619200706481934, -0.027509795501828194, 0.017173275351524353, -0.0008732461137697101, 0.011496326886117458, 0.03231180086731911, 0.011916842311620712, 0.014989311806857586, 0.030304182320833206, 0.03060261346399784, -0.001919445814564824, 0.017336053773760796, -0.01023478340357542, 0.02859499491751194, -0.03157929331064224, -0.0032471190206706524, -0.00018280941003467888, -0.0009249626309610903, 0.0017617527628317475, -0.014080457389354706, 0.02375229448080063, -0.006629887968301773, -0.01802786998450756, 0.00965148862451315, -0.015477651730179787, -0.0015472564846277237, -0.003118251683190465, -0.0008520507835783064, -0.048562657088041306, -0.024294894188642502, 0.01338864304125309, -0.00470705097541213, 0.005436168983578682, 0.009665054269134998, -0.02109355665743351, 0.004306883551180363, 0.004371317569166422, 0.019167328253388405, 0.005649817641824484, -0.027387710288167, 0.014338192529976368, 0.015694690868258476, 0.022246580570936203, 0.0019499670015648007, 0.008091514930129051, -0.0024111766833812, 0.015572606585919857, -0.04199720174074173, 0.0009173323051072657, 0.014758707024157047, 0.010289043188095093, -0.01599312014877796, 0.006616322789341211, 0.013659942895174026, -0.02371159940958023, 0.015057136304676533, 0.0012513701803982258, 0.018299167975783348, 0.004720615688711405, 0.019560713320970535, -0.01002452615648508, 0.004371317569166422, -0.015477651730179787, 0.025434352457523346, 0.010166958905756474, -0.0405321829020977, -0.009102107025682926, 0.025922691449522972, 0.010478952899575233, 0.01908593811094761, 0.0036998505238443613, 0.020333917811512947, 0.010757035575807095, -0.012418746948242188, 0.030331313610076904, 0.029924362897872925, 0.0162644200026989, -0.01661710999906063, 0.03868734464049339, 0.00719622615724802, -0.020944342017173767, -0.010180523619055748, -0.0212699007242918, 0.04579539969563484, -0.031552162021398544, -0.014270367100834846, -0.000245653442107141, -0.021771805360913277, -0.006575627718120813, -0.11253514140844345, -0.04606669768691063, 0.0106349503621459, 4.7159530367935076e-05, -0.02086295187473297, 0.013564988039433956, -0.005622687749564648, 0.02856786549091339, -0.007528568152338266, 0.01744457520544529, -0.021744675934314728, -0.003550635650753975, -0.008756199851632118, -0.014745142310857773, 0.009895659051835537, -0.0091156717389822, 0.006979186553508043, -0.028242304921150208, -0.003842282807454467, 0.022355100139975548, 0.013537857681512833, -0.013768462464213371, 0.026275381445884705, 0.006419630721211433, -0.03201337158679962, -0.02513592317700386, -0.021419115364551544, -0.006633278913795948, 0.006735016591846943, 0.012920650653541088, 0.020130442455410957, -0.030928172171115875, 0.015667561441659927, -0.011116507463157177, -0.004727398511022329, 0.0024332196917384863, -0.0012064360780641437, -0.021595461294054985, 0.03407524898648262, -0.004513749852776527, -0.0057108597829937935, 0.005378517787903547, -0.0018940113950520754, -0.01511139702051878, -0.009800704196095467, -0.010322955437004566, -0.006328066810965538, 0.020998600870370865, 0.017688743770122528, -0.008057602681219578, -0.024389848113059998, -0.017919348552823067, -0.005575209856033325, -0.026316076517105103, 0.039419855922460556, -0.0038829778786748648, 0.01542339101433754, 0.01763448491692543, -0.023792989552021027, -0.0009571794653311372, 0.001125894021242857, -0.014121152460575104, -0.027726834639906883, 0.00663667032495141, 0.022965524345636368, 0.00873585231602192, -0.003784631611779332, 0.0008308555115945637, 0.013470033183693886, 0.006392500828951597, -0.019587842747569084, 0.009509056806564331, -0.016915539279580116, 0.0013174994383007288, -0.007426830939948559, 0.0007621827535331249, -0.007569263223558664, -0.015274176374077797, 0.0025671739131212234, 0.005314084235578775, -0.016305115073919296, 6.565242074429989e-05, 0.0014913008781149983, -0.024430543184280396, 0.025664957240223885, -0.0030402529519051313, -0.0036557642742991447, 0.009156366810202599, 0.024688277393579483, -0.04631086811423302, 0.006480672862380743, 0.027631880715489388, 0.03022279404103756, -0.00426279753446579, -0.009190279059112072, 0.024484803900122643, -0.0038524565752595663, 0.011516674421727657, 0.016671370714902878, 0.017810828983783722, -0.00901393499225378, -0.009190279059112072, -0.051628343760967255, 0.007759172935038805, -0.010709557682275772, 0.011611629277467728, 0.027455536648631096, -0.018760377541184425, -0.008579854853451252, 0.019140198826789856, -0.018353428691625595, -0.012846043333411217, -0.008952892385423183, 0.01520635187625885, -0.0172410998493433, -0.005314084235578775, -0.02432202361524105, -0.019330108538269997, 0.023792989552021027, -0.018746813759207726, 0.02736058086156845, -0.022165190428495407, -0.011808321811258793, -0.0018567077349871397, 0.027713270857930183, 0.02472897246479988, 0.0009232669835910201, 0.03206763043999672, -0.020198266953229904, 0.030901042744517326, -0.0068571013398468494, -0.01726822927594185, 0.017553094774484634, 0.006277197971940041, 0.012723959051072598, 0.002090703696012497, -0.0073115285485982895, -0.019547147676348686, -0.019031677395105362, 0.024294894188642502, 0.0006172069697640836, 0.0017185143660753965, -0.027292756363749504, -0.013490380719304085, 0.022273709997534752, -0.03589295968413353, 0.0011725235963240266, -0.03163355216383934, -0.01802786998450756, -0.03798196464776993, 0.01296812854707241, 0.00881045963615179, 0.02679085172712803, -0.001378541928716004, -0.04156312346458435, -0.03828039765357971, -0.0028639081865549088, -0.0273741465061903, -0.0009292016620747745, 0.016901975497603416, 0.0011767627438530326, -0.012622221373021603, 0.050570275634527206, -0.0015192786231637, -0.001166588976047933, -0.02577347680926323, 0.04199720174074173, 0.0040152366273105145, -0.05143843591213226, -0.006029637064784765, 0.01703762449324131, -0.027333451434969902, -0.015219916589558125, -0.008369597606360912, 0.024444108828902245, -0.0013971937587484717, 0.02186676114797592, -0.0066604092717170715, -0.01804143376648426, -0.027347015216946602, -0.013375078327953815, 0.01888246275484562, 0.014433147385716438, 0.0023806553799659014, -0.014188977889716625, 0.027523361146450043, 0.03752075508236885, 0.007840562611818314, -0.01869255304336548, 0.015409826301038265, 0.02535296231508255, 0.008844371885061264, -0.026695895940065384, -0.0010021134512498975, -0.0017447966383770108, 0.01663067564368248, 0.009468361735343933, 0.008186470717191696, -0.004116973839700222, 0.002684172010049224, 0.0243355892598629, 0.03830752521753311, 0.017729438841342926, -0.002117833821102977, -0.011835452169179916, 0.02513592317700386, -0.017349619418382645, 0.019709927961230278, -0.01086555514484644, -0.01747170463204384, 0.01319873332977295, 0.02106642723083496, 0.01175406202673912, -0.03358691185712814, -0.0012293270556256175, 0.024254199117422104, -0.03342413157224655, 0.021351290866732597, 0.0121542289853096, -0.016562851145863533, -0.02862212434411049, 0.003204728476703167, 0.02329108491539955, 0.00070961844176054, 0.009705749340355396, -0.025217313319444656, 0.022884134203195572, -0.0015481042210012674, 0.016291551291942596, -0.029463153332471848, -0.0024416977539658546, -0.004425577353686094, -0.007264051120728254, -0.017960043624043465, 0.007128401193767786, -0.017132580280303955, 0.004724007099866867, -0.02048313245177269, -0.007359005976468325, 0.02517661824822426, -0.0028011701069772243, 0.10445040464401245, 0.04115617275238037, -0.023616643622517586, -0.0011801539221778512, 0.01105546485632658, 0.013246211223304272, 0.013368295505642891, 0.018312733620405197, -0.008444204926490784, -0.008613767102360725, 0.01448740717023611, -0.020930776372551918, -0.014351757243275642, -0.005198781844228506, -0.011109725572168827, 0.020171137526631355, -0.029463153332471848, 0.002143268007785082, -0.0024010029155761003, 0.0013403904158622026, 0.004154277499765158, -0.01660354621708393, 0.01580321043729782, -0.01126572210341692, -0.03464497998356819, -0.009448014199733734, 0.011069030500948429, 0.029761584475636482, -0.018285604193806648, -0.02619399130344391, 0.03830752521753311, 0.003309857100248337, -0.014080457389354706, -0.019167328253388405, -0.008077950216829777, 0.015572606585919857, -0.011455632746219635, 0.00850524753332138, -0.004395056050270796, 0.021174946799874306, -0.002204310614615679, -0.0024637409951537848, -0.022355100139975548, -0.009698966518044472, 0.017308924347162247, 0.004910525865852833, 0.006256850901991129, -0.023209694772958755, -0.0053446050733327866], "36cc1197-845b-4606-870b-731ad308677a": [-0.012399852275848389, -0.019762694835662842, -0.013776084408164024, -0.02298307791352272, 0.015386275947093964, 0.011360797099769115, -0.013521481305360794, -0.02272159419953823, -0.003894737223163247, -0.022570207715034485, 0.017037754878401756, 0.000857994775287807, 0.003029431216418743, 0.0017288917442783713, -0.010149712674319744, 0.023079413920640945, 0.025267623364925385, 0.008697787299752235, -0.015014693140983582, -0.01508350484073162, -0.02156555838882923, -0.018716758117079735, -0.004641342908143997, 0.00908313225954771, -0.026877814903855324, 0.0031034036073833704, 0.024689605459570885, -0.012310396879911423, -0.0304422564804554, 0.007005021907389164, 0.018469035625457764, -0.024111587554216385, -0.022886741906404495, 0.0036642183549702168, -0.016473500058054924, 0.015111030079424381, 0.01489083282649517, -0.005615027621388435, 0.01944616064429283, 0.00754175242036581, 0.015413801185786724, 0.014071973972022533, -0.0035214342642575502, -0.010122188366949558, 0.003382090711966157, 0.031488191336393356, 0.009461596608161926, -0.013810490258038044, -0.015881719067692757, 0.0007827320951037109, 0.004589734598994255, 0.013404501602053642, -0.026698904111981392, -0.007686256896704435, -0.0011310908012092113, -0.0032324253115803003, -0.010115306824445724, -0.006932769902050495, 0.03305709734559059, -0.021661894395947456, 0.003125767456367612, 0.003523154417052865, -0.005463642068207264, -0.0037915196735411882, -0.02446940913796425, -0.017381813377141953, -0.006416682619601488, 0.004094291012734175, -0.0020884324330836535, -0.016294589266180992, 0.05430612340569496, 0.02997433766722679, 0.004018598236143589, -0.012055793777108192, 0.009578576311469078, -0.013397620990872383, -0.018221314996480942, -0.02760721743106842, -0.014175191521644592, -0.005553096998482943, 0.008532639592885971, -0.010135950520634651, -0.025570394471287727, 0.029588991776108742, 0.02638237178325653, 0.0346810519695282, 0.011925051920115948, 0.01856537163257599, 0.004689511377364397, -0.028488006442785263, 0.0029761020559817553, 0.012757672928273678, 0.002704296261072159, 0.03179096430540085, 0.01669369637966156, 0.0021968106739223003, 0.004077088087797165, 0.007163288537412882, -0.005542775150388479, -0.015193603932857513, -0.005670076701790094, 0.022432584315538406, -0.009723080322146416, -0.019170913845300674, -0.0001897695183288306, -0.013755440711975098, 0.029644042253494263, -0.013425145298242569, 0.012145249173045158, 0.023602383211255074, -0.023808816447854042, 0.0396905355155468, -0.0017297518206760287, -0.010328622534871101, -0.0028161152731627226, 0.001194741576910019, 0.0327543281018734, -0.02368495613336563, -0.005030128639191389, -0.02657504379749298, -0.012269110418856144, 0.007927097380161285, 0.03759866580367088, 0.0026440860237926245, 0.011794310063123703, 0.01021164283156395, -0.0017288917442783713, -0.014684397727251053, 0.01178054790943861, -0.00601757550612092, 0.007885810919106007, -0.005704482551664114, 0.01387242041528225, 0.002172726672142744, -0.018661709502339363, 0.004985401406884193, -0.009034964255988598, 0.009895109571516514, 0.009365260601043701, -0.029066024348139763, 0.019872793927788734, 0.01412014290690422, 0.03146066889166832, -0.0059831696562469006, -0.013349452055990696, 0.044975269585847855, -0.0034784269519150257, 0.016927655786275864, -0.0008803585660643876, -0.0029950253665447235, -0.007417891640216112, -0.005033569410443306, -0.032891951501369476, -0.013156780041754246, -0.0024324904661625624, 0.02067100815474987, 8.289648394566029e-05, 0.02291426621377468, 0.010363028384745121, 0.016913894563913345, 0.024992376565933228, 0.03280937671661377, -0.014835783280432224, -0.009991445578634739, 0.0017521156696602702, 0.03349749371409416, 0.003328761551529169, -0.02779989130795002, -0.010039613582193851, -0.010149712674319744, 0.02548781968653202, 0.03484619781374931, -0.0183038879185915, 0.027896227315068245, -0.006519900169223547, 0.01100985798984766, -0.004579412750899792, 0.009743724018335342, -0.025074951350688934, -0.02722187340259552, 0.013824252411723137, 0.0018407106399536133, -0.004073647316545248, 0.022377535700798035, -0.017615772783756256, -0.02689157798886299, 0.02953394316136837, 0.013583412393927574, 0.009709318168461323, -0.019556259736418724, 0.006509578321129084, -0.002723219571635127, -0.013459551148116589, -0.0141614293679595, -0.6205155849456787, 0.0063272276893258095, 0.04216775670647621, -0.006705691572278738, 0.00415622116997838, 0.007218338083475828, 0.0007616585353389382, -0.009791892021894455, -0.0023086294531822205, 0.018771806731820107, 0.02496485225856304, 0.0008373513119295239, -0.00856704544275999, 0.0030156688299030066, -0.007411010563373566, -0.017753396183252335, -0.006406360771507025, -0.011594756506383419, -0.0022071325220167637, 7.09082160028629e-05, -0.025983264669775963, 0.01075525488704443, -0.00680546835064888, 0.013776084408164024, -0.009743724018335342, -0.0194599237293005, 0.015606473200023174, -0.007094476837664843, 0.003825925523415208, 0.04814060404896736, -0.03941528871655464, 0.008016552776098251, 0.02356109581887722, -0.004369537346065044, 0.04065389931201935, -0.03344244137406349, -0.008174818940460682, 0.02496485225856304, 0.014808258973062038, 0.030717503279447556, -0.020781107246875763, -0.006371954921633005, 0.02587316557765007, 0.02753840573132038, -0.02265278249979019, -0.0045518879778683186, 0.020368237048387527, -0.0010820626048371196, 0.008064720779657364, -0.006007253658026457, 0.005976288579404354, -0.0028126745019108057, -0.017065279185771942, -0.009413428604602814, 9.429341298528016e-05, -0.008883578702807426, 0.02786870300769806, -0.014285290613770485, 0.007844523526728153, -0.01508350484073162, 0.007170169614255428, 0.007438535336405039, -0.014808258973062038, -0.036827974021434784, -0.02870820462703705, -0.0018441511783748865, -0.032589178532361984, -0.018248839303851128, -0.020189326256513596, -0.01965259574353695, 0.035341642796993256, -0.004028919618576765, -0.0008842292008921504, 0.0034887485671788454, -0.0024823788553476334, 0.027180586010217667, 0.05089306831359863, -0.002418728079646826, -0.002637204946950078, 0.014918357133865356, 0.005405152216553688, -0.003984192386269569, -0.005374186672270298, -0.014230241067707539, 0.022776642814278603, 0.02292802929878235, -0.011945695616304874, -0.0121383685618639, 0.008140413090586662, -0.012083319015800953, -0.003853450296446681, 0.02477218024432659, -0.007555515039712191, -0.03922261670231819, 0.0036332530435174704, 0.04987465590238571, -0.00031180260702967644, 0.01862042210996151, 0.01650102436542511, -0.006048540584743023, -0.023217037320137024, -0.031818490475416183, 0.009427190758287907, -0.00786516722291708, 0.040736474096775055, 0.015744095668196678, -0.03908499330282211, -0.0028883672785013914, 0.009599220007658005, -0.01312925573438406, -0.030277108773589134, -0.012234704568982124, -0.024125350639224052, -0.015317464247345924, 0.027373258024454117, -0.01790478080511093, -0.0037984009832143784, 0.019377348944544792, 0.017065279185771942, 0.007521109189838171, -0.02047833614051342, -0.018606659024953842, 0.016803795471787453, 0.01856537163257599, 0.007940859533846378, 0.005229682195931673, 0.005645992700010538, -0.030414732173085213, -0.007775711826980114, 0.01412014290690422, -0.0017787801334634423, 0.010122188366949558, -0.00786516722291708, -0.007342198863625526, 0.03897489607334137, 0.01046624593436718, 0.014188953675329685, -0.001248070620931685, 0.005893714260309935, -0.05521443486213684, 0.0028212759643793106, 0.01274390984326601, 0.02876325324177742, -0.017822207883000374, 0.009358379058539867, -0.021290311589837074, -0.007816999219357967, 0.008174818940460682, 0.007748187519609928, 0.0021211178973317146, -0.00947535876184702, -0.014175191521644592, 0.02175823040306568, 0.007225219160318375, 0.0027387021109461784, 0.0023361542262136936, 0.016212016344070435, -0.02105635218322277, -0.006306583993136883, -0.003987632691860199, -0.00312060653232038, 0.000997768365778029, -0.010438721626996994, 0.018661709502339363, -0.011863121762871742, -0.005553096998482943, -0.013349452055990696, 0.017423098906874657, -0.014422914013266563, -0.01701023057103157, -0.01906081661581993, -0.010473127476871014, -0.011828715912997723, 0.012902176938951015, 0.023217037320137024, 0.01702399179339409, -0.013920588418841362, -0.017505673691630363, -0.014175191521644592, -0.013989400118589401, 0.021593082696199417, 0.011532826349139214, 0.0076243262737989426, -0.030332157388329506, 0.038672126829624176, 0.004545006901025772, 0.020079227164387703, 0.030001861974596977, -0.03465352579951286, 0.005023247562348843, -0.01681755855679512, 0.002546029631048441, -0.014464200474321842, -0.008037196472287178, -0.01380360871553421, -0.016776271164417267, -0.007149526383727789, 0.022184863686561584, 0.007775711826980114, 0.017932305112481117, 0.012489307671785355, 0.016666172072291374, 0.006107030436396599, -0.0042663197964429855, 0.007555515039712191, -0.02561168186366558, 0.010920402593910694, -0.021730706095695496, 0.016473500058054924, -0.007135764230042696, 0.006960294209420681, 0.003905058838427067, 0.016982706263661385, -0.01990031823515892, -0.004758323077112436, 0.03440580517053604, 0.00892486609518528, -0.0024823788553476334, -0.009812535718083382, -0.006148317363113165, 0.006131114438176155, 0.011133718304336071, 0.0088629350066185, -0.02093249186873436, -0.006605914793908596, 0.0020024178083986044, -0.004176864866167307, 0.009165706112980843, -0.016707459464669228, -0.03286442533135414, -0.018510323017835617, 0.016459736973047256, -0.02387762814760208, 0.017863493412733078, 0.02901097573339939, 0.00870466884225607, 0.008986796252429485, -0.0022948672994971275, 0.017313001677393913, -0.005718244705349207, 0.0120420316234231, -0.011175005696713924, 0.03801153227686882, -0.036827974021434784, 0.014904594980180264, 0.011732379905879498, 0.025391483679413795, -0.008078482933342457, -0.02510247565805912, 0.0046516647562384605, -0.01818002760410309, 0.007486703339964151, -0.002583876019343734, 0.0050266883336007595, 0.0339103601872921, -0.011966339312493801, 0.024607032537460327, 0.023093177005648613, 0.004489957820624113, 0.01835893839597702, 0.009131300263106823, 0.0003412625810597092, 0.004572531674057245, 0.005484285298734903, 0.023918915539979935, -0.022322487086057663, -0.026740191504359245, -0.02492356486618519, -0.0194599237293005, -0.0083812540397048, 0.01255123782902956, -0.012241585180163383, 0.005659754853695631, -0.012097081169486046, 0.0009022922604344785, 0.0015947091160342097, 0.00275418465025723, -0.0023120702244341373, 0.013707272708415985, 0.018441511318087578, -0.008628975600004196, -0.030222060158848763, 0.023189513012766838, 0.0023327136877924204, 0.0015783662674948573, -0.010149712674319744, -0.0167625080794096, 0.007810117676854134, 0.007782593369483948, 0.009709318168461323, 0.004458992276340723, -0.006389157846570015, -0.00653022201731801, -0.003671099431812763, 0.014794495888054371, -0.005308815743774176, 0.03947034105658531, -0.004730798304080963, -0.016900131478905678, 0.0050266883336007595, 0.03883727267384529, 0.019281012937426567, -0.021648133173584938, -0.014849545434117317, 0.02697415091097355, -0.013858658261597157, -0.01508350484073162, -0.012310396879911423, -0.008284918032586575, -0.016322113573551178, -0.009262043051421642, -0.0077137816697359085, -0.02457950823009014, -0.0062377722933888435, 0.00011880754755111411, 0.0001694485981715843, -0.0077688307501375675, -0.03214878588914871, -0.015193603932857513, 0.016666172072291374, -6.901320830365876e-06, -0.01951497234404087, 0.003345964476466179, 0.010631393641233444, 0.0643526166677475, -0.012214060872793198, 0.005735447630286217, 0.011697974056005478, -0.006089827511459589, -0.01396875735372305, -0.011381440795958042, -0.02554287016391754, 0.026478707790374756, 0.0026303238701075315, -0.009317091666162014, 0.010934164747595787, 0.011890646070241928, -0.0013796727871522307, 0.0068673985078930855, -0.011656686663627625, -0.0064270044676959515, -0.016611123457551003, -0.0021796077489852905, -0.01017723698168993, 0.001527617801912129, -0.016322113573551178, 0.026753954589366913, 0.016734983772039413, 0.038424402475357056, 0.021414173766970634, 0.02767602913081646, 0.019748931750655174, -0.0018957598367705941, -0.006960294209420681, -0.0105006517842412, 0.006502697244286537, 0.002693974645808339, 0.019611308351159096, -0.04995723068714142, 0.029066024348139763, -0.00962674431502819, -0.012420495972037315, -0.02009299024939537, 0.007810117676854134, -0.0043970621190965176, 0.028845828026533127, -0.0045656501315534115, -0.009895109571516514, 0.0052675288170576096, -0.01867547072470188, -0.015909245237708092, 0.030277108773589134, -0.011113075539469719, 0.0019181236857548356, 0.004304166417568922, 0.009021202102303505, -0.025776829570531845, 0.009833179414272308, 0.007073833607137203, -0.011684211902320385, 0.010060257278382778, -0.02612088806927204, -0.008436303585767746, -0.007913335226476192, -0.025790590792894363, -0.005525572225451469, -0.018634183332324028, -0.007968384772539139, -0.019762694835662842, -0.034515902400016785, -0.014588061720132828, 0.005590943153947592, -0.006860517431050539, 0.003270271699875593, -0.009427190758287907, -0.0358370877802372, -0.03311214596033096, 0.022432584315538406, 0.015950530767440796, 0.02401525154709816, 0.0018149062525480986, 0.013721034862101078, 0.013604055158793926, -0.0023069093003869057, -0.000838641484733671, -0.01226222887635231, -0.010521295480430126, -0.02073981985449791, -0.005264088045805693, 0.007507346570491791, 0.0009556212462484837, 0.01116812415421009, 0.008518877439200878, 0.008801004849374294, -0.0024823788553476334, -0.01879933290183544, 0.013349452055990696, 0.0014398829080164433, 0.01990031823515892, 0.01585419476032257, 0.02068476937711239, -0.011759904213249683, 0.010741492733359337, -0.0362224318087101, 0.02279040589928627, -0.01630835235118866, -0.018083691596984863, 0.0030862006824463606, 0.009750605560839176, 0.029891762882471085, -0.012434258125722408, -0.004768644459545612, -0.013411383144557476, -0.026753954589366913, 0.010892878286540508, 0.0028711643535643816, -0.02246011048555374, -0.02060219645500183, 0.002499581780284643, -0.031873539090156555, 0.0018441511783748865, 0.015895482152700424, -0.005105821415781975, -0.005563418846577406, 0.007693137973546982, -0.021648133173584938, 0.039965782314538956, 0.01816626451909542, 0.0028866471257060766, 0.012819603085517883, 0.013115492649376392, 0.0031034036073833704, -0.024951089173555374, -0.017257951200008392, 0.02813018672168255, 0.007101358380168676, -0.021661894395947456, -0.020781107246875763, -0.010617631487548351, -0.003970429766923189, -0.024056538939476013, 0.0075830393470823765, 0.0017005068948492408, 0.011126837693154812, -0.045745957642793655, 0.00417342409491539, 0.029946813359856606, -0.019680120050907135, 0.003605728503316641, -0.035286594182252884, -0.025886928662657738, 0.0077688307501375675, 0.009489120915532112, 0.037268366664648056, -0.015936769545078278, -0.0011637763818725944, -0.03575451299548149, -0.023285849019885063, -0.01951497234404087, -0.010996095836162567, 0.000921215454582125, 0.008532639592885971, 0.042663197964429855, 0.04241547733545303, 0.01493211928755045, 0.029809189960360527, 0.03454342857003212, -0.002401525154709816, -0.007686256896704435, -0.004273200873285532, -0.0025597920175641775, -0.012255348265171051, 0.005962525960057974, -0.021166451275348663, -0.0020419845823198557, 0.013638461008667946, -0.021015066653490067, 0.016858844086527824, -0.0157991461455822, -0.014367864467203617, -0.004046122543513775, -0.018469035625457764, -0.028543056920170784, -0.036607775837183, 0.010486889630556107, 0.047727733850479126, 0.010307978838682175, 0.009379022754728794, -0.038369353860616684, 0.0023413151502609253, 0.021207738667726517, -0.026354847475886345, 0.05568235367536545, -0.0029416964389383793, 0.022872978821396828, -0.009241399355232716, 0.003825925523415208, 0.027758603915572166, -0.008174818940460682, -0.00988822802901268, -0.008594569750130177, -0.024249210953712463, 0.003588525578379631, 0.017946068197488785, 0.02561168186366558, -0.0006648921989835799, -0.012310396879911423, -0.00048985262401402, 0.005178073886781931, 0.021207738667726517, -0.008422541432082653, -0.025969501584768295, 0.01431281492114067, -0.017189139500260353, -0.015138554386794567, -0.03619490563869476, -0.02119397558271885, 0.021551797166466713, -0.014409150928258896, 0.011312629096210003, -0.006244653835892677, 0.021304074674844742, 0.00038728033541701734, -0.008326204493641853, 0.005160870961844921, -0.0011061466066166759, 0.011766785755753517, 0.017767157405614853, 0.016514787450432777, 0.012503069825470448, 0.015964293852448463, -0.04236042872071266, -0.017436861991882324, -0.006285940762609243, 0.0010519574861973524, -0.011691092513501644, 0.04095667228102684, -0.017051517963409424, -0.017863493412733078, 0.006058862432837486, -0.0024944208562374115, 0.015936769545078278, -0.03349749371409416, 0.032589178532361984, 0.021138926967978477, -0.004658545833081007, -0.024304261431097984, -0.021524270996451378, 0.008993677794933319, 0.006561187095940113, -0.008333086036145687, 0.011959457769989967, 0.0221573393791914, 0.012200298719108105, -0.012097081169486046, 0.02214357629418373, -0.02786870300769806, 0.02689157798886299, -0.017491910606622696, 0.009090013802051544, -0.011402083560824394, 0.0017546960152685642, -0.002950297901406884, -0.008587689138948917, 0.005167752038687468, 0.013273759745061398, -0.02901097573339939, 0.010769017040729523, 0.024249210953712463, 0.013996281661093235, 0.0037984009832143784, 0.0006481193704530597, -0.029588991776108742, 0.03184601292014122, 0.003729589283466339, -0.008064720779657364, 0.0031240470707416534, -0.009833179414272308, 0.038369353860616684, -0.022253675386309624, -0.01694141887128353, 0.009585456922650337, -0.006124233361333609, -0.0061379955150187016, 0.004624140448868275, -0.02357485704123974, -0.020560909062623978, 0.009014320559799671, -0.002687093336135149, -0.0037399111315608025, -0.021496746689081192, -0.011071788147091866, 0.014023805968463421, -0.02188209258019924, 0.0037330298218876123, -0.008353729732334614, -0.008904222398996353, 0.003561000805348158, 0.0037811980582773685, -0.0010932444129139185, 0.0036573370452970266, 0.02485475316643715, -0.022239912301301956, 0.020588433369994164, 0.014436676166951656, 0.031956110149621964, -0.019019529223442078, 0.03179096430540085, -0.006543984171003103, -0.0016506185056641698, 0.008794124238193035, 0.015606473200023174, -0.03828677907586098, -0.024937327951192856, 0.016666172072291374, 0.007989027537405491, 0.005945323035120964, 0.0002844929986167699, 0.015014693140983582, 0.00045716713066212833, -0.0025443092454224825, -0.032066211104393005, -0.01939111202955246, 0.002693974645808339, -0.003440580563619733, 0.004231913946568966, -0.0018114655977115035, -0.02086368016898632, -0.0008868096047081053, 0.0005762972286902368, 0.0073284367099404335, -0.007720662746578455, -0.01228975411504507, -0.023354660719633102, -0.01714785397052765, -0.004734238609671593, -0.019404875114560127, 0.011904408223927021, -0.009365260601043701, -0.036883022636175156, -0.022226151078939438, 0.033552542328834534, -0.007493584416806698, 0.015014693140983582, 0.033414918929338455, -0.006502697244286537, -0.011794310063123703, 0.01951497234404087, -0.009413428604602814, -0.03217630833387375, -0.040158454328775406, -0.004369537346065044, -0.03107532300055027, -0.007245862390846014, 0.0026389253325760365, 0.035451740026474, 0.022184863686561584, -0.010906640440225601, -0.02997433766722679, -0.01389994565397501, -0.0310202743858099, -0.0034749864134937525, -0.03569946438074112, 0.019886555150151253, 0.02484099194407463, 0.028818301856517792, 0.006045099813491106, 0.03465352579951286, -0.004163102246820927, 0.03564441576600075, -0.033937886357307434, -0.019693883135914803, -0.009895109571516514, -0.03594718500971794, 0.018469035625457764, -0.03927766904234886, -0.03234145790338516, -0.013597174547612667, 0.015138554386794567, -0.0231207013130188, 0.012454901821911335, 0.00933773536235094, -0.010184118524193764, 0.011216292157769203, -0.012207179330289364, -0.015978055074810982, 0.010349266231060028, 0.003051794832572341, 0.003129207994788885, -0.011656686663627625, 0.004527803976088762, 0.015936769545078278, 0.008711549453437328, -0.026354847475886345, -0.005405152216553688, 0.0014338619075715542, -0.01405821181833744, -0.01222782302647829, -0.018400223925709724, 0.0015258974162861705, -0.026685142889618874, -0.011429608799517155, -0.0018768366426229477, -0.011450251564383507, -0.023602383211255074, 0.035451740026474, -0.0030363122932612896, -0.022239912301301956, -0.008222987875342369, 0.015289939939975739, -0.007693137973546982, -0.009220755659043789, 0.0037536732852458954, -0.02914859913289547, -0.006224010139703751, -0.0019404874183237553, 0.03300204873085022, -0.0038981777615845203, -0.009124419651925564, -0.026230985298752785, -0.011870002374053001, -0.028928400948643684, 0.004372977651655674, 0.00574576947838068, -0.011821834370493889, -0.005535894073545933, -0.007493584416806698, -0.0024737773928791285, -0.033359870314598083, -0.01669369637966156, 0.0009143342613242567, -0.021730706095695496, -0.04313111677765846, 0.011367677710950375, 0.014904594980180264, -0.04109429568052292, 0.001692765625193715, 0.03407550975680351, -0.015895482152700424, 0.0016007301164790988, 0.22052745521068573, 0.004073647316545248, 0.0049819606356322765, 0.031157897785305977, 0.0001465472305426374, -0.011408965103328228, -0.00036061584251001477, 0.014051331207156181, -0.0003905058838427067, 0.028873352333903313, -0.00018396353698335588, 0.02349228411912918, -0.022639019414782524, -0.008016552776098251, 0.023285849019885063, -0.00805783923715353, -0.011759904213249683, -0.013597174547612667, -0.01760200969874859, -0.004238795023411512, 0.011436489410698414, 0.0011973220389336348, -0.025391483679413795, -0.00576297240331769, 0.04037865251302719, 0.02953394316136837, -0.00553933484479785, 0.01906081661581993, 0.01383113395422697, 0.012716385535895824, -0.020560909062623978, -0.015413801185786724, 0.014188953675329685, -0.01091352105140686, -0.014753209426999092, -0.0004541566304396838, 0.01361093670129776, -0.02786870300769806, 0.005398270674049854, 0.011064906604588032, -0.004452111199498177, -0.011636042967438698, 0.00574576947838068, -0.017877256497740746, 0.01663864776492119, -0.016666172072291374, 0.01328752189874649, -0.009255161508917809, 0.011113075539469719, 0.03575451299548149, 0.005260647740215063, -0.0028556818142533302, 0.0022879859898239374, 0.011608518660068512, -0.012454901821911335, -0.03063492849469185, -0.004520922899246216, 0.0013091409346088767, -0.02138664945960045, 0.030222060158848763, -0.006389157846570015, 0.004861540161073208, -0.008787242695689201, 0.012351684272289276, -0.028543056920170784, 0.009654268622398376, -0.017629534006118774, 0.02131783775985241, 0.00653366232290864, 0.006234331987798214, -0.018771806731820107, -0.009502883069217205, -0.01990031823515892, -0.012255348265171051, 0.007390366867184639, -0.016322113573551178, 0.003332202322781086, 0.03575451299548149, 0.04296597093343735, 0.016776271164417267, 0.008133532479405403, 0.01662488467991352, -0.02650623209774494, 0.00519871711730957, 0.0077275438234210014, -0.01354212500154972, 0.03074502758681774, -0.023740004748106003, -0.0070119029842317104, -0.00603477843105793, -0.015647759661078453, 0.002740422496572137, -0.02049209736287594, 0.024097826331853867, -0.018455274403095245, -0.01816626451909542, 0.010342384688556194, 0.03655272722244263, -0.000334166397806257, -0.016101917251944542, -0.031295519322156906, 0.053067512810230255, 0.029754141345620155, 0.01848279871046543, -0.020781107246875763, -0.009840060025453568, -0.008711549453437328, 0.024029014632105827, -0.013583412393927574, 0.008064720779657364, -0.012640693224966526, -0.03671787679195404, 0.0279375147074461, -0.005260647740215063, 0.0173405259847641, 0.0298642385751009, 0.016913894563913345, -0.016652408987283707, -0.02727692201733589, -0.0029485775157809258, -0.007369723636657, -0.00985382217913866, 0.006358192767947912, -0.008436303585767746, -0.02208852767944336, -0.01251683197915554, -0.016074392944574356, 0.0120420316234231, -0.016790032386779785, -0.01970764435827732, 0.0046963924542069435, 0.004620699677616358, 0.0161844901740551, -0.005074856337159872, 8.827239071251824e-05, 0.013569649308919907, 0.01027357392013073, -0.022267436608672142, -0.00391882099211216, 0.005498047918081284, 0.0010726009495556355, 0.0009444393799640238, 0.01707904227077961, 0.0004623279965016991, 0.019528735429048538, 0.0017237308202311397, 0.0038844153750687838, 0.006440766621381044, 0.0008162777521647513, -0.021813280880451202, 0.007486703339964151, 0.019597547128796577, -0.0077275438234210014, -0.00394978653639555, 0.018826857209205627, -0.01200762577354908, 0.0028453601989895105, -0.028928400948643684, 0.012977870181202888, -0.0011551749194040895, -0.035341642796993256, -0.0005014645867049694, 0.03151571750640869, 0.014230241067707539, -0.019680120050907135, -0.008298680186271667, -0.17560723423957825, 0.02170318178832531, 0.0031120050698518753, -0.0065130190923810005, 0.0068398742005229, 0.02118021436035633, 0.027579693123698235, 0.0009934676345437765, -0.011085550300776958, -0.022267436608672142, -0.004500279203057289, 0.0017271714750677347, -0.03385531157255173, -0.0070428685285151005, -0.011766785755753517, -0.012083319015800953, -0.01020476222038269, 0.032258883118629456, 0.03872717544436455, -0.0005289892433211207, 0.024565745145082474, -0.001863074372522533, 0.02093249186873436, -0.03440580517053604, 0.0012222662335261703, 0.007803236600011587, -0.018455274403095245, 0.03525906801223755, -0.011484657414257526, -0.023905154317617416, -0.026533756405115128, 0.00302599067799747, 0.03363511711359024, 0.002881486201658845, 0.01438162662088871, -0.0028625628910958767, 0.019349824637174606, 0.0061276741325855255, -0.015771621838212013, 0.016019342467188835, 0.03424065560102463, 0.012537475675344467, 0.019088340923190117, -0.0055668591521680355, 0.012454901821911335, 0.0298642385751009, 0.015317464247345924, -0.0179185438901186, -0.006485494319349527, 0.004090850241482258, 0.03561688959598541, -0.030332157388329506, -0.020120514556765556, 0.007287149783223867, 0.008615213446319103, 0.017436861991882324, 0.005735447630286217, 0.002413567155599594, 0.0026096804067492485, -0.02554287016391754, -0.001813185983337462, -0.0063272276893258095, -0.020203089341521263, -0.006168961059302092, -0.013177423737943172, -0.02824028581380844, -0.02702920138835907, 0.027689792215824127, 0.005319137591868639, 0.006058862432837486, 0.009392784908413887, 0.011519063264131546, -1.2996255463804118e-05, -0.003829366061836481, 0.005394830368459225, 0.020368237048387527, -0.03311214596033096, 0.0039257025346159935, 0.04563586041331291, -0.00396698946133256, 0.02182704210281372, 0.010307978838682175, -0.0002367549459449947, 0.015537661500275135, -0.026616331189870834, -0.0025632325559854507, 0.015840433537960052, 0.009840060025453568, -0.005019806791096926, 0.01171861682087183, 0.012434258125722408, -0.02177199348807335, 0.037323419004678726, -0.01758824847638607, -0.0012867770856246352, 0.009860703721642494, 0.03305709734559059, -0.0006571508711203933, 0.012798959389328957, -0.01662488467991352, 0.01669369637966156, 0.005553096998482943, -0.03770876303315163, -0.003294355934485793, 0.03247908130288124, 0.016858844086527824, 0.019982891157269478, 0.002189929597079754, 0.034378279000520706, -0.00733531778678298, -0.03936024010181427, 0.02067100815474987, 0.01567528396844864, 0.004386740271002054, 0.000613713578786701, 0.048058029264211655, -0.0011723778443410993, -0.007913335226476192, -0.0003376069653313607, -0.0007117700879462063, 0.0593431331217289, -0.026726430281996727, -0.015895482152700424, 0.0003720127569977194, -0.017189139500260353, -0.017478149384260178, -0.10244672745466232, -0.016927655786275864, 0.04376418516039848, -0.002103914972394705, -0.002728380262851715, 0.009544170461595058, 0.0019146830309182405, 0.020134277641773224, -0.02009299024939537, 0.0073215551674366, -0.04789287969470024, -0.0056528737768530846, -0.007479822263121605, -0.008828530088067055, 0.014299052767455578, -0.013432026840746403, 0.0038018415216356516, -0.025845641270279884, 0.0023757207673043013, 0.00991575326770544, 0.009791892021894455, -0.021854568272829056, 0.006134555209428072, 0.002840199274942279, -0.017230426892638206, -0.021276550367474556, -0.030222060158848763, 0.009262043051421642, -0.004679189529269934, 0.01919844001531601, 0.04447982460260391, -0.00468607060611248, 0.0289008766412735, -0.021083878353238106, -0.010700205340981483, -0.02978166565299034, -0.01206955686211586, -0.01046624593436718, 0.034570954740047455, -0.015248652547597885, 0.001359889400191605, 0.020189326256513596, 0.009076251648366451, -0.021290311589837074, -0.006843314506113529, 0.006416682619601488, -0.01604686677455902, 0.03754361346364021, 0.010734611190855503, -0.009771248325705528, -0.011739260517060757, -0.024428121745586395, -0.0075692771933972836, -0.029616517946124077, 0.03333234414458275, 0.010762135498225689, 0.006877720355987549, 0.025955740362405777, -0.03184601292014122, -0.005291612818837166, -0.007651851046830416, -0.010032732971012592, -0.01578538306057453, 0.006058862432837486, 0.029313746839761734, 0.01328752189874649, -0.03250660374760628, 0.021097639575600624, 0.01024604868143797, 0.006457969546318054, -0.02587316557765007, 0.0034715456422418356, -0.02939631976187229, -0.001489771413616836, -0.024428121745586395, -0.01104426383972168, 0.0003556700248736888, -0.016459736973047256, 0.008161056786775589, 0.023450996726751328, -0.019294776022434235, -0.00783764198422432, -0.0032221036963164806, -0.03093769960105419, 0.00704630883410573, -0.001568904728628695, 0.006509578321129084, 0.0036917428951710463, 0.013982519507408142, -0.0408465713262558, 0.0007324135513044894, 0.024111587554216385, 0.02548781968653202, 0.018014879897236824, -0.00047264975728467107, 0.0031446905340999365, -0.017436861991882324, 0.009778129868209362, -0.001792542403563857, 0.010122188366949558, -0.022996840998530388, 0.006437326315790415, -0.05496671423316002, 0.004345453344285488, 0.014904594980180264, 0.010115306824445724, 0.012578762136399746, -0.05089306831359863, -0.011663568206131458, -0.012200298719108105, 0.016225777566432953, 0.0032926355488598347, -0.022171100601553917, 0.008594569750130177, -0.01977645605802536, 0.006915566977113485, -0.016129441559314728, -0.026877814903855324, 0.016294589266180992, -0.014436676166951656, 0.008436303585767746, -0.002566673094406724, 0.00018966200877912343, -0.002057467121630907, 0.009551052004098892, 0.028488006442785263, 0.002442812081426382, 0.02401525154709816, -0.0008162777521647513, 0.03223135694861412, -0.0006739236996509135, -0.03231393173336983, 0.01578538306057453, -0.009282685816287994, 0.012427376583218575, 0.009234517812728882, 0.0003638413909357041, -0.03589213639497757, -0.012888414785265923, 0.024249210953712463, 0.03960796445608139, 0.006261856760829687, -0.014780733734369278, 0.0014811699511483312, 0.020065465942025185, -0.020629720762372017, -0.030717503279447556, -0.016101917251944542, -0.013879301957786083, -0.03214878588914871, 0.006347870919853449, 0.004242235794663429, 0.037075694650411606, -0.0006554306019097567, -0.04095667228102684, -0.02145545929670334, -0.00924828089773655, -0.01566152274608612, 0.014711922034621239, 0.026423659175634384, -0.01149153895676136, -0.010032732971012592, 0.05303999036550522, -0.005742328707128763, 0.0004575971979647875, -0.002143481746315956, 0.03569946438074112, -0.01152594480663538, -0.06341677904129028, -0.00394978653639555, 0.0289008766412735, -0.015689047053456306, -0.027620980516076088, -0.008477590046823025, 0.018014879897236824, 0.005071415565907955, 0.013452669605612755, 0.00038190445047803223, -0.01991407945752144, -0.02601078897714615, -0.010996095836162567, 0.015166078694164753, 0.018510323017835617, -0.02061595767736435, -0.010197880677878857, 0.01656983606517315, 0.0310202743858099, 0.002422168618068099, -0.005064534489065409, 0.02748335711658001, 0.013631580397486687, -0.001071740873157978, -0.017560722306370735, -0.007128882687538862, 0.0031773762311786413, 0.01881309412419796, 0.01178742852061987, 0.016514787450432777, -0.014464200474321842, 0.006072624586522579, 0.030139485374093056, 0.016611123457551003, 0.013184304349124432, 0.0008696067379787564, -0.017257951200008392, 0.0025030223187059164, -0.0023533571511507034, 0.01611567847430706, -0.007211457006633282, -0.025267623364925385, 0.012503069825470448, 0.005869630258530378, -0.019859030842781067, -0.024951089173555374, -0.0023757207673043013, 0.014051331207156181, -0.006334108766168356, 0.006158639211207628, 0.00016880348266568035, 0.004634461831301451, -0.026533756405115128, 0.0061964853666722775, 0.008835410699248314, 0.013163660652935505, 0.0009607821120880544, -0.02490980364382267, 0.03781886026263237, 0.006488935090601444, 0.009076251648366451, -0.0008734773728065193, -0.00602101581171155, -0.013487075455486774, 0.006574949249625206, -0.0011345314560458064, 0.0006889762589707971, -0.022198624908924103, -0.00653366232290864, -0.004434908274561167, -0.0036745399702340364, 0.032781850546598434, -0.013039800338447094, 0.09121666848659515, 0.02914859913289547, -0.012984750792384148, 0.00018589886894915253, -0.010129068978130817, 0.008649619296193123, 0.0011844198452308774, 0.0078995730727911, -0.004077088087797165, -0.014574299566447735, 0.032781850546598434, -0.010713967494666576, -0.01332192774862051, -0.0068536363542079926, -0.02471712976694107, -0.002222615061327815, 0.0019731728825718164, 0.0012712945463135839, -0.017065279185771942, 0.009778129868209362, 0.022996840998530388, -0.013342571444809437, 0.004238795023411512, -0.014188953675329685, -0.04293844476342201, 0.002243258524686098, -0.00021041299623902887, 0.010528176091611385, -0.008222987875342369, -0.022845454514026642, 0.024703368544578552, -0.009255161508917809, -0.024620793759822845, -0.015262415632605553, -0.009557932615280151, 0.022817930206656456, -0.014945881441235542, -0.012558119371533394, 9.778774983715266e-05, 0.016005581244826317, 0.0027920310385525227, 0.027772365137934685, -0.020437048748135567, -0.013012275099754333, 0.009544170461595058, -0.0002464315912220627, -0.001395155442878604, -0.023616144433617592, -0.011580994352698326], "b1d6a962-e1e8-4fff-8ef0-b5fccc0a1260": [-0.0057647391222417355, -0.005053345579653978, 0.00043279348756186664, -0.028792155906558037, 0.02328323759138584, 0.02977338805794716, -0.0158679261803627, -0.02561016008257866, -0.012678921222686768, -0.03184799477458, 0.010302937589585781, 0.028441715985536575, 0.015461415983736515, -0.011971032246947289, -0.008683905005455017, 0.019750801846385002, 0.02954910695552826, -0.002405771054327488, 0.005799782928079367, -0.002968227257952094, -0.018755551427602768, 0.0015901217702776194, -0.010912703350186348, 0.004758975934237242, -0.025918547064065933, -0.0014289193786680698, 0.02343743108212948, -0.00838953536003828, -0.016344524919986725, 0.019372327253222466, 0.013856399804353714, -0.026731567457318306, -0.023591624572873116, 0.0038968934677541256, -0.009048362262547016, 0.010856633074581623, 0.012090181931853294, 0.005694651044905186, 0.012321473099291325, -0.01676505245268345, 0.03092283196747303, 0.029577141627669334, 0.0011757264146581292, -0.013148510828614235, -0.007884901016950607, 0.03187602758407593, 0.009805313311517239, -0.00698777474462986, -0.014522235840559006, 0.0033572157844901085, -0.009062380529940128, 0.008725957944989204, -0.02568024769425392, 0.006798537448048592, 0.0008796045440249145, -0.00047922678641043603, 0.007877892814576626, 0.01526516955345869, 0.0006763493292964995, -0.0013798577710986137, 0.0038968934677541256, -0.008999301120638847, -0.012272411026060581, 0.0014166539767757058, -0.01446616556495428, -0.03092283196747303, -0.02310100942850113, 0.009910444729030132, -0.013898452743887901, -0.011760768480598927, 0.04990266636013985, 0.014192822389304638, 0.006213302258402109, -0.02190951257944107, 0.013597074896097183, -0.024895261973142624, -0.02607274055480957, -0.022203883156180382, 0.00574721721932292, 0.0004932443844154477, 0.025371860712766647, -0.016554787755012512, -0.029296789318323135, 0.014024611562490463, 0.016288453713059425, 0.028315557166934013, 0.0011398063506931067, -0.0006912430399097502, -0.007961998693645, -0.01973678357899189, 0.009433846920728683, 0.018180830404162407, 0.021839424967765808, 0.02982945926487446, 0.01904992200434208, 0.010758509859442711, 0.00017226320051122457, 0.006738962605595589, -0.014676430262625217, -0.002057083183899522, -0.012742000631988049, 0.0002450890315230936, -0.001293123816139996, -0.011066896840929985, -0.013190563768148422, -0.016807105392217636, 0.012615842744708061, -0.013947514817118645, -0.0006649600109085441, 0.023086991161108017, -0.024250453338027, 0.029941599816083908, 0.0037076559383422136, -0.020984351634979248, -0.00835449155420065, 0.005498404614627361, 0.03204423934221268, -0.02304493822157383, -0.014536254107952118, -0.023535555228590965, 0.004499650560319424, 0.008655869401991367, 0.05803287401795387, -0.005638580769300461, 0.0167089831084013, 0.003676116233691573, 0.0020781096536666155, -0.01996106654405594, 0.018180830404162407, 7.49065657146275e-05, 0.027362359687685966, -0.00437699630856514, 0.011277161538600922, 0.015531503595411777, -0.03644576668739319, 0.007141968701034784, -0.0026265482883900404, 0.024390628561377525, 0.00567712914198637, -0.031006937846541405, 0.005344211123883724, 0.02532980777323246, 0.017213616520166397, -0.00231115217320621, 0.005543961655348539, 0.04387509450316429, -0.0032170398626476526, 0.017367810010910034, 0.00310314679518342, -0.0013027609093114734, -0.013632118701934814, -0.013463906943798065, -0.026745585724711418, 0.004944709129631519, 0.012391560710966587, 0.01291722059249878, 0.00829842034727335, 0.044351693242788315, -0.021012386307120323, 0.007541470229625702, 0.0034640999510884285, 0.026395145803689957, 0.0061327009461820126, -0.013148510828614235, 0.0005160230211913586, 0.034371159970760345, 0.008053112775087357, -0.026170864701271057, -0.027278253808617592, -0.01280508004128933, 0.013498951680958271, 0.02668951451778412, -0.0102959293872118, 0.0198068730533123, 0.0015752280596643686, 0.029352860525250435, 0.010036603547632694, 0.006272877100855112, -0.014185814186930656, -0.029296789318323135, 0.027194149792194366, -0.0039529637433588505, -0.003029554383829236, 0.015713732689619064, -0.021531037986278534, -0.019077956676483154, 0.027474500238895416, 0.019989101216197014, 0.009405811317265034, 0.0027597155421972275, 0.023016903549432755, 0.013078423216938972, -0.019442414864897728, -0.007331205997616053, -0.6279885768890381, 0.0040230518206954, 0.022890744730830193, -0.018349042162299156, 0.0011398063506931067, 0.017718249931931496, 0.006588273216038942, 0.0019063939107581973, -0.015783820301294327, 0.03532435745000839, 0.015727750957012177, -0.004874621517956257, -0.019330274313688278, -0.008221323601901531, -0.006700414232909679, -0.02739039622247219, -0.006241337396204472, -0.015054904855787754, -0.0021709762513637543, -0.004180749878287315, -0.02384394221007824, 0.016737017780542374, -0.003889884799718857, 0.011529478244483471, 0.0019834907725453377, -0.016807105392217636, 0.022217899560928345, -0.012055138126015663, 0.0025950085837394, 0.03840823099017143, -0.03692236542701721, 0.005638580769300461, 0.02436259388923645, -0.008158245123922825, 0.03826805576682091, -0.022974850609898567, 0.0031504561193287373, 0.0322965569794178, 0.006178258452564478, 0.027642711997032166, -0.014844641089439392, -0.007990033365786076, 0.02824546955525875, 0.023493502289056778, -0.005459856241941452, 0.0005322308279573917, 0.015293204225599766, -0.00024399389803875238, 0.0012589559191837907, -0.01295226439833641, 0.002670353278517723, -0.00361654139123857, -0.004394518211483955, -0.012286428362131119, 0.0073452237993478775, 0.003099642461165786, 0.017157545313239098, -0.017886461690068245, -0.0007302294834516943, -0.012076164595782757, 0.008067130111157894, 0.009917453862726688, -0.014788570813834667, -0.04266958311200142, -0.045388996601104736, 0.011417337693274021, -0.02464294619858265, -0.012713965959846973, -0.019582590088248253, 0.003602523822337389, 0.012973290868103504, -0.0022323031444102526, 0.00967214535921812, 0.008543728850781918, 0.00768865505233407, 0.030446233227849007, 0.030025705695152283, -0.014241884462535381, -0.0024846200831234455, 0.012391560710966587, -5.568711640080437e-05, -0.0018152794800698757, 0.005025310441851616, -0.02772681787610054, 0.026198899373412132, 0.008025077171623707, -0.0103800343349576, -0.01491472963243723, 0.008536719717085361, -0.01477455347776413, -0.0034500823821872473, 0.023241184651851654, -0.012756017968058586, -0.02231602370738983, 0.008088156580924988, 0.05021105334162712, -0.01446616556495428, 0.010562263429164886, 0.0019046417437493801, -0.009595048613846302, -0.027824942022562027, -0.02373180165886879, 0.024054206907749176, 0.006066117435693741, 0.011879918165504932, 0.021951565518975258, -0.027544589713215828, -0.004005529917776585, 0.009602057747542858, -0.019470449537038803, -0.014129742980003357, -0.0012650886783376336, -0.013372792862355709, -0.01808270812034607, 0.009230591356754303, -0.0246990155428648, -0.0013965036487206817, 0.022400129586458206, 0.0027737331110984087, -0.0013675923692062497, -0.018236901611089706, -0.022554323077201843, 0.020675964653491974, 0.007877892814576626, 0.019694732502102852, 0.01626041904091835, 0.008936221711337566, 0.004916673991829157, -0.0010048869298771024, -0.005414299201220274, -0.013667162507772446, -0.004923683125525713, -0.006076630670577288, -0.005165486596524715, 0.042753688991069794, 0.00149813131429255, 0.033109575510025024, -0.016526753082871437, 0.009293670766055584, -0.04597773775458336, 0.0025354339741170406, 0.012426604516804218, 0.02732030674815178, -0.027348343282938004, 0.012447630986571312, -0.016751034185290337, -0.004471615422517061, -0.002230551093816757, -0.003662098664790392, -0.009195547550916672, -0.005368741694837809, -0.010057630017399788, 0.014662411995232105, 0.012104200199246407, -0.017536021769046783, -0.002668600995093584, -0.005084885284304619, -0.03344599902629852, -0.019666695967316628, -0.018755551427602768, -0.010415079072117805, -0.011676662601530552, -0.004250837955623865, 0.002693131798878312, -0.014732500538229942, -0.015307222492992878, -0.020283471792936325, 0.01826493628323078, -0.025007402524352074, -0.0032906322740018368, -0.01180983055382967, -0.011767777614295483, -0.007001792546361685, 0.018741535022854805, 0.017606109380722046, 0.012272411026060581, -0.025189632549881935, -0.015573556534945965, -0.013933496549725533, -0.007145472802221775, 0.020689981058239937, 0.032941367477178574, -0.020353559404611588, -0.021194614470005035, 0.044744186103343964, 0.004191263113170862, 0.02230200543999672, 0.026156846433877945, -0.024670980870723724, 0.003269605804234743, -0.0041246796026825905, 0.013681179843842983, -0.02668951451778412, -0.004927187226712704, -0.01991901360452175, -0.008508685044944286, -0.007492408622056246, -0.0029384398367255926, 0.004419049248099327, 0.03540846332907677, 0.028077257797122, 0.006497158668935299, -0.0033414459321647882, -0.004254342522472143, 0.0012659647036343813, -0.009917453862726688, 0.01534927450120449, -0.02094229869544506, 0.021488985046744347, 0.010429096408188343, -0.007166499271988869, -0.008158245123922825, 0.00990343652665615, -0.013428863137960434, -0.012875167652964592, 0.040987469255924225, 0.013982558622956276, 0.022203883156180382, -0.010183787904679775, -0.0122093316167593, 0.024572856724262238, 0.0029156613163650036, 0.02566623128950596, -0.01728370413184166, -0.008410561829805374, 0.0004242515133228153, 0.018699482083320618, 0.026857726275920868, -0.0022217899095267057, -0.02453080378472805, -0.01991901360452175, 0.012791062705218792, -0.010765518993139267, 0.020900245755910873, 0.03871661797165871, 0.017465932294726372, 0.017367810010910034, 0.005922437179833651, 0.025343826040625572, -0.0002108116023009643, 0.0022095246240496635, 0.006714431568980217, 0.025399895384907722, -0.04356670752167702, 0.01666693016886711, -0.0016076437896117568, 0.023801889270544052, -0.004012538585811853, -0.03170781582593918, 0.010183787904679775, -0.011648627929389477, 0.008522702381014824, -0.00624484196305275, -0.006647848058491945, 0.028105292469263077, -0.020157312974333763, 0.02224593609571457, 0.004282377660274506, 0.008263376541435719, 0.00972821656614542, 0.0022358077112585306, 0.0119850505143404, 0.010422087274491787, -0.0017040148377418518, 0.014676430262625217, -0.01537731010466814, -0.0016786078922450542, -0.026451217010617256, -0.0064726280979812145, -0.007141968701034784, 0.0019134028116241097, -0.020900245755910873, -0.00026480128872208297, -0.015054904855787754, 0.010961765423417091, -0.012223349884152412, -0.007155986037105322, -0.008235341869294643, 0.0016724752495065331, 0.014325989410281181, -0.02406822331249714, -0.025638194754719734, 0.024684997275471687, 0.009118450805544853, -0.007548478897660971, -0.005638580769300461, -0.004818550776690245, -0.002789502963423729, 0.009139477275311947, 0.00589089747518301, -0.006328947376459837, -0.0032766147051006556, -0.019694732502102852, 0.0009926215279847383, 0.01252472773194313, 0.012784053571522236, 0.03439919650554657, -0.01132622268050909, -0.02207772433757782, 0.008396543562412262, 0.020619893446564674, 0.009770268574357033, -0.02670353278517723, -0.017830390483140945, 0.023086991161108017, -0.003770735114812851, -0.017816372215747833, -0.0051479646936059, -0.008718948811292648, -0.007485399954020977, 0.010415079072117805, 0.007155986037105322, -0.016176313161849976, -0.022287989035248756, -0.006693405099213123, 0.0037076559383422136, 0.002801768248900771, -0.0038618494290858507, 0.00892921257764101, 0.003984503448009491, -0.0018713499885052443, -0.021138545125722885, 0.003914415370672941, 0.0014175301184877753, 0.05469668656587601, -0.001424538902938366, -0.005470369476824999, 0.008922204375267029, -0.02579238824546337, -0.012314463965594769, -0.02333930879831314, -0.010555255226790905, 0.04603380709886551, 0.008039095439016819, -0.018461182713508606, 0.0042368206195533276, 0.0009715950582176447, 0.007134959567338228, 0.0006680263904854655, -0.004990266636013985, -0.0026423181407153606, -0.019007869064807892, -0.010485166683793068, 0.010359007865190506, 0.002036056714132428, -0.00963710155338049, 0.02652130462229252, 0.00956000480800867, 0.02202165313065052, 0.022722532972693443, 0.018405111506581306, 0.016106225550174713, 0.0019607122521847486, -0.019302239641547203, -0.02876412123441696, 0.013555021956562996, 0.005445838440209627, 0.015209099277853966, -0.03313761204481125, 0.0239701010286808, -0.0018240405479446054, -0.019764820113778114, -0.014424112625420094, -0.006269372534006834, -0.01295226439833641, 0.02709602564573288, -0.003805779153481126, -0.00956000480800867, 0.008088156580924988, -0.011914961971342564, -0.01092672161757946, 0.045108646154403687, -0.0020991358906030655, -0.010373026132583618, 0.01705942302942276, 0.01083560660481453, -0.024853209033608437, 0.017017370089888573, 0.004895647522062063, -0.027306290343403816, 0.00694572227075696, -0.023030921816825867, -0.02926875464618206, -0.020465699955821037, -0.020633911713957787, -0.01160657498985529, -0.01677907072007656, -0.03064247965812683, -0.01797056570649147, -0.03969785198569298, -0.013029362075030804, -0.007141968701034784, -0.022091742604970932, 0.002430301858112216, -0.014157778583467007, -0.04023052006959915, -0.027124060317873955, -0.0029752361588180065, 0.02310100942850113, 0.017129510641098022, 0.008466632105410099, 0.0004422115453053266, -0.004226307384669781, 0.0036060281563550234, -0.002780742011964321, -0.02042364701628685, 0.00866988766938448, -0.024460716173052788, 0.021124526858329773, -0.008697922341525555, -0.011950005777180195, 0.001406140741892159, 0.0030242977663874626, 0.02954910695552826, -0.0033659767359495163, -0.023058956488966942, 0.01756405644118786, 0.007807804737240076, 0.00775874312967062, 0.020521769300103188, 0.016414612531661987, -0.012363525107502937, 0.020746052265167236, -0.03521221876144409, 0.0199750829488039, -0.023521536961197853, -0.02733432501554489, -0.013456898741424084, 0.018405111506581306, 0.02668951451778412, -0.003120668698102236, -0.009910444729030132, 0.0024092753883451223, -0.0064691235311329365, 0.010730475187301636, -0.0029875014442950487, -0.01332373172044754, -0.017199598252773285, -0.00698777474462986, -0.01613426022231579, 0.008985282853245735, 0.008690913207828999, 0.0019326769979670644, -0.024516787379980087, -0.004327934700995684, -0.01666693016886711, 0.024516787379980087, 0.01171871554106474, -0.002321665408089757, -0.0008944982546381652, 2.5858644221443683e-05, -0.02150300331413746, -0.037342894822359085, -0.0004056343750562519, 0.004051086958497763, 0.0023742313496768475, -0.020689981058239937, -0.026605410501360893, -0.010765518993139267, -0.015531503595411777, -0.005084885284304619, 0.018208865076303482, -0.015994084998965263, 0.005911923944950104, -0.024460716173052788, 0.00310314679518342, 0.010632351972162724, -0.011774785816669464, 0.013113467022776604, -0.032436732202768326, -0.02401215396821499, -0.00486410828307271, 0.0008239722228609025, 0.03451133891940117, -0.02047971822321415, -0.0020308000966906548, -0.03179192170500755, -0.022638428956270218, -0.011957014910876751, -0.017017370089888573, -0.0035832496359944344, -0.0007157738436944783, 0.038940899074077606, 0.0335301049053669, 0.018629394471645355, 0.02179737202823162, 0.032212451100349426, 0.020339541137218475, -0.010316955856978893, -0.007261117920279503, -0.020900245755910873, -0.014213848859071732, 0.011143994517624378, -0.017241651192307472, -0.019372327253222466, -0.0017171562649309635, -0.0026142827700823545, -0.0017259173328056931, 0.002323417691513896, -0.008648861199617386, 0.007835839875042439, -0.0003388317418284714, -0.026114793494343758, -0.046117912977933884, 0.005049841478466988, 0.04701503738760948, 0.01438206061720848, 0.004860603716224432, -0.029857493937015533, -0.006668874528259039, 0.013197572901844978, -0.01767619699239731, 0.0319601334631443, 0.004755471833050251, 0.031399428844451904, -0.0011292931158095598, 0.010562263429164886, 0.02252628654241562, -0.011992058716714382, 0.00829842034727335, -0.01876956969499588, -0.03504400700330734, 0.0037391954101622105, 0.0061502233147621155, 0.014143761247396469, 0.0055334484204649925, -0.005939959082752466, -0.0023654703982174397, 0.014410095289349556, 0.02315707877278328, -0.00884510762989521, -0.014171795919537544, 0.011473407968878746, -0.02949303574860096, -0.007674637250602245, -0.029857493937015533, -0.022456198930740356, 0.02144693210721016, -0.0022077723406255245, 0.0074503556825220585, 0.011816838756203651, 0.012335490435361862, -0.027516553178429604, -0.02254030480980873, 0.013667162507772446, -0.010625342838466167, 0.01767619699239731, 0.008971265517175198, 0.008039095439016819, 0.024096257984638214, 0.013029362075030804, -0.014564288780093193, -0.018671447411179543, 0.0018573323031887412, 0.0032152875792235136, -0.00025757343973964453, 0.033810459077358246, -0.019989101216197014, -0.008256368339061737, 0.010653378441929817, 0.0016558292554691434, 0.005389768164604902, -0.023633677512407303, 0.0329694002866745, 0.011319214478135109, -0.004247333388775587, -0.03473562002182007, -0.023773854598402977, -0.017073439434170723, 0.0020500742830336094, -0.00952496100217104, 0.026170864701271057, 0.004355969838798046, 0.008922204375267029, -0.011221091262996197, 0.021895496174693108, -0.01603613793849945, 0.010632351972162724, -0.0003874553076457232, 0.007415311876684427, 0.0001097862987080589, 0.002095631556585431, -0.0038092834874987602, -0.013933496549725533, 0.004426057916134596, 0.0047274366952478886, -0.018727516755461693, -0.005571997258812189, 0.013695198111236095, 0.013498951680958271, -0.00208161398768425, -0.007117437664419413, -0.02322716824710369, 0.031175147742033005, -0.01006463821977377, -0.013043379411101341, 0.010961765423417091, -0.014648394659161568, 0.013085432350635529, -0.024909280240535736, -0.02321314997971058, -0.008396543562412262, -0.0044015273451805115, 0.0017749789403751493, -0.000888803624548018, 0.011087923310697079, -0.007969006896018982, 0.006830076687037945, 0.005358228459954262, -0.01575578562915325, -0.023998135700821877, 4.4243057345738634e-05, 0.034259021282196045, -0.005207539536058903, -0.011536487378180027, -0.013099449686706066, -0.014830623753368855, 0.016064172610640526, 0.01223736722022295, 0.0007258490077219903, 0.008025077171623707, 0.02235807664692402, -0.025007402524352074, 0.025021420791745186, 0.015699714422225952, 0.025512035936117172, -0.04365081340074539, 0.023885995149612427, -0.003963476978242397, -0.002034304663538933, 0.016302471980452538, 0.004268359858542681, -0.0336422473192215, -0.037455033510923386, 0.009693171828985214, 0.0025950085837394, 0.004545207601040602, -0.008137218654155731, 0.01865742914378643, 0.03538043051958084, -0.0020746050868183374, -0.014122734777629375, -0.010548246093094349, -0.0020903749391436577, -0.011655636131763458, 0.0036095327232033014, 0.016526753082871437, -0.010779536329209805, 0.019091974943876266, 0.005228565540164709, -0.0053196800872683525, 0.008543728850781918, -0.026325058192014694, -0.030894795432686806, -0.019204115495085716, -0.0023497005458921194, -0.0006894908146932721, 0.013646136038005352, -0.019470449537038803, -0.03605327382683754, -0.016120243817567825, 0.022147811949253082, 0.0013378049479797482, 0.012447630986571312, 0.0161482784897089, -0.01763414405286312, -0.0210404209792614, 0.027979135513305664, -0.008634842932224274, -0.043622780591249466, -0.028848225250840187, -0.01255276333540678, -0.04079122468829155, -0.0049377004615962505, -0.014480183832347393, 0.03549256920814514, 0.0018941285088658333, -0.01717156358063221, -0.03854840621352196, -0.011957014910876751, -0.01899385079741478, 0.004012538585811853, -0.027292272076010704, 0.029801422730088234, 0.02207772433757782, 0.03257690742611885, 0.006700414232909679, 0.028399663046002388, -0.0038583450950682163, 0.032548874616622925, -0.04112764447927475, -0.018867693841457367, -0.019750801846385002, -0.015839891508221626, 0.02893233112990856, -0.03809984400868416, -0.03624952211976051, -0.0020781096536666155, 0.011186046525835991, -0.024054206907749176, -0.00048492144560441375, 0.022568339481949806, 0.011438364163041115, 0.0005177751882001758, -0.01058328989893198, -0.005326689220964909, 0.016652911901474, -0.015012852847576141, -0.003052332904189825, -0.020844174548983574, 0.0039529637433588505, 0.025231685489416122, -0.0013421854237094522, -0.025806406512856483, 0.013218599371612072, 0.010940738953649998, -0.019596608355641365, -0.005270618479698896, -0.014424112625420094, -0.013428863137960434, -0.012272411026060581, 0.00037716110819019377, -0.007597540505230427, -0.006279885768890381, -0.005729694850742817, 0.016064172610640526, 0.0019607122521847486, 0.007226074114441872, -0.006069622002542019, 0.020101241767406464, 0.005183008499443531, 0.0010250371415168047, 0.033866528421640396, -0.005281131714582443, -0.009595048613846302, -0.013351766392588615, 0.02185344323515892, 0.0013307961635291576, -0.012770036235451698, -0.019260186702013016, -0.012580798007547855, -0.04432366043329239, -0.013947514817118645, 0.014480183832347393, -0.01309244055300951, 0.007969006896018982, -0.0163725595921278, 0.0017889965092763305, -0.02083015814423561, -0.019316256046295166, -0.001701386529020965, -0.032773155719041824, -0.023311272263526917, 0.002404018770903349, 0.03137139603495598, -0.030950866639614105, -0.013386810198426247, 0.039389465004205704, -0.005617554299533367, 0.006349973846226931, 0.22002029418945312, 0.0025809910148382187, 0.008081147447228432, 0.04323028773069382, 0.005144460126757622, -0.017844408750534058, 0.009791295044124126, 0.005561484023928642, 0.008375517092645168, 0.03498793765902519, 0.005638580769300461, 0.00216747191734612, -0.017942531034350395, -0.0019501990173012018, 0.006570751313120127, -0.021180598065257072, -0.02516159601509571, -0.010737483389675617, -0.014262910932302475, -0.001184487366117537, 0.021517019718885422, 0.001771474489942193, -0.026156846433877945, 0.002163967350497842, 0.023409396409988403, 0.02064792811870575, -0.0029875014442950487, 0.01991901360452175, 0.01126314327120781, 0.008775019086897373, -0.02802118845283985, -0.008424579165875912, 0.015082940459251404, -0.012517719529569149, -0.005925941281020641, -0.0028578387573361397, 0.0105202104896307, -0.028904296457767487, 0.016358541324734688, 0.013386810198426247, 0.010891676880419254, -0.03131532296538353, 0.006896660663187504, -0.020577840507030487, 0.032380662858486176, -0.01613426022231579, 0.0025038942694664, -0.003935441840440035, 0.005456351675093174, 0.028049223124980927, -0.010337982326745987, 0.01923215016722679, 0.002780742011964321, 0.002346196211874485, -0.01129117887467146, -0.01534927450120449, -0.005712172947824001, -0.0044470843859016895, -0.015657661482691765, 0.019933030009269714, 0.0009260379010811448, -0.003700647037476301, -0.02270851656794548, 0.024376610293984413, -0.032492801547050476, 0.017101475968956947, -0.012531736865639687, 0.014340007677674294, -0.0010872402926906943, -0.0019204115960747004, 0.007050854153931141, 0.0013579552760347724, -0.043959200382232666, -0.009847366251051426, -0.014704464934766293, -0.012104200199246407, -0.01078654546290636, 0.03759520873427391, 0.05060354620218277, 0.020115260034799576, 0.010099682956933975, 0.006328947376459837, -0.019652679562568665, -0.009027335792779922, 0.017101475968956947, -0.0035499578807502985, 0.028147345408797264, -0.023129044100642204, 0.00793396309018135, -0.019596608355641365, -0.011515460908412933, 0.002658087993040681, -0.0042368206195533276, 0.003113660030066967, -0.011382292956113815, -0.020718015730381012, 0.0068581122905015945, 0.01698933355510235, -0.000982984434813261, -0.021713266149163246, -0.027404412627220154, 0.054556507617235184, 0.0028893782291561365, 0.02954910695552826, -0.025890512391924858, -0.005971498787403107, -0.005929445847868919, 0.021488985046744347, -0.012854141183197498, 0.007464373484253883, -0.01853127032518387, -0.04580952599644661, 0.026955850422382355, -0.0008406181004829705, 0.015293204225599766, 0.02395608276128769, 0.023759836331009865, 0.0013430615654215217, -0.025750335305929184, -0.0007858618628233671, 0.018699482083320618, -0.012132234871387482, -0.007331205997616053, 0.013225608505308628, -0.027124060317873955, -0.026100775226950645, -0.004716923460364342, 0.0020675964187830687, -0.028371628373861313, -0.0210404209792614, 0.011999067850410938, -0.014045638032257557, 0.029352860525250435, -0.010457131080329418, 0.007317188661545515, -0.00437699630856514, 0.01526516955345869, -0.009826339781284332, -0.008683905005455017, 0.009742233902215958, 0.010401060804724693, -8.83766042534262e-05, 0.01033097319304943, -0.01357604842633009, 0.026451217010617256, 0.008067130111157894, 0.007555488031357527, 0.01620434783399105, -0.011480416171252728, -0.023479484021663666, 5.2538631280185655e-05, 0.02167121320962906, 0.00645861029624939, 0.005687642376869917, 0.025357842445373535, -0.019470449537038803, -0.02999766916036606, -0.024390628561377525, 0.03515614569187164, -0.013379801996052265, -0.043034039437770844, -0.012889185920357704, 0.03846430033445358, 0.013162529096007347, -0.021194614470005035, -0.0023602137807756662, -0.18065886199474335, 0.010120709426701069, 0.004271864425390959, -0.0013737250119447708, -0.0030207934323698282, 0.022904762998223305, 0.009630093351006508, 0.0033256763126701117, -0.0239701010286808, -0.01694728247821331, 0.02681567333638668, -0.013814347796142101, -0.02317109704017639, -0.016344524919986725, -0.00331691512838006, -0.008333465084433556, -0.01499883458018303, 0.02960517629981041, 0.03703450784087181, -0.0020640920847654343, 0.022063706070184708, -0.015545520931482315, 0.009153494611382484, -0.015307222492992878, 0.019358308985829353, 0.024110276252031326, -0.018040655180811882, 0.03919321671128273, -0.00469239242374897, -0.028665997087955475, -0.02007320709526539, -0.00041658562258817255, 0.02092828042805195, 0.024096257984638214, -0.012265401892364025, 0.0035341880284249783, 0.007940972223877907, 0.008431588299572468, -0.026423180475831032, 0.006297408137470484, 0.030950866639614105, 0.011003818362951279, 0.0241943821310997, -0.0034500823821872473, 0.01280508004128933, 0.03204423934221268, 0.02960517629981041, -0.008221323601901531, 0.012104200199246407, 0.00014543262659572065, 0.0337543860077858, -0.01574176736176014, -0.00866988766938448, -0.01722763292491436, 0.0029366877861320972, 0.012545754201710224, 0.0014464413980022073, 0.018096724525094032, -0.004362978972494602, -0.021292738616466522, 0.005004283972084522, -0.013281678780913353, -0.004871116951107979, -0.003185500157997012, -0.009938480332493782, -0.031399428844451904, -0.018461182713508606, 0.011108949780464172, -0.017606109380722046, 0.015237133949995041, 0.007674637250602245, -0.01132622268050909, 0.003353711450472474, 0.005631571635603905, 0.018054671585559845, 0.010688422247767448, -0.031119078397750854, 0.008810062892735004, 0.030081775039434433, 0.0025073986034840345, 0.00850167591124773, 0.007940972223877907, -0.005691146478056908, -0.008803054690361023, -0.031399428844451904, 0.0024022667203098536, 0.017788337543606758, 0.014129742980003357, -0.0033677290193736553, 0.011305196210741997, 0.028371628373861313, -0.01882564090192318, 0.04300600662827492, -0.016162294894456863, 0.015559539198875427, 0.01774628460407257, 0.025652213022112846, -0.00409313989803195, 0.015727750957012177, -0.010709448717534542, 0.0016680946573615074, 0.016302471980452538, -0.027628695592284203, -0.004758975934237242, 0.024951333180069923, 0.029240718111395836, 0.02196558378636837, -0.016414612531661987, 0.023143062368035316, -0.013744259253144264, -0.030193915590643883, 0.01300833560526371, 0.02538587898015976, 0.003711160272359848, -0.025596141815185547, 0.038296088576316833, 0.012987309135496616, -0.010323964059352875, -0.006626821588724852, -0.00990343652665615, 0.04505257308483124, -0.040594976395368576, -0.01648470014333725, 0.014199831523001194, -0.010709448717534542, -0.008936221711337566, -0.1127575933933258, -0.0326329804956913, 0.033810459077358246, 0.004983257502317429, -0.005025310441851616, 0.008683905005455017, -0.006307921372354031, 0.018783587962388992, -0.0001602168194949627, 0.021713266149163246, -0.027586642652750015, -0.0015647149411961436, -0.008172262459993362, -0.01180983055382967, -3.830200512311421e-05, -0.02332529053092003, 0.005407290067523718, -0.031399428844451904, -0.011802821420133114, 0.019498486071825027, 0.0060906484723091125, -0.005288140382617712, 0.02544194832444191, -4.385976353660226e-05, -0.017648162320256233, -0.022119777277112007, -0.029857493937015533, -0.00018792349146679044, 0.009861383587121964, 0.014676430262625217, 0.02636711113154888, -0.016358541324734688, 0.024334557354450226, -0.018755551427602768, 0.004850090481340885, -0.018236901611089706, -0.0024916287511587143, -0.017886461690068245, 0.027516553178429604, -0.013604083098471165, -0.0063044168055057526, 0.01596604846417904, 0.004730940796434879, -0.026212917640805244, -0.014704464934766293, 0.0011897439835593104, 0.006122187711298466, 0.026311039924621582, -0.0009347988525405526, -0.008088156580924988, -0.02453080378472805, -0.02516159601509571, -0.016933264210820198, -0.040819257497787476, 0.03428705781698227, -0.0036410721950232983, 0.008859124965965748, 0.02657737396657467, -0.030278021469712257, -0.011823847889900208, -0.009237600490450859, -0.004002025350928307, -0.021755319088697433, 0.015082940459251404, 0.005091893952339888, 0.00801105983555317, -0.008326455950737, 0.008536719717085361, 0.012090181931853294, 0.00938478484749794, -0.016246400773525238, 0.0024022667203098536, -0.021250685676932335, 0.009349741041660309, -0.01769021525979042, 0.000771844235714525, 0.011571531184017658, -0.0022585862316191196, -0.0013807339128106833, 0.026773620396852493, -0.01813877746462822, -0.01058328989893198, 0.008081147447228432, -0.02418036386370659, 0.010604316368699074, 0.0027089016512036324, 0.0021376844961196184, -0.005911923944950104, 0.030390162020921707, -0.03753913938999176, -0.00638852221891284, 0.019372327253222466, 0.026829691603779793, 0.016302471980452538, 0.0006737210205756128, 0.008599799126386642, -0.012629860080778599, -0.0013255395460873842, 0.0013518225168809295, 0.006896660663187504, -0.0011766025563701987, 0.0018100229790434241, -0.05915428325533867, 0.004271864425390959, 0.008943230845034122, 0.011907953768968582, 0.019134027883410454, -0.03798770159482956, -0.006479636766016483, -0.0071770125068724155, 0.010534228757023811, 0.005831322632730007, -0.02744646556675434, 0.007247100584208965, -0.0032625969033688307, -0.011592557653784752, -0.023577608168125153, -0.022161830216646194, 0.01006463821977377, -0.00184331473428756, 0.01044311374425888, -0.002335682976990938, 0.00044812523992732167, 0.007429329212754965, 0.02429250441491604, 0.025582125410437584, 0.003294136608019471, 0.019876960664987564, -0.02252628654241562, 0.009917453862726688, -0.014340007677674294, -0.022666463628411293, 0.024502769112586975, 0.006006542593240738, 0.007534461561590433, -0.0025809910148382187, -0.01728370413184166, -0.024502769112586975, -0.014087690971791744, 0.02596060000360012, 0.021474966779351234, 0.010527219623327255, -0.012006076984107494, -0.01121408212929964, 0.027993151918053627, -0.020213382318615913, -0.01940036192536354, -0.018727516755461693, -0.010288920253515244, -0.02179737202823162, 0.015054904855787754, 0.01164161879569292, 0.03445526584982872, 0.0014972551725804806, -0.03924928605556488, -0.02726423740386963, -0.008039095439016819, -0.01277704443782568, 0.002453080378472805, 0.017984583973884583, -0.007744725327938795, 0.00798302423208952, 0.04967838525772095, 0.019190097227692604, 0.013393819332122803, -0.002849077805876732, 0.040174450725317, -0.00627638166770339, -0.047771990299224854, -0.016386577859520912, 0.009819330647587776, -0.03235262632369995, -0.016302471980452538, -0.02971731685101986, 0.02755860611796379, 0.012020094320178032, 0.013772294856607914, -0.007478390820324421, -0.0020623398013412952, -0.02224593609571457, -0.007401294074952602, 0.034259021282196045, 0.02345144934952259, -0.017956549301743507, -0.013877426274120808, 0.01769021525979042, 0.032829225063323975, -0.000718402152415365, -0.015419363044202328, 0.01449420116841793, 0.015223116613924503, 0.008144226856529713, -0.01968071423470974, 0.013316722586750984, 0.010653378441929817, 0.01164161879569292, 0.0005896154325455427, 0.025301773101091385, -0.008571764454245567, 0.014970799908041954, 0.04101550579071045, 0.02162916027009487, 0.005270618479698896, 0.0061747538857162, -0.01300833560526371, 0.0024162842892110348, -0.003101394511759281, 0.02715209685266018, -0.01499883458018303, -0.012601824477314949, 0.017311738803982735, 0.021643178537487984, -0.004131688270717859, -0.030838726088404655, -0.01689121127128601, 0.02064792811870575, -0.00046258087968453765, 0.023030921816825867, 0.005722686182707548, -0.02174130082130432, -0.027180131524801254, -0.005179503932595253, 0.015433380380272865, 0.013912471011281013, 0.008796045556664467, -0.020605875179171562, 0.03226852044463158, 0.0008625205955468118, 0.010225840844213963, -0.008697922341525555, 0.0055509707890450954, -0.009581031277775764, -0.0002453080378472805, -0.015096957795321941, 0.010982791893184185, -0.027544589713215828, -0.01596604846417904, -0.008620825596153736, 0.0049341958947479725, 0.030558373779058456, -0.015223116613924503, 0.09391793608665466, 0.03664201498031616, -0.010982791893184185, 0.011186046525835991, -0.004009034484624863, 0.008018068969249725, 0.010134726762771606, 0.015839891508221626, -6.702166137984022e-05, -0.018068689852952957, 0.023633677512407303, -0.011193055659532547, -0.014325989410281181, -0.0030733593739569187, -0.016638893634080887, 0.010351999662816525, -0.013569039292633533, 0.0008327332325279713, -0.009167511947453022, 0.010029594413936138, 0.019554555416107178, -0.0066828918643295765, -0.001699634362012148, -0.02802118845283985, -0.03877268731594086, -0.02172728441655636, 0.01750798523426056, 0.02733432501554489, -0.005824313964694738, -0.022736551240086555, 0.029408929869532585, -0.0063639916479587555, -0.016624877229332924, -0.012826106511056423, -0.01996106654405594, 3.611175270634703e-05, -0.008347482420504093, -0.04421151801943779, 0.0036936383694410324, 0.015531503595411777, -0.0018100229790434241, 0.01101082656532526, -0.020900245755910873, -0.025988634675741196, 0.009679154492914677, 0.017788337543606758, 0.0012169030960649252, -0.023984117433428764, -0.013372792862355709], "b54e2b2b-366b-4afe-8ff7-80ffeb88d77c": [-0.006192654836922884, 0.0009287301800213754, 0.0007236530655063689, -0.03168272599577904, 0.0231837946921587, 0.030122796073555946, -0.022471066564321518, -0.02848217822611332, -0.006780990865081549, -0.03821829706430435, 0.019297415390610695, 0.022175218909978867, 0.003758625593036413, -0.01436211820691824, -0.006918829400092363, 0.016029629856348038, 0.018692269921302795, 0.0037384540773928165, 0.0050664120353758335, -0.0009110801038332283, -0.025738852098584175, -0.010240405797958374, -0.013084589503705502, 0.010852274484932423, -0.03558255359530449, -0.0014010798186063766, 0.023130003362894058, -0.012694606557488441, -0.00377879710868001, 0.018409868702292442, 0.02931593544781208, -0.020252199843525887, -0.03240890055894852, -0.001720462110824883, -0.01650029979646206, 0.022834153845906258, -0.0006375039229169488, 0.01830228790640831, 0.022780364379286766, 0.004239379893988371, 0.004353685304522514, 0.02162386290729046, 0.01171292643994093, -0.007006239611655474, -0.016997862607240677, 0.03525980934500694, 0.0050395168364048, -0.008828399702906609, -0.020870793610811234, -0.0014246131759136915, -0.013353542424738407, 0.0060211969539523125, -0.008149292320013046, 0.007033134810626507, 0.001164064509794116, -0.0021566711366176605, -0.0010119376238435507, 0.010522807016968727, 0.02431339956820011, -0.01110778097063303, 0.019647054374217987, -0.011941536329686642, -0.01035471074283123, -0.005345451179891825, -0.027917375788092613, -0.033377133309841156, -0.026330551132559776, 0.004330151714384556, -0.01710544526576996, -0.013703182339668274, 0.03897136449813843, 0.03227442502975464, 0.01426798477768898, -0.02341240458190441, 0.005338727496564388, -0.016338927671313286, -0.03219373896718025, -0.03165582939982414, -0.0037418159190565348, -0.0021936523262411356, 0.020373228937387466, -0.00818963535130024, -0.019189834594726562, 0.007517251186072826, 0.025927120819687843, 0.031521353870630264, 0.0018793127965182066, 0.0029803412035107613, -0.0050058974884450436, -0.01921672932803631, 0.011269153095781803, 0.02240382879972458, 0.01998324692249298, 0.01998324692249298, 0.013010626658797264, 0.008404797874391079, 0.021933160722255707, -0.0071877832524478436, -0.009796632453799248, -0.009756289422512054, -0.012405481189489365, 0.006750733591616154, -0.008734266273677349, -0.015101740136742592, -0.005308470223098993, -0.009796632453799248, 0.012304623611271381, -0.014523490332067013, 0.012923217378556728, 0.02481096237897873, -0.02401755005121231, 0.024716829881072044, 0.004972278140485287, -0.017024759203195572, -0.014308327808976173, -0.0020726232323795557, 0.031817201524972916, -0.030203480273485184, 4.5911208871984854e-05, -0.023627568036317825, 0.00496555445715785, 0.0016994500765576959, 0.04929918050765991, 0.001053961692377925, 0.015142083168029785, -0.0032627424225211143, 0.004757115617394447, -0.012237385846674442, 0.008337559178471565, 0.004639448132365942, 0.017952648922801018, 0.016930624842643738, 0.020373228937387466, 0.005809396039694548, -0.033753667026758194, 0.008411522023379803, -0.027164306491613388, 0.016029629856348038, 0.0013800677843391895, -0.017172683030366898, 0.01674235798418522, 0.02191971242427826, 0.003069432219490409, -0.009352859109640121, 0.001039673457853496, 0.058793243020772934, -0.013124932534992695, 0.019794980064034462, 0.010341263376176357, 0.003259380580857396, -0.02329137548804283, -0.01757611334323883, -0.02323758415877819, 0.004219208378344774, 0.005516909062862396, -0.0016733952797949314, -0.0007337388233281672, 0.0292083527892828, -0.004938659258186817, 0.0008572893566451967, 0.009393202140927315, 0.044646285474300385, -0.003133308608084917, -0.008862018585205078, -0.011208638548851013, 0.022188665345311165, 0.024152027443051338, -0.031144818291068077, -0.025147154927253723, -0.019835323095321655, 0.009850422851741314, 0.03063380718231201, -0.010435396805405617, 0.024111684411764145, -0.0042158467695117, 0.02666674181818962, -3.204329186701216e-05, 0.0038897404447197914, -0.023210689425468445, -0.018436763435602188, 0.034883271902799606, -0.008519102819263935, -0.0013708225451409817, 0.02896629460155964, -0.017603008076548576, -0.014550385996699333, 0.035663239657878876, 0.012499615550041199, 0.008814952336251736, -0.0034930340480059385, 0.010334539227187634, 0.009924384765326977, -0.019122594967484474, -0.03859483078122139, -0.6261237859725952, 0.003160204039886594, 0.016406165435910225, -0.004975640214979649, 0.006656599696725607, 0.008740989491343498, 0.014819339849054813, -0.002766859484836459, -0.006670047529041767, 0.03396883234381676, 0.01417385134845972, -0.009608364664018154, -0.02559092827141285, -0.009890765883028507, -0.012506338767707348, -0.009621812030673027, 0.009231830015778542, -0.01436211820691824, -0.02251140959560871, -0.0015624519437551498, -0.019526025280356407, 0.018208153545856476, -0.0028391405940055847, -0.00030992692336440086, -0.009527678601443768, -0.026720533147454262, 0.0031551611609756947, 0.018517449498176575, 0.0014422632521018386, 0.04233328625559807, -0.03695421293377876, 0.02517404966056347, 0.026693638414144516, -0.011517934501171112, 0.03539428487420082, -0.03023037686944008, -0.011309496127068996, 0.029423516243696213, 0.006569189950823784, 0.033135075122117996, -0.019902560859918594, 0.0001437220344087109, 0.028374597430229187, 0.014200746081769466, -0.013972136192023754, -0.014133508317172527, 0.004609190858900547, 0.011612068861722946, -0.0011657454306259751, -0.02150283381342888, 0.0037989686243236065, 0.0036073392257094383, -0.005311832297593355, -0.013568705879151821, 0.013434228487312794, -0.003872930770739913, 0.0292083527892828, -0.0035098434891551733, -0.00029858044581487775, 0.010845551267266273, 0.012587024830281734, -0.0010623664129525423, 7.333185931202024e-05, -0.05268799513578415, -0.0433553084731102, 0.009157867170870304, -0.030176585540175438, -0.004346961621195078, -0.006370836868882179, -0.017898857593536377, 0.02594056725502014, -0.00544967083260417, 0.01081193145364523, 0.0036241488996893167, 0.0016574261244386435, 0.017468532547354698, 0.05182734504342079, -0.007624832447618246, -0.0009068776853382587, 0.025389213114976883, -0.004306618589907885, 0.0034627767745405436, -0.013104761019349098, -0.0149000259116292, 0.028320806100964546, 0.006004387512803078, -0.011739821173250675, -0.0198622178286314, -0.011013646610081196, -0.008599788881838322, -0.0005711059784516692, 0.025241289287805557, -0.025752300396561623, -0.038809992372989655, 0.009003219194710255, 0.059922847896814346, 0.0027416450902819633, 0.006125416606664658, 0.0016767571214586496, -0.020548049360513687, -0.035313598811626434, -0.028455283492803574, 0.016769252717494965, 0.006478418130427599, 0.009379753842949867, 0.017845066264271736, -0.03396883234381676, -0.013326647691428661, 0.0192570723593235, -0.007523974869400263, -0.006686856970191002, -0.0032929996959865093, -0.0023113193456083536, -0.008976324461400509, 0.017360949888825417, -0.02425960823893547, 0.008606513030827045, 0.016836490482091904, 0.006451522931456566, -0.00014235626440495253, -0.02306276559829712, -0.012728225439786911, 0.02503957413136959, 0.019243624061346054, 0.014967263676226139, 0.006579275708645582, 0.0070802015252411366, -0.00397378858178854, 0.015908600762486458, -0.005079859867691994, 0.006034644786268473, 0.005459756590425968, -0.00738949840888381, -0.008021539077162743, 0.043382205069065094, -0.0010371520183980465, 0.022618992254137993, -0.0021314567420631647, 0.01608342118561268, -0.04112299531698227, 0.006091797258704901, -0.0005047080921940506, 0.025738852098584175, -0.025806091725826263, 0.003044217824935913, -0.023815834894776344, 0.010220234282314777, -0.0021802044939249754, 0.010852274484932423, -0.014254537411034107, -0.018651926890015602, -0.013716629706323147, 0.00974956527352333, 0.011127952486276627, -0.008814952336251736, -0.008929257281124592, -0.0008598107961006463, -0.023856177926063538, -0.009225105866789818, -0.03316197171807289, -0.021085957065224648, -0.009090629406273365, -0.010300920344889164, 0.02204074151813984, -0.008344283327460289, -0.02395031228661537, -0.028455283492803574, 0.02148938737809658, -0.01951257884502411, -0.023318270221352577, -0.009978176094591618, -0.01412006001919508, 0.0007421436603181064, 0.014214194379746914, 0.004679791163653135, 0.0007799652521498501, -0.01975463703274727, -0.013010626658797264, -0.015155531466007233, -0.0077996524050831795, 0.01951257884502411, 0.032839227467775345, 0.004958830773830414, -0.025389213114976883, 0.04472697153687477, 0.011511211283504963, 0.029396621510386467, 0.015424484387040138, -0.03625493496656418, 0.00371155864559114, -0.005900167860090733, 0.024609247222542763, -0.021153194829821587, -0.012499615550041199, -0.020669078454375267, -0.023856177926063538, -0.011921364814043045, 0.006152311805635691, 0.0135418102145195, 0.019848769530653954, 0.018275391310453415, 0.0076786233112216, 0.008801504038274288, 0.0023382147774100304, 0.00478401081636548, -0.016231345012784004, 0.016540642827749252, -0.02053460106253624, -0.008848571218550205, 0.004168779589235783, -0.010973303578794003, -0.006912105716764927, 0.011148124001920223, -0.009695774875581264, -0.0009245277615264058, 0.025859881192445755, 0.01873261295258999, 0.015599304810166359, -0.008357730694115162, -0.01309131272137165, 0.01849055476486683, 0.01944533921778202, 0.014039373956620693, 0.0037250064779073, 0.007786204572767019, 0.011006923392415047, 0.006074987817555666, 0.0146041763946414, 0.006310322321951389, -0.02896629460155964, -0.011363286525011063, 0.016096869483590126, 0.0025466536171734333, 0.006209464743733406, 0.035555656999349594, 0.006142226047813892, 0.018746061250567436, 0.003819140139967203, 0.02907387726008892, -0.007355879060924053, 0.008740989491343498, -0.015935497358441353, 0.015518618747591972, -0.02323758415877819, 0.014886577613651752, 0.004531866870820522, 0.0147521011531353, 0.001690204837359488, -0.025375764816999435, 0.009164591319859028, -0.014765548519790173, 0.0011010285234078765, -0.012849254533648491, -0.003983874339610338, 0.02481096237897873, -0.022592095658183098, 0.018557792529463768, 0.0201715137809515, -0.005957320798188448, 0.028751133009791374, 0.008767885155975819, 0.009534402750432491, -0.00045932221109978855, -0.0020053847692906857, 0.01351491454988718, -0.013017350807785988, 0.003758625593036413, -0.0282939113676548, -0.005604319274425507, -0.004222570452839136, 0.010650559328496456, -0.02902008593082428, 0.005802672356367111, -0.02746015600860119, 0.0007249137852340937, -0.006764181423932314, -0.0016162425745278597, 0.0016977691557258368, 0.0034560528583824635, 0.02595401555299759, -0.014133508317172527, -0.023156898096203804, 0.022793810814619064, 0.02329137548804283, 0.0052681271918118, -0.009144419804215431, -0.00695244874805212, 0.0017818171763792634, 0.016217898577451706, 0.026599504053592682, 0.012593748979270458, -0.00966215506196022, -0.015182426199316978, -0.008364454843103886, 0.00696589658036828, 0.005637938156723976, 0.03805692493915558, -0.005476566031575203, -0.02503957413136959, -0.008976324461400509, 0.017199577763676643, 0.013683010824024677, -0.022229008376598358, -0.0225786492228508, 0.025066468864679337, -0.011995327658951283, -0.028751133009791374, -0.0231837946921587, -0.009608364664018154, -0.02432684600353241, 0.005513547454029322, -0.010334539227187634, -0.014348670840263367, -0.014093165285885334, 0.007907234132289886, 0.0035266531631350517, -0.004942020867019892, -0.016930624842643738, 0.0068146102130413055, 0.019579816609621048, 0.0046058292500674725, -0.00929906778037548, 0.008640131913125515, 0.013669563457369804, 0.0680452436208725, -0.006612895056605339, -0.002297871746122837, 0.016702014952898026, -0.00720795476809144, -0.006538932677358389, -0.02209453284740448, -0.008270321413874626, 0.04426975175738335, 0.03528670221567154, -0.02240382879972458, 0.0027130686212331057, 0.012613920494914055, 0.0018927603960037231, 0.012176871299743652, -0.0009194848826155066, -0.0069322772324085236, -0.031225504353642464, -0.005614405032247305, 0.021274223923683167, 0.020749764516949654, -0.0031433943659067154, 0.03980512171983719, 0.0058430153876543045, 0.023264480754733086, 0.03208615630865097, 0.024837858974933624, -0.0051538217812776566, 0.004249465651810169, -0.016217898577451706, -0.010637111961841583, -0.0142948804423213, 0.004125074949115515, 0.013232513330876827, -0.040854040533304214, 0.03950927406549454, 0.009211658500134945, -0.015451380051672459, -0.018826747313141823, 0.005950596649199724, 0.0022692952770739794, 0.03520601615309715, -0.01762990467250347, -0.009184762835502625, 0.019015014171600342, -0.01913604326546192, -0.02571195736527443, 0.0319247841835022, -0.00718105910345912, 0.0019011652329936624, 0.003375366795808077, 0.0014918516390025616, -0.015249664895236492, 0.012479444034397602, 0.006538932677358389, -0.008034986443817616, 0.0001974076876649633, -0.01885364204645157, -0.022242456674575806, -0.021462490782141685, -0.016823044046759605, -0.009796632453799248, -0.011195190250873566, -0.020265648141503334, -0.0204673632979393, -0.038567934185266495, -0.02565816603600979, -0.0008698965539224446, -0.03367298096418381, -0.00377879710868001, -0.025147154927253723, -0.025456450879573822, -0.016392717137932777, 0.014066269621253014, 0.010758141055703163, 0.017683694139122963, -0.007275192998349667, -0.0015666543040424585, 0.009077181108295918, 0.011625516228377819, 0.0025231202598661184, -0.003721644403412938, -0.0006051454111002386, -0.027043277397751808, 0.01624479331076145, -0.019539473578333855, -0.0073088123463094234, -0.004424285609275103, -0.0028643549885600805, 0.02673398144543171, -0.00353673892095685, -0.032059259712696075, 0.027419812977313995, 0.002736602211371064, 0.01619100198149681, -0.005173993296921253, 0.013891450129449368, 0.009225105866789818, 0.013340095058083534, -0.027540842071175575, 0.017468532547354698, -0.017845066264271736, -0.01793920062482357, -0.016876833513379097, 0.03353850543498993, 0.022054189816117287, -0.009440268389880657, -0.017925752326846123, -0.009641983546316624, -0.024542009457945824, 0.0024928629864007235, -0.003812416223809123, -0.022444171831011772, -0.016809595748782158, 0.00415533222258091, -0.016527194529771805, -0.0009875637479126453, 0.022928288206458092, 0.006317046005278826, -0.021449044346809387, 0.0017633265815675259, -0.008888914249837399, 0.030848968774080276, 0.013824211433529854, -0.002881164662539959, 0.025362318381667137, 0.02702982909977436, -0.018651926890015602, -0.038325875997543335, -0.004363771062344313, 0.0036140631418675184, 0.001825522049330175, -0.008781332522630692, -0.009097352623939514, -0.008956152945756912, 0.008828399702906609, -0.0135418102145195, 0.013958687894046307, -0.0009043562458828092, 0.006283426657319069, -0.04690549522638321, 0.022928288206458092, 0.016217898577451706, -0.0111413998529315, -0.0017784552183002234, -0.032247528433799744, -0.04340909793972969, -0.02323758415877819, 0.01134983915835619, 0.028912505134940147, -0.021516282111406326, -0.008357730694115162, -0.05513547360897064, -0.02444787509739399, -0.019055357202887535, -0.012143251486122608, 0.007624832447618246, 0.0142948804423213, 0.03168272599577904, 0.03238200396299362, 0.016150658950209618, 0.025120260193943977, 0.024394085630774498, 0.016231345012784004, -0.00743656512349844, -0.0016641499241814017, 0.006986068096011877, -0.01932431012392044, 0.0021549900993704796, -0.01655408926308155, -0.00522106047719717, -0.00018627132521942258, -0.01788540929555893, -0.0001696718536550179, -0.013225790113210678, -0.009426821023225784, 0.013259408995509148, -0.015343798324465752, -0.026048149913549423, -0.04069266840815544, 0.012667710892856121, 0.030660701915621758, 0.011659135110676289, -0.003254337701946497, -0.03262406215071678, -0.01584136299788952, 0.0153572466224432, -0.023385509848594666, 0.030553121119737625, -0.011699478141963482, 0.024703381583094597, 0.009211658500134945, 0.011840678751468658, 0.028858713805675507, 0.0007816461729817092, -0.005197526887059212, -0.004968916531652212, -0.03504464402794838, -0.004101541358977556, 0.017804723232984543, 0.015518618747591972, 0.013763696886599064, 0.013521638698875904, 0.004494885914027691, 0.01608342118561268, 0.01008575689047575, -0.015868257731199265, -0.016513746231794357, 0.007880338467657566, -0.023224137723445892, -0.007349155377596617, -0.02945041097700596, -0.008808228187263012, 0.006912105716764927, -0.0295042023062706, -0.004612552933394909, -0.002945041051134467, 0.015478275716304779, -0.012244109064340591, -0.02185247465968132, 0.0210725087672472, -0.0046629817225039005, 0.009453716687858105, 0.016150658950209618, 0.006754095666110516, 0.018880536779761314, 0.00706003000959754, -0.01824849657714367, -0.010462292470037937, -0.01092623732984066, -0.003956978674978018, 0.001581782940775156, 0.044162169098854065, -0.02529507875442505, -0.011571725830435753, -0.01153138279914856, -0.002049089642241597, -0.0033585571218281984, -0.041929855942726135, 0.02775600366294384, 0.019942903891205788, 0.003627510741353035, -0.02590022422373295, -0.03442605212330818, -0.008122396655380726, 0.006690219044685364, -0.014456252567470074, 0.012815635651350021, 0.011733097955584526, -0.0015078206779435277, -0.009399925358593464, 0.013232513330876827, -6.209044659044594e-05, 0.0295042023062706, -0.013494743034243584, 0.008788056671619415, 0.0008656941936351359, -0.004619276616722345, 0.0024861390702426434, -0.015653096139431, 0.015061398036777973, 0.009816803969442844, -0.022175218909978867, 0.011248981580138206, 0.022780364379286766, 0.019660502672195435, -0.00403430312871933, -0.005809396039694548, -0.01674235798418522, 0.027433259412646294, 0.00464953389018774, -0.017024759203195572, -0.003758625593036413, -0.011995327658951283, 0.015222769230604172, -0.02564471960067749, -0.017414741218090057, -0.0022810620721429586, 0.0027097067795693874, 0.006209464743733406, -0.00013888928515370935, -0.0007022208301350474, -0.012580301612615585, 0.00689193420112133, 0.011255704797804356, -0.01333337090909481, -0.02384272962808609, 0.004975640214979649, 0.015558961778879166, -0.012318071909248829, 0.00681797182187438, -0.006468332372605801, -0.02287449687719345, -0.0021314567420631647, 0.0010741332080215216, -0.0074836318381130695, 0.007846719585359097, 0.01438901387155056, -0.02124732919037342, 0.0162582416087389, 0.03811071440577507, 0.025806091725826263, -0.02491854503750801, 0.027594631537795067, -0.005792586598545313, 0.009319239296019077, 0.0022424000781029463, 0.01032781507819891, -0.04171469062566757, -0.03480258584022522, 0.00047949369763955474, -0.0007984557887539268, 0.007934128865599632, 0.006485141813755035, 0.022686230018734932, 0.012977007776498795, -0.013178722932934761, -0.021771788597106934, -0.011101056821644306, -0.008599788881838322, -0.004249465651810169, 0.0022760191932320595, 0.006232997868210077, -0.015101740136742592, 0.011827231384813786, -0.004239379893988371, 0.005893444176763296, -0.0010934642050415277, -0.011968431994318962, -0.01842331700026989, -0.02112630009651184, 0.00671039056032896, -0.009736117906868458, 0.010610216297209263, -0.01620445027947426, -0.036685261875391006, -0.02685501053929329, 0.029289038851857185, 0.00045511979260481894, -0.0023617481347173452, 0.04225260019302368, -0.004847887437790632, -0.024945439770817757, 0.0027147496584802866, -0.013003903441131115, -0.042709819972515106, -0.03004211001098156, -0.006011111196130514, -0.027621528133749962, -0.01315182726830244, -0.0067070284858345985, 0.03101034089922905, 0.018261944875121117, -0.007779480889439583, -0.03265095874667168, -0.01035471074283123, -0.01477899681776762, -0.0009631898137740791, -0.024636143818497658, 0.037599701434373856, 0.02606159634888172, 0.04580278694629669, 0.007651727646589279, 0.016271688044071198, 0.008478759787976742, 0.026142282411456108, -0.031144818291068077, -0.00701296329498291, -0.023735148832201958, -0.029369724914431572, 0.027782900258898735, -0.03329644724726677, -0.042898088693618774, -0.0044848001562058926, 0.012694606557488441, -0.008734266273677349, -0.004209122620522976, 0.012654263526201248, 0.012405481189489365, 0.0026912163011729717, -0.018033334985375404, -0.007530699018388987, 0.006434713024646044, 0.00788706261664629, 0.004629362374544144, -0.026518817991018295, 0.008646856062114239, 0.009184762835502625, -0.0012287814170122147, -0.019068805500864983, 0.013440952636301517, 0.019337758421897888, -0.01866537518799305, 0.006391008384525776, -0.02432684600353241, -0.0008850251906551421, -0.02347964234650135, -0.0109934750944376, -0.015599304810166359, 0.006001025438308716, 0.0059909396804869175, 0.0397513322532177, -0.004444457124918699, -0.01921672932803631, -0.010253853164613247, 0.012129804119467735, 0.01613721251487732, 0.0027937546838074923, 0.022565200924873352, -0.025859881192445755, 0.0022491239942610264, -0.01811402104794979, 0.024636143818497658, -0.00340898591093719, -0.02245762012898922, -0.02588677778840065, -0.006653238087892532, -0.037653494626283646, -0.0038863783702254295, 0.011074161157011986, -0.01366283930838108, 0.0022457619197666645, -0.017966095358133316, 0.006404455751180649, -0.011464144103229046, -0.017562665045261383, -0.0006736445357091725, -0.023103108629584312, -0.027137411758303642, 0.004178865347057581, 0.017481978982686996, -0.03316197171807289, 0.0028778028208762407, 0.01913604326546192, -0.016029629856348038, 0.005103392992168665, 0.21742203831672668, 0.0146041763946414, -0.005103392992168665, 0.04658275097608566, 0.017307160422205925, -0.02174489200115204, 0.016298584640026093, 0.0031232228502631187, 0.008821675553917885, 0.020978374406695366, 0.008767885155975819, 0.012741673737764359, -0.020453914999961853, -0.0026491922326385975, 0.01775093376636505, -0.009292344562709332, -0.02565816603600979, -0.00576569139957428, -0.01056987326592207, 0.0026307017542421818, 0.00810222513973713, 0.0007324781036004424, -0.012855978682637215, -0.0031249038875102997, 0.025012677535414696, 0.018261944875121117, -0.012882874347269535, 0.004659619648009539, 0.005849739070981741, 0.004010769538581371, -0.021112851798534393, -0.014617624692618847, 0.023681357502937317, -0.009453716687858105, -0.022296248003840446, -0.013299752026796341, 0.013380438089370728, -0.030418643727898598, -0.0018356078071519732, 0.020803555846214294, 0.012392033822834492, -0.00935958232730627, 0.005580785684287548, -0.01793920062482357, 0.017549218609929085, -0.004239379893988371, 0.01050935871899128, -0.004404114093631506, 0.004269637167453766, 0.04389321431517601, 0.0036174249835312366, 0.0016986096743494272, 0.0024071340449154377, 0.009023390710353851, -0.006300236564129591, -0.01601618342101574, -0.010771588422358036, -0.009144419804215431, -0.02583298645913601, 0.00022987122065387666, -2.9942091714474373e-05, 0.007819823920726776, -0.005829567555338144, 0.01750887557864189, -0.0231837946921587, 0.010616940446197987, -0.0183560773730278, 0.029961423948407173, 0.006690219044685364, 0.01667511835694313, -0.02342585287988186, -0.02162386290729046, -0.019956352189183235, -0.006074987817555666, -0.0038023304659873247, -0.012244109064340591, 0.00033493118826299906, 0.03378056362271309, 0.03630872443318367, 0.007033134810626507, 0.0147521011531353, 0.026209522038698196, -0.027890481054782867, 0.0009043562458828092, 0.00281560723669827, -0.005906892009079456, 0.0343184694647789, -0.01873261295258999, 0.018746061250567436, -0.011692754924297333, -0.010516082867980003, -0.0003439663560129702, -0.018799850717186928, -0.00365776801481843, -0.009823527187108994, -0.01674235798418522, 0.011934813112020493, 0.03378056362271309, -0.008640131913125515, -0.015155531466007233, -0.031575143337249756, 0.04671722650527954, 0.012257557362318039, 0.021825578063726425, -0.020265648141503334, -0.002020513406023383, -0.013824211433529854, 0.03402262181043625, -0.0035401007626205683, 0.004555400460958481, -0.014375566504895687, -0.0267877709120512, 0.014039373956620693, 0.018504003062844276, 0.01909570023417473, 0.02902008593082428, 0.02540266141295433, 0.005685005336999893, -0.02462269552052021, -0.011807059869170189, 0.03472189977765083, -0.0195663683116436, 9.628746192902327e-05, -0.0035098434891551733, -0.02185247465968132, -0.024246159940958023, -0.0034190716687589884, 0.003681301372125745, -0.022255904972553253, -0.03816450387239456, 0.013225790113210678, -0.0013523319503292441, 0.015142083168029785, -0.01035471074283123, -0.009406649507582188, 0.0007820664322935045, 0.0018339268863201141, -0.010031966492533684, -0.008983047679066658, 0.0020927947480231524, 0.00495210662484169, 0.023466195911169052, 0.023560328409075737, -0.005137012340128422, 0.022471066564321518, -0.016392717137932777, 0.002440753160044551, 0.01477899681776762, -0.013474571518599987, -0.018893985077738762, -0.001053961692377925, 0.04055819287896156, 0.00502606900408864, 0.012714778073132038, 0.030445538461208344, -0.025738852098584175, -0.02486475370824337, -0.024246159940958023, 0.007913957349956036, -0.0019381463062018156, -0.034587424248456955, -0.008256873115897179, 0.028751133009791374, 0.004659619648009539, -0.02347964234650135, 0.008317387662827969, -0.17051653563976288, 0.01873261295258999, 0.0118944700807333, -0.0011027094442397356, -0.0066196187399327755, 0.032113052904605865, 0.017898857593536377, -0.010791759938001633, -0.032785434275865555, -0.01065728347748518, 0.013319923542439938, -0.010919513180851936, -0.00742311729118228, -0.015101740136742592, 0.008122396655380726, -0.013629220426082611, -0.009171315468847752, 0.01980842649936676, 0.032839227467775345, -0.007671899162232876, 0.013077865354716778, -0.011901193298399448, 0.0050664120353758335, -0.011430525220930576, 0.02396375872194767, -0.002333171898499131, -0.006431351415812969, 0.049756404012441635, 0.01487313024699688, -0.03340402990579605, -0.013958687894046307, -0.0324895866215229, 0.018867090344429016, 0.0292083527892828, 0.017078548669815063, -0.0026508732698857784, 0.014913473278284073, 0.012681159190833569, -0.024111684411764145, 0.014859682880342007, 0.021287672221660614, 0.007752585224807262, 0.028993191197514534, -0.004639448132365942, 0.012721502222120762, 0.03402262181043625, 0.011605344712734222, -0.007174335420131683, 0.00250631058588624, -0.004491523839533329, 0.03184409812092781, -0.01378386840224266, -0.01451004296541214, -0.015935497358441353, 0.009097352623939514, -0.002600444480776787, 0.011612068861722946, 0.01195498462766409, -0.0018154362915083766, -0.03063380718231201, -0.02185247465968132, -0.004538590554147959, -0.014375566504895687, 8.023955160751939e-06, 0.0025046297814697027, -0.03985891118645668, -0.020386677235364914, 0.008559445850551128, -0.008209806866943836, 0.005893444176763296, 0.0011716288281604648, 2.103825863741804e-05, -0.004985725972801447, 0.012297900393605232, 0.02095147967338562, 0.01020678598433733, -0.03528670221567154, -0.0035703580360859632, 0.03219373896718025, 0.004353685304522514, 0.02174489200115204, 0.008364454843103886, -0.003277871059253812, 0.0060985214076936245, -0.033807460218667984, 0.003062708303332329, 0.017724037170410156, 0.006475056055933237, -0.009487335570156574, 0.02450166642665863, 0.012028946541249752, -0.02276691608130932, 0.026639847084879875, 0.007295364513993263, 0.0008140046847984195, 0.01606997288763523, 0.03577081859111786, -0.009292344562709332, 0.01369645819067955, -0.019431892782449722, 0.006175845395773649, 0.03168272599577904, -0.04281740263104439, -0.00537570845335722, 0.025254735723137856, 0.01812746748328209, 0.02775600366294384, -0.006004387512803078, 0.02600780688226223, -0.007113820873200893, -0.010489187203347683, 0.031198609620332718, 0.03534049540758133, 0.016930624842643738, -0.00911752413958311, 0.04429664462804794, 0.01032781507819891, -0.02053460106253624, -0.0017515599029138684, -0.0051269265823066235, 0.042898088693618774, -0.020332885906100273, -0.01824849657714367, 0.010011794976890087, 0.003513205563649535, -0.008223254233598709, -0.09375719726085663, -0.026451580226421356, 0.02720464952290058, 0.00968905072659254, -0.008424969390034676, 0.0073357075452804565, -0.005906892009079456, 0.008740989491343498, -0.000931251619476825, 0.01698441617190838, -0.0159623920917511, -0.0004072124429512769, 0.007234849967062473, -0.008653580211102962, 0.012149975635111332, -0.013797315768897533, 0.0022995525505393744, -0.03665836527943611, -0.007443288806825876, 0.01914949156343937, 0.02083045057952404, -0.011961707845330238, 0.020305991172790527, -0.0032055899500846863, -0.013985583558678627, -0.02528163231909275, -0.02306276559829712, 0.0027130686212331057, 0.008640131913125515, 0.001428815652616322, 0.03525980934500694, -0.007127268705517054, 0.04112299531698227, -0.00751052750274539, -0.00956802163273096, -0.0142948804423213, -0.006206102669239044, -0.01710544526576996, 0.011121228337287903, -0.018557792529463768, -0.004585657734423876, 0.02522784098982811, 0.0015464827883988619, -0.01750887557864189, -1.0735815521911718e-05, -0.013440952636301517, -0.0002863934787455946, 0.027298783883452415, 0.01412006001919508, -0.001425453694537282, -0.012284452095627785, -0.02595401555299759, -0.0022222285624593496, -0.03786865621805191, 0.031225504353642464, -0.009547850117087364, 0.00371155864559114, 0.019552921876311302, -0.014335223473608494, 0.011302771978080273, -0.022255904972553253, -0.0034308384638279676, -0.017132339999079704, 0.016123764216899872, 0.02323758415877819, 0.010368158109486103, -0.0139990309253335, 0.015088292770087719, 0.007806376088410616, -0.012929940596222878, -0.0147521011531353, 0.015128635801374912, -0.015424484387040138, -0.006606170907616615, -0.012351690791547298, 0.009971451945602894, -0.011692754924297333, -0.0201580673456192, 0.005483290180563927, 0.011148124001920223, -0.028186330571770668, -0.0071407160721719265, 0.002982022240757942, -0.04378563538193703, 0.009487335570156574, 0.00021999557793606073, -0.003566996194422245, 0.0028172882739454508, 0.012775292620062828, -0.04147263243794441, 0.008909085765480995, 0.020211856812238693, 0.025308527052402496, 0.009709222242236137, -0.011376733891665936, 0.009554574266076088, -0.012876150198280811, 0.00563121447339654, 0.01405282225459814, -0.011370010673999786, -0.011659135110676289, -0.007893785834312439, -0.05906219407916069, -0.002666001906618476, 0.00702641112729907, 0.0042023989371955395, 0.012929940596222878, -0.029719365760684013, -0.016688566654920578, -0.01315182726830244, -0.0021331377793103456, -0.014442804269492626, -0.012795464135706425, 0.001053961692377925, -0.031171713024377823, -0.010670730844140053, -0.026263311505317688, -0.033565402030944824, 0.011759992688894272, 0.0019297415856271982, 0.022726573050022125, -0.0005610202788375318, -0.002886207541450858, 0.0076920706778764725, 0.015599304810166359, 0.026155730709433556, -0.00026874340255744755, 0.02479751594364643, -0.022255904972553253, 0.03617424890398979, -0.003566996194422245, -0.020427020266652107, 0.016231345012784004, -0.007954300381243229, 0.00657591363415122, 0.00047949369763955474, -0.0019347844645380974, -0.027594631537795067, -0.02902008593082428, 0.020494258031249046, 0.012990455143153667, -0.004958830773830414, -0.013427505269646645, 0.006239722017198801, 0.02126077562570572, -0.021812131628394127, -0.0198622178286314, -0.0397513322532177, -0.0198622178286314, -0.02401755005121231, 0.01405282225459814, 0.009292344562709332, 0.01913604326546192, -0.006155673880130053, -0.03593219071626663, -0.04053129628300667, -0.013985583558678627, -0.015155531466007233, 0.0038460353389382362, 0.02516060322523117, -0.011053989641368389, -0.0009842017898336053, 0.04685170575976372, -0.00018837253446690738, 0.0010867404052987695, -0.02329137548804283, 0.04074645787477493, -0.008640131913125515, -0.051397018134593964, -0.011995327658951283, -0.0010119376238435507, -0.03297370299696922, -0.018571240827441216, -0.008660303428769112, 0.027043277397751808, 0.00800809171050787, 0.0204673632979393, -0.020695973187685013, 0.00403430312871933, -0.019109148532152176, -0.01059676893055439, 0.014684862457215786, 0.01799299195408821, -0.0005959001719020307, -0.019902560859918594, 0.014281432144343853, 0.019902560859918594, 0.0041721416637301445, -0.02498578280210495, 0.010300920344889164, 0.02581953816115856, 0.015088292770087719, -0.013683010824024677, -0.007685346994549036, 0.0005131129291839898, 0.005943872965872288, -0.006296874489635229, 0.012734949588775635, -0.018329182639718056, 0.015505170449614525, 0.031763412058353424, 0.030176585540175438, 0.01402592658996582, 0.009594917297363281, -0.02571195736527443, -0.007766033057123423, 0.0018456935649737716, 0.013024074956774712, -0.023802386596798897, -0.018409868702292442, 0.020615287125110626, 0.022618992254137993, 0.014792444184422493, -0.03329644724726677, -0.013057693839073181, 0.02226935140788555, -0.01806022971868515, 0.015263112261891365, 0.0011657454306259751, -0.011242257431149483, -0.015411037020385265, 0.0017969458131119609, 0.013461124151945114, 0.029611783102154732, 0.005295022390782833, -0.011390182189643383, 0.029046980664134026, 0.0003817879478447139, 0.014684862457215786, -0.010455568321049213, 0.0035401007626205683, -0.014940368942916393, -0.008108949288725853, -0.011665859259665012, 0.004999173805117607, -0.02294173650443554, 0.0034493289422243834, -0.01836952567100525, -0.005742157809436321, 0.037411436438560486, -0.018504003062844276, 0.08703336119651794, 0.02119353786110878, -0.010529530234634876, 0.003439243184402585, -0.0014515086077153683, 0.019942903891205788, 0.01303079817444086, 0.0068751247599720955, -0.003923359792679548, -0.017979543656110764, 0.01721302606165409, -0.017172683030366898, -0.018329182639718056, 0.02058839239180088, -0.0159623920917511, 0.001530513633042574, -0.004165417980402708, 0.010341263376176357, 0.007039858493953943, 0.008445140905678272, 0.008720817975699902, -0.005590871442109346, 0.003809054382145405, -0.0004899997147731483, -0.029611783102154732, -0.0033400666434317827, 0.02300897426903248, 0.03582461178302765, 0.003627510741353035, -0.019727740436792374, 0.027231544256210327, -0.020265648141503334, -0.027366021648049355, -0.0012590386904776096, -0.022323142737150192, -0.004703324753791094, -0.014227641746401787, -0.027137411758303642, -0.008048434741795063, 0.016352374106645584, -0.0004744508187286556, 0.023331718519330025, -0.018530897796154022, -0.013824211433529854, 0.017065102234482765, 0.012432376854121685, -0.0041418843902647495, -0.025738852098584175, -0.002973617520183325], "28e00375-f4da-4f42-8df0-4a4ca3bbf53c": [-0.007893851958215237, -0.004618523642420769, 0.00989142432808876, -0.0415770448744297, 0.011751231737434864, 0.017055129632353783, -0.017675066366791725, -0.02464590221643448, 0.0012605366064235568, -0.045131344348192215, 0.01162035670131445, 0.03127232939004898, 0.005854951683431864, -0.00030307983979582787, -0.003063517389819026, 0.015415742993354797, 0.025954656302928925, 0.008369136601686478, -0.0025141851510852575, 0.00854822900146246, -0.0157050471752882, 0.0025916770100593567, -0.011158849112689495, -0.0028775364626199007, -0.025610247626900673, 0.000732299464289099, 0.025940880179405212, -0.018680740147829056, -0.01472692470997572, 0.009388587437570095, 0.02691899985074997, -0.010242721065878868, -0.02070586383342743, -0.008892638608813286, -0.004270670469850302, 0.015732599422335625, 0.01943843998014927, 0.018088355660438538, 0.01149636972695589, 0.0015489790821447968, 0.011089966632425785, 0.01863940991461277, 0.0019131915178149939, -0.013617928139865398, -0.011482593603432178, 0.03328367695212364, 0.015870362520217896, -0.020389007404446602, -0.018749620765447617, 0.008389800786972046, -0.0008347611292265356, 0.01242627389729023, -0.016545403748750687, -0.007942069321870804, 0.006378453224897385, 0.006967392284423113, 0.012736241333186626, 0.007246363442391157, 0.018556753173470497, -0.002100894460454583, 0.013507717289030552, 0.0016669391188770533, -0.004832057282328606, -0.009271487593650818, -0.018556753173470497, -0.033641863614320755, -0.025031639263033867, -0.0037092838902026415, -0.014017443172633648, -0.006943283602595329, 0.043395522981882095, 0.036314476281404495, 0.005255680065602064, -0.01603567972779274, -0.0069949449971318245, -0.004267226438969374, -0.023901978507637978, -0.028709927573800087, -0.007515002507716417, 0.0012002650182694197, 0.028076214715838432, -0.012846452184021473, -0.018336331471800804, 0.011778784915804863, 0.025279615074396133, 0.028434399515390396, 0.019672637805342674, 0.01409321278333664, -0.0052246833220124245, -0.02679501287639141, 0.012846452184021473, 0.005369334947317839, 0.02403974160552025, 0.024218834936618805, 0.0019510765559971333, 0.012281621806323528, 0.0038539357483386993, -0.001964852912351489, -0.010814439505338669, -0.013397506438195705, -0.010518248192965984, 0.003922817762941122, -0.019355781376361847, -0.016807155683636665, -0.008520676754415035, -0.034110259264707565, 0.01709645800292492, -0.006963948253542185, -0.008100497536361217, 0.01509888656437397, -0.015567283146083355, 0.0360940545797348, 0.0007490894058719277, -0.005300453398376703, 0.00034957504249177873, 0.0008179711876437068, 0.03408270701766014, -0.01931445114314556, -0.004449763335287571, -0.022414132952690125, 0.0051006958819925785, -0.016462747007608414, 0.06370187550783157, -0.011565251275897026, 0.00160408450756222, 0.001460293773561716, 0.006722861900925636, -0.00795584637671709, 0.005693079438060522, -0.0030962361488491297, 0.012922222726047039, 0.013989889994263649, 0.03039064258337021, 0.018157238140702248, -0.023158054798841476, 0.014616713859140873, -0.008672216907143593, 0.008038504049181938, 0.0011244950583204627, -0.031768277287483215, 0.007673430722206831, 0.026133747771382332, 0.02424638718366623, -0.0165591798722744, 0.003860824042931199, 0.0526532344520092, 0.0006875263061374426, 0.030555959790945053, -0.005882504396140575, -0.0036713990848511457, -0.005527763161808252, -0.002729440573602915, -0.024163728579878807, -0.0051041399128735065, 0.0030445747543126345, 0.015801481902599335, -0.000581190048251301, 0.03419291600584984, -0.00748056173324585, 0.014699372462928295, -0.00010488327825441957, 0.029426297172904015, 0.007707871496677399, 0.0021456675603985786, 0.016407640650868416, 0.03934527561068535, 0.005868727806955576, -0.027139421552419662, -0.01930067501962185, -0.009932752698659897, 0.006164919584989548, 0.04267915338277817, -0.017606183886528015, 0.019204240292310715, 0.004739066585898399, 0.030032457783818245, 0.003805718384683132, 0.013349289074540138, -0.026671025902032852, -0.02920587547123432, 0.021794196218252182, -0.01657295785844326, 0.001177878468297422, 0.013452611863613129, -0.02445303276181221, -0.012646695598959923, 0.03642468526959419, 0.007508114445954561, 0.0015782538102939725, -0.001680715475231409, 0.02660214528441429, -0.006757302675396204, -0.010139398276805878, -0.0025055748410522938, -0.6312877535820007, 0.007012165617197752, 0.026161301881074905, -0.008658439852297306, 0.0009454024839214981, 0.010518248192965984, 0.0009307650616392493, 0.00018382826237939298, -0.0015911691589280963, 0.029646718874573708, 0.007043162360787392, 0.0032615524251013994, -0.005641418043524027, -0.005441660992801189, -0.015346861444413662, -0.02820020169019699, -0.008472459390759468, -0.013376842252910137, -0.007101711817085743, 0.005121360532939434, -0.017606183886528015, 0.015360637567937374, 0.007597660645842552, 0.006536880973726511, -0.011027973145246506, -0.013466388918459415, 0.012061200104653835, -0.0035577439703047276, -0.0064645553939044476, 0.03546034172177315, -0.027153199538588524, 0.010566465556621552, 0.021339576691389084, -0.007036274299025536, 0.040860675275325775, -0.032512202858924866, -0.015153991989791393, 0.03512971103191376, 0.0161045603454113, 0.029508955776691437, -0.023888202384114265, -0.009257711470127106, 0.028434399515390396, 0.02778691053390503, -0.024218834936618805, -0.00763210142031312, 0.009595232084393501, 0.00731524545699358, 0.005951385945081711, -0.017068905755877495, 0.0009755382779985666, -0.016407640650868416, -0.012267845682799816, 0.006009935401380062, 0.0005583729362115264, 0.00422589760273695, 0.01526420284062624, -0.008141826838254929, 0.006585098337382078, -0.001975185237824917, 0.01526420284062624, 0.025141850113868713, -0.01749597303569317, -0.03201625123620033, -0.037113506346940994, 0.0065541015937924385, -0.01883227936923504, -0.016820931807160378, -0.017151564359664917, -0.009643449448049068, 0.02183552458882332, -0.008672216907143593, 0.010869544930756092, 0.005279788747429848, 0.016077008098363876, 0.019810400903224945, 0.051413360983133316, -0.006309571210294962, -0.0009729551966302097, 0.004766619298607111, 0.0008989072521217167, 0.0014404902467504144, -0.02023746818304062, -0.013611040078103542, 0.03438578546047211, 0.01052513625472784, 0.006209692917764187, -0.010049852542579174, 0.013115091249346733, -0.00440843403339386, -0.002862038090825081, 0.029150770977139473, -0.014671819284558296, -0.02606486715376377, 0.002032012678682804, 0.06392229348421097, 0.006843405310064554, 0.012929110787808895, 0.009264599531888962, -0.023199385032057762, -0.03160296380519867, -0.01268802396953106, 0.020430337637662888, 0.008809980005025864, 0.02832418866455555, 0.021794196218252182, -0.026615921407938004, -0.009299040772020817, 0.011220842599868774, -0.0149335702881217, -0.006171807646751404, 0.002345424611121416, -0.016269877552986145, -0.010346043854951859, 0.023695332929491997, -0.02898545376956463, 0.009402363561093807, 0.01343194767832756, -0.007893851958215237, -0.0007112044258974493, -0.015346861444413662, -0.014906018041074276, 0.024081071838736534, 0.0022248816676437855, 0.016683168709278107, -0.00015842809807509184, 0.009312816895544529, -0.004752843175083399, 0.007136152591556311, -0.00047097919741645455, -0.006695309188216925, -0.010642235167324543, -0.004725290462374687, -0.015085110440850258, 0.03215401619672775, 0.003390705678611994, 0.022799869999289513, -0.008672216907143593, 0.0032563863787800074, -0.04926425218582153, -0.00030910701025277376, 0.01102108508348465, 0.018942490220069885, -0.027277186512947083, -0.002128447173163295, -0.026905223727226257, 0.002862038090825081, -0.005193686578422785, 0.017551077529788017, -0.007680318783968687, -0.013562822714447975, -0.012068088166415691, 0.014644267037510872, 0.009643449448049068, -0.0022489901166409254, -0.0037678335793316364, 0.004136350937187672, -0.02646438032388687, -0.003802274353802204, -0.014492726884782314, -0.015043781138956547, -0.0014973178040236235, -0.018529199063777924, 0.0013767746277153492, -0.02245546132326126, -0.010311602614820004, -0.01232295110821724, 0.008355360478162766, -0.016063231974840164, -0.010600906796753407, -0.015567283146083355, -0.01135171763598919, -0.010862656868994236, 0.026643473654985428, 0.002250712364912033, 0.02370910905301571, -0.01584281027317047, -0.014079436659812927, -0.026560815051198006, -0.006158031523227692, 0.011165737174451351, 0.018625633791089058, -0.006127034779638052, -0.01460293773561716, 0.03981367126107216, 0.013473276980221272, 0.02818642556667328, 0.02091250941157341, -0.03984122350811958, 0.002324760193005204, -0.006578210275620222, 0.007997174747288227, -0.027759358286857605, -0.009423027746379375, -0.011716791428625584, -0.012316063046455383, -0.005414108280092478, -0.003359708935022354, 0.00885819736868143, 0.03353165090084076, 0.020664535462856293, 0.0197001900523901, 0.0012519264128059149, 0.006836516782641411, 0.009243935346603394, -0.027566488832235336, 0.015043781138956547, -0.020995168015360832, 0.0035646322648972273, 0.0005648306105285883, -0.0004679656121879816, -0.004863054025918245, 0.01028405036777258, -0.01596679724752903, 0.002760437550023198, 0.025086745619773865, 0.01382457371801138, 0.01650407537817955, -0.011544587090611458, -0.005414108280092478, 0.00730146886780858, 0.0027225525118410587, 0.017468420788645744, -0.012949774973094463, 0.007191258016973734, 0.019066477194428444, 0.012336727231740952, 0.026285288855433464, 0.00998785812407732, -0.02978448197245598, -0.009574567899107933, 0.025265837088227272, -0.01770261861383915, 0.013859014958143234, 0.027042988687753677, 0.017330655828118324, 0.02285497635602951, 0.005875615868717432, 0.03554299846291542, 0.0020836738403886557, 0.004363661166280508, -0.0046598524786531925, 0.024094847962260246, -0.03052840568125248, 0.03187849000096321, 0.0057585169561207294, 0.028241530060768127, -0.0010693896329030395, -0.03474397212266922, -0.00018964015180245042, -0.001682437490671873, -0.0030411307234317064, -0.013549046590924263, -0.0038401593919843435, 0.03705839812755585, -0.029894692823290825, 0.024508139118552208, -0.008148714900016785, 0.0014430733863264322, 0.007535667158663273, 0.0076940953731536865, 0.0019200796959921718, -0.007453009020537138, -0.008059168234467506, 0.016807155683636665, -0.020003270357847214, -0.014534056186676025, -0.02719452790915966, -0.007377238944172859, 0.0038504917174577713, 0.011971653439104557, -0.02299273945391178, 0.010111846029758453, -0.012123193591833115, 0.000656960008200258, -0.006003047339618206, -0.009395475499331951, -0.014038107357919216, 0.011234618723392487, 0.013087539002299309, -0.023888202384114265, -0.020802298560738564, 0.005148913245648146, 0.015567283146083355, 0.005834287032485008, -0.008913302794098854, -0.018184790387749672, -0.013369954191148281, 0.019727742299437523, 0.009016625583171844, 0.008865085430443287, -0.001978629268705845, 0.00844490621238947, -0.014189647510647774, 0.00885819736868143, 0.002729440573602915, 0.04218320548534393, -0.015484624542295933, -0.030500853434205055, 0.010414925403892994, 0.02572045847773552, 0.017192892730236053, -0.011461928486824036, -0.030307983979582787, 0.02439792826771736, 0.009099283255636692, -0.02559646964073181, -0.015553507022559643, 0.0010297826956957579, -0.020953837782144547, -0.005083475727587938, -0.014713148586452007, -0.022593224421143532, -0.015043781138956547, -0.009126836434006691, 0.00047786737559363246, -0.0007198146195150912, -0.006450778804719448, 0.007769864983856678, 0.020747192203998566, 0.006953616160899401, -0.008803091943264008, 0.005972050596028566, 0.018556753173470497, 0.07020431011915207, -0.001681576482951641, 0.0056689707562327385, 0.009712330996990204, -0.012584702111780643, -0.003733392572030425, -0.030500853434205055, -0.021339576691389084, 0.04097088426351547, 0.020141033455729485, -0.01456160843372345, 0.011055526323616505, 0.01025649718940258, -0.003290827153250575, 0.009815653786063194, -0.014100100845098495, -3.7427562347147614e-05, -0.01777149923145771, -0.01683470793068409, 0.014106988906860352, 0.0033252681605517864, -0.00763210142031312, 0.028847690671682358, 0.020196137949824333, 0.02738739736378193, 0.019589979201555252, 0.02745627798140049, 0.028296636417508125, -0.0011158848647028208, -0.01784038171172142, -0.015030005015432835, 0.026216406375169754, 0.008245149627327919, 0.011585915461182594, -0.03879421949386597, 0.02271721139550209, -0.004415322095155716, -0.009264599531888962, -0.011069302447140217, -0.005827398970723152, -0.0042190090753138065, 0.032842833548784256, -0.005076587200164795, -0.00821759644895792, 0.01429985836148262, -0.01749597303569317, -0.01796436868607998, 0.03829827159643173, -0.016421416774392128, -0.014162094332277775, 0.0026157856918871403, 0.0149335702881217, -0.013983001932501793, 0.01636631228029728, 0.0030376866925507784, -0.024356598034501076, 0.007535667158663273, -0.02898545376956463, -0.036782871931791306, -0.024012189358472824, -0.03557055443525314, -0.009044177830219269, -0.009299040772020817, -0.0263817235827446, -0.01992061175405979, -0.037581901997327805, -0.027814464643597603, -0.010559577494859695, -0.017358209937810898, -0.007349686231464148, -0.006071929354220629, -0.02959161438047886, -0.02679501287639141, 0.019424661993980408, 0.019286898896098137, 0.020127257332205772, -0.007184369955211878, 0.0003017882991116494, 0.01631120592355728, 0.0009419583948329091, 0.002491798484697938, -0.018253672868013382, -0.002629562048241496, -0.02118803560733795, 0.008768650703132153, -0.014148318208754063, -0.0149335702881217, 0.001534341718070209, 0.004587526898831129, 0.031768277287483215, -0.00791451707482338, -0.020871181041002274, 0.023557569831609726, 0.007081047166138887, 0.02105027250945568, 0.012653583660721779, 0.011420599184930325, -0.007535667158663273, 0.03592873737215996, -0.03760945424437523, 0.023061620071530342, -0.015085110440850258, -0.023406030610203743, -0.009609009139239788, 0.019479768350720406, 0.021559998393058777, -0.009877647273242474, -0.016669390723109245, 0.007459897082298994, -0.021215589717030525, -0.0028069326654076576, -0.0004937963094562292, -0.020692087709903717, -0.019658861681818962, -0.006926063448190689, -0.027180751785635948, 0.01657295785844326, 0.02618885412812233, 0.009305928833782673, -0.0220421701669693, 0.0007038857438601553, -0.016269877552986145, 0.01582903414964676, 0.020347679033875465, -0.0006896788254380226, 0.01830877736210823, 0.012550260871648788, -0.006833072751760483, -0.03446844592690468, -0.011737455613911152, 0.00424311775714159, 0.005173021927475929, -0.022152381017804146, -0.019190464168787003, -0.014272305183112621, 0.00044428749242797494, -0.01910780742764473, 0.01609078422188759, 0.0005678441957570612, 0.004866498056799173, -0.03554299846291542, 0.010428701527416706, 0.007397903595119715, -0.016807155683636665, 0.011069302447140217, -0.031492751091718674, -0.03686552867293358, -0.011344829574227333, 0.018942490220069885, 0.03179582953453064, -0.014086324721574783, -0.007652766071259975, -0.03843603655695915, -0.03595628961920738, -0.008809980005025864, -0.011379270814359188, 0.0006423226441256702, 0.004649520386010408, 0.034771524369716644, 0.041329070925712585, 0.018680740147829056, 0.01757863163948059, 0.020760970190167427, 0.01476825401186943, -0.003595629008486867, -0.0015618944307789207, -0.012040535919368267, -0.02078852243721485, -0.00323916575871408, -0.030115114524960518, -0.010070516727864742, -0.011530810035765171, 0.002116392832249403, 0.005472657736390829, -0.0012691468000411987, -0.015222873538732529, 0.007094823755323887, -0.009974082000553608, -0.03926261514425278, -0.03675531968474388, 0.0033304342068731785, 0.031437646597623825, 0.008141826838254929, 0.0032443320378661156, -0.03171317279338837, 0.010566465556621552, 0.02032012678682804, -0.004749399144202471, 0.026505710557103157, -0.005947941914200783, 0.023474911227822304, -0.005307341460138559, -0.00043610777356661856, 0.020223692059516907, 0.00424311775714159, -0.006629871670156717, -0.018529199063777924, -0.030252879485487938, -0.007893851958215237, 0.0048837182112038136, 0.010538912378251553, 0.013769468292593956, -0.003747168928384781, 0.009974082000553608, 0.014520280063152313, 0.00794895738363266, -0.029040560126304626, -0.015002451837062836, 0.00794895738363266, -0.01992061175405979, -0.016049455851316452, -0.028489505872130394, -0.0298671405762434, 0.008878861553966999, -0.00048647759831510484, -0.00795584637671709, -0.006385341286659241, 0.02191818319261074, -0.021807972341775894, -0.018322553485631943, 0.009071731008589268, -0.0015197043539956212, 0.01742709055542946, 0.013893455266952515, 0.016917366534471512, 0.014244752936065197, 0.016200995072722435, -0.02251056581735611, -0.00647833151742816, 0.004856165498495102, 0.01011873409152031, 0.007370350882411003, 0.030776381492614746, -0.024342821910977364, -0.006319903768599033, -0.0007960150833241642, -0.0014775142772123218, 0.007818082347512245, -0.04146683216094971, 0.026202630251646042, 0.009223271161317825, 0.00397447869181633, -0.03623181954026222, -0.032842833548784256, -0.02077474631369114, 0.002131891204044223, 0.0006233801250346005, 0.01145504042506218, 0.004353328607976437, 4.563418042380363e-05, 0.002855149796232581, 0.029426297172904015, -0.02025124430656433, 0.018859831616282463, -0.009285264648497105, 0.005813622381538153, -0.005906613077968359, -0.014713148586452007, 0.00671597383916378, -0.006102926097810268, 0.008741098456084728, 0.019603755325078964, -0.017854157835245132, 0.004470427520573139, 0.009629673324525356, 0.022799869999289513, -0.0020096260122954845, -0.0034750858321785927, -0.023970860987901688, 0.0323193334043026, 0.00235403492115438, -0.0263266172260046, 0.004205232951790094, -0.01876339688897133, 0.01446517463773489, -0.01624232530593872, -0.016393864527344704, -0.013955448754131794, -0.016614286229014397, 0.001747014233842492, -0.007638989947736263, -0.0026863894890993834, -0.00851378869265318, 0.002948140259832144, 0.0017099902033805847, -0.01990683563053608, -0.021559998393058777, -0.0049181594513356686, 0.025265837088227272, -0.018942490220069885, -0.004322331864386797, 0.0016230270266532898, -0.015222873538732529, -0.0017668177606537938, -0.0029929133597761393, -0.021890630945563316, 0.001680715475231409, 0.029701825231313705, -0.03185093775391579, 0.018859831616282463, 0.009202606044709682, 0.03171317279338837, -0.04722534865140915, 0.015030005015432835, -0.001983795315027237, 0.011634132824838161, 0.014189647510647774, -0.011117519810795784, -0.03198869898915291, -0.023006515577435493, 0.017482196912169456, 0.01997571624815464, 0.005934165790677071, 0.008947744034230709, 0.01643519289791584, 0.011055526323616505, -0.00026218127459287643, -0.02011348120868206, -0.024673454463481903, 0.011744343675673008, -0.012233404442667961, 0.007273916155099869, 0.001459432765841484, -0.003988255281001329, 0.011034861207008362, -0.009429915808141232, 0.011813226155936718, 0.002050955081358552, -0.028379295021295547, -0.0216426569968462, -0.026202630251646042, -0.0041397949680686, -0.0017805941170081496, 0.02606486715376377, -0.027511384338140488, -0.02832418866455555, -0.03146519884467125, 0.032236672937870026, -0.005734408274292946, 0.016145890578627586, 0.03207135945558548, -0.015539729967713356, -0.03052840568125248, 0.01549840159714222, 0.0006216581095941365, -0.044993579387664795, -0.026133747771382332, -0.01763373613357544, -0.02733229100704193, -0.00795584637671709, -0.015939245000481606, 0.03557055443525314, 0.016738273203372955, -0.024425480514764786, -0.030280431732535362, -0.014713148586452007, -0.020072150975465775, -0.003726504510268569, -0.014919794164597988, 0.030087562277913094, 0.026712356135249138, 0.028103766962885857, -0.0037540572229772806, 0.025086745619773865, -0.01643519289791584, 0.023943306878209114, -0.03926261514425278, -0.01460293773561716, -0.020940061658620834, -0.0322091206908226, 0.03474397212266922, -0.023557569831609726, -0.03234688565135002, -0.02030634880065918, 0.0009083785116672516, -0.023130502551794052, -0.004263782408088446, 0.012391832657158375, 0.006950171664357185, 0.011193289421498775, -0.0074323443695902824, -0.0041225748136639595, 0.01322530210018158, 0.00352330319583416, 0.0009979248279705644, -0.02297896333038807, 0.0029085332062095404, 0.006943283602595329, -0.0008868529694154859, -0.016738273203372955, 0.013948560692369938, 0.012570925056934357, -0.01549840159714222, -0.019824177026748657, -0.004246561788022518, -0.006354344543069601, -0.02245546132326126, -0.016944918781518936, 7.684624142711982e-05, 0.012674247846007347, 0.013259743340313435, 0.03292549401521683, 0.0027414949145168066, 0.00017812398436944932, -0.01829500123858452, 0.017551077529788017, -0.0003131968551315367, -0.01489224098622799, 0.02277231775224209, -0.021077824756503105, -0.011909659951925278, -0.00190802535507828, 0.04380881413817406, -0.010380485095083714, -0.00204578903503716, -0.02945384941995144, -0.006691865157335997, -0.03634202852845192, -0.006750414613634348, 0.005090363789349794, -0.009237047284841537, 0.00779741769656539, -0.003283939091488719, 0.009009737521409988, -0.012543372809886932, -0.008672216907143593, -0.006640203762799501, -0.02037523128092289, -0.014120765030384064, 0.004776951856911182, 0.019080253317952156, -0.028406847268342972, -0.0026588367763906717, 0.03802274540066719, -0.01577392779290676, 0.004294779151678085, 0.21182525157928467, -0.002929197857156396, 0.020085927098989487, 0.035846080631017685, 0.01577392779290676, -0.023034067824482918, 0.01910780742764473, 0.006361232604831457, 0.004725290462374687, 0.024163728579878807, 0.004105354193598032, 0.007143040653318167, -0.020457889884710312, -0.004098466131836176, 0.01382457371801138, -0.011213954538106918, -0.03681042417883873, -0.017151564359664917, -0.01711023412644863, -0.0007258417899720371, 0.005210906732827425, 0.0007602826808579266, -0.017399538308382034, 0.0015024838503450155, 0.03747168928384781, 0.01662806235253811, -0.011282836087048054, 0.016683168709278107, 0.002273098798468709, 0.011523921974003315, -0.013046209700405598, -0.01332862488925457, 0.016352536156773567, -0.011303500272333622, -0.012150746770203114, -0.0029033671598881483, 0.011737455613911152, -0.02091250941157341, 0.014382516033947468, 0.023020291700959206, -0.0021577219013124704, -0.014038107357919216, -0.004584082867950201, -0.014017443172633648, 0.02646438032388687, -0.006061596795916557, 0.00951946247369051, 0.003209891030564904, 0.008465571328997612, 0.041384175419807434, 0.0011089966865256429, 0.007384127005934715, 0.01386590301990509, 0.009602120146155357, -0.025031639263033867, -0.009209494106471539, -0.0024349710438400507, -0.003011855995282531, -0.020898733288049698, 0.016490299254655838, -0.015085110440850258, 0.0005024065030738711, -0.001828811364248395, 0.024632126092910767, -0.03496439382433891, 0.0003758362145163119, -0.01898381859064102, 0.030693722888827324, 0.010290938429534435, 0.0012097363360226154, -0.0035474118776619434, -0.001100386492908001, -0.03276017680764198, -0.005858395714312792, -0.009636561386287212, -0.015043781138956547, -0.00556220393627882, 0.049677543342113495, 0.03094169683754444, 0.014864688739180565, -0.002193884691223502, 0.008010951802134514, -0.016214771196246147, -0.011937213130295277, 0.00698461290448904, -0.011840778402984142, 0.03281528130173683, -0.029564060270786285, 0.011964765377342701, -0.018694516271352768, -0.015649940818548203, 0.004759731236845255, -0.020265020430088043, 0.014878464862704277, -0.00982254184782505, -0.008844421245157719, 0.0031668399460613728, 0.025624023750424385, 0.005651750136166811, -0.01771639473736286, -0.02332337200641632, 0.03816050663590431, 0.0282690841704607, 0.04014430195093155, -0.018129685893654823, -0.006757302675396204, -0.016132114455103874, 0.01390034332871437, -0.003733392572030425, -0.004866498056799173, -0.029150770977139473, -0.03736148029565811, 0.013583487831056118, 0.0043429965153336525, 0.014024331234395504, 0.029371192678809166, 0.02479744143784046, 0.004487648140639067, -0.01390034332871437, 0.0038504917174577713, 0.01509888656437397, -0.02165643312036991, 0.007666542660444975, -0.003802274353802204, -0.012495155446231365, -0.023695332929491997, -0.015980573371052742, 0.014410069212317467, -0.026023536920547485, -0.03276017680764198, 0.02559646964073181, -0.02178042009472847, 0.02372288517653942, 0.0009471244993619621, -0.009271487593650818, -0.014272305183112621, 0.006691865157335997, -0.02191818319261074, -0.0008605917682871222, 0.002917143516242504, -0.007115487940609455, 0.004742510616779327, 0.010759334079921246, -0.003135843202471733, 0.021160483360290527, -0.005975494626909494, 0.002998079638928175, 0.0032667184714227915, -0.003235721727833152, -0.011944101192057133, 0.014506503008306026, 0.0267812367528677, 0.009057954885065556, 0.00701560964807868, 0.02270343527197838, -0.0243841502815485, -0.028172649443149567, -0.02030634880065918, 0.008307143114507198, -0.009863871149718761, -0.03493684157729149, 0.006839960813522339, 0.04300978407263756, 0.01509888656437397, -0.03193359449505806, -0.0023058177903294563, -0.1763373613357544, 0.01332862488925457, 0.010111846029758453, -0.00011935921793337911, -0.008424242027103901, 0.015057557262480259, 0.018859831616282463, 0.0076596541330218315, -0.020554324612021446, -0.009939641691744328, 0.014492726884782314, -0.010277162306010723, -0.0149611234664917, -0.01489224098622799, 0.008727322332561016, -0.009340370073914528, -0.011441264301538467, 0.027166975662112236, 0.04623345285654068, -0.010235833004117012, 0.018487870693206787, -0.013452611863613129, 0.009884536266326904, -0.023158054798841476, 0.012171410955488682, 0.017206668853759766, -0.00714992918074131, 0.0362042635679245, -0.0026708911173045635, -0.025816891342401505, -0.024136176332831383, -0.025816891342401505, 0.024604571983218193, 0.014079436659812927, 0.0072119226679205894, 0.004329219926148653, 0.010580241680145264, 0.005369334947317839, -0.024948982521891594, 0.021353352814912796, 0.01897004246711731, 0.010470030829310417, 0.023350924253463745, -0.012033647857606411, 0.016862260177731514, 0.021160483360290527, 0.011641020886600018, -0.006822740659117699, 0.005517430603504181, -0.01049069594591856, 0.029150770977139473, -0.01857052929699421, 0.0034819741267710924, -0.01359726395457983, 0.0026553927455097437, 0.011027973145246506, 0.001983795315027237, 0.02037523128092289, 0.01219896413385868, -0.025017863139510155, -0.012502043507993221, -0.016683168709278107, -0.0013612762559205294, 0.002782823983579874, -0.010332267731428146, -0.03154785558581352, -0.017688842490315437, 0.01671072095632553, -0.006702197249978781, 0.003237443743273616, 0.0064232260920107365, 0.0028034886345267296, 0.00794895738363266, -0.0026795014273375273, 0.01945221610367298, 0.013094427064061165, -0.038050297647714615, -0.009567679837346077, 0.03496439382433891, 0.010208279825747013, 0.010366708040237427, -0.00043503151391632855, -0.006230357103049755, -0.004759731236845255, -0.02439792826771736, -0.0007469368283636868, 0.021270694211125374, 0.01688981242477894, -0.0022972074802964926, 0.009843206964433193, 0.014341186732053757, -0.019603755325078964, 0.02873747982084751, -0.012777570635080338, 0.01749597303569317, 0.006505884230136871, 0.028544610366225243, -0.0055449833162128925, 0.0012829231563955545, -0.01591169275343418, 0.011399934999644756, 0.0275251604616642, -0.03212646394968033, 0.003063517389819026, 0.02096761390566826, 0.009381698444485664, 0.01898381859064102, -0.005297008901834488, 0.025403602048754692, 0.004928491543978453, -0.03165806829929352, 0.01936955749988556, 0.01631120592355728, -0.005648306105285883, -0.018873607739806175, 0.03229178115725517, 0.006588542368263006, -0.006340567953884602, 0.006736638490110636, -0.012743129394948483, 0.055077873170375824, -0.03777477145195007, -0.014699372462928295, 0.011744343675673008, -0.017619960010051727, -0.01923179440200329, -0.12024004012346268, -0.029674271121621132, 0.03807784989476204, 0.006406005937606096, -0.005345226265490055, 0.007246363442391157, 0.003425146685913205, 0.01286022923886776, -0.004026140086352825, 0.022565672174096107, -0.030555959790945053, -0.0068985107354819775, -0.007707871496677399, -0.004701181780546904, 0.008396689780056477, -0.004849277436733246, 0.009815653786063194, -0.018336331471800804, -0.015677493065595627, 0.026547038927674294, 0.013576599769294262, -0.027208304032683372, 0.01985172927379608, 0.0040846895426511765, -0.019011372700333595, -0.024687230587005615, -0.035653211176395416, 0.009753660298883915, 0.0017909263260662556, 0.004949156194925308, 0.03482662886381149, -0.01052513625472784, 0.027428725734353065, -0.013707474805414677, -0.013397506438195705, -0.017675066366791725, -0.004714957904070616, -0.028158873319625854, 0.03488173335790634, -0.01695869490504265, 0.0011994040105491877, 0.022166157141327858, 0.0018649742705747485, -0.01202675886452198, -0.0011994040105491877, -0.005551871843636036, -0.01836388371884823, 0.04262404888868332, 0.015415742993354797, -0.007487449795007706, -0.026808788999915123, -0.03694818913936615, -0.005210906732827425, -0.03171317279338837, 0.04003409296274185, 0.008844421245157719, 0.014685596339404583, 0.014437621459364891, -0.01744086667895317, 0.003988255281001329, -0.011813226155936718, -0.0035542999394237995, -0.026037313044071198, 0.01145504042506218, 0.008238261565566063, 0.006781411357223988, -0.0255826935172081, 0.0196450836956501, 0.01591169275343418, 0.0043464405462145805, -0.013438835740089417, 0.014685596339404583, -0.021491115912795067, -0.004752843175083399, -0.026423051953315735, -0.008314031176269054, -0.007225698791444302, -0.00848623551428318, 0.0007211061893031001, 0.014906018041074276, -0.002486632438376546, -0.0038436034228652716, 0.002564124297350645, -0.004453207366168499, 0.004990485031157732, 0.0029533065389841795, 0.009388587437570095, 0.003740280866622925, 0.009732996113598347, -0.04102598875761032, 0.0030927921179682016, 0.03080393373966217, 0.019286898896098137, 0.00040489571983926, -0.008362248539924622, 0.019011372700333595, -0.007969622500240803, -0.0125640369951725, 0.0025314055383205414, -0.0025365715846419334, -0.002493520500138402, -0.005493322387337685, -0.03876666724681854, 0.0011468817247077823, 0.0041225748136639595, 0.01695869490504265, 0.010697340592741966, -0.028351740911602974, -0.006051264703273773, -0.006839960813522339, -0.002252434380352497, -0.0038332713302224874, -0.013500829227268696, -0.0004311569209676236, -0.027897121384739876, -0.010683564469218254, -0.027966003865003586, -0.029426297172904015, 0.005600088741630316, -0.006633315701037645, 0.011758120730519295, 0.012178299017250538, -0.0015153991989791393, 0.009815653786063194, 0.008761762641370296, 0.02151866815984249, 0.0012080143205821514, 0.028089990839362144, -0.02738739736378193, 0.03366941586136818, -0.0062028043903410435, -0.01803325116634369, 0.02873747982084751, 0.0016256100498139858, 0.008665327914059162, -0.0033941499423235655, -0.0075287786312401295, -0.03259485960006714, -0.016614286229014397, 0.014809583313763142, 0.026767460629343987, 0.009912088513374329, -0.009126836434006691, -0.021945735439658165, 0.01622854731976986, -0.030831485986709595, -0.029646718874573708, -0.020402783527970314, -0.025816891342401505, -0.025100521743297577, 0.008906414732336998, -0.005941053852438927, 0.045324213802814484, 0.00016628492448944598, -0.027042988687753677, -0.0220421701669693, -0.004318887833505869, -0.019025148823857307, -0.000953151669818908, 0.02926098182797432, -0.0034079262986779213, 0.002713942201808095, 0.038711562752723694, 0.012839564122259617, 0.011689238250255585, -0.015126439742743969, 0.038656458258628845, 0.00020782926003448665, -0.06711840629577637, -0.00586183974519372, 0.004959488287568092, -0.020058374851942062, -0.003077293746173382, -0.01596679724752903, 0.028145097196102142, 0.011014197021722794, 0.017358209937810898, -0.00232303817756474, 0.0037575012538582087, -0.016256101429462433, -0.01429985836148262, 0.030252879485487938, 0.024494361132383347, -0.010408037342131138, -0.02264833077788353, 0.008086721412837505, 0.028902795165777206, -0.003878044430166483, -0.011000420898199081, 0.02572045847773552, 0.01943843998014927, 0.009808765724301338, -0.018666964024305344, 0.0044325427152216434, -0.0008489679894410074, 0.006819296628236771, -0.0007830997928977013, 0.006195916328579187, -0.022538119927048683, 0.013232190161943436, 0.02370910905301571, 0.02417750656604767, 0.017606183886528015, 0.007645878009498119, -0.020003270357847214, 0.00365762272849679, -0.005204018671065569, 0.005145469214767218, -0.028682373464107513, -0.022799869999289513, 0.025568917393684387, 0.0275251604616642, -0.0032615524251013994, -0.03099680319428444, -0.004666741006076336, 0.015925468876957893, -0.01624232530593872, 0.012853340245783329, 0.003860824042931199, -0.0015722266398370266, -0.030170220881700516, -0.0012872283114120364, 0.010545801371335983, 0.012929110787808895, 0.01843276433646679, -0.025334719568490982, 0.027208304032683372, -0.007136152591556311, 0.02511429786682129, -0.019259346649050713, 0.011103743687272072, -0.004911270923912525, -0.008630887605249882, -0.015567283146083355, 0.006092593539506197, -0.01472692470997572, 0.007446120493113995, -0.008575782179832458, -0.011096855625510216, 0.031217224895954132, -0.015718823298811913, 0.06965325772762299, 0.024149952456355095, -0.02056810073554516, 0.003271884750574827, -0.010470030829310417, 0.0021783863194286823, 0.0014361852081492543, 0.017923040315508842, -0.005148913245648146, -0.019273122772574425, 0.03309080749750137, -0.021201813593506813, -0.007391015067696571, -0.0020974501967430115, -0.0054485490545630455, 0.0055449833162128925, -0.013638593256473541, 0.012908445671200752, -0.0032667184714227915, 0.005637974012643099, 0.017055129632353783, -0.001763373613357544, 0.0026691691018640995, -0.004208676982671022, -0.032098911702632904, -0.008741098456084728, 0.02150489203631878, 0.033504098653793335, -0.008024727925658226, -0.011806337162852287, 0.020223692059516907, -0.0007731980294920504, -0.023695332929491997, -0.011234618723392487, -0.019521096721291542, 0.011331053450703621, -0.014988675713539124, -0.02731851488351822, 0.0050042616203427315, 0.01584281027317047, 0.00031836298876442015, 0.021436011418700218, -0.032236672937870026, -0.02191818319261074, 0.0005941053968854249, 0.002121558878570795, 0.002791434293612838, -0.024218834936618805, -0.005272900685667992], "1c72ea81-28e2-4e4a-ba15-7ae788d5c584": [0.002165265381336212, 0.001662094029597938, 0.004498540423810482, -0.022300690412521362, 0.02252013236284256, 0.01261099986732006, -0.010965191759169102, -0.03003598563373089, 0.0014323667855933309, -0.03384877368807793, 0.003427051240578294, 0.02736154943704605, -0.002571574179455638, -0.011109200306236744, -0.0036962092854082584, 0.01049888040870428, 0.0340956449508667, 0.018803350627422333, -0.0011957819806411862, 0.0010303440503776073, -0.020682314410805702, -0.012844155542552471, -0.01669123023748398, -0.00011550654016900808, -0.026250628754496574, -0.01167837530374527, 0.02481054700911045, -0.017761005088686943, -0.019009076058864594, 0.02058630809187889, 0.021546361967921257, -0.014195089228451252, -0.02548258565366268, -0.00962111633270979, -0.016238633543252945, 0.013118457049131393, 0.012556139379739761, 0.0023692769464105368, 0.01991426944732666, -0.00885993055999279, 0.015347154811024666, 0.027567274868488312, 0.012151544913649559, -0.007577572017908096, -0.006590087432414293, 0.023521332070231438, -0.007701007183641195, -0.0023864207323640585, -0.024837978184223175, 0.012021251954138279, -6.959322490729392e-05, -0.011013194918632507, -0.01896793022751808, 0.006236924324184656, 0.0011049197055399418, 0.001976683270186186, 0.008571913465857506, 0.005081430543214083, 0.013228177092969418, -0.012103542685508728, -0.002081260783597827, -0.0034801969304680824, -0.009209664538502693, -0.0015609455294907093, -0.012151544913649559, -0.024947697296738625, -0.013139029033482075, -0.003319045063108206, -0.017472989857196808, -0.010293154045939445, 0.04002055153250694, 0.0312703400850296, -0.0007967593846842647, -0.007495281286537647, 0.001629520789720118, -0.018254747614264488, -0.025057418271899223, -0.033601902425289154, 0.0032281826715916395, 0.0037476406432688236, 0.027169538661837578, -0.012343555688858032, -0.01793930120766163, 0.006062057334929705, 0.015882041305303574, 0.029377663508057594, 0.012590426951646805, -0.0021995531860738993, -0.010265723802149296, -0.014537965878844261, 0.02168351225554943, 0.00975140929222107, 0.03173665329813957, 0.03132520243525505, 0.021093765273690224, 0.022849293425679207, 0.00380592979490757, 0.0009274811018258333, -0.004443679936230183, -0.010320584289729595, -0.006730666849762201, -0.002852733014151454, -0.011061197146773338, -0.011376643553376198, 0.006452936679124832, -0.021038904786109924, 0.013077312149107456, -0.000801473914179951, -0.004333959426730871, 0.01870734430849552, -0.01798044703900814, 0.030612017959356308, -0.005914620589464903, -0.009065655991435051, 0.00348705449141562, -0.0005147434421814978, 0.028499899432063103, -0.028966210782527924, -0.00012354270438663661, -0.021916668862104416, -0.00591804925352335, -0.005352302920073271, 0.05044399946928024, -0.0029350232798606157, 0.019228516146540642, 0.012110400013625622, 0.0003353761276230216, -0.02408364973962307, 0.0039670816622674465, -0.004577402025461197, 0.030886320397257805, 0.016855811700224876, 0.024673396721482277, 0.008071313612163067, -0.023535046726465225, 0.009237093850970268, -0.014579110778868198, 0.014318524859845638, -0.0017555279191583395, -0.028856489807367325, 0.007687292527407408, 0.03601575270295143, 0.022136110812425613, -0.013865928165614605, 0.00521515216678381, 0.048661042004823685, -0.006744381971657276, 0.024097364395856857, 0.008633631281554699, -0.007378703448921442, -0.008064456284046173, -0.02054516226053238, -0.035522010177373886, -0.0013072168221697211, 0.0023418469354510307, 0.012240692973136902, 0.010601743124425411, 0.016074052080512047, -0.019146226346492767, 0.015045423060655594, 0.003072173800319433, 0.039115358144044876, -0.005475738551467657, -0.002103547565639019, -0.005033427849411964, 0.03157207369804382, 0.009497680701315403, -0.02413850836455822, -0.02659350447356701, -0.019324522465467453, 0.0019663970451802015, 0.03768898919224739, -0.010354871861636639, 0.020517732948064804, 0.0020984045695513487, 0.016389498487114906, -0.003497340716421604, 0.0036036325618624687, -0.006442650221288204, -0.022547561675310135, 0.032916147261857986, -0.023370465263724327, -0.009737693704664707, 0.006812957115471363, -0.012151544913649559, -0.008338757790625095, 0.03738725930452347, 0.035686589777469635, 0.0197634045034647, -0.00284758978523314, 0.00925080943852663, 0.005996910855174065, -0.022506417706608772, -0.00694667873904109, -0.6280401349067688, 0.0010209149913862348, 0.0074129910208284855, -0.004724838770925999, 0.006394647527486086, 0.014757406897842884, 0.006730666849762201, -0.00956625584512949, -0.00217555183917284, 0.036043182015419006, 0.005647176876664162, -0.004669978749006987, -0.008510195650160313, -0.013049881905317307, -0.012693289667367935, -0.027183253318071365, -0.0035590585321187973, -0.02272585779428482, -0.0046734074130654335, -0.0028955924790352583, -0.02188923954963684, 0.019255947321653366, 0.0039670816622674465, 0.013598483987152576, -0.009861129336059093, -0.0236173365265131, 0.018433043733239174, -0.00930566992610693, -0.0019783976022154093, 0.03947195038199425, -0.037826139479875565, 0.02784157544374466, 0.017061537131667137, -0.009360529482364655, 0.04013027250766754, -0.028170738369226456, -0.013132171705365181, 0.015059137716889381, 0.006727237720042467, 0.02871933951973915, -0.03220296651124954, -0.011424646712839603, 0.019105082377791405, 0.02523571439087391, -0.01855647936463356, -0.008208464831113815, 0.00912051647901535, 0.0029024500399827957, -0.010999479331076145, -0.00925080943852663, 0.0024892836809158325, -0.007193550001829863, -0.012864728458225727, 0.0077627249993383884, -0.00015343725681304932, -0.01144521962851286, 0.01600547693669796, -0.01141778938472271, 0.0071318321861326694, 0.0009591971756890416, 0.0037099244073033333, 0.00572260981425643, -0.018076451495289803, -0.04649405926465988, -0.03220296651124954, 0.015264864079654217, -0.02935023233294487, -0.011884101666510105, -0.005756897386163473, -0.019324522465467453, 0.016485504806041718, -0.012268123216927052, -0.004412821028381586, 0.004049371927976608, 0.01456539612263441, 0.020558878779411316, 0.04366875812411308, -0.024687111377716064, -0.006531798280775547, 0.02090175449848175, -0.006175206508487463, -0.0045328279957175255, -0.021752089262008667, -0.018830779939889908, 0.04432708024978638, 0.019434243440628052, -0.005191151052713394, -0.009943420067429543, -0.003613918786868453, -0.00371335307136178, -0.0027327260468155146, 0.027649564668536186, -0.013728776946663857, -0.028225596994161606, 0.00335676153190434, 0.05296757072210312, 0.0038127873558551073, 0.012919588945806026, -0.000833618629258126, -0.02924051322042942, -0.02659350447356701, -0.029624534770846367, 0.021601222455501556, -0.0020778318867087364, 0.016238633543252945, 0.012178975157439709, -0.01548430509865284, -0.012274980545043945, 0.014263664372265339, -0.012460133992135525, -0.017184972763061523, -0.010156003758311272, -0.017596425488591194, -0.01793930120766163, 0.01423623412847519, -0.027018671855330467, -0.005640319082885981, 0.020819464698433876, 0.005040285177528858, -0.002458424773067236, -0.013091026805341244, -0.021299490705132484, 0.020462872460484505, 0.008208464831113815, 0.016142627224326134, -0.0013843640917912126, 0.007227837573736906, 0.0008764782105572522, 0.003874504938721657, -0.012165260501205921, -0.009682834148406982, -0.005804900079965591, -6.4892064983723685e-06, -0.006336358841508627, 0.052199527621269226, 0.012494421564042568, 0.01693810150027275, -0.01881706528365612, 0.005276869982481003, -0.05373561382293701, 0.015594025142490864, 0.010279439389705658, 0.023603621870279312, -0.020092565566301346, 0.005959194619208574, -0.019886840134859085, -0.00021311920136213303, -0.0018018162809312344, 0.011664660647511482, -0.003891648957505822, -0.012521851807832718, -0.0069878241047263145, 0.0018858209950849414, 0.022218400612473488, -0.009689691476523876, -0.00489970576018095, -0.004152235109359026, -0.03039257787168026, -0.02002399042248726, -0.021189771592617035, -0.008667918853461742, -0.00237099127843976, -0.00966911856085062, -0.006017483305186033, -0.010197148658335209, -0.00930566992610693, -0.01522371917963028, 0.020312007516622543, -0.01725354790687561, -0.021203486248850822, -0.01117777545005083, -0.01632092334330082, 0.005074572749435902, 0.01872105896472931, 0.001716097118332982, 0.017596425488591194, -0.0032830429263412952, -0.01287158578634262, -0.01793930120766163, -0.004145377315580845, 0.017870726063847542, 0.019612539559602737, -0.006168349180370569, -0.008955935947597027, 0.04764612391591072, 0.012418989092111588, 0.022218400612473488, 0.004896277096122503, -0.03275156766176224, 0.005544313695281744, -0.008482766337692738, 0.013886500149965286, -0.023589907214045525, -0.019434243440628052, -0.014702546410262585, -0.015854611992836, -0.01777471974492073, 0.0006866102921776474, 0.01030001137405634, 0.0315995030105114, 0.013536766171455383, 0.023836778476834297, -0.012659002095460892, -0.0008126174216158688, 0.010800611227750778, -0.019351951777935028, 0.013125314377248287, -0.018542764708399773, 0.007172977551817894, 0.01751413382589817, -0.010642888024449348, -0.01360534131526947, 0.007371845655143261, -0.023219600319862366, -0.004985425155609846, 0.0195439625531435, 0.022492701187729836, 0.006809528451412916, 0.006984395440667868, -0.0039122216403484344, 0.014825982041656971, 0.0078724455088377, 0.024837978184223175, -0.006823243573307991, 0.012336698360741138, 0.009579970501363277, 0.018295893445611, 0.02888392098248005, 0.0006613231380470097, -0.01771986111998558, -0.017527848482131958, 0.025578590109944344, -0.006164920516312122, 0.00896279327571392, 0.04325730726122856, 0.0053694467060267925, 0.031983524560928345, 0.007159262429922819, 0.03755183890461922, 0.009634830988943577, 0.01861133985221386, -0.004903134889900684, 0.0220949649810791, -0.03612547367811203, 0.021820664405822754, 0.001851533423177898, 0.018899355083703995, 0.008037026040256023, -0.024563675746321678, 0.00977198127657175, -0.007879302836954594, 0.00201439973898232, -0.019269661977887154, -0.0009617687319405377, 0.01798044703900814, -0.027430124580860138, 0.012425846420228481, 0.008969650603830814, 0.006524940952658653, 0.024892836809158325, 0.02038058266043663, -0.013797352090477943, -0.00012686432455666363, -0.01896793022751808, 0.02633291855454445, -0.020654883235692978, -0.010807468555867672, -0.016567794606089592, -0.012686432339251041, -0.0046734074130654335, 0.011870386078953743, -0.012439561076462269, 0.007502139080315828, -0.005132861901074648, 0.004721410106867552, -0.009710264392197132, -0.00995713472366333, -0.009024511091411114, 0.0008404761319980025, 0.024796832352876663, -0.023068733513355255, -0.022286975756287575, 0.019585108384490013, 0.016718661412596703, 0.0075638568960130215, -0.0013629342429339886, -0.014647685922682285, -0.0068369582295417786, 0.005359160713851452, 0.004426536150276661, 0.00037780709681101143, -0.017802150920033455, -0.0005361732328310609, -0.014332239516079426, 0.001101490925066173, 0.015100283548235893, 0.035110559314489365, -0.01342704612761736, -0.034479666501283646, 0.013571053743362427, 0.03538485988974571, 0.012343555688858032, -0.014798551797866821, -0.025345435366034508, 0.01241213083267212, 0.0007487566908821464, -0.02690895088016987, -0.01980455033481121, -0.016979247331619263, -0.019009076058864594, -0.004841417074203491, -0.015100283548235893, -0.013865928165614605, -0.017075251787900925, -0.0006463223253376782, -0.002454996109008789, -0.0005370303988456726, -0.0014040794922038913, 0.008229036815464497, 0.01693810150027275, -0.0022184113040566444, -0.012535566464066505, 0.016279779374599457, 0.014798551797866821, 0.06429620832204819, -0.004615118261426687, 0.0015198002802208066, 0.012247550301253796, -0.015443160198628902, -0.01667751558125019, -0.02882906049489975, -0.01337218564003706, 0.04262641444802284, 0.01379049476236105, -0.020161140710115433, 0.009456534869968891, 0.006860959809273481, -0.01511399820446968, 0.012556139379739761, -0.0008846215205267072, -0.000563174718990922, -0.009161661379039288, -0.01459282636642456, 0.023013874888420105, 0.004690551199018955, -0.0029761684127151966, 0.03327273949980736, 0.02022971585392952, 0.03467167541384697, 0.024933982640504837, 0.03587860241532326, 0.011369786225259304, 0.010485164821147919, -0.024069933220744133, -0.0197634045034647, 0.010759466327726841, 0.00860620103776455, 0.020298290997743607, -0.029158221557736397, 0.022657282650470734, 0.004419678822159767, -0.011890958994626999, -0.011541225016117096, -0.012192689813673496, -0.013152744621038437, 0.025921467691659927, -0.006178635638207197, -0.010533167980611324, 0.025729456916451454, -0.021176055073738098, -0.010622316040098667, 0.0339859239757061, -0.009504538029432297, -0.01165094505995512, 0.01366020180284977, 0.02877420000731945, -0.014249949716031551, 0.0062917848117649555, 0.008489623665809631, -0.011602942831814289, -0.018474187701940536, -0.01803530752658844, -0.022876722738146782, -0.020819464698433876, -0.02424822933971882, -0.021285776048898697, -0.010053140111267567, -0.02935023233294487, -0.02648378536105156, -0.03571402281522751, -0.009291954338550568, -0.017857011407613754, -0.01430481020361185, -0.004957994911819696, -0.018899355083703995, -0.03242240846157074, -0.025372864678502083, 0.011349214240908623, 0.030831459909677505, 0.016650086268782616, 0.0005031713517382741, 0.004320244770497084, 0.005904334131628275, 0.014510535635054111, 0.0022372694220393896, -0.010615457780659199, 0.007728437427431345, -0.0235076155513525, 0.01745927333831787, -0.014825982041656971, -0.005458594765514135, 0.006514654494822025, -0.005414020735770464, 0.02252013236284256, 0.004827701952308416, -0.02544143982231617, 0.02199895866215229, 0.003651635255664587, 0.021176055073738098, 0.0011580655118450522, 0.0011897815857082605, -0.0010226293234154582, 0.031818944960832596, -0.04144691675901413, 0.020504018291831017, -0.019722258672118187, -0.01719868741929531, -0.02173837274312973, 0.01896793022751808, 0.017692429944872856, -0.014757406897842884, -0.0035144847352057695, -0.017088966444134712, -0.023644767701625824, 0.005026570055633783, -0.012220120057463646, -0.023864207789301872, -0.014702546410262585, -0.016183773055672646, -0.018995361402630806, 0.012556139379739761, 0.026607220992445946, 0.0030927464831620455, -0.006812957115471363, 0.002753298729658127, -0.00933310016989708, 0.026470070704817772, 0.011164060793817043, 0.0039122216403484344, 0.009531968273222446, 0.01120520569384098, -0.0050299991853535175, -0.03310815989971161, 0.006675806362181902, 0.009847414679825306, 0.0031458924058824778, -0.021518932655453682, -0.02684037573635578, -0.01689695566892624, -0.019790833815932274, -0.014085369184613228, 0.0011023480910807848, -0.0013766493648290634, -0.003370476420968771, -0.0446288138628006, 0.017802150920033455, 0.018638769164681435, -0.005712323356419802, 0.01525114942342043, -0.03028285689651966, -0.02575688622891903, -0.01302930898964405, 0.00015568739036098123, 0.02695009671151638, -0.025318004190921783, -0.012034966610372066, -0.04421735927462578, -0.02205381914973259, -0.01689695566892624, -0.01167837530374527, -0.0012789295287802815, 0.00611348869279027, 0.03683865815401077, 0.03914278745651245, 0.02027086168527603, 0.014798551797866821, 0.011698948219418526, 0.020106280222535133, -0.012405273504555225, 0.0021481215953826904, -0.012089827097952366, -0.025510014966130257, -0.004148806445300579, -0.016855811700224876, -0.009874844923615456, -0.008304470218718052, -0.014009935781359673, -0.01872105896472931, -0.00217555183917284, -0.009682834148406982, 0.007049541920423508, -0.004145377315580845, -0.03826502338051796, -0.04849645867943764, 0.014647685922682285, 0.030886320397257805, -0.003175036981701851, 0.010409732349216938, -0.020216001197695732, -0.012844155542552471, 0.009861129336059093, 0.003932794090360403, 0.03900563716888428, -0.007776440121233463, 0.03867647424340248, 0.006233495660126209, 0.004162521567195654, 0.022959014400839806, 0.024577390402555466, -0.019159941002726555, -0.022863008081912994, -0.041885800659656525, -0.01292644627392292, -0.001009771483950317, 0.0275809895247221, 0.012418989092111588, -0.013934503309428692, 0.006840387359261513, 0.004484825301915407, 0.016403215005993843, -0.02553744614124298, -0.021724658086895943, 0.007392418570816517, -0.024645967409014702, -0.012576712295413017, -0.030941180884838104, -0.02011999674141407, 0.018748490139842033, -0.019214801490306854, -0.0043236734345555305, -0.0019612538162618876, 0.015552880242466927, -0.025784317404031754, -0.013008736073970795, 0.015936901792883873, -0.014537965878844261, 0.018433043733239174, 0.0077695827931165695, 0.014976847916841507, 0.009648546576499939, 0.007166119758039713, -0.020888039842247963, -0.017061537131667137, 0.0019201086834073067, 0.003994511906057596, 0.008249609731137753, 0.045424286276102066, -0.020037705078721046, -0.004519112873822451, 0.003524770960211754, 0.0035384860821068287, -0.006106631364673376, -0.048249587416648865, 0.027539845556020737, 0.0003392334911040962, 0.0029024500399827957, -0.032148104161024094, -0.035165417939424515, -0.023795632645487785, 0.01621120423078537, 0.002328131813555956, 0.013310467824339867, 0.008469050750136375, 0.00761185958981514, -0.014921987429261208, 0.03456195816397667, -0.026264343410730362, 0.02043544314801693, -0.003610490122810006, 0.020613737404346466, -0.008757066912949085, -0.009634830988943577, 0.001624377677217126, -0.010080570355057716, 0.01626606285572052, 0.020709743723273277, -0.015031708404421806, -0.0013706489698961377, 0.01595061644911766, 0.013694489374756813, 0.0007997595821507275, -0.009058798663318157, -0.020668597891926765, 0.02976168505847454, 0.00021783375996164978, -0.026236914098262787, 0.0020418299827724695, -0.011040625162422657, 0.020421726629137993, -0.025770600885152817, -0.013351612724363804, -0.011513794772326946, -0.010450877249240875, 0.017541565001010895, -0.007783297915011644, -0.006127203814685345, -0.010793753899633884, 0.002785871969535947, -0.0022098394110798836, -0.017898155376315117, -0.02449510060250759, -0.004138519987463951, 0.018158741295337677, -0.030474867671728134, -0.005664320662617683, -0.00207954621873796, -0.02136806584894657, 0.00761185958981514, -0.010197148658335209, -0.007166119758039713, -0.0007560427766293287, 0.024069933220744133, -0.018487904220819473, 0.020668597891926765, 0.019228516146540642, 0.022945299744606018, -0.03338246047496796, 0.026099763810634613, -0.006003768648952246, 0.008949077688157558, 0.013941360637545586, 0.004909992218017578, -0.0339859239757061, -0.027745570987462997, 0.017075251787900925, 0.0023161310236901045, 0.01725354790687561, 0.008949077688157558, 0.017226118594408035, 0.016032908111810684, -0.005335159134119749, -0.02830788865685463, -0.005599174182862043, -0.00017315265722572803, -0.006326072383671999, 0.018433043733239174, 0.014071653597056866, -0.012919588945806026, 0.009367387741804123, -0.004114518407732248, -0.0016723803710192442, -0.005791184958070517, -0.009106800891458988, -0.024385379627346992, -0.02324702963232994, -0.0063603599555790424, 0.008853072300553322, 0.0015420872950926423, -0.027649564668536186, -0.04226982221007347, -0.023795632645487785, 0.030474867671728134, -0.005438022315502167, 0.012062396854162216, 0.022067535668611526, -0.021285776048898697, -0.02413850836455822, 0.011020052246749401, -0.00946339312940836, -0.05019712820649147, -0.014249949716031551, -0.010368586517870426, -0.030200567096471786, -0.008400475606322289, -0.0007813299307599664, 0.029597103595733643, 0.013715062290430069, -0.01606033742427826, -0.029158221557736397, -0.008901075460016727, -0.03143492341041565, -0.0053797331638634205, -0.02002399042248726, 0.022945299744606018, 0.02454996109008789, 0.03543972223997116, 0.006994681432843208, 0.025619735941290855, -0.0016080910572782159, 0.014825982041656971, -0.04468367248773575, -0.013907073065638542, -0.012370985932648182, -0.011513794772326946, 0.02330189011991024, -0.03220296651124954, -0.04992282763123512, -0.011973248794674873, 0.013913930393755436, -0.009394817985594273, 0.004484825301915407, 0.013941360637545586, 0.007879302836954594, -0.007303270511329174, 0.0038025008980184793, -0.009977707639336586, 0.020243432372808456, 0.013139029033482075, 0.007810727693140507, -0.019516533240675926, 0.0183507539331913, -0.0027824433054775, 0.004615118261426687, -0.018021591007709503, 0.009134231135249138, 0.017472989857196808, -0.016567794606089592, 0.00045816879719495773, -0.016224918887019157, -0.010910332202911377, -0.030996039509773254, -0.004080230835825205, -0.014044223353266716, 0.005355731584131718, 0.00624035345390439, 0.041254907846450806, 0.005393448285758495, -2.8394464607117698e-05, -0.01295387651771307, 0.010649745352566242, 0.002539000939577818, -0.00515000568702817, 0.023754486814141273, -0.038182731717824936, -0.028582189232110977, -0.011945819482207298, 0.020558878779411316, -0.0039053638465702534, -0.004937422461807728, -0.017692429944872856, -0.0070563992485404015, -0.03456195816397667, -0.008373045362532139, 0.018021591007709503, 0.0012060683220624924, 0.01315960194915533, -0.009998280555009842, 0.016979247331619263, -0.023644767701625824, -0.011170918121933937, 0.006154634058475494, -0.031297773122787476, -0.013523051515221596, -0.0029487384017556906, 0.014606541022658348, -0.04111775755882263, -0.007577572017908096, 0.027978725731372833, -0.008750209584832191, 0.0015720890369266272, 0.20254403352737427, 0.0037202106323093176, 0.005132861901074648, 0.048030149191617966, 0.016567794606089592, -0.01488084252923727, 0.005897476803511381, 0.0078175850212574, 0.012172117829322815, 0.017857011407613754, 0.01373563427478075, 0.004162521567195654, -0.027869006618857384, -0.004944279789924622, 0.007927305996418, -0.01514142844825983, -0.036454636603593826, -0.012521851807832718, -0.014633971266448498, 0.010636030696332455, 0.011253208853304386, -0.0017846724949777126, -0.010718321427702904, 0.0034527669195085764, 0.024124793708324432, 0.014661401510238647, -0.009518252685666084, 0.020366868004202843, 0.01809016615152359, 0.009346814826130867, -0.019557679072022438, -0.006607231218367815, 0.02241041138768196, -0.008393618278205395, -0.01730840839445591, 0.0013552195159718394, 0.01844675838947296, -0.01261099986732006, 0.011513794772326946, 0.03683865815401077, 0.002389849629253149, -0.012501278892159462, 0.007570714224129915, -0.009319384582340717, 0.023754486814141273, -0.012418989092111588, 0.0060860589146614075, -0.012974448502063751, 0.015703745186328888, 0.037140388041734695, -0.01043030433356762, 0.008530768565833569, 0.012117257341742516, 0.019434243440628052, -0.020476587116718292, -0.005883761681616306, -0.014140228740870953, 0.00011250637180637568, -0.025002557784318924, 0.021930383518338203, -0.012473848648369312, 0.004817415494471788, -0.002530429046601057, 0.023905353620648384, -0.026922667399048805, 0.020709743723273277, -0.021395497024059296, 0.023644767701625824, -0.00319903832860291, 0.0008721922058612108, -0.01542944461107254, -0.010464591905474663, -0.022136110812425613, -0.010930904187262058, -0.012391558848321438, -0.015868326649069786, 0.008743352256715298, 0.04471110180020332, 0.04457395151257515, 0.019777119159698486, 0.009758266620337963, 0.0014246520586311817, -0.02267099730670452, -0.006809528451412916, 0.007406133692711592, -0.014579110778868198, 0.03842960298061371, -0.015360869467258453, 0.007502139080315828, -0.0338762030005455, -0.008496480993926525, 0.005564886610955, -0.0220949649810791, 0.009394817985594273, -0.008729636669158936, -0.008283897303044796, 0.0014486534055322409, 0.022300690412521362, 0.0014117942191660404, -0.0049477084539830685, -0.026127193123102188, 0.03428765386343002, 0.021724658086895943, 0.02987140603363514, -0.018789635971188545, 0.0019201086834073067, -0.0157448910176754, 0.02210867963731289, 0.0031836088746786118, 0.013550481759011745, -0.018007876351475716, -0.02981654554605484, 0.013845355249941349, -0.0007701864815317094, 0.012364128604531288, 0.020051421597599983, 0.017280979081988335, 0.00959368608891964, -0.006758096627891064, -0.0010003423085436225, 0.020819464698433876, -0.009573113173246384, -0.00948396511375904, 0.0006223209202289581, -0.02194410003721714, -0.02471454255282879, -0.01209668442606926, 0.00742670614272356, -0.025921467691659927, -0.029843974858522415, 0.0072621251456439495, -0.012988164089620113, 0.019228516146540642, -0.015333439223468304, -0.0032367545645684004, -0.0009086228674277663, 0.005835758987814188, -0.01551173534244299, -0.016238633543252945, -0.0006711808382533491, 0.012995021417737007, 0.009902275167405605, 0.011095485650002956, -0.011842955835163593, 0.01394821796566248, -0.00012686432455666363, 0.014140228740870953, 0.010505737736821175, -0.010252009145915508, -0.02049030363559723, 0.013049881905317307, 0.01490827277302742, 0.0017032392788678408, 0.00948396511375904, 0.03744211792945862, -0.022218400612473488, -0.03779871016740799, -0.020682314410805702, 0.0222046859562397, -0.006819814443588257, -0.04002055153250694, -0.006799241993576288, 0.04372361674904823, 0.02242412604391575, -0.032340116798877716, -0.00046331193880178034, -0.17533335089683533, 0.01519628893584013, 0.013283037580549717, 0.00927823968231678, -0.004697408992797136, 0.030831459909677505, 0.015059137716889381, 6.723594560753554e-05, -0.023589907214045525, -0.0035144847352057695, 0.007927305996418, -0.005784327629953623, -0.016430644318461418, -0.02216354012489319, 0.006411791313439608, -0.016087768599390984, -0.016128912568092346, 0.01991426944732666, 0.041419487446546555, -0.01146579161286354, 0.022616136819124222, -0.011568655259907246, 0.006497510708868504, -0.008311327546834946, 0.006315785925835371, 0.020984044298529625, -0.011904673650860786, 0.0369209460914135, 0.0003814501687884331, -0.024152224883437157, -0.01545687485486269, -0.024124793708324432, 0.028280457481741905, 0.01887192577123642, 0.010636030696332455, -0.003751069540157914, 0.009915989823639393, -0.0012635000748559833, -0.01667751558125019, 0.008119316771626472, 0.023864207789301872, 0.010252009145915508, 0.02319216914474964, -0.018995361402630806, 0.018076451495289803, 0.00880507007241249, 0.018021591007709503, 0.0001326503697782755, 0.016128912568092346, -0.0002477283123880625, 0.025866607204079628, -0.01516885869204998, -0.011061197146773338, -0.01762385480105877, 0.01903650537133217, 0.005403734277933836, 0.00758442934602499, 0.026620935648679733, 0.009998280555009842, -0.021395497024059296, -0.008736494928598404, -0.0157997515052557, -0.01165094505995512, 0.0009703406249172986, -0.0020932613406330347, -0.04111775755882263, -0.02106633596122265, 0.020778318867087364, 0.007035826798528433, 0.0065763723105192184, 0.0010011994745582342, -0.0065660858526825905, 0.009922847151756287, -0.0015198002802208066, 0.03091374970972538, 0.004505397751927376, -0.03217553719878197, -0.010478307493031025, 0.02987140603363514, 0.008777639828622341, 0.018049022182822227, 0.008969650603830814, 0.0071386899799108505, -0.001865248428657651, -0.027238113805651665, -0.007639289367944002, 0.018474187701940536, 0.008325043134391308, 0.002521857153624296, 0.014016793109476566, 0.014894557185471058, -0.02032572217285633, 0.02970682457089424, -0.0074198488146066666, 0.015552880242466927, 0.008757066912949085, 0.017445558682084084, -0.006329501047730446, 0.015237433835864067, -0.02190295420587063, -0.003991083241999149, 0.03461681678891182, -0.035275138914585114, -0.00020401155052240938, 0.030008556321263313, 0.019790833815932274, 0.029514813795685768, -0.0005323158693499863, 0.028088446706533432, -0.0016449502436444163, -0.031709223985672, 0.012405273504555225, 0.017486704513430595, 0.003127034055069089, -0.02158750779926777, 0.0393073670566082, 0.007008396554738283, -0.01186352875083685, -0.0021206915844231844, -0.01584089733660221, 0.04989539459347725, -0.03971882164478302, -0.02940509282052517, -0.0004127376596443355, 0.008866787888109684, -0.0157997515052557, -0.09896788746118546, -0.018693629652261734, 0.04106289520859718, 0.010162861086428165, -0.006446079351007938, 0.01315960194915533, -0.001624377677217126, 0.021230915561318398, -9.568398672854528e-05, 0.019612539559602737, -0.019365668296813965, -0.005681464448571205, -0.0012909302022308111, -0.0013577911304309964, 0.002468711230903864, -0.01357791107147932, 0.01186352875083685, -0.03906049579381943, -0.00415909243747592, 0.03472653776407242, 0.015936901792883873, -0.020216001197695732, 0.021642368286848068, 0.0069329640828073025, -0.026223199442029, -0.0236721970140934, -0.030420007184147835, 0.006374075077474117, 0.01373563427478075, 0.00975140929222107, 0.03143492341041565, -0.019091365858912468, 0.03788100183010101, -0.02346647158265114, -0.005791184958070517, -0.02162865363061428, -0.013598483987152576, -0.009257666766643524, 0.027484985068440437, -0.018693629652261734, -0.0004187379963696003, 0.016074052080512047, 0.00524944020435214, -0.021052619442343712, -0.006826672237366438, 0.007755867671221495, -0.011602942831814289, 0.031873803585767746, 0.002468711230903864, -0.015100283548235893, -0.017747290432453156, -0.031407490372657776, -0.011136630550026894, -0.03132520243525505, 0.028637049719691277, -0.0014135085511952639, 0.015909472480416298, 0.01872105896472931, -0.02095661498606205, 0.00033001869451254606, -0.03533000126481056, 0.008091886527836323, -0.00935367215424776, 0.0156351700425148, 0.009339957498013973, 0.008551341481506824, -0.00901765376329422, 0.0007427563541568816, 0.0025475728325545788, 0.012583569623529911, -0.007954736240208149, 0.016814665868878365, -0.019297093152999878, 0.000652322662062943, -0.01814502663910389, 0.007920448668301105, -0.00010264866432407871, -0.007152405101805925, -0.006545513402670622, 0.01870734430849552, -0.014839697629213333, -0.012261265888810158, 0.008085029199719429, -0.018103882670402527, 0.010629173368215561, 0.007495281286537647, 0.014140228740870953, -0.00572260981425643, 0.019626254215836525, -0.04717981442809105, 0.009189091622829437, 0.02060002274811268, 0.024783117696642876, -0.0010714891832321882, -0.006411791313439608, 0.012295553460717201, -0.007083829492330551, -0.005225438624620438, 0.009161661379039288, -0.0032864718232303858, 0.0019663970451802015, -0.005540885031223297, -0.048030149191617966, 0.01128749642521143, 0.004697408992797136, 0.008661061525344849, 0.015882041305303574, -0.03607061505317688, -0.0036550641525536776, -0.009449677541851997, 0.0013243607245385647, -0.0025492871645838022, -0.01913251169025898, 0.008126174099743366, -0.015004278160631657, -0.0072621251456439495, -0.04034971445798874, -0.02564716525375843, 0.016444358974695206, 0.0045465431176126, 0.01519628893584013, 0.0054345931857824326, -0.00047874139272607863, 0.016855811700224876, 0.02131320722401142, 0.022945299744606018, 0.010684032924473286, 0.031133191660046577, -0.01851533353328705, 0.026497500017285347, -0.007810727693140507, -0.016663800925016403, 0.030420007184147835, 0.00784501526504755, -0.0011469221208244562, -0.007378703448921442, 0.001031201216392219, -0.029158221557736397, -0.026044903323054314, 0.0025784317404031754, 0.012364128604531288, 0.004933993797749281, -0.005400305613875389, -0.003675636602565646, 0.017596425488591194, -0.02033943682909012, -0.03472653776407242, -0.01974968984723091, -0.025414010509848595, -0.02423451468348503, 0.0017195258988067508, 0.012028109282255173, 0.02711467817425728, -0.004423107486218214, -0.03711295872926712, -0.03264184668660164, -0.005527169909328222, -0.019722258672118187, -0.0062917848117649555, 0.028225596994161606, -0.00573289580643177, 0.0025270001497119665, 0.04789299517869949, 0.010334298945963383, 0.01699296198785305, -0.010540025308728218, 0.03426022455096245, -0.011184632778167725, -0.06105945631861687, -0.00630549993366003, -0.008640489540994167, -0.024412810802459717, -0.0074129910208284855, -0.012960733845829964, 0.02471454255282879, 0.02529057487845421, 0.010025710798799992, -0.003025885671377182, -0.0009669119026511908, -0.024440240114927292, -0.01695181615650654, 0.034479666501283646, 0.0074198488146066666, -0.00015718747454229742, -0.029651964083313942, 0.01175380777567625, 0.01719868741929531, 0.0043991063721477985, -0.017555279657244682, 0.015621455386281013, 0.032504696398973465, 0.008421048521995544, -0.025002557784318924, -0.0009506252245046198, -0.005036856513470411, 0.008969650603830814, 0.0031921807676553726, 0.021546361967921257, -0.016855811700224876, 0.008283897303044796, 0.023123594000935555, 0.02705981768667698, 0.0077695827931165695, 0.009326241910457611, -0.01991426944732666, -0.008297612890601158, 0.0050231413915753365, 0.009730836376547813, -0.019694829359650612, -0.01459282636642456, 0.03895077481865883, 0.009627973660826683, 0.008955935947597027, -0.03373905271291733, 0.0091479467228055, 0.012261265888810158, -0.013838497921824455, -0.0007916162139736116, -0.005427735857665539, -0.02157379314303398, -0.03768898919224739, -0.0066518052481114864, 0.011822383850812912, 0.03590603172779083, 0.01248070690780878, -0.007673577405512333, 0.03340988978743553, -0.01206925418227911, 0.009271382354199886, -0.017075251787900925, 0.009579970501363277, -0.008222179487347603, -0.009682834148406982, -0.014894557185471058, 0.0028355889953672886, -0.004848274402320385, -0.003281328594312072, -0.01991426944732666, -0.0014383671805262566, 0.03044743835926056, -0.01126006618142128, 0.08651461452245712, 0.02866447903215885, -0.024687111377716064, 0.006617517676204443, -0.0156351700425148, 0.026044903323054314, 0.005828901194036007, 0.002184123732149601, 0.00012172117567388341, -0.011438361369073391, 0.0344248041510582, -0.021614937111735344, -0.012192689813673496, 0.0050951456651091576, -0.022808147594332695, -0.004011655692011118, -0.005273441318422556, 0.016128912568092346, -0.001680952263996005, 0.015717461705207825, 0.020572593435645103, 0.0022184113040566444, 0.006072343792766333, -0.0039670816622674465, -0.03338246047496796, -0.0018069593934342265, 0.032449837774038315, 0.035988323390483856, 0.009627973660826683, -0.01001199521124363, 0.023288175463676453, -0.011959534138441086, -0.03404078260064125, -0.004453966394066811, -0.0182410329580307, -0.00036966378684155643, -0.01149322185665369, -0.02423451468348503, 0.016965532675385475, 0.010025710798799992, 0.018734775483608246, 0.03804558143019676, -0.022904153913259506, -0.020833179354667664, 0.021052619442343712, 0.003440766129642725, -0.00771472230553627, -0.016540365293622017, -0.007982166483998299], "d0484d59-55d2-4197-84b6-7d9eed3bc501": [0.004215685185045004, -0.025179170072078705, 0.006893169600516558, -0.05089924484491348, 0.02342122606933117, 0.027180520817637444, -0.008769436739385128, -0.011805271729826927, -0.006828937213867903, -0.0309668630361557, -0.006186611484736204, 0.02939823642373085, -0.012589585036039352, -0.013995939865708351, -0.0077214315533638, 0.005939823109656572, 0.029235964640975, -0.01649763062596321, -0.01198782678693533, -0.0027941169682890177, -0.03229208290576935, 0.002440837910398841, -0.008208246901631355, 0.009093980304896832, -0.023962130770087242, -0.007065583486109972, 0.003955374471843243, -0.01421230286359787, -0.014252870343625546, 0.006372547708451748, 0.021690325811505318, -0.016267744824290276, -0.032048676162958145, -0.007613250520080328, -0.016997968778014183, 0.01776875928044319, 0.0076876250095665455, 0.004587558098137379, 0.024340765550732613, 0.0011266055516898632, 0.01939147710800171, 0.012954696081578732, -0.0012652126606553793, -0.001398748834617436, 0.0038235285319387913, 0.03524002060294151, -0.012805947102606297, -0.012508449144661427, -0.03513183817267418, -0.006937118247151375, -0.010851924307644367, 0.0023647730704396963, -0.010344825685024261, 0.013421228155493736, 0.014699118211865425, -0.019959427416324615, 0.014590936712920666, 0.0024678832851350307, 0.010507097467780113, -0.027045294642448425, 0.011771464720368385, -0.0007940329378470778, -0.006801891606301069, -0.02146044187247753, -0.015172410756349564, -0.018728867173194885, -0.023448271676898003, 0.020730217918753624, -0.018485458567738533, 0.0030983765609562397, 0.04735631123185158, 0.026585524901747704, 0.011075048707425594, -0.021730894222855568, -0.0029090596362948418, -0.016916831955313683, -0.025868825614452362, -0.001962474314495921, -0.0017596344696357846, 0.007430694997310638, 0.025693031027913094, -0.015023661777377129, -0.0062812697142362595, -0.0006330289179459214, 0.02239350415766239, 0.02490871772170067, 0.007613250520080328, 0.008255576714873314, -0.017146717756986618, -0.020081130787730217, -0.009878293611109257, -0.004405002575367689, 0.039432041347026825, 0.01697092317044735, 0.014793776907026768, 0.005040566902607679, 0.03542933613061905, 0.006747801322489977, -0.02617984637618065, -0.012373222969472408, -0.012738334015011787, 0.010277212597429752, -0.018891138955950737, -0.011095331981778145, 0.00873563066124916, -0.02421906217932701, 0.0027518586721271276, -0.027261657640337944, 0.017795804888010025, 0.02622041292488575, -0.027721427381038666, 0.039864763617515564, -0.01752535067498684, -0.02427315153181553, 0.003938470967113972, -0.016524676233530045, 0.03494252264499664, -0.04156861826777458, -0.00818796269595623, -0.013475318439304829, 0.006186611484736204, 0.02554428204894066, 0.04392156004905701, -0.019499657675623894, 0.01875591278076172, 0.004080459009855986, 0.010730220936238766, -0.023488838225603104, 0.002440837910398841, 0.003779579885303974, 0.007444217335432768, 0.005892493762075901, 0.026031097397208214, 0.02215009741485119, -0.007978362031280994, -0.0011697090230882168, -0.02532791905105114, 0.005736983381211758, 0.0010970247676596045, -0.028749149292707443, 0.01887761615216732, 0.030561182647943497, 0.017931031063199043, -0.021839076653122902, 0.00034208071883767843, 0.041298165917396545, 0.006118997931480408, 0.01734955608844757, 0.008938469924032688, 0.00209939107298851, -0.010229882784187794, -0.020689651370048523, -0.021149421110749245, -0.0005303413490764797, -0.007383365649729967, -0.0004534312756732106, 0.015199455432593822, 0.009053412824869156, -0.004340769723057747, 0.01115618459880352, 0.0025456384755671024, 0.037187281996011734, 0.00466531328856945, -0.012488164938986301, 0.007241377606987953, 0.02983096055686474, 0.028857329860329628, -0.023475315421819687, -0.008715346455574036, -0.010838402435183525, 0.006693710573017597, 0.04340769723057747, -0.012434074655175209, 0.0185395497828722, 0.004929005168378353, 0.006774846464395523, -0.012251518666744232, 0.0009372885106131434, -0.021825553849339485, -0.02804597094655037, 0.026828933507204056, -0.01679512858390808, -0.004743068479001522, 0.01376605499535799, 0.003992561716586351, -0.01525354664772749, 0.018296143040060997, 0.015023661777377129, 0.008958754129707813, -0.0017596344696357846, 0.02112237550318241, 0.00893170852214098, -0.018931707367300987, -0.022663956508040428, -0.6352398991584778, -0.0038809997495263815, 0.010534142144024372, -0.0131913423538208, 0.01641649380326271, -0.0018559833988547325, 0.029425282031297684, -0.0054090591147542, 0.0012305609416216612, 0.01756591908633709, 0.017079103738069534, 0.004384718369692564, -0.012109531089663506, -0.014590936712920666, -0.02834346890449524, -0.010513858869671822, -0.01018255390226841, -0.02872210368514061, -0.03524002060294151, -0.005949964746832848, -0.026206890121102333, 0.012968218885362148, -0.004154833499342203, 0.00639621214941144, -0.007214332465082407, -0.03177822008728981, 0.019080456346273422, -0.008106826804578304, 0.0025574706960469484, 0.026653138920664787, -0.03478024899959564, 0.02588234655559063, 0.015010138973593712, -0.012346177361905575, 0.04170384630560875, -0.02689654566347599, -0.006484109442681074, 0.02091953530907631, 0.015226501040160656, 0.02812710776925087, -0.019797155633568764, -0.013414466753602028, 0.018864093348383904, 0.007910748943686485, -0.028911421075463295, 0.00937795639038086, 0.018701821565628052, 0.002880323911085725, -0.0012981741456314921, 0.01105476450175047, 0.009006083011627197, 0.004844488576054573, -0.006139282137155533, -0.009688977152109146, 0.005338065326213837, -0.01768762245774269, 0.026720751076936722, -0.030480047687888145, 0.01058147195726633, -0.004655171651393175, -0.00690331170335412, 0.015456385910511017, -0.008444893173873425, -0.04676131531596184, -0.03978363052010536, 0.017633533105254173, -0.005513859447091818, -0.011122377589344978, -0.00690331170335412, -0.034131161868572235, 0.03291412442922592, -0.007599727716296911, 4.167722363490611e-05, -0.002412102185189724, 0.004868153017014265, 0.018850570544600487, 0.04567950218915939, -0.00846517737954855, 0.0029006078839302063, 0.015091274864971638, 0.013887759298086166, -0.015889110043644905, -0.01776875928044319, -0.0013209936441853642, 0.02977686934173107, 0.01806625723838806, -0.00914131011813879, -0.006291411817073822, -0.0018306283745914698, 0.0014976331731304526, -0.003766057314351201, 0.05070992931723595, -0.01798512041568756, -0.029966186732053757, -0.01734955608844757, 0.05446922406554222, -0.004543609451502562, 0.009317103773355484, -0.027775518596172333, -0.02435428835451603, -0.0309668630361557, -0.011365785263478756, 0.018106825649738312, -0.0008117814431898296, 0.001200134982354939, 0.010277212597429752, -0.012988503091037273, -0.017741713672876358, 0.020554425194859505, -0.022893842309713364, -0.004716023337095976, -0.0032048674765974283, -0.015456385910511017, -0.019932381808757782, 0.007951316423714161, -0.02201486937701702, -0.007897226139903069, 0.02544962242245674, 0.01615956425666809, -0.028316423296928406, -0.013887759298086166, -0.014063553884625435, 0.032481398433446884, 0.014563891105353832, 0.005246787331998348, 0.01117646787315607, 0.004885056521743536, -0.00777552230283618, -0.0001789637899491936, -0.012880321592092514, 0.004043271765112877, -0.004246111493557692, -0.008242053911089897, -0.011548341251909733, 0.036889784038066864, 0.010101418010890484, 0.0170114915817976, -0.0065348194912076, 0.012467880733311176, -0.038539543747901917, -0.0011671734973788261, -0.007194048725068569, 0.021176466718316078, -0.012474642135202885, -0.005131844896823168, -0.032724808901548386, -0.005564569495618343, -0.008607164956629276, -0.0010547664714977145, 0.004661932587623596, -0.013245433568954468, 0.004658551886677742, 0.0034854623954743147, 0.01981067843735218, -0.003833670634776354, -0.013820146210491657, -0.0011553411604836583, -0.03483434021472931, -0.01879647932946682, -0.037403643131256104, -0.019540226086974144, 0.0014900267124176025, -0.0169303547590971, 0.0031389445066452026, -0.01484786719083786, -0.016024338081479073, -0.010250166989862919, 0.00863421056419611, -0.016957400366663933, -0.01037187036126852, -0.008215008303523064, -0.001373393926769495, -0.010601756162941456, 0.012616630643606186, 0.0005447091534733772, 0.0022819468285888433, -0.008985799737274647, -0.018336709588766098, -0.011298172175884247, -0.003061189316213131, 0.00023073017655406147, 0.016605811193585396, -0.008897902444005013, -0.020892489701509476, 0.055091265588998795, 0.01972954347729683, 0.007322513498365879, 0.03529411181807518, -0.0369979627430439, 0.024408379569649696, -0.014374574646353722, 0.009932384826242924, -0.016091950237751007, -0.002320824423804879, -0.008586880750954151, -0.0018289381405338645, -0.009918862022459507, 0.00931034330278635, -0.003159228479489684, 0.010791072621941566, 0.017363078892230988, 0.017714668065309525, 0.007728192955255508, -0.006670046132057905, 0.012745095416903496, -0.02058146893978119, 0.017890462651848793, -0.017795804888010025, -0.0007982588140293956, -0.00012445061292964965, 0.007843135856091976, -0.008688300848007202, 0.012981741689145565, -0.0077214315533638, 0.01837727800011635, 0.029235964640975, 0.013089923188090324, 0.008086543530225754, -0.0011105474550276995, -0.0006114772404544055, 0.0058586872182786465, 0.010588233359158039, 0.022379981353878975, -0.03261662647128105, 0.005111560691148043, 0.02062203735113144, 0.009749828837811947, 0.031886402517557144, 0.011217036284506321, -0.011967543512582779, -0.0014714330900460482, 0.01637592539191246, 0.0031135897152125835, 0.009465853683650494, 0.04827585071325302, 0.0035091270692646503, 0.02235293574631214, -0.002273495076224208, 0.016984445974230766, -0.0006533128907904029, 0.002109532942995429, 0.005253548733890057, 0.030453002080321312, -0.03348207473754883, 0.003074711887165904, 0.008255576714873314, -0.004699119832366705, 0.0020300874020904303, -0.0070317769423127174, 0.004377956967800856, -0.006852601654827595, -0.012001349590718746, -0.0005793609307147563, 0.0016945567913353443, 0.021406350657343864, -0.029046647250652313, 0.014712641015648842, 0.019567271694540977, 0.00707234488800168, 0.029290053993463516, 0.043164290487766266, -0.003654495580121875, 0.00943880807608366, -0.007268423214554787, 0.03821500390768051, -0.012231234461069107, 0.0001483265368733555, -0.020216358825564384, 0.0015770788304507732, -0.006690329872071743, 0.0147396856918931, -0.00720080966129899, -0.00016058144683483988, -0.015158887952566147, -0.011183229275047779, -0.004868153017014265, -0.007126435171812773, 0.00873563066124916, -0.002180526964366436, 0.020554425194859505, -0.010121701285243034, -0.021406350657343864, 0.030480047687888145, 0.017254898324608803, 0.013346852734684944, -0.013847190886735916, -0.014536846429109573, 0.004117646254599094, -0.009303581900894642, 0.002263353206217289, 0.00038898742059245706, -0.0020807974506169558, -0.014090598560869694, -0.008546313270926476, 0.019540226086974144, 0.003407707205042243, 0.04430019482970238, -0.021244078874588013, -0.025314396247267723, 0.0016015885630622506, 0.01521297823637724, 0.011642999947071075, -0.019783632829785347, -0.04519268870353699, 0.019404999911785126, -0.030398910865187645, -0.024678831920027733, -0.02983096055686474, -0.018390800803899765, -0.02371872402727604, 0.01289384439587593, -0.013252194970846176, -0.03564569726586342, -0.013941849581897259, -0.009763351641595364, 0.00604462344199419, -0.0023225147742778063, 0.00460446160286665, 0.025273827835917473, 0.02439485676586628, -0.014334006235003471, -0.009154831990599632, 0.012576062232255936, 0.009479375556111336, 0.08789721131324768, -0.007106151431798935, 0.010567949153482914, 0.021730894222855568, -0.009925623424351215, -0.015753883868455887, -0.01225828006863594, -0.009425285272300243, 0.04776199162006378, 0.021446919068694115, -0.027964835986495018, -0.0029022982344031334, 0.014996616169810295, -0.013887759298086166, 0.019905338063836098, 0.006359024904668331, -0.0075388760305941105, -0.025936437770724297, -0.0025050705298781395, 0.009066935628652573, 0.016862740740180016, -0.0011494250502437353, 0.02540905401110649, 0.02066260576248169, 0.03131845220923424, 0.026031097397208214, 0.03020959533751011, 0.016957400366663933, -0.0023799859918653965, -0.008269098587334156, -0.02515212446451187, 0.008532790467143059, 0.0006042933091521263, 0.011257603764533997, -0.06155509129166603, 0.03743068873882294, -0.0071805259212851524, -0.02070317417383194, 0.00829614419490099, 0.002633535536006093, 0.00015582737978547812, 0.03172413259744644, -0.003336713183671236, -0.00388776115141809, 0.018769435584545135, -0.010216359980404377, -0.018147392198443413, 0.030615273863077164, -0.0202298816293478, -0.009445569477975368, 0.010676130652427673, 0.01824205182492733, -0.01569979451596737, 0.00793103314936161, 0.00708586722612381, -0.004428667016327381, 0.0010108179412782192, -0.020081130787730217, -0.018444892019033432, -0.012096008285880089, -0.029046647250652313, -0.010993912816047668, -0.013725487515330315, -0.015672748908400536, -0.024922238662838936, -0.03194049373269081, -0.01221771165728569, -0.015104797668755054, -0.02893846668303013, 0.005402297712862492, -0.03139958903193474, -0.031237315386533737, -0.01679512858390808, 0.01887761615216732, 0.026315072551369667, 0.011244081892073154, -0.004175117239356041, -0.008843811228871346, 0.01340770535171032, 0.028668012470006943, 0.017836371436715126, -0.004148072097450495, 0.0016658211825415492, -0.03588910773396492, -0.004989856854081154, -0.010067611001431942, -0.00446585426107049, -0.0009017915581353009, 0.007559159770607948, 0.021663282066583633, -0.005476672202348709, -0.022434072569012642, 0.016538197174668312, -0.00018287268176209182, 0.008620687760412693, -0.006457064300775528, -7.088825077516958e-05, -0.009263013489544392, 0.01595672406256199, -0.02842460572719574, 0.02040567435324192, -0.012805947102606297, -0.010804595425724983, -0.005956726148724556, 0.03586206212639809, 0.02405679039657116, -0.018891138955950737, -0.02558484859764576, -0.008789720945060253, -0.008512506261467934, 0.004300201777368784, -0.0005442865658551455, -0.012407029047608376, -0.019837724044919014, 0.011676806025207043, -0.03775523230433464, 0.01334009226411581, 0.01778228208422661, 0.015523998998105526, 0.0023918182123452425, -0.02044624276459217, -0.008329951204359531, 0.03721432760357857, 0.021987825632095337, 0.004976334515959024, 0.014942525885999203, 0.005331303924322128, 0.012542255222797394, -0.018404323607683182, -0.0003756760561373085, -0.011494250036776066, -0.00497295381501317, -0.017511827871203423, -0.014793776907026768, -0.01334009226411581, 0.005868828855454922, -0.010216359980404377, 0.01591615565121174, -0.01491548027843237, 0.006054765544831753, -0.047248128801584244, 0.012413790449500084, 0.02524678222835064, -0.003992561716586351, -0.007937794551253319, -0.027464497834444046, -0.03583501651883125, -0.0006520451861433685, -0.008181202225387096, 0.03648410364985466, -0.01192021369934082, 0.005148747935891151, -0.0230425912886858, -0.008492222987115383, -0.0115212956443429, -0.024205539375543594, -0.0007881168276071548, 0.0018171058036386967, 0.04135225713253021, 0.03139958903193474, -0.0023630827199667692, 0.005344826262444258, 0.017038535326719284, 0.016700468957424164, -0.011311694979667664, 0.004597700200974941, -0.015118319541215897, -0.009783635847270489, 0.009229207411408424, -0.023110205307602882, 0.00829614419490099, -0.002496618777513504, -0.00579107366502285, -0.01998647302389145, -0.0025169027503579855, 0.0007585359853692353, -0.0025591610465198755, 0.0029885051771998405, -0.0338607095181942, -0.033157531172037125, 0.0035125077702105045, 0.03469911217689514, 0.008904663845896721, 0.005290735978633165, -0.016484107822179794, 7.50744629840483e-06, 0.013488841243088245, -0.005939823109656572, 0.03878295421600342, 0.007579443976283073, 0.024597695097327232, -0.0037356314714998007, 0.0022532111033797264, 0.02918187342584133, -0.008329951204359531, 0.0016700469423085451, -0.008681539446115494, -0.03848545625805855, -0.005922919604927301, 0.020716696977615356, 0.03326571360230446, 0.005348206963390112, 0.011359023861587048, 0.015050706453621387, -0.006331979762762785, 0.013860713690519333, -0.015050706453621387, -0.02910073846578598, 0.011433398351073265, -0.02745097503066063, -0.007065583486109972, -0.04110885038971901, -0.014834344387054443, 0.019634883850812912, -0.019242728129029274, -0.019323863089084625, -0.004736307542771101, -0.0004690668429248035, -0.006913453806191683, -0.019783632829785347, 0.0215145330876112, 0.016146041452884674, 0.014022985473275185, 0.012974980287253857, 0.014658549800515175, 0.014996616169810295, 0.0147396856918931, -0.016430016607046127, -0.03267071768641472, 0.0005341445794329047, -0.0003668018034659326, 0.006730897817760706, 0.038539543747901917, -0.01514536514878273, -0.010425961576402187, -0.005395536310970783, 0.003338403534144163, -0.00967545434832573, -0.04262338578701019, 0.025436099618673325, 0.009121025912463665, 0.004134549293667078, -0.025814734399318695, -0.015199455432593822, -0.0028735625091940165, 0.013062877580523491, -0.005050709005445242, 0.010425961576402187, 0.015361727215349674, 0.005246787331998348, -0.004864772316068411, 0.02910073846578598, -0.00943880807608366, 0.029425282031297684, 0.0011189990909770131, 0.01208924688398838, -0.00025798677233979106, -0.004354292526841164, 0.0020199455320835114, -0.023935087025165558, 0.006798510905355215, 0.009242729283869267, -0.02074374072253704, 0.020040564239025116, 0.016227176412940025, 0.01675456017255783, -0.0025963482912629843, -0.00661933608353138, -0.01357673853635788, 0.028992556035518646, 0.015835020691156387, -0.011244081892073154, 0.0019844486378133297, 0.00977687444537878, 0.003739012172445655, -0.039432041347026825, -0.023488838225603104, 0.000965178944170475, -0.004759971983730793, 0.0012947935611009598, -8.784438978182152e-05, -0.018864093348383904, -0.0009871532674878836, 0.0029090596362948418, 0.014712641015648842, -0.004854630678892136, -0.00852602906525135, 0.004232588689774275, 0.0018576737493276596, -0.021271124482154846, -0.0006744420388713479, -0.010723459534347057, -0.0115212956443429, 0.004489519167691469, 0.015943201258778572, 0.001144353998824954, 0.008113588206470013, 0.017836371436715126, -0.029506416991353035, 0.001834009075537324, 0.013177820481359959, 0.01931034028530121, -0.042352933436632156, 0.03221094608306885, -0.009364433586597443, 0.011886407621204853, 0.021176466718316078, 0.01875591278076172, -0.02669370546936989, -0.020054087042808533, 0.004557132255285978, 0.01514536514878273, 0.001525523723103106, 0.0027281942311674356, -0.003995942417532206, 0.004002703819423914, 0.0014190328074619174, -0.015753883868455887, -0.02379985898733139, 0.0012643676018342376, -0.029641643166542053, -0.00990533921867609, 0.02286679670214653, -0.010622039437294006, 0.0042866794392466545, 0.008559836074709892, 0.008262338116765022, -0.0012491545639932156, -0.02643677592277527, -0.012745095416903496, -0.02524678222835064, -0.016511153429746628, -0.020878968760371208, -0.004357673227787018, -0.004489519167691469, -0.04773494601249695, -0.006605813279747963, 0.031210269778966904, -0.010682892054319382, -0.0017748475074768066, 0.03551047295331955, -0.002068964997306466, -0.01018255390226841, 0.002427315339446068, -0.007897226139903069, -0.03721432760357857, -0.0263421181589365, 0.009628125466406345, -0.024462468922138214, 0.0009626434766687453, -0.013610544614493847, 0.03283298760652542, 0.019567271694540977, -0.015645703300833702, -0.03050709329545498, -0.009202161803841591, -0.032102763652801514, -0.002843136666342616, -0.03110208921134472, 0.03337389603257179, 0.015645703300833702, 0.011514534242451191, 0.020081130787730217, 0.025733597576618195, 0.006392831448465586, 0.02469235472381115, -0.024759966880083084, -0.021622713655233383, -0.019188636913895607, -0.021135898306965828, 0.019229205325245857, -0.03626774251461029, -0.026409730315208435, -0.00833671260625124, 0.014428664930164814, -0.012968218885362148, 0.005672750528901815, 0.015726838260889053, 0.0005425962153822184, -0.023231908679008484, 0.0004103278333786875, 0.007119673769921064, 0.0004770959203597158, 0.004266395233571529, 0.009628125466406345, -0.026423253118991852, 0.0037897219881415367, 0.03029073029756546, -0.01221771165728569, -0.016727514564990997, 0.01054090354591608, 0.025422576814889908, -0.011528057046234608, 0.003901283722370863, -0.03310343995690346, -0.0046686939895153046, -0.02584178000688553, -0.018810002133250237, -0.012920890003442764, -0.0054394849576056, -0.02028397098183632, 0.035997286438941956, 0.0077890451066195965, -0.029425282031297684, 0.00021678494522348046, 0.004851249977946281, 0.0058823516592383385, -0.0033874232321977615, 0.02363758720457554, -0.021392827853560448, -0.003417849075049162, -0.015280591323971748, 0.010365108959376812, 0.0013691680505871773, -0.01977011002600193, -0.024070313200354576, 0.0013049355475232005, -0.02608518674969673, -0.013326569460332394, 0.004107504151761532, -0.006910073105245829, 0.006578768137842417, -0.03058822825551033, 0.00874239206314087, -0.03280594199895859, -0.013664635829627514, 0.018769435584545135, -0.03464502468705177, -0.012812708504498005, -5.530551425181329e-05, 0.007444217335432768, -0.025300873443484306, 0.003576740389689803, 0.02842460572719574, -0.012413790449500084, 0.008600403554737568, 0.20673424005508423, 0.006893169600516558, 0.0012009801575914025, 0.03672751039266586, 0.012102769687771797, -0.001489181537181139, -0.003979038912802935, 0.016389448195695877, 0.01495604868978262, 0.01790398545563221, 0.029208919033408165, 0.012461119331419468, -0.021095329895615578, -0.005878970958292484, 0.004736307542771101, -0.0027772136963903904, -0.015064229257404804, -0.0247329231351614, 6.042933091521263e-05, 0.00990533921867609, 0.005158890038728714, -0.002248140051960945, -0.008688300848007202, -0.006707233376801014, 0.007910748943686485, 0.030182549729943275, -0.00488843722268939, 0.019283294677734375, 0.014374574646353722, 0.012001349590718746, -0.02804597094655037, -0.009763351641595364, 0.016619333997368813, -0.009688977152109146, -0.007004731334745884, -0.011298172175884247, 0.00532454252243042, -0.006592290475964546, 0.009202161803841591, 0.01768762245774269, -0.008532790467143059, -0.009553750976920128, 0.020459765568375587, -0.023218385875225067, 0.004144691396504641, 0.008417848497629166, 0.009222446009516716, -0.0026791745331138372, 0.014293438754975796, 0.03042595647275448, -0.004317105282098055, -0.004827585071325302, 0.003377281129360199, -0.0005962642608210444, -0.025611894205212593, -0.022731570526957512, -0.005835022311657667, -0.0040770783089101315, -0.01768762245774269, 0.019269771873950958, -0.012569300830364227, -0.0034854623954743147, -0.0008739011245779693, -0.0003270790330134332, -0.0338607095181942, 0.0023427987471222878, -0.011480728164315224, 0.03743068873882294, 0.020946580916643143, 0.007559159770607948, -0.02300202287733555, -0.020459765568375587, -0.02490871772170067, -0.006798510905355215, -0.008769436739385128, -0.035104792565107346, 0.00471940403804183, 0.03291412442922592, 0.04989856854081154, 0.01185936201363802, 0.014361051842570305, 0.005946584045886993, -0.021987825632095337, 0.00805949792265892, 0.002636916236951947, -0.0247329231351614, 0.02731574885547161, -0.019404999911785126, 0.00535496836528182, 0.0019235966028645635, -0.006071668583899736, -0.012927651405334473, -0.016470585018396378, 0.007924271747469902, -0.00869506224989891, -0.004009465221315622, 0.0030831636395305395, 0.041757937520742416, -0.006676807068288326, -0.007680863607674837, -0.01417173445224762, 0.04246111214160919, 0.038972269743680954, 0.024624740704894066, -0.0171331949532032, 0.007809328846633434, -0.004787017125636339, 0.01671399176120758, -0.00707234488800168, 0.00022058819013182074, -0.005074373446404934, -0.04440837353467941, 0.014563891105353832, -0.004790397826582193, 0.0025321156717836857, 0.04094657674431801, 0.007924271747469902, -0.01875591278076172, -0.013955372385680676, 0.009445569477975368, 0.022718047723174095, -0.030101412907242775, -0.00449628010392189, -0.00914131011813879, -0.010547664947807789, -0.025422576814889908, -0.01134550105780363, 0.01947261206805706, -0.021582145243883133, -0.019972950220108032, -0.004279918037354946, -0.01037187036126852, 0.012873560190200806, -0.005659228190779686, -0.008722107857465744, 0.004303582478314638, -0.00017949202447198331, -0.023962130770087242, -0.006277889013290405, 0.006419877056032419, 0.022596344351768494, -0.01266395952552557, 0.028181197121739388, 0.001970925834029913, 0.00742393359541893, -0.0013133871834725142, 0.0059905326925218105, 0.01514536514878273, -0.011494250036776066, -0.021568622440099716, 0.006304934620857239, 0.03066936507821083, -0.006237321067601442, 0.0032166996970772743, 0.036511149257421494, -0.027356315404176712, -0.016132518649101257, -0.00880324374884367, 0.01007437240332365, -0.02842460572719574, -0.04754563048481941, 0.010453006252646446, 0.040622033178806305, 0.009425285272300243, -0.019039887934923172, 0.005098038353025913, -0.17233261466026306, 0.013076400384306908, 0.014577413909137249, 0.003941851668059826, -0.013772816397249699, 0.02596348337829113, 0.027937790378928185, -0.01964840665459633, -0.02659904770553112, -0.007714670617133379, 0.01764705590903759, 0.0053177811205387115, -0.0186206866055727, -0.0230425912886858, 0.01380662340670824, -0.008106826804578304, -0.0003566598170436919, 0.024300197139382362, 0.057498298585414886, -0.0029918858781456947, 0.03588910773396492, -0.010851924307644367, 0.005689654033631086, -0.01319810375571251, 0.020892489701509476, 0.01098715141415596, -0.008302905596792698, 0.010716698132455349, 0.008370518684387207, -0.030912771821022034, 0.0002865110873244703, 0.0011959091061726213, 0.028559831902384758, 0.011879646219313145, 0.00795807782560587, 0.003449965501204133, 0.0008523493888787925, 0.003657876281067729, -0.014185257256031036, 0.02137930504977703, 0.04178497940301895, 0.006375928409397602, 0.0277484729886055, -0.007660579867660999, 0.023407703265547752, 0.020851923152804375, 0.014996616169810295, -0.009323865175247192, 0.007586205378174782, -0.002317443722859025, 0.03172413259744644, -0.031075043603777885, -0.01363759022206068, -0.011595670133829117, 0.006399592850357294, -0.005158890038728714, -0.0015813045902177691, 0.015970246866345406, 0.0028617302887141705, -0.009661931544542313, -0.006446922197937965, -0.013820146210491657, -0.015686271712183952, -0.007112912833690643, -0.0027332650497555733, -0.03283298760652542, -0.006271127611398697, 0.044949281960725784, 0.0038269092328846455, 0.004989856854081154, -0.005777551326900721, -0.006541580893099308, 0.002412102185189724, 0.025382010266184807, 0.009019605815410614, -0.0044117639772593975, -0.012339415960013866, 0.009817441925406456, 0.026991205289959908, 0.008539551869034767, 0.007417172193527222, 0.007329274900257587, -0.0018373897764831781, -0.0056085181422531605, -0.029235964640975, -0.00839756429195404, 0.009154831990599632, -0.004675455391407013, -0.00833671260625124, 0.004046652466058731, 0.018093302845954895, -0.018106825649738312, 0.005398917011916637, 0.0010640632826834917, 0.0026436776388436556, 0.00760648911818862, 0.01058147195726633, -0.011196752078831196, -0.014482755213975906, -0.024002699181437492, 0.006105475593358278, 0.017254898324608803, -0.023015545681118965, 0.003810005960986018, 0.03296821564435959, 0.02104124054312706, 0.034347523003816605, 0.0005518930265679955, 0.016605811193585396, -0.005469910800457001, -0.019918859004974365, 0.026761319488286972, 0.03753887116909027, 0.0015880658756941557, -0.008573358878493309, 0.044868145138025284, -0.003654495580121875, -0.01615956425666809, -0.0019658547826111317, -0.013475318439304829, 0.05079106613993645, -0.028181197121739388, -0.022298846393823624, 0.012684243731200695, -0.01718728430569172, -0.0037863412871956825, -0.09054765105247498, -0.028262333944439888, 0.020419197157025337, 0.010736982338130474, -0.010682892054319382, 0.0019878291059285402, -0.0031237315852195024, 0.025165647268295288, -0.005128464195877314, 0.011967543512582779, -0.014563891105353832, -0.01514536514878273, -0.022515207529067993, -0.01035158708691597, 0.0038404318038374186, -0.018864093348383904, 0.0230425912886858, -0.022204186767339706, 0.0007914974703453481, 0.015970246866345406, 0.01925625093281269, -0.00549357570707798, 0.010716698132455349, -0.0008236137800849974, -0.011852600611746311, -0.017173761501908302, -0.03826909139752388, 0.009668692946434021, 0.016321836039423943, 0.010175792500376701, 0.03475320339202881, -0.0016489177942276, 0.02977686934173107, -0.013096684589982033, -0.002373224589973688, -0.016849219799041748, -0.012582823634147644, 0.0007893845322541893, 0.02409735880792141, -0.027383361011743546, 0.0012043607421219349, -0.005456388462334871, 0.009256252087652683, -0.029641643166542053, 0.0036747795529663563, 0.01020283717662096, -0.0022937790490686893, 0.034293435513973236, 0.014320483431220055, -0.009885055013000965, -0.02121703326702118, -0.025909392163157463, -0.012846515513956547, -0.0230425912886858, 0.023556452244520187, -0.0033282616641372442, 0.007126435171812773, 0.011304933577775955, -0.01548343151807785, 0.010175792500376701, -0.010101418010890484, -0.0026538195088505745, -0.009459092281758785, 0.023407703265547752, -0.0018154154531657696, 0.014279915951192379, -0.004530087113380432, 0.018485458567738533, -0.0021146039944142103, -0.00023960441467352211, -0.00524002593010664, -0.012799185700714588, -0.030615273863077164, 0.0027112907264381647, -0.016646379604935646, 0.0075388760305941105, -0.019999995827674866, -0.016876263543963432, -0.004594319500029087, 0.017795804888010025, -0.03515888378024101, -0.011095331981778145, 0.005263690371066332, -0.018972273916006088, 0.002234617481008172, 0.013630828820168972, -0.0021703848615288734, -0.007356320507824421, 0.024164970964193344, -0.03567274287343025, 0.015267069451510906, 0.011636238545179367, 0.007058822084218264, 0.025557804852724075, -0.017106149345636368, 0.00725490041077137, 0.007978362031280994, 0.0036883021239191294, 0.012691005133092403, 0.001572007779031992, -0.006301553919911385, 0.008945231325924397, -0.06431370973587036, 0.006315076258033514, 0.013076400384306908, 0.015334682539105415, 0.015496954321861267, -0.03615956008434296, -0.009060174226760864, -0.008242053911089897, -0.005926300305873156, -0.004922243766486645, -0.027437452226877213, 0.012805947102606297, -0.0146179823204875, 0.003088234690949321, -0.027626769617199898, -0.016605811193585396, 0.02570655383169651, -0.0037761994171887636, 0.008404325693845749, 0.007586205378174782, -0.009939146228134632, 0.026585524901747704, 0.012352938763797283, 0.01440161932259798, -0.014131166972219944, 0.017376601696014404, -0.013265716843307018, 0.009364433586597443, 0.011670044623315334, -0.018133871257305145, 0.005865448620170355, 0.01202839519828558, 0.002843136666342616, 0.00839756429195404, -0.0056321825832128525, -0.020540902391076088, -0.012488164938986301, 0.004323866683989763, 0.0027214328292757273, 0.005611898843199015, 0.005223122425377369, -0.010872208513319492, 0.04081134870648384, -0.021947257220745087, -0.033455029129981995, -0.021609190851449966, -0.010196076706051826, -0.00691683404147625, 0.005618660245090723, 0.017214329913258553, 0.03632183000445366, -0.0005987997283227742, -0.010716698132455349, -0.034131161868572235, -0.004340769723057747, -0.022501684725284576, 0.010155508294701576, 0.029641643166542053, -0.020256925374269485, -0.0053820135071873665, 0.04102771356701851, -0.016822174191474915, -0.008830288425087929, -0.013272478245198727, 0.023853950202465057, -0.008282621391117573, -0.04700472205877304, 0.00795807782560587, 0.013860713690519333, -0.016132518649101257, -0.01621365360915661, -0.011609192937612534, 0.023935087025165558, 0.017620010301470757, 0.02298850007355213, -0.0115821473300457, -0.0016844148049131036, -0.01070993673056364, -0.02193373441696167, 0.034131161868572235, 0.02185259759426117, -0.004590938799083233, -0.011169706471264362, -0.005588233936578035, 0.02435428835451603, 0.0030797829385846853, -0.020676128566265106, 0.0003995519655290991, 0.01054090354591608, 0.014361051842570305, -0.028073016554117203, -0.0026707230135798454, -0.01134550105780363, 0.01253549475222826, -0.014252870343625546, 0.022434072569012642, 0.001916835317388177, 5.226820212556049e-05, 0.029506416991353035, 0.04481405392289162, -0.002755239373072982, 0.0038573353085666895, -0.0199459046125412, 0.011487489566206932, 0.002839755965396762, -0.0011198442662134767, 0.0014781943755224347, -0.01747126132249832, 0.005963487550616264, 0.009181877598166466, 0.01574036106467247, -0.02609870955348015, 0.005429342854768038, 0.018810002133250237, -0.013353614136576653, 0.00950642116367817, 0.007572682574391365, -0.015307636931538582, -0.026058141142129898, 0.008154156617820263, 0.0033603778574615717, 0.028154151514172554, -0.001441007130779326, -0.014672072604298592, 0.038539543747901917, 0.014415142126381397, 0.00388776115141809, -0.023705201223492622, 0.001876267371699214, -0.00903312861919403, -0.0044523319229483604, -0.012819469906389713, 0.012312370352447033, -0.02334008924663067, -0.011514534242451191, 0.0003406016912776977, 0.007667341269552708, 0.010966867208480835, -0.026017574593424797, 0.0802704393863678, 0.027207566425204277, -0.02032453939318657, 0.0048985788598656654, 0.001048005186021328, 0.024151448160409927, 0.01943204365670681, 0.013651113025844097, -0.0018052734667435288, -0.015307636931538582, 0.023989176377654076, -0.021189989522099495, -0.006369167007505894, 0.018864093348383904, -0.022366458550095558, -0.00670385267585516, -0.006822175811976194, 0.0171331949532032, -0.009486136958003044, -0.009006083011627197, 0.0016058144392445683, -0.008938469924032688, -0.011663283221423626, -0.0004299779247958213, -0.011210274882614613, -0.0028515884187072515, 0.011926975101232529, 0.030317775905132294, 0.00012709175643976778, -0.03656524047255516, 0.021149421110749245, -0.012934412807226181, -0.03653819486498833, -0.01790398545563221, -0.009249490685760975, -0.006578768137842417, -0.017079103738069534, -0.027221089228987694, 0.005669369827955961, -0.000924611056689173, 0.0146179823204875, 0.02872210368514061, -0.0231237281113863, -0.017214329913258553, 0.017755236476659775, -0.002523664152249694, -0.003962135873734951, -0.01760648749768734, 0.001508620334789157], "b9455574-e3cb-4838-95d0-00256ab31595": [-0.006160672288388014, -0.023287340998649597, 0.00032364920480176806, -0.04495921730995178, 0.012944256886839867, 0.024409951642155647, 0.00044878784683533013, -0.025929585099220276, -0.017003456130623817, -0.031542640179395676, -0.01154783833771944, 0.022219492122530937, -0.0065268902108073235, -0.01275943685323, -0.012109143659472466, 0.019782602787017822, 0.026600413024425507, -0.003949675243347883, -0.020207004621624947, 0.005921090487390757, -0.033733103424310684, 3.981441477662884e-05, -0.015962986275553703, 0.006253082305192947, -0.020384980365633965, -0.005609634332358837, 0.005654128268361092, -0.016606435179710388, -0.016195721924304962, 0.014785613864660263, 0.021042117848992348, -0.008631786331534386, -0.020220695063471794, 0.008508573286235332, -0.006561115849763155, 0.008207384496927261, -0.001019077841192484, 0.0016539694042876363, 0.023301031440496445, -0.010603201575577259, 0.012204975821077824, 0.013437110930681229, 0.005062018986791372, -0.018345113843679428, -0.007509174756705761, 0.027558740228414536, 0.005209190770983696, -0.0006614166195504367, -0.011636825278401375, -0.005404278635978699, -0.008440121077001095, 0.005739693064242601, -0.009966598823666573, 0.006369450595229864, 0.01564810797572136, -0.008850832469761372, 0.014087404124438763, 0.012382951565086842, 0.011109746061265469, -0.014087404124438763, 0.006691174581646919, 0.007207986433058977, -0.0041584535501897335, -0.008707083761692047, -0.0187832061201334, -0.025108162313699722, -0.004777943715453148, 0.01620941236615181, -0.004305625334382057, -0.008180003613233566, 0.05782817676663399, 0.012821043841540813, 0.027106957510113716, -0.010493678040802479, -0.00858386978507042, -0.016414768993854523, -0.02910575456917286, -0.024190906435251236, -0.008453811518847942, 0.01149307657033205, 0.02142544835805893, -0.012554081156849861, -0.012677294202148914, -0.0037443197797983885, 0.03463666886091232, 0.023684361949563026, 0.008707083761692047, 0.009665410034358501, -0.024204596877098083, -0.02573791891336441, -0.0035218510311096907, -0.0018208209658041596, 0.033787865191698074, 0.026682555675506592, 0.011677896603941917, 0.0081320870667696, 0.030310507863759995, 0.01533322874456644, -0.008405894972383976, -0.0059518939815461636, -0.013259136117994785, 0.009384757839143276, -0.024889115244150162, -0.015579655766487122, -0.0034996040631085634, -0.025614706799387932, 0.0215897336602211, -0.013094850815832615, 0.011931168846786022, 0.023027224466204643, -0.014155855402350426, 0.03354143723845482, -0.021562352776527405, -0.02417721599340439, 0.008002028800547123, -0.005684931296855211, 0.02271234430372715, -0.036416418850421906, -0.008837142027914524, -0.015716560184955597, 0.012581462040543556, 0.012732055969536304, 0.05114727094769478, -0.005753383506089449, 0.002512185135856271, 0.003812771523371339, 0.013218064792454243, -0.00040643324609845877, 0.016017748042941093, 0.0003957376175094396, 0.0016710823401808739, 0.01166420616209507, 0.04046877101063728, 0.006126446183770895, -0.022082587704062462, 0.014936207793653011, -0.02074092999100685, 0.0084127401933074, -0.0059826974757015705, -0.02932479977607727, 0.02180877886712551, 0.03077598102390766, 0.005010680295526981, 0.000797036977019161, 0.005989542696624994, 0.049887754023075104, 0.005318713840097189, 0.010788021609187126, 0.022835558280348778, 0.010048740543425083, 0.004856663290411234, -0.018550468608736992, -0.03077598102390766, 0.007700840476900339, -0.009439518675208092, 0.005277642514556646, 0.004973031580448151, 0.023739123716950417, -0.005428236909210682, 0.006246237084269524, 0.013423420488834381, 0.04257709160447121, -0.0010379021987318993, -0.0019406117498874664, 0.013656157068908215, 0.026490891352295876, 0.008905594237148762, -0.02399924024939537, -0.002034733071923256, -0.010240406729280949, 0.0031984157394617796, 0.033678341656923294, -0.0187968946993351, 0.022329013794660568, 0.010575820691883564, 0.00759816262871027, 0.004042085725814104, 0.0020518461242318153, -0.019248677417635918, -0.04328899085521698, 0.024861734360456467, -0.020494503900408745, -0.005674663465470076, 0.016784409061074257, -0.0051133581437170506, -0.017865950241684914, 0.025806371122598648, 0.021398067474365234, 0.01458025723695755, -0.013361813500523567, 0.015319538302719593, 0.00804994534701109, -0.03510214015841484, -0.008597560226917267, -0.6251576542854309, -0.002106607658788562, 0.009405292570590973, -0.009323150850832462, 0.0054898434318602085, 0.012554081156849861, 0.008392204530537128, -0.0042953575029969215, -0.005506956484168768, 0.02197306416928768, -0.005715734791010618, -0.008453811518847942, -0.006752781104296446, -0.013094850815832615, -0.026422439143061638, -0.00507570942863822, -0.0007563936524093151, -0.020111171528697014, -0.016633814200758934, -0.005270797293633223, -0.020111171528697014, 0.006773316767066717, -0.011643670499324799, 0.011013912968337536, -0.018810585141181946, -0.013238600455224514, 0.021384377032518387, -0.0015658375341445208, 0.0026302647311240435, 0.03387000784277916, -0.03510214015841484, 0.02529982663691044, 0.021398067474365234, -0.017975471913814545, 0.04186519235372543, -0.01065796334296465, 0.0015341785037890077, 0.03745688870549202, 0.01275943685323, 0.0358961820602417, -0.024916496127843857, -0.009234162978827953, 0.006667216308414936, 0.015730250626802444, -0.025724228471517563, -0.014812993817031384, 0.01217075064778328, -0.014895136468112469, -0.006721978075802326, -0.0008034543134272099, 0.012430867180228233, 0.014648709446191788, -0.024026621133089066, -0.0018670259742066264, 0.0013673269422724843, -0.023027224466204643, 0.016948694363236427, -0.029406942427158356, 0.009425828233361244, -0.00804994534701109, -0.002252067904919386, 0.010384155437350273, -0.001303153345361352, -0.04175566881895065, -0.040578294545412064, 0.005671240855008364, -0.012088607996702194, -0.009596958756446838, -0.012437712401151657, -0.025108162313699722, 0.029352180659770966, -0.005972429644316435, 0.0044048805721104145, 0.0010883854702115059, 0.013320742174983025, 0.010349929332733154, 0.048244908452034, -0.005089399870485067, -0.00022246871958486736, 0.012033846229314804, 0.012574616819620132, -0.0029981937259435654, -0.023451626300811768, -0.009521661326289177, 0.028393853455781937, 0.019043322652578354, -0.0012629377888515592, -0.006619300227612257, 0.0021322770044207573, -0.003508160589262843, -0.007625543046742678, 0.04846395552158356, -0.008618095889687538, -0.03931877762079239, -0.01376567967236042, 0.059525784105062485, -0.020891524851322174, 0.0011722390772774816, -0.023246269673109055, -0.029242657124996185, -0.03778545558452606, -0.019043322652578354, 0.0213159266859293, 0.004880621563643217, 0.015743941068649292, 0.008433275856077671, -0.006095643155276775, -0.020672477781772614, 0.02731231413781643, -0.012684139423072338, -0.0023684361949563026, 0.005038060713559389, -0.011479386128485203, -0.015401680953800678, 0.016688575968146324, -0.022862939164042473, 0.0015992078697308898, 0.022972462698817253, 0.009768088348209858, -0.020480813458561897, -0.035184282809495926, -0.01693500392138958, 0.030365269631147385, 0.0008120108395814896, 0.016004057601094246, 0.014251688495278358, 0.008980890735983849, -0.013532943092286587, 0.010466298088431358, -0.0054385047405958176, -0.005253684241324663, -0.013396039605140686, -0.013847822323441505, -0.009288924746215343, 0.03581404313445091, 0.017455238848924637, 0.009569577872753143, -0.004558897577226162, 0.0014811282744631171, -0.04345327615737915, -0.00412080530077219, 0.000905276567209512, 0.015839772298932076, -0.002246933989226818, -0.009206782095134258, -0.034910477697849274, -0.004712914116680622, 0.000759816262871027, -0.005359784699976444, 0.02675100788474083, -0.00818684883415699, -0.015538584440946579, 0.0033130727242678404, 0.01778380759060383, -0.009918682277202606, 0.00636260537430644, 0.0036690225824713707, -0.031159311532974243, -0.010897545143961906, -0.028914088383316994, 0.00028835367993451655, -0.0011397243943065405, -0.015182634815573692, -0.0027603234630078077, -0.010254097171127796, -0.023533768951892853, -0.0052228812128305435, 0.0015778166707605124, -0.01009665708988905, -0.016757028177380562, -0.0038914913311600685, -0.0012227223487570882, -0.005660973489284515, 0.016182033345103264, -0.005880019627511501, 0.0070368568412959576, -0.006615877617150545, -0.017564760521054268, -0.014840374700725079, -0.0005510378978215158, 0.014128475449979305, 0.013211219571530819, -0.005315291229635477, -0.022780796512961388, 0.03666284680366516, 0.004955918528139591, 0.01051421370357275, 0.028612900525331497, -0.028024213388562202, 0.03324025124311447, -0.021055808290839195, 0.011575218290090561, -0.015593346208333969, -0.004059198312461376, -0.016305245459079742, -0.009063033387064934, 0.004630771931260824, 0.01744154840707779, 0.007700840476900339, 0.01648322120308876, 0.010760640725493431, 0.01800285279750824, 0.013252290897071362, 0.003318206639960408, 0.002501917537301779, -0.02597065642476082, 0.013088005594909191, -0.024820664897561073, 0.0054385047405958176, -0.005346094258129597, -0.00886452291160822, 0.009610648266971111, 0.013409730046987534, -0.031487882137298584, 0.009911837056279182, 0.03376048430800438, 0.01711297780275345, 0.0027825701981782913, 0.000362795137334615, -0.006232546642422676, 0.01704452745616436, 0.0039702109061181545, 0.011979085393249989, -0.03510214015841484, 0.0017147203907370567, 0.015251086093485355, 0.01609989069402218, 0.036635465919971466, 0.013772524893283844, -0.01985105499625206, -0.0023051181342452765, 0.017701664939522743, -0.013895738869905472, 0.02243853732943535, 0.05454248562455177, 0.012471938505768776, 0.019645700231194496, -0.002038155682384968, 0.018879037350416183, -0.0017643481260165572, 0.010555285029113293, 0.00796095747500658, 0.021384377032518387, -0.030748600140213966, -0.0021938837599009275, 0.0026114406064152718, -0.0030272859148681164, 0.01722250133752823, -0.010445762425661087, -0.008782380260527134, -0.0072832838632166386, -0.01091123465448618, -0.0006438757991418242, 0.0008697671582922339, 0.026709936559200287, -0.02562839724123478, 0.02271234430372715, 0.020836763083934784, 0.016893932595849037, 0.024204596877098083, 0.03751165047287941, -0.010760640725493431, 0.005209190770983696, 0.00505859637632966, 0.04424731805920601, -0.016811789944767952, -0.0013313897652551532, -0.028804564848542213, -0.003470512107014656, 0.0016933291917666793, 0.008789225481450558, -0.019755221903324127, -0.003039265051484108, -0.02483435347676277, -0.01603143848478794, 0.0036450643092393875, -0.009658564813435078, 0.009466899558901787, -0.0037751230411231518, 0.017674284055829048, -0.0033866583835333586, -0.03493785858154297, 0.03896282985806465, 0.02013855241239071, 5.5082400649553165e-05, -0.006680906750261784, -0.011931168846786022, 0.004175566602498293, 0.008248455822467804, 0.012513009831309319, -0.005226303823292255, -0.009535351768136024, -0.011931168846786022, 1.2851445490014157e-06, 0.004979876801371574, 0.004664998035877943, 0.04676634818315506, -0.0026559343095868826, -0.019878435879945755, -0.01744154840707779, 0.022192111238837242, 0.007488639559596777, -0.03548547253012657, -0.044384222477674484, 0.018742134794592857, -0.010883854702115059, -0.02753135934472084, -0.032720014452934265, -0.013704073615372181, -0.01911177486181259, -0.0012791951885446906, -0.024930186569690704, -0.02427304908633232, -0.008426430635154247, 0.007481794338673353, 0.008200539276003838, -0.007440723013132811, 0.00017733323329593986, 0.0093916030600667, 0.0381140261888504, -0.020275456830859184, -0.014908826909959316, 0.004986722022294998, 0.013916274532675743, 0.08482561260461807, -0.0012963081244379282, 0.0026901601813733578, 0.021179022267460823, -0.009549042209982872, -0.021042117848992348, -0.014155855402350426, -0.013676692731678486, 0.05903293192386627, 0.019440343603491783, -0.01597667671740055, 0.0006973538547754288, 0.013019554316997528, -0.010356774553656578, 0.01538799051195383, 0.007844589650630951, -0.012766282074153423, -0.02198675461113453, -0.009384757839143276, 0.010185644961893559, 0.012218666262924671, -0.011232959106564522, 0.028448615223169327, 0.02012486197054386, 0.047697294503450394, 0.02091890573501587, 0.019892126321792603, 0.016277864575386047, 0.0015376011142507195, 0.0062496596947312355, -0.016072509810328484, 0.0067425137385725975, 0.00020225401385687292, 0.015880843624472618, -0.05339249223470688, 0.02905099280178547, -0.00672882329672575, -0.014012106694281101, -0.008310062810778618, 0.013430265709757805, 0.008097860962152481, 0.03682712838053703, -0.0017344004008919, -0.0042679766193032265, 0.013163303025066853, -0.017811188474297523, -0.018084995448589325, 0.030940264463424683, -0.025094471871852875, -0.014196926727890968, 0.017126668244600296, 0.015716560184955597, -0.007399651687592268, 0.02371174283325672, 0.006721978075802326, -0.012923721224069595, 0.005842370912432671, -0.009685945697128773, -0.03543071076273918, -0.017345715314149857, -0.036142610013484955, -0.006010077893733978, -0.017564760521054268, -0.02399924024939537, -0.02597065642476082, -0.020056411623954773, -0.03189859166741371, -0.012280273251235485, -0.02770933508872986, 0.010897545143961906, -0.026764698326587677, -0.02305460534989834, -0.03573190048336983, 0.023123055696487427, 0.015004660002887249, -0.000254769460298121, -0.008056790567934513, -0.006725400686264038, 0.01410109456628561, 0.02316412702202797, 0.012677294202148914, -0.011048139072954655, 0.019193917512893677, -0.026093870401382446, -0.003703248454257846, -0.014525496400892735, -0.011000222526490688, -0.003515005810186267, 0.00028856759308837354, 0.020439742133021355, -0.020494503900408745, -0.026668865233659744, 0.023971859365701675, 0.0042063700966537, 0.006561115849763155, 0.004480178002268076, 0.0037477423902601004, 0.005674663465470076, 0.012355570681393147, -0.031323596835136414, 0.018482016399502754, 0.0062188562005758286, -0.012471938505768776, -0.006212010979652405, 0.022945081815123558, 0.020371289923787117, -0.016387388110160828, -0.010863319039344788, -0.007974647916853428, -0.010726414620876312, 0.019864745438098907, -0.008248455822467804, -0.008255301043391228, -0.002775725210085511, 0.02539565972983837, -0.029954558238387108, -0.002895515877753496, 0.014826684258878231, 0.005394010804593563, -0.005972429644316435, -0.017126668244600296, -0.0024454446975141764, 0.040112823247909546, 0.020384980365633965, 0.0036108384374529123, 0.010171954520046711, 0.024656379595398903, 0.002717541065067053, -0.03072121925652027, -0.015127873048186302, 0.013615085743367672, 0.0003863254969473928, -0.01715404912829399, -0.010110347531735897, -0.015593346208333969, 0.006773316767066717, -0.003836729796603322, 0.0031265411525964737, -0.0031949931290000677, 0.0016907622339203954, -0.04682110995054245, 0.013149612583220005, 0.015853462740778923, -0.007707685697823763, 0.013135922141373158, -0.03469143062829971, -0.026983745396137238, -0.0023804153315722942, 0.004117382690310478, 0.027613501995801926, 0.009302615188062191, -0.00559594389051199, -0.04490445554256439, -0.01918022707104683, -0.022109968587756157, -0.005958739202469587, 0.021220093593001366, 0.017523689195513725, 0.03723784163594246, 0.031214073300361633, 0.006109333131462336, 0.016058819368481636, 0.01508680172264576, 0.012437712401151657, -0.009254698641598225, -0.007707685697823763, -0.009939217939972878, -0.020371289923787117, 0.018769515678286552, -0.009254698641598225, 0.0025224529672414064, 0.01020618062466383, -0.01778380759060383, -0.022329013794660568, 0.006376295816153288, 0.00108239590190351, 0.0027004280127584934, -0.013553478755056858, -0.023424245417118073, -0.03784021735191345, 0.01586715318262577, 0.020549263805150986, 0.022862939164042473, 0.00863863155245781, -0.02555994503200054, -0.0038298845756798983, 0.017400477081537247, -0.005903977435082197, 0.037319984287023544, -0.01130141131579876, 0.018591539934277534, -0.013238600455224514, 0.009172556921839714, 0.037374746054410934, 0.006027190946042538, -0.008700238540768623, -0.010897545143961906, -0.02597065642476082, -0.0017309777904301882, 0.026436129584908485, 0.02293139137327671, 0.01351925265043974, 0.010178799740970135, 0.00021241484500933439, -0.017085596919059753, 0.022739725187420845, -0.013272826559841633, -0.03214501962065697, -0.002647377783432603, -0.02247960865497589, -0.004743717610836029, -0.03417119383811951, -0.029297418892383575, 0.0034191731829196215, -0.023013534024357796, 0.0012595151783898473, -0.00615382706746459, 0.009720171801745892, -0.00045349393622018397, -0.03066645748913288, 0.0051646968349814415, 0.010788021609187126, 0.0023324990179389715, 0.012095453217625618, 0.009494280442595482, 0.013252290897071362, 0.012581462040543556, -0.015538584440946579, -0.025587325915694237, 0.012999018654227257, 0.005482998210936785, 0.0023085407447069883, 0.047012776136398315, -0.022849248722195625, -0.0235611479729414, -0.00801571924239397, 0.003727206727489829, -0.01519632525742054, -0.025217685848474503, 0.02651827223598957, 0.02012486197054386, 0.0017087309388443828, -0.01581239141523838, -0.009063033387064934, 0.00542481429874897, 0.015894534066319466, -0.014949898235499859, 0.0176605936139822, 0.02501232922077179, 0.003925717435777187, -0.0010550151346251369, 0.021151641383767128, -0.0011893520131707191, 0.030967645347118378, -0.007707685697823763, 0.0037511650007218122, -0.008262146264314651, 0.004333006218075752, 0.012355570681393147, -0.02197306416928768, 0.013847822323441505, 0.010425226762890816, -0.025669468566775322, 0.014237998053431511, 0.013149612583220005, 0.01474454253911972, 0.00835797842592001, -0.007228522095829248, -0.015949295833706856, 0.028503376990556717, 0.002347900765016675, -0.0019269214244559407, 0.012930566444993019, -0.015935605391860008, 0.011787419207394123, -0.015497513115406036, -0.022082587704062462, -0.0076597691513597965, -0.007468103896826506, -0.010938615538179874, -0.0063865636475384235, -0.0018636033637449145, -0.014662399888038635, 0.01711297780275345, 0.0023718588054180145, -0.007591317407786846, -0.01950879581272602, -0.012793662957847118, 0.004853240679949522, -0.019823674112558365, -0.016921313479542732, 0.0005595944239757955, -0.0042166379280388355, 0.01043207198381424, 0.015839772298932076, 0.0020706704817712307, -0.0027449217159301043, 0.010384155437350273, -0.022465918213129044, 0.012930566444993019, 0.010048740543425083, 0.03061169572174549, -0.04265923425555229, 0.029653368517756462, -0.02416352555155754, 0.005671240855008364, 0.028749803081154823, 0.005886864382773638, -0.03151526302099228, -0.010411536321043968, 0.009295769967138767, 0.005068864207714796, 0.015716560184955597, 0.003374679246917367, 0.004805324133485556, -0.0010729837231338024, 0.00137331651058048, -0.012020155787467957, -0.02910575456917286, -0.001952590886503458, -0.022137349471449852, -0.010240406729280949, 0.018646301701664925, 0.008262146264314651, -0.001558992313221097, 0.002580637112259865, -5.2515453717205673e-05, -0.0016069086268544197, -0.018920108675956726, -0.01889272779226303, -0.01872844435274601, -0.015511203557252884, -0.01514156349003315, -0.01382044143974781, -0.012376106344163418, -0.03370572254061699, -0.009603803977370262, 0.02202782593667507, -0.004675265867263079, 0.013642466627061367, 0.027517668902873993, 0.004757408052682877, -0.02130223624408245, -0.007967802695930004, -0.005921090487390757, -0.029872415587306023, -0.016524292528629303, 0.006102487910538912, -0.029023611918091774, -0.01928974874317646, -0.018920108675956726, 0.024861734360456467, 0.029023611918091774, -0.015360609628260136, -0.03458190709352493, -0.012485628947615623, -0.04200209304690361, 0.008796070702373981, -0.0454246886074543, 0.032774776220321655, 0.02113795094192028, 0.013354968279600143, 0.013943654485046864, 0.025094471871852875, 0.00032878309139050543, 0.02764088287949562, -0.01772904582321644, -0.022055206820368767, -0.017865950241684914, -0.029461704194545746, 0.0319807343184948, -0.04254971072077751, -0.03827831149101257, -0.002895515877753496, 0.02948908507823944, -0.01950879581272602, 0.020042721182107925, 0.018577849492430687, -0.009836539626121521, -8.540445560356602e-05, -0.0016111868899315596, 0.009343686513602734, 0.006427634507417679, 0.003692980855703354, 0.016401078552007675, -0.015839772298932076, -0.0032121059484779835, 0.01833142340183258, -0.006622722838073969, -0.02388971857726574, 0.004634194541722536, 0.009104104712605476, -0.01755107007920742, -0.0009566154913045466, -0.03151526302099228, -0.010575820691883564, -0.02182246930897236, -0.008481192402541637, -0.014621328562498093, -0.0004126366984564811, -0.005914245266467333, 0.04435684159398079, -0.0002453573397360742, -0.03209025785326958, -0.010233561508357525, -0.002578925807029009, 0.003655332140624523, -0.012807353399693966, 0.008364823646843433, -0.02193199284374714, -0.015497513115406036, -0.02501232922077179, 0.03564975783228874, 0.005486420821398497, -0.01726357266306877, -0.027545049786567688, -0.004281667061150074, -0.02209627814590931, -0.0040797339752316475, -0.0033507212065160275, 0.01306062564253807, 0.00829637236893177, -0.03408905491232872, -0.004894312005490065, -0.026039108633995056, -0.01051421370357275, 0.010391000658273697, -0.024012930691242218, -0.01704452745616436, -0.0018807162996381521, -0.004596545826643705, -0.023177817463874817, 0.008987735956907272, 0.02770933508872986, -0.014005261473357677, 0.009555887430906296, 0.20984618365764618, 0.0043261609971523285, -0.0034893362317234278, 0.026477200910449028, 0.0035218510311096907, -0.003959943074733019, -0.005623324774205685, 0.009501125663518906, 0.005900554824620485, 0.01474454253911972, 0.01760583184659481, 0.008501728065311909, -0.024190906435251236, -0.005394010804593563, 0.016455840319395065, -0.013553478755056858, -0.010425226762890816, -0.01603143848478794, -0.005130470730364323, 0.0006378862890414894, 0.01666119508445263, 4.719438584288582e-05, -0.016907623037695885, -0.0007717953412793577, 0.015826081857085228, 0.03318548947572708, 0.004209792707115412, 0.00446991017088294, 0.012047536671161652, 0.009795469231903553, -0.02613493986427784, -0.022109968587756157, 0.014607638120651245, -0.01028832234442234, -0.0033455872908234596, -0.0016813501715660095, 0.011109746061265469, -0.011013912968337536, 0.0011765172239392996, 0.016250483691692352, 0.0009959753369912505, -0.009535351768136024, 0.03649856150150299, -0.029406942427158356, 0.020480813458561897, 0.0025429886300116777, 0.022862939164042473, -0.016058819368481636, 0.03129621595144272, 0.0375937893986702, 0.009049342945218086, 0.013129076920449734, -0.0003480351879261434, 0.006817810703068972, -0.0302831269800663, -0.021439138799905777, -0.013751989230513573, 0.00013658296666108072, -0.012992173433303833, 0.030693838372826576, -0.011472540907561779, -0.0014280780451372266, -0.002214419422671199, 0.02753135934472084, -0.03313072770833969, 0.009576423093676567, -0.015730250626802444, 0.03929140046238899, 0.018345113843679428, 0.013450801372528076, -0.030009320005774498, -0.0138752032071352, -0.02198675461113453, -0.011041293852031231, -0.0029845035169273615, -0.015100492164492607, 0.0068725720047950745, 0.035348568111658096, 0.02894146926701069, -0.0012261449592188, 0.008200539276003838, 0.016360007226467133, -0.021849850192666054, 0.005513801705092192, 0.004315893165767193, -0.029872415587306023, 0.026422439143061638, -0.015456441789865494, -0.0027723025996237993, -0.014114785008132458, -0.01121242344379425, -0.0077692922204732895, -0.025778990238904953, 0.005897132214158773, 0.0036279514897614717, -0.012841579504311085, 0.018194518983364105, 0.02148021012544632, -0.008672857657074928, -0.005079132039099932, -0.02651827223598957, 0.04649253934621811, 0.026928983628749847, 0.03167954459786415, -0.025642087683081627, -0.0021151641849428415, -0.013560323975980282, 0.0243825726211071, -0.012102298438549042, 0.0022897166199982166, -0.021548662334680557, -0.03324025124311447, 0.008515418507158756, 0.008419585414230824, 0.0135945500805974, 0.03899021074175835, 0.018577849492430687, -0.00950797088444233, -0.014457044191658497, 0.003005038946866989, 0.01861892081797123, -0.026367677375674248, 0.0033935036044567823, -0.007242212537676096, -0.01093177031725645, -0.007735066115856171, -0.006023768335580826, 0.008515418507158756, -0.032391443848609924, -0.006660371087491512, 0.005698621738702059, -0.017195120453834534, 0.009446363896131516, -0.015470132231712341, -0.013861512765288353, 0.0010781176388263702, -0.0073038190603256226, -0.025094471871852875, -0.006745936349034309, 0.01563441753387451, 0.019590938463807106, 0.006376295816153288, 0.017592141404747963, 0.0011979085393249989, 0.015908224508166313, 0.012239201925694942, -0.00022503566287923604, 0.018413564190268517, -0.005431659519672394, -0.012711520306766033, -0.002252067904919386, 0.03784021735191345, -0.007098463363945484, 0.012971637770533562, 0.016524292528629303, -0.011472540907561779, -0.02584744244813919, -0.021288545802235603, 0.01564810797572136, -0.013094850815832615, -0.036525942385196686, 0.0036484869197010994, 0.042248521000146866, 0.017975471913814545, -0.011431469582021236, 0.00010449612454976887, -0.17403215169906616, 0.014060023240745068, -0.0025909049436450005, 0.017646903172135353, -7.096538320183754e-05, 0.0213159266859293, 0.00028001112514175475, -0.009829694405198097, -0.031542640179395676, -0.017414167523384094, 0.01468978077173233, 0.0029485661070793867, -0.02064509689807892, -0.0011106323217973113, 0.021014736965298653, -0.015127873048186302, 0.0011636825511232018, 0.014703471213579178, 0.04397350922226906, -0.004445951897650957, 0.029927177354693413, -0.009857075288891792, 0.009254698641598225, -0.011821645312011242, 0.01698976568877697, 0.01208176277577877, -0.01270467508584261, 0.02517661452293396, 0.001161115593276918, -0.03258311003446579, -0.0088302968069911, -0.009069878607988358, 0.029023611918091774, 0.017249882221221924, 0.013813596218824387, 0.007563936524093151, 0.01867368258535862, 0.004610236268490553, -0.011958549730479717, 0.013526097871363163, 0.028968850150704384, 0.016921313479542732, 0.014347521588206291, -0.0036313741002231836, 0.02372543327510357, 0.024697450920939445, 0.016852861270308495, 0.000725162448361516, 0.011315101757645607, 0.007509174756705761, 0.029571227729320526, -0.03291168063879013, -0.012711520306766033, -0.010924925096333027, -0.0003399065462872386, 0.010076121427118778, -0.006975249852985144, 0.010082966648042202, 0.0033267629332840443, -0.021014736965298653, -0.004038663115352392, 0.0033952149096876383, -0.015661798417568207, -0.0005253684357739985, 0.0012227223487570882, -0.03986639529466629, -0.02260282263159752, 0.03354143723845482, -0.004610236268490553, 0.0028818256687372923, 0.010226716287434101, -0.006455015391111374, -0.00507570942863822, 0.01011719275265932, 0.006718555465340614, 0.009946063160896301, -0.01688024215400219, 0.012944256886839867, 0.021795090287923813, 0.01208176277577877, 0.005106512922793627, 0.016798099502921104, -0.0072559029795229435, -0.009309460408985615, -0.037046175450086594, -0.0062017436139285564, 0.006752781104296446, 0.018208209425210953, -0.012218666262924671, -0.008624941110610962, 0.009877610951662064, -0.015004660002887249, 0.018468325957655907, -0.006410521920770407, -0.001551291556097567, 0.008823451586067677, 0.01833142340183258, -0.015004660002887249, -0.0036416419316083193, -0.024081382900476456, 0.00464103976264596, 0.013642466627061367, -0.016291555017232895, 0.0069581372663378716, 0.011363017372786999, 0.022411156445741653, 0.011588908731937408, -0.01698976568877697, 0.02197306416928768, -0.016058819368481636, -0.03833307325839996, 0.015045730397105217, 0.026915293186903, 0.0009822850115597248, -0.016360007226467133, 0.037319984287023544, 0.004100269638001919, -0.01277997251600027, 0.003220662474632263, -0.021261164918541908, 0.061880528926849365, -0.02365698106586933, -0.01614096201956272, 0.016004057601094246, -0.009117795154452324, -0.02068616822361946, -0.11445160210132599, -0.030310507863759995, 0.030693838372826576, -0.002602884080260992, -0.017455238848924637, -0.007755601778626442, -0.012506164610385895, 0.02264389395713806, -0.0012458248529583216, 0.008227920159697533, -0.02069985866546631, -0.01845463551580906, -0.02360221929848194, -0.012157060205936432, 0.021890921518206596, -0.01711297780275345, 0.01928974874317646, -0.029078373685479164, -0.023876028135418892, 0.020316528156399727, 0.01705821603536606, -0.015497513115406036, 0.012369261123239994, 0.0031282524578273296, -0.018974870443344116, -0.03178906813263893, -0.026107560843229294, 0.007461258675903082, 0.017400477081537247, -0.006157249677926302, 0.03890806809067726, -0.0020073524210602045, 0.03428071737289429, -0.00969963613897562, -0.0014580257702618837, -0.019549867138266563, -0.008043100126087666, -0.005479575600475073, 0.02932479977607727, -0.013580859638750553, 0.0019731263164430857, 0.012239201925694942, -0.0027329425793141127, -0.03693665191531181, -0.0017224212642759085, 0.005479575600475073, -0.0030632230918854475, 0.044658027589321136, 0.02068616822361946, -0.011205578222870827, -0.013964190147817135, -0.010391000658273697, -0.0018738711951300502, -0.014922517351806164, 0.02220580168068409, 0.0007405641372315586, 0.0071463799104094505, 0.008542798459529877, -0.01648322120308876, -0.009302615188062191, -0.016839170828461647, -0.008515418507158756, -0.023027224466204643, 0.021849850192666054, 0.014128475449979305, 0.00998028926551342, -0.010699033737182617, 0.016496911644935608, 0.005856061354279518, 0.011287720873951912, 0.001527333282865584, -0.006037458777427673, -0.01463501900434494, -0.0035594995133578777, -0.020097481086850166, 0.00615382706746459, -0.005541182588785887, -0.0034533990547060966, -0.003593725385144353, -0.000868483679369092, -0.03006407991051674, -0.007084772922098637, -0.006985517684370279, -0.022684963420033455, -0.00860440544784069, 0.008426430635154247, 0.015004660002887249, -0.0035697673447430134, 0.014703471213579178, -0.04389136657118797, 0.003152210731059313, 0.015908224508166313, 0.023684361949563026, 0.02372543327510357, -0.026723627001047134, 0.011109746061265469, 0.008707083761692047, -0.015415371395647526, 0.004589700605720282, -0.004822437185794115, -0.007591317407786846, 0.010281477123498917, -0.04613659158349037, 0.003186436602845788, 0.0051133581437170506, 0.023588528856635094, 0.018482016399502754, -0.053967490792274475, -0.011458850465714931, -0.015798700973391533, -0.01449811551719904, -0.009768088348209858, -0.031131930649280548, 0.011828490532934666, -0.011260339990258217, -0.010610046796500683, -0.023574838414788246, -0.022904010489583015, 0.0050859772600233555, -0.008008874021470547, -0.006160672288388014, 0.010308858007192612, -0.010254097171127796, 0.008227920159697533, 0.0022691809572279453, 0.017249882221221924, -0.010267786681652069, 0.019590938463807106, 0.0024779592640697956, 0.03017360344529152, 0.010610046796500683, -0.003990746568888426, 0.020275456830859184, 0.0040010144002735615, 5.518935722648166e-05, 0.007358580827713013, -0.011041293852031231, -0.013046935200691223, -0.04515088349580765, -0.001635145046748221, 0.011068674735724926, -0.0061127557419240475, 0.0012158771278336644, -0.016811789944767952, 0.040578294545412064, -0.031597401946783066, -0.03274739533662796, -0.03471881151199341, -0.025546254590153694, -0.030584314838051796, 0.017687974497675896, 0.010130883194506168, 0.025272445753216743, 0.0009694502223283052, -0.02383495680987835, -0.03778545558452606, -0.013286516070365906, -0.007687150035053492, 0.008268991485238075, 0.029845034703612328, -0.009288924746215343, -0.00032685790210962296, 0.04616397246718407, -0.004962763749063015, -0.003877800889313221, -0.016620125621557236, 0.02041236124932766, 5.7114564697258174e-05, -0.05448772385716438, 0.003039265051484108, 0.0026336873415857553, -0.01952248625457287, -0.015962986275553703, -0.006886262446641922, 0.02198675461113453, 0.011869561858475208, 0.021521281450986862, 0.0011354461312294006, -6.850538920843974e-05, -0.024314120411872864, -0.02204151637852192, 0.01455287728458643, 0.021712947636842728, 0.0006117890006862581, -0.014607638120651245, 0.0019662813283503056, 0.027887308970093727, 0.0021545239724218845, -0.022506989538669586, 0.014881446026265621, -0.006229124031960964, 0.01155468262732029, -0.031816449016332626, 0.010938615538179874, -0.003082047449424863, 0.014539186842739582, -0.012690984643995762, 0.015374300070106983, -0.000654999224934727, 0.0028818256687372923, 0.007741911336779594, 0.028667662292718887, -0.007351735606789589, 0.007310664281249046, -0.018016543239355087, 0.0021955950651317835, 0.00383330718614161, 0.007529710419476032, -0.010363619774580002, -0.024628998711705208, 0.02798314206302166, 0.015168944373726845, 0.015470132231712341, -0.03874378278851509, -0.0004552052414510399, 0.016387388110160828, -0.0026302647311240435, 0.006123023573309183, 0.010069276206195354, -0.011965394951403141, -0.022164730355143547, 0.004747140221297741, 0.01242402195930481, 0.023369483649730682, 0.018468325957655907, -0.017934400588274002, 0.04139971733093262, 0.001302297692745924, 0.007276438642293215, -0.009617493487894535, 0.0006485818885266781, 0.002210996812209487, 0.002098051132634282, 0.0017985739978030324, 0.017071906477212906, -0.016455840319395065, 0.0022708922624588013, -0.014320140704512596, -0.0028698465321213007, 0.027846239507198334, -0.01468978077173233, 0.07808994501829147, 0.03077598102390766, -0.02059033513069153, 0.01096599642187357, 0.0054624625481665134, 0.02517661452293396, 0.01839987374842167, 0.0062188562005758286, 0.007399651687592268, 0.0009369355975650251, 0.018824275583028793, -0.016852861270308495, -0.006205166224390268, 0.012992173433303833, -0.012033846229314804, 0.013197529129683971, -0.006266772747039795, 0.01514156349003315, -0.007721375674009323, -0.004004437010735273, 0.007098463363945484, -0.006099065765738487, -0.00865916721522808, -0.006451592780649662, -0.02512185275554657, -0.014224307611584663, -0.002643955172970891, 0.033103346824645996, 0.007427032571285963, -0.018687373027205467, 0.014402282424271107, -0.01185587141662836, -0.029872415587306023, -0.013779370114207268, -0.0069581372663378716, 0.0006627000984735787, -0.019495105370879173, -0.023752814158797264, 0.00696840463206172, -0.0048703537322580814, 0.002835620427504182, 0.035348568111658096, -0.031214073300361633, -0.025546254590153694, 0.027052195742726326, -6.080455204937607e-05, 0.009733862243592739, -0.016811789944767952, -0.005257106851786375], "0273158c-ddd2-4574-ae6c-5061fb24282a": [0.0005799775244668126, -0.007690801285207272, 0.004845273215323687, -0.04232337698340416, 0.01888800598680973, 0.026941774412989616, -0.0017857315251603723, -0.02388736791908741, -0.019189337268471718, -0.024750271812081337, -0.00570475310087204, 0.027270499616861343, -0.0036673410795629025, -0.01418997347354889, -0.013361312448978424, 0.0102863609790802, 0.022134168073534966, -0.006475202739238739, -0.004588456824421883, -0.0011376976035535336, -0.028544310480356216, -0.016682807356119156, -0.020695993676781654, 0.013039435259997845, -0.025750145316123962, 0.0023199100978672504, 0.01183410920202732, -0.004040581174194813, -0.012902466580271721, 0.011998471803963184, 0.01465566735714674, -0.005362330935895443, -0.037173349410295486, -0.016011659055948257, -0.02073708549141884, -0.0023866824340075254, 0.00982066709548235, -0.0030886477325111628, 0.018203161656856537, -0.005019908770918846, 0.013005193322896957, 0.021832836791872978, 0.0036981592420488596, -0.00518427137285471, -0.020326178520917892, 0.03024272434413433, -0.0013046283274888992, -0.005461633205413818, -0.013498281128704548, -0.008314009755849838, -0.006779958494007587, 0.0075812260620296, -0.015463784337043762, 0.014737849123775959, 0.01734025776386261, -0.01471045520156622, 0.013128465041518211, 0.00796473864465952, 0.018737340345978737, -0.01364209782332182, 0.01076575182378292, 0.003958399873226881, -0.007779831066727638, 0.0023678492289036512, -0.024490032345056534, -0.02153150364756584, -0.0035646145697683096, -0.00956727471202612, -0.0013191812904551625, -0.0016727321781218052, 0.047144681215286255, 0.025188572704792023, 0.03920048847794533, -0.019435880705714226, -0.011430051177740097, -0.027421165257692337, -0.01608014479279518, -0.012032713741064072, -0.00020128001051489264, 0.014765243045985699, 0.01846340112388134, -0.004807606805115938, -0.01103284116834402, 0.008115405216813087, 0.02338058315217495, 0.02391476184129715, 0.008094859309494495, 0.016408869996666908, -0.014011913910508156, -0.011450596153736115, 0.0002561745641287416, 0.0034173729363828897, 0.019203033298254013, 0.01608014479279518, 0.017559407278895378, 0.014381729997694492, 0.038515642285346985, 0.02492833137512207, -0.02920176088809967, -0.01849079504609108, -0.0007691657519899309, 0.000625776476226747, -0.031037142500281334, -0.016614321619272232, 0.006434112321585417, -0.017997708171606064, 0.022134168073534966, -0.014080398716032505, 0.012245016172528267, 0.024942029267549515, -0.020134422928094864, 0.03859782591462135, -0.013566765002906322, -0.0032958132214844227, 0.0020990476477891207, -0.013155858963727951, 0.01683347299695015, -0.03577626496553421, -0.008252373896539211, -0.015641843900084496, 0.008697522804141045, 0.013758521527051926, 0.040844112634658813, -0.013594158925116062, 0.011751928366720676, 0.0017103985883295536, 0.01616232469677925, -0.005591753404587507, 0.013772218488156796, -0.004698032047599554, -0.009081034921109676, 0.010108301416039467, 0.020901447162032127, 0.01987418159842491, -0.018285343423485756, 0.006112235132604837, -0.02239440754055977, 0.004944575950503349, -0.00025981280487030745, -0.025421420112252235, 0.0035509176086634398, 0.014737849123775959, 0.006540263071656227, -0.008711219765245914, 0.00847152341157198, 0.043912217020988464, 0.00553011754527688, 0.025640569627285004, 0.01573772169649601, 0.005475330166518688, -0.0029225728940218687, -0.02366821840405464, -0.024051731452345848, 0.003436206141486764, -0.007868860848248005, -0.0018199736950919032, 0.013861248269677162, 0.02487354539334774, -0.00212472933344543, 0.012484711594879627, 0.01212859246879816, 0.044076576828956604, 0.004324791487306356, -0.006779958494007587, 0.004989090841263533, 0.03133847564458847, 0.009909696877002716, -0.024585910141468048, 0.004348761402070522, -0.002725680358707905, 0.01524463389068842, 0.035146210342645645, -0.011436899192631245, 0.033119071274995804, 0.0012994920834898949, 0.008916672319173813, -0.002900315448641777, 0.004793909844011068, -0.024079125374555588, -0.047254256904125214, 0.012614832259714603, -0.019093459472060204, -0.002337031066417694, 0.018216857686638832, -0.0004455768212210387, -0.02153150364756584, 0.023791490122675896, 0.01214228942990303, 0.0007841467158868909, -0.009697395376861095, 0.01191629096865654, 0.00579720688983798, -0.042679496109485626, -0.016477353870868683, -0.6307141780853271, -0.0008894415223039687, 0.0110876290127635, -0.0013277418911457062, 0.005173998419195414, -0.002063093474134803, 0.02639389969408512, -0.004403548780828714, 0.0015468919882550836, 0.030927568674087524, -0.0021795169450342655, -0.0024671514984220266, -0.017326559871435165, -0.01947697065770626, -0.03155762329697609, -0.005858842749148607, 0.0035851597785949707, -0.017326559871435165, -0.02922915481030941, 0.0006578785250894725, -0.025215966627001762, 0.01112871989607811, -0.004393276292830706, 0.009135822765529156, -0.011258840560913086, -0.024942029267549515, 0.015724025666713715, 0.006660110782831907, 0.009149519726634026, 0.034297000616788864, -0.01934000290930271, 0.021599989384412766, 0.014888514764606953, -0.017751164734363556, 0.03922788053750992, -0.02810600958764553, -0.022051986306905746, 0.01966872811317444, 0.011293082498013973, 0.03380391374230385, -0.036187171936035156, -0.008012678474187851, 0.016628019511699677, 0.022558771073818207, -0.019244125112891197, -0.006293719168752432, 0.024709181860089302, 0.003335191635414958, -0.010423329658806324, -0.007451105862855911, 0.01004666555672884, 0.004174125846475363, -0.011204052716493607, -0.0051808468997478485, -0.0013285978930070996, -0.013580461964011192, 0.013107920065522194, -0.029557880014181137, 0.006612171418964863, -0.009642607532441616, -0.005636268295347691, 0.010854781605303288, 0.004136459436267614, -0.04961011931300163, -0.055746324360370636, 0.013162706978619099, -0.00583829777315259, -0.008889279328286648, -0.001989472657442093, -0.0323246493935585, 0.033009495586156845, -0.00037473824340850115, 0.0019860484171658754, -0.007951042614877224, 0.018025102093815804, 0.003978945314884186, 0.051555078476667404, -0.005013060290366411, -0.0026931501924991608, 0.018983883783221245, 0.009478244930505753, -0.012970950454473495, -0.02220265194773674, -0.006988835986703634, 0.03142065554857254, 0.013251736760139465, -0.0032786920201033354, -0.0051979683339595795, 0.01051235944032669, -0.012717558071017265, -0.010868478566408157, 0.03385870158672333, -0.03024272434413433, -0.029859211295843124, 0.001051235944032669, 0.04446009173989296, -0.0011830684961751103, 0.005235634744167328, -0.012710710056126118, -0.02425718493759632, -0.04309040307998657, -0.025147482752799988, 0.017778558656573296, -0.00367076531983912, 0.010320603847503662, 0.02340797707438469, -0.014258458279073238, -0.02062750980257988, 0.02166847325861454, -0.006656686309725046, -0.010491814464330673, -0.009183761663734913, -0.019860483705997467, -0.020230300724506378, 0.010799994692206383, -0.014121489599347115, 0.005550662986934185, 0.0212438702583313, 0.020846659317612648, -0.016477353870868683, -0.025284450501203537, -0.012758648954331875, 0.022161561995744705, 0.01592947728931904, 0.017107410356402397, 0.023983247578144073, 0.0037152802105993032, -0.017011532559990883, 0.02153150364756584, -0.01053975336253643, 0.00448915408924222, -0.012888769619166851, -0.0009767591254785657, -0.007389470003545284, 0.03665286675095558, 0.010738358832895756, 0.009895999915897846, -0.008046920411288738, 0.011491687037050724, -0.05234949663281441, -0.007471651304513216, 0.0094850929453969, 0.022750526666641235, -0.015477481298148632, -0.0013833855045959353, -0.03700898587703705, -0.007389470003545284, 0.002804437419399619, -0.0007028214749880135, -0.003121177898719907, -0.008327706716954708, -0.00953988078981638, 0.005964993964880705, 0.013477735221385956, -0.013142162002623081, 0.0017472089966759086, -0.0026006961707025766, -0.030626237392425537, -0.024065427482128143, -0.03484487906098366, -0.008998854085803032, 0.007827769964933395, -0.01753201335668564, 0.005478754173964262, -0.015518571250140667, -0.017162198200821877, 0.002325046341866255, -0.0004768228391185403, -0.0315302312374115, -0.02388736791908741, -0.01110132597386837, -0.009074186906218529, -0.006468354258686304, 0.019764605909585953, 0.006245779804885387, 0.021449323743581772, -0.019298912957310677, -0.0205727219581604, -0.00762231694534421, -0.012108047492802143, 0.01103284116834402, 0.028516916558146477, -0.011388960294425488, -0.03131107985973358, 0.04536408558487892, 0.0014082110719755292, 0.014272155240178108, 0.03169459477066994, -0.022777920588850975, 0.035200998187065125, -0.022271135821938515, 0.01318325288593769, -0.017093714326620102, -0.0010246982565149665, -0.013546220026910305, -0.008135950192809105, -0.0035046907141804695, 0.014806333929300308, 0.0022805314511060715, 0.00923170056194067, 0.01860037073493004, 0.020531632006168365, 0.010731509886682034, 0.002468863734975457, -0.010943811386823654, -0.017353953793644905, 0.008334554731845856, -0.01860037073493004, 0.017134804278612137, -0.0011445459676906466, -0.0005572920199483633, -0.0035235239192843437, 0.012505256570875645, -0.024175003170967102, 0.0024294850882142782, 0.028955217450857162, 0.012607983313500881, 0.008745461702346802, 0.0022120471112430096, -0.014395426958799362, 0.006790230982005596, 0.00927279144525528, 0.036269351840019226, -0.023640824481844902, 0.01158071681857109, 0.00925909448415041, 0.001465566805563867, 0.03777601197361946, 0.0046637896448373795, -0.01790183037519455, -0.004454912152141333, 0.023312099277973175, 0.0011993335792794824, 0.015491178259253502, 0.04966490715742111, 0.01790183037519455, 0.010854781605303288, 0.004711728543043137, 0.029037397354841232, -0.0010187058942392468, 0.01934000290930271, 0.01027266401797533, 0.016628019511699677, -0.026818502694368362, 0.0005307543324306607, 0.01110132597386837, 0.001867912826128304, 0.013018890284001827, -0.008786552585661411, -0.0013371584936976433, 0.0033249189145863056, -0.008985157124698162, -0.008560553193092346, -0.008594796061515808, 0.02158629149198532, -0.0232436154037714, 0.03040708601474762, 0.026174748316407204, 0.0015956872375681996, 0.02554469183087349, 0.026873290538787842, -0.003574887290596962, 0.011710837483406067, -0.0034533273428678513, 0.030954962596297264, -0.008601644076406956, -0.007937345653772354, -0.022572467103600502, -0.009334427304565907, -0.01211489550769329, 0.013820157386362553, -0.018162069842219353, -0.00607799319550395, -0.031174112111330032, -0.017134804278612137, -0.0031177536584436893, -0.010375390760600567, 0.019326305016875267, 0.0038008857518434525, 0.011491687037050724, -0.016614321619272232, -0.02060011588037014, 0.024051731452345848, 0.00708813825622201, 0.0034636000636965036, -0.02073708549141884, -0.011745079420506954, -0.00015890526992734522, 0.006276597734540701, 0.01801140420138836, 0.007389470003545284, -0.014888514764606953, -0.022134168073534966, -0.004359033890068531, 0.014491304755210876, 0.012484711594879627, 0.05026756972074509, -0.02765401266515255, -0.014217367395758629, -0.003314646426588297, 0.010841084644198418, 0.02690068446099758, -0.023558642715215683, -0.02944830432534218, 0.022161561995744705, -0.00951248686760664, -0.03599541634321213, -0.024681787937879562, -0.02054532803595066, -0.026147354394197464, 0.003054405562579632, -0.02425718493759632, -0.03144805133342743, -0.004252883139997721, 0.009334427304565907, 0.008320857770740986, -0.01666910946369171, -0.008704370819032192, 0.004800758324563503, 0.025133784860372543, -0.0054102698341012, -0.0033180706668645144, 0.008067465387284756, 0.009622062556445599, 0.07796267420053482, 0.007896254770457745, -0.003913884982466698, 0.024147609248757362, -0.016121234744787216, -0.015778811648488045, -0.024517426267266273, -0.025681661441922188, 0.047199469059705734, 0.019257821142673492, -0.015833599492907524, 0.002088775159791112, 0.02594190090894699, -0.009087883867323399, 0.01635408215224743, 0.007451105862855911, -0.01632668823003769, -0.03383130952715874, 0.02105211280286312, 0.012779194861650467, 0.011758776381611824, -0.012655922211706638, 0.023599734529852867, 0.024120215326547623, 0.04218640923500061, 0.016655413433909416, 0.034077852964401245, 0.01886061206459999, 0.00512948352843523, -0.00028164222021587193, -0.009464547969400883, 0.01240937877446413, 0.0018833217909559608, 0.01953175850212574, -0.05708862096071243, 0.01469675824046135, -0.0012661059154197574, -0.006468354258686304, -0.006831321865320206, 0.013368160463869572, -0.0038590976037085056, 0.03385870158672333, 0.0032923889812082052, -0.011162961833178997, 0.01520354300737381, -0.0169704407453537, -0.008533160202205181, 0.024298274889588356, -0.018559280782938004, -0.013792764395475388, 0.007656559348106384, 0.014518698677420616, -0.017833344638347626, 0.024407850578427315, -0.0011000311933457851, -0.012032713741064072, 0.011450596153736115, -0.019161943346261978, -0.014395426958799362, -0.005817752331495285, -0.02928394265472889, 0.004187822807580233, -0.0102863609790802, -0.012539498507976532, -0.012875072658061981, -0.021709563210606575, -0.02748964913189411, -0.014614577405154705, -0.03437918424606323, 0.004297398030757904, -0.032872524112463, -0.02479136362671852, -0.04213162139058113, 0.022271135821938515, 0.019682424142956734, 0.020531632006168365, -0.013018890284001827, -0.0008496349328197539, 0.020586419850587845, 0.016312990337610245, 0.026065174490213394, -0.0020134421065449715, 0.00930018536746502, -0.033009495586156845, -0.011286233551800251, -0.013416099362075329, -0.014792636968195438, -0.005512996576726437, 0.012176531367003918, 0.02127126418054104, -0.008608493022620678, -0.01610753685235977, 0.026202142238616943, -0.0008928657625801861, 0.01581990346312523, -0.008855036459863186, 0.00821813102811575, -0.0013037723256275058, 0.011669746600091457, -0.03468051552772522, 0.0304618738591671, -0.0011668034130707383, -0.01680607907474041, -0.00023883944959379733, 0.03169459477066994, 0.017381347715854645, -0.01958654634654522, -0.013464038260281086, -0.007567529566586018, -0.011854654178023338, 0.007786679547280073, -0.008033223450183868, -0.020874053239822388, -0.018778430297970772, 0.013813309371471405, -0.032954707741737366, 0.0027753314934670925, 0.015121362172067165, 0.005297270603477955, -0.00583829777315259, -0.013744824565947056, -0.0020339875482022762, 0.03815952315926552, 0.022462893277406693, 0.0006608747644349933, 0.009437154047191143, 0.015984265133738518, 0.002458591014146805, -0.03594062849879265, -0.010464420542120934, 0.00010267314064549282, 0.0037871890235692263, -0.012546347454190254, -0.018737340345978737, -0.017655285075306892, 0.0017369362758472562, -0.020394662395119667, 0.010978054255247116, -0.009341276250779629, 0.011025993153452873, -0.0467611663043499, 0.02546251006424427, 0.016025356948375702, -0.011162961833178997, 0.006351930554956198, -0.028681278228759766, -0.031831562519073486, 0.00034092404530383646, 0.0021709564607590437, 0.03240683302283287, 0.000407696352340281, -0.009745334275066853, -0.04150156304240227, -0.018230555579066277, -0.009663152508437634, -0.0205727219581604, 0.019244125112891197, 0.006886109244078398, 0.03996751084923744, 0.020559025928378105, 0.00682104891166091, 0.012594286352396011, 0.021435625851154327, 0.019504364579916, -0.006101962644606829, -0.000669435306917876, -0.004475457593798637, -0.006875836756080389, 0.023366887122392654, -0.024942029267549515, 0.002222319832071662, 0.004218640737235546, -0.020243996754288673, -0.02242180146276951, 0.003701583482325077, 0.010347996838390827, 0.002854088554158807, 0.001658179215155542, -0.021736957132816315, -0.04026884585618973, 0.0036981592420488596, 0.027900556102395058, 0.0169704407453537, -0.003193086478859186, -0.024859847500920296, 0.005547238513827324, 0.017189592123031616, -0.005355482455343008, 0.036269351840019226, -0.009224852547049522, 0.0315302312374115, -0.009163216687738895, 0.020257694646716118, 0.02265464887022972, 0.0009545017383061349, 0.0045302449725568295, -0.013963975012302399, -0.0339408814907074, -0.015600753016769886, 0.024709181860089302, 0.018792128190398216, -0.0038864912930876017, 0.015422693453729153, 0.009923393838107586, -0.0051192110404372215, 0.013375009410083294, -0.012854527682065964, -0.026941774412989616, 0.003756370861083269, -0.020956235006451607, -0.010758903808891773, -0.03898133710026741, -0.016628019511699677, 0.013470887206494808, -0.03676244243979454, -0.000455421453807503, -0.008430433459579945, 0.011231446638703346, -0.007129229139536619, -0.02931133471429348, 0.01469675824046135, 0.019230427220463753, 0.011813564226031303, 0.015559662133455276, 0.007053896319121122, 0.011210900731384754, 0.0029893452301621437, -0.024435244500637054, -0.029667453840374947, 9.577119635650888e-05, -0.0036673410795629025, -0.0022274560760706663, 0.04098108410835266, -0.025695357471704483, -0.016230810433626175, -0.011347869411110878, -0.0018370947800576687, -0.01568293385207653, -0.034077852964401245, 0.024079125374555588, 0.012299803085625172, 0.005872539710253477, -0.01638147607445717, -0.02375040017068386, 0.019600244238972664, 0.004841849207878113, -0.02135344408452511, 0.011614958755671978, 0.018929095938801765, -0.0032906767446547747, 0.000728075101505965, 0.03331082686781883, -0.006560808513313532, 0.027996433898806572, 0.005725298076868057, 0.002290804171934724, -0.01613493077456951, 0.0189701858907938, 0.008238676935434341, -0.03476269543170929, 0.006362203508615494, 0.01790183037519455, -0.02650347352027893, 0.014751546084880829, 0.0102863609790802, 0.003146859584376216, 0.0006711474270559847, -0.012012168765068054, -0.030708417296409607, 0.03048926778137684, 0.01059454120695591, -0.01613493077456951, 0.0017823072848841548, -0.007540135644376278, 0.011334173381328583, -0.03163980692625046, -0.02118908241391182, -0.00367076531983912, 0.0033899792470037937, 0.0051979683339595795, 0.0062492042779922485, -0.017381347715854645, -0.013573613949120045, 0.006081417202949524, 0.008923521265387535, -0.004287125077098608, -0.0185729768127203, -0.0007798664155416191, 0.0006030910299159586, -0.025366632267832756, -0.020668599754571915, -0.004485730081796646, -0.003367721801623702, -0.0024894089438021183, 0.003975521307438612, -0.0013953702291473746, -0.001989472657442093, 0.013121617026627064, -0.02509269490838051, 0.016573231667280197, 0.00490348506718874, 0.025051604956388474, -0.03495445102453232, 0.03350258246064186, -0.020189208909869194, -0.0027154076378792524, 0.02599668875336647, 0.011669746600091457, -0.038515642285346985, -0.013731127604842186, 0.004095369018614292, -0.0043282159604132175, 0.009375518187880516, 0.013457190245389938, 0.004352185409516096, -0.01008775644004345, 0.005619147326797247, -0.025613175705075264, -0.03246162086725235, 0.0038248554337769747, -0.013306524604558945, -0.013977671973407269, 0.025955598801374435, -0.011820412240922451, 0.008389342576265335, -0.006666959263384342, 0.004879515618085861, -0.007231955882161856, -0.02917436696588993, -0.0017429287545382977, -0.023010767996311188, 0.0063176886178553104, -0.006951169576495886, -0.013347615487873554, -0.0006758557283319533, -0.046213291585445404, -0.005310967564582825, 0.03027011826634407, -0.004167277365922928, 0.011347869411110878, 0.024805059656500816, -0.007601771503686905, -0.013553068041801453, 0.007793528027832508, 0.0010195618961006403, -0.035228390246629715, -0.02383258193731308, 0.012765497900545597, -0.03161241114139557, -0.0201755128800869, -0.01860037073493004, 0.03169459477066994, 0.02318882755935192, -0.023079251870512962, -0.03027011826634407, -0.016408869996666908, -0.04081672057509422, 0.012368287891149521, -0.029064791277050972, 0.03689941018819809, 0.018107283860445023, 0.01658692955970764, 0.020901447162032127, 0.01773746684193611, -0.0019295488018542528, 0.032872524112463, -0.01883321814239025, -0.009252246469259262, -0.00708813825622201, -0.02639389969408512, 0.03218768164515495, -0.024942029267549515, -0.035228390246629715, -0.008348251692950726, 0.03150283545255661, -0.01806619204580784, 0.015751417726278305, 0.009081034921109676, 0.002925997134298086, -0.008341403678059578, 0.008211283013224602, 0.0118888970464468, 0.005256179720163345, -0.00042438943637534976, 0.020367268472909927, -0.03391348943114281, 0.010238422080874443, 0.022613558918237686, 0.002468863734975457, -0.024695485830307007, -0.002799300942569971, 0.014915908686816692, -0.018956489861011505, 0.006766261532902718, -0.03133847564458847, -0.002408939879387617, -0.022024592384696007, -0.01618971861898899, -0.01030005794018507, -0.003742674132809043, -0.00554381450638175, 0.02720201574265957, 0.0028849064838141203, -0.031941138207912445, -0.012368287891149521, 0.0011145840398967266, 0.007300440222024918, -0.013765370473265648, 0.014984393492341042, -0.025174876675009727, -0.002141850534826517, -0.01942218467593193, 0.027941647917032242, 0.004341912921518087, -0.018162069842219353, -0.0232436154037714, 0.0017266636714339256, -0.012073804624378681, 0.003401963971555233, -0.0013414387358352542, -0.010752055794000626, 0.003811158472672105, -0.041775502264499664, -0.004239186178892851, -0.026845896616578102, -0.010443875566124916, 0.002075078198686242, -0.024599606171250343, -0.011512232944369316, 0.0042563071474432945, 0.008074314333498478, -0.014518698677420616, -0.0032649950589984655, 0.030708417296409607, -0.015751417726278305, 0.0007957034395076334, 0.2084118127822876, 0.009841212071478367, -0.012149137444794178, 0.04040581360459328, 0.0025955599267035723, -0.014285852201282978, -0.006591626442968845, 0.015340511687099934, 0.004660365171730518, 0.019860483705997467, 0.001658179215155542, 0.023092949762940407, -0.01416257955133915, -0.008629037998616695, 0.00026922940742224455, -0.007923648692667484, -0.0175046194344759, -0.018148373812437057, 0.004475457593798637, 0.00027864600997418165, 0.015669237822294235, -0.0006827041506767273, -0.010067211464047432, -0.0053246645256876945, 0.023764096200466156, 0.014833726920187473, -0.00129264360293746, 0.01472415216267109, 0.014121489599347115, 0.012019017711281776, -0.025681661441922188, -0.006375900469720364, 0.01468306127935648, -0.015545965172350407, -0.012840830720961094, 0.001550316228531301, 0.00924539752304554, -0.013806460425257683, 0.01936739683151245, 0.019572850316762924, 0.002342167543247342, -0.008101708255708218, 0.030078360810875893, -0.01390918716788292, 0.013820157386362553, -0.0014758394099771976, 0.012580589391291142, -0.013525675050914288, 0.025051604956388474, 0.03654329106211662, 0.011793018318712711, 0.010211028158664703, 0.0014441653620451689, -0.0020459722727537155, -0.017436135560274124, -0.01468306127935648, -0.004660365171730518, 0.006615595892071724, -0.012066956609487534, 0.03361215814948082, -0.009670001454651356, -0.003574887290596962, -0.0076976497657597065, 0.008772855624556541, -0.03665286675095558, 0.008779703639447689, -0.012875072658061981, 0.04673377424478531, 0.01894279383122921, 0.004763091914355755, -0.019764605909585953, -0.01792922429740429, -0.018737340345978737, -0.000580833584535867, -0.008478372357785702, -0.017134804278612137, 0.003831703681498766, 0.01886061206459999, 0.04418615251779556, 0.017751164734363556, 0.01953175850212574, 0.013929733075201511, -0.023531250655651093, 0.0012832270003855228, -0.004509699530899525, -0.023572340607643127, 0.02917436696588993, -0.014518698677420616, 0.0022616982460021973, -0.010697267949581146, -0.011793018318712711, -0.01052605640143156, -0.01843600906431675, -0.0015648691914975643, -0.00023948148009367287, -0.018819520249962807, 0.011265688575804234, 0.02546251006424427, -0.011039690114557743, -0.013936581090092659, -0.01627190038561821, 0.04870612546801567, 0.03139326348900795, 0.027462255209684372, -0.018216857686638832, -0.006129356566816568, -0.016901956871151924, 0.02925654873251915, 0.004276852589100599, -0.007704498246312141, -0.017559407278895378, -0.02928394265472889, 0.008211283013224602, 0.0005585761391557753, 0.013087374158203602, 0.03361215814948082, 0.016340384259819984, -0.013258585706353188, -0.012909314595162868, 0.00503702973946929, 0.0108205396682024, -0.030900174751877785, 0.005738995037972927, 0.0004350901290308684, -0.016655413433909416, -0.01891539990901947, -0.00899200513958931, 0.018052496016025543, -0.017641589045524597, -0.01565553992986679, 0.013395554386079311, -0.0028489523101598024, 0.010532905347645283, -0.014628274366259575, -0.0031434353440999985, 0.010697267949581146, -0.003574887290596962, -0.020983628928661346, -0.0011265688808634877, 0.00490348506718874, 0.004280276596546173, 0.013231191784143448, 0.025133784860372543, 0.0027085591573268175, 0.009895999915897846, 0.0009382366552017629, 0.008457827381789684, 0.011416354216635227, -0.01006036251783371, -0.015066574327647686, 0.013874945230782032, 0.04322737082839012, 0.0028883307240903378, 0.0017095425864681602, 0.0228464063256979, -0.03451615199446678, -0.01725807599723339, -0.023010767996311188, 0.016655413433909416, 0.0002666612563189119, -0.05333567410707474, -0.0012464165920391679, 0.032817739993333817, 0.01104653812944889, -0.007334682159125805, 0.0051911198534071445, -0.1747722625732422, 0.006838170345872641, -0.0002257846063002944, -0.009327579289674759, -0.012813436798751354, 0.029667453840374947, 0.01846340112388134, -0.013902339152991772, -0.03561190143227577, -0.010224725119769573, 0.01076575182378292, 0.01781964860856533, -0.02540772221982479, -0.01843600906431675, 0.008930369280278683, -0.004054278135299683, 0.004187822807580233, 0.02807861566543579, 0.05021278187632561, 0.0006184999947436154, 0.0360775962471962, -0.016792381182312965, 0.012621680274605751, -0.027462255209684372, 0.024859847500920296, 0.010532905347645283, -0.011731382459402084, 0.016039052978157997, -0.0049856663681566715, -0.032132893800735474, -0.008101708255708218, -0.000785430776886642, 0.0303249042481184, 0.001922700321301818, 0.0151624521240592, 0.0013371584936976433, 0.019066065549850464, 0.004978817887604237, -0.010142544284462929, 0.021983502432703972, 0.026654139161109924, 0.0029842089861631393, 0.01471045520156622, 0.004845273215323687, 0.024092821404337883, 0.031968530267477036, 0.01801140420138836, -0.012402529828250408, 0.0015374753857031465, 0.005067847669124603, 0.03492705896496773, -0.030050966888666153, -0.015052877366542816, -0.0032906767446547747, 0.0032102076802402735, -0.0009536456782370806, 0.012936708517372608, 0.009135822765529156, 0.0049856663681566715, -0.017038926482200623, -0.012217622250318527, -0.006738867610692978, -0.005112362559884787, -0.006862139794975519, -0.0053143915720283985, -0.036159779876470566, -0.019038671627640724, 0.03399566933512688, -0.00022257439559325576, 0.008512614294886589, 0.007382621522992849, -0.004204943776130676, -0.014861120842397213, 0.022558771073818207, -0.003968672826886177, 0.015039180405437946, -0.016764989122748375, 0.014943302609026432, 0.027886860072612762, 0.008505766279995441, 0.008108556270599365, 0.01084793359041214, 0.0012661059154197574, -0.0025835749693214893, -0.04237816482782364, -0.009854909032583237, 0.017888132482767105, 0.006187567953020334, -0.008526311255991459, -0.005865691229701042, 0.013032587245106697, -0.01747722551226616, 0.014737849123775959, 0.0008059761021286249, -0.006670383270829916, 0.0032376013696193695, 0.012210773304104805, -0.009519335813820362, -0.004615850280970335, -0.02054532803595066, 0.0030372843611985445, 0.0018233979353681207, -0.007184016518294811, 0.011758776381611824, 0.028790853917598724, 0.027832072228193283, 0.017860738560557365, -0.00490348506718874, 0.020216602832078934, -0.014820029959082603, -0.022298529744148254, 0.023449068889021873, 0.02768140658736229, 0.0012361439876258373, -0.009800122119486332, 0.047007713466882706, 0.00591705460101366, -0.008279767818748951, 0.0024962574243545532, -0.004317943472415209, 0.06727910041809082, -0.03498184680938721, -0.02172326110303402, 0.01860037073493004, -0.017271773889660835, -0.018093585968017578, -0.10842454433441162, -0.024517426267266273, 0.019833089783787727, 0.005095241591334343, -0.020819267258048058, -0.00451654801145196, -0.011950532905757427, 0.02925654873251915, -0.003883067052811384, 0.01466936431825161, -0.02327100932598114, -0.021202778443694115, -0.013779067434370518, -0.01059454120695591, 0.012827133759856224, -0.020422056317329407, 0.02276422455906868, -0.03224246948957443, -0.009252246469259262, 0.02487354539334774, 0.011320476420223713, -0.02909218519926071, 0.018120979890227318, 0.005389724392443895, -0.01992896944284439, -0.006101962644606829, -0.03572147712111473, 0.014943302609026432, 0.017408741638064384, 0.0028558007907122374, 0.036296747624874115, 0.004180974327027798, 0.024832453578710556, -0.010334299877285957, -0.010437026619911194, -0.01894279383122921, -0.012066956609487534, 0.006348506547510624, 0.022777920588850975, -0.029968786984682083, 0.0007978436187840998, 0.011347869411110878, 0.0035783112980425358, -0.009046792984008789, -0.0035988567396998405, 0.013813309371471405, -0.004300822038203478, 0.018655158579349518, 0.009012551046907902, -0.004420669749379158, -0.022558771073818207, -0.014107792638242245, 0.00029662318411283195, -0.02920176088809967, 0.026119960471987724, -0.0045233964920043945, 0.003302661469206214, 0.0031845259945839643, -0.019038671627640724, -0.007293591741472483, -0.00499593885615468, -0.0025596055202186108, -0.010464420542120934, 0.022134168073534966, -0.0032512983307242393, -0.0014912484912201762, -0.00977957621216774, 0.009176913648843765, -0.004293973557651043, 0.014094095677137375, -0.011957380920648575, -0.002491121180355549, -0.015997963026165962, 0.009690546430647373, -0.03235204517841339, 0.002141850534826517, -0.012868224643170834, -0.018641460686922073, 0.0019655032083392143, 0.0013679764233529568, -0.02498311921954155, -0.00531781604513526, 0.0006364771397784352, -0.03355737030506134, -0.007060744799673557, 0.01576511561870575, 0.0012566893128678203, -0.006499172188341618, 0.019408486783504486, -0.03813213109970093, 0.003958399873226881, 0.014381729997694492, 0.007002532947808504, 0.012518953531980515, -0.013984519988298416, 0.01629929430782795, -0.0033437523525208235, -0.005406845826655626, 0.009081034921109676, 0.0018901702715083957, -0.003328343154862523, 0.005578056909143925, -0.0392826683819294, 0.005225361790508032, 0.006447808817028999, 0.01618971861898899, 0.0001264821767108515, -0.04665159434080124, -0.005139756482094526, -0.020531632006168365, -0.006653262302279472, 0.004119338467717171, -0.03027011826634407, 0.01638147607445717, -0.009313882328569889, -0.006951169576495886, -0.022572467103600502, -0.01465566735714674, 0.01216968335211277, -0.013772218488156796, 0.01608014479279518, 0.011882048100233078, -0.012813436798751354, 0.019326305016875267, 0.001867912826128304, 0.016559535637497902, -0.01939479075372219, 0.018367523327469826, -0.0012780906399711967, 0.021339748054742813, 0.0032581468112766743, -0.019244125112891197, 0.009293337352573872, 0.008423584513366222, 0.0030424208380281925, 0.010909569449722767, 0.0015340512618422508, -0.013169555924832821, -0.020586419850587845, 0.008177041076123714, 0.004906909540295601, -0.004393276292830706, 0.013765370473265648, -0.008492069318890572, 0.02936612255871296, -0.02343537099659443, -0.031091930344700813, -0.01851818896830082, -0.01338870543986559, -0.012217622250318527, 0.007231955882161856, 0.023229917511343956, 0.015491178259253502, 0.0036741895601153374, -0.01103284116834402, -0.025900810956954956, -0.01006036251783371, -0.010430178605020046, -0.0033523128367960453, 0.01860037073493004, -0.007690801285207272, -0.01666910946369171, 0.042761676013469696, -0.00264521106146276, -0.003763219341635704, -0.016737595200538635, 0.019298912957310677, -0.014368033036589622, -0.04752819240093231, -0.009039944969117641, 0.007738740649074316, -0.01947697065770626, -0.02369561232626438, 0.0006869844510219991, 0.019764605909585953, 0.013395554386079311, 0.0189701858907938, -0.008252373896539211, -0.003410524455830455, -0.01584729738533497, -0.017271773889660835, 0.024270880967378616, 0.01579250954091549, -0.012286106124520302, -0.01683347299695015, 0.007951042614877224, 0.016039052978157997, -0.002150411019101739, -0.02073708549141884, 0.005225361790508032, 0.0009527896181680262, 0.008423584513366222, -0.027530740946531296, 0.0012866512406617403, -0.006221810355782509, 0.0008697522571310401, 0.0022206075955182314, 0.023120343685150146, -0.009587819688022137, -0.000579549465328455, 0.02442154660820961, 0.028571704402565956, -0.0010520920623093843, 0.01243677269667387, -0.01517614908516407, -0.00848522037267685, 0.003917309455573559, 0.0014176276745274663, -0.004557638894766569, -0.030653629451990128, 0.010978054255247116, 0.025476207956671715, 0.007464802823960781, -0.023010767996311188, -0.009930241852998734, 0.005954721011221409, -0.0034173729363828897, 0.004920606035739183, 0.009950787760317326, -0.024106519296765327, -0.028900429606437683, 0.009183761663734913, 0.009238549508154392, 0.03459833189845085, 0.01579250954091549, -0.008574250154197216, 0.05067847669124603, -0.003448191098868847, 0.01077944878488779, -0.01568293385207653, -0.0008175328839570284, -0.006940897088497877, 0.00451654801145196, 0.004920606035739183, 0.0077524371445178986, -0.012197076342999935, -0.013443493284285069, -0.0015032332157716155, 0.0005512996576726437, 0.02396954968571663, -0.01953175850212574, 0.0841536670923233, 0.025421420112252235, -0.02607887051999569, 0.008115405216813087, -0.0004246034659445286, 0.034214820712804794, 0.02099732682108879, 0.011628655716776848, 0.0012772346381098032, -0.002785604214295745, 0.023517552763223648, 6.559523899341002e-05, -0.0009904560865834355, 0.006889533717185259, -0.01744983159005642, -0.0048623946495354176, 0.004184398800134659, 0.013696885667741299, -0.01525833085179329, -0.020380966365337372, 0.018614068627357483, -0.002859224798157811, -0.009204307571053505, 0.002229168079793453, -0.02188762277364731, -0.009368670172989368, 0.009580971673130989, 0.032817739993333817, 0.0027907404582947493, -0.02944830432534218, 0.01744983159005642, -0.013025738298892975, -0.020860357210040092, -0.01731286384165287, -0.018093585968017578, 0.01992896944284439, -0.014737849123775959, -0.010936963371932507, -0.0026006961707025766, 0.00026131089543923736, 0.014929605647921562, 0.020613813772797585, -0.028845641762018204, -0.025982992723584175, 0.024202397093176842, 0.019887877628207207, 0.004482306074351072, -0.029749635607004166, -0.01084793359041214], "0a13f4dd-7723-4ab1-8c78-ad41d2c9660a": [0.007882794365286827, -0.009853492490947247, 0.0070176091976463795, -0.043149370700120926, 0.013087635859847069, 0.03474472090601921, 0.003021280048415065, -0.011316066607832909, -0.009585697203874588, -0.024458633735775948, -0.011576995253562927, 0.019253794103860855, -0.02031124196946621, -0.005534435622394085, -0.02018764428794384, 0.011995854787528515, 0.02401917614042759, -0.007903393357992172, -0.012888506054878235, -0.006763547193259001, -0.02980080619454384, -0.009359101764857769, -0.024829428642988205, 0.009860359132289886, -0.028976822271943092, -0.0024650897830724716, 0.0008123981533572078, -0.01018308661878109, -0.0181276798248291, -0.00010755799303296953, 0.020723232999444008, 0.004727616440504789, -0.030707191675901413, -0.00644768588244915, -4.4552078179549426e-05, 0.009668095968663692, 0.015669455751776695, -0.0034607388079166412, 0.02018764428794384, -0.0026522031985223293, 0.01479053869843483, 0.009455232881009579, -0.006320654880255461, -0.015738122165203094, -0.01394595392048359, 0.02974587492644787, -0.0022590933367609978, -0.007306004408746958, -0.0184023417532444, 0.00835658609867096, 0.0009329918539151549, 0.0026247368659824133, -0.012442179955542088, 0.006698315031826496, 0.02754857949912548, -0.006753247231245041, 0.0083291195333004, -0.00038345364737324417, 0.02183561399579048, -0.012648176401853561, 0.008411518298089504, 0.00934536848217249, -0.010135021060705185, -0.012222451157867908, -0.008562581613659859, -0.04051261767745018, -0.015806786715984344, 0.004686417058110237, -0.004727616440504789, -0.0027449014596641064, 0.041309136897325516, 0.030597325414419174, 0.018100213259458542, -0.017029032111167908, -0.013616359792649746, -0.02392304316163063, -0.021519754081964493, -0.024513566866517067, -0.000619705708231777, 0.017935415729880333, 0.016987834125757217, -0.005651166662573814, -0.013492761179804802, 0.011789858341217041, 0.016932900995016098, 0.02230254001915455, 0.02226134017109871, 0.013005237095057964, -0.01378115639090538, -0.0218218807131052, -0.004449521191418171, -0.01378115639090538, 0.023552250117063522, 0.010258618742227554, 0.0330418162047863, 0.0036118028219789267, 0.034195397049188614, 0.013492761179804802, -0.019487256184220314, -0.02364838309586048, -0.013650692068040371, 0.002420457312837243, -0.030487461015582085, -0.01481800526380539, -0.007079408038407564, -0.03543137386441231, 0.011391598731279373, -0.01117873564362526, 0.015092666260898113, 0.017166363075375557, -0.010251752100884914, 0.03098185360431671, -0.010581346228718758, 0.0008488766616210341, 0.009475832805037498, -0.011226802133023739, 0.030926920473575592, -0.032465025782585144, -0.0200777780264616, -0.008871576748788357, 0.01675437018275261, 0.007903393357992172, 0.04202325642108917, -0.01680930331349373, 0.004322490189224482, -0.00011630211520241573, 0.027109121903777122, -0.003211826551705599, 0.007704264018684626, -0.002602420747280121, 0.0020204810425639153, 0.017042765393853188, 0.03751880303025246, 0.006581583525985479, -0.01675437018275261, 0.014460944570600986, -0.03287702053785324, 0.005225440952926874, -0.0017046198481693864, -0.02048977091908455, 0.02559848129749298, 0.0374913364648819, 0.0075531997717916965, -0.011425931937992573, -0.0026419032365083694, 0.035541240125894547, 0.014131350442767143, 0.008713645860552788, 0.010746143758296967, 0.0037731665652245283, 0.005434870719909668, -0.014982801862061024, -0.023236390203237534, 0.0056065344251692295, -0.00645111920312047, -0.00207712990231812, 0.008102523162961006, 0.02406037412583828, -0.0109452735632658, 0.008521382696926594, 0.005400537978857756, 0.026271402835845947, 0.008857843466103077, 0.0045250533148646355, 0.00776606285944581, 0.023085325956344604, 0.011631927452981472, -0.031970635056495667, -0.005809097550809383, -0.012373514473438263, 6.394470256054774e-05, 0.038013193756341934, -0.008274187333881855, 0.02183561399579048, -0.007257938385009766, 0.012565777637064457, -0.007216739002615213, 0.004058128222823143, -0.015559591352939606, -0.03293194994330406, 0.021808147430419922, -0.02767217718064785, 0.009283569641411304, 0.017482224851846695, -0.000728282961063087, -0.034305259585380554, 0.014845470897853374, 0.012840439565479755, -0.005668333265930414, -0.0017252195393666625, 0.014392279088497162, 0.015188798308372498, -0.02547488361597061, -0.0074639348313212395, -0.6284262537956238, -0.003125994699075818, 0.0034761885181069374, -0.017495958134531975, 0.009407167322933674, -0.0071755400858819485, 0.008638113737106323, 0.004106194246560335, -0.015284930355846882, 0.017427291721105576, 0.006258856039494276, -0.004882113542407751, -0.0039036311209201813, -0.01216065138578415, -0.03268475458025932, -0.012600110843777657, 0.0013355431146919727, -0.029828272759914398, -0.019363658502697945, 0.0031689107418060303, 0.002480539493262768, 0.0024290403816848993, -0.01117186900228262, 0.004731049761176109, -0.01856713928282261, -0.028537362813949585, 0.030569860711693764, 0.00545890349894762, 0.004411755595356226, 0.022577201947569847, -0.026806993409991264, 0.025255152955651283, 0.006746380589902401, -0.009517031721770763, 0.04122673720121384, -0.018951665610074997, -0.014433478005230427, 0.028152836486697197, 0.006667415611445904, 0.03251995891332626, -0.03565110266208649, -0.014529610052704811, 0.0166582390666008, 0.01874566823244095, -0.03175090625882149, -0.002854766324162483, 0.02779577486217022, -0.002315742429345846, -0.00922177080065012, -0.008054457604885101, 0.012744308449327946, -0.000620134873315692, -0.00995649117976427, 0.0025869710370898247, 0.004130227025598288, -0.02588687650859356, 0.02006404474377632, -0.037903331220149994, 0.007051941938698292, 0.002609287155792117, 0.0029697809368371964, 0.0166582390666008, -0.005915528628975153, -0.04279230907559395, -0.05674513056874275, 0.01674063690006733, -0.007717996835708618, -0.01181045826524496, 0.001060022972524166, -0.0260654054582119, 0.017770620062947273, -0.0077111306600272655, -0.008960842154920101, -0.019020330160856247, 0.01182419154793024, 0.004641784820705652, 0.04825808107852936, 0.009262969717383385, 0.00416799308732152, 0.01391162071377039, 0.01106887124478817, -0.0068253460340201855, -0.017399825155735016, -0.0071686734445393085, 0.03861745074391365, 0.016850503161549568, -0.011755526065826416, -3.4681419492699206e-05, -0.0007875069277361035, 0.007903393357992172, -0.0045799859799444675, 0.04273737967014313, -0.01466694101691246, -0.03251995891332626, -0.0037045013159513474, 0.047049567103385925, 0.005565335042774677, 0.011460264213383198, -0.02009151130914688, -0.02779577486217022, -0.03098185360431671, -0.024911826476454735, 0.00834285281598568, 0.0012213867157697678, 0.008912775665521622, 0.022714532911777496, -0.013087635859847069, -0.028084170073270798, 0.023552250117063522, -0.019047796726226807, -0.008287920616567135, -0.006639949511736631, -0.01815514639019966, -0.023030392825603485, 0.01103453803807497, -0.022755730897188187, 0.0002705848019104451, 0.013163167051970959, 0.006519784685224295, -0.01989924907684326, -0.003465888788923621, -0.008734245784580708, 0.024637164548039436, 0.013245565816760063, 0.02206907607614994, 0.0164522435516119, 0.006512918509542942, -0.012613844126462936, 0.015916652977466583, -0.000734720379114151, -0.0020187643822282553, -0.01636984385550022, -0.005194541532546282, -0.0012007871409878135, 0.02396424300968647, 0.019088996574282646, 0.019720718264579773, -0.005870896391570568, 0.01005948893725872, -0.04542906582355499, -0.00022981468646321446, 0.0013269599294289947, 0.014612008817493916, -0.02422517165541649, -0.008871576748788357, -0.035678569227457047, -0.0015106400242075324, 0.0001363652991130948, 0.002818716922774911, 0.004264124669134617, -0.018100213259458542, -0.010711810551583767, 0.013643825426697731, 0.021107761189341545, -0.01468067429959774, 0.0038933311589062214, -0.010979605838656425, -0.044193085283041, -0.025406217202544212, -0.041501399129629135, -0.016974100843071938, 0.017221296206116676, -0.020764432847499847, -0.003148311050608754, -0.02378571406006813, -0.02190428040921688, -0.0014934736536815763, -0.006694881711155176, -0.008081924170255661, -0.015381061471998692, 0.0005759315099567175, -0.00731287058442831, -0.01391162071377039, 0.015161331743001938, -0.013005237095057964, 0.015861719846725464, -0.00906383991241455, -0.005287239793688059, -0.005431437399238348, -0.006488885264843702, 0.017866751179099083, 0.028125369921326637, -0.016960367560386658, -0.02246733568608761, 0.03922170773148537, 0.009029506705701351, 0.004373989533632994, 0.028482429683208466, -0.040292888879776, 0.027122853323817253, -0.02741124853491783, 0.0039825960993766785, -0.023057859390974045, 0.007738596759736538, -0.017880484461784363, -0.004343090113252401, -0.014158816076815128, 0.011302333325147629, -0.0015853137010708451, 0.010801075957715511, 0.017853017896413803, 0.021684549748897552, 0.0004836622974835336, -0.0026865359395742416, 0.003745700465515256, -0.013403496704995632, 0.003646135563030839, -0.02568087913095951, 0.02215147577226162, 0.001769852009601891, 0.005685499403625727, -0.007889661006629467, 0.008590048179030418, -0.010505814105272293, 0.0031225616112351418, 0.02234373800456524, 0.02767217718064785, 0.017921684309840202, 0.004748215898871422, -0.002811850281432271, 0.01687796786427498, -0.0009613163419999182, 0.02412904053926468, -0.012682509608566761, 0.004669250920414925, 0.024335036054253578, -0.0032976584043353796, 0.03172343969345093, 0.010663744993507862, -0.014831737615168095, 0.002283126348629594, 0.026326334103941917, 0.0033817735966295004, 0.017770620062947273, 0.03875478357076645, 0.007189272902905941, 0.023373721167445183, -0.013341697864234447, 0.01837487518787384, -0.0018196345772594213, 0.015600791200995445, 0.008384051732718945, 0.008905909024178982, -0.019226327538490295, 0.007127474062144756, -0.00046134600415825844, -0.004988545086234808, 0.017564622685313225, -0.005359338596463203, 0.00229342607781291, -0.0013784589245915413, -0.01295030489563942, 0.0025474883150309324, -0.0025646546855568886, 0.01551839243620634, -0.02397797629237175, 0.022453604266047478, 0.019940447062253952, 0.009977090172469616, 0.01377428974956274, 0.03515671193599701, -0.01391848735511303, 0.012311715632677078, -0.0035122379194945097, 0.039523836225271225, -0.0273288507014513, -0.02381317876279354, -0.035568706691265106, -0.0009870658395811915, -0.01368502527475357, 0.006663982290774584, -0.02422517165541649, -0.011748659424483776, -0.020627101883292198, -0.023305054754018784, -0.005201408173888922, -0.013108234852552414, 0.00458685215562582, -0.02201414480805397, 0.017454758286476135, -0.013417229987680912, -0.03512924537062645, 0.036172959953546524, 0.010698077268898487, 0.008583181537687778, -0.0035191045608371496, -0.008837243542075157, -0.0016402460169047117, -0.007251071743667126, 0.016232512891292572, 0.00208742986433208, -0.0056992326863110065, -0.0018041847506538033, -0.004288157448172569, 0.014927869662642479, 0.003886464750394225, 0.048779938369989395, -0.032025568187236786, -0.016850503161549568, 0.00020760571351274848, 0.01831994391977787, 0.011762391775846481, -0.015751855447888374, -0.03381086885929108, 0.018992863595485687, -0.01849847286939621, -0.043204303830862045, -0.032465025782585144, -0.028482429683208466, -0.03293194994330406, 0.016122648492455482, -0.014337346889078617, -0.024774495512247086, -0.01687796786427498, -0.00036821849062107503, -0.00042036132072098553, 0.004720749799162149, -0.006221089977771044, 0.005197974853217602, 0.02933388203382492, -0.013382896780967712, -0.0048718140460550785, 0.010622546076774597, 0.028207767754793167, 0.08470570296049118, 0.008953975513577461, 0.008143723011016846, 0.02375824749469757, -0.00690431147813797, -0.01845727302134037, -0.02059963531792164, -0.028454963117837906, 0.04589598998427391, 0.012153785675764084, -0.01822381094098091, -0.0035019381903111935, 0.027067922055721283, -0.019473522901535034, 0.01205078698694706, 0.008727379143238068, -0.021203892305493355, -0.02414277382194996, 0.0038006328977644444, 0.017729420214891434, 0.026381267234683037, -0.005695799365639687, 0.026230202987790108, 0.020736966282129288, 0.03496444970369339, 0.034277793020009995, 0.03122904896736145, 0.02202787809073925, 0.0036804683040827513, -0.009359101764857769, -0.017289960756897926, 0.008885310031473637, -0.00017338026373181492, 0.02195921167731285, -0.04652770981192589, 0.02591434307396412, 0.005936128553003073, -0.01672690361738205, 0.003035013098269701, 0.017770620062947273, -0.0034161063376814127, 0.03315168246626854, -0.008129989728331566, 0.006540384609252214, 0.02377198077738285, -0.018800601363182068, -0.021547218784689903, 0.021341223269701004, -0.013602626509964466, -0.01004575565457344, 0.019775651395320892, 0.028702160343527794, 0.00905697327107191, 0.02231627330183983, 0.00776606285944581, -0.019720718264579773, 0.026175271719694138, -0.008425251580774784, -0.010423416271805763, -0.021409887820482254, -0.04455014690756798, 0.005833130329847336, -0.017880484461784363, -0.01647970825433731, -0.004446088336408138, -0.030844522640109062, -0.03172343969345093, -0.013362296856939793, -0.04045768454670906, 0.014227481558918953, -0.030267732217907906, -0.041748594492673874, -0.03350874036550522, 0.011789858341217041, 0.02568087913095951, 0.017029032111167908, -0.008912775665521622, -0.010334150865674019, 0.017688220366835594, 0.014158816076815128, 0.013994019478559494, -0.013410363346338272, 0.002396424300968647, -0.035678569227457047, 0.006567850708961487, -0.015051467344164848, -0.014241214841604233, -0.00514990882948041, 0.0036907680332660675, 0.018896732479333878, -0.011831057257950306, -0.023414919152855873, 0.015641991049051285, 0.000827418698463589, 0.02796057239174843, 0.0009638913325034082, 0.005579068325459957, -0.014254948124289513, 0.02952614426612854, -0.03490951657295227, 0.017166363075375557, -0.01859460398554802, -0.01380862295627594, -0.015957850962877274, 0.016987834125757217, 0.014323613606393337, -0.011734926141798496, -0.020146444439888, -0.008033857680857182, -0.0037971995770931244, 0.007745463401079178, 0.004940479528158903, -0.01667197234928608, -0.013547694310545921, 0.008644980378448963, -0.02952614426612854, 4.9728809244697914e-05, 0.013307364657521248, 0.025406217202544212, 0.000180783259565942, -0.018718203529715538, -0.0041370936669409275, 0.03633775934576988, 0.027081655338406563, -0.0036186694633215666, 0.023236390203237534, 0.009777960367500782, -0.00273631839081645, -0.030707191675901413, 0.0003980450564995408, 0.005445170681923628, 0.010684344917535782, -0.0036152361426502466, -0.012737441807985306, -0.019940447062253952, -0.0008651847019791603, -0.006708614993840456, 0.005342172458767891, -0.019432323053479195, 0.013231832534074783, -0.04650024697184563, 0.02027004212141037, 0.009592563845217228, -0.009764227084815502, -0.002830733312293887, -0.0273288507014513, -0.024747028946876526, -0.007882794365286827, 0.0015526976203545928, 0.03098185360431671, 0.005664899945259094, -0.010073222219944, -0.029993070289492607, -0.025365019217133522, -0.015916652977466583, -0.020846832543611526, 0.007848461158573627, 0.002710568718612194, 0.044879741966724396, 0.01192032266408205, 0.002123479265719652, -0.004291590768843889, 0.008638113737106323, 0.0005961019778624177, -0.013430962339043617, 0.0015707222046330571, -0.013980286195874214, -0.011885990388691425, 0.0023672415409237146, -0.01668570563197136, 0.009407167322933674, 0.010856008157134056, -0.0035070879384875298, -0.012277383357286453, 0.005579068325459957, 0.002413590671494603, -0.00830851960927248, -0.007820995524525642, -0.026408733800053596, -0.04180352762341499, -0.013362296856939793, 0.02572207897901535, 0.011103203520178795, -6.029685027897358e-05, -0.024815695360302925, 0.00817118864506483, 0.013204366900026798, 0.003852132009342313, 0.035760968923568726, -0.0053524719551205635, 0.03287702053785324, -0.013540827669203281, 0.013218100182712078, 0.02765844389796257, 0.008802911266684532, 0.0003137152816634625, -0.009235503152012825, -0.032053034752607346, -0.019143927842378616, 0.02009151130914688, 0.021354956552386284, 0.006856245454400778, 0.006622782908380032, 0.0032650423236191273, -0.013582026585936546, 0.007669931277632713, -0.028949355706572533, -0.0372166745364666, 0.013856688514351845, -0.02231627330183983, 0.004792848601937294, -0.039523836225271225, -0.025049157440662384, 0.025172755122184753, -0.023456119000911713, -0.0035843367222696543, 0.0004883830551989377, 0.015875453129410744, -0.01193405594676733, -0.026779526844620705, 0.010595079511404037, 0.009702428244054317, 0.02176694944500923, 0.015573324635624886, 0.009530765004456043, 0.009434632956981659, 0.006324088200926781, -0.023195190355181694, -0.02565341256558895, 0.013355431146919727, 0.0016144964611157775, 0.00830851960927248, 0.03342634439468384, 0.00036027905298396945, -0.02193174511194229, -0.003129428019747138, 0.00930416863411665, -0.006430519744753838, -0.02601047419011593, 0.023044126108288765, 0.02588687650859356, 0.010773609392344952, -0.012964037247002125, -0.020640835165977478, 0.009235503152012825, 0.016191313043236732, -0.015696922317147255, 0.01674063690006733, 0.008569448255002499, -0.005864029750227928, -0.004147393628954887, 0.04185846075415611, -0.01276490744203329, 0.024527300149202347, -0.0009020923753269017, 0.006688015069812536, -0.012689376249909401, 0.0008995174430310726, 0.00015374623762909323, -0.03122904896736145, 0.012222451157867908, 0.0129297049716115, -0.02395050972700119, 0.026422467082738876, 0.019130194559693336, 0.015696922317147255, -0.0018968831282109022, -0.01462574116885662, -0.021039094775915146, 0.032327696681022644, 0.018786868080496788, 0.00252345553599298, -0.01119246892631054, -0.01020368654280901, 0.015312395989894867, -0.03114664927124977, -0.028235234320163727, -0.01206452026963234, -0.007182406261563301, 0.0018951664678752422, 0.006736081093549728, -0.009050106629729271, -0.015243730507791042, 0.0016041966155171394, 0.007230472285300493, -0.0002517018001526594, -0.01654837466776371, 0.0037971995770931244, -0.008590048179030418, -0.012352915480732918, -0.015477193519473076, -0.004095894284546375, 0.0042297919280827045, -0.004360256250947714, 0.007415868807584047, -0.01293657161295414, 2.6715153580880724e-05, 0.021231358870863914, -0.02933388203382492, 0.012497112154960632, 0.00646485248580575, 0.02381317876279354, -0.04584105685353279, 0.041501399129629135, -0.019294992089271545, -0.0019449489191174507, 0.026422467082738876, 0.002375824609771371, -0.019569654017686844, -0.008981441147625446, 0.018704470247030258, 0.009118772111833096, 0.009750494733452797, 0.0024822561535984278, -0.0017277945298701525, -0.006197057198733091, 0.005658033303916454, -0.020723232999444008, -0.015216264873743057, 0.002001598011702299, -0.010437148623168468, 0.0044254884123802185, 0.020860563963651657, -0.0015029151691123843, 0.008747979067265987, -0.0055069695226848125, 0.019281258806586266, -0.0020256307907402515, -0.0326298251748085, -0.003110544988885522, -0.020640835165977478, -0.019500989466905594, -0.012964037247002125, -0.021107761189341545, 0.010265485383570194, -0.045181866735219955, -0.020640835165977478, 0.020654568448662758, -0.0015303812688216567, 0.012503978796303272, 0.03353620693087578, -0.003333707805722952, -0.0072716716676950455, 0.016040250658988953, -0.007216739002615213, -0.037738531827926636, -0.019349925220012665, 0.0037937662564218044, -0.02224760688841343, -0.011020805686712265, -0.028674693778157234, 0.021547218784689903, 0.024444902315735817, -0.02559848129749298, -0.019281258806586266, -0.007786662317812443, -0.04380856081843376, 0.005616833921521902, -0.0333164781332016, 0.04260004684329033, 0.032272763550281525, 0.019061530008912086, 0.017811818048357964, 0.022549735382199287, -0.01998164691030979, 0.047022104263305664, -0.016053983941674232, -0.0024856894742697477, -0.010231152176856995, -0.023305054754018784, 0.012263650074601173, -0.03663988783955574, -0.041364070028066635, -0.02966347523033619, 0.030075468122959137, -0.008919642306864262, 0.004710450302809477, 0.017853017896413803, -0.0007450201665051281, -0.015010268427431583, -9.500508895143867e-05, -0.001962115289643407, 0.016026517376303673, 0.010759877040982246, 0.012188117951154709, -0.03716174513101578, 0.015738122165203094, 0.024692097678780556, -0.005132742691785097, -0.013389763422310352, 0.005881195887923241, 0.023002926260232925, -0.008713645860552788, 0.004301890730857849, -0.02601047419011593, -0.014419745653867722, -0.03447005897760391, -0.020929230377078056, -0.017372360453009605, -0.004494153894484043, -0.009674962610006332, 0.03095438703894615, 0.013300498016178608, -0.02375824749469757, -0.0037765998858958483, 0.001999881351366639, 0.008837243542075157, -0.004301890730857849, 0.015422261320054531, -0.026793260127305984, -0.002283126348629594, -0.003663301933556795, 0.024431169033050537, -0.0010943557135760784, -0.021506020799279213, -0.02374451421201229, 0.006856245454400778, -0.01479053869843483, -0.009434632956981659, 0.0033766236156225204, -0.00502287782728672, 0.005002278368920088, -0.025104090571403503, 0.0014934736536815763, -0.026546064764261246, -0.00689744483679533, 0.0075600664131343365, -0.021643351763486862, -0.008864710107445717, 0.00252002221532166, 0.004919879604130983, -0.01669943891465664, 0.005146475974470377, 0.03111918270587921, -0.021190159022808075, 0.01663077250123024, 0.19863542914390564, 0.003029863117262721, -0.0010677478276193142, 0.030707191675901413, 0.0074570681899785995, -0.006557550746947527, -0.0011364133097231388, 0.016850503161549568, -0.0007634740322828293, 0.010643145069479942, 0.015724388882517815, 0.013266165740787983, -0.024898093193769455, -0.0035877700429409742, 0.0024565067142248154, -0.014213749207556248, -0.026353800669312477, -0.0241153072565794, -0.011405332013964653, -0.0017157780239358544, 0.017784353345632553, -0.0019037496531382203, 0.008706779219210148, -0.0019346491899341345, 0.029004286974668503, 0.02178068272769451, -0.001460857572965324, -0.0019569655414670706, 0.01377428974956274, 0.01632864400744438, -0.024582233279943466, -0.017207562923431396, 0.009235503152012825, -0.0168642345815897, -0.017482224851846695, -0.0007510284194722772, 0.009386567398905754, 0.008603781461715698, 0.014996535144746304, 0.022989192977547646, -0.0008162605809047818, 0.002798117231577635, 0.03337141126394272, -0.026381267234683037, 0.005070943851023912, 0.0004156405630055815, 0.014859204180538654, -0.006004794035106897, 0.015751855447888374, 0.03120158240199089, 0.0038383989594876766, 0.0146394744515419, 0.01104827132076025, 0.022989192977547646, -0.009990823455154896, -0.013994019478559494, -0.014227481558918953, 0.007065675221383572, -0.008514516055583954, 0.020640835165977478, -0.007484534289687872, -0.005627133883535862, 0.007862194441258907, 0.009846625849604607, -0.04260004684329033, -0.005009145010262728, -0.011741792783141136, 0.026971790939569473, 0.01380862295627594, 0.008397785015404224, -0.01836114190518856, -0.020846832543611526, -0.026738326996564865, 0.007532600313425064, -0.006502618547528982, -0.011851657181978226, 0.012243050150573254, 0.034003131091594696, 0.0370793454349041, 0.01631491258740425, 0.015504659153521061, 0.007546333130449057, -0.03166850656270981, -0.010780476033687592, 0.003153461031615734, -0.0362553596496582, 0.021039094775915146, -0.009276703000068665, 0.009050106629729271, -0.007930859923362732, -0.00251143891364336, -0.0015526976203545928, -0.01658957451581955, 0.003338857786729932, 0.012421580962836742, 0.007546333130449057, -0.00459028547629714, 0.021451087668538094, -0.006293188780546188, -0.007566933054476976, -0.03326154500246048, 0.04196832701563835, 0.029910672456026077, 0.028125369921326637, -0.004906146787106991, -0.003687334945425391, -0.003223842941224575, 0.017331160604953766, 0.002195577835664153, -0.006873412057757378, -0.017166363075375557, -0.024513566866517067, 0.014090151526033878, 0.00295261456631124, 0.019391123205423355, 0.03699694573879242, 0.008006392046809196, -0.013513361103832722, -0.013753690756857395, 0.009654362685978413, 0.017344893887639046, -0.02568087913095951, 0.005651166662573814, -0.006011660676449537, -0.012297982349991798, -0.02609287202358246, -0.017537156119942665, 0.01303270272910595, -0.013561426661908627, -0.028509896248579025, 0.001459999242797494, -0.00843211729079485, -8.293499558931217e-05, -0.009805426932871342, -0.010244885459542274, -0.007058808580040932, -0.010286085307598114, -0.030157867819070816, 0.0033216914162039757, 0.013616359792649746, 0.014364812523126602, 0.007917126640677452, 0.021135225892066956, -0.003972296603024006, -0.003340574214234948, 0.015120132826268673, -0.0007402994087897241, -0.005736998748034239, -0.0203524399548769, -0.01203705370426178, 0.00920803751796484, 0.04608825221657753, -0.0058983624912798405, -0.006708614993840456, 0.023346254602074623, -0.02555728144943714, -0.024499833583831787, -0.025241421535611153, 0.01667197234928608, -8.60463987919502e-05, -0.05674513056874275, 0.007985792122781277, 0.04954899102449417, 0.00932476855814457, -0.017441025003790855, -0.009620030410587788, -0.17501451075077057, 0.006406486965715885, -0.004212625790387392, -0.01106887124478817, -0.01030668430030346, 0.028235234320163727, 0.01844354160130024, -0.0026298868469893932, -0.02969094179570675, -0.014488411135971546, 0.0138017563149333, 0.011206202208995819, -0.03293194994330406, -0.024417435750365257, 0.012847306206822395, -0.024994224309921265, -0.0006033976678736508, 0.017152629792690277, 0.05468516796827316, 0.004631484858691692, 0.023195190355181694, -0.025186488404870033, 0.009647496044635773, -0.021409887820482254, 0.014145083725452423, 0.006324088200926781, -0.008363451808691025, 0.017866751179099083, 0.0063412548042833805, -0.020942963659763336, -0.0022539435885846615, -0.01630117930471897, 0.031970635056495667, 0.007196139544248581, 0.00591209577396512, -0.008260454051196575, 0.001158729544840753, 0.003237576223909855, -0.017894217744469643, 0.026765793561935425, 0.02587314322590828, 0.0037285340949892998, 0.023305054754018784, -0.009256103076040745, 0.029004286974668503, 0.029141617938876152, 0.017372360453009605, -0.01825127750635147, -0.014282414689660072, 0.0010282652219757438, 0.02742498181760311, -0.024568499997258186, -0.00832225289195776, -0.011316066607832909, 0.012174384668469429, 0.011384732089936733, 0.01815514639019966, 0.0166582390666008, -0.0018265011021867394, -0.02220640704035759, -0.0001833582209656015, -0.00027487639454193413, -0.023222656920552254, -0.004188592545688152, 0.007182406261563301, -0.030597325414419174, -0.013472162187099457, 0.04386349022388458, 0.013994019478559494, 0.007079408038407564, 0.021670816466212273, 0.0030006803572177887, -0.009674962610006332, 0.024774495512247086, 0.0063378214836120605, -0.005112143233418465, -0.030569860711693764, 0.0045216199941933155, 0.03364607319235802, 0.013348564505577087, 0.006650249008089304, 0.006100925616919994, 0.0017286527436226606, -0.01664450578391552, -0.035568706691265106, -0.017001565545797348, -0.001147571369074285, -0.005225440952926874, -0.0027414681389927864, -0.005685499403625727, 0.009482699446380138, -0.022865595296025276, 0.007910259999334812, 0.0013956252951174974, -0.0054108379408717155, 0.011460264213383198, 0.01851220615208149, -0.006852812133729458, 0.006718914490193129, -0.02425263822078705, 0.00822612177580595, 0.011556396260857582, -0.015037734061479568, 0.010842274874448776, 0.032245296984910965, 0.011796724982559681, 0.009901558049023151, 0.0012900521978735924, 0.023208923637866974, -0.013286765664815903, -0.02735631726682186, 0.02922401763498783, 0.02568087913095951, -0.006049426272511482, -0.017853017896413803, 0.026504864916205406, -0.015806786715984344, -0.0203524399548769, 0.007045075763016939, 0.0034933548886328936, 0.05526195839047432, -0.028097903355956078, -0.017276227474212646, 0.007436468731611967, -0.004837481305003166, -0.004006629344075918, -0.10849141329526901, -0.03515671193599701, 0.023181457072496414, -0.008665580302476883, -0.02974587492644787, 0.015738122165203094, -0.008912775665521622, 0.028180303052067757, -0.0010119570652022958, 0.02044857293367386, -0.013170033693313599, -0.017756886780261993, -0.015229997225105762, -0.0034916382282972336, 0.012751175090670586, -0.005417704116553068, 0.021396154537796974, -0.01821007765829563, -0.006766980513930321, 0.021148959174752235, 0.015463460236787796, -0.013451562263071537, 0.004483853932470083, 0.003053896129131317, -0.02217894233763218, -0.021574685350060463, -0.028894422575831413, 0.009036373347043991, 0.019871782511472702, -0.008397785015404224, 0.02763097919523716, 0.001661703921854496, 0.008061324246227741, -0.015339862555265427, 0.013128834776580334, -0.008741112425923347, -0.011425931937992573, 0.004394588991999626, 0.017880484461784363, -0.02389557845890522, 0.01465320773422718, 0.005565335042774677, 0.016205046325922012, -0.02936134859919548, 0.003150027710944414, 0.013135701417922974, -0.012510845437645912, 0.04092460870742798, 0.014014619402587414, -0.021162692457437515, -0.023277588188648224, -0.02960854396224022, -0.012359782122075558, -0.021272556856274605, 0.019267525523900986, -0.0010540146613493562, -0.0010917807230725884, 0.013183766975998878, -0.015175065025687218, -0.00558250118046999, -0.014982801862061024, 0.003206676570698619, -0.006708614993840456, 0.019116463139653206, 0.009729894809424877, 0.012682509608566761, 0.003996329382061958, 0.012847306206822395, -0.000514990882948041, 0.0017501107649877667, 0.0007467368268407881, -0.00933850184082985, -0.024431169033050537, 0.017770620062947273, -0.030295198783278465, 0.004305324051529169, -0.011254267767071724, -0.015861719846725464, 0.012847306206822395, 0.009228636510670185, -0.017564622685313225, -0.010450881905853748, 0.00295604788698256, -0.012716841883957386, -0.009262969717383385, 0.015422261320054531, 0.011116936802864075, -0.013135701417922974, 0.026985522359609604, -0.04034782201051712, 0.020791899412870407, 0.015559591352939606, 0.005555035080760717, 0.0069764102809131145, -0.01203705370426178, 0.008239854127168655, 0.009929024614393711, 0.010437148623168468, 0.012153785675764084, -0.000361995684215799, -0.014323613606393337, 0.005967027973383665, -0.05007084831595421, 0.014927869662642479, 0.002315742429345846, 0.015147599391639233, 0.023167723789811134, -0.04227045178413391, -0.006190190557390451, -0.015106399543583393, -0.019294992089271545, -0.0022590933367609978, -0.027054188773036003, 0.015010268427431583, -0.00018282176461070776, -0.004013495985418558, -0.015628257766366005, -0.008020125329494476, 0.023428652435541153, 0.0034058066084980965, -0.0019020331092178822, 0.010272352024912834, -0.011350399814546108, 0.005754164885729551, 0.01006635557860136, 0.01455707661807537, -0.011576995253562927, 0.026683395728468895, -0.008075057528913021, 0.020709501579403877, -0.0009973656851798296, -0.013369163498282433, 0.014145083725452423, 0.009942757897078991, 0.015587057918310165, 0.026999255642294884, 0.00820552185177803, -0.017482224851846695, -0.019789382815361023, -0.0031946601811796427, 0.003649568883702159, -0.00417142640799284, 0.007814128883183002, -0.010464615188539028, 0.03631029278039932, -0.025406217202544212, -0.023579716682434082, -0.02006404474377632, -0.027040455490350723, -0.01292283833026886, 0.023373721167445183, 0.017482224851846695, 0.03268475458025932, -0.0020462304819375277, -0.023277588188648224, -0.02006404474377632, -0.007669931277632713, -0.02546115033328533, -0.00012059370055794716, 0.01825127750635147, 0.0066262162290513515, -0.007021042518317699, 0.04246271774172783, -0.008143723011016846, 0.000628288893494755, -0.028125369921326637, 0.02930641546845436, -0.0030435961671173573, -0.04400082305073738, 0.005170508753508329, 0.003434989368543029, -0.024856893345713615, -0.023456119000911713, -0.003125994699075818, 0.014007752761244774, 0.019267525523900986, 0.024856893345713615, 0.00012928417709190398, -0.015683189034461975, -0.006372154224663973, -0.008487050421535969, 0.018937932327389717, 0.020585903897881508, -0.009489566087722778, -0.015408528037369251, 0.004288157448172569, 0.005785064306110144, 0.0009347085142508149, -0.02417024038732052, 0.003539704019203782, 0.010629411786794662, 0.0029989636968821287, -0.019748184829950333, 0.005242607556283474, -0.007601265795528889, 0.0022899929899722338, 0.0016024800715968013, 0.02043483965098858, -0.013231832534074783, 0.00503317778930068, 0.01826501078903675, 0.033865801990032196, -0.012970903888344765, 0.02191801369190216, -0.01842980831861496, -0.00030062595033086836, -0.00015052754315547645, 0.008782311342656612, -0.010265485383570194, -0.02765844389796257, 0.02607913874089718, 0.01855340600013733, 0.005424570757895708, -0.025007957592606544, -0.00922177080065012, 0.008885310031473637, -0.004943912848830223, 0.0031895104330033064, 0.004528486635535955, -0.019034063443541527, -0.024335036054253578, 0.00822612177580595, 0.0007969484431669116, 0.036200426518917084, 0.02922401763498783, -0.01689170114696026, 0.04466000944375992, 0.003951696678996086, 0.01625997945666313, -0.011625061742961407, -0.006176457740366459, 0.0011355549795553088, 0.0041370936669409275, 0.005719832144677639, 0.008535115979611874, -0.00933163519948721, -0.005881195887923241, -0.008377185091376305, -0.010320417582988739, 0.014296147041022778, -0.03188823536038399, 0.07959699630737305, 0.01848473958671093, -0.02403290942311287, 0.011625061742961407, 0.01207138691097498, 0.043204303830862045, 0.012641309760510921, 0.015875453129410744, 0.02933388203382492, -0.015971584245562553, 0.028180303052067757, -0.009832892566919327, -0.007244205567985773, 0.0029800806660205126, -0.013376030139625072, -0.002890815492719412, 0.0009158254833891988, 0.01672690361738205, 0.006760113872587681, -0.00822612177580595, 0.004003196023404598, -0.007724863477051258, -0.0036942013539373875, -0.01366442535072565, -0.03532150760293007, -0.006118091754615307, 0.019638320431113243, 0.024637164548039436, 0.0015492642996832728, -0.01551839243620634, 0.009544498287141323, -0.005716398824006319, -0.02555728144943714, -0.00558936782181263, -0.015051467344164848, 0.008253587409853935, -0.01553212571889162, -0.008404651656746864, -0.0031843604519963264, -8.572452497901395e-05, 0.025159021839499474, 0.013485895469784737, -0.01848473958671093, -0.030652258545160294, 0.028537362813949585, -0.0007445910014212132, 0.013170033693313599, -0.017770620062947273, -0.012524578720331192], "2ad1d5ea-2e57-4b5d-9c89-8b0d8b6056ca": [0.012558666057884693, -0.005924027878791094, -0.0037443682085722685, -0.05392437055706978, -0.007714218460023403, 0.03621378168463707, 0.004974270239472389, -0.016631007194519043, -0.015701748430728912, -0.03367198258638382, -0.016999978572130203, 0.03222343325614929, -0.005626801401376724, -0.011342429555952549, -0.009743557311594486, 0.019719429314136505, 0.02626524120569229, -0.009524907916784286, -0.011943714693188667, 0.004308073315769434, -0.03577648103237152, -0.004779535811394453, -0.016658339649438858, 0.013166784308850765, -0.026005594059824944, 0.008739137090742588, 0.006559477187693119, -0.00956590473651886, -0.025130996480584145, 0.0034437256399542093, 0.012087203562259674, -0.006238336209207773, -0.03230542689561844, 0.009436081163585186, -0.01385006308555603, 0.009586403146386147, 0.010734311304986477, 0.005076762288808823, 0.029298998415470123, 0.0026545384898781776, 0.013419597409665585, 0.014635833911597729, 0.008930454961955547, -0.009511241689324379, -0.02049836702644825, 0.016111716628074646, -0.0011948839528486133, 0.0004791493120137602, -0.018243545666337013, -0.007434074301272631, -0.004137253854423761, 0.005360323004424572, -0.019528111442923546, 0.015387440100312233, 0.011021288111805916, -0.01746460795402527, 0.020020071417093277, 0.0071334317326545715, 0.019828753545880318, -0.015455768443644047, 0.0007797920261509717, 0.003990348894149065, -0.012743150815367699, -0.0007387953228317201, -0.02174193412065506, -0.03175880387425423, -0.005845450796186924, 0.0008045608992688358, 0.003597463248297572, -0.005941109731793404, 0.0465996190905571, 0.022807849571108818, 0.023832768201828003, -0.01639869250357151, -0.0247893575578928, -0.023901095613837242, -0.01043366827070713, -0.031403496861457825, -0.0014963807770982385, 0.020047402009367943, 0.013084790669381618, -0.00647748401388526, -0.008663976565003395, 0.01720496267080307, 0.024516046047210693, 0.020826339721679688, 0.012743150815367699, 0.014567505568265915, -0.024516046047210693, -0.00599235575646162, 0.0017748168902471662, -0.001586061087436974, 0.02396942302584648, 0.010823137126863003, 0.004492558538913727, -0.007762047927826643, 0.029053017497062683, 0.020962996408343315, -0.01102812122553587, -0.024898681789636612, -0.0073452480137348175, -0.012995964847505093, -0.04217197373509407, -0.015018469654023647, -0.006938697304576635, -0.03080221265554428, 0.013064292259514332, -0.01669933646917343, 0.011649904772639275, 0.01734161749482155, -0.010303845629096031, 0.03334400802850723, -0.006603890564292669, -0.0025845023337751627, 0.003332692664116621, -0.007768881041556597, 0.032961372286081314, -0.04157068580389023, -0.024748360738158226, -0.014048214070498943, 0.015442103147506714, 0.015920398756861687, 0.05354173481464386, -0.010761642828583717, 0.014307860285043716, 0.008424828760325909, 0.026306236162781715, 0.0021437874529510736, 0.0003627783735282719, -0.014909145422279835, 0.00011476950021460652, -0.00039843699778430164, 0.027563469484448433, 0.011239937506616116, -0.01639869250357151, 0.019364124163985252, -0.025130996480584145, 0.0014784446684643626, 0.0003843443701043725, -0.02727649360895157, 0.025732282549142838, 0.02888903208076954, 0.01745094358921051, -0.006463818252086639, -0.010003202594816685, 0.026729870587587357, 0.01068648137152195, 0.008356500416994095, 0.0070104412734508514, 0.0052304998971521854, 0.0016116840997710824, -0.012592829763889313, -0.03167681023478508, 0.01382273156195879, -0.0035906306002289057, -0.011301432736217976, 0.010133026167750359, 0.03069288842380047, -0.013289774768054485, -0.00225994479842484, 0.0012401511194184422, 0.02806909568607807, -0.002953473012894392, 0.007680054754018784, 0.013064292259514332, 0.03820895403623581, 0.0121760293841362, -0.0336446538567543, -0.0016296200919896364, -0.018557853996753693, 0.00611534621566534, 0.02670253813266754, -0.016193710267543793, 0.023764438927173615, -0.018981486558914185, 0.008213012479245663, -0.0044242306612432, 0.009265261702239513, -0.015537762083113194, -0.046872932463884354, 0.025540964677929878, -0.00938141904771328, -0.007680054754018784, 0.022438878193497658, -0.004506224300712347, -0.029490316286683083, 0.011239937506616116, 0.007714218460023403, 0.00224286294542253, -0.0128319775685668, 0.010802638716995716, 0.006942113395780325, -0.033699315041303635, -0.012032541446387768, -0.6196519732475281, -0.004379817750304937, 0.008540986105799675, -0.01870817504823208, 0.02310849167406559, 0.00229069241322577, 0.029654303565621376, -0.0005491853808052838, -0.015360109508037567, 0.01669933646917343, 0.00953857321292162, 0.001361433183774352, -0.014089210890233517, -0.017915572971105576, -0.03610445559024811, -0.00462579820305109, -0.003175538731738925, -0.028807038441300392, -0.017245959490537643, 0.0030030107591301203, -0.028807038441300392, 0.0070719365030527115, -0.011725065298378468, 0.009839216247200966, -0.003296820679679513, -0.019842417910695076, 0.03566715866327286, -0.005647299811244011, 0.009087609127163887, 0.030720219016075134, -0.022698525339365005, 0.014253197237849236, 0.008315503597259521, -0.0016637840308248997, 0.04094206914305687, -0.01739628054201603, -0.020170392468571663, 0.027303824201226234, 0.009511241689324379, 0.03886490315198898, -0.03738902136683464, -0.02223389409482479, 0.011226272210478783, 0.018052227795124054, -0.022712189704179764, 0.015428436920046806, 0.029271667823195457, -0.008458992466330528, -0.009422415867447853, 0.000847692892421037, 0.013282941654324532, -0.0051553393714129925, -0.00780987786129117, -0.008575149811804295, 0.0053329914808273315, -0.005274912808090448, 0.010194521397352219, -0.03563982620835304, 0.00909444224089384, -0.003870774991810322, 0.007434074301272631, -0.0035906306002289057, -0.007844042032957077, -0.04545171186327934, -0.06335362046957016, 0.012128200381994247, -0.005046014674007893, -0.016535349190235138, -0.0058078705333173275, -0.01273631863296032, 0.023532124236226082, -0.004396899603307247, 0.008499989286065102, -0.010823137126863003, 0.01986975036561489, 6.202891381690279e-05, 0.05496295168995857, 0.014676830731332302, 0.0008797215414233506, 0.01108961645513773, 0.01627570390701294, -0.016794994473457336, -0.026128584519028664, -0.01037217304110527, 0.04367518797516823, 0.026606880128383636, -0.016316698864102364, -0.014676830731332302, 0.004683876875787973, -0.0052919951267540455, -0.004191915970295668, 0.04577968642115593, -0.012620161287486553, -0.024242734536528587, -0.010324344038963318, 0.04911408573389053, 0.0013648496242240071, 0.009668395854532719, -0.018175218254327774, -0.02938099205493927, -0.027249161154031754, -0.01652168296277523, 0.01727329008281231, 0.006231503561139107, 0.015168791636824608, 0.0194461178034544, -0.00467704376205802, -0.02918967418372631, 0.035694487392902374, -0.01739628054201603, -0.00235218764282763, -0.0051963357254862785, 0.004359319340437651, -0.019801422953605652, 0.014950142242014408, -0.02032071352005005, -0.003274613991379738, 0.010700147598981857, 0.014704161323606968, -0.020703351125121117, -0.010501996614038944, -0.015223453752696514, 0.023381803184747696, 0.014403519220650196, 0.017163965851068497, 0.02801443450152874, 0.0021984498016536236, -0.008472657762467861, 0.02509000152349472, -0.0007545961416326463, -0.006108513101935387, -0.02342280000448227, 0.004383233841508627, -0.010057865642011166, 0.029517648741602898, 0.01708197221159935, 0.02204257622361183, -0.006286165677011013, 0.011841222643852234, -0.05253048241138458, -0.013809066265821457, 0.003542801132425666, 0.017546601593494415, -0.016753997653722763, -0.003284863196313381, -0.04381184279918671, -0.006873785518109798, 0.003187495982274413, -0.005117758642882109, 0.00465996190905571, -0.016794994473457336, -0.006518480367958546, 0.0032524075359106064, 0.01279781386256218, -0.01807955838739872, -0.003624794539064169, -0.006689300294965506, -0.03572181984782219, -0.01096662599593401, -0.0338086374104023, -0.010734311304986477, 0.0032148270402103662, -0.017860909923911095, 0.005302244331687689, -0.011096448637545109, -0.03353532776236534, 0.004260243847966194, -0.0010018576867878437, -0.010768475010991096, -0.01388422679156065, 0.009374585933983326, 0.0019729677587747574, 0.0034044370986521244, 0.022015245631337166, -0.013235111720860004, 0.012059872038662434, -0.014608502388000488, -0.010939295403659344, -0.0017432152526453137, -0.007563897408545017, 0.017915572971105576, 0.03266073018312454, -0.000638011668343097, -0.012469839304685593, 0.04061409831047058, 0.007495569530874491, 0.008199346251785755, 0.024885017424821854, -0.04105139523744583, 0.02360045351088047, -0.023901095613837242, 0.010030534118413925, -0.005220250692218542, 0.005288578569889069, -0.02671620436012745, -0.00469070952385664, -0.011574744246900082, 0.018653513863682747, 0.004560886416584253, -0.0006862682057544589, 0.016494352370500565, 0.023709777742624283, 0.0033309846185147762, -0.0028817288111895323, -0.0010377297876402736, -0.01676766388118267, 0.0019268464529886842, -0.03000960871577263, 0.025691285729408264, 0.008411163464188576, -0.005186086520552635, -0.010317510925233364, 0.00804902520030737, -0.013870561495423317, 0.005756624508649111, 0.03443725407123566, 0.017300620675086975, 0.013966220431029797, 0.003418102627620101, -0.003496679710224271, 0.02640189602971077, 0.0015066299820318818, 0.025499967858195305, -0.022220229730010033, -0.008124185726046562, 0.01037217304110527, -0.0003311767359264195, 0.03184079751372337, -0.005705378483980894, -0.008445327170193195, -0.01295496802777052, 0.01620737463235855, 0.00811052042990923, 0.009866546839475632, 0.05821536108851433, 0.01615271344780922, 0.018667178228497505, -9.282983955927193e-05, 0.021413959562778473, 0.007932867854833603, 0.0057634576223790646, 0.010297012515366077, 0.011226272210478783, -0.016016056761145592, 0.0002506779273971915, 0.0029995942022651434, -0.008192514069378376, 0.016180044040083885, -0.012435675598680973, 0.007632225286215544, -0.0020583777222782373, -0.014540174975991249, 0.00023082015104591846, -0.011909550987184048, 0.020074734464287758, -0.01895415596663952, 0.028615720570087433, 0.021072320640087128, 0.01413020770996809, 0.01564708724617958, 0.0282057523727417, -0.011410756967961788, 0.007304251194000244, -0.00773471686989069, 0.04143403097987175, -0.018421199172735214, -0.01236051507294178, -0.0311848483979702, -0.005401319358497858, -0.018858497962355614, 0.013597249984741211, -0.006702966056764126, 0.005500394850969315, -0.021851258352398872, -0.01832553930580616, -0.0003245574771426618, -0.01832553930580616, 0.010153524577617645, -0.013159951195120811, 0.00783037580549717, -0.02191958576440811, -0.037307027727365494, 0.03883757069706917, 0.011950547806918621, 0.0017526103183627129, -0.01894049160182476, -0.014717827551066875, -0.0034300601109862328, 9.838148253038526e-05, -0.002336813835427165, 0.0031738304533064365, -0.01382273156195879, 0.000329682050505653, 0.0009685478289611638, 0.013863728381693363, 0.008793799206614494, 0.04963338002562523, -0.01781991310417652, -0.011909550987184048, -0.0034317681565880775, 0.014772489666938782, 0.009921208955347538, -0.015742745250463486, -0.0338086374104023, 0.02167360670864582, -0.02428373135626316, -0.035065870732069016, -0.029080349951982498, -0.019828753545880318, -0.030228257179260254, 0.023887429386377335, -0.020594025030732155, -0.02913501113653183, -0.01564708724617958, 0.004506224300712347, 0.007768881041556597, 0.008691307157278061, -0.00022484145301859826, 0.00607093283906579, 0.026306236162781715, -0.00226677767932415, -0.02815108932554722, 0.016917984932661057, 0.017874576151371002, 0.07751115411520004, 0.010693314485251904, 0.006723464000970125, 0.03337134048342705, -0.02056669443845749, -0.018161552026867867, -0.015264450572431087, -0.021728267893195152, 0.035694487392902374, 0.027741122990846634, -0.021564282476902008, 0.003587214043363929, 0.020853672176599503, -0.0075570642948150635, 0.025923600420355797, 0.0014545299345627427, -0.020730681717395782, -0.026866525411605835, 0.007488736417144537, 0.015332777984440327, 0.01397305354475975, -0.017163965851068497, 0.01566075161099434, 0.01758759841322899, 0.028807038441300392, 0.032387420535087585, 0.0346832349896431, 0.017601264640688896, 0.004168001003563404, -0.011629406362771988, -0.017478274181485176, 0.013098455965518951, -0.0019490530248731375, 0.01608438417315483, -0.03946618735790253, 0.03807229921221733, 0.014089210890233517, -0.014813486486673355, -0.01021501887589693, 0.0092857601121068, 0.004967437591403723, 0.045260392129421234, -0.000351034541381523, 0.007358913775533438, 0.012756817042827606, -0.02291717380285263, -0.02193325199186802, 0.03383596986532211, -0.0021335382480174303, -0.006614139769226313, 0.013159951195120811, 0.020170392468571663, -0.011410756967961788, 0.02124997414648533, 0.010016868822276592, -0.018995152786374092, 0.01974675990641117, 0.001716738217510283, -0.029408322647213936, -0.01682232692837715, -0.018024897202849388, -5.32477097294759e-05, -0.021946918219327927, -0.014485511928796768, -0.016002392396330833, -0.025882603600621223, -0.027590801939368248, -0.0046189650893211365, -0.028834369033575058, 0.009907543659210205, -0.014116541482508183, -0.03635043650865555, -0.0397668294608593, 0.011725065298378468, 0.031403496861457825, 0.02006106823682785, -0.005794204771518707, -0.006549227982759476, 0.012811479158699512, 0.016303034499287605, 0.00910127442330122, -0.011021288111805916, 0.01410287618637085, -0.027481475844979286, 0.0012896888656541705, -0.020976662635803223, -0.020457370206713676, -0.0026357483584433794, 0.0008771592401899397, 0.012155530974268913, -0.010946127586066723, -0.01906348019838333, 0.016781330108642578, 0.007960199378430843, 0.015291781164705753, -0.008103687316179276, 0.01590673252940178, -0.005199752282351255, 0.0183938667178154, -0.029872952029109, 0.012244357727468014, -0.017532935366034508, -0.0006738838274031878, -0.01764226146042347, 0.027590801939368248, 0.017368949949741364, -0.005537975579500198, -0.03402728959918022, -0.009634232148528099, -0.011075951159000397, 0.01549676526337862, 0.0026545384898781776, -0.018967822194099426, -0.012790980748832226, 0.017478274181485176, -0.02032071352005005, -0.008390665054321289, 0.015988726168870926, 0.01571541465818882, 0.005401319358497858, -0.023518459871411324, -0.00746823800727725, 0.029408322647213936, 0.035503171384334564, 0.0012239232892170548, 0.013453761115670204, 0.01254500076174736, -0.0024803022388368845, -0.03211410716176033, 0.003421518951654434, -0.0069967759773135185, 0.014157538302242756, -0.01037217304110527, -0.003973266575485468, -0.01518245693296194, 0.0006328870658762753, -0.012442508712410927, 0.0121760293841362, -0.01950077898800373, 0.007516067940741777, -0.04154335707426071, 0.030173595994710922, 0.008431661874055862, -0.005879614967852831, -0.00616317568346858, -0.0315401516854763, -0.0211133174598217, -0.001829479238949716, 0.006583392154425383, 0.03424593806266785, 0.0014664873015135527, -0.013098455965518951, -0.03443725407123566, -0.030528901144862175, -0.03402728959918022, -0.021468622609972954, 0.005073345731943846, -0.00019377362332306802, 0.045260392129421234, 0.005394486710429192, 0.0015630004927515984, 0.005780539475381374, 0.002176243346184492, 0.0183938667178154, -0.012845642864704132, 0.006538978777825832, -0.002637456404045224, -0.00801486149430275, 0.017314286902546883, -0.020033737644553185, 0.011048619635403156, 0.008855294436216354, -0.007290585897862911, -0.018612517043948174, 0.0014536757953464985, 0.007352080661803484, -0.0035735485143959522, 0.003679456887766719, -0.022329553961753845, -0.03471056744456291, 0.00020861357916146517, 0.01894049160182476, 0.02135929837822914, -0.005022099707275629, -0.03244208171963692, 0.006422821432352066, 0.011417590081691742, -0.005370572209358215, 0.038974229246377945, -0.013009630143642426, 0.02782311663031578, -0.020143061876296997, 0.019582772627472878, 0.029790960252285004, 0.014389852993190289, -0.015360109508037567, -0.0054286508820950985, -0.040340784937143326, -0.009866546839475632, 0.012073538266122341, 0.011438088491559029, 0.013467426411807537, 0.022630196064710617, 0.0011171610094606876, 0.001971259480342269, 0.004249994643032551, -0.01634403131902218, -0.041078727692365646, 0.013235111720860004, -0.014389852993190289, -0.0018397284438833594, -0.026292571797966957, -0.028342409059405327, 0.014430849812924862, -0.02565028890967369, -0.002041295636445284, 0.0029825123492628336, 0.013118954375386238, -0.008001196198165417, -0.025677621364593506, 0.03471056744456291, 0.018612517043948174, 0.01713663525879383, 0.018120555207133293, 0.013241944834589958, 0.010297012515366077, -0.00017904042033478618, -0.012442508712410927, -0.01869451068341732, 0.008780133910477161, -0.0063852411694824696, -0.006914782337844372, 0.04173467308282852, -0.011554245837032795, -0.016945315524935722, 3.1841864256421104e-05, 0.00032284928602166474, -0.006689300294965506, -0.032824717462062836, 0.029790960252285004, 0.018776504322886467, 0.013207781128585339, -0.011991544626653194, -0.006945529952645302, 0.005052847322076559, 0.015442103147506714, -0.011424423195421696, 0.025117332115769386, 0.02149595320224762, -0.008800632320344448, -0.005695129279047251, 0.0516832135617733, -0.001564708654768765, 0.019582772627472878, 0.005848867353051901, -0.0011231396347284317, -0.005264663603156805, 0.0017312578856945038, 0.007304251194000244, -0.03156748414039612, 0.0058078705333173275, 0.005134840961545706, -0.03312535956501961, 0.026442892849445343, 0.009511241689324379, 0.02545897103846073, -0.003925437107682228, -0.015018469654023647, -0.021892255172133446, 0.024174407124519348, 0.011902717873454094, 0.0012478380231186748, -0.00614950992166996, -0.008397497236728668, 0.01633036509156227, -0.04353852942585945, -0.014881813898682594, -0.0027843613643199205, 0.0091969333589077, 0.004622381646186113, 0.006928448099642992, -0.011711400002241135, -0.012340016663074493, -0.004236328881233931, 0.0032677813433110714, -0.0021830759942531586, -0.0014699037419632077, -0.009962205775082111, -0.0015946021303534508, -0.01932312734425068, -0.020416373386979103, 0.004772703163325787, -0.005544808227568865, -0.006508231163024902, 0.006129011511802673, -0.010788973420858383, 0.0003093972336500883, 0.014499178156256676, -0.025991929695010185, 0.0076185595244169235, 0.015879401937127113, 0.01201887521892786, -0.039411526173353195, 0.02521299012005329, -0.00953857321292162, -0.011526915244758129, 0.0218102615326643, 0.011233105324208736, -0.039411526173353195, -0.009921208955347538, 0.0075433989986777306, 0.0013896183809265494, 0.011766062118113041, 0.0035188861656934023, 0.008540986105799675, 0.002136954804882407, 0.001704780850559473, -0.01702730916440487, -0.0023966007865965366, -0.002543505746871233, -0.019801422953605652, -0.008247176185250282, 0.023149488493800163, 0.00046591079444624484, 0.015578758902847767, -0.00302692549303174, 0.009340422227978706, -0.00897145178169012, -0.0341639444231987, -0.009559071622788906, -0.014417184516787529, -0.01375440414994955, -0.010918796993792057, -0.0067678773775696754, 0.001920013688504696, -0.03544851019978523, -0.013515256345272064, 0.01657634600996971, 0.0092857601121068, 0.002005423419177532, 0.0376623310148716, -0.009750389494001865, -0.007775713689625263, 0.00910127442330122, -0.0014024298870936036, -0.046244315803050995, -0.023217815905809402, 0.006234919652342796, -0.020921999588608742, -0.011349262669682503, -0.027221830561757088, 0.01870817504823208, 0.008356500416994095, -0.02839707024395466, -0.022138236090540886, -0.015729079023003578, -0.03290671110153198, -0.007727884221822023, -0.04629897698760033, 0.03768966346979141, 0.02713983692228794, 0.039794161915779114, 0.008069523610174656, 0.02671620436012745, -0.01689065434038639, 0.03192279115319252, -0.021400295197963715, -0.010884632356464863, -0.021222641691565514, -0.024242734536528587, 0.02068968489766121, -0.03372664749622345, -0.03454658016562462, -0.016166377812623978, 0.02962697297334671, -0.014758824370801449, 0.009805051609873772, 0.02806909568607807, -0.0022206564899533987, -0.01059082243591547, 0.006679051090031862, 0.001880725147202611, 0.006409156136214733, 0.0010018576867878437, 0.007939700968563557, -0.037170372903347015, 0.008247176185250282, 0.024024086073040962, -0.0015117545844987035, -0.018421199172735214, 0.002020797226577997, 0.01838020235300064, -0.008424828760325909, 0.0035564666613936424, -0.03408195078372955, -0.013843229971826077, -0.020143061876296997, -0.01505946647375822, -0.003211410716176033, 0.0051963357254862785, -0.017177632078528404, 0.03298870474100113, 0.010515661910176277, -0.019405120983719826, -0.00878696609288454, -0.003137958236038685, 0.01689065434038639, -0.0028731876518577337, 0.017860909923911095, -0.029654303565621376, -0.02329980954527855, -0.014157538302242756, 0.014239531941711903, -5.407511707744561e-05, -0.029954945668578148, -0.02272585593163967, -0.002575961407274008, -0.015004804357886314, 1.973768485186156e-05, 0.020648688077926636, -0.00618025753647089, 0.0037102042697370052, -0.029244335368275642, -0.008117353543639183, -0.02391476184129715, -0.014635833911597729, -0.0006721756071783602, -0.012121367268264294, -0.010139858350157738, -0.0014929643366485834, 0.010481498204171658, -0.012585996650159359, 0.008376998826861382, 0.02446138486266136, -0.014663164503872395, 0.003621377982199192, 0.1916460543870926, 0.009429248981177807, -0.012435675598680973, 0.04392116516828537, 0.013057459145784378, -0.009340422227978706, -0.0004735976690426469, 0.021591613069176674, 0.007673222105950117, 0.014758824370801449, 0.013453761115670204, 0.007085602264851332, -0.031102854758501053, -0.0007575854542665184, 0.0026289154775440693, -0.008930454961955547, -0.025814276188611984, -0.0243520587682724, -0.006706382147967815, 0.002329980954527855, 0.013323938474059105, -0.005087011493742466, 0.002200158080086112, -0.003199453465640545, 0.020170392468571663, 0.023313475772738457, 0.003032050095498562, 0.0127021549269557, 0.016289368271827698, 0.01289347279816866, -0.027413148432970047, -0.009449747391045094, 0.010139858350157738, -0.00829500611871481, -0.013091623783111572, -0.0016902611823752522, 0.012620161287486553, -0.010420002974569798, 0.013364935293793678, 0.012182862497866154, 0.0028629384469240904, -0.008650310337543488, 0.021222641691565514, -0.016999978572130203, 0.008814297616481781, -0.0014972347998991609, 0.007242755964398384, -0.0025503383949398994, 0.01236051507294178, 0.030774880200624466, -0.0017158840782940388, 0.014704161323606968, 0.00789187103509903, 0.009873379953205585, -0.016549015417695045, -0.012381013482809067, -0.008670808747410774, 0.023573121055960655, -0.014540174975991249, 0.009907543659210205, 0.006586808245629072, -0.0008242051699198782, 0.008165182545781136, 0.010420002974569798, -0.027672795578837395, 0.0005210001254454255, -0.02416074089705944, 0.037607669830322266, 0.01825721189379692, 0.0019285546150058508, -0.01955544203519821, -0.021946918219327927, -0.03471056744456291, 0.014731492847204208, -0.011198940686881542, -0.01232635136693716, 0.022657528519630432, 0.04534238576889038, 0.03665107861161232, 0.004140669945627451, 0.003939102869480848, 0.012620161287486553, -0.02100399322807789, 0.006511647719889879, -0.004065509419888258, -0.03192279115319252, 0.013282941654324532, -0.014553840272128582, 0.0037990305572748184, -0.017478274181485176, -0.0004697542462963611, -0.0012307560537010431, -0.011882219463586807, 0.00033950418583117425, -0.0004992206231690943, -0.0013101872755214572, 0.0024768859148025513, 0.007065103854984045, -0.01876283809542656, -0.0121760293841362, -0.018653513863682747, 0.04982469603419304, 0.030774880200624466, 0.02603292465209961, -0.015824738889932632, -0.0043456535786390305, -0.010365340858697891, 0.021782930940389633, 0.001081288792192936, -0.00762539217248559, -0.004161168355494738, -0.022520871832966805, 0.019213803112506866, 0.007864539511501789, 0.007276920136064291, 0.033562660217285156, 0.027741122990846634, -0.015291781164705753, -0.016603676602244377, 0.018776504322886467, 0.008411163464188576, -0.027180833742022514, 0.0031943288631737232, -0.00299617787823081, -0.005329575389623642, -0.02657954953610897, -0.008315503597259521, 0.009388252161443233, -0.021577946841716766, -0.026784531772136688, -0.005760041065514088, -0.007194926496595144, -0.0012615036685019732, -0.0038605257868766785, -0.007024107035249472, 0.009374585933983326, -0.008759635500609875, -0.027071509510278702, 0.008213012479245663, 0.009026113897562027, 0.012777315452694893, 0.01920013688504696, 0.022780517116189003, -0.004007430747151375, 0.0067986249923706055, 0.014430849812924862, -0.0011906134895980358, 0.02428373135626316, -0.02168727107346058, -0.02440672181546688, -0.00245467945933342, 0.0460803285241127, -0.006993359420448542, -0.0028475646395236254, 0.02845173329114914, -0.023204151540994644, -0.03788098320364952, -0.01913180947303772, 0.022753186523914337, 0.004427647218108177, -0.05217517539858818, 0.0049537718296051025, 0.04217197373509407, 0.014909145422279835, -0.010051032528281212, -0.003563299309462309, -0.1732795238494873, 0.00981871783733368, 0.0037102042697370052, -0.002852689241990447, -0.017095638439059258, 0.03741635009646416, 0.014280528761446476, -0.016876988112926483, -0.037853650748729706, -0.01986975036561489, 0.008622979745268822, 0.008568317629396915, -0.049797363579273224, -0.01530544739216566, 0.0057327100075781345, -0.016262037679553032, 0.006839621812105179, 0.02696218527853489, 0.04217197373509407, 0.0009676937479525805, 0.031020861119031906, -0.021782930940389633, 0.004096257034689188, -0.007242755964398384, 0.017040975391864777, 0.01671300083398819, -0.009060277603566647, 0.009859714657068253, 0.017054641619324684, -0.03932953253388405, -0.009456579573452473, -0.007536565884947777, 0.017601264640688896, 0.013986718840897083, 0.001880725147202611, 0.005623385310173035, 0.00785770732909441, 0.002895394340157509, -0.010939295403659344, 0.02237055078148842, 0.028041765093803406, 0.020143061876296997, 0.018858497962355614, -0.0034693486522883177, 0.027167169377207756, 0.032032113522291183, 0.023094825446605682, -0.01577007584273815, -0.008800632320344448, 0.0012401511194184422, 0.02130463533103466, -0.030638225376605988, -0.00807635672390461, -0.009948540478944778, 0.0006000042776577175, 0.008896291255950928, 0.02261653169989586, 0.017601264640688896, -0.011875387281179428, -0.018161552026867867, -0.004448145627975464, -0.0032148270402103662, -0.021974248811602592, -0.00780987786129117, 0.008274507708847523, -0.038099631667137146, -0.017054641619324684, 0.029080349951982498, 0.003904938930645585, 0.02099032700061798, 0.017997566610574722, 0.0028851451352238655, 0.00023743940982967615, 0.020293382927775383, -0.00925842858850956, -0.003682873211801052, -0.032824717462062836, 0.008773300796747208, 0.03747101500630379, -0.001422074157744646, 0.01249033771455288, 0.006077765487134457, 0.008301838301122189, -0.009627399034798145, -0.03285204991698265, -0.008650310337543488, 0.0058522834442555904, -0.010440501384437084, -0.00315333204343915, 0.002193325199186802, 0.014594837091863155, -0.011943714693188667, 0.005906946025788784, 0.007932867854833603, 0.001756026758812368, 0.02361411787569523, 0.012312685139477253, 0.0015954561531543732, 0.01671300083398819, -0.011916384100914001, -0.0006132427952252328, 0.016549015417695045, -0.015442103147506714, -0.0004071915172971785, 0.03309803083539009, 0.018161552026867867, 0.01055665872991085, -0.013556253165006638, 0.020921999588608742, -0.01609805040061474, -0.039794161915779114, 0.029790960252285004, 0.022274890914559364, 0.00012992974370718002, -0.011444921605288982, 0.023135822266340256, -0.017970234155654907, -0.03446458652615547, 0.003788781352341175, 0.00931992381811142, 0.07100634276866913, -0.03490188717842102, -0.010447334498167038, 0.007522900588810444, 0.010379006154835224, -0.016781330108642578, -0.11490017920732498, -0.02149595320224762, 0.023901095613837242, 0.01238784659653902, -0.025677621364593506, 0.008732303977012634, -0.014622167684137821, 0.028561057522892952, 0.009907543659210205, 0.0181342214345932, -0.02335447259247303, -0.003915187902748585, -0.003679456887766719, -0.01664467342197895, 0.022288557142019272, -0.005770290270447731, 0.011383426375687122, -0.03946618735790253, -0.009887045249342918, 0.02335447259247303, 0.021167980507016182, -0.008739137090742588, 0.013658745214343071, 0.004092840477824211, -0.015073131769895554, -0.028096428140997887, -0.0307475496083498, 0.018284542486071587, 0.01986975036561489, -0.011458586901426315, 0.03654175624251366, -0.011574744246900082, 0.017054641619324684, -0.01745094358921051, 0.01279781386256218, -0.0012657741317525506, -0.011520082131028175, -0.004260243847966194, 0.0213729627430439, -0.015947729349136353, 0.009846048429608345, -8.177994459401816e-05, 0.003406145144253969, -0.041078727692365646, 0.001685990602709353, -0.003904938930645585, -0.007584395818412304, 0.028861699625849724, -0.0013323938474059105, -0.006091431248933077, -0.023012833669781685, -0.020539363846182823, -0.016781330108642578, -0.006231503561139107, 0.030392244458198547, 5.1192535465816036e-05, 0.0011957380920648575, 0.006511647719889879, -0.01950077898800373, -0.004328571725636721, -0.02806909568607807, -0.004352486692368984, -0.012818312272429466, 0.022028911858797073, 0.01344692800194025, 0.007324749603867531, -0.015442103147506714, 0.008288173004984856, 0.01397305354475975, 0.007393077481538057, -0.008554651401937008, -0.00023252834216691554, -0.013016462326049805, 0.007454572711139917, -0.029927615076303482, 0.014335190877318382, -0.019965408369898796, -0.020539363846182823, 0.0004919607890769839, 0.009982704184949398, -0.010023701004683971, -0.010542993433773518, -0.0002707492676563561, -0.016849657520651817, -0.010358507744967937, 0.014909145422279835, 0.008547819219529629, -0.015811072662472725, 0.01771058887243271, -0.04148869216442108, 0.01745094358921051, 0.02310849167406559, 0.023381803184747696, 0.016535349190235138, -0.022151902318000793, 0.00940875057131052, -0.0033805223647505045, -0.011294599622488022, 0.014061879366636276, -0.008896291255950928, -0.002186492318287492, 0.0032882795203477144, -0.04763820394873619, -0.0015177332097664475, 0.012770482338964939, 0.0128319775685668, 0.016385028138756752, -0.04714624211192131, -0.005066513083875179, -0.015004804357886314, -0.004369568545371294, 2.6090043320436962e-05, -0.029708966612815857, 0.009975872002542019, -0.006620972417294979, -0.0055960542522370815, -0.01683599129319191, -0.0040586767718195915, 0.020143061876296997, -0.006747378967702389, 0.008329169824719429, 0.0014237823197618127, -0.010317510925233364, 0.007235923316329718, 0.0027963188476860523, 0.01943245157599449, -0.014622167684137821, 0.010392671450972557, -0.015756411477923393, 0.027344821020960808, 0.0003866931365337223, -0.022958170622587204, 0.020293382927775383, 0.007331582251936197, 0.0027092008385807276, 0.016412358731031418, 0.0066278050653636456, -0.02062135748565197, -0.03408195078372955, 0.011554245837032795, 0.002968846820294857, -0.001771400566212833, 0.006501398514956236, -0.0037204534746706486, 0.031075524166226387, -0.030036939308047295, -0.016125380992889404, -0.02559562772512436, -0.018147887662053108, -0.011649904772639275, 0.011451753787696362, 0.008452159352600574, 0.025814276188611984, -0.0016672004712745547, -0.02142762579023838, -0.026675207540392876, -0.005384237505495548, -0.012531334534287453, 0.0006909657968208194, 0.014048214070498943, 3.656609624158591e-05, -0.012913971208035946, 0.035694487392902374, -0.012688488699495792, -0.010201353579759598, -0.022452544420957565, 0.019090812653303146, -0.018175218254327774, -0.04329254850745201, 0.0019558859057724476, -0.0006619264022447169, -0.04392116516828537, -0.014499178156256676, -0.002102790866047144, 0.024516046047210693, 0.02763179875910282, 0.008506822399795055, -0.005097260698676109, -0.003990348894149065, -0.0011658446164801717, -0.004601883236318827, 0.010228685103356838, 0.026060257107019424, -0.00647748401388526, -0.01876283809542656, 0.018981486558914185, 0.002394892508164048, 0.00778254633769393, -0.024051416665315628, 0.011041786521673203, 0.003360023954883218, -0.0032865714747458696, -0.02683919481933117, 0.0019114726455882192, -0.0022223645355552435, 0.018229881301522255, -0.017614929005503654, 0.021960582584142685, 0.005496978759765625, 0.0038810239639133215, 0.028342409059405327, 0.02000640518963337, -0.008766467683017254, 0.010167189873754978, -0.006948946043848991, -0.0077552152797579765, -0.006986526772379875, 0.010051032528281212, -0.01549676526337862, -0.02957230992615223, 0.02336813695728779, 0.022315887734293938, 0.014922810718417168, -0.024803023785352707, -0.00473853899165988, 0.01198471151292324, -0.00021993038535583764, -0.00032348986133001745, -0.001434031524695456, -0.026306236162781715, -0.027618132531642914, 0.015483099967241287, 0.012504003942012787, 0.038099631667137146, 0.013241944834589958, -0.015387440100312233, 0.04137936979532242, 0.012620161287486553, 0.014184869825839996, -0.01715029962360859, 0.013378600589931011, -0.0069967759773135185, -0.002005423419177532, 0.00823351088911295, -0.0036965387407690287, -0.007645890582352877, -0.014758824370801449, -0.0086298119276762, -0.019118143245577812, 0.013856896199285984, -0.01695898175239563, 0.08696773648262024, 0.035065870732069016, -0.021960582584142685, 0.023655114695429802, 0.0003087566583417356, 0.027590801939368248, 0.01105545274913311, 0.010624987073242664, 0.017409946769475937, -0.011219439096748829, 0.014786154963076115, -0.011239937506616116, -0.007215424906462431, -0.007085602264851332, -0.013870561495423317, -0.007666388992220163, 0.0017816496547311544, 0.01589306630194187, -0.0002995750983245671, -0.010611320845782757, 0.003508636960759759, -0.009716225787997246, -0.008759635500609875, -0.0016116840997710824, -0.03665107861161232, -0.011294599622488022, 0.025486301630735397, 0.032278094440698624, 0.0038092797622084618, -0.02012939564883709, 0.025171993300318718, -0.00616659177467227, -0.022821513935923576, -0.010761642828583717, -0.008575149811804295, 0.006907949689775705, -0.014485511928796768, -0.02913501113653183, 0.007803044747561216, 0.01052932720631361, 0.01671300083398819, 0.00465996190905571, -0.01862618327140808, -0.027495142072439194, 0.030036939308047295, 0.004168001003563404, 0.016672004014253616, -0.0245297122746706, -0.004509640857577324], "635a43aa-23d9-4e2e-a76d-ae12f2968888": [0.00925461482256651, -0.0024440970737487078, 0.0028731871861964464, -0.028422927483916283, 0.010524721816182137, 0.03594744950532913, -0.01189780980348587, -0.01708121784031391, 0.00504266656935215, -0.03064732998609543, -0.014307579025626183, 0.03034524992108345, -0.0030671358108520508, -0.02196941152215004, -0.016765408217906952, 0.0010229507461190224, 0.025663020089268684, -0.0066182855516672134, -0.017451951280236244, 0.0024509625509381294, -0.030125556513667107, -0.005238331854343414, -0.013559246435761452, 0.014692043885588646, -0.03427228331565857, -0.006532467436045408, -0.0032730991952121258, -0.005396236665546894, -0.029274241998791695, 0.01870146207511425, 0.016628097742795944, 0.0012048849603161216, -0.02358965575695038, 0.0008178456919267774, -0.014074154198169708, 0.005458025727421045, 0.007043942809104919, -0.0031872810795903206, 0.024866627529263496, 0.010202045552432537, 0.01919577270746231, 0.01303747296333313, 0.003449884243309498, -0.014362502843141556, -0.027104761451482773, 0.02737937867641449, -0.0018021783325821161, 0.0037176364567130804, -0.021914487704634666, -0.01591409184038639, 0.0035700295120477676, 0.008815226145088673, -0.030400173738598824, -0.001717218430712819, 0.007119462359696627, -0.012920760549604893, 0.01671048440039158, -0.004768048878759146, 0.024935282766819, -0.021104365587234497, 0.006525601726025343, 0.01205571461468935, -0.005626229103654623, -0.0015739024383947253, -0.0003514247655402869, -0.03331112116575241, -0.007867795415222645, -0.005564440041780472, -0.009261480532586575, -0.01378580555319786, 0.034382130950689316, 0.021722255274653435, 0.02739311009645462, -0.022889381274580956, -0.001298426534049213, -0.012151830829679966, -0.020294243469834328, -0.03147118166089058, 0.0021179886534810066, 0.01500785443931818, 0.020761094987392426, -0.0015696114860475063, -0.022573569789528847, 0.013923115096986294, 0.01820714958012104, 0.022395068779587746, 0.0061583006754517555, 0.006734997965395451, -0.032459806650877, -0.00549235288053751, -0.0006959841120988131, -0.005416833329945803, 0.013312090188264847, 0.014554735273122787, 0.016861524432897568, 0.008938804268836975, 0.027296993881464005, 0.015694398432970047, -0.017506875097751617, -0.015186356380581856, -0.008657321333885193, 0.0027290128637105227, -0.02626717835664749, -0.01099843718111515, -0.012316601350903511, -0.028615158051252365, 0.015364857390522957, -0.018948618322610855, -0.0035322695039212704, 0.014719505794346333, -0.009316403418779373, 0.05250689387321472, -0.020555131137371063, -0.00733229098841548, 0.009542963467538357, -0.01433504093438387, 0.03064732998609543, -0.04885448142886162, -0.013923115096986294, -0.011561403051018715, 0.005399669520556927, 0.005918010137975216, 0.04923894256353378, -0.006662910804152489, 0.009824446402490139, 0.009803850203752518, 0.020239321514964104, -0.0015919242287054658, 0.007984507828950882, -0.014856814406812191, -1.4736562661710195e-05, 0.013634766452014446, 0.03460182249546051, 0.0183444581925869, -0.02477051131427288, 0.013174781575798988, -0.02672029659152031, -0.005639960058033466, 0.0019051599083468318, -0.026102406904101372, 0.01606513187289238, 0.023685771971940994, 0.008320914581418037, -0.007270502392202616, -0.007716755848377943, 0.04047864302992821, 0.013806402683258057, 0.022353876382112503, 0.00901432428508997, 0.003116910345852375, -0.005979799199849367, -0.02739311009645462, -0.024056505411863327, 0.011163207702338696, 0.0011885794810950756, 0.00827285647392273, 0.005035801324993372, 0.023740695789456367, -0.014376234263181686, 0.010051005519926548, 0.006982153747230768, 0.03545313701033592, 0.0031735501252114773, 0.001886280020698905, 0.021035712212324142, 0.029109470546245575, 0.011437824927270412, -0.011492748744785786, 0.003587193088606, -0.002147166756913066, -0.00011639068543445319, 0.027983538806438446, -0.002631180454045534, 0.01687525399029255, -0.008952535688877106, 0.0041158320382237434, 0.0016545713879168034, -0.002392606344074011, -0.013291493989527225, -0.04525698721408844, 0.022518647834658623, -0.01533739548176527, -0.002200373914092779, 0.01933308318257332, -0.013833863660693169, -0.021035712212324142, 0.022834457457065582, 0.014053557999432087, 0.013353283517062664, -0.0055266800336539745, 0.007812872529029846, 0.01212436892092228, -0.03136133402585983, -0.013820133171975613, -0.6362341642379761, -0.005722345318645239, 0.00730482954531908, -0.017012562602758408, 0.004661634564399719, -0.0025316313840448856, 0.012776586227118969, -0.0034721968695521355, -0.011005301959812641, 0.0364692248404026, 0.0032198920380324125, 0.0011791394790634513, -0.01179482787847519, -0.02246372401714325, -0.015268741175532341, -0.004572384059429169, -0.005667421501129866, -0.0321028046309948, -0.026335831731557846, 0.012831510044634342, -0.018330728635191917, 0.013566112145781517, -0.020898403599858284, 0.015364857390522957, -0.014472350478172302, -0.019058464094996452, 0.035013750195503235, -0.003542567603290081, 0.007380349095910788, 0.02949393540620804, -0.020294243469834328, 0.024372316896915436, 0.01919577270746231, -0.006189195439219475, 0.03572775423526764, -0.03638684004545212, -0.017259718850255013, 0.0145272733643651, 0.006542765535414219, 0.03495882824063301, -0.025347208604216576, -0.022697148844599724, 0.015529627911746502, 0.017918800935149193, -0.032075341790914536, -0.01181542407721281, 0.024646934121847153, -0.017836416140198708, -0.01138290110975504, -0.003104895818978548, 0.01548843551427126, 0.0010761579032987356, -0.00999608263373375, -0.010950379073619843, 0.012508833780884743, -0.016202440485358238, 0.011561403051018715, -0.04014910012483597, 0.012103772722184658, -0.00171378580853343, 0.008698513731360435, 0.0023102210834622383, -0.0025161842349916697, -0.037979621440172195, -0.04827778413891792, 0.013483726419508457, -0.015255010686814785, -0.007490196265280247, -0.006020992062985897, -0.029136933386325836, 0.028175771236419678, -0.004524325951933861, -0.0004194355569779873, -0.0055266800336539745, 0.01786387711763382, 0.0023342499043792486, 0.05179288983345032, -0.004441940691322088, 0.00011574704694794491, 0.013284629210829735, 0.010092198848724365, -0.014039827510714531, -0.0191683117300272, 0.0002988612395711243, 0.027173416689038277, 0.007689293939620256, -0.013202243484556675, -0.016312288120388985, 0.002718714764341712, -0.002066497690975666, -0.00562279624864459, 0.02935662679374218, -0.011149476282298565, -0.02954885922372341, -0.005643392447382212, 0.031224027276039124, -0.003053405089303851, 0.0036249528639018536, -0.0162299033254385, -0.027036108076572418, -0.029988247901201248, -0.008341510780155659, 0.024880358949303627, 0.006704103201627731, 0.004476267844438553, 0.02656925842165947, -0.006051886361092329, -0.026184793561697006, 0.04014910012483597, -0.024880358949303627, -0.005279524251818657, -0.016614368185400963, -0.010970975272357464, -0.026102406904101372, 0.01106709148734808, -0.024935282766819, 0.0034361532889306545, 0.006748728919774294, 0.010284431278705597, -0.014444888569414616, -0.01592782326042652, -0.026651643216609955, 0.013092396780848503, 0.008959400467574596, 0.012261678464710712, 0.012762854807078838, -0.000973176269326359, -0.005039233714342117, 0.017438219860196114, -0.005368775222450495, 0.003446451388299465, -0.01642213575541973, -0.004956848453730345, -0.007984507828950882, 0.02853277325630188, 0.023054150864481926, 0.02540213242173195, 0.00668350700289011, 0.012742258608341217, -0.03495882824063301, 0.006110242567956448, 0.0006736714276485145, 0.01856415346264839, -0.02066497877240181, -0.005557574797421694, -0.03479405492544174, -0.014568466693162918, 0.0044694021344184875, 0.0027925181202590466, 0.004761183634400368, -0.018289536237716675, -0.017602991312742233, 0.00500147370621562, 0.018097303807735443, -0.013552380725741386, -0.004455671180039644, -0.0013782372698187828, -0.03147118166089058, -0.020060818642377853, -0.026637911796569824, -0.013971173204481602, 0.007641236297786236, -0.028972161933779716, 0.004479700233787298, -0.015557089820504189, -0.012680470012128353, -0.0036043566651642323, 0.007984507828950882, -0.009378192946314812, -0.02608867734670639, 0.011286784894764423, -0.005114753730595112, -0.010353085584938526, 0.02935662679374218, -0.0028937833849340677, 0.021735986694693565, -0.021269137039780617, -0.012350928969681263, -0.004411045927554369, -0.004270304460078478, 0.018989810720086098, 0.02343861572444439, 0.008938804268836975, -0.0121449651196599, 0.03509613499045372, 0.015982747077941895, -0.009659675881266594, 0.027914883568882942, -0.03520598262548447, 0.028340540826320648, -0.016326019540429115, 0.00562279624864459, -0.014238924719393253, 0.0004471118445508182, -0.008828957565128803, -0.015557089820504189, -0.008348376490175724, 0.016339750960469246, 0.00685514323413372, 0.013984903693199158, 0.011259323917329311, 0.008993728086352348, 0.003892705077305436, 0.012241081334650517, 0.0069958847016096115, -0.014403695240616798, 0.013634766452014446, -0.028313079848885536, 0.025868982076644897, -0.009371327236294746, -0.007572581525892019, -0.009282076731324196, 0.007847199216485023, -0.008231664076447487, 0.006154867820441723, 0.03440959006547928, 0.015227548778057098, 0.02379561960697174, 0.009577290154993534, -0.00935759674757719, 0.009453712962567806, 0.0026037185452878475, 0.0276951901614666, -0.01967635378241539, -0.010627702809870243, 0.011204400099813938, -0.005482054781168699, 0.03817185387015343, 0.0011293650604784489, -0.015584551729261875, -0.003724501933902502, 0.02118675224483013, 0.002940125297755003, 0.019429199397563934, 0.04316989332437515, 0.0072087133303284645, 0.013188512995839119, 0.001000638003461063, 0.020898403599858284, 0.006202925927937031, 0.011939002200961113, -0.0008753437432460487, 0.009295807220041752, -0.021612409502267838, -0.0014923752751201391, 0.0022312684450298548, 0.00680365227162838, 0.026624180376529694, 0.004534624051302671, 0.010538452304899693, 0.006662910804152489, -0.018468037247657776, 0.012213620357215405, -0.006741863209754229, 0.017987456172704697, -0.0251137837767601, 0.03064732998609543, 0.02823069505393505, 0.014994123950600624, 0.016339750960469246, 0.023905465379357338, -0.006848277524113655, 0.008108085952699184, -0.005049531813710928, 0.03885839879512787, -0.015776783227920532, -0.017300911247730255, -0.03232249617576599, -0.009041786193847656, -0.013627900741994381, -0.0034567497204989195, -0.016820330172777176, 0.005166244693100452, -0.029658706858754158, -0.015557089820504189, -0.002670656656846404, -0.014431157149374485, 0.0066251507960259914, -0.0027616238221526146, 0.021584946662187576, -0.017973724752664566, -0.031196564435958862, 0.022244028747081757, 0.008252260275185108, 0.005866519641131163, -0.017342103645205498, -0.011019033379852772, -0.002605434972792864, 0.008121817372739315, 0.010867993347346783, -0.005554141942411661, -0.0027616238221526146, -0.0162299033254385, -0.008801495656371117, 0.02457827888429165, 0.00804629735648632, 0.03127894923090935, -0.020294243469834328, -0.03097687102854252, 0.003156386548653245, 0.017822684720158577, 0.004054042976349592, -0.009714599698781967, -0.028779929503798485, 0.016504520550370216, -0.014898007735610008, -0.04424090310931206, -0.03177326172590256, -0.017657915130257607, -0.02066497877240181, 0.006652612704783678, -0.016106324270367622, -0.03726561367511749, -0.014184001833200455, -0.00631277309730649, 0.0010512706357985735, 0.003144372021779418, -0.011231862008571625, 0.010147121734917164, 0.025319747626781464, -0.002524765906855464, -0.01835818961262703, 0.017959993332624435, 0.008938804268836975, 0.06316205859184265, 0.0014589062193408608, 0.008513147011399269, 0.026294639334082603, -0.003957926761358976, -0.025333477184176445, -0.014774429611861706, -0.02507259137928486, 0.045998457819223404, 0.026802683249115944, -0.010380547493696213, 0.002770205494016409, 0.021900758147239685, -0.014966662041842937, 0.006096511613577604, 0.01261868141591549, -0.016669292002916336, -0.03800708428025246, -0.0030019141267985106, 0.016779137775301933, 0.0154060497879982, -0.006439784076064825, 0.028615158051252365, 0.0046822307631373405, 0.030098093673586845, 0.015186356380581856, 0.04281289130449295, 0.022999228909611702, 0.0020373195875436068, -0.0004818681627511978, -0.0028011000249534845, -0.005736076273024082, -0.001877698116004467, 0.019593968987464905, -0.037485308945178986, 0.03693607449531555, -0.005736076273024082, -0.024797974154353142, 0.008835823275148869, 0.021392714232206345, 0.008231664076447487, 0.034821517765522, 0.0026895366609096527, -0.00029929031734354794, 0.018825039267539978, -0.025978829711675644, -0.008767168037593365, 0.021928219124674797, -0.003796589095145464, -0.0035460004583001137, 0.014623389579355717, 0.016820330172777176, -0.02018439769744873, 0.019388005137443542, -0.0010504125384613872, -0.010559048503637314, 0.018083572387695312, -0.006710968911647797, -0.0018399382242932916, -0.025814058259129524, -0.03627699241042137, 0.008135547861456871, -0.016463328152894974, -0.012845240533351898, -0.019223235547542572, -0.0247567817568779, -0.02216164395213127, -0.00295213982462883, -0.028615158051252365, 0.01371028646826744, -0.011952732689678669, -0.039792098104953766, -0.034382130950689316, 0.008135547861456871, 0.02261476404964924, 0.018111033365130424, -0.018124764785170555, -0.0011319395853206515, 0.0055507090874016285, 0.019950972869992256, 0.026212254539132118, -0.0033966770861297846, 0.006178896874189377, -0.036304451525211334, -0.0005174826364964247, -0.01106709148734808, -0.020225590094923973, -0.008973131887614727, 0.012563757598400116, 0.01638094335794449, -0.007806006819009781, -0.015790514647960663, 0.029246779158711433, -0.0040677739307284355, 0.01672421395778656, -0.006117108277976513, 0.01229600515216589, -0.0024063370656222105, 0.014719505794346333, -0.031114179641008377, 0.00901432428508997, -0.006020992062985897, -0.002320519182831049, 0.001335328328423202, 0.03413497284054756, 0.02442724071443081, -0.013140454888343811, -0.018797578290104866, 0.00418105348944664, -0.013518054038286209, 0.003007063176482916, 0.0007573440088890493, -0.041549649089574814, -0.030043169856071472, 0.011973329819738865, -0.03262457624077797, -0.018165957182645798, 0.02540213242173195, 0.02525109238922596, 0.010133391246199608, -0.021612409502267838, -0.01082680094987154, 0.02902708575129509, 0.021118097007274628, -0.006954691838473082, 0.007270502392202616, 0.01948412135243416, -0.00528295710682869, -0.025951366871595383, 0.004445373080670834, -0.0019240399124100804, 0.004277169704437256, -0.013641631230711937, -0.019099658355116844, -0.03243234381079674, 0.0014657716965302825, -0.014225194230675697, 0.009858774021267891, -0.00643291836604476, 0.01270793192088604, -0.04267558082938194, 0.011774231679737568, 0.0012323467526584864, -0.009295807220041752, 0.0007307403720915318, -0.02556690387427807, -0.023191461339592934, -0.0011327977990731597, 0.00829345267266035, 0.036633994430303574, -0.0032095937058329582, -0.018303265795111656, -0.017410758882761, -0.0364692248404026, -0.0129688186571002, -0.02527855522930622, 0.00697528850287199, 0.009639079682528973, 0.03872108832001686, 0.026486871764063835, 0.013140454888343811, 0.007709890604019165, 0.007957045920193195, 0.02510005235671997, -0.015268741175532341, 0.00309631391428411, -0.009179094806313515, -0.01459592767059803, 0.012220485135912895, -0.021845834329724312, 0.01982739381492138, 0.007778544910252094, 0.008066893555223942, -0.01261868141591549, 0.013428802601993084, 0.0019068763358518481, -0.0080257011577487, -0.012666738592088223, -0.03265203908085823, -0.0280521921813488, -0.001624535070732236, 0.028450388461351395, 0.01294822245836258, 0.008066893555223942, -0.03226757422089577, 0.00594203919172287, 0.007140059024095535, -0.0022861920297145844, 0.039105553179979324, 0.004819539841264486, 0.037485308945178986, -0.010064736939966679, 0.010037275031208992, 0.03347589075565338, 0.0005080426344648004, -0.006669776048511267, -0.009110440500080585, -0.031883109360933304, 0.0008195620612241328, 0.01883877068758011, 0.00999608263373375, 0.014101616106927395, 0.0012924192706122994, 0.0017781492788344622, -0.004980877507477999, 0.010435470379889011, -0.014952930621802807, -0.028285617008805275, 0.012831510044634342, -0.01753433607518673, -0.012268543243408203, -0.03723815456032753, -0.025306016206741333, 0.014156539924442768, -0.011458421126008034, 0.006621717941015959, 0.0004943117965012789, 0.013916249386966228, -0.011128880083560944, -0.015172624960541725, 0.011334843002259731, -0.0026689402293413877, 0.015708129853010178, 0.012440179474651814, 0.01344939973205328, 0.011671249754726887, -0.007689293939620256, -0.02802473120391369, -0.014238924719393253, 0.010099063627421856, -0.009556693956255913, -0.0028165471740067005, 0.04643784463405609, -0.007524523418396711, -0.008554339408874512, 0.002847441704943776, 0.0015996478032320738, -0.02460574172437191, -0.039105553179979324, 0.03751277178525925, 0.012062580324709415, 0.00295213982462883, -0.013058069162070751, -0.011135745793581009, 0.0025745404418557882, 0.022903112694621086, -0.015941554680466652, 0.03180072456598282, 0.014994123950600624, -0.003690174547955394, -0.0017266584327444434, 0.025306016206741333, -0.010339354164898396, 0.022861918434500694, 0.005025502759963274, 0.007696159649640322, -0.015364857390522957, -0.0003040103183593601, 0.005468323826789856, -0.03180072456598282, 0.003889272455126047, 0.003848079824820161, -0.02379561960697174, 0.015309933573007584, 0.017026294022798538, 0.006257849745452404, -0.004606711212545633, -0.01753433607518673, -0.010586510412395, 0.030784638598561287, 0.013792671263217926, -0.004253140650689602, -0.0016477059107273817, -0.0037656945642083883, 0.006920364685356617, -0.0337505079805851, -0.02424873784184456, -0.0087053794413805, 0.006611419841647148, -0.004819539841264486, -0.0036421166732907295, -0.012302870862185955, -0.009556693956255913, 0.010799339041113853, 0.006123973522335291, 0.0020253050606697798, -0.008169875480234623, 0.0010529870633035898, 0.003204444656148553, -0.012440179474651814, -0.008719109930098057, -0.0026689402293413877, -0.010710088536143303, -0.0019051599083468318, 0.005760105326771736, -0.008430762216448784, -0.006123973522335291, 0.012323467060923576, -0.019882317632436752, 0.014039827510714531, 0.014060423709452152, 0.026047483086586, -0.03427228331565857, 0.033366043120622635, -0.023548463359475136, -0.00017893056792672724, 0.02069243974983692, 0.005224600899964571, -0.03278934583067894, -0.018138496205210686, 0.013909383676946163, 0.0010727251647040248, 0.0023788753896951675, -0.0037142036017030478, 0.00042243918869644403, 0.007167520467191935, 0.009982351213693619, -0.01871519349515438, -0.013737747445702553, -0.020198127254843712, -0.010881724767386913, 0.008197336457669735, 0.02658298797905445, -0.015255010686814785, 0.0019446362275630236, 0.0005372207961045206, -0.003889272455126047, -0.013380744494497776, -0.03377797082066536, -0.015035316348075867, -0.021378984674811363, -0.0007230167975649238, -0.0013387610670179129, -0.01951158419251442, -0.009989216923713684, -0.04003925248980522, -0.006710968911647797, 0.03171833977103233, -0.0014983825385570526, 0.01949785277247429, 0.027104761451482773, -0.012913894839584827, -0.01969008520245552, 0.008403300307691097, -0.0007217295351438224, -0.041549649089574814, -0.018111033365130424, 0.0010547033743932843, -0.02246372401714325, -0.013593574054539204, -0.019236966967582703, 0.022230299189686775, 0.01075814664363861, -0.02654179558157921, -0.024221276864409447, -0.002598569495603442, -0.03707338124513626, 0.004366420675069094, -0.05184781178832054, 0.03924286365509033, 0.028834853321313858, 0.030400173738598824, 0.017149873077869415, 0.018783846870064735, 0.0005818461650051177, 0.03215772658586502, -0.01771283894777298, 0.001205743057653308, -0.004575816448777914, -0.024674395099282265, 0.018426844850182533, -0.028752468526363373, -0.0374029241502285, -0.010716953314840794, 0.026377025991678238, -0.01801491715013981, 0.015584551729261875, 0.036304451525211334, -0.00656336173415184, -0.016133787110447884, 0.004654769320040941, 0.009906832128763199, 0.004270304460078478, 0.015447243116796017, 0.014582197181880474, -0.04391136020421982, 0.007455869112163782, 0.023562194779515266, -0.0024389480240643024, -0.017273450270295143, 0.014650851488113403, 0.020596323534846306, -0.028697544708848, -0.009494905360043049, -0.013902518898248672, -0.01951158419251442, -0.02737937867641449, -0.008993728086352348, -0.008698513731360435, 1.2845884157286491e-05, -0.010641434229910374, 0.023836812004446983, 0.01654571294784546, -0.03421735763549805, -0.014142808504402637, 0.008911342360079288, 0.01270793192088604, -0.00968713779002428, 0.007998239248991013, -0.03542567789554596, -0.011581999249756336, -0.00553354574367404, 0.028642620891332626, 0.0008865001145750284, -0.019882317632436752, -0.026020022109150887, 0.00459298025816679, -0.017122410237789154, -0.007037077099084854, 0.007785410154610872, -0.01789133995771408, 0.004864165093749762, -0.02180464193224907, 0.008389568887650967, -0.016339750960469246, -0.015145163051784039, 0.016834061592817307, -0.020404091104865074, -0.025649288669228554, 0.005502650979906321, -0.0017421056982129812, -0.025978829711675644, 0.01548843551427126, 0.024509625509381294, 0.0019291889620944858, 0.013675958849489689, 0.1910240352153778, 0.009831312112510204, 0.015515897423028946, 0.04130249470472336, 0.009652810171246529, 0.00688260467723012, -0.006106810178607702, 0.006398591212928295, -0.004915656056255102, 0.011197534389793873, 0.011712443083524704, 0.017918800935149193, -0.027448033913969994, -0.0029967650771141052, 0.00644321646541357, -0.007812872529029846, -0.03298157826066017, -0.041741881519556046, 0.0028285617008805275, -0.006336802151054144, 0.013504322618246078, -0.001708636642433703, -0.01017458364367485, -0.0063642640598118305, 0.02232641540467739, 0.012440179474651814, 0.001178281381726265, 0.012090042233467102, 0.021420177072286606, 0.013133589178323746, -0.025621825829148293, -0.018426844850182533, 0.01838565245270729, -0.0033194408752024174, -0.013545515947043896, 0.002039036015048623, 0.01082680094987154, 0.0028646052815020084, 0.005660556256771088, 0.015323664993047714, 0.003060270333662629, 0.00018472327792551368, 0.027956075966358185, -0.031224027276039124, 0.0055747381411492825, -0.0034361532889306545, 0.018083572387695312, -0.008979996666312218, 0.026349563151597977, 0.03561791032552719, 0.006261282600462437, 0.009851908311247826, 0.012900164350867271, 0.00918596051633358, -0.014692043885588646, -0.01887996308505535, -0.014486080966889858, 0.010936647653579712, -0.012254812754690647, 0.021392714232206345, 0.004452238790690899, -0.006498140282928944, 0.01754806749522686, 0.005681152455508709, -0.021090636029839516, 0.008149278350174427, -0.014925469644367695, 0.0331738106906414, 0.016326019540429115, 0.022669686004519463, -0.03429974615573883, -0.024523356929421425, -0.020472746342420578, 0.00383778172545135, -0.0059866649098694324, -0.018907425925135612, 0.0165869053453207, 0.03169087693095207, 0.031581029295921326, 0.010936647653579712, 0.02063751593232155, 0.0029984815046191216, -0.031086718663573265, 0.0002645340282469988, 0.01165751926600933, -0.02985093928873539, 0.01819342002272606, -0.02757161110639572, 0.002377158962190151, -0.003896137932315469, 0.0007753657409921288, -0.003491076873615384, -0.02051393873989582, -0.011176938191056252, -0.004692528862506151, 0.006007261108607054, 0.006250984035432339, 0.02445470169186592, 0.0011748486431315541, -0.002251864643767476, -0.032212648540735245, 0.03429974615573883, 0.032212648540735245, 0.04429582506418228, -0.005595334805548191, -0.010765011422336102, -0.00992742832750082, 0.024674395099282265, 0.01657317578792572, -0.0026792383287101984, -0.004136428236961365, -0.03726561367511749, 0.01034621987491846, -0.0046993945725262165, 0.021365253254771233, 0.0307022538036108, 0.013174781575798988, -0.009062382392585278, -0.016655560582876205, 0.006903201341629028, 0.006848277524113655, -0.03427228331565857, -0.008574936538934708, 0.011286784894764423, -0.011623191647231579, -0.03328365832567215, -0.015035316348075867, 0.014142808504402637, -0.020088281482458115, -0.015694398432970047, -0.00205105054192245, -0.01042860560119152, 0.007778544910252094, -0.014389964751899242, -0.0065530636347830296, -0.001966948853805661, -0.01393684558570385, -0.03476659581065178, -0.0009439981658942997, 0.024715587496757507, 0.0017730002291500568, 0.01515889447182417, 0.0259376373142004, 0.0009585872176103294, 0.013751478865742683, 0.014115347526967525, 0.0006299042142927647, 0.01016771886497736, -0.017108678817749023, -0.02742057293653488, 0.005990097299218178, 0.04212634637951851, 0.00023857408086769283, -0.023823080584406853, 0.021543754264712334, -0.013737747445702553, -0.02571794204413891, -0.014156539924442768, 0.0067830560728907585, -0.0119664641097188, -0.05827386677265167, 0.0034086916130036116, 0.0390506312251091, 0.01181542407721281, -0.018948618322610855, -0.007579447235912085, -0.17520606517791748, 0.01817968860268593, -0.006989018991589546, -0.007915853522717953, -0.006216656882315874, 0.02559436485171318, 0.023218922317028046, -0.003566596657037735, -0.03770500421524048, -0.011019033379852772, -0.001205743057653308, 0.010668895207345486, -0.02836800366640091, -0.008176740258932114, 0.00496371416375041, -0.0025711078196763992, 0.002413202542811632, 0.014184001833200455, 0.040094178169965744, -0.0032765318173915148, 0.03034524992108345, -0.02213418297469616, 0.01179482787847519, -0.014788160100579262, 0.01509024016559124, 0.013655362650752068, 0.004205082543194294, 0.0138475950807333, 0.011746769770979881, -0.0374029241502285, -0.00134305190294981, -0.0031941465567797422, 0.028972161933779716, 0.005516381934285164, 0.008307184092700481, -0.00844449270516634, 0.004960281308740377, 0.017822684720158577, -0.02069243974983692, 0.027653997763991356, 0.025690481066703796, 0.008190471678972244, 0.01229600515216589, 0.0007444712682627141, 0.025017667561769485, 0.026926260441541672, 0.03130641207098961, -0.019127119332551956, -0.001910309074446559, 0.0008950819028541446, 0.026033753529191017, -0.036990996450185776, -0.007572581525892019, 0.0028011000249534845, 0.018605345860123634, 0.003269666340202093, 0.021200481802225113, 0.022683417424559593, -0.013064934872090816, -0.023864272981882095, -0.0021780612878501415, -0.0012675321195274591, -0.017987456172704697, -0.0053378804586827755, 0.001930905389599502, -0.026349563151597977, -0.007346021942794323, 0.04278542846441269, 0.00039991195080801845, 0.019319351762533188, 0.025470787659287453, 0.016326019540429115, -0.007006182800978422, 0.012893298640847206, 0.0008397292695008218, -0.002416635397821665, -0.018921155482530594, -0.00037652652827091515, 0.033530816435813904, 0.0074146767146885395, -0.0028096819296479225, 0.011829155497252941, -0.005008339416235685, -0.006003828253597021, -0.019113387912511826, -0.029796015471220016, 0.0162299033254385, 0.00217119581066072, 0.006985586602240801, -0.005633094348013401, 0.018797578290104866, -0.01606513187289238, 0.011856617406010628, -0.0007805148488841951, 0.010476663708686829, 0.010071602649986744, 0.02115928940474987, -0.00999608263373375, -0.004345824476331472, -0.019415467977523804, 0.0037107709795236588, 0.009700868278741837, -0.020623784512281418, 0.01739702746272087, 0.03743038699030876, 0.0251137837767601, 0.017465682700276375, 0.004764616023749113, 0.023012958467006683, 0.0032628008630126715, -0.03762261942028999, 0.01903100311756134, 0.04366420581936836, -0.0043114968575537205, 0.0008598965359851718, 0.029301702976226807, -0.0059935301542282104, -0.014582197181880474, 0.0007346022175624967, -0.00647411122918129, 0.05618676915764809, -0.03048255853354931, -0.016641829162836075, 0.008334646001458168, -0.013133589178323746, -0.012804048135876656, -0.11720681190490723, -0.024207545444369316, 0.015598282217979431, 0.006237253546714783, -0.021571217104792595, -0.00685514323413372, -0.005619363859295845, 0.02490781992673874, -0.016861524432897568, 0.025621825829148293, -0.029136933386325836, -0.01721852645277977, -0.014513542875647545, -0.0063882931135594845, 0.005145648028701544, -0.018742654472589493, 0.020555131137371063, -0.03048255853354931, -0.014650851488113403, 0.029631244018673897, 0.008767168037593365, -0.014115347526967525, 0.014719505794346333, 0.001190295908600092, -0.025319747626781464, -0.020074550062417984, -0.029905861243605614, 0.006288744043558836, 0.01886623166501522, -0.00935759674757719, 0.028258156031370163, 0.002296490129083395, 0.01901727169752121, -0.008156144060194492, 0.009879370220005512, -0.01654571294784546, 0.0004318791616242379, 0.01123872771859169, 0.025635557249188423, -0.03298157826066017, 0.0124676413834095, 0.01871519349515438, -0.004665067419409752, -0.012048848904669285, 0.005056397523730993, -0.0026363295037299395, 0.009783254005014896, 0.0307022538036108, 0.015941554680466652, -0.012199888937175274, -0.018934886902570724, -0.020623784512281418, -0.02085721120238304, -0.028450388461351395, 0.01401923131197691, -0.009645944461226463, 0.0034567497204989195, 0.004974012263119221, -0.01576305367052555, -0.015309933573007584, -0.02510005235671997, -0.007517658174037933, -0.007188117131590843, 0.028972161933779716, 0.009206556715071201, 0.021063173189759254, -0.010888589546084404, 0.008101220242679119, -0.009577290154993534, 0.007929584942758083, -0.009748926386237144, -0.007037077099084854, -0.0162299033254385, 0.006772757973521948, -0.027475494891405106, 0.0004157882940489799, -0.0023908899165689945, -0.002195224864408374, 0.01082680094987154, 0.011540806852281094, -0.011183803901076317, -0.010373681783676147, -0.0009028055355884135, -0.019388005137443542, -0.016628097742795944, 0.007119462359696627, 0.01768537610769272, -0.007085135206580162, 0.019799932837486267, -0.047151848673820496, 0.012323467060923576, 0.021365253254771233, 0.015955286100506783, 0.009817580692470074, -0.026129869744181633, 0.005461458582431078, -0.0016108041163533926, -0.0017532620113343, 0.010133391246199608, -0.0027324457187205553, 0.0021162722259759903, -0.012632411904633045, -0.03213026374578476, 0.008499416522681713, 0.00794331543147564, 0.006542765535414219, 0.010600240901112556, -0.04064341261982918, -0.01343566831201315, -0.016449596732854843, -0.012474507093429565, -0.015817977488040924, -0.027351917698979378, 0.008870149962604046, -0.004946550354361534, -0.013071799650788307, -0.02214791253209114, -0.0032593682408332825, 0.032734423875808716, -0.00835524220019579, 0.0017275166464969516, -0.0008328638505190611, -0.0030791503377258778, 0.007709890604019165, 0.008588667027652264, 0.016449596732854843, -0.008986862376332283, 0.0055198147892951965, -0.011547672562301159, 0.026116138324141502, 0.007799141108989716, -0.015227548778057098, 0.014966662041842937, 0.010408008471131325, 0.014637120999395847, 0.015557089820504189, 0.001161975902505219, -0.02577286586165428, -0.015612013638019562, 0.01016771886497736, 0.010435470379889011, -0.007606908679008484, 0.015817977488040924, -0.010215776972472668, 0.03460182249546051, -0.01883877068758011, -0.0298784002661705, -0.027159685268998146, -0.008973131887614727, -0.019964702427387238, 0.017959993332624435, 0.019429199397563934, 0.020074550062417984, 0.01433504093438387, -0.02622598595917225, -0.027791306376457214, 0.0037348000332713127, -0.01687525399029255, 0.005777268670499325, 0.019786201417446136, -0.005708614364266396, -0.003104895818978548, 0.029164394363760948, -0.007407811004668474, 0.005918010137975216, -0.01295508723706007, 0.014101616106927395, -0.007057673763483763, -0.04284035414457321, 0.009494905360043049, 0.004527758341282606, -0.01837192103266716, -0.009824446402490139, -0.005389371421188116, 0.024344854056835175, 0.009707733988761902, 0.020953327417373657, -0.0017609857022762299, -0.015708129853010178, -0.013964307494461536, -0.009261480532586575, 0.019909778609871864, 0.013318955898284912, -0.01867399923503399, -0.033887818455696106, 0.01591409184038639, 0.00434239162132144, 0.012344063259661198, -0.025374671444296837, 0.011362304911017418, 0.022669686004519463, 0.007915853522717953, -0.023163998499512672, -0.009522367268800735, -0.020555131137371063, 0.004709692671895027, -0.004345824476331472, 0.011170072481036186, -0.011739904060959816, -0.0032387718092650175, 0.018632806837558746, 0.026020022109150887, 0.0031718339305371046, 0.008396434597671032, -0.008368972688913345, 0.001829640124924481, 0.0013447683304548264, -0.013469995930790901, -0.00934386532753706, -0.024180084466934204, 0.005385938566178083, 0.019937241449952126, 0.014623389579355717, -0.03160849213600159, 0.008753437548875809, 0.006848277524113655, -0.0034859278239309788, 0.010607106611132622, 0.012701066210865974, -0.024688126519322395, -0.026102406904101372, 0.01609259471297264, 0.003152953926473856, 0.030455097556114197, 0.012151830829679966, -0.016641829162836075, 0.04885448142886162, -0.007119462359696627, 0.012762854807078838, -0.02608867734670639, 0.0005904279532842338, -0.001961799804121256, -0.0038789743557572365, -0.005907712038606405, 0.013957441784441471, -0.01138290110975504, -0.006230387836694717, -0.0018073273822665215, -0.01179482787847519, 0.016449596732854843, -0.027599073946475983, 0.08612009137868881, 0.01721852645277977, -0.006717834156006575, 0.006460380274802446, 0.018468037247657776, 0.04187919199466705, 0.021269137039780617, 0.013380744494497776, 0.015543359331786633, -0.006525601726025343, 0.024646934121847153, -0.014389964751899242, -0.01772656850516796, 0.010023544542491436, -0.019813664257526398, 0.007140059024095535, 0.011842885985970497, 0.028944700956344604, -0.00524176424369216, -0.0063471002504229546, 0.011479017324745655, 0.02067870832979679, -0.02030797488987446, -0.011231862008571625, -0.026500603184103966, -0.017328374087810516, 0.01024323794990778, 0.034491974860429764, -0.0012975684367120266, -0.03460182249546051, 0.02067870832979679, -0.019113387912511826, -0.019099658355116844, -0.005231466144323349, -0.012371525168418884, -0.0011345141101628542, -0.017589259892702103, -0.020459014922380447, -0.01376520935446024, 0.0011963031720370054, 0.012158696539700031, 0.012371525168418884, -0.02063751593232155, -0.017245987430214882, 0.015227548778057098, 0.0012615248560905457, 0.0005586752668023109, -0.020582592114806175, -0.012165562249720097], "43b721e9-efe0-41e3-b387-e32a09609efd": [-0.008326607756316662, -0.001410375814884901, 0.00790923461318016, -0.034224655479192734, 0.010963019914925098, 0.045132026076316833, 0.0088900625705719, -0.014302010647952557, -0.00650755362585187, -0.029216168448328972, 0.001626018900424242, 0.03667324781417847, 0.00405548233538866, -0.012729901820421219, -0.014538521878421307, 0.004632849711924791, 0.019644394516944885, -0.0036972365342080593, -0.005471075419336557, 0.0004995443159714341, -0.02918834425508976, -0.0008703983621671796, -0.01242382824420929, 0.01811402477324009, -0.030412640422582626, -0.007234479766339064, 0.013272488489747047, -0.011874285526573658, -0.016180193051695824, 0.00669189402833581, 0.01483068335801363, -0.009662204422056675, -0.03194301202893257, -0.01063607633113861, -0.007067530415952206, -0.0022729483898729086, 0.004493725020438433, -0.0043024285696446896, 0.0209799911826849, 0.002375552663579583, 0.018712259829044342, 0.014955895952880383, 0.004229388199746609, -0.00985002238303423, -0.027824923396110535, 0.02902139350771904, -0.006577115971595049, 0.0018729651346802711, -0.021453015506267548, -0.008375301957130432, -0.001562543329782784, -0.00586758041754365, -0.011832548305392265, 0.015595869161188602, 0.016472354531288147, -0.010058709420263767, 0.00947438646107912, 0.006378863472491503, 0.012041235342621803, -0.014677646569907665, 0.0077631534077227116, 0.0014599389396607876, 0.0008086618036031723, -0.007008402142673731, -0.011456911452114582, -0.030913488939404488, -0.004156347829848528, 0.004121566656976938, -0.011213444173336029, -0.009356129914522171, 0.04621719568967819, 0.019171372056007385, 0.027936222031712532, -0.014037673361599445, -0.01095606293529272, -0.02143910340964794, -0.01483068335801363, -0.0222877636551857, -0.00946047343313694, 0.024179857224225998, 0.01459417212754488, -0.009043100290000439, -0.009453517384827137, 0.00910570565611124, 0.02141127735376358, 0.015345444902777672, 0.014016804285347462, 0.01206906046718359, -0.031692586839199066, -0.0004499811620917171, -0.0022468625102192163, -0.0001443417859263718, 0.029939616098999977, 0.024179857224225998, 0.00505717983469367, 0.004100698046386242, 0.023692920804023743, 0.028826620429754257, -0.00814574584364891, -0.020173069089651108, -0.012194272130727768, -0.0038815767038613558, -0.03277776017785072, -0.016973203048110008, 0.0025825006887316704, -0.022663399577140808, 0.01757143810391426, -0.0156515184789896, 0.003975485917180777, 0.02255209907889366, -0.013035976327955723, 0.040318313986063004, -0.011505605652928352, -0.0066675469279289246, 0.0009964799974113703, 0.003996354527771473, 0.026906700804829597, -0.04157043248414993, -0.01821141131222248, -0.0038398392498493195, 0.01693146489560604, 0.017821863293647766, 0.03689584881067276, -0.0039059235714375973, 0.0010425650980323553, 0.014886333607137203, 0.02161996439099312, -0.009272655472159386, 0.021967776119709015, -0.01366899348795414, -0.0009538731537759304, 0.006257129367440939, 0.031024789437651634, 0.005471075419336557, -0.02676757611334324, 0.011255181394517422, -0.025626754388213158, 0.006594506558030844, 0.006511031650006771, -0.02949441783130169, 0.014997633174061775, 0.024903304874897003, 0.013453350402414799, -0.016959290951490402, 0.005954533349722624, 0.04020701348781586, 0.02259383723139763, 0.007916190661489964, 0.009244830347597599, 0.0156515184789896, -0.0011773420264944434, -0.029271818697452545, -0.025306766852736473, -0.005338907241821289, -0.002215559361502528, -0.00758229149505496, 0.008987450040876865, 0.013418569229543209, -0.006476250942796469, 0.005759758874773979, -0.001763404463417828, 0.028910094872117043, 0.007707503624260426, -0.00523456372320652, 0.01709841564297676, 0.035059403628110886, 0.01740448921918869, -0.03806449472904205, -0.0013547259150072932, -0.0213417150080204, 0.009098749607801437, 0.032499510794878006, -0.010545645840466022, 0.020993903279304504, 0.0008004012634046376, -0.004911098629236221, -0.0033789889421314, 0.011860373429954052, -0.016778428107500076, -0.03096913918852806, 0.03338990733027458, -0.0227607861161232, 0.005105873104184866, 0.006497119553387165, 0.004977182950824499, -0.022969473153352737, 0.010803026147186756, 0.01459417212754488, -0.004601546563208103, -0.009022231213748455, 0.01444113440811634, 0.008813544176518917, -0.028019696474075317, -0.01508110761642456, -0.6179358959197998, -0.0029007482808083296, 0.011728204786777496, -0.01444113440811634, 0.006597984582185745, -0.0020207848865538836, 0.027657972648739815, -0.008883106522262096, 5.551398135139607e-05, 0.03269428387284279, 0.003992876503616571, 0.005912796128541231, -0.015804555267095566, -0.013328137807548046, -0.030857838690280914, 0.001435592072084546, -0.0045180716551840305, -0.022649487480521202, -0.026753662154078484, 0.0061006140895187855, -0.021870389580726624, 0.009676116518676281, -0.002685104962438345, 0.007957927882671356, -0.013126406818628311, -0.03227690979838371, 0.03233255818486214, 0.005074570421129465, -0.002236428204923868, 0.034224655479192734, -0.030663063749670982, 0.028492720797657967, 0.011888198554515839, -0.02020089328289032, 0.03812014311552048, -0.017487963661551476, -0.014802859164774418, 0.025000693276524544, 0.0032781236805021763, 0.033751629292964935, -0.02999526634812355, -0.015248057432472706, 0.015498481690883636, 0.017988812178373337, -0.0173071026802063, 0.003787667490541935, 0.02852054499089718, -0.0034328997135162354, -0.008472688496112823, -0.0016816688003018498, -6.733414193149656e-05, 0.0055580283515155315, -0.012201228179037571, -0.006184088997542858, 0.013001195155084133, 0.0015390660846605897, 0.009676116518676281, -0.03667324781417847, 0.02219037525355816, -0.007714459672570229, 0.002749450271949172, 0.0008947451715357602, -0.0002810751902870834, -0.04938923567533493, -0.05431424826383591, 0.0011199531145393848, 0.0015103715704753995, -0.013828986324369907, 0.0022590358275920153, -0.02141127735376358, 0.03497592732310295, -0.01267425250262022, 0.008667463436722755, -0.007213611155748367, 0.017223626375198364, 0.004371990915387869, 0.039539214223623276, 0.004218953661620617, 0.0077561973594129086, 0.027212774381041527, 0.004177216440439224, -0.023303372785449028, -0.027226686477661133, 0.0013503782683983445, 0.032944709062576294, 0.024805918335914612, -0.005224129185080528, -0.011436043307185173, 0.001039086957462132, -0.004152869805693626, -0.01609671860933304, 0.0516987070441246, -0.0208686925470829, -0.033751629292964935, -0.001488633337430656, 0.05417512357234955, -0.008277914486825466, -0.0017694911221042275, -0.015568044036626816, -0.03336208313703537, -0.03313948214054108, -0.024931130930781364, 0.017654912546277046, 0.0029946572612971067, 0.016555828973650932, 0.026183251291513443, 0.0021859954576939344, -0.029271818697452545, 0.025640666484832764, -0.01780795119702816, -0.002552936552092433, -0.014691558666527271, -0.018865296617150307, -0.03013439103960991, 0.021230416372418404, -0.01882356032729149, -0.00725534837692976, 0.010197834111750126, 0.0045180716551840305, -0.00981524121016264, -0.013369875028729439, -0.022232113406062126, 0.020047856494784355, 0.014128104783594608, 0.01363421231508255, 0.017487963661551476, 0.008897018618881702, -0.017863599583506584, 0.0064936415292322636, -0.008799632079899311, 0.0009573512361384928, -0.024165945127606392, 0.0014729818794876337, -0.005206738598644733, 0.030663063749670982, 0.015943679958581924, 0.013001195155084133, -0.010128271766006947, 0.011296918615698814, -0.053173426538705826, -0.010608252137899399, -0.0003039003349840641, 0.015011545270681381, -0.025167642161250114, 0.012110797688364983, -0.03466985374689102, -0.00229729525744915, 0.002111216075718403, -0.009926540777087212, 0.004093741532415152, -0.02252427488565445, 0.001430374919436872, 0.013780293054878712, 0.015804555267095566, -0.01267425250262022, -0.0012721206294372678, -0.005331950727850199, -0.03703497350215912, -0.02359553426504135, -0.033111657947301865, -0.015261970460414886, 0.01555413194000721, -0.02020089328289032, -0.0005782366497442126, -0.026016302406787872, -0.0304682906717062, 0.009370042942464352, -0.005112829618155956, -0.022607749328017235, -0.01131083071231842, 0.011547342874109745, -0.006458860356360674, -0.006855365354567766, 0.01989481970667839, -0.012159490957856178, 0.0113803930580616, -0.018559223040938377, -0.002220776630565524, 0.0015738471411168575, 0.002352945040911436, 0.010935194790363312, 0.015846293419599533, 0.003389423480257392, -0.016068892553448677, 0.04104176163673401, 0.008410083130002022, 0.010156096890568733, 0.020924340933561325, -0.02814490906894207, 0.029438767582178116, -0.023039035499095917, 0.007185786031186581, -0.020882604643702507, 0.008472688496112823, -0.01324466336518526, -0.0036694116424769163, -0.007484904024749994, 0.01459417212754488, 0.0027929265052080154, 0.00047650179476477206, 0.02437463216483593, 0.014037673361599445, 0.003052046289667487, 0.001011262065730989, 0.008361388929188251, -0.026183251291513443, 0.008083139546215534, -0.029132694005966187, 0.03291688486933708, -0.013355962932109833, -0.0025668491143733263, -0.004100698046386242, 0.006810149643570185, -0.013453350402414799, 0.007679678499698639, 0.03750799596309662, 0.022802524268627167, 0.01170037966221571, -0.002144258003681898, -0.01794707588851452, 0.015999330207705498, -0.007464035414159298, 0.0341411791741848, -0.018267061561346054, -0.0003441160370130092, 0.01773838885128498, -0.0007751849479973316, 0.038899242877960205, -0.0025598928332328796, -0.002187734469771385, 0.0010503907687962055, 0.019505269825458527, 0.009905672632157803, 0.00558933150023222, 0.048025816679000854, 0.00021346932044252753, 0.022899910807609558, 0.0006869277567602694, 0.024054644629359245, -0.013209882192313671, 0.014621997252106667, 0.00222599389962852, 0.018976597115397453, -0.030273515731096268, -0.004121566656976938, 0.009822197258472443, 0.00012086450442438945, 0.013168144971132278, -0.008152701891958714, 0.013112494722008705, 0.00754055380821228, -0.011477780528366566, -0.001356464927084744, -0.0088900625705719, 0.0152341453358531, -0.026419764384627342, 0.021063465625047684, 0.029633542522788048, 0.00857007596641779, 0.019101809710264206, 0.017835775390267372, -0.01530370768159628, 0.011129968799650669, -0.008709200657904148, 0.052505627274513245, -0.020715655758976936, -0.007707503624260426, -0.026878874748945236, -0.01331422571092844, -0.014399397186934948, 0.0035042010713368654, -0.02622498944401741, -0.002585978712886572, -0.01355073694139719, -0.008910931646823883, -0.005025876685976982, -0.022899910807609558, 0.009703941643238068, -0.012549039907753468, 0.004118088632822037, -0.02010350674390793, -0.026238901540637016, 0.02804752252995968, 0.005231085233390331, -3.895896952599287e-06, -0.007443166803568602, -0.016917552798986435, -0.002105998806655407, -0.008604857139289379, 0.006271041929721832, -0.00045389405568130314, 0.000973002752289176, -0.018002724274992943, 0.009370042942464352, 0.022440800443291664, 0.01579064317047596, 0.05022398382425308, -0.02515373006463051, -0.006024095695465803, 0.0008956146775744855, 0.017084501683712006, 0.0020520880352705717, -0.021592140197753906, -0.03453072905540466, 0.029410943388938904, -0.019268758594989777, -0.03611674904823303, -0.02534850500524044, -0.0279779601842165, -0.019950469955801964, 0.020687829703092575, -0.011637774296104908, -0.034725502133369446, -0.010622164234519005, -0.0014695037389174104, -0.0014112453209236264, -0.00458763400092721, 0.004789364989846945, 0.01141517423093319, 0.01747405156493187, -0.00661537516862154, -0.023136423900723457, 0.001132996054366231, 0.01714015193283558, 0.07406994700431824, 0.011526473797857761, 0.005937142763286829, 0.019533095881342888, -0.012973370030522346, -0.007057095877826214, -0.018628785386681557, -0.02612760290503502, 0.04958401247859001, 0.020687829703092575, -0.018267061561346054, -0.007477947976440191, 0.021856477484107018, -0.0060380082577466965, 0.023345110937952995, 0.009620467200875282, -0.020646093413233757, -0.034085530787706375, 0.004698933567851782, 0.0077561973594129086, 0.022649487480521202, 0.0024712008889764547, 0.02181473933160305, 0.017515787854790688, 0.03739669546484947, 0.016541916877031326, 0.045771997421979904, 0.018336623907089233, 0.006354516837745905, -0.0007947493577376008, -0.01444113440811634, 0.01592976786196232, 8.146397885866463e-05, 0.022232113406062126, -0.041793033480644226, 0.03447508066892624, -0.008841369301080704, -0.026016302406787872, -0.0024729399010539055, 0.017891425639390945, 0.0034798544365912676, 0.032722108066082, -0.0013269010232761502, 5.8747540606418625e-05, 0.019811345264315605, -0.026517150923609734, -0.014399397186934948, 0.03252733498811722, -0.014608084224164486, -0.016514090821146965, 0.017933161929249763, 0.017014939337968826, -0.02219037525355816, 0.027045825496315956, 0.0008634421392343938, -0.0014408092247322202, 0.02622498944401741, -0.016068892553448677, -0.023414671421051025, -0.030078740790486336, -0.03658977150917053, 0.0028416202403604984, -0.00629538856446743, -0.010684770531952381, -0.014608084224164486, -0.02437463216483593, -0.031024789437651634, -0.013863767497241497, -0.031052613630890846, 0.012152534909546375, -0.026002390310168266, -0.03400205448269844, -0.04365730285644531, 0.012535127811133862, 0.018559223040938377, 0.017042765393853188, -0.005686718504875898, -0.005238041747361422, 0.01131083071231842, 0.012611646205186844, 0.007304042112082243, -0.016082804650068283, 0.00701188063248992, -0.03049611486494541, 0.004264169372618198, -0.00979437306523323, -0.018879210576415062, -0.0007695330423302948, 0.010545645840466022, 0.006069311406463385, -0.007450122851878405, -0.018239237368106842, 0.030190041288733482, 0.011881241574883461, 0.026711925864219666, -0.0021268674172461033, 0.00942569226026535, -0.004900664556771517, 0.020924340933561325, -0.03714627027511597, 0.0290492195636034, -0.004058960359543562, -0.0068136281333863735, -0.007547510322183371, 0.036450646817684174, 0.014162885956466198, -0.015512394718825817, -0.02198168821632862, -0.0001293424138566479, -0.01451069675385952, 0.015623694285750389, -0.0027477110270410776, -0.012500346638262272, -0.029104869812726974, 0.023011211305856705, -0.01757143810391426, -0.0010956063633784652, 0.010413477197289467, 0.013209882192313671, 0.0010277830297127366, -0.023818133398890495, -0.00016857990704011172, 0.027324073016643524, 0.022983385249972343, -0.0011590819340199232, 0.018155761063098907, 0.006535378750413656, -0.008507469668984413, -0.029271818697452545, -0.0034746371675282717, -0.015331531874835491, 0.003610283602029085, -0.003191170748323202, -0.009703941643238068, -0.024931130930781364, 0.0039059235714375973, -0.01483068335801363, 0.009196137078106403, -0.017487963661551476, 0.01716797798871994, -0.038231443613767624, 0.011721248738467693, 0.018225323408842087, -0.003092044498771429, -0.008417039178311825, -0.027824923396110535, -0.016889728605747223, 0.0011512561468407512, -0.0005569332279264927, 0.026684099808335304, 0.00045085069723427296, -0.01690364070236683, -0.021939951926469803, -0.02278861217200756, -0.026280639693140984, -0.020006120204925537, 0.006232782732695341, 0.0038433175068348646, 0.040540911257267, 0.017321014776825905, 0.00601018313318491, 0.00523456372320652, 0.008083139546215534, 0.00797879695892334, -0.019240934401750565, 0.007053617853671312, -0.009314392693340778, -0.008764850907027721, 0.01723754033446312, -0.029466593638062477, 0.0077561973594129086, 0.009050056338310242, 0.00394766079261899, -0.019574832171201706, 0.006886668503284454, 0.004298950545489788, -0.005297169554978609, -0.011797767132520676, -0.0234703216701746, -0.037424519658088684, -0.00027172776754014194, 0.01939397118985653, 0.023039035499095917, 0.0021251284051686525, -0.026141515001654625, 0.004897186532616615, 0.01419071014970541, -0.0005851929308846593, 0.03973399102687836, 0.007401429582387209, 0.032944709062576294, -0.016444528475403786, 0.006076267454773188, 0.03274993225932121, -0.0038502735551446676, -0.00658059399574995, -0.008041402325034142, -0.035059403628110886, -0.01295945793390274, 0.021258240565657616, 0.03077436424791813, 0.009961321949958801, 0.0016712343785911798, 0.007770109456032515, -0.0038294049445539713, 0.0177801251411438, -0.01764100044965744, -0.03956703841686249, 0.013397700153291225, -0.01922702230513096, -0.012472521513700485, -0.03044046461582184, -0.03636717423796654, 0.01466373447328806, -0.020952166989445686, -0.007839672267436981, -0.006559725385159254, 0.019310496747493744, -0.008897018618881702, -0.029132694005966187, 0.019992206245660782, 0.0014651560923084617, 0.0290492195636034, 0.0037841894663870335, 0.015637606382369995, 0.010872588492929935, 0.008521382696926594, -0.02423550747334957, -0.022232113406062126, 0.004584155976772308, -0.0044554658234119415, -0.006531900726258755, 0.04463117569684982, -0.011366480961441994, -0.027087561786174774, -0.001620801747776568, 0.01106040645390749, -0.007470991928130388, -0.039706163108348846, 0.026099776849150658, 0.013815074227750301, 0.009439605288207531, -0.014399397186934948, -0.0190878976136446, 0.012034279294312, 0.01780795119702816, -0.00961351115256548, 0.021703438833355904, 0.01011435966938734, -0.0009086576174013317, -0.007380560506135225, 0.02902139350771904, -0.002104259794577956, 0.02648932673037052, 0.012799464166164398, 0.00979437306523323, -0.009363086894154549, 0.001427766284905374, 0.005951055325567722, -0.03361250460147858, 0.009884803555905819, 0.0062606073915958405, -0.028770970180630684, 0.02639193832874298, 0.010837807320058346, 0.007185786031186581, 0.0030276994220912457, -0.012368177995085716, -0.014997633174061775, 0.028631845489144325, 0.00665711285546422, -0.0008112703799270093, 0.000815618026535958, -0.009119618684053421, 0.011296918615698814, -0.04237735643982887, -0.02662845142185688, 0.004118088632822037, 0.010768244974315166, -0.003269428387284279, 0.0031303036957979202, -0.019310496747493744, -0.007408385630697012, 0.01010044664144516, 0.002210342325270176, -0.0009895238326862454, -0.007046661805361509, 0.002116433111950755, 0.00020466535352170467, -0.01010044664144516, -0.01039956510066986, -0.0005873666959814727, 0.004799799062311649, -0.0038676641415804625, 0.004785886500030756, -0.007443166803568602, 0.0013808117946609855, 0.011303874664008617, -0.03194301202893257, 0.010295221582055092, 0.0032868189737200737, 0.03322295844554901, -0.042906031012535095, 0.032722108066082, -0.01459417212754488, 0.002149475272744894, 0.024583319202065468, 0.0213417150080204, -0.025125905871391296, -0.009808285161852837, 0.01011435966938734, 0.007022314704954624, 0.007415341679006815, 0.006232782732695341, 0.006354516837745905, 0.0008108356269076467, 0.0156515184789896, -0.011018669232726097, -0.023623358458280563, -0.006639722269028425, -0.019992206245660782, -0.0044554658234119415, 0.028798794373869896, -0.0033494250383228064, 0.018976597115397453, 0.0018886165926232934, 0.01669495366513729, 0.000914744334295392, -0.04749714210629463, -0.0028103170916438103, -0.015498481690883636, -0.012542083859443665, -0.019853081554174423, -0.021856477484107018, 0.012597734108567238, -0.04582764580845833, -0.004027657676488161, 0.011505605652928352, 0.01270903367549181, 0.01579064317047596, 0.030273515731096268, -0.003603327553719282, -0.02349814772605896, 3.7253874324960634e-05, -0.0023320764303207397, -0.029577892273664474, -0.018976597115397453, 0.004382425453513861, -0.026990175247192383, 0.0003406379255466163, -0.025125905871391296, 0.020826954394578934, 0.020423492416739464, -0.027157124131917953, -0.02568240277469158, -0.010691726580262184, -0.04137565940618515, 0.002674670657142997, -0.048025816679000854, 0.03500375151634216, 0.02902139350771904, 0.023205986246466637, 0.014566347002983093, 0.01633322983980179, -0.01420462317764759, 0.033779457211494446, -0.019644394516944885, -0.00907092448323965, -0.007839672267436981, -0.03330643102526665, 0.021327802911400795, -0.04493724927306175, -0.04109741002321243, -0.02029828168451786, 0.018100112676620483, -0.019282670691609383, 0.01726536452770233, 0.012027322314679623, -0.005293691530823708, -0.01619410514831543, 0.011206487193703651, 0.01042043324559927, 0.016444528475403786, 0.010378696024417877, 0.016249755397439003, -0.030384816229343414, 0.004921533167362213, 0.02980049140751362, -0.011171706020832062, -0.026837138459086418, -0.0032433425076305866, 0.011728204786777496, -0.0037250614259392023, -0.006639722269028425, -0.041320011019706726, -0.021021729335188866, -0.02603021450340748, -0.014747208915650845, -0.002182517433539033, -0.0066118971444666386, -0.01714015193283558, 0.027922309935092926, 0.010622164234519005, -0.020952166989445686, -0.008827456273138523, 0.014093323610723019, -0.0006817106041125953, -0.007735328283160925, 0.0037563645746558905, -0.026044126600027084, -0.007818803191184998, -0.011324743740260601, 0.026336289942264557, -0.0036902802530676126, -0.01650017872452736, -0.022885998710989952, 0.002655541058629751, -0.017084501683712006, -0.0034415950067341328, 0.009724810719490051, -0.01700102724134922, 0.00270249554887414, -0.01366899348795414, 0.02091042883694172, -0.023539884015917778, -0.004580677952617407, 0.007192742545157671, -0.021870389580726624, -0.01747405156493187, 0.0044137281365692616, -0.005060657858848572, -0.02491721883416176, 0.002612064592540264, 0.028186647221446037, -0.0127438148483634, -0.00016412357217632234, 0.20490272343158722, 0.006145829800516367, -0.004316341131925583, 0.04393555223941803, -0.005752802826464176, -0.016973203048110008, -0.008208352141082287, 0.018322711810469627, -0.001118214102461934, 0.011032581329345703, 0.012312528677284718, 0.006785803008824587, -0.021216504275798798, -0.003787667490541935, 0.0018607917008921504, -0.006949274335056543, -0.027017999440431595, -0.027351899072527885, 0.007241436280310154, 0.011046494357287884, 0.013105538673698902, -0.0019077463075518608, -0.00027411896735429764, -0.001989481970667839, 0.017933161929249763, 0.02589108981192112, -0.0016016721492633224, 0.00583975575864315, 0.013182057067751884, 0.021606052294373512, -0.025779791176319122, -0.014169842004776001, 0.017418401315808296, -0.0065492913126945496, -0.013794205151498318, 0.003312904853373766, 0.002639889484271407, -0.013411612249910831, 0.013369875028729439, 0.0005751933204010129, -0.0014747208915650845, -0.012646427378058434, 0.02612760290503502, -0.017390577122569084, 0.001684277318418026, 0.010969975963234901, 0.009467429481446743, -0.009050056338310242, 0.02636411413550377, 0.036311522126197815, 0.010580427013337612, 0.002177300164476037, 0.007630985230207443, 0.011575167998671532, -0.018489660695195198, -0.018962685018777847, -0.009182224050164223, 0.007672722451388836, -0.019574832171201706, 0.026948437094688416, -0.006298867054283619, -0.007213611155748367, -0.005599765572696924, 0.011804723180830479, -0.035532426089048386, 0.011150837875902653, -0.015846293419599533, 0.03764712065458298, 0.024249419569969177, 0.007888365536928177, -0.019407883286476135, -0.03032916598021984, -0.025710228830575943, 0.009383955039083958, -0.0010190877364948392, -0.019922643899917603, -0.0024172901175916195, 0.03948356583714485, 0.036172401160001755, 0.01338378805667162, 0.022440800443291664, 0.00044954640907235444, -0.028172733262181282, 0.001570369116961956, -0.00162862753495574, -0.03458637744188309, 0.013828986324369907, -0.009870891459286213, -0.009488298557698727, -0.006090180017054081, -0.0003967225202359259, -0.003455507569015026, -0.01451069675385952, 0.00953003577888012, 0.0032311691902577877, -0.00861877016723156, 0.004667630884796381, 0.017460139468312263, -0.005686718504875898, -0.014371572062373161, -0.03539330139756203, 0.053006477653980255, 0.029466593638062477, 0.025334591045975685, -0.020256543532013893, -0.0019268759060651064, -0.0145246097818017, 0.02518155425786972, 0.0032033442985266447, 0.006531900726258755, -0.01178385503590107, -0.027713622897863388, 0.014691558666527271, 0.007839672267436981, 0.018656611442565918, 0.04009571298956871, 0.017682738602161407, -0.007888365536928177, -0.01754361391067505, 0.0152341453358531, 0.012889895588159561, -0.03480897843837738, 0.004305906593799591, 0.010768244974315166, -0.012298615649342537, -0.019839169457554817, -0.007415341679006815, 0.011408218182623386, -0.02468070574104786, -0.01714015193283558, -0.0043441662564873695, -0.01915745995938778, 0.005210216622799635, -0.019449621438980103, -0.00814574584364891, 0.01206906046718359, -0.0011243007611483335, -0.027115387842059135, 0.00045389405568130314, 0.01683407835662365, 0.009662204422056675, 0.00897353794425726, 0.025779791176319122, -0.0006895363330841064, 0.01645844243466854, 0.00821530818939209, 0.005964967887848616, 0.008097052574157715, -0.02188430167734623, -0.02918834425508976, 0.006775368470698595, 0.04938923567533493, -0.004952836316078901, 0.004159825854003429, 0.02646150067448616, -0.029939616098999977, -0.013613343238830566, -0.015095020644366741, 0.013272488489747047, -0.00826400239020586, -0.047719743102788925, -0.00579801807180047, 0.04232170805335045, 0.005165001377463341, -0.024458106607198715, -0.009217005223035812, -0.17774561047554016, 0.013613343238830566, -0.0016677562380209565, -0.006326691713184118, -0.009467429481446743, 0.014747208915650845, 0.01199949812144041, 0.0002645541389938444, -0.030663063749670982, -0.01548456959426403, 0.017390577122569084, 0.008625726215541363, -0.025738053023815155, -0.0005795409670099616, 0.0024294634349644184, -0.01709841564297676, 0.005578896962106228, 0.009592642076313496, 0.03956703841686249, 0.006413644645363092, 0.042599957436323166, -0.024652881547808647, 0.006643200293183327, -0.020326105877757072, 0.024193769320845604, 0.015874117612838745, -0.0007408385863527656, 0.013209882192313671, 0.006444947794079781, -0.03458637744188309, -0.0027251034043729305, 0.0028190123848617077, 0.03784189373254776, 0.0059336647391319275, 0.010343914851546288, -0.009724810719490051, 0.007735328283160925, 8.07031465228647e-05, -0.012229053303599358, 0.02968919277191162, 0.03238821029663086, 0.009961321949958801, 0.014969808049499989, -0.014427222311496735, 0.02259383723139763, 0.02615542709827423, 0.013794205151498318, -0.01605498045682907, -0.005331950727850199, 0.0010547384154051542, 0.015275882557034492, -0.031692586839199066, -0.008681375533342361, -0.011860373429954052, 0.007714459672570229, 0.002598152030259371, 0.013209882192313671, 0.025404153391718864, -0.011533430777490139, -0.021633876487612724, -0.0015025457832962275, 0.010928238742053509, -0.007199698593467474, 0.004152869805693626, 0.0037285396829247475, -0.02935529313981533, -0.01080998219549656, 0.037786245346069336, 0.0007751849479973316, 0.02131389081478119, 0.016792340204119682, 0.0021564315538853407, -0.018670523539185524, 0.020646093413233757, -0.002293817000463605, 0.011206487193703651, -0.033946406096220016, 0.010156096890568733, 0.028770970180630684, -0.004448509309440851, 0.0031824754551053047, 0.009523079730570316, -0.0026972785126417875, -0.023108597844839096, -0.029856141656637192, -0.014357659965753555, 0.01686190254986286, -0.005286735482513905, -0.0010634337086230516, -0.010643033310770988, 0.010225659236311913, -0.021466927602887154, 0.004545896779745817, -0.0026103255804628134, -0.002441636985167861, 0.01370377466082573, 0.010197834111750126, -0.00021238242334220558, 0.007491860538721085, -0.021786915138363838, -0.0035963712725788355, -0.003704192815348506, -0.004817189648747444, 0.006914493162184954, 0.03322295844554901, 0.0170705895870924, 0.00985002238303423, -0.01048999559134245, 0.02356771007180214, -0.0145802590996027, -0.035365477204322815, 0.02451375685632229, 0.022134725004434586, -0.004938923753798008, -0.012180360034108162, 0.04062438756227493, -0.012180360034108162, -0.025125905871391296, 0.0026485847774893045, -0.01299423910677433, 0.07473774254322052, -0.028103170916438103, -0.01395419891923666, 0.014635909348726273, -0.0060449643060564995, -0.006111048627644777, -0.10990844666957855, -0.0286874957382679, 0.02235732600092888, 0.007157961372286081, -0.02231558784842491, 0.0036137618590146303, -0.011936891824007034, 0.03544894978404045, 0.00011303874634904787, 0.015067195519804955, -0.02103564143180847, -0.01878182217478752, -0.01260469015687704, -0.01242382824420929, 0.008027490228414536, -0.0227607861161232, 0.017487963661551476, -0.030857838690280914, -0.005964967887848616, 0.017794037237763405, 0.011902110651135445, -0.00993349775671959, 0.0145246097818017, 0.0037737551610916853, -0.009856978431344032, -0.01669495366513729, -0.03402987867593765, 0.01915745995938778, 0.022635575383901596, -0.0019268759060651064, 0.030718713998794556, -0.0017521005356684327, 0.023957258090376854, -0.01298032607883215, 0.00822922121733427, -0.01070563867688179, -0.01693146489560604, 0.0077561973594129086, 0.023275548592209816, -0.024527668952941895, 0.0048797959461808205, 0.00729012954980135, -0.001791229355148971, -0.016875814646482468, -0.002655541058629751, 0.009898716583848, 0.01075433287769556, 0.0291605181992054, 0.022649487480521202, -0.008055315352976322, -0.013119450770318508, -0.020006120204925537, -0.01291076373308897, -0.023706834763288498, 0.024179857224225998, -0.009731766767799854, 0.006858843378722668, 0.0027651016134768724, -0.014969808049499989, -0.010274352505803108, -0.011234312318265438, 0.00021281717636156827, -0.020993903279304504, 0.013787249103188515, 0.0042398227378726006, 0.0026068473234772682, -0.009620467200875282, 0.01906007155776024, -0.002766840625554323, 0.0014234186382964253, 0.002749450271949172, -0.007123180199414492, -0.021786915138363838, 0.011011713184416294, -0.02622498944401741, 0.011491692624986172, -0.006031051743775606, -0.016277579590678215, 0.008994406089186668, -0.00569715304300189, -0.02669801376760006, -0.009001362137496471, -0.0045737214386463165, -0.02696234919130802, -0.004065916873514652, 0.0032468207646161318, 0.009940453805029392, -0.0023112075868993998, 0.026586713269352913, -0.04463117569684982, 0.01078911405056715, 0.016416704282164574, 0.010476083494722843, 0.01750187575817108, -0.022468624636530876, 0.024346807971596718, -0.0005891057662665844, -0.005297169554978609, 0.018322711810469627, 0.0012964674970135093, 0.007950971834361553, 0.0035146356094628572, -0.043712954968214035, 0.0015921072335913777, 0.003759842598810792, 0.017321014776825905, 0.014135060831904411, -0.04774756729602814, -0.0021859954576939344, -0.006128439214080572, -0.023386847227811813, 0.0038120143581181765, -0.02380422130227089, 0.0085352947935462, -0.00917526800185442, 0.0006769282044842839, -0.024569407105445862, -0.01547065656632185, 0.03127521276473999, -0.00270249554887414, 0.011484736576676369, -0.0006525813951157033, -0.004483290482312441, 0.011436043307185173, 0.001801663776859641, 0.02326163463294506, -0.02188430167734623, 0.008097052574157715, -0.00012858158152084798, 0.011283006519079208, 0.008006621152162552, -0.016110630705952644, 0.00793010275810957, 0.0059893145225942135, 0.012089928612112999, 0.012451652437448502, -0.00044019895722158253, -0.01483068335801363, -0.02700408734381199, 0.006504075601696968, 0.009203093126416206, -0.004855448845773935, 0.013307269662618637, -0.0061423517763614655, 0.04744149371981621, -0.026990175247192383, -0.02572414092719555, -0.01835053600370884, -0.01616627909243107, -0.019783519208431244, 0.014802859164774418, 0.0222877636551857, 0.02349814772605896, -0.000816922343801707, -0.024249419569969177, -0.020006120204925537, -0.0037667988799512386, -0.01787751354277134, 0.0034346389584243298, 0.024332894012331963, -0.002982483943924308, -0.01680625230073929, 0.04655109718441963, -0.017209714278578758, -0.005610200110822916, -0.017988812178373337, 0.024666793644428253, -0.009801329113543034, -0.02871531993150711, -0.009703941643238068, 0.005373687949031591, -0.02629455178976059, -0.01515066996216774, -0.009349173866212368, 0.02399899624288082, 0.017154064029455185, 0.01818358711898327, 0.005356297362595797, -0.014357659965753555, -0.022134725004434586, -0.015915855765342712, 0.017599264159798622, 0.013286400586366653, -0.01771056279540062, -0.024152033030986786, 0.00647972896695137, 0.011449955403804779, -0.007098833564668894, -0.016889728605747223, 0.006455381866544485, 0.006104092579334974, 0.0009903933387249708, -0.02138345316052437, 0.004848492797464132, -0.0029250949155539274, -0.0036554993130266666, -0.005871058441698551, 0.017821863293647766, -0.006810149643570185, 0.007784022018313408, 0.026684099808335304, 0.02885444462299347, 0.001333857188001275, 0.013675949536263943, -0.01107431948184967, -0.016305403783917427, -0.0010373479453846812, 0.00590931810438633, -0.010608252137899399, -0.018670523539185524, 0.010107402689754963, 0.022468624636530876, 0.014886333607137203, -0.012027322314679623, -0.007742284797132015, 0.017960987985134125, 0.003488549729809165, 0.009404824115335941, 0.00512674218043685, -0.02518155425786972, -0.02639193832874298, 0.028117084875702858, 0.0046780649572610855, 0.04009571298956871, 0.011088231578469276, -0.01965830847620964, 0.049973562359809875, -0.007568378932774067, 0.008980493992567062, -0.016486266627907753, 0.013467262499034405, 0.0003086827346123755, -0.004291994497179985, -0.0044067720882594585, 0.00379114574752748, -0.008222264237701893, -0.005248475819826126, -0.004785886500030756, -0.0022190376184880733, 0.021633876487612724, -0.023887695744633675, 0.07512728869915009, 0.03080218844115734, -0.02100781723856926, 0.009982191026210785, 0.006236260756850243, 0.038398392498493195, 0.020520880818367004, 0.020952166989445686, 0.015846293419599533, -0.0019755694083869457, 0.013877680525183678, -0.0025390242226421833, -0.0006977968732826412, -0.004591112025082111, -0.02070174179971218, -0.006424079183489084, 0.002149475272744894, 0.024833742529153824, -0.00865355134010315, -0.012187316082417965, 0.002772057894617319, -0.0008825717377476394, -0.018197499215602875, -0.006058876868337393, -0.028117084875702858, -0.00523456372320652, 0.016416704282164574, 0.021299978718161583, 0.0007012750138528645, -0.04605024680495262, 0.02150866575539112, -0.0061493078246712685, -0.028089258819818497, -0.021425189450383186, -0.017627088353037834, 0.019505269825458527, -0.0247780941426754, -0.016987115144729614, -0.00012477739073801786, 0.005735412240028381, 0.018030550330877304, 0.02219037525355816, -0.029243994504213333, -0.0220512505620718, 0.026781488209962845, 0.00819444004446268, 0.001427766284905374, -0.021494751796126366, -0.01117866300046444], "307eca8f-2352-43d0-9760-0e10d0586e6b": [0.001433381112292409, -0.011501402594149113, 0.0020371361169964075, -0.03897010535001755, -7.306733550649369e-06, 0.03476529195904732, 0.009206618182361126, -0.012209075503051281, -0.016750548034906387, -0.017959777265787125, -0.009474571794271469, 0.028884047642350197, -0.010037962347269058, -0.003912813030183315, -0.010958624072372913, 0.013294631615281105, 0.024500597268342972, -0.0024373491760343313, -0.015527579933404922, -0.0011207683710381389, -0.029213836416602135, -0.003495423123240471, -0.019072815775871277, 0.012985453940927982, -0.013466397300362587, 0.000632096198387444, 0.004252907820045948, -0.010395234450697899, -0.012435805052518845, 0.0069118342362344265, 0.019251450896263123, -0.010594481602311134, -0.04015184938907623, 0.003950600977987051, -0.009117300622165203, 0.01153575535863638, -0.0007798143196851015, -0.0007141141104511917, 0.019155262038111687, -0.0030969278886914253, 0.015335203148424625, 0.02094162069261074, 0.0029268802609294653, -0.0009636031463742256, -0.010862435214221478, 0.02374483086168766, -0.008581392467021942, 0.0011542625725269318, -0.020762985572218895, 0.003376905107870698, 0.0024304785765707493, 0.0010718152625486255, -0.019801100715994835, 0.006248820573091507, 0.016516948118805885, -0.010876176878809929, 0.012408322654664516, 0.00753705995157361, 0.017643729224801064, -0.009103558957576752, 0.007049246691167355, 0.001980453496798873, -0.012422064319252968, -0.0004332778917159885, -0.015445132739841938, -0.0254212599247694, -0.018564390018582344, 0.009069206193089485, -0.0010297327535226941, -0.003510882146656513, 0.05386558920145035, 0.012154110707342625, 0.015802403911948204, -0.021559976041316986, -0.012312134727835655, -0.014675624668598175, -0.018083447590470314, -0.03163229301571846, -0.011844933032989502, 0.013631291687488556, 0.02470671571791172, -0.012470158748328686, -0.001274498295970261, 0.009453960694372654, 0.024500597268342972, 0.026012131944298744, 0.011487660929560661, 0.006180114578455687, -0.006509903818368912, -0.012009827420115471, -0.00617667892947793, -0.004513991065323353, 0.02314021624624729, 0.014208422973752022, 0.025366295129060745, 0.008753158152103424, 0.029213836416602135, 0.017121562734246254, -0.006485856603831053, -0.007598895579576492, -0.01709407940506935, 0.0020165243186056614, -0.02454182133078575, -0.017602505162358284, -0.0004053660377394408, -0.03347361460328102, 0.009055464528501034, -0.019567498937249184, 0.01459317747503519, 0.017671210691332817, -0.018358271569013596, 0.04273520037531853, -0.007598895579576492, -0.01427712943404913, 0.0008042908739298582, -0.013177831657230854, 0.027482442557811737, -0.04364211857318878, -0.010271563194692135, -0.006691975053399801, 0.019553758203983307, 0.012813689187169075, 0.050595179200172424, -0.012470158748328686, 0.007138564717024565, 0.019086556509137154, 0.02483038790524006, -0.002296501537784934, -0.0008283380302600563, -0.0087668988853693, 0.0013191573088988662, 0.00694618746638298, 0.04097632318735123, 0.003950600977987051, -0.025737307965755463, 0.01103420089930296, -0.026561781764030457, 0.010986106470227242, -0.008725675754249096, -0.028059573844075203, 0.020488161593675613, 0.028279433026909828, 0.012456417083740234, -0.008320309221744537, -0.007543930783867836, 0.04465897008776665, 0.016228383406996727, 0.009941773489117622, 0.01427712943404913, -0.001304557197727263, 0.0012057921849191189, -0.018193377181887627, -0.03355606272816658, 0.02050190232694149, -0.002868480049073696, -0.0009636031463742256, 0.01765746995806694, 0.01893540285527706, -0.021834800019860268, 0.009893679060041904, -0.0004603309207595885, 0.03704633191227913, 0.0005084251752123237, 0.009034853428602219, 0.016626877710223198, 0.026781640946865082, 0.011707521043717861, -0.03531493991613388, -0.007612636778503656, -0.01151514332741499, 0.0034696583170443773, 0.02866418845951557, -0.01015476230531931, 0.020433196797966957, -0.010759375989437103, 0.004476203117519617, -0.0028959624469280243, -0.0035830235574394464, -0.010580740869045258, -0.03756849840283394, 0.026094580069184303, -0.01457943581044674, -0.0026864088140428066, 0.017767399549484253, -0.004895309917628765, -0.025572413578629494, 0.022686757147312164, 0.011240319348871708, 0.007997390814125538, -0.009220359846949577, 0.01511534396559, 0.006959928665310144, -0.03550731763243675, -0.01673680730164051, -0.6279188394546509, 0.0032394928857684135, 0.0038853303994983435, -0.008004261180758476, 0.010525776073336601, -0.002473419765010476, 0.030285652726888657, -0.0016532407607883215, -0.004843780770897865, 0.019732393324375153, 0.003706694580614567, 0.004101754631847143, -0.0009584501967765391, -0.01698414981365204, -0.026122061535716057, -0.010972365736961365, 0.003947165794670582, -0.03138494864106178, -0.01954001747071743, -0.002571325981989503, -0.020790468901395798, 0.00869132298976183, -0.008643228560686111, 0.004345661494880915, -0.014345834963023663, -0.03410571068525314, 0.018619354814291, 0.005080816801637411, -0.005870936904102564, 0.02918635495007038, -0.02707020565867424, 0.028251951560378075, 0.01874302513897419, -0.0026056792121380568, 0.04031674191355705, -0.010477681644260883, -0.01222968753427267, 0.03174222260713577, 0.011721261776983738, 0.04015184938907623, -0.022123366594314575, -0.011631944216787815, 0.0030969278886914253, 0.018619354814291, -0.02682286500930786, -0.005018981173634529, 0.032456766813993454, -0.00651677418500185, 5.721930574509315e-05, -0.007014893461018801, 0.0019890419207513332, -0.004802556708455086, -0.02206840179860592, -0.004981192760169506, 0.005627030041068792, -0.011996086686849594, 0.00865009892731905, -0.021752353757619858, 0.007818754762411118, -0.008045485243201256, 0.007310329936444759, 0.010951753705739975, -0.010388363152742386, -0.04619798809289932, -0.05710851773619652, 0.01658565364778042, -0.00567512447014451, -0.008897440508008003, -0.007008023094385862, -0.02250812016427517, 0.019965995103120804, -0.005032722372561693, -0.0024115843698382378, -0.006688539404422045, 0.015019155107438564, 0.009433348663151264, 0.04512616991996765, 0.0017520057735964656, -0.002348031150177121, 0.013061030767858028, 0.010141021572053432, -0.02173861302435398, -0.023593677207827568, -0.014606918208301067, 0.03311634436249733, 0.02619076892733574, -0.006094231735914946, -0.011089165695011616, 0.009412736631929874, -0.006557997781783342, -0.0009636031463742256, 0.04257030412554741, -0.019512534141540527, -0.029983345419168472, -0.009907420724630356, 0.04880881682038307, -0.003435305319726467, 0.0027156088035553694, -0.030093275010585785, -0.033501096069812775, -0.04125114530324936, -0.02282416820526123, 0.005383123643696308, -0.0019993477035313845, 0.014064140617847443, 0.010697540827095509, -0.007619507145136595, -0.024885352700948715, 0.02554493024945259, -0.02254934422671795, 0.0006501315510831773, -0.0190590750426054, -0.005774748511612415, -0.028774118050932884, 0.005795360077172518, -0.0234287828207016, -0.00135608681011945, 0.010938012041151524, 0.013782445341348648, -0.012827429920434952, -0.0096325958147645, -0.008602004498243332, 0.027963384985923767, 0.01989728957414627, 0.008560781367123127, 0.015926076099276543, 0.0007733731181360781, -0.012786206789314747, 0.015527579933404922, -0.0023222663439810276, 0.0026417498011142015, -0.027083948254585266, -0.0006673080497421324, -0.007523318752646446, 0.029818451032042503, 0.015060379169881344, 0.025888461619615555, 0.0003699394583236426, 0.014167198911309242, -0.04037170857191086, -0.008093579672276974, 0.0015261344378814101, 0.0148954838514328, -0.018797991797327995, -0.006506468169391155, -0.04180079698562622, 0.0005865783896297216, 0.0008966146851889789, 0.0028221034444868565, -0.00011465331772342324, -0.01427712943404913, -0.005348770413547754, 0.005791924893856049, 0.016956666484475136, -0.007166047114878893, -0.008320309221744537, -0.019114039838314056, -0.04276268184185028, -0.022439414635300636, -0.0311101246625185, -0.010457069613039494, 0.013500750064849854, -0.009598243050277233, -0.004541473463177681, -0.016324570402503014, -0.02238444983959198, 0.004572391510009766, 0.002083512721583247, -0.020749244838953018, -0.019320158287882805, 0.006640445441007614, -0.0011834626784548163, -0.007543930783867836, 0.016640618443489075, -0.011611332185566425, 0.020969104021787643, -0.00830656848847866, -0.006815645843744278, -0.008711934089660645, -0.006867175456136465, 0.01203043945133686, 0.03003831021487713, -0.008189767599105835, -0.012504511512815952, 0.04457652196288109, 0.011611332185566425, -0.00023682136088609695, 0.022370709106326103, -0.030890265479683876, 0.03699136897921562, -0.021450046449899673, -0.0005414899787865579, 0.0008364968816749752, 0.002653773408383131, -0.0273862536996603, 0.0016094405436888337, -0.01966368779540062, 0.012518253177404404, 0.009982997551560402, 0.013528232462704182, 0.016434499993920326, 0.013445785269141197, -0.0009318265947513282, 0.006276302970945835, 0.006324397400021553, -0.01849568448960781, 0.01309538446366787, -0.034380536526441574, 0.02355245314538479, -0.005307546816766262, -0.010141021572053432, 0.003744482761248946, 0.005005239974707365, -0.012841171585023403, -0.0004925369285047054, 0.03817311301827431, 0.02274172194302082, 0.016448242589831352, 0.008814993314445019, -0.004751027096062899, 0.024500597268342972, 0.005901854485273361, 0.016489466652274132, -0.017671210691332817, 0.0030711630824953318, 0.01167316734790802, 0.004964016377925873, 0.034737806767225266, -0.006269432138651609, -0.013823668472468853, -0.008430239744484425, 0.007756919600069523, 0.011302154511213303, 0.011487660929560661, 0.052271608263254166, 0.005262888036668301, 0.011576979421079159, -0.0064446330070495605, 0.02177983522415161, 0.0027533972170203924, 0.012470158748328686, 0.01241519395262003, 0.019210226833820343, -0.03127501904964447, 0.008018002845346928, -0.004311308264732361, -0.0015725110424682498, 0.02259056828916073, -0.0013406279031187296, 0.008883699774742126, -0.002868480049073696, -0.0067091514356434345, -0.005908725317567587, -0.0011611331719905138, 0.019965995103120804, -0.021436305716633797, 0.02742747776210308, 0.011219707317650318, 0.010292175225913525, 0.021450046449899673, 0.019361380487680435, -0.005932772532105446, 0.00040579543565399945, 0.0035864587407559156, 0.044906310737133026, -0.017836105078458786, -0.012140369042754173, -0.0328415185213089, -0.007770660798996687, -0.02029578387737274, 0.013844280503690243, -0.010965494439005852, -0.004568956326693296, -0.017561281099915504, -0.00913104135543108, -0.00424603745341301, -0.020364489406347275, 0.016640618443489075, -0.010395234450697899, 0.016805514693260193, -0.01610471121966839, -0.03558976203203201, 0.02594342641532421, 0.009557019919157028, 0.0044968146830797195, -0.0017210879595950246, -0.01698414981365204, -0.002160807140171528, -0.0020800773054361343, -0.004805992357432842, -0.003023068653419614, -0.01389237493276596, -0.02494031749665737, -0.007413389161229134, 0.014840519055724144, 0.013425173237919807, 0.05815285071730614, -0.02418454922735691, -0.021972212940454483, -0.010003609582781792, 0.02445937506854534, 0.012133498676121235, -0.024899093434214592, -0.039904508739709854, 0.02058435045182705, -0.029213836416602135, -0.03795325383543968, -0.037183746695518494, -0.03256669640541077, -0.02114773914217949, 0.01153575535863638, -0.02351122908294201, -0.02443189173936844, -0.014964190311729908, 0.0016635466599836946, 0.016407018527388573, 0.004184201825410128, -0.005070510786026716, 0.005984302144497633, 0.010745635256171227, -0.014442023821175098, -0.007935555651783943, 0.01475807186216116, 0.025874720886349678, 0.08195264637470245, 0.009584502317011356, -0.0014977931277826428, 0.019649947062134743, -0.0113914730027318, -0.015129084698855877, -0.019924771040678024, -0.012490769848227501, 0.045868195593357086, 0.02246689796447754, -0.02041945420205593, 0.0005694018909707665, 0.020268302410840988, -0.014922966249287128, 0.018234601244330406, 0.0017425586702302098, -0.01105481293052435, -0.023566193878650665, 0.007674472406506538, 0.015871111303567886, 0.013521362096071243, -0.01409849338233471, 0.024363186210393906, 0.022920357063412666, 0.03259417787194252, 0.030368098989129066, 0.03187963366508484, 0.0183857548981905, 0.0014703107299283147, -0.01650320738554001, -0.011006718501448631, 0.007440871559083462, 0.004352531861513853, 0.024157067760825157, -0.032731588929891586, 0.03575465828180313, -5.9688431065296754e-05, -0.015293979085981846, -0.0027018676046282053, 0.005152957979589701, 0.008237862028181553, 0.043064989149570465, -0.011343378573656082, -0.0015209814300760627, 0.020199595019221306, -0.023456264287233353, -0.014977931044995785, 0.024294478818774223, -0.013974822126328945, -0.006839693058282137, 0.008698193356394768, 0.031769704073667526, -0.005297240801155567, 0.01609097048640251, 0.009584502317011356, -0.013026678003370762, 0.015582544729113579, -0.004452155902981758, -0.012106016278266907, -0.02686408720910549, -0.029406214132905006, -0.003926554229110479, -0.017643729224801064, -0.01606348715722561, -0.02430822141468525, -0.024486856535077095, -0.03300641477108002, -0.006808775011450052, -0.02370360679924488, 0.012037309817969799, -0.02274172194302082, -0.025613637641072273, -0.03204452991485596, 0.01419468130916357, 0.025132693350315094, 0.01985606551170349, -0.006674798205494881, -0.0051735700108110905, 0.0014385341200977564, 0.027358772233128548, 0.008794381283223629, -0.007207270711660385, 0.0049090515822172165, -0.021752353757619858, 0.0008519557304680347, -0.009928032755851746, -0.01845446042716503, -0.01035401038825512, 0.0015518992440775037, 0.009660079143941402, -0.017671210691332817, -0.01949879340827465, 0.020158370956778526, 0.0032326222863048315, 0.020845433697104454, -0.0033786229323595762, -0.004331919830292463, -0.0009395559900440276, 0.015403909608721733, -0.03347361460328102, 0.03251172974705696, -0.004623921122401953, -0.009756267070770264, -0.00810732040554285, 0.022961581125855446, 0.02029578387737274, -0.009721914306282997, -0.01610471121966839, -0.004919357132166624, -0.006667927838861942, 0.020955363288521767, 0.003734176978468895, -0.009996738284826279, -0.014744330197572708, 0.012470158748328686, -0.008705063723027706, 0.008718805387616158, 0.011363990604877472, 0.02118896320462227, 0.006159502547234297, -0.018811732530593872, -0.006540821399539709, 0.029763486236333847, 0.032731588929891586, -0.005541147664189339, 0.01709407940506935, 0.005602982826530933, 0.013521362096071243, -0.019911030307412148, 0.001756299869157374, -0.008072967641055584, -0.001630911254324019, -0.015527579933404922, -0.003775400575250387, -0.018523165956139565, -0.007715696003288031, -0.0028049268294125795, 0.020515643060207367, -0.01642075926065445, 0.01981484144926071, -0.036661580204963684, 0.022288260981440544, 0.011109777726233006, -0.007543930783867836, 0.004943404346704483, -0.033583544194698334, -0.015706216916441917, 0.0017863587709143758, -0.004510555882006884, 0.033088862895965576, 0.006870610639452934, -0.010230339132249355, -0.039822060614824295, -0.023497488349676132, -0.025132693350315094, -0.019155262038111687, 0.005132346414029598, -0.000878149934578687, 0.039464786648750305, 0.01954001747071743, 0.013170960359275341, 0.005627030041068792, 0.015527579933404922, 0.0216973889619112, -0.015225273557007313, 0.008567651733756065, -0.002519796369597316, -0.019993476569652557, 0.0020577479153871536, -0.02478916384279728, 0.01086930651217699, 0.007076729089021683, 0.004579261876642704, -0.02242567390203476, 0.009584502317011356, 0.010250951163470745, 0.0008326321258209646, -0.0066713630221784115, -0.024967798963189125, -0.0411687009036541, -0.0031244102865457535, 0.02129889279603958, 0.011089165695011616, 0.011006718501448631, -0.02646559290587902, 0.0039059421978890896, 0.005410606041550636, 0.0020577479153871536, 0.03424312546849251, -0.002408148953691125, 0.025201400741934776, -0.014991672709584236, 0.027963384985923767, 0.029461178928613663, 0.007488965522497892, -0.019361380487680435, -0.005867501720786095, -0.039217445999383926, -0.00794929638504982, 0.029736002907156944, 0.015912335366010666, 0.013981692492961884, 0.00847146287560463, -0.00033601580071263015, -0.016187159344553947, 0.009770008735358715, -0.007550801150500774, -0.035095080733299255, 0.004562085494399071, -0.015293979085981846, -0.00408457824960351, -0.03223690390586853, -0.02322266437113285, 0.01003109198063612, -0.01709407940506935, -0.0026177025865763426, 0.004301002249121666, 0.013624421320855618, -0.011467048898339272, -0.036304306238889694, 0.027317548170685768, 0.003024786477908492, 0.02602587267756462, 0.016448242589831352, 0.005785054061561823, 0.022247036918997765, 0.0064686802215874195, -0.01705285534262657, -0.02602587267756462, -0.0038853303994983435, -0.0028856564313173294, 0.0014144870219752192, 0.04284512996673584, -0.014387059025466442, -0.01765746995806694, -0.008258474059402943, 0.004105189815163612, -0.008059225976467133, -0.0354798324406147, 0.038420453667640686, 0.020969104021787643, 0.007234753109514713, -0.020488161593675613, -0.014551953412592411, 0.005393429193645716, 0.019883546978235245, -0.0075164479203522205, 0.0236623827368021, 0.018399495631456375, 0.002157371724024415, -0.0015175461303442717, 0.03795325383543968, -0.006279738154262304, 0.013425173237919807, 0.0054380884394049644, -0.0008897440857253969, 0.0005118604749441147, -0.007887461222708225, 0.012044180184602737, -0.025764789432287216, -0.0015372991329059005, 0.022535603493452072, -0.0328415185213089, 0.012422064319252968, 0.01746509224176407, 0.009646337479352951, 0.006135455332696438, -0.014771813526749611, -0.016530688852071762, 0.026657968759536743, 0.011109777726233006, -0.008066097274422646, 0.0016317700501531363, -0.006300350185483694, 0.008560781367123127, -0.041580937802791595, -0.01937512308359146, -0.006365620996803045, -0.005259452387690544, -0.0011834626784548163, -0.004933098331093788, -0.008437110111117363, -0.013267149217426777, -0.0013749810168519616, 0.004713239148259163, -0.0025335378013551235, -0.010051703080534935, -0.010498292744159698, -0.006399973761290312, -0.030120758339762688, -0.017025373876094818, -0.004105189815163612, -0.006825951859354973, 0.00022329484636429697, 0.014483246952295303, -0.004610179923474789, -0.010381492786109447, 0.012909877113997936, -0.026534298434853554, 0.013267149217426777, 0.0018052529776468873, 0.02819698676466942, -0.037898287177085876, 0.023731090128421783, -0.017410127446055412, -0.00233772536739707, 0.016530688852071762, 0.014868001453578472, -0.03528745844960213, -0.0004783662734553218, 0.01187241543084383, 0.011563237756490707, 0.004184201825410128, -0.0023085251450538635, 0.0038578480016440153, -0.0021985953208059072, 0.00746835395693779, -0.020034700632095337, -0.012964842841029167, -0.013988563790917397, -0.0179460346698761, 0.0025970907881855965, 0.018193377181887627, 0.006465244572609663, 0.0075782835483551025, -0.003108951263129711, 0.008760028518736362, -0.007997390814125538, -0.03380340337753296, -0.009144783020019531, -0.01845446042716503, 0.0023600547574460506, -0.015912335366010666, -0.007440871559083462, -0.0033116342965513468, -0.04347722604870796, -0.015307720750570297, 0.02654803916811943, 0.0017691822722554207, 0.010889917612075806, 0.027454961091279984, -0.0008291968260891736, -0.009124170988798141, 0.007997390814125538, 0.004568956326693296, -0.046747636049985886, -0.013205314055085182, 0.008457722142338753, -0.02962607331573963, -0.008869958110153675, -0.020969104021787643, 0.022618049755692482, 0.024418151006102562, -0.014703107066452503, -0.03322627395391464, -0.00233772536739707, -0.03839297220110893, -0.0069118342362344265, -0.044713933020830154, 0.035699691623449326, 0.02406087890267372, 0.024899093434214592, 0.006740069016814232, 0.02750992588698864, 0.007042375858873129, 0.029763486236333847, -0.02590220235288143, -0.01613219454884529, -0.009605113416910172, -0.021051552146673203, 0.01786358840763569, -0.043147433549165726, -0.039739612489938736, -0.013885504566133022, 0.029845932498574257, -0.026726676151156425, 0.015403909608721733, 0.01677803136408329, -0.014318352565169334, -0.025696083903312683, 0.002323984168469906, 0.002056030323728919, 0.00979061983525753, 0.000948144297581166, 0.020240819081664085, -0.03424312546849251, 0.001983888912945986, 0.016269605606794357, -0.00483690993860364, -0.013995434157550335, 0.005341900046914816, 0.017987258732318878, -0.0066954102367162704, 0.001569934538565576, -0.031659774482250214, -0.019155262038111687, -0.028719153255224228, -0.012257169932126999, -0.0019924771040678024, 0.00317937508225441, -0.014084751717746258, 0.02029578387737274, 0.005743830464780331, -0.01152888499200344, -0.014139716513454914, 0.007983650080859661, 0.013356467708945274, -0.010525776073336601, 0.008244733326137066, -0.026767900213599205, -0.012607570737600327, -0.021395081654191017, 0.011274672113358974, 0.003806318389251828, -0.038255561143159866, -0.01669558323919773, -2.5053574063349515e-05, -0.01589859277009964, -0.0053659467957913876, 0.017066597938537598, -0.00012098716251784936, -0.003340834518894553, -0.03295144811272621, 0.014854260720312595, -0.025091471150517464, -0.015362685546278954, 0.004984627943485975, -0.013184702023863792, -0.018234601244330406, 0.007976778782904148, 0.0038853303994983435, -0.020680537447333336, 0.004678885918110609, 0.019072815775871277, -0.013322114013135433, 0.004981192760169506, 0.19732393324375153, 0.004627356305718422, -0.00913104135543108, 0.032017044723033905, 0.009076076559722424, 0.00967381987720728, -0.006503032986074686, 0.024802904576063156, 0.007736307568848133, 0.012401452288031578, 0.01934763975441456, 0.013081642799079418, -0.02690531127154827, -0.004101754631847143, 0.007612636778503656, -0.01457943581044674, -0.021724870428442955, -0.03624934330582619, -0.005846889689564705, 0.004345661494880915, 0.00782562606036663, -0.00440406147390604, 0.007935555651783943, -0.010250951163470745, 0.018248341977596283, 0.031412433832883835, -0.008615746162831783, 0.014428282156586647, 0.014813036657869816, 0.02230200171470642, -0.019072815775871277, -0.015362685546278954, 0.014620659872889519, -0.009144783020019531, -0.010889917612075806, -0.0014866284327581525, 0.014909225516021252, -0.0010202856501564384, 0.009770008735358715, 0.011920509859919548, -0.0016540995566174388, -0.006221338175237179, 0.021642424166202545, -0.024775423109531403, 0.007372165098786354, 0.006661057006567717, 0.009302807040512562, -0.003940295428037643, 0.01541765034198761, 0.034545429050922394, -0.00047149567399173975, 0.008897440508008003, 0.008553910069167614, 0.010086056776344776, -0.010086056776344776, -0.021312635391950607, -0.017684951424598694, 0.018399495631456375, -0.022879133000969887, 0.02575104869902134, -0.0035246233455836773, 0.00013268867041915655, -0.0013638162054121494, 0.01014789193868637, -0.03383088856935501, 0.0034267171286046505, -0.020172113552689552, 0.02274172194302082, 0.01882547326385975, -0.0009945209603756666, -0.023895984515547752, -0.0199385117739439, -0.02799086831510067, 0.005307546816766262, 0.0032944579143077135, -0.022494379431009293, 0.012325875461101532, 0.054717544466257095, 0.038338009268045425, 0.009605113416910172, 0.003706694580614567, -0.003964342176914215, -0.035534799098968506, 0.004441849887371063, -0.0007201259140856564, -0.015486356802284718, 0.029241319745779037, -0.016489466652274132, 0.0011096036760136485, -0.005726654082536697, -0.00981123186647892, 0.002147065941244364, -0.013459526002407074, 0.005651077255606651, -0.0029955862555652857, -0.0006089078960940242, -0.0025249493774026632, 0.012408322654664516, -0.010292175225913525, -0.011542625725269318, -0.01857813075184822, 0.045703303068876266, 0.025256365537643433, 0.019773617386817932, -0.01222968753427267, -0.0026932794135063887, -0.00816915649920702, 0.018372012302279472, 0.005204487591981888, -0.00216767773963511, -0.01765746995806694, -0.036826472729444504, 0.007303459104150534, 0.003428434720262885, 0.019471310079097748, 0.031329985707998276, 0.026369404047727585, -0.02598465047776699, -0.015761181712150574, 0.012724370695650578, 0.007406518328934908, -0.034545429050922394, -0.0004066542605869472, -5.02145012433175e-05, -0.001460863626562059, -0.020694280043244362, -0.009165395051240921, 0.014345834963023663, -0.022961581125855446, -0.02638314478099346, -0.003150175092741847, -0.006300350185483694, 0.0016085817478597164, -0.017987258732318878, -0.014167198911309242, -0.006564868614077568, -0.005207922775298357, -0.03223690390586853, -0.0004279102140571922, 0.024239514023065567, 0.013706868514418602, 0.0148954838514328, 0.024074619635939598, -0.0057472656480968, 0.0034713761415332556, 0.015280238352715969, 0.005410606041550636, 0.01321218442171812, -0.02406087890267372, -0.021752353757619858, -0.002973256865516305, 0.04072897881269455, -0.0063690561801195145, -0.001855064881965518, 0.03278655558824539, -0.008869958110153675, -0.020007219165563583, -0.014222164638340473, 0.011522014625370502, -0.016242124140262604, -0.05543208867311478, -0.004970886744558811, 0.04257030412554741, 0.0135763268917799, -0.022961581125855446, -0.0006986552034504712, -0.17544791102409363, 0.013500750064849854, 0.007750048767775297, -0.0036689061671495438, -0.014675624668598175, 0.028966493904590607, 0.01323279645293951, -0.014813036657869816, -0.03355606272816658, -0.0190590750426054, 0.0017116408562287688, 0.0026881264057010412, -0.025874720886349678, -0.013480138033628464, 0.013081642799079418, -0.009577631019055843, -0.00171937036793679, 0.018372012302279472, 0.04537351429462433, -0.004163590259850025, 0.02282416820526123, -0.025778532028198242, 0.01064944639801979, -0.015335203148424625, 0.012160981073975563, 0.010979236103594303, 0.0011190507793799043, 0.022480638697743416, 0.007454612758010626, -0.03839297220110893, -0.0021316069178283215, -0.014634400606155396, 0.03520501032471657, 0.005812536459416151, 0.012848041951656342, -0.004338790662586689, 0.011879285797476768, 1.7270460375584662e-05, -0.004513991065323353, 0.021450046449899673, 0.027771009132266045, 0.0013912987196817994, 0.008409627713263035, -0.012106016278266907, 0.03003831021487713, 0.028018349781632423, 0.03399578109383583, -0.012889266014099121, 0.0014230752130970359, -0.005905290134251118, 0.01989728957414627, -0.038420453667640686, -0.01047081034630537, -0.0048094275407493114, -0.0027980562299489975, -0.0035143173299729824, 0.004596438724547625, 0.023566193878650665, -0.002557584783062339, -0.019361380487680435, -0.0030265040695667267, -0.0031896810978651047, -0.023524971678853035, 0.004015871789306402, 0.007025199476629496, -0.03872276097536087, -0.014991672709584236, 0.048479028046131134, 0.00275855022482574, 0.01305416040122509, 0.009914291091263294, -0.001420498825609684, -0.008959276601672173, 0.0159810408949852, -0.0016489465488120914, 0.010299045592546463, -0.027454961091279984, 0.011941121891140938, 0.0354798324406147, 0.01153575535863638, -0.0008313438738696277, 0.013115995563566685, 0.0064308918081223965, -0.015513839200139046, -0.030340617522597313, -0.01606348715722561, 0.005345335230231285, -0.003727306379005313, -0.010525776073336601, -0.0089867589995265, 0.013061030767858028, -0.010972365736961365, 0.0078050135634839535, 0.004902180749922991, -0.006145761348307133, 0.015994781628251076, 0.008876829408109188, -0.0067469398491084576, 0.005582371260970831, -0.020735502243041992, 0.004345661494880915, 0.018193377181887627, -0.0190590750426054, 0.012806818820536137, 0.032374318689107895, 0.009481443092226982, 0.02619076892733574, -0.01369312684983015, 0.026616746559739113, -0.01893540285527706, -0.022810427471995354, 0.024692974984645844, 0.026122061535716057, 0.0033356815110892057, -0.016049746423959732, 0.036056965589523315, -0.003155327867716551, -0.028581740334630013, -0.004431543871760368, -0.004187637008726597, 0.07046498358249664, -0.03075285442173481, -0.023360077291727066, 0.026809122413396835, -0.010134151205420494, -0.008595134131610394, -0.10762124508619308, -0.020955363288521767, 0.021202703937888145, 0.013308373279869556, -0.019924771040678024, 0.007172917481511831, -0.0044212378561496735, 0.033501096069812775, 0.0020663361065089703, 0.012071662582457066, -0.00601521972566843, -0.01934763975441456, -0.006193855777382851, -0.0024425021838396788, 0.01291674841195345, -0.0028289740439504385, 0.015266496688127518, -0.03968464583158493, 0.0005427782307378948, 0.028884047642350197, 0.020680537447333336, -0.016200900077819824, 0.01966368779540062, 0.003936859779059887, -0.01625586487352848, -0.013274019584059715, -0.036139413714408875, 0.017107820138335228, 0.012841171585023403, 0.0013088512932881713, 0.031934600323438644, -0.007997390814125538, 0.027839714661240578, -0.012360229156911373, -0.00046934859710745513, -0.006513339001685381, -0.011769356206059456, 0.00753705995157361, 0.025613637641072273, -0.011377731338143349, 0.008918052539229393, 0.006678233854472637, 0.011343378573656082, -0.035947035998106, -0.0051495227962732315, 0.0036105059552937746, -0.01555506233125925, 0.028719153255224228, -0.0018086882773786783, -0.010429587215185165, -0.01830330677330494, -0.022810427471995354, -0.009721914306282997, -0.016036005690693855, 0.02254934422671795, -0.021972212940454483, 0.0009593090508133173, 0.015747439116239548, -0.015129084698855877, -0.009076076559722424, -0.018811732530593872, 0.006681669037789106, 0.004146413411945105, 0.01577492244541645, 0.006509903818368912, 0.007633248344063759, 0.005462135653942823, 0.009550148621201515, 0.0019615592900663614, -0.0006625844980590045, -0.004593003075569868, -0.0057781836949288845, -0.022521862760186195, 0.00979061983525753, -0.01958123967051506, 0.011659426614642143, -0.019649947062134743, -0.026781640946865082, 0.0018636531895026565, 0.011652556248009205, -0.017107820138335228, -0.013548844493925571, 0.0017674645641818643, -0.013940469361841679, -0.014881743118166924, 0.014167198911309242, 0.009866196662187576, -0.011810580268502235, 0.009453960694372654, -0.042020656168460846, 0.016764290630817413, 0.020199595019221306, 0.02265927381813526, 0.013706868514418602, -0.027138913050293922, 0.0070355054922401905, 0.006994281895458698, -0.010347140021622181, 0.020364489406347275, -0.013645033352077007, -0.003170786891132593, 0.004297567065805197, -0.053920552134513855, 0.016599396243691444, 0.012463287450373173, 0.011741873808205128, 0.02330511249601841, -0.048946231603622437, -0.009337159804999828, -0.018523165956139565, -0.006293479353189468, -0.008162285201251507, -0.03591955453157425, 0.008162285201251507, -0.010113539174199104, -0.013686256483197212, -0.02623199112713337, -0.001722805667668581, 0.023882243782281876, 0.0013397691072896123, 0.00041073368629440665, -0.007282847538590431, -0.007963038049638271, 0.018193377181887627, 0.01555506233125925, 0.016448242589831352, -0.005640771239995956, 0.019594982266426086, -0.014991672709584236, 0.01734142191708088, -0.005788489710539579, -0.009845585562288761, 0.013425173237919807, 0.00678816344588995, 0.014703107066452503, 0.015005413442850113, -0.0007304318132810295, -0.021573716774582863, -0.02090039849281311, 0.0078050135634839535, 0.006922140251845121, -0.0005414899787865579, 0.01071128249168396, -0.005022416356950998, 0.03352858126163483, -0.03146739676594734, -0.007722566369920969, -0.016475724056363106, -0.02041945420205593, -0.02090039849281311, 0.014139716513454914, 0.010388363152742386, 0.03171473741531372, 0.0030557040590792894, -0.025091471150517464, -0.037101298570632935, -0.015390167944133282, -0.016324570402503014, 0.0021161481272429228, 0.020914139226078987, 0.0060186549089848995, -0.013088513165712357, 0.02987341582775116, -0.01617341674864292, 0.0048231687396764755, -0.018564390018582344, 0.016489466652274132, -0.015390167944133282, -0.04243289306759834, -0.0006441197474487126, 0.01031278632581234, -0.024239514023065567, -0.015747439116239548, -0.007413389161229134, 0.02531133033335209, 0.01842697709798813, 0.012909877113997936, -0.0034713761415332556, -0.017121562734246254, -0.014510730281472206, -0.016558172181248665, 0.021010328084230423, 0.01857813075184822, -0.00917226541787386, -0.027248842641711235, 0.008052355609834194, 0.009982997551560402, 0.004177331458777189, -0.02610832080245018, 0.007344682700932026, 0.012243428267538548, 0.006853434257209301, -0.025641119107604027, 0.002114430535584688, -0.011185354553163052, 0.012545735575258732, -0.009247842244803905, 0.019320158287882805, 0.0018155588768422604, 0.004672015085816383, 0.024802904576063156, 0.023442523553967476, -0.00917226541787386, 0.006650750990957022, -0.008636357262730598, -0.017272714525461197, 0.0027224794030189514, 0.010079185478389263, -0.010635705664753914, -0.02274172194302082, 0.022686757147312164, 0.027138913050293922, 0.014922966249287128, -0.024844128638505936, -0.0017270997632294893, 0.013067902065813541, -0.0019890419207513332, 0.003933424595743418, 0.0030179156456142664, -0.0055858064442873, -0.04320240020751953, 0.009144783020019531, 0.004002130590379238, 0.031494878232479095, 0.02190350741147995, -0.013184702023863792, 0.05130971968173981, 0.0010649446630850434, 0.007372165098786354, -0.015541321597993374, 0.007756919600069523, -0.004287261050194502, 0.0066232685931026936, -0.0030179156456142664, -0.0025833495892584324, 0.0027327854186296463, -0.014359576627612114, -0.016475724056363106, -0.004002130590379238, 0.028279433026909828, -0.02915887162089348, 0.07892957329750061, 0.030010826885700226, -0.022934097796678543, 0.017918553203344345, 0.006616398226469755, 0.03976709395647049, 0.017561281099915504, 0.0098524559289217, 0.012422064319252968, 0.005551453679800034, 0.0311101246625185, -1.7377814174324158e-06, -0.010958624072372913, -0.0011259213788434863, -0.01565125212073326, -0.013363338075578213, 0.005561759229749441, 0.034133195877075195, 0.0009567325469106436, -0.001868806080892682, -0.0013414866989478469, -0.007221011910587549, 0.0072141410782933235, -0.00987306796014309, -0.024651750922203064, -0.012284652329981327, 0.021848542615771294, 0.030010826885700226, 0.005073945969343185, -0.025778532028198242, 0.014922966249287128, -0.013239666819572449, -0.037018850445747375, -0.006891222670674324, -0.007743178401142359, 0.01271750032901764, -0.022521862760186195, -0.020831691101193428, 0.007248494308441877, 0.010051703080534935, 0.021285152062773705, 0.021958472207188606, -0.024253256618976593, -0.016805514693260193, 0.03344613313674927, -0.0010340269654989243, -0.0023531841579824686, -0.023126475512981415, -0.007344682700932026], "f7d7f7aa-1a20-4297-8195-d6a2c8d681de": [-0.020612066611647606, -0.008115576580166817, 0.0047958772629499435, -0.04212208464741707, 0.013863826170563698, 0.017605289816856384, -0.01003392692655325, -0.029550766572356224, -0.01911548152565956, -0.0400540754199028, -0.010027124546468258, 0.02663922682404518, -0.009571346454322338, -0.009625767357647419, -0.021305939182639122, 0.007469323463737965, 0.01824474148452282, -0.005734644364565611, -0.0006658105994574726, -0.012836623936891556, -0.029795661568641663, -0.0053604980930686, -0.012285608798265457, 0.009204002097249031, -0.02974124066531658, -0.0010118960635736585, 0.009816242381930351, -0.017047472298145294, -0.01484340988099575, 0.0010578139917925, 0.01575496606528759, -0.016557680442929268, -0.031945303082466125, 0.002615623641759157, -0.013925050385296345, 0.016707338392734528, -0.00444553978741169, -0.0034013313706964254, 0.014244775287806988, 0.002278891857713461, 0.017999844625592232, 0.005710835102945566, -0.007897891104221344, -0.007945509627461433, -0.018163109198212624, 0.038911230862140656, -0.003234666073694825, -0.02342836931347847, -0.023197079077363014, -0.0039761564694345, -0.0020424993708729744, 0.00360881257802248, -0.025850117206573486, 0.008367274887859821, 0.019836563616991043, -1.8096145140589215e-05, 0.009714202024042606, 0.008673395030200481, 0.009972703643143177, -0.018720926716923714, 0.008857066743075848, -0.009734610095620155, -0.007020347751677036, -0.011306025087833405, -4.017822720925324e-05, -0.026135830208659172, -0.014761777594685555, 0.014367222785949707, -0.007135992869734764, 0.002129233442246914, 0.04598600044846535, 0.035047318786382675, 0.023401159793138504, -0.01874813809990883, -0.0041292160749435425, -0.018720926716923714, -0.017564475536346436, -0.012108739465475082, 0.0058196778409183025, 0.016938630491495132, 0.015999862924218178, -0.013523693196475506, -0.023469185456633568, 0.002384333172813058, 0.02887050062417984, 0.007353678345680237, -0.004608803894370794, 0.015537281520664692, -0.012163160368800163, -0.015564491972327232, -0.0049829501658678055, 0.004996555391699076, 0.019782142713665962, 0.019387587904930115, 0.006125797517597675, 0.015101910568773746, 0.02794533781707287, 0.011945475824177265, -0.010789022780954838, -0.002445557154715061, 0.0013426755322143435, 0.0014158041449263692, -0.03050313889980316, -0.01757808029651642, 0.010768614709377289, -0.021333150565624237, 0.008652986958622932, -0.03371399641036987, 0.00537410331889987, 0.01778215914964676, -0.020503224804997444, 0.044244516640901566, -0.0029013354796916246, -0.015918230637907982, 0.004459145478904247, -0.005122405011206865, 0.035809215158224106, -0.04557783901691437, -0.007122387643903494, -0.01819031871855259, 0.022884156554937363, 0.009618964977562428, 0.05833963304758072, -0.0036904443986713886, 0.01662570796906948, 0.0023418166674673557, 0.018462426960468292, -0.019142692908644676, 0.008727815933525562, 0.0034795617684721947, 0.0004740605363622308, -0.005425123497843742, 0.02088417485356331, 0.014925041235983372, -0.0158638097345829, -0.0036836417857557535, -0.0175916850566864, 0.011952278204262257, -0.0022023620549589396, -0.02448958531022072, 0.018435215577483177, 0.02511543035507202, 0.015999862924218178, -0.0175916850566864, -0.01496585737913847, 0.04448941349983215, -0.004309486597776413, 0.028271865099668503, 0.012775400653481483, 0.002525488380342722, 0.002346918685361743, -0.017510052770376205, -0.03395888954401016, -0.0014081511180847883, -0.014408038929104805, -3.2100062526296824e-05, 0.011326433159410954, 0.006357088219374418, -0.0013350225053727627, 0.0016037276946008205, 0.003530581947416067, 0.03795885667204857, 0.0028112002182751894, -0.004846896976232529, 0.005843487102538347, 0.023850135505199432, 0.0176325011998415, -0.03287046402692795, -0.023210683837532997, -0.00727884890511632, 0.005636006128042936, 0.03714253753423691, -0.010129164904356003, 0.03333304449915886, -0.006840077228844166, 0.009993110783398151, 0.0019370581721886992, 0.0008197208517231047, -0.032707203179597855, -0.01484340988099575, 0.018612084910273552, -0.022584838792681694, -0.003200652776286006, 0.007537350058555603, -0.001967670163139701, -0.018122293055057526, 0.016598496586084366, 0.015278779901564121, 0.01112915575504303, -0.012877440080046654, 0.018122293055057526, 0.005680222995579243, -0.010986300185322762, -0.014761777594685555, -0.6295456290245056, 0.012387648224830627, 0.005901309661567211, -0.011999896727502346, 0.0019914794247597456, -0.005384307354688644, 0.014952252618968487, -0.0073740859515964985, 0.004180236253887415, 0.030584771186113358, 0.008666591718792915, -0.002828206866979599, -0.0060475668869912624, -0.003249972127377987, -0.02413584664463997, -0.008020339533686638, -0.003772076452150941, -0.0276460200548172, -0.0245440062135458, 0.0012669959105551243, -0.02621746063232422, 0.02170049399137497, -0.008680197410285473, 0.008251629769802094, -0.015183542855083942, -0.033115360885858536, 0.01697944477200508, 0.01110874768346548, 0.012795807793736458, 0.03390447050333023, -0.028489550575613976, 0.01768692210316658, 0.012081529013812542, -0.01496585737913847, 0.037632327526807785, -0.025537194684147835, -0.01034004706889391, 0.03695206344127655, 0.011720987968146801, 0.03039429523050785, -0.018584873527288437, -0.013156349770724773, 0.016244757920503616, 0.027305888012051582, -0.03104735165834427, -0.018680110573768616, 0.02485692873597145, -0.007251638453453779, 0.010435284115374088, 0.0035203779116272926, 0.017265157774090767, -0.012646149843931198, -0.014271985739469528, -0.010435284115374088, -0.02368687093257904, -0.00797952339053154, 0.029142607003450394, -0.030611980706453323, 0.0044319345615804195, -0.012054317630827427, 0.00723123038187623, 0.012904650531709194, -0.0026751470286399126, -0.03940102085471153, -0.0442173071205616, 0.004289078526198864, -0.003642825875431299, -0.015945440158247948, -0.010129164904356003, -0.023659659549593925, 0.028707236051559448, -0.005448932759463787, 0.003073102794587612, -0.001755086937919259, 0.020748119801282883, 0.017319578677415848, 0.04742816463112831, -0.00869380310177803, -0.004425132181495428, 0.016190337017178535, 0.014326407574117184, -0.013632535934448242, -0.02242157608270645, -0.013639338314533234, 0.017156314104795456, 0.013408048078417778, -0.017469236627221107, -0.0030305860564112663, 0.006908103823661804, 0.008802644908428192, 0.0065033454447984695, 0.03836701810359955, -0.011945475824177265, -0.03741464391350746, -0.010918273590505123, 0.04808121919631958, -0.005612196400761604, 0.01657128520309925, -0.021020228043198586, -0.012571319937705994, -0.043020036071538925, -0.02236715517938137, 0.006635997444391251, -1.101446741813561e-05, 0.014857014641165733, 0.001522946055047214, -0.013646140694618225, -0.004914923571050167, 0.015333201736211777, -0.01606788858771324, -0.00802714191377163, -0.010448889806866646, -0.016734549775719643, -0.010135967284440994, 0.013843418098986149, -0.02220389060676098, 0.006071376148611307, 0.014516881667077541, 0.022394364699721336, -0.008993119932711124, -0.014925041235983372, -0.016149520874023438, 0.03401331230998039, 0.0162175465375185, 0.012095133773982525, 0.01298628281801939, -0.001339274225756526, -0.01408151164650917, 0.0031105175148695707, -0.007476126309484243, -0.0038196949753910303, -0.005826480221003294, -0.015822993591427803, -0.003256774740293622, 0.037224169820547104, 0.012584925629198551, 0.015578096732497215, -0.00590811250731349, -0.0063706934452056885, -0.04089760780334473, -0.010986300185322762, -0.0065033454447984695, 0.017822975292801857, -0.007986325770616531, -0.013557706028223038, -0.04174113646149635, -0.01039446797221899, -0.01034004706889391, -0.0019098474876955152, -0.0018061068840324879, -0.01666652224957943, -0.007680206093937159, 0.021727703511714935, 0.016856998205184937, -0.0010518616763874888, -0.004428533371537924, -0.0051734247244894505, -0.028081391006708145, -0.010571337305009365, -0.02580930106341839, -0.014503276906907558, -0.006095185410231352, -0.017809370532631874, 0.007401296868920326, -0.020013432949781418, -0.030122188851237297, 0.004639416001737118, 0.015414833091199398, -0.01906106062233448, -0.016843391582369804, -0.003870714921504259, 0.001184513559564948, -0.01560530811548233, 0.016095099970698357, 0.004027176182717085, 0.020952200517058372, -0.01108153723180294, -0.021686887368559837, -0.00810197088867426, -0.0018843375146389008, 0.0073740859515964985, 0.014911436475813389, -0.017510052770376205, -0.02236715517938137, 0.05621720477938652, 0.013959063217043877, 0.015414833091199398, 0.01880255900323391, -0.02993171475827694, 0.021564440801739693, -0.01865290105342865, 0.015197147615253925, -0.03202693536877632, -0.014312801882624626, -0.017237946391105652, -0.003935340326279402, -0.012135949917137623, 0.007469323463737965, 0.010135967284440994, 0.010986300185322762, 0.021890968084335327, 0.009612162597477436, 0.010115559212863445, 0.004414928145706654, -0.00554076861590147, -0.010904667899012566, 0.011972686275839806, -0.03131945803761482, 0.016448838636279106, -0.007326467428356409, -0.0009855356765910983, 0.00995909795165062, 0.008442103862762451, -0.009326450526714325, 0.008598565123975277, 0.04370030388236046, 0.010591745376586914, 0.0061632124707102776, -0.015156332403421402, -0.01662570796906948, 0.020965805277228355, -0.0009557740995660424, 0.019754931330680847, -0.016734549775719643, -0.0020765126682817936, 0.01677536591887474, 0.0015246467664837837, 0.04516967758536339, 0.0018503242172300816, -0.03510173782706261, -0.010142769664525986, 0.012142752297222614, -0.00038541335379704833, 0.001494034775532782, 0.032299041748046875, 0.012319621630012989, 0.0189658235758543, -0.009442095644772053, 0.019401192665100098, 0.003447249298915267, 0.0026819496415555477, -0.0028350097127258778, 0.025578010827302933, -0.03425820916891098, 0.006241442635655403, 0.005880901589989662, 0.004255065228790045, 0.010115559212863445, -0.013727772980928421, -0.01270737312734127, -0.009265226311981678, 0.0024234484881162643, -0.0022397765424102545, 0.0001403049100190401, 0.01697944477200508, -0.034339841455221176, 0.032816044986248016, 0.013244783505797386, 0.0020390981808304787, 0.02805417962372303, 0.02688412182033062, 0.0027057589031755924, 0.01387062855064869, -0.012333227321505547, 0.02998613566160202, -0.01850324124097824, -0.014421644620597363, -0.012666557915508747, 0.0038503070827573538, -0.017169920727610588, 0.005289070308208466, -0.018312767148017883, 0.0053060767240822315, -0.027156228199601173, -0.000796761829406023, -0.005074786022305489, -0.0048332917504012585, 0.018271951004862785, 0.00057822628878057, 0.021578045561909676, -0.009510122239589691, -0.03262557089328766, 0.015033883973956108, 0.010108756832778454, 0.0007699763518758118, -0.008224419318139553, -0.02779567986726761, 0.013754983432590961, 0.0007423405186273158, 0.015088305808603764, 0.005258458200842142, 0.002700657118111849, -0.012897848151624203, -0.009693793952465057, 0.0214011762291193, 0.00021205174562055618, 0.04176834970712662, -0.010278822854161263, -0.014190354384481907, 0.010285626165568829, 0.025850117206573486, 0.01295907236635685, -0.024680059403181076, -0.05148255079984665, 0.026503173634409904, -0.015741361305117607, -0.030720824375748634, -0.020258329808712006, -0.00993868988007307, -0.018666505813598633, -0.017115499824285507, -0.004503362812101841, -0.02606780268251896, -0.009666583500802517, -0.0001206409651786089, 0.00998630840331316, -0.006533957552164793, 0.0011989693157374859, 0.02179573103785515, 0.02916981652379036, -0.015972651541233063, -0.01627196930348873, 0.0026496369391679764, 0.014761777594685555, 0.07787688076496124, 0.004687034524977207, -0.0019115481991320848, 0.007605376653373241, -0.017251553013920784, -0.011945475824177265, -0.02424468845129013, -0.01850324124097824, 0.057251207530498505, 0.01575496606528759, -0.01295907236635685, 0.0056666177697479725, 0.01813589781522751, -0.011074734851717949, 0.013625732623040676, 0.0067312344908714294, -0.009135975502431393, -0.017972635105252266, -0.011666566133499146, 0.0043026842176914215, 0.008169997483491898, -0.00380608974955976, 0.027564387768507004, 0.012231186963617802, 0.03398610278964043, 0.01565972901880741, 0.03227183222770691, 0.017931818962097168, -0.00153740169480443, -0.011986291036009789, -0.0175916850566864, 0.016176732257008553, -0.007101979572325945, 0.013115533627569675, -0.04481593891978264, 0.039918024092912674, -0.002503379713743925, -0.004989753011614084, -0.00692511023953557, 0.006806063931435347, 0.0032176594249904156, 0.041251346468925476, -0.008836658671498299, 0.003993162885308266, 0.03561874106526375, -0.008829856291413307, -0.008258432149887085, 0.03050313889980316, -0.013632535934448242, -0.007380888797342777, 0.01956445723772049, 0.013333218172192574, -0.014027089811861515, 0.01926513947546482, -0.0012806012528017163, -0.012693768367171288, 0.012292411178350449, -0.022734498605132103, -0.0158638097345829, -0.02342836931347847, -0.03515616059303284, 0.010707390494644642, -0.015632517635822296, -0.006870689336210489, -0.011197182349860668, -0.02957797609269619, -0.02816302329301834, -0.01874813809990883, -0.023646054789423943, 0.011523710563778877, -0.034285418689250946, -0.03673437610268593, -0.021061042323708534, 0.02155083417892456, 0.026299092918634415, 0.022598445415496826, -0.0006721880636177957, -0.004867305047810078, 0.0021122267935425043, 0.009979506023228168, 0.004074794705957174, -0.00041432466241531074, 0.006659806706011295, -0.023795712739229202, 0.0098366504535079, -0.006687017157673836, -0.008734618313610554, -0.0012457375414669514, -0.0006866437615826726, 0.012265200726687908, -0.006986334454268217, -0.018843375146389008, 0.02327871136367321, 0.023550817742943764, 0.008748224005103111, 0.004377513192594051, 0.005744848400354385, -0.010006716474890709, 0.012965874746441841, -0.03512895107269287, 0.023237895220518112, -0.006394502706825733, -0.007632587570697069, 0.002734670415520668, 0.025292299687862396, 0.02770044095814228, -0.01972772181034088, -0.013836615718901157, -0.002772084902971983, -0.0022261713165789843, 0.01997261680662632, 0.008993119932711124, -0.01298628281801939, -0.005503354128450155, 0.010006716474890709, -0.01813589781522751, 0.015795782208442688, 0.025169851258397102, 0.00884346105158329, -0.005574781913310289, -0.01601346768438816, -0.002353721298277378, 0.025795696303248405, 0.01522435899823904, 0.0030152802355587482, 0.01697944477200508, 0.01082303561270237, 0.0017074682982638478, -0.023618843406438828, -0.004023774992674589, 0.005659815389662981, -0.008557749912142754, -0.021578045561909676, -0.021360360085964203, -0.01748284325003624, 0.008918290957808495, -0.004666626453399658, 0.013652944006025791, -0.008238024078309536, 0.009135975502431393, -0.047346532344818115, 0.014448855072259903, 0.01794542372226715, -0.002770384307950735, -0.002248279983177781, -0.02922423742711544, -0.030203821137547493, -0.005901309661567211, 0.008231221698224545, 0.025550801306962967, -0.007108782418072224, -0.003215958597138524, -0.03278883174061775, -0.027918126434087753, -0.02129233442246914, -0.00019717092800419778, -0.006227837409824133, 0.021986205130815506, 0.04310166835784912, 0.028979342430830002, 0.011959080584347248, 0.004636014346033335, 0.023496396839618683, 0.014271985739469528, -0.007945509627461433, 0.0014642730820924044, -0.013530495576560497, -0.020367171615362167, 0.009857057593762875, -0.02333313226699829, -0.0012372342171147466, -0.006003349553793669, -0.009285634383559227, -0.00761217949911952, -0.005618999246507883, 0.005414919462054968, 0.011999896727502346, -0.012741386890411377, -0.031809251755476, -0.027673231437802315, 0.016856998205184937, 0.045006416738033295, 0.014271985739469528, 0.01941479928791523, -0.03205414488911629, -0.006550963968038559, 0.005251655355095863, -0.011646158061921597, 0.046639055013656616, 0.006360489409416914, 0.023006604984402657, -0.002255082596093416, 0.008925093337893486, 0.029387501999735832, 0.001184513559564948, -0.014775383286178112, -0.02296578884124756, -0.031890880316495895, -0.025346720591187477, 0.025578010827302933, 0.025836512446403503, 0.014135932549834251, 0.00020833153394050896, 0.008823052980005741, 0.0004825638607144356, 0.011748198419809341, -0.01140806544572115, -0.03115619346499443, 0.002335013821721077, -0.02582290768623352, -0.012265200726687908, -0.03175482898950577, -0.025401141494512558, 0.008217616006731987, -0.0039591495878994465, -0.010938681662082672, -0.01229921355843544, 0.016122309491038322, -0.009544135071337223, -0.027509966865181923, 0.0039013270288705826, 0.0017329782713204622, 0.012897848151624203, 0.014788988046348095, 0.017999844625592232, 0.017237946391105652, 0.010707390494644642, -0.012972677126526833, -0.018584873527288437, 0.011033918708562851, -0.0024829718749970198, 0.009292436763644218, 0.02993171475827694, -0.015795782208442688, -0.0129386642947793, 0.0072448356077075005, 0.011897856369614601, 0.0039591495878994465, -0.026802489534020424, 0.04141461104154587, 0.01487062033265829, 0.00953053031116724, -0.028625603765249252, -0.006707425229251385, 0.012945466674864292, 0.011442078277468681, -0.011591737158596516, 0.015727756544947624, 0.011904659681022167, 0.011312827467918396, -0.007346875499933958, 0.0196733009070158, -0.011734592728316784, 0.024367136880755424, -0.022149469703435898, -0.0017329782713204622, -0.008598565123975277, -0.0030765042174607515, -0.009571346454322338, -0.031890880316495895, -0.0038196949753910303, 0.011734592728316784, -0.02038077637553215, 0.016081493347883224, 0.019782142713665962, 0.00575505243614316, 0.020625673234462738, -0.01079582516103983, -0.0296868197619915, 0.03156435489654541, 0.009258423931896687, -0.00438431603834033, 0.005231247283518314, -0.007578166201710701, 0.01926513947546482, -0.033060938119888306, -0.021061042323708534, -0.007516941986978054, -0.005142813082784414, -0.009258423931896687, -0.0010637663071975112, -0.009340055286884308, -0.007081571500748396, 0.013115533627569675, 0.010353652760386467, -0.011673368513584137, -0.013169954530894756, -0.0014013485051691532, 0.009135975502431393, -0.015265175141394138, -0.011959080584347248, -0.006646201480180025, 0.0025424950290471315, -0.003680240362882614, 0.008639381267130375, -0.012897848151624203, 0.005544169805943966, 0.02048962004482746, -0.024407953023910522, 0.00765979802235961, 0.013727772980928421, 0.030475927516818047, -0.04263908788561821, 0.01344206091016531, -0.014285591430962086, -0.005244852975010872, 0.03643506020307541, 0.005316280759871006, -0.026952149346470833, -0.005064582452178001, 0.014748171903192997, 0.012829821556806564, 0.0010799226583912969, 0.00014073008787818253, 0.00800673384219408, -0.003724457696080208, 0.005180227570235729, -0.03156435489654541, -0.01976853795349598, -0.005738046020269394, -0.01682978682219982, -0.007857074961066246, 0.023441975936293602, 0.0016785570187494159, 0.008135984651744366, -0.009258423931896687, 0.010408073663711548, -0.012782203033566475, -0.026761675253510475, -0.01727876253426075, -0.022557629272341728, -0.009721004404127598, -0.012088331393897533, 0.002969362074509263, -0.007605376653373241, -0.033360257744789124, -0.021101858466863632, 0.031183404847979546, 0.0037074510473757982, 0.008142787031829357, 0.029795661568641663, 0.003700648434460163, -0.01117677427828312, 0.007047558203339577, -0.0041496241465210915, -0.035863637924194336, -0.031074563041329384, -0.01140806544572115, -0.02892492152750492, -0.007333270274102688, -0.027265071868896484, 0.025632431730628014, 0.024258295074105263, -0.014340012334287167, -0.03896564990282059, 2.8007836590404622e-05, -0.021183490753173828, -0.0035918056964874268, -0.025387536734342575, 0.03619016334414482, 0.027305888012051582, 0.0238365288823843, 0.012476082891225815, 0.019251534715294838, -0.00574144721031189, 0.031999725848436356, -0.02846233919262886, -0.015414833091199398, -0.022598445415496826, -0.028435129672288895, 0.028271865099668503, -0.032952096313238144, -0.0339316800236702, -0.010360455140471458, 0.014122327789664268, -0.019237929955124855, 0.012360437773168087, 0.011659763753414154, -0.00575505243614316, -0.02357802912592888, -0.01377539150416851, 0.013986274600028992, 0.009761820547282696, 0.0007232080679386854, 0.006853682454675436, -0.02114267461001873, 0.014598513953387737, 0.01718352548778057, -0.0030645993538200855, -0.01813589781522751, 0.017265157774090767, 0.0153740169480443, -0.014408038929104805, 0.005380906164646149, -0.029197027906775475, -0.006091784220188856, -0.025428352877497673, -0.004554382525384426, -0.00768700847402215, -0.0021207300014793873, -0.0022448785603046417, 0.04051665961742401, 0.01531959604471922, -0.018720926716923714, -0.010591745376586914, 0.01631278544664383, 0.004523770418018103, 0.0032533733174204826, 0.008047549985349178, -0.03817654028534889, -0.00945570133626461, -0.018884191289544106, 0.025387536734342575, -0.009618964977562428, -0.014911436475813389, -0.015469254925847054, -0.015265175141394138, -0.028489550575613976, -0.00762578472495079, 0.004748258274048567, 0.005224444903433323, 0.005618999246507883, -0.007333270274102688, 0.003911531064659357, -0.01971411518752575, -0.013326415792107582, 0.007959115318953991, -0.029387501999735832, -0.021986205130815506, 0.005170023534446955, 0.005945526994764805, -0.031945303082466125, 0.0027822889387607574, 0.028652815148234367, -0.016135916113853455, 0.007299256976693869, 0.2011411190032959, 0.001846922910772264, -0.002207464072853327, 0.02779567986726761, 0.007639389950782061, -1.8162578271585517e-05, -0.003328202525153756, 0.007523744832724333, 0.014476065523922443, 0.008986317552626133, 0.009333252906799316, 0.00218535540625453, -0.024475980550050735, -0.0031649386510252953, 0.00014604466559831053, -0.005809473805129528, -0.018680110573768616, -0.02816302329301834, -0.0026190250646322966, 0.00024574619601480663, 0.0028384109027683735, -0.00685028126463294, -0.01257812324911356, 0.010659771971404552, 0.03289767727255821, 0.038339804857969284, -0.004755061119794846, -0.004295881371945143, 0.021972600370645523, 0.01789100281894207, -0.023904556408524513, -0.025782091543078423, 0.018054265528917313, 0.0005590938380919397, -0.01024481002241373, -0.006044165696948767, 0.017550868913531303, -0.019047455862164497, -0.002278891857713461, 0.016448838636279106, -0.002377530559897423, -0.0026122224517166615, 0.01262574177235365, -0.018271951004862785, 0.010863851755857468, -0.004653021227568388, 0.011523710563778877, 0.00039455443038605154, 0.014693750999867916, 0.045713890343904495, 0.01003392692655325, 0.0029302469920367002, 0.0033111958764493465, 0.001641992712393403, -0.02257123403251171, -0.03186367079615593, -0.01819031871855259, 0.0038026883266866207, -0.019373983144760132, 0.02103383280336857, -0.0036122137680649757, 0.002304401947185397, -0.000775503518525511, 0.02251681312918663, -0.036108531057834625, 0.013299205340445042, -0.015727756544947624, 0.0373058021068573, 0.024462373927235603, 0.0031054154969751835, -0.022271916270256042, -0.018925007432699203, -0.030720824375748634, -0.004343499895185232, -0.0014124028384685516, -0.024231083691120148, -0.009067948907613754, 0.04892474785447121, 0.0276460200548172, 0.008673395030200481, 0.010693785734474659, 0.02032635547220707, -0.019292350858449936, 0.010251612402498722, 0.002362224506214261, -0.020598461851477623, 0.03297930955886841, -0.02794533781707287, -0.002255082596093416, 0.004959140904247761, -0.013761785812675953, 0.001916650217026472, -0.01737399958074093, 0.009401279501616955, -0.010489705950021744, -0.010306033305823803, 0.01151010487228632, 0.035455476492643356, 0.011190379969775677, -0.012639346532523632, -0.028707236051559448, 0.0414690300822258, 0.04081597551703453, 0.027074595913290977, -0.011680171824991703, -0.01070058811455965, -0.009748215787112713, 0.015047489665448666, -0.012435266748070717, -0.00415642699226737, -0.017305973917245865, -0.04672068729996681, 0.008047549985349178, 0.005319681949913502, 0.005636006128042936, 0.038094911724328995, 0.014788988046348095, -0.006765247788280249, -0.03583642467856407, 0.00910196267068386, 0.02114267461001873, -0.02911539562046528, 0.012387648224830627, 0.000888597802259028, -0.011190379969775677, -0.022788919508457184, -0.017550868913531303, 0.014761777594685555, -0.01496585737913847, -0.023863740265369415, 0.008537341840565205, -0.015401228331029415, 0.013183560222387314, -0.002498277695849538, -0.003256774740293622, 0.003307794686406851, -0.0023962378036230803, -0.02597256563603878, -0.017904607579112053, 0.021686887368559837, 0.006734635680913925, -0.00721762515604496, 0.020054249092936516, 0.0022363753523677588, 0.029033763334155083, -0.0003494867996778339, -0.0015425037126988173, 0.012190370820462704, -0.01408151164650917, -0.020870568230748177, 0.0023231091909110546, 0.04925127699971199, -0.010442087426781654, 0.0048536998219788074, 0.0126053337007761, -0.020870568230748177, -0.023850135505199432, -0.019578061997890472, 0.024176662787795067, -0.008163195103406906, -0.03975475952029228, -0.01189105398952961, 0.033414676785469055, 0.015768570825457573, -0.012142752297222614, -0.0039795576594769955, -0.17327742278575897, 0.012714176438748837, 0.013237981125712395, -0.0049659437499940395, -0.008598565123975277, 0.014367222785949707, 0.020952200517058372, -0.0008290744735859334, -0.029006553813815117, -0.011326433159410954, 0.004353703930974007, 0.013401244767010212, -0.03110177256166935, -0.01458490826189518, 0.007129190489649773, -0.014544092118740082, 0.004159828182309866, 0.023006604984402657, 0.04340098798274994, -0.0006084131309762597, 0.03537384420633316, -0.02165967784821987, 0.006448924075812101, -0.03186367079615593, 0.012047515250742435, 0.002243177965283394, 0.000986386090517044, 0.02465284988284111, 0.006537358742207289, -0.035455476492643356, -0.01405430119484663, -0.006527154706418514, 0.016231153160333633, 0.02394537255167961, 0.0005250805406831205, -0.0008465063292533159, 0.019401192665100098, -0.004819686524569988, -0.020217513665556908, 0.01268016267567873, 0.033414676785469055, 0.01187064591795206, 0.014380828477442265, -0.010891063138842583, 0.03736022114753723, 0.019197113811969757, 0.010142769664525986, -0.003340107388794422, 0.002828206866979599, -0.0075849685817956924, 0.02419026754796505, -0.01712910458445549, -0.008122378960251808, -0.021305939182639122, 0.012782203033566475, -0.002328211208805442, 0.006295864004641771, 0.020911384373903275, -0.0008141936850734055, -0.033469099551439285, -0.001557809766381979, -0.0034506504889577627, -0.02078893594443798, 0.00047576121869497, -0.002607120433822274, -0.03975475952029228, -0.01783658191561699, 0.04361867159605026, -0.0012882541632279754, 0.011244800873100758, -0.0015246467664837837, 0.0063298773020505905, -0.007557758130133152, 0.011945475824177265, 0.0051768263801932335, 0.007952312938869, -0.031237825751304626, 0.017346790060400963, 0.034176576882600784, -0.00014657611609436572, 0.011707382276654243, 0.013897839933633804, -0.001727025955915451, -0.005204036831855774, -0.02439434826374054, -0.0058196778409183025, 0.00957814883440733, -0.0056938286870718, -0.013639338314533234, 0.005928520578891039, 0.014448855072259903, -0.01936037838459015, 0.00912237074226141, -0.009891071356832981, 0.0071836113929748535, 0.007884285412728786, 0.027482757344841957, -0.0019506635144352913, 0.0027023577131330967, -0.030203821137547493, 0.01387062855064869, 0.014326407574117184, -0.010972694493830204, 0.011857041157782078, 0.024666454643011093, 0.01595904678106308, 0.01753726415336132, -0.020244723185896873, 0.02088417485356331, -0.006323074921965599, -0.023210683837532997, 0.019537245854735374, 0.0351833701133728, -0.003319699317216873, -0.006986334454268217, 0.035754792392253876, 0.003928537480533123, -0.008979514241218567, -0.0068230703473091125, 0.009054344147443771, 0.05975458770990372, -0.018108688294887543, -0.019632484763860703, 0.009993110783398151, -0.014979463070631027, -0.02296578884124756, -0.1065024808049202, -0.027714047580957413, 0.03156435489654541, 0.006993137300014496, -0.009707399643957615, 0.006346884183585644, -0.005884303245693445, 0.007775443140417337, -0.00198807823471725, 0.0189658235758543, -0.01737399958074093, -0.02541474625468254, -0.02155083417892456, -0.0027312689926475286, 0.005925118923187256, -0.01179581694304943, 0.019455615431070328, -0.027373913675546646, -0.0008567103068344295, 0.035700373351573944, 0.01839439943432808, -0.021428387612104416, 0.011183577589690685, 0.019591668620705605, -0.021373964846134186, -0.01774134300649166, -0.02506100945174694, 0.016190337017178535, 0.016802577301859856, -0.00477887038141489, 0.04938732832670212, -0.0006207429687492549, 0.03662553429603577, -0.019537245854735374, -0.009686991572380066, -0.02053043618798256, -0.0008129181805998087, -0.004292480181902647, 0.025591615587472916, -0.026462357491254807, -0.0015756667125970125, 0.0031139187049120665, -0.004227854777127504, -0.020462408661842346, 0.005884303245693445, 0.0015144427306950092, -0.007938707247376442, 0.04136018827557564, 0.0024642643984407187, -0.016081493347883224, -0.008979514241218567, -0.026748068630695343, -0.007251638453453779, -0.030203821137547493, 0.02032635547220707, -0.012618939392268658, 0.005098595749586821, -0.0008397036581300199, -0.01824474148452282, 0.002882628235965967, -0.0052856686525046825, 0.006326476112008095, -0.0067312344908714294, 0.010999904945492744, 0.0015042386949062347, 0.009387674741446972, -0.011993094347417355, 0.02312905341386795, 0.014326407574117184, 0.005955731030553579, 0.006846879608929157, -0.008823052980005741, -0.027060991153120995, 0.010911470279097557, -0.028326286002993584, 0.004221051931381226, -0.010768614709377289, -0.018326371908187866, 0.007149598095566034, 0.007666600868105888, -0.017564475536346436, -0.009081554599106312, -0.002008486073464155, -0.009897873736917973, -9.077302820514888e-05, 0.010652969591319561, 0.009421687573194504, 0.0026394331362098455, 0.011959080584347248, -0.039918024092912674, 0.013646140694618225, 0.027319492772221565, 0.01255771517753601, 0.008755026385188103, -0.018380794674158096, 0.006261850707232952, -0.0015603606589138508, -0.01270737312734127, 0.019700510427355766, 0.0036292204167693853, 0.00667001074180007, 0.007986325770616531, -0.05757773667573929, 0.004554382525384426, 0.01737399958074093, 0.01885697990655899, 0.01636720634996891, -0.06797220557928085, -0.012394451536238194, -0.01158493384718895, -0.0021972600370645523, 0.005465939175337553, -0.03150993213057518, 0.011591737158596516, -0.018584873527288437, -0.006819669157266617, -0.027890916913747787, -0.023101842030882835, 0.024666454643011093, 0.008183603174984455, 0.007816258817911148, 0.003319699317216873, -0.0019285548478364944, 0.017251553013920784, 0.014979463070631027, 0.01757808029651642, -0.007523744832724333, 0.024571217596530914, -0.011074734851717949, 0.013591719791293144, -0.005918316543102264, -0.011727790348231792, 0.012537307105958462, -0.0032329654786735773, 0.0018282155506312847, -0.00874142162501812, 0.0014685248024761677, -0.019129086285829544, -0.029006553813815117, 0.0007797551807016134, 0.014829804189503193, 0.0033877259120345116, 0.017346790060400963, -0.020258329808712006, 0.03205414488911629, -0.0176325011998415, -0.02922423742711544, -0.005996547173708677, -0.02515624649822712, -0.021578045561909676, -0.0017202232265844941, 0.015115516260266304, 0.026571199297904968, -8.030330354813486e-05, -0.022693682461977005, -0.026843305677175522, -0.005258458200842142, -0.02123791165649891, 0.00363942445255816, 0.019020244479179382, -0.018081476911902428, -0.012340029701590538, 0.025550801306962967, -0.002200661227107048, 0.008074760437011719, -0.012489688582718372, 0.03191809356212616, 0.005965935066342354, -0.05240771174430847, -0.0031003134790807962, 0.01865290105342865, -0.012809413485229015, -0.012863834388554096, -0.0025050805415958166, 0.03232625126838684, 0.006401305552572012, 0.024258295074105263, -0.01408151164650917, -0.01570054516196251, -0.01681618206202984, -0.006765247788280249, 0.026353513821959496, 0.02114267461001873, -0.0006373244686983526, -0.008442103862762451, 0.013401244767010212, 0.032707203179597855, 0.0013843418564647436, -0.020612066611647606, 0.015006673522293568, 0.007652995176613331, 0.009442095644772053, -0.03205414488911629, -0.002792492974549532, -0.007986325770616531, 0.00960535928606987, -0.019754931330680847, 0.020544040948152542, -0.004163229372352362, -0.00015114665438886732, 0.018258346244692802, 0.033768415451049805, -0.0016632509650662541, 0.001684509334154427, -0.023387553170323372, 0.006741438526660204, 0.00019153745961375535, 0.010408073663711548, 0.0005301825003698468, -0.03202693536877632, 0.012802611105144024, 0.007299256976693869, 0.004646218381822109, -0.02266647107899189, 0.006986334454268217, 0.019224325194954872, -0.005363899283111095, 0.006979531608521938, 0.013503285124897957, -0.011326433159410954, -0.03319699317216873, 0.0005510156624950469, 0.0070135449059307575, 0.026652831584215164, 0.015986256301403046, -0.02647596225142479, 0.04470709711313248, 0.0005535666714422405, 0.0021989606320858, -0.020612066611647606, 0.010135967284440994, -0.0017533862264826894, -0.00026891776360571384, -0.005653012543916702, 0.005758453626185656, -0.00802714191377163, -0.00306119816377759, -0.0017108696047216654, 0.003335005370900035, 0.024979377165436745, -0.01906106062233448, 0.07755035161972046, 0.031945303082466125, -0.00848292000591755, 0.0138230100274086, 0.0024846724700182676, 0.02911539562046528, 0.029251448810100555, 0.02047601342201233, -0.0025935149751603603, 0.0021802533883601427, 0.033169783651828766, -0.006112192291766405, -0.017469236627221107, 0.009190397337079048, -0.015156332403421402, -0.0025084817316383123, -0.004721047822386026, 0.01891140267252922, 0.002933648182079196, -0.0008584109600633383, 0.007965917699038982, 0.0001286128390347585, -0.0026173244696110487, -0.020299144089221954, -0.019101876765489578, -0.014367222785949707, 0.015727756544947624, 0.025605222210288048, -0.0012916555861011147, -0.036162953823804855, 0.023510001599788666, -0.0029302469920367002, -0.022244706749916077, -0.010571337305009365, -0.011720987968146801, 0.010217598639428616, -0.022271916270256042, -0.02063927799463272, -0.0016266866587102413, 0.016652917489409447, 0.025292299687862396, 0.030666403472423553, -0.031128983944654465, -0.012428464367985725, 0.02846233919262886, 0.0018214129377156496, 0.008204011246562004, -0.014258380979299545, -0.00848972238600254], "ec0cea14-8506-48af-a97e-dac7de3f928d": [-0.006145923398435116, -0.00794548261910677, 0.011983350850641727, -0.039405208081007004, 0.015918387100100517, 0.026009630411863327, -0.009008079767227173, -0.04557512328028679, -0.0013625234132632613, -0.029588183388113976, -0.006714927032589912, 0.021005142480134964, -0.011558311991393566, -0.013155635446310043, -0.020703501999378204, 0.0010308903874829412, 0.011284093372523785, -0.014835224486887455, -0.018770260736346245, -0.004068717826157808, -0.03233036771416664, 0.004572594538331032, -0.019798580557107925, 0.003114094492048025, -0.03189161792397499, 0.007040561642497778, 0.00920003280043602, -0.021581001579761505, -0.0023377132602036, -0.002695911331102252, 0.026009630411863327, -0.0009983269264921546, -0.01649424619972706, -0.009659348987042904, -0.013183057308197021, 0.014698115177452564, 0.008644740097224712, 0.007698685862123966, 0.019469518214464188, -0.005052477121353149, 0.0003629111160989851, 0.019647760316729546, -0.004558883607387543, -0.011613155715167522, -0.027942871674895287, 0.02406267821788788, -0.00032756265136413276, -0.013073369860649109, -0.016960417851805687, 0.009056068025529385, 0.009158900007605553, -0.004723414778709412, -0.022444788366556168, 0.014039990492165089, 0.0009100628667511046, -0.013169346377253532, 0.014574716798961163, 0.005145025905221701, 0.010207786224782467, -0.01837264373898506, 0.010598547756671906, 0.01737174578011036, 0.0035271362867206335, -0.0019983677193522453, -0.007074838969856501, -0.03370146080851555, -0.02122451737523079, 0.009138333611190319, -0.011476046405732632, 0.01380004920065403, 0.03839059919118881, 0.03337239846587181, 0.009165755473077297, -0.009371419437229633, -0.007801517844200134, -0.01558932475745678, -0.024076389148831367, -0.026736309751868248, 0.007568432483822107, 0.01060540322214365, 0.012922549620270729, -0.004579450003802776, -0.017591120675206184, 0.004627438262104988, 0.031096383929252625, 0.026818575337529182, 0.002478250302374363, 0.01678217574954033, -0.026201583445072174, -0.021759241819381714, 0.0011020158417522907, -0.007335346657782793, 0.02879294939339161, 0.0033883131109178066, 0.023363420739769936, 0.003989879973232746, 0.021690689027309418, 0.008918958716094494, -0.007266792003065348, -0.00963878259062767, -0.012346690520644188, 0.00541581679135561, -0.0255434587597847, -0.02075834572315216, -0.01691928505897522, -0.022006038576364517, 0.004353219643235207, -0.014890068210661411, 0.010351750999689102, 0.012874561361968517, -0.026229005306959152, 0.03397567942738533, -0.0007168244337663054, -0.012641475535929203, 0.005635191220790148, -0.01648053526878357, 0.035072553902864456, -0.041928019374608994, -0.01693299598991871, -0.02000424452126026, 0.016823308542370796, 0.009830735623836517, 0.04834473133087158, -0.00503876619040966, 0.0009811882628127933, 0.0040207295678555965, 0.011757120490074158, -0.008528197184205055, 0.0041852607391774654, -0.007952338084578514, 0.007938627153635025, -0.0005252999253571033, 0.040721457451581955, 0.009721048176288605, -0.013752060942351818, 0.013032237067818642, -0.016411980614066124, 0.0045691668055951595, -0.009913001209497452, -0.014478740282356739, 0.015603035688400269, 0.02909458987414837, 0.01808471418917179, -0.01575385592877865, -0.009666204452514648, 0.044012077152729034, -0.0021303354296833277, 0.016878152266144753, 0.026777442544698715, -0.0005660042515955865, -0.009700481779873371, -0.03408536687493324, -0.014033135026693344, 0.010029544122517109, -0.008487064391374588, 0.009268587455153465, 0.021992327645421028, 0.009474251419305801, -0.0050147720612585545, 0.010022688657045364, -0.010050110518932343, 0.033482085913419724, -0.010132376104593277, -0.0038904757238924503, 0.007019995246082544, 0.02613302879035473, 0.021910062059760094, -0.03460638225078583, -0.009241165593266487, -0.0004396066360641271, 0.020113931968808174, 0.04672684147953987, -0.01336129941046238, 0.033454664051532745, -0.012374112382531166, 0.0007909491541795433, -0.005977964494377375, 0.0028621561359614134, -0.01764596439898014, -0.012298702262341976, 0.0187017060816288, 0.010598547756671906, -0.009439974091947079, 0.01520541962236166, -0.012278135865926743, -0.03073989972472191, 0.022609319537878036, 0.017440300434827805, 0.009988411329686642, -0.016247449442744255, 0.012812862172722816, 0.013032237067818642, -0.012538643553853035, -0.02163584530353546, -0.6221470832824707, 0.006834897678345442, 0.00671149929985404, -0.012058760970830917, 0.019195299595594406, -0.0031158083584159613, 0.010763078927993774, 0.0050798989832401276, -0.01446502935141325, 0.01527397334575653, 0.017988737672567368, -0.010598547756671906, 0.005251285620033741, -0.011441769078373909, -0.02092287689447403, -0.004702848382294178, -0.008576185442507267, -0.028820371255278587, -0.012922549620270729, 0.0017721374751999974, -0.023815881460905075, 0.021293072029948235, -0.01001583319157362, 0.0021183383651077747, -0.023541662842035294, -0.01779678463935852, 0.0249127559363842, 0.002276014070957899, 0.009769036434590816, 0.02297951467335224, -0.035237085074186325, 0.03233036771416664, 0.022307679057121277, 0.0034877173602581024, 0.04283294081687927, -0.02197861671447754, -0.013614951632916927, 0.04467020183801651, 0.0008817840716801584, 0.04601387307047844, -0.035401616245508194, -0.008562474511563778, 0.023843303322792053, 0.019826002418994904, -0.03899388015270233, 0.0019263853318989277, 0.02196490578353405, -0.006187056191265583, -0.004576022271066904, 0.0013856606092303991, 0.008260834030807018, -0.01661764457821846, -0.0017995593370869756, 0.013854892924427986, -0.008055170066654682, -0.021581001579761505, 0.02640724740922451, -0.020237330347299576, 0.014780380763113499, -0.0010651677148416638, -0.0030541091691702604, 0.0010711662471294403, -0.003897331189364195, -0.047878559678792953, -0.045794498175382614, 0.0068691750057041645, -5.015735951019451e-05, -0.011990206316113472, -0.021868929266929626, -0.019017057493329048, 0.022952092811465263, -0.00737647945061326, 0.007246225606650114, -0.011962784454226494, 0.015657879412174225, 0.035099975764751434, 0.051580511033535004, 0.0014842079253867269, -0.0030301150400191545, 0.020113931968808174, 0.016206316649913788, -0.016096629202365875, -0.008226556703448296, 0.01188051886856556, 0.011962784454226494, 0.013093936257064342, -0.02152615785598755, -0.007253081072121859, 0.001574185909703374, 0.01900334656238556, -0.007486166898161173, 0.0323852114379406, -0.007808373309671879, -0.03430474177002907, 0.0016375989653170109, 0.0552276186645031, -0.01015294250100851, 0.019921978935599327, -0.018756549805402756, -0.026229005306959152, -0.04209255054593086, -0.00906292349100113, 0.010824778117239475, -0.002300008200109005, 0.005960825830698013, 0.0024336897768080235, -0.014369052834808826, -0.005199869628995657, 0.02776462957262993, -0.028134824708104134, -0.011229249648749828, -0.021320493891835213, -0.01942838542163372, -0.0170701052993536, 0.006156206596642733, -0.02640724740922451, 0.003215212607756257, -0.002922141458839178, 0.017467722296714783, -0.019839713349938393, -0.0014439320657402277, -0.01960662752389908, 0.02698310650885105, 0.018057292327284813, 0.009248021058738232, 0.00815800204873085, 0.0179476048797369, 0.0010960173094645143, 0.008123724721372128, -0.014725537039339542, -0.00978960283100605, -0.011386925354599953, -0.00411670608446002, -0.0018338366644456983, 0.030822165310382843, 0.019702604040503502, 0.027188770473003387, -0.003012976376339793, -0.004822819028049707, -0.04151669144630432, -0.00211148289963603, -0.0030523953028023243, 0.0085350526496768, -0.005484370980411768, -0.009206888265907764, -0.03756794333457947, -0.00852134171873331, 0.0030146902427077293, -0.004504039883613586, 0.010495715774595737, -0.011709132231771946, -0.017563698813319206, 0.013299600221216679, 0.009837591089308262, -0.0012862564763054252, -0.013642373494803905, -0.0031312331557273865, -0.03222068026661873, -0.010694524273276329, -0.041187629103660583, -0.02714763768017292, 0.00817171297967434, -0.0077398186549544334, -0.0029529910534620285, -0.01112641766667366, -0.016055496409535408, -0.0038664815947413445, 0.021882640197873116, 0.010111809708178043, -0.03452411666512489, -0.00036612461553886533, -0.00343115977011621, -0.006533257197588682, 0.014794091694056988, -0.01247008889913559, 0.016713621094822884, -0.01416338887065649, -0.025488615036010742, -0.014410185627639294, 0.004627438262104988, 0.008212845772504807, 0.01930498704314232, -0.00883669313043356, -0.018797682598233223, 0.037897005677223206, 0.009138333611190319, 0.01358752977102995, 0.018194401636719704, -0.013224190101027489, 0.028299355879426003, -0.007575287949293852, 0.00634815962985158, -0.014108545146882534, -0.0002448685991112143, -0.010235208086669445, -0.002349710324779153, -0.02953333966434002, 0.008932669647037983, -0.004637721460312605, 0.002795315347611904, 0.018482331186532974, 0.011859952472150326, 0.015794988721609116, -0.006344731897115707, 0.0038424874655902386, -0.005460376851260662, 0.023527951911091805, -0.013745205476880074, 0.018756549805402756, -0.005707173608243465, -0.005535786971449852, -0.0012751163449138403, -0.00422296579927206, -0.009981555864214897, -0.01121553871780634, 0.021471314132213593, 0.021114829927682877, -0.001295682741329074, -0.0028878641314804554, -0.007472455967217684, 0.004205827135592699, -0.006762915290892124, 0.02610560692846775, -0.00957708340138197, 0.0008320819470100105, 0.016055496409535408, -0.006735493429005146, 0.01944209635257721, -0.0037567943800240755, -0.018441198393702507, 0.003533991752192378, 0.011606300249695778, -0.001653023762628436, 0.007924916222691536, 0.030465681105852127, 0.023555373772978783, 0.02446029521524906, -0.005364400800317526, 0.026750020682811737, 0.011030441150069237, 0.005957398097962141, -0.0020634946413338184, 0.014341630972921848, -0.025927364826202393, 0.016878152266144753, 0.02034701779484749, 0.007678119465708733, 0.006183628458529711, -0.008439076133072376, 0.0035785522777587175, -0.0017738513415679336, -0.0009237737976945937, -0.023665061220526695, 8.59610881889239e-05, 0.020689791068434715, -0.028409043326973915, 0.02371990494430065, 0.011366358958184719, 0.015328817069530487, 0.03592263162136078, 0.01886623725295067, 0.004219538066536188, 0.0058237165212631226, -0.01837264373898506, 0.026640333235263824, -0.024144943803548813, -0.010482004843652248, -0.020799478515982628, 0.0005312984576448798, -0.025269240140914917, 0.01793389394879341, -0.013683506287634373, 0.009741614572703838, -0.02089545503258705, -0.018304089084267616, -0.01127723790705204, 0.006025952752679586, 0.017303191125392914, 0.0013873744755983353, 0.026530645787715912, -0.024090100079774857, -0.03189161792397499, 0.027860606089234352, -0.0008445074781775475, 0.007458745036274195, -0.003187790745869279, -0.021279361099004745, 0.005230719223618507, 0.004476618021726608, 0.009666204452514648, 0.012339835055172443, -0.0041989716701209545, -0.004867379553616047, -0.002983840648084879, 0.005446665920317173, -0.007897494360804558, 0.030602790415287018, -0.013704072684049606, -0.02164955623447895, 0.008281400427222252, 0.024556271731853485, 0.014382763765752316, -0.013258467428386211, -0.042805518954992294, 0.008110013790428638, -0.011572022922337055, -0.033756304532289505, -0.030904430896043777, -0.018934791907668114, -0.023939279839396477, 0.0010780217126011848, -0.010509426705539227, -0.021265650168061256, -0.01676846481859684, 0.008240267634391785, 0.012936260551214218, 0.004514323081821203, -0.011421202681958675, 0.015150575898587704, 0.024076389148831367, -0.01542479358613491, -0.021910062059760094, 0.0035168530885130167, 0.021430181339383125, 0.08051057159900665, -0.002161185024306178, -0.0019280991982668638, 0.02122451737523079, -0.019688893109560013, -0.012003917247056961, -0.026448380202054977, -0.027271036058664322, 0.05934089794754982, 0.0024251204449683428, -0.021416470408439636, 0.006450991611927748, 0.011832530610263348, -0.02105998620390892, 0.0062693217769265175, 0.013642373494803905, 0.0003427731862757355, -0.008768138475716114, -0.010008977726101875, 0.006581245455890894, 0.0034602954983711243, 0.0028124540112912655, 0.031096383929252625, 0.013854892924427986, 0.043381378054618835, 0.014245654456317425, 0.03918583318591118, 0.007561577018350363, 0.014999755658209324, -0.01461584959179163, -0.0038699093274772167, 0.016823308542370796, 0.0029547049198299646, 0.0149037791416049, -0.03312560170888901, 0.034359585493803024, -0.0041098506189882755, 0.007253081072121859, 0.006255610845983028, -0.002515955362468958, 0.0019298130646348, 0.034633804112672806, -0.007253081072121859, 0.015411082655191422, 0.029122011736035347, -0.012888272292912006, -0.008391087874770164, 0.026791153475642204, -0.016576511785387993, -0.010461438447237015, 0.02329486608505249, 0.019373541697859764, -0.0037430834490805864, 0.012298702262341976, -0.011462335474789143, -0.0026496369391679764, 0.009357708506286144, 0.0006328450399450958, -0.014574716798961163, -0.02640724740922451, -0.03811638057231903, 0.005138170439749956, -0.013621807098388672, -0.01083163358271122, -0.02332228794693947, -0.024707091972231865, -0.03600489720702171, -0.01574014499783516, -0.03252232074737549, 0.014053701423108578, -0.024364318698644638, -0.035648413002491, -0.008528197184205055, 0.02258189767599106, 0.026818575337529182, 0.018783971667289734, -0.005929976236075163, -0.010790500789880753, 0.001461070729419589, 0.016220027580857277, 0.012339835055172443, -0.009817024692893028, 0.008953236043453217, -0.022527053952217102, 0.014588427729904652, -0.007979759946465492, -0.016233738511800766, -0.006615522783249617, 0.0005801436491310596, 0.009769036434590816, -0.002697625197470188, -0.010516282171010971, 0.034359585493803024, 0.008199134841561317, 0.014190810732543468, -0.006714927032589912, 0.006293315906077623, -0.006351587362587452, 0.01634342595934868, -0.04412176460027695, 0.022197991609573364, -0.010386028327047825, -0.006738921161741018, -0.012524932622909546, 0.01735803484916687, 0.015849832445383072, -0.02074463479220867, -0.011928507126867771, -0.007767240516841412, -0.0036059741396456957, 0.009666204452514648, 0.01676846481859684, -0.022801272571086884, -0.0035545581486076117, 0.014656982384622097, -0.02285611629486084, 0.012051905505359173, 0.012662041932344437, 0.013320166617631912, -0.008706439286470413, -0.017289480194449425, -0.00874757207930088, 0.022773850709199905, 0.008802415803074837, 0.014410185627639294, 0.03115122765302658, 0.02446029521524906, 0.0018526891944929957, -0.01589096523821354, 0.01809842512011528, 0.004552028141915798, -0.001689871889539063, -0.016823308542370796, -0.025310372933745384, -0.02104627527296543, -0.018071003258228302, -0.01037917286157608, 0.014684404246509075, -0.008267689496278763, -0.0038561983965337276, -0.051553089171648026, 0.018139557912945747, 0.017330612987279892, -0.015781277790665627, -0.0027370438911020756, -0.027092793956398964, -0.020141353830695152, -0.004565739072859287, 0.003302619792521, 0.02015506476163864, -0.004915367811918259, -0.00014814229507464916, -0.024158654734492302, -0.015219129621982574, -0.010591692291200161, -0.013100791722536087, -0.005902554374188185, 0.021608423441648483, 0.050840120762586594, 0.01749514415860176, 0.02361021749675274, 0.005302701611071825, 7.926630132715218e-06, 0.00689316913485527, -0.009378274902701378, -0.007541010621935129, -0.005748306401073933, -0.02136162668466568, -0.0002489390317350626, -0.01431420911103487, 0.025570880621671677, 0.00046231536543928087, -0.007273647468537092, -0.00419211620464921, -0.009494817815721035, -0.000572431250475347, -0.012175303883850574, -0.008397943340241909, -0.022760139778256416, -0.0317545086145401, -0.0023582796566188335, 0.02776462957262993, -0.009556517004966736, 0.008802415803074837, -0.03663560003042221, -0.008500775322318077, 0.01749514415860176, 0.0033591773826628923, 0.043874967843294144, 0.00630359910428524, 0.029149433597922325, -0.009583938866853714, 0.001625601900741458, 0.026530645787715912, 0.0015039173886179924, -0.01678217574954033, -0.014835224486887455, -0.03647106885910034, -0.022814983502030373, 0.009707337245345116, 0.029149433597922325, 0.0031792214140295982, 0.0032563454005867243, 0.015507059171795845, -0.002999265445396304, 0.02330857701599598, -0.01971631497144699, -0.03411278873682022, 0.014862646348774433, -0.021539868786931038, -0.006612095050513744, -0.029176855459809303, -0.02019619755446911, 0.009741614572703838, -0.01460213866084814, -0.00024165509967133403, -0.003701950656250119, 0.009398841299116611, -0.006666938774287701, -0.015671590343117714, 0.009289153851568699, 0.005405533593147993, 0.009906145744025707, 0.020991431549191475, 0.015616746619343758, 0.01120182778686285, 0.00043810700299218297, -0.02997208945453167, -0.01927756518125534, 0.006930874194949865, -0.009268587455153465, 0.0030438259709626436, 0.04497184231877327, -0.006790337152779102, -0.02271900698542595, 0.014533584006130695, 0.006310454569756985, -0.009138333611190319, -0.02300693653523922, 0.030301151797175407, 0.016672488301992416, 0.01039288379251957, -0.03438700735569, -0.01915416680276394, -0.002478250302374363, 0.010948175564408302, -0.01601436361670494, 0.012538643553853035, 0.013368154875934124, 0.023952990770339966, -0.010564270429313183, 0.029478495940566063, -0.009597649797797203, 0.017289480194449425, -0.011270382441580296, 0.0123946787789464, -0.007445034105330706, -0.013258467428386211, -0.012353545986115932, -0.024748224765062332, 0.007314780261367559, 0.01764596439898014, -0.01796131581068039, 0.019538072869181633, 0.010509426705539227, 0.016288582235574722, 0.014245654456317425, -0.011901085264980793, -0.019551783800125122, 0.031398024410009384, 0.014670693315565586, 0.001953807193785906, 0.018797682598233223, -0.010687668807804585, 0.026530645787715912, -0.03723888099193573, -0.01735803484916687, -0.01142805814743042, -0.011044152081012726, -0.006797192618250847, -0.004044723697006702, -0.018783971667289734, -0.01826295629143715, -0.010824778117239475, 0.002634212141856551, 0.002999265445396304, -0.013409287668764591, -0.0018972497200593352, 0.01705639436841011, -0.02983498014509678, -0.0029307107906788588, 0.004356647375971079, 0.010310618206858635, 0.015781277790665627, 0.002212601015344262, -0.015507059171795845, 0.012278135865926743, 0.006115073803812265, -0.03145286813378334, 0.003467150963842869, 0.01871541701257229, 0.02180037461221218, -0.05204668268561363, 0.030081776902079582, 0.0071365381591022015, 0.005686607211828232, 0.020333306863904, 0.0020532114431262016, -0.035812944173812866, -0.0161926057189703, 0.013107647188007832, 0.001092589576728642, 0.002426834311336279, -0.005422672256827354, -0.005121031776070595, -0.003302619792521, 0.009995266795158386, -0.02465224824845791, -0.02136162668466568, -0.006591528654098511, -0.026009630411863327, 0.0036676733288913965, 0.0222802571952343, 0.00437378603965044, -0.005796294659376144, -0.0280525591224432, 0.013820615597069263, -0.0030386843718588352, -0.03364661708474159, -0.008301966823637486, -0.030164042487740517, -0.016425691545009613, -0.008939525112509727, -0.01574014499783516, -0.03117864951491356, -0.035538725554943085, -0.02417236566543579, 0.010440872050821781, -0.007959193550050259, 0.0011234391713514924, 0.03337239846587181, -0.0077535295858979225, -0.009234310127794743, 0.011249816045165062, -0.008370521478354931, -0.025625724345445633, -0.019167877733707428, -0.007102260831743479, -0.029313964769244194, -0.008329388685524464, -0.011304659768939018, 0.02000424452126026, 0.024693381041288376, -0.011455480009317398, -0.026791153475642204, -0.008178568445146084, -0.029697870835661888, 0.0015784705756232142, -0.0358952097594738, 0.04228450357913971, 0.020840611308813095, 0.011263526976108551, 0.01254549901932478, 0.03430474177002907, -0.010523137636482716, 0.026297559961676598, -0.031096383929252625, -0.029478495940566063, -0.0073284911923110485, -0.023706194013357162, 0.03128833696246147, -0.039542317390441895, -0.04642520099878311, -0.006725210230797529, 0.011811964213848114, -0.0045554558746516705, 0.008692728355526924, 0.0132721783593297, -0.008226556703448296, -0.03471606969833374, -0.00787007249891758, 0.009227454662322998, 0.014821513555943966, 0.0037088061217218637, 0.006094507407397032, -0.016507957130670547, -0.004264098592102528, 0.01781049557030201, 0.011421202681958675, -0.012435811571776867, 0.016645066440105438, 0.015699012205004692, -0.010290051810443401, -0.011777686886489391, -0.026489512994885445, -0.01634342595934868, -0.014437607489526272, -0.004987350199371576, -0.012511221691966057, -0.0004233249055687338, -0.007801517844200134, 0.03756794333457947, 0.016713621094822884, -0.031672243028879166, -0.007307924795895815, 0.019359830766916275, 0.0026479230728000402, -0.006008814089000225, 0.032110992819070816, -0.02701052837073803, -0.014533584006130695, -0.016398269683122635, 0.015561902895569801, -0.009515384212136269, -0.011496612802147865, -0.0094125522300601, -0.01779678463935852, -0.026229005306959152, -0.0037053783889859915, 0.02580396644771099, -0.004692565184086561, 0.0010128947906196117, -0.007280502934008837, 0.001156002632342279, -0.007438178639858961, -0.010845344513654709, 0.009042357094585896, -0.020113931968808174, -0.01129094883799553, 0.006430425215512514, 0.006471558008342981, -0.022143147885799408, 0.020676080137491226, 0.018509753048419952, -0.009734759107232094, 0.0009417693945579231, 0.21531641483306885, 0.010447727516293526, 0.0026753449346870184, 0.03839059919118881, 0.003609401872381568, 0.009995266795158386, -0.0031980739440768957, 0.007259936537593603, -0.004719987045973539, 0.014670693315565586, 0.012929405085742474, -0.004178405273705721, -0.0323852114379406, -0.0006752632325515151, 0.00475083664059639, -0.006022525019943714, -0.016384558752179146, -0.020292174071073532, -0.007129682693630457, -0.003633396001532674, 0.010050110518932343, -0.007780951447784901, -0.011750265024602413, -0.0013950868742540479, 0.02761380933225155, 0.021032564342021942, 0.000838937412481755, 0.0194558072835207, 0.022376233711838722, 0.019469518214464188, -0.03320786729454994, -0.01617889478802681, 0.026530645787715912, -0.00708854990079999, -0.009707337245345116, 0.0009640495991334319, 0.008624173700809479, -0.0017995593370869756, 0.013203623704612255, 0.021416470408439636, -0.011688565835356712, -0.004987350199371576, 0.014067412354052067, -0.01900334656238556, 0.02332228794693947, 0.010660246945917606, 0.009775891900062561, 0.009871868416666985, 0.017399167641997337, 0.028984902426600456, 0.012024483643472195, 0.00441834656521678, 0.004438912961632013, 0.002264017006382346, -0.023500530049204826, -0.031206071376800537, -0.010276340879499912, -0.006094507407397032, -0.01203133910894394, 0.01986713521182537, -0.0015030604554340243, -0.00817171297967434, -0.0020017954520881176, 0.012511221691966057, -0.034057945013046265, 0.0049770670011639595, -0.008048314601182938, 0.040858566761016846, 0.01401256863027811, 0.00675605982542038, -0.02480306848883629, -0.015671590343117714, -0.029259121045470238, 0.0011234391713514924, -0.011743409559130669, -0.028683261945843697, 0.0016598792281001806, 0.034195054322481155, 0.03057536855340004, 0.02196490578353405, 0.013518975116312504, -0.008562474511563778, -0.019551783800125122, -0.002608504146337509, -0.005902554374188185, -0.03595005348324776, 0.01678217574954033, -0.017440300434827805, 0.009131478145718575, -0.012881416827440262, -0.015479637309908867, 0.007561577018350363, -0.02003166638314724, -0.004953072872012854, -0.006913735531270504, -0.0038664815947413445, -0.0002703623613342643, 0.026900840923190117, 0.018180690705776215, 0.0020377866458147764, -0.031123805791139603, 0.05330808833241463, 0.014506162144243717, 0.028683261945843697, -0.016137761995196342, -0.0067286379635334015, -0.012346690520644188, 0.010310618206858635, -0.016576511785387993, 0.005984819959849119, -0.013292744755744934, -0.027476700022816658, 0.017714519053697586, 0.0063584428280591965, 0.013806904666125774, 0.024967599660158157, 0.005336978938430548, -0.006101362872868776, -0.017618542537093163, 0.01052999310195446, 0.03208357095718384, -0.013902881182730198, 0.0008196564158424735, 0.001485921791754663, -0.017741940915584564, -0.016220027580857277, -0.022307679057121277, 0.016069207340478897, -0.014369052834808826, -0.01735803484916687, -0.018139557912945747, -0.019949400797486305, 0.020648658275604248, -0.014053701423108578, -0.013916592113673687, -0.0065881009213626385, 0.00537125626578927, -0.022924670949578285, 0.0033865992445498705, 0.019634049385786057, -0.004102995153516531, -0.0018749694572761655, 0.01693299598991871, -0.017714519053697586, 0.00020084367133677006, -0.004486901219934225, 0.0075067332945764065, 0.014053701423108578, -0.003419162705540657, -0.03636138141155243, 0.0038904757238924503, 0.031096383929252625, -0.02074463479220867, 0.006557251326739788, 0.03158997744321823, 0.006581245455890894, -0.03010919876396656, -0.017865339294075966, 0.02909458987414837, -0.016960417851805687, -0.021238228306174278, -0.007849506102502346, 0.05064816772937775, 0.014286787249147892, -0.026503223925828934, -7.524943066528067e-05, -0.17517080903053284, 0.019798580557107925, 0.012209581211209297, -0.014135967008769512, -0.004133844748139381, 0.01460213866084814, 0.020566392689943314, 0.003684811992570758, -0.028984902426600456, -0.006924018729478121, 0.01231926865875721, 0.015685301274061203, -0.023651350289583206, -0.01911303400993347, 0.010646536014974117, -0.010488860309123993, -0.00956337247043848, 0.020059088245034218, 0.051251448690891266, 0.009570227935910225, 0.028244512155652046, -0.025557169690728188, 0.008493919856846333, -0.015369949862360954, 0.009817024692893028, 0.0021526156924664974, -0.00393503624945879, 0.024583693593740463, 0.009721048176288605, -0.04126989468932152, 0.0014430751325562596, -0.010701379738748074, 0.02210201509296894, 0.015794988721609116, 0.01648053526878357, 0.005755161866545677, 0.018180690705776215, -0.0037465111818164587, -0.0014019423397257924, 0.0124563779681921, 0.019387252628803253, 0.0017104382859542966, 0.012120460160076618, -0.01313506904989481, 0.027037950232625008, 0.027504121884703636, 0.00927544292062521, -0.016727332025766373, -0.005786011461168528, -0.011626866646111012, 0.001130294636823237, -0.03145286813378334, -0.01446502935141325, -0.022047171369194984, 0.00485709635540843, 0.0008834979380480945, 0.0007061127689667046, 0.02773720771074295, -0.0020017954520881176, -0.028820371255278587, -0.010104954242706299, -0.011585733853280544, -0.03372888267040253, 0.0034774341620504856, 0.00760270981118083, -0.02997208945453167, -0.025872521102428436, 0.027037950232625008, 0.009844446554780006, 0.00523414695635438, 0.0009194891317747533, -0.002454256173223257, -0.006622378248721361, 0.008212845772504807, 0.015918387100100517, 0.006094507407397032, -0.02846388705074787, 0.003266628598794341, 0.03882934898138046, 0.008425365202128887, 0.013004815205931664, 0.0116405775770545, -0.0044800457544624805, -0.007918060757219791, -0.01046829391270876, -0.013450420461595058, -0.003962458111345768, 0.006259038578718901, -0.011928507126867771, -0.0017181506846100092, 0.012442667037248611, -0.0212108064442873, 0.015507059171795845, -0.014231943525373936, 0.0022794418036937714, 0.01973002590239048, 0.01956549473106861, -0.009453685022890568, 0.015123154036700726, -0.023980412632226944, -0.0010308903874829412, 0.0076644085347652435, -0.028518730774521828, 0.018441198393702507, 0.028244512155652046, 0.01393715851008892, 0.023034358397126198, -0.00012886129843536764, 0.030465681105852127, -0.0132721783593297, -0.03024630807340145, 0.02418607659637928, 0.03164482116699219, 0.0017472864128649235, -0.005919693037867546, 0.022458499297499657, -0.014005713164806366, -0.01855088584125042, -0.015603035688400269, -0.010331184603273869, 0.06707385927438736, -0.040584348142147064, -0.021443892270326614, 0.01045458298176527, -0.002620501210913062, -0.017028972506523132, -0.09800571203231812, -0.024254631251096725, 0.021704399958252907, 0.008966946974396706, -0.01720721460878849, 0.02876552753150463, -0.003791071707382798, 0.01297053787857294, 0.00678690942004323, 0.009645638056099415, -0.01989455707371235, -0.0077398186549544334, -0.00942626316100359, 0.007259936537593603, 0.01401256863027811, -0.019784869626164436, 0.022444788366556168, -0.01723463647067547, 0.014005713164806366, 0.03446927294135094, 0.0212108064442873, -0.010790500789880753, 0.012504366226494312, 0.00824712309986353, -0.014890068210661411, -0.02371990494430065, -0.025584591552615166, 0.008884681388735771, 0.01808471418917179, -0.0044286297634243965, 0.03013662062585354, -0.0026359260082244873, 0.03918583318591118, -0.03427731990814209, -0.013944013975560665, -0.016699910163879395, 0.005611197091639042, 0.012312413193285465, 0.016439402475953102, -0.03057536855340004, 0.012278135865926743, -0.004099567420780659, 0.012901983223855495, -0.03427731990814209, 0.0038596261292696, 0.010056965984404087, -0.014369052834808826, 0.03660817816853523, 0.007609564810991287, -0.01520541962236166, -0.008130580186843872, -0.011949073523283005, -0.016137761995196342, -0.03202872723340988, 0.0163160040974617, -0.017563698813319206, 0.014019424095749855, 0.0010446013184264302, -0.017454011365771294, -0.005696890410035849, -0.02402154542505741, -0.0025210969615727663, -0.012058760970830917, 0.02446029521524906, 0.008713294751942158, 0.006975434720516205, -0.0025725129526108503, 0.018509753048419952, 0.003674528794363141, 0.010523137636482716, -0.01632971502840519, -0.005902554374188185, -0.0272984579205513, 0.015822410583496094, -0.017851628363132477, 0.009371419437229633, -0.012991104274988174, -0.015849832445383072, 0.0005312984576448798, 0.0072393701411783695, -0.012840284034609795, -0.006814331281930208, 0.0010814494453370571, -0.013381865806877613, -0.003791071707382798, 0.0020412143785506487, 0.010701379738748074, 0.0006919733714312315, 0.01180510874837637, -0.044587936252355576, 0.011297804303467274, 0.031398024410009384, 0.0077192522585392, 0.014423896558582783, -0.02048412710428238, 0.00948796235024929, 0.011242960579693317, 0.004562311340123415, 0.021786663681268692, -0.018454909324645996, -0.01371092814952135, 0.0035511304158717394, -0.06290573626756668, 0.0059882476925849915, 0.012853994965553284, 0.018153268843889236, 0.012806006707251072, -0.04560254514217377, -0.0075067332945764065, -0.007191381882876158, -0.007335346657782793, -0.004246959928423166, -0.02134791575372219, 0.025118419900536537, -0.021731821820139885, 0.008377376943826675, -0.012689463794231415, -0.021772952750325203, 0.025296662002801895, -0.0036025464069098234, -3.0314004106912762e-05, 0.0037328002508729696, -0.010475149378180504, 0.006714927032589912, -0.001703582820482552, 0.009152044542133808, 0.002366848988458514, 0.02163584530353546, -0.00434293644502759, 0.01247008889913559, -0.0061287847347557545, -0.022211702540516853, 0.02387072518467903, 0.005498081911355257, 0.013546396978199482, -0.00035626988392323256, -0.006773198489099741, -0.016082918271422386, -0.036882396787405014, 0.005429527722299099, 0.025461193174123764, -0.014451318420469761, 0.00861046276986599, -0.014067412354052067, 0.0341402105987072, -0.012120460160076618, -0.02152615785598755, -0.002121766097843647, -0.0255434587597847, -0.020826900377869606, -0.0004773116670548916, 0.02670888788998127, 0.02967044897377491, -0.0007759528234601021, -0.03290622681379318, -0.03710177168250084, 0.003060964634642005, -0.020950298756361008, 0.010790500789880753, 0.038500286638736725, -0.007671264000236988, 0.0005608626524917781, 0.041900597512722015, -0.0032837672624737024, 0.00845964252948761, 0.00016581654199399054, 0.028902636840939522, 0.0030815310310572386, -0.05064816772937775, 0.004791969433426857, 0.002452542306855321, -0.019250143319368362, -0.008349955081939697, -0.015109443105757236, 0.01764596439898014, 0.012614053674042225, 0.02164955623447895, -0.006468130275607109, -0.028984902426600456, -0.010708235204219818, -0.0005068758619017899, 0.03156255558133125, 0.020840611308813095, 0.0034345875028520823, -0.03712919354438782, 0.023116623982787132, 0.017426589503884315, 0.009570227935910225, -0.02016877569258213, 0.012710030190646648, 0.030054355040192604, -0.0035682690795511007, -0.01823553442955017, -0.0032563454005867243, 0.0033711744472384453, 0.005967681296169758, -0.017618542537093163, 0.01520541962236166, -0.009391985833644867, 0.006581245455890894, 0.019181588664650917, 0.0315077118575573, -0.01081792265176773, 0.03276911750435829, -0.014807802625000477, -0.002430262044072151, 0.0035545581486076117, 0.020415572449564934, 0.0038322042673826218, -0.022924670949578285, 0.016809597611427307, 0.006022525019943714, 0.010721946135163307, -0.03071247786283493, 0.01520541962236166, 0.01675475388765335, -0.02015506476163864, -0.0013402432668954134, 0.013752060942351818, -0.02031959593296051, -0.031041540205478668, 0.0043395087122917175, 0.00802089273929596, 0.026037052273750305, 0.0065366849303245544, -0.015219129621982574, 0.04601387307047844, 0.005724312271922827, 0.008665306493639946, -0.019400963559746742, 0.021731821820139885, -0.017111238092184067, 0.003887047991156578, -0.01720721460878849, 0.005162164568901062, -0.015603035688400269, 0.003989879973232746, -0.006416714284569025, -0.013251611962914467, 0.0240352563560009, -0.022623030468821526, 0.1009124293923378, 0.025886232033371925, -0.021882640197873116, 0.015123154036700726, 0.014492451213300228, 0.018016159534454346, 0.02731216885149479, 0.005210152827203274, 0.009906145744025707, 5.021091965318192e-06, 0.03334497660398483, -0.006663511041551828, -0.005134742707014084, 0.005734595470130444, -0.017440300434827805, -0.0065503958612680435, 0.0013316739350557327, 0.014135967008769512, -0.017467722296714783, 0.0027370438911020756, -0.0031312331557273865, -0.01001583319157362, -0.004133844748139381, -0.012346690520644188, -0.03556614741683006, -0.005412389058619738, 0.012648331001400948, 0.029643027111887932, -0.015794988721609116, -0.03191903978586197, 0.014506162144243717, -0.011297804303467274, -0.011750265024602413, -0.0006812617066316307, -0.013553252443671227, 0.010111809708178043, -0.01927756518125534, 0.00017781359201762825, -0.0007798090227879584, 0.01431420911103487, 0.017330612987279892, 0.028409043326973915, -0.024309474974870682, -0.01767338626086712, 0.030685056000947952, -0.012154737487435341, 0.011859952472150326, -0.0149037791416049, -0.01238096784800291], "e682ce61-fb56-4a2d-a957-fbf6faf3a827": [0.00043932246626354754, -0.006222032010555267, -0.0018764858832582831, -0.037979256361722946, 0.01435801200568676, 0.032094378024339676, 0.001439717598259449, -0.03827894851565361, -0.014630460180342197, -0.018989628180861473, -0.010101011022925377, 0.029233675450086594, -0.013213730417191982, -0.01958901435136795, -0.010850243270397186, 0.00434554647654295, 0.01239638589322567, -0.018131418153643608, -0.01076169777661562, -0.016769176349043846, -0.03509130701422691, -0.017777234315872192, -0.008963540196418762, 0.002489493926987052, -0.023062726482748985, -0.0010702100116759539, 0.009528870694339275, -0.019629880785942078, -0.015897342935204506, 0.004778057336807251, 0.014916529878973961, -0.012716512195765972, -0.030323466286063194, 0.004103748593479395, -0.007764769252389669, 0.006208409555256367, 0.0058406051248312, 0.0034686040598899126, 0.028634289279580116, -0.00538084888830781, 0.019629880785942078, 0.00538766011595726, 0.002571228425949812, -0.017709122970700264, -0.026332102715969086, 0.029315410181879997, -0.00036950764479115605, -0.020283756777644157, -0.02145528420805931, 0.011940035037696362, 0.004863197449594736, -0.007839692756533623, -0.016796421259641647, 0.002213640371337533, 0.005636268761008978, -0.00614370359107852, 0.01241000834852457, 0.012539421208202839, 0.010632284916937351, -0.010816187597811222, 0.004093531984835863, 0.013615590520203114, -0.005966612137854099, -0.006082402542233467, -0.0184992216527462, -0.04500841721892357, -0.005043694283813238, 0.004417063668370247, -0.0040117972530424595, -0.009099764749407768, 0.03168570622801781, 0.02808939293026924, 0.021032989025115967, -0.006365067325532436, 0.012866359204053879, -0.0157611183822155, -0.0266317967325449, -0.011047768406569958, -0.002300483174622059, 0.009937542490661144, 0.006528536323457956, -0.0009722989634610713, -0.015420558862388134, 0.005367226433008909, 0.025364913046360016, 0.016673820093274117, 0.013915283605456352, 0.014003829099237919, -0.020351868122816086, -0.011143124662339687, -0.00912700966000557, -0.0008092558127827942, 0.02280390076339245, 0.018635446205735207, 0.026604551821947098, -0.014548725448548794, 0.013717759400606155, 0.011776566505432129, -0.009985220618546009, -0.018962383270263672, -0.010625473223626614, -0.006096024997532368, -0.016401372849941254, -0.009229177609086037, 0.0008599141146987677, -0.01871718093752861, 0.00611305283382535, -0.018826160579919815, 0.0033783556427806616, 0.015011887066066265, -0.006177759263664484, 0.025433024391531944, -0.008030406199395657, -0.020610693842172623, 0.004015203099697828, -0.00912700966000557, 0.034028761088848114, -0.031522236764431, -0.020978499203920364, -0.028825003653764725, 0.013915283605456352, 0.00974682904779911, 0.049966972321271896, -0.019847840070724487, 0.015039131976664066, 0.016551218926906586, 0.02295374684035778, -0.017709122970700264, 0.017300451174378395, -0.01434438955038786, 0.0013596860226243734, -0.0047167567536234856, 0.03866037726402283, -0.004822330549359322, -0.024057162925601006, 0.015475048683583736, -0.019084986299276352, 0.00702234823256731, -0.004137804731726646, -0.01803606003522873, 0.014575970359146595, 0.014303522184491158, 0.01868993602693081, -0.01347255613654852, -0.007935049012303352, 0.03261202946305275, 0.001346915028989315, -0.002056982833892107, 0.03092285245656967, 0.0009995436994358897, -0.0021302031818777323, -0.0063446336425840855, -0.029751326888799667, 0.005663513671606779, -0.002571228425949812, 0.010026087984442711, 0.019766105338931084, 0.022667676210403442, -0.02055620402097702, -0.0011468359734863043, 0.005111806560307741, 0.023035481572151184, -0.008241552859544754, -0.022912880405783653, 0.020351868122816086, 0.0326392762362957, 0.018526466563344002, -0.036262836307287216, -0.010284913703799248, -0.011912791058421135, 0.014712193980813026, 0.018567334860563278, -0.013356765732169151, 0.03244856372475624, -0.0004135676135774702, 0.0032472400926053524, 0.010502872057259083, 0.002000790322199464, -0.01694626733660698, -0.030105508863925934, 0.03637181222438812, 0.008255175314843655, -0.0016440536128357053, 0.006167542655020952, -0.004778057336807251, -0.024506701156497, 0.003150180447846651, 0.01803606003522873, 0.01104095671325922, -0.009862619452178478, 0.008343721739947796, 0.005765681620687246, -0.027667099609971046, -0.01612892374396324, -0.6320794820785522, 0.0014899502275511622, 0.003446467686444521, -0.004638427868485451, 0.016714686527848244, -0.003473712597042322, 0.007512754760682583, 0.015747496858239174, -0.016374127939343452, 0.03127703443169594, 0.017205093055963516, 0.003002036828547716, -0.003705293405801058, -0.01343849953263998, -0.006640920881181955, 0.005837199278175831, -0.007839692756533623, -0.021850332617759705, -0.010782130993902683, 0.022095536813139915, -0.02977857179939747, 0.020379113033413887, 0.0037018877919763327, -0.0028028092347085476, -0.014603215269744396, -0.021577885374426842, 0.014657705090939999, -0.010455193929374218, 0.011899168603122234, 0.015897342935204506, -0.034927837550640106, 0.01315924059599638, 0.019956819713115692, 0.003650803817436099, 0.04171179607510567, -0.018976006656885147, 0.011933224275708199, 0.03931425139307976, 0.019629880785942078, 0.028770513832569122, -0.03114081174135208, -0.010577795095741749, 0.027735210955142975, 0.025092463940382004, -0.02208191342651844, 0.004910876043140888, 0.022041046991944313, 0.00021167936210986227, 0.006576214451342821, -0.003933468833565712, 0.011102257296442986, 0.002853893209248781, 0.0038517341017723083, -0.01612892374396324, 0.011361083015799522, -0.009964787401258945, 0.01138151716440916, -0.027244804427027702, 0.020787784829735756, -0.01239638589322567, -0.0024946024641394615, 0.004910876043140888, -0.014535102993249893, -0.05094778537750244, -0.041630059480667114, 0.006753305904567242, -0.0001544226979603991, 0.0005572413792833686, -0.015965456143021584, -0.009869430214166641, 0.025678228586912155, -0.003592908615246415, 0.008118951693177223, 0.014303522184491158, 0.008650225587189198, 0.012886792421340942, 0.052092064172029495, 0.0031944531947374344, -0.00521056866273284, 0.024275120347738266, 0.00985580775886774, -0.013213730417191982, -0.016959890723228455, 0.0033374885097146034, 0.03332039713859558, 0.0325847864151001, -0.01987508498132229, -0.03329315036535263, -0.01927569881081581, -0.019520903006196022, -0.014698571525514126, 0.04331924021244049, -0.008888617157936096, -0.043482705950737, 0.000834797858260572, 0.036889463663101196, 0.0011860004160553217, 0.017028002068400383, -0.014003829099237919, -0.01830850914120674, -0.026931488886475563, -0.015488671138882637, 0.004577127285301685, 0.0006589837139472365, 0.019289322197437286, 0.012389575131237507, -0.016333259642124176, -0.02544664777815342, 0.016306014731526375, -0.009256422519683838, -0.009263233281672001, -0.001587861217558384, -0.007131327409297228, -0.02631848119199276, 0.004924498498439789, -0.024275120347738266, -0.018226774409413338, 0.014507858082652092, 0.025283178314566612, -0.03198539838194847, 0.001277100178413093, -0.01059141755104065, 0.018649067729711533, 0.011156747117638588, 0.003310243831947446, 0.016455862671136856, -0.001678109634667635, -0.010925166308879852, 0.0038585453294217587, 0.006971264258027077, -0.004859792068600655, -0.006208409555256367, 0.004818924702703953, -0.0036814541090279818, 0.014099186286330223, 0.01283230260014534, 0.02310359477996826, 0.0025235500652343035, -0.011667587794363499, -0.03544548898935318, -0.0021693676244467497, 0.0042604063637554646, 0.013990206643939018, -0.005278680939227343, 0.010366648435592651, -0.03650803864002228, -0.013506611809134483, 0.009263233281672001, -0.0020399547647684813, 0.014712193980813026, -0.00524121941998601, -0.010066955350339413, -0.010455193929374218, 0.02295374684035778, -0.035581715404987335, -0.003458387451246381, 0.0086910929530859, -0.03825170546770096, -0.005724814720451832, -0.034709881991147995, -0.008554868400096893, 0.01612892374396324, -0.0075263772159814835, -0.001678109634667635, -0.018771670758724213, -0.010645907372236252, -0.003569069318473339, 0.02678164280951023, -0.012777812778949738, -0.026018787175416946, 0.014548725448548794, -0.003592908615246415, -0.015597650781273842, 0.014385256916284561, -0.005571562331169844, 0.01390847284346819, -0.027013223618268967, -0.023716602474451065, 0.007260740268975496, -0.0042229448445141315, 0.009188310243189335, 0.0184992216527462, 0.01448061317205429, -0.01634688302874565, 0.03787027671933174, 0.024561190977692604, 0.020406357944011688, 0.012314651161432266, -0.056887149810791016, 0.02977857179939747, -0.012627966701984406, 0.0016908806283026934, -0.002399245509877801, -0.013261408545076847, -0.032121624797582626, -0.007117704953998327, -0.015924587845802307, 0.009610604494810104, 0.007117704953998327, -0.0002530787023715675, 0.008091706782579422, 0.017354940995573997, -0.0005912974011152983, -0.006623893044888973, -0.0021302031818777323, 0.001765803899616003, -0.005026666447520256, -0.031004587188363075, 0.02242247387766838, -0.005465989001095295, 0.0034566845279186964, -0.009365401230752468, -0.0031859392765909433, -0.009971598163247108, -0.004628211259841919, 0.028334597125649452, 0.013554289937019348, 0.00524121941998601, -0.008248364552855492, 0.002940736012533307, 0.00967190507799387, 0.0036167476791888475, 0.01015550084412098, -0.015870098024606705, -0.019071362912654877, 0.008575302548706532, 0.0044613368809223175, 0.009270044974982738, 0.0029100857209414244, -0.012532609514892101, 0.015406936407089233, 0.013663269579410553, -0.003528202185407281, 0.00580995436757803, 0.049885235726833344, -0.003977741580456495, 0.020501716062426567, 0.0029185996390879154, 0.02002493105828762, 0.008834127336740494, 0.005023260600864887, -0.0017964543076232076, 0.026114145293831825, -0.016959890723228455, -0.00019060719932895154, -0.00023030373267829418, 0.0015921182930469513, 0.010380269959568977, 7.859487232053652e-05, -0.0032829989213496447, -0.0023839203640818596, -0.012171615846455097, -0.001661081681959331, -0.004696323070675135, 0.020283756777644157, -0.01121123693883419, 0.012859547510743141, 0.0065557812340557575, 0.02476552687585354, 0.01607443392276764, 0.010523305274546146, 0.00029266878846101463, 0.018512845039367676, -0.012607533484697342, 0.04026782140135765, -0.011436006985604763, -0.005016449373215437, -0.013758625835180283, -0.014535102993249893, -0.024860883131623268, 0.0076217339374125, -0.020787784829735756, 0.020283756777644157, -0.03484610468149185, 0.004941526334732771, 0.008044028654694557, 0.0015546566573902965, 0.012886792421340942, -0.005152673460543156, 0.014644082635641098, -0.01787259243428707, -0.03634456917643547, 0.026141390204429626, 0.0057929265312850475, -0.0019905734807252884, -0.01747754216194153, -0.024370476603507996, 0.00717219477519393, -0.009024841710925102, 0.0027381028048694134, 0.003473712597042322, 0.0013154131593182683, 0.003473712597042322, 0.007546810898929834, 0.014821173623204231, 0.01678279973566532, 0.04225669056177139, -0.013063883408904076, -0.0020893358159810305, 0.0003190622082911432, 0.011558608151972294, -0.00492109265178442, -0.014998264610767365, -0.043591685593128204, 0.028171127662062645, -0.03065040521323681, -0.024207009002566338, -0.026522817090153694, -0.009324533864855766, -0.028579799458384514, -0.0018356186337769032, -0.00567713612690568, -0.04263811931014061, 0.0007777540013194084, -0.012157994322478771, 0.0072198729030787945, 0.0019377866992726922, -0.00404925923794508, 0.009447135962545872, 0.02467017062008381, -0.008405022323131561, -0.033211417496204376, 0.010346214286983013, 0.02280390076339245, 0.07279811799526215, 0.011374705471098423, 0.002045063069090247, 0.028879491612315178, -0.018553711473941803, -0.030377956107258797, -0.013717759400606155, -0.025950675830245018, 0.045771270990371704, 0.026359347626566887, -0.013799493201076984, -0.003441359382122755, 0.015447803772985935, -0.01653759554028511, 0.012185238301753998, 0.013097940012812614, -0.005244624800980091, -0.024179764091968536, -0.017545653507113457, -0.004400035832077265, -0.0033442997373640537, -0.0030343900434672832, 0.025705473497509956, 0.01803606003522873, 0.045171886682510376, 0.02743551880121231, 0.03958670049905777, 0.007001914549618959, 0.02641383744776249, -0.01753203198313713, -0.0038006501272320747, 0.017436673864722252, 0.005142456851899624, 0.019207587465643883, -0.017995193600654602, 0.042529139667749405, -0.007315230090171099, -0.023226195946335793, -0.010904733091592789, -0.005881472025066614, -0.0052991146221756935, 0.03291172534227371, 0.004733784589916468, -0.006194787565618753, 0.01706887036561966, -0.023335175588726997, 0.0076217339374125, 0.028879491612315178, -0.012893603183329105, -0.01612892374396324, 0.016932645812630653, 0.004468148108571768, -0.01390847284346819, 0.003981146961450577, -0.0005325507954694331, 0.008084896020591259, 0.013234163634479046, 0.0057180034928023815, -0.025392157956957817, -0.027571741491556168, -0.02236798405647278, -0.0073629082180559635, -0.020161155611276627, -0.01377905998378992, -0.027735210955142975, -0.02849806472659111, -0.03133152425289154, -0.005435338243842125, -0.019766105338931084, 0.014439745806157589, -0.0217141080647707, -0.03849690780043602, -0.02559649385511875, 0.017354940995573997, 0.015720251947641373, 0.01830850914120674, 0.014208164997398853, -0.0058882832527160645, 0.02152339555323124, 0.003926657605916262, -7.971233571879566e-05, -0.01750478707253933, 0.009883052669465542, -0.00880007166415453, -0.0047167567536234856, 0.008554868400096893, -0.01610167883336544, 0.0021710703149437904, 0.01152455247938633, 0.014753061346709728, -0.0025116303004324436, 0.008793260902166367, 0.021564261987805367, 0.015597650781273842, 0.026481950655579567, 0.007076838053762913, 0.012178427539765835, -0.0018815943039953709, 0.011940035037696362, -0.039096295833587646, 0.02186395600438118, -0.008452700451016426, -0.003199561731889844, 0.0025286583695560694, 0.015284335240721703, 0.026904243975877762, 0.0007973362226039171, -0.01862182281911373, -0.023621244356036186, -0.035799670964479446, 0.011667587794363499, 0.010502872057259083, -0.012008147314190865, -0.008772826753556728, 0.005864444188773632, -0.022231759503483772, -0.0014933558413758874, 0.018008815124630928, 0.00967190507799387, -0.006746494676917791, -0.03214886784553528, -0.012437253259122372, 0.024629302322864532, 0.02251783013343811, 0.00350776850245893, 0.027571741491556168, 0.012110315263271332, -0.0015452912775799632, -0.02672715298831463, 0.006654543336480856, -0.0013051964342594147, 0.0089703518897295, 0.0031859392765909433, -0.003712104633450508, -0.026468327268958092, -7.646637095604092e-05, -0.004866603296250105, 0.003569069318473339, -0.015393313951790333, -0.004028825554996729, -0.04593474045395851, 0.011728888377547264, 0.018049683421850204, -0.010066955350339413, -0.012321462854743004, -0.023376042023301125, -0.015475048683583736, 0.01555678341537714, 0.001550399698317051, 0.04089445248246193, 0.004556693602353334, -0.018880648538470268, -0.009610604494810104, -0.02513333223760128, -0.03544548898935318, -0.026740774512290955, -0.0035418246407061815, 0.03141326084733009, 0.056015316396951675, 0.024207009002566338, 0.01728682778775692, -0.010223613120615482, 0.005976828746497631, 0.01721871644258499, -0.009848996996879578, -0.00688952999189496, 0.008105329237878323, -0.005643079988658428, 0.01600632257759571, -0.015529538504779339, 0.020815029740333557, 0.0029781977646052837, -0.003933468833565712, 0.005707786418497562, -0.00021497852867469192, -0.001995682017877698, -0.012471308931708336, -0.002004195936024189, -0.02249058522284031, -0.03326590731739998, 0.00048146676272153854, 0.02467017062008381, 0.023226195946335793, 0.008009972050786018, -0.03498232737183571, -0.010407514870166779, 0.0271630696952343, -0.0065251304768025875, 0.046888306736946106, -0.0027074525132775307, 0.01862182281911373, -0.01042113732546568, -0.003114421619102359, 0.026577306911349297, -0.00021125366038177162, -0.04334648326039314, -0.0033034326042979956, -0.0402405746281147, -0.0017675067065283656, 0.016864534467458725, 0.01513448916375637, 0.00405607046559453, 0.006453612819314003, 0.015284335240721703, 0.012198860757052898, 0.011122691445052624, -0.00939264614135027, -0.03931425139307976, 0.00848675612360239, -0.022817524150013924, -0.010536927729845047, -0.03171295300126076, -0.018117794767022133, 0.01760014332830906, -0.010223613120615482, -0.015475048683583736, 0.0010012465063482523, 0.014984642155468464, -0.005551128648221493, -0.026046032086014748, 0.0029390333220362663, 0.0024980080779641867, 0.02803490310907364, 0.022259004414081573, 0.03086836263537407, 0.020883142948150635, 0.008936296217143536, -0.01968437060713768, -0.02738102898001671, -0.003414114471524954, -0.01205582544207573, -0.00907933060079813, 0.04326475039124489, -0.03484610468149185, -0.034873347729444504, 0.009256422519683838, -0.0008582113077864051, -0.0004001580527983606, -0.03024173341691494, 0.03996812924742699, 0.02140079438686371, 0.007138138636946678, -0.022095536813139915, -0.007097271736711264, -0.004808708094060421, 0.01619703695178032, -0.02706771343946457, 0.027462761849164963, 0.004740595817565918, 0.009385835379362106, -0.012573476880788803, 0.028116637840867043, -0.0041548325680196285, 0.02457481436431408, -0.02164599671959877, 0.009304100647568703, 0.0013426579535007477, 0.000817344116512686, -0.005585184786468744, -0.011388327926397324, -0.009195121005177498, -0.007853315211832523, -0.011129502207040787, 0.016374127939343452, 0.023757468909025192, 0.02298099175095558, -0.009508436545729637, -0.021101100370287895, -0.03092285245656967, 0.0336473323404789, 0.006004073657095432, 0.011919601820409298, 0.001067655743099749, 0.00038376860902644694, 0.020488092675805092, -0.03411049395799637, -0.022722166031599045, 0.01434438955038786, 0.0004938120837323368, -0.00031991361174732447, 0.008759204298257828, 0.0005423419061116874, -0.006065374705940485, -0.0015597650781273842, 0.009556114673614502, 0.0021370144095271826, 0.0034941460471600294, -0.005125429015606642, 0.005697569809854031, -0.03353835269808769, -0.009583359584212303, 0.006021101959049702, -0.001131510827690363, 0.011776566505432129, 0.011599475517868996, -0.0022323711309581995, 0.0044919871725142, 0.02603241056203842, -0.016142547130584717, 0.0055170729756355286, 0.021373549476265907, 0.007104082498699427, -0.04596198350191116, 0.02868877910077572, -0.006273115985095501, -0.011626720428466797, 0.01205582544207573, 0.018989628180861473, -0.03342937305569649, -0.012491743080317974, 0.00788055919110775, -0.002266427269205451, 0.0038347062654793262, 0.010748075321316719, -0.0037257270887494087, 0.004747407045215368, 0.004124182276427746, -0.014684949070215225, -0.01435801200568676, -0.009978409856557846, -0.019956819713115692, -0.0001974184124264866, 0.021809466183185577, -0.007553622126579285, 0.005094778258353472, 0.006634109653532505, 0.013690514490008354, -0.0033357858192175627, -0.029696837067604065, -0.010032898746430874, -0.017886213958263397, -0.01018274575471878, -0.01315924059599638, -0.004907470196485519, 0.0037257270887494087, -0.03615385666489601, -0.015488671138882637, 0.02501073107123375, 0.006589836906641722, 0.005707786418497562, 0.026304857805371284, -0.00036716629983857274, 0.00940626859664917, 0.012743757106363773, -0.005173107143491507, -0.03239407390356064, -0.024057162925601006, -0.004457931034266949, -0.03520028665661812, -0.0034021949395537376, -0.020828653126955032, 0.032039888203144073, 0.010734452866017818, -0.020883142948150635, -0.022313494235277176, -0.01228740718215704, -0.019670749083161354, -0.015297957696020603, -0.03846966475248337, 0.03661701828241348, 0.02024289034307003, 0.017736367881298065, 0.00839139986783266, 0.03149499371647835, -0.006310577969998121, 0.02830735221505165, -0.009726394899189472, -0.02610052190721035, -0.0071449498645961285, -0.01085705403238535, 0.02127819135785103, -0.043400973081588745, -0.05157441273331642, 0.005135645624250174, 0.01510724425315857, -0.0157883632928133, 0.009767262265086174, 0.017341317608952522, -0.006358256097882986, -0.027735210955142975, -0.009631038643419743, 0.0012115424033254385, 0.005486422684043646, 0.007110893726348877, 0.007975916378200054, -0.029642347246408463, -0.0048121134750545025, 0.021073855459690094, -0.00687590753659606, -0.018444731831550598, 0.00568394735455513, 0.018240395933389664, 0.005036883056163788, -0.014984642155468464, -0.02825286239385605, -0.011585853062570095, -0.01765463314950466, -0.025582870468497276, -0.0066885994747281075, -0.012157994322478771, -0.0038755733985453844, 0.03462814539670944, -0.0021046611946076155, -0.014998264610767365, -0.0038347062654793262, 0.015652140602469444, 0.016019944101572037, -0.00035673665115609765, 0.012777812778949738, -0.017613766714930534, -0.001131510827690363, -0.013990206643939018, 0.006215220782905817, -0.004771246574819088, -0.016769176349043846, -0.03549997881054878, 0.005901905708014965, -0.026263991370797157, 0.007158572319895029, 0.007921426557004452, -0.02298099175095558, 0.007110893726348877, -0.0006304617854766548, 0.0010685072047635913, -0.007553622126579285, -0.017586521804332733, 0.010802565142512321, -0.026209501549601555, -0.00223918235860765, 0.0022238572128117085, 0.0009927325882017612, -0.007628545165061951, 0.008779638446867466, 0.02482001669704914, -0.014943774789571762, 0.008514001034200191, 0.19420096278190613, 0.006603459361940622, 0.0015657248441129923, 0.04421831667423248, -0.013356765732169151, 0.001934381085447967, -0.011340649798512459, 0.02155064046382904, -0.010393892414867878, 0.012008147314190865, 0.036453548818826675, 0.014753061346709728, -0.02871602401137352, -0.003237023251131177, 0.0008735365117900074, -0.011497307568788528, -0.018172284588217735, -0.029070205986499786, -0.0008164927130565047, 0.0024333016481250525, 0.013990206643939018, -0.003145072143524885, -0.0031859392765909433, -0.00999884307384491, 0.013302275910973549, 0.013499800115823746, 0.0033357858192175627, 0.002760239178314805, 0.007417398039251566, 0.0217413529753685, -0.02566460520029068, -0.023008236661553383, 0.02501073107123375, -0.010877488180994987, -0.021945690736174583, -0.003414114471524954, 0.0026750992983579636, -0.012321462854743004, 0.010822998359799385, 0.014112808741629124, -0.014208164997398853, -0.02678164280951023, -0.0015325202839449048, -0.01803606003522873, 0.010284913703799248, 0.005445555318146944, 0.013492989353835583, -0.0023107000160962343, 0.009678716771304607, 0.050348397344350815, 0.0036337757483124733, -0.0032421317882835865, -0.012171615846455097, 0.007001914549618959, 0.00552047835662961, -0.025487514212727547, 0.0015452912775799632, 0.008227931335568428, -0.010972845368087292, 0.0152298454195261, -0.020787784829735756, -0.0025695255026221275, -0.0007207102025859058, 0.009413080289959908, -0.028225617483258247, 0.006034723948687315, -0.01830850914120674, 0.030514180660247803, 0.0326937660574913, 0.006988292094320059, -0.024683792144060135, -0.011865111999213696, -0.03936874121427536, -0.004253595136106014, -0.017736367881298065, -0.020379113033413887, 0.011449629440903664, 0.03135877102613449, 0.032094378024339676, 0.017245961353182793, 0.005697569809854031, -0.009113387204706669, -0.014208164997398853, -0.0011306593660265207, -0.005976828746497631, -0.015257090330123901, 0.02031100168824196, -0.018362998962402344, -0.002743211342021823, -0.005878066644072533, -0.010707207955420017, 0.001976951025426388, -0.012757379561662674, -0.005714597646147013, -0.01631963811814785, -0.01152455247938633, 0.009644661098718643, 0.0119740916416049, -0.0056873527355492115, -0.012621155939996243, -0.03571793809533119, 0.0381154827773571, 0.011149936355650425, 0.0244794562458992, -0.01300258282572031, -0.005391065496951342, -0.0025882564950734377, 0.014848418533802032, -0.0069440193474292755, 0.011034145951271057, -0.008289231918752193, -0.032121624797582626, 0.015992699190974236, 0.01136789470911026, -0.0012021770235151052, 0.03898731619119644, 0.005540912039577961, -0.014085563831031322, -0.019534524530172348, 0.01591096632182598, 0.01091835554689169, -0.014971019700169563, -0.00328640453517437, -0.0015699818031862378, -0.02634572610259056, -0.01555678341537714, -0.01597907766699791, 0.004022014327347279, -0.019193964079022408, -0.017232337966561317, -0.017995193600654602, -0.008418644778430462, 0.017232337966561317, -0.018145039677619934, -0.02033824659883976, -0.0034600901417434216, -0.005101589486002922, -0.02189120091497898, -0.006000668276101351, 0.0020723079796880484, 0.00788055919110775, 0.01016912329941988, 0.014289899729192257, -0.014548725448548794, 0.008609358221292496, -0.00915425457060337, 0.0072130621410906315, 0.016210658475756645, -0.023348797112703323, -0.02307634986937046, 0.007594489026814699, 0.03830619528889656, -0.0069746701046824455, 0.005772492848336697, 0.024315988644957542, -0.01281868014484644, -0.029260920360684395, -0.023716602474451065, 0.014834796078503132, 0.001620214432477951, -0.029887549579143524, -0.0087047154083848, 0.04914962872862816, 0.012001336552202702, -0.015801986679434776, 0.00202462961897254, -0.17316797375679016, 0.017790857702493668, 0.009018030017614365, -0.002719372045248747, -0.00024882168509066105, 0.024860883131623268, 0.029233675450086594, -0.00039845527498982847, -0.025310423225164413, -0.017899835482239723, -0.004556693602353334, 0.0157883632928133, -0.030377956107258797, -0.009876241907477379, -0.017586521804332733, -0.009174687787890434, -0.0015665761893615127, 0.013227352872490883, 0.054489608854055405, 0.007104082498699427, 0.029206430539488792, -0.016796421259641647, 0.016374127939343452, -0.01153817493468523, 0.010972845368087292, 0.01595183275640011, -0.0022204515989869833, 0.004532854538410902, 0.01077532023191452, -0.023403286933898926, 0.005244624800980091, 0.003376652952283621, 0.018976006656885147, 0.0024826826993376017, 0.01653759554028511, 0.0119740916416049, 0.014289899729192257, -0.001930975471623242, -0.017981570214033127, 0.012328273616731167, 0.03669875115156174, 0.005861038342118263, 0.012696078978478909, -0.019234832376241684, 0.026263991370797157, 0.024424966424703598, 0.017245961353182793, -0.02619588002562523, -0.026400215923786163, -0.009215555153787136, 0.012689267285168171, -0.036644261330366135, -0.012505365535616875, -0.0013358468422666192, 0.005149268079549074, 0.0054693943820893764, 0.007519565988332033, 0.019098607823252678, -0.009195121005177498, -0.029451632872223854, 5.7522720453562215e-05, 0.002341350307688117, -0.023743847385048866, -0.004440903197973967, -0.005159484688192606, -0.017354940995573997, -0.025296799838542938, 0.04239291697740555, -0.002135311486199498, 0.010659529827535152, -0.0012847627513110638, 0.0023141056299209595, -0.0059563955292105675, 0.011953657492995262, 0.006477452348917723, -0.008078084327280521, -0.02956061251461506, 0.012668834067881107, 0.046452391892671585, -0.0013596860226243734, -0.006739683449268341, 0.005707786418497562, 0.005758870393037796, 0.023525888100266457, -0.031249791383743286, -0.0035554468631744385, -0.003746160538867116, 0.004583938512951136, -0.01769549958407879, -0.0018901083385571837, 0.013819927349686623, -0.016551218926906586, 0.009120197966694832, -0.01760014332830906, -0.01784534752368927, 0.019044118002057076, 0.016483105719089508, 0.0001009973420877941, 0.013363576494157314, -0.02099212259054184, 0.011408762075006962, 0.0019394895061850548, -0.034873347729444504, 0.0004220816190354526, 0.027544496580958366, 0.018431110307574272, 0.009031652472913265, -0.011265726760029793, 0.05116574093699455, -0.019071362912654877, -0.02912469580769539, 0.021128345280885696, 0.0152162229642272, -0.005033477675169706, -0.0035452302545309067, 0.034273963421583176, -0.009460758417844772, -0.02055620402097702, 0.0036065310705453157, -0.021169213578104973, 0.06010203808546066, -0.03964119032025337, -0.02828010730445385, -0.0027091552037745714, 0.000698148098308593, -0.011994524858891964, -0.11551796644926071, -0.02161875180900097, 0.018240395933389664, -0.0015452912775799632, -0.024002673104405403, 0.006034723948687315, -0.011340649798512459, 0.012375952675938606, 0.0067941732704639435, 0.011374705471098423, -0.009883052669465542, -0.007499132305383682, -0.004931309726089239, 0.0007888222462497652, 0.01049606129527092, -0.011769755743443966, -0.006259493995457888, -0.016428617760539055, 0.005615835078060627, 0.030159998685121536, 0.018894271925091743, -0.004062881227582693, 0.011401950381696224, 0.013111562468111515, -0.010189556516706944, -0.026672663167119026, -0.03740711510181427, 0.025364913046360016, 0.024533946067094803, -0.0016500134952366352, 0.027299294248223305, -0.00201270985417068, 0.019575390964746475, -0.029233675450086594, -0.012362330220639706, -0.006715844385325909, -0.011599475517868996, 0.002332836389541626, 0.025460269302129745, -0.01155179738998413, 0.004733784589916468, 0.005769087467342615, -0.0030599320307374, -0.02852530963718891, -0.005745247937738895, 0.011436006985604763, 0.010107822716236115, 0.04803258925676346, -0.002385623287409544, -0.005833793897181749, -0.012893603183329105, -0.0005223339539952576, -0.028361842036247253, -0.012777812778949738, 0.03356559947133064, 0.004165049642324448, 0.010223613120615482, 0.01478030625730753, -0.023975428193807602, -0.00982856284826994, -0.017123360186815262, -0.010400704108178616, -0.025610115379095078, 0.03133152425289154, 0.01987508498132229, 0.02101936563849449, -0.0022562104277312756, 0.038387928158044815, -0.0032591596245765686, 0.007642167620360851, -0.015011887066066265, -0.004267217591404915, -0.014753061346709728, 0.014548725448548794, -0.03348386287689209, 0.01360877975821495, -0.006790767423808575, -0.01513448916375637, 0.00290838279761374, 0.01716422662138939, -0.016919024288654327, -0.0006521724862977862, -0.0034975516609847546, -0.019520903006196022, -0.0014507857849821448, -0.008057651109993458, 0.003957307897508144, -0.012682456523180008, 0.0027908897027373314, -0.045362599194049835, 0.006841851398348808, 0.013302275910973549, 0.005666919052600861, 0.013213730417191982, -0.02014753222465515, 0.013206918723881245, -0.00822111964225769, -0.00939264614135027, 0.01266202237457037, -0.011667587794363499, -0.018390242010354996, 0.0031978588085621595, -0.05503450334072113, 0.005067533813416958, 0.013213730417191982, 0.016619330272078514, 0.02457481436431408, -0.04291056841611862, 0.0029679809231311083, 0.0002051874325843528, 0.0028572988230735064, -0.006072185933589935, -0.0157883632928133, 0.007975916378200054, -0.024588435888290405, 0.00276364479213953, -0.021319059655070305, -0.007151761092245579, 0.03179468587040901, 0.002603581640869379, 0.010897921398282051, -0.025433024391531944, 0.008806883357465267, 0.009624226950109005, 0.015393313951790333, 0.023430531844496727, -0.0069440193474292755, 0.012021769769489765, -0.010107822716236115, 0.0008203239995054901, -0.00031799793941900134, -0.012539421208202839, 0.016837289556860924, 0.0002881989348679781, 0.015066376887261868, 0.014739438891410828, 0.000756043300498277, -0.013867605477571487, -0.02370297908782959, 0.01048243883997202, 0.015515916049480438, 0.002373703522607684, 0.006603459361940622, -0.023471398279070854, 0.03639905899763107, -0.016646575182676315, -0.013431688770651817, -0.014221787452697754, -0.01830850914120674, -0.0173821859061718, 0.0020229266956448555, 0.031658463180065155, 0.03767956420779228, -0.004219538997858763, -0.03168570622801781, -0.03266651928424835, 0.0031603972893208265, -0.015311580151319504, 0.010135067626833916, 0.01588372141122818, 0.0013392524560913444, -0.0016857722075656056, 0.0543806292116642, -0.02276303432881832, -0.002324322471395135, -0.00847313366830349, 0.01716422662138939, -0.007444642949849367, -0.044463519006967545, 0.007546810898929834, 0.010053332895040512, -0.03160397335886955, -0.005591996014118195, -0.01634688302874565, 0.022776655852794647, 0.030541425570845604, 0.02411165088415146, 0.00013899107580073178, -0.03479161486029625, -0.01859457977116108, -0.0013699028640985489, 0.014712193980813026, 0.012852736748754978, -0.011299782432615757, -0.005503450520336628, 0.01987508498132229, 0.017041625455021858, 0.020065797492861748, -0.00862979143857956, 0.0006015141843818128, 0.014630460180342197, 0.009038464166224003, -0.02644108235836029, -0.0086910929530859, 0.0021676647011190653, 0.02027013525366783, -0.00733566377311945, 0.022354362532496452, 0.004004986025393009, -0.004972176626324654, 0.028552554547786713, 0.030159998685121536, -0.00260528433136642, 0.015611273236572742, -0.017790857702493668, -0.00795548316091299, -0.013622402213513851, 0.0013647944433614612, -0.013097940012812614, -0.02803490310907364, 0.028797758743166924, 0.008541245944797993, -0.016905400902032852, -0.038633134216070175, -0.009617416188120842, 0.016251524910330772, 0.00012792287452612072, 0.009528870694339275, -0.006429773755371571, -0.01992957480251789, -0.030786627903580666, 0.02432961016893387, 0.0058133602142333984, 0.018948761746287346, 0.01342487707734108, -0.016210658475756645, 0.03299345821142197, 0.009794507175683975, 0.008834127336740494, 0.001695989049039781, 0.017028002068400383, -0.010720830410718918, 0.002283455105498433, -0.01774998940527439, 0.01390847284346819, -0.006072185933589935, 4.759193870995659e-06, 0.0029390333220362663, 0.011762944050133228, 0.02074691839516163, -0.015434181317687035, 0.10173209756612778, 0.035145796835422516, -0.01918034255504608, 0.019943196326494217, 0.0012311246246099472, 0.019193964079022408, 0.033620089292526245, 0.017082491889595985, 0.018008815124630928, -0.002188098384067416, 0.016156168654561043, -0.0016823667101562023, -0.013322709128260612, -0.010162311606109142, -0.026114145293831825, 0.004342140629887581, 0.004062881227582693, 0.011640342883765697, 0.011449629440903664, 0.005728220101445913, 0.009957975707948208, -0.015352447517216206, 0.0006142851780168712, -0.009120197966694832, -0.024547569453716278, -0.008929484523832798, 0.016701065003871918, 0.028416329994797707, -0.013356765732169151, -0.02472466044127941, 0.02501073107123375, -0.003196156118065119, -0.018335754051804543, -0.006491074804216623, -0.019262077286839485, 0.01557040587067604, -0.028225617483258247, -0.016360504552721977, 0.014984642155468464, 0.01871718093752861, 0.01685091108083725, 0.026590928435325623, -0.018431110307574272, -0.01912585273385048, 0.020924009382724762, 0.0011349163250997663, 0.0029475472401827574, -0.03509130701422691, -0.017790857702493668], "0a685b2c-0702-4790-a271-687cd0bdfe6f": [-0.010951236821711063, -0.009409391321241856, -0.004952492192387581, -0.048292823135852814, 0.01583145558834076, 0.033204756677150726, -0.011701510287821293, -0.022370534017682076, -0.006594145204871893, -0.02316899038851261, -0.0019100995268672705, 0.05308355763554573, -0.014785202220082283, -0.01596911996603012, -0.02018166333436966, -0.004549822770059109, 0.004863010253757238, 0.0006917657447047532, 0.004945608787238598, -0.012004372663795948, -0.02060842514038086, 0.0031215499620884657, -0.01408311165869236, 0.023719649761915207, -0.021489480510354042, 0.0004934423486702144, 0.01675380952656269, -0.0160792525857687, -0.0034140876960009336, 0.010648374445736408, 0.02067725732922554, -0.00800521019846201, -0.034030746668577194, -0.005878288298845291, -0.01690524071455002, -0.0037995493039488792, 0.006755901500582695, 0.006958956830203533, 0.02751919999718666, -0.019052812829613686, 0.011082018725574017, 0.013160757720470428, -0.006841941736638546, -0.01857098564505577, -0.00960900541394949, 0.026087485253810883, 0.009629654698073864, -0.012382951565086842, -0.010194080881774426, 0.0019169826991856098, 0.017855128273367882, -0.00018348140292800963, -0.023127691820263863, 0.009856801480054855, 0.022976260632276535, -0.011260982602834702, 0.006163942627608776, -0.004980025347322226, 0.013002443127334118, -0.01504676602780819, 0.01982373557984829, 0.016712510958313942, -0.005878288298845291, -0.014427273534238338, -0.012906077317893505, -0.03683910891413689, -0.012458667159080505, 0.005355161614716053, -0.0016433738637715578, -4.708029518951662e-05, 0.030065998435020447, 0.027147503569722176, 0.031002119183540344, -0.008672883734107018, -0.0035792854614555836, -0.014358441345393658, -0.023416787385940552, -0.024449273943901062, 0.012968027032911777, 0.006126084830611944, 0.01493663340806961, -0.007427017670124769, -0.0169740729033947, -0.012906077317893505, 0.01932814158499241, 0.011481246910989285, 0.01265828125178814, 0.014523639343678951, -0.026142550632357597, -0.026679443195462227, 0.005510034970939159, 0.005320745520293713, 0.02502746507525444, 0.004198777489364147, 0.0055444510653615, -0.0023110483307391405, 0.02716127038002014, 0.027464132755994797, -0.014124411158263683, -0.008115341886878014, -0.009815501980483532, 0.004859568551182747, -0.03276422992348671, -0.016891473904252052, -0.00418156897649169, -0.006167384330183268, 0.012968027032911777, -0.014193243347108364, 0.015776390209794044, 0.009946283884346485, -0.009313025511801243, 0.044906266033649445, -0.00496625853702426, -0.012472433038055897, -0.000292107550194487, -0.010813572444021702, 0.02720257081091404, -0.04537432640790939, -0.02756049856543541, -0.017882661893963814, 0.006129526533186436, 0.01112331822514534, 0.04173997417092323, -0.020594658330082893, 0.006446155719459057, 0.01244490034878254, 0.017387067899107933, -0.009657187387347221, 0.01219022087752819, -0.008067158982157707, 0.004990349989384413, -0.010634607635438442, 0.028221290558576584, 0.008383788168430328, -0.007867544889450073, 0.009023929946124554, -0.022618331015110016, 0.00795014388859272, -0.0066526527516543865, -0.02381601557135582, 0.018887614831328392, 0.02655554562807083, 0.004952492192387581, -0.01654731296002865, -0.019631003960967064, 0.03364528343081474, 0.007936377078294754, 0.008294305764138699, 0.014661304652690887, 0.00039557128911837935, 0.0021475714165717363, -0.018515920266509056, -0.022769762203097343, -0.010049532167613506, -0.018336955457925797, 0.015693791210651398, 0.013986746780574322, 0.014179477468132973, 0.0012544707860797644, 0.006308490876108408, 0.005744065158069134, 0.03554505854845047, 0.00017240368470083922, 0.0025743322912603617, 0.008693533949553967, 0.03562765568494797, 0.01690524071455002, -0.02641788125038147, -0.0134567366912961, -0.0208562221378088, 0.015817688778042793, 0.047769695520401, -0.011267866007983685, 0.014110645279288292, 0.006848825141787529, 0.006910774391144514, -0.007020906079560518, 0.0034485040232539177, -0.011343581601977348, -0.013814665377140045, 0.019768670201301575, -0.002023672917857766, 0.007963910698890686, 0.021310515701770782, -0.013105691410601139, -0.01946580596268177, 0.01395921315997839, 0.015253262594342232, -0.006377323064953089, -0.004955933894962072, 0.01917671039700508, 0.005303537473082542, -0.014964167028665543, -0.011233449913561344, -0.6277515888214111, -0.009436924010515213, 0.005300095770508051, -0.017373301088809967, 0.019259309396147728, 0.0004413878486957401, 0.00927172601222992, -0.006807525642216206, -0.024187710136175156, 0.014441040344536304, -0.008211706764996052, -0.00594367878511548, 0.008266773074865341, -0.016024185344576836, -0.023224055767059326, 0.00024543056497350335, -0.0014747345121577382, -0.02177857607603073, -0.027643097564578056, 0.015748856589198112, -0.03364528343081474, 0.021255450323224068, -0.0010798084549605846, 0.015996653586626053, -0.015666257590055466, -0.02948780544102192, 0.001805130043067038, 0.005207172129303217, 0.011260982602834702, 0.02202637307345867, -0.03408581018447876, 0.007537149358540773, -0.0016244449652731419, -0.01850215345621109, 0.03805055841803551, -0.013346605002880096, -0.006225891876965761, 0.029955865815281868, 0.005176197737455368, 0.019438274204730988, -0.013656350784003735, -0.021448180079460144, 0.015225729905068874, 0.02310015819966793, -0.0204294603317976, -0.004095528740435839, 0.034719068557024, -0.002918494399636984, 0.00015960515884216875, -0.004477548412978649, -0.0008810549043118954, -0.00980173610150814, -0.010634607635438442, 0.006883241236209869, -0.0011598261771723628, -0.0022955609019845724, 0.021117784082889557, -0.029074812307953835, 0.013745833188295364, -0.022632097825407982, -0.010834221728146076, 0.012396717444062233, 0.006473688408732414, -0.048292823135852814, -0.039977867156267166, 0.005427435971796513, -0.01572132296860218, -0.011295398697257042, -0.01335348840802908, -0.01989256776869297, 0.030616657808423042, -0.012018139474093914, 0.014509872533380985, -0.010145897977054119, 0.006790317595005035, 0.015666257590055466, 0.03805055841803551, 0.005503151565790176, 0.0031989864073693752, 0.01187359169125557, 0.0026741393376141787, -0.004783852957189083, -0.020594658330082893, -0.011467480100691319, 0.031497713178396225, 0.01263763103634119, -0.009237309917807579, -0.010524475947022438, 0.00848703645169735, 0.012403600849211216, -0.014427273534238338, 0.058480020612478256, -0.008287422358989716, -0.030286261811852455, -0.017882661893963814, 0.041547246277332306, -0.013105691410601139, 0.004876776598393917, -0.009030812419950962, -0.024339141324162483, -0.04410780966281891, -0.018667351454496384, 0.01942450739443302, 0.01285101193934679, 0.017414601519703865, 0.0208149217069149, -0.0037341583520174026, -0.017070438712835312, 0.02552305907011032, -0.03158031031489372, -0.007963910698890686, -0.013050626032054424, -0.00943004060536623, -0.027354001998901367, 0.0075990986078977585, -0.022177804261446, -0.0008036184590309858, 0.003864940023049712, 0.0025536825414747, -0.006921099033206701, 0.00016433738346677274, -0.010648374445736408, 0.02327912300825119, 0.004873334895819426, 0.013677000999450684, 0.02338925376534462, 0.003166290931403637, -0.027188804000616074, 0.002176825189962983, -0.00914782751351595, -0.01729070208966732, -0.026624377816915512, 0.0025949820410460234, -0.01157072838395834, 0.035352326929569244, 0.006270633079111576, 0.038491085171699524, 0.0006986489752307534, -0.0004912913427688181, -0.012265936471521854, 0.005916146095842123, 0.009223543107509613, 0.0024091345258057117, -0.000930098001845181, 0.0010238821851089597, -0.03136004880070686, -0.005978095345199108, 0.0014162269653752446, 0.00023015838814899325, 0.0057199737057089806, -0.029405206441879272, 0.00015401252312585711, 0.01267204713076353, 0.02610125206410885, -0.01715303771197796, -0.004067995585501194, -0.003111225087195635, -0.03458140417933464, -0.00409897044301033, -0.04253843054175377, -0.03604065254330635, 0.014028046280145645, -0.023540684953331947, -0.0033624633215367794, -0.016561077907681465, -0.024628236889839172, 0.01729070208966732, 0.014220776967704296, -0.0063050491735339165, -0.02385731413960457, 0.013683883473277092, -0.0013241635169833899, -0.006948632188141346, 0.01729070208966732, -0.0020081857219338417, 0.020911287516355515, -0.02103518508374691, 0.0033486969769001007, -0.011316048912703991, -0.008266773074865341, 0.007647281046956778, 0.02491733431816101, -0.0195346400141716, -0.029240010306239128, 0.029350141063332558, 0.017731230705976486, 0.008920680731534958, 0.020057765766978264, -0.04620031639933586, 0.030644191429018974, -0.03312215581536293, 0.005355161614716053, -0.02074608951807022, -0.002610469236969948, -0.03094705380499363, 0.015267029404640198, -0.02442174032330513, 0.02513759769499302, -0.003950980491936207, 0.015253262594342232, 0.013986746780574322, 0.015211963094770908, -0.007378834765404463, -0.003298793453723192, -0.004074878990650177, -0.01782759465277195, 0.0030768089927732944, -0.024146411567926407, 0.008844965137541294, -0.018736183643341064, 0.006108876783400774, -0.00855586864054203, -0.007440784014761448, -0.000884496548678726, -0.012382951565086842, 0.030038464814424515, 0.03714197129011154, -0.0003437318664509803, -0.006428947672247887, -0.0008087808382697403, -0.00184298784006387, -0.009870568290352821, 0.02581215463578701, -0.01861228421330452, 0.013491152785718441, 0.0252064298838377, -0.007220520172268152, 0.03133251518011093, 0.005031649488955736, -0.026583077386021614, 0.0024211802519857883, 0.008865615352988243, 0.005041974131017923, 0.01094435341656208, 0.04688864201307297, -0.0029064486734569073, 0.019520873203873634, -0.008308072574436665, 0.006435830611735582, 0.005895496346056461, 0.002472804393619299, -0.004092087037861347, 0.019796201959252357, -0.04149217903614044, 0.015459760092198849, 0.010730973444879055, 0.008810549043118954, 0.009505756199359894, -0.01438597496598959, 0.001232100185006857, 0.00753026595339179, 0.003018301445990801, -0.008796782232820988, -0.009739786386489868, 0.02688594162464142, -0.025467993691563606, 0.013085042126476765, 0.01215580478310585, 0.022095205262303352, 0.03582038730382919, 0.01975490339100361, -0.004160919226706028, 0.00021574659331236035, -0.006057252641767263, 0.037802763283252716, -0.0234993863850832, -5.8991528931073844e-05, -0.004529173020273447, -0.009299258701503277, -0.015349628403782845, -0.010854871943593025, -0.029074812307953835, 0.006848825141787529, -0.005379253067076206, -0.007661047857254744, -0.010173430666327477, -0.007296235766261816, 0.022755995392799377, -0.0022938402835279703, 0.015776390209794044, -0.01096500363200903, -0.035847920924425125, 0.03491180017590523, 0.0009894659742712975, 0.003785782726481557, -0.012561915442347527, -0.015184430405497551, 0.01278217975050211, 0.0052587962709367275, 0.017676163464784622, 0.008321838453412056, -0.010868637822568417, -0.011653327383100986, 0.009829268790781498, 0.018832547590136528, 0.00852145254611969, 0.03615078330039978, -0.02296249382197857, -0.008879381231963634, 0.027904661372303963, 0.012954260222613811, 0.008335605263710022, -0.02025049552321434, -0.04573225602507591, 0.03901421278715134, -0.022411834448575974, -0.02399498037993908, -0.03639858216047287, -0.00311982911080122, -0.026445413008332253, 0.008094691671431065, 0.003081971313804388, -0.03408581018447876, -0.0008036184590309858, -0.012596331536769867, 0.015032999217510223, -0.007096621673554182, 0.023045092821121216, 0.0029408650007098913, 0.024903567507863045, -0.012499966658651829, -0.020236730575561523, -0.004408716224133968, 0.03273669630289078, 0.08127731084823608, 0.010345512069761753, -0.008879381231963634, 0.018901381641626358, -0.019094111397862434, -0.013931680470705032, -0.013745833188295364, -0.028083624318242073, 0.04837542027235031, 0.02655554562807083, -0.019245542585849762, 0.0047253454104065895, 0.018130457028746605, -0.006779992952942848, 0.014771436341106892, 0.01420701015740633, -0.010228496976196766, -0.028744416311383247, -0.0077987127006053925, -0.007296235766261816, -0.002324814675375819, -0.01206632237881422, 0.01596911996603012, 0.020525826141238213, 0.04146464541554451, 0.011329815723001957, 0.030368860810995102, 0.011130201630294323, 0.007454550359398127, -0.011701510287821293, -0.012162687256932259, 0.026899706572294235, 0.0005898077506572008, 0.02363705076277256, -0.04292389377951622, 0.03656378015875816, -0.005482501816004515, -0.014564938843250275, -0.005341395270079374, 0.008934447541832924, -0.004790735896676779, 0.01908034458756447, -0.002488291822373867, 0.012830361723899841, 0.018488386645913124, 0.0034811992663890123, 0.005709648597985506, 0.0321585051715374, -0.019011512398719788, -0.009326792322099209, 0.0212416835129261, 0.013270889408886433, -0.015280796214938164, 0.009134061634540558, 0.004033579491078854, -0.0017483433475717902, 0.018447086215019226, -0.017428366467356682, -0.024229010567069054, -0.02377471514046192, -0.03725210204720497, -0.001904937089420855, -0.012300352565944195, -0.01932814158499241, -0.011673977598547935, -0.024463040754199028, -0.03262656554579735, -0.018171757459640503, -0.03648117929697037, 0.011481246910989285, -0.029653003439307213, -0.03158031031489372, -0.0238848477602005, 0.01715303771197796, 0.012823478318750858, 0.018942680209875107, 0.0014265517238527536, -0.0029288192745298147, -0.008913797326385975, 0.009326792322099209, -0.008135991171002388, -0.016629911959171295, 0.011185267008841038, -0.021985072642564774, -0.009560822509229183, -0.016836408525705338, -0.020704790949821472, 0.002434946596622467, 0.011088902130723, 0.01654731296002865, -0.014399740844964981, -0.023058859631419182, 0.006824733689427376, 0.007716113701462746, 0.032681629061698914, -0.0013069554697722197, 0.002526149619370699, -0.011839175596833229, 0.028469085693359375, -0.033314887434244156, 0.017524732276797295, -0.024972399696707726, -0.0019462364725768566, -0.02516513131558895, 0.02731270156800747, 0.017235636711120605, -0.009202893823385239, -0.02495863288640976, -0.0009335395880043507, -0.011715277098119259, 0.014248309656977654, 0.013972979970276356, -0.004828593693673611, -0.015445993281900883, 0.004680604208260775, -0.009120294824242592, 0.020622191950678825, 0.021833641454577446, 0.024724602699279785, 0.0005140920984558761, -0.005847313441336155, -0.005730298347771168, 0.01899774558842182, 0.03273669630289078, 0.025123830884695053, 0.022370534017682076, 0.010896171443164349, -0.020759856328368187, -0.032929427921772, -0.010290445759892464, 0.014427273534238338, 0.003785782726481557, -0.021076485514640808, -0.018488386645913124, -0.02588098682463169, -0.008631585165858269, -0.0013207219308242202, 0.02071855589747429, -0.01789642684161663, 0.002997651696205139, -0.03433360904455185, 0.008094691671431065, 0.014730136841535568, -0.0071998704224824905, 0.002360951853916049, -0.026004886254668236, -0.0095539391040802, -0.0015702394302934408, 0.0028290122281759977, 0.032956961542367935, 0.0018928913632407784, -0.006270633079111576, -0.02316899038851261, -0.03719703480601311, -0.01568002440035343, -0.012059438973665237, -0.004222868476063013, 0.02435290813446045, 0.04267609491944313, 0.02099388651549816, 0.019231775775551796, 0.0005807735142298043, 0.024683304131031036, 0.014062462374567986, -0.005086715333163738, 0.009560822509229183, -0.009980699978768826, -0.01854345202445984, 0.023664584383368492, -0.014193243347108364, 0.005881730001419783, 0.00024048324848990887, 0.01322958990931511, -0.003111225087195635, -0.01380089856684208, 0.0051658726297318935, -0.0025278704706579447, -0.0016037952154874802, -0.020057765766978264, -0.026183851063251495, -0.010951236821711063, 0.030754322186112404, 0.018350722268223763, 0.01899774558842182, -0.033425021916627884, 0.004150594584643841, 0.026252683252096176, -0.006976165343075991, 0.03182810917496681, 0.017166804522275925, 0.016629911959171295, -0.011006303131580353, -7.684493903070688e-05, 0.02195754088461399, -0.006821292452514172, -0.011680861003696918, -0.01058642566204071, -0.03653624653816223, -0.00590926269069314, 0.03180057555437088, 0.024903567507863045, 0.00589205464348197, -0.0025381953455507755, 0.006666419096291065, 0.001485059387050569, 0.008301189169287682, -0.027505433186888695, -0.022480666637420654, 0.022232869639992714, -0.01751096546649933, -0.013009326532483101, -0.03656378015875816, -0.020622191950678825, 0.003582727164030075, -0.007537149358540773, -0.003254052484408021, -0.004494756460189819, 0.014964167028665543, -0.01084110513329506, -0.03749990090727806, 0.009299258701503277, 0.0017724346835166216, 0.014675070531666279, 0.026032419875264168, 0.02442174032330513, 0.017428366467356682, 0.020099064335227013, -0.02114531770348549, -0.022659631446003914, 0.015955353155732155, -0.014785202220082283, -0.0058197807520627975, 0.030891986563801765, -0.013491152785718441, -0.022439366206526756, 0.024628236889839172, -0.005881730001419783, -0.015858987346291542, -0.019548404961824417, 0.02231546863913536, 0.01106825191527605, 0.012231520377099514, -0.02926754206418991, -0.013986746780574322, -0.016781343147158623, 0.003517336444929242, -0.011061368510127068, 0.010903054848313332, 0.013677000999450684, -0.0034416206181049347, -0.007970793172717094, 0.04187764227390289, -0.009891217574477196, 0.020126597955822945, 0.004374300129711628, 0.019947633147239685, -0.016533546149730682, -0.011777225881814957, -0.017097972333431244, -0.015666257590055466, -0.009085878729820251, -0.007998326793313026, -0.015597425401210785, 0.022797295823693275, 0.008817432448267937, 0.028854547068476677, 0.017194336280226707, -0.012217753566801548, -0.021668443456292152, 0.030891986563801765, 0.009691603481769562, 0.009285492822527885, 0.009285492822527885, -0.0013276052195578814, -0.0001705753238638863, -0.027147503569722176, -0.018557218834757805, -0.008376904763281345, -0.013690766878426075, -0.017208103090524673, 0.002431505126878619, -0.0021923123858869076, -0.010242262855172157, 0.006931424140930176, 0.010703440755605698, -0.005984978284686804, -0.008301189169287682, 0.0001375572755932808, 0.0009559101308695972, -0.018529685214161873, -0.003071646438911557, -0.0071998704224824905, 0.0034708743914961815, -0.001568518579006195, 0.00380987417884171, 0.004174686037003994, -0.00017423204553779215, 0.02170974388718605, -0.016960306093096733, 0.020773623138666153, -0.005644258111715317, 0.01821305602788925, -0.04336442053318024, 0.02506876550614834, -0.01657484471797943, 3.051749627047684e-05, 0.023017559200525284, 0.0061054350808262825, -0.015432227402925491, -0.010978770442306995, 0.01504676602780819, 0.0037788995541632175, 0.008301189169287682, 0.020704790949821472, 0.0022680279798805714, 0.009402507916092873, 0.0007420994807034731, -0.01881878264248371, -0.014427273534238338, 0.013064391911029816, -0.017634864896535873, -0.011495012789964676, 0.03298449143767357, -0.0002744692610576749, 0.01178410928696394, 0.002077018143609166, 0.031387582421302795, -0.006408297922462225, -0.0416298434138298, -0.029790669679641724, -0.017428366467356682, -0.0010823897318914533, 0.007874428294599056, 0.008500803261995316, 0.004866451490670443, -0.039344608783721924, -0.015748856589198112, 0.020553359761834145, -0.008617818355560303, 0.020828688517212868, 0.03653624653816223, 0.011082018725574017, -0.019699836149811745, 0.006969281937927008, -0.008535219356417656, -0.03336995467543602, -0.03251643106341362, 0.006174267735332251, -0.042758695781230927, -0.011529429815709591, -0.015390927903354168, 0.024765903130173683, 0.008996396325528622, -0.026183851063251495, -0.029542872682213783, 0.0032867477275431156, -0.0204294603317976, -0.0026775808073580265, -0.028179990127682686, 0.023650817573070526, 0.0221365038305521, 0.024229010567069054, 0.004821710754185915, 0.01850215345621109, -0.01590028777718544, 0.04702630639076233, -0.034030746668577194, -0.02224663645029068, -0.003510453039780259, -0.011763460002839565, 0.014399740844964981, -0.0339481458067894, -0.03502193093299866, -0.012382951565086842, 0.001696718973107636, -0.009574588388204575, 0.015445993281900883, 0.020484525710344315, -0.0017707138322293758, -0.023788481950759888, -0.005334511864930391, -0.0041161784902215, 0.0002656501019373536, -0.0046117715537548065, 0.02025049552321434, -0.029240010306239128, -6.727292930008844e-05, 0.019162943586707115, -0.004584238864481449, -0.010366161353886127, -0.008397554978728294, 0.022040139883756638, -0.01612055115401745, -0.007420134264975786, -0.04022566229104996, -0.026748275384306908, -0.025550592690706253, -0.006618236657232046, -0.012052555568516254, -0.0006995094008743763, -0.009154710918664932, 0.023017559200525284, -0.004980025347322226, -0.020305562764406204, -0.019066577777266502, 0.015308328904211521, 0.0024297842755913734, 0.00016595065244473517, 0.0156524907797575, -0.03653624653816223, 0.0017010209849104285, -0.018488386645913124, 0.029047278687357903, -0.009457573294639587, -0.005503151565790176, -0.029212476685643196, -0.013890380971133709, -0.0400054007768631, -0.009326792322099209, 0.012713346630334854, -0.005830105394124985, 0.0024590380489826202, -0.009705370292067528, 0.00749584985896945, -0.00746143376454711, -0.005534125957638025, 0.01121280062943697, -0.024160176515579224, 0.002059810096397996, 0.01106825191527605, 0.010324861854314804, -0.009319908916950226, -0.00046720000682398677, 0.016203150153160095, -0.026610611006617546, 0.017139270901679993, 0.19889813661575317, -0.0029116112273186445, -0.000742959848139435, 0.0348016694188118, -0.01395921315997839, -0.005200288724154234, 0.007296235766261816, 0.021296748891472816, 0.009278609417378902, 0.010903054848313332, 0.01404869556427002, 0.009354325011372566, -0.012142037972807884, -0.004546381067484617, 0.012045672163367271, -0.007805595640093088, -0.030396394431591034, -0.03785782679915428, 0.014854035340249538, -0.0037169503048062325, -0.01903904601931572, 0.0034794784151017666, -0.021985072642564774, -0.010689673945307732, 0.021517012268304825, 0.03023119643330574, 0.003902797820046544, 0.0005041974363848567, 0.0186811164021492, 0.011240333318710327, -0.03810562565922737, -0.023251589387655258, 0.017428366467356682, -0.019052812829613686, -0.00836313795298338, 0.01272711344063282, 0.010139014571905136, -0.001723391585983336, 0.008562752045691013, 0.004976583644747734, 0.01675380952656269, -0.024394206702709198, -0.004295142833143473, -0.023760950192809105, 0.015583658590912819, 0.020732322707772255, 0.01511559821665287, -0.007179220672696829, 0.012135154567658901, 0.02888208068907261, 0.010565775446593761, -0.004511964973062277, 0.0011968235485255718, 0.013146990910172462, -0.02413264475762844, -0.020484525710344315, -0.01351180300116539, 0.00340892537496984, -0.01062084175646305, 0.02549552544951439, -0.023375486955046654, -0.0073926011100411415, -0.005282887723296881, 0.024036278948187828, -0.04485120251774788, 0.0005910983309149742, -0.01828189007937908, 0.04876088351011276, 0.015294562093913555, -0.007929493673145771, -0.02594982087612152, -0.012231520377099514, -0.030864454805850983, 0.012252169661223888, -0.001923865987919271, -0.02114531770348549, -0.0015891683287918568, 0.03697677329182625, 0.029818201437592506, 0.024435507133603096, 0.007840012200176716, -0.016134317964315414, -0.014289609156548977, 0.00512457313016057, -0.0030561592429876328, -0.03284682705998421, 0.016093017533421516, -0.021117784082889557, 0.009815501980483532, -0.006890124641358852, -0.011722160503268242, -0.004976583644747734, -0.010311095975339413, 0.017566032707691193, -0.0027877127286046743, -0.011508779600262642, -0.010903054848313332, 0.02168221026659012, 0.00019455912115518004, -0.0032970726024359465, -0.03408581018447876, 0.054239943623542786, 0.027257636189460754, 0.021916240453720093, -0.013222706504166126, -0.010827338322997093, -0.004615213256329298, 0.020883753895759583, -0.004863010253757238, -0.0020890638697892427, -0.02570202387869358, -0.023678351193666458, 0.008156641386449337, 0.012265936471521854, 0.030010933056473732, 0.032709162682294846, 0.01942450739443302, -0.018529685214161873, -0.004450015723705292, 0.0136701175943017, 0.02491733431816101, -0.02680334262549877, -0.004704695660620928, -0.0020081857219338417, 0.0016571403248235583, -0.03058912418782711, -0.001331046805717051, 0.014620005153119564, -0.0256331916898489, -0.028014792129397392, -0.0063669984228909016, -0.00490086805075407, 0.019727369770407677, -0.006769667845219374, -0.0074063679203391075, 0.0095539391040802, 0.015267029404640198, -0.030534058809280396, -0.002090784488245845, 0.016354581341147423, 0.00032136132358573377, 0.005251913331449032, 0.015322095714509487, 0.004467223770916462, 0.024518106132745743, 0.000661221391055733, 0.00022628656006418169, 0.003219636157155037, -0.017166804522275925, -0.03419594466686249, 0.0048113856464624405, 0.030065998435020447, -0.004140269476920366, 0.01935567520558834, 0.030176131054759026, -0.010655257850885391, -0.017332002520561218, -0.02170974388718605, 0.017070438712835312, -0.015404694713652134, -0.03964747115969658, -0.010104598477482796, 0.0495593398809433, 0.01401427946984768, -0.021227916702628136, -0.01188735757023096, -0.17544005811214447, 0.00873483344912529, -0.007378834765404463, 0.00993251707404852, -0.0014807572588324547, 0.023155223578214645, 0.015032999217510223, 0.005833547096699476, -0.010827338322997093, -0.019162943586707115, 0.007922611199319363, 0.012162687256932259, -0.03136004880070686, 0.0004676302196457982, 0.00015939005243126303, -0.015335861593484879, 0.015776390209794044, 0.014062462374567986, 0.04501640051603317, 0.00927172601222992, 0.03455387055873871, -0.014675070531666279, 0.013112574815750122, -0.029542872682213783, 0.0174008347094059, 0.010359277948737144, -0.00037191013689152896, 0.02841402031481266, 0.009381857700645924, -0.04160230979323387, 0.002698230557143688, 0.0013060950441285968, 0.014248309656977654, 0.02071855589747429, 0.020016465336084366, -0.005792247597128153, 0.016271982342004776, -0.0030337886419147253, -0.010476293042302132, 0.0071448045782744884, 0.03939967229962349, 0.008879381231963634, 0.01338790450245142, -0.020980119705200195, 0.036921706050634384, 0.00524847162887454, -0.002390205627307296, -0.014151944778859615, -0.02574332244694233, 0.0006091668619774282, 0.020236730575561523, -0.03045145981013775, -0.0011873590992763638, -0.011859824880957603, 0.006542521063238382, -0.018447086215019226, 0.00568555761128664, 0.02937767468392849, 0.0018102924805134535, -0.022577032446861267, -0.012775296345353127, -0.004546381067484617, -0.015101831406354904, 0.006704277358949184, -0.006129526533186436, -0.027354001998901367, -0.014275842346251011, 0.03628844767808914, 0.00025123832165263593, 0.010916820727288723, 0.010806689038872719, 0.013250240124762058, -0.016960306093096733, 0.023306654766201973, 0.016313282772898674, -0.0004702114383690059, -0.03733470290899277, 0.01782759465277195, 0.019341908395290375, 0.0037788995541632175, 0.010434993542730808, 0.01715303771197796, -0.0031077833846211433, 0.0011469201417639852, -0.017332002520561218, 0.005885171238332987, 0.011467480100691319, -0.007124154828488827, -0.003954422194510698, -0.0045188479125499725, 0.002992489142343402, -0.016175616532564163, 0.006993373390287161, -0.02574332244694233, -0.003830523928627372, 0.013587518595159054, 0.013146990910172462, -0.0028032001573592424, 0.003823640523478389, -0.01457870565354824, 0.010613958351314068, -0.008259889669716358, -0.012086971662938595, -0.0014824781101197004, 0.032929427921772, 0.024903567507863045, 0.0026569312904030085, -0.004253843333572149, 0.034746602177619934, -0.004480990115553141, -0.03144264593720436, 0.020580891519784927, 0.019410740584135056, -0.0006117480807006359, -0.010820455849170685, 0.02296249382197857, -0.02114531770348549, -0.01828189007937908, -0.007709230296313763, -0.0005420552333816886, 0.04609018564224243, -0.030781855806708336, -0.0009008442284539342, 0.0027739463839679956, -0.007867544889450073, -0.0043330006301403046, -0.1146472692489624, -0.011199033819139004, 0.019768670201301575, 0.006941748782992363, -0.012706463225185871, 0.021296748891472816, -0.006897008046507835, 0.03604065254330635, 0.022232869639992714, 0.013277772814035416, -0.018089158460497856, -0.020801154896616936, -0.008012092672288418, -0.009030812419950962, -0.00027188804233446717, -0.0028961237985640764, 0.009870568290352821, -0.01679510995745659, -0.005238146521151066, 0.01932814158499241, 0.01426207646727562, -0.025233963504433632, 0.01657484471797943, 0.0050729489885270596, -0.028083624318242073, -0.0007541451486758888, -0.02749166637659073, 0.026927240192890167, 0.020195430144667625, -0.007654164452105761, 0.03576532378792763, 0.0035964937414973974, 0.020484525710344315, -0.013876615092158318, -0.009953167289495468, 0.00198753597214818, -0.006373881362378597, -0.009127178229391575, 0.013814665377140045, -0.02623891644179821, 0.006731810048222542, 0.003266097977757454, 0.008838081732392311, -0.02901974506676197, 0.009581471793353558, -0.00936120841652155, -0.011130201630294323, 0.043089091777801514, 0.008755482733249664, -0.02395367994904518, -0.020195430144667625, -0.007929493673145771, -0.01814422383904457, -0.029405206441879272, 0.02805609256029129, -0.003491524141281843, 0.013367255218327045, 0.017455900087952614, -0.023540684953331947, -0.018020326271653175, -0.016354581341147423, 0.013043742626905441, -0.0038683817256242037, 0.029212476685643196, -0.006962398532778025, 0.010476293042302132, -0.0068522668443620205, 0.015349628403782845, 0.005121131427586079, 0.002269748831167817, -0.008321838453412056, -0.000506348442286253, -0.021723510697484016, 0.014606238342821598, -0.013587518595159054, 0.012410484254360199, -0.023058859631419182, 0.006194917485117912, 0.0028685908764600754, -0.009333675727248192, -0.0073994845151901245, -0.009794852696359158, 0.0016820920864120126, -0.0039647468365728855, -0.0028857989236712456, 0.0012346814619377255, 0.00022133922902867198, -0.0031318748369812965, 0.0012191941495984793, -0.05189964175224304, 0.027326468378305435, 0.034774135798215866, 0.010820455849170685, 0.023430554196238518, -0.014620005153119564, 0.009326792322099209, 0.014826501719653606, 0.004374300129711628, 0.003309118328616023, -0.012837245129048824, -0.0030045348685234785, -0.0015754018677398562, -0.05129391327500343, 0.0011314328294247389, 0.023086391389369965, 0.023155223578214645, 0.016533546149730682, -0.044300541281700134, -0.02877194993197918, -0.004343325272202492, -0.0036515595857053995, 0.005967770237475634, -0.013498036190867424, 0.00589205464348197, -0.01700160652399063, 9.045009210240096e-05, -0.011618911288678646, -0.025894753634929657, 0.024614471942186356, 0.0007623189594596624, -0.0017724346835166216, -0.01457870565354824, -3.4120443160645664e-05, 0.005041974131017923, 0.017015373334288597, 0.030065998435020447, -0.015542359091341496, 0.031167317181825638, 0.001486780121922493, 0.02377471514046192, 0.008741716854274273, -0.025660723447799683, 0.011508779600262642, 0.0043639750219881535, 0.015253262594342232, 0.008514570072293282, 0.0007554357289336622, -0.027354001998901367, -0.010703440755605698, -0.004859568551182747, 0.004236635286360979, 0.017455900087952614, 0.016024185344576836, -0.009471340104937553, 0.02670697681605816, -0.014007396064698696, -0.0204294603317976, 0.006435830611735582, -0.016299515962600708, -0.02392614632844925, -0.0015298003563657403, 0.027574265375733376, 0.03136004880070686, -0.009567705914378166, -0.008693533949553967, -0.029460273683071136, 0.0030509966891258955, -0.040693722665309906, 0.009870568290352821, 0.011474363505840302, -0.021076485514640808, -0.021737275645136833, 0.04028072953224182, -0.00855586864054203, -0.007213636767119169, -0.013257122598588467, 0.009478223510086536, 0.0059058209881186485, -0.038023024797439575, -0.00409897044301033, 0.007502733264118433, -0.029570404440164566, -0.022728463634848595, -0.0055444510653615, 0.018268123269081116, -0.0015547521179541945, 0.03675650805234909, 0.0023747181985527277, -0.03287436068058014, -0.018047859892249107, 0.006680185906589031, 0.0208562221378088, 0.014089995063841343, -0.017442133277654648, -0.005885171238332987, 0.01657484471797943, 0.010145897977054119, 0.009402507916092873, -0.005675232503563166, 0.010242262855172157, 0.0008212567190639675, -0.0008733112481422722, -0.03774769604206085, -0.0030940170399844646, -0.006755901500582695, 0.010352395474910736, -0.004377741366624832, 0.015611191280186176, -0.007475200109183788, 0.0006009929929859936, 0.016271982342004776, 0.02877194993197918, -0.010118365287780762, 0.00948510691523552, -0.011722160503268242, 0.0013250239426270127, -0.007812479045242071, 0.006408297922462225, -0.014523639343678951, -0.02760179713368416, 0.017359534278512, 0.020401926711201668, 0.002588098868727684, -0.01996139995753765, -0.0108755212277174, 0.015294562093913555, -0.011598262004554272, 0.007936377078294754, 0.004863010253757238, -0.02281106263399124, -0.02399498037993908, 0.01718057133257389, 0.01874995045363903, 0.02670697681605816, 0.005317303817719221, -0.034774135798215866, 0.052643030881881714, 0.0004585959541145712, 0.00800521019846201, -0.01094435341656208, 0.011687743477523327, 0.0020735764410346746, -0.0035620774142444134, -0.0026466064155101776, 0.004198777489364147, -0.015322095714509487, -0.0020735764410346746, 0.006029719486832619, 0.007330652326345444, 0.0016106785042211413, 0.003192103235051036, 0.0826539620757103, 0.03334242105484009, -0.01715303771197796, -0.008624701760709286, 0.009251076728105545, 0.036921706050634384, 0.013938563875854015, 0.0169740729033947, 0.01511559821665287, -0.0080189760774374, 0.04267609491944313, 0.0025571242440491915, -0.0022301701828837395, 0.001631328254006803, -0.007248053327202797, -0.002990768291056156, -0.0065528457053005695, 0.010379928164184093, -0.012940493412315845, -0.0034485040232539177, 0.0016278865514323115, -0.005317303817719221, 0.0016468154499307275, -0.017194336280226707, -0.0221365038305521, -0.0035620774142444134, 0.016877707093954086, 0.029680537059903145, -0.004522289615124464, -0.03637104853987694, 0.01892891339957714, 0.006855708546936512, -0.008652234449982643, -0.011928657069802284, -0.017414601519703865, 0.02132428251206875, -0.024160176515579224, -0.01576262339949608, 0.004577355459332466, 0.012961143627762794, 0.020305562764406204, 0.003813315648585558, -0.022343002259731293, -0.0010376486461609602, 0.014675070531666279, -0.0029529104940593243, -0.00015616354357916862, -0.03436114266514778, -0.012197103351354599], "0239f2fb-6432-444b-95a6-f00669901af5": [-0.008659597486257553, -0.0064150188118219376, -0.004509500693529844, -0.029267676174640656, 0.008747752755880356, 0.030515417456626892, 0.0033939925488084555, -0.017183570191264153, -0.0136641263961792, -0.03249552845954895, -0.004251814913004637, 0.02981017343699932, -0.008496848866343498, -0.003331266576424241, -0.012016293592751026, -0.0070456708781421185, 0.018905997276306152, -0.01078211423009634, -0.005584321450442076, -0.0021208215039223433, -0.03824599087238312, 0.0001816091244108975, -0.01642407663166523, 0.009608966298401356, -0.03127491474151611, -0.007147388998419046, 0.008713847026228905, -0.015189897269010544, -0.011528046801686287, 0.008212038315832615, 0.0026921380776911974, -0.021333668380975723, -0.028453931212425232, -0.003270235611125827, -0.005275776609778404, 0.009480123408138752, 0.015067835338413715, -0.0055741495452821255, 0.01738700643181801, -0.0016613949555903673, 0.009391967207193375, 0.022391535341739655, 0.002836238592863083, -0.0188517477363348, -0.013250472955405712, 0.03737799823284149, 0.007289794273674488, -0.016003642231225967, -0.016939448192715645, -0.0009273296454921365, -0.0009561497718095779, 0.020384298637509346, -0.010822801850736141, 0.00857144221663475, 0.022052476182579994, -0.003922926727682352, 0.013887905515730381, 0.008469724096357822, 0.020424986258149147, -0.014430401846766472, 0.009310592897236347, 0.0024293663445860147, -0.006771032232791185, -0.019380681216716766, -0.011697577312588692, -0.029240552335977554, -0.003919535782188177, 0.007052452303469181, -0.011392422951757908, 0.005594493355602026, 0.05449375510215759, 0.021821914240717888, 0.02598557434976101, -0.01540689542889595, 0.006594720762223005, -0.014986461028456688, -0.018051564693450928, -0.015651019290089607, 0.008313756436109543, 0.01575951837003231, 0.012504540383815765, -0.013955717906355858, -0.016207078471779823, 0.009412311017513275, 0.01912299543619156, 0.011378860101103783, 0.0015232280129566789, 0.01437615230679512, -0.013637001626193523, -0.009961588308215141, -0.016329139471054077, -0.003977176267653704, 0.016302013769745827, 0.00754069909453392, 0.015339083969593048, 0.003753396449610591, 0.035425011068582535, 0.01076177041977644, -0.020099489018321037, -0.004268767777830362, -0.011127956211566925, 0.00082222098717466, -0.02127941884100437, -0.018905997276306152, -0.006174286361783743, -0.018811060115695, 0.021740540862083435, -0.024385210126638412, 0.010470178909599781, 0.013915030285716057, -0.01851268671452999, 0.040931347757577896, 0.0035635228268802166, -0.020669110119342804, 0.003351610153913498, -0.005757242441177368, 0.030298419296741486, -0.034719765186309814, -0.004648515488952398, -0.015596768818795681, 0.012172261252999306, 0.023679964244365692, 0.059349097311496735, -0.015610331669449806, 0.015691706910729408, 0.008761315606534481, 0.010476959869265556, -0.0060013653710484505, -0.0002470901235938072, -0.009853089228272438, -0.005187620874494314, 0.0029006600379943848, 0.03143766149878502, 0.014335465617477894, -0.017698941752314568, 0.0111550809815526, -0.02365284040570259, 0.01127036102116108, 0.0023734213318675756, -0.022730596363544464, 0.02260853350162506, 0.026460258290171623, 0.01851268671452999, -0.016546137630939484, -0.012362134642899036, 0.040605850517749786, 0.010056525468826294, 0.01607145369052887, 0.018743248656392097, -0.008096757344901562, -0.006130208261311054, -0.022689908742904663, -0.025036204606294632, -0.002237797249108553, -0.014294777996838093, 0.003556741401553154, 0.01196882501244545, 0.019055183976888657, -1.3615385796583723e-05, 0.023503653705120087, 0.00453662546351552, 0.03819173946976662, 0.006703220307826996, -0.0025463420897722244, 0.019245056435465813, 0.03168178349733353, 0.004384048283100128, -0.0290778037160635, -0.003621162846684456, -0.008673160336911678, 0.0205606110394001, 0.0377034954726696, -0.0008213733090087771, 0.0342586413025856, -0.0047129369340837, 0.009174969047307968, 0.005350369960069656, 0.010117555968463421, -0.016885198652744293, -0.0341501422226429, 0.020004551857709885, -0.008639253675937653, 0.0011689100647345185, 0.019068745896220207, -0.0017698942683637142, -0.025402389466762543, 0.004882466979324818, 0.015094960108399391, 0.009141063317656517, -0.0145117761567235, 0.007710229139775038, -0.007974696345627308, -0.025917761027812958, -0.02087254635989666, -0.6297297477722168, 0.0017953237984329462, 0.01043627317994833, -0.015623894520103931, 1.9880053514498286e-05, -0.01453890185803175, 0.010253180749714375, -0.014918648637831211, 0.0012375697260722518, 0.04315558075904846, -0.0012638468760997057, 0.003166822250932455, -0.010531209409236908, -0.009819183498620987, -0.025890637189149857, 0.004746842663735151, -0.015691706910729408, -0.011575515381991863, -0.016315577551722527, -0.00029794915462844074, -0.02287978306412697, 0.01642407663166523, -0.0072219823487102985, 0.007106701843440533, -0.020302925258874893, -0.03010854497551918, 0.021713415160775185, 0.0009917510906234384, 0.006828672252595425, 0.02354433946311474, -0.0307866670191288, 0.020669110119342804, 0.018973808735609055, -0.009297030977904797, 0.0410127229988575, -0.03257690370082855, -0.004363704938441515, 0.03726949915289879, 0.019977426156401634, 0.03819173946976662, -0.021333668380975723, -0.013399658724665642, 0.02159135416150093, 0.02015373855829239, -0.02292046882212162, -0.014823712408542633, 0.02704344131052494, -0.009608966298401356, 0.005218136589974165, -0.015434020198881626, 0.010422710329294205, -0.015474707819521427, -0.012402822263538837, 0.0006395523087121546, -0.008212038315832615, -0.018716122955083847, 0.020316487178206444, -0.015339083969593048, 0.001829229760915041, -0.0071338266134262085, 0.010171806439757347, 0.008340881206095219, 0.010341336019337177, -0.04649193584918976, -0.04000910371541977, 0.0073237004689872265, -0.004689202643930912, -0.0204792357981205, -0.012307885102927685, -0.017929503694176674, 0.030027171596884727, -0.0055741495452821255, 0.017617568373680115, 0.0038924110122025013, 0.03328214958310127, 0.01371837593615055, 0.04025322571396828, -0.006876140832901001, 0.0025853340048342943, 0.0029752531554549932, 0.010158243589103222, -0.01179251354187727, -0.020370736718177795, -0.012850381433963776, 0.013786187395453453, 0.021035294979810715, -0.01097876951098442, -0.011670452542603016, 0.004384048283100128, 0.00011273751442786306, -0.005855569615960121, 0.04410495236515999, -0.02160491608083248, -0.03349914774298668, -0.006584549322724342, 0.052540767937898636, -0.006662533152848482, 0.010537991300225258, -0.020289363339543343, -0.024439459666609764, -0.040198978036642075, -0.030352668836712837, 0.006849016062915325, 0.0020241893362253904, 0.022160975262522697, 0.009358061477541924, -0.010178587399423122, -0.007737353909760714, 0.025049768388271332, -0.008578223176300526, -0.012280760332942009, -0.010775333270430565, -0.0076491981744766235, -0.007357606198638678, 0.006218363996595144, -0.023056093603372574, 0.0010519343195483088, 0.023449404165148735, 0.014281216077506542, -0.021428605541586876, -0.017997315153479576, -0.015094960108399391, 0.0446203239262104, 0.01472877524793148, 0.0024870065972208977, 0.008273068815469742, -0.003970394842326641, -0.014226965606212616, 0.015949392691254616, -0.014932211488485336, -0.0011570429196581244, -0.005641961935907602, -0.0025666856672614813, -0.004058550577610731, 0.03493676334619522, 0.012002730742096901, 0.012504540383815765, 0.001891955966129899, -0.0062285359017550945, -0.04559681564569473, -0.0032600639387965202, 0.009466560557484627, 0.012606258504092693, -0.011582296341657639, -0.016980135813355446, -0.030027171596884727, -0.014769461937248707, 0.0024293663445860147, 0.012294323183596134, -0.0002564142632763833, -0.006408237852156162, -0.004977403674274683, 0.013704813085496426, 0.015528957359492779, -0.016261328011751175, -0.0034126408863812685, -0.007316919043660164, -0.050804778933525085, -0.012714757584035397, -0.03393314406275749, -0.010314211249351501, 0.01778031699359417, -0.013765844516456127, 0.01453890185803175, -0.01843131333589554, -0.026812881231307983, 0.004323017783463001, 0.0023988508619368076, -0.011195767670869827, -0.01916368305683136, 0.00011549238115549088, -0.0050486065447330475, -0.020235111936926842, 0.025904199108481407, 0.007784822024405003, 0.01711575873196125, -0.03149191290140152, -0.025456639006733894, -0.017373444512486458, -0.008835908956825733, 0.012599477544426918, 0.021699853241443634, -0.009778495877981186, -0.0221880991011858, 0.03827311471104622, 0.006659142207354307, 0.012036637403070927, 0.015162772499024868, -0.027572374790906906, 0.03444851562380791, -0.014294777996838093, 0.009344499558210373, -0.018214313313364983, 0.0033922973088920116, -0.02290690690279007, 0.0012782569974660873, -0.014443964697420597, 0.009669996798038483, 0.0001966549170901999, 0.01574595645070076, 0.02530745416879654, 0.01639695093035698, -0.002185242949053645, 0.0016452895943075418, -0.0033668677788227797, -0.014349027536809444, 0.010544772259891033, -0.016546137630939484, 0.012077324092388153, -0.004980794154107571, 0.002351382514461875, 0.002746387617662549, 0.008408692665398121, -0.01179251354187727, -0.0009459779830649495, 0.029647424817085266, 0.0033668677788227797, 0.016288451850414276, -0.004390829708427191, -0.018282126635313034, 0.021306542679667473, -0.009161406196653843, 0.030325544998049736, -0.012965662404894829, -0.006530299317091703, 0.020696233958005905, 0.00401447294279933, 0.048716168850660324, 0.00905290711671114, -0.024425897747278214, -0.003726271679624915, 0.024764956906437874, -0.002383593237027526, 0.001866526436060667, 0.03352627158164978, 0.02190328948199749, 0.004695983603596687, -0.005343589000403881, 0.010795677080750465, 0.005041825119405985, 0.0017868472496047616, 0.006214973516762257, 0.021089544519782066, -0.02254072204232216, 0.0018122767796739936, 0.010565116070210934, 0.009629310108721256, 0.012375697493553162, -0.01164332777261734, -0.008693503215909004, -0.011568734422326088, -0.019326431676745415, -0.016003642231225967, -0.007174513768404722, 0.026487382128834724, -0.037757743149995804, 0.02430383488535881, 0.002765035955235362, 0.013637001626193523, 0.033363524824380875, 0.030515417456626892, 0.012111230753362179, 0.004899419844150543, -0.004787529818713665, 0.052161023020744324, -0.024737833067774773, -0.008585004135966301, -0.007594948634505272, -0.011962044052779675, -0.012267198413610458, 0.008618909865617752, -0.014213403686881065, -0.006462487392127514, -0.03192590922117233, -0.009127500467002392, -0.0017546365270391107, -0.006109864916652441, 0.013996405526995659, -0.00231747655197978, 0.0005302053759805858, -0.02115735597908497, -0.03254977986216545, 0.029701674357056618, 0.008306974545121193, 0.0011934918584302068, -0.014023530296981335, -0.017251383513212204, 0.016302013769745827, -0.009988713078200817, 0.016193514689803123, 0.010822801850736141, -0.015976516529917717, -0.0066048926673829556, -0.0009086813661269844, 0.024046149104833603, 0.016546137630939484, 0.03697112575173378, -0.019353555515408516, -0.02468358352780342, -0.0061912392266094685, 0.024371648207306862, 0.014104904606938362, -0.02089967019855976, -0.038137491792440414, 0.029566049575805664, -0.018241439014673233, -0.037513621151447296, -0.027911435812711716, -0.007642416749149561, -0.009656434878706932, 0.0017495506908744574, -0.00835444312542677, -0.03135628625750542, -0.004563750233501196, -0.005580930970609188, 0.009330936707556248, -0.013141972944140434, 0.001961463363841176, 0.0055232904851436615, 0.02975592389702797, -0.006123427301645279, -0.009303811937570572, 0.009439435787498951, 0.016274889931082726, 0.06629305332899094, -0.007377950008958578, 0.0002782412921078503, 0.02191685140132904, -0.01707507111132145, -0.017292071133852005, -0.026121197268366814, -0.03179028630256653, 0.05340876430273056, 0.01558320689946413, -0.006818500813096762, 0.003983957227319479, 0.014226965606212616, -0.002427671104669571, 0.00905290711671114, 0.008089976385235786, -0.006018318701535463, -0.03217003121972084, 0.008103539235889912, 0.02160491608083248, 0.020397862419486046, 0.0033227899111807346, 0.015027147717773914, 0.011697577312588692, 0.045027196407318115, 0.023462966084480286, 0.020357174798846245, 0.013915030285716057, 0.011914575472474098, -0.012070543132722378, -0.015379770658910275, 0.01638338901102543, -0.0017478553345426917, 0.007879759185016155, -0.04410495236515999, 0.0410127229988575, -0.009554716758430004, -0.012090886943042278, -0.00038144271820783615, 0.006855797488242388, 0.004855342209339142, 0.018756810575723648, -0.007710229139775038, 0.0014799977652728558, 0.022513598203659058, -0.016613949090242386, 0.0017919332021847367, 0.030922289937734604, -0.02089967019855976, -0.010985550470650196, 0.024751394987106323, 0.02018086239695549, -0.02088610827922821, 0.010192149318754673, 0.0029701674357056618, -0.007893321104347706, 0.021035294979810715, -0.012260416522622108, -0.012735101394355297, -0.030949415639042854, -0.03547925874590874, 0.008747752755880356, -0.01878393441438675, -0.01162298396229744, -0.018987370654940605, -0.022757720202207565, -0.02461577020585537, -0.007011765148490667, -0.023761339485645294, 0.008863033726811409, -0.035425011068582535, -0.030895166099071503, -0.028209809213876724, 0.02263565920293331, 0.017712505534291267, 0.022784845903515816, -0.0014689783565700054, -0.00272943452000618, 0.013596314005553722, 0.012328228913247585, 0.013053817674517632, 0.0032075094059109688, 0.0030634088907390833, -0.025036204606294632, -0.004278939682990313, -0.00727623188868165, -0.01400996744632721, -0.002861668122932315, 0.007493230514228344, 0.02496839314699173, -0.00975815299898386, -0.019109433516860008, 0.02563295140862465, 0.014986461028456688, 0.02254072204232216, 0.006445534527301788, 0.01418627891689539, -0.0019851974211633205, 0.0291049275547266, -0.039195358753204346, 0.02704344131052494, -0.009893776848912239, -0.006977858953177929, -0.010504084639251232, 0.035696256905794144, 0.024764956906437874, -0.006771032232791185, -0.016152827069163322, 0.004465423058718443, -0.0029769486282020807, 0.015122084878385067, 0.0001857414172263816, -0.004892638884484768, -0.019231494516134262, 0.007717010099440813, -0.022323723882436752, 0.0031651270110160112, 0.031953033059835434, 0.01061258465051651, -0.0069337813183665276, -0.011141518130898476, -0.011188986711204052, 0.024466583505272865, 0.037459369748830795, -0.010361679829657078, 0.03143766149878502, 0.006689657922834158, -0.010571897029876709, -0.033634770661592484, -0.002536170417442918, -0.006445534527301788, -0.011399203911423683, -0.006296347826719284, -0.013786187395453453, -0.02667725645005703, -0.003587256884202361, -0.02358502708375454, 0.01605789177119732, -0.007418637163937092, 0.009608966298401356, -0.04752267897129059, 0.00727623188868165, 0.023354467004537582, -0.013209785334765911, -0.005906428676098585, -0.029647424817085266, -0.02972879819571972, 0.0010621061082929373, 0.007201638538390398, 0.027911435812711716, -0.009866652078926563, -0.011148299090564251, -0.026568757370114326, -0.022120287641882896, -0.013691251166164875, -0.013135191984474659, 0.010599021799862385, 0.011188986711204052, 0.046410560607910156, 0.02875230461359024, -7.141455716919154e-05, 0.00926990620791912, 0.018214313313364983, 0.01367768831551075, -0.02183547616004944, -0.00841547455638647, -0.0038212083745747805, -0.020424986258149147, 0.008869814686477184, -0.01814650185406208, 0.005818272940814495, -0.0017529412871226668, -0.007547480054199696, -0.009805620647966862, -0.0006399761186912656, -0.010463397949934006, -0.004499328788369894, -0.013860780745744705, -0.03282102569937706, -0.036103129386901855, 0.012565570883452892, 0.03534363582730293, 0.026487382128834724, 0.017685379832983017, -0.028670931234955788, 0.00018362229457125068, 0.005584321450442076, -0.008510410785675049, 0.041500966995954514, 0.005699601955711842, 0.029891546815633774, -0.0001798078592400998, 0.009168188087642193, 0.020045239478349686, -0.00040623650420457125, -0.0007213506032712758, -0.010320992209017277, -0.027124816551804543, -0.013013130985200405, 0.020330049097537994, 0.01540689542889595, -0.004397610668092966, 0.006899875123053789, 0.016288451850414276, 0.0029549095779657364, 0.015813767910003662, -0.008293412625789642, -0.020709797739982605, 0.008734190836548805, -0.027572374790906906, -0.018078690394759178, -0.04700730741024017, -0.017915941774845123, 0.012728319503366947, -0.011453453451395035, 0.005919991061091423, 0.001968244556337595, 0.017373444512486458, -0.019000934436917305, -0.023137468844652176, 0.019434930756688118, 0.001363869640044868, 0.024154648184776306, 0.008225600235164165, 0.013955717906355858, 0.016586825251579285, 0.008537535555660725, -0.011663670651614666, -0.021645603701472282, 0.004912982229143381, -0.009147844277322292, 0.0025073501747101545, 0.04288433492183685, -0.015868017449975014, -0.01127036102116108, 0.005875913426280022, 2.3866659830673598e-05, -0.011650108732283115, -0.025158267468214035, 0.04177221655845642, 0.022798407822847366, 0.005957287736237049, -0.03127491474151611, -0.022445784881711006, 0.005343589000403881, 0.01886530965566635, -0.021265855059027672, 0.01570526883006096, 0.0014715212164446712, -0.00444846972823143, -0.0018699170323088765, 0.029511800035834312, -0.0006196325412020087, 0.02089967019855976, -0.006628626957535744, 0.017183570191264153, -0.0015427239704877138, 0.001140089938417077, -0.009988713078200817, -0.02700275368988514, 0.006445534527301788, 0.001986892893910408, -0.025592263787984848, 0.006136989686638117, 0.01334540918469429, 0.012409603223204613, 0.0145524637773633, -0.01062614656984806, -0.02697562985122204, 0.03176315873861313, 0.005218136589974165, -0.009452998638153076, 0.010348116979002953, -0.007093139458447695, 0.007181295193731785, -0.03637437894940376, -0.02289334498345852, -8.921521657612175e-05, -0.011928138323128223, -0.0053876666352152824, -0.0008548555197194219, -0.005835226271301508, -0.004638343583792448, 0.010253180749714375, 0.010361679829657078, -0.0015706963604316115, -0.004655296448618174, -0.013236910104751587, 0.019055183976888657, -0.013806531205773354, -0.010273524560034275, -0.009181750006973743, -0.009235999546945095, -0.011026238091289997, 0.014647400937974453, -0.010890613310039043, -0.010463397949934006, 0.015556082129478455, -0.032034408301115036, 0.012084105983376503, 0.012036637403070927, 0.022025350481271744, -0.04041597619652748, 0.02598557434976101, -0.0025700763799250126, -0.001268085208721459, 0.03146478533744812, 0.016817385330796242, -0.03146478533744812, -0.01580020599067211, 0.011548390612006187, 0.008144225925207138, -1.1237991202506237e-05, 0.01131104864180088, -0.001332506537437439, -0.0004382353217806667, 0.0060929120518267155, -0.02119804359972477, -0.01818718947470188, 0.003912754822522402, -0.021754102781414986, -0.017970191314816475, 0.029349051415920258, -0.00874097179621458, 0.008171350695192814, 0.002383593237027526, 0.005306292325258255, -0.006072568241506815, -0.024887017905712128, -0.02869805507361889, -0.026948504149913788, 0.009690340608358383, -0.012287541292607784, -0.0038890205323696136, -0.005031653214246035, -0.046410560607910156, -0.019434930756688118, 0.021320104598999023, 0.0015054272953420877, 0.007140608038753271, 0.027192628011107445, 0.002422585152089596, -0.01741413213312626, 0.004167049657553434, -0.0057504610158503056, -0.03556063398718834, -0.039819229394197464, -0.0062420982867479324, -0.03740512207150459, -0.015569644048810005, -0.01578664220869541, 0.031003665179014206, 0.014416839927434921, -0.019706178456544876, -0.026216134428977966, 0.002344601321965456, -0.028182683512568474, 0.0040924567729234695, -0.03477401286363602, 0.023395154625177383, 0.02087254635989666, 0.0170615091919899, 0.011277141980826855, 0.029213426634669304, 0.0037364433519542217, 0.03805611655116081, -0.020262237638235092, -0.009242781437933445, -0.011765388771891594, -0.016654636710882187, 0.031627535820007324, -0.026500945910811424, -0.045054320245981216, -0.009520810097455978, 0.019082307815551758, -0.014321902766823769, 0.002224234864115715, 0.016329139471054077, 0.008815565146505833, -0.016247764229774475, -0.0034363751765340567, 0.006937171798199415, 0.0035465697292238474, 0.0014062521513551474, 0.004031425807625055, -0.035126637667417526, -0.006971077527850866, 0.022744158282876015, -0.007615291979163885, -0.017047947272658348, 0.0067947665229439735, 0.025388827547430992, -0.0256193894892931, -0.009324155747890472, -0.03355339914560318, -0.00903256330639124, -0.030217045918107033, -0.011073705740272999, -0.002632802352309227, -0.0052350894547998905, -0.0060013653710484505, 0.034801140427589417, -0.0014647400239482522, -0.029593175277113914, -0.014755900017917156, 0.00821881927549839, -0.007527136243879795, 0.0009358061361126602, 0.0037296621594578028, -0.023435840383172035, 0.010619365610182285, -0.017698941752314568, 0.03208865597844124, 0.004584094043821096, -0.018038002774119377, -0.03254977986216545, -0.0038585050497204065, -0.019380681216716766, -0.003573694499209523, 0.007500011473894119, -0.0034007737413048744, 0.0019512914586812258, -0.00011188986536581069, 0.013731937855482101, -0.01554251927882433, -0.01683094911277294, 0.013738719746470451, -0.009378405287861824, -0.017251383513212204, 0.008802003227174282, 0.002025884808972478, -0.023083219304680824, 0.012843600474298, 0.038164615631103516, -0.012918193824589252, 0.01405065506696701, 0.20256812870502472, 0.008340881206095219, 0.004319626837968826, 0.03927673399448395, -0.007527136243879795, 0.0015528957592323422, 0.00659811170771718, 0.022486472502350807, -0.0023479918017983437, 0.009724246338009834, 0.018878871574997902, 0.012097667902708054, -0.013101286254823208, -0.0024937877897173166, 0.010076869279146194, -0.003811036702245474, -0.017400570213794708, -0.03135628625750542, 0.010307430289685726, -0.008245944045484066, 0.0019156901398673654, 0.0030430653132498264, -0.022052476182579994, 0.0007438132888637483, 0.02221522480249405, 0.021455729380249977, 0.0025988963898271322, -0.0012384173460304737, 0.010348116979002953, 0.02125229313969612, -0.029484674334526062, -0.003580475691705942, 0.017997315153479576, -0.004763795994222164, -0.013548845425248146, 0.006221754476428032, 0.004740061704069376, -0.008259506896138191, 0.011528046801686287, 0.011677233502268791, -0.004116191063076258, -0.026541631668806076, 0.018404187634587288, -0.025944886729121208, 0.025429515168070793, -0.004645124543458223, 0.010517647489905357, 0.0012214643647894263, 0.026419570669531822, 0.04917729273438454, 0.008605347946286201, 0.011399203911423683, 0.000293075165245682, 0.002327648224309087, -0.024832768365740776, -0.017915941774845123, -0.003078666515648365, 0.007357606198638678, -0.006879531312733889, 0.03010854497551918, -0.014091341756284237, 0.0019512914586812258, -0.010334555059671402, 0.021442167460918427, -0.03792049363255501, -0.001975025748834014, -0.02089967019855976, 0.03225140646100044, 0.024059711024165154, 0.011514484882354736, -0.015664581209421158, -0.026907818391919136, -0.021767664700746536, 0.007811947260051966, -0.002153032226487994, -0.02359859086573124, -0.0069846403785049915, 0.04247746244072914, 0.03181741014122963, 0.02187616378068924, 0.0013782797614112496, 0.007832290604710579, -0.018621185794472694, 0.0006353140342980623, -0.0034889294765889645, -0.017671817913651466, 0.02839968167245388, -0.03295665234327316, 0.002722653327509761, -0.0050486065447330475, -0.01505427248775959, -0.010042963549494743, -0.01947561837732792, -0.0002258988533867523, 0.002714176895096898, -0.016166390851140022, 0.001420662272721529, 0.02359859086573124, -0.00041111049358733, -0.00624548876658082, -0.030732417479157448, 0.052188146859407425, 0.019082307815551758, 0.027260439470410347, -0.023015405982732773, 0.0023802025243639946, -0.020981045439839363, 0.017658255994319916, -0.0017631130758672953, 0.0013994709588587284, -0.011433109641075134, -0.04066009819507599, 0.013257253915071487, -0.0028972693253308535, 0.012721538543701172, 0.0445660725235939, 0.017319194972515106, -0.01947561837732792, -0.027558812871575356, 0.015854455530643463, 0.02774868719279766, -0.022500034421682358, 0.0038076459895819426, 0.0002949823683593422, -0.01164332777261734, -0.02399189956486225, -0.009669996798038483, 0.0063302540220320225, -0.017210695892572403, -0.020953919738531113, 0.003627944039180875, -0.021116670221090317, 0.015298396348953247, -0.018648311495780945, -0.01006330642849207, 0.0014554159715771675, 0.007303356658667326, -0.02742318995296955, -0.003434679936617613, 0.011087268590927124, -0.0002506926248315722, -0.003287188708782196, 0.023069655522704124, -0.006530299317091703, 0.029918672516942024, 0.0011104221921414137, 0.008245944045484066, 0.013596314005553722, -0.005445306655019522, -0.025429515168070793, -0.0010061610955744982, 0.05172702297568321, -0.0018902606097981334, -0.0019122995436191559, 0.01851268671452999, -0.019312869757413864, -0.00888337753713131, -0.012002730742096901, 0.009859871119260788, -0.01775319129228592, -0.02978304773569107, -0.01711575873196125, 0.03656425327062607, 0.00760851101949811, -0.020628422498703003, -0.008056070655584335, -0.17207983136177063, 0.015515394508838654, 0.001810581423342228, -0.008985095657408237, 5.4567502957070246e-05, 0.012328228913247585, 0.011046580970287323, 0.004777358379215002, -0.010307430289685726, -0.010883832350373268, 0.00920887477695942, 0.016261328011751175, -0.024059711024165154, -0.015000022947788239, 0.0070456708781421185, -0.013338628225028515, -0.004414563998579979, 0.01490508671849966, 0.04079572483897209, 0.008510410785675049, 0.032332781702280045, -0.015569644048810005, 0.009792058728635311, -0.021075982600450516, 0.022405097261071205, 0.011853544972836971, -0.004556969273835421, 0.026799317449331284, 0.010395585559308529, -0.03463838994503021, -0.015895143151283264, -0.015813767910003662, 0.016003642231225967, 0.009195312857627869, 0.005879303906112909, 0.007357606198638678, 0.01981467753648758, 0.0017665036721155047, -0.023368028923869133, 0.016993697732686996, 0.028508182615041733, 0.017671817913651466, 0.021672727540135384, 0.005207964684814215, 0.026555195450782776, 0.02294759452342987, 0.004929935559630394, -0.018675435334444046, 0.0007395750726573169, -0.004072112962603569, 0.023734213784337044, -0.018892433494329453, -0.010212493129074574, -0.021984662860631943, 0.008334099315106869, -0.003339743008837104, -0.007818728685379028, 0.0222016628831625, -0.0035974287893623114, -0.017563318833708763, -0.009324155747890472, -0.012375697493553162, -0.014091341756284237, 0.002776903100311756, -0.0007785669877193868, -0.04518994316458702, -0.02666369453072548, 0.040198978036642075, -0.009195312857627869, 0.006404847372323275, 0.010422710329294205, -0.0006395523087121546, -0.022025350481271744, 0.023205280303955078, 0.002605677582323551, 0.01146701630204916, -0.02637888304889202, 0.009873433038592339, 0.03141053766012192, 0.002714176895096898, 0.011033019050955772, -0.0009553020936436951, -0.010693958960473537, -0.00922921858727932, -0.03179028630256653, -0.01400996744632721, 0.016193514689803123, 0.0014537206152454019, -0.009900557808578014, 0.016613949090242386, 0.006008146796375513, -0.03366189822554588, 0.01216548029333353, -0.015935828909277916, 0.0035974287893623114, 0.012911412864923477, 0.031953033059835434, -0.0005077426321804523, 0.007988258264958858, -0.018404187634587288, 0.0024887018371373415, 0.0006582005880773067, -0.019299305975437164, 0.009622528217732906, 0.015962954610586166, 0.02259497158229351, 0.011677233502268791, -0.013080942444503307, 0.022405097261071205, -0.002688747365027666, -0.032007284462451935, 0.015813767910003662, 0.0205199234187603, -0.007201638538390398, -0.004234862048178911, 0.04000910371541977, 0.01093808189034462, -0.008266287855803967, -0.0009909034706652164, -0.018282126635313034, 0.05924059823155403, -0.02940330095589161, -0.007391512393951416, 0.017332756891846657, -0.015067835338413715, -0.024520833045244217, -0.11500921845436096, -0.03160041198134422, 0.02804706059396267, 0.012382478453218937, -0.013141972944140434, 0.008293412625789642, -0.007093139458447695, 0.00835444312542677, 0.01646476425230503, 0.009792058728635311, -0.021143794059753418, -0.01570526883006096, -0.020981045439839363, -0.006086130626499653, 0.01148057822138071, -0.01989605277776718, 0.01573239266872406, -0.03762212023139, -0.0025378656573593616, 0.0145524637773633, 0.011060143820941448, -0.028508182615041733, 0.005825054366141558, 0.006147161591798067, -0.030623916536569595, -0.016220640391111374, -0.02570076286792755, 0.008442599326372147, 0.013467471115291119, -0.004797701723873615, 0.040524475276470184, 0.008585004135966301, 0.02357146516442299, -0.017658255994319916, -0.016898760572075844, -0.02091323398053646, -0.005926772486418486, -0.010165024548768997, 0.028643805533647537, -0.01540689542889595, 0.002704004989936948, 0.002766731195151806, 0.006737126037478447, -0.01980111561715603, 0.0030379793606698513, 0.010551553219556808, -0.0006696439231745899, 0.039113983511924744, -0.002319171791896224, -0.01744125597178936, -0.015895143151283264, -0.0093851862475276, -0.007981477305293083, -0.023462966084480286, 0.029023552313447, -0.0010570201557129622, 0.0036550690419971943, 0.009764933958649635, -0.02810131013393402, 0.0038245990872383118, -0.005326635669916868, 0.002644669497385621, -0.018580498173832893, 0.022160975262522697, 0.0023802025243639946, 0.015908705070614815, -0.015976516529917717, 0.02834543213248253, -0.0035635228268802166, 0.011494141072034836, 0.0032532827463001013, -0.005913210101425648, -0.0256058257073164, 0.01127036102116108, -0.026948504149913788, 0.007839071564376354, -0.012897850014269352, -0.014159154146909714, -0.0009315679199062288, 0.014023530296981335, -0.027518125250935555, -0.01436259038746357, -0.0007828052621334791, -0.017522631213068962, 0.007859415374696255, -0.0020614860113710165, -0.0053741042502224445, 0.0035838664043694735, 0.008856252767145634, -0.031708911061286926, -0.00503504415974021, 0.02160491608083248, 0.0206012986600399, 0.014091341756284237, -0.015637457370758057, 0.002242883201688528, 0.006313301157206297, -0.000936653814278543, 0.0017147969920188189, 0.00040920329047366977, -0.007927227765321732, 0.003678803099319339, -0.047766800969839096, 0.0017020822269842029, 0.01982824131846428, 0.014715212397277355, 0.01603076606988907, -0.04860766977071762, -0.018933121114969254, -0.0050452155992388725, 0.012904630973935127, 0.000344146101269871, -0.03827311471104622, 0.006852406542748213, -0.017264945432543755, 0.0020682672038674355, -0.020235111936926842, -0.023083219304680824, 0.03154616057872772, -0.011650108732283115, 0.015027147717773914, -0.0058013200759887695, -0.014471089467406273, 0.007533917669206858, 0.014810149557888508, 0.022432222962379456, -0.006136989686638117, 0.01028030551970005, -0.012891069054603577, 0.023842712864279747, -0.0002862939436454326, -0.016668198630213737, 0.01745481975376606, 0.013670907355844975, 0.0032346344087272882, 0.016966572031378746, 0.007038889918476343, -0.02087254635989666, -0.019014496356248856, 0.009866652078926563, 0.017237819731235504, -0.0010629537282511592, 0.008056070655584335, -0.01646476425230503, 0.03960223123431206, -0.021103106439113617, -0.02119804359972477, -0.01010399404913187, -0.012050199322402477, -0.018946684896945953, 0.015162772499024868, 0.00872740987688303, 0.025565139949321747, -0.013928593136370182, -0.018282126635313034, -0.02019442617893219, -0.0010400671744719148, -0.026107635349035263, 0.012674069963395596, 0.03160041198134422, -0.01486439909785986, -0.00643197214230895, 0.04350820556282997, 0.005730117205530405, -5.5680044170003384e-05, -0.013148754835128784, 0.0274367518723011, 0.0029159176629036665, -0.04215196520090103, 0.0024971782695502043, 0.012219729833304882, -0.025741450488567352, -0.022771283984184265, -0.020709797739982605, 0.02666369453072548, 0.004838388878852129, 0.01437615230679512, -0.012579133734107018, -0.02671794407069683, -0.023490089923143387, -0.012782569974660873, 0.02972879819571972, 0.028264058753848076, 0.0029159176629036665, -0.01266728900372982, 0.004075503442436457, 0.026853568851947784, -0.007337262853980064, -0.0021259074565023184, -0.0009892081143334508, 0.022391535341739655, 0.005930162966251373, -0.01814650185406208, -0.006014927756041288, -0.0076966667547822, 0.016193514689803123, -0.015311958268284798, 0.016166390851140022, -0.009303811937570572, -0.00022462737979367375, 0.023368028923869133, 0.016980135813355446, -9.000988939078525e-05, 0.01573239266872406, -0.019584117457270622, -0.003129525575786829, -0.0008421407546848059, -5.1229875680292025e-05, -0.009222437627613544, -0.020818296819925308, 0.004974013194441795, 0.024832768365740776, 0.0007370320963673294, -0.03518088534474373, 0.003990738652646542, 0.00872062798589468, -0.003912754822522402, 0.015895143151283264, 0.007466105744242668, -0.014810149557888508, -0.0205606110394001, 0.0074118562042713165, 0.011202548630535603, 0.020587734878063202, 0.012931755743920803, -0.020696233958005905, 0.03922248259186745, -0.000994294066913426, 0.008598566986620426, -0.019082307815551758, 0.00025323560112155974, -0.0018309251172468066, 0.005628399550914764, -0.009954807348549366, 0.007289794273674488, -0.015501832589507103, -0.003977176267653704, 0.00522491754963994, 0.0021615088917315006, 0.0171293206512928, -0.023476528003811836, 0.08164569735527039, 0.04079572483897209, -0.01948918029665947, 0.009147844277322292, 0.004875685553997755, 0.01915011927485466, 0.016139265149831772, 0.015203459188342094, 0.0015274662291631103, -0.009100375697016716, 0.027802936732769012, -0.002822676207870245, -0.011521265842020512, -0.0018444875022396445, -0.013772625476121902, -0.00113415636587888, -0.010232836939394474, 0.01266728900372982, -0.003573694499209523, -0.006903265602886677, 0.002887097653001547, -0.0021004779264330864, -0.0025700763799250126, -0.02195753902196884, -0.025944886729121208, -0.0007116026245057583, 0.007527136243879795, 0.03924961015582085, 0.0012333315098658204, -0.03181741014122963, 0.027884310111403465, -0.005835226271301508, -0.010402366518974304, -0.00659811170771718, -0.01985536515712738, 0.019679054617881775, -0.02024867571890354, -0.020370736718177795, -0.004872295074164867, 0.006903265602886677, 0.007845853455364704, 0.013942155055701733, -0.02913205325603485, -0.01773962937295437, 0.022106725722551346, 0.0013782797614112496, 0.007357606198638678, -0.02354433946311474, -0.01163654588162899], "92435c91-6b25-4870-b65c-fb292b61e3cf": [-0.0017627704655751586, 0.005852057132869959, -0.006165438797324896, -0.03929530456662178, 0.0027420874685049057, 0.027795569971203804, -0.02440287545323372, -0.0328369215130806, -0.004595125559717417, -0.03607973828911781, 0.006451569497585297, 0.021146433427929878, 0.013318710029125214, -0.01330508477985859, -0.008577113039791584, 0.009742074646055698, 0.025070512667298317, 0.004639407619833946, -0.0011181244626641273, -0.011009225621819496, -0.013611653819680214, -0.025492897257208824, -0.018257873132824898, 0.008004851639270782, -0.018026243895292282, 0.000701276061590761, 0.017208727076649666, -0.014361044391989708, -0.02271334081888199, 0.030520625412464142, 0.011077351868152618, -0.017917241901159286, -0.020574171096086502, 7.642929995199665e-05, -0.01783549040555954, 0.013713843189179897, 0.014361044391989708, 0.009346941486001015, 0.026569293811917305, 0.0036686062812805176, 0.03744226694107056, 0.021228184923529625, -0.009135749191045761, -0.00891774520277977, -0.006441350560635328, 0.02434837445616722, 0.012187812477350235, -0.011520173400640488, -0.022508960217237473, -0.004111427813768387, -0.016990723088383675, 0.011595112271606922, -0.03537122532725334, 0.028667587786912918, 0.0025019419845193624, -0.006717262789607048, 0.017453981563448906, 0.0037094822619110346, 0.007425777148455381, -0.0015328439185395837, 0.005221888422966003, -0.005790743511170149, -0.00046709159505553544, -0.012276376597583294, -0.020219914615154266, -0.02526126801967621, -0.025738151744008064, 0.0006352786440402269, -0.014865179546177387, -0.008038914762437344, 0.047906480729579926, 0.03744226694107056, 0.01906176470220089, -0.01888463646173477, 0.003566416911780834, -0.024239370599389076, -0.02501601167023182, -0.025642774999141693, -0.004581500310450792, 0.0032274879049509764, 0.016064204275608063, -0.010457402095198631, -0.03468995913863182, 0.010225771926343441, 0.01979753002524376, 0.019075389951467514, 0.0007387456134893, 0.00993282813578844, -0.012814574874937534, -0.012303627096116543, 0.018039869144558907, 0.0046462202444672585, 0.031174639239907265, 0.019266145303845406, 0.012637446634471416, 0.017045224085450172, 0.0028936685994267464, 0.011635988019406796, -0.014538172632455826, -0.008999496698379517, -0.011670051142573357, -0.004431622102856636, -0.021786822006106377, -0.009203876368701458, -0.008692927658557892, -0.02016541361808777, 0.014279292896389961, -0.019688528031110764, 0.009319690987467766, 0.023871488869190216, -0.016227707266807556, 0.03490796312689781, 0.009346941486001015, 0.0065605719573795795, 0.0018155684228986502, -0.009122123941779137, 0.03545297682285309, -0.04665295407176018, -0.00274719693697989, -0.01639121025800705, -0.0027369780000299215, 0.003746951697394252, 0.03477171063423157, -0.013380023650825024, 0.022876843810081482, 0.012249126099050045, 0.0081819798797369, -0.021323561668395996, 0.001980775035917759, -0.007861785590648651, 0.00872017815709114, 0.008515799418091774, 0.015791699290275574, 0.01786274090409279, -0.029185347259044647, 0.007807285059243441, -0.01102285087108612, 0.009019934572279453, -0.002980529796332121, -0.04098483920097351, 0.02418486960232258, 0.014865179546177387, 0.015696320682764053, -0.013209708034992218, -0.00689098471775651, 0.035997986793518066, -0.005729429889470339, 0.028667587786912918, -0.003988800570368767, -0.013250583782792091, 0.004118240438401699, -0.022481709718704224, -0.02415761910378933, -0.0034114292357116938, -0.003084422554820776, 0.0019262738060206175, 0.0006735997158102691, 0.024675380438566208, -0.018339626491069794, -0.0023350322153419256, 0.0004228094476275146, 0.034798961132764816, -0.002653523115441203, -0.0023588764015585184, 0.0021562003530561924, 0.02983936108648777, 0.01697709783911705, -0.02814982645213604, -0.014034037478268147, -0.005276389420032501, 0.030874881893396378, 0.02569727599620819, -0.013311897404491901, 0.021759571507573128, -0.007671032100915909, 0.011016038246452808, -0.003689044388011098, -0.000401307042920962, -0.010259835049510002, -0.025928905233740807, 0.03689725697040558, 0.007350838277488947, -0.0016001187032088637, 0.012371753342449665, -0.01108416449278593, -0.021963950246572495, 0.029757609590888023, 0.027672940865159035, -0.0006425170577131212, -0.012698760256171227, 0.0031968310941010714, 0.012017495930194855, -0.010913848876953125, -0.006022373214364052, -0.6278528571128845, -0.004421403165906668, 0.004864224698394537, -0.01223550084978342, -0.0011232339311391115, 0.005140136461704969, 0.003746951697394252, -0.0054058292880654335, -0.0007800472085364163, 0.03548022732138634, 0.02136443741619587, -0.007091957610100508, -0.0031763932202011347, -0.010273460298776627, -0.019783904775977135, -0.02271334081888199, -0.009122123941779137, -0.018244247883558273, -0.021691443398594856, 0.002479800721630454, -0.03477171063423157, 0.03008461557328701, 0.0002435518690617755, 0.012426254339516163, -0.0036106989718973637, -0.006465194746851921, 0.0030316244810819626, -0.004193179775029421, 0.014865179546177387, 0.03727876394987106, -0.02692355215549469, 0.02163694240152836, 0.013059830293059349, -0.0010908738477155566, 0.03643399477005005, -0.022849593311548233, -0.013189270161092281, 0.030520625412464142, -0.00044409892871044576, 0.021800447255373, -0.023013096302747726, -0.018380502238869667, 0.021378062665462494, 0.019388772547245026, -0.014510922133922577, 0.0034318671096116304, 0.012644259259104729, 0.00474159698933363, -0.005739648826420307, -0.016990723088383675, -0.0008856431231833994, 0.003726513823494315, -0.013563965447247028, -0.017944492399692535, 0.008958620950579643, 0.0009435505489818752, 0.02572452649474144, -0.013264209032058716, 0.0037401390727609396, 0.00033381933462806046, 0.009067622944712639, 0.005998529028147459, -0.009163000620901585, -0.0448271669447422, -0.049650516360998154, 0.008066165260970592, 0.0018377095693722367, -0.0170043483376503, -0.012664697133004665, -0.011908493936061859, 0.031011134386062622, -0.01315520703792572, 0.006553759332746267, 0.004206805024296045, 0.009612634778022766, 0.022386332973837852, 0.04199311137199402, -0.0015924545004963875, 0.011806304566562176, 0.01863938197493553, 0.0024968322832137346, -0.003052062587812543, -0.019129890948534012, -0.023925989866256714, 0.037469517439603806, 0.011002412997186184, -0.020192664116621017, -0.02084667608141899, -0.004026270005851984, -0.0046189697459340096, -0.01670459285378456, 0.04212936386466026, -0.019102640450000763, -0.026446666568517685, 0.0031780963763594627, 0.049841269850730896, 0.0006527360528707504, 0.007902662269771099, -0.012848637998104095, -0.016936222091317177, -0.033109426498413086, -0.024389250203967094, -0.0033245680388063192, -0.002341844839975238, 0.042565371841192245, 0.02406224235892296, -0.011417984031140804, 0.003954737447202206, 0.01896638795733452, -0.012794137001037598, -0.0021817476954311132, -0.01200387068092823, -0.015369314700365067, -0.014333793893456459, 0.018857385963201523, -0.028013573959469795, 0.0024712849408388138, 0.016323084011673927, -0.007384901400655508, -0.007861785590648651, -0.008216043002903461, -0.007344025187194347, 0.02883109077811241, 0.015273937955498695, 0.0036413557827472687, 0.01756298542022705, 0.006982955615967512, -0.010246209800243378, 0.008604363538324833, -0.005644272081553936, -0.00662188557907939, -0.007269086316227913, 0.0024252997245639563, -0.012589758262038231, 0.033572688698768616, 0.008543049916625023, 0.03954055905342102, -0.0036617936566472054, -0.0006650839350186288, -0.041093841195106506, -0.0001661645364947617, -0.005048166029155254, 0.0338996946811676, -0.014361044391989708, 0.01467442512512207, -0.036052487790584564, -0.006066655274480581, -0.0021953731775283813, 0.002290750155225396, -0.01442917063832283, -0.026024283841252327, -0.012024308554828167, -0.0026398978661745787, 0.008393172174692154, -0.022876843810081482, -0.008910932578146458, 0.007636968977749348, -0.029648607596755028, -0.011016038246452808, -0.04240186884999275, -0.02557464875280857, -0.002048901282250881, -0.009558132849633694, 0.006710450164973736, -0.008767867460846901, -0.022018451243638992, -0.01673184335231781, 0.02229095622897148, -0.019416023045778275, -0.016895346343517303, 0.005235513672232628, -0.010995600372552872, 0.003213862655684352, 0.018503129482269287, 0.0013931847643107176, 0.008461298421025276, -0.02160969190299511, 0.006318723317235708, 0.002515567233785987, 0.0032274879049509764, 0.015955202281475067, 0.02741406112909317, -0.008543049916625023, -0.01888463646173477, 0.03714251145720482, 0.010886598378419876, 0.017998993396759033, 0.02256346121430397, -0.033627189695835114, 0.019593151286244392, -0.017167851328849792, 0.007841347716748714, -0.015382939949631691, -0.006918235216289759, -0.019075389951467514, -0.0014902648981660604, -0.014483671635389328, 0.014565423130989075, 0.0006795608205720782, 0.02569727599620819, 0.021473439410328865, 0.017522109672427177, -0.010770782828330994, 0.008842806331813335, -0.000142533186590299, -0.0068228584714233875, 0.011867618188261986, -0.024116743355989456, 0.02477075718343258, 0.0007353393011726439, -0.011302169412374496, -0.014592673629522324, 0.010525528341531754, -0.01066859345883131, 0.0038695791736245155, 0.032128408551216125, 0.013059830293059349, 0.012998516671359539, -0.023380978032946587, -0.004993664566427469, 0.035262223333120346, 0.018598506227135658, 0.03275517001748085, -0.011949369683861732, 0.00409098993986845, 0.009667135775089264, 0.007507528644055128, 0.02133718691766262, 0.016718218103051186, -0.009053997695446014, -0.01768561266362667, 0.0302753709256649, -0.0006489038933068514, 0.008338671177625656, 0.0413118451833725, 0.01967490278184414, 0.0387502945959568, -0.008617988787591457, 0.02538389526307583, -0.005674928892403841, 0.0062437839806079865, 0.006202908232808113, 0.01455179788172245, -0.030874881893396378, 0.031201889738440514, -0.00812066625803709, 0.011608737520873547, 0.013768344186246395, -0.009926015511155128, 0.00369585701264441, -0.0062165334820747375, -0.01238537859171629, -0.017154226079583168, 5.780098945251666e-05, 0.019783904775977135, -0.03229191154241562, 0.018489504233002663, 0.013441338203847408, 0.012412629090249538, 0.021228184923529625, 0.012535256333649158, 0.011615550145506859, 0.007555217016488314, -0.009742074646055698, 0.013066642917692661, -0.008543049916625023, 0.008045727387070656, -0.016936222091317177, -0.014878804795444012, -0.01212649792432785, 0.01707247458398342, -0.027850070968270302, 0.011683676391839981, -0.01621408201754093, -0.0016673934878781438, 0.0035119156818836927, -0.001444279565475881, 0.005514831747859716, 0.001474936492741108, 0.01430654339492321, -0.017181476578116417, -0.028994593769311905, 0.028313329443335533, 0.004956195130944252, 0.007112395484000444, -0.00824329350143671, -0.01624133251607418, -0.0044759041629731655, -0.005998529028147459, 0.0038014529272913933, 0.013223333284258842, -0.020574171096086502, -0.009701198898255825, -0.007126020733267069, -0.0015813839854672551, 0.014388294890522957, 0.04199311137199402, -0.006519696209579706, -0.017699237912893295, 0.015314813703298569, 0.02077854983508587, 0.0069318609312176704, -0.020519670099020004, -0.026514792814850807, 0.024457376450300217, -0.017971742898225784, -0.03256441652774811, -0.011670051142573357, -0.006131375674158335, -0.013843283988535404, 0.0036277305334806442, 0.008747429586946964, -0.027768319472670555, -0.023530857637524605, -0.01455179788172245, 0.002849386539310217, -0.011288544163107872, 0.0035425724927335978, 0.016786344349384308, 0.02646029181778431, 0.0038661728613078594, -0.033872444182634354, 0.005460330750793219, 0.019579526036977768, 0.0607142448425293, -0.0008967136964201927, -0.005681741517037153, 0.028912842273712158, -0.018653007224202156, -0.014415545389056206, -0.025097763165831566, -0.03564373031258583, 0.04916000738739967, 0.02231820672750473, -0.009108498692512512, 0.004435028415173292, 0.01863938197493553, -0.004155710339546204, 0.018612131476402283, -0.005627240054309368, 0.008951808325946331, -0.022549835965037346, -0.0045678745955228806, 0.0139522859826684, 0.0038763917982578278, 0.0069114225916564465, 0.024239370599389076, 0.014987806789577007, 0.04678920656442642, 0.02587440423667431, 0.025165891274809837, 0.0049698203802108765, 0.0015251797158271074, -0.017944492399692535, -0.028286078944802284, 0.005685147829353809, 1.460991825297242e-05, 0.011506548151373863, -0.03340918570756912, 0.03422670066356659, 0.008488548919558525, -0.01614595577120781, -0.014756177552044392, 0.010416525416076183, -0.01220143772661686, 0.03147439286112785, -0.003217268968001008, -0.0014451311435550451, 0.018598506227135658, -0.025492897257208824, -0.010184896178543568, 0.02719605714082718, -0.004806317389011383, -0.0038423286750912666, 0.01663646660745144, 0.023898739367723465, -0.019824780523777008, 0.01989290677011013, 0.007296336814761162, -0.017399480566382408, -0.011159103363752365, -0.02195032499730587, -0.033572688698768616, -0.029294349253177643, -0.0388047955930233, -0.011336232535541058, -0.0062948791310191154, -0.017671987414360046, -0.014224790968000889, -0.03548022732138634, -0.025125015527009964, -0.008304608054459095, -0.027087055146694183, 0.004339651204645634, -0.017821865156292915, -0.028040824458003044, -0.0376330204308033, 0.012903138995170593, 0.02646029181778431, 0.01964765228331089, 0.0053751724772155285, 0.007636968977749348, -0.00782772246748209, 0.0023265164345502853, 0.002047198126092553, -0.02077854983508587, 0.010614092461764812, -0.02983936108648777, 0.005473956000059843, -0.008924557827413082, -0.017385855317115784, 0.0030946414917707443, 0.0045065609738230705, 0.015600944869220257, -0.01140435878187418, -0.012726010754704475, 0.02332647703588009, 0.009292440488934517, 0.029239848256111145, 0.005886120721697807, 0.013761531561613083, -0.014987806789577007, 0.018189746886491776, -0.04828798770904541, 0.006982955615967512, -0.027277808636426926, -0.011847180314362049, -0.016445711255073547, 0.030493374913930893, 0.02817707695066929, -0.015451066195964813, -0.01682722009718418, 0.0037026696372777224, -0.012337690219283104, 0.011697301641106606, -0.010491465218365192, -0.020056411623954773, -0.012610196135938168, 4.771508974954486e-05, -0.017644736915826797, 0.00745302764698863, 0.01502868253737688, 0.030030114576220512, -0.012303627096116543, -0.002725055906921625, -0.011383920907974243, 0.036979008466005325, 0.008904119953513145, -0.00782772246748209, 0.02111918292939663, 0.007739158347249031, -0.007589280605316162, -0.0340086966753006, -0.009381004609167576, -0.0041829608380794525, 0.0004990258603356779, -0.015982452780008316, -0.01108416449278593, -0.021895824000239372, -0.0012356424704194069, -0.010784408077597618, 0.014088538475334644, -0.008052540011703968, 0.004441841039806604, -0.041802357882261276, 0.0036345431581139565, 0.00856348779052496, -0.004411184228956699, 0.00610071886330843, -0.02701892890036106, -0.014088538475334644, 0.009721636772155762, 0.0076029058545827866, 0.027127930894494057, -0.008924557827413082, -0.007350838277488947, -0.03662475198507309, -0.02812257595360279, -0.015015057288110256, -0.02099655568599701, -0.002341844839975238, 0.003384178737178445, 0.040112823247909546, 0.015396565198898315, 0.02075129933655262, 0.0127396360039711, 0.01072990708053112, 0.008297794498503208, -0.017699237912893295, 0.004305588081479073, -0.014851554296910763, -0.0224680844694376, 0.003937705419957638, -0.02072404883801937, 0.017017973586916924, -0.012392191216349602, -0.0007774924742989242, -0.011922119185328484, -0.00214087194763124, 0.012399003840982914, 0.006206314545124769, -0.007807285059243441, -0.037496767938137054, -0.03305492550134659, -0.0005611911765299737, 0.04567193612456322, -0.001476639648899436, 0.009851076640188694, -0.03785102441906929, -0.00758246798068285, 0.016282208263874054, -0.010218959301710129, 0.03986756503582001, -0.009237939491868019, 0.018339626491069794, -0.014919680543243885, -0.004663251806050539, 0.01722235232591629, -0.012276376597583294, -0.015178561210632324, 0.00031678774394094944, -0.04076683521270752, -0.003726513823494315, 0.00610071886330843, 0.01915714144706726, 0.008958620950579643, -0.0030656878370791674, 0.004472497850656509, 0.024798007681965828, 0.024661755189299583, -0.002115324605256319, -0.013107518665492535, 0.010464214719831944, -0.025492897257208824, -0.008522612042725086, -0.03509872034192085, 0.001606931327842176, 0.03103838488459587, -0.01048465259373188, -0.0022873436100780964, 0.006741106975823641, 0.020955679938197136, -0.022890469059348106, -0.01654108799993992, 0.013059830293059349, -0.0164184607565403, 0.03201940655708313, 0.015205811709165573, 0.008747429586946964, 0.004278337582945824, 0.011935744434595108, -0.015246687456965446, 4.534663094091229e-05, -0.0004253641818650067, -5.8226778492098674e-05, -0.0009180031483992934, 0.054991625249385834, -0.015192186459898949, -0.019143516197800636, 0.014510922133922577, -0.0017610673094168305, 0.00971482414752245, -0.03174690157175064, 0.023830613121390343, 0.0030299213249236345, -0.008665677160024643, -0.031447142362594604, -0.04103934019804001, -0.005473956000059843, 0.006451569497585297, -0.014565423130989075, 0.020206289365887642, 0.002989045577123761, 0.0109002236276865, -0.0005526753957383335, 0.025997033342719078, -0.022454459220170975, 0.017998993396759033, -0.0034659304656088352, 0.010743532329797745, -0.010246209800243378, -0.007732345722615719, -0.0006885023904033005, -0.006802420597523451, 0.007384901400655508, 0.013679780066013336, -0.01930702105164528, 0.012937202118337154, 0.014919680543243885, 0.016377585008740425, -0.004407777916640043, 0.00041748705552890897, -0.019129890948534012, 0.027986323460936546, -0.009047185070812702, -0.009244752116501331, 0.0003457414568401873, -0.015396565198898315, 0.029267098754644394, -0.04057608172297478, -0.005937215406447649, 0.003358631394803524, -0.0019364927429705858, 0.0023605795577168465, -0.0012501192977651954, -0.010246209800243378, -0.020083662122488022, 0.004605344496667385, 0.005133323837071657, -0.014129414223134518, -0.0009401442366652191, 0.012869075872004032, 0.011690489016473293, -0.01092747412621975, -0.014183915220201015, -0.005681741517037153, -0.0020982930436730385, 0.005729429889470339, 0.011261292733252048, -0.01771286316215992, -0.010975162498652935, 0.03591623529791832, -0.01786274090409279, 0.005484174937009811, 0.019198019057512283, 0.029049094766378403, -0.03760576993227005, 0.03011186607182026, -0.009435505606234074, -0.00011602776794461533, 0.021378062665462494, -0.008311420679092407, -0.03054787591099739, -0.035507477819919586, 0.016009703278541565, 0.0022873436100780964, -0.0013948879204690456, -0.008706552907824516, 0.007194147445261478, 0.021051056683063507, 0.004435028415173292, -0.015301188454031944, -0.008032102137804031, -0.011077351868152618, 0.009278815239667892, -0.0096875736489892, 0.01746760867536068, -0.015246687456965446, 0.018407752737402916, -0.011411171406507492, 0.009053997695446014, -0.003999019507318735, -0.021691443398594856, -0.013843283988535404, -0.014170289970934391, 0.010954724624752998, -0.012882701121270657, 0.007541591767221689, -0.006018966902047396, -0.03414494916796684, -0.01639121025800705, 0.027468562126159668, 4.0210539737017825e-05, -0.0062437839806079865, 0.02400774136185646, -0.009708011522889137, -0.01719510182738304, 0.016813594847917557, -0.0038661728613078594, -0.03804177790880203, -0.014252041466534138, -0.010416525416076183, -0.03572548180818558, -0.005429673939943314, -0.019947407767176628, 0.0376875214278698, 0.0003350967017468065, -0.014456421136856079, -0.0242802482098341, -0.015464691445231438, -0.03060237690806389, -0.0025939124170690775, -0.015791699290275574, 0.008256918750703335, 0.02861308678984642, 0.03648849576711655, 0.012242313474416733, 0.022645214572548866, -0.008665677160024643, 0.02648754231631756, -0.03035712242126465, -0.00962626002728939, -0.02320384979248047, -0.025779027491807938, 0.033163927495479584, -0.025397520512342453, -0.03011186607182026, 0.002646710490807891, 0.009053997695446014, -0.018407752737402916, -0.00482675526291132, 0.028095325455069542, 0.008713365532457829, -0.018026243895292282, 0.00023077816877048463, -0.008604363538324833, 0.01621408201754093, 0.0028647149447351694, 0.00962626002728939, -0.030929382890462875, 0.015927951782941818, 0.01226275134831667, 0.007739158347249031, -0.021473439410328865, 0.017508484423160553, 0.018026243895292282, -0.01949777454137802, 4.94448613608256e-05, -0.020219914615154266, -0.004751815926283598, -0.012719198130071163, 0.007711907848715782, -0.0010840612230822444, 0.009306065738201141, -0.009755699895322323, 0.028449581936001778, 0.0013906300300732255, -0.016581963747739792, -0.009183438494801521, 0.011860805563628674, 0.004622376058250666, 0.005238919984549284, 0.027250558137893677, -0.03618874028325081, -0.01626858301460743, -0.01786274090409279, 0.023953240364789963, 0.008202417753636837, -0.0224680844694376, -0.006380036938935518, -0.009612634778022766, -0.026623794808983803, -0.008999496698379517, 0.012889513745903969, -0.0035425724927335978, 0.014565423130989075, -0.016868095844984055, 0.00672407541424036, -0.02192307449877262, -0.019579526036977768, -0.010416525416076183, -0.024784382432699203, -0.0212690606713295, 0.0081819798797369, 0.01599607802927494, -0.03883204609155655, -0.013550340197980404, 0.01196980755776167, -0.00812066625803709, 0.0013565667904913425, 0.21527941524982452, 0.00678538903594017, -0.0016154471086338162, 0.0387502945959568, 0.00959219690412283, -0.007350838277488947, 0.005766899324953556, 0.015178561210632324, 0.010225771926343441, 0.028531335294246674, 0.001210095128044486, -0.008284169249236584, -0.022822342813014984, -0.006131375674158335, 0.011118227615952492, -0.030220868065953255, -0.019702153280377388, -0.015260312706232071, -0.0033007238525897264, 0.010178083553910255, 0.013543527573347092, 0.0048437868244946, -0.0018274905160069466, -0.006414100062102079, 0.02934885025024414, 0.025492897257208824, -0.0030333276372402906, 0.012719198130071163, 0.01626858301460743, 0.006925048306584358, -0.026719171553850174, -0.0003155103768222034, 0.02195032499730587, -0.012187812477350235, -0.012187812477350235, 0.008216043002903461, 0.013993161730468273, -0.014006786979734898, 0.0020540107507258654, 0.009857889264822006, 0.008434047922492027, -0.013434525579214096, 0.016323084011673927, -0.025411145761609077, 0.022209204733371735, -0.012439879588782787, -0.0044145905412733555, -0.006581009831279516, 0.012937202118337154, 0.024389250203967094, -0.011281730607151985, 0.0032274879049509764, 0.005995122715830803, 0.015396565198898315, -0.009490006603300571, -0.01214012410491705, -0.0029686077032238245, 0.003849141299724579, -0.030711378902196884, 0.0139522859826684, -0.02253621071577072, 0.008134291507303715, -0.01872113347053528, 0.01006908155977726, -0.02741406112909317, 0.01196980755776167, -0.01442917063832283, 0.021691443398594856, -0.0001710611250018701, -0.0036788254510611296, -0.006502664647996426, -0.022032076492905617, -0.024566378444433212, -0.008107041008770466, -0.014497296884655952, -0.01761748641729355, 0.004223836585879326, 0.045235928148031235, 0.042347367852926254, 0.009537694975733757, 0.007418964523822069, 0.00429877545684576, -0.011901681311428547, -0.001144523499533534, -0.009346941486001015, -0.0052048563957214355, 0.0254792720079422, -0.025683650746941566, -0.0025343019515275955, -0.017917241901159286, -0.004455466289073229, -0.0015549849485978484, -0.019838405773043633, 0.00010777808347484097, -0.0013165426207706332, -0.01502868253737688, 0.0035834484733641148, 0.019606776535511017, -0.009926015511155128, -0.014946931041777134, -0.03079313039779663, 0.0534655936062336, 0.015437440946698189, 0.02462087944149971, -0.021718695759773254, -0.0021374656353145838, -0.004479310475289822, 0.021568816155195236, 0.0016537682386115193, 0.002980529796332121, -0.012950827367603779, -0.022372707724571228, 0.011615550145506859, 0.007384901400655508, 0.009789763018488884, 0.02477075718343258, 0.02219557948410511, -0.0019194611813873053, -0.028940092772245407, 0.0013693405780941248, 0.018503129482269287, -0.011308982037007809, -0.0007800472085364163, 0.011417984031140804, -0.021405313163995743, -0.030929382890462875, -0.009258377365767956, 0.019933782517910004, -0.023040346801280975, -0.04076683521270752, 0.011595112271606922, -0.023953240364789963, 0.014252041466534138, -0.007950350642204285, 0.009885139763355255, 0.018871011212468147, 0.0048437868244946, -0.013625279068946838, -0.007425777148455381, 0.006567384582012892, -0.003482962027192116, -0.005967872217297554, 0.015382939949631691, -0.006196095608174801, 0.03422670066356659, 0.01344815082848072, -0.0037844213657081127, 0.013134769164025784, -0.0073167746886610985, -0.021051056683063507, 0.00582480663433671, 0.024784382432699203, 0.00335352192632854, 0.011179541237652302, 0.032891422510147095, -0.017849115654826164, -0.028340579941868782, -0.02765931561589241, 0.014292918145656586, -0.003723107511177659, -0.031092887744307518, -0.002444034442305565, 0.03760576993227005, 0.013039392419159412, -0.028967343270778656, 0.00039811362512409687, -0.17385856807231903, 0.011063726618885994, 0.020247165113687515, -0.007126020733267069, 0.006717262789607048, 0.03444470465183258, 0.012037933804094791, -0.002825542353093624, -0.029757609590888023, 0.0022311394568532705, 0.0037844213657081127, 0.0037435453850775957, -0.02775469422340393, -0.03106563538312912, 0.004295369144529104, -0.01267832238227129, -0.005535269621759653, 0.03057512640953064, 0.04390064999461174, -0.011492922902107239, 0.027155181393027306, -0.01369340531527996, 0.005014102905988693, -0.023108473047614098, 0.01639121025800705, 0.016336709260940552, -0.023367352783679962, 0.0328369215130806, 0.0034591176081448793, -0.02609241008758545, -0.0012569320388138294, -0.011506548151373863, 0.01048465259373188, 0.009197063744068146, -0.00776640884578228, -0.003753764322027564, 0.016677342355251312, 0.0031355172395706177, -0.019715778529644012, 0.027482187375426292, 0.03439020365476608, 6.509929335152265e-06, 0.030248120427131653, 0.0069761429913342, 0.026787297800183296, 0.03250991553068161, 0.020710423588752747, -0.020574171096086502, 0.019198019057512283, -0.005385391414165497, 0.01697709783911705, -0.016227707266807556, -0.006925048306584358, -0.025492897257208824, 0.007248648442327976, 0.001541359699331224, 0.0027318685315549374, 0.02569727599620819, -0.020247165113687515, -0.012964452616870403, -0.0010287085315212607, -0.01761748641729355, -0.00837954692542553, 0.008808743208646774, -0.025656400248408318, -0.04106659069657326, -0.007977601140737534, 0.025642774999141693, -0.0091016860678792, 0.012180999852716923, 0.0025002385955303907, -0.005368359852582216, -0.005855463910847902, 0.0045883129350841045, 0.023217475041747093, 0.01025302242487669, -0.03210115805268288, 0.010981975123286247, 0.03305492550134659, 0.012848637998104095, 0.02366711013019085, 0.0014902648981660604, 0.005102667026221752, -0.002072745468467474, -0.022399958223104477, -0.0049119130708277225, 0.01117272861301899, 0.008951808325946331, 0.00034744461299851537, 0.012269563972949982, 0.0376330204308033, -0.021541565656661987, 0.016036953777074814, -0.014701676554977894, 0.021596066653728485, 0.0118199298158288, 0.034063197672367096, 0.001946711796335876, 0.01502868253737688, -0.015083183534443378, -0.00301629607565701, 0.020342541858553886, -0.03520772233605385, 0.0030248118564486504, 0.03782377392053604, 0.012255938723683357, 0.024307498708367348, -0.010293898172676563, 0.034362953156232834, -0.014047662727534771, -0.029267098754644394, 0.025561023503541946, 0.015696320682764053, 0.0035425724927335978, -0.018462253734469414, 0.0339541956782341, -0.002754009561613202, -0.025928905233740807, -0.006921641994267702, 0.010436964221298695, 0.046244196593761444, -0.027550313621759415, -0.021132808178663254, 0.005089041776955128, -0.00921068899333477, -0.0055488948710262775, -0.10382462292909622, -0.029539605602622032, 0.028013573959469795, 0.013066642917692661, -0.020097287371754646, 0.00872017815709114, -0.003586854785680771, 0.010096332058310509, -0.006254002917557955, 0.018339626491069794, -0.0302753709256649, -0.013332335278391838, 0.005777118261903524, -0.0010789517546072602, 0.0009333316120319068, -0.0023537669330835342, 0.0022941564675420523, -0.029294349253177643, 0.008345483802258968, 0.020928429439663887, 0.016432086005806923, -0.005399016663432121, 0.0199882835149765, 0.01069584395736456, -0.02812257595360279, -0.023830613121390343, -0.025097763165831566, -0.0053751724772155285, 0.018857385963201523, -0.0021953731775283813, 0.046216946095228195, -0.02026079036295414, 0.025056887418031693, -0.004877849947661161, -0.008590738289058208, -0.02259071357548237, -0.022454459220170975, -0.013686592690646648, 0.02222282998263836, -0.008617988787591457, -0.002077855169773102, 0.0003346709127072245, 0.01839412748813629, -0.029757609590888023, 0.004629188682883978, 7.818568701623008e-05, -0.009694386273622513, 0.020764924585819244, 0.013768344186246395, -0.013925035484135151, -0.004748409613966942, -0.03128363937139511, -0.014974181540310383, -0.027100680395960808, 0.029730359092354774, -0.0040398952551186085, 0.004816536325961351, 0.02195032499730587, -0.020833050832152367, 0.011860805563628674, -0.003746951697394252, 0.0023639858700335026, -0.009122123941779137, 0.015709945932030678, 0.003917267546057701, 0.008045727387070656, -0.004874443635344505, 0.011772241443395615, 0.005381985101848841, 0.004121646750718355, -0.008072977885603905, 0.0016895346343517303, -0.02560189925134182, -0.0019075390882790089, -0.020070036873221397, 0.008870056830346584, 0.0032939112279564142, -0.025901654735207558, 0.0028374644462019205, 0.015369314700365067, -0.03490796312689781, -0.015573694370687008, 0.014647174626588821, -0.03981306403875351, -0.007132833823561668, 0.0037844213657081127, -0.0006510328385047615, -0.007841347716748714, 0.013897784985601902, -0.03812352940440178, 0.011043288744986057, 0.02400774136185646, 0.02158244140446186, 0.010307523421943188, -0.011029663495719433, 0.0023997523821890354, -0.013897784985601902, 0.00549439387395978, 0.008134291507303715, -0.005852057132869959, -0.002249874174594879, -0.005865682847797871, -0.052021317183971405, -0.003654981032013893, 0.01286226324737072, -0.0009018231648951769, 0.019007263705134392, -0.03809627890586853, -0.01315520703792572, -0.009973703883588314, -0.003566416911780834, 0.0045508430339396, -0.0448271669447422, 0.008611176162958145, -0.005845244508236647, -0.0011010929010808468, -0.025765402242541313, -0.014756177552044392, 0.012460317462682724, -0.0038457349874079227, 0.017821865156292915, 0.0004194031353108585, -0.010000954382121563, 0.007889037020504475, 0.01066859345883131, 0.03226466104388237, -0.008999496698379517, 0.024321123957633972, -0.031447142362594604, 0.0068228584714233875, -0.01505593303591013, -0.024634504690766335, 0.028940092772245407, -0.0029720140155404806, -0.0068535152822732925, 0.0029038875363767147, -0.008406797423958778, -0.03708801046013832, -0.015505567193031311, 0.011853992938995361, 0.008938183076679707, 0.009673948399722576, 0.0038627665489912033, -0.012378565967082977, 0.022250080481171608, -0.013877347111701965, -0.014034037478268147, -0.010307523421943188, -0.01054596621543169, -0.028667587786912918, 0.0015285860281437635, 0.012364940717816353, 0.026855425909161568, 0.0013557152124121785, -0.03057512640953064, -0.024634504690766335, -0.005037947092205286, -0.015791699290275574, -0.0055488948710262775, 0.035807233303785324, -0.007950350642204285, -0.013182457536458969, 0.052293822169303894, 0.004312400706112385, 0.013563965447247028, -0.018407752737402916, 0.027618439868092537, -0.01780823990702629, -0.040358077734708786, -0.012528443709015846, 0.012664697133004665, -0.03180140256881714, -0.015001432038843632, -0.025043262168765068, 0.022359082475304604, 0.01774011366069317, 0.02148706465959549, 0.002915809629485011, 0.011595112271606922, -0.021228184923529625, -0.0018819916294887662, 0.03182865306735039, 0.012610196135938168, -0.004435028415173292, -0.018598506227135658, 0.022549835965037346, 0.021010180935263634, 0.0011836960911750793, -0.013318710029125214, 0.02388511411845684, 0.026269538328051567, -0.0035391661804169416, -0.0017508483724668622, -0.0012552288826555014, -0.005497800186276436, 0.0003025237820111215, -0.004745003301650286, 0.01327783428132534, -0.017522109672427177, -0.00013689148181583732, 0.039649561047554016, 0.01430654339492321, 0.00793672539293766, 0.02464812994003296, -0.016336709260940552, -0.013822845183312893, 0.00448952941223979, 0.01442917063832283, -0.015887076035141945, -0.023340102285146713, 0.01085253432393074, 0.017549360170960426, -0.0018274905160069466, -0.020833050832152367, 0.007575655356049538, 0.013114331290125847, 0.001407661591656506, 0.00622334610670805, -0.009673948399722576, -0.02526126801967621, -0.02883109077811241, 0.002036979189142585, 0.009190251119434834, 0.02229095622897148, 0.01621408201754093, -0.008393172174692154, 0.030220868065953255, 0.0041829608380794525, 0.0046973149292171, -0.01734497956931591, 0.01134304516017437, -0.014919680543243885, 0.0002705895167309791, -0.0014510921901091933, 0.005061791278421879, -0.013114331290125847, -0.0021510908845812082, -0.016377585008740425, -0.009019934572279453, 0.018707508221268654, -0.012855450622737408, 0.0971209928393364, 0.025806277990341187, -0.023108473047614098, 0.0013293162919580936, -0.015314813703298569, 0.015941577032208443, 0.012310439720749855, 0.015737196430563927, 0.00022332684602588415, -0.018012618646025658, 0.028940092772245407, -0.007507528644055128, -0.008202417753636837, -0.007711907848715782, -0.021078307181596756, -0.008420422673225403, -0.016650091856718063, -0.001912648556753993, 0.009680761024355888, 0.019470524042844772, 0.021473439410328865, 0.009585384279489517, -0.0036583873443305492, -0.010838909074664116, -0.03324568271636963, -0.012276376597583294, 0.02332647703588009, 0.031229140236973763, 0.005133323837071657, -0.02885834127664566, 0.03449920564889908, -0.003934299107640982, -0.017753738909959793, -0.013250583782792091, -0.006305098067969084, -0.007323587313294411, -0.0026671483647078276, -0.03256441652774811, 0.0059201838448643684, 0.01823062263429165, 0.020887553691864014, 0.023653484880924225, -0.022141078487038612, -0.025806277990341187, 0.0008899010135792196, 0.0145790483802557, 0.00047475582687184215, -0.013931848108768463, -0.0003961975744459778], "6f4df675-71f3-4b0b-8e32-bd4e3e076a3b": [-0.0034786860924214125, -0.004687927663326263, -0.0011457308428362012, -0.02578360214829445, 0.018412986770272255, 0.01694970391690731, -0.035091713070869446, -0.03398070111870766, 0.0038953155744820833, -0.02171892486512661, 0.018589122220873833, 0.03411618992686272, 0.009159072302281857, -0.0050740716978907585, -0.01808781363070011, 0.0020729852840304375, 0.02755851112306118, 0.012370167300105095, 0.003976609092205763, -0.0048166424967348576, -0.024848725646734238, 0.007831278257071972, -0.008352911099791527, -0.00417984277009964, -0.02356157824397087, -0.0035057838540524244, 0.02010660246014595, -0.018805906176567078, -0.012011121027171612, 0.012485332787036896, 0.013589570298790932, -0.018846552819013596, -0.025024861097335815, 0.005033425055444241, -0.010859462432563305, 0.016732919961214066, 0.01505285408347845, 0.02205764688551426, 0.023006072267889977, -0.0006859142449684441, 0.019144628196954727, 0.026501694694161415, 0.004708250984549522, -0.0109610790386796, -0.017044546082615852, 0.02937406674027443, 0.009084553457796574, -0.007357065565884113, -0.01926656998693943, -0.0008925353176891804, -0.0007642439450137317, 0.005243433173745871, -0.023114463314414024, 0.012227903120219707, 0.005514411721378565, -0.008921965956687927, 0.0025471975095570087, 0.010385249741375446, 0.008888093754649162, -0.008027737028896809, 0.007973541505634785, -0.0017562792636454105, -0.0041290344670414925, -0.0028774526435881853, -0.02503840997815132, -0.03300517797470093, -0.018656868487596512, 0.0040748389437794685, -0.025024861097335815, -0.017261328175663948, 0.044928230345249176, 0.02662363462150097, 0.015296734869480133, -0.014023135416209698, -0.001864670543000102, -0.017030997201800346, -0.0227215439081192, -0.029997317120432854, -0.0064086406491696835, -0.003145043971017003, 0.0207840483635664, -0.005497475620359182, -0.026894614100456238, 0.0048572891391813755, 0.02721978724002838, 0.03322196006774902, 0.009247140027582645, 0.012702115811407566, -0.0054805395193398, -0.0061918580904603004, 0.016421295702457428, 0.004809868056327105, 0.026501694694161415, 0.026894614100456238, 0.017979420721530914, 0.010432670824229717, 0.0010652841301634908, -0.005439892876893282, -0.014294113963842392, -0.006720265839248896, -0.0065712276846170425, 0.003929188009351492, -0.021258261054754257, -0.00990426354110241, -0.016502588987350464, -0.019957564771175385, 0.011116892099380493, -0.016692273318767548, 0.01253952831029892, 0.02796497754752636, -0.032381925731897354, 0.029021793976426125, 0.0004648974281735718, -0.0053382758051157, -2.6674442779039964e-05, 0.010344603098928928, 0.03346583992242813, -0.02497066557407379, -0.011956924572587013, -0.015079951845109463, -0.003793698502704501, 0.0026098613161593676, 0.03883121535181999, 0.009511344134807587, 0.023304147645831108, 0.011150764301419258, -0.0014514283975586295, -0.011774014681577682, 0.002623410429805517, -0.006964146625250578, 0.019564645364880562, 0.00779740558937192, 0.008285166695713997, 0.007031891494989395, -0.021827315911650658, -0.0030976226553320885, -0.008671310730278492, 0.005931041203439236, 0.0006647440604865551, -0.024117084220051765, 0.00030061675352044404, 0.017464563250541687, 0.01195015013217926, -0.012424362823367119, -0.010839139111340046, 0.04780060052871704, -0.012817281298339367, 0.03105413354933262, -0.012830830179154873, 0.0027114783879369497, 0.0077161118388175964, -0.03427877649664879, -0.030051512643694878, -0.003058669390156865, 0.010927206836640835, 0.019090432673692703, 0.0009924586629495025, 0.026244264096021652, -0.013901195488870144, 0.0038241837173700333, 0.014659935608506203, 0.022870583459734917, -0.001942576956935227, -0.0026792995631694794, 0.0013667476596310735, 0.029699239879846573, 0.015215440653264523, -0.016556784510612488, -0.02262670174241066, -0.021461494266986847, 0.011624976061284542, 0.02796497754752636, -0.02507905662059784, 0.022138940170407295, 0.0056126415729522705, 0.0221524890512228, 0.0029418100602924824, 0.006005560513585806, -0.019794976338744164, -0.03094574064016342, 0.02880501188337803, 0.0077093373984098434, -0.014659935608506203, 0.010988176800310612, -0.01290534995496273, 0.0008840672671794891, 0.02614942193031311, 0.035498179495334625, 0.00649670884013176, -0.01166562270373106, 0.0032652905210852623, 0.013528600335121155, -0.016136767342686653, -0.01413152739405632, -0.6247679591178894, 0.0018782195402309299, 0.014592190273106098, -0.010053301230072975, 0.003580302931368351, 0.015337381511926651, 0.0063747684471309185, 0.007824502885341644, -0.001172828720882535, 0.04257071763277054, 0.013765706680715084, -0.003292388515546918, -0.020987283438444138, -0.00713350810110569, -0.013230524025857449, -0.016231609508395195, -0.0019595131743699312, -0.012444686144590378, -0.0005131654907017946, -0.005981849506497383, -0.02755851112306118, 0.024144181981682777, -0.004240813199430704, -0.004989391192793846, -0.011171087622642517, -0.003136575687676668, 0.008562919683754444, -0.003644660348072648, -0.0031264140270650387, 0.05324726924300194, -0.030187001451849937, 0.016773566603660583, 0.01615031622350216, -0.007722886279225349, 0.042516522109508514, -0.026813318952918053, -0.003212788375094533, 0.02430676855146885, 0.007424809969961643, 0.019361412152647972, -0.0219221580773592, -0.01597418077290058, 0.02460484579205513, 0.030132805928587914, -0.01822330243885517, 0.00230331695638597, 0.006683006417006254, -0.0002980763092637062, -0.012783409096300602, -0.012715664692223072, 0.004948744084686041, -0.0036412731278687716, -0.00807515811175108, -0.008420655503869057, 0.022233784198760986, 0.003644660348072648, 0.010134594514966011, -0.016841311007738113, 0.009253914467990398, 0.001554738963022828, -0.008312264457345009, -0.005582156591117382, -0.021231163293123245, -0.044901132583618164, -0.04736703634262085, 0.01461928803473711, -0.02433386631309986, -0.007072538137435913, -0.02208474464714527, -0.012851153500378132, 0.03528139740228653, -0.016475491225719452, 0.006876078899949789, -0.0003287731087766588, 0.007370614446699619, 0.019496900960803032, 0.03276129812002182, -0.008095481432974339, 0.007980315946042538, 0.016123218461871147, 0.015201891772449017, -0.00990426354110241, -0.014524445869028568, -0.03289678692817688, 0.035362690687179565, 0.004762446507811546, 0.0013692880747839808, -0.01856202445924282, -0.003681920003145933, -0.0076483674347400665, -0.0030535885598510504, 0.02528229169547558, -0.025864895433187485, -0.041676487773656845, 0.009755224920809269, 0.04988713562488556, -0.008217422291636467, 0.013454081490635872, 0.0021288746502250433, -0.009579088538885117, -0.027910782024264336, -0.0038546686992049217, 0.012830830179154873, 0.0013023902429267764, 0.025322938337922096, 0.021610533818602562, -0.02480807900428772, -0.0003114135470241308, 0.01789812743663788, -0.02114987000823021, -0.007147056981921196, -0.024076437577605247, -0.011509810574352741, -0.006459449417889118, 0.02671847678720951, -0.02755851112306118, 7.907066901680082e-05, 0.019551096484065056, -0.01146238949149847, 0.0038682175800204277, -0.013535374775528908, -0.02091953717172146, 0.02366996929049492, 0.016231609508395195, 0.013826676644384861, 0.018142009153962135, 0.00931488536298275, -0.007831278257071972, 0.0006228270940482616, -0.005880232900381088, -0.01111011765897274, -0.008610340766608715, 0.01812846027314663, -0.0005144356982782483, 0.040673866868019104, -0.004721799865365028, 0.028181761503219604, -0.00498600397258997, 0.0032957757357507944, -0.041270021349191666, -0.008888093754649162, 0.01552706677466631, 0.022707995027303696, -0.02181376703083515, -0.0020035470370203257, -0.025268742814660072, -0.0010610501049086452, -0.0025742955040186644, -0.007526427041739225, 0.012864703312516212, -0.01699035055935383, -0.004423723556101322, -0.0026149421464651823, 0.017369719222187996, -0.020350482314825058, -0.011774014681577682, 0.009701029397547245, -0.04121582582592964, 0.005954751744866371, -0.02104147896170616, -0.010852687992155552, -0.0017918451922014356, 0.001017862930893898, 0.015201891772449017, -0.013806353323161602, -0.026406852528452873, -0.00677107460796833, 0.023453187197446823, -0.014795424416661263, -0.009457148611545563, -0.005243433173745871, -0.007953218184411526, 0.013298268429934978, 0.015201891772449017, 0.007973541505634785, 0.005700709763914347, -0.027639804407954216, 0.0038275709375739098, -0.0076280441135168076, 0.0058023263700306416, 0.012525979429483414, 0.032571613788604736, -0.007411261089146137, -0.008542596362531185, 0.03837054967880249, 0.014443152584135532, 0.017166486009955406, 0.028642423450946808, -0.04072806239128113, 0.0050605228170752525, -0.01297309435904026, 0.021231163293123245, -0.02138020098209381, -0.003891928354278207, -0.027517864480614662, -0.021596984937787056, -0.02178666926920414, -0.0009348757448606193, 0.0057955519296228886, 0.017044546082615852, 0.022166039794683456, 0.002394772134721279, 0.002579376334324479, 0.01341343391686678, -0.008271617814898491, -0.007756758946925402, 0.0063612195663154125, -0.024496452882885933, 0.009389404207468033, -0.0018121685134246945, -0.012227903120219707, -0.013968939892947674, 0.006642359774559736, -0.016001278534531593, 0.004349204245954752, 0.0390750952064991, 0.012146609835326672, 0.018873650580644608, -0.005693935323506594, -0.01211951207369566, 0.019225923344492912, 0.01367763802409172, 0.018385889008641243, -0.010642679408192635, -0.012282099574804306, 0.008197098970413208, 0.007722886279225349, 0.027802390977740288, 0.01997111365199089, -0.02587844431400299, -0.0015352624468505383, 0.03780149668455124, -0.007329967804253101, 0.009484246373176575, 0.043654631823301315, -0.007810954470187426, 0.034495558589696884, 0.005582156591117382, 0.01483607105910778, -0.000777369481511414, 0.002979069482535124, -0.008095481432974339, 0.019429156556725502, -0.025471976026892662, 0.028479836881160736, 0.008020962588489056, 0.02269444614648819, 0.0076890140771865845, -0.020025309175252914, 0.005121493246406317, -0.008495175279676914, -0.00980264600366354, -0.005666837096214294, -0.007722886279225349, 0.0278294887393713, -0.027883684262633324, 0.022938327863812447, 0.0103920241817832, 0.005836199037730694, 0.014863168820738792, 0.002006934257224202, 0.01547287032008171, 0.0030247971881181, -0.0069201127626001835, 0.013128906488418579, -0.01225500088185072, 0.00015189613623078912, -0.02601393312215805, -0.006500096060335636, -0.00276906113140285, 0.008319038897752762, -0.01299341768026352, 0.014822522178292274, -0.011171087622642517, 0.007187704090029001, 0.005673611536622047, -0.004860676359385252, 0.004914871882647276, 0.004162906669080257, 0.012593724764883518, -0.017843931913375854, -0.030187001451849937, 0.027910782024264336, 0.011787563562393188, 0.00641202786937356, -0.005649900995194912, -0.01842653565108776, -0.0016478878678753972, -0.001243960577994585, 0.014077331870794296, 0.0043119448237121105, 0.002848661271855235, -0.017478112131357193, 0.0006067377398721874, 0.005883620120584965, 0.0009492714307270944, 0.03357423096895218, -0.0028130952268838882, -0.017681345343589783, 0.006364606786519289, 0.029617946594953537, 0.007445133291184902, -0.02406288869678974, -0.02003885805606842, 0.03094574064016342, -0.01751875877380371, -0.024293219670653343, -0.010717198252677917, -0.008115804754197598, -0.024984214454889297, -0.001038186252117157, 0.005951364524662495, -0.012417588382959366, -0.016570333391427994, -0.004471144638955593, 0.004369528032839298, -0.006632198113948107, -0.009592637419700623, 0.014077331870794296, 0.02335834503173828, 0.002211861778050661, -0.022342175245285034, -0.0006020803120918572, 0.015350930392742157, 0.07603655755519867, -0.01631290465593338, 0.00041705279727466404, 0.02171892486512661, -0.01735617034137249, -0.01983562484383583, -0.022437017410993576, -0.01406378298997879, 0.05311178043484688, 0.03121672011911869, -0.024117084220051765, 0.01742391474545002, 0.001737649436108768, 0.00512826768681407, 0.02503840997815132, -0.006456062197685242, 0.009911037981510162, -0.015757398679852486, -0.016421295702457428, 0.008278392255306244, 0.001440419931896031, -0.00036116348928771913, 0.032707102596759796, 0.006584777031093836, 0.032842591404914856, 0.023642871528863907, 0.019794976338744164, 0.016163865104317665, -0.01089333463460207, -0.02051307074725628, -0.031433504074811935, 0.020269189029932022, -0.0061850836500525475, 0.011990797705948353, -0.029130185022950172, 0.04257071763277054, -0.017261328175663948, -0.002762286690995097, -0.005392471794039011, -0.00785160157829523, -0.013758932240307331, 0.027639804407954216, -0.014781875535845757, -0.0012634370941668749, 0.009037132374942303, -0.018074264749884605, -0.008718732744455338, 0.037449225783348083, -0.01148271281272173, 0.0033364223781973124, 0.027585608884692192, 0.022247333079576492, -0.022518310695886612, 0.011713044717907906, 0.011543682776391506, -0.012668243609368801, -0.004376302473247051, -0.007357065565884113, -0.030051512643694878, -0.024293219670653343, -0.029021793976426125, -0.009992331266403198, -0.019483352079987526, -0.024523550644516945, -0.018020067363977432, -0.033249057829380035, -0.01987627148628235, -0.008921965956687927, -0.031568992882966995, -0.009125200100243092, -0.012729213573038578, -0.01933431439101696, -0.024631943553686142, 0.02117696776986122, 0.022707995027303696, 0.02494356781244278, -0.012315971776843071, -0.0028368057683110237, -0.001073752180673182, 0.0018917684210464358, 0.002020483138039708, -0.019144628196954727, -0.003644660348072648, -0.028750816360116005, 0.002960439771413803, -0.019374961033463478, -0.019429156556725502, -0.0013100114883854985, 0.008474851958453655, 0.014524445869028568, -0.0037428901996463537, -0.013860548846423626, 0.0236293226480484, 0.010703649371862411, 0.0241983775049448, 0.010466543026268482, 0.006313798483461142, -0.009545216336846352, 0.021407298743724823, -0.046472806483507156, 0.016204511746764183, -0.03259871155023575, -0.022653799504041672, -0.012912124395370483, 0.007099635899066925, 0.01441605482250452, -0.01839943788945675, -0.011963699012994766, -0.005372148007154465, -0.02010660246014595, 0.002506550867110491, -0.00367514556273818, -0.021529238671064377, -0.008590017445385456, -0.009362306445837021, -0.014971560798585415, 0.002332108560949564, 0.002430338179692626, 0.007384163327515125, -0.019185274839401245, 0.015892887488007545, -0.02446935512125492, 0.027531413361430168, 0.008170001208782196, -0.010900109075009823, 0.02148859202861786, 0.013291493989527225, -0.0014158624690026045, -0.04192036762833595, 7.462492794729769e-05, 0.017749089747667313, -0.0007426503580063581, -0.01694970391690731, -0.028886305168271065, -0.02101438120007515, 0.0001562360266689211, -0.003441426670178771, 0.01751875877380371, -0.002459129551425576, -0.013122132048010826, -0.050700072199106216, 0.0245371013879776, 0.009396178647875786, -0.009362306445837021, 0.004301783163100481, -0.029292773455381393, -0.028290152549743652, 0.0048234169371426105, 0.008434205316007137, 0.022613152861595154, -0.016069022938609123, -0.011096568778157234, -0.04178487882018089, -0.03354713320732117, -0.02091953717172146, -0.016163865104317665, 0.015919985249638557, 0.00833936221897602, 0.04213715344667435, 0.03167738392949104, 0.027273982763290405, 0.008766153827309608, 0.017803285270929337, 0.030728958547115326, -0.010473317466676235, -0.0012549690436571836, -0.014050234109163284, -0.0025336486287415028, 0.017803285270929337, -0.020865341648459435, -0.01030395645648241, -0.0014175560791045427, -0.006320572923868895, 0.008149677887558937, 0.002394772134721279, 0.006970921065658331, 0.009978782385587692, -0.010751070454716682, -0.0336284264922142, -0.04243522882461548, 0.01547287032008171, 0.04002352058887482, 0.003963060211390257, 0.00787192489951849, -0.025363584980368614, -0.019523998722434044, 0.01054106280207634, -0.00194935139734298, 0.04574116691946983, -0.008603566326200962, 0.02010660246014595, -0.007018342614173889, 0.0056228032335639, 0.016976801678538322, -0.018236851319670677, -0.014429603703320026, -0.000660933437757194, -0.038749922066926956, 0.0008345289970748127, 0.01842653565108776, 0.019293667748570442, 0.009091327898204327, -0.008759379386901855, 0.007228350732475519, 0.01455154363065958, 0.02437451295554638, -0.02637975476682186, -0.02276219241321087, -0.009220042265951633, -0.033384546637535095, -0.013034064322710037, -0.022680897265672684, -0.008874544873833656, 0.023344796150922775, 0.0010745989857241511, -0.002005240647122264, 0.0077025629580020905, 0.01413152739405632, -0.010568160563707352, -0.018643319606781006, 0.01434831041842699, -0.010622356086969376, 0.01839943788945675, 0.007370614446699619, 0.008210647851228714, 0.01455154363065958, 0.007959992624819279, -0.026244264096021652, -0.008583243004977703, -0.0018917684210464358, -0.0048843869008123875, -0.010967853479087353, 0.03910219296813011, -0.02380545809864998, -0.01661098003387451, 0.005812488030642271, 0.001157586113549769, 0.01735617034137249, -0.04072806239128113, 0.026203617453575134, 0.010920432396233082, -0.001151658478192985, -0.03820796310901642, -0.036067236214876175, -0.009883939288556576, 0.006046207156032324, -0.016692273318767548, 0.018575573340058327, 0.009775548242032528, 0.0006198632763698697, -0.011841759085655212, 0.025092605501413345, -0.011164313182234764, 0.027748195454478264, -0.015689654275774956, 0.015608360059559345, 0.0019307215698063374, 0.010757844895124435, 0.00015867059119045734, -0.012675018049776554, 0.0021779893431812525, 0.008325813338160515, -0.04129711911082268, 0.014687033370137215, 0.007194478530436754, 0.02010660246014595, -0.0020306447986513376, 0.005754905287176371, -0.017329072579741478, 0.026677830144762993, -0.0033245671074837446, -0.003292388515546918, 0.014185722917318344, -0.014890266582369804, 0.02923857606947422, -0.021678278222680092, -0.011184636503458023, -0.008867770433425903, 0.005527960602194071, -0.0002758476184681058, 0.011286253109574318, -0.005179075989872217, -0.012966319918632507, -0.0015716751804575324, 0.011733368039131165, -0.011774014681577682, -0.004132421687245369, 0.0018324919510632753, 0.005981849506497383, -0.024618394672870636, -0.013223749585449696, 0.009118425659835339, -0.019442705437541008, 0.009057455696165562, 0.012525979429483414, -0.006550904363393784, -0.0116994958370924, 0.03376391902565956, -0.019618840888142586, 0.015432223677635193, 0.01789812743663788, 0.03200255706906319, -0.04064676910638809, 0.03137930855154991, 0.0006194398738443851, -0.002643733751028776, 0.016394197940826416, 0.001724100555293262, -0.038885410875082016, -0.02608167752623558, 0.011232057586312294, 0.004772608168423176, 0.02044532634317875, -0.0007917652255855501, 0.01461928803473711, 0.025024861097335815, -0.0029045504052191973, -0.021204065531492233, -0.014673484489321709, -0.00036433900822885334, -0.005124880466610193, -0.0012109350645914674, 0.014808973297476768, -0.002572601893916726, 0.016841311007738113, -0.007770307827740908, 0.010622356086969376, -0.011821435764431953, -0.011685946956276894, -0.02631201036274433, -0.015039305202662945, -0.005947977304458618, 0.0040748389437794685, 0.018670417368412018, 0.0017207133350893855, -0.033953603357076645, -0.021935706958174706, 0.03655499592423439, 0.011143989861011505, 0.01089333463460207, 0.021759571507573128, -0.012295648455619812, -0.014050234109163284, 0.018412986770272255, -0.0034922349732369184, -0.04986003786325455, -0.02131245657801628, -0.015608360059559345, -0.0361214317381382, -0.007424809969961643, -0.008854221552610397, 0.03173157945275307, 0.008630664087831974, -0.012837604619562626, -0.026230715215206146, -0.012851153500378132, -0.020553717389702797, -0.002365980762988329, -0.03175867721438408, 0.028886305168271065, 0.018643319606781006, 0.046743787825107574, 0.0038682175800204277, 0.027531413361430168, -0.0050672972574830055, 0.02117696776986122, -0.029753435403108597, -0.01742391474545002, -0.012275325134396553, -0.029482457786798477, 0.028994696214795113, -0.03490202873945236, -0.032978080213069916, -0.0061512114480137825, 0.00021011417265981436, -0.028425641357898712, -0.003321179887279868, 0.029617946594953537, 0.0043051703833043575, -0.00038233367376960814, -0.01369796134531498, -0.012722439132630825, 0.0030993162654340267, 0.0023422702215611935, 0.009863615967333317, -0.038614433258771896, 0.02128535881638527, 0.002967214211821556, 0.007140282541513443, -0.025322938337922096, 0.021393749862909317, 0.025119705125689507, -0.019347863271832466, -0.014375408180058002, -0.023575127124786377, -0.004965680651366711, -0.015093500725924969, -0.025756504386663437, -0.00483357859775424, 0.011015274561941624, 0.0009128586971201003, 0.030972838401794434, -0.004030804615467787, -0.017572954297065735, -0.012248226441442966, 0.021773120388388634, -0.0028300313279032707, 0.0065644532442092896, 0.03186706826090813, -0.02144794538617134, -0.004769220948219299, -0.007580622565001249, 0.020770499482750893, 0.010554611682891846, -0.023575127124786377, -0.025607464835047722, 0.002762286690995097, -0.04473854601383209, -0.003722566645592451, 0.014687033370137215, -0.0050943950191140175, 0.01455154363065958, -0.009186170063912868, 0.00490132300183177, -0.022680897265672684, -0.024496452882885933, -0.008894868195056915, -0.03235482797026634, -0.02605457976460457, 0.0030214099679142237, 0.015865789726376534, -0.02574295550584793, -0.00498600397258997, 0.01102882344275713, -0.011862082406878471, -0.004173068329691887, 0.19933176040649414, 0.013081485405564308, -0.006205406971275806, 0.04186617210507393, 0.020065955817699432, -0.01139464508742094, 0.003942736890166998, 0.004281459841877222, 0.018033618107438087, 0.033520035445690155, -0.0007633971399627626, 0.010927206836640835, -0.022301528602838516, -0.0027927719056606293, 0.009789097122848034, -0.01796587184071541, -0.025255193933844566, -0.016461942344903946, -0.010920432396233082, 0.022301528602838516, 0.0016063941875472665, -0.009809420444071293, -0.012817281298339367, -0.0006075845449231565, 0.024957116693258286, 0.02138020098209381, 0.00800741370767355, 0.0076415929943323135, -0.0006304483395069838, 0.010310730896890163, -0.018724612891674042, -0.00829194113612175, 0.014863168820738792, -0.008874544873833656, -0.016231609508395195, -0.0116994958370924, 0.01463283784687519, -0.029699239879846573, 0.02101438120007515, 0.028019173070788383, 0.0008311417768709362, -0.016936155036091805, 0.0022643639240413904, -0.0114149684086442, 0.012044993229210377, -0.012735988013446331, 0.0054297312162816525, -0.013670863583683968, 0.014172174036502838, 0.03571496158838272, 0.0004691314825322479, 0.006303636822849512, -0.0061715347692370415, 0.004721799865365028, -0.0040883878245949745, 0.0007451907731592655, 0.0007566226995550096, 0.00417984277009964, -0.027775293216109276, 0.029753435403108597, -0.018738161772489548, 0.006513644941151142, -0.01512059848755598, 0.014890266582369804, -0.024157730862498283, 0.016326453536748886, -0.02051307074725628, 0.017532307654619217, 0.010134594514966011, 0.00990426354110241, -0.004271298181265593, -0.004711638204753399, -0.028019173070788383, 0.00045388893340714276, -0.0033584393095225096, -0.008102255873382092, -0.0004471144638955593, 0.04910130053758621, 0.04208295792341232, 0.021800218150019646, 0.0008874544873833656, 0.01919882372021675, -0.013887646608054638, -0.008454528637230396, -0.0035701412707567215, -0.0025692146737128496, 0.030457980930805206, -0.021461494266986847, 0.005920879542827606, -0.01245146058499813, -0.009897488169372082, -0.010873011313378811, -0.013460855931043625, 0.002846967661753297, -0.012952771037817001, -0.008522273041307926, 0.009558765217661858, 0.01419927179813385, 0.003275452181696892, -0.008820349350571632, -0.029726337641477585, 0.03877701982855797, 0.025607464835047722, 0.029048891738057137, -0.02366996929049492, -0.005748130846768618, -0.015228990465402603, 0.026068128645420074, -0.01339311059564352, 0.006943823304027319, -0.007289320696145296, -0.026474596932530403, 0.015486419200897217, 0.008874544873833656, 0.0228299368172884, 0.024659041315317154, 0.0272604338824749, -0.005846360698342323, -0.017396816983819008, -0.000575405836571008, 0.031704481691122055, -0.02524164505302906, -0.00011506000009831041, 0.00039440070395357907, -0.02601393312215805, -0.02054016850888729, -0.0021644404623657465, 0.0007689014310017228, -0.02181376703083515, -0.029861828312277794, 0.006036045495420694, -0.018480731174349785, 0.015012207441031933, -0.017776187509298325, 0.0050401994958519936, -0.0010839138412848115, 0.010344603098928928, -0.025187449529767036, -0.009084553457796574, 0.0028571293223649263, 0.002894388744607568, 0.005717645864933729, 0.00951811857521534, -0.0174916610121727, 0.03398070111870766, 0.005954751744866371, 0.008976161479949951, 0.01448379922658205, 0.002457435941323638, -0.01608257181942463, 0.011272704228758812, 0.027748195454478264, -0.006862529553472996, 0.017572954297065735, 0.02631201036274433, -0.02701655402779579, -0.03354713320732117, -0.024577748030424118, 0.016841311007738113, 0.01190272904932499, -0.024848725646734238, 0.00038953154580667615, 0.03305937349796295, 0.0122685506939888, -0.02110922336578369, 0.003145043971017003, -0.17180034518241882, 0.005920879542827606, 0.022545408457517624, 0.004420336335897446, -0.0015767560107633471, 0.024780981242656708, 0.012444686144590378, -0.010839139111340046, -0.03276129812002182, -0.010602032765746117, 0.004484693519771099, -0.002096695825457573, -0.013582795858383179, -0.01926656998693943, -0.010859462432563305, 0.002896082354709506, -0.011408193968236446, 0.030620567500591278, 0.03484782949090004, -0.015012207441031933, 0.027680451050400734, -0.01058848388493061, 0.0016546623082831502, -0.03286968916654587, 0.013115357607603073, 0.011435291729867458, -0.029428262263536453, 0.03468524292111397, 0.013142455369234085, -0.03192126378417015, -0.0076415929943323135, -0.017342621460556984, 0.01426701620221138, 0.01722068153321743, -0.004698089323937893, 0.002210168167948723, 0.0012041606241837144, -0.004450821317732334, -0.03568786382675171, 0.015459321439266205, 0.03121672011911869, 0.01406378298997879, 0.016231609508395195, -0.013752157799899578, 0.018616221845149994, 0.023940948769450188, 0.019158177077770233, -0.012553077191114426, 0.010378475300967693, -0.005731194745749235, 0.032950982451438904, -0.017803285270929337, -0.0027521250303834677, -0.014876717701554298, 0.008488400839269161, 0.011347223073244095, 0.008312264457345009, 0.0165838822722435, -0.008772928267717361, -0.033167764544487, -0.000823520531412214, -0.013291493989527225, -0.015012207441031933, 0.012160158716142178, -0.0068997894413769245, -0.02721978724002838, -0.02067565731704235, 0.014714131131768227, -0.01789812743663788, 0.01089333463460207, 0.005419569555670023, -0.006998018827289343, -0.005277305841445923, 0.008474851958453655, 0.021596984937787056, -0.008562919683754444, -0.039156388491392136, 0.009782322682440281, 0.041540998965501785, 0.018440084531903267, 0.018114911392331123, 0.011909503489732742, -0.012492107227444649, -0.00037026667268946767, -0.023683518171310425, 0.007980315946042538, 0.014050234109163284, 0.015662556514143944, -0.005030037835240364, 0.010703649371862411, 0.026813318952918053, -0.022382821887731552, 0.02544487826526165, -0.012959545478224754, 0.011963699012994766, 0.018277497962117195, 0.030972838401794434, -0.006283313501626253, 0.01940205879509449, -0.014985109679400921, -0.0027097847778350115, 0.021691827103495598, -0.04024030268192291, 0.004220489878207445, 0.03327615559101105, 0.024862274527549744, 0.024144181981682777, -0.006683006417006254, 0.034224580973386765, -0.01552706677466631, -0.028615325689315796, 0.02894050069153309, 0.022599603980779648, 0.003036652458831668, -0.02503840997815132, 0.033818114548921585, 0.0054297312162816525, -0.013264396227896214, 0.006984469946473837, -0.007539975922554731, 0.04189326986670494, -0.02017434686422348, -0.030430881306529045, 0.0014751390554010868, -0.01826394908130169, -0.008142903447151184, -0.1090417355298996, -0.03441426530480385, 0.03162318840622902, 0.0020374194718897343, -0.003009554697200656, 0.000773558858782053, 0.007824502885341644, 0.012986643239855766, -0.010906883515417576, 0.019984662532806396, -0.030539274215698242, 0.0077161118388175964, -0.004349204245954752, -0.019551096484065056, 0.0017427302664145827, -0.017843931913375854, 0.0020679044537246227, -0.029048891738057137, -0.016976801678538322, 0.019930467009544373, 0.01926656998693943, -0.002918099518865347, 0.030403783544898033, 0.002760593080893159, -0.014714131131768227, -0.03357423096895218, -0.04303137958049774, 0.008495175279676914, 0.0035870776046067476, -0.003405860625207424, 0.03517300635576248, -0.010988176800310612, 0.023304147645831108, -0.0076348185539245605, -0.003333035157993436, -0.008921965956687927, -0.0028842270839959383, -0.020418228581547737, 0.021800218150019646, 0.01306116208434105, -0.0007151291356422007, 0.022138940170407295, 0.002269444754347205, -0.03165028616786003, -0.0014819134958088398, -0.013081485405564308, 0.0029147120658308268, 0.025621013715863228, -0.004911484662443399, 0.004145970568060875, -0.00930133555084467, -0.024225475266575813, -0.011875631287693977, -0.02866952307522297, 0.02937406674027443, 0.00706576369702816, 0.007973541505634785, 0.027531413361430168, -0.0245371013879776, -0.009125200100243092, -0.020621461793780327, 0.0055923182517290115, -0.017315523698925972, 0.02923857606947422, 0.020689206197857857, 0.02144794538617134, -0.021298907697200775, 0.0169226061552763, 0.003915639128535986, 0.0014920751564204693, -0.018683966249227524, 0.01264114584773779, -0.010188790038228035, 0.0009094714769162238, -0.02866952307522297, -0.010554611682891846, 0.0064086406491696835, -0.017396816983819008, 0.019578194245696068, 0.03433297201991081, -0.017816834151744843, -0.015107049606740475, 0.013013741001486778, -0.028452739119529724, -0.003753051860257983, -0.005914105102419853, -0.01610966958105564, -0.005507637280970812, 0.014876717701554298, -0.04598504677414894, 0.014808973297476768, 0.0324903167784214, 0.022816387936472893, 0.014727680012583733, -0.014388957060873508, -0.008827123790979385, -0.01776263862848282, -0.023480284959077835, 0.00966715719550848, 0.008393557742238045, 0.005954751744866371, -0.0019950789865106344, -0.0581519789993763, 0.006659295875579119, 0.024225475266575813, 0.022464115172624588, 0.019212374463677406, -0.030024414882063866, -0.006659295875579119, -0.009809420444071293, 0.008630664087831974, -0.006093628238886595, -0.029292773455381393, 0.0035159457474946976, -0.014781875535845757, -0.013379561714828014, -0.015269637107849121, -0.027572060003876686, 0.009206493385136127, -0.0069133383221924305, 0.009037132374942303, -0.005761679727584124, 0.020052406936883926, 0.003216175828129053, 0.022884132340550423, 0.027883684262633324, -0.0011262542102485895, 0.024279670789837837, -0.018047166988253593, 0.015378028154373169, -0.015405125916004181, -0.017613600939512253, 0.015459321439266205, 0.00649670884013176, -0.0007434971630573273, -0.0005356058827601373, -0.014388957060873508, -0.04300428181886673, -0.017207132652401924, 0.004525340627878904, 0.008698408491909504, 0.009308110922574997, -0.016258709132671356, -0.014754777774214745, 0.02810046821832657, -0.02117696776986122, -0.025539720430970192, -0.024780981242656708, -0.003519332967698574, -0.026732025668025017, 0.005175688769668341, 0.012790183536708355, 0.027301080524921417, -0.006459449417889118, -0.03547108173370361, -0.03712404891848564, 0.001715632388368249, -0.006093628238886595, -0.009409727528691292, 0.01694970391690731, -0.01384699996560812, -0.004047740716487169, 0.053220171481370926, 0.011530133895576, 0.0010271777864545584, -0.00852904748171568, 0.032571613788604736, -0.004007094074040651, -0.04495532810688019, -0.006246053613722324, 0.005758292507380247, -0.04186617210507393, -0.010215888731181622, -0.014280565083026886, 0.02451000176370144, 0.010283633135259151, 0.022613152861595154, -0.007079312577843666, 0.004010481294244528, -0.02671847678720951, -0.002755512250587344, 0.028046270832419395, 0.022328626364469528, -0.012444686144590378, -0.01926656998693943, 0.021095674484968185, 0.017125839367508888, -0.006977695506066084, -0.0236293226480484, 0.01604192517697811, 0.021624082699418068, 0.0028520484920591116, -0.021000832319259644, -0.006540742702782154, 0.004792931489646435, 0.009199718944728374, -0.008854221552610397, 0.01065622828900814, -0.006476385518908501, 0.0015776028158143163, 0.044196587055921555, 0.0162451583892107, 0.027517864480614662, 0.008109030313789845, -0.01377925556153059, -0.0003764060384128243, -0.008102255873382092, 0.022260881960392, -0.010873011313378811, -0.01812846027314663, 0.0186297707259655, 0.015283185988664627, -0.0032043203245848417, -0.027043651789426804, -0.0063341218046844006, 0.012715664692223072, -0.00800741370767355, 0.015161245130002499, -0.0004903016961179674, -0.011191410943865776, -0.020296286791563034, -0.001851121662184596, 0.018277497962117195, 0.018169106915593147, 0.018020067363977432, -0.019551096484065056, 0.028317250311374664, -0.004040966276079416, -0.007749984040856361, -0.017979420721530914, 0.0030349588487297297, -0.012241452001035213, -0.005463603418320417, -0.01240403950214386, -0.002747044200077653, -0.012532753869891167, -0.004742123186588287, -0.01391474436968565, -0.005666837096214294, 0.027937879785895348, -0.01292567327618599, 0.08806800097227097, 0.025593915954232216, -0.01883300393819809, -0.0024963892064988613, -0.0038377325981855392, 0.014646386727690697, -0.009348757565021515, 0.03641950711607933, -0.0055990926921367645, -0.025160351768136024, 0.01547287032008171, -0.024862274527549744, -0.0033025501761585474, 0.005101169925183058, -0.019456254318356514, -0.0012422669678926468, -0.008346136659383774, -0.0025692146737128496, 0.014158625155687332, 0.014307662844657898, 0.012647920288145542, 0.0007786396890878677, -0.003216175828129053, -0.010080398991703987, -0.030268294736742973, -0.0055990926921367645, 0.018277497962117195, 0.025770053267478943, -0.0023575127124786377, -0.03091864287853241, 0.03230063244700432, -0.012566627003252506, -0.026135873049497604, -0.018738161772489548, -0.012512430548667908, 0.0005046973819844425, -0.010005880147218704, -0.031135426834225655, -0.0014802198857069016, 0.02937406674027443, 0.007892248220741749, 0.025526171550154686, -0.012349843978881836, -0.026935260742902756, 0.013887646608054638, 0.008210647851228714, -0.005870071239769459, -0.022518310695886612, 0.0030010866466909647], "eb311335-0ee1-4bd8-bc94-bfa5e9e75c37": [-0.014444690197706223, 0.0017216054257005453, -0.00044719752622768283, -0.022681523114442825, 0.019281981512904167, 0.02829815447330475, -0.011710276827216148, -0.02819065935909748, -0.0012336772633716464, -0.027841299772262573, 0.003364269156008959, 0.025731703266501427, 0.01525090541690588, -0.007020791061222553, -0.012791948392987251, 0.011723713018000126, 0.01990007981657982, -5.5847202020231634e-05, -0.0019953828305006027, -0.004568553064018488, -0.013893775641918182, -0.006315352860838175, -0.012408996000885963, -0.005196729209274054, -0.023165252059698105, -0.005438593681901693, 0.022117171436548233, -0.01257023960351944, -0.01827421225607395, 0.022977134212851524, 0.009170698001980782, -0.02331305667757988, -0.039047691971063614, 0.002915811724960804, -0.010050816461443901, 0.017320191487669945, 0.006893140263855457, 0.004098260775208473, 0.028459398075938225, -0.009325223043560982, 0.013638474978506565, 0.028217533603310585, 0.0026857045013457537, -0.0015334886265918612, -0.016043683513998985, 0.03050181083381176, 0.00946631096303463, -0.002830151468515396, -0.017441123723983765, -0.01257023960351944, -0.009318504482507706, 0.007141723297536373, -0.024925488978624344, 0.010386739857494831, 0.010198622941970825, 0.0032114239875227213, 0.0015779983950778842, 0.0115691889077425, 0.014982166700065136, -0.020854100584983826, 0.004810417536646128, -0.006933451164513826, -0.007101412862539291, -0.00500525301322341, -0.02939998358488083, -0.03641405701637268, -0.024455195292830467, 0.000595843477640301, -0.018408581614494324, -0.01068907044827938, 0.05197400972247124, 0.02429395355284214, 0.01922823302447796, -0.019859768450260162, -0.001081672147847712, -0.02312494069337845, -0.017696425318717957, -0.017185822129249573, -0.016527412459254265, -0.0017350424313917756, 0.01929541863501072, -0.020840663462877274, -0.008519007824361324, 0.009049765765666962, 0.029131244868040085, 0.03246359899640083, 0.006070129107683897, 0.00982910767197609, -0.005166496150195599, -0.02276214398443699, 0.02093472331762314, 0.017696425318717957, 0.013658629730343819, 0.02234559878706932, 0.016218364238739014, 0.020921286195516586, 0.009446155279874802, 0.004014280159026384, -0.009573806077241898, -0.0022960337810218334, -0.014229699037969112, 0.0050522820092737675, -0.01770986244082451, -0.019268544390797615, 0.0038160854019224644, -0.024320825934410095, 0.017481433227658272, -0.013174900785088539, 0.0029090933967381716, 0.03676341474056244, -0.02264121174812317, 0.03214111551642418, -0.005179932806640863, -0.014001271687448025, -0.000524879724252969, 0.0019080427009612322, 0.03128115087747574, -0.020854100584983826, -0.013725814409554005, -0.018542950972914696, -0.0032836475875228643, 0.013893775641918182, 0.042836904525756836, 0.0008414871408604085, 0.014901544898748398, 0.003842959413304925, 0.0019399554003030062, -0.02496579848229885, 0.013705659657716751, 0.005435234401375055, 0.01934916526079178, 0.009036329574882984, 0.024025214836001396, 0.013947524130344391, -0.03246359899640083, 0.0018979650922119617, -0.026336364448070526, 0.0289162527769804, -0.003527191700413823, -0.03184550255537033, 0.0013092600274831057, 0.036010947078466415, 0.007417180109769106, -0.0020558489486575127, 0.0002618099970277399, 0.04162758216261864, -0.01108545996248722, 0.018583262339234352, 0.018946059048175812, -0.0028721417766064405, -0.009049765765666962, -0.003050181083381176, -0.022305289283394814, -0.001143817906267941, 0.003112326841801405, 0.006241449620574713, 0.007336558774113655, 0.024697059765458107, -0.009352097287774086, 0.008922114968299866, 0.008109182119369507, 0.02886250615119934, -0.005438593681901693, -0.009204290807247162, 0.005139622371643782, 0.02703508548438549, 0.013665348291397095, -0.0286206416785717, -0.02264121174812317, -0.006214575842022896, 0.01138779055327177, 0.029910584911704063, -0.012684453278779984, 0.018247338011860847, 0.004810417536646128, 0.017387375235557556, 0.009291631169617176, 0.010541263967752457, -0.014740302227437496, -0.032060492783784866, 0.029184991493821144, -0.0006676469929516315, -0.00572412833571434, 0.019496971741318703, -0.015815256163477898, -0.005136263091117144, 0.016581160947680473, 0.022426221519708633, 0.017629239708185196, -0.01126685831695795, 0.017992036417126656, -0.0039269402623176575, -0.010816721245646477, -0.019523845985531807, -0.6294928789138794, 0.006036536768078804, 0.016419917345046997, -0.013181619346141815, -0.006362381856888533, 0.017078327015042305, 0.007766540162265301, -0.007094694301486015, 4.582199835567735e-05, 0.03160363808274269, 0.013960960321128368, 0.0005471346084959805, -0.021337829530239105, -0.014498437754809856, -0.017333628609776497, -0.01607055775821209, -0.010245651938021183, -0.014364068396389484, -0.013759407214820385, -0.003903425531461835, -0.028029417619109154, 0.015600265003740788, 0.006241449620574713, -0.004877602215856314, -0.01406845636665821, -0.018475765362381935, 0.005015330854803324, -0.001615789718925953, -0.004891039337962866, 0.04291752353310585, -0.03867145627737045, 0.01512997318059206, 0.022372473031282425, 0.001429352443665266, 0.03751588240265846, -0.029023749753832817, -0.009412563405930996, 0.036064695566892624, 0.014874671585857868, 0.020598798990249634, -0.02217091992497444, -0.008572755381464958, 0.0170514527708292, 0.018005473539233208, -0.014014708809554577, 0.0006949407397769392, 0.02551671303808689, 0.002225490054115653, 0.000817552674561739, -0.002008819719776511, 0.00750452047213912, -0.006332148797810078, -0.007121568080037832, -0.00408146483823657, 0.0013697261456400156, -0.01287257019430399, 0.020558489486575127, -0.010339710861444473, 0.0018324600532650948, -0.020195692777633667, 0.013725814409554005, 0.011891675181686878, -0.011770742945373058, -0.048668526113033295, -0.03568845987319946, 0.01996726356446743, -0.027975669130682945, -0.008908678777515888, -0.0023632184602320194, -0.014928419142961502, 0.02672603540122509, -0.002734413370490074, 0.0050623598508536816, 0.012180568650364876, 0.007853880524635315, 0.019147612154483795, 0.04181569814682007, -0.015694323927164078, 0.0029342875350266695, 0.020504740998148918, 0.009640990756452084, -0.009546931833028793, -0.016460228711366653, -0.007276092655956745, 0.028996875509619713, 0.012765075080096722, 0.0049951751716434956, -0.00995003990828991, 0.006278401240706444, -0.005337816663086414, -0.0014998962869867682, 0.025973567739129066, -0.015076224692165852, -0.04208443686366081, -0.0001787740329746157, 0.05686504766345024, -0.01991351693868637, 0.007034228183329105, 0.0009699777001515031, -0.016769276931881905, -0.0246567502617836, -0.025906383991241455, 0.01717238500714302, 0.0021700626239180565, 0.017696425318717957, 0.007612015586346388, -0.02610793709754944, -0.005048923194408417, 0.003070336300879717, -0.011649810709059238, -0.008875085972249508, -0.014847797341644764, -0.01972539909183979, -0.014901544898748398, 0.019617903977632523, -0.023138377815485, 0.00263195694424212, 0.020236002281308174, 0.01181105338037014, -0.0014839399373158813, -0.021888744086027145, -0.017938289791345596, 0.029050622135400772, 0.006993917282670736, 0.0038228039629757404, 0.004417387768626213, 0.005979429930448532, -0.014108766801655293, -0.004454339388757944, -0.010245651938021183, -0.012805385515093803, -0.0019433146808296442, -0.002074324758723378, -0.00900945533066988, 0.044288091361522675, -0.008209958672523499, 0.026336364448070526, -0.002163344295695424, 0.006382537540048361, -0.0462498813867569, 0.003782493295148015, 0.013470512814819813, 0.021458761766552925, -0.01953728310763836, 0.003681716276332736, -0.02179468609392643, 0.002183499513193965, -0.006130595225840807, 0.0036313277669250965, -0.009177416563034058, -0.017185822129249573, -0.005680458154529333, 0.007215626537799835, 0.00870712473988533, -0.0064530810341238976, -0.0015511245001107454, 0.007800132501870394, -0.04358937218785286, -0.002499267226085067, -0.022990571334958076, -0.002198616275563836, -0.0028385494370013475, -0.010977963916957378, 0.00919085368514061, -0.015976497903466225, -0.01698426716029644, -0.010245651938021183, 0.020195692777633667, -0.017320191487669945, -0.012274627573788166, -0.010494234971702099, -0.011683402583003044, 0.002188538433983922, 0.005173214711248875, 0.01503591425716877, 0.006634479854255915, -0.023151814937591553, -0.014175951480865479, -0.013369736261665821, -0.0024186456575989723, 0.008364482782781124, 0.023998340591788292, 0.0026420345529913902, -0.014834360219538212, 0.04127822071313858, 0.0083712013438344, 0.029426855966448784, 0.02149907313287258, -0.0359303243458271, 0.00831073522567749, -0.008505570702254772, 0.02033006027340889, -0.02082722634077072, -0.008686969056725502, -0.012503054924309254, -0.024065524339675903, -0.012677734717726707, 0.0009808952454477549, 0.01832796074450016, 0.016957394778728485, 0.009936602786183357, 0.013020376674830914, -0.005431875120848417, 0.002796559128910303, 0.0012815463123843074, -0.018408581614494324, 0.004719718359410763, -0.025368906557559967, 0.0069737620651721954, 0.0127785112708807, -0.007081257179379463, 0.0010934293968603015, 0.0007138364017009735, -0.014377505518496037, 0.0050556412898004055, 0.04850728437304497, 0.017064889892935753, 0.01561370212584734, -0.007403743453323841, -0.018126405775547028, 0.016581160947680473, 0.011092178523540497, 0.017360500991344452, -0.011213110759854317, -0.0029997925739735365, 0.006597528234124184, 0.010857031680643559, 0.03117365576326847, 0.0138534652069211, -0.023662418127059937, -0.006379178259521723, 0.022600900381803513, -0.004629019182175398, 0.014538748189806938, 0.03660217300057411, -0.003140880260616541, 0.032060492783784866, -0.005925681907683611, 0.014390941709280014, -0.006993917282670736, 0.014538748189806938, 0.004964942112565041, 0.02051817812025547, -0.02813691273331642, 0.028110038489103317, -0.00406466843560338, 0.0067083826288580894, 0.005613273475319147, -0.01808609627187252, -0.005368049722164869, -0.013376454822719097, -0.009237882681190968, -0.01455218531191349, -0.010366584174335003, 0.03517786040902138, -0.010984682478010654, 0.018112968653440475, 0.015479332767426968, 0.002927569206804037, 0.018838562071323395, 0.005552807357162237, 0.0016728966729715466, 0.001966829178854823, -0.0029662002343684435, 0.036924660205841064, -0.01874450407922268, -0.002007140079513192, -0.027868174016475677, -0.010547982528805733, 0.005764439236372709, 0.021136276423931122, -0.01899980567395687, 0.010279244743287563, -0.03243672847747803, 0.00402099872007966, 0.002277557970955968, -0.008875085972249508, 0.003678356995806098, 0.0006113799172453582, 0.012644142843782902, -0.017199259251356125, -0.031630512326955795, 0.018489202484488487, 0.014404378831386566, 0.007558268029242754, 0.0016955714672803879, -0.030044954270124435, 0.0025311799254268408, 0.015815256163477898, 0.01807265914976597, 0.01108545996248722, 0.0052874283865094185, -0.007309684995561838, -0.007437335792928934, 0.011979014612734318, 0.011663246899843216, 0.03818772733211517, -0.0034079391043633223, -0.02312494069337845, -0.004568553064018488, 0.03335043787956238, 0.02184843271970749, -0.02574514038860798, -0.03160363808274269, 0.016285547986626625, -0.008337609469890594, -0.027733804658055305, -0.022479968145489693, -0.004870883654803038, -0.020007574930787086, -0.006570654455572367, -0.011764024384319782, -0.018704194575548172, -0.015734633430838585, -0.003809367073699832, 0.006369100417941809, -0.0030636179726570845, -0.006799081806093454, 0.02367585524916649, 0.01936260238289833, 0.009090077131986618, -0.01869075745344162, 0.010668914765119553, 0.019644778221845627, 0.05681130290031433, 0.002285956172272563, -0.007954657077789307, 0.012912880629301071, -0.01625867374241352, -0.008989299647510052, -0.01832796074450016, -0.013483949936926365, 0.05046907439827919, 0.02819065935909748, -0.022802455350756645, 0.007269374094903469, 0.014485000632703304, -0.002828471828252077, 0.016836462542414665, 0.0034230556339025497, 0.003328997176140547, -0.018838562071323395, -0.004672689363360405, 0.0170514527708292, 0.0016283867880702019, 0.00316439475864172, 0.02137814089655876, 0.012254471890628338, 0.03439851850271225, 0.012180568650364876, 0.015331526286900043, 0.011098896153271198, 0.0031895891297608614, -0.025664519518613815, -0.016218364238739014, 0.0052941469475626945, 0.004847369156777859, 0.0049951751716434956, -0.03402228280901909, 0.03980015963315964, -0.01208651065826416, -0.01549276988953352, -0.001319337636232376, -0.006184342782944441, -0.006600887514650822, 0.02531515806913376, -0.014888107776641846, -0.010050816461443901, 0.01193198561668396, -0.016594598069787025, -0.018180154263973236, 0.026188557967543602, -0.010272526182234287, 0.001842537778429687, 0.026282617822289467, 0.012590394355356693, -0.01087046880275011, 0.008895241655409336, 0.012301500886678696, -0.013786280527710915, 0.0013520901557058096, -0.02277558110654354, -0.022063424810767174, -0.031388647854328156, -0.03020619787275791, -0.013363017700612545, -0.030716801062226295, -0.023837096989154816, -0.021216897293925285, -0.04135884344577789, -0.009090077131986618, -0.003231579437851906, -0.029856838285923004, -0.0018946058116853237, -0.014820924028754234, -0.01898636855185032, -0.03292045742273331, 0.03098553977906704, 0.01875794120132923, 0.027653183788061142, -0.0009313465561717749, 0.0018576543079689145, 0.005394923500716686, 0.017494870349764824, 0.0037589785642921925, -0.010319555178284645, -0.002857025247067213, -0.017790483310818672, 0.012590394355356693, -0.011790897697210312, -0.010252370499074459, 0.00314255990087986, 0.00040709669701755047, 0.01263070572167635, -0.0034096187446266413, -0.007833724841475487, 0.014955292455852032, 0.009237882681190968, 0.0185698252171278, 0.011428100988268852, 0.008438386023044586, -0.0167424026876688, 0.026739472523331642, -0.03031369298696518, 0.019402913749217987, -0.018784815445542336, -0.022063424810767174, -0.0032601328566670418, 0.01912073791027069, 0.02612137421965599, -0.01211338397115469, -0.020128507167100906, -0.006140672601759434, -0.024011777713894844, 0.004477853886783123, -0.004168804734945297, -0.023366805166006088, -0.02124377153813839, -0.011381071992218494, -0.012919599190354347, -0.004235989414155483, 0.010366584174335003, 0.004924631677567959, -0.01753518171608448, 0.0037321047857403755, -0.019940391182899475, 0.025059856474399567, 0.01955072022974491, -0.0027192968409508467, 0.013020376674830914, 0.022909950464963913, -0.00038211242645047605, -0.04466432332992554, -0.004551757127046585, 0.009909729473292828, 0.00020858719653915614, -0.02544952742755413, -0.02563764527440071, -0.006221294403076172, -0.000233676444622688, -0.011784179136157036, 0.012032762169837952, -0.005559525918215513, -0.0050254082307219505, -0.042218804359436035, 0.01668865606188774, 0.019685089588165283, 0.0021683829836547375, -0.0014982166467234492, -0.028513146564364433, -0.0316573865711689, -0.004595426842570305, 0.01479404978454113, 0.03861771151423454, -0.016890209168195724, -0.013665348291397095, -0.04146633669734001, -0.018314523622393608, -0.014296883717179298, -0.009956758469343185, 0.0037892116233706474, 0.011132488958537579, 0.03501661494374275, 0.03270546346902847, 0.013618319295346737, 0.019832894206047058, 0.02508673071861267, 0.015801819041371346, -0.008001686073839664, 4.532336242846213e-05, -0.005106030032038689, -0.0161377415060997, 0.010783129371702671, -0.026282617822289467, -0.016110867261886597, -0.006479955278337002, -0.005011971574276686, -0.008942270651459694, -0.006671431008726358, -0.008277143351733685, 0.013598163612186909, -0.013497387059032917, -0.03474787622690201, -0.04396560415625572, 0.01275163795799017, 0.03584970533847809, 0.013893775641918182, 0.013524260371923447, -0.023837096989154816, -0.013564571738243103, 0.0029678798746317625, -0.00468612601980567, 0.046599242836236954, -0.0014016388449817896, 0.033941660076379776, -0.010736099444329739, -0.0015435662353411317, 0.012610550038516521, -0.013685503974556923, -0.008781027980148792, -0.004010920878499746, -0.03619906306266785, 0.0004163346020504832, 0.013893775641918182, 0.025100167840719223, 0.0051496997475624084, -0.0027864815201610327, 0.006839392706751823, 0.008989299647510052, 0.017924852669239044, -0.029292486608028412, -0.03222173452377319, -0.004857446998357773, -0.0328935831785202, -0.01965821534395218, -0.034962866455316544, -0.019281981512904167, 0.02174093760550022, -0.015506207011640072, -0.00021425589511636645, 0.00010534335888223723, 0.01600337214767933, -0.02234559878706932, -0.01409532967954874, 0.009056484326720238, -0.004145290236920118, 0.012301500886678696, 0.009513339959084988, 0.012711327522993088, 0.014485000632703304, 0.003496958641335368, -0.020343497395515442, -0.01074953656643629, -0.00387319247238338, 0.000501785019878298, -0.003802648512646556, 0.0535595677793026, -0.03321606665849686, -0.0016376246931031346, -0.006228012964129448, 0.004629019182175398, 0.002885578665882349, -0.03824147582054138, 0.02379678748548031, 0.0182607751339674, 0.0034801624715328217, -0.03636030852794647, -0.024186456575989723, 0.0021095965057611465, 0.0011673325207084417, -0.020236002281308174, 0.011844645254313946, 0.006637838669121265, 0.0006252367165870965, 0.002161664655432105, 0.013678785413503647, -0.012576958164572716, 0.016164615750312805, -0.010843595489859581, 0.018247338011860847, 0.009331941604614258, -0.004669330082833767, 0.011703558266162872, -0.01770986244082451, -0.0024522379972040653, 0.00828386191278696, -0.03281296044588089, 0.002949404064565897, 0.020491303876042366, 0.014498437754809856, -0.0037287455052137375, 0.0025798887945711613, -0.018166717141866684, 0.029023749753832817, -5.688384135282831e-06, -0.015922751277685165, 0.00876759085804224, -0.023084629327058792, 0.021149713546037674, -0.014968729577958584, -0.017615802586078644, -0.002443840028718114, -0.003977328538894653, 0.0004295615653973073, -0.0005756880855187774, -0.009150543250143528, -0.00037581389187835157, 0.011737150140106678, 0.010722663253545761, -0.013725814409554005, -0.019335728138685226, -0.009352097287774086, 0.005996225867420435, -0.021942492574453354, -0.009338660165667534, -0.0026201994623988867, -0.01226790901273489, 0.005428515840321779, 0.008519007824361324, 0.002030654577538371, -0.005609914660453796, 0.02514047920703888, -0.01844889298081398, 0.02307119220495224, 0.014390941709280014, 0.03160363808274269, -0.033646050840616226, 0.019859768450260162, 0.010440487414598465, 0.0018257416086271405, 0.022385910153388977, 0.018247338011860847, -0.0328935831785202, -0.02198280207812786, 0.005176573526114225, 5.101830902276561e-05, 0.013692222535610199, -0.010453924536705017, 0.008781027980148792, 0.018784815445542336, -0.009412563405930996, -0.01679615117609501, -0.00794793851673603, 0.003075375221669674, -0.0050892336294054985, 0.006060051266103983, 0.012180568650364876, -0.0032198221888393164, 0.014364068396389484, 0.002851986326277256, 0.001997062237933278, -0.0029628409538418055, -0.017857667058706284, -0.02441488578915596, -0.026443859562277794, -0.00888852309435606, -0.0005005252896808088, 0.020343497395515442, -0.011979014612734318, -0.04025701433420181, -0.018946059048175812, 0.02837877720594406, -0.012395559810101986, 0.011851363815367222, 0.025288285687565804, 0.005230321548879147, -0.024267079308629036, 0.019322292879223824, -0.012402277439832687, -0.048426661640405655, -0.021270645782351494, -0.016890209168195724, -0.03730089217424393, -0.0004144450358580798, -0.011790897697210312, 0.0289162527769804, 0.016782714053988457, -0.01311443466693163, -0.029480604454874992, -0.013074124231934547, -0.02204998768866062, -0.00326349213719368, -0.022721832618117332, 0.027895048260688782, 0.014753739349544048, 0.029453730210661888, 0.009963477030396461, 0.02622886933386326, -0.007014072500169277, 0.03603782132267952, -0.03181862831115723, -0.018435455858707428, -0.005015330854803324, -0.031738005578517914, 0.03007182851433754, -0.03869833052158356, -0.040203265845775604, -0.004629019182175398, 0.008384638465940952, -0.02350117452442646, -0.00033991210511885583, 0.01906699128448963, 0.006056691985577345, -0.0008078948594629765, -0.0034432108514010906, -0.012099946849048138, -0.0005223603220656514, -0.0030619383323937654, 0.0038160854019224644, -0.02239934727549553, 0.00979551486670971, 0.004739874042570591, -0.006540421396493912, -0.017508307471871376, 0.008666814304888248, 0.012335093691945076, -0.009849263355135918, 0.0022036549635231495, -0.020733168348670006, -0.0051866513676941395, -0.023581795394420624, -0.022130608558654785, -0.00628511980175972, -0.014283446595072746, 0.0007335718837566674, 0.04598114266991615, -0.004330047871917486, -0.00855259969830513, -0.004968301393091679, 0.021216897293925285, -0.0022708396427333355, -0.0017400812357664108, 0.024912051856517792, -0.027653183788061142, -0.010977963916957378, -0.009439436718821526, 0.01930885575711727, 0.0027528891805559397, -0.020410683006048203, -0.027236638590693474, -0.0036649201065301895, -0.032544221729040146, -0.007470928132534027, 0.014511874876916409, -0.005855138413608074, 0.010487516410648823, -0.011119051836431026, 0.01275163795799017, -0.02527484856545925, -0.01052782777696848, 0.0007663244032301009, -0.023326493799686432, -0.01632585935294628, -0.004817136097699404, 0.01455218531191349, -0.030609305948019028, -0.014364068396389484, 0.02715601772069931, -0.0018643727526068687, 0.002186858793720603, 0.2069285809993744, 0.02245309390127659, -0.011858082376420498, 0.043078768998384476, 0.023407116532325745, -0.021700626239180565, -0.0002653791743796319, 0.01991351693868637, 0.009842544794082642, 0.03619906306266785, 0.0008700406178832054, 0.006123876664787531, -0.012818822637200356, -0.008633221499621868, 0.0065504987724125385, -0.022305289283394814, -0.03031369298696518, -0.01760236546397209, -0.018610134720802307, 0.008814619854092598, 0.007551549468189478, -0.004541679285466671, -0.02167375385761261, 0.001869411556981504, 0.029453730210661888, 0.03378041833639145, -0.001807265798561275, 0.014485000632703304, 0.01339660957455635, 0.01668865606188774, -0.02460300177335739, -0.0012714685872197151, 0.021391578018665314, -0.0025782091543078423, -0.009486465714871883, -0.010319555178284645, 0.005630069877952337, -0.03512411192059517, 0.009325223043560982, 0.026860404759645462, -0.0035372693091630936, -0.021042218431830406, 0.0007793413824401796, -0.021539384499192238, 0.025543587282299995, -0.009439436718821526, 0.01397439744323492, 0.0006374139338731766, 0.007081257179379463, 0.043804362416267395, 0.005334457382559776, 0.004269581753760576, -0.00041402512579225004, 0.009533495642244816, -0.007141723297536373, -0.012697890400886536, -0.0031190451700240374, 0.0019500331254675984, -0.02325931005179882, 0.019953828305006027, -0.018771378323435783, 0.015291215851902962, -0.017320191487669945, 0.018610134720802307, -0.022748706862330437, 0.012906162068247795, -0.018045784905552864, 0.017696425318717957, 0.020047886297106743, 0.008639940060675144, -0.009338660165667534, -0.02148563601076603, -0.030851170420646667, -0.004639097023755312, 0.003950454760342836, -0.01668865606188774, -0.0009195892489515245, 0.03748900815844536, 0.03321606665849686, 0.029319360852241516, 0.014256573282182217, 0.013423483818769455, -0.014888107776641846, -0.005959274247288704, -0.0008217516588047147, -0.0049279904924333096, 0.03910144045948982, -0.030421188101172447, 0.014847797341644764, -0.016393043100833893, -0.01698426716029644, -0.0029006951954215765, -0.021458761766552925, 0.01608399488031864, -0.014565622434020042, -0.003769056173041463, 0.0028788603376597166, 0.024750808253884315, -0.0013235367368906736, -0.018704194575548172, -0.029749343171715736, 0.04143946245312691, 0.018354833126068115, 0.023151814937591553, -0.02544952742755413, -0.004491290543228388, -0.013477231375873089, 0.012375404126942158, -0.011999170295894146, 0.004639097023755312, -0.019402913749217987, -0.037354640662670135, 0.016043683513998985, 0.006439644377678633, 0.02167375385761261, 0.03171113133430481, 0.03609156981110573, -0.0036951531656086445, -0.021176587790250778, -0.006856188643723726, 0.028459398075938225, -0.02160656824707985, -5.1044553401879966e-05, 0.004558475222438574, -0.020840663462877274, -0.026752909645438194, -0.005099311470985413, 0.009305067360401154, -0.01881168968975544, -0.022735269740223885, 0.004051231779158115, -0.013289114460349083, 0.008989299647510052, -0.01601680926978588, -0.00040226781857199967, -0.0011975655797868967, 0.009486465714871883, -0.014592495746910572, -0.016648344695568085, 0.010373302735388279, 0.004380436148494482, 0.0013042211066931486, 0.005495700519531965, 0.0016552606830373406, 0.02422676794230938, -0.00021814000501763076, 0.014323757961392403, 0.016164615750312805, -0.006308634299784899, -0.024334263056516647, 0.0053210207261145115, 0.030179323628544807, -0.004723077639937401, 0.02563764527440071, 0.02319212444126606, -0.028083164244890213, -0.03184550255537033, -0.031200530007481575, 0.01549276988953352, 0.00011253420962020755, -0.044529955834150314, -0.009298348799347878, 0.02921186573803425, 0.010178467258810997, -0.026148248463869095, 0.0016401441534981132, -0.17005766928195953, 0.014740302227437496, 0.012852414511144161, 0.00349359936080873, -0.01196557842195034, 0.03404915705323219, 0.015989935025572777, 0.0013319348217919469, -0.03079742193222046, -0.01397439744323492, 0.01367206685245037, -0.0018962854519486427, -0.02167375385761261, -0.012496336363255978, -0.0054486715234816074, -0.00023850533762015402, -0.01772329770028591, 0.025180788710713387, 0.045578036457300186, -0.013490668497979641, 0.024683622643351555, -0.022439658641815186, 0.00831073522567749, -0.03184550255537033, 0.016352731734514236, 0.015989935025572777, -0.02343399077653885, 0.03243672847747803, 0.011938704177737236, -0.018475765362381935, -0.0015032555675134063, -0.016057120636105537, 0.026040753349661827, 0.01068907044827938, -0.0023296261206269264, -0.0012941433815285563, 0.007941219955682755, 0.0014301922637969255, -0.015963062644004822, 0.018475765362381935, 0.02636323869228363, 0.015439022332429886, 0.012973346747457981, -0.013578008860349655, 0.0182607751339674, 0.024025214836001396, 0.010850313119590282, -0.007988248951733112, 0.0053848461247980595, -0.010332992300391197, 0.042702533304691315, -0.03294732794165611, -0.009842544794082642, -0.01655428670346737, 0.01338989194482565, 0.009714893996715546, 0.0026806658133864403, 0.02448206953704357, -0.0052202437072992325, -0.022614337503910065, 0.005072437692433596, -0.00666807172819972, -0.002220451133325696, -0.00846526026725769, 6.298556399997324e-05, -0.03762337937951088, -0.021149713546037674, 0.028835631906986237, -0.00780685106292367, 0.007598578929901123, 0.014041582122445107, -0.013342862017452717, -0.002885578665882349, 0.0009279873338527977, 0.0164467915892601, 0.00910351425409317, -0.034962866455316544, 0.009714893996715546, 0.039853908121585846, 0.007753103505820036, 0.013618319295346737, 0.004514805506914854, -0.0029309282545000315, -0.004407309927046299, -0.020961595699191093, -0.013410046696662903, 0.012899443507194519, 0.012402277439832687, -0.00922444649040699, 0.02014194428920746, 0.025785451754927635, -0.022238103672862053, 0.0322754830121994, -0.004353562369942665, 0.020921286195516586, 0.010998119600117207, 0.02446863241493702, -0.020437557250261307, 0.007477646227926016, -0.013564571738243103, 0.007847161963582039, 0.018972931429743767, -0.03885957598686218, 0.012704608961939812, 0.028808757662773132, 0.033457931131124496, 0.02665885165333748, -0.020679421722888947, 0.03627968579530716, -0.004299814812839031, -0.027868174016475677, 0.024334263056516647, 0.031926125288009644, -0.00031387805938720703, -0.019389476627111435, 0.05398954823613167, 0.006120517384260893, -0.01899980567395687, 0.00768591882660985, -0.011663246899843216, 0.0523502416908741, -0.037892118096351624, -0.03219486400485039, 0.005394923500716686, -0.011817771941423416, -0.011159362271428108, -0.10636666417121887, -0.018099531531333923, 0.035822831094264984, -0.0038799108006060123, -0.00015725396224297583, 0.004833932034671307, -0.009244601242244244, 0.015197157859802246, -0.0108100026845932, 0.0053882054053246975, -0.013087560422718525, -0.0024539176374673843, -0.00458199018612504, -0.014471563510596752, 0.019335728138685226, -0.015237468294799328, 0.0114146638661623, -0.030340567231178284, -0.010776410810649395, 0.018112968653440475, 0.013363017700612545, -0.006933451164513826, 0.01967165246605873, 0.007638889364898205, -0.025543587282299995, -0.015586827881634235, -0.03885957598686218, 0.0035103955306112766, 0.010050816461443901, 0.0051496997475624084, 0.033457931131124496, -0.004272941034287214, 0.028701262548565865, -0.012314938008785248, -0.006097002886235714, -0.012288063764572144, -0.018422018736600876, -0.020625673234462738, 0.030716801062226295, -0.0034801624715328217, 0.002821753267198801, 0.012953191995620728, -0.003367628203704953, -0.030582431703805923, -0.002954442985355854, -0.0014637846034020185, -0.009076640009880066, 0.030958665534853935, 0.0031912687700241804, -0.00146126514300704, -0.009634272195398808, -0.02813691273331642, -0.0027209764812141657, -0.027182890102267265, 0.03493599221110344, 0.0007188752642832696, 0.0011824490502476692, 0.013571290299296379, -0.018126405775547028, 0.006191061343997717, -0.024455195292830467, 0.004259503912180662, -0.007665763143450022, 0.020356934517621994, 0.01636616885662079, 0.004424106329679489, -0.009714893996715546, 0.014955292455852032, 0.006308634299784899, 0.004256144631654024, -0.006332148797810078, 0.0026554714422672987, -0.011078741401433945, -0.004195678513497114, -0.014847797341644764, 0.007390306331217289, -0.00219189771451056, -0.018677320331335068, 0.0010203662095591426, 0.027357570827007294, -0.016097432002425194, -0.00552593357861042, 0.004608863964676857, -0.018005473539233208, 0.002984676044434309, 0.003866473911330104, 0.0003380225389264524, 0.00560319609940052, 0.020612236112356186, -0.04458370432257652, 0.011058585718274117, 0.0207062941044569, 0.022385910153388977, 0.01299350243061781, -0.012039480730891228, -0.007121568080037832, -0.016298985108733177, -0.010044097900390625, 0.013248804025352001, 0.004501368384808302, -0.007464209571480751, 0.0037220269441604614, -0.05552135780453682, 0.0028133552987128496, 0.009150543250143528, 0.011683402583003044, 0.020545052364468575, -0.055306367576122284, -0.014874671585857868, -0.003994124475866556, 0.005488981958478689, 0.0006781445699743927, -0.03294732794165611, 0.00646651815623045, -0.01525090541690588, 0.000313038268359378, -0.02338024228811264, -0.02155282162129879, 0.013551134616136551, -0.007276092655956745, 0.012126821093261242, -0.010178467258810997, 0.001504095271229744, 0.009110231883823872, 0.019214795902371407, 0.029050622135400772, -0.00406466843560338, 0.020719731226563454, -0.020491303876042366, 0.022318724542856216, -0.009540214203298092, -0.007793413940817118, 0.013262241147458553, 0.01421626191586256, 0.0007142563117668033, -0.0017551977653056383, -0.005912245251238346, -0.03920893371105194, -0.00028805399779230356, 0.01898636855185032, 0.015600265003740788, -0.0001849676191341132, -0.005445312242954969, -0.0004820495378226042, 0.029292486608028412, -0.029453730210661888, -0.03055555745959282, -0.0249523613601923, -0.013960960321128368, -0.03963891789317131, 0.015170283615589142, 0.01862357184290886, 0.03141552209854126, 0.0029376468155533075, -0.03055555745959282, -0.0346941277384758, -0.007981531322002411, -0.014525311067700386, -0.001037162379361689, 0.023716164752840996, -0.01551964320242405, -0.0012000850401818752, 0.058101244270801544, -0.0013588086003437638, 0.006184342782944441, -0.013759407214820385, 0.030044954270124435, -0.006422847975045443, -0.05648881569504738, -0.012825541198253632, 0.010836876928806305, -0.01648710109293461, -0.007161878980696201, -0.015815256163477898, 0.0298299640417099, 0.007551549468189478, 0.008881804533302784, -0.01758893020451069, -0.002443840028718114, -0.02720976434648037, -0.010003787465393543, 0.030528683215379715, 0.021418452262878418, 0.0005765279056504369, -0.017494870349764824, 0.012153694406151772, 0.031738005578517914, -0.008908678777515888, -0.02100190706551075, 0.019093863666057587, 0.024119272828102112, 0.004975019954144955, -0.020289750769734383, -0.0054856231436133385, 0.007934501394629478, 0.01418938860297203, -0.011952141299843788, 0.0022741989232599735, -0.007316403556615114, 0.0069132959470152855, 0.03679028898477554, 0.024643313139677048, 0.009688019752502441, 0.007732947822660208, -0.01893262192606926, -0.005757720675319433, -0.0009498223662376404, 0.014995603822171688, -0.01539871096611023, -0.0206928588449955, 0.018166717141866684, 0.01929541863501072, -0.0034835217520594597, -0.038026485592126846, -0.0019953828305006027, 0.01539871096611023, -0.008451823145151138, 0.012966628186404705, 0.0010631963377818465, -0.012375404126942158, -0.027142580598592758, -0.005468826740980148, 0.01632585935294628, 0.020424120128154755, 0.012973346747457981, -0.013712377287447453, 0.03343106061220169, -0.007612015586346388, -0.006694945972412825, 0.0007843802450224757, 0.0021112761460244656, -0.011179517954587936, -0.0022389269433915615, -0.006657994352281094, 0.019268544390797615, -0.002415286609902978, -0.009446155279874802, -0.013121153227984905, -0.0028183942195028067, 0.035580966621637344, -0.01807265914976597, 0.08605004101991653, 0.030770549550652504, -0.02367585524916649, 0.00458199018612504, -0.01320849359035492, 0.01984633132815361, 0.016513975337147713, 0.011253421194851398, -0.010279244743287563, -0.01421626191586256, 0.008861648850142956, -0.015586827881634235, -0.0068427519872784615, 0.014081892557442188, -0.01600337214767933, -0.00040163795347325504, -0.011239984072744846, 0.007840443402528763, -0.003171113319694996, 0.01960446685552597, 0.02257402613759041, -0.0019483534852042794, -0.00197186809964478, -0.021660316735506058, -0.03359230235219002, -0.004165445454418659, 0.01862357184290886, 0.028513146564364433, 0.00394373619928956, -0.030152449384331703, 0.03679028898477554, -0.02186186984181404, -0.020719731226563454, -0.021512510254979134, -0.015183720737695694, 0.003910143859684467, -0.019873205572366714, -0.022977134212851524, -0.0037992894649505615, 0.023729601874947548, 0.013920649886131287, 0.030098702758550644, -0.022815890610218048, -0.01851607672870159, 0.017817357555031776, 0.009540214203298092, 0.004091542214155197, -0.023138377815485, 3.081043905694969e-05], "af21247b-3377-47d5-8dbd-994fa2b1e1be": [-0.008369233459234238, -0.010347291827201843, 0.00100863934494555, -0.034595560282468796, 0.013055185787379742, 0.02998463809490204, -0.018048077821731567, -0.026055805385112762, 0.0028170282021164894, -0.03233102336525917, 0.0008705162326805294, 0.029302548617124557, 0.010722440667450428, -0.012495872564613819, -0.01128175389021635, 0.017993511632084846, 0.025346431881189346, -0.0004493262094911188, 0.011534127406775951, -0.00226965150795877, -0.03077586181461811, -0.009139994159340858, -0.016902169212698936, -0.0020752560812979937, -0.02291819453239441, -0.006960719358175993, 0.011868351139128208, -0.00824645720422268, -0.019971570000052452, 0.008382875472307205, 0.013375767506659031, -0.021676791831851006, -0.02073550969362259, 0.008519292809069157, -0.014910467900335789, 0.018525540828704834, 0.0028477220330387354, 0.007953159511089325, 0.019685091450810432, -0.005402145907282829, 0.015387930907309055, 0.03107598051428795, 0.0022730620112270117, -0.012871021404862404, -0.004897399805486202, 0.029438966885209084, 0.002233841922134161, -0.011124873533844948, -0.029138848185539246, 0.0047405194491147995, -0.012414022348821163, -0.00048257806338369846, -0.03151251748204231, 0.01025179959833622, -0.004167564678937197, 0.0006944519700482488, 0.0019985211547464132, 0.010490531101822853, 0.017938943579792976, -0.008853516541421413, 0.01100209727883339, -0.008860337547957897, -0.008137322962284088, -0.010674694553017616, -0.010981635190546513, -0.03492296487092972, -0.02181321009993553, -0.0015304374974220991, -0.025469208136200905, -0.012871021404862404, 0.03669639676809311, 0.024132313206791878, 0.02107655443251133, -0.014951393939554691, 0.002665263367816806, -0.012680036947131157, -0.025346431881189346, -0.021117478609085083, -0.000914852018468082, 0.0011288574896752834, 0.02084464393556118, -0.02148580737411976, -0.016874885186553, 0.00884669553488493, 0.016615690663456917, 0.018389122560620308, 0.012188932858407497, 0.006681063212454319, -0.0006501161842606962, -0.01658840849995613, 0.014228379353880882, 0.006114928983151913, 0.018743809312582016, 0.021622225642204285, 0.009071785025298595, 0.024568850174546242, -0.005269138608127832, -0.00965156126767397, -0.010047173127532005, -0.007728070020675659, -0.007339279167354107, 0.00592735456302762, -0.01533336378633976, -0.013259812258183956, -0.005559026263654232, -0.010074456222355366, 0.013252992182970047, -0.01585175096988678, 0.005422608461230993, 0.028102071955800056, -0.02647870033979416, 0.02979365363717079, 0.0015773311024531722, -0.010688336566090584, 0.0007583978585898876, -0.003727616975083947, 0.033749770373106, -0.024446073919534683, -0.011302216909825802, -0.027529116719961166, -0.00036385192652232945, 0.003758311038836837, 0.053885042667388916, -0.004921272862702608, 0.012536798603832722, 0.012911947444081306, 0.007530264090746641, -0.026778819039463997, 0.004389243666082621, 0.0043449075892567635, 0.0019593010656535625, -0.0009694191976450384, 0.01767975091934204, 0.013662245124578476, -0.023914044722914696, 0.0066878837533295155, -0.009951679967343807, 0.015988169237971306, 0.0039083706215023994, -0.026901595294475555, 0.01403739396482706, 0.030121056362986565, 0.016288287937641144, -0.006459384225308895, -0.009808441624045372, 0.04971065744757652, -0.01062012743204832, 0.017761601135134697, -0.0028085019439458847, 0.005518101155757904, -0.0017308011883869767, -0.017707033082842827, -0.049301400780677795, -0.003922012634575367, 0.005040638614445925, 0.006408227141946554, 0.00952878501266241, 0.025632908567786217, -0.017270496115088463, 0.0018501667072996497, 0.010115381330251694, 0.036150723695755005, -0.006561697460711002, -0.014583065174520016, -0.0018910921644419432, 0.03233102336525917, 0.016274645924568176, -0.02739270031452179, -0.02077643573284149, -0.009938038885593414, 0.018293630331754684, 0.035004813224077225, -0.020176196470856667, 0.01757061667740345, -0.001218381687067449, 0.03309496492147446, -0.007523443084210157, 0.017011303454637527, -0.01658840849995613, -0.03254929184913635, 0.03533221781253815, 0.0008048651507124305, -0.007223323918879032, 0.01585175096988678, -0.023068254813551903, -0.006316145416349173, 0.02451428398489952, 0.031376101076602936, 0.01214800775051117, -0.0034957067109644413, 0.008198711089789867, -0.0019388383952900767, -0.0017350642010569572, -0.016110945492982864, -0.6307960152626038, 0.008369233459234238, 0.02068094164133072, -0.022890910506248474, 0.005040638614445925, 0.013143857941031456, 0.01934404857456684, -0.004576818086206913, -0.0059000710025429726, 0.027761027216911316, 0.02336837351322174, -0.0029074049089103937, -0.013137036934494972, -0.01597452722489834, -0.016397422179579735, -0.019507749006152153, -0.011179440654814243, -0.016056377440690994, -0.0006040752050466835, -0.004147102124989033, -0.034704696387052536, 0.024432431906461716, 0.0011083948193117976, 0.010797470808029175, -0.010108561255037785, -0.019262196496129036, 0.013771379366517067, 0.0017111911438405514, -0.0016881705960258842, 0.04479961469769478, -0.02676517702639103, 0.008150964975357056, 0.014664916321635246, 0.000226581483730115, 0.045399852097034454, -0.03083042800426483, -0.013921438716351986, 0.03593245521187782, 0.00901039782911539, 0.028866011649370193, -0.01200476847589016, -0.010129023343324661, 0.03123968280851841, 0.030939562246203423, -0.01416017021983862, -0.010224515572190285, 0.013853230513632298, 0.010299545712769032, -0.010388217866420746, -0.011377247050404549, -0.005258907098323107, -0.010626948438584805, -0.021513091400265694, -0.019453182816505432, 0.009637919254601002, 0.004846243187785149, 0.018866585567593575, -0.007721249014139175, -0.0032672069501131773, -0.006275219842791557, 0.009542427025735378, 0.012529977597296238, -0.01597452722489834, -0.04902856796979904, -0.0441175252199173, 0.01142499316483736, -0.02533278986811638, -0.0033234793227165937, -0.016724824905395508, -0.017038585618138313, 0.027665534988045692, -0.006169496104121208, -0.001121183973737061, 0.00508156418800354, 0.01062012743204832, 0.026314998045563698, 0.033613353967666626, -0.010961172170937061, -0.0025100880302488804, 0.017079511657357216, 0.010892963036894798, 0.007414308842271566, -0.01907121203839779, -0.03486839681863785, 0.03260385990142822, 0.0036048409529030323, -0.008512472733855247, -0.025537416338920593, 0.006111518479883671, -0.0007839761674404144, 0.003318363567814231, 0.03369520232081413, -0.013846409507095814, -0.035577770322561264, 0.0005324558005668223, 0.05440342798829079, -0.0031461361795663834, 0.020640017464756966, 0.0035911991726607084, -0.009433292783796787, -0.03977943956851959, -0.023613926023244858, 0.014214737340807915, 0.005279369652271271, 0.021035628393292427, 0.004975839983671904, -0.013996468856930733, 0.009024038910865784, 0.005293011665344238, -0.011766037903726101, -0.02039446495473385, -0.013682708144187927, -0.007816741243004799, -0.011145336553454399, 0.02286362834274769, -0.021785926073789597, -0.001824588398449123, 0.023272881284356117, -0.0028238489758223295, -0.001440060674212873, -0.027365416288375854, -0.012045693583786488, 0.030748577788472176, 0.01758425682783127, 0.007823562249541283, -0.0015312901232391596, 0.01826634630560875, -0.014596707187592983, 0.005241855047643185, -0.014023752883076668, -0.013675887137651443, -0.012134365737438202, 0.001544079277664423, -0.008382875472307205, 0.05061101168394089, -0.005876197945326567, 0.02608308754861355, -0.005698854569345713, -0.0009574826108291745, -0.04962880536913872, -0.0035707366187125444, -0.0011015739291906357, 0.021403957158327103, -0.02068094164133072, 0.011827425099909306, -0.02268628403544426, 0.0008781897486187518, -0.006213832180947065, -0.0017444429686293006, 0.001483543892391026, -0.012795992195606232, -0.006237705238163471, 0.015278796665370464, 0.01323935016989708, -0.0246916264295578, -0.008942188695073128, 0.002649916335940361, -0.02998463809490204, -0.003526400774717331, -0.015865392982959747, -0.020585449412465096, -0.006681063212454319, 0.008403338491916656, 0.0039765797555446625, -0.023000044748187065, -0.010804291814565659, -0.018457332625985146, 0.01941225677728653, -0.01785709336400032, -0.015428856015205383, -0.0034496658481657505, -0.018593749031424522, -0.004297161474823952, 0.01934404857456684, 0.015988169237971306, 0.0196987334638834, -0.021199330687522888, -0.009399187751114368, -0.016629332676529884, 0.0005533447838388383, 0.008935367688536644, 0.030475743114948273, -0.013021081686019897, -0.012564081698656082, 0.05020175874233246, 0.007632577326148748, 0.02291819453239441, 0.012120723724365234, -0.03590517118573189, 0.00759165221825242, -0.0004838569730054587, 0.017311422154307365, -0.015115095302462578, -0.017475122585892677, -0.015510707162320614, -0.018798375502228737, -0.02347750775516033, 0.0035434530582278967, 0.017556974664330482, 0.010701978579163551, 0.02492353692650795, 0.013259812258183956, 0.0030250651761889458, -0.0011723407078534365, 0.007891771383583546, -0.012461768463253975, 0.008962650783360004, -0.0280202217400074, 0.007462054956704378, 0.004068661481142044, 0.001270391047000885, -0.006609443575143814, 0.004815549124032259, -0.019685091450810432, 0.005333936773240566, 0.036723677068948746, 0.014664916321635246, 0.01797986961901188, -0.009706128388643265, -0.004010683856904507, 0.03061215952038765, 0.007844025269150734, 0.010920247063040733, -0.010783828794956207, -0.0011902455007657409, 0.007407487835735083, 0.0037992363795638084, 0.016574766486883163, 0.006541234906762838, -0.027379058301448822, -0.016329213976860046, 0.009637919254601002, -0.002020688960328698, 0.011309037916362286, 0.033449649810791016, -0.0006364744040183723, 0.014433005824685097, -0.005859145428985357, 0.018675601109862328, 0.010442784987390041, 0.012523156590759754, 0.0033626994118094444, 0.026519624516367912, -0.033858902752399445, 0.012768708169460297, 0.00700505543500185, 0.01476040855050087, 0.0009753874619491398, -0.03336780145764351, -0.0012763593113049865, -0.007598472759127617, 0.00517023541033268, -0.01769339106976986, -0.0014528498286381364, 0.03538678213953972, -0.03077586181461811, 0.02286362834274769, 0.00428010942414403, -0.001544079277664423, 0.020571807399392128, 0.011261291801929474, 0.009242307394742966, 0.0020837823394685984, -0.0063570705242455006, 0.017829809337854385, -0.022959120571613312, -2.274074540764559e-05, -0.019221272319555283, -0.006595802027732134, 0.0005235034041106701, 0.01877109333872795, -0.023177389055490494, 0.009085427038371563, -0.009481038898229599, 0.011179440654814243, 0.0017666108906269073, -0.0020189837086945772, -0.002441879129037261, 0.0005912859924137592, 0.019453182816505432, -0.007598472759127617, -0.018389122560620308, 0.023532075807452202, 0.00967202428728342, 0.00592735456302762, -0.005695444066077471, -0.016097303479909897, -0.008000905625522137, 0.013621320016682148, -0.006820891052484512, 0.012243499979376793, -0.011752395890653133, -0.006606033071875572, -0.011841067112982273, 0.008471546694636345, 0.02263171784579754, 0.037596751004457474, -0.014924109913408756, -0.020517241209745407, 0.007305174600332975, 0.025646550580859184, 0.013675887137651443, -0.02268628403544426, -0.030803145840764046, 0.01476040855050087, -0.0034360240679234266, -0.025632908567786217, -0.0005013354821130633, -0.0012516335118561983, -0.02699708752334118, 0.006009205244481564, -0.00508156418800354, -0.015115095302462578, -0.022440731525421143, -0.009549248032271862, -0.00015656076720915735, 0.0004697888798546046, -0.003488885937258601, 0.015374288894236088, 0.020367180928587914, 0.0011135104577988386, -0.023218313232064247, 0.008451084606349468, 0.019030285999178886, 0.04856474697589874, -0.007612114772200584, -0.011738753877580166, 0.014978677034378052, -0.012966514565050602, -0.012639111839234829, -0.013955543749034405, -0.011629619635641575, 0.03811514005064964, 0.01924855448305607, -0.01544249802827835, 0.011766037903726101, 0.022931836545467377, 0.004286929965019226, 0.015524348244071007, -0.007673502899706364, 0.0019422487821429968, -0.022017836570739746, -0.01739327237010002, 0.0033763411920517683, 0.0034957067109644413, -0.007939517498016357, 0.03617800772190094, 0.01873016729950905, 0.03200362250208855, 0.017720675095915794, 0.015060528181493282, 0.008451084606349468, 0.004491556901484728, -0.017611540853977203, -0.027774669229984283, 0.0012951167300343513, 0.001110952696762979, 0.018962077796459198, -0.02129482291638851, 0.03882451355457306, -0.0024708679411560297, -0.013334842398762703, -0.011950201354920864, 0.0039765797555446625, -0.0020888978615403175, 0.027433624491095543, -0.011738753877580166, -0.006466204766184092, 0.02129482291638851, -0.013300738297402859, -0.005770474206656218, 0.03451370820403099, -0.010033531114459038, -0.007414308842271566, 0.017720675095915794, 0.024705268442630768, -0.016110945492982864, 0.00841697957366705, 0.01473312545567751, -0.016329213976860046, 0.0020752560812979937, -0.020230762660503387, -0.031376101076602936, -0.023218313232064247, -0.018334556370973587, -0.0038606245070695877, -0.02032625675201416, -0.0275154747068882, -0.0268197450786829, -0.048319194465875626, -0.01624736376106739, -0.005746600683778524, -0.027078937739133835, -0.008492009714245796, -0.01878473535180092, -0.030966846272349358, -0.027665534988045692, 0.013525827787816525, 0.014078320004045963, 0.02549649216234684, -0.007243786472827196, 0.009262770414352417, -0.0038810870610177517, 0.011704649776220322, -0.0016992544988170266, -0.008628427051007748, -0.0128096342086792, -0.030175622552633286, 0.010463247075676918, -0.01340987253934145, -0.013116573914885521, -0.0008338539628311992, 0.009208203293383121, 0.019685091450810432, -0.0004945145919919014, -0.01048371009528637, 0.019193988293409348, 0.010149486362934113, 0.025428282096982002, 0.021922344341874123, 0.018634675070643425, -0.019098496064543724, 0.016738466918468475, -0.033558785915374756, 0.019398614764213562, -0.02164950966835022, -0.019507749006152153, -0.008137322962284088, 0.011431814171373844, 0.03830612450838089, -0.023000044748187065, -0.01901664398610592, 0.00032377918250858784, -0.013546289876103401, 0.01243448443710804, 0.0019490696722641587, -0.01392825972288847, -0.007148294243961573, -0.02342294156551361, -0.01578354276716709, 0.008553397841751575, 0.0025169088039547205, 0.0006245378754101694, -0.01975330151617527, 0.007543905638158321, -0.014255662448704243, 0.018689241260290146, 0.01688852719962597, -0.01486954279243946, 0.01934404857456684, 0.011779678985476494, -0.012284425087273121, -0.033285949379205704, -0.007475696969777346, 0.005842093378305435, 0.004474504850804806, -0.03077586181461811, -0.011090769432485104, -0.007632577326148748, -0.0047200568951666355, -0.006264988798648119, 0.007523443084210157, -0.0049792504869401455, 0.002767576603218913, -0.041307318955659866, 0.010094919241964817, 0.023763984441757202, -0.0033541733864694834, -0.0032382181379944086, -0.030175622552633286, -0.02722899802029133, 0.017529690638184547, 0.00022594202891923487, 0.036723677068948746, -0.007121010683476925, -0.0023804910015314817, -0.04370827227830887, -0.029357116669416428, -0.033749770373106, -0.007086906116455793, 0.004252825863659382, 0.004112997557967901, 0.04736426845192909, 0.030121056362986565, 0.010231336578726768, 0.02188141830265522, 0.018907509744167328, 0.02366849221289158, -0.006875458639115095, -0.0033337105996906757, -0.0020599092822521925, -0.014364796690642834, 0.011691007763147354, -0.02268628403544426, -0.009153636172413826, -0.004327855538576841, -0.01424202136695385, 0.00495537742972374, -0.007107368670403957, 0.001164667191915214, 0.005422608461230993, -0.014623991213738918, -0.031894486397504807, -0.03748761862516403, 0.009317337535321712, 0.04771895706653595, 0.005282780155539513, 0.013259812258183956, -0.02894786186516285, -0.006807249505072832, 0.021854136139154434, -0.013723633252084255, 0.05003805831074715, 0.0018211780115962029, 0.031103264540433884, 0.002997781615704298, 0.009481038898229599, 0.020285330712795258, -0.007468875963240862, -0.014596707187592983, -0.010947530157864094, -0.04856474697589874, -0.00826692022383213, 0.017502406612038612, 0.013389409519731998, 0.0042835199274122715, -0.00666401069611311, 0.002001931658014655, 0.022659000009298325, 0.015892677009105682, -0.023927686735987663, -0.009938038885593414, 0.0007183250854723155, -0.027147147804498672, -0.0005154035752639174, -0.031676217913627625, -0.009958500973880291, 0.015919961035251617, -0.0023958380334079266, -0.007366562727838755, 0.005033817607909441, 0.024105029180645943, -0.025169089436531067, -0.023122821003198624, 0.008601143956184387, -0.014091961085796356, 0.025714760646224022, 0.0008773371228016913, 0.010777007788419724, 0.007141473237425089, 0.01334848441183567, -0.015033244155347347, -0.011131694540381432, -0.0020582040306180716, 0.0016310455976054072, -0.007141473237425089, 0.048210058361291885, -0.026669684797525406, -0.012066156603395939, 0.00379582610912621, 0.005610182881355286, 0.010545098222792149, -0.04245322570204735, 0.026151297613978386, 0.011984306387603283, -0.003904960351064801, -0.03931561857461929, -0.031021414324641228, -0.011227186769247055, 0.0008850106387399137, -0.005289601162075996, 0.009064964950084686, 0.0007426245138049126, 0.007011876441538334, -0.012720962055027485, 0.028102071955800056, -0.006912973243743181, 0.028402190655469894, -0.006063772365450859, 0.013164320029318333, 0.0019763533491641283, -0.0064696152694523335, -0.0022662412375211716, -0.016929451376199722, 0.0024947409983724356, 0.012570902705192566, -0.025237297639250755, 0.0013982827076688409, 0.011431814171373844, 0.014255662448704243, 0.005661339964717627, 0.007959980517625809, -0.01935768872499466, 0.02424144744873047, -0.0001905586541397497, -0.005084974225610495, -0.0005000566015951335, -0.012195753864943981, 0.01774795912206173, -0.018743809312582016, -0.017379630357027054, 0.004992892500013113, 0.002032625488936901, 0.001913259970024228, 0.00212470768019557, 0.004587049596011639, 0.00016093040176201612, 0.0037719528190791607, 0.013982826843857765, -0.01671118289232254, -0.015497065149247646, -0.0011527306633070111, 0.01654748246073723, 0.0024043642915785313, -0.005661339964717627, -0.0022525994572788477, -0.0184982568025589, 0.008703457191586494, 0.017488764598965645, 0.00495537742972374, -0.013825946487486362, 0.02200419455766678, -0.028047505766153336, 0.021854136139154434, 0.014705841429531574, 0.026287715882062912, -0.033558785915374756, 0.028811445459723473, 0.00020899636729154736, 0.008744382299482822, 0.01797986961901188, 0.012414022348821163, -0.035686902701854706, -0.02733813226222992, 0.010347291827201843, 0.004658668767660856, 0.015415214002132416, 0.003829930443316698, 0.012898305431008339, 0.021103838458657265, -0.01042232196778059, -0.021745001897215843, -0.011984306387603283, -0.0007272775401361287, -0.005620414391160011, 0.0009088837541639805, 0.02238616533577442, -0.007966800592839718, 0.017993511632084846, -0.005091795232146978, 0.006749271880835295, -0.012161648832261562, -0.011070306412875652, -0.027665534988045692, -0.015769900754094124, -0.005016765557229519, 0.003621893236413598, 0.020817359909415245, -0.01624736376106739, -0.03216732293367386, -0.0140101108700037, 0.029875503852963448, -0.0008590060169808567, 0.006752682384103537, 0.017161361873149872, -0.008710278198122978, -0.016670258715748787, 0.011813784018158913, -0.009951679967343807, -0.04073436185717583, -0.028402190655469894, -0.008273741230368614, -0.031048696488142014, 0.002431647852063179, -0.013259812258183956, 0.0375421866774559, 0.002999486867338419, -0.021103838458657265, -0.041252750903367996, -0.0098493667319417, -0.016001811251044273, -0.00384016172029078, -0.028211206197738647, 0.024718910455703735, 0.026546908542513847, 0.04796450585126877, 0.010142665356397629, 0.027924729511141777, -0.007959980517625809, 0.030421175062656403, -0.03928833454847336, -0.014064677990972996, -0.01226396206766367, -0.023914044722914696, 0.019766943529248238, -0.0369965136051178, -0.042753346264362335, -0.004198258742690086, 0.006930025760084391, -0.02274085208773613, -0.001278917072340846, 0.02785651944577694, 0.015879034996032715, -0.005599951837211847, -0.00907860603183508, 0.0022065583616495132, 0.008144143968820572, 0.0009139994508586824, -0.0004032852011732757, -0.023968612775206566, 0.022809060290455818, 0.01177285797894001, -0.005228213034570217, -0.015578915365040302, 0.017843451350927353, 0.02188141830265522, -0.012270783074200153, -0.006527592893689871, -0.017475122585892677, -0.0009540721657685935, -0.015196945518255234, -0.008894442580640316, -0.007393846288323402, -0.0025203193072229624, 0.0030267704278230667, 0.02853860892355442, -0.0019661218393594027, -0.006684473250061274, -0.009317337535321712, 0.014883184805512428, 0.007741711568087339, 0.0008798950002528727, 0.029957354068756104, -0.03050302527844906, -0.015660766512155533, -0.010367754846811295, 0.01294605154544115, -0.0009651561267673969, -0.01739327237010002, -0.01746148243546486, -0.017843451350927353, -0.040925346314907074, -0.015196945518255234, 0.020708225667476654, -0.002341270912438631, 0.012871021404862404, -0.01626100391149521, 0.005180466920137405, -0.022154254838824272, -0.012584544718265533, -0.008164606988430023, -0.02560562640428543, -0.02406410500407219, -0.004290340468287468, 0.019166704267263412, -0.030584877356886864, -0.008512472733855247, 0.03317681699991226, -0.007809920702129602, -0.0033558784052729607, 0.21423055231571198, 0.0008223436889238656, -0.004784855060279369, 0.049765221774578094, 0.011997947469353676, -0.013525827787816525, 0.00612857099622488, 0.016670258715748787, 0.012659573927521706, 0.027938371524214745, 8.057177910814062e-05, -0.0024913304951041937, -0.02290455251932144, -0.00036619658931158483, 0.01635649800300598, -0.021049270406365395, -0.0284840427339077, -0.010244978591799736, -0.007530264090746641, 0.012986976653337479, 0.006814070511609316, 0.0012780644465237856, -0.011766037903726101, -0.012072977609932423, 0.0284840427339077, 0.02331380732357502, 0.00069828872801736, 0.011056664399802685, 0.0059409961104393005, 0.020517241209745407, -0.01796622760593891, -0.013553110882639885, 0.013798663392663002, 0.0018672189908102155, -0.012871021404862404, 0.004774624016135931, 0.013846409507095814, -0.015319721773266792, 0.014201095327734947, 0.025878461077809334, -0.004863295704126358, -0.014105603098869324, 0.002794860163703561, -0.01866195909678936, 0.02170407585799694, -0.022877268493175507, 0.0035775573924183846, -0.0037787738256156445, 0.0019763533491641283, 0.042180392891168594, -0.0063400184735655785, 0.007728070020675659, -0.007121010683476925, 0.004167564678937197, -0.0098493667319417, -0.0001824588398449123, 0.004396064206957817, 0.0011424992699176073, -0.030339324846863747, 0.028975145891308784, -0.004396064206957817, 0.01386687159538269, -0.015688050538301468, 0.015892677009105682, -0.03399532288312912, 0.016970377415418625, -0.01525151263922453, 0.012509514577686787, 0.003741258755326271, 0.0018962078029289842, -0.0017146015306934714, 0.001580741605721414, -0.028102071955800056, -0.0011527306633070111, -0.0011791615979745984, -0.003615072462707758, -0.0009353146888315678, 0.039070066064596176, 0.045618120580911636, 0.026887953281402588, 0.0016387191135436296, 0.002984139835461974, -0.01223667897284031, 0.005654518958181143, 0.0014639338478446007, -0.0008875684579834342, 0.02664240077137947, -0.03192177042365074, 0.003707154421135783, -0.0017563794972375035, -0.008212353102862835, -0.0009847661713138223, -0.015087811276316643, 0.014487572945654392, -0.019671451300382614, -0.01785709336400032, 0.0040175048634409904, 0.0280202217400074, 0.0014016932109370828, -0.013621320016682148, -0.039015498012304306, 0.03301311284303665, 0.015537990257143974, 0.03394075483083725, -0.02175864391028881, -0.0052861906588077545, -0.017788885161280632, 0.029902787879109383, -0.01855282485485077, 0.014883184805512428, -0.016629332676529884, -0.04471776261925697, 0.017734317108988762, 0.004457452334463596, 0.018866585567593575, 0.02399589493870735, 0.037978723645210266, 0.004020915366709232, -0.01918034628033638, -0.005678392015397549, 0.024609776213765144, -0.02342294156551361, 0.0020837823394685984, 0.00025407818611711264, -0.018825659528374672, -0.024909894913434982, -0.010347291827201843, 0.004259646404534578, -0.025660192593932152, -0.015933601185679436, 0.0019968159031122923, -0.0007630871841683984, 0.02118568867444992, -0.009515142999589443, 0.0040379674173891544, -0.0003604414814617485, 0.009235486388206482, -0.019330406561493874, -0.015701692551374435, 0.0008321487111970782, -0.000400301069021225, 0.001064059091731906, 0.01952139101922512, -0.018675601109862328, 0.03233102336525917, 0.008914904668927193, 0.006367302034050226, 0.019917001947760582, -0.005279369652271271, -0.013832767494022846, 0.001710338518023491, 0.02716078981757164, 0.00508156418800354, 0.0065582869574427605, 0.02343658171594143, -0.01843004859983921, -0.031321533024311066, -0.028047505766153336, 0.025059955194592476, -0.00017734317225404084, -0.025701118633151054, -0.009637919254601002, 0.03170350193977356, 0.016506556421518326, -0.018293630331754684, 0.0019439540337771177, -0.173850879073143, 0.011861530132591724, 0.013634962029755116, 0.00016807102656457573, -0.007891771383583546, 0.02445971593260765, 0.017829809337854385, 0.0034445500932633877, -0.02608308754861355, -0.01100209727883339, 0.013546289876103401, -0.006991413421928883, -0.023218313232064247, -0.01710679568350315, -0.006207011174410582, -0.00679019745439291, -0.009487859904766083, 0.03617800772190094, 0.04147101938724518, -0.011697828769683838, 0.021117478609085083, -0.008949009701609612, -0.00181265186984092, -0.023682134225964546, 0.003853803500533104, 0.00881941244006157, -0.032412875443696976, 0.042234957218170166, 0.011622798629105091, -0.03301311284303665, -0.014255662448704243, -0.010777007788419724, 0.01797986961901188, 0.012734604068100452, -0.006889100186526775, 0.005736369639635086, 0.00254760286770761, -0.006940256804227829, -0.029275264590978622, 0.009631098248064518, 0.03194905444979668, 0.01792530156672001, 0.003922012634575367, -0.0033575836569070816, 0.023054612800478935, 0.028511324897408485, 0.017666108906269073, -0.009365083649754524, 0.002307166578248143, -0.017079511657357216, 0.018962077796459198, -0.020176196470856667, -0.01117261964827776, -0.01763882488012314, 0.0037139751948416233, 0.009303695522248745, 0.0059034815058112144, 0.01602909527719021, 0.0006667420966550708, -0.024200521409511566, -0.000909736379981041, -0.014855900779366493, -0.0009412830113433301, -0.007659860886633396, -0.00858750194311142, -0.03816970810294151, -0.014719483442604542, 0.011561410501599312, -0.011561410501599312, 0.0129255885258317, 0.006415048148483038, -0.0026089909952133894, 0.0060501303523778915, 0.0004092534654773772, 0.021963270381093025, 0.007953159511089325, -0.03767860308289528, -0.00024533894611522555, 0.03972487151622772, 0.010524635203182697, 0.015947243198752403, 0.007155114784836769, 0.000743477139621973, -0.0003333710483275354, -0.02279541827738285, -0.002571475924924016, 0.011691007763147354, 0.012959693558514118, -0.010285903699696064, 0.0234911497682333, 0.027883803471922874, -0.022413449361920357, 0.025537416338920593, -0.01649291440844536, 0.013212066143751144, 0.019439540803432465, 0.0308849960565567, -0.002129823202267289, 0.0178025271743536, -0.023272881284356117, 0.0026089909952133894, 0.024336939677596092, -0.028047505766153336, -0.007734890561550856, 0.027992937713861465, 0.012386738322675228, 0.029302548617124557, -0.016438348218798637, 0.025591984391212463, -0.013907797634601593, -0.026792461052536964, 0.022836344316601753, 0.01980786770582199, -0.004327855538576841, -0.024023178964853287, 0.044417645782232285, 0.004327855538576841, -0.010524635203182697, 0.0019507749238982797, -0.011206724680960178, 0.03814242407679558, -0.023586641997098923, -0.030011922121047974, 0.0006944519700482488, -0.009637919254601002, -0.006292272359132767, -0.10558740049600601, -0.024268731474876404, 0.03301311284303665, -0.003710564924404025, -0.001426418893970549, 0.0056818025186657906, -0.004222131799906492, 0.005299832671880722, -0.0009813557844609022, 0.020599091425538063, -0.03716021403670311, 0.002254304476082325, -0.0059887426905334, -0.010770187713205814, 0.011752395890653133, -0.007168756797909737, 0.012298067100346088, -0.03254929184913635, -0.004945146385580301, 0.01744784042239189, 0.02072186768054962, -0.005552205722779036, 0.011820605024695396, 0.0021059501450508833, -0.025005387142300606, -0.016001811251044273, -0.039888571947813034, 0.016042735427618027, 0.005282780155539513, -0.00700505543500185, 0.025591984391212463, -0.009290053509175777, 0.03456827625632286, -0.0168339591473341, 0.0014136297395452857, -0.012857380323112011, -0.0140101108700037, -0.021745001897215843, 0.013696350157260895, -0.0010214284993708134, -0.00028775635291822255, 0.011895634233951569, 0.013505364768207073, -0.02791108749806881, 0.002307166578248143, -0.007809920702129602, -0.005545384716242552, 0.016670258715748787, -0.00011531569180078804, -0.010817933827638626, -0.013423513621091843, -0.027024371549487114, -0.008103218860924244, -0.03658726066350937, 0.031376101076602936, -0.0023839015047997236, 0.003956116735935211, 0.01791166141629219, -0.025510134175419807, 0.006947077810764313, -0.02027168869972229, -0.0003148267569486052, -0.021172046661376953, 0.024787118658423424, 0.015756258741021156, 0.00512589979916811, -0.023613926023244858, 0.009467396885156631, 0.019616883248090744, 0.002146875485777855, -0.020053420215845108, 0.014651274308562279, -0.014187454245984554, -0.0042835199274122715, -0.025933029130101204, 0.0025919387117028236, 0.00300119211897254, -0.011902455240488052, 0.0018672189908102155, 0.01792530156672001, -0.013853230513632298, -0.012475410476326942, 0.019671451300382614, -0.027992937713861465, -0.006452563218772411, -0.012843738310039043, 0.0025032670237123966, -0.003806057386100292, 0.009242307394742966, -0.0441993772983551, 0.020489957183599472, 0.02676517702639103, 0.021922344341874123, 0.010817933827638626, -0.0140101108700037, -0.00546694453805685, -0.02032625675201416, -0.005770474206656218, 0.0004957935307174921, 0.008287383243441582, 9.842332656262442e-05, 0.011991126462817192, -0.05614957585930824, 0.0037139751948416233, 0.023613926023244858, 0.00279315491206944, 0.016056377440690994, -0.04163471981883049, -0.020067062228918076, -0.01099527720361948, 0.006762913893908262, 0.0026311588007956743, -0.02504631318151951, -0.00046041017048992217, -0.014965035021305084, -0.004109587054699659, -0.017215929925441742, -0.022836344316601753, 0.011288574896752834, 0.0012209395645186305, 0.028784161433577538, -0.0004911041469313204, 0.013505364768207073, 0.01403739396482706, 0.028620459139347076, 0.02400953695178032, 0.0020837823394685984, 0.02842947468161583, -0.020626375451683998, 0.023804910480976105, -0.011909276247024536, -0.019671451300382614, 0.014378438703715801, 0.011165798641741276, -0.0018876816611737013, 0.003826519940048456, -0.0012013295199722052, -0.05061101168394089, -0.00768032344058156, 0.015497065149247646, 0.012980155646800995, 0.00383334094658494, -0.021499449387192726, 0.00041031924774870276, 0.02043539099395275, -0.021690433844923973, -0.024882610887289047, -0.012482231482863426, -0.0018314092885702848, -0.03123968280851841, 0.00428010942414403, 0.0022935247980058193, 0.03822427615523338, -0.0002527992764953524, -0.02630135603249073, -0.03404989093542099, -0.0033354158513247967, -0.00363212451338768, 0.0021656330209225416, 0.0322764590382576, -0.009139994159340858, -0.0032518599182367325, 0.04537256807088852, 0.011295395903289318, 0.011909276247024536, -0.004525661468505859, 0.029247982427477837, -0.005074743181467056, -0.04455406218767166, -0.015769900754094124, 0.020462673157453537, -0.04313531517982483, -0.02077643573284149, -0.010204053483903408, 0.03153980150818825, 0.013000618666410446, 0.015715332701802254, -0.01036093384027481, -0.00244699465110898, -0.024773476645350456, -0.012884663417935371, 0.029875503852963448, 0.012250320985913277, -0.007932696491479874, -0.011813784018158913, 0.02774738520383835, 0.024377865716814995, 0.0034616023767739534, -0.015265154652297497, 0.016165511682629585, 0.019153062254190445, 0.004685952328145504, -0.020817359909415245, 0.007298353593796492, -0.001989995129406452, 0.012441305443644524, -0.005627235397696495, 0.010988456197082996, -0.00849883072078228, 0.00483601214364171, 0.03855167701840401, 0.02084464393556118, 0.004996303003281355, 0.0039015498477965593, -0.014651274308562279, -0.0023003455717116594, 0.005142951849848032, 0.014801333658397198, -0.011936559341847897, -0.026560550555586815, 0.023627568036317825, 0.021663149818778038, -0.002869890071451664, -0.015578915365040302, -0.00571249658241868, 0.016561124473810196, -0.012066156603395939, 0.013655424118041992, 0.004010683856904507, -0.013423513621091843, -0.02842947468161583, -0.004430168773978949, 0.023109178990125656, 0.029357116669416428, 0.0021741590462625027, -0.022781776264309883, 0.031730785965919495, -0.007455233950167894, -0.00933097954839468, -0.007584831211715937, 0.0002015360223595053, -0.01792530156672001, -0.013812304474413395, -0.005954638123512268, 0.002757345326244831, -0.010770187713205814, -0.0066264960914850235, -0.016806676983833313, -0.005777294747531414, 0.03205819055438042, -0.016970377415418625, 0.09762059897184372, 0.030939562246203423, -0.014446647837758064, 0.011349963024258614, -0.013723633252084255, 0.00571249658241868, 0.006084234919399023, 0.017666108906269073, -0.010667873546481133, -0.019425898790359497, 0.02141759917140007, -0.013396230526268482, -0.0011544357985258102, 0.007891771383583546, -0.018170854076743126, 0.007339279167354107, -0.005617003887891769, 0.008519292809069157, -0.00634342897683382, 0.01306882780045271, 0.027351774275302887, -0.0025936439633369446, 0.004095945041626692, -0.021322106942534447, -0.034650128334760666, 0.0005559026612900198, 0.020981062203645706, 0.023000044748187065, -0.003204113570973277, -0.028511324897408485, 0.03271299600601196, -0.010845216922461987, -0.01767975091934204, -0.01001988910138607, -0.02055816724896431, -0.002782923635095358, -0.0005878755473531783, -0.03404989093542099, -0.0069743613712489605, 0.018798375502228737, 0.006957309320569038, 0.011827425099909306, -0.02164950966835022, -0.014201095327734947, 0.015619841404259205, 0.009105890057981014, -0.004488146398216486, -0.02424144744873047, 0.001208150410093367], "184bf94f-62b1-4835-8df6-f922e578b660": [-0.011396435089409351, -0.003682826180011034, 0.01076942402869463, -0.029131878167390823, 0.022792870178818703, 0.023661037907004356, -0.018755197525024414, -0.031777724623680115, -0.012533321976661682, -0.04266428202390671, 0.007599920034408569, 0.010976131074130535, 0.0009164001094177365, -0.010728082619607449, -0.00502986554056406, 0.013849355280399323, 0.028856268152594566, -0.00605306401848793, 0.004041118081659079, -0.008599002845585346, -0.03119894489645958, -0.019499341025948524, -0.01521361991763115, 0.01394581887871027, -0.026279324665665627, 0.0006748115411028266, 0.01752873696386814, -0.012147469446063042, -0.02346811071038246, 0.02561786212027073, 0.007627480663359165, -0.013649539090692997, -0.028911391273140907, -0.0008651540847495198, -0.011665153317153454, 0.023592134937644005, 0.02013324201107025, -0.0030850989278405905, 0.02050531469285488, -0.015585692599415779, 0.010638509877026081, 0.02937992662191391, 0.0055569675751030445, -0.00798577256500721, -0.012285273522138596, 0.03756551444530487, -0.0010076956823468208, -0.016054227948188782, -0.026706518605351448, 0.014841548167169094, -0.003128162818029523, 0.007379432674497366, -0.02971065603196621, 0.0034227201249450445, -0.00048188521759584546, -0.008357844315469265, 0.015585692599415779, 0.0017242791363969445, 0.02040885016322136, -0.011403325013816357, -0.006438916549086571, -0.015461668372154236, -0.005574193317443132, -0.015034474432468414, -0.0139182573184371, -0.031116262078285217, -0.02561786212027073, 0.0033176441211253405, -0.013697770424187183, -0.020918726921081543, 0.05490132421255112, 0.04090038314461708, -0.00026312051340937614, -0.013291247189044952, -0.0031522787176072598, -0.015888862311840057, -0.031419433653354645, -0.041038189083337784, 0.00320051028393209, 0.013883806765079498, 0.023178722709417343, -0.0077515048906207085, -0.013842465355992317, 0.013311917893588543, 0.016109349206089973, 0.030316997319459915, 0.008647234179079533, 0.01191320177167654, -0.012595334090292454, -0.013787343166768551, 0.02302713692188263, 0.005846357438713312, 0.018383124843239784, 0.022930674254894257, 0.01376667246222496, 0.01243685930967331, -0.0010464531369507313, -0.00781351700425148, 0.005422608461230993, -0.025921031832695007, -0.008206259459257126, 0.0010507595725357533, -0.009577414952218533, -0.013249905779957771, 0.003562247147783637, -0.021015191450715065, 0.011361983604729176, -0.0049127317033708096, 0.001967159565538168, 0.01820397935807705, -0.034754302352666855, 0.016205811873078346, -0.001929263467900455, -0.01936153694987297, -0.0006743809208273888, -0.0055569675751030445, 0.019223732873797417, -0.024336280301213264, -0.005002304445952177, -0.030592605471611023, 0.003682826180011034, 0.0006580166518688202, 0.03299040347337723, -0.016522763296961784, 0.004075569100677967, -0.0018121296307072043, 0.008557661436498165, -0.021015191450715065, 0.012981186620891094, -0.006752422079443932, 0.018011052161455154, 0.006163307465612888, 0.013532404787838459, 0.0039033133070915937, -0.025852130725979805, 0.010362900793552399, -0.01602666638791561, 0.006873000878840685, -0.019981656223535538, -0.03318333253264427, 0.00566721148788929, 0.03307308629155159, 0.01467618253082037, -0.02120811678469181, 8.069101022556424e-05, 0.0535508394241333, 0.004244379699230194, 0.037703320384025574, 0.013222345151007175, 0.0026958012022078037, 0.0038619718980044127, -0.0056120892986655235, -0.030592605471611023, -0.01023198664188385, -0.00209807395003736, 0.014813986606895924, 0.0031660590320825577, 0.025783227756619453, -0.011940762400627136, 0.010907229036092758, 0.005873918067663908, 0.04087282344698906, -0.006783428136259317, -0.0037551734130829573, -0.003834411036223173, 0.03197064995765686, 0.0020257264841347933, -0.03221869841217995, -0.03235650435090065, -0.011058813892304897, 0.008619673550128937, 0.03238406404852867, -0.025741886347532272, 0.02084982581436634, 0.005918704438954592, 0.01791458949446678, 0.0065284897573292255, 0.005381267052143812, -0.018383124843239784, -0.028029441833496094, 0.0249150600284338, -0.01814885623753071, 0.0026665176264941692, 0.010466254316270351, -0.025135546922683716, -0.011685824021697044, 0.03423064574599266, 0.013367039151489735, 0.007944431155920029, -0.003600143361836672, 0.006156417541205883, 0.0050918771885335445, -0.029269682243466377, -0.001365126110613346, -0.6266247630119324, 0.009777231141924858, 0.017707882449030876, -0.012195700779557228, 0.014317890629172325, 0.013656429015100002, 0.010480034165084362, 0.0073449816554784775, 0.006576721090823412, 0.023261405527591705, 0.006339008454233408, -0.004530324134975672, -0.008034003898501396, -0.009715219028294086, -0.00605306401848793, -0.022806650027632713, -0.005594864021986723, -0.0096669876947999, -0.003427887801080942, 0.007041811477392912, -0.02191092073917389, 0.010397352278232574, 0.010218205861747265, 0.0019309859490022063, -0.008902172558009624, -0.010817655362188816, -0.0035656923428177834, 0.007558578625321388, -0.008874611929059029, 0.05418474227190018, -0.03274235501885414, 0.01042491290718317, 0.028883829712867737, -0.00529858423396945, 0.037427712231874466, -0.022544821724295616, -0.02561786212027073, 0.02528713084757328, 0.01524118147790432, 0.04930645972490311, -0.02116677537560463, -0.012285273522138596, 0.022048724815249443, 0.021332141011953354, -0.016136910766363144, -0.005429498385637999, -0.0018948123324662447, 0.0019395988201722503, 0.009095098823308945, -0.018107514828443527, 0.008812599815428257, -0.01076942402869463, -0.005463949404656887, 0.006370014511048794, -0.0005438972730189562, -0.004075569100677967, 0.02492883987724781, -0.0007544797845184803, 0.007634371053427458, 0.0024684236850589514, 0.008013333193957806, 0.018727635964751244, -0.022021163254976273, -0.0422508679330349, -0.0357464961707592, 0.02973821759223938, -0.016095569357275963, -0.00857144221663475, -0.0003580764459911734, -0.010025279596447945, 0.025838349014520645, -0.005929039791226387, -4.556700514513068e-05, 0.005057426169514656, 0.01969226822257042, 0.023688599467277527, 0.033706989139318466, -0.003224625950679183, -0.0042960564605891705, 0.009742780588567257, 0.005329590290784836, 0.000684716273099184, -0.015006913803517818, -0.02531469240784645, 0.029159437865018845, -0.00436840346083045, -0.012505761347711086, -0.00040092505514621735, -0.0004175046633463353, -0.0035415764432400465, -0.003651820123195648, 0.01780434511601925, -0.022792870178818703, -0.03536064177751541, 0.015034474432468414, 0.04872768372297287, 0.001688105519860983, 0.024818595498800278, 0.008833270519971848, -0.012154359370470047, -0.03048236295580864, -0.02226921170949936, 0.0057257781736552715, 0.010390461422502995, 0.02013324201107025, 0.019981656223535538, -0.03671112656593323, -0.0023633476812392473, 0.02079470455646515, -0.00325735448859632, -0.014207647182047367, 0.006559495814144611, -0.018079955130815506, -0.007861748337745667, 0.013249905779957771, -0.024336280301213264, 0.013649539090692997, 0.01750117540359497, 0.009191562421619892, -0.0013186171418055892, -0.006339008454233408, -0.02563164196908474, 0.022972015663981438, -0.005715442821383476, 0.019898973405361176, -0.005484620109200478, 0.011231069453060627, -0.008971074596047401, -0.005336480215191841, -0.007372542284429073, -0.006869555916637182, -0.0035898080095648766, -0.008605892769992352, 0.0011549742193892598, 0.03817185387015343, -0.009363817982375622, 0.02487371861934662, 0.00022888471721671522, 0.008860831148922443, -0.04632988199591637, 0.008964184671640396, 0.0029765779618173838, 0.020147021859884262, -0.017611419782042503, 0.000638637866359204, -0.013801123946905136, -0.007158945314586163, -0.004230598919093609, 6.884843605803326e-05, -0.002327173948287964, -0.004947182722389698, -0.014621060341596603, -0.002585557522252202, 0.012967406772077084, -0.0016510705463588238, -0.0028680567629635334, -0.0024460304994136095, -0.03194309026002884, -0.009308695793151855, -0.018879219889640808, -0.003491622395813465, -0.009894365444779396, -0.01152045838534832, -0.0023443996906280518, -0.012078567408025265, -0.014538377523422241, -0.02228299342095852, 0.015475449152290821, -0.01974738948047161, -0.01057649776339531, -0.01641251891851425, -0.0223243348300457, -0.005370931699872017, 0.019885193556547165, 0.0009853023802861571, 0.018135076388716698, -0.013780453242361546, -0.014703743159770966, -0.007269188761711121, 0.0030041388235986233, 0.015613253228366375, 0.008626563474535942, -0.0032918057404458523, -0.02155262790620327, 0.03908136487007141, -0.006035838276147842, 0.03569137305021286, 0.009928815998136997, -0.04710158705711365, -0.0030661507043987513, -0.005746448878198862, 0.017763003706932068, -0.025025302544236183, -0.01116216741502285, -0.030289435759186745, -0.017900807783007622, -0.01599910669028759, 0.008192479610443115, 0.012223261408507824, 0.02225543186068535, 0.025135546922683716, 0.011816738173365593, 0.003689716337248683, 0.003920538816601038, 0.010783204808831215, -0.018052393570542336, 0.02086360566318035, -0.01892056129872799, -0.0030127514619380236, 0.0018293551402166486, 0.001244547194801271, -0.01565459556877613, 0.0011213843245059252, -0.009315586648881435, 0.002087738597765565, 0.014772646129131317, 0.00039963313611224294, -0.0009646317339502275, -0.017763003706932068, -0.013132771477103233, 0.020560435950756073, 0.014497037045657635, 0.02050531469285488, -0.008798819035291672, 0.008654124103486538, 0.01814885623753071, 0.016853494569659233, 0.021290799602866173, 0.007441444788128138, -0.02225543186068535, -0.014745084568858147, 0.026982126757502556, -0.011802958324551582, 0.018755197525024414, 0.03006894886493683, 0.016605446115136147, 0.018011052161455154, 0.00855077151209116, 0.027726272121071815, -0.0015761393588036299, 0.014662401750683784, -0.007413883693516254, 0.019871413707733154, -0.03147455304861069, 0.006252880673855543, 0.005498400889337063, 0.015819959342479706, -0.011169057339429855, -0.028470415621995926, 0.005842912010848522, -0.009694548323750496, 0.004285721108317375, -0.014813986606895924, -0.00013554366887547076, 0.019582023844122887, -0.030757971107959747, 0.013387709856033325, 0.0060771796852350235, -0.008261381648480892, 0.026927005499601364, 0.013608197681605816, 0.006066844332963228, 0.011113935150206089, -0.0035656923428177834, 0.016674349084496498, -0.02902163378894329, -0.00688333623111248, -0.014373012818396091, -0.00639757513999939, -0.011596251279115677, 0.010438692755997181, -0.013112100772559643, 0.0005210734088905156, -0.0167432501912117, -0.014428134076297283, -0.0008698910824023187, -0.006349343806505203, -0.000682563055306673, 0.004513098392635584, 0.022407015785574913, -0.016674349084496498, -0.029931144788861275, 0.023991769179701805, 0.019940314814448357, 0.004161696881055832, -0.005629315041005611, -0.009398268535733223, -0.0042926110327243805, 0.005870473105460405, 0.007248518522828817, 0.004302946384996176, -0.015489229001104832, -0.00875747762620449, -0.011237959377467632, 0.008151138201355934, 0.016991298645734787, 0.03803405165672302, -0.00895729474723339, -0.018520928919315338, -0.0013031141133978963, 0.028387732803821564, 0.02348189242184162, -0.015530570410192013, -0.02525957114994526, 0.026623835787177086, -0.00891595333814621, -0.023716159164905548, -0.015558131039142609, -0.009591195732355118, -0.024019328877329826, -0.006855775602161884, -0.011630702763795853, -0.013112100772559643, -0.02716127224266529, 0.0001511543378001079, -0.0026475696358829737, -0.007882419042289257, -0.001982662593945861, -0.0035966981668025255, 0.01856227032840252, -0.001984385307878256, -0.01392514817416668, -0.0005098767578601837, 0.009536073543131351, 0.06912275403738022, -0.0031333304941654205, 0.006673184223473072, 0.011113935150206089, -0.021304581314325333, -0.0089366240426898, -0.03343137726187706, -0.025576520711183548, 0.0430501364171505, 0.02979333885014057, -0.01641251891851425, 0.012223261408507824, 0.009143330156803131, -0.01021131593734026, 0.011988993734121323, 0.002346122171729803, -0.006087515037506819, -0.01896190270781517, -0.008075345307588577, 0.01113460585474968, 0.008454307913780212, -0.0070624821819365025, 0.045172326266765594, 0.02010568045079708, 0.0259761530905962, 0.021842017769813538, 0.014979352243244648, 0.014317890629172325, 0.003128162818029523, -0.021304581314325333, -0.027657369151711464, 0.0008772119763307273, 0.006180533207952976, 0.01565459556877613, -0.04936158284544945, 0.03155723586678505, 0.0005262410268187523, -0.006938457954674959, -0.015310083515942097, -0.007889308966696262, 0.0005843773251399398, 0.028360173106193542, -0.0035794726572930813, -0.004240934271365404, 0.011823629029095173, -0.0071176039054989815, -0.003965325187891722, 0.03420308604836464, -0.016109349206089973, -3.2647829357301816e-05, 0.010927898809313774, 0.00764126144349575, -0.012712468393146992, 0.012147469446063042, 0.0038068501744419336, -0.008991745300590992, 0.0060220579616725445, -0.043298184871673584, -0.02457054704427719, -0.02492883987724781, -0.026844322681427002, -0.011368873529136181, -0.0105971684679389, -0.022021163254976273, -0.014021610841155052, -0.051897186785936356, -0.02497018128633499, -0.014593499712646008, -0.021704213693737984, 0.008309612981975079, -0.022779088467359543, -0.019113488495349884, -0.026706518605351448, 0.018410684540867805, 0.02709237113595009, 0.020725801587104797, -0.008185588754713535, 0.00783418770879507, 0.006969464011490345, 0.014552158303558826, 0.002671685302630067, -0.006797208450734615, 0.004244379699230194, -0.013587526977062225, 0.0025338807608932257, -0.0171428844332695, -0.004254715051501989, 0.000783763243816793, 0.011610032059252262, 0.02940748631954193, -0.0019189281156286597, -0.03615991026163101, 0.02005055919289589, 0.020615557208657265, 0.003927429206669331, 0.029572851955890656, 0.016564104706048965, 0.0018104070331901312, 0.024749694392085075, -0.04536525160074234, 0.009715219028294086, -0.033321134746074677, -0.02893895097076893, -0.005484620109200478, 0.01781812496483326, 0.017225565388798714, -0.01506203506141901, -0.0056706564500927925, -0.00642169127240777, -0.025852130725979805, 0.005515626166015863, 0.0006046173512004316, -0.01642630062997341, -0.022407015785574913, -0.01430410984903574, -0.014538377523422241, 0.00892973318696022, 0.01969226822257042, -0.0019654370844364166, -0.01003216952085495, -0.005426053423434496, 0.007214067038148642, 0.028332611545920372, 0.009157110936939716, -0.0013814903795719147, 0.015048254281282425, 0.007031476125121117, -0.011492897756397724, -0.03615991026163101, -0.009446500800549984, 0.008412966504693031, -0.006773092783987522, -0.024391401559114456, -0.01223704218864441, -0.012319725006818771, -0.0025459385942667723, -0.007028031162917614, 0.006480257958173752, -0.011113935150206089, 0.002384018385782838, -0.04649524763226509, 0.008034003898501396, 0.0129880765452981, -0.017928369343280792, 0.0013470392441377044, -0.0278365146368742, -0.04679841920733452, -0.01003216952085495, 0.01042491290718317, 0.03263211250305176, -0.02345433086156845, -0.013642648234963417, -0.054873764514923096, -0.031171385198831558, -0.013863136060535908, -0.007282969541847706, 0.007351871579885483, 0.005281358491629362, 0.049030851572752, 0.040707457810640335, 0.0023667928762733936, 0.028181025758385658, 0.03307308629155159, 0.01932019554078579, -0.004096239805221558, -0.006342453416436911, -0.003562247147783637, -0.034396011382341385, 0.0009508512448519468, -0.018300442025065422, -0.005367486272007227, -0.016260934993624687, -0.008447417989373207, 0.00015718329814262688, -0.0028387734200805426, -0.011961433105170727, 0.012071676552295685, -0.0077377245761454105, -0.033982597291469574, -0.048562318086624146, 0.014979352243244648, 0.036573320627212524, 0.013387709856033325, 0.003312476444989443, -0.025480058044195175, 0.0003266397980041802, 0.01781812496483326, -0.004502763040363789, 0.03830965980887413, -0.0015218787593767047, 0.029931144788861275, 0.002120467135682702, 0.009143330156803131, 0.03122650645673275, 0.0022203754633665085, -0.0015485783806070685, -0.019816290587186813, -0.0407901406288147, -0.010831436142325401, 0.012023445218801498, 0.019099708646535873, 0.020243486389517784, -0.012319725006818771, -0.003288360545411706, -0.004619896877557039, 0.011761616915464401, -0.02418469451367855, -0.007096933200955391, 0.0030678734183311462, -0.029159437865018845, -0.004506208002567291, -0.018520928919315338, -0.027395540848374367, 0.011430885642766953, 0.003641484770923853, -0.014827767387032509, -0.006049619056284428, 0.026169080287218094, -0.03381723165512085, -0.018383124843239784, 0.006966019049286842, -0.010976131074130535, 0.013153442181646824, 0.00622531957924366, 0.017184225842356682, 0.006769647356122732, 0.002897340338677168, -0.013787343166768551, -0.0230546984821558, 0.0005016946233808994, 0.009921926073729992, -0.002499429741874337, 0.025066643953323364, -0.020670680329203606, -0.004957518074661493, -0.005532851908355951, 0.002993803471326828, 0.0031557236798107624, -0.04660549387335777, 0.036325275897979736, 0.018810318782925606, 0.00875747762620449, -0.03155723586678505, -0.019540682435035706, -0.0178732480853796, 0.007351871579885483, 0.0046853539533913136, 0.023206282407045364, 0.016660567373037338, 0.0033469274640083313, -0.006521599367260933, 0.011878750286996365, -0.020532874390482903, 0.022834211587905884, -0.01245063915848732, 0.00427194032818079, -0.004619896877557039, -0.0029662426095455885, 0.004189257510006428, -0.022558601573109627, 0.005078096874058247, 0.007110713981091976, -0.023578355088829994, 0.013325697742402554, 0.01081076543778181, 0.009515402838587761, 0.0026355115696787834, 2.6215158868581057e-05, -0.023716159164905548, 0.0326872356235981, -0.004764591809362173, -0.019196171313524246, 0.012698687613010406, -0.020615557208657265, 0.027974320575594902, -0.013456612825393677, -0.020174583420157433, -0.0029093981720507145, -0.009722109884023666, 0.013194783590734005, -0.008778148330748081, 0.01303630881011486, -0.007593029644340277, -0.007003915496170521, 0.0034037719015032053, -0.014180086553096771, -0.020188363268971443, -0.002513210056349635, 0.0160128865391016, -0.02191092073917389, 0.003703496651723981, -0.01130686141550541, -0.013125881552696228, 0.006394130177795887, 0.005377821624279022, -0.0026768529787659645, -0.002313393633812666, 0.03125406801700592, -0.009467171505093575, 0.00195337925106287, 0.009956377558410168, 0.023220064118504524, -0.032191138714551926, 0.022379456087946892, -0.0074001033790409565, 0.008378515020012856, 0.02045019157230854, 0.011830518953502178, -0.03224626183509827, -0.020877385511994362, 0.015516790561378002, 0.010238876566290855, 0.017266906797885895, 0.006311447359621525, 0.01594398356974125, 0.018768977373838425, -0.013215454295277596, -0.018768977373838425, -0.01894812285900116, -0.001536520547233522, -0.0056844367645680904, 0.021635310724377632, 0.024253597483038902, -0.009908145293593407, 0.008509430103003979, 0.0008156305411830544, 0.006580166518688202, -0.0021325252018868923, -0.014248988591134548, -0.028098342940211296, -0.019582023844122887, -0.004995414055883884, 0.007427664007991552, 0.019650926813483238, -0.026279324665665627, -0.030785532668232918, -0.03279747813940048, 0.03053748421370983, 0.003607033519074321, 0.007186506409198046, 0.0283050499856472, -0.015392766334116459, -0.018686294555664062, 0.014813986606895924, -0.016081789508461952, -0.03726234659552574, -0.019788730889558792, -0.014938010834157467, -0.03599454462528229, -0.010486925020813942, -0.009715219028294086, 0.039660144597291946, 0.02301335707306862, -0.0009344869758933783, -0.042168185114860535, -0.018424466252326965, -0.010273328050971031, -0.009170891717076302, -0.026375787332654, 0.030179191380739212, 0.031033581122756004, 0.034285768866539, 0.0028990628197789192, 0.016812153160572052, -0.00798577256500721, 0.01930641382932663, -0.04316037893295288, -0.024267377331852913, -0.01559947244822979, -0.023288965225219727, 0.03502991050481796, -0.029517730697989464, -0.04696378484368324, -0.005078096874058247, 0.011706494726240635, -0.025948593392968178, 0.0038447463884949684, 0.005904924124479294, 0.0023564575240015984, 0.012678016908466816, -0.018520928919315338, -0.007903089746832848, 0.02789163775742054, 0.01322923507541418, 0.0017811235738918185, -0.024033110588788986, 0.008474978618323803, 0.004254715051501989, 0.0009672155720181763, -0.023123599588871002, 0.014497037045657635, 0.011396435089409351, -0.017018860206007957, 0.002432249952107668, -0.02228299342095852, 0.0004403285274747759, -0.016936177387833595, -0.012560882605612278, 0.005515626166015863, 0.001468479516915977, 0.015048254281282425, 0.041479162871837616, 0.004089349415153265, -0.005167670082300901, -0.009639427065849304, 0.0009551576804369688, -0.005191785749047995, -0.012078567408025265, 0.022007383406162262, -0.022737747058272362, -0.015475449152290821, -0.006552605424076319, 0.025052864104509354, 0.002544216113165021, -0.016867274418473244, -0.01863117329776287, -0.007875529117882252, -0.03191553056240082, -0.010321559384465218, 0.01856227032840252, -0.01113460585474968, 0.010672960430383682, -0.00871613621711731, 0.006273551378399134, -0.013167222961783409, -0.007606809958815575, 0.0002497707027941942, -0.01896190270781517, -0.023867744952440262, 0.004964407999068499, 0.01785946637392044, -0.0380064882338047, 0.0047577014192938805, 0.05021597072482109, -0.023330306634306908, 0.006618062499910593, 0.20791947841644287, -0.003841301193460822, -0.0039412095211446285, 0.035498447716236115, 0.012877833098173141, -0.015227400697767735, 0.01595776528120041, 0.006535379681736231, 0.019237512722611427, 0.013904477469623089, 0.010838326066732407, 0.015130937099456787, -0.014207647182047367, -0.005412273108959198, 0.019237512722611427, -0.008468088693916798, -0.0252457894384861, -0.017363371327519417, -0.013263685628771782, -0.007854858413338661, 0.011148386634886265, -0.0042374893091619015, -0.003322811797261238, -0.01021131593734026, 0.027243955060839653, 0.02782273478806019, -0.008474978618323803, 0.017018860206007957, 0.017280688509345055, 0.022655064240098, -0.020147021859884262, -0.0026286214124411345, 0.02193848043680191, -0.0022703297436237335, -0.017763003706932068, 0.0040032216347754, 0.008922843262553215, -0.01433167140930891, 0.0029955259524285793, 0.015075815841555595, 0.0022427686490118504, -0.013511734083294868, 0.009405159391462803, -0.013070759363472462, 0.0326872356235981, -0.010666070505976677, 0.012691797688603401, -0.004302946384996176, 0.013139662332832813, 0.029655534774065018, -0.006587056443095207, 0.00483349384739995, -0.00419614790007472, 0.0077928462997078896, -0.015558131039142609, -0.007282969541847706, -0.00500919483602047, -0.020160803571343422, -0.019030805677175522, 0.02158018946647644, -0.010197535157203674, 0.011775396764278412, -0.010128633119165897, 0.019141050055623055, -0.02716127224266529, 0.0034778418485075235, -0.015199840068817139, 0.022834211587905884, 0.0050367554649710655, 0.004967853426933289, -0.014813986606895924, -0.021373482421040535, -0.0318879671394825, -0.010996801778674126, 0.0005271023255772889, -0.01117594726383686, 0.012374847196042538, 0.029820900410413742, 0.04795597493648529, 0.021290799602866173, 0.010342230089008808, 0.013305027037858963, -0.015296302735805511, -0.005060871597379446, 0.00988747552037239, -0.005677546840161085, 0.044400621205568314, -0.010521375574171543, -0.002327173948287964, -0.012560882605612278, -0.021814458072185516, 0.0025717769749462605, -0.012774479575455189, 0.006500928662717342, -0.00028120737988501787, -0.0074552251026034355, 0.010459363460540771, 0.036242593079805374, 0.012319725006818771, -0.012547102756798267, -0.02565920352935791, 0.0482315868139267, 0.011472227051854134, 0.032108455896377563, -0.022489698603749275, -0.007944431155920029, 0.00022436300059780478, 0.01301563810557127, -0.0040032216347754, 0.011038143187761307, -0.01890678144991398, -0.02973821759223938, 0.01262289471924305, 0.0034451133105903864, 0.017225565388798714, 0.030289435759186745, 0.01863117329776287, 0.004950627684593201, -0.01637117750942707, -0.01079009473323822, 0.031750164926052094, -0.01741849258542061, -0.006142636761069298, 0.007661931682378054, -0.01639873906970024, -0.009756560437381268, -0.012850272469222546, 0.016853494569659233, -0.01599910669028759, -0.026306884363293648, 0.0328250378370285, -0.011975213885307312, 0.017570078372955322, -0.016219593584537506, -0.015351424925029278, -0.006611172575503588, 0.014855328015983105, -0.018052393570542336, -0.017253126949071884, 0.010659180581569672, 0.010796984657645226, 0.0030041388235986233, 0.009735889732837677, -0.0016743250889703631, 0.011830518953502178, -0.007393212988972664, 0.006242545321583748, 0.01791458949446678, -0.0013892418937757611, -0.01057649776339531, -0.0015933648683130741, 0.020987629890441895, -0.005098767578601837, 0.007083152886480093, 0.037345029413700104, -0.030702849850058556, -0.030013827607035637, -0.02567298337817192, 0.023302746936678886, 0.004017001949250698, -0.027354199439287186, -0.0034588936250656843, 0.040018435567617416, 0.003731057746335864, -0.01042491290718317, 0.0009370708139613271, -0.17638979852199554, 0.012202591635286808, 0.015516790561378002, 0.0037723989225924015, -0.00316089135594666, 0.0071727256290614605, 0.016894835978746414, 6.561863847309723e-05, -0.02229677326977253, 0.0014116351958364248, 0.02452920563519001, 0.0021394153591245413, -0.011851189658045769, -0.022916892543435097, 0.005315809976309538, -0.0023099484387785196, -0.0024305274710059166, 0.02600371465086937, 0.04423525556921959, -0.0013203396229073405, 0.029186999425292015, -0.022241652011871338, 0.011368873529136181, -0.019623365253210068, -0.0002693647984415293, -0.0015296302735805511, -0.019554462283849716, 0.04575110599398613, 0.006797208450734615, -0.017322029918432236, -0.013532404787838459, -0.029876021668314934, 0.022462138906121254, 0.020229704678058624, 3.824614032055251e-05, -0.002640679245814681, -0.000790222838986665, -0.010542046278715134, -0.023633476346731186, 0.01336014922708273, 0.02940748631954193, -0.001652793143875897, 0.010293998755514622, -0.005016084760427475, 0.010149303823709488, 0.019389096647500992, 0.014924230985343456, -0.0017897363286465406, 0.01359441690146923, 0.002046397188678384, 0.025576520711183548, -0.020946288481354713, -0.002263439353555441, -0.007193396333605051, 0.022214090451598167, 0.013580636121332645, 0.0022462138440459967, 0.010604058392345905, 0.007703273091465235, -0.027574686333537102, -0.012016555294394493, -0.018121296539902687, -0.004788707476109266, -0.0036759357899427414, 0.004337397404015064, -0.01900324411690235, -0.017638979479670525, 0.017198005691170692, -0.0011911479523405433, 0.006590501870959997, 0.004402854945510626, -0.004781817086040974, 0.009749670512974262, -0.0004926511901430786, 0.020367508754134178, 0.0042926110327243805, -0.04351866990327835, -0.015558131039142609, 0.033321134746074677, 0.01242996845394373, 0.01670190878212452, 0.01712910272181034, -0.010989910922944546, -0.009033086709678173, -0.009377598762512207, -0.012850272469222546, 0.016674349084496498, 0.009611866436898708, -0.006559495814144611, 0.013429051265120506, 0.006263216026127338, -0.01784568652510643, 0.029490169137716293, -0.023867744952440262, 0.020973850041627884, 0.008785039186477661, 0.03483698517084122, -0.004950627684593201, 0.014455695636570454, -0.01853470876812935, 0.003827520878985524, 0.02603127621114254, -0.03679380938410759, 0.0036277042236179113, 0.012581553310155869, 0.019389096647500992, 0.02419847622513771, -0.006459587253630161, 0.027684930711984634, -0.005553522612899542, -0.03092333674430847, 0.025025302544236183, 0.033982597291469574, 0.006435471586883068, -0.013125881552696228, 0.0394672192633152, 0.014703743159770966, 0.000588253082241863, 0.015006913803517818, -0.010466254316270351, 0.052972059696912766, -0.032494306564331055, -0.017570078372955322, 0.012023445218801498, -0.00698324479162693, -0.015723496675491333, -0.10544802993535995, -0.031033581122756004, 0.040652334690093994, 0.001525323954410851, 0.002160086063668132, -0.0007652457570657134, 0.0017354758456349373, 0.011113935150206089, -0.0018638062756508589, 0.02226921170949936, -0.02570054493844509, -0.001176506164483726, -0.009915036149322987, -0.0066559589467942715, 0.012512651272118092, -0.009804792702198029, -0.0044614216312766075, -0.03345894068479538, 0.0006812711362726986, 0.018686294555664062, 0.01001149881631136, -0.021855797618627548, 0.009673877619206905, -0.0008371625444851816, -0.011775396764278412, -0.02932480350136757, -0.024267377331852913, 0.0076963831670582294, 0.013056979514658451, 0.023206282407045364, 0.03235650435090065, -0.01005973108112812, 0.03265967220067978, -0.012974296696484089, -0.007875529117882252, -0.022007383406162262, -0.012140579521656036, -0.02563164196908474, 0.0219247005879879, -0.025838349014520645, 0.00036625860957428813, 0.004044563043862581, 0.005849802400916815, -0.03125406801700592, 0.004265050403773785, 0.0013143107062205672, -0.005539742298424244, 0.03690405189990997, 0.007186506409198046, -0.004847274161875248, -0.015875082463026047, -0.03643551841378212, -0.014193866401910782, -0.028470415621995926, 0.024294938892126083, 0.0041685872711241245, 0.0010877945460379124, 0.015158498659729958, -0.01604044809937477, 0.0008220901363529265, -0.018038613721728325, -0.01096235029399395, -0.016440080478787422, 0.015392766334116459, 0.02011946216225624, 0.010135523043572903, -0.021704213693737984, 0.020188363268971443, 0.015709716826677322, 0.007096933200955391, -0.020174583420157433, 0.013801123946905136, -0.02083604410290718, 0.007930650375783443, -0.004382184240967035, 0.01595776528120041, 0.004940292332321405, -0.009777231141924858, 0.014703743159770966, 0.01635739766061306, -0.025893472135066986, -0.0048162685707211494, 0.01628849469125271, -0.02418469451367855, 0.018079955130815506, -0.010114852339029312, -0.00649748370051384, -0.0017018859507516026, 0.022806650027632713, -0.04189257696270943, 0.020188363268971443, 0.025066643953323364, 0.018162637948989868, 0.012974296696484089, 0.005067761521786451, 0.018052393570542336, -0.007310530170798302, -0.011079484596848488, 0.00037142628571018577, 0.005043645855039358, -0.008998636156320572, 0.012960515916347504, -0.05051914229989052, 0.006566385738551617, 0.01819019764661789, 0.007489676121622324, 0.01152045838534832, -0.04205794259905815, -0.0054880655370652676, -0.002616563579067588, 0.004199592862278223, 0.007310530170798302, -0.019912755116820335, 0.0005805015680380166, -0.013243014924228191, 0.0036449297331273556, -0.01785946637392044, -0.04087282344698906, 0.01169960480183363, -0.0029404042288661003, 0.019830072298645973, -0.0023323416244238615, -0.015544351190328598, 0.009033086709678173, 0.019058367237448692, 0.019237512722611427, -0.00444764131680131, 0.02608639746904373, -0.016949957236647606, 0.026844322681427002, -0.02043641172349453, -0.015737276524305344, 0.020877385511994362, 0.00949473213404417, 0.013070759363472462, 0.00222209794446826, -0.0028060446493327618, -0.03759307414293289, -0.031419433653354645, 0.019871413707733154, 0.022076286375522614, 0.014800206758081913, -0.013243014924228191, -0.006425136234611273, 0.013780453242361546, -0.018851660192012787, -0.028690902516245842, -0.018465807661414146, -0.028332611545920372, -0.02112543396651745, 0.00549151049926877, -0.0019189281156286597, 0.023123599588871002, -0.008082236163318157, -0.03861282765865326, -0.03519527614116669, -0.008661014959216118, -0.011554909870028496, 0.0027164719067513943, 0.037730880081653595, -0.007785955909639597, -0.0014271382242441177, 0.046633053570985794, 0.019967876374721527, 0.006921232677996159, -0.009460280649363995, 0.04919621720910072, -0.013656429015100002, -0.05269645154476166, -0.012602224014699459, 0.005146999377757311, -0.03423064574599266, 0.002873224439099431, -0.023151161149144173, 0.019127268344163895, 0.01752873696386814, 0.018865440040826797, -0.0074690054170787334, -0.006290776655077934, -0.022792870178818703, -0.01506203506141901, 0.03505747392773628, 0.018135076388716698, -0.003081653732806444, -0.01394581887871027, 0.018672514706850052, 0.03241162374615669, 0.0013255072990432382, -0.027588466182351112, 0.02124945819377899, 0.008605892769992352, 0.013022528029978275, -0.016054227948188782, -0.007517237216234207, 0.0160128865391016, 0.009294915944337845, 0.002103241626173258, 0.014689963310956955, -0.0061908685602247715, 0.023261405527591705, 0.03310064971446991, 0.019623365253210068, 0.005915259476751089, 0.01005284022539854, -0.020257266238331795, -0.014166305772960186, -0.005994496867060661, 0.013311917893588543, -0.01172027550637722, -0.02531469240784645, 0.015902642160654068, 0.012002774514257908, 0.0009809959447011352, -0.021662872284650803, 0.0008492204360663891, 0.014689963310956955, -0.015723496675491333, 0.009046867489814758, -0.001801794278435409, -0.014993133023381233, -0.02713371254503727, 0.0010188922751694918, 0.008282052353024483, 0.010900338180363178, 0.013690880499780178, -0.012753808870911598, 0.03150211647152901, -0.0026527373120188713, 0.01540654618293047, -0.001984385307878256, -0.00695912865921855, 0.0014960403786972165, -8.067755516094621e-06, -0.0026441244408488274, 0.007365652360022068, -0.02049153298139572, -0.011003691703081131, -0.03376210853457451, -0.007034921087324619, 0.031805284321308136, -0.016646787524223328, 0.08224174380302429, 0.02565920352935791, -0.01976116932928562, 0.00988058466464281, -0.004847274161875248, 0.016054227948188782, 0.006349343806505203, 0.010590278543531895, -0.008068455383181572, -0.007386323064565659, 0.03163991868495941, -0.009046867489814758, -0.015075815841555595, -0.010176864452660084, -0.013794233091175556, 0.01266423612833023, -0.007682602386921644, 0.009604975581169128, -0.013718441128730774, 0.004327062051743269, 0.020243486389517784, -0.008206259459257126, 0.006804098840802908, -0.013332588598132133, -0.03354162350296974, -0.007427664007991552, 0.02079470455646515, 0.019099708646535873, -0.000880226434674114, -0.013215454295277596, 0.025466276332736015, -0.015296302735805511, -0.0341479629278183, -0.007923760451376438, -0.020160803571343422, 0.0026699628215283155, -0.016136910766363144, -0.03276991844177246, 0.016440080478787422, 0.016247153282165527, 0.01394581887871027, 0.02605883590877056, -0.017721662297844887, -0.027285296469926834, 0.012023445218801498, -0.003655265085399151, 0.0031522787176072598, -0.03246674686670303, -0.0031746719032526016], "b2f62080-d437-4bf6-a39b-8fd08f0953c3": [-0.00045680461334995925, 0.001616970170289278, -0.0016954966122284532, -0.028614038601517677, 0.03231576085090637, 0.02379099279642105, -0.01834649033844471, -0.039421986788511276, -0.014374569058418274, -0.034099072217941284, 0.00315456953831017, 0.011753642000257969, -0.0035024501848965883, -0.010037880390882492, -0.012462913990020752, 0.018387019634246826, 0.024588078260421753, 0.002875927137210965, 0.005934238433837891, -0.0075452979654073715, -0.017238674685359, -0.0021818543318659067, -0.019049005582928658, -0.0015654634917154908, -0.025830993428826332, 0.0032710926607251167, 0.021413244307041168, -0.006062582600861788, -0.021399734541773796, 0.016522647812962532, 0.007781721651554108, -0.023088475689291954, -0.022264370694756508, -0.002053509932011366, -0.009619073010981083, 0.021372715011239052, 0.0037084766663610935, 0.004387350752949715, 0.021480794996023178, 0.009808211587369442, 0.011902251280844212, 0.03150516375899315, 0.005275628995150328, -0.00924079492688179, -0.004191456828266382, 0.031018806621432304, 0.00505946995690465, -0.011902251280844212, -0.021980661898851395, 0.001042798045091331, -0.01625245064496994, 0.00796410534530878, -0.021413244307041168, 0.02339920401573181, -0.0027746025007218122, -0.006572582758963108, 0.006332781165838242, 0.00747099332511425, 0.007558807730674744, -0.012422383762896061, 0.0014801820507273078, -0.008241059258580208, -0.013300529681146145, -0.018967946991324425, -0.016549669206142426, -0.03936794772744179, -0.029829932376742363, 0.004498807713389397, -0.014077350497245789, -0.01248317863792181, 0.05195920541882515, 0.03585536405444145, 0.002227450255304575, -0.017387283965945244, 0.010233774781227112, -0.016806356608867645, -0.022061720490455627, -0.025250066071748734, -0.010436424054205418, -0.001141589367762208, 0.016144370660185814, -0.015630992129445076, -0.027438674122095108, -0.0009727152064442635, 0.024344900622963905, 0.028614038601517677, 0.012699337676167488, 0.01378688681870699, -0.007295364048331976, -0.02431788109242916, 0.010402648709714413, 0.02168344333767891, 0.023237084969878197, 0.022102251648902893, 0.013590993359684944, 0.027857482433319092, 0.005170926917344332, -0.004657549783587456, -0.007126490119844675, -0.009396159090101719, -0.010044635273516178, -0.0167793370783329, 0.002136258175596595, -0.018441058695316315, 0.007916821166872978, -0.01808980107307434, 0.0007189817843027413, -0.013408608734607697, 0.002509470097720623, 0.028749138116836548, -0.028776157647371292, 0.021143045276403427, -0.003630794584751129, -0.010112185031175613, 0.006005165632814169, -0.003352152183651924, 0.027087416499853134, -0.03158622607588768, -0.007619602605700493, -0.022318409755825996, -0.0072413245216012, 0.0009136092266999185, 0.04055682197213173, -0.016698278486728668, 0.022953376173973083, -0.010733642615377903, 0.007626357488334179, -0.02404768206179142, 0.006950860843062401, 0.001023377408273518, 0.017643973231315613, 0.003846953622996807, 0.02338569425046444, 0.013043840415775776, -0.027938542887568474, 0.009051655419170856, -0.028587019070982933, 0.02718198671936989, -0.004495430272072554, -0.016819866374135017, 0.01900847628712654, 0.02818172052502632, 0.01992715150117874, -0.009288079105317593, 0.01599576137959957, 0.04525827616453171, -0.014036821201443672, 0.02489880658686161, -0.003031291300430894, -0.007383178453892469, -0.0018187748501077294, -0.01159827783703804, -0.025722913444042206, -8.332885045092553e-05, 4.137417272431776e-05, -0.0011069701286032796, 0.00491761602461338, 0.03701721876859665, -0.017576424404978752, 0.0014058774104341865, 0.00098706956487149, 0.03866542875766754, -0.0067650992423295975, -0.008997615426778793, 0.0033741057850420475, 0.03309933841228485, 0.015820132568478584, -0.02646595984697342, -0.03053244948387146, -0.009038145653903484, 0.01860317774116993, 0.03158622607588768, -0.021913111209869385, 0.027533244341611862, 0.013739602640271187, 0.018819337710738182, -0.003843576181679964, -0.005978145636618137, -0.007774966768920422, -0.021845562383532524, 0.021467285230755806, 0.003414635779336095, -0.018103310838341713, 0.017022516578435898, -0.022588608786463737, -0.01349642314016819, 0.027168476954102516, 0.02502039633691311, 0.0169009268283844, -0.011557748541235924, 0.024844767525792122, 0.0075385430827736855, -0.018238410353660583, -0.01297629065811634, -0.6333456635475159, 0.008747681975364685, 0.019211124628782272, -0.010416158474981785, 0.007842516526579857, 0.015347284264862537, 0.019157085567712784, -0.009774437174201012, -0.0055525824427604675, 0.03769271448254585, 0.009220529347658157, -0.0034788078628480434, -0.016009271144866943, -0.007903311401605606, -0.016792846843600273, -0.026290331035852432, -0.010632317513227463, -0.0071062250062823296, -0.013151920400559902, -0.00999059621244669, -0.01267231721431017, 0.017522383481264114, 0.004417748190462589, 0.005235099233686924, -0.0034349006600677967, -0.024331390857696533, 0.009538013488054276, 0.0005133774830028415, 0.0030414238572120667, 0.04034066200256348, -0.023966621607542038, 0.017211655154824257, 0.02108900621533394, -0.0074304635636508465, 0.03504476696252823, -0.024750197306275368, -0.021061986684799194, 0.01664423756301403, 0.008173509500920773, 0.032126620411872864, -0.023628873750567436, -0.010078410618007183, 0.02260211855173111, 0.02156185358762741, -0.026574039831757545, 0.0004027648828923702, 0.008531522937119007, 6.084747292334214e-05, 0.008673377335071564, -0.013780131936073303, 0.0019623178523033857, -0.009970330633223057, -0.00040065395296551287, -0.006450993474572897, 0.014496158808469772, -0.013219470158219337, 0.018778808414936066, 0.00959880743175745, -0.007801986765116453, -0.0055492050014436245, 0.006869801320135593, 0.013915231451392174, -0.010780926793813705, -0.04239417240023613, -0.029992053285241127, 0.01664423756301403, -0.02496635727584362, -0.0023963244166225195, -0.004650794435292482, -0.01709006540477276, 0.016347019001841545, -0.004633907228708267, 2.7283733288641088e-05, -0.003257582662627101, 0.00028708609170280397, 0.02260211855173111, 0.042691390961408615, -0.002752648899331689, 0.014590728096663952, 0.026114702224731445, 0.0006683195242658257, -0.0001627524761715904, -0.004093509633094072, -0.010328344069421291, 0.02045403979718685, 0.0033183773048222065, -0.013753112405538559, -0.0181573498994112, 0.0006763410638086498, -0.006420596037060022, -0.0014641390880569816, 0.01444211881607771, -0.014658277854323387, -0.034369271248579025, 0.0053701987490057945, 0.06868450343608856, -0.007457483094185591, 0.009510993026196957, -0.009301588870584965, -0.01841403916478157, -0.04109721630811691, -0.025196025148034096, 0.01549589354544878, -0.0021632781717926264, 0.012949271127581596, 0.022507548332214355, -0.03155920282006264, -0.017387283965945244, 0.016333509236574173, -0.0188598670065403, -0.011800927110016346, -0.0076533774845302105, -0.01958940364420414, -0.016198409721255302, 0.01807629130780697, -0.02641192078590393, 0.00257870857603848, 0.017589934170246124, -0.005789006594568491, -0.004910860676318407, -0.02549324370920658, -0.01985960267484188, 0.02523655630648136, 0.0017216721316799521, 0.012598012574017048, 0.01297629065811634, 0.009463708847761154, -0.0006189238047227263, 0.007869536057114601, -0.009112450294196606, -0.005924105644226074, 0.004130661953240633, -0.0034467217046767473, -0.0025922185741364956, 0.04004344344139099, 0.003157946979627013, 0.033909931778907776, -0.005218212027102709, 0.011956291273236275, -0.04188079386949539, 0.0007096937042661011, -0.007234569173306227, 0.01696847565472126, -0.013104635290801525, 0.014279999770224094, -0.03223470225930214, 0.009396159090101719, 0.00027420942205935717, 0.003017781302332878, -0.0059916554018855095, -0.023291125893592834, -0.011929270811378956, 0.01630648970603943, 0.01565801352262497, -0.008065430447459221, -0.0188598670065403, -0.001541821169666946, -0.026749668642878532, -0.006565827876329422, -0.014631258323788643, -0.011348344385623932, -0.008727417327463627, -0.01814384013414383, 0.002847218420356512, -0.006623244844377041, -0.010051390156149864, -0.0193192046135664, 0.01142940390855074, -0.006244966760277748, -0.02561483345925808, -0.008173509500920773, -0.016522647812962532, -0.00012317259097471833, 0.007585827726870775, 0.00673132436349988, 0.0027830463368445635, -0.01565801352262497, -0.018954437226057053, -0.021467285230755806, 0.0019623178523033857, 0.011476688086986542, 0.026547018438577652, -0.020791787654161453, -0.01664423756301403, 0.04993271455168724, -0.00021742549142800272, 0.020210860297083855, 0.011936026625335217, -0.037260398268699646, 4.6466782805509865e-05, 0.004603509791195393, 0.009551523253321648, -0.01972450315952301, -0.0065523176454007626, -0.014279999770224094, -0.020602649077773094, -0.015752581879496574, -0.003846953622996807, 0.00822079461067915, 0.019373245537281036, 0.037962913513183594, 0.029370594769716263, 0.0012555794091895223, -0.0010765728075057268, 0.01800874061882496, -0.026641588658094406, 0.013442384079098701, -0.01592821069061756, 0.0013129966100677848, 0.014050330966711044, 0.002154834335669875, -0.011226754635572433, 0.005528940353542566, -0.01513112522661686, 0.009923046454787254, 0.02529059536755085, 0.02410172112286091, 0.018751787021756172, -0.004833178594708443, -0.013793641701340675, 0.01952185481786728, 0.022237351164221764, 0.025439204648137093, -0.004184701945632696, 0.00412728451192379, 0.011219999752938747, 0.008078940212726593, 0.011909006163477898, 0.0056539070792496204, -0.026182251051068306, -0.011307814158499241, 0.008808476850390434, -0.004728476516902447, 0.009375893510878086, 0.03736847639083862, 0.016401059925556183, 0.02693880721926689, 0.009342119097709656, 0.017846621572971344, 0.003765893867239356, 0.013759867288172245, 0.0035970197059214115, 0.011915761046111584, -0.028397880494594574, 0.020994435995817184, 0.0007248923648148775, 0.0063226488418877125, -0.004900728352367878, -0.01808980107307434, 0.013550463132560253, -0.0015848841285333037, -0.008930065669119358, -0.023493774235248566, 8.00833004177548e-06, 0.024817747995257378, -0.02489880658686161, 0.020156821236014366, 0.005748476833105087, -0.0072075496427714825, 0.02653350867331028, 0.015522914007306099, -0.0024554303381592035, 0.00691370852291584, 0.003095463616773486, 0.021778013557195663, -0.005235099233686924, -0.002311887452378869, -0.022750727832317352, -0.01710357517004013, -0.023358674719929695, 0.021048476919531822, -0.01906251534819603, 0.002109238412231207, -0.007552052848041058, -0.004204966593533754, -0.005251986440271139, -0.0021632781717926264, 0.007329138927161694, 0.0029147681780159473, 0.017414303496479988, -0.024655628949403763, -0.02554728463292122, 0.025912052020430565, 0.008930065669119358, 0.000641299644485116, 0.004113774746656418, -0.018170859664678574, -0.01267907302826643, 0.014158410020172596, -0.0019994701724499464, 0.010537748225033283, -0.018238410353660583, -0.010801191441714764, -0.005444503389298916, 0.011098410002887249, 0.011496953666210175, 0.04239417240023613, -0.01676582731306553, -0.021859072148799896, 0.0005631953245028853, 0.023115497082471848, 0.010841721668839455, -0.025763442739844322, -0.03072158806025982, 0.017184635624289513, -0.013516688719391823, -0.02215629070997238, -0.01900847628712654, -0.011348344385623932, -0.02122410573065281, 0.015698542818427086, -0.004519072826951742, -0.02108900621533394, -0.020008211955428123, -0.004235364031046629, 0.0015857284888625145, 0.002860728418454528, -0.01754940301179886, 0.010497217997908592, 0.006055827718228102, -0.0041509270668029785, -0.008518013171851635, 0.014428609050810337, 0.0006450993241742253, 0.06306436657905579, -0.017603443935513496, -0.007950595580041409, 0.028343839570879936, -0.01425298023968935, -0.014212450012564659, -0.02456105872988701, -0.030100131407380104, 0.03499072790145874, 0.021399734541773796, -0.03001907281577587, 0.018495099619030952, 0.014685297384858131, -0.0033572185784578323, 0.02365589328110218, -0.005025695078074932, 0.002033245051279664, -0.025304105132818222, -0.017725031822919846, 0.013847681693732738, 0.01208463590592146, 0.0062111918814480305, 0.048905957490205765, 0.022034700959920883, 0.02175099216401577, 0.015104105696082115, 0.03509880602359772, 0.01432052906602621, 0.004380595870316029, -0.019021986052393913, -0.007342648692429066, 0.006998145487159491, 0.011875231750309467, 0.009288079105317593, -0.052256423979997635, 0.022494038566946983, -0.00015821398119442165, -0.015023046173155308, -0.03277510032057762, -0.005397218279540539, -0.009321854449808598, 0.027938542887568474, -0.007734437007457018, -0.00394490035250783, 0.022264370694756508, -0.026695627719163895, -0.006373310927301645, 0.034099072217941284, -0.009855496697127819, -0.013563972897827625, 0.0021987417712807655, 0.008457218296825886, -3.108340024482459e-05, 0.02772238291800022, -0.010098675265908241, -0.01940026506781578, -0.015820132568478584, -0.019629932940006256, -0.02993801236152649, -0.02883019857108593, -0.031424105167388916, -0.0072075496427714825, -0.025047415867447853, -0.02279125712811947, -0.029965031892061234, -0.04112423583865166, -0.015333774499595165, -0.0034163244999945164, -0.01800874061882496, -0.0050358278676867485, -0.022831788286566734, -0.02993801236152649, -0.017806092277169228, 0.01913006603717804, 0.011713112704455853, 0.015968741849064827, -0.00575185427442193, 0.001390678808093071, 0.0021075496915727854, 0.019251655787229538, -0.011611787602305412, -0.00788980070501566, -0.004329933784902096, -0.01952185481786728, 0.01202384103089571, -0.018832847476005554, -0.00999059621244669, 0.0081599997356534, 0.00835589412599802, 0.012604768387973309, -0.010321589186787605, -0.02333165518939495, 0.007808741647750139, -0.011226754635572433, 0.012733112089335918, 0.01084847655147314, 0.011253774166107178, -0.018292449414730072, 0.01952185481786728, -0.0338018536567688, 0.01117271464318037, -0.01999470219016075, -0.003853708505630493, -0.01471231784671545, 0.02529059536755085, 0.028803179040551186, -0.010787681676447392, 0.005133774597197771, -0.012172450311481953, -0.022183310240507126, 0.002403079532086849, -0.010436424054205418, -0.01749536395072937, -0.01913006603717804, -0.0038064238615334034, -0.006795496679842472, 0.013442384079098701, 0.012604768387973309, 0.00959880743175745, -0.02096741646528244, 0.0052587417885661125, -0.006515165325254202, 0.03766569495201111, 0.00018227855616714805, -0.004583245143294334, 0.018778808414936066, 0.011544237844645977, -0.011179469525814056, -0.028127681463956833, 0.006971125490963459, -0.00394827825948596, 0.002646258333697915, -0.018562648445367813, -0.021778013557195663, -0.005832913797348738, -0.007633112370967865, -0.010112185031175613, 0.010321589186787605, -0.0034652978647500277, 0.0030363574624061584, -0.047338806092739105, 0.01846807822585106, 0.02202119119465351, -0.011037616059184074, -0.0025753311347216368, -0.028127681463956833, -0.033720795065164566, 0.0009786258451640606, -0.0011745198862627149, 0.02692529745399952, -0.015887681394815445, -0.003542979946359992, -0.03890860825777054, -0.016211919486522675, -0.015712052583694458, -0.02181854285299778, -0.001754602650180459, 0.01841403916478157, 0.026438940316438675, 0.037125296890735626, 0.011591522954404354, 0.021007945761084557, 0.017387283965945244, 0.020656688138842583, -0.012692582793533802, 0.0013138410868123174, -0.001688741729594767, -0.015887681394815445, -0.0017132284119725227, -0.014523178339004517, -0.0077209267765283585, -0.004968278110027313, -0.004694702103734016, -0.004721721634268761, -0.013415363617241383, -0.008349139243364334, 0.004583245143294334, -0.009808211587369442, -0.0390707291662693, -0.052526623010635376, 0.012570993043482304, 0.038881588727235794, 0.00427251635119319, 0.0010444867657497525, -0.02004874125123024, -0.0062078144401311874, 0.018562648445367813, -0.01768450252711773, 0.03715231642127037, 0.006667152047157288, 0.03169430419802666, -0.0032254967372864485, 0.007160264533013105, 0.019292185083031654, -0.012145429849624634, -0.013023575767874718, -0.010510728694498539, -0.04304264858365059, -0.002544933697208762, 0.016941456124186516, 0.00432317890226841, 0.011159204877912998, -0.0032491390593349934, 0.011030860245227814, 0.014104370959103107, 0.006869801320135593, -0.019683973863720894, -0.01756291277706623, 0.005917350761592388, -0.014955496415495872, -0.01107814535498619, -0.04244821146130562, -0.014996026642620564, 0.017481854185461998, -0.02416927181184292, -0.00992980133742094, 0.006353046279400587, 0.01808980107307434, -0.023345164954662323, -0.016954965889453888, 0.013165430165827274, -0.008551787585020065, 0.021980661898851395, 0.01717112585902214, 0.016428079456090927, 0.008112714625895023, 0.018832847476005554, -0.01952185481786728, -0.010895761661231518, 0.001620347611606121, -0.004363708663731813, -0.009456953033804893, 0.04769006371498108, -0.02437192015349865, -0.0040394701063632965, -0.00992980133742094, -0.0022679800167679787, -0.007167019881308079, -0.034423310309648514, 0.016617218032479286, 0.018954437226057053, -0.0008941887062974274, -0.02901933714747429, -0.00996357575058937, -0.006724569480866194, -0.004090132191777229, -0.003765893867239356, 0.0020771522540599108, 0.009544768370687962, 0.0064341058023273945, -0.006629999727010727, 0.0374765545129776, -0.011267284862697124, 0.0184005293995142, 0.003961788024753332, 0.00677860900759697, 0.000856192025821656, -0.008754436857998371, -0.002705364255234599, -0.012814171612262726, 0.0019893376156687737, 0.017670992761850357, -0.024858277291059494, 0.00904490053653717, 0.00877470150589943, 0.01599576137959957, -0.007031920365989208, 0.0031832780223339796, -0.03026225045323372, 0.028019601479172707, 0.0013594370102509856, -0.011625297367572784, 0.008463973179459572, -0.01025403942912817, 0.0188598670065403, -0.019562384113669395, -0.012098145671188831, -0.01257774792611599, -0.010152715258300304, 0.015252714976668358, 0.006890065968036652, 0.0005805049440823495, -0.013442384079098701, 0.005022317636758089, 0.0039043708238750696, -0.008045165799558163, -0.002080529695376754, -0.003637549700215459, 0.017576424404978752, -0.022764237597584724, 0.012429138645529747, -0.009781192056834698, -0.022507548332214355, 0.004998675547540188, 0.014752847142517567, -0.0020349337719380856, 0.014955496415495872, 0.0167793370783329, -0.011537482962012291, 0.017833111807703972, 0.01061880774796009, 0.025993112474679947, -0.03182940185070038, 0.02777642384171486, -0.00018132863624487072, 0.01630648970603943, 0.020751258358359337, 0.010963311418890953, -0.021197086200118065, -0.03480158746242523, 0.008403178304433823, -0.005245231557637453, 0.01958940364420414, 0.005201324354857206, 0.00947046373039484, 0.02188609167933464, -0.004728476516902447, -0.019819071516394615, -0.010463443584740162, -0.003090397221967578, -0.0003366928722243756, -0.002696920419111848, 0.0101189399138093, -0.0057653640396893024, 0.016954965889453888, 0.0073156291618943214, -0.002906324341893196, 0.01484741736203432, -0.02207523211836815, -0.026574039831757545, -0.02057562954723835, -0.006508410442620516, -0.003975297790020704, 0.01303708553314209, -0.01549589354544878, -0.03925986588001251, -0.02503390610218048, 0.03039734996855259, -0.012206224724650383, -0.00033437085221521556, 0.024925827980041504, -0.01326675433665514, -0.030640529468655586, 0.009058410301804543, -0.02057562954723835, -0.053499337285757065, -0.023277616128325462, -0.0159822516143322, -0.03382887318730354, -0.007227814290672541, -0.008599072694778442, 0.03788185492157936, 0.013111390173435211, -0.012226489372551441, -0.03209960088133812, -0.01691443659365177, -0.020156821236014366, 0.010240529663860798, -0.025385165587067604, 0.03261297941207886, 0.015225695446133614, 0.03755761682987213, 0.008105959743261337, 0.026033641770482063, -0.007727682124823332, 0.02154834382236004, -0.04809536412358284, -0.0027306952979415655, -0.01933271437883377, -0.0182789396494627, 0.029667813330888748, -0.029640793800354004, -0.04225907102227211, 0.0022325164172798395, 0.018292449414730072, -0.019629932940006256, -0.0022646025754511356, 0.014698808081448078, 0.015482383780181408, -0.0029772515408694744, -0.0002547889016568661, -0.0024284105747938156, 0.025641852989792824, -0.0037017217837274075, 0.0012994867283850908, -0.029721854254603386, 0.010152715258300304, 0.012760132551193237, -0.0026834106538444757, -0.019819071516394615, 0.005596490111202002, 0.020291920751333237, -0.025790462270379066, -0.003157946979627013, -0.01261827815324068, -0.0003502028121147305, -0.010105430148541927, -0.01526622474193573, -0.004174569621682167, 0.005626887083053589, 0.0008756125462241471, 0.0363146997988224, 0.002896192017942667, -0.0040327152237296104, 0.010861986316740513, 0.010916026309132576, 0.003782781306654215, -8.976717799669132e-05, 0.03053244948387146, -0.022831788286566734, -0.01117271464318037, -0.015968741849064827, 0.0187382772564888, -0.003149503143504262, -0.02883019857108593, -0.011746887117624283, -0.006859668530523777, -0.01729271560907364, 9.235306060872972e-05, 0.024925827980041504, -0.012854701839387417, 0.01386119145900011, -0.012949271127581596, 0.012435893528163433, -0.01952185481786728, -0.011469933204352856, -0.00016570778097957373, -0.022318409755825996, -0.021710462868213654, -0.004387350752949715, 0.028316820040345192, -0.020332450047135353, 0.002092350972816348, 0.029397616162896156, -0.008430198766291142, 0.006150397006422281, 0.2064317911863327, 0.015320264734327793, -0.010956555604934692, 0.05020291358232498, 0.02634437009692192, -0.016171390190720558, 0.005353311076760292, 0.0187382772564888, 0.02791152335703373, 0.024871787056326866, 0.0025010264944285154, 0.0011542548891156912, -0.015090595930814743, -0.0013163741677999496, 0.021318675950169563, -0.015185165219008923, -0.014185430482029915, -0.013955761678516865, -0.019184105098247528, 0.01411788072437048, 0.009808211587369442, -0.012321059592068195, -0.007025165483355522, -0.016468608751893044, 0.02974887378513813, 0.02934357523918152, -0.008045165799558163, 0.014239469543099403, 0.013793641701340675, 0.002676655538380146, -0.012199469842016697, 0.0022848674561828375, 0.024912318214774132, -0.009362383745610714, -0.028127681463956833, -0.0010546192061156034, 0.001925165532156825, -0.019873112440109253, -0.0026091060135513544, 0.025844503194093704, 0.0025179139338433743, 0.0007219370454549789, 0.0016710099298506975, -0.019954171031713486, 0.030748609453439713, -0.004948012996464968, 0.013685562647879124, 0.0063260262832045555, -0.007011655252426863, 0.033639732748270035, -0.0034416555427014828, 0.0040428475476801395, 0.009869006462395191, -0.0008371936855837703, -0.01775205321609974, -0.015874171629548073, -0.012604768387973309, -0.006086225155740976, -0.031613245606422424, 0.0042657614685595036, -0.005130397155880928, 0.013604503124952316, -0.023169536143541336, 0.0032913575414568186, -0.02522304654121399, 0.010598543100059032, -0.0061031123623251915, 0.024817747995257378, 0.0050358278676867485, 0.005177681799978018, -0.018724767491221428, -0.0007012499845586717, -0.024412449449300766, 0.007329138927161694, -0.002588840899989009, -0.004181324504315853, -0.0012353145284578204, 0.03663893789052963, 0.044852979481220245, 0.012098145671188831, 0.008376158773899078, 0.006275364197790623, -0.015347284264862537, -0.003951655700802803, -0.0032626488246023655, -0.005866688676178455, 0.038233112543821335, -0.01717112585902214, 0.01054450310766697, -0.007139999885112047, -0.009774437174201012, -0.005596490111202002, -0.013834171928465366, 0.005062847398221493, -0.01317218504846096, -0.014860927127301693, 0.005204701796174049, 0.030289269983768463, -0.006785363890230656, -0.018062781542539597, -0.025533774867653847, 0.0439072847366333, 0.012321059592068195, 0.02425033040344715, -0.01999470219016075, -0.017279205843806267, -0.006788741797208786, 0.016603708267211914, -0.020845826715230942, 0.0039246357046067715, -0.012476423755288124, -0.02477721869945526, 0.023993641138076782, 0.01650913804769516, 0.012422383762896061, 0.026249799877405167, 0.02641192078590393, -0.006704304367303848, -0.023480264469981194, -0.007599337492138147, 0.032531920820474625, -0.007349404040724039, -0.011091655120253563, 0.009943311102688313, -0.02358834445476532, -0.027884501963853836, -0.0137328477576375, 0.014185430482029915, -0.028127681463956833, -0.025263575837016106, 0.017576424404978752, -0.013901721686124802, 0.02706039696931839, -0.012199469842016697, -0.001026754966005683, 0.00010005794320022687, 0.0029637417756021023, -0.0036848343443125486, -0.006224701646715403, -0.0032643377780914307, 0.008396423421800137, 0.002771225059404969, 0.006315893959254026, -0.011091655120253563, 0.019548874348402023, 0.00024655627203173935, 0.013435629196465015, 0.027411654591560364, -0.006846158765256405, -0.015117615461349487, 0.009011125192046165, 0.02234542928636074, 0.0009017880656756461, -0.006893443409353495, 0.034720528870821, -0.019184105098247528, -0.03012715093791485, -0.02974887378513813, 0.01698198728263378, 0.004211721941828728, -0.04109721630811691, -0.006265231873840094, 0.04050277918577194, 0.0050358278676867485, -0.029370594769716263, 0.0024959600996226072, -0.17184635996818542, 0.015023046173155308, 0.01992715150117874, 0.001436274847947061, -0.006163907237350941, 0.02581748366355896, 0.020670197904109955, 0.0009178310865536332, -0.028343839570879936, -0.007504768203943968, 0.019494833424687386, -0.0075452979654073715, -0.015063575468957424, -0.02050807885825634, -0.0014084106078371406, -0.0011441224487498403, -0.021183576434850693, 0.02772238291800022, 0.05433695390820503, -0.00627198675647378, 0.028857218101620674, -0.009065165184438229, -0.0022494038566946983, -0.010558012872934341, 0.01894092746078968, 0.011456423439085484, -0.016806356608867645, 0.043880265206098557, -0.010801191441714764, -0.031748343259096146, -0.005184437148272991, -0.01807629130780697, 0.023074965924024582, 0.015320264734327793, 0.00802490022033453, 0.0040394701063632965, 0.007869536057114601, 0.011645562946796417, -0.017130596563220024, 0.01625245064496994, 0.040718939155340195, 0.004944635555148125, 0.023345164954662323, -0.0010259106056764722, 0.013239734806120396, 0.0319645032286644, 0.024682648479938507, -0.008572053164243698, 0.012969535775482655, -0.009261059574782848, 0.022318409755825996, -0.019602913409471512, -0.002171721775084734, -0.008436953648924828, 0.016995497047901154, 0.0015544866910204291, -0.005863311234861612, 0.016563178971409798, -0.003060000017285347, -0.01350317895412445, -0.0089098010212183, -0.016103841364383698, -0.0029113907366991043, -0.014388078823685646, -0.001662566210143268, -0.037773773074150085, -0.020278410986065865, 0.01480688713490963, -0.0010630629258230329, 0.015212184749543667, 0.004667682107537985, -0.0191976148635149, -0.0036578145809471607, -0.0006940728053450584, 0.011895496398210526, 0.016603708267211914, -0.03177536278963089, 0.0033301985822618008, 0.040664900094270706, 0.012584502808749676, 0.01972450315952301, -0.004319801460951567, 0.004191456828266382, -0.0012994867283850908, -0.0319645032286644, 0.0010681290877982974, 0.01267907302826643, 0.0033116224221885204, 0.0009296523057855666, 0.0137328477576375, 0.017468344420194626, -0.02724953554570675, 0.020737748593091965, -0.0038030461873859167, 0.017535893246531487, -0.0006387665634974837, 0.02156185358762741, -0.00992980133742094, 0.00266990065574646, -0.026830727234482765, 0.010281058959662914, 0.019886622205376625, -0.03445032984018326, 0.008781456388533115, 0.012753377668559551, 0.026222780346870422, 0.03191046416759491, -0.0007975082844495773, 0.018319468945264816, -0.01031483430415392, -0.019508343189954758, 0.023493774235248566, 0.03053244948387146, 0.011145695112645626, -0.032396819442510605, 0.03801695257425308, 0.006589469965547323, -0.005687681958079338, 0.0031478144228458405, 0.0016600331291556358, 0.04923019930720329, -0.032802119851112366, -0.03020821139216423, 0.005832913797348738, 0.0004046647227369249, -0.010571522638201714, -0.10083814710378647, -0.023304635658860207, 0.03158622607588768, 0.014293509535491467, -0.00950423814356327, 0.0285059604793787, -0.0034517880994826555, 0.013273509219288826, 0.00244023185223341, 0.012327814474701881, -0.021345695480704308, -0.010429668240249157, 0.003181589301675558, -0.0026867880951613188, -0.002355794655159116, -0.016130860894918442, 0.024061191827058792, -0.03761165589094162, 0.005045960191637278, 0.020926887169480324, 0.02581748366355896, -0.006177417002618313, 0.01698198728263378, -0.0030583112966269255, -0.011949536390602589, -0.02503390610218048, -0.03309933841228485, 0.006366556044667959, 0.011456423439085484, 0.000993824447505176, 0.033450596034526825, -0.008349139243364334, 0.027357615530490875, -0.01846807822585106, -0.014361059293150902, -0.0178196020424366, -0.01365854311734438, -0.015766091644763947, 0.01907602697610855, -0.021183576434850693, 0.0032001654617488384, -0.0014472516486421227, 0.007666887249797583, -0.026979336515069008, -0.005093244835734367, -0.003671324346214533, -0.011571258306503296, 0.029640793800354004, 0.008835496380925179, -0.01202384103089571, -0.0011424337280914187, -0.035801324993371964, -0.005397218279540539, -0.02154834382236004, 0.03153218328952789, 0.012294039130210876, 0.0011390562867745757, 0.025709403678774834, -0.022696688771247864, -0.0005213990225456655, -0.018697747960686684, -0.006957615725696087, -0.016806356608867645, 0.02071072719991207, 0.01749536395072937, 0.0038604633882641792, -0.008497748523950577, 0.017022516578435898, 0.00584642356261611, 0.006481390446424484, -0.00877470150589943, 0.008639602921903133, -0.029208475723862648, 0.004130661953240633, -0.025317614898085594, 0.003779403865337372, 0.001744470209814608, -0.025803973898291588, 0.018576158210635185, 0.01749536395072937, -0.023763973265886307, -0.010720131918787956, 0.011800927110016346, -0.031748343259096146, 0.003542979946359992, -0.005731589160859585, -0.0017410926520824432, -0.0018508608918637037, 0.032856158912181854, -0.043204765766859055, 0.014752847142517567, 0.012753377668559551, 0.023074965924024582, 0.010443178936839104, -0.002962052822113037, 0.00788980070501566, -0.004022582899779081, -0.00529251666739583, 0.006353046279400587, -0.0030194700229912996, -0.015630992129445076, 0.004228609148412943, -0.06020026281476021, -0.00389761570841074, 0.007511523086577654, 0.0038199336268007755, 0.013834171928465366, -0.025263575837016106, -0.005309403873980045, -0.0035497350618243217, 0.001879569492302835, -0.0013864568900316954, -0.02187258191406727, 0.005454635713249445, -0.03072158806025982, -0.009017881006002426, -0.027546754106879234, -0.02739814482629299, 0.0053229136392474174, -0.0024165892973542213, 0.023426225408911705, -0.002474006498232484, -0.0013433940475806594, 0.006268609315156937, 0.02679019793868065, 0.026560530066490173, 0.004228609148412943, 0.0372333750128746, -0.013043840415775776, 0.02607417106628418, -0.011976555921137333, -0.020427020266652107, 0.018238410353660583, 0.016887417063117027, -0.0005843046237714589, 0.0036882117856293917, -0.010686357505619526, -0.033180397003889084, -0.004630529787391424, 0.02772238291800022, 0.010139205493032932, -0.008794967085123062, -0.010503972880542278, 0.004988542757928371, 0.025385165587067604, -0.010861986316740513, -0.026101190596818924, -0.012989801354706287, -0.024804238229990005, -0.031424105167388916, 0.014955496415495872, 0.008963841013610363, 0.016360528767108917, -0.002820198656991124, -0.02712794579565525, -0.027479205280542374, -0.006579337641596794, -0.010639072395861149, -0.000908543006516993, 0.02974887378513813, -0.0009473841055296361, 0.001535066170617938, 0.056849800050258636, -0.0009575165458954871, 0.004573112353682518, -0.004157681949436665, 0.026195760816335678, -0.018251920118927956, -0.051526885479688644, -0.01307761576026678, 0.014361059293150902, -0.0432317890226841, -0.009869006462395191, -0.014604237861931324, 0.024588078260421753, 0.016468608751893044, 0.018522119149565697, -0.028938276693224907, 0.006508410442620516, -0.01729271560907364, -0.023831522092223167, 0.03582834452390671, 0.02470966801047325, -0.009896025992929935, -0.0066536422818899155, 0.007801986765116453, 0.03569324314594269, 0.012071125209331512, -0.02279125712811947, 0.014050330966711044, 0.02241297997534275, 0.010470198467373848, -0.009402913972735405, -0.005697814282029867, 0.005461390595883131, 0.008977350778877735, 0.012199469842016697, 0.015158145688474178, -0.020845826715230942, 0.009281324222683907, 0.03950304538011551, 0.026763178408145905, 0.005596490111202002, 0.01604980044066906, -0.026506489142775536, -0.0014388079289346933, 0.0035632450599223375, 0.021278144791722298, -0.020224370062351227, -0.02615523152053356, 0.0030887085013091564, 0.021197086200118065, -0.008896291255950928, -0.02476370893418789, 0.004174569621682167, 0.01730622537434101, -0.014725827611982822, 0.008072185330092907, -0.0014734271680936217, -0.022818278521299362, -0.022304899990558624, -0.003321754978969693, 0.0003930546226911247, 0.022358939051628113, 0.006532052997499704, -0.014374569058418274, 0.013685562647879124, 0.004667682107537985, 0.010503972880542278, -0.002289933618158102, -0.0003179056220687926, -0.014415099285542965, 0.008551787585020065, 0.002200430491939187, 0.017725031822919846, -0.018589667975902557, -0.006471258122473955, -0.022318409755825996, -0.013388344086706638, 0.03661191835999489, -0.013969271443784237, 0.09213774651288986, 0.01945430412888527, -0.009098940528929234, 0.012935761362314224, -0.017198145389556885, 0.01411788072437048, 0.011395628564059734, 0.013395098969340324, -0.004981787875294685, -0.019157085567712784, 0.018265429884195328, -0.009652847424149513, -0.003007648978382349, 0.010355363599956036, -0.017063045874238014, 0.006163907237350941, -0.006788741797208786, 0.0010647516464814544, -0.005056092515587807, 0.01946781389415264, 0.01848158985376358, -0.004343443550169468, 0.008214039728045464, 0.00018333402113057673, -0.024925827980041504, -0.014279999770224094, 0.02883019857108593, 0.04161059483885765, -0.003397748339921236, -0.017643973231315613, 0.02215629070997238, 0.003139370819553733, -0.03531496599316597, -0.009186754934489727, -0.02045403979718685, -0.012983046472072601, -0.013442384079098701, -0.03218066319823265, -0.007572317495942116, 0.008923310786485672, -0.0013923675287514925, 0.02600662223994732, -0.026763178408145905, -0.018387019634246826, 0.01205761544406414, 0.0010900828056037426, -0.009456953033804893, -0.019819071516394615, 0.00028624170226976275], "ffb7c329-65a8-4b3c-aed1-483e33e7db2d": [-0.008473122492432594, -0.004496079869568348, 0.005092636216431856, -0.02723262831568718, 0.022136621177196503, 0.02318817935883999, -0.015732910484075546, -0.032463449984788895, -0.008163047954440117, -0.025870997458696365, 0.004438783507794142, 0.0077923065982759, 0.0033872267231345177, -0.007657491602003574, -0.0037815605755895376, 0.013690462335944176, 0.024509364739060402, -0.004111857153475285, 9.900476288748905e-05, -0.00584085937589407, -0.02605973742902279, -0.01473527867347002, -0.017525948584079742, 0.009598826989531517, -0.02912003919482231, -0.004775821231305599, 0.02566877380013466, -0.013683721423149109, -0.01855054311454296, 0.014533055946230888, 0.016932763159275055, -0.022851141169667244, -0.025978848338127136, 0.002945707645267248, -0.0018840394914150238, 0.014950982294976711, 0.012746757827699184, 0.0008771400316618383, 0.023875735700130463, -0.00269124424085021, 0.0053723775781691074, 0.03440478444099426, -0.005015117581933737, -0.010299865156412125, -0.018024764955043793, 0.036723602563142776, 0.0022716326639056206, -0.012012016028165817, -0.015800317749381065, 0.011203126050531864, -0.008864086121320724, 0.0017340577905997634, -0.022851141169667244, 0.0009613994043320417, -0.006636267993599176, 0.0013557332567870617, 0.003939968068152666, 0.011991793289780617, 0.007205861154943705, -0.008021491579711437, -0.0009681401425041258, -0.007657491602003574, -0.00625878619030118, -0.008149566128849983, -0.01687883771955967, -0.031088337302207947, -0.017498986795544624, -0.001889095059596002, -0.013441055081784725, -0.008318085223436356, 0.059426449239254, 0.033488042652606964, 0.0014054463244974613, -0.017391134053468704, 0.0016978263156488538, -0.003035022411495447, -0.02066713757812977, -0.03238256275653839, -0.013643276877701283, 0.0019025765359401703, 0.02357914298772812, -0.011594089679419994, -0.01097394060343504, 0.013730906881392002, 0.03219382092356682, 0.03952775523066521, 0.005955452099442482, 0.008621418848633766, -0.003078837413340807, -0.006103748921304941, 0.022756770253181458, 0.011661496944725513, 0.01907632127404213, 0.02833811193704605, 0.022190548479557037, 0.015112760476768017, 0.007475491147488356, 0.0027384294662624598, -0.005082525312900543, -0.02475203201174736, -0.014977945946156979, -0.008061936125159264, -0.004940969403833151, -0.01709454134106636, -0.0020020026713609695, -0.021260324865579605, 0.015894686803221703, -0.0006079313461668789, -0.0016776040429249406, 0.0201413594186306, -0.01473527867347002, 0.017539430409669876, -0.002868189010769129, -0.0035557453520596027, 0.0006875564577057958, -0.002509244019165635, 0.026801221072673798, -0.019103284925222397, -0.0025126144755631685, -0.028769519180059433, 0.0034192451275885105, 0.00390963489189744, 0.04467768967151642, -0.018698839470744133, 0.01570594683289528, -0.00866860430687666, 0.015422835014760494, -0.026127144694328308, 0.002502503339201212, -0.001939650741405785, 0.005662229843437672, 0.014371277764439583, 0.021907435730099678, 0.01037401333451271, -0.036723602563142776, 0.010380754247307777, -0.02383529022336006, 0.03165455907583237, 0.006016118917614222, -0.021610843017697334, 0.0077788252383470535, 0.029767150059342384, 0.01092001423239708, -0.01507231593132019, -0.01327927689999342, 0.05824007838964462, -0.011432311497628689, 0.022891584783792496, 0.0022665769793093204, -0.0015461593866348267, -5.0871592975454405e-05, -0.006838490255177021, -0.043599169701337814, -0.003771449439227581, 0.001520881662145257, 0.01019201334565878, 0.003987153526395559, 0.03475530445575714, -0.01981780305504799, 0.01158060785382986, 0.007091268431395292, 0.03432389721274376, -0.002962559461593628, -0.007084527984261513, 0.003400708083063364, 0.030791744589805603, 0.013791574165225029, -0.03610345348715782, -0.03127707913517952, -0.013724165968596935, 0.00927527155727148, 0.03192419186234474, -0.019305506721138954, 0.024981217458844185, -0.0003218707861378789, 0.0163126140832901, -0.005358895752578974, 0.007691195234656334, -0.017862986773252487, -0.024266699329018593, 0.026140626519918442, -0.016865355893969536, -0.005449896212667227, 0.01875276491045952, -0.014627426862716675, -0.014155574142932892, 0.02833811193704605, 0.024738550186157227, 0.014546537771821022, -0.001772817107848823, 0.01851009763777256, 0.0015436316607519984, -0.021718695759773254, -0.004661228507757187, -0.6298556327819824, -1.7273170669795945e-05, 0.032220784574747086, -0.007981047965586185, 0.007333935704082251, 0.016083428636193275, 0.0015301501844078302, -0.00854727067053318, 0.003720893757417798, 0.02947055734694004, 0.008870826102793217, -0.005085895769298077, -0.021192917600274086, -0.005510563030838966, -0.00905956793576479, -0.02390269748866558, 0.008250677958130836, -0.01815957948565483, -0.0013574184849858284, -0.0011914274655282497, -0.014748760499060154, 0.011594089679419994, 0.0014627426862716675, 0.0020744656212627888, -0.012477127835154533, -0.018604468554258347, 0.014263425953686237, -0.0018014652887359262, -0.007435046602040529, 0.03979738429188728, -0.028526851907372475, 0.020127877593040466, 0.03389248996973038, -0.009780827909708023, 0.037289828062057495, -0.026814701035618782, -0.012207497842609882, 0.025736182928085327, 0.00544315529987216, 0.02982107549905777, -0.015476761385798454, -0.006565490271896124, 0.01886061765253544, 0.02564181201159954, -0.027111295610666275, -0.010266161523759365, 0.011546904221177101, -0.003070411505177617, 0.006420563906431198, -0.012335571460425854, 0.007812528870999813, -0.007839491590857506, -0.007286750245839357, -0.005628525745123625, 0.006417193450033665, -0.01015830971300602, 0.025844033807516098, -0.000778977875597775, 0.0031260226387530565, -0.006373378913849592, 0.011102014221251011, 0.026127144694328308, -0.0148566123098135, -0.03631915897130966, -0.03410819172859192, 0.015004908666014671, -0.03141189366579056, -0.012982684187591076, -0.0065621198154985905, -0.009052827022969723, 0.01731024496257305, -0.01388594415038824, -0.012254682369530201, 0.006649749353528023, 0.014883575029671192, 0.028041519224643707, 0.04645724594593048, 0.008176528848707676, 0.005281377118080854, 0.016218243166804314, 0.0014467333676293492, 0.011816534213721752, -0.010717791505157948, -0.0254665520042181, 0.026248479261994362, 0.004516302142292261, -0.0016093539306893945, -0.014196018688380718, -0.00011996427929261699, -0.007306972518563271, 0.0009723531547933817, 0.027825813740491867, -0.005972304381430149, -0.03418908268213272, 0.014573500491678715, 0.06255415827035904, 0.006481230724602938, 0.005153303034603596, 0.014438685961067677, -0.027637073770165443, -0.031007448211312294, -0.02751573920249939, 0.016717059537768364, -0.008257417939603329, 0.026747293770313263, 0.015112760476768017, -0.026234997436404228, -0.010400976985692978, 0.011897423304617405, 0.0016540114302188158, -0.011641274206340313, -0.012194016017019749, -0.02549351565539837, -0.01766076311469078, 0.014263425953686237, -0.022635437548160553, 0.017579875886440277, 0.017431577667593956, 0.0012891683727502823, -0.007023861166089773, -0.02836507372558117, -0.02124684303998947, 0.01914372853934765, -0.0027738185599446297, 0.011728904210031033, 0.00589478574693203, 0.0016000854084268212, -0.009066307917237282, -0.010650384239852428, -0.002066039713099599, -0.008075417950749397, 0.007017120253294706, -0.008237196132540703, -0.0019952619913965464, 0.04087590426206589, 0.005291488487273455, 0.023660030215978622, -0.007077787071466446, 0.0026002442464232445, -0.04626850411295891, 0.0016110391588881612, -0.007232824340462685, 0.0278797410428524, -0.02088284306228161, 0.012895054183900356, -0.022028770297765732, 0.015759872272610664, 0.00468819122761488, 0.01325905416160822, -0.0017745023360475898, -0.01127727422863245, -0.0019497618777677417, -0.0061273411847651005, 0.008985418826341629, -0.006558749359101057, -0.007286750245839357, 0.0019211136968806386, -0.032139893621206284, -0.008365270681679249, -0.01434431504458189, -0.0032220783177763224, -0.0016253632493317127, -0.004880302585661411, 0.007286750245839357, -0.01946728490293026, -0.013137721456587315, -0.023147733882069588, 0.013757869601249695, -0.0025581144727766514, -0.016393503174185753, -0.014586982317268848, -0.016784466803073883, -0.007185638882219791, 0.007839491590857506, 0.014142092317342758, 0.016299132257699966, -0.018132615834474564, -0.013521944172680378, -0.015099279582500458, -0.006592452991753817, 0.0234712902456522, 0.01702713407576084, -0.011883941479027271, -0.02092328667640686, 0.048425544053316116, -0.003939968068152666, 0.014897056855261326, 0.011904164217412472, -0.04060627520084381, 0.0020255951676517725, -0.015153205022215843, 0.010562754236161709, -0.021004175767302513, -0.017687726765871048, -0.018820172175765038, -0.01737765222787857, -0.006858712527900934, -0.0002612040552776307, 0.004940969403833151, 0.026113664731383324, 0.028769519180059433, 0.01939987763762474, 0.0023761142510920763, 0.005267895758152008, 0.005736378021538258, -0.02268936298787594, 0.020842397585511208, -0.011607570573687553, 0.0022935401648283005, 0.0002003266563406214, -0.0064610084518790245, -0.007563121151179075, 0.01627217046916485, -0.006936231162399054, 0.0007195750367827713, 0.02858077920973301, 0.014546537771821022, 0.012780461460351944, -0.007529417518526316, -0.00824393704533577, 0.01439824141561985, 0.02074802666902542, 0.01702713407576084, -0.01200527511537075, -0.0009605568484403193, 0.008331566117703915, 0.00961230881512165, 0.013751129619777203, 0.015422835014760494, -0.038422271609306335, -0.014182536862790585, 0.01957513764500618, -0.0093629015609622, 0.016824910417199135, 0.04233190789818764, 0.01681143045425415, 0.018995432183146477, 0.0030451335478574038, 0.01961558125913143, -0.001262205420061946, 0.01681143045425415, -0.0026288924273103476, 0.0239701047539711, -0.028392037376761436, 0.020896323025226593, -0.008479863405227661, 0.01950772851705551, -0.0006677554920315742, -0.035591159015893936, 0.009848235175013542, -0.006032970733940601, -0.01242994237691164, -0.010023494251072407, -0.005031969398260117, 0.03071085549890995, -0.024630699306726456, 0.026019293814897537, 0.0035624862648546696, -0.007488972973078489, 0.022257955744862556, 0.012261423282325268, 0.00937638245522976, -0.003795041935518384, 0.010994162410497665, 0.018078690394759178, -0.016932763159275055, -0.01512624230235815, -0.024873366579413414, -0.012146830558776855, -0.006754231173545122, 0.019588617607951164, -0.03532152622938156, 0.0009302234393544495, -0.022932030260562897, -0.005251043941825628, -0.004853339865803719, -0.011567126028239727, -0.008762974292039871, 0.003670338075608015, 0.015935132279992104, -0.00973364245146513, -0.022851141169667244, 0.0317084863781929, 0.019696470350027084, 0.004664598498493433, 0.004860080312937498, -0.0037613383028656244, 0.0031327633187174797, 0.014816167764365673, 0.010791939683258533, 0.011182903312146664, -0.018671875819563866, -0.018685357645154, -0.007960825227200985, 0.00851356703788042, 0.01712150312960148, 0.0394468680024147, -0.004448894876986742, -0.018065208569169044, -0.00027868786128237844, 0.03577989712357521, 0.025237366557121277, -0.02031661942601204, -0.03286789357662201, 0.016150835901498795, -0.0009125289507210255, -0.026140626519918442, -0.013023127801716328, -0.0038118939846754074, -0.023646550253033638, 0.0023828549310564995, -0.008911270648241043, -0.019372913986444473, -0.01733720861375332, -0.0019767247140407562, -0.009383123368024826, -0.004779191687703133, -0.007799047511070967, 0.005736378021538258, 0.018280912190675735, 0.0032658930867910385, -0.01815957948565483, 0.006696934811770916, 0.020653657615184784, 0.06131386011838913, 6.682821549475193e-05, -0.00618800800293684, 0.017000170424580574, -0.01383201777935028, -0.012254682369530201, -0.021516472101211548, -0.02432062476873398, 0.03755945712327957, 0.01935943216085434, -0.02244669571518898, 0.00930897518992424, 0.013299498707056046, -0.000474380241939798, 0.018429208546876907, -0.004644376691430807, -0.008729270659387112, -0.012753497809171677, -0.016622688621282578, 0.012881572358310223, 0.00576334074139595, 0.0028496519662439823, 0.037074122577905655, 0.01094023697078228, 0.03397337719798088, 0.022460177540779114, 0.014897056855261326, 0.01961558125913143, 0.008661863394081593, -0.022311881184577942, -0.019696470350027084, 0.0010052142897620797, 0.005345414392650127, 0.017175430431962013, -0.03513278812170029, 0.03410819172859192, 0.004755598958581686, -0.011843496933579445, -0.020478397607803345, 0.004391598515212536, -0.005109488032758236, 0.023929661139845848, -0.018146097660064697, -0.011075051501393318, 0.03071085549890995, -0.018874099478125572, -0.017283281311392784, 0.030899595469236374, -0.006727267988026142, -0.006299230735749006, 0.00994934607297182, 0.015341945923864841, -0.011290756054222584, 0.016730541363358498, 0.00429048715159297, -0.005119599401950836, 0.003919745795428753, -0.029389668256044388, -0.015476761385798454, -0.032220784574747086, -0.03332626447081566, -0.011836756020784378, -0.019049357622861862, -0.032706115394830704, -0.022015288472175598, -0.0470234677195549, -0.020842397585511208, 0.0034478935413062572, -0.019035877659916878, 0.0006513249245472252, -0.024064475670456886, -0.030225520953536034, -0.016258688643574715, 0.01925158128142357, 0.02266239933669567, 0.015449797734618187, 0.00015872358926571906, 0.0040073757991194725, 0.0005481072003021836, 0.008992159739136696, -0.00806867703795433, -0.010926755145192146, -0.00939660519361496, -0.009619049727916718, 0.006430675275623798, -0.02142210304737091, -0.0026154108345508575, 0.0006020332220941782, 0.00580715574324131, 0.030522113665938377, -0.004779191687703133, -0.027529221028089523, 0.011452533304691315, 0.008169788867235184, 0.015004908666014671, 0.021260324865579605, 0.006929490715265274, -0.007859714329242706, 0.02170521393418312, -0.042358871549367905, 0.015031871385872364, -0.012524312362074852, -0.02570921927690506, -0.021233361214399338, 0.021395139396190643, 0.02142210304737091, -0.02499469928443432, -0.005146562121808529, -0.0005224081105552614, -0.013899425975978374, 0.0009934179252013564, -0.0009403345757164061, -0.020195286720991135, -0.017498986795544624, -0.002276688115671277, -0.019494248554110527, 0.01207268238067627, 0.017957357689738274, 0.001742483815178275, -0.017108023166656494, 0.0055038221180438995, -0.001961558125913143, 0.030171595513820648, 0.013858981430530548, -0.007098009344190359, 0.02599233016371727, 0.014910537749528885, -0.003913005348294973, -0.04171175882220268, 0.0008796678157523274, 0.013858981430530548, -0.0043882280588150024, -0.016231724992394447, -0.011385126039385796, -0.0061543043702840805, -0.009329196996986866, -0.001185529283247888, 0.005736378021538258, 0.001277372008189559, -0.0015630113193765283, -0.03769427165389061, 0.021893953904509544, 0.014694834128022194, -0.01198505237698555, 0.0006230980507098138, -0.03184330090880394, -0.03475530445575714, -0.011317718774080276, 0.0017525949515402317, 0.026154108345508575, -0.014506093226373196, -0.02024921216070652, -0.0460258387029171, -0.022985955700278282, -0.012025496922433376, -0.0022227622102946043, 0.014546537771821022, 0.011203126050531864, 0.04456983506679535, 0.04198138788342476, 0.019170692190527916, 0.024725070223212242, 0.023700475692749023, 0.019629063084721565, -0.010097643360495567, -0.0011695200810208917, -0.0026086701545864344, -0.017755134031176567, 0.00510611804202199, -0.01178957149386406, -0.008425937034189701, -0.013569128699600697, -0.011546904221177101, 0.004101746249943972, 0.0038759310264140368, -0.006150933913886547, 0.0014888630248606205, -0.013272535987198353, -0.03610345348715782, -0.05419562757015228, 0.005358895752578974, 0.0335419699549675, 0.0032423005905002356, 0.0031108560506254435, -0.024698106572031975, 0.001086945878341794, 0.015207131393253803, -0.01234231237322092, 0.035510268062353134, 0.002414873568341136, 0.026679886505007744, -0.012591720558702946, 0.004772450774908066, 0.02471158839762211, -0.00025635914062149823, -0.02031661942601204, -0.018280912190675735, -0.03648093715310097, -0.006669971626251936, 0.009282012470066547, 0.012814165093004704, 0.007745121140033007, -0.0029962630942463875, 0.0002494077489245683, 0.0043882280588150024, 0.007981047965586185, -0.02096373215317726, -0.019709952175617218, 0.003195115365087986, -0.032328635454177856, -0.010677346959710121, -0.03766730800271034, -0.019157210364937782, 0.014182536862790585, -0.011856978759169579, -0.00429048715159297, -0.0054768589325249195, 0.017714690417051315, -0.03084567002952099, -0.01975039578974247, 0.009100011549890041, -0.014573500491678715, 0.019885212182998657, 0.014155574142932892, 0.013798314146697521, 0.012477127835154533, 0.01446564868092537, -0.022608473896980286, -0.016582243144512177, 0.0038489680737257004, 0.004806154407560825, 0.003987153526395559, 0.038179606199264526, -0.028068481013178825, -0.00736763933673501, -0.0075833434239029884, 0.0076777138747274876, 0.0033215044531971216, -0.03979738429188728, 0.027461813762784004, 0.015881206840276718, 0.007522676605731249, -0.028095444664359093, -0.023592622950673103, -0.010684087872505188, 0.016905799508094788, -0.008115862496197224, 0.019089803099632263, 0.007118231616914272, 0.0034984489902853966, -0.00036147268838249147, 0.017647283151745796, -0.014694834128022194, 0.023673512041568756, 0.0008560752030462027, 0.005935229826718569, 0.004843228496611118, -0.012382756918668747, -0.008843863382935524, -0.015112760476768017, 0.011546904221177101, 0.01683839224278927, -0.0181865431368351, 0.008196751587092876, 0.013515203259885311, 0.020842397585511208, -0.007987787947058678, 0.0037444864865392447, -0.03305663540959358, 0.02968626096844673, 0.0028210037853568792, -0.019480766728520393, 0.003950079437345266, -0.017188912257552147, 0.021354693919420242, -0.011270533315837383, -0.01546327956020832, -0.006784564349800348, -0.01939987763762474, 0.0029794112779200077, -0.008500085212290287, -0.011830015107989311, -0.0051701548509299755, 0.014924019575119019, 0.00043351444764994085, -0.009854976087808609, -0.01737765222787857, -0.01524757593870163, 0.01798431947827339, -0.02268936298787594, -0.006309341639280319, -0.006696934811770916, -0.02070758305490017, 0.0018486506305634975, 0.0036669678520411253, -0.005689192563295364, 0.006410453002899885, 0.026221515610814095, -0.012841127812862396, 0.011587348766624928, 0.019588617607951164, 0.026437219232320786, -0.034269969910383224, 0.027744924649596214, -0.008331566117703915, 0.01513972319662571, 0.018564024940133095, 0.007010379806160927, -0.031088337302207947, -0.027717962861061096, 0.00497467303648591, 0.0011425570119172335, 0.01829439401626587, -0.005534155294299126, 0.011897423304617405, 0.016744021326303482, -0.006659860722720623, -0.027744924649596214, -0.010589717887341976, 0.0020188544876873493, -0.0025918183382600546, 0.01331298053264618, 0.011236829683184624, 0.00041624129517003894, 0.016932763159275055, 0.01118964422494173, 0.0022884844802320004, 0.003152985591441393, -0.01212660875171423, -0.030090706422924995, -0.024725070223212242, -0.006996897980570793, -0.002460373565554619, 0.020721064880490303, -0.03364982083439827, -0.034377824515104294, -0.03400034084916115, 0.02769099920988083, 0.005187006667256355, -0.0005889729945920408, 0.027070850133895874, -0.009160678833723068, -0.02634285017848015, 0.006548638455569744, -0.008129344321787357, -0.04308687150478363, -0.023875735700130463, -0.018078690394759178, -0.0263832937926054, -0.01766076311469078, -0.017809061333537102, 0.036723602563142776, 0.014924019575119019, -0.017391134053468704, -0.04117249697446823, -0.016218243166804314, -0.01844269037246704, 0.005564488936215639, -0.026073219254612923, 0.027610110118985176, 0.01890106126666069, 0.038206569850444794, -0.00497467303648591, 0.020397508516907692, -0.0021924288012087345, 0.03329930454492569, -0.028445962816476822, -0.013306239619851112, -0.008203492499887943, -0.023821808397769928, 0.025830551981925964, -0.030683891847729683, -0.04554050415754318, -0.011412088759243488, 0.007542898878455162, -0.013056832365691662, -0.0042230794206261635, 0.013097276911139488, 0.012760238721966743, 0.00422982033342123, -0.013346684165298939, -0.0011164366733282804, 0.015288020484149456, 0.005075784400105476, 0.0019885210786014795, -0.024226253852248192, 0.010825644247233868, 0.008837122470140457, -0.0054094516672194, -0.019629063084721565, 0.00819001067429781, 0.012659127824008465, -0.02059973031282425, -0.00042129686335101724, -0.015112760476768017, -0.000642056402284652, -0.03003678098320961, -0.01524757593870163, 0.0002675234864000231, 0.004111857153475285, 0.01327927689999342, 0.03556419536471367, 0.001525094616226852, -0.0004269843630027026, -0.006494712084531784, 0.016905799508094788, -0.002180632436648011, -0.006110489368438721, 0.024913810193538666, -0.026868628337979317, -0.020100915804505348, -0.013232091441750526, 0.028068481013178825, -0.0012975942809134722, -0.014209500513970852, -0.015004908666014671, -0.01207268238067627, -0.02673381380736828, -0.0035321528557687998, 0.008486603386700153, -0.010286384262144566, 0.010138086974620819, -0.014977945946156979, 7.999374065548182e-05, -0.024064475670456886, -0.00925504881888628, -0.002438466064631939, -0.025304773822426796, -0.02655855379998684, -0.008041714318096638, 0.013124239630997181, -0.039986126124858856, -0.0013473073486238718, 0.027394406497478485, -0.018658393993973732, 0.0028260592371225357, 0.2096642702817917, -0.0021941140294075012, -0.013380387797951698, 0.038530126214027405, 0.014249945059418678, -0.02468462474644184, 0.0009041030425578356, 0.0042871166951954365, 0.01762031950056553, 0.017242837697267532, 0.0030889485497027636, 0.004357894416898489, -0.02690907195210457, -0.0030232262797653675, 0.01794387586414814, -0.01354890689253807, -0.023943142965435982, -0.022918548434972763, -0.016514835879206657, 0.00909327156841755, 0.010454902425408363, -0.0036737085320055485, -0.01446564868092537, 0.0036433751229196787, 0.034162119030952454, 0.02268936298787594, -0.013137721456587315, 0.02088284306228161, 0.01512624230235815, 0.0086349006742239, -0.019170692190527916, -0.00503533985465765, 0.021152472123503685, -0.006046452559530735, -0.016797948628664017, -0.005321821663528681, 0.01161431148648262, -0.021732177585363388, 0.008028232492506504, 0.03308359906077385, -0.000356627773726359, -0.01285460963845253, 0.0029726705979555845, -0.02481943927705288, 0.012571497820317745, -0.01178957149386406, 0.0155846131965518, -0.005355525761842728, 0.0011105384910479188, 0.03950079157948494, -0.000304597633657977, -0.0017247892683371902, 0.007475491147488356, 0.004523043055087328, -0.016393503174185753, -0.01968298852443695, -0.00576334074139595, -0.00742830615490675, -0.02166476845741272, 0.014613945037126541, -0.01592165045440197, 0.015018390491604805, -0.0017020392697304487, 0.01683839224278927, -0.0317084863781929, -0.0011375014437362552, -0.010340309701859951, 0.02301291935145855, 0.006322822999209166, 0.010778458788990974, -0.014276907779276371, -0.011081792414188385, -0.03621130809187889, -0.0038725605700165033, -0.012012016028165817, -0.01434431504458189, 0.008149566128849983, 0.04621458053588867, 0.037748198956251144, 0.01929202489554882, 0.006403712090104818, 0.024441957473754883, -0.0108189033344388, -0.01310401689261198, 0.009403346106410027, 0.0009799364488571882, 0.04432716965675354, -0.01602950319647789, 0.007360898423939943, -0.024212772026658058, -0.01473527867347002, 0.005116228945553303, -0.014654389582574368, 0.014115129597485065, -0.004135449882596731, -0.01049534697085619, 0.012207497842609882, 0.02833811193704605, 0.01046164333820343, -0.012335571460425854, -0.035591159015893936, 0.047427915036678314, 0.02375440113246441, 0.03440478444099426, -0.029335742816329002, -0.006309341639280319, -0.00429048715159297, 0.016191281378269196, -0.009106752462685108, 0.008041714318096638, -0.029524482786655426, -0.034269969910383224, 0.023498253896832466, 0.0034108192194253206, 0.015476761385798454, 0.028715593740344048, 0.0225545484572649, -0.002809207420796156, -0.023740919306874275, -0.008776456117630005, 0.023646550253033638, -0.010535791516304016, -0.0074080838821828365, -0.0009496030979789793, -0.02181306481361389, -0.016730541363358498, -0.010906532406806946, 0.005881303921341896, -0.021260324865579605, -0.03284093365073204, 0.02053232304751873, -0.004199487157166004, 0.015665501356124878, -0.01178957149386406, 0.0028429110534489155, -0.0019244840368628502, 0.010475125163793564, -0.018887581303715706, -0.016083428636193275, 0.006019489374011755, 0.00465448759496212, 0.0006681767990812659, 0.02046491578221321, -0.013447795063257217, 0.01929202489554882, 0.0008623946341685951, 0.02340388298034668, 0.02092328667640686, 0.005793674383312464, -0.009578605182468891, 0.010596458800137043, 0.021179435774683952, 0.006012748461216688, 0.004846598953008652, 0.021732177585363388, -0.02649114653468132, -0.027219146490097046, -0.030009817332029343, 0.012753497809171677, -0.008378751575946808, -0.029389668256044388, 0.00010100592044182122, 0.04076805338263512, 0.009780827909708023, -0.031223151832818985, -0.0010894736042246222, -0.17126896977424622, 0.012355794198811054, 0.020869361236691475, 0.01468135230243206, -0.011755866929888725, 0.01716194860637188, 0.006039711646735668, 0.009403346106410027, -0.0244284775108099, -0.008911270648241043, 0.01733720861375332, -0.006949712987989187, -0.0065621198154985905, -0.0210581012070179, -0.0004933386226184666, -0.0010743070160970092, -0.016690095886588097, 0.027825813740491867, 0.03968953341245651, -0.0036568567156791687, 0.018874099478125572, -0.016083428636193275, 0.0035793380811810493, -0.01540935318917036, 0.004327561240643263, 0.011216606944799423, -0.01935943216085434, 0.03607649356126785, -0.008567492477595806, -0.02085587941110134, -0.014290389604866505, -0.027933666482567787, 0.03507886081933975, 0.02131425030529499, 0.012328831478953362, 0.0035692269448190928, 0.006521675270050764, 0.004408450331538916, -0.021543435752391815, 0.011095274239778519, 0.024522846564650536, 0.0115266814827919, 0.011196385137736797, -0.0035624862648546696, 0.01134468149393797, 0.023983586579561234, 0.023565661162137985, -0.0066666011698544025, 0.011088533326983452, -0.0030973744578659534, 0.03497100993990898, -0.017283281311392784, -0.006383489817380905, -0.014600463211536407, 0.005665599834173918, -0.005389229394495487, 0.003646745579317212, 0.024522846564650536, 0.0007174685597419739, -0.027933666482567787, -0.005581340752542019, -0.0007006166852079332, 0.001192270079627633, -0.002517669927328825, -0.009983050636947155, -0.028769519180059433, -0.021934399381279945, 0.01134468149393797, -0.008978678844869137, 0.01051556970924139, 0.004034338518977165, -0.007280009798705578, -0.0004617413505911827, 0.009625790640711784, 0.016393503174185753, 0.011203126050531864, -0.04400361329317093, -0.012369275093078613, 0.04322168603539467, 0.015045353211462498, 0.02066713757812977, 0.0035186712630093098, 0.0006466906634159386, -0.004914006683975458, -0.023929661139845848, 0.005726266652345657, 0.011904164217412472, 0.014317352324724197, -0.012881572358310223, 0.011135718785226345, 0.01652831770479679, -0.0172698013484478, 0.030090706422924995, -0.007145194802433252, 0.015018390491604805, 0.0093629015609622, 0.0264237392693758, -0.005395969841629267, 0.014142092317342758, -0.01985824853181839, 0.014506093226373196, 0.025978848338127136, -0.046969544142484665, 0.006845231167972088, 0.01846965402364731, 0.03343411907553673, 0.020046988502144814, -0.01365001779049635, 0.02514299564063549, -0.008870826102793217, -0.02912003919482231, 0.026234997436404228, 0.025399144738912582, -0.004587080329656601, -0.020586248487234116, 0.04971976950764656, 0.010333568789064884, -0.0038725605700165033, 0.01085260696709156, -0.00546000711619854, 0.04737398773431778, -0.028958261013031006, -0.021395139396190643, 0.017350688576698303, -0.006669971626251936, -0.018779728561639786, -0.10116516798734665, -0.01585424318909645, 0.037316787987947464, -0.0023255585692822933, -0.006777823902666569, 0.002537892200052738, -0.006814897991716862, 0.006518304813653231, -0.007030601613223553, 0.01237601600587368, -0.024131882935762405, -0.004175894428044558, -0.0033299303613603115, -0.008378751575946808, 0.006865453440696001, -0.010899792425334454, 0.006801416166126728, -0.035267602652311325, 0.00312433741055429, 0.016110392287373543, 0.013690462335944176, -0.012281646020710468, 0.013286017812788486, 0.008789937943220139, -0.015449797734618187, -0.034485675394535065, -0.03421604633331299, 0.007960825227200985, 0.006814897991716862, 0.00538248848170042, 0.03440478444099426, -0.010232457891106606, 0.034162119030952454, -0.015422835014760494, -0.012328831478953362, -0.017795579507946968, -0.0022295028902590275, -0.017889948561787605, 0.0287964828312397, -0.02216358482837677, -0.00155795575119555, 0.00854727067053318, 0.0019362802850082517, -0.023417364805936813, -0.0023390401620417833, -0.005318451672792435, -0.008506826125085354, 0.03432389721274376, 0.002253095619380474, -0.01439824141561985, -0.011695200577378273, -0.03286789357662201, 0.0034377824049443007, -0.02620803378522396, 0.02605973742902279, 0.015018390491604805, 0.007954084314405918, 0.014560019597411156, -0.02283765934407711, 0.010812162421643734, -0.01925158128142357, -0.0005729637341573834, -0.024805959314107895, 0.010987421497702599, 0.01694624498486519, 0.005712785292416811, -0.01642046682536602, 0.013164684176445007, 0.0056420075707137585, 0.005756600294262171, -0.006309341639280319, 0.009295493364334106, -0.023929661139845848, -0.0027468553744256496, -0.020020026713609695, -0.0025345217436552048, 0.0006205702666193247, -0.004967932589352131, 0.006818268448114395, 0.016177799552679062, -0.016973206773400307, -0.0077518620528280735, 0.02227143757045269, -0.02283765934407711, 0.009133716113865376, -0.00895171519368887, -0.0037444864865392447, 0.0008548112818971276, 0.02414536476135254, -0.04386879876255989, 0.010987421497702599, 0.013036609627306461, 0.031007448211312294, 0.011843496933579445, -0.007563121151179075, 0.012969202362000942, -0.009969568811357021, -0.016164317727088928, 0.007556380238384008, -0.0009293808252550662, -0.010866088792681694, 0.007718158420175314, -0.05716155841946602, 0.0037310048937797546, 0.016083428636193275, 0.002809207420796156, 0.014775723218917847, -0.03631915897130966, -0.005247673485428095, -0.008736011572182178, 0.00350181944668293, -0.00310242990963161, -0.017175430431962013, 0.0013043350772932172, -0.011041347868740559, -0.004320820327848196, -0.02152995392680168, -0.028392037376761436, 0.01294223964214325, 0.011937867850065231, 0.011674978770315647, -0.0015857613179832697, -0.0023525215219706297, 0.00691600888967514, 0.017404615879058838, 0.02992892824113369, -0.00512296985834837, 0.028392037376761436, -0.012510831467807293, 0.028553815558552742, -0.008001269772648811, -0.009464012458920479, 0.02464418113231659, 0.0077788252383470535, 0.0016835022252053022, -0.0037276344373822212, 0.0016430576797574759, -0.03338019177317619, -0.016218243166804314, 0.007077787071466446, 0.01907632127404213, -0.001816631993278861, -0.009686456993222237, -0.005126339849084616, 0.029982853680849075, -0.024347588419914246, -0.027542702853679657, -0.024091439321637154, -0.02326906844973564, -0.02535869926214218, 0.014303870499134064, 0.007044083438813686, 0.032328635454177856, -0.001288325758650899, -0.0393659770488739, -0.03197811543941498, 0.0022126510739326477, -0.009046086110174656, 0.0017964097205549479, 0.03305663540959358, 0.0017323726788163185, 0.003764708759263158, 0.04777843505144119, 0.00497467303648591, 0.007913639768958092, -0.011654756031930447, 0.03613041713833809, -0.013400610536336899, -0.06077459827065468, -0.010387495160102844, 0.025169959291815758, -0.0344587117433548, -0.013656758703291416, -0.013238832354545593, 0.02322862297296524, 0.0037680789828300476, 0.006413823459297419, -0.007623787969350815, 0.0020255951676517725, -0.017134984955191612, -0.014088166877627373, 0.02766403555870056, 0.0192246176302433, -0.002130076987668872, -0.012254682369530201, 0.009726901538670063, 0.03677752986550331, 0.00348496763035655, -0.029308779165148735, 0.014775723218917847, 0.01886061765253544, 0.0019295396050438285, -0.019979581236839294, 0.0034108192194253206, 0.005031969398260117, 0.007893417961895466, 0.014627426862716675, 0.012692831456661224, -0.016299132257699966, 0.0181865431368351, 0.0355372317135334, 0.023875735700130463, 0.003902893979102373, 0.013926388695836067, -0.02673381380736828, -0.007280009798705578, -0.004061301704496145, 0.014924019575119019, -0.01968298852443695, -0.027084331959486008, 0.02144906483590603, 0.015759872272610664, -0.005315081216394901, -0.028041519224643707, 0.0007587556028738618, 0.018820172175765038, -0.010899792425334454, 0.007866455242037773, -0.0029153742361813784, -0.019426841288805008, -0.023242104798555374, 0.0024991328828036785, 0.01762031950056553, 0.018523579463362694, 0.019062839448451996, -0.015355427749454975, 0.028634704649448395, -0.0046814507804811, 0.005628525745123625, -0.009801049716770649, -0.0021098547149449587, -0.019831284880638123, -0.0036602269392460585, -0.0012520942836999893, 0.016177799552679062, -0.011573866941034794, -0.005261154845356941, -0.029281815513968468, -0.0019227988086640835, 0.04154998064041138, -0.012315349653363228, 0.08800722658634186, 0.01972343400120735, -0.015611575916409492, 0.0061812675558030605, -0.006835120264440775, 0.018981950357556343, 0.007812528870999813, 0.014142092317342758, -0.007448528427630663, -0.014640907756984234, 0.01896846853196621, -0.007084527984261513, -0.01361631415784359, 0.0020677249412983656, -0.01698668859899044, 0.009126975201070309, -0.0034327267203480005, 0.010569495148956776, 0.002217706525698304, 0.019318988546729088, 0.0075833434239029884, 0.006548638455569744, -0.0013363535981625319, 0.0010785199701786041, -0.03092655912041664, -0.009248308837413788, 0.02553395926952362, 0.035267602652311325, 0.007886677049100399, -0.017889948561787605, 0.031115300953388214, -0.011722163297235966, -0.02833811193704605, -0.010825644247233868, -0.02833811193704605, 0.0026727071963250637, -0.015840761363506317, -0.03478226810693741, -0.0037444864865392447, 0.01794387586414814, 0.016083428636193275, 0.03197811543941498, -0.02936270460486412, -0.015908168628811836, 0.01540935318917036, -0.00033219257602468133, -0.002537892200052738, -0.026302404701709747, -0.002677762880921364], "016fefde-7b3d-43b7-8c2f-97a0e3a90eec": [-0.008413978852331638, -0.0007118015200830996, 0.00785577017813921, -0.026290280744433403, 0.024002986028790474, 0.02351285144686699, -0.017957990989089012, -0.02089880034327507, 0.0015095468843355775, -0.039591994136571884, 0.011981070972979069, 0.01733170822262764, 0.006640644744038582, -0.011851729825139046, -0.00573866069316864, 0.016433127224445343, 0.026263050734996796, 0.011490936391055584, 0.0009036858682520688, 0.001734191901050508, -0.021375318989157677, -0.004475882742553949, -0.005653567612171173, 0.0057692937552928925, -0.015343938954174519, -0.0028472060803323984, 0.01680072955787182, -0.011443284340202808, -0.007488169241696596, 0.01884295605123043, 0.010674044489860535, -0.017835456877946854, -0.022900182753801346, 0.009605279192328453, -0.011347980238497257, 0.013526356779038906, 0.007985111325979233, 0.010755733586847782, 0.010442592203617096, -0.01147732138633728, 0.003624954726547003, 0.017073025926947594, 0.021034948527812958, -0.01320640742778778, -0.0081825265660882, 0.02513301931321621, 0.009176410734653473, -0.0064057884737849236, -0.017930760979652405, -0.003870022017508745, -0.009074299596250057, 0.00558208953589201, -0.03120524249970913, 1.1720208021870349e-05, 0.010333673097193241, 0.001181939383968711, 0.0233767032623291, 0.004285275004804134, 0.016106370836496353, -0.002025209367275238, 0.008543320000171661, -0.008699891157448292, -0.009993301704525948, -0.0030139880254864693, -0.020013833418488503, -0.031368620693683624, -0.02782876044511795, 0.0012355479411780834, -0.01916971243917942, -0.009067492559552193, 0.04332246258854866, 0.027352239936590195, -0.002028613118454814, -0.040790099650621414, 0.013342555612325668, -0.014377284795045853, -0.022981872782111168, -0.03972814232110977, -0.01832559145987034, 0.007944266311824322, 0.024111904203891754, -0.01478573027998209, -0.012518857605755329, 0.011722388677299023, 0.027488388121128082, 0.02522832341492176, 0.013819076120853424, 0.005646760109812021, 0.003614743473008275, -0.017059409990906715, 0.0158204585313797, 0.014431743882596493, 0.02717524580657482, 0.02706632763147354, -0.0012134237913414836, 0.01993214525282383, 0.010258791968226433, 0.014881034381687641, -0.002711057662963867, -0.0044248271733522415, -0.016106370836496353, 0.0010432380950078368, -0.011082489974796772, -0.017740152776241302, 0.000576929422095418, -0.012055952101945877, 0.0008573102531954646, -0.009346596896648407, -0.0020949854515492916, 0.026943793520331383, -0.020844340324401855, 0.030061595141887665, 0.005762486718595028, -0.017073025926947594, -0.007971496321260929, -0.0009709091973491013, 0.027774300426244736, -0.030034365132451057, -0.005891827866435051, -0.03414605185389519, -0.0009521887986920774, 0.008073607459664345, 0.058870624750852585, -0.0022583636455237865, 0.007386057637631893, 0.00725671648979187, -0.005160029511898756, -0.017903530970215797, -0.003890444291755557, 0.008917728438973427, 0.0027161631733179092, 0.008951765485107899, 0.014962723478674889, 0.015044412575662136, -0.02092602849006653, 0.02221943996846676, -0.03063341975212097, 0.004867310170084238, -0.00010461099736858159, -0.03866618126630783, 0.01688241772353649, 0.027488388121128082, 0.01961900293827057, -0.005656971596181393, -0.009469130076467991, 0.05740021914243698, 0.00669170031324029, 0.01548008807003498, 0.005810138303786516, -0.005245122127234936, -0.013669312000274658, -0.009721005335450172, -0.042178813368082047, 0.0006062863976694643, -0.0006343670538626611, -0.001309578656218946, 0.0033492539077997208, 0.032975174486637115, -0.01646035723388195, 0.01191299594938755, 0.009224062785506248, 0.035888753831386566, -0.0028233800549060106, -0.008386749774217606, -0.0006956338766030967, 0.03499017283320427, 0.00979588646441698, -0.02600436843931675, -0.023798763751983643, -0.01850258558988571, 0.014418129809200764, 0.015017182566225529, -0.010286021046340466, 0.033737607300281525, -0.004720950499176979, 0.014663197100162506, -0.009523590095341206, 0.01711387000977993, -0.0026565981097519398, -0.035589225590229034, 0.03436388820409775, -0.014159447513520718, -0.011021223850548267, 0.01895187608897686, -0.006579377688467503, -0.02253258228302002, 0.026644267141819, 0.024452276527881622, 0.013785039074718952, 0.0019162906100973487, 0.015371168963611126, 0.003648780519142747, -0.02284572273492813, -0.017835456877946854, -0.6151735186576843, -0.006943575106561184, 0.015412013977766037, -0.017277248203754425, 0.018911030143499374, 0.00979588646441698, 0.01852981559932232, -0.0005445941351354122, -0.014989953488111496, 0.0376586839556694, 0.004758391063660383, 0.00019454349239822477, -0.009081106632947922, -0.007263523992151022, -0.014772115275263786, -0.020190827548503876, 0.0076311249285936356, -0.012872844003140926, -0.012580124661326408, -0.002733181696385145, -0.02393491193652153, 0.015997452661395073, -0.0006335161160677671, 0.0016456954181194305, -0.005105569958686829, -0.020068293437361717, 0.00641940301284194, 0.005221296101808548, -0.007937459275126457, 0.04364921897649765, -0.04008212685585022, 0.03338361904025078, 0.022287514060735703, -0.012239753268659115, 0.03616105020046234, -0.026494504883885384, -0.007236294448375702, 0.019537314772605896, 0.016610121354460716, 0.015166946686804295, -0.018257517367601395, -0.003468383802101016, 0.009509975090622902, 0.016732653602957726, -0.012416745536029339, -0.000865394074935466, 0.014935493469238281, 0.0008224222110584378, 0.003313514869660139, -0.024016600102186203, 0.014499818906188011, 0.0014780624769628048, -0.009659738279879093, -0.003070149337872863, 0.00979588646441698, -0.0018243902595713735, 0.0283733531832695, -0.011307135224342346, -0.00079178879968822, 0.0077672735787928104, 0.00789661519229412, 0.0018516200361773372, -0.011654314585030079, -0.03594321385025978, -0.048577796667814255, 0.003628358244895935, -0.038720641285181046, -0.00048290181439369917, -0.009938842616975307, -0.014554277993738651, 0.01776738278567791, -0.0138667281717062, 0.002998671494424343, 0.008795195259153843, 0.011892573907971382, 0.006215180270373821, 0.046208810061216354, 0.0018277940107509494, -0.004560975823551416, 0.007324791047722101, -0.004976228810846806, -0.006705315317958593, -0.012525664642453194, -0.02513301931321621, 0.031123554334044456, 0.005776101257652044, -0.014431743882596493, -0.01153178047388792, 0.009891190566122532, -0.01787630282342434, -0.0012389515759423375, 0.03349253907799721, -0.015779614448547363, -0.035589225590229034, 0.0029714417178183794, 0.05631103366613388, -0.0016976019833236933, 0.01754954643547535, 0.0023996178060770035, -0.03444557636976242, -0.0342005118727684, -0.01700495183467865, 0.02404383011162281, -0.0006305378628894687, 0.026045214384794235, 0.015548162162303925, -0.03594321385025978, -0.008631817065179348, 0.011245868168771267, -0.015507317148149014, -0.007787696085870266, -0.005088551435619593, -0.009809501469135284, -0.019088024273514748, 0.025310011580586433, -0.023689843714237213, 0.011014415882527828, 0.014322825707495213, -0.00022719785920344293, -0.002937404438853264, -0.022709574550390244, -0.017358938232064247, 0.024724572896957397, 0.025487005710601807, 0.009625701233744621, 0.007699199486523867, 0.011518165469169617, 0.0007645590812899172, 0.003798543941229582, -0.004475882742553949, -0.00034398777643218637, 0.004152530338615179, -0.001887358957901597, -0.008114452473819256, 0.047815363854169846, 0.009482745081186295, 0.019333090633153915, -0.00802595540881157, 0.015466473065316677, -0.042723409831523895, -0.0012091691605746746, 0.010640007443726063, 0.027542848140001297, -0.016827957704663277, 0.019986603409051895, -0.024860721081495285, -0.001170877367258072, -0.004857098683714867, 0.013294903561472893, -0.0021120039746165276, -0.025092173367738724, -0.002501729177311063, 0.01078296359628439, 0.003044621553272009, -0.0158204585313797, 0.004860502667725086, 0.007665162440389395, -0.03262118622660637, -0.01078296359628439, -0.013029414229094982, 0.0022311341017484665, -0.0005922461277805269, -0.010633200407028198, 0.007835348136723042, -0.019986603409051895, -0.018271133303642273, -0.015983836725354195, 0.022151365876197815, 0.0007939161150716245, -0.007270331494510174, -0.011334365233778954, -0.01230101939290762, 0.0026123500429093838, 0.011851729825139046, 0.010578740388154984, 0.016092756763100624, -0.008611394092440605, -0.004836676642298698, -0.015153331682085991, 0.0007666863966733217, 0.01278434693813324, 0.023036330938339233, -0.000872201519086957, -0.00916279572993517, 0.053778670728206635, 0.0008781580254435539, 0.024193594232201576, 0.020177211612462997, -0.03651503473520279, 0.023485621437430382, -0.004853695165365934, 0.017780998721718788, -0.02360815554857254, -0.00833909772336483, -0.022764034569263458, -0.018461741507053375, -0.00012646922550629824, 0.011511358432471752, 0.014064143411815166, 0.026834875345230103, 0.013349363580346107, 0.016855187714099884, 0.0009121951297856867, 0.00840036477893591, 0.021062178537249565, -0.025922680273652077, 0.005997342988848686, -0.019768767058849335, 0.005337022244930267, 0.00490134721621871, -0.0005420413217507303, -0.019442010670900345, -0.0007041431963443756, -0.022682344540953636, -0.0007632827037014067, 0.024125520139932632, 8.977294055512175e-05, 0.0127298878505826, -0.005864597856998444, -0.0026412815786898136, 0.0002620859304443002, 0.016433127224445343, 0.008468438871204853, -0.005296177696436644, -0.00041716761188581586, 0.009503167122602463, 0.008264215663075447, 0.03327469900250435, 0.0035738989245146513, -0.024220824241638184, -0.016188060864806175, 0.020095523446798325, -0.0019894703291356564, 0.017712924629449844, 0.03844834491610527, 0.009721005335450172, 0.029870986938476562, 0.012675427831709385, 0.02707994356751442, 0.00495580630376935, 0.009789079427719116, -0.006262832321226597, 0.018026065081357956, -0.018802111968398094, 0.032348889857530594, -0.008134874515235424, 0.021742919459939003, 0.011177794076502323, -0.030306663364171982, 0.01213083416223526, -0.012682235799729824, 0.0043975976295769215, -0.010864652693271637, -0.0009334683418273926, 0.032430581748485565, -0.02608605846762657, 0.009094721637666225, 0.004469075705856085, -0.005047706887125969, 0.015371168963611126, -0.000716481648851186, 0.003339042654260993, 0.010020531713962555, -0.009101529605686665, 0.03607936203479767, -0.017467856407165527, 0.0004509919963311404, -0.041089627891778946, 0.002448971616104245, 0.0037883329205214977, 0.004908154718577862, -0.021688461303710938, 0.004394193645566702, -0.03899293765425682, 0.004894539713859558, -0.0032573535572737455, -0.01168835163116455, -0.006436422001570463, 0.0012074672849848866, 0.020953258499503136, -0.022233055904507637, -0.03703239932656288, 0.03422774001955986, 0.013499126769602299, -0.00016486736421938986, 0.002459182869642973, -0.01624251902103424, -0.007644739933311939, 0.011947033926844597, 0.015602621249854565, 0.009925227612257004, -0.008842847310006618, -0.01711387000977993, -0.0010738715063780546, 0.009550819173455238, 0.014118602499365807, 0.04827826842665672, 0.0022345378529280424, -0.028427813202142715, -0.00394830759614706, 0.027801530435681343, 0.019346706569194794, -0.012811576947569847, -0.026644267141819, 0.016719039529561996, 0.004840080160647631, -0.015534547157585621, -0.03066064976155758, 0.004758391063660383, -0.02027251571416855, 0.004952402785420418, -0.020231671631336212, -0.014350054785609245, -0.012055952101945877, -0.00012657558545470238, -0.014254750683903694, -0.007440517190843821, -0.004111685790121555, 0.00878158025443554, 0.01865234784781933, -0.002879541367292404, -0.017250018194317818, 0.015847688540816307, 0.016283364966511726, 0.05037495493888855, 0.000880710780620575, 0.003323725890368223, 0.010040953755378723, -0.01305664423853159, -0.004319312050938606, -0.016637349501252174, -0.006402384489774704, 0.030851256102323532, 0.02577291615307331, -0.02935362234711647, 0.016542047262191772, 0.01818944327533245, -0.006490881089121103, 0.013580815866589546, -0.007365635596215725, 0.0011206725612282753, -0.03368314728140831, -0.019428394734859467, 0.01034048106521368, 0.011239061132073402, -0.009380633942782879, 0.03858449310064316, 0.007883000187575817, 0.02771984040737152, 0.014268365688621998, 0.019891301169991493, 0.005340426228940487, 0.008475245907902718, -0.025310011580586433, -0.01733170822262764, -0.017195560038089752, -0.0018005643505603075, 0.014118602499365807, -0.031994905322790146, 0.0327301062643528, 0.013077066279947758, -0.019305862486362457, -0.008107645437121391, 0.012491627596318722, -0.011402439326047897, 0.037549763917922974, -0.019428394734859467, -0.01311110332608223, 0.00036313364398665726, -0.024179978296160698, -0.00947593804448843, 0.026794031262397766, -0.0066985078155994415, -0.007726429030299187, 0.009816309437155724, 0.01257331669330597, -0.014486203901469707, 0.019550928846001625, 0.018339207395911217, -0.015847688540816307, 0.0005496997036971152, -0.011708773672580719, -0.02913578599691391, -0.026235822588205338, -0.02360815554857254, -0.014567892998456955, -0.008815617300570011, -0.02978929877281189, -0.022151365876197815, -0.03648780658841133, -0.023417547345161438, 0.001449981820769608, -0.02447950653731823, -0.006368347443640232, -0.01907440833747387, -0.024520350620150566, -0.027161631733179092, 0.015126101672649384, 0.027039097622036934, 0.029163016006350517, -0.010871459729969501, -0.00016157001664396375, 0.0022566618863493204, 0.02024528570473194, 0.002042227890342474, -0.005660375114530325, 0.0025136421900242567, -0.01744062639772892, 0.011334365233778954, -0.013955224305391312, -0.00774004403501749, 0.010748926550149918, -0.018121369183063507, 0.02219220995903015, -0.007726429030299187, -0.030170515179634094, 0.03425497189164162, 0.0013623362174257636, 0.012675427831709385, -0.0025698035024106503, 0.013574008829891682, 0.005408500321209431, 0.01798522099852562, -0.031477540731430054, 0.015371168963611126, -0.022818494588136673, -0.011770040728151798, -0.0281827449798584, 0.025310011580586433, 0.030796797946095467, -0.01548008807003498, -0.009761849418282509, -0.0062764473259449005, -0.02416636422276497, -5.1401388191152364e-05, -0.007059301249682903, -0.015507317148149014, -0.023036330938339233, 0.005132799502462149, -0.02750200405716896, 0.005371059291064739, 0.01767207868397236, -0.00040802013245411217, 0.0007747702184133232, 0.014159447513520718, -0.012055952101945877, 0.01799883507192135, 0.0073111760430037975, -0.0014567893231287599, 0.010701274499297142, 0.01197426300495863, -0.010081798769533634, -0.033002402633428574, -0.012471205554902554, 0.004336330574005842, -0.0045882053673267365, -0.018134985119104385, -0.016419513151049614, -0.015343938954174519, -0.0081825265660882, -0.009155988693237305, 0.01206956710666418, -0.005486785899847746, 0.004564379341900349, -0.046508338302373886, 0.009557627141475677, 0.0032471425365656614, -0.007821733132004738, 0.00914918165653944, -0.03371037542819977, -0.029435312375426292, -0.006610011216253042, 0.0099116126075387, 0.03343807905912399, -0.015493703074753284, -0.0023843010421842337, -0.03583429381251335, -0.025909066200256348, -0.031041864305734634, -0.0038768292870372534, -0.005878212861716747, 0.007835348136723042, 0.036869022995233536, 0.03714131936430931, 0.01994575932621956, 0.03444557636976242, 0.020612888038158417, 0.018761267885565758, -0.0005109824705868959, 0.00400617066770792, -0.005149818025529385, -0.02729777991771698, 0.007508591283112764, -0.017372552305459976, -0.012294212356209755, -0.009945650584995747, -0.004663086961954832, 0.008202948607504368, 4.8157224227907136e-05, -0.0013376593124121428, 0.0017818438354879618, -0.015139716677367687, -0.03798544034361839, -0.04411212354898453, 0.01764484867453575, 0.017930760979652405, -0.005507207941263914, 0.005779505241662264, -0.03153200075030327, -0.006198161747306585, 0.006273043341934681, 0.007787696085870266, 0.030606189742684364, -0.008924536406993866, 0.0396464504301548, -0.00609605060890317, 0.015044412575662136, 0.02653534896671772, 0.001152156968601048, -0.03098740614950657, -0.01733170822262764, -0.03575260564684868, 0.004904750734567642, 0.015942992642521858, 0.010286021046340466, 0.009067492559552193, 0.0007879596087150276, -0.0047345650382339954, 0.003968729637563229, 0.006528322119265795, -0.018774881958961487, -0.031368620693683624, 0.001311280531808734, -0.027488388121128082, -0.019414780661463737, -0.032757338136434555, -0.01852981559932232, 0.00600755400955677, -0.007678776979446411, 0.0003516461292747408, -0.0010560019873082638, 0.010891882702708244, -0.022151365876197815, -0.023458391427993774, 0.03142308071255684, -0.010476629249751568, 0.023158865049481392, 0.016814343631267548, -0.0058714053593575954, 0.0233767032623291, 0.0008977293618954718, -0.026453658938407898, -0.006480670068413019, -0.00671892985701561, -0.0009989897953346372, 0.004938787780702114, 0.03433666005730629, -0.02241004817187786, -0.02046312391757965, -0.011538587510585785, 0.0051668365485966206, -0.010537896305322647, -0.046644486486911774, 0.03902016952633858, -0.0005305538070388138, -0.007753658574074507, -0.03313855081796646, -0.026385584846138954, -0.014336440712213516, 0.010810193605720997, -0.007658354938030243, 0.011667928658425808, 0.020054679363965988, 0.008155296556651592, -0.00980269443243742, 0.033193010836839676, -0.005044302903115749, 0.02187906950712204, -0.006722333841025829, -0.0010619584936648607, 0.0007283946615643799, -0.012450783513486385, 0.022709574550390244, -0.00755624333396554, 0.010217946954071522, 0.01852981559932232, -0.01832559145987034, 0.014812960289418697, 0.018938260152935982, 0.004098070785403252, -0.011184602044522762, 0.0069912271574139595, -0.01548008807003498, 0.02902686595916748, 0.00394830759614706, -0.003301601856946945, 0.011130142025649548, -0.024343356490135193, 0.016841573640704155, -0.035371389240026474, -0.021593157202005386, -0.0031075901351869106, -0.012307827360928059, 0.004635857418179512, -0.006378558464348316, -0.003951711114495993, -0.012777539901435375, 0.008924536406993866, 0.00016773924289736897, -0.013689734973013401, -0.017263634130358696, -0.0009053877438418567, 0.023431161418557167, -0.007617510389536619, -0.017808226868510246, -0.007637932430952787, -0.012763924896717072, -9.599535405868664e-05, 0.010810193605720997, -0.0019094831077381968, -0.001729937270283699, 0.018897416070103645, -0.022791264578700066, 0.0017597198020666838, 0.027025483548641205, 0.01742701232433319, -0.028073826804757118, 0.022995486855506897, -0.006824444979429245, 0.0008088073809631169, 0.014145832508802414, -0.0015691118314862251, -0.051736440509557724, -0.028073826804757118, 0.007277138996869326, 0.0005935225053690374, 0.0023689845111221075, 0.00546976737678051, 0.03371037542819977, 0.029380852356553078, -0.004622242413461208, -0.02663065306842327, -0.0020813706796616316, -0.0031348199117928743, -0.005544648971408606, 0.013090681284666061, -0.0012219330528751016, -0.004778813570737839, 0.008883691392838955, 0.006923152599483728, -0.00010354733967687935, 0.003049727063626051, -0.019469240680336952, -0.029489772394299507, -0.013996069319546223, 0.0016074036248028278, -0.009496360085904598, 0.010524281300604343, -0.028863487765192986, -0.045528069138526917, -0.02742031402885914, 0.032430581748485565, 0.01970069296658039, -0.006446633022278547, 0.016746269538998604, -0.005194066558033228, -0.024765416979789734, 0.007467746734619141, -0.008733928203582764, -0.05426880344748497, -0.0372774675488472, 0.006640644744038582, -0.029979906976222992, -0.007597087882459164, 0.003611339721828699, 0.03714131936430931, 0.0016797324642539024, -0.025949910283088684, -0.03972814232110977, -0.009639316238462925, -0.025718457996845245, -0.005265544634312391, -0.03934692591428757, 0.02208329178392887, 0.02502409927546978, 0.045337460935115814, -0.011191409081220627, 0.015629852190613747, 0.01907440833747387, 0.015507317148149014, -0.030715107917785645, -0.015371168963611126, -0.01061277836561203, -0.0180941391736269, 0.04487455636262894, -0.03237612172961235, -0.051382455974817276, -0.004567783325910568, 0.024860721081495285, -0.01538478396832943, 0.010851037688553333, 0.029653150588274002, 0.011361595243215561, -0.0034088187385350466, -0.011409247294068336, -0.006708718836307526, 0.006950382608920336, 0.011579432524740696, 0.012546086683869362, -0.03096017614006996, -0.008345904760062695, 0.010851037688553333, 0.0007369039230979979, -0.014227521605789661, 0.004720950499176979, 0.025636767968535423, -0.02446589060127735, -0.00045694850268773735, -0.008257408626377583, -0.0014652985846623778, -0.016283364966511726, -0.010973571799695492, 0.003170558949932456, 0.004312504548579454, 0.011089297942817211, 0.029952676966786385, 0.0025425737258046865, -0.015589007176458836, -0.005173644050955772, 0.015983836725354195, -0.012906881049275398, -0.009230870753526688, 0.026194976642727852, -0.023485621437430382, -0.018761267885565758, -0.012791153974831104, 0.024629268795251846, -0.0038359847385436296, -0.016964107751846313, -0.012416745536029339, -0.013220022432506084, -0.024751802906394005, -0.006953786127269268, 0.010047761723399162, 0.002026911359280348, 0.013669312000274658, -0.002886348869651556, 0.019904915243387222, -0.014744886197149754, -0.01647397130727768, 0.007025264203548431, -0.00959166418761015, -0.03463618457317352, 0.007338405586779118, 0.0031212051399052143, -0.0452830009162426, 0.00018018406990449876, 0.02458842471241951, -0.005357444752007723, 0.00883603934198618, 0.21152035892009735, 0.015942992642521858, -0.0021137059666216373, 0.05034772679209709, 0.02231474407017231, -0.013492319732904434, 0.009346596896648407, 0.016065526753664017, 0.009094721637666225, 0.019333090633153915, 0.016296979039907455, 0.005646760109812021, -0.025541463866829872, -0.000574376608710736, 0.00725671648979187, -0.012927303090691566, -0.03210382163524628, -0.023689843714237213, -0.011776847764849663, 0.0038495997432619333, 0.012811576947569847, -0.000787534168921411, -0.009380633942782879, 0.0009632508736103773, 0.017277248203754425, 0.021470623090863228, -0.01983684115111828, 0.003179068211466074, 0.01001372467726469, 0.015561777167022228, -0.02458842471241951, -0.0053880782797932625, 0.030824027955532074, -0.020109137520194054, -0.01624251902103424, -0.005207681097090244, 0.017794612795114517, -0.01603829674422741, 0.01093953475356102, 0.02317247912287712, 0.015575392171740532, -0.020109137520194054, 0.0028182745445519686, -0.01884295605123043, 0.02502409927546978, -0.015425628051161766, -0.00032718194415792823, -0.008863269351422787, 0.008522897958755493, 0.04389428719878197, -0.0071205683052539825, 0.010633200407028198, 0.019550928846001625, 0.008168911561369896, -0.00812125951051712, -0.01505802758038044, -0.017154714092612267, -0.0013912677532061934, -0.02968037873506546, 0.029925446957349777, -0.010163487866520882, 0.006953786127269268, -0.015493703074753284, 0.02684848941862583, -0.026453658938407898, 0.01744062639772892, -0.025269167497754097, 0.005194066558033228, 0.002137531992048025, 0.004098070785403252, -0.015180560760200024, 0.001010902808047831, -0.02198798768222332, -0.00904706958681345, 0.0014125410234555602, -0.010367710143327713, 0.007447324693202972, 0.040463343262672424, 0.03662395477294922, 0.020408663898706436, 0.0085501279681921, 0.012586931698024273, -0.014935493469238281, -0.00439079012721777, 0.009721005335450172, 0.0006696805940009654, 0.04334969073534012, -0.019115254282951355, 0.003795140190050006, -0.022709574550390244, -0.010694467462599277, -0.006858482025563717, -0.019646232947707176, 0.0003397331165615469, -0.01689603179693222, -0.008577357046306133, 0.008863269351422787, 0.021634001284837723, -0.010742118582129478, -0.014023298397660255, -0.028400583192706108, 0.029163016006350517, 0.023431161418557167, 0.03196767345070839, -0.024016600102186203, 0.00985715351998806, -0.013213214464485645, 0.03577983379364014, 0.0012619267217814922, 0.010973571799695492, -0.020735420286655426, -0.026031598448753357, 0.00926490779966116, 0.005146414507180452, 0.022287514060735703, 0.025732072070240974, 0.033111322671175, 0.003362868679687381, -0.02577291615307331, -0.006892519537359476, 0.011538587510585785, -0.017045795917510986, -0.009040262550115585, 0.0046903169713914394, -0.010851037688553333, -0.02013636752963066, -0.0022498543839901686, 0.012655005790293217, -0.018693193793296814, -0.018693193793296814, 0.008434401825070381, -0.01093272678554058, 0.01239632349461317, -0.019305862486362457, -0.0036555880215018988, -0.00498643983155489, 0.00914918165653944, -0.009544012136757374, -0.010578740388154984, 0.006402384489774704, 0.00028080635820515454, 0.019904915243387222, 0.027760684490203857, -0.016324209049344063, 0.01180407777428627, 0.00021868858311790973, 0.012831998988986015, 0.023880451917648315, -0.001014306559227407, -0.008890499360859394, 0.005592301022261381, 0.029952676966786385, 0.005408500321209431, 0.01332894153892994, 0.035807061940431595, -0.010102220810949802, -0.025064945220947266, -0.03670564293861389, 0.013308518566191196, -0.004792428109794855, -0.04373090714216232, -0.013138333335518837, 0.03466341644525528, 0.007072916254401207, -0.028563961386680603, 0.005905442405492067, -0.17285417020320892, 0.015289479866623878, 0.011177794076502323, 0.010776156559586525, -0.00606541708111763, 0.02351285144686699, 0.005721642170101404, 0.0010645113652572036, -0.029108555987477303, -0.013934802263975143, 0.01602468267083168, -0.004370367620140314, -0.00883603934198618, -0.024642884731292725, 0.011749617755413055, -0.01299537718296051, -0.00925809983164072, 0.02848227322101593, 0.02870010957121849, -0.01224656030535698, 0.011252676136791706, -0.006170932203531265, 0.0021443392615765333, -0.009060684591531754, 0.006415999494493008, 0.018788497895002365, -0.016827957704663277, 0.046317730098962784, -0.013853113166987896, -0.029299164190888405, -0.015030797570943832, -0.0174542423337698, 0.015888532623648643, 0.015153331682085991, 0.0188293419778347, 0.007365635596215725, 9.264481923310086e-05, 0.004503112751990557, -0.022124135866761208, 0.018883801996707916, 0.02532362751662731, 0.00692996010184288, 0.01451343297958374, -0.005993939004838467, 0.022164979949593544, 0.02752923220396042, 0.021184710785746574, -0.006048398558050394, 0.021810995414853096, -0.006385365966707468, 0.026834875345230103, -0.010061376728117466, -0.0165556613355875, -0.014336440712213516, -0.004431634675711393, 0.005248525645583868, -0.0027178649324923754, 0.006548744160681963, 0.008366326801478863, -0.024452276527881622, -0.004887732211500406, -0.006998034659773111, -0.004812850616872311, 0.007699199486523867, -0.008625009097158909, -0.03564368560910225, -0.012811576947569847, 0.020653732120990753, -0.02492879517376423, -0.0045099202543497086, 0.0007437113672494888, 0.005214488599449396, 0.007991918362677097, 0.00014199866564013064, 0.01658289134502411, 0.006160721182823181, -0.04580036550760269, -0.011062067933380604, 0.02924470417201519, 0.011334365233778954, 0.017903530970215797, 0.007719621527940035, -0.004996650852262974, 0.0069333640858531, -0.026249436661601067, -0.00024698194465599954, 0.021933527663350105, 0.0180941391736269, -0.006878904532641172, 0.020326975733041763, 0.004298890009522438, -0.016419513151049614, 0.03757699579000473, -0.010279214009642601, 0.015452858060598373, 0.028836259618401527, 0.015071642585098743, -0.010081798769533634, 0.020885184407234192, -0.02785598859190941, 0.008359519764780998, 0.03782206028699875, -0.04032719507813454, -0.0001216827513417229, 0.02968037873506546, 0.027542848140001297, 0.002908472903072834, -0.012981762178242207, 0.026167746633291245, -0.023254169151186943, -0.029598690569400787, 0.018761267885565758, 0.02468372881412506, -0.0006586185190826654, -0.012423553504049778, 0.05165475234389305, 0.018380051478743553, -0.01083742268383503, 0.0034275392536073923, -0.017250018194317818, 0.04860502481460571, -0.03561645373702049, -0.0096869682893157, 0.0024830088950693607, 0.005718238186091185, -0.016092756763100624, -0.102220319211483, -0.023553695529699326, 0.03771314397454262, 0.01320640742778778, -0.0096869682893157, 0.0038836367893964052, -0.0070456862449646, 0.016936877742409706, 0.009836731478571892, 0.011763232760131359, -0.013553585857152939, -0.0029782489873468876, 0.00010407916852273047, -0.003279477823525667, 0.021702075377106667, -0.017168330028653145, 0.0020949854515492916, -0.04482009634375572, -0.022056061774492264, 0.008978995494544506, 0.0144589738920331, -0.016106370836496353, 0.005408500321209431, -0.0008330588461831212, -0.013771424070000648, -0.01865234784781933, -0.016610121354460716, 0.008420786820352077, 0.005221296101808548, 0.002879541367292404, 0.029408082365989685, -0.011627084575593472, 0.03757699579000473, -0.017059409990906715, -0.004754987545311451, -0.014867419376969337, -0.011136949993669987, -0.018284747377038002, 0.037631452083587646, -0.017794612795114517, 0.010953148826956749, 0.02468372881412506, -0.0008083818829618394, -0.023744303733110428, -0.004754987545311451, -0.00606541708111763, 0.0014150937786325812, 0.03803990036249161, 0.004748180042952299, -0.0019605387933552265, -0.004138915333896875, -0.0318315252661705, -0.007787696085870266, -0.03324747085571289, 0.020817110314965248, 0.007971496321260929, 0.009142373688519001, 0.03098740614950657, -0.003604532452300191, 0.00318076997064054, -0.03109632432460785, -0.0010747225023806095, -0.006776792928576469, 0.008672661148011684, 0.007685584481805563, 0.011599854566156864, -0.014023298397660255, 0.017073025926947594, 0.01228740531951189, 0.01948285475373268, -0.013397015631198883, 0.01018390990793705, -0.027801530435681343, 0.0014057335210964084, -0.0214570090174675, 0.007685584481805563, -0.004315908532589674, -0.0098639614880085, -0.0046562799252569675, 0.0035432653967291117, -0.028618421405553818, -0.011273098178207874, 0.002209009835496545, -0.029435312375426292, 0.003614743473008275, -0.0016976019833236933, 0.00044588642776943743, -0.0005190662923268974, 0.01765846461057663, -0.04498347267508507, 0.004877521190792322, 0.014962723478674889, 0.02968037873506546, 0.006402384489774704, -0.011892573907971382, 0.0017103658756241202, -0.012314634397625923, -0.01592937856912613, 0.007692391984164715, -0.015071642585098743, -0.0023825992830097675, -0.00609605060890317, -0.053125157952308655, 0.0019213961204513907, 0.018216673284769058, -0.0057965237647295, 0.008420786820352077, -0.0294625423848629, -0.003934692591428757, -0.014390899799764156, -0.002195395063608885, -0.013226829469203949, -0.03153200075030327, 0.01115056499838829, -0.017930760979652405, -0.006814233958721161, -0.020068293437361717, -0.02111663669347763, 0.02178376540541649, 0.011096104979515076, 0.018924646079540253, -0.011170987039804459, 0.011443284340202808, 0.007290754001587629, 0.006909538060426712, 0.020313361659646034, -0.0022124135866761208, 0.02567761205136776, -0.028291665017604828, 0.030415581539273262, 0.00789661519229412, -0.007617510389536619, 0.020299745723605156, -0.005847579333931208, 0.002857417333871126, -0.006426210515201092, 0.004322716034948826, -0.023458391427993774, -0.023526465520262718, 0.012872844003140926, 0.028618421405553818, -0.0026429833378642797, -0.02447950653731823, -0.010040953755378723, 0.01960538886487484, -0.03371037542819977, -0.03779483214020729, -0.028727339580655098, -0.0036726065445691347, -0.02511940337717533, 0.025405315682291985, 0.0009760147659108043, 0.04460225999355316, 0.0012466099578887224, -0.0316409170627594, -0.04852333664894104, -0.015779614448547363, -0.01907440833747387, 0.010531089268624783, 0.014309210702776909, 0.009462323039770126, -6.568102980963886e-05, 0.0487411729991436, 0.016650965437293053, 0.0011785357492044568, -0.016705425456166267, 0.04383982717990875, -0.0069333640858531, -0.05652887001633644, -0.008747543208301067, -0.0009964370401576161, -0.03322024270892143, -0.006684892810881138, -0.014772115275263786, 0.01951008476316929, 0.006402384489774704, 0.00893815141171217, -0.009428285993635654, 0.004829869139939547, -0.020871570333838463, -0.011143757030367851, 0.016964107751846313, 0.003972133155912161, -0.013070259243249893, -0.019850455224514008, 0.019088024273514748, 0.004615435376763344, 0.01775376871228218, -0.02167484536767006, 0.021497853100299835, 0.013301711529493332, 0.008645432069897652, -0.02544615976512432, -0.007842155173420906, 0.007651547435671091, 0.019360320642590523, 0.0031382236629724503, 0.004761795047670603, -0.01700495183467865, 0.010592355392873287, 0.03989151865243912, 0.01840728148818016, 0.0030105842743068933, -0.0074132876470685005, -0.016514817252755165, -0.00462904991582036, -0.004860502667725086, 0.011484128423035145, -0.02859119139611721, -0.02253258228302002, 0.023689843714237213, 0.017358938232064247, 0.008590972051024437, -0.0350990928709507, -0.012620968744158745, 0.01602468267083168, -0.015548162162303925, 0.012110412120819092, -0.008230178616940975, 0.0006684042164124548, -0.03357422724366188, -0.005970112979412079, 0.03207659348845482, 0.0254597757011652, 0.009155988693237305, -0.010224754922091961, 0.03564368560910225, 0.005919057410210371, 0.0028029577806591988, -0.003887040540575981, 0.01831197738647461, -0.008563742972910404, 0.0048196581192314625, -0.005759082734584808, 0.00936021190136671, -0.011143757030367851, -0.004877521190792322, -0.012968147173523903, -0.00582375330850482, 0.03499017283320427, -0.017073025926947594, 0.09563072770833969, 0.018066909164190292, -0.018815726041793823, 0.008189334534108639, -0.005932672414928675, 0.00914918165653944, 0.008046378381550312, 0.008148489519953728, -0.0020694576669484377, -0.027692610397934914, 0.02589545026421547, -0.01418667659163475, -0.01689603179693222, 0.007263523992151022, -0.014268365688621998, 0.009836731478571892, -0.0007722174632363021, 0.01039494015276432, -0.015534547157585621, 0.010871459729969501, 0.012743502855300903, -0.001582726719789207, 0.005701219663023949, -0.008059993386268616, -0.02968037873506546, 0.0016312295338138938, 0.01733170822262764, 0.04136192426085472, 0.00914918165653944, -0.016405897215008736, 0.014472588896751404, -0.012266982346773148, -0.01873403787612915, -0.006409191992133856, -0.012689042836427689, -0.005537841469049454, -0.019033564254641533, -0.03863895311951637, 0.010156680829823017, 0.013192792423069477, 0.005857790354639292, 0.031368620693683624, -0.028019366785883904, -0.0237306896597147, 0.02460203878581524, -0.0025204496923834085, -0.008413978852331638, -0.03174983710050583, 0.0003129288961645216], "2226af7c-b46b-4600-b899-63c5dc50458f": [-0.002858455292880535, -0.010901854373514652, 0.005153855308890343, -0.029182150959968567, 0.020947035402059555, 0.01822502724826336, -0.01959294080734253, -0.02230113185942173, -0.01411437802016735, -0.05272683873772621, 0.014936507679522038, 0.036892205476760864, 0.00432827090844512, -0.01973111368715763, -0.005219487473368645, 0.02940322645008564, 0.020767411217093468, 0.004798059351742268, 0.00024288233544211835, -0.00981028750538826, -0.013451147824525833, -0.003421510336920619, -0.02868472784757614, 0.0021762256510555744, -0.0399320162832737, -0.009761926718056202, 0.027358265593647957, -0.010356070473790169, -0.010756772942841053, 0.00987937394529581, 0.02010418102145195, -0.012739555910229683, -0.036201342940330505, 0.006577037740498781, -0.010204080492258072, 0.01478451769798994, 0.019040247425436974, 0.005437110085040331, 0.012684286572039127, -0.01471543125808239, 0.0022332221269607544, 0.03683693706989288, 0.0038895716425031424, -0.00347505253739655, -0.006331780459731817, 0.042363859713077545, 0.000993118854239583, -0.0015794908395037055, -0.025741640478372574, 0.006483770906925201, 0.004725518636405468, 0.010404431261122227, -0.020311439409852028, 0.006649578455835581, 0.006621943786740303, -0.004732427187263966, 0.012891546823084354, 0.005019136238843203, 0.021347738802433014, -0.006811931729316711, 0.002207314595580101, -0.015088498592376709, -0.008822349831461906, -0.010839676484465599, -0.02954140119254589, -0.031669266521930695, -0.01728544943034649, -0.0008812850574031472, -0.018598094582557678, -0.007302446290850639, 0.04288891702890396, 0.035095956176519394, 0.015171402134001255, -0.03772124648094177, 0.00022884913778398186, -0.021969515830278397, -0.011378551833331585, -0.026252880692481995, -0.0032729743979871273, 0.005343843251466751, 0.0171058252453804, -0.010231714695692062, -0.02412501722574234, 0.005713455844670534, 0.007910408079624176, 0.02024235390126705, 0.01470161322504282, 0.007779143285006285, -0.006469953339546919, -0.01857045851647854, 0.019399497658014297, 0.005309300031512976, 0.031006034463644028, 0.012953724712133408, 0.011233469471335411, 0.016553131863474846, 0.006735936738550663, 0.0005406020791269839, -0.004742790479212999, 0.0011856976198032498, -0.004832602571696043, -0.0020881404634565115, -0.010314619168639183, -0.02238403633236885, -0.0076755136251449585, -0.020601604133844376, 0.01109529659152031, -0.011198926717042923, -0.004760061856359243, 0.016981469467282295, -0.024802064523100853, 0.03504068776965141, 0.0021900429856032133, -0.02406974695622921, -0.002131319371983409, -0.0019741475116461515, 0.035234130918979645, -0.024221736937761307, -0.0015138585586100817, -0.02803531475365162, 0.006483770906925201, 0.007703148294240236, 0.04194934293627739, -0.012055599130690098, 0.011102205142378807, -0.001717663835734129, 0.02190043032169342, -0.016649853438138962, -0.012629018165171146, -0.00436972314491868, 0.01841846853494644, 0.005036408081650734, 0.01397620514035225, 0.01881917007267475, -0.021181929856538773, 0.017119642347097397, -0.0168294794857502, 0.005267847795039415, 0.0022228590678423643, -0.02230113185942173, 0.0037272183690220118, 0.025023141875863075, 0.023088717833161354, -0.006628852803260088, -0.002122683683410287, 0.0527544729411602, -0.011855248361825943, 0.019952189177274704, 0.0036512231454253197, -0.00516076385974884, -0.008262748830020428, -0.011371643282473087, -0.029126880690455437, 0.0009767108131200075, -0.006849929690361023, 0.01230431068688631, 0.007482071407139301, 0.02224586345255375, -0.025396209210157394, 0.008732537738978863, 0.012173046357929707, 0.0285189189016819, 0.0007539067883044481, -0.016414958983659744, -0.0050260452553629875, 0.030536245554685593, 0.019399497658014297, -0.019662026315927505, -0.021886613219976425, -0.007710056845098734, 0.01293299812823534, 0.03498541936278343, -0.009354316629469395, 0.026625948026776314, 0.008539095520973206, 0.02460862137377262, -0.01294681616127491, 0.002433573128655553, -0.008449282497167587, -0.023876305669546127, 0.02243930473923683, -0.008470009081065655, -0.003046716097742319, 0.033382613211870193, -0.011157474480569363, -0.006763571407645941, 0.027828054502606392, 0.023420333862304688, 0.010888037271797657, 0.002528567099943757, 0.008318018168210983, 0.005070951301604509, -0.020767411217093468, -0.006425047293305397, -0.6309534907341003, 0.011033118702471256, 0.015903718769550323, -0.012214498594403267, 0.003544138977304101, 0.010079724714159966, 0.019288958981633186, -0.00397938396781683, -0.020062727853655815, 0.03493015095591545, 0.0015708550345152617, 0.0010345707414671779, -0.0173959881067276, -0.012767191044986248, -0.02013181522488594, -0.020311439409852028, -0.0034042387269437313, -0.02004891075193882, -0.03233249485492706, -0.0030570789240300655, -0.020601604133844376, 0.009637570939958096, 0.0008860347443260252, 0.010894945822656155, -0.008020945824682713, -0.030784957110881805, 0.017727604135870934, 0.0056650955229997635, -0.00037479441380128264, 0.030619150027632713, -0.03490251675248146, 0.031669266521930695, 0.01930277608335018, -0.008200570940971375, 0.037942323833703995, -0.023682862520217896, -0.01206250861287117, 0.03321680426597595, 0.008566729724407196, 0.022743286564946175, -0.02621142938733101, -0.008532186038792133, 0.029154514893889427, 0.004849874414503574, -0.018915891647338867, -0.006691030692309141, 0.01050806138664484, 0.01113674882799387, 0.006200516130775213, -0.022176776081323624, 0.014107469469308853, -0.011896700598299503, -0.000261233450146392, 0.006020891014486551, -0.006193607579916716, 0.0012858730042353272, 0.026087073609232903, 0.0004220755072310567, -0.010224806144833565, -0.012539205141365528, 0.008967431262135506, 0.016069527715444565, -0.0060588885098695755, -0.019440948963165283, -0.02686084248125553, 0.015212854370474815, -0.024815881624817848, -0.0009430311620235443, -0.00862890761345625, -0.009167782962322235, 0.025479111820459366, -0.013893301598727703, -0.007551157847046852, 0.008276565931737423, 0.026874659582972527, 0.017921045422554016, 0.051372744143009186, -0.007060643285512924, -0.00972738303244114, 0.011682532727718353, 0.01608334481716156, 0.0053369347006082535, -0.030011188238859177, -0.01973111368715763, 0.012566840276122093, 0.012380306608974934, -0.013147166930139065, -0.009271412156522274, 0.010597873479127884, -0.008145301602780819, -0.01231812871992588, 0.03584209084510803, -0.004017381928861141, -0.04628797620534897, 0.0037928505335003138, 0.05203597620129585, 0.010356070473790169, 0.01076368149369955, 0.00848382618278265, -0.015516834333539009, -0.03918588161468506, -0.023033449426293373, 0.02420791983604431, 0.007184999063611031, 0.033631324768066406, 0.003158981679007411, -0.03410110995173454, -0.0007616790244355798, 0.016318239271640778, -0.017575614154338837, -0.016414958983659744, 0.003944840747863054, -0.018059218302369118, -0.005236758850514889, 0.018432285636663437, -0.019523853436112404, 0.0009309410233981907, 0.018377017229795456, -0.005108948796987534, 0.002293672878295183, -0.021886613219976425, 0.0010708412155508995, 0.023834852501749992, 0.008988157846033573, 0.020947035402059555, 0.010134994052350521, 0.015503017231822014, -0.014729248359799385, -0.003803213592618704, -0.017589431256055832, -0.007122821174561977, -0.008311109617352486, 0.006480316631495953, -0.010970940813422203, 0.05720364674925804, 0.010141902603209019, 0.02726154401898384, -0.013699859380722046, 0.013762037269771099, -0.034266918897628784, -0.004024290479719639, -0.004652977921068668, 0.016290603205561638, -0.024249373003840446, 0.018722450360655785, -0.027358265593647957, 0.004248821642249823, -0.012580657377839088, 0.016041891649365425, -0.00013644590217154473, -0.006756662856787443, -0.0007159091765061021, 0.01611097902059555, 0.009761926718056202, -0.022232046350836754, -0.006932833231985569, 0.0007962222443893552, -0.03562101349234581, 0.0018653363222256303, -0.016636036336421967, -0.013610046356916428, 0.016553131863474846, -0.0066564870066940784, 0.006839566398411989, -0.019855469465255737, -0.010639325715601444, -0.01796249859035015, 0.016497863456606865, -0.015074680559337139, -0.014936507679522038, -0.011413094587624073, -0.021085208281874657, -0.00317279901355505, 0.015530652366578579, 0.009851738810539246, 0.009464854374527931, -0.015447747893631458, -0.017699969932436943, -0.01568264327943325, -0.013527142815291882, 0.006490679457783699, 0.02002127654850483, -0.020435795187950134, -0.02691611275076866, 0.04659195616841316, 0.008124575950205326, 0.010777498595416546, 0.013236979022622108, -0.04581818729639053, 0.018238844349980354, -0.009381950832903385, 0.007896590046584606, -0.022093871608376503, -0.0059518045745790005, -0.012477027252316475, -0.011945061385631561, 0.01320243626832962, -0.0021589540410786867, -0.0055580115877091885, 0.020090363919734955, 0.02112666144967079, 0.015060863457620144, 0.0006524359341710806, -0.004766970407217741, 0.0021002304274588823, -0.02926505357027054, 0.020795045420527458, -0.0191093347966671, 0.004034653306007385, -0.00045338034396991134, 0.0039172060787677765, -0.003488869871944189, 0.0023575779050588608, -0.0029448133427649736, -0.000828174757771194, 0.015765545889735222, 0.019150786101818085, 0.00739225884899497, -0.002782460069283843, -0.013582412153482437, 0.011965787038207054, 0.0005911216139793396, 0.03385239839553833, -0.0015587648376822472, -0.001044933800585568, 0.01334751769900322, 0.004121011588722467, 0.025175131857395172, 0.002842910820618272, -0.022563660517334938, -0.010031363926827908, 0.003366241231560707, -0.011945061385631561, 0.009547758847475052, 0.03661585971713066, 0.025078410282731056, 0.023005815222859383, 0.009243777953088284, 0.01873626746237278, -0.000654163071885705, 0.010922580026090145, -0.011005484499037266, 0.011468363925814629, -0.02554819919168949, 0.022453121840953827, 0.004083014093339443, 0.027855688706040382, -0.02364141121506691, -0.03282991796731949, 0.02004891075193882, -0.004473352804780006, 0.008435465395450592, -0.013264614157378674, -0.006684121675789356, 0.020518699660897255, -0.021969515830278397, 0.02731681428849697, 0.01025244127959013, -0.007171181961894035, 0.023337429389357567, 0.023917756974697113, 0.0008225615019910038, 0.0077169653959572315, -0.003304063342511654, 0.027703698724508286, -0.019330410286784172, -0.002635651035234332, -0.021582631394267082, 0.0038135764189064503, 0.003385239979252219, 0.002594199264422059, -0.020463429391384125, 0.008621999062597752, -0.01591753587126732, 0.010155719704926014, -0.010846585035324097, -0.0063939583487808704, -0.009782652370631695, 0.004262638743966818, 0.026556862518191338, -0.01680184341967106, -0.019786382094025612, 0.0210990272462368, -0.001595898880623281, -0.00036486322642304003, -0.003582136705517769, -0.007129729725420475, 0.0072333598509430885, 0.02592126652598381, 0.025258036330342293, 0.022204410284757614, -0.011046935804188251, -0.014425267465412617, -0.003046716097742319, 0.014770700596272945, 0.007571883499622345, 0.0373619943857193, -0.01408674381673336, -0.030867861583828926, -0.0006580491899512708, 0.02629433386027813, 0.012629018165171146, -0.018984979018568993, -0.030812593176960945, 0.022950544953346252, 0.008345653302967548, -0.030978400260210037, -0.02843601629137993, -0.011730892583727837, -0.015806999057531357, -7.685876335017383e-05, -0.018971161916851997, -0.034322187304496765, -0.008615090511739254, 0.003868845757097006, -0.0016261242562904954, -0.0070951865054667, -0.00795876793563366, 0.005654732696712017, 0.019979825243353844, 0.006096886470913887, -0.026999015361070633, 0.00411410303786397, 0.003920660819858313, 0.05325189605355263, 0.0012651471188291907, -0.006532131228595972, 0.0028135490138083696, -0.016207700595259666, -0.0042764563113451, -0.02018708363175392, -0.028712362051010132, 0.04266783967614174, 0.018003949895501137, -0.015268122777342796, 0.012214498594403267, 0.011772344820201397, -0.0053542060777544975, 0.013409695588052273, 0.004083014093339443, -0.0022435851860791445, -0.026391055434942245, -0.010563330724835396, 0.01734071969985962, 0.013243887573480606, 0.008711811155080795, 0.03382476419210434, 0.0283807460218668, 0.028795266523957253, 0.006342143286019564, 0.019496219232678413, 0.011185109615325928, 0.0085529126226902, -0.021389190107584, -0.013934752903878689, 0.0029620849527418613, 0.0017807052936404943, 0.015240488573908806, -0.02926505357027054, 0.03664349392056465, 0.00704337190836668, -0.01747889257967472, -0.010874220170080662, 0.0003609771083574742, 0.0029309960082173347, 0.01959294080734253, -0.013084989041090012, 0.010017546825110912, 0.027938593178987503, -0.022909093648195267, -0.02173462323844433, 0.03738962858915329, -0.005475107580423355, -0.010715320706367493, 0.029928285628557205, 0.0065010422840714455, -0.017589431256055832, 0.005454381462186575, 0.006297237239778042, -0.012601383030414581, 0.020352892577648163, -0.031696900725364685, -0.023973025381565094, -0.02087794989347458, -0.038716092705726624, -0.003540684701874852, -0.013996930792927742, -0.01930277608335018, -0.010853493586182594, -0.03598026558756828, -0.036228977143764496, 0.0008730810368433595, -0.028076766058802605, -0.007799869403243065, -0.02632196806371212, -0.021693170070648193, -0.03360368683934212, 0.01267737802118063, 0.016608402132987976, 0.01876390166580677, -0.005920715630054474, -0.003393875900655985, -0.00020369731646496803, 0.003893025917932391, -0.011309465393424034, -0.002777278423309326, -0.0016839841846376657, -0.04435355216264725, 0.008608181960880756, -0.017271632328629494, -0.0038135764189064503, 0.002452571876347065, -0.0005328298429958522, 0.025631103664636612, -0.017976315692067146, -0.02932032383978367, 0.021803708747029305, 0.002514749765396118, 0.019178420305252075, 0.0074060759507119656, 0.005482016131281853, -0.009416494518518448, 0.02270183339715004, -0.049438320100307465, 0.011917426250874996, -0.009962277486920357, -0.009575393050909042, -0.007993311621248722, 0.02187279611825943, 0.02018708363175392, -0.006155610084533691, -0.006124521140009165, 0.005012227687984705, -0.02230113185942173, 0.004407720640301704, -0.002250493736937642, -0.022909093648195267, -0.021665535867214203, 0.003260884201154113, -0.026225246489048004, 0.015447747893631458, 0.01474306546151638, 0.009927734732627869, -0.004003564361482859, 0.012449393048882484, -0.0018307931022718549, 0.013064262457191944, 0.01951003633439541, -0.00047281093429774046, 0.02286764234304428, 0.015281940810382366, -0.007564974948763847, -0.020435795187950134, -0.0028981799259781837, 0.0007513160235248506, 4.612065458786674e-05, -0.019371863454580307, -0.007447528187185526, -0.026943746954202652, -0.014466719701886177, -0.01095021516084671, 0.010480426251888275, 0.0033869671169668436, 0.004494078923016787, -0.05612589791417122, 0.017589431256055832, 0.011171291582286358, -0.007772234734147787, -0.0017064373241737485, -0.027040468528866768, -0.03114420734345913, -0.011364733800292015, 0.0031797075644135475, 0.027026651427149773, -0.012456301599740982, -0.005937987472862005, -0.038826629519462585, -0.03415638208389282, -0.029707208275794983, -0.00036076121614314616, -0.0005876672803424299, 0.026764122769236565, 0.04515495523810387, 0.02243930473923683, 0.014162738807499409, 0.024774430319666862, 0.026073256507515907, 0.002335124649107456, 0.0027997316792607307, 0.004300636705011129, -0.008345653302967548, -0.025672554969787598, 0.0015371752670034766, -0.024732977151870728, 0.00010476324678165838, -0.0013471873244270682, -0.006034708581864834, -0.0007102958625182509, 0.00036227249074727297, -0.004815331194549799, 0.007516614627093077, -0.0007111594895832241, -0.03324443846940994, -0.049631763249635696, 0.007029554340988398, 0.027703698724508286, 0.008014037273824215, 0.008083123713731766, -0.02926505357027054, -0.004829148296266794, 0.003975929692387581, -0.010362979955971241, 0.039710938930511475, 0.013734402135014534, 0.028214938938617706, 0.0002545406750869006, 0.014425267465412617, 0.02418028563261032, -0.005122766364365816, -0.011489089578390121, -0.01249084435403347, -0.03296809270977974, -0.009796470403671265, 0.009381950832903385, 0.00356831937097013, -0.0026062894612550735, -0.011710166931152344, -0.0074060759507119656, 0.012497752904891968, 0.007613335736095905, -0.023848669603466988, -0.016636036336421967, -0.0030933492816984653, -0.03318917006254196, 0.00028131171711720526, -0.029817746952176094, -0.012166137807071209, 0.015585921704769135, -0.017727604135870934, 0.008946705609560013, -0.009423403069376945, 0.013022811152040958, -0.024249373003840446, -0.025575833395123482, 0.012414849363267422, 0.00031930929981172085, 0.015765545889735222, 0.010052090510725975, 0.009299047291278839, 0.024166468530893326, 0.0070122829638421535, -0.0236690454185009, -0.012960633262991905, 0.009388859383761883, 0.004345542751252651, 0.005526922643184662, 0.04968703165650368, -0.021720804274082184, -0.019910737872123718, 0.004383540246635675, -0.006383595522493124, 0.0009119422174990177, -0.04067814722657204, 0.03656059131026268, 0.009195417165756226, -0.005202215630561113, -0.030784957110881805, -0.02304726652801037, -0.013326792046427727, 0.009119422174990177, 0.0009654842433519661, 0.019579121842980385, 0.01565500721335411, 0.01771378703415394, -0.008877619169652462, 0.016470229253172874, -0.012076325714588165, 0.02954140119254589, -0.00987937394529581, 0.009713565930724144, -0.007426802068948746, -0.0020035093184560537, -0.007336989510804415, -0.011122931726276875, 0.014480536803603172, 0.012912272475659847, -0.015433930791914463, 0.0062626940198242664, 0.01799013279378414, 0.009499398060142994, -0.007654787506908178, -0.003789396258071065, -0.030757322907447815, 0.028132034465670586, -0.005585645791143179, -0.022342583164572716, -0.007019191514700651, -0.028297843411564827, 0.0035994083154946566, -0.019952189177274704, -0.029016342014074326, -0.0006545948563143611, -0.010480426251888275, 0.0007124548428691924, -0.005457835737615824, -0.0033541510347276926, -0.0038895716425031424, 0.014618709683418274, 0.015503017231822014, -0.020781228318810463, -0.019496219232678413, -0.013195527717471123, 0.02098848856985569, -0.010314619168639183, -0.0017012557946145535, -0.020435795187950134, -0.006988102570176125, 0.0021399552933871746, 0.0015449475031346083, -0.006704847794026136, 0.017064372077584267, 0.02018708363175392, -0.024083564057946205, 0.010245532728731632, 0.01787959411740303, 0.023834852501749992, -0.029154514893889427, 0.02484351582825184, -0.010224806144833565, 0.00615906435996294, 0.011869065463542938, 0.015447747893631458, -0.028353111818432808, -0.03271938115358353, 0.006957013625651598, -0.0060243452899158, 0.014922690577805042, 0.017672333866357803, 0.012325037270784378, 0.016926199197769165, -0.0035614105872809887, -0.03034280426800251, -0.017147276550531387, 0.00785513874143362, -0.020781228318810463, 0.02393157407641411, 0.019634392112493515, -0.007613335736095905, 0.013098806142807007, -0.00011005268606822938, 0.009333590045571327, 0.01183452270925045, -0.008787807077169418, -0.022259680554270744, -0.02192806452512741, 0.009409585036337376, 0.0016632581828162074, 0.01571027748286724, -0.021582631394267082, -0.02774515002965927, -0.026156160980463028, 0.027565525844693184, 0.006970830727368593, 0.006735936738550663, 0.01434236392378807, -0.0038239394780248404, -0.02144445851445198, 0.011917426250874996, 0.0018653363222256303, -0.04725518822669983, -0.026487775146961212, -0.006100340746343136, -0.03769361227750778, -0.010300802066922188, -0.0005548511981032789, 0.030038824304938316, 0.001967238960787654, -0.012214498594403267, -0.04554184153676033, -0.023282160982489586, -0.018100671470165253, 0.006255785468965769, -0.03230486065149307, 0.020947035402059555, 0.034405093640089035, 0.03589736297726631, 0.0041624633595347404, 0.014604892581701279, 0.005609826184809208, 0.028214938938617706, -0.03545520827174187, -0.022881459444761276, -0.016553131863474846, -0.013651498593389988, 0.019482402130961418, -0.03216668963432312, -0.04454699531197548, -0.0009991639526560903, 0.012642835266888142, -0.020173266530036926, -0.00316243595443666, 0.028104400262236595, 0.010432066395878792, 0.002640832681208849, -0.012787916697561741, -0.0017962497659027576, 0.013140258379280567, -0.011274921707808971, 0.0047807879745960236, -0.014756882563233376, 0.005088223144412041, 0.0031762532889842987, -0.0063283261843025684, -0.020808862522244453, 0.0009033064125105739, 0.015420113690197468, -0.029043978080153465, -0.005191852804273367, -0.00844237394630909, -0.010286984033882618, -0.021223383024334908, -0.009423403069376945, -0.006349052302539349, 0.005171126686036587, 0.002348941983655095, 0.023517055436968803, 0.001549265463836491, 0.0030087183695286512, 0.007171181961894035, 0.026059439405798912, -0.006165972910821438, 0.009278320707380772, 0.03376949578523636, -0.018639545887708664, -0.007792960852384567, -0.013105714693665504, 0.030812593176960945, -0.007737691514194012, -0.0005315344897098839, -0.010072816163301468, -0.01616624742746353, -0.02401447854936123, -0.014356181025505066, 0.01656695082783699, -0.005651277955621481, 0.022093871608376503, -0.007050280459225178, 0.01109529659152031, -0.011627263389527798, -0.018515190109610558, 0.0050260452553629875, -0.038660820573568344, -0.02216295897960663, -0.006874109618365765, 0.01571027748286724, -0.036118436604738235, -0.014922690577805042, 0.03647768869996071, -0.005361114628612995, -0.0015699913492426276, 0.21024413406848907, 0.006577037740498781, -0.0002955608069896698, 0.05007391795516014, 0.012014147825539112, -0.017838142812252045, 0.0131195317953825, 0.007710056845098734, 0.007267903070896864, 0.023406516760587692, 0.00829729251563549, -0.002250493736937642, -0.009775743819773197, -0.0011131566716358066, 0.0151161327958107, -0.012981358915567398, -0.025023141875863075, -0.02578309364616871, 0.0006442319136112928, 0.01471543125808239, 0.002269492484629154, 0.005806722678244114, -0.020891766995191574, 0.0024439359549432993, 0.03144818916916847, 0.025285670533776283, -0.0078067779541015625, 0.022577477619051933, 0.014079835265874863, 0.019482402130961418, -0.02358614094555378, -0.010639325715601444, 0.021320102736353874, -0.0030536246486008167, -0.02219059318304062, -0.002984538208693266, 0.009527032263576984, -0.010694595053792, 0.01518521923571825, 0.0342116504907608, 0.0005116721149533987, 0.0013376879505813122, 0.007482071407139301, -0.014135103672742844, 0.020601604133844376, -0.010542604140937328, 0.006729028187692165, -0.015129949897527695, 0.008711811155080795, 0.04568001255393028, -0.0005436246283352375, -0.0012444211170077324, 0.004922415129840374, 0.004200460854917765, -0.010141902603209019, -0.014142013154923916, -0.00015058704593684524, -0.004538984969258308, -0.02592126652598381, 0.02755170874297619, -0.010335344821214676, 0.0035026869736611843, -0.01257374882698059, 0.019841652363538742, -0.03042570874094963, 0.01143382117152214, -0.022024786099791527, 0.014729248359799385, -0.0009853466181084514, 0.00737153273075819, -0.010749864391982555, -0.010701503604650497, -0.029762476682662964, -0.00252338545396924, 0.015240488573908806, -0.012221407145261765, -0.004366268869489431, 0.04178353399038315, 0.04186643660068512, 0.009050335735082626, 0.006632307078689337, 0.0053783864714205265, -0.01276028249412775, 0.0007759280852042139, 0.011986512690782547, -0.02586599625647068, 0.044215381145477295, -0.020311439409852028, -0.004252275917679071, -0.009692840278148651, -0.008172936737537384, 0.001590717351064086, -0.0126911960542202, 0.022508392110466957, -0.01423182524740696, -0.00818675383925438, 0.011855248361825943, 0.03213905543088913, -0.007924225181341171, -0.026045622304081917, -0.035123590379953384, 0.04087159037590027, 0.01246321015059948, 0.026087073609232903, -0.017492709681391716, 0.0028031859546899796, -0.019910737872123718, 0.02364141121506691, -0.008048580959439278, 0.002711646258831024, -0.031033668667078018, -0.02393157407641411, 0.017699969932436943, -0.0017401169752702117, 0.01702292077243328, 0.01568264327943325, 0.020366709679365158, 0.012656652368605137, -0.014577257446944714, 0.0008648770162835717, 0.015986623242497444, -0.011233469471335411, 0.006649578455835581, -0.001529403030872345, -0.028767630457878113, -0.021513545885682106, -0.023019632324576378, 0.010715320706367493, -0.012967541813850403, -0.029955919831991196, 0.006528676953166723, -0.008269657380878925, 0.012518479488790035, -0.02098848856985569, -0.004822239745408297, -0.004193552304059267, 0.011150565929710865, -0.011654897592961788, -0.0037168553099036217, -0.002561383182182908, 0.0010095268953591585, 0.011005484499037266, 0.0322219580411911, -0.01597280614078045, 0.014853604137897491, -0.004632251802831888, 0.013292248360812664, 0.019233690574765205, 0.001082931412383914, -0.01816975697875023, 0.018446102738380432, 0.02755170874297619, -0.0010786134516820312, 0.010086633265018463, 0.029154514893889427, -0.015406296588480473, -0.028049131855368614, -0.030176997184753418, 0.018031584098935127, -0.005848174914717674, -0.034349821507930756, -0.01656695082783699, 0.034349821507930756, 0.00735080661252141, -0.0259489007294178, 0.001430954784154892, -0.1770825982093811, 0.021112844347953796, 0.0035855909809470177, -0.0028981799259781837, -0.00010130892042070627, 0.017382171005010605, 0.026708852499723434, 0.003044988727197051, -0.0328022837638855, -0.01246321015059948, 0.006628852803260088, 0.005823994521051645, -0.010114268399775028, -0.02010418102145195, 0.0017962497659027576, -0.009354316629469395, -0.022107690572738647, 0.02937559224665165, 0.046785399317741394, 0.0024594804272055626, 0.02669503539800644, -0.007067551836371422, 0.0049604130908846855, -0.029209785163402557, 0.0066599417477846146, 0.01028007548302412, -0.00867035984992981, 0.04346924647688866, 0.006953559350222349, -0.024884968996047974, -0.01659458503127098, -0.00987937394529581, 0.028353111818432808, 0.023392699658870697, 0.0034370548091828823, 0.007599518168717623, 0.019012613222002983, 0.0085529126226902, -0.014439084567129612, 0.006431955844163895, 0.0259489007294178, 0.010425157845020294, 0.008580546826124191, -0.005119312088936567, 0.022038603201508522, 0.025423843413591385, 0.01230431068688631, -0.01187597494572401, 0.004545893520116806, 0.004967321641743183, 0.0285189189016819, -0.01927514187991619, -0.0058447206392884254, -0.018667180091142654, 0.0015138585586100817, -0.010183354839682579, -0.0023143987637013197, 0.01839083433151245, 0.0036132256500422955, -0.019288958981633186, -0.010190263390541077, -0.016207700595259666, -0.007647878956049681, -0.0055752829648554325, -0.005039862357079983, -0.031752169132232666, -0.024967871606349945, 0.013216253370046616, 0.002424937207251787, 0.012608291581273079, -0.00037695339415222406, -0.0026442869566380978, -0.004355905577540398, 0.01242175791412592, 0.03388003632426262, 0.012159229256212711, -0.03534466773271561, -0.007682422176003456, 0.023807218298316002, 0.0033403337001800537, 0.006276511121541262, 0.007634061388671398, -0.011281830258667469, -0.0007232496282085776, -0.03244303539395332, -0.009533940814435482, 0.014383815228939056, 0.005513105075806379, -0.002302308566868305, 0.019288958981633186, 0.009457945823669434, -0.018805352970957756, 0.015613555908203125, -0.019551487639546394, -0.007910408079624176, 0.007848230190575123, 0.027510255575180054, -0.0023454877082258463, 0.003958658315241337, -0.036007899791002274, 0.003214250784367323, 0.007965676486492157, -0.031641632318496704, -0.004404266364872456, 0.023890122771263123, 0.012566840276122093, 0.012173046357929707, -0.000833356287330389, 0.023945391178131104, -0.010957123711705208, -0.021320102736353874, 0.020380526781082153, 0.0008592637022957206, 0.008062398061156273, -0.016290603205561638, 0.047006476670503616, 0.0191093347966671, -0.007026100065559149, -0.0015466746408492327, -0.001925787073560059, 0.039351686835289, -0.025396209210157394, -0.0232407096773386, 0.005236758850514889, -0.003931023646146059, -0.011482181027531624, -0.11247286945581436, -0.01249084435403347, 0.04026363044977188, 0.00755806639790535, 0.008096941746771336, 0.02127865143120289, -0.012995176017284393, 0.009955368936061859, 2.6514655473874882e-05, 0.009948460385203362, -0.02857418917119503, -0.006874109618365765, -0.004877509083598852, -0.002264311071485281, 0.006545948795974255, -0.010397522710263729, 0.012269767932593822, -0.04664722457528114, 0.0007547703571617603, 0.0063697779551148415, 0.008387104608118534, -0.012774099595844746, 0.013071171939373016, 0.005229850299656391, -0.023544689640402794, -0.023572323843836784, -0.019551487639546394, 0.013209344819188118, -0.005364568904042244, 0.013250796124339104, 0.0436350516974926, -0.011675623245537281, 0.012456301599740982, -0.01916460320353508, -0.0037168553099036217, -0.026736486703157425, -3.594658483052626e-05, -0.013941661454737186, 0.017133459448814392, -0.013181709684431553, 0.009133239276707172, 0.016442595049738884, -0.004266093019396067, -0.022135324776172638, -0.0005643505719490349, -0.003675403306260705, -0.011157474480569363, 0.022950544953346252, -0.005561465863138437, -0.022508392110466957, -0.02039434388279915, -0.024028295651078224, -0.0052229417487978935, -0.043358705937862396, 0.023503238335251808, 0.0013290521455928683, 0.020629238337278366, 0.018556641414761543, -0.023917756974697113, 0.011530541814863682, 0.00028627729625441134, -0.00016656330262776464, -0.015503017231822014, 0.014176555909216404, 0.013368243351578712, 0.003595953807234764, -0.016097161918878555, 0.029237419366836548, 0.011475272476673126, -0.00825584027916193, -0.009430311620235443, 0.017630882561206818, -0.021168112754821777, 0.007447528187185526, -0.028712362051010132, 0.008981249295175076, -0.0006230741273611784, -0.012477027252316475, -0.0009240323561243713, 0.009858648292720318, -0.017133459448814392, 0.0056650955229997635, -0.004815331194549799, -0.01016953680664301, 0.009962277486920357, -0.016649853438138962, 0.008387104608118534, 0.004967321641743183, 0.011737801134586334, -0.04007018730044365, 0.005841266363859177, 0.01591753587126732, 0.027648430317640305, 0.0026373784057796, -0.005136583466082811, 0.009506306611001492, -0.012663560919463634, -0.013755127787590027, 0.004822239745408297, 0.0023973025381565094, -0.015889901667833328, -0.0003229795256629586, -0.04628797620534897, 0.008732537738978863, 0.015793180093169212, 0.020808862522244453, 0.00867035984992981, -0.04001491889357567, -0.021389190107584, -0.0018204300431534648, -0.009540850296616554, -0.015392478555440903, -0.012014147825539112, 0.012380306608974934, -0.015958989039063454, -0.004269547760486603, -0.014853604137897491, -0.02932032383978367, 0.016788026317954063, 0.0012021056609228253, 0.03189034387469292, 0.0020881404634565115, -0.00936813373118639, 0.0059276241809129715, 0.01363077200949192, 0.025617284700274467, 0.008753263391554356, 0.0236690454185009, -0.019468585029244423, 0.03379712998867035, -0.0014879511436447501, -0.018211210146546364, 0.022466938942670822, 5.2624505769927055e-05, 0.004815331194549799, -0.013444238342344761, 0.006611580960452557, -0.03667113184928894, -0.019579121842980385, 0.0175341609865427, 0.020173266530036926, 0.001392957172356546, -0.013402787037193775, -0.01728544943034649, 0.026556862518191338, -0.010349161922931671, -0.024332275614142418, 0.0016606674762442708, -0.027220092713832855, -0.0219556987285614, 0.016387324780225754, 0.03534466773271561, 0.04100976511836052, -0.019040247425436974, -0.033410247415304184, -0.03926878422498703, -0.004231549799442291, -0.029016342014074326, -0.00965138804167509, 0.024373728781938553, -0.003855028422549367, -0.004576982464641333, 0.050377897918224335, 0.005205669905990362, 0.013140258379280567, -0.01514376699924469, 0.026100890710949898, -0.00848382618278265, -0.05640224367380142, -0.0002081231796182692, 0.006642669904977083, -0.039628032594919205, -0.008780897594988346, -0.004010472912341356, 0.021029939875006676, 0.010888037271797657, 0.01962057501077652, -0.0008450146415270865, -0.014812151901423931, -0.024788247421383858, -0.010957123711705208, 0.025188948959112167, 0.023627594113349915, -0.007461345288902521, -0.012173046357929707, 0.011654897592961788, 0.020408160984516144, 0.008311109617352486, -0.0035234130918979645, 0.020712140947580338, 0.02201096899807453, 0.0029154515359550714, -0.0253823921084404, 0.005195307079702616, 0.0013920936034992337, -0.000546215393114835, 0.0020587786566466093, 0.013934752903878689, -0.010818950831890106, 0.01799013279378414, 0.02216295897960663, 0.016870930790901184, -0.0018774265190586448, 0.023088717833161354, -0.01921987347304821, 0.005302391014993191, 0.005095131695270538, 0.015820816159248352, -0.013996930792927742, -0.029900649562478065, 0.015751728788018227, 0.01600044034421444, -0.01841846853494644, -0.010542604140937328, -0.004787696525454521, 0.021596448495984077, -0.010577147826552391, 0.004317908082157373, -0.001181379659101367, -0.008704902604222298, -0.02198333479464054, -0.00016095003229565918, 0.011192018166184425, 0.008338743820786476, -0.002949994755908847, -0.024428997188806534, 0.04673013091087341, -0.012214498594403267, 0.010445883497595787, -0.012836277484893799, 0.009430311620235443, -0.012877728790044785, -0.0027945502661168575, -0.024318458512425423, -0.003266065614297986, -0.02375194989144802, 0.005088223144412041, -0.005309300031512976, -0.00016915405285544693, 0.030895495787262917, -0.006991556845605373, 0.09047572314739227, 0.034487996250391006, -0.005295482464134693, 0.015281940810382366, 0.004887871909886599, 0.0070226457901299, 0.012394123710691929, 0.005785997025668621, -0.011067662388086319, -0.02355850674211979, 0.028878169134259224, -0.005298936739563942, -0.019330410286784172, -0.006708302069455385, -0.02187279611825943, 0.005692730192095041, -0.004542439244687557, 0.014867421239614487, 0.0006597763858735561, 0.0025786547921597958, 0.009430311620235443, -0.011399277485907078, 0.006186698563396931, -0.003595953807234764, -0.014521989040076733, -0.004058833699673414, 0.013029719702899456, 0.030729688704013824, -0.013520234264433384, -0.01876390166580677, 0.012774099595844746, -0.015351027250289917, -0.026639766991138458, -0.005872355308383703, -0.017810506746172905, 0.014604892581701279, -0.026059439405798912, -0.018183574080467224, 0.008090032264590263, 0.009934643283486366, 0.005437110085040331, 0.027081919834017754, -0.022508392110466957, -0.007924225181341171, 0.017547978088259697, 8.948864706326276e-05, -0.00436972314491868, -0.025175131857395172, -0.008387104608118534], "0335b885-e042-4a73-95ba-f4c87d2f57f1": [-0.01521765161305666, 0.001442549517378211, 0.002268213778734207, -0.015148918144404888, 0.0206613652408123, 0.011361688375473022, -0.011595383286476135, -0.0192454494535923, -0.005285625346004963, -0.028785694390535355, -0.001528466702438891, 0.011182980611920357, 0.009244688786566257, -0.011588510125875473, -0.007347637787461281, 0.026036344468593597, 0.019520385190844536, 0.005265004932880402, -0.003000228200107813, 0.001781922415830195, -0.01510767824947834, -0.013066285289824009, -0.017568346112966537, 7.727176853222772e-05, -0.03213990107178688, 0.0034263774286955595, 0.020551390945911407, -0.010509390383958817, -0.0137123828753829, 0.009017867967486382, 0.017238423228263855, -0.014028557576239109, -0.03043530322611332, -0.004233998712152243, -0.004038107581436634, 0.009822052903473377, 0.007519471924751997, 0.004773558583110571, 0.02251717634499073, -0.00671872403472662, 0.0041755749844014645, 0.024400480091571808, -0.00109286664519459, -0.009581484831869602, -0.006935235112905502, 0.03640139475464821, 0.0006198924966156483, -0.008076215162873268, -0.017554599791765213, 0.0075469654984772205, -0.009822052903473377, 0.009615851566195488, -0.02444172091782093, -0.006564072798937559, -0.007801280356943607, 0.0004278675769455731, 0.011244840919971466, -3.0574435641028685e-06, 0.01667480729520321, 0.00015389916370622814, -0.0013523364905267954, 0.003362798597663641, -0.016729794442653656, -0.010131354443728924, -0.029225589707493782, -0.02360316924750805, -0.01657857932150364, -0.0070452094078063965, -0.007897507399320602, 0.0053543588146567345, 0.032662276178598404, 0.026723681017756462, 0.0008724890067242086, -0.013320600613951683, 0.003921260125935078, -0.01327935978770256, -0.02851075865328312, -0.03150755167007446, 0.005773634649813175, -0.007828773930668831, 0.022407202050089836, -0.01671604812145233, -0.012805097736418247, 0.008928514085710049, 0.017857028171420097, 0.034751784056425095, 0.003656635293737054, 0.02495034970343113, -0.014186645857989788, -0.02485412359237671, 0.02078508585691452, 0.013451194390654564, 0.020922552794218063, 0.032662276178598404, 0.012846337631344795, 0.010722464881837368, -0.0030655250884592533, 0.007780660409480333, -0.01799449510872364, -0.00797311495989561, -0.009444016963243484, 0.00321502098813653, -0.005649914033710957, -0.02052389644086361, 0.0060554430820047855, -0.025280272588133812, 0.014241633005440235, -0.0074919783510267735, -0.006522832904011011, 0.008172442205250263, -0.01770581305027008, 0.02338322065770626, 0.010825565084815025, -0.0028232387267053127, -0.020867565646767616, 0.010701844468712807, 0.026613706722855568, -0.026434998959302902, -0.00775316683575511, -0.03197494149208069, 0.0023369474802166224, 0.017210930585861206, 0.05240260809659958, -0.009162208996713161, 0.009602104313671589, 0.009870165959000587, 0.005832058377563953, -0.023561928421258926, 0.01549258641898632, -0.004484876990318298, 0.026723681017756462, 0.011808457784354687, 0.022503430023789406, 0.012970058247447014, -0.03290971741080284, 0.011533522978425026, -0.016344884410500526, 0.01936917006969452, -0.0010267103789374232, -0.02090880647301674, 0.0038284696638584137, 0.02511531114578247, 0.021238727495074272, -0.012763856910169125, 0.01580876298248768, 0.06620434671640396, 0.0030311583541333675, 0.01425537932664156, 0.004904152825474739, -0.011533522978425026, -0.0027648149989545345, -0.011677864007651806, -0.03153504431247711, 0.006615623366087675, 0.0028472954872995615, 0.002845577197149396, -0.0037356792017817497, 0.039975546300411224, -0.015465093776583672, 0.010523136705160141, 0.0024091177619993687, 0.04104779288172722, -0.00809683557599783, -0.0091415885835886, 0.0043233525939285755, 0.035686563700437546, 0.0101176081225276, -0.02662745490670204, -0.02780967392027378, -0.007959367707371712, 0.008083089254796505, 0.03381700441241264, -0.011423548683524132, 0.029418043792247772, 0.004577667452394962, 0.020152734592556953, -0.00790438149124384, -0.0004661007260438055, -0.012921944260597229, -0.02591262385249138, 0.02966548502445221, -0.013059412129223347, -0.003928133752197027, 0.01502519752830267, -0.019492890685796738, -0.005557123571634293, 0.022792110219597816, 0.011451042257249355, 0.002996791386976838, 0.005034747067838907, 0.008522984571754932, 0.002904000924900174, -0.013506181538105011, -0.02095004729926586, -0.6356496810913086, 0.009382156655192375, 0.023245753720402718, -0.0120421526953578, 0.016138684004545212, 0.006842444650828838, 0.003972810693085194, 0.0030913003720343113, -0.00395219074562192, 0.03200243413448334, 0.004550174344331026, -0.0037734827492386103, 0.001926263328641653, -0.008351149968802929, -0.020895060151815414, -0.018723072484135628, 0.0018678396008908749, -0.009114095009863377, -0.0178295336663723, 0.004292422439903021, -0.024936603382229805, 0.014709021896123886, 0.009389029815793037, -0.002960706129670143, 0.0020860692020505667, -0.013183132745325565, 0.005969526246190071, -0.0007002250640653074, -0.007808153983205557, 0.04022299125790596, -0.04124024882912636, 0.010880552232265472, 0.02011149562895298, -0.007505725137889385, 0.04291735216975212, -0.015093930996954441, -0.011856571771204472, 0.026641201227903366, 0.014983956702053547, 0.030655251815915108, -0.02460668236017227, -0.005972962826490402, 0.02754848636686802, 0.026613706722855568, -0.01696348935365677, -0.006285701412707567, 0.022104773670434952, 0.013616155833005905, -0.006203220691531897, -0.017114702612161636, -0.0029297759756445885, -0.007388878148049116, -0.005845805164426565, 0.0014202110469341278, 0.004917899612337351, -0.0066259331069886684, 0.019644105806946754, -0.004460820462554693, 0.006739343982189894, -0.010062620975077152, 0.012770730070769787, 0.008632958866655827, -0.013430573977530003, -0.03312966600060463, -0.033569563180208206, 0.02321826107800007, -0.03279974311590195, -0.008880400098860264, -0.00019009177049156278, -0.009004120714962482, 0.018998008221387863, -0.001228615758009255, 0.0024091177619993687, -0.0012836027890443802, 0.005344049073755741, 0.022104773670434952, 0.04979072883725166, -0.006134487222880125, -0.005454022902995348, 0.015671294182538986, -0.0036428887397050858, 0.0093959029763937, -0.016729794442653656, -0.0250465776771307, 0.036868780851364136, 0.010234454646706581, -0.008784173056483269, -0.012200240045785904, 0.010571250692009926, -0.010523136705160141, -0.009444016963243484, 0.017293410375714302, -0.015258892439305782, -0.02412554621696472, 0.005423092748969793, 0.06961353868246078, 0.0039899940602481365, 0.018544364720582962, 0.005567433778196573, -0.01780204102396965, -0.036511365324258804, -0.025486472994089127, 0.014007938094437122, 0.00024142728943843395, 0.02088131196796894, 0.018805554136633873, -0.012729490175843239, -0.008000608533620834, 0.01725217141211033, -0.007258283905684948, -0.0035947749856859446, -0.014021684415638447, -0.015258892439305782, -0.013327473774552345, 0.013499308377504349, -0.030930187553167343, 0.015561320818960667, 0.013973571360111237, 0.0038456532638520002, -0.00774629320949316, -0.023905597627162933, -0.026050090789794922, 0.021252475678920746, 0.005220327991992235, 0.00920344889163971, 0.00866045244038105, 0.0057942550629377365, -0.006007329560816288, -0.00968458503484726, -0.011540396139025688, -0.016207417473196983, 0.004450510255992413, -0.0005739267799071968, -0.0005197989521548152, 0.0548495315015316, 0.012035279534757137, 0.016179924830794334, -0.007945621386170387, 0.015836255624890327, -0.054189685732126236, -0.001067091478034854, 0.009663964621722698, 0.01792576164007187, -0.024840377271175385, 0.012275847606360912, -0.019602864980697632, 0.019905293360352516, 0.00408965814858675, 0.01645485870540142, -0.0017973874928429723, -0.018076974898576736, -0.006244461052119732, 0.005309681873768568, 0.004996943287551403, -0.015561320818960667, -0.0011736287269741297, -0.0009665683610364795, -0.03189245983958244, 0.00395219074562192, -0.01792576164007187, -0.01481899619102478, -0.0022544669918715954, 0.0026788979303091764, -0.008736059069633484, -0.013492435216903687, -0.02110126055777073, -0.02870321273803711, 0.016042456030845642, -0.0091415885835886, -0.011182980611920357, -0.014447834342718124, -0.01674354076385498, 0.00035999302053824067, 0.00663967989385128, 0.02206353284418583, 0.03060026466846466, -0.021541155874729156, 0.0009047079365700483, -0.01101802010089159, -0.006677483674138784, 0.00859859213232994, 0.027727194130420685, -0.007595079019665718, -0.017238423228263855, 0.05075300112366676, 0.006890558172017336, 0.024455467239022255, 0.016798527911305428, -0.04451197385787964, -0.0029005641117691994, -0.004148081876337528, 0.01744462549686432, -0.024290505796670914, -0.00943027064204216, -0.012365201488137245, -0.017650825902819633, -0.0034590258728712797, -0.0010808381484821439, 0.016949743032455444, 0.030902693048119545, 0.014035431668162346, 0.018970513716340065, -0.019451649859547615, -0.010213835164904594, 0.006986785680055618, -0.02754848636686802, 0.014557807706296444, -0.02244844287633896, 0.011959671974182129, -0.0038937667850404978, -0.01005574781447649, -0.007574459072202444, -0.0047082616947591305, -0.013444321230053902, 0.0044470736756920815, 0.027053603902459145, 0.00435428274795413, 0.011884065344929695, -0.0023163272999227047, -0.022008545696735382, 0.015822509303689003, 0.01840689778327942, 0.013348094187676907, 0.0070452094078063965, 0.004512370564043522, 0.017815787345170975, 0.00025044858921319246, 0.022173507139086723, 0.006739343982189894, -0.032029926776885986, -0.006852754857391119, 0.016729794442653656, 0.0035019845236092806, 0.004931646399199963, 0.0472063384950161, 0.005144720897078514, 0.020991286262869835, 0.001991560449823737, 0.044979363679885864, -0.0029057192150503397, 0.014310366474092007, 0.005804565269500017, 0.022269735112786293, -0.037446144968271255, 0.01876431331038475, -0.00017473407206125557, 0.015836255624890327, -0.0027081097941845655, -0.024812882766127586, 0.006010766141116619, -0.002209790050983429, 0.0023833427112549543, -0.01914922147989273, -0.006216967478394508, 0.02196730673313141, -0.017870774492621422, 0.017815787345170975, 0.002123872749507427, 0.016757287085056305, 0.02107376791536808, -0.005402472801506519, -0.0032889097929000854, -0.002637657569721341, -0.010316935367882252, 0.01703222282230854, -0.02537650056183338, -0.004392086528241634, -0.018970513716340065, -0.015162664465606213, -0.0036635086871683598, 0.02049640379846096, -0.02559644728899002, 0.003986557479947805, -0.00505193043500185, 0.010660604573786259, -0.004233998712152243, 0.0028369855135679245, -0.016826022416353226, -0.002684052800759673, 0.016537340357899666, -0.025513967499136925, -0.025995103642344475, 0.025843888521194458, 0.01327935978770256, 0.0009562582708895206, 0.0011882346589118242, -0.0023008622229099274, -0.008337403647601604, 0.0065125226974487305, 0.0008200795273296535, 0.01169161032885313, -0.0034555892925709486, -0.0035913384053856134, -0.0009313423070125282, 0.01667480729520321, 0.027411019429564476, 0.04852602630853653, -0.01127233449369669, -0.034201912581920624, 0.013925457373261452, 0.04181761294603348, 0.0077119264751672745, -0.01568504050374031, -0.01975408010184765, 0.021472422406077385, 0.0006972179398871958, -0.022654643282294273, -0.017980748787522316, -0.009787686169147491, -0.022462189197540283, -0.0030071015935391188, -0.009499004110693932, -0.01927294209599495, -0.012763856910169125, -0.0023197641130536795, -0.012866958044469357, -0.0101038608700037, -0.004656711593270302, 0.010880552232265472, 0.012516415677964687, 0.0026187559124082327, -0.0050416202284395695, 0.0045433007180690765, 0.027850914746522903, 0.05622420459985733, 0.009258436039090157, -0.003938443958759308, 0.003333586733788252, -0.01609744317829609, 5.654424603562802e-05, -0.03777606785297394, -0.02328699454665184, 0.030187861993908882, 0.025225285440683365, -0.02716357819736004, -0.0013978725764900446, 0.015863748267292976, 0.0018369094468653202, 0.014516567811369896, -0.008811666630208492, -0.013959824107587337, -0.022778363898396492, -0.006529706064611673, 0.01741713099181652, 0.009595231153070927, 0.003715059021487832, 0.03024284914135933, 0.022847097367048264, 0.033789511770009995, 0.024166785180568695, 0.03062775731086731, 0.020771339535713196, 0.0008909612079150975, -0.018544364720582962, -0.010048873722553253, 0.004340536426752806, 0.0027716883923858404, 0.019767826423048973, -0.039590638130903244, 0.03172749653458595, 0.0025568953715264797, -0.008069342002272606, -0.02242094837129116, -0.002123872749507427, -0.013286233879625797, 0.018640592694282532, -0.0017595839453861117, -0.012908197939395905, 0.020991286262869835, -0.017788294702768326, -0.008447377942502499, 0.027919648215174675, 0.0036910022608935833, -0.012598896399140358, 0.011334194801747799, 0.010316935367882252, -0.010303189046680927, 0.011004272848367691, -0.0028593239840120077, -0.0055021364241838455, 0.0074713584035634995, -0.02155490405857563, -0.021898571401834488, -0.030655251815915108, -0.025830142199993134, -0.00477012200281024, -0.011134867556393147, -0.029692979529500008, -0.013726129196584225, -0.05462958291172981, -0.021609891206026077, -0.008839160203933716, -0.0182831771671772, 0.01169161032885313, -0.02427675947546959, -0.027768434956669807, -0.018516872078180313, 0.023108286783099174, 0.012647009454667568, 0.015135171823203564, 0.0012337707448750734, -0.002785435179248452, 0.012193366885185242, 0.00981517881155014, -0.004955703392624855, -0.008509238250553608, -0.008138075470924377, -0.017375892028212547, 0.00976706575602293, -0.012647009454667568, -0.005835495423525572, 0.0035913384053856134, 0.003333586733788252, 0.02292957901954651, -0.0074713584035634995, -0.028043368831276894, 0.01982281357049942, 0.004646401386708021, 0.027218563482165337, 0.009169082157313824, 0.006852754857391119, 0.0074919783510267735, 0.038243457674980164, -0.043604690581560135, 0.03348708152770996, -0.012743236497044563, 0.000857883074786514, -0.02062012441456318, 0.011038639582693577, 0.020056508481502533, -0.011423548683524132, -0.005199708044528961, -0.01233083475381136, -0.02774094045162201, 0.009547117166221142, 0.0041755749844014645, -0.012090266682207584, -0.02062012441456318, -0.006526269484311342, -0.006766837555915117, 0.010908045805990696, 0.030517784878611565, 0.007650066167116165, -0.020606378093361855, -0.0003256261406932026, -0.016441112384200096, 0.018269430845975876, 0.020482657477259636, -0.013671142980456352, 0.01183595135807991, -0.0005219468730501831, -0.011265461333096027, -0.04236748069524765, 0.0027819983661174774, 0.02389185130596161, 0.00045407231664285064, -0.011650370433926582, -0.013444321230053902, -0.01674354076385498, -0.0245379488915205, -0.014571554958820343, 0.0120421526953578, 0.0018781496910378337, 0.013891090638935566, -0.03684128820896149, -0.0006899149739183486, 0.011932178400456905, -0.013801736757159233, -0.005014127120375633, -0.03257979825139046, -0.03343209624290466, -0.011506029404699802, 0.015932483598589897, 0.029912928119301796, -0.014599048532545567, -0.00968458503484726, -0.026091331616044044, -0.01719718426465988, -0.012200240045785904, -0.006722160615026951, 0.01135481521487236, 0.015355119481682777, 0.04547424614429474, 0.04338474199175835, 0.027369778603315353, 0.03043530322611332, 0.027685953304171562, 0.013251866213977337, -0.015520079992711544, 0.010859931819140911, -0.0026136008091270924, -0.009505877271294594, -0.007918127812445164, -0.024304253980517387, -0.005086297169327736, -0.0012990678660571575, -0.007368257734924555, 0.0041549550369381905, 0.0019193899352103472, -0.015190158039331436, 0.007024588994681835, -0.010756831616163254, -0.02254466898739338, -0.045144326984882355, 0.007113942876458168, 0.027919648215174675, -0.0006353575736284256, 0.010612490586936474, -0.023355728015303612, 0.0003047912032343447, 0.013561168685555458, -0.0015370585024356842, 0.039370689541101456, 0.00970520544797182, 0.02001526765525341, -0.0030603702180087566, -0.00034946814412251115, 0.018365656957030296, 0.00497975992038846, -0.013684889301657677, -0.022668389603495598, -0.03923322260379791, -0.018654339015483856, 0.0035260412842035294, 0.018998008221387863, 0.021513663232326508, -0.003345615230500698, 0.009904532693326473, 0.001702878624200821, 0.011526649817824364, -0.031122641637921333, -0.018585605546832085, 0.017018476501107216, -0.022022292017936707, -0.014640288427472115, -0.02261340245604515, -0.003704749047756195, 0.01033068262040615, -0.012571402825415134, 0.0027115463744848967, -0.0027115463744848967, 0.016990981996059418, -0.03587901592254639, -0.019396664574742317, -0.005825185216963291, -0.0057942550629377365, 0.027507245540618896, 0.01809072308242321, 0.013052538968622684, 0.008859779685735703, 0.0168672613799572, -0.02511531114578247, -0.02867572009563446, 0.0003398024709895253, 1.796206197468564e-05, 0.008186189457774162, 0.04605161026120186, -0.0221597608178854, -0.020317696034908295, -0.004605161026120186, -0.007382004521787167, 0.0020534207578748465, -0.0346418097615242, 0.025830142199993134, 0.010749958455562592, -0.009354663081467152, -0.0356040820479393, -0.012715743854641914, -0.012825717218220234, 0.0010181186953559518, -0.01510767824947834, 0.008681072853505611, 0.003862836631014943, 0.011182980611920357, -0.003907513804733753, 0.02812585048377514, -0.004233998712152243, 0.017499612644314766, 0.004838855937123299, 0.023685649037361145, 0.006997095420956612, -0.002123872749507427, 0.0008222274482250214, -0.015836255624890327, 0.004684205166995525, 0.006333814933896065, -0.03626392409205437, -0.009677711874246597, 0.02463417500257492, 0.022434694692492485, -0.0028009002562612295, -0.0028765073511749506, -0.026063837110996246, 0.029885433614253998, -0.0010181186953559518, -0.007382004521787167, 0.002166831400245428, -0.017210930585861206, 0.01334122009575367, -0.00828928966075182, -0.025940116494894028, -0.0013686607126146555, -0.01792576164007187, 0.003711622441187501, 0.003570718225091696, -0.003629141952842474, -0.01914922147989273, 0.007382004521787167, 0.0008866653661243618, -0.013939203694462776, -0.023946838453412056, -0.011114247143268585, 0.0054815164767205715, -0.023754382506012917, 0.003880019998177886, -0.0144203407689929, -0.013052538968622684, 0.003385137068107724, 0.006433479022234678, -0.0037562993820756674, 0.008103708736598492, 0.020730098709464073, -0.019492890685796738, 0.020125241950154305, 0.006048569921404123, 0.02004276029765606, -0.03816097602248192, 0.014516567811369896, 0.0013377305585891008, 0.004381776321679354, 0.008309910073876381, -0.0013944358797743917, -0.03970061242580414, -0.01580876298248768, 0.013203753158450127, 0.02052389644086361, 0.014461580663919449, 0.00933404266834259, 0.007925000973045826, 0.024551695212721825, -0.0016298489645123482, -0.030187861993908882, -0.01892927475273609, 0.008344276808202267, -0.011959671974182129, 0.011987165547907352, 0.007388878148049116, 0.00024722670787014067, 0.016372378915548325, 0.0009553991258144379, 0.004003740847110748, -0.0013411672553047538, -0.022627150639891624, -0.030352823436260223, -0.022750871255993843, -0.0005387007258832455, -0.000834685459267348, 0.022723376750946045, -0.017073463648557663, -0.03653886169195175, -0.02809835597872734, 0.031095147132873535, 0.010880552232265472, 0.01002138014882803, 0.01323124673217535, -0.011760344728827477, -0.024812882766127586, 0.009608978405594826, -0.003168625757098198, -0.04126774147152901, -0.02662745490670204, -0.020771339535713196, -0.031287603080272675, -0.012337707914412022, -0.003484800923615694, 0.04574918374419212, 0.008591718971729279, -0.01189781166613102, -0.03846340626478195, -0.01184969861060381, -0.017747053876519203, -0.00022445865033660084, -0.014296619221568108, 0.01521765161305666, 0.017018476501107216, 0.027754686772823334, -0.0084336306899786, 0.012578275986015797, -0.004278675653040409, 0.012275847606360912, -0.050505559891462326, -0.018640592694282532, -0.0013523364905267954, -0.015561320818960667, 0.027246057987213135, -0.029335564002394676, -0.04135022312402725, -0.007835647091269493, -0.0005296794697642326, -0.027892155572772026, 0.0008909612079150975, 0.015795014798641205, 0.011595383286476135, -0.0001227541797561571, -0.021183740347623825, -0.0062925745733082294, 0.020633870735764503, 0.0021616762969642878, 0.018228190019726753, -0.03257979825139046, 0.0027115463744848967, 0.014076671563088894, -0.0024555132258683443, -0.01329310704022646, 0.0019314183155074716, 0.018434390425682068, -0.025170298293232918, -0.011430422775447369, -0.01840689778327942, -0.006522832904011011, -0.021238727495074272, -0.006471282336860895, -0.00040703266859054565, 0.0018987697549164295, 0.00042357173515483737, 0.034174419939517975, -0.011409802362322807, -0.0009596949676051736, 0.010571250692009926, 0.020578883588314056, 0.0069936588406562805, -0.0030913003720343113, 0.023328233510255814, -0.03005039505660534, -0.01279822364449501, -0.005828621797263622, 0.030270343646407127, 0.008378643542528152, -0.005203144624829292, -0.02886817418038845, -0.005130974110215902, -0.037638600915670395, -0.01696348935365677, 0.0062960111536085606, -0.012131506577134132, 0.012880704365670681, -0.0019503200892359018, 0.006481592543423176, -0.004739191848784685, -0.008846033364534378, 0.005079424008727074, -0.019575372338294983, -0.021115006878972054, 0.009437143802642822, 0.016812274232506752, -0.036098964512348175, -0.003972810693085194, 0.03675881028175354, -0.008880400098860264, -0.00042937113903462887, 0.2119198888540268, -0.0043955231085419655, 0.010234454646706581, 0.0356040820479393, 0.002831830410286784, -0.013080032542347908, 0.012372074648737907, -0.003306093392893672, 0.015850001946091652, 0.0192454494535923, 0.009292802773416042, 0.012592022307217121, -0.027754686772823334, -0.002957269549369812, 0.008364897221326828, -0.014997703954577446, -0.03582403063774109, -0.010756831616163254, -0.0182831771671772, 0.016111191362142563, 0.018324417993426323, -0.006543452851474285, -0.029775459319353104, -0.0023008622229099274, 0.030737731605768204, 0.02710859104990959, -0.00936841033399105, 0.007148309610784054, 0.013038791716098785, 0.0003668663848657161, -0.01892927475273609, -0.012633263133466244, 0.018104469403624535, 9.611985296942294e-05, -0.021568650379776955, -0.001007808605208993, 0.015630055218935013, -0.017788294702768326, 0.010523136705160141, 0.027273550629615784, -0.005615547299385071, -0.01850312575697899, -0.00283870380371809, -0.008784173056483269, 0.02552771382033825, -0.0013660832773894072, 0.01334122009575367, 0.0020877874922007322, 0.010413162410259247, 0.029885433614253998, -0.013052538968622684, -0.013946077786386013, 0.018558112904429436, 0.00934778992086649, -0.017527105286717415, -0.01770581305027008, -0.0029985096771270037, 0.0038353430572897196, -0.022283481433987617, 0.03156253695487976, -0.01655108667910099, 0.007375131361186504, -0.013650522567331791, 0.013932330533862114, -0.034944236278533936, 0.004220251925289631, -0.01754085347056389, 0.02165113016963005, 0.006591566372662783, -0.0065846932120621204, -0.005852678790688515, -0.004343973007053137, -0.02405681274831295, -0.008749806322157383, -0.018654339015483856, -0.01433786004781723, 0.008007481694221497, 0.03722619637846947, 0.034586820751428604, 0.025170298293232918, 0.003876583417877555, 0.014434087090194225, -0.015437600202858448, -0.0036841288674622774, -0.001811134279705584, -0.014942716807126999, 0.025472726672887802, -0.014365353621542454, 0.014915223233401775, -0.021334955468773842, -0.011822205036878586, 0.005536503624171019, -0.00920344889163971, 0.002898845821619034, -0.0026943630073219538, -0.01700473017990589, -0.006564072798937559, 0.02829081006348133, -0.002885099034756422, -0.010406289249658585, -0.03332212194800377, 0.0481686107814312, 0.016358632594347, 0.026338772848248482, -0.02283335104584694, -0.005275315139442682, -0.013870470225811005, 0.02225598692893982, -0.008131202310323715, 0.008770426735281944, -0.019479144364595413, -0.03161752596497536, 0.01657857932150364, 0.003493392840027809, 0.01751335896551609, 0.012399568222463131, 0.022434694692492485, 0.0058664255775511265, -0.014805248938500881, -0.003251106245443225, 0.014434087090194225, -0.009485256858170033, -0.0075263455510139465, 0.0050588040612638, -0.029033135622739792, -0.002001870423555374, -0.012021532282233238, 0.008880400098860264, -0.014131658710539341, -0.030380316078662872, 0.013038791716098785, -0.0019520384958013892, 0.018998008221387863, -0.023245753720402718, -0.005584617145359516, 0.001047330442816019, -0.0002238142624264583, -0.007251410279422998, -0.022695884108543396, -0.0010267103789374232, -0.004866349510848522, 0.010633111000061035, 0.013705509714782238, -0.024579187855124474, 0.0007075280300341547, -0.008193062618374825, 0.003050060011446476, 0.02347944863140583, -0.005141284316778183, -0.012708869762718678, 0.002819801913574338, 0.019107982516288757, -0.003385137068107724, 0.001119500957429409, 0.03497173264622688, -0.022585909813642502, -0.025706421583890915, -0.024029318243265152, 0.009251562878489494, -0.0002429308369755745, -0.03216739371418953, -0.01433786004781723, 0.03964562714099884, 0.006663736887276173, -0.0356040820479393, -0.007705053314566612, -0.17606836557388306, 0.015148918144404888, 0.020193975418806076, -0.004247745499014854, 0.0010782607132568955, 0.004722008481621742, 0.013492435216903687, 0.011918432079255581, -0.011389181949198246, -0.006237587425857782, 0.01121047418564558, -0.014681528322398663, -0.02331448718905449, -0.021706117317080498, 0.0008815103210508823, -0.004450510255992413, -0.013382460922002792, 0.02725980430841446, 0.04376965016126633, -5.906806472921744e-05, 0.033184655010700226, -0.00874293316155672, -7.20898879080778e-06, -0.012818844057619572, 0.00610355706885457, 0.034366875886917114, -0.008021228015422821, 0.020867565646767616, -0.005371542647480965, -0.03189245983958244, -0.02398807741701603, -0.018819300457835197, 0.014131658710539341, 0.010928666219115257, 0.014915223233401775, 0.007918127812445164, -0.0014674655394628644, 0.002407399471849203, -0.01847563125193119, 0.013107526116073132, 0.022269735112786293, 0.02386435680091381, 0.010413162410259247, 0.0013059412594884634, 0.016042456030845642, 0.023135779425501823, 0.010839312337338924, 0.0018317543435841799, 0.004814798943698406, 0.0019640668760985136, 0.027562232688069344, -0.01831066980957985, -0.006320068147033453, -0.020606378093361855, -0.0020173355005681515, -0.012983805499970913, 0.0024881616700440645, 0.037088729441165924, 0.006828697863966227, -0.022888338193297386, -0.01722467690706253, -0.014805248938500881, 0.011918432079255581, -0.005997019354254007, -0.001735527184791863, -0.030160369351506233, -0.030957680195569992, 0.00208091433160007, -0.002216663444414735, 0.00954024400562048, -0.0029521144460886717, -0.009189702570438385, -0.005244384985417128, 0.00046266402932815254, 0.02167862467467785, 0.025665180757641792, -0.03541162610054016, -0.008681072853505611, 0.03981058672070503, 0.008069342002272606, 0.01587749645113945, -0.006526269484311342, -0.0015628335531800985, -0.0032528245355933905, -0.03942567855119705, 0.005911102518439293, 0.014695275574922562, 0.012832590378820896, -0.0022441567853093147, 0.007120816502720118, 0.014069798402488232, -0.003550098044797778, 0.022750871255993843, -0.012695123441517353, 0.008880400098860264, 0.016276150941848755, 0.02800212986767292, -0.009244688786566257, 0.017568346112966537, -0.027273550629615784, 0.00416182866320014, 0.012887577526271343, -0.03290971741080284, 0.0009725825511850417, 0.036126457154750824, 0.025252779945731163, 0.015643801540136337, -0.016248658299446106, 0.03145256265997887, -0.0006375054945237935, -0.025967610999941826, 0.02062012441456318, 0.014296619221568108, -0.00012543909542728215, -0.019162969663739204, 0.052072688937187195, 0.010131354443728924, -0.0073063974268734455, 0.0015138607705011964, -0.020152734592556953, 0.0452268049120903, -0.024290505796670914, -0.02033144235610962, 0.006505649071186781, -0.00301569327712059, -0.014392847195267677, -0.11701232939958572, -0.025252779945731163, 0.0231220331043005, 0.0022115083411335945, -0.004993506707251072, 0.0070452094078063965, -0.006942108739167452, 0.01286008395254612, 0.005192834883928299, 0.021224981173872948, -0.03043530322611332, 0.008502365089952946, -0.006161980330944061, 0.0013652241323143244, 0.0098495464771986, 0.003498547710478306, 0.007251410279422998, -0.033047184348106384, -0.014447834342718124, 0.01674354076385498, 0.004429889842867851, -0.014571554958820343, 0.02165113016963005, -0.0010559222428128123, -0.014612794853746891, -0.017912015318870544, -0.025830142199993134, 0.014392847195267677, 0.0009047079365700483, 0.0036016483791172504, 0.029912928119301796, -0.012949437834322453, 0.04025048390030861, -0.01989154703915119, 0.0025242469273507595, -0.029033135622739792, -0.013286233879625797, -0.01818694919347763, 0.03120512142777443, -0.020757591351866722, -0.009485256858170033, 0.014028557576239109, 0.0020877874922007322, -0.011176107451319695, 0.005505573004484177, 0.004213378764688969, -0.0039350069127976894, 0.04102030023932457, 0.003208147594705224, -0.015891242772340775, -0.010770577937364578, -0.02540399320423603, 0.003976247273385525, -0.04374215751886368, 0.02928057685494423, 0.009292802773416042, 0.007182676810771227, 0.02196730673313141, -0.010949285700917244, 0.0006117303855717182, -0.004529553931206465, -0.0033421784173697233, -0.02684740163385868, 0.024510454386472702, 0.022091027349233627, 0.003553534857928753, -0.018255682662129402, 0.01149915624409914, -0.0052615683525800705, -0.008832287043333054, -0.0015619744081050158, 0.01700473017990589, -0.018035735934972763, -0.0015551010146737099, -0.0206613652408123, 0.017389638349413872, -0.004646401386708021, -0.011863444931805134, 0.010880552232265472, 0.009602104313671589, -0.009340916760265827, -0.005924849305301905, 0.0015791578916832805, -0.010151974856853485, 0.017939507961273193, -0.002904000924900174, 0.008887273259460926, 0.009629597887396812, 0.011774091050028801, -0.04654649272561073, 0.0007234226795844734, 0.012887577526271343, 0.021444929763674736, -0.006426605395972729, -0.003721932414919138, 0.003237359458580613, -0.01917671598494053, -0.016014963388442993, 0.015176411718130112, -0.0024761331733316183, -0.012255227193236351, 0.0024915984831750393, -0.049955688416957855, -0.00010642991401255131, 0.002993354806676507, 0.0021221544593572617, 0.006704977247864008, -0.02662745490670204, 0.0013463222421705723, -0.010749958455562592, 0.008529857732355595, -0.006065753288567066, -0.02059263177216053, 0.008358024060726166, -0.030490290373563766, -0.011540396139025688, -0.01850312575697899, -0.041460197418928146, 0.01895676739513874, -0.0036772554740309715, 0.024812882766127586, 0.008165569044649601, -0.0032940648961812258, 0.016014963388442993, 0.017238423228263855, 0.027850914746522903, -0.003859400050714612, 0.032992199063301086, -0.025074072182178497, 0.03310217335820198, -0.011780964210629463, -0.0063681816682219505, 0.009052234701812267, 0.00968458503484726, 0.015121424570679665, 0.0002266065712319687, -0.00485260272398591, -0.033047184348106384, -0.002575797261670232, 0.013602408580482006, 0.016523592174053192, 0.006893994752317667, -0.009602104313671589, -0.004546737298369408, 0.025733916088938713, -0.018833046779036522, -0.015918735414743423, -0.012770730070769787, -0.0269711222499609, -0.01982281357049942, 0.0028232387267053127, 0.013891090638935566, 0.03354207053780556, -0.007519471924751997, -0.04058040678501129, -0.032029926776885986, 0.01101802010089159, -0.01943790353834629, -0.0027785617858171463, 0.0221597608178854, -0.006756527349352837, 0.0042099421843886375, 0.04190009459853172, 0.004646401386708021, 0.013100652024149895, -0.01189781166613102, 0.034944236278533936, -0.015272638760507107, -0.06581943482160568, -0.011629750020802021, 0.021472422406077385, -0.031095147132873535, -0.015190158039331436, -0.01989154703915119, 0.01741713099181652, 0.01323124673217535, 0.018970513716340065, -0.005203144624829292, -0.011457915417850018, -0.029528018087148666, -0.015657547861337662, 0.02585763670504093, 0.0202352162450552, -0.0034865194465965033, -0.016028709709644318, 0.0011323884828016162, 0.020743845030665398, 0.0061276135966181755, -0.011423548683524132, 0.020702604204416275, 0.025940116494894028, 0.013052538968622684, -0.0260088499635458, 0.0053543588146567345, 0.0020207723136991262, 0.010605617426335812, 0.004457383416593075, 0.013980444520711899, -0.018255682662129402, 0.020276455208659172, 0.035906508564949036, 0.026833655312657356, -0.001972658559679985, 0.014846489764750004, -0.026723681017756462, -0.007670686114579439, 0.01623491197824478, 0.01696348935365677, -0.02251717634499073, -0.021115006878972054, 0.02562394179403782, 0.01895676739513874, 0.0012226015096530318, -0.026599960401654243, 0.0019640668760985136, 0.008206809870898724, -0.012200240045785904, -0.007588205859065056, -0.0032923466060310602, -0.014489074237644672, -0.026792414486408234, 0.0005915398360230029, 0.015987470746040344, 0.017650825902819633, 0.01112799346446991, -0.018654339015483856, 0.03246982395648956, -0.0028730707708746195, -0.00015207342221401632, -0.015932483598589897, 0.003794102929532528, -0.02867572009563446, -0.0021530846133828163, -0.00922406930476427, 0.006876811385154724, -0.01391858421266079, 0.0009760192479006946, -0.01170535758137703, -0.002641094382852316, 0.03486175835132599, -0.0004291563527658582, 0.08500990271568298, 0.027094842866063118, -0.020413924008607864, 0.006337251514196396, -0.004385213367640972, 0.01268825028091669, 0.004148081876337528, 0.012289593927562237, -0.016042456030845642, -0.011217347346246243, 0.020647617056965828, 0.0005494403885677457, -0.004536427557468414, -0.0016564832767471671, -0.02078508585691452, 0.009801432490348816, -0.014667782001197338, 0.006763400975614786, -0.008124329149723053, 0.009842672385275364, 0.013430573977530003, -0.005374979227781296, 0.010461276397109032, -0.016509845852851868, -0.022434694692492485, -0.0028799441643059254, 0.019616611301898956, 0.027301045134663582, -0.00235756766051054, -0.018489377573132515, 0.030710238963365555, -0.00949213095009327, -0.03439436852931976, -0.0031428507063537836, -0.016881007701158524, -0.00981517881155014, -0.011217347346246243, -0.020675111562013626, 0.010578123852610588, 0.016564833000302315, 0.00954024400562048, 0.014489074237644672, -0.026311278343200684, -0.009725824929773808, 0.019575372338294983, 0.004900716245174408, -0.01642736606299877, -0.016619820147752762, -0.016331138089299202], "9139abf7-f504-4dbf-8c6e-77c0a8048025": [-0.004487444646656513, -0.005842014215886593, -0.006366475485265255, -0.028953049331903458, 0.015212854370474815, 0.016102008521556854, -0.0006429862114600837, -0.030120063573122025, -0.009627860970795155, -0.03484369069337845, 0.004952860996127129, 0.004490918014198542, 0.003209287067875266, -0.005546787288039923, -0.009850149974226952, 0.011176932603120804, 0.021450819447636604, 0.00178525282535702, 0.00827329233288765, -0.00782871525734663, -0.023229125887155533, -0.009961294010281563, -0.017880314961075783, 0.0040255021303892136, -0.028647402301430702, 0.010190528817474842, 0.02724420838057995, -0.0034107358660548925, -0.01665772870182991, 0.022881800308823586, 0.007766196969896555, -0.006599183660000563, -0.018352676182985306, -0.004866029601544142, -0.027258101850748062, 0.016324296593666077, 0.022131577134132385, 0.005223774816840887, 0.004584695678204298, -0.004424926359206438, 0.0001908119156723842, 0.014434845186769962, 0.0013936433242633939, -0.025729868561029434, -0.015810254961252213, 0.03973403200507164, -0.0028984309174120426, -0.0065366649068892, -0.009287482127547264, -0.00018549349624663591, -0.002731714630499482, 0.006290063727647066, -0.039317239075899124, 0.002980052260681987, 0.002882801229134202, 0.02050609514117241, 0.013080276548862457, 0.0015455982647836208, 0.015504607930779457, -5.426959978649393e-05, 0.005116103682667017, -0.004372827243059874, -0.00767589220777154, -0.02953655645251274, -0.022201042622327805, -0.030231207609176636, -0.016282616183161736, -0.004303362220525742, 0.0029852623119950294, -0.013726301491260529, 0.05723923444747925, 0.03353774547576904, -0.0070923855528235435, -0.014101413078606129, -0.00782871525734663, -0.025188041850924492, -0.028147254139184952, -0.03642749413847923, -0.009384733624756336, 0.009655646979808807, 0.0083983289077878, -0.009891828522086143, -0.012816308997571468, 0.005081371404230595, 0.019714191555976868, 0.027188636362552643, 0.00487644923850894, 0.0065019321627914906, -0.010989377275109291, -0.012746843509376049, 0.002306241076439619, 0.01239257212728262, 0.02186761051416397, 0.021409140899777412, 0.018172066658735275, 0.023632023483514786, 0.007307727355509996, 0.0019276562379673123, 0.005272400099784136, -0.021353568881750107, -0.019491903483867645, -0.0010767088970169425, -0.012239748612046242, -0.022520581260323524, -0.01496278028935194, -0.032759737223386765, 0.017255127429962158, -0.007189636584371328, 0.008092682808637619, 0.010544800199568272, -0.01408752053976059, 0.02903640829026699, 0.015921398997306824, -0.006210179068148136, -0.004136646166443825, -0.020714489743113518, 0.03392675146460533, -0.02525750733911991, -0.0007111488375812769, -0.01733848638832569, -0.00047409924445673823, 0.0009143342613242567, 0.03884487971663475, -0.013281725347042084, 0.00959312915802002, 0.0030599371530115604, 0.00479656457901001, -0.00366428354755044, 0.021242424845695496, -0.006949982140213251, 0.011163040064275265, 0.01758856140077114, 0.011899369768798351, 0.003073830157518387, -0.032620806246995926, 0.003834472969174385, -0.015879718586802483, 0.018838932737708092, 0.003014784771949053, -0.02296515926718712, 0.019741978496313095, 0.03673313930630684, 0.01514338981360197, -0.014851636253297329, -0.0010550010483711958, 0.055377569049596786, 0.001441400614567101, 0.024104386568069458, 0.0001990609016502276, -0.009516716934740543, 0.0016141950618475676, -0.02171478606760502, -0.039817389100790024, -0.0029331634286791086, 0.00879428070038557, -0.0067763193510472775, 0.016782766208052635, 0.022423330694437027, -0.017491308972239494, 0.005689190700650215, -0.006043463014066219, 0.03028677962720394, -0.010030758567154408, -0.005689190700650215, 0.01897786185145378, 0.03184279799461365, 0.01822763867676258, -0.023479200899600983, -0.023159660398960114, -0.008252453058958054, 0.022534474730491638, 0.03334324434399605, -0.02407659962773323, 0.029897773638367653, -0.006720747333019972, 0.026882989332079887, -0.008349703624844551, 0.011100521311163902, -0.023673702031373978, -0.02564651146531105, 0.03887266293168068, -0.0025007431395351887, 0.005126523785293102, 0.03120371885597706, -0.017963672056794167, -0.022881800308823586, 0.022590046748518944, 0.011336702853441238, 0.019200149923563004, -0.001154857105575502, 0.009808470495045185, 0.013629050925374031, -0.015046138316392899, -0.01234394684433937, -0.6259638071060181, 0.015254533849656582, 0.0221454706043005, -0.030536852777004242, 0.005654458422213793, 0.017894206568598747, 0.015087817795574665, 0.001896396977826953, -0.0008934946963563561, 0.018394356593489647, 0.016102008521556854, -0.0005813359748572111, -0.006661701947450638, 0.004348514601588249, -0.013663782738149166, -0.03645527735352516, 0.004866029601544142, -0.012531502172350883, -0.010975483804941177, -0.0068249450996518135, -0.015018352307379246, 0.011329756118357182, 0.014921100810170174, 0.0014431371819227934, 0.00744665740057826, -0.019075114279985428, 0.015587965957820415, -0.006595710292458534, -0.012788522988557816, 0.029508769512176514, -0.046986185014247894, 0.010607318952679634, 0.012607913464307785, -0.006425520870834589, 0.03884487971663475, -0.013955536298453808, -0.034399110823869705, 0.0277443565428257, 0.002129104919731617, 0.03470475971698761, -0.022854015231132507, -0.008912370540201664, 0.027911072596907616, 0.02004762552678585, -0.027952751144766808, 0.0014961044071242213, 0.015560179948806763, -0.0017661498859524727, -0.000379453063942492, -0.024048814550042152, 0.00932916160672903, -0.015462929382920265, 0.0015725159319117665, 0.00830802507698536, -0.0002822019159793854, 0.0031311388593167067, 0.04568024352192879, 0.0024069652426987886, -0.00011288077075732872, -0.00891931727528572, 0.014365380629897118, 0.015893612056970596, -0.0190473273396492, -0.039289455860853195, -0.029119765385985374, 0.011295023374259472, -0.021131280809640884, -0.02157585695385933, -0.013524852693080902, -0.0013979849172756076, 0.025771548971533775, -0.0069117764942348, 0.005887166131287813, -0.006158079952001572, 0.017130091786384583, 0.007773143704980612, 0.03431575372815132, 0.003983822651207447, -0.0034576249308884144, 0.014698812738060951, -0.0087734404951334, -0.0033169579692184925, -0.0024660106282681227, -0.014226450584828854, 0.027980538085103035, 0.012434250675141811, -0.013017757795751095, -0.015018352307379246, -0.004595115780830383, 0.002657039789482951, 0.0025875745341181755, 0.019658619537949562, -0.022951265797019005, -0.042707137763500214, 0.018463820219039917, 0.06001783907413483, 0.004692366812378168, 0.02714695781469345, 0.017143983393907547, -0.016352081671357155, -0.02571597695350647, -0.036149632185697556, 0.016129793599247932, 0.015879718586802483, 0.03334324434399605, 0.013372030109167099, -0.041178904473781586, -0.008092682808637619, 0.019519690424203873, -0.011406167410314083, -0.024410031735897064, -0.0027108751237392426, -0.01793588697910309, -0.007342460099607706, 0.03056463971734047, -0.02525750733911991, 0.012246695347130299, 0.00884290598332882, 0.005522474646568298, -0.0030495175160467625, 0.0033048016484826803, -0.014184771105647087, 0.023312484845519066, -0.006494985893368721, 0.01622704416513443, 0.007002080790698528, 0.016352081671357155, -0.009551449678838253, 0.004938967991620302, 0.0004243882722221315, -0.02179814502596855, -0.006505405530333519, -0.0053557585924863815, 0.0020874259062111378, 0.03134264796972275, -0.00664433604106307, 0.02978662960231304, -0.004001189023256302, 0.0030599371530115604, -0.046958401799201965, 0.006005256902426481, 0.0037302752025425434, 0.02582712098956108, -0.027133064344525337, -0.003980349749326706, -0.018033137544989586, -0.007050706539303064, 0.008294131606817245, -0.0009082560427486897, -0.012003567069768906, -0.016143687069416046, -0.016004756093025208, 0.01476827822625637, 0.01665772870182991, -0.007203529588878155, -0.007689785212278366, -0.0028376488480716944, -0.028758546337485313, -0.011142200790345669, -0.016602156683802605, -0.002957476070150733, -0.003009574953466654, -0.02571597695350647, -0.002269771881401539, -0.017783062532544136, -0.019658619537949562, -0.026549557223916054, 0.014129199087619781, -0.008349703624844551, -0.013101115822792053, -0.010489228181540966, -0.027008026838302612, 0.0025233193300664425, 0.01633818820118904, 0.005664878059178591, 0.012691271491348743, -0.01103800255805254, -0.012864934280514717, -0.020742274820804596, -0.00015260612417478114, 0.010801821015775204, 0.008933210745453835, -0.004417979624122381, -0.024937966838479042, 0.04037310928106308, 0.0003770651819650084, 0.019339080899953842, 0.01790810003876686, -0.04626375064253807, -0.0005361836520023644, -0.0038553124759346247, 0.00030608056113123894, -0.024729572236537933, -0.02000594511628151, -0.01697726733982563, -0.01148257963359356, -0.01840824820101261, 0.01758856140077114, 0.0031519783660769463, 0.017394058406352997, 0.019491903483867645, 0.0034576249308884144, 0.0005652721738442779, 0.0031884475611150265, 0.009732059203088284, -0.02425720915198326, 0.013531799428164959, -0.017755277454853058, 0.00911381933838129, 0.011350595392286777, 0.0007892971043474972, 0.004966754000633955, 0.00665128231048584, -0.012691271491348743, -0.006033042911440134, 0.02803611010313034, 0.005022326018661261, 0.015574073418974876, -0.012851041741669178, -0.006727694068104029, 0.01672719419002533, 0.009440305642783642, 0.023479200899600983, 0.0018460347782820463, 0.004230423830449581, 0.009732059203088284, 0.0016037753084674478, 0.030147848650813103, 0.0016602156683802605, -0.02186761051416397, -0.0067068543285131454, 0.02061723917722702, -0.0123231066390872, 0.018033137544989586, 0.028077788650989532, 0.015268426388502121, 0.03506597876548767, 0.007960699498653412, 0.028439007699489594, -0.005987890530377626, 0.01875557377934456, -0.0017131827771663666, 0.01822763867676258, -0.029869988560676575, 0.02817504107952118, 0.0036017647944390774, 0.016185365617275238, -0.013615157455205917, -0.03895602375268936, -0.003952563740313053, -0.010391977615654469, 0.0016150632873177528, -0.020269913598895073, 0.0014969726325944066, 0.014268129132688046, -0.03106478787958622, 0.016185365617275238, 0.017269020900130272, 0.013094169087707996, 0.024840716272592545, -0.00040419999277219176, 0.005400910507887602, -0.0017296806909143925, -0.005310606211423874, 0.008377489633858204, -0.021034028381109238, -0.016060328111052513, -0.009884881787002087, -0.004445765633136034, -0.021881503984332085, 0.0036608101800084114, -0.029480984434485435, 0.0047653052024543285, -0.02114517241716385, -0.01360821072012186, 0.007238262332975864, -0.004088020417839289, -0.007224369328469038, -0.011433953419327736, 0.021839823573827744, -0.014337594620883465, -0.030258992686867714, 0.02942541241645813, 0.017755277454853058, 0.006936089135706425, 0.0013259148690849543, -0.008683135733008385, 0.004188744816929102, 0.020464414730668068, 0.0028515418525785208, 0.01103800255805254, 0.0030964063480496407, -0.0048347702249884605, -0.008030164055526257, 0.010669837705790997, 0.011767386458814144, 0.03762229159474373, -0.007474443409591913, -0.017352379858493805, 0.0053765978664159775, 0.0313982218503952, 0.01740795187652111, -0.019922588020563126, -0.016004756093025208, 0.03142600506544113, 0.00013078973279334605, -0.03167608007788658, -0.023618130013346672, 0.006998607888817787, -0.02186761051416397, -0.001424034358933568, -0.00921801757067442, -0.02157585695385933, -0.014879422262310982, -0.0019919113256037235, 0.0010306882904842496, -0.003110299352556467, -0.01925572194159031, 0.015865826979279518, 0.017519095912575722, -0.004407559987157583, -0.008023218251764774, 0.010565640404820442, 0.02239554561674595, 0.05140416696667671, -0.0035045137628912926, -0.0029835256282240152, 0.018991755321621895, -0.0205477736890316, -0.013802713714540005, -0.030481280758976936, -0.03006449155509472, 0.029147552326321602, 0.02728588692843914, -0.026521770283579826, 0.015212854370474815, 0.011135254055261612, -0.00978763122111559, 0.013788820244371891, 0.004206111188977957, -0.002655303105711937, -0.006526245269924402, -0.012184176594018936, 0.008182987570762634, 0.004668054170906544, 0.003256176132708788, 0.03217623010277748, 0.01087823323905468, 0.04165126755833626, 0.021631428971886635, 0.03792794048786163, 0.012976078316569328, 0.013649890199303627, -0.018102603033185005, -0.015421249903738499, 0.011225558817386627, -0.006769373081624508, 0.022034326568245888, -0.028619617223739624, 0.028591830283403397, 0.005171675700694323, -0.018588857725262642, -0.02107570879161358, 0.005258507095277309, -0.010496174916625023, 0.033148739486932755, 0.002499006688594818, -0.006248384714126587, 0.016421547159552574, -0.010669837705790997, 0.005876746494323015, 0.032009512186050415, -0.01693558879196644, -0.012232801876962185, 0.0028046530205756426, 0.011614562943577766, -0.017310699447989464, 0.017449630424380302, 0.01367767620831728, -0.0022385125048458576, -0.00222982931882143, -0.029147552326321602, -0.026341162621974945, -0.02742481790482998, -0.030842499807476997, -0.0058975862339138985, -0.028327863663434982, -0.020103197544813156, -0.013781873509287834, -0.034260183572769165, -0.017171770334243774, 0.007300781086087227, -0.01440705917775631, 0.0061650266870856285, -0.016754979267716408, -0.03295423835515976, -0.02500743232667446, 0.01514338981360197, 0.031759437173604965, 0.027952751144766808, 0.009391680359840393, 0.01440705917775631, -0.007217422593384981, 0.010607318952679634, -0.010669837705790997, -0.0053765978664159775, 0.010155796073377132, -0.020422736182808876, 0.007585587911307812, -0.015018352307379246, -0.006828418467193842, 0.015574073418974876, -0.009530610404908657, 0.017755277454853058, -0.004400613252073526, -0.035427194088697433, 0.016435440629720688, 0.005175149068236351, 0.02018655464053154, 0.020089304074645042, 0.018019244074821472, -0.004747938830405474, 0.013601264916360378, -0.0410955473780632, 0.008815119974315166, -0.005046638660132885, -0.010530907660722733, -0.01478217076510191, 0.024048814550042152, 0.026938561350107193, -0.0212979968637228, -0.012795469723641872, -0.0012086925562471151, -0.026660701259970665, -0.012448144145309925, -0.005008433014154434, -0.031120359897613525, -0.01733848638832569, -0.003157188417389989, -0.013719354756176472, 0.006741587072610855, 0.017130091786384583, 0.009079087525606155, -0.0036677566822618246, 0.005960104521363974, -0.005522474646568298, 0.021103493869304657, -0.00035188408219255507, -0.0023652862291783094, 0.021172959357500076, 0.016213152557611465, -0.01733848638832569, -0.03898380696773529, 0.0049493876285851, 0.01925572194159031, 0.009245803579688072, -0.00804405752569437, -0.016893910244107246, -0.010572586208581924, -0.010947697795927525, -0.0031415587291121483, 0.019214043393731117, -0.01743573695421219, -0.004473551642149687, -0.04023417830467224, 0.016824444755911827, 0.015879718586802483, -0.025590939447283745, -0.007071546278893948, -0.02025602012872696, -0.026438413187861443, -0.004633321426808834, 0.009641754440963268, 0.02072838321328163, -0.012566234916448593, -0.018630536273121834, -0.03406567871570587, -0.0197975505143404, -0.003209287067875266, -0.0037476415745913982, 0.000577428552787751, 0.019214043393731117, 0.04273492470383644, 0.03623298928141594, 0.017991458997130394, 0.029258696362376213, 0.0228956937789917, 0.009301375597715378, -0.01950579695403576, 0.007953752763569355, 2.0418938220245764e-05, -0.019700299948453903, -0.005067478399723768, -0.019450224936008453, -0.008391383104026318, -0.0012260588118806481, -0.008641457185149193, 0.03626077622175217, -0.011941049247980118, -0.01155899092555046, 0.0005509449983946979, -0.02036716416478157, -0.038928236812353134, -0.04184576869010925, 0.0007554328767582774, 0.034287966787815094, -0.004702786449342966, 0.0005279346951283514, -0.031120359897613525, -0.0027629740070551634, 0.023618130013346672, -0.004067181143909693, 0.03153714910149574, -0.0008470399188809097, 0.029091980308294296, -0.00816909410059452, -0.0016949481796473265, 0.018588857725262642, 0.008690082468092442, -0.011975781060755253, -0.013997215777635574, -0.04090104624629021, -0.0017123144352808595, 0.005571100395172834, 0.017380164936184883, 0.01201746053993702, -0.005748236086219549, 0.003834472969174385, 0.008571991696953773, 0.01665772870182991, -0.030592424795031548, -0.027063598856329918, 0.01765802502632141, -0.02082563377916813, -0.017783062532544136, -0.022228829562664032, -0.007071546278893948, 0.005609306041151285, -0.008551152423024178, -0.0021690474823117256, -0.0028793278615921736, 0.023243019357323647, -0.028161147609353065, -0.005119577050209045, 0.01629650965332985, -0.008710922673344612, 0.02132578194141388, 0.011517311446368694, 0.011621509678661823, -0.002007541013881564, 0.006210179068148136, -0.020381057634949684, -0.030536852777004242, -0.0001393643324263394, 0.006943035870790482, -0.0022037799935787916, 0.0512930229306221, -0.01080876775085926, -0.02856404520571232, -0.0013233099598437548, 0.0014796063769608736, 0.009794577956199646, -0.038039084523916245, 0.022423330694437027, 0.02200653962790966, 0.01053785439580679, -0.031759437173604965, -0.01954747550189495, 0.00021382223349064589, -0.00178525282535702, -0.012510662898421288, 0.01918625831604004, 0.011586776934564114, 0.006338689476251602, -0.00423389719799161, 0.0251463633030653, -0.02421553060412407, 0.020242126658558846, -0.0038553124759346247, 0.016310403123497963, -0.011149146594107151, -0.005522474646568298, -0.008815119974315166, -0.02075616829097271, 0.0027438709512352943, 0.009947400540113449, -0.01890839822590351, -0.0016697670798748732, 0.00978763122111559, 0.010253047570586205, -0.0007211344782263041, -0.0005227248184382915, -0.024271102622151375, 0.030342351645231247, 0.0015212855068966746, -0.01800535060465336, 0.010343351401388645, -0.016810551285743713, 0.026049409061670303, -0.02582712098956108, -0.019700299948453903, 0.004331148229539394, -0.019339080899953842, -0.003990769386291504, -0.008662296459078789, -0.009072140790522099, -0.012642646208405495, 0.007047233171761036, 0.003421155735850334, -0.01651879772543907, -0.020242126658558846, 0.0005544182495214045, 0.030786927789449692, -0.026382841169834137, -0.0032353366259485483, -0.011406167410314083, -0.011156093329191208, 0.00816909410059452, 0.005060531664639711, 0.0041991644538939, -0.0011835114564746618, 0.019714191555976868, -0.008898478001356125, 0.022201042622327805, 0.02632726915180683, 0.01398332230746746, -0.03937281295657158, 0.015198961831629276, 0.006147660315036774, 0.015296212397515774, 0.017171770334243774, -0.007641159929335117, -0.022423330694437027, -0.017199555411934853, 0.0156991109251976, -0.0050987377762794495, 0.01961694099009037, -0.0032718058209866285, 0.01918625831604004, 0.0236459169536829, 0.013893017545342445, -0.019283508881926537, -0.023173553869128227, 0.00043480805470608175, -0.007238262332975864, 0.01266348548233509, 0.013351189903914928, -0.007005554158240557, 0.0005101342685520649, -0.002766447141766548, 0.008189934305846691, 0.007932913489639759, -0.023632023483514786, -0.02956434153020382, -0.028161147609353065, -0.009099926799535751, 0.0020579032134264708, 0.018060922622680664, -0.019200149923563004, -0.029342053458094597, -0.034649185836315155, 0.035649482160806656, -0.005758655723184347, 0.014865528792142868, 0.03381560742855072, -0.008697029203176498, -0.01993648149073124, 0.008669243194162846, -0.013205313123762608, -0.04662496969103813, -0.04568024352192879, -0.00037446024361997843, -0.034121252596378326, -0.015421249903738499, -0.0066964346915483475, 0.03520490601658821, 0.02339584194123745, -0.02503521740436554, -0.03612184524536133, -0.021214637905359268, -0.021242424845695496, -0.0001544512779219076, -0.0032127604354172945, 0.015629645437002182, 0.028383435681462288, 0.036677565425634384, 0.001569911022670567, 0.008210773579776287, 0.004862556234002113, 0.03292645141482353, -0.037177715450525284, -0.000492767954710871, -0.016824444755911827, -0.020269913598895073, 0.023951562121510506, -0.03556612506508827, -0.04340178892016411, -0.002118685282766819, -0.012566234916448593, -0.010121063329279423, 0.0025406857021152973, 0.003233599942177534, 0.016880016773939133, 0.0008674453129060566, -0.004911181982606649, -0.02435445971786976, 0.027508175000548363, 0.0246462132781744, -0.0009195441380143166, -0.02303462289273739, 0.0078495554625988, 0.0164493340998888, 0.0017123144352808595, -0.015310105867683887, 0.0003818409168161452, 0.0032752789556980133, -0.01291356049478054, -0.0038414194714277983, -0.019172364845871925, -0.012156390585005283, -0.01886671781539917, -0.0021395247895270586, -0.0047618318349123, -0.0029540029354393482, 0.0036226045340299606, 0.04095661640167236, -0.0078495554625988, -0.013316458091139793, 0.008565045893192291, 0.011281130835413933, -0.006335216108709574, -0.010051598772406578, 0.019464118406176567, -0.04354071989655495, -0.003969929646700621, -0.0030321511439979076, 0.025438115000724792, -0.014545990154147148, -0.021034028381109238, -0.017713597044348717, -0.0027126118075102568, -0.02179814502596855, -0.004536070395261049, 0.007252155337482691, -0.0040359217673540115, -0.004452712368220091, -0.011836851015686989, 0.0024000187404453754, -0.006828418467193842, -0.010218314826488495, 0.0012147707166150212, -0.019603047519922256, -0.01503224577754736, 0.0035982916597276926, 0.014740492217242718, -0.038039084523916245, -0.007536962162703276, 0.027702677994966507, -0.0009716429631225765, 0.011739600449800491, 0.20984014868736267, 0.010482282377779484, -0.008676189929246902, 0.04693061485886574, 0.008815119974315166, -0.007467497140169144, 0.014976673759520054, 0.009565343149006367, 0.006328269839286804, 0.03320431336760521, 0.007078492548316717, 0.012524555437266827, -0.011614562943577766, -0.0031294021755456924, 0.02271508425474167, -0.030536852777004242, -0.01779695600271225, -0.01615758053958416, -0.006064302287995815, 0.008606724441051483, 0.01440705917775631, 0.00295052956789732, -0.016893910244107246, -0.0003829263150691986, 0.031259290874004364, 0.015365677885711193, -0.002405228791758418, 0.021242424845695496, 0.01972808502614498, 0.020450523123145103, -0.025368651375174522, 0.00375806144438684, 0.034287966787815094, -0.01890839822590351, -0.006147660315036774, -0.00902351550757885, 0.013601264916360378, -0.01693558879196644, 0.0049737002700567245, 0.026660701259970665, 0.004063707776367664, -0.015990864485502243, 0.008905424736440182, -0.013663782738149166, 0.013163634575903416, -0.008488633669912815, -0.00037446024361997843, 0.00247469381429255, 0.01503224577754736, 0.04134562239050865, -0.013316458091139793, 0.0032804887741804123, 0.007439711131155491, 0.014066680334508419, -0.005393964238464832, -0.009891828522086143, -0.012996918521821499, -0.011725706979632378, -0.018894504755735397, 0.006241438444703817, 9.383213910041377e-05, 0.01954747550189495, -0.006231018342077732, 0.008051004260778427, -0.031509365886449814, 0.0063630021177232265, -0.010871286503970623, 0.020061517134308815, 0.015851933509111404, 0.012399518862366676, -0.00357050565071404, -0.013087223283946514, -0.025368651375174522, -0.0020683230832219124, -0.0053557585924863815, -0.01665772870182991, 0.00714101130142808, 0.021172959357500076, 0.030342351645231247, 0.026438413187861443, 0.006053882651031017, 0.02189539559185505, -0.03392675146460533, -0.015365677885711193, -0.0039004648569971323, -0.018825039267539978, 0.036288563162088394, -0.009398626163601875, -0.0011522521963343024, -0.018324891105294228, -0.017171770334243774, 0.020533880218863487, -0.016171472147107124, -0.006856204476207495, -0.010204421356320381, -0.01733848638832569, -0.001045449636876583, 0.030647996813058853, 0.007530015893280506, -0.014948886819183826, -0.03748336061835289, 0.06463032215833664, 0.011545097455382347, 0.028619617223739624, -0.02393767051398754, 0.0008557230466976762, -0.01107273530215025, 0.013726301491260529, -0.010725409723818302, 0.016782766208052635, -0.020422736182808876, -0.032620806246995926, 0.009079087525606155, 0.0047757248394191265, 0.007731464691460133, 0.016129793599247932, 0.01840824820101261, 0.004126226529479027, -0.013198367320001125, -0.004633321426808834, 0.02596605010330677, 0.004358934238553047, -0.0006551426486112177, 0.005831594113260508, -0.019880909472703934, -0.014011108316481113, -0.01918625831604004, 0.01818596012890339, -0.02239554561674595, -0.0228956937789917, 0.015018352307379246, -0.022048220038414, 0.0095236636698246, -0.005338392220437527, -0.008210773579776287, 0.005765602458268404, -0.0006156343733891845, -0.014323701150715351, -0.023979349061846733, 0.011017163284122944, 0.0014049314195290208, 0.006661701947450638, 0.020242126658558846, -0.018700001761317253, 0.005230721086263657, -0.015865826979279518, 0.007578641176223755, -0.0016958165215328336, -0.016754979267716408, -0.029647700488567352, 0.00590105913579464, 0.024479497224092484, -0.003949090372771025, 0.01118387933820486, 0.02489628829061985, -0.022951265797019005, -0.03945617005228996, -0.029230909422039986, 0.014476524665951729, 0.016185365617275238, -0.031009215861558914, -0.01572689600288868, 0.06057355925440788, -0.0031884475611150265, -0.023854311555624008, 0.005428696516901255, -0.1782752126455307, 0.009384733624756336, 0.00577949546277523, -0.0005674429703503847, -0.00100984878372401, 0.014351487159729004, 0.015990864485502243, 0.013365083374083042, -0.030870284885168076, -0.0017939358949661255, 0.007571694906800985, 0.005150836426764727, -0.03145379200577736, -0.026188338175415993, 0.012705164961516857, -0.005456482991576195, -0.016199259087443352, 0.022534474730491638, 0.03295423835515976, -5.38354433956556e-05, 0.02136746235191822, -0.02318744733929634, 0.003587871789932251, -0.017880314961075783, 0.01890839822590351, 0.01861664466559887, -0.012295320630073547, 0.04401307925581932, 0.003285698825493455, -0.029869988560676575, -0.01118387933820486, -0.018533285707235336, 0.03234294429421425, 0.01961694099009037, 0.018033137544989586, 0.010134956799447536, 0.00673116696998477, -0.0018286685226485133, -0.006425520870834589, 0.0033186946529895067, 0.03567726910114288, 0.01421255711466074, 0.01868610829114914, 0.002526792697608471, 0.005904532503336668, 0.016310403123497963, 0.017449630424380302, -0.002672669244930148, -0.008530313149094582, -0.0036434440407902002, 0.02756374701857567, -0.01611590012907982, -0.017991458997130394, -0.021978754550218582, 0.009537557139992714, 0.0010767088970169425, -0.0010749722132459283, 0.022062111645936966, 0.011732653714716434, -0.021020136773586273, 0.005432169884443283, -0.012566234916448593, -0.0006382105057127774, 0.006672122050076723, -0.0005591939552687109, -0.031648293137550354, -0.02667459473013878, 0.012079979293048382, 0.004091493785381317, 0.012489822693169117, 0.013135848566889763, -0.005140416789799929, -3.2046198612079024e-05, 0.008676189929246902, 0.019658619537949562, 0.0190473273396492, -0.04234591871500015, 0.007081965915858746, 0.036760926246643066, -0.007224369328469038, 0.013330350629985332, 0.008835959248244762, -0.008724815212190151, -0.005727396812289953, -0.024548962712287903, -0.012823255732655525, 0.01417782437056303, 0.00918328482657671, -0.01123250462114811, 0.024548962712287903, 0.028730761259794235, -0.017143983393907547, 0.03420460969209671, 0.003320431336760521, 0.010954644531011581, 0.019811443984508514, 0.02596605010330677, 0.0026188339106738567, 0.021728679537773132, -0.0253964364528656, -0.0037441684398800135, 0.01387217827141285, -0.044846661388874054, 0.011739600449800491, 0.01647711917757988, 0.029619913548231125, 0.016240937635302544, -0.02007541060447693, 0.020381057634949684, 0.0012225855607539415, -0.027119170874357224, 0.01790810003876686, 0.025229720398783684, 0.0017322857165709138, -0.007724517956376076, 0.04440208524465561, 0.007196583319455385, -0.01159372366964817, 0.010523960925638676, -0.002321870531886816, 0.04451322928071022, -0.030786927789449692, -0.0022558788768947124, 0.0077036782167851925, 0.012225856073200703, -0.011552044190466404, -0.10397534817457199, -0.013788820244371891, 0.037038784474134445, 0.010767089203000069, -0.013177527114748955, 0.012184176594018936, 0.0013806186616420746, 0.021534178406000137, -0.01476827822625637, 0.004143592435866594, -0.01068373117595911, -0.00911381933838129, -0.003079039976000786, 0.0032179702538996935, 0.009773737750947475, -0.008370542898774147, 0.007335513364523649, -0.029869988560676575, 0.0008283712086267769, 0.01385828573256731, 0.010523960925638676, -0.012010513804852962, 0.011684028431773186, 0.006831891369074583, -0.0238959901034832, -0.03334324434399605, -0.022103792056441307, 0.014726598747074604, 0.007974592037498951, 0.007877341471612453, 0.03870594874024391, -0.005536367651075125, 0.028383435681462288, -0.026091087609529495, -0.006772846449166536, -0.01686612330377102, -0.01333729736506939, -0.02007541060447693, 0.03445468470454216, -0.023548664525151253, -0.0031189825385808945, 0.0038726788479834795, -0.0008435666677542031, -0.014226450584828854, 0.007321620360016823, 0.014948886819183826, 0.0026188339106738567, 0.03587177395820618, 0.010523960925638676, -0.025938265025615692, -0.011392274871468544, -0.02468789368867874, -0.014712706208229065, -0.03545498102903366, 0.02931426838040352, 0.014309808611869812, 0.017671918496489525, 0.01772749051451683, -0.026438413187861443, 0.00450133765116334, -0.012434250675141811, 0.000374894414562732, -0.02350698597729206, 0.015685217455029488, 0.005678771063685417, 0.0033760033547878265, -0.02047830820083618, 0.005925372242927551, -0.005150836426764727, -0.000825332070235163, -0.009294428862631321, -0.0010463178623467684, -0.026188338175415993, 0.0007901653880253434, -0.018463820219039917, 0.0011704867938533425, -0.01604643650352955, -0.013413708657026291, -3.139496402582154e-05, 0.0095236636698246, -0.01647711917757988, -0.0031537150498479605, -0.001202614395879209, -0.02250668965280056, 0.008377489633858204, -0.0013233099598437548, 0.00011917604570044205, -0.015949184074997902, 0.012350892648100853, -0.04326285794377327, 0.0014466104330495, 0.013809659518301487, 0.02350698597729206, -0.006970821879804134, -0.005765602458268404, 0.007266048341989517, -0.0035809252876788378, -0.014143092557787895, 0.019825337454676628, -0.008099629543721676, -0.020533880218863487, -0.005046638660132885, -0.053376976400613785, 0.005289766471832991, -0.0076342131942510605, 0.007203529588878155, 0.004977173637598753, -0.030592424795031548, -0.009099926799535751, -0.003033887827768922, 0.006043463014066219, 0.0009924824116751552, -0.02250668965280056, 0.010725409723818302, -0.007404978387057781, -0.009565343149006367, -0.02664680778980255, -0.026507878676056862, 0.0228956937789917, 0.007349406369030476, 0.02967548556625843, 0.005584993399679661, -0.014823850244283676, -0.0010115853510797024, -0.0012321369722485542, 0.02653566375374794, -0.011746546253561974, 0.024479497224092484, -0.029619913548231125, 0.020603345707058907, -0.013927750289440155, -0.029008621349930763, 0.023423628881573677, 0.001167013542726636, 0.010530907660722733, -0.0023305537179112434, -0.0036677566822618246, -0.023854311555624008, -0.007127118296921253, 0.021923182532191277, 0.020214341580867767, -0.008884584531188011, -0.01087823323905468, -0.01847771368920803, 0.02307630330324173, -0.015060031786561012, -0.019769763574004173, -0.008266345597803593, -0.024104386568069458, -0.013997215777635574, 0.0058385408483445644, 0.004612482152879238, 0.018852826207876205, -0.00032822255161590874, -0.032120656222105026, -0.033398814499378204, 0.012149443849921227, -0.018144281581044197, 0.0021343149710446596, 0.024048814550042152, -0.02221493609249592, -0.007967645302414894, 0.04601367563009262, -0.005334918852895498, 0.007523069158196449, -0.008002378046512604, 0.03748336061835289, -0.00581422820687294, -0.05318247154355049, -0.01797756552696228, 0.00341941905207932, -0.03448247164487839, -0.007932913489639759, -0.02400713413953781, 0.021242424845695496, 0.017324592918157578, 0.020922884345054626, -0.0070229205302894115, -0.005414803512394428, -0.021742573007941246, -0.00032626884058117867, 0.039567314088344574, 0.008787333965301514, -0.0035809252876788378, -0.02082563377916813, 0.0165465846657753, 0.027160849422216415, 0.013358136638998985, -0.018894504755735397, 0.018963970243930817, 0.02093677781522274, 0.0072313155978918076, -0.009870989248156548, 0.005126523785293102, 0.01009327732026577, 0.003959510009735823, 0.01066289097070694, 0.025868799537420273, -0.004671527072787285, 0.013052490539848804, 0.01503224577754736, 0.04140119254589081, -0.0053175524808466434, 0.019603047519922256, -0.030258992686867714, -0.01868610829114914, -0.0021725206170231104, 0.015060031786561012, -0.027549855411052704, -0.030620211735367775, 0.009919614531099796, 0.021728679537773132, -0.007787036709487438, -0.02575765550136566, 0.020950671285390854, 0.020033732056617737, -0.004699313081800938, 0.0005453009507618845, -0.01121861208230257, -0.021464712917804718, -0.029869988560676575, 0.001714919344522059, 0.012621806934475899, 0.010593426413834095, 0.0020335905719548464, 0.00430683558806777, 0.03695542737841606, -0.00978763122111559, -0.0006260541267693043, -0.005081371404230595, 0.000437630049418658, -0.006529718637466431, 0.005765602458268404, -0.0039247777312994, 0.013566532172262669, -0.016949482262134552, -0.0019814916886389256, -0.012989971786737442, 0.0012729477602988482, 0.035149335861206055, -0.010385030880570412, 0.0915827751159668, 0.017713597044348717, -0.018213747069239616, 0.019464118406176567, -0.011941049247980118, 0.0014092730125412345, 0.011225558817386627, 0.014226450584828854, -0.002285401336848736, -0.013670729473233223, 0.03267637640237808, -0.0009152025450021029, -0.012420358136296272, -0.008106576278805733, -0.0037024891935288906, 0.0064984592609107494, 0.002235039370134473, 0.008565045893192291, -0.0018512445967644453, 0.005598886404186487, 0.01843603514134884, -0.0033586369827389717, 0.005737816449254751, -0.008120468817651272, -0.041178904473781586, -0.011440900154411793, 0.027980538085103035, 0.028953049331903458, -0.007655052933841944, -0.007384139113128185, 0.030397923663258553, -0.01772749051451683, -0.027619319036602974, -0.0026865622494369745, -0.021464712917804718, 0.00854420568794012, -0.0180470310151577, -0.022062111645936966, 0.004970227368175983, 0.01790810003876686, -0.0008887189906090498, 0.01367767620831728, -0.02856404520571232, -0.02571597695350647, 0.007939859293401241, -0.012031353078782558, -0.007134064566344023, -0.020172661170363426, -0.003414209233596921]}, "text_id_to_ref_doc_id": {"0c142657-6970-4ee7-9647-14dc60537a00": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "4d3fcfc7-9023-40a0-b807-5e89f013c374": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "c3b56f26-887a-43d6-9de3-39e228261bc3": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "af3c10bd-1db5-4954-a3c4-d9e4cde600fd": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "f891d754-5b71-4448-9069-3dff046be834": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "b1eb3ee1-929c-4cd2-9c3d-9a3a3869a6ef": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "8f6f8669-9943-4aa5-aa79-f185e413636c": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "8040e9e3-de8d-45d1-870e-8b2f0c44f4bc": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "e45eea2c-fa16-4f6c-97d2-b145b149d1c1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "b5398d00-ce67-41e4-a0bd-59e194fca19a": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "42d0f166-f343-47cd-ba6f-1383e67d8d54": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "8237bbcc-5302-466e-9dc2-db832e533372": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "5f252439-4174-4f21-8caf-f68533eecee0": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "60f8b901-2d88-4334-9c72-687aa01d4b8d": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "478c060d-0015-4f8c-883f-57ca83956105": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "24a7a2fe-17f2-4bb0-a3d1-bf233235f75b": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "5cb45dc8-b174-4848-a875-d6a8775981e2": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "764b01ac-db76-4081-af21-2483631ae895": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "c69ca865-8ff1-4557-816a-48675d98a997": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "026e2225-4c31-4004-afd6-8fcc6410d07f": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "7a7b5aad-cc36-4282-a044-1dfdfd66d09f": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "922a83e8-252c-46c7-a471-f74fe0bfb35c": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "820c781f-0bc4-4d05-b91f-8df2f26be661": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "68814d94-f4cb-45b6-bd96-e057286d2f56": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "74773a00-8ea0-44ea-8c3a-2447481985b5": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "f1d0e2c4-f8f3-478b-bd36-1d395e26f7d1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "36cc1197-845b-4606-870b-731ad308677a": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "b1d6a962-e1e8-4fff-8ef0-b5fccc0a1260": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "b54e2b2b-366b-4afe-8ff7-80ffeb88d77c": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "28e00375-f4da-4f42-8df0-4a4ca3bbf53c": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "1c72ea81-28e2-4e4a-ba15-7ae788d5c584": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "d0484d59-55d2-4197-84b6-7d9eed3bc501": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "b9455574-e3cb-4838-95d0-00256ab31595": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "0273158c-ddd2-4574-ae6c-5061fb24282a": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "0a13f4dd-7723-4ab1-8c78-ad41d2c9660a": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2ad1d5ea-2e57-4b5d-9c89-8b0d8b6056ca": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "635a43aa-23d9-4e2e-a76d-ae12f2968888": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "43b721e9-efe0-41e3-b387-e32a09609efd": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "307eca8f-2352-43d0-9760-0e10d0586e6b": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "f7d7f7aa-1a20-4297-8195-d6a2c8d681de": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "ec0cea14-8506-48af-a97e-dac7de3f928d": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "e682ce61-fb56-4a2d-a957-fbf6faf3a827": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "0a685b2c-0702-4790-a271-687cd0bdfe6f": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "0239f2fb-6432-444b-95a6-f00669901af5": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "92435c91-6b25-4870-b65c-fb292b61e3cf": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "6f4df675-71f3-4b0b-8e32-bd4e3e076a3b": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "eb311335-0ee1-4bd8-bc94-bfa5e9e75c37": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "af21247b-3377-47d5-8dbd-994fa2b1e1be": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "184bf94f-62b1-4835-8df6-f922e578b660": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "b2f62080-d437-4bf6-a39b-8fd08f0953c3": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "ffb7c329-65a8-4b3c-aed1-483e33e7db2d": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "016fefde-7b3d-43b7-8c2f-97a0e3a90eec": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "2226af7c-b46b-4600-b899-63c5dc50458f": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "0335b885-e042-4a73-95ba-f4c87d2f57f1": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b", "9139abf7-f504-4dbf-8c6e-77c0a8048025": "08f41c1e-5cbd-4306-9c5d-5924326ccb1b"}} \ No newline at end of file diff --git a/index_v2/OnCall/docstore.json b/index_v2/OnCall/docstore.json new file mode 100644 index 0000000000000000000000000000000000000000..6cb26a34f1622c6aff9caf22cb70bce83ddeff91 --- /dev/null +++ b/index_v2/OnCall/docstore.json @@ -0,0 +1 @@ +{"docstore/metadata": {"d6496709-cfc5-4485-93e6-2c6905c9d395": {"doc_hash": "ba829374ee458613e165ee84864cb14c77e58f29c0834dbd4e5f912038f0bb0b"}, "7bc79ea6-68b3-4bf5-8112-31e1aa58d448": {"doc_hash": "9235c45f05466bd25cf44b08c688648d350ecc8155d3298737e6da74e901d63c"}, "57018674-bf81-4ad7-940b-47bc8f22a82b": {"doc_hash": "8d63fb8bf8df55df4f5197459fd3a64b87c236b6064aebed0c594689dcc8c818"}, "04678987-bdb0-4922-a081-c6066b190cff": {"doc_hash": "f3f6588a774bb7d11930e89fc7dfdcfaa1cd3b790c7dbe529caa506839d8b53a"}, "130a58d8-6265-4783-b0a6-056344dacdb8": {"doc_hash": "21c74d0f1661068e36910b2edb2dfc0a7023e3e0824a1886d0ef24f1084dd561"}, "bd4335e6-72c5-40f0-ac46-bfd30bc3b26f": {"doc_hash": "8a28314bb5126884074d743b913cdfbee6aeecb9683fb8fe916f6b87e89ef6ee"}, "0bd2d94e-126a-4644-8989-aa46455d3788": {"doc_hash": "73588ffe6973fa49b0c3077faa9f86c139ad0f8c454e53fc65f9515cea160d28"}, "d09c18d3-ac4b-4719-a3f1-9ca73015e9c2": {"doc_hash": "393d4ef40635d51192007750b39e813be462e2977f1394d8268d2ed934bd1efe"}, "ce7f46b5-953b-4cb8-b961-183b46bc7645": {"doc_hash": "c71e2be5d1b16eae6c3cc025a36805db56dc72f75f370e5a627febd746eb4bee"}, "597ca512-6f36-4807-b986-4a1d5acc33ca": {"doc_hash": "b5f9583474e44ec59425e0b688b0be07ff599cf8e029af55625eb07ebef2ac90"}, "1ba7a349-4a28-4423-a013-05d8defe7065": {"doc_hash": "02e672753bc4d8fea49be0aa8911cd09b3f8c9c155c24d2699605170446679ee"}, "c48683dc-f64e-4689-bcba-15ef3e12b199": {"doc_hash": "063df790c6149c4ce5236602034cfc02e6f6f1b2a622dddf43af4d3a38df36ef"}, "6ca3f6f6-9ccc-4ee4-9af0-15bb8ed19623": {"doc_hash": "4de7f29babc2fb2eb3a09f34596f49c2a755a6f39c82a3347d9e84dfcd24b952"}, "2db441ba-005f-47fc-ab87-96ebe48bb427": {"doc_hash": "8d026d684544b78161af0013116f2adc29a261dcfb565b682a1aef00ec0e2672"}, "468db9da-7f2c-458a-8e4b-a209e0ccb1ad": {"doc_hash": "282f7a4e8d6c8a5fbdad62c017649e2fa9a8bee44a08e744fe98dac3e1c3ca6c"}, "00e68c43-8f2c-4ed5-b5ec-e0c71b8f3819": {"doc_hash": "1a86000e046e02e65e8b90d724c44e1c30b0211a2b13674ec716d3f64c5c6686"}, "61eb3840-5d98-4260-8e52-318ba943edcf": {"doc_hash": "9c016adfebd20b478a08aa2f5f267dc63ee4bb47a6583cb8e8677832abc3b1e8"}, "03a7050b-f0d8-4a33-b9e8-d4f82439cca0": {"doc_hash": "1e7ddc74e8d4464205a6644eb228753e21d7a80ddaa201ec55bfbb3ebdde4fcd", "ref_doc_id": "d6496709-cfc5-4485-93e6-2c6905c9d395"}, "33630944-a8b9-4d7e-8d3f-0381d2c4e586": {"doc_hash": "bd205fbaf9edc0054ec276d8b090a4d142de9aa42f4a6b0966d4a3b662a46327", "ref_doc_id": "d6496709-cfc5-4485-93e6-2c6905c9d395"}, "69adae88-db95-4f48-81df-ac19ca8077e3": {"doc_hash": "04291c6d919c46bce3de41cfd59054e6f6749fbebe20fe95c507d9cc7725c4d5", "ref_doc_id": "7bc79ea6-68b3-4bf5-8112-31e1aa58d448"}, "21d0b6b7-28cf-437e-aef6-522813d4e0a1": {"doc_hash": "442829f5592cb598491ad09a9bf802b5ffd05c35f0acd8ed778933a106b6fbfd", "ref_doc_id": "7bc79ea6-68b3-4bf5-8112-31e1aa58d448"}, "792e2728-bdc4-4e54-ad72-55e359056616": {"doc_hash": "468aa6ba5b142eaf477fc77a16ac3860eb0a697cb185d98efe5952334915c1d9", "ref_doc_id": "57018674-bf81-4ad7-940b-47bc8f22a82b"}, "6f1adeda-e4d0-4b96-b2f1-57def8904cb6": {"doc_hash": "ac81899b7dbe7fc3f0421bc53a447ed09c476c48ace64bf033962da90442f5c8", "ref_doc_id": "57018674-bf81-4ad7-940b-47bc8f22a82b"}, "07aa42dc-7b17-4b9f-848a-181c4ec7e77f": {"doc_hash": "e293beddafaeba9c2e7920144bfa4f83273e02ec83f6018e14e50352775b4066", "ref_doc_id": "04678987-bdb0-4922-a081-c6066b190cff"}, "d14ad41a-0e46-4fb9-b979-8973ba836de4": {"doc_hash": "6522631f31a4eb34a2c2b544744221bb4786da92958151c2bdcbf5885c718333", "ref_doc_id": "04678987-bdb0-4922-a081-c6066b190cff"}, "e5834cdd-0e9d-484d-a7e8-721644c8e119": {"doc_hash": "1d176f65dedef8d5ad0687715f9c339683b887090d0401a901c6c6978b0feb9a", "ref_doc_id": "130a58d8-6265-4783-b0a6-056344dacdb8"}, "4cc6e453-d8cb-4316-9f00-1ad8fc6152ad": {"doc_hash": "421638b67a9017a993430a131cb489f7c2e389add8bbd170c41fb9342cfbea24", "ref_doc_id": "130a58d8-6265-4783-b0a6-056344dacdb8"}, "975881aa-a45e-4b2c-83a8-bd6932e4a819": {"doc_hash": "8a28314bb5126884074d743b913cdfbee6aeecb9683fb8fe916f6b87e89ef6ee", "ref_doc_id": "bd4335e6-72c5-40f0-ac46-bfd30bc3b26f"}, "26d56212-a665-414f-803a-387a807bffa0": {"doc_hash": "d7ac5b9c0ab787ad4760d17bb0aadddcf494ad86227d369624429af714871f64", "ref_doc_id": "0bd2d94e-126a-4644-8989-aa46455d3788"}, "ca972543-cc22-4e27-a596-6492703c69ce": {"doc_hash": "f423df9dcf495ebde76dc87f0ed83ee90510a32f59cf6074b61c5a2f50ec8489", "ref_doc_id": "0bd2d94e-126a-4644-8989-aa46455d3788"}, "02048f03-be3c-4ebf-9383-5e85fd3356e1": {"doc_hash": "3ec06fd5ac2c5df8dca93e0230688bddf501838001a915f4a72d6fc1af4a78e1", "ref_doc_id": "d09c18d3-ac4b-4719-a3f1-9ca73015e9c2"}, "9cf96cfc-0673-4806-b906-e4dab4f6aa0e": {"doc_hash": "f847cda6d3bfbd372510c419f3c441db5dd3b844749ac665292b54549c535324", "ref_doc_id": "d09c18d3-ac4b-4719-a3f1-9ca73015e9c2"}, "9b16e0e5-8641-4e16-a4f7-67130cdd3a59": {"doc_hash": "cfaaada74b10d4e9a4bab7716a674baed2bc3b9ea87aa0d38103027d8d0aae3c", "ref_doc_id": "ce7f46b5-953b-4cb8-b961-183b46bc7645"}, "7f0dd2c8-c705-447e-b1f0-55556cf61ad4": {"doc_hash": "22889ef4aaa4e83fb7aa65672e44a170330a352aedc9af9484a65dfa8cd19cf9", "ref_doc_id": "ce7f46b5-953b-4cb8-b961-183b46bc7645"}, "7ce57955-6637-4a9a-85e0-3b8d16306141": {"doc_hash": "ea26818540474a01a0f073875cf1ecb90cce2bf2d3197374a49cf7a5adaf243a", "ref_doc_id": "597ca512-6f36-4807-b986-4a1d5acc33ca"}, "ffdf9f90-fc3a-4461-a76f-81e03fe84ba5": {"doc_hash": "b4fd660279f17945d5caced3f06297ba5931d73d5f168cba77ea325e7b016211", "ref_doc_id": "597ca512-6f36-4807-b986-4a1d5acc33ca"}, "626bf733-83e0-4372-99f9-1dbf3c28ba09": {"doc_hash": "250979f309d921145598693fd5749628bea415943ab79ac333d4ae961514b527", "ref_doc_id": "1ba7a349-4a28-4423-a013-05d8defe7065"}, "d5075358-1c6e-4cea-9e52-089839227b0b": {"doc_hash": "75592305e804625729dfa9f91bc1405c7e4ec65b537c842e77bea06b52c6fc2c", "ref_doc_id": "1ba7a349-4a28-4423-a013-05d8defe7065"}, "c50c0de2-ac18-4cd7-b256-ada4437b2bda": {"doc_hash": "7b73a33c11e41231fde88bd963b2c4f4e02766e0c9a3cf5261dec06934c7d16d", "ref_doc_id": "c48683dc-f64e-4689-bcba-15ef3e12b199"}, "01024302-ea9b-4c9e-a828-a1993457fb64": {"doc_hash": "1c2c983e8edfc01984ac6fc3739201892f191ec1bfd9893c7762166f24f7da78", "ref_doc_id": "c48683dc-f64e-4689-bcba-15ef3e12b199"}, "097a8045-83e3-4b75-a50f-f1d632d4b401": {"doc_hash": "7aba5260560ca7df5c005486b024256bd3f55ca1957aadc5720744d03ef88f46", "ref_doc_id": "6ca3f6f6-9ccc-4ee4-9af0-15bb8ed19623"}, "323c8c4a-7364-4ad8-82c9-ed3deb9eca73": {"doc_hash": "35b3c7e033df386e946b443f55ed94de7a012f3b704dcddff4667103d4e47c2b", "ref_doc_id": "6ca3f6f6-9ccc-4ee4-9af0-15bb8ed19623"}, "076e6fd8-44dc-4bac-89f1-37a0041f2c11": {"doc_hash": "8d026d684544b78161af0013116f2adc29a261dcfb565b682a1aef00ec0e2672", "ref_doc_id": "2db441ba-005f-47fc-ab87-96ebe48bb427"}, "6b452ef4-8877-4949-bb83-18edbabbfb58": {"doc_hash": "c9214a49365cb50c3b7b3a4bcf53baa21cf17048f981d7a5617b54e6e1d35fc4", "ref_doc_id": "468db9da-7f2c-458a-8e4b-a209e0ccb1ad"}, "7bd9db26-5333-49d3-acfe-b320ad60a235": {"doc_hash": "41a06d83a069f023f4bb9e5c9b5bcce6010e31811dc5604185831759e9fc6c6e", "ref_doc_id": "468db9da-7f2c-458a-8e4b-a209e0ccb1ad"}, "279ac7d5-3dfe-4ac0-90e5-1e530831058a": {"doc_hash": "7f3c775f3b4f4c6752d1971216828989007def89a9878a50ce3d002c3ef9e9a6", "ref_doc_id": "00e68c43-8f2c-4ed5-b5ec-e0c71b8f3819"}, "ffbb83c4-370e-4692-826e-a86bbef48dc1": {"doc_hash": "44ed1835b0e365ac7b4163d53ac0a53217d44cf34507b1cf0dc0a842371e9d14", "ref_doc_id": "00e68c43-8f2c-4ed5-b5ec-e0c71b8f3819"}, "57762e71-1462-4735-8d07-d94672b8c357": {"doc_hash": "9c016adfebd20b478a08aa2f5f267dc63ee4bb47a6583cb8e8677832abc3b1e8", "ref_doc_id": "61eb3840-5d98-4260-8e52-318ba943edcf"}}, "docstore/data": {"03a7050b-f0d8-4a33-b9e8-d4f82439cca0": {"__data__": {"text": "On-call Log\nOpen on-call bugs/tasks \nJIRA List\nOn-call Incident Log Key Summary T Created Updated Due Assignee Reporter P Status Resolution\nCOLL-2428ON-CALL: invalid_refresh_token error for Tenant 12956\n(crowdstrike)15/May/23 11:29 PM 15/May/23 11:31 PM Harinandan\nChintamreddyParanthaman\nKarthikeyanTO DO Unresolved\nCOLL-2308Find rootcause for 404 while brocessing slack event\nduring cross brokering24/Apr/23 10:57 AM 24/Apr/23 10:58 AM Harinandan\nChintamreddyAnil Ganivada TO DO Unresolved\nCOLL-2294Debug 500 response from sentiment collector endpoint\n\"/sentiment-collector/api/messages\"19/Apr/23 12:14 AM 19/Apr/23 12:16 AM Harinandan\nChintamreddyAnil Ganivada TO DO Unresolved\nDISC-2807[Investigate] 500 error due connection reset by peer for\nvalidate user call11/Apr/23 10:51 PM 11/Apr/23 10:58 PM ritu vaidya Pradeep TO DO Unresolved\nCOLL-2264Alert for : [Prod] [Collab] /slack/slash/addressBook took\nmore than 3 seconds11/Apr/23 10:25 PM 18/Apr/23 3:28 AM Harinandan\nChintamreddyGuruprasad\nShenoyTO DO Unresolved\nCOLL-2084Alert for : [Prod] [Collab] Failed brokering message to\nSlack14/Mar/23 11:24 PM 03/May/23 11:59 PM Harinandan\nChintamreddyShivam\nBhosaleTO DO Unresolved\nCOLL-1992[On-Call] Failure to extend pulse for messages deleted\non Slack, but not on Axm.28/Feb/23 12:42 PM 28/Feb/23 4:15 PM Harinandan\nChintamreddyRama\nTaranigantyTO DO Unresolved\nCOLL-1904[On-call] [Investigate] Failed to refresh token due to\nHttpMessageNotReadableException14/Feb/23 12:40 PM 14/Feb/23 12:41 PM Harinandan\nChintamreddyRama\nTaranigantyTO DO Unresolved\nCOLL-1898[On-call] [Investigate] Failed brokering message to Slack\nwith a 40413/Feb/23 12:17 PM 23/Feb/23 10:30 AM Sagarika\nNangiaRama\nTaranigantyTO DO Unresolved\nDAT-697 [On-call] [Investigate] Is there a need to tune the API\ngranularity or # of connections in the Hikari pool to avoid\nthe drop in IDLE connections26/Oct/22 3:07 PM 13/Feb/23 12:20 PM Satya Vummidi Rama\nTaranigantyTO DO Unresolved\nCOLL-1289[on-call] [Document] If we see a Slack Operation we\ncannot handle, there needs to be a process to follow to\ntriage it01/Oct/22 4:31 PM 13/Feb/23 12:20 PM Harinandan\nChintamreddyRama\nTaranigantyTO DO Unresolved\nDISC-1422[On-call] Prod ES yellow status alarm: Increase the\nnumber of data points or duration to consider before\ncreating an alarm19/Sep/22 9:53 PM 13/Feb/23 12:20 PM Pradeep Pradeep TO DO Unresolved\nCOLL-928 Add Details for runboook entry for COLLAB-FAILED-\nMSG-TO-TEAMS-OR-SLACK01/Jul/22 9:18 AM 13/Feb/23 12:20 PM Harinandan\nChintamreddyManoj\nInukolunuTO DO Unresolved\n13 issues\nJun 7, 2023 @Satya Vummidi Threshold Violated: GLOBAL-JVM-HEAP-THRESHOLD It looks like a false positive spike. We may need to update the trigger \ncriteria to tone it down a little bit.", "doc_id": "03a7050b-f0d8-4a33-b9e8-d4f82439cca0", "embedding": null, "doc_hash": "1e7ddc74e8d4464205a6644eb228753e21d7a80ddaa201ec55bfbb3ebdde4fcd", "extra_info": {"page_label": "1", "file_name": "OnCall.pdf"}, "node_info": {"start": 0, "end": 2740, "_node_type": "1"}, "relationships": {"1": "d6496709-cfc5-4485-93e6-2c6905c9d395", "3": "33630944-a8b9-4d7e-8d3f-0381d2c4e586"}}, "__type__": "1"}, "33630944-a8b9-4d7e-8d3f-0381d2c4e586": {"__data__": {"text": "We may need to update the trigger \ncriteria to tone it down a little bit. Started a discussion in Slack me\nssage from Satya Vummidi in #reg-alerts-prod Date Responder Notes Related JIRAs/identified actions\n", "doc_id": "33630944-a8b9-4d7e-8d3f-0381d2c4e586", "embedding": null, "doc_hash": "bd205fbaf9edc0054ec276d8b090a4d142de9aa42f4a6b0966d4a3b662a46327", "extra_info": {"page_label": "1", "file_name": "OnCall.pdf"}, "node_info": {"start": 2667, "end": 2873, "_node_type": "1"}, "relationships": {"1": "d6496709-cfc5-4485-93e6-2c6905c9d395", "2": "03a7050b-f0d8-4a33-b9e8-d4f82439cca0"}}, "__type__": "1"}, "69adae88-db95-4f48-81df-ac19ca8077e3": {"__data__": {"text": "Jun 6, 2023 @Prashant Kumar Jha [Prod] [Disc] Report Partial Generation Failed DISC-2723: [ON-CALL] [Partial Report Generation] Report genera\ntion API failure: unauthorizedTO DO \n31 May 2023 @Gaurav Dahiya [Prod] [Collab] Failed brokering message to collab COLL-2528: throw 404 from TM and 401 from consuming service\ns if service token is not foundTO DO \nSlack thread - Slack message from Opsgenie in #opsgenie-alerts \n29 May 2023 @Prabhu Pant [Prod] [Collab] Unable to install app in teams Raised during testing in production\n27 May 2023 @Prabhu Pant ALARM: \"cdk-rds-alarms-production-\naslv2commonproductionrdsalarmslowfreeablem...\" in US West \n(Oregon)Raised due to low primary memory in the RDS instance at that time. \nSlack message from seshan in #on-call \n27 May 2023 @Prabhu Pant [LightStep] Critical Threshold Violated: GLOBAL-MAX-FILES\n[LightStep] Resolved: GLOBAL-MAX-FILESPossibly raised from cloud-config-server during the deployment as \nGitlab was not accessible and the service was deployed twice. \nVerified that cloud-config server is working in prod and alert wasn\u2019t \nre-raised later on Slack message from Anil Kumar Ganivada in #o\npsgenie-alerts \n27 May 2023 @Prabhu Pant Alert for : [Prod][Plat] Service Restarting Repeatedly This alert was raised because a platform service was restarted to \ncheck automation tests Slack message from Logz Alerts in #critica\nl-alerts-prod \n26 May 2023 @Prabhu Pant CloudWatch alarm - cdk-rds-alarms-production-\naslv2discoveryproductionrdsalarmslowfreeablememoryalarmC53\nE0730-A4HRWXNQRI1COpen a ticket with AWS to increase the resources on this cluster - \nSlack message from Slackbot in #reg-alerts-prod \nMay 22, 2023 @Anzar Slack message from Logz Alerts in #critical-alerts-prod \n@Mohith disabled the alert for the sys test tenant: 1932\nCOLL-2243: Sys test triggering alertsTO DO \nMay 18, 2023 @Paranthaman Karthikeyan [Logz.io: Cloud Observability & Security Powered by Open Source \n] Alert for : [Prod] [Collab] CRUD failed for Survey InstanceLooks the product instance 19026 is no longer existing or is deleted \nbut pulse manage survey instance has a reference to it. \nThe tenant 1932 is not a real customer. Closing the ticket.\n1\n2\n3\n4\n5\n6\n7\n8TaskContext(customerTenantId=17686, vendorTenantId=176\nteamsOnboardingV2=false, genericTenantId=17687, pvtId=\nUser {\n emailId: tony.stark@zw8yb.onmicrosoft.com\n persona: 2000\n name: user1\n}]),\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13An alert has been triggered due to an event in your Ax\nHigh severityHigh severity\n[Prod] [Collab] CRUD failed for Survey Instance\n[Int] [Collab] CRUD failed\nMay 22, 2023, 3:57 AM to May 22, 2023, 4:12 AM (UTC)\nAlert event samples\nSample 1 event out of 1:\n[ {\n \"date\" : 1.684728670693344E9,\n \"exception\" : {\n \"exception_class\" : \"org.springframework.web.reacti\n \"exception_message\" : \"404 Not Found from GET http:\n \"stacktrace\" :", "doc_id": "69adae88-db95-4f48-81df-ac19ca8077e3", "embedding": null, "doc_hash": "04291c6d919c46bce3de41cfd59054e6f6749fbebe20fe95c507d9cc7725c4d5", "extra_info": {"page_label": "2", "file_name": "OnCall.pdf"}, "node_info": {"start": 0, "end": 2865, "_node_type": "1"}, "relationships": {"1": "7bc79ea6-68b3-4bf5-8112-31e1aa58d448", "3": "21d0b6b7-28cf-437e-aef6-522813d4e0a1"}}, "__type__": "1"}, "21d0b6b7-28cf-437e-aef6-522813d4e0a1": {"__data__": {"text": ": \"404 Not Found from GET http:\n \"stacktrace\" : \"org.springframework.web.reactive.fu\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23\n24\n25\n26\n27\n28\n29Description : [Int] [Collab] CRUD failed\nEvent Samples : Sample 1 event out of 1:\n[ {\n\"date\" : 1.684383028945186E9,\n\"exception\" : {\n\"exception_class\" : \"org.springframework.web.reactive.\n\"exception_message\" : \"404 Not Found from GET http://c\n\"stacktrace\" : \"org.springframework.web.reactive.funct\n},\n\"logzio-signature\" : -1076969265,\n\"message_obj\" : {\n\"msg\" : \"Error reading pulse survey instance by id=147\n\"tenantId\" : 1932\n},\n\"source\" : \"stdout\",\n\"_logzio_logceptions\" : [ \"490f4bf7c48f4e57171fb9dbd5f\n\"type\" : \"fargate\",\n\"file\" : \"PulseSurveyInstancesApiService.java\",\n\"env_name\" : \"Production\",\n\"LogSize\" : 6759,\n\"line_number\" : 204,\n\"@version\" : 1,\n\"logger_name\" : \"com.axm.collaboration.pulse.manager.s\n\"class\" : \"com.axm.collaboration.pulse.manager.service\n\"source_host\" : \"ip-10-55-10-115.us-west-2.compute.int\n\"method\" : \"getPulseSurveyInstanceById\",\n\"level\" : \"ERROR\",\n\"mdc\" : {\n\"AWS-XRAY-TRACE-ID\" : \"1-6465a534-bb2fc63923b8da7bd31f", "doc_id": "21d0b6b7-28cf-437e-aef6-522813d4e0a1", "embedding": null, "doc_hash": "442829f5592cb598491ad09a9bf802b5ffd05c35f0acd8ed778933a106b6fbfd", "extra_info": {"page_label": "2", "file_name": "OnCall.pdf"}, "node_info": {"start": 2816, "end": 3923, "_node_type": "1"}, "relationships": {"1": "7bc79ea6-68b3-4bf5-8112-31e1aa58d448", "2": "69adae88-db95-4f48-81df-ac19ca8077e3"}}, "__type__": "1"}, "792e2728-bdc4-4e54-ad72-55e359056616": {"__data__": {"text": "May 17, 2023 @Shivam Parashar (Unlicensed) Repeated issue as below.\n[Logz.io: Cloud Observability & Security Powered by Open Source \n] Alert for : [Prod] [Collab] Get Access Token errors\n[invalid_token_response] An error occurred while \nattempting to retrieve the OAuth 2.0 Access Token \nResponse: Error while extracting response for type [class \norg.springframework.security.oauth2.core.endpoint.OAuth2Ac\ncessTokenResponse] and content type \n[application/json;charset=utf-8]; nested exception is \norg.springframework.http.converter.HttpMessageNotReadableE\nxception: An error occurred reading the OAuth 2.0 Access \nToken Response: Could not convert {ok=false, \nerror=invalid_refresh_token, warning=superfluous_charset, \nresponse_metadata={warnings=[superfluous_charset]}} to \nOAuth2AccessTokenResponse; nested exception is \norg.springframework.http.converter.HttpMessageConversionEx\nception: Could not convert {ok=false, \nerror=invalid_refresh_token, warning=superfluous_charset, \nresponse_metadata={warnings=[superfluous_charset]}} to \nOAuth2AccessTokenResponse(Same as below) \nTenant: 12,956 (Crowdstrike)\nTracking it here:COLL-2428: ON-CALL: invalid_refresh_token err\nor for Tenant 12956 (crowdstrike)TO DO \nMay 16, 2023 @Paranthaman Karthikeyan [Logz.io: Cloud Observability & Security Powered by Open Source \n] Alert for : [Prod] [Collab] Get Access Token errors\n[invalid_token_response] An error occurred while \nattempting to retrieve the OAuth 2.0 Access Token \nResponse: Error while extracting response for type [class \norg.springframework.security.oauth2.core.endpoint.OAuth2Ac\ncessTokenResponse] and content type \n[application/json;charset=utf-8]; nested exception is \norg.springframework.http.converter.HttpMessageNotReadableE\nxception: An error occurred reading the OAuth 2.0 Access \nToken Response: Could not convert {ok=false, \nerror=invalid_refresh_token, warning=superfluous_charset, \nresponse_metadata={warnings=[superfluous_charset]}} to \nOAuth2AccessTokenResponse; nested exception is \norg.springframework.http.converter.HttpMessageConversionEx\nception: Could not convert {ok=false, \nerror=invalid_refresh_token, warning=superfluous_charset, \nresponse_metadata={warnings=[superfluous_charset]}} to \nOAuth2AccessTokenResponseTenant: 12,956 (Crowdstrike)\nCan be tracked via COLL-2428: ON-CALL: invalid_refresh_token \nerror for Tenant 12956 (crowdstrike)TO DO \nMay 11, 2023 @Shivam Bhosale ALARM: \"stepfunction-alarms-production-\nStatemachinetenancytenantdeletion112E...\" in US West (Oregon)Already ticket exists.\nPLAT-1999: [Prod] Cleanup issue for system testsTO DO \nMay 8, 2023 @Sanjiv Ranjan stepfunction-alarms-production-Statemachinetenancytenantdeletion Generated by System test. \nPLAT-1999: [Prod] Cleanup issue for system testsTO DO \nMay 8, 2023 @Sanjiv Ranjan [Prod] [Disc] Report Generation Failed - \n\"message\" : \"Updated status as FAILED\",\n\"requestId\" : \"b631ae1f-126f-5ee3-b167-f2cd6b77f3b1\",\n\"responseData\" : {\n\"reportFormat\" : \"plain_text\",\n\"reportId\" : 185,\n\"reportUrl\" : \"1932/report_details_lKA1MaECut_1683519206621.pdf\",\n\"status\" : \"FAILED\"System", "doc_id": "792e2728-bdc4-4e54-ad72-55e359056616", "embedding": null, "doc_hash": "468aa6ba5b142eaf477fc77a16ac3860eb0a697cb185d98efe5952334915c1d9", "extra_info": {"page_label": "3", "file_name": "OnCall.pdf"}, "node_info": {"start": 0, "end": 3081, "_node_type": "1"}, "relationships": {"1": "57018674-bf81-4ad7-940b-47bc8f22a82b", "3": "6f1adeda-e4d0-4b96-b2f1-57def8904cb6"}}, "__type__": "1"}, "6f1adeda-e4d0-4b96-b2f1-57def8904cb6": {"__data__": {"text": ": \"FAILED\"System test(1932) - Fix not deployed in prod yet.\nDISC-2836: Reporting Lambda: TimeoutError: Navigation timeout \nof 30000 msDONE \nUI-1945: Timeout while exporting qualitative comments from UI \nDONE \nApr 26, 2023 @Syed Ummar Farooqh [Prod] [Plat] ERROR logs > 100 in 15mins\nRun book entry\nApr 26, 2023, 3:27 PM to Apr 26, 2023, 3:42 PM (UTC)\nAlert event samplestenantId: 11923 (mattel)\nIssue: COLL-2297: Handle or supress error log for pulse survey fil\nter failureDONE \nSlack thread: Slack message from Anil Kumar Ganivada in #on-ca\nll \n30\n31\n32\n33\n34\n35\n36\n37\n38\n39\n40\n41\n42\n43\"requestId\" : \"98d497bd-c77c-4019-94d0-3ec164cdbb0e\",\n\"span_id\" : \"8444a8a663ee5401\",\n\"trace_flags\" : \"01\",\n\"trace_id\" : \"6465a534bb2fc63923b8da7bd31f4d84\"\n},\n\"ecs_task_definition\" : \"pulsemanagerstackproductionpu\n\"tags\" : [ \"_logz_http_bulk_json_8070\" ],\n\"ecs_task_arn\" : \"arn:aws:ecs:us-west-2:643306803378:t\n\"@timestamp\" : \"2023-05-18T04:10:28.943+0000\",\n\"container_name\" : \"pulse-manager-task-container\",\n\"thread_name\" : \"http-nio-8080-exec-38\",\n\"ecs_cluster\" : \"pulse-manager-stack-production-pulsem\n\"container_id\" : \"7d2ae71648394ee0a8b6b763858fc2a1-585\n} ] \n", "doc_id": "6f1adeda-e4d0-4b96-b2f1-57def8904cb6", "embedding": null, "doc_hash": "ac81899b7dbe7fc3f0421bc53a447ed09c476c48ace64bf033962da90442f5c8", "extra_info": {"page_label": "3", "file_name": "OnCall.pdf"}, "node_info": {"start": 3065, "end": 4328, "_node_type": "1"}, "relationships": {"1": "57018674-bf81-4ad7-940b-47bc8f22a82b", "2": "792e2728-bdc4-4e54-ad72-55e359056616"}}, "__type__": "1"}, "07aa42dc-7b17-4b9f-848a-181c4ec7e77f": {"__data__": {"text": "The following have met the condition:\n[ {\n \"container_name\" : \"pulse-manager-task-container\",\n \"message_obj.tenantId\" : \"11923\",\n \"count\" : 102.0\n} ]\nApr 24, 2023 @Anil Ganivada #549: [Logz.io] Alert for : [Prod] [Collab] Failed brokering \nmessage to Slack\nDescription : #COLLAB-MB-FAILED-DELIVERING-MESSAGE-TO-\nSLACK\nEvent Samples : Sample 2 events out of 2:\n[ {\n \"date\" : 1.682352822403735E9,\n \"exception\" : {\n \"exception_class\" : \n\"com.axm.collaboration.message.broker.exception.MessageBrokerEx\nception\",\n \"exception_message\" : \"Exception while replying to the activity in \nteams.\",\n \"stacktrace\" : \n\"com.axm.collaboration.message.broker.exception.MessageBrokerEx\nception: Exception while replying to the activity in teams.\\n\\tat \ncom.axm.collaboration.message.broker.teams.channel.TeamsBotServi\nce.replyMessage(TeamsBotService.java:298)\\n\\tat \ncom.axm.collaboration.message.broker.teams.service.TeamsMessagi\nngService.postReaction(TeamsMessagingService.java:154)\\n\\tat \ncom.axm.collaboration.message.broker.slack.handler.SlackReactionH\nandler.handleEvent(SlackReactionHandler.java:43)\\n\\tat \ncom.axm.collaboration.message.broker.slack.handler.SlackReactionH\nandler.handleEvent(SlackReactionHandler.java:17)\\n\\tat \ncom.axm.collaboration.message.broker.slack.Brokering failed while finding mappings for 2 reactions \n\u201cack-splunk\u201d => \nhttps://app.logz.io/#/goto/d7d81770f45a1ce54f75899b0f361fc8?\nswitchToAccountId=389045\n\u201cthanksplunk\u201d => \nhttps://app.logz.io/#/goto/c4064a89b23405c36abd8bd944ee4352?\nswitchToAccountId=389045\nbased on the thread Slack message from Nayan Srivastava in #o\nn-call we are already sending message when we are unable to find \nmapped emoji. However, we were not able to decode the 404 \nresponse from bot added COLL-2308: Find rootcause for 404 whil\ne brocessing slack event during cross brokeringTO DO to \ninvestigate this issue further\nApr 20, 2023 @Anil Ganivada [Prod] [Plat] ERROR logs > 100 in 15mins\nRun book entry\nApr 20, 2023, 12:54 PM to Apr 20, 2023, 1:09 PM (UTC)\nAlert event samples\nThe following have met the condition:\n[ {\n \"container_name\" : \"pulse-manager-task-container\",\n \"message_obj.tenantId\" : \"8677\",\n \"count\" : 124.0\n} ]COLL-2297: Handle or supress error log for pulse survey filter fail\nureDONE \n \nslack thread: Slack message from Anil Kumar Ganivada in #on-ca\nll \nApr 18, 2023 @Anil Ganivada #COLLAB-ERROR-RESPONSES-TO-TEAMS-OR-SLACK\nApr 18, 2023, 4:57 PM to Apr 18, 2023, 5:12 PM (UTC)\nAlert event samples\nThe following have met the condition:\n[ {\n \"message_obj.RequestURI\" : \"/sentiment-collector/api/messages\",\n \"count\" :", "doc_id": "07aa42dc-7b17-4b9f-848a-181c4ec7e77f", "embedding": null, "doc_hash": "e293beddafaeba9c2e7920144bfa4f83273e02ec83f6018e14e50352775b4066", "extra_info": {"page_label": "4", "file_name": "OnCall.pdf"}, "node_info": {"start": 0, "end": 2693, "_node_type": "1"}, "relationships": {"1": "04678987-bdb0-4922-a081-c6066b190cff", "3": "d14ad41a-0e46-4fb9-b979-8973ba836de4"}}, "__type__": "1"}, "d14ad41a-0e46-4fb9-b979-8973ba836de4": {"__data__": {"text": ": \"/sentiment-collector/api/messages\",\n \"count\" : 2.0\n} ]COLL-2294: Debug 500 response from sentiment collector endpoi\nnt \"/sentiment-collector/api/messages\"TO DO \n \nSlack thread: Slack message from Anil Kumar Ganivada in #on-ca\nll \nApr 18, 2023 @Anil Ganivada Critical Threshold Violated: COLLAB-SLACK-INCOMING-\nREQUEST-RESPONSE-TIME\nProject axiamatic-prod-1067bb71\nAlert COLLAB-SLACK-INCOMING-REQUEST-RESPONSE-TIME\nDescription\nIf we take more than 3 seconds we will start seeing errors in slack bot\nExpression\nCritical Threshold Violated: alert 'COLLAB-SLACK-INCOMING-\nREQUEST-RESPONSE-TIME' is above 3 (value is 4.82)Subsequent operation on same path succeeded \nhttps://app.logz.io/#/goto/7d5e8312cc8bd5fe89c71625455c06\ne6?switchToAccountId=429760 \nmajor bottleneck was due to the call GET /message-\nbroker/api/v1/broker/pvt-lookup/slack?\nteamId=T02649E326S&channelId=C053A8RTCP9 which took about \n4.3 secs updating findings in COLL-2264\n", "doc_id": "d14ad41a-0e46-4fb9-b979-8973ba836de4", "embedding": null, "doc_hash": "6522631f31a4eb34a2c2b544744221bb4786da92958151c2bdcbf5885c718333", "extra_info": {"page_label": "4", "file_name": "OnCall.pdf"}, "node_info": {"start": 2644, "end": 3586, "_node_type": "1"}, "relationships": {"1": "04678987-bdb0-4922-a081-c6066b190cff", "2": "07aa42dc-7b17-4b9f-848a-181c4ec7e77f"}}, "__type__": "1"}, "e5834cdd-0e9d-484d-a7e8-721644c8e119": {"__data__": {"text": "Apr 18, 2023 @Sanjiv Ranjan ERROR logs > 100 in 15mins. {\n\"container_name\" : \"pulse-manager-task-container\",\n\"message_obj.tenantId\" : \"8677\",\n\"count\" : 124.0\n} ]Already toned down log level to WARN - Fix is available in INT .\nApr 17, 2023 @Pradeep #539: ALARM: \"stepfunction-alarms-production-\nproductionTEAMSCONNECTstepfunctionala...\" in US West (Oregon)\nconnect-api failed for system test tenant due to pvt getting deleted. \nthis could be due parallel execution of tests.TEST-739: [on-call] Investigate step function failure in prod in test \ntenant 3210DONE \nApr 14, 2023 @Pradeep 404 error on connected-products API in actions tab in web\nSlack message from Aryan Nair in #on-call \nThis was due to a stale entry in MB , we can use the new table in \ncore-data which has pvt-vvt mapping instead. Created a tacker for \nAPPs to move the APIDISC-2827: [on-call] Move connected products call from message \nbroker to core-data DONE \nApr 12, 2023 @Guruprasad Shenoy COLLAB-ERROR-RESPONSES-TO-TEAMS-OR-SLACK\nSlack message from Logz Alerts in #reg-alerts-prod COLL-1249: [On-call] [Investigate] /sentiment-collector/api/messa\nges is throwing JSONParseException and returning 401DONE \nCOLL-2269: Create 3rdparty repo for https://github.com/microsoft/\nbotbuilder-java to leverage latest fixes pushed to itDONE \nApr 12, 2023 @Guruprasad Shenoy COLLAB-SLACK-INCOMING-REQUEST-RESPONSE-TIME\nActual Value\n3.14\nAttributes\napp:sentiment-collector, env:production, uri:/slack/slash/addressBook\nSlack message from Lightstep Alerts in #critical-alerts-prod \nRCA : TBDThe command worked on subsequent attempt. \nFiled Jira for tracking\nCOLL-2264: Alert for : [Prod] [Collab] /slack/slash/addressBook to\nok more than 3 secondsTO DO \nApr 11, 2023 @Pradeep Remove unnecessary check pvtAssociations.pvt.id!=null which \nprobably is causing issues\nslack: Slack message from Rama Taraniganty in #on-call DISC-2808: [on-call] Remove unnecessary check pvtAssociation\ns.pvt.id!=nullDONE \nApr 11, 2023 @Pradeep There was a failure while adding users. Call failed on url \n'/dashboard-app/api/v1/async/verify/pvt-\nuser/status/validateUsers:b4687e0d-e407-42c4-a391-\n2f3e710bf495'\nThis seems to be due to connection reset issues that we have seen \nwith reports as well. \ntraceid - 64357c9def4d953829939cadf8851e7e\nslack: Slack message from Anil Kumar Ganivada in #on-call Filed Jira for investigating further - DISC-2807: [Investigate] 500 e\nrror due connection reset by peer for validate user callTO DO \nApr 11, 2023 @Pradeep Exception on onTeamsUserEvent Already filed - COLL-1739: Production Exception: No value prese\nntTO DO \nApr 4, 2023 @Harinandan Chintamreddy [Prod] [Disc] Report Partial Generation Failed\nSlack message from Logz Alerts in #critical-alerts-prod \nRCA: TBD \nApr 4, 2023 @Harinandan Chintamreddy [Prod] [Collab] CRUD failed for Survey Instance\nApr 4, 2023, 1:32 PM to Apr 4, 2023, 1:47 PM (UTC)\n \"axm.user\" : \"system_user@axiamatic.com\",\nNo instances found for query filter", "doc_id": "e5834cdd-0e9d-484d-a7e8-721644c8e119", "embedding": null, "doc_hash": "1d176f65dedef8d5ad0687715f9c339683b887090d0401a901c6c6978b0feb9a", "extra_info": {"page_label": "5", "file_name": "OnCall.pdf"}, "node_info": {"start": 0, "end": 2960, "_node_type": "1"}, "relationships": {"1": "130a58d8-6265-4783-b0a6-056344dacdb8", "3": "4cc6e453-d8cb-4316-9f00-1ad8fc6152ad"}}, "__type__": "1"}, "4cc6e453-d8cb-4316-9f00-1ad8fc6152ad": {"__data__": {"text": ": \"system_user@axiamatic.com\",\nNo instances found for query filter \npulseSurvey.productInstanceId==3695;pulseSurvey.tenantId==8677\nSlack message from Logz Alerts in #critical-alerts-prod \n \n[Prod] [Collab] CRUD failed for Survey Instance\nApr 4, 2023, 2:58 PM to Apr 4, 2023, 3:13 PM (UTC)\n \"axm.user\" : \"system_user@axiamatic.com\",\nNo instances found for query filter \npulseSurvey.productInstanceId==3695;pulseSurvey.tenantId==8677\nSlack message from Logz Alerts in #critical-alerts-prod \n \n[Prod] [Collab] CRUD failed for Survey Instance\nApr 4, 2023, 4:05 PM to Apr 4, 2023, 4:20 PM (UTC)\n\"axm.user\" : \"abenjamin@ea.com\", \n", "doc_id": "4cc6e453-d8cb-4316-9f00-1ad8fc6152ad", "embedding": null, "doc_hash": "421638b67a9017a993430a131cb489f7c2e389add8bbd170c41fb9342cfbea24", "extra_info": {"page_label": "5", "file_name": "OnCall.pdf"}, "node_info": {"start": 2894, "end": 3518, "_node_type": "1"}, "relationships": {"1": "130a58d8-6265-4783-b0a6-056344dacdb8", "2": "e5834cdd-0e9d-484d-a7e8-721644c8e119"}}, "__type__": "1"}, "975881aa-a45e-4b2c-83a8-bd6932e4a819": {"__data__": {"text": "No instances found for query filter \npulseSurvey.productInstanceId==8928;endedAt==null;pulseSurvey.ten\nantId==8677\nSlack message from Logz Alerts in #critical-alerts-prod \n \nRCA: This log line should not be alerted on there is a discussion in \nslack regarding this Slack message from Rama Taraniganty in #op\nsgenie-alerts \nEssentially this was a change that app team requested to return 404 \ninstead of empty response and this response is handled as expected\nSlack message from Kiran Marshall in #apps-ui \n \nThe first two occurrences were when we were internally accessing EA \ntenant but @Anil Ganivada confirmed they did not notice any issues \nin the UI\nThe last access was by a user from EA which needs investigation\nApr 4, 2023 @Harinandan Chintamreddy [Prod] [Collab] CRUD failed for Survey Instance\nApr 4, 2023, 12:26 PM to Apr 4, 2023, 12:41 PM (UTC)\nSlack message from Logz Alerts in #critical-alerts-prod \nRCA: This happened when a sys test created tracker to resolve the \nissue\n COLL-2243: Sys test triggering alertsTO DO \nApr 4, 2023 @Harinandan Chintamreddy #521: [Logz.io] Alert for : [PROD] [PLAT] user invitation with \npermissions failed\nSlack message from Logz Alerts in #critical-alerts-prod \n \nRCA: Per @Anil Ganivada this is most likely system test regression \nissue due to change in payload as this request came from user agent \npython \nApr 4, 2023 @Harinandan Chintamreddy #520: [Logz.io] Alert for : [PROD] [PLAT] Update or replace \npermissions failed for user\nRCA: Per @Anil Ganivada this is most likely system test regression \nissue due to change in payload as this request came from user agent \npython also this failure is the same as next alert \nApr 4, 2023 @Harinandan Chintamreddy [Prod] [VMS] DATA-SCORING-SQL-DATA-ACCESS-ERROR\nInvestigation is being tracked on this thread\nSlack message from Opsgenie in #opsgenie-alerts \nRCA: TBD@ritu vaidya confirmed the fix is in 0.9.10, but we are looking to \nbackport a HF to 0.9.9\nApps : DISC-2619: Dashboard App : Timeline Filters : Fix the impl \nas it is making O(N) downstream api callsDONE \nUI : UI-1720: Frontend : Update API for timeline filters for Dashbo\nard & Vendor AppDONE \nApr 4, 2023 @Harinandan Chintamreddy [Prod] [Collab] CRUD failed for Survey Instance\nSlack message from Logz Alerts in #critical-alerts-prod \n \nThis error occurred for EA tenant ID 8677\n \nRCA: Per @ritu vaidya This is an intermittent/transient issue when \npulse app was still 0.9.8 and pulse-manager was 0.9.9 \nFrom prod-deployments\n#pulse-manager-service was deployed at 4:50 PM\nSlack message from Deployer in #prod-deployments \n#pulsesurvey-app-service was deployed at 5:29 PM\nSlack message from Deployer in #prod-deployments \n \nAnd the issue was seen at 17:10:31.357 \nApr 4, 2023 @Harinandan Chintamreddy [Prod][Plat] Service Restarting Repeatedly\n \"container_name\" : \"reporting-task-container\",\nSlack message from Logz Alerts in #critical-alerts-prod \nRCA: This was a resource issue per @Anil Ganivada whcih should \nnow be resolved\n \n", "doc_id": "975881aa-a45e-4b2c-83a8-bd6932e4a819", "embedding": null, "doc_hash": "8a28314bb5126884074d743b913cdfbee6aeecb9683fb8fe916f6b87e89ef6ee", "extra_info": {"page_label": "6", "file_name": "OnCall.pdf"}, "node_info": {"start": 0, "end": 2995, "_node_type": "1"}, "relationships": {"1": "bd4335e6-72c5-40f0-ac46-bfd30bc3b26f"}}, "__type__": "1"}, "26d56212-a665-414f-803a-387a807bffa0": {"__data__": {"text": "Apr 4, 2023 @Harinandan Chintamreddy [Prod][Plat] Service Restarting Repeatedly\n \"container_name\" : \"score-provider-task-container\",\nSlack message from Logz Alerts in #critical-alerts-prod \n \nRCA: This looks like issue in prod deployment \nApr 3, 2023 @ritu vaidya #520: [Logz.io] Alert for : [PROD] [PLAT] Update or replace \npermissions failed for userPLAT-1880: [On call] : Runtime Exception while updating the user \npermissionTO DO \nMar 28, 2023 @Nayan Srivastava [Prod] [Disc] Report Partial Generation Failed DISC-2723: [ON-CALL] [Partial Report Generation] Report genera\ntion API failure: unauthorizedTO DO \nMar 28, 2023 @ritu vaidya [Prod] [Collab] Unable to create team and channel in teams\nexception_message\" : \"Error code: BadRequest\\nError message: \nFailed to execute Templates backend request \nCreateTeamFromTemplateRequest. Request Url: \nhttps://teams.microsoft.com/fabric/amer/templates/api/team,Need to add teams name length validation : COLL-2106: Micros\noft - Teams name length ValidationTO DO \nMar 21, 2023 @Gaurav Dahiya [PROD][PLAT] ONBOARDING_ERROR_IN_INFO_CALL Closing this after discussion on slack - Slack message from Logz \nAlerts in #critical-alerts-prod \nMar 21, 2023 @Sanjiv Ranjan ALARM: \"stepfunction-alarms-production-\nproductionSLACKCONNECTstepfunctionalaSlack channel creation is failing with invalid chars . Tracking ticket \n: COLL-2113: Slack channel creation is failing with invalid chars \nTO DO \nMar 20, 2023 @Sanjiv Ranjan [Prod] [Collab] Unable to create team and channel in teams\nexception_message\" : \"Error code: BadRequest\\nError message: \nFailed to execute Templates backend request \nCreateTeamFromTemplateRequest. Request Url: \nhttps://teams.microsoft.com/fabric/amer/templates/api/team,Need to add teams name length validation : COLL-2106: Micros\noft - Teams name length ValidationTO DO \nMar 19, 2023 @Sanjiv Ranjan Alert for : [Prod][Collab] Error responses sent to slack or teams 401 : POST /sentiment-collector/api/messages\n \nMar 14, 2023 @Shivam Bhosale Alert for : [Prod] [Collab] Failed brokering message to Slack COLL-2084: Alert for : [Prod] [Collab] Failed brokering message to \nSlackTO DO \nThis happned due to corrupted data. Collab team is looking into this \nissue.\nMar 14, 2023 @Paranthaman Karthikeyan [Prod] [Disc] Report Partial Generation Failed Seems a 500 (Internal server error) when pulsesurvey-\napp/api/v1/pulse-survey-tracking/pulse-survey-\ninstances/dimensions/performance?\nproductInstanceIdQuery=8928&pulseSurveyInstanceIdList=10290&p\nulseSurveyInstanceIdList=10291 was called. \nTagged apps team to confirm if it was an issue overall the message \nsay report generation completed. Conversations recorded as part of \nslack thread:\nSlack message from Logz Alerts in #critical-alerts-prod \nThe below trackers are created:\n DISC-2626: [ON_CALL]: Pulse App: Null pointer exception encou\nntered at the time of report generation for EADUPLICATE \nDAT-903: Discrepancy between api response - when called from r\neporting service vs UI DONE \nMar 14, 2023 @Paranthaman Karthikeyan [Prod] [Plat] ERROR logs > 100 in 15mins This was due to sentiment-collector. EA closed their pulse. Since we \nhad run into issue previously and", "doc_id": "26d56212-a665-414f-803a-387a807bffa0", "embedding": null, "doc_hash": "d7ac5b9c0ab787ad4760d17bb0aadddcf494ad86227d369624429af714871f64", "extra_info": {"page_label": "7", "file_name": "OnCall.pdf"}, "node_info": {"start": 0, "end": 3189, "_node_type": "1"}, "relationships": {"1": "0bd2d94e-126a-4644-8989-aa46455d3788", "3": "ca972543-cc22-4e27-a596-6492703c69ce"}}, "__type__": "1"}, "ca972543-cc22-4e27-a596-6492703c69ce": {"__data__": {"text": "EA closed their pulse. Since we \nhad run into issue previously and had deleted the pulse messages \nthere were issues of message_not_found (74) and we also hit rate \nlimiting 3 times. The expiry message was successfully delivered to \n187 users.\nMar 7, 2023 @Syed Ummar Farooqh \n@Rama Taraniganty [Prod] [Disc] Report Partial Generation Failed Issue with pulse-survey-app, an API call made by reporting to render \nsome data. There is a temprary connection reset which happens \nwhich results in one of the charts/components not being loaded in \nthe report, this must be further investigated.\n(Short-term) DISC-2564: Pulsesurvey app: failed: Connection res\net by peerQA-READY \n(Long term) DISC-2593: [On-call] [Arch] Need to find a way to inc\norporate retries in OpenAPI generated code to prevent reports from \nhaving empty sectionsNOT REQUIRED \nRegenerating should resolve this temporary issue\n", "doc_id": "ca972543-cc22-4e27-a596-6492703c69ce", "embedding": null, "doc_hash": "f423df9dcf495ebde76dc87f0ed83ee90510a32f59cf6074b61c5a2f50ec8489", "extra_info": {"page_label": "7", "file_name": "OnCall.pdf"}, "node_info": {"start": 3123, "end": 4014, "_node_type": "1"}, "relationships": {"1": "0bd2d94e-126a-4644-8989-aa46455d3788", "2": "26d56212-a665-414f-803a-387a807bffa0"}}, "__type__": "1"}, "02048f03-be3c-4ebf-9383-5e85fd3356e1": {"__data__": {"text": "Mar 1, 2023 @Syed Ummar Farooqh [Prod] [Collab] Failed brokering message to Slack COLL-1872: [ON-CALL] : Silently Ignore slack event with subtype \n\"channel_join\" and \"channel_leave\"DONE \nFeb 28, 2023 @Syed Ummar Farooqh [Prod] [Collab] Failed brokering message to Slack COLL-1872: [ON-CALL] : Silently Ignore slack event with subtype \n\"channel_join\" and \"channel_leave\"DONE \nFeb 27,2023 @Anil Ganivada [Prod] [Collab] Failed brokering message to Slack COLL-1872: [ON-CALL] : Silently Ignore slack event with subtype \n\"channel_join\" and \"channel_leave\"DONE \nwill be fixed as part of 0.9.8\nFeb 24,2023: 17:40 IST @Anzar [Prod] [Collab] Failed brokering message to Slack COLL-1872: [ON-CALL] : Silently Ignore slack event with subtype \n\"channel_join\" and \"channel_leave\"DONE \nwill be fixed as part of 0.9.8\nFeb 24,2023 @Anil Ganivada [Prod] [Collab] Failed brokering message to Slack COLL-1872: [ON-CALL] : Silently Ignore slack event with subtype \n\"channel_join\" and \"channel_leave\"DONE \nwill be fixed as part of 0.9.8\nFeb 24,2023 @Anil Ganivada Opsgenie Alert: ALARM: \"stepfunction-alarms-production-\nproductionSLACKCONNECTstepfunctionala...\"Race condition issue on system_test account COLL-1966: Slack c\nhannel creation failed due to race conditionDONE \nFeb 23,2023 @Anil Ganivada Tenancy failed to fetch customers of a vendor Related to perft test calls to tenancy\nFeb 23,2023 @Anil Ganivada Enable API Access errors https://app.logz.io/#/goto/82ab076e3d68bc7005d2b55d9df4a1\n01?switchToAccountId=389045 \nmost likely related to perf test since service was waiting for DB \nconnection\nFeb 23,2023 @Anil Ganivada GLOBAL-HIKARI-IDLE-CONNECTIONS Related to perft test calls to tenancy\nFeb 23,2023 @Anil Ganivada [Prod] [Collab] Failed brokering message to Slack COLL-1872: [ON-CALL] : Silently Ignore slack event with subtype \n\"channel_join\" and \"channel_leave\"DONE \nwill be fixed as part of 0.9.8\nFeb 23,2023 @Anil Ganivada [Prod][Collab] Error responses sent to slack or teams https://app.logz.io/#/goto/b48070f66b0cb7592576c31c2d0a1496?\nswitchToAccountId=389045\nCOLL-1249: [On-call] [Investigate] /sentiment-collector/api/messa\nges is throwing JSONParseException and returning 401DONE \nthis is a known issue - The fix is in the bot SDK 4.15.0-SNAPSHOT \nwhich is not released yet currently we use 4.14.x in our code.\nSlack message from Harinandan Chintamreddy in #on-call \nFeb 22,2023 @Anil Ganivada [Prod] [Collab] Failed brokering message to Slack COLL-1872: [ON-CALL] : Silently Ignore slack event with subtype \n\"channel_join\" and \"channel_leave\"DONE \nwill be fixed as part of 0.9.8\nFeb 21, 2023 @Anil Ganivada [PROD] [PLAT] - Tenancy failed to fetch customers of a vendor This has happened once in prod so far it seems like an exception \ntrigerring only for getAllCustomerLinkedToVendor in tenancy. This \nis not a", "doc_id": "02048f03-be3c-4ebf-9383-5e85fd3356e1", "embedding": null, "doc_hash": "3ec06fd5ac2c5df8dca93e0230688bddf501838001a915f4a72d6fc1af4a78e1", "extra_info": {"page_label": "8", "file_name": "OnCall.pdf"}, "node_info": {"start": 0, "end": 2818, "_node_type": "1"}, "relationships": {"1": "d09c18d3-ac4b-4719-a3f1-9ca73015e9c2", "3": "9cf96cfc-0673-4806-b906-e4dab4f6aa0e"}}, "__type__": "1"}, "9cf96cfc-0673-4806-b906-e4dab4f6aa0e": {"__data__": {"text": "only for getAllCustomerLinkedToVendor in tenancy. This \nis not a major error since the API call itself is a safety measure to \nhandle vendor assignments but we need to figure out the root cause \nand fix the issue - added PLAT-1712: Handle \"Cannot ask for requ\nest attribute - request is not active anymore!\" when tenancy makes a \ncall to core dataDONE to handle this\nFeb 20, 2023 @Pradeep [Prod] [Collab] CRUD failed for Survey Instance Being discussed here - This has happened couple of times. Still \nunder investigation\nFeb 20, 2023 @Pradeep [Prod] [Collab] App not published to AppCatalog\n#448: ALARM: \"stepfunction-alarms-production-\nproductionTEAMSCONNECTstepfunctionala...\" in US West (Oregon)This was due to a new Teams Account where we did not upload the \nprod app. App is uploaded now by bhavana. Regression to be rerun \nto verify.\nSlack message from bhavana in #opsgenie-alerts \nFeb 20, 2023 @Pradeep [Prod] [Collab] Failed brokering message to Slack COLL-1872: [ON-CALL] : Silently Ignore slack event with subtype \n\"channel_join\" and \"channel_leave\"DONE \nCOLL-1901: [On-call] [Investigate] : Getting handler not found for \nFailed brokering message to SlackDUPLICATE \nFeb 16, 2023 @Pradeep \n@Rama Taraniganty [PROD] [PLAT] PERMISSIONS-ERROR-ON-RESOURCE PLAT-1642: Product admin while trying to edit priority - 500 error i\ns thrownDONE \nSlack message from Anil Kumar Ganivada in #critical-alerts-prod \nTemporary fix is to update auth0 user\u2019s metadata add the following \nline in axm_permissions array:\n::customer:::productInstance:\n::readWrite\nFor example:\n", "doc_id": "9cf96cfc-0673-4806-b906-e4dab4f6aa0e", "embedding": null, "doc_hash": "f847cda6d3bfbd372510c419f3c441db5dd3b844749ac665292b54549c535324", "extra_info": {"page_label": "8", "file_name": "OnCall.pdf"}, "node_info": {"start": 2754, "end": 4363, "_node_type": "1"}, "relationships": {"1": "d09c18d3-ac4b-4719-a3f1-9ca73015e9c2", "2": "02048f03-be3c-4ebf-9383-5e85fd3356e1"}}, "__type__": "1"}, "9b16e0e5-8641-4e16-a4f7-67130cdd3a59": {"__data__": {"text": "14759::customer::14759:productInstance:13808::readWrite\nAdditional details:\nSlack message from Anil Kumar Ganivada in #on-call \nB\nFeb 15, 2023 \nFeb 17, 2023 @ritu vaidya \n@Pradeep \n@ritu vaidya #414: [Logz.io] Alert for : [Prod] [Collab] Get Access Token errors\n#420: [Logz.io] Alert for : [Prod] [Collab] Get Access Token errors\n#430: [Logz.io] Alert for : [Prod] [Collab] Get Access Token errors\n#436: [Logz.io] Alert for : [Prod] [Collab] Get Access Token errors\n#437: [Logz.io] Alert for : [Prod] [Collab] Get Access Token errorsTenant: 3209 (anu-slack)\nresponse_metadata={warnings=[superfluous_charset]\nCOLL-1904: [On-call] [Investigate] Failed to refresh token due to \nHttpMessageNotReadableExceptionTO DO \nFeb 14, 2023 \nFeb 15, 2023 (multiple \ntimes)@Rama Taraniganty \n@ritu vaidya #413: [Logz.io] Alert for : [Prod] [Collab] Get Access Token errors\n#419: [Logz.io] Alert for : [Prod] [Collab] Get Access Token errors\n \n[invalid_token_response] An error occurred while \nattempting to retrieve the OAuth 2.0 Access Token \nResponse: Error while extracting response for type [class \norg.springframework.security.oauth2.core.endpoint.OAuth2Ac\ncessTokenResponse] and content type \n[application/json;charset=utf-8]; nested exception is \norg.springframework.http.converter.HttpMessageNotReadableE\nxception: An error occurred reading the OAuth 2.0 Access \nToken Response: Could not convert {ok=false, \nerror=invalid_refresh_token, warning=superfluous_charset, \nresponse_metadata={warnings=[superfluous_charset]}} to \nOAuth2AccessTokenResponse; nested exception is \norg.springframework.http.converter.HttpMessageConversionEx\nception: Could not convert {ok=false, \nerror=invalid_refresh_token, warning=superfluous_charset, \nresponse_metadata={warnings=[superfluous_charset]}} to \nOAuth2AccessTokenResponseTenant: 3209 (anu-slack)\nresponse_metadata={warnings=[superfluous_charset]\nCOLL-1904: [On-call] [Investigate] Failed to refresh token due to \nHttpMessageNotReadableExceptionTO DO \nMdc trace id: 63ebedf85fc7236ae35314f85fc0721e\nMaybe we could log more?\nFeb 14, 2023 \nFeb 15, 2023 @ritu vaidya #411: [Logz.io] Alert for : [Prod] [Collab] Failed brokering message to \nSlack\njava.lang.IllegalArgumentException: Could not find a \nhandler for event at \ncom.axm.collaboration.message.broker.slack.handler.SlackEv\nentHandlerRegistry.handleEvent(SlackEventHandlerRegistry.j\nava:36) at \ncom.axm.collaboration.message.broker.slack.processor.event\n.SlackEventProcessor.processEvent(SlackEventProcessor.java\n:78) at \ncom.axm.collaboration.message.broker.slack.processor.event\n.ClassicSlackEventProcessor.processEvent(ClassicSlackEvent\nProcessor.java:39) at \ncom.axm.collaboration.message.broker.event.common.MessageD\neliveryController.processSlackEvent(MessageDeliveryControl\nler.java:156) at \ncom.axm.collaboration.message.broker.event.common.MessageD\neliveryController.processData(MessageDeliveryController.ja\nva:77) at \njdk.internal.reflect.GeneratedMethodAccessor838.invoke(Unk\nnown Source)COLL-1901:", "doc_id": "9b16e0e5-8641-4e16-a4f7-67130cdd3a59", "embedding": null, "doc_hash": "cfaaada74b10d4e9a4bab7716a674baed2bc3b9ea87aa0d38103027d8d0aae3c", "extra_info": {"page_label": "9", "file_name": "OnCall.pdf"}, "node_info": {"start": 0, "end": 2995, "_node_type": "1"}, "relationships": {"1": "ce7f46b5-953b-4cb8-b961-183b46bc7645", "3": "7f0dd2c8-c705-447e-b1f0-55556cf61ad4"}}, "__type__": "1"}, "7f0dd2c8-c705-447e-b1f0-55556cf61ad4": {"__data__": {"text": "Source)COLL-1901: [On-call] [Investigate] : Getting handler not found for \nFailed brokering message to SlackDUPLICATE \nSlack message from Opsgenie in #opsgenie-alerts \n", "doc_id": "7f0dd2c8-c705-447e-b1f0-55556cf61ad4", "embedding": null, "doc_hash": "22889ef4aaa4e83fb7aa65672e44a170330a352aedc9af9484a65dfa8cd19cf9", "extra_info": {"page_label": "9", "file_name": "OnCall.pdf"}, "node_info": {"start": 2978, "end": 3146, "_node_type": "1"}, "relationships": {"1": "ce7f46b5-953b-4cb8-b961-183b46bc7645", "2": "9b16e0e5-8641-4e16-a4f7-67130cdd3a59"}}, "__type__": "1"}, "7ce57955-6637-4a9a-85e0-3b8d16306141": {"__data__": {"text": "Feb 14, 2023 \nFeb 15, 2023 @ritu vaidya #410: ALARM: \"stepfunction-alarms-production-\nproductionTEAMSCONNECTstepfunctionala...\" in US West (Oregon)\nUnderlying issue is same as \u201cApp not published to AppCatalog\u201d \nFeb 14, 2023 \nFeb 15, 2023 @ritu vaidya #409: [Logz.io] Alert for : [Prod] [Collab] App not published to \nAppCatalog\nError in log : \nResponse body={\u201cerror\u201d:\n{\u201ccode\u201d:\u201cInvalidAuthenticationToken\u201d,\u201cmessage\u201d:\u201cAccess token has \nexpired or is not yet valid.\u201c,\u201dinnerError\u201d:{\u201cdate\u201d:\u201c2023-02-\n14T05:13:29\",\u201crequest-id\u201d:\u201cac16bf7f-bfd9-43a2-9782-\n6ab85f2982ba\u201d,\u201cclient-request-id\u201d:\u201cac16bf7f-bfd9-43a2-9782-\n6ab85f2982ba\u201d}}}, Token expired for tenant fetching new token \nuser=nullSlack message from Ritu Vaidya in #opsgenie-alerts \nSummarizing the discussion here :\n1. There was no \u201cdev\u201d activity/api-calls on this account for > 90 days \nand hence the license expired.\n2. Options :\nDisable this test from suite till we have another account in \nplace\nIgnore this alert going fwd for test tenant\n1. add a new dev account and use the credentials for this test in \nProd/Stage or INT\n2. we need to make sure that some brokering happens on these \naccount otherwise they will be marked as no dev activity and will \nexpire\nLogged TEST-584: [On-call] [Investigate] : Update the system \ntest with valid MS dev account detailsDONE \nFeb 13, 2023 @Rama Taraniganty [Logz.io] Alert for : [Prod] [Collab] Failed brokering message to Slack\nCOLLAB-MB-FAILED-DELIVERING-MESSAGE-TO-SLACK\nFound this in the exception message:https://pinstripe.app.opsgenie.com/alert/detail/0abe40dc-245a-4760-\naeed-6f13e17dbf38-1676318247656/details\nCOLL-1898: [On-call] [Investigate] Failed brokering message to Sl\nack with a 404 TO DO \n13 Feb 2023 @Guruprasad Shenoy Add users to PVT failed for EA when getting user info from slack DISC-2386: Bulk Add user to PVT is failing - SlackDONE \n9 Feb 2023 @Satya Vummidi [LightStep] Critical Threshold Violated: GLOBAL-HIKARI-IDLE-\nCONNECTIONSThis issue happened to Tenancy service. It happened for a very short \ntime but it recovered. \nStarted a slack thread Slack message from Satya Vummidi in #on\n-call \n9 Feb 2023 @Prabhu Pant COLLAB-MB-FAILED-DELIVERING-MESSAGE-TO-SLACK\nhttps://app.logz.io/#/dashboard/osd/discover/?_a=(columns:!\n(message),filters:!(),index:'logzioCustomerIndex*',interval:auto,query:\n(language:lucene,query:'container_name: message-broker-task-\ncontainer AND level: ERROR AND file: \nSlackEventProcessor.java'),sort:!(!('@timestamp',desc)))&_g=\n(refreshInterval:(display:Off,section:0,value:0),time:(from:'2023-02-\n09T04:12:00.000Z',mode:absolute,to:'2023-02-\n09T04:22:00.000Z'))&discoverTab=logz-exceptions-\ntab&accountIds=429760&switchToAccountId=389045Already being tracked here COLL-1722:", "doc_id": "7ce57955-6637-4a9a-85e0-3b8d16306141", "embedding": null, "doc_hash": "ea26818540474a01a0f073875cf1ecb90cce2bf2d3197374a49cf7a5adaf243a", "extra_info": {"page_label": "10", "file_name": "OnCall.pdf"}, "node_info": {"start": 0, "end": 2723, "_node_type": "1"}, "relationships": {"1": "597ca512-6f36-4807-b986-4a1d5acc33ca", "3": "ffdf9f90-fc3a-4461-a76f-81e03fe84ba5"}}, "__type__": "1"}, "ffdf9f90-fc3a-4461-a76f-81e03fe84ba5": {"__data__": {"text": "being tracked here COLL-1722: [ON-CALL]: [Prod] [Colla\nb] Failed brokering message to Slack (Deleting a Slack message )\nDONE \n08 Feb 2023 @Satya Vummidi [Logz.io: Cloud Observability & Security Powered by Open Source \n] Alert for : [Prod] [Collab] Failed brokering message to TeamsAfter investigating this log by querying MS Teams using internal \ntoken, @Harinandan Chintamreddy confirmed it is a welcome \nmessage and safe to ignore it. \nCreated tracker COLL-1845: Build a diagnostic endpoint to compa\nre messages brokered between PVT and VVT and force push a mes\nsage after bug fixesIN PROGRESS \n7 Feb 2023 @Prabhu Pant ALARM: stepfunction-alarms-production-\nproductionTEAMSCONNECTstepfunctionalarmshighexecutionfail\nurealarmA8548853-YWFDBLZBJCAM\nThis also came up during testing tenant 15423 in production\nhttps://app.logz.io/#/dashboard/osd/discover/?_a=(columns:!\n(message),filters:!(('$state':(store:appState),meta:\n(alias:!n,disabled:!f,index:'logzioCustomerIndex*',key:lambda_function\n_name,negate:!f,params:(query:apps-workflow-stack-apps--Raised during testing tenant 15423 in production Slack message f\nrom Anuradha Raman in #on-call \n1\n2\n3\n4\n5\n6\n7\n8Caused by: java.util.concurrent.ExecutionException: com\nat java.base/java.util.concurrent.CompletableFuture\nat java.base/java.util.concurrent.CompletableFuture\nat com.axm.collaboration.message.broker.teams.chann\nat com.axm.collaboration.message.broker.teams.event\nat com.axm.collaboration.message.broker.teams.event\nat java.base/java.util.Optional.ifPresentOrElse(Opt\nat com.axm.collaboration.message.broker.teams.event\n1\n2\n3\n4com.axm.collaboration.message.broker.exception.Mess\nat com.axm.collaboration.message.broker.slack.data.\nat java.base/java.util.Optional.orElseThrow(Optiona\nat com.axm.collaboration.message.broker.slack.data.\n", "doc_id": "ffdf9f90-fc3a-4461-a76f-81e03fe84ba5", "embedding": null, "doc_hash": "b4fd660279f17945d5caced3f06297ba5931d73d5f168cba77ea325e7b016211", "extra_info": {"page_label": "10", "file_name": "OnCall.pdf"}, "node_info": {"start": 2694, "end": 4489, "_node_type": "1"}, "relationships": {"1": "597ca512-6f36-4807-b986-4a1d5acc33ca", "2": "7ce57955-6637-4a9a-85e0-3b8d16306141"}}, "__type__": "1"}, "626bf733-83e0-4372-99f9-1dbf3c28ba09": {"__data__": {"text": "functionappslambdaworkfl-QFv6SE3wgNc3),type:phrase),query:\n(match_phrase:(lambda_function_name:apps-workflow-stack-apps--\nfunctionappslambdaworkfl-\nQFv6SE3wgNc3)))),index:'logzioCustomerIndex*',interval:auto,query:\n(language:lucene,query:''),sort:!())&_g=(filters:!(),refreshInterval:\n(pause:!t,value:0),time:(from:now-2h,to:now))&discoverTab=logz-logs-\ntab&accountIds=429760&switchToAccountId=429760\n7 Feb 2023 @Prabhu Pant [Prod] [Collab] Unable to install app in teams\nThis came up during testing tenant 15423 in production Raised during testing tenant 15423 in production Slack message f\nrom Anuradha Raman in #on-call \nFeb 5, 2023 @Harinandan Chintamreddy #COLLAB-MB-FAILED-DELIVERING-MESSAGE-TO-SLACK\nIt looks like we do not have a handler setup to handle some event type \nbecause which the NPE occurred. Created a tracker\n \nSlack message from Logz Alerts in #critical-alerts-prod COLL-1843: [ON-CALL] NPE when handling a slack web hook ev\nentDONE \nFeb 2, 2023 ,Feb 3, \n2023 @Harinandan Chintamreddy #COLLAB-MB-FAILED-DELIVERING-MESSAGE-TO-SLACK\nThere seems to be an issue when processing delete message events. \n@Sanket Jain is investigating this issue\n \nSlack message from Logz Alerts in #critical-alerts-prod \nSlack message from Logz Alerts in #critical-alerts-prod COLL-1598: Fix log messages to avoid alerting when a delete acti\non is attempted on non-brokered messageDUPLICATE \nCOLL-1722: [ON-CALL]: [Prod] [Collab] Failed brokering messag\ne to Slack (Deleting a Slack message )DONE \nJan 23, 2023 @Satya Vummidi P1 alert related to \u201cUnable to create team and channel in teams\u201d for \nthe tenant 12958 (connect_customer). I\u2019m assuming it is your internal \ntest.\nSlack message from Logz Alerts in #critical-alerts-prod \nhttps://pinstripe.app.opsgenie.com/alert/detail/d734c000-8cdb-4ea4-\na227-54da7db432e9-1674511759532/detailsRCA from @Anzar \nRCA: Graph API to retrieve the primary channel ( general \nchannel) from the newly created team failed with a 404. But \nthe channel is present in the team when checked manually. I \nguess we need to add retry logic to this API as this could be \nsome refresh issue.\nCOLL-1764: [On-call] RCA for Alert: Failing to create tea\nm and channel in TeamsDONE \nJan 19, 2023 @Nayan Srivastava Description : #COLLAB-MB-FAILED-DELIVERING-MESSAGE-TO-\nSLACK\nEvent Samples : Sample 1 event out of 1:\n[ {\n\"date\" : 1.674034475368389E9,\n\"exception\" : {\n\"exception_class\" : \n\"com.axm.collaboration.message.broker.exception.MessageBrokerEx\nception\",\n\"exception_message\" : \"MessageId=1674034468.750409 not found\",\n\"stacktrace\" : \n\"com.axm.collaboration.message.broker.exception.MessageBrokerEx\nception: MessageId=1674034468.750409 not found\\n\\tat \ncom.axm.collaboration.message.broker.slack.data.SlackDataManager.\nlambda$getMappedMessageId$5(SlackDataManager.java:252)\\n\\tat", "doc_id": "626bf733-83e0-4372-99f9-1dbf3c28ba09", "embedding": null, "doc_hash": "250979f309d921145598693fd5749628bea415943ab79ac333d4ae961514b527", "extra_info": {"page_label": "11", "file_name": "OnCall.pdf"}, "node_info": {"start": 0, "end": 2802, "_node_type": "1"}, "relationships": {"1": "1ba7a349-4a28-4423-a013-05d8defe7065", "3": "d5075358-1c6e-4cea-9e52-089839227b0b"}}, "__type__": "1"}, "d5075358-1c6e-4cea-9e52-089839227b0b": {"__data__": {"text": "\njava.base/java.util.Optional.orElseThrow(Optional.java:408)\\n\\tat \ncom.axm.collaboration.message.broker.slack.data.SlackDataManager.\ngetMappedMe\n \nhttps://pinstripe.app.opsgenie.com/alert/detail/24d99cd5-1d68-4791-\nb424-a4b31e462e86-1674034714268/detailsCOLL-1722: [ON-CALL]: [Prod] [Collab] Failed brokering messag\ne to Slack (Deleting a Slack message )DONE \nJan 18, 2023 @Shivam Parashar (Unlicensed) [Logz.io] Alert for : [Prod] [Collab] Enable API Access errors\nEvent Samples : The following have met the condition:\n[ {\n\"message_obj.service\" : \"jira\",\n\"method\" : \"getOauth2TokenWithAuthorizationCode\",\n\"count\" : 1.0\n} ]\nLink to LogZThis was a part of testing on prod.\nAPI to get Oauth2 token for Jira service, but authorization failed.\nHappened for tenant Id: \n14,041\nAuthorization token not found\nInitiated a discussion here : Slack message from Shivam Parasha\nr in #on-call \nJan 18, 2023 @Shivam Parashar (Unlicensed) [Logz.io] Alert for : [Prod] [Collab] Enable API Access errors\nEvent Samples : The following have met the condition:\n[ {\n\"message_obj.service\" : \"jira\",\n\"method\" : \"getOauth2TokenWithAuthorizationCode\",\n\"count\" : 1.0\n} ]This was a part of testing on prod.\nThis is API to get Oauth2 token for Jira service, but authorization \nfailed.\nHappened for tenant Id: \n5,777\nAuthorization failed error=access_denied \n1\n2askContext=TaskContext(customerTenantId=15423, \nvendorTenantId=null, teamsOnboardingV2=true, genericTen\n", "doc_id": "d5075358-1c6e-4cea-9e52-089839227b0b", "embedding": null, "doc_hash": "75592305e804625729dfa9f91bc1405c7e4ec65b537c842e77bea06b52c6fc2c", "extra_info": {"page_label": "11", "file_name": "OnCall.pdf"}, "node_info": {"start": 2803, "end": 4241, "_node_type": "1"}, "relationships": {"1": "1ba7a349-4a28-4423-a013-05d8defe7065", "2": "626bf733-83e0-4372-99f9-1dbf3c28ba09"}}, "__type__": "1"}, "c50c0de2-ac18-4cd7-b256-ada4437b2bda": {"__data__": {"text": "Link to logZerrorDescription=User did not authorize the request \nerrorUri=null\nInitiated a discussion here : Slack message from Shivam Parasha\nr in #on-call \nJan 18, 2023 @Shivam Parashar (Unlicensed) [LightStep] Warning Threshold Violated: COLLAB-SLACK-\nINCOMING-REQUEST-RESPONSE-TIME\nProject Name : axiamatic-prod-1067bb71Took more than 3 seconds to respond to the slack event.\nThere is already an action item in collab to fix this.\nSlack message from Lightstep Alerts in #critical-alerts-prod \nJan 18, 2023 @Shivam Parashar (Unlicensed) Not a severe behaviour according to AWS. Instance will turn back \ngreen shortly. Issue already being tracked here DISC-1422: [On-c\nall] Prod ES yellow status alarm: Increase the number of data points \nor duration to consider before creating an alarmTO DO \nJan 16, 2023 @Satya Vummidi We got below alarm from AWS. \nAlarmName: stepfunction-alarms-production-\nproductionTEAMSCONNECTstepfunctionalarmshighexecutionfailu\nrealarmA8548853-YWFDBLZBJCAMThis alarm is very cryptic, requested in Slack to provide more details \nfor this alarm. \nAt the same time there is an on-boarding issue with Teams \npermissions for tenant ID 14979, probably both are related.\nJan 14 , 2023 @seshan Critical Threshold Violated: GLOBAL-HIKARI-IDLE-CONNECTIONS\nThere was a failover - that happened in aurora common db cluster - \ntriggering this issue - looks like some network issue in connecting to \nstorage . This resulted in multiple servicealerts - global hikari idle \nconnection went down\nEvents:\nLogs:\n Marking the issue as closed\nJan 13,2023 @seshan [Prod] [Collab] Enable API Access errors \nAuthorization failed error=access_denied errorDescription=The user \nhas denied access to the scope(s) requested by the client application. \nerrorUri=null - Based on previous on call log , @Paran you mentioned \nthat we need additional scope and i see that we have already \ndeployed the changes - but now its failed bcoz the requested scope is \ndenied - Below are the details of tenantMarking to as closed - based on discussion\n Slack message from Logz Alerts in #reg-alerts-prod \nJan 13, 2023 @seshan [Prod] [Collab] CRUD failed for Survey Instance : Unable to find \ncom.axm.collaboration.pulse.manager.entity.PulseSurvey with id\nhappening for tenant 14797\ntenant is already deleted via tenant deletion flow ( but there is \nexception for the same - no tenant type with webonly value found)\nas per discussion , tenant deletion is not implemented for PMS\nbut still we are not able to find pulse instance by id\n COLL-1733: ON-CALL: PulseSurveyInstancesApiService throws \n\"Error reading pulse survey instance by id\" DONE \nCOLL-1734: ON-CALL: Message Broker tenant deletion throws e\nxception - No tenantType with value webonly found!!!DONE \n \n \nJan 12, 2023 @seshan COLLAB-MB-FAILED-DELIVERING-MESSAGE-TO-SLACK - Unable \nto enrich Event=SlackEvent\nSlack message from Logz Alerts in #critical-alerts-prod COLL-1724 ON-CALL: NullPointerException while enrich Slack user \nname\nCOLL-1725 ON-CALL: Cleanup of stale entries in message-broker\n1\n2ALARM: \"es-plat-evtmgmt-production-Alarmsclusterstatusy\nUS West (Oregon)\n1\n2\n3\n4January 14, 2023, 12:14 (UTC+05:30)\nStarted cross AZ failover to DB instance: aslv2-common-\nJanuary 14,", "doc_id": "c50c0de2-ac18-4cd7-b256-ada4437b2bda", "embedding": null, "doc_hash": "7b73a33c11e41231fde88bd963b2c4f4e02766e0c9a3cf5261dec06934c7d16d", "extra_info": {"page_label": "12", "file_name": "OnCall.pdf"}, "node_info": {"start": 0, "end": 3229, "_node_type": "1"}, "relationships": {"1": "c48683dc-f64e-4689-bcba-15ef3e12b199", "3": "01024302-ea9b-4c9e-a828-a1993457fb64"}}, "__type__": "1"}, "01024302-ea9b-4c9e-a828-a1993457fb64": {"__data__": {"text": "cross AZ failover to DB instance: aslv2-common-\nJanuary 14, 2023, 12:14 (UTC+05:30)\nCompleted failover to DB instance: aslv2-common-product\n1\n2\n3\n4\n5\n6\n72023-01-14T12:13:51.000+05:30\n2023-01-14 06:43:51 UTC::@:[29169]:LOG: Storage initia\n2023-01-14T12:13:51.000+05:30\n2023-01-14T12:13:51.000+05:302023-01-14 06:43:51 UTC\n2023-01-14T12:13:51.000+05:302023-01-14 06:43:51 UTC\n1\n2\n3\n4\n5[ {\n \"message_obj.service\" : \"slack\",\n \"method\" : \"getOauth2TokenWithAuthorizationCode\",\n \"count\" : 1.0\n} ]\n112944,1,axiamatic_customer,axiamatic.com\n1\n2\n3\n4tenant_id,Count,name,domain\n13728,2,splunk,splunk.com\n7025,1,axm_onboarding,axm_onboarding\n14443,2,NA,NA", "doc_id": "01024302-ea9b-4c9e-a828-a1993457fb64", "embedding": null, "doc_hash": "1c2c983e8edfc01984ac6fc3739201892f191ec1bfd9893c7762166f24f7da78", "extra_info": {"page_label": "12", "file_name": "OnCall.pdf"}, "node_info": {"start": 3170, "end": 3815, "_node_type": "1"}, "relationships": {"1": "c48683dc-f64e-4689-bcba-15ef3e12b199", "2": "c50c0de2-ac18-4cd7-b256-ada4437b2bda"}}, "__type__": "1"}, "097a8045-83e3-4b75-a50f-f1d632d4b401": {"__data__": {"text": "Unable to enrich - is happening for splunk and axm_onboarding \n(active tenants) - The rest of tenants are invalid /deleted tenants . \nThere are two question \n1) Is this error normal for active tenants\n2)For deleted tenants - how to remove data from message broker so \nthat it does not perform this action - @anil- i think 14xxx series are \ntenants that failed during cleanup will trigger cleanup of these tenants \ntoday\n \n \nJan 12, 2023 @seshan COLLAB-MB-FAILED-DELIVERING-MESSAGE-TO-SLACK - Failed \nto deliver message to slack- MessageId not Found\nSlack message from Logz Alerts in #critical-alerts-prod COLL-1722: [ON-CALL]: [Prod] [Collab] Failed brokering messag\ne to Slack (Deleting a Slack message )DONE \nJan 11, 2023 @seshan [Prod] [Plat] ERROR logs > 100 in 15mins Message broker Container \nmultiple errors \nSlack message from Logz Alerts in #critical-alerts-prod \nTop 10 contributors by tenant (both testing and real customer)\nTop contributors - actual customer\nIdentitified tests tenants - 3572 , 4882 - which pump in lots of error s \nand triggered tenant deletion for the same\nThere are two main buckets of errors after removing test tenants\n COLL-1689: [On-call][Investigate] Figure why the error counts are \ngoing up every 6 hoursDUPLICATE \nCOLL-1690: [On-Call] skip logging error if service is not supported \nfor brokeringDONE \nJan 11, 2023 @Ashwani Kumar #358: ALARM: \"stepfunction-alarms-production-\nStatemachinetenancytenantdeletion112E...\" in US West (Oregon)\nStepfunction failure alarm triggered.This was because of failure in discovery tenant deletion- HF was \nbeing tested.\nWorkflow started passing after the hotfix was completed.\nNo further action needed.\nJan 10, 2023 @Ashwani Kumar [Prod] [Plat] ERROR\nErrors in core-data, the rule decoding was failing DISC-2137: [On-call] Reporting Lambda : Rule parsing failing in c\nore because of incorrect rule definition DONE", "doc_id": "097a8045-83e3-4b75-a50f-f1d632d4b401", "embedding": null, "doc_hash": "7aba5260560ca7df5c005486b024256bd3f55ca1957aadc5720744d03ef88f46", "extra_info": {"page_label": "13", "file_name": "OnCall.pdf"}, "node_info": {"start": 0, "end": 1892, "_node_type": "1"}, "relationships": {"1": "6ca3f6f6-9ccc-4ee4-9af0-15bb8ed19623", "3": "323c8c4a-7364-4ad8-82c9-ed3deb9eca73"}}, "__type__": "1"}, "323c8c4a-7364-4ad8-82c9-ed3deb9eca73": {"__data__": {"text": ": Rule parsing failing in c\nore because of incorrect rule definition DONE \n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23\n24\n25\n2614446,2,NA,NA\n14515,1,NA,NA\n14528,1,NA,NA\n14540,1,NA,NA\n14554,1,NA,NA\n14555,1,NA,NA\n14579,1,NA,NA\n14592,1,NA,NA\n14604,1,NA,NA\n14613,1,NA,NA\n14618,1,NA,NA\n14639,1,NA,NA\n14651,1,NA,NA\n14667,1,NA,NA\n14679,1,NA,NA\n14689,1,NA,NA\n14705,1,NA,NA\n14716,1,NA,NA\n14731,1,NA,NA\n14743,1,NA,NA\n14760,1,NA,NA\n14774,1,NA,NA\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10tenant_idCountnamedomain\n35722070anu-prod-teamanu-prod-team\n13728169splunksplunk.com\n8677162electronic_artselectronic_arts\n1932143production_system_tests_teamsproduct\n4882108anu_prod_dndanu_prod_dnd\n1332098apps_sys_test_integrationvgn21.onmic\n437981armaan_collabcustomer1_aryanarmaan_\n1403768test_customer_app_1mprz.onmicrosoft.com\n1152855armisarmis\n1\n2\n3\n4\n5\n6\n7tenant_idCountnamedomain\n13728169splunksplunk.com\n8677162electronic_artselectronic_arts\n1295654crowdstrikecrowdstrike.com\n1299154medigateclaroty.com\n1108135axiamatic_ea_connectaxiamatic_ea_connec\n487527las_vegas_sands_corplas_vegas_sands_cor\n1\n2\n3\n4\n5\n6Bucket 1:\n8677,electronic_arts- \"Unable to get userid for user\" \nBucket 2: Almost all the other tenants has below catego\n12956,crowdstrike\n13728,splunk - \"unable to sync users for pvt class\",\"un", "doc_id": "323c8c4a-7364-4ad8-82c9-ed3deb9eca73", "embedding": null, "doc_hash": "35b3c7e033df386e946b443f55ed94de7a012f3b704dcddff4667103d4e47c2b", "extra_info": {"page_label": "13", "file_name": "OnCall.pdf"}, "node_info": {"start": 1819, "end": 3092, "_node_type": "1"}, "relationships": {"1": "6ca3f6f6-9ccc-4ee4-9af0-15bb8ed19623", "2": "097a8045-83e3-4b75-a50f-f1d632d4b401"}}, "__type__": "1"}, "076e6fd8-44dc-4bac-89f1-37a0041f2c11": {"__data__": {"text": "\"message_obj\": { \"msg\": \"Failed to parse given rule \n14037::customer::14037::productInstance::9408::readWrite . \nso skipping the rule\" },\n Invalid rule configuration being done with extra colon.\nJan 8, 2023 @Sanjiv Ranjan [Collab] CRUD failed for Survey Instance - \nCould not open JPA EntityManager for transaction; nested exception \nis org.hibernate.exception.JDBCConnectionException: Unable to \nacquire JDBC ConnectionCollab DB under maintenance \nJan 8, 2023 @Sanjiv Ranjan Critical Threshold Violated: GLOBAL-HIKARI-IDLE-\nCONNECTIONSCollab DB under maintenance \n \nJan 6, 2023 @Sanjiv Ranjan Critical Threshold Violated: GLOBAL-HIKARI-IDLE-CONNECTIONS\nLabels\napp:discoveryBeacuse primary and secondary node switch happened.\nJan 4, 2023 @Rama Taraniganty [Logz.io] Alert for : [Prod] [Plat] ERROR logs > 100 in 15mins\nMBLooks like every 6 hours there at 100 errors across various tenants. \nThis has been going on in Stage for the last couple of weeks.\n \nSlack message from Rama Taraniganty in #merge-requests \nCOLL-1689: [On-call][Investigate] Figure why the error counts are \ngoing up every 6 hoursDUPLICATE \nJan 4, 2023 @Paranthaman Karthikeyan [Logz.io] Alert for : [Prod] [Plat] ERROR logs > 100 in 15mins This again was due to missing scopes in slack bot. Fixed after \ndeploying \nhttps://gitlab.com/axiamatic-main/axiamatic-cfg/production-\nconfigs/-/merge_requests/13\nJan 4, 2023 @Paranthaman Karthikeyan [Logz.io] Alert for : [Prod] [Collab] Get Access Token errors This was due to missing scopes to slack bot that was needed for \nbidirectional flow.\n", "doc_id": "076e6fd8-44dc-4bac-89f1-37a0041f2c11", "embedding": null, "doc_hash": "8d026d684544b78161af0013116f2adc29a261dcfb565b682a1aef00ec0e2672", "extra_info": {"page_label": "14", "file_name": "OnCall.pdf"}, "node_info": {"start": 0, "end": 1558, "_node_type": "1"}, "relationships": {"1": "2db441ba-005f-47fc-ab87-96ebe48bb427"}}, "__type__": "1"}, "6b452ef4-8877-4949-bb83-18edbabbfb58": {"__data__": {"text": "https://gitlab.com/axiamatic-main/axiamatic-cfg/production-\nconfigs/-/merge_requests/13\nJan 4, 2023 @Paranthaman Karthikeyan [Logz.io] Alert for : [Prod] [Collab] Failed brokering message to Slack\n COLL-1688: [ON_CALL]: message brokering: Reply in slack-slack \nis brokenDONE \nJan 4, 2023 @Paranthaman Karthikeyan [Logz.io] Alert for : [Prod][Plat] Service Restarting Repeatedly This was triggered during PROD deployment due to resource crunch. \nAction taken to update the resources https://gitlab.com/axiamatic-\nmain/axm-deployment/base-\ninfra/-/commit/e5f0a8ffac64af43504926bd10ec292f34fde438\nJan 4, 2023 @Sanjiv Ranjan [Prod][Plat] Service Restarting Repeatedly\n{\n\"container_name\" : \"core-data-task-container\",\n\"count\" : 3.0\n}1. Restart was triggered by scheduled deployment to prod(No Action \nneeded).\nDec 26, 2022 @Syed Ummar Farooqh COLLAB-MB-FAILED-DELIVERING-MESSAGE-TO-SLACK This issues is fixed for 0.9.6. (Error Processing message edit \nevent)\nDec 24, 2022\nJan 26, 2023@Satya Vummidi While watching Avatar: The way of waters in screenX theater, I got this \nalert. As soon as I came back, I investigated the logs, it looks like \nthere is an outage from SendGrid. Our health check failing and keep \nrestarting the service.\nSendgrid API I think we don\u2019t want to add external service health part of our service \nhealth check. What is the point in keep restarting based on this \nhealth check? If it is a recoverable situation, we need to log error, \ntrigger alert. Keep pending email delivery in queue and recover as \nsoon as the external service is up.\nPLAT-1521: [On-call] Don't use send grid health as health indicato\nr for notification service.DONE \nDec 22, 2022 @Syed Ummar Farooqh COLLAB-MB-FAILED-DELIVERING-MESSAGE-TO-SLACK This issue is fixed\nCOLL-1615: [on-call][prod] Error processing edit event from slack\nDUPLICATE \nDec 20, 2022 @Syed Ummar Farooqh 1. Warning Threshold Violated: GLOBAL-HIKARI-IDLE-\nCONNECTIONS\n2. Resolved: GLOBAL-HIKARI-IDLE-CONNECTIONSObserved a temporary spike for idle connections in tenancy-service, \nclosing the alert now. Created a tracker for this\nPLAT-1507: [on-call] [Prod] [tenancy-service] investigate - GLOBA\nL-HIKARI-IDLE-CONNECTIONSDONE \nDec 19, 2022 @Anzar [Prod] [Collab] Get Access Token errors The above error is from the tenant 13572, which is a cleaned up \nSplunk tenant. The event was triggered on opening the slack home \ntab and failed with token not found.\nThe tenant was deleted on 22nd Nov, Sentiment collector data \ncleanup code was merged post that date hence stale data has \ncaused this error. \nDec 19, 2022 @Anil Ganivada COLLAB-MB-FAILED-DELIVERING-MESSAGE-TO-SLACK alerts triggered on test tenants, closing the alert for nowCOLL-159\n8: Fix log messages to avoid alerting when a delete action is attempt\ned on non-brokered messageDUPLICATE COLL-1561: On Call : G\netting [Collab] Failed brokering message to Slack alert in Prod\nDUPLICATE \nshould fix the issue.\nDec 16, 2022 @Anil Ganivada", "doc_id": "6b452ef4-8877-4949-bb83-18edbabbfb58", "embedding": null, "doc_hash": "c9214a49365cb50c3b7b3a4bcf53baa21cf17048f981d7a5617b54e6e1d35fc4", "extra_info": {"page_label": "15", "file_name": "OnCall.pdf"}, "node_info": {"start": 0, "end": 2954, "_node_type": "1"}, "relationships": {"1": "468db9da-7f2c-458a-8e4b-a209e0ccb1ad", "3": "7bd9db26-5333-49d3-acfe-b320ad60a235"}}, "__type__": "1"}, "7bd9db26-5333-49d3-acfe-b320ad60a235": {"__data__": {"text": "\nshould fix the issue.\nDec 16, 2022 @Anil Ganivada COLLAB-MB-FAILED-DELIVERING-MESSAGE-TO-SLACK Alert triggerred on test tenants, fix is in 0.9.6\nhttps://app.logz.io/#/goto/c1fe3d22d61574e9c48fd62f66dc33\nd9?switchToAccountId=389045\n Slack message from Anzar MK in #critical-alerts-prod \nDec 16, 2022 @Anil Ganivada [Prod][Plat] Service Restarting Repeatedly Jira service restarting post deployment due to resourcing issue \nPLAT-1501: Update all apps and jira service size to medium insta\nnceDONE\nDec 15, 2022 @Rama Taraniganty Support issue: Tenant delete + recreate has a few issues that need to \nbe addressedPLAT-1494: [On-call] Tenant creation/deletion issues - need to rev\nisit transactional supportDONE \nPLAT-1495: [On-call] [Investigate] publisher mapping didn't get re\nmoved when a tenant is deleted in core-dataDONE \nSlack message from Rama Taraniganty in #on-call \n1\n2\n3\n4\n5\n6\n7Description : #COLLAB-MB-FAILED-DELIVERING-MESSAGE-TO-S\nEvent Samples : Sample 1 event out of 1:\n[ {\n\"date\" : 1.672829539424851E9,\n\"exception\" : {\n\"exception_class\" : \"java.lang.NullPointerException\",\n\"stacktrace\" : \"java.lang.NullPointerException\\n\\tat co\n", "doc_id": "7bd9db26-5333-49d3-acfe-b320ad60a235", "embedding": null, "doc_hash": "41a06d83a069f023f4bb9e5c9b5bcce6010e31811dc5604185831759e9fc6c6e", "extra_info": {"page_label": "15", "file_name": "OnCall.pdf"}, "node_info": {"start": 2904, "end": 4049, "_node_type": "1"}, "relationships": {"1": "468db9da-7f2c-458a-8e4b-a209e0ccb1ad", "2": "6b452ef4-8877-4949-bb83-18edbabbfb58"}}, "__type__": "1"}, "279ac7d5-3dfe-4ac0-90e5-1e530831058a": {"__data__": {"text": "Dec 15, 2022 @Anil Ganivada COLLAB-SLACK-INCOMING-REQUEST-RESPONSE-TIME 2 alerts triggered on filtered events, root cause still to be analyzed on \nintermittent delay in response from backend for slack events beyond \n3 secs\nhttps://app.logz.io/#/goto/cfa2a2de9a6dc1acfe95aa6fcd8e074c?\nswitchToAccountId=389045\nhttps://app.logz.io/#/goto/cfa2a2de9a6dc1acfe95aa6fcd8e074c?\nswitchToAccountId=389045\nDec 15, 2022 @Anil Ganivada [Prod] [Collab] Failed brokering message to Slack alert triggerred on a ST tenant, attempt to delete a non-brokered \nmessage is harmless Slack message from Anzar MK in #critical-al\nerts-prod \nDec 14, 2022 @Rama Taraniganty [Logz.io] Alert for : [Prod][Collab] Error responses sent to slack \nor teams\nLooks like the payload is malformed: =%7B%7D=https://app.logz.io/#/goto/a7166f7ad99ed1cd417d143be02854\nbb?switchToAccountId=389045\nCOLL-1589: [On-call] Handle junk message body in SlackSlashC\nommandWebhook::taskSlashCommandDONE \n12 Dec 2022 @ritu vaidya COLLAB-MB-FAILED-DELIVERING-MESSAGE-TO-SLACK Slack message from Logz Alerts in #critical-alerts-prod \nClosing it based on the slack thread.\nDec 9, 2022 @Rama Taraniganty COLLAB-MB-FAILED-DELIVERING-MESSAGE-TO-TEAMS There is no run book entry to make sense of this. Looks like there\u2019s \nno reference to the error in this page either:\nSlack message from Rama Taraniganty in #on-call \n9 Dec 2022 @Pradeep @Anil Ganivada [Prod] [Tenancy] Tenant Registration Failed Expected error due to tests by @Anuradha Raman on prod\nSlack message from Logz Alerts in #critical-alerts-prod \nThis alert triggerred because we were expecting test_vendor tenant \nto have been remove from our db but it was present because in \nprocess of re-creating customer scenario in prod, tenant id 12944 \nwas deleted instead of 12954 . 12944 is not a customer account but \nan internal account that we use to send invitations to vendors for \nonboarding. Luckily no data got removed from core data but the org \nwas deleted from auth0 so I used these steps to recover the instance \nin auth0 How to recover a deleted org in auth0 . After recovering \nthe instance I used anair@axiamatic.com user to link to this org and \nassigned him role of orgadmin. For step-15:\nUpdate org id in tenants table in tenancy schema for the \nrespective tenant id\nI executed following statements on prod tenancy table\npostgresdbproduction=> select * from tenant where id = \n12944;\n id | name | domain | \ntime_created | time_updated | is_deleted | \nmode | props | status |\n org_id\n-------+------------------------------+---------------+-----------------------\n-----+----------------------------+------------+------+-------+--------+--\n--------------------\n 12944 | axiamatic_customer (removed) | axiamatic.com | \n2022-11-08 09:43:23.845+00 | 2022-12-09 09:44:00.627+00 \n| t | | ", "doc_id": "279ac7d5-3dfe-4ac0-90e5-1e530831058a", "embedding": null, "doc_hash": "7f3c775f3b4f4c6752d1971216828989007def89a9878a50ce3d002c3ef9e9a6", "extra_info": {"page_label": "16", "file_name": "OnCall.pdf"}, "node_info": {"start": 0, "end": 2881, "_node_type": "1"}, "relationships": {"1": "00e68c43-8f2c-4ed5-b5ec-e0c71b8f3819", "3": "ffbb83c4-370e-4692-826e-a86bbef48dc1"}}, "__type__": "1"}, "ffbb83c4-370e-4692-826e-a86bbef48dc1": {"__data__": {"text": " | | | 0 | o\nrg_hbnLyrra973ZNT4x\n(1 row)postgresdbproduction=> update tenant set org_id = \n'org_KllDkpdeJhnOCWfz' where id = 12944 and domain like \n'axiamatic.com';\nUPDATE 1\npostgresdbproduction=> select * from tenant where id = \n12944;\n id | name | domain | \ntime_created | time_updated | is_deleted | \nmode | props | status |\n org_id\n-------+------------------------------+---------------+-----------------------\n-----+----------------------------+------------+------+-------+--------+--\n--------------------\n 12944 | axiamatic_customer (removed) | axiamatic.com | \n2022-11-08 09:43:23.845+00 | 2022-12-09 09:44:00.627+00 \n| t | | | 0 | o\nrg_KllDkpdeJhnOCWfz\n(1 row)postgresdbproduction=> update tenant set name = \n'axiamatic_customer' where id = 12944 and domain like \n", "doc_id": "ffbb83c4-370e-4692-826e-a86bbef48dc1", "embedding": null, "doc_hash": "44ed1835b0e365ac7b4163d53ac0a53217d44cf34507b1cf0dc0a842371e9d14", "extra_info": {"page_label": "16", "file_name": "OnCall.pdf"}, "node_info": {"start": 2860, "end": 3747, "_node_type": "1"}, "relationships": {"1": "00e68c43-8f2c-4ed5-b5ec-e0c71b8f3819", "2": "279ac7d5-3dfe-4ac0-90e5-1e530831058a"}}, "__type__": "1"}, "57762e71-1462-4735-8d07-d94672b8c357": {"__data__": {"text": "1. \n 'axiamatic.com';\nUPDATE 1\npostgresdbproduction=> exit\nafter this I tried to login as anair@axiamatic.com -> \naxiamatic_customer and was able to see all previous integrations on \nthis tenant including splunk and tried to access this customer data \nfrom a vendor account and I see that things are working as expected.\n9 Dec 2022 @Pradeep api-gw-ids-production-Alarmshighfailureratealarm @Anuradha Raman was verifying in production and while \nonboarding there were lot of failures on user-recommendations even \nwhen MB is not enabled. This caused lot of 500 error responses.\nAlready a Tracker exists.- DISC-1921: User suggestions should n\not be called when none of the MB is not enabled DONE \n8 Dec 2022 @Pradeep [Prod] [Collab] CRUD failed for Survey Instance Discussed in slack thread Slack message from Logz Alerts in #crit\nical-alerts-prod \nIt is due to Reetol poc that we did. \n8 Dec 2022 @ritu vaidya COLLAB-SLACK-INCOMING-REQUEST-RESPONSE-TIME Known issue , see 30 Nov log\n7 Dec 2022 @Pradeep COLLAB-SLACK-INCOMING-REQUEST-RESPONSE-TIME Known issue\n7 Dec 2022 @Pradeep [Prod] [Collab] Failed brokering message to Slack\n#COLLAB-MB-FAILED-DELIVERING-MESSAGE-TO-SLACKAlready fixed in 0.9.6 \nCOLL-1561: On Call : Getting [Collab] Failed brokering messa\nge to Slack alert in ProdDUPLICATE \nCOLL-1551: message-broker: editing of message should not s\ntoremappedmessagesDONE\n", "doc_id": "57762e71-1462-4735-8d07-d94672b8c357", "embedding": null, "doc_hash": "9c016adfebd20b478a08aa2f5f267dc63ee4bb47a6583cb8e8677832abc3b1e8", "extra_info": {"page_label": "17", "file_name": "OnCall.pdf"}, "node_info": {"start": 0, "end": 1378, "_node_type": "1"}, "relationships": {"1": "61eb3840-5d98-4260-8e52-318ba943edcf"}}, "__type__": "1"}}, "docstore/ref_doc_info": {"d6496709-cfc5-4485-93e6-2c6905c9d395": {"doc_ids": ["03a7050b-f0d8-4a33-b9e8-d4f82439cca0", "33630944-a8b9-4d7e-8d3f-0381d2c4e586"], "extra_info": {"page_label": "1", "file_name": "OnCall.pdf"}}, "7bc79ea6-68b3-4bf5-8112-31e1aa58d448": {"doc_ids": ["69adae88-db95-4f48-81df-ac19ca8077e3", "21d0b6b7-28cf-437e-aef6-522813d4e0a1"], "extra_info": {"page_label": "2", "file_name": "OnCall.pdf"}}, "57018674-bf81-4ad7-940b-47bc8f22a82b": {"doc_ids": ["792e2728-bdc4-4e54-ad72-55e359056616", "6f1adeda-e4d0-4b96-b2f1-57def8904cb6"], "extra_info": {"page_label": "3", "file_name": "OnCall.pdf"}}, "04678987-bdb0-4922-a081-c6066b190cff": {"doc_ids": ["07aa42dc-7b17-4b9f-848a-181c4ec7e77f", "d14ad41a-0e46-4fb9-b979-8973ba836de4"], "extra_info": {"page_label": "4", "file_name": "OnCall.pdf"}}, "130a58d8-6265-4783-b0a6-056344dacdb8": {"doc_ids": ["e5834cdd-0e9d-484d-a7e8-721644c8e119", "4cc6e453-d8cb-4316-9f00-1ad8fc6152ad"], "extra_info": {"page_label": "5", "file_name": "OnCall.pdf"}}, "bd4335e6-72c5-40f0-ac46-bfd30bc3b26f": {"doc_ids": ["975881aa-a45e-4b2c-83a8-bd6932e4a819"], "extra_info": {"page_label": "6", "file_name": "OnCall.pdf"}}, "0bd2d94e-126a-4644-8989-aa46455d3788": {"doc_ids": ["26d56212-a665-414f-803a-387a807bffa0", "ca972543-cc22-4e27-a596-6492703c69ce"], "extra_info": {"page_label": "7", "file_name": "OnCall.pdf"}}, "d09c18d3-ac4b-4719-a3f1-9ca73015e9c2": {"doc_ids": ["02048f03-be3c-4ebf-9383-5e85fd3356e1", "9cf96cfc-0673-4806-b906-e4dab4f6aa0e"], "extra_info": {"page_label": "8", "file_name": "OnCall.pdf"}}, "ce7f46b5-953b-4cb8-b961-183b46bc7645": {"doc_ids": ["9b16e0e5-8641-4e16-a4f7-67130cdd3a59", "7f0dd2c8-c705-447e-b1f0-55556cf61ad4"], "extra_info": {"page_label": "9", "file_name": "OnCall.pdf"}}, "597ca512-6f36-4807-b986-4a1d5acc33ca": {"doc_ids": ["7ce57955-6637-4a9a-85e0-3b8d16306141", "ffdf9f90-fc3a-4461-a76f-81e03fe84ba5"], "extra_info": {"page_label": "10", "file_name": "OnCall.pdf"}}, "1ba7a349-4a28-4423-a013-05d8defe7065": {"doc_ids": ["626bf733-83e0-4372-99f9-1dbf3c28ba09", "d5075358-1c6e-4cea-9e52-089839227b0b"], "extra_info": {"page_label": "11", "file_name": "OnCall.pdf"}}, "c48683dc-f64e-4689-bcba-15ef3e12b199": {"doc_ids": ["c50c0de2-ac18-4cd7-b256-ada4437b2bda", "01024302-ea9b-4c9e-a828-a1993457fb64"], "extra_info": {"page_label": "12", "file_name": "OnCall.pdf"}}, "6ca3f6f6-9ccc-4ee4-9af0-15bb8ed19623": {"doc_ids": ["097a8045-83e3-4b75-a50f-f1d632d4b401", "323c8c4a-7364-4ad8-82c9-ed3deb9eca73"], "extra_info": {"page_label": "13", "file_name": "OnCall.pdf"}}, "2db441ba-005f-47fc-ab87-96ebe48bb427": {"doc_ids": ["076e6fd8-44dc-4bac-89f1-37a0041f2c11"], "extra_info": {"page_label": "14", "file_name": "OnCall.pdf"}}, "468db9da-7f2c-458a-8e4b-a209e0ccb1ad": {"doc_ids": ["6b452ef4-8877-4949-bb83-18edbabbfb58", "7bd9db26-5333-49d3-acfe-b320ad60a235"], "extra_info": {"page_label": "15", "file_name": "OnCall.pdf"}}, "00e68c43-8f2c-4ed5-b5ec-e0c71b8f3819": {"doc_ids": ["279ac7d5-3dfe-4ac0-90e5-1e530831058a", "ffbb83c4-370e-4692-826e-a86bbef48dc1"], "extra_info": {"page_label": "16", "file_name": "OnCall.pdf"}}, "61eb3840-5d98-4260-8e52-318ba943edcf": {"doc_ids": ["57762e71-1462-4735-8d07-d94672b8c357"], "extra_info": {"page_label": "17", "file_name": "OnCall.pdf"}}}} \ No newline at end of file diff --git a/index_v2/OnCall/index_store.json b/index_v2/OnCall/index_store.json new file mode 100644 index 0000000000000000000000000000000000000000..523f43b458981c73b3e643cd624956368004c135 --- /dev/null +++ b/index_v2/OnCall/index_store.json @@ -0,0 +1 @@ +{"index_store/data": {"ebaa64d3-7ccc-4010-bd7f-4865041bbec6": {"__type__": "vector_store", "__data__": "{\"index_id\": \"ebaa64d3-7ccc-4010-bd7f-4865041bbec6\", \"summary\": null, \"nodes_dict\": {\"03a7050b-f0d8-4a33-b9e8-d4f82439cca0\": \"03a7050b-f0d8-4a33-b9e8-d4f82439cca0\", \"33630944-a8b9-4d7e-8d3f-0381d2c4e586\": \"33630944-a8b9-4d7e-8d3f-0381d2c4e586\", \"69adae88-db95-4f48-81df-ac19ca8077e3\": \"69adae88-db95-4f48-81df-ac19ca8077e3\", \"21d0b6b7-28cf-437e-aef6-522813d4e0a1\": \"21d0b6b7-28cf-437e-aef6-522813d4e0a1\", \"792e2728-bdc4-4e54-ad72-55e359056616\": \"792e2728-bdc4-4e54-ad72-55e359056616\", \"6f1adeda-e4d0-4b96-b2f1-57def8904cb6\": \"6f1adeda-e4d0-4b96-b2f1-57def8904cb6\", \"07aa42dc-7b17-4b9f-848a-181c4ec7e77f\": \"07aa42dc-7b17-4b9f-848a-181c4ec7e77f\", \"d14ad41a-0e46-4fb9-b979-8973ba836de4\": \"d14ad41a-0e46-4fb9-b979-8973ba836de4\", \"e5834cdd-0e9d-484d-a7e8-721644c8e119\": \"e5834cdd-0e9d-484d-a7e8-721644c8e119\", \"4cc6e453-d8cb-4316-9f00-1ad8fc6152ad\": \"4cc6e453-d8cb-4316-9f00-1ad8fc6152ad\", \"975881aa-a45e-4b2c-83a8-bd6932e4a819\": \"975881aa-a45e-4b2c-83a8-bd6932e4a819\", \"26d56212-a665-414f-803a-387a807bffa0\": \"26d56212-a665-414f-803a-387a807bffa0\", \"ca972543-cc22-4e27-a596-6492703c69ce\": \"ca972543-cc22-4e27-a596-6492703c69ce\", \"02048f03-be3c-4ebf-9383-5e85fd3356e1\": \"02048f03-be3c-4ebf-9383-5e85fd3356e1\", \"9cf96cfc-0673-4806-b906-e4dab4f6aa0e\": \"9cf96cfc-0673-4806-b906-e4dab4f6aa0e\", \"9b16e0e5-8641-4e16-a4f7-67130cdd3a59\": \"9b16e0e5-8641-4e16-a4f7-67130cdd3a59\", \"7f0dd2c8-c705-447e-b1f0-55556cf61ad4\": \"7f0dd2c8-c705-447e-b1f0-55556cf61ad4\", \"7ce57955-6637-4a9a-85e0-3b8d16306141\": \"7ce57955-6637-4a9a-85e0-3b8d16306141\", \"ffdf9f90-fc3a-4461-a76f-81e03fe84ba5\": \"ffdf9f90-fc3a-4461-a76f-81e03fe84ba5\", \"626bf733-83e0-4372-99f9-1dbf3c28ba09\": \"626bf733-83e0-4372-99f9-1dbf3c28ba09\", \"d5075358-1c6e-4cea-9e52-089839227b0b\": \"d5075358-1c6e-4cea-9e52-089839227b0b\", \"c50c0de2-ac18-4cd7-b256-ada4437b2bda\": \"c50c0de2-ac18-4cd7-b256-ada4437b2bda\", \"01024302-ea9b-4c9e-a828-a1993457fb64\": \"01024302-ea9b-4c9e-a828-a1993457fb64\", \"097a8045-83e3-4b75-a50f-f1d632d4b401\": \"097a8045-83e3-4b75-a50f-f1d632d4b401\", \"323c8c4a-7364-4ad8-82c9-ed3deb9eca73\": \"323c8c4a-7364-4ad8-82c9-ed3deb9eca73\", \"076e6fd8-44dc-4bac-89f1-37a0041f2c11\": \"076e6fd8-44dc-4bac-89f1-37a0041f2c11\", \"6b452ef4-8877-4949-bb83-18edbabbfb58\": \"6b452ef4-8877-4949-bb83-18edbabbfb58\", \"7bd9db26-5333-49d3-acfe-b320ad60a235\": \"7bd9db26-5333-49d3-acfe-b320ad60a235\", \"279ac7d5-3dfe-4ac0-90e5-1e530831058a\": \"279ac7d5-3dfe-4ac0-90e5-1e530831058a\", \"ffbb83c4-370e-4692-826e-a86bbef48dc1\": \"ffbb83c4-370e-4692-826e-a86bbef48dc1\", \"57762e71-1462-4735-8d07-d94672b8c357\": \"57762e71-1462-4735-8d07-d94672b8c357\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} \ No newline at end of file diff --git a/index_v2/OnCall/vector_store.json b/index_v2/OnCall/vector_store.json new file mode 100644 index 0000000000000000000000000000000000000000..04493b93218cdc7ee583f4b61b65584b9a6757b9 --- /dev/null +++ b/index_v2/OnCall/vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {"03a7050b-f0d8-4a33-b9e8-d4f82439cca0": [-0.00012233170855324715, -0.008545535616576672, -0.015243000350892544, 0.010880693793296814, -0.012334796600043774, 0.01301528699696064, -0.01701943948864937, 0.002136383904144168, -0.026360075920820236, -0.018022269010543823, 0.02259230427443981, 0.002840154804289341, -0.0013439698377624154, -0.003896706737577915, -0.013645636849105358, 0.0024676756002008915, 0.0171340499073267, -0.024125199764966965, 0.024383069947361946, -0.027563469484448433, -0.04186094552278519, 0.013036776334047318, -0.011382108554244041, 0.02315102331340313, -0.02803623303771019, -0.0017442060634493828, 0.01295798271894455, -0.02730559930205345, -0.008710285648703575, 0.0068478891626000404, 0.0031499573960900307, -0.005755521822720766, -0.03452596813440323, 0.01554384920746088, -0.02512802928686142, 0.00149260344915092, 0.011539695784449577, -0.014111235737800598, 0.01345223467797041, -0.023924633860588074, 0.029010409489274025, -0.003022813005372882, 0.00977041944861412, -0.028408711776137352, -0.009734603576362133, 0.02780701406300068, 0.029855649918317795, -0.006052789278328419, -0.0026431705337017775, 0.028580624610185623, 0.012506709434092045, 0.018738575279712677, -0.02742020972073078, 0.01171877235174179, 0.037591759115457535, 0.0032072619069367647, 0.012241676449775696, 0.018652617931365967, -0.01403244212269783, -0.0027201734483242035, 0.013745919801294804, -0.019383251667022705, 0.012134230695664883, 0.022434717044234276, -0.0007194402278400958, -0.017721420153975487, -0.0019644703716039658, 0.02041473239660263, -0.0062032132409513, -0.03254896402359009, 0.02817949466407299, 0.006271262653172016, 0.0016340740257874131, -0.00552630377933383, 0.0135811697691679, -0.02207656390964985, -0.03813615441322327, -0.011031118221580982, 0.041631728410720825, 0.004104435909539461, 0.01956949010491371, -0.010594171471893787, -0.04042833298444748, 0.020285796374082565, 0.019383251667022705, 0.00021489191567525268, 0.004459007177501917, -0.0015821417327970266, -0.018709924072027206, -0.000745406374335289, 0.014605487696826458, 0.01651802472770214, 0.027004750445485115, 0.002877760911360383, 0.0057017989456653595, 0.013359114527702332, -0.022735565900802612, 0.02899608388543129, -0.002123848535120487, -0.012986634857952595, -0.014340453781187534, -0.01301528699696064, -0.0329214408993721, -0.00238888175226748, -0.016890505328774452, -0.0019859594758599997, 0.01922566443681717, 0.014412084594368935, -0.0043945396319031715, 0.0009822351858019829, -0.02210521511733532, 0.015515197068452835, -0.024211157113313675, -0.00923318974673748, -0.00340603687800467, -0.01417570374906063, 0.022062236443161964, -0.029970260336995125, -0.023752721026539803, -0.0234661977738142, 0.02030012384057045, 0.012341959401965141, 0.014254497364163399, -0.016890505328774452, 0.015916328877210617, 0.005848641972988844, 0.0063285669311881065, -0.021216996014118195, 0.03249165788292885, -0.019770056009292603, 0.016761569306254387, 0.008703122846782207, 0.009928006678819656, 0.008774753659963608, -0.006747606210410595, 0.02690446935594082, -0.006611508317291737, -0.002310088137164712, -0.021761387586593628, -0.014476552605628967, 0.013208690099418163, 0.051430799067020416, -0.009763256646692753, -0.008953830227255821, -0.002965508494526148, 0.00869596004486084, 0.01835177093744278, -0.014533856883645058, 0.00436946889385581, -0.0010941580403596163, -0.008667307905852795, 0.006188887171447277, -0.011382108554244041, -0.019655447453260422, 0.011074096895754337, 0.016417743638157845, -0.008395111188292503, 0.009440918453037739, -0.006604345049709082, -0.02015686221420765, -0.011317641474306583, 0.04082946479320526, 0.0022814359981566668, 0.008975319564342499, 0.01634611189365387, 0.04074350744485855, 0.004004152957350016, -0.005232618190348148, -0.0038573099300265312, 0.004999818746000528, -0.000586475885938853, 0.022262802347540855, -0.014469388872385025, 0.012585503049194813, 0.02047203667461872, 0.020830189809203148, 0.010615660808980465, -0.013380603864789009, -0.02388165518641472, -0.019827360287308693, -0.031574785709381104, 0.0020629623904824257, 0.019268643110990524, 0.03335122764110565, -0.008022631518542767, 0.011310477741062641, 0.019025098532438278, -0.003964756149798632, 0.004878046456724405, 0.005945343058556318, 0.024640940129756927, 0.027935950085520744, -0.009985310956835747, -0.004262023139744997, -0.6037603616714478, -0.03071521781384945, 0.00032927709980867803, 0.004953258670866489, -0.005734032951295376, 0.0060957674868404865, -0.005479744169861078, 0.007528380490839481, -0.033809661865234375, 0.03289278969168663, -0.002944019390270114, 0.020400406792759895, 0.004229789134114981, -0.008251849561929703, -0.005250526126474142, -0.011883523315191269, -0.01707674376666546, 0.007034128997474909, 0.00044231920037418604, 0.0058629680424928665, -0.00955552700906992, 0.007621500175446272, 0.008581350557506084, -0.01567278429865837, 0.0026700322050601244, -0.031832657754421234, 0.031603436917066574, -0.0012938284780830145, 0.0038823806680738926, 0.010937999002635479, -0.02391030825674534, -0.0005014144699089229, 0.033952921628952026, -0.005923853721469641, 0.051058318465948105, -0.0017101815901696682, -0.02103075571358204, 0.025457529351115227, 0.01371010486036539, 0.03664623573422432, -0.013051102869212627, 0.010916509665548801, 0.022148193791508675, -0.014240170828998089, 0.007951000705361366, -0.007249020971357822, 0.011446576565504074, -0.01253536157310009, -0.0050750309601426125, -0.02297910861670971, 0.003760608611628413, 0.004878046456724405, -0.018709924072027206, 0.014204355888068676, -0.006206795107573271, -0.003438270650804043, 0.00650764349848032, 0.004738366696983576, 0.0009401521529071033, -0.027520492672920227, -0.011038281954824924, -0.004018479026854038, -0.004537801258265972, -0.014712933450937271, -0.03286413848400116, 0.004057875834405422, -0.0006751187611371279, -0.005644494667649269, 0.013215852901339531, 0.002877760911360383, 0.017635462805628777, 0.012807558290660381, -0.00020336385932751, -0.010407932102680206, 8.164774044416845e-05, 0.006983987521380186, 0.011002466082572937, 0.0021292208693921566, -0.005272014997899532, 0.006926682777702808, 0.011668630875647068, -0.007943837903439999, -0.011152890510857105, -0.011618489399552345, 0.021918976679444313, 0.011826219037175179, -0.01736326701939106, 0.007578521501272917, -0.005053541623055935, -0.016618307679891586, 0.01677589677274227, -0.003637045854702592, -0.0017271938268095255, -0.021388908848166466, 0.0072096241638064384, 0.016804547980427742, -0.013602658174932003, -0.005630168132483959, 0.005683891475200653, -0.012370611540973186, -0.01654667779803276, -0.03297874704003334, 0.0030174406711012125, 0.004931769799441099, 0.03120230697095394, 0.028337081894278526, -0.0059345983900129795, -0.02919664978981018, 0.049654360860586166, -0.007077107205986977, -0.0005542420549318194, -0.005719706416130066, -0.019612468779087067, -0.002944019390270114, 0.009806234389543533, -0.03237704932689667, 0.033752359449863434, 0.017778724431991577, 0.019999274984002113, 0.018566662445664406, 0.012033947743475437, -0.00461659487336874, 0.01112423837184906, -0.0065362961031496525, -0.0003438270650804043, 0.02166110649704933, 0.01767844147980213, -0.009548364207148552, 0.03134556859731674, -0.025686748325824738, -0.0037570269778370857, -0.02823679894208908, 0.025514833629131317, -0.007499727886170149, 0.027391556650400162, -0.021618127822875977, 0.027592122554779053, -0.000442766904598102, 0.03140287101268768, -0.03283548727631569, -0.03297874704003334, 0.004022060427814722, -0.004842231050133705, -0.015558174811303616, -0.015715762972831726, -0.016833201050758362, -0.03670354187488556, -0.000736452522687614, -0.021073734387755394, 0.0257727038115263, -0.019669773057103157, 0.0076286629773676395, -0.00021533960534725338, 0.010142898187041283, -0.023638110607862473, 0.004992655478417873, 0.013459397479891777, -0.04779196158051491, 0.004706133157014847, -0.015787392854690552, -0.014770237728953362, 0.03807884827256203, -0.022062236443161964, -0.02625979296863079, 0.01744922436773777, 0.0008841907256282866, -0.006772676948457956, 0.003158911131322384, -0.0031553297303617, -0.028523320332169533, 0.008846384473145008, -0.01016438752412796, -0.024784201756119728, 0.017062418162822723, -0.01253536157310009, 0.006482572760432959, -0.022663934156298637, -0.010579845868051052, 0.0037319562397897243, 0.014010952785611153, 0.00016586970014031976, 0.03469788283109665, -0.002002076478675008, -0.014755912125110626, 0.017850356176495552, -0.0063357301987707615, 0.025471854954957962, 0.023853003978729248, -0.010751758702099323, 0.037763673812150955, -0.023652438074350357, 0.013287483714520931, -0.01916836015880108, 0.012714439071714878, -0.028365733101963997, 0.03865189477801323, -0.022492021322250366, -0.0018355351639911532, -0.006013392470777035, 0.01541491411626339, 0.006819237023591995, 0.033952921628952026, 0.02835140749812126, -0.007098596543073654, -0.0023208328057080507, -0.02114536426961422, 0.014784564264118671, -0.035729363560676575, 0.03802154213190079, 0.01541491411626339, 0.004344398155808449, 0.02035742811858654, -0.022406063973903656, 0.002288599032908678, 0.004236952401697636, 0.0023799280170351267, -0.009956658817827702, 0.01954083889722824, -0.022721238434314728, -0.0011819055071100593, 0.00019429811800364405, -0.012907841242849827, 0.041173290461301804, -0.0006657172343693674, -0.015629805624485016, -0.018695596605539322, 0.03240570053458214, 0.02151784487068653, 0.01098097674548626, 0.00889652594923973, -0.0008537477115169168, 0.006880123168230057, 0.013488049618899822, 0.007528380490839481, 0.031746700406074524, -0.020027926191687584, 0.03509901463985443, -0.004236952401697636, 0.03521362319588661, -0.0009446290787309408, 0.001078936504200101, 0.016761569306254387, 0.016303133219480515, -0.011410760693252087, -0.0018803043058142066, 9.77086674538441e-05, 0.03515631705522537, 0.025514833629131317, -0.023194001987576485, 0.03088713251054287, -0.00855269841849804, 0.008122914470732212, -0.02207656390964985, -0.010959488339722157, 0.02451200596988201, -0.018509358167648315, 0.0026718229055404663, 0.011690120212733746, 0.04209016263484955, 0.012449405156075954, 0.010372117161750793, -0.008137241005897522, 0.03140287101268768, 0.009118580259382725, 0.02292180433869362, 0.017836028710007668, -0.041603077203035355, 0.00903262384235859, 0.017406245693564415, -0.02105940878391266, -0.010343464091420174, -0.015959307551383972, -0.010114246048033237, -0.01736326701939106, -0.010773248039186, 0.01215572003275156, 0.028494669124484062, 0.0057805925607681274, 0.0001115871054935269, 0.01032197568565607, -0.05398084968328476, -0.033866968005895615, 0.018982119858264923, 0.02396761253476143, 0.021976280957460403, -0.004029223695397377, 0.0016125848051160574, 0.023666763678193092, -0.01817985624074936, 0.006013392470777035, -0.024383069947361946, 0.009491059929132462, -0.0024479771964251995, -0.006547040306031704, -0.008237523958086967, 0.009799071587622166, 0.016976460814476013, -0.0006751187611371279, -0.0008165892795659602, 0.02736290544271469, 0.004050712566822767, 0.007137993350625038, -0.016890505328774452, 0.02100210450589657, 0.027764035388827324, -0.009333472698926926, -0.018867511302232742, -0.023279957473278046, -0.029998911544680595, -0.024554982781410217, 0.02044338546693325, 0.018566662445664406, -0.020787211135029793, 0.005626586731523275, -0.0013815759448334575, 0.011331967078149319, 0.016904830932617188, -0.014927824959158897, 0.022878825664520264, -0.017950639128684998, -0.0005788651178590953, -0.010873530991375446, -0.004376632161438465, 0.023738393560051918, 0.03423944488167763, 0.05756238102912903, 0.02303641475737095, 0.015443566255271435, -0.02896743081510067, 0.002347694244235754, -0.03060060925781727, -0.023365914821624756, 0.013717267662286758, -0.02515668049454689, -0.015844697132706642, -0.01552952267229557, 0.008373621851205826, 0.011711609549820423, 0.020027926191687584, 0.0007154110353440046, 0.030428696423768997, -0.0062139579094946384, 0.014856195077300072, -0.005529885645955801, -0.000971490575466305, -0.018165530636906624, 0.0002746587269939482, 0.02408222109079361, 0.027534818276762962, 0.00015758740482851863, 0.04452560469508171, 0.0045628719963133335, 0.010565519332885742, -0.008588513359427452, -0.013824713416397572, 0.024798527359962463, 0.019870338961482048, 0.008717448450624943, -0.00875326432287693, 0.0348411425948143, -0.0034006645437330008, -0.01147522870451212, -0.004956840071827173, 0.012470894493162632, -0.014562509022653103, 0.007370792794972658, 4.997356518288143e-05, 0.0020540086552500725, 0.0072346944361925125, -0.022062236443161964, 0.001029690494760871, 0.02646035887300968, -0.010880693793296814, 0.010973813943564892, 0.028723886236548424, 0.005017726216465235, -0.010243181139230728, -0.012170045636594296, 0.0057805925607681274, 0.01753517985343933, -0.020987777039408684, -0.010436584241688251, -0.027849992737174034, 0.0018534428672865033, -0.029454519972205162, -0.031660743057727814, 0.026746880263090134, -0.017807377502322197, -0.02489881031215191, -0.004444681107997894, -0.02094479836523533, -0.018681271001696587, -0.020758559927344322, 0.029655085876584053, 0.014404921792447567, -0.015500870533287525, -0.03670354187488556, 0.03911032900214195, 0.0036603256594389677, 0.0081587303429842, -0.0025482599157840014, -0.003126677358523011, 0.0015096156857907772, 0.020744234323501587, -0.015314631164073944, -0.030199477449059486, 0.0020056578796356916, -0.019125381484627724, -0.003735537873581052, -0.004784926772117615, -0.0025948199909180403, 0.009920843876898289, -0.020257145166397095, 0.005404531955718994, -0.010536867193877697, 0.0076358262449502945, -0.017348941415548325, 0.003357686335220933, 0.02388165518641472, 0.010665802285075188, 0.03237704932689667, 0.017434896901249886, 0.004709714557975531, -0.0016313878586515784, 0.00045664532808586955, -0.013094080612063408, -0.03326527029275894, 0.009727440774440765, -0.00675476947799325, 0.01560115348547697, -0.004784926772117615, 0.029655085876584053, 0.0035779504105448723, -0.01171877235174179, 0.007986816577613354, -0.013359114527702332, 0.005311411805450916, 0.0019304457819089293, 0.007349303457885981, -0.010672965086996555, 0.011131401173770428, -0.003771353280171752, 0.019727079197764397, -0.015987958759069443, -0.00930482055991888, 0.010407932102680206, 0.021732736378908157, 0.011768913827836514, -0.005809244699776173, 0.009046949446201324, -0.002510654041543603, -0.047390829771757126, -0.014505204744637012, 0.0014576835092157125, -0.02388165518641472, 0.024554982781410217, 0.014010952785611153, -0.03507035970687866, -0.03458327427506447, 0.007180971559137106, -0.011152890510857105, -0.001183696324005723, -0.01620285026729107, -0.023853003978729248, -0.010393605567514896, 0.01779305189847946, -0.013924996368587017, -0.03080117516219616, 0.0037391195073723793, -0.02899608388543129, 0.004251278471201658, 0.0040005710907280445, 0.009591342881321907, 0.03558610379695892, -0.0012857699766755104, 0.0056624021381139755, -0.019268643110990524, -0.0058558047749102116, -0.021159691736102104, -0.01770709455013275, -0.03624510392546654, -0.011238847859203815, 0.04633069783449173, 0.01417570374906063, 0.007485401816666126, -0.01561548002064228, 0.008867872878909111, -0.002682567574083805, 0.002809711964800954, -0.009727440774440765, -0.019383251667022705, -0.02733425237238407, -0.01545789185911417, -0.0026306351646780968, 0.024640940129756927, -0.0038787992671132088, 0.008667307905852795, 0.0014057513326406479, -0.009985310956835747, 0.021274300292134285, -0.015243000350892544, -0.007170226890593767, -0.022090889513492584, -0.060914695262908936, -0.03240570053458214, 0.007650152314454317, -0.02908203937113285, -0.0005452882614918053, -0.035700712352991104, -0.010873530991375446, 0.016718590632081032, -0.006027718540281057, 0.008968155831098557, -0.015071086585521698, 0.021833019331097603, -0.007413771469146013, 0.021045081317424774, -0.005537048447877169, 0.011410760693252087, -0.012872026301920414, -0.018838858231902122, -0.02411087416112423, 0.015429239720106125, 0.009283331222832203, 0.005605097394436598, 0.009247515350580215, -0.011095586232841015, 0.00820170808583498, -0.01403244212269783, 0.01916836015880108, -0.012227349914610386, -0.0019465626683086157, 0.0022671096958220005, -0.017062418162822723, -0.02157514914870262, -0.03690410405397415, -0.014813216403126717, 0.014297476038336754, -0.010758922435343266, -0.012098414823412895, 0.009906517341732979, 0.01716270111501217, -0.029339909553527832, -0.0026539152022451162, -0.0020916147623211145, 0.005798500496894121, 0.034096185117959976, 0.01628880761563778, 0.029941607266664505, 0.02108805999159813, 0.012270328588783741, -0.007159482687711716, 0.0006885495386086404, 0.010350627824664116, -0.0009222445078194141, 0.020543668419122696, 0.028021905571222305, -0.024182504042983055, -0.007886533625423908, 0.01060133520513773, -0.005454673431813717, 0.004147414118051529, -0.01459832489490509, 0.03309335559606552, 0.026976099237799644, 0.0016627262812107801, -0.0345546193420887, 0.001587514067068696, -0.03120230697095394, -0.01663263514637947, 0.001434403588064015, 0.0066079264506697655, 0.009999637492001057, -0.021890323609113693, -0.009999637492001057, 0.022692587226629257, -0.02204791083931923, 0.022706912830471992, 0.011016792617738247, -0.01992764323949814, -0.011331967078149319, 0.014139888808131218, -0.02349485084414482, -0.007428097538650036, -0.017348941415548325, 0.010128572583198547, -0.023108044639229774, -0.008359295316040516, -0.0014809634303674102, 0.008531209081411362, -0.01465562917292118, -0.017893332988023758, 0.0032180065754801035, 0.03435405343770981, -0.013151385821402073, -4.678376353695057e-05, 0.028308428823947906, -0.02504207193851471, 0.02870956063270569, -0.012821884825825691, 0.015028107911348343, -0.002646752167493105, -0.02911069244146347, 0.005551374517381191, 0.043608732521533966, 0.015944980084896088, -0.011353456415235996, -0.005888038780540228, -0.017964964732527733, -0.019039424136281013, -0.010737433098256588, -0.026589293032884598, 0.0026198907289654016, -0.034010227769613266, -0.024913135915994644, -0.0010601334506645799, -0.0074424236081540585, 0.030056215822696686, 0.014827542938292027, 0.012248839251697063, 0.015214348211884499, 0.03432540223002434, -0.019268643110990524, 0.010694454424083233, -0.010429421439766884, -0.00956985354423523, -0.047132961452007294, 0.003570787375792861, 0.002686148975044489, -0.01817985624074936, 0.018007943406701088, -0.011625653132796288, -0.06120121851563454, -0.003495575161650777, 0.019798709079623222, 0.0006357219535857439, -0.001155939418822527, 0.013853365555405617, 0.04272051528096199, 0.004154576919972897, 0.0036048120819032192, 0.004330072086304426, -0.025085050612688065, 0.033895619213581085, -0.020486362278461456, 8.83071479620412e-05, 0.022434717044234276, 0.008079935796558857, 0.01540058758109808, -0.01962679624557495, 0.01554384920746088, -0.0008823999669402838, -0.030457347631454468, -0.026302771642804146, 0.014612650498747826, 0.0161741990596056, -0.015844697132706642, -0.018652617931365967, -0.01534328330308199, -0.02061529830098152, -0.017879007384181023, 0.027649426832795143, 0.0048350682482123375, 0.010386442765593529, -0.002779268892481923, 0.012148556299507618, 0.011468065902590752, 0.021818693727254868, -0.008029794320464134, -0.01959814317524433, -0.01843772642314434, -0.015787392854690552, -0.024067895486950874, -0.025400225073099136, -0.0033720124047249556, 0.007843554951250553, 0.02527128905057907, -0.025872986763715744, -0.02931125834584236, -0.02800757996737957, -0.02527128905057907, -0.02925395406782627, -0.017692768946290016, 0.013867692090570927, 0.06956768035888672, 0.0060563706792891026, 0.009476733393967152, 0.02922530099749565, -0.02201925963163376, 0.00479209003970027, -0.016274482011795044, 0.017635462805628777, 0.019211336970329285, -0.008373621851205826, 0.021446213126182556, -0.01349521242082119, -0.03340853005647659, 0.00770029379054904, 0.016446394845843315, 0.018022269010543823, 0.02050068974494934, 0.014784564264118671, -0.033609095960855484, 0.010214529000222683, -0.004559290129691362, 0.004577198065817356, 0.007922348566353321, -0.0020575900562107563, 0.009369287639856339, -0.04283512383699417, -0.011360619217157364, 0.03423944488167763, 0.014856195077300072, -0.018810207024216652, -0.002521398477256298, 0.020744234323501587, 0.0015740833478048444, 0.006418105214834213, -0.0268758162856102, -0.02742020972073078, 0.013351951725780964, -0.0389670692384243, 0.04624474048614502, 0.00556211918592453, -0.005547793116420507, 0.016360437497496605, -0.0063285669311881065, 0.0016233293572440743, 0.014254497364163399, 0.007592848036438227, -0.01431180164217949, -0.02439739555120468, 0.025457529351115227, -0.007657315582036972, -0.006890867371112108, -0.0017755444860085845, 0.00677625834941864, -0.007614336907863617, -0.024297112599015236, -0.013194363564252853, -0.014010952785611153, -0.03266357257962227, 0.011288989335298538, 0.006564948242157698, -0.04108733683824539, -0.02027147077023983, -0.0024587216321378946, 0.0012732346076518297, 0.021775715053081512, 0.012743091210722923, -0.03280683234333992, -0.024125199764966965, 0.010071268305182457, -0.00807277299463749, -0.017964964732527733, -0.02439739555120468, -0.005981158465147018, -0.0015946771018207073, -0.025701073929667473, 0.010622823610901833, 0.19678369164466858, -0.025199659168720245, 0.004691807087510824, 0.012506709434092045, -0.022878825664520264, 0.006009810604155064, -0.0015561756445094943, -0.01620285026729107, -0.007965327240526676, 0.03226244077086449, 0.02018551528453827, 0.0058952015824615955, 0.006872959900647402, -0.0029601361602544785, -0.0026986843440681696, 0.009870702400803566, -0.04475482553243637, -0.022291455417871475, -0.048909399658441544, -0.030170826241374016, -0.015987958759069443, -0.019841687753796577, -0.009476733393967152, 0.0021310115698724985, 0.03103039413690567, 0.005787755828350782, 0.0018310582963749766, -0.012542525306344032, 0.03444001078605652, 0.015285979025065899, -0.03492709994316101, 0.005021308083087206, 0.00873893778771162, 0.007836392149329185, 0.013043939135968685, -0.021704083308577538, 0.02015686221420765, 0.0044339364394545555, 0.024268461391329765, -0.011654305271804333, 0.005164569243788719, -0.013681452721357346, 0.030113521963357925, -0.04621608927845955, -0.0026789859402924776, 0.010902183130383492, 0.005264852195978165, -0.027706731110811234, 0.020830189809203148, 0.017879007384181023, -0.017406245693564415, 0.027319926768541336, 0.03521362319588661, 0.019239990040659904, 0.029626432806253433, -0.009849213063716888, -0.007112922612577677, 0.004258441738784313, -0.02742020972073078, 0.008036958053708076, -0.004025641828775406, 0.003946848213672638, 0.01023601833730936, -0.016303133219480515, -0.0367608442902565, 0.0013967974809929729, -0.01445506326854229, -0.01730596274137497, -0.010909346863627434, -0.013602658174932003, 0.011725936084985733, -0.03627375513315201, -0.010880693793296814, 0.014870520681142807, -0.01992764323949814, -0.01431180164217949, 0.0124064264819026, 0.021188342943787575, 0.01534328330308199, 0.03713332489132881, 0.008488230407238007, 0.009261841885745525, -0.011274662800133228, -0.02196195349097252, -0.013344787992537022, -0.0267325546592474, 0.020729906857013702, 0.008473904803395271, -0.0018050920916721225, 0.010780411772429943, -0.01750652864575386, -0.0029368563555181026, -0.00964148435741663, 0.004971166606992483, -0.008509719744324684, 0.012306143529713154, 0.011339129880070686, 0.001975214807316661, 0.010042616166174412, -0.0047132959589362144, -0.04481212794780731, 0.05188923701643944, 0.024211157113313675, -0.01614554598927498, -0.03621645271778107, -0.012162882834672928, 0.001134450314566493, -0.0011514625512063503, 0.0016761570004746318, -0.011389271356165409, -0.004573616199195385, -0.029182322323322296, 0.002009239513427019, 0.004140250850468874, 0.011489554308354855, 0.022148193791508675, 0.016102567315101624, -0.0058629680424928665, 0.011145727708935738, -0.0072024608962237835, 0.003696141066029668, -0.020901821553707123, 0.005658820737153292, 0.016073916107416153, -0.015515197068452835, -0.04077215865254402, 0.008223197422921658, -0.011690120212733746, -0.0043623060919344425, -0.051201581954956055, 0.01547221839427948, -0.009455244056880474, 0.02114536426961422, -0.01806524768471718, -0.0018695597536861897, -0.006181724369525909, 0.0008313631406053901, -0.0005014144699089229, -0.009118580259382725, -0.005236199591308832, -0.001885676640085876, -0.004512730520218611, 0.018767228350043297, -0.006665231194347143, -0.008373621851205826, -0.01160416379570961, 0.018366096541285515, -0.016589656472206116, -0.021704083308577538, -0.01722000539302826, -0.006862215232104063, -0.025199659168720245, -0.006421687081456184, 0.01660398207604885, 0.03507035970687866, -0.008237523958086967, -0.00975609291344881, -0.053149934858083725, 0.0021972698159515858, 0.005537048447877169, -0.03272087499499321, -0.0004488107224460691, 0.024096546694636345, 0.00868163350969553, -0.03105904534459114, 0.007109341211616993, -0.18520818650722504, 0.00929049402475357, -0.0075570326298475266, -0.028107862919569016, 0.016861852258443832, 0.023022087290883064, 0.007721783127635717, -0.001058342750184238, 0.007037710398435593, -0.0007006371743045747, 0.021102387458086014, -0.005537048447877169, -0.03498440608382225, -0.002625263063237071, 0.02035742811858654, 0.002127429936081171, 0.011382108554244041, 0.016761569306254387, 0.0342680998146534, 0.00300311460159719, 0.021890323609113693, -0.029683737084269524, 0.01004977896809578, -0.00058155128499493, -0.014490878209471703, 0.012384938076138496, -0.04678913578391075, 0.008531209081411362, 0.02247769571840763, 0.0010037242900580168, -0.024440374225378036, 0.004845812916755676, 0.007592848036438227, 0.01154685951769352, 0.0008998599369078875, -0.0014979757834225893, -0.014634139835834503, -0.0006191573338583112, -0.0020164025481790304, 0.027849992737174034, 0.026245467364788055, 0.028508994728326797, 0.013681452721357346, 0.016389090567827225, -0.02507072314620018, 0.022348759695887566, 0.060685478150844574, 0.018337443470954895, 0.010902183130383492, -0.03131691738963127, -0.01866694539785385, -0.029741041362285614, -0.00019026888185180724, -0.0010565519332885742, 0.017234332859516144, 0.022062236443161964, 0.010329138487577438, -0.004269185941666365, 0.009412266314029694, -0.020930472761392593, 0.0032932187896221876, -0.005576445255428553, -0.014233008027076721, -0.012241676449775696, -0.005343645811080933, -0.0011953363427892327, -0.01545789185911417, 0.016761569306254387, -0.025199659168720245, 0.033952921628952026, -0.008495394140481949, 0.005751940421760082, -0.009440918453037739, 0.01444073673337698, 0.006196050439029932, 0.005787755828350782, -0.021861670538783073, 0.027993254363536835, 0.012922167778015137, -0.00390387000516057, 0.005486906971782446, 0.04968301206827164, 0.0032377049792557955, 0.001241896185092628, 0.0005408113356679678, -0.0012938284780830145, 0.015887675806879997, -0.00833064317703247, 0.02111671306192875, -0.012922167778015137, 0.019154032692313194, -0.0081587303429842, 0.03741984814405441, -0.021761387586593628, -0.0040005710907280445, 0.002567958552390337, 0.0048673017881810665, -0.0028150840662419796, 0.014648466370999813, -0.01925431564450264, -0.03524227440357208, -0.0004705237806774676, -0.020056579262018204, 0.018050922080874443, 0.024039242416620255, 0.010859205387532711, -0.01860964111983776, 0.005203966051340103, 0.02868090756237507, -0.0234661977738142, -0.002383509650826454, 0.015658458694815636, 0.009548364207148552, 0.014913499355316162, -0.01573008857667446, 0.016962135210633278, 0.005859386175870895, -0.008688796311616898, 0.003214424941688776, -0.000572597433347255, 0.049568403512239456, -0.008337806910276413, -0.018136877566576004, 0.019813034683465958, -0.01934027299284935, -0.019898992031812668, -0.09466705471277237, 0.0024909554049372673, 0.008208871819078922, 0.0014675327111035585, -0.011059771291911602, 0.014870520681142807, -0.0025930292904376984, 0.02515668049454689, 0.01575874164700508, 0.024855831637978554, -0.007951000705361366, -0.0010082012740895152, -0.018222834914922714, -0.003629882587119937, 0.012105578556656837, -0.0006187096587382257, -0.010887857526540756, -0.006038462743163109, 0.007585684768855572, 0.05441063269972801, 0.0037104671355336905, -0.02007090486586094, -0.014347617514431477, -0.003914614673703909, -0.028523320332169533, 0.0042083002626895905, -0.048565573990345, 0.01753517985343933, 0.011417924426496029, 0.010071268305182457, 0.021775715053081512, -0.004018479026854038, 0.009892191737890244, -0.018695596605539322, -0.009892191737890244, 0.018007943406701088, -0.03550014644861221, -0.00648615462705493, -0.004956840071827173, -0.04455425962805748, 0.031832657754421234, 0.03260626643896103, 0.035471491515636444, -0.03524227440357208, -0.001203394727781415, 0.007216786965727806, -0.013430745340883732, 0.029397213831543922, -0.004462589044123888, -0.023981938138604164, -0.014533856883645058, 0.008581350557506084, -0.02492746338248253, -0.04263455793261528, 0.019755730405449867, -0.010866368189454079, -0.003205471206456423, 0.00827333889901638, -0.015916328877210617, -0.022262802347540855, -0.021503517404198647, 9.032175876200199e-05, -0.01195515412837267, 0.00820170808583498, 0.012993798591196537, 0.004648828413337469, -0.02196195349097252, -0.016016611829400063, 0.027233969420194626, -0.002888505579903722, -0.02913934364914894, 0.015429239720106125, -0.014369106851518154, -0.0038931253366172314, -0.013473723083734512, 0.0031410036608576775, -0.007707457058131695, -0.03432540223002434, -9.653347660787404e-05, 0.009935169480741024, -0.00244260486215353, -0.027577796950936317, -0.008652981370687485, 0.011883523315191269, 0.020371753722429276, 0.004297838546335697, 0.0018328489968553185, -0.0034669230226427317, 0.014197193086147308, -0.03598723188042641, 5.825585685670376e-05, 0.007671641651540995, -0.0018641874194145203, -0.015916328877210617, -0.005913109518587589, 0.035528797656297684, 0.02007090486586094, -0.0030836991500109434, -0.0008649399969726801, -0.0006285588606260717, -0.016475047916173935, -0.012664297595620155, -0.07587117701768875, 0.043494123965501785, -0.013122733682394028, 0.0062139579094946384, -0.008194545283913612, -0.014626977033913136, -0.0018203136278316379, 0.007227531634271145, -0.009985310956835747, 0.03822210803627968, -0.008767589926719666, 0.018079573288559914, -0.0027344997506588697, -0.013187200762331486, -0.012893515639007092, -0.01242075301706791, 0.027878645807504654, 0.004416028968989849, 0.02379569783806801, -0.011389271356165409, -0.010257507674396038, 0.00047768684453330934, 0.02190464921295643, 0.03498440608382225, 0.01302961353212595, -0.0011684747878462076, 0.0026951029431074858, 0.015099738724529743, -0.02201925963163376, -0.029397213831543922, 0.02134593017399311, -0.022377412766218185, 0.006604345049709082, 0.02114536426961422, -0.01727730967104435, -0.019884666427969933, 0.01194082759320736, 0.01620285026729107, 0.017993615940213203, -0.0068013290874660015, -0.014669954776763916, -0.026431705802679062, -0.0023369495756924152, -0.024626614525914192, -0.018452052026987076, -0.018853183835744858, -0.02724829502403736, 0.00025182648096233606, -0.010185876861214638, 0.00827333889901638, 0.03449731692671776, 0.026832837611436844, -0.0425199493765831, -0.0116614680737257, -5.4730284318793565e-05, -0.017119722440838814, 0.013760246336460114, 0.02292180433869362, 0.01863829232752323, -0.007377956062555313, 0.03859458863735199, -0.0015167788369581103, 0.033523138612508774, -0.012377774342894554, 0.013108407147228718, 0.0016224340070039034, -0.015515197068452835, -0.020515015348792076, 0.014856195077300072, -0.023623785004019737, -0.00255900458432734, -0.020257145166397095, -0.0013430744875222445, 0.028580624610185623, 0.011167217046022415, 0.012449405156075954, -0.02064395137131214, 0.009140069596469402, -0.006944590713828802, 0.023981938138604164, 0.017578158527612686, -0.012220187112689018, -0.022549325600266457, 0.0073564667254686356, 0.007206042297184467, 0.0042405338026583195, -0.02137458324432373, 0.01899644546210766, 0.019999274984002113, 0.0021918974816799164, -0.03693275898694992, -0.008395111188292503, -0.002404998755082488, 0.006797747686505318, 0.02532859519124031, 0.016274482011795044, -0.019741404801607132, 0.014096910133957863, 0.04277781769633293, 0.008760427124798298, 0.007728945929557085, 0.004193974193185568, -0.019096728414297104, -0.02027147077023983, -0.020873168483376503, -0.026388727128505707, -0.01663263514637947, -0.026589293032884598, 0.020142536610364914, 0.005032052285969257, 0.009605668485164642, -0.005200384650379419, 0.00914723239839077, 0.030170826241374016, -0.01214139349758625, -0.00856702495366335, 0.0007521217339672148, -0.02820814587175846, -0.03171804919838905, 0.04999818652868271, 0.009849213063716888, -0.005243362858891487, 0.025486182421445847, 0.00813007727265358, 0.043207600712776184, -0.01112423837184906, 0.0260592270642519, 0.007600010838359594, 0.015629805624485016, -0.009204537607729435, 0.00074630172457546, -0.0015624433290213346, -0.029970260336995125, -0.013502375222742558, -0.018795879557728767, 0.0032287510111927986, -0.002924320986494422, 0.016947809606790543, 0.014412084594368935, 0.09495357424020767, 0.011167217046022415, -0.02422548271715641, -0.005787755828350782, -0.002779268892481923, 0.011990969069302082, 0.029125018045306206, 0.02103075571358204, -0.015099738724529743, -0.02436874434351921, 0.00785071775317192, -0.018366096541285515, -0.01160416379570961, -0.03673219308257103, -0.01701943948864937, -0.0062139579094946384, -0.004494822584092617, -0.0006290065357461572, 0.01297230925410986, -0.004408865701407194, 0.013129896484315395, 0.005626586731523275, 0.013659963384270668, 0.005565700586885214, -0.01147522870451212, -0.0262024886906147, 0.01759248599410057, -0.016761569306254387, -0.0042799306102097034, -0.03105904534459114, 0.010945161804556847, 0.0023530665785074234, -0.009054113179445267, -0.013308973051607609, -0.006453920621424913, -0.005397368688136339, -0.016159871593117714, -0.013874854892492294, -0.0008832953171804547, 0.006246191915124655, -0.003918196074664593, 0.00169406458735466, -0.0241395253688097, -0.014211518689990044, -0.0034651323221623898, -0.008137241005897522, 0.009426591917872429, -0.004684643819928169, -0.014147051610052586], "33630944-a8b9-4d7e-8d3f-0381d2c4e586": [-0.0208077821880579, -0.008923720568418503, -0.014573987573385239, -0.004806996323168278, 0.009201252833008766, 0.030457356944680214, -0.029176440089941025, 0.0016082623042166233, -0.021547868847846985, -0.019953837618231773, 0.0193418450653553, -0.006169749423861504, 0.007592990528792143, -0.006746162194758654, -0.0035545441787689924, 0.012453358620405197, 0.0037253331393003464, -0.006959648337215185, 0.014175480231642723, -0.022259488701820374, -0.027368923649191856, 0.00048167811473831534, -0.021206289529800415, 0.015926066786050797, -0.023170363157987595, -0.008674653246998787, 0.01763395592570305, -0.03592260181903839, -0.016780011355876923, 0.008866790682077408, -0.0020210021175444126, 0.0039352611638605595, -0.012054851278662682, 0.020039232447743416, -0.019156822934746742, -0.013328651897609234, 0.0042021190747618675, -0.004497441463172436, 0.03549562767148018, -0.01824594847857952, 0.024294722825288773, 0.0046717883087694645, 0.015157516114413738, -0.028635608032345772, -0.0026881464291363955, 0.019199520349502563, 0.028037846088409424, -0.013115165755152702, -0.001299596857279539, 0.02934722788631916, 0.01571257971227169, 0.017064658924937248, -0.023583102971315384, -0.000674260372761637, 0.022714925929903984, -0.0010950060095638037, 0.01170615665614605, 0.00825479719787836, -0.018032463267445564, -0.006475746165961027, -0.01040389109402895, -0.023483475670218468, -0.000165118181030266, 0.012033502571284771, -0.016096854582428932, -0.012382196262478828, 0.0007102862000465393, 0.029062580317258835, -0.019128357991576195, -0.015285607427358627, 0.027995148673653603, 0.0002617429126985371, -0.0010603144764900208, -0.017534328624606133, 0.00938627403229475, -0.01305111963301897, -0.00019803064060397446, -0.014801706187427044, 0.033446162939071655, 0.006408142391592264, 0.02073661983013153, -0.011065698228776455, -0.025959914550185204, 0.0352679118514061, 0.024750160053372383, -0.004871041979640722, 0.027767430990934372, 0.012866098433732986, -0.029034115374088287, 0.003977958578616381, 0.00615551695227623, 0.030087312683463097, 0.02523406222462654, 0.025618337094783783, 0.012303917668759823, 0.017918603494763374, 0.0067532784305512905, 0.018687153235077858, 0.005781916435807943, -0.02553294226527214, 0.010439472272992134, -0.008432702161371708, -0.03851290047168732, -0.0021437567193061113, -0.003953051753342152, 0.012204291298985481, 0.01142150815576315, 0.004412047099322081, -0.007322574499994516, 0.0007440881454385817, -0.02882062830030918, 0.017719348892569542, -0.018601758405566216, 0.0007142890244722366, 0.0016954357270151377, 0.003885447746142745, 0.008098240941762924, 0.0014010027516633272, -0.008553678169846535, -0.018986035138368607, 0.021647494286298752, 0.005653824657201767, 0.018530597910284996, -0.012460474856197834, 0.020836247131228447, 0.029318762943148613, 0.006739045958966017, -0.01827441342175007, 0.002739738905802369, -0.023896215483546257, 0.01397622562944889, 0.011193790473043919, 0.011250719428062439, 0.004287513438612223, -0.011948107741773129, 0.027326226234436035, -0.024636300280690193, 0.036691151559352875, -0.025789126753807068, -0.00048301240894943476, 0.008624840527772903, 0.05086662992835045, -0.02439435012638569, 0.003024386940523982, -0.009848827496170998, 0.015114818699657917, 0.01225410494953394, -0.009507249109447002, 0.013663113117218018, 0.0002034789795288816, -0.002837586682289839, 0.008745815604925156, 0.006098587531596422, -0.03119744174182415, 0.0024088353384286165, 0.01687963679432869, 0.008582143113017082, 0.012538752518594265, -0.0050631798803806305, -0.0038178437389433384, -0.002079710830003023, 0.02640111930668354, 0.0329337939620018, 0.003374860156327486, 0.03014424256980419, 0.02874946780502796, 0.018687153235077858, 0.014730543829500675, -0.010916258208453655, 0.0008966418099589646, -0.008169403299689293, 0.013812553137540817, -0.002163326134905219, 0.002334115095436573, 0.004472534637898207, 0.0034993935842067003, 0.014388966374099255, -0.02103550173342228, 0.0023181037977337837, -0.010830863378942013, -0.04346577823162079, -0.021647494286298752, 0.012232756242156029, 0.016338806599378586, -0.019427238032221794, -0.003049293765798211, 0.024010075256228447, -0.04312419891357422, -0.003552765119820833, -0.0016723080771043897, 0.015214446000754833, 0.007685501128435135, -0.025319457054138184, -0.007254970725625753, -0.6389782428741455, -0.03421471267938614, 0.012531636282801628, 0.0065789311192929745, -0.017135821282863617, 0.009222601540386677, 0.007678384892642498, 0.006187540013343096, -0.03296225890517235, 0.04830479621887207, -0.014929797500371933, 0.027995148673653603, 0.004251932259649038, -0.003312593325972557, -0.004500999581068754, -0.024565137922763824, -0.007521828170865774, 0.0024319628719240427, -0.008226332254707813, 0.007407969329506159, -5.298236646922305e-05, 0.0028411448001861572, -0.001512193470261991, -0.0024444162845611572, -0.004572161473333836, -0.021320149302482605, 0.011969456449151039, -0.009870176203548908, 0.005173481069505215, 0.015100586228072643, -0.035865671932697296, -0.0044191633351147175, 0.027923988178372383, -0.016552291810512543, 0.04907334968447685, -0.015000959858298302, -0.016111087054014206, 0.015157516114413738, 0.022373348474502563, 0.011976572684943676, -0.030571214854717255, 0.002529810881242156, 0.021974841132760048, -0.006799533497542143, -0.014253757894039154, -0.0005088086472824216, 0.01865868829190731, 0.006429491098970175, -0.005660940892994404, -0.016481129452586174, 0.02704157866537571, 0.01685117371380329, -0.021135127171874046, -0.003294802736490965, 0.013912180438637733, 0.0017301272600889206, 0.03373080864548683, -0.006208888720721006, -0.02288571372628212, -0.01144285686314106, 0.00013909956032875925, -0.005173481069505215, 0.002739738905802369, -0.00576768396422267, -0.02356887049973011, 0.009777665138244629, 0.005771242082118988, -0.007144669536501169, 0.017206983640789986, -0.00808400847017765, 0.013841018080711365, 0.009322227910161018, -0.02005346491932869, -0.003568776650354266, -0.0009517924045212567, 0.030457356944680214, -0.018103625625371933, -0.003568776650354266, -0.014531290158629417, 0.009443203918635845, 0.02587451972067356, 0.010695655830204487, -0.022102931514382362, -0.011279184371232986, 0.013954877853393555, 0.00819786824285984, -0.010496402159333229, -0.00017979535914491862, -0.012552984990179539, -0.029176440089941025, -0.0017852778546512127, -0.00847539957612753, -0.014602452516555786, -0.02904834784567356, 0.016039924696087837, 0.005102318711578846, -0.009165671654045582, -0.005653824657201767, 0.008710234425961971, -0.007678384892642498, -0.009073160588741302, -0.02085047960281372, 0.0023465685080736876, -0.011969456449151039, 0.02361156791448593, 0.013855250552296638, -0.03142515942454338, -0.015271374955773354, 0.045230597257614136, -0.010923374444246292, 0.017349306493997574, -0.004490325227379799, -0.02039504237473011, -0.0053158048540353775, -0.008589259348809719, -0.03373080864548683, 0.040476974099874496, 0.03225063905119896, -0.003275233320891857, 0.01680847629904747, 0.006543350405991077, 0.010795282199978828, 0.007657036185264587, -0.019156822934746742, 0.0068457890301942825, 0.030115777626633644, 0.016723081469535828, -0.012033502571284771, 0.0248497873544693, -0.020409274846315384, -0.003017270704731345, -0.024864019826054573, 0.025817591696977615, -0.005778358317911625, -0.002332336036488414, -0.022273721173405647, 0.0300588496029377, 0.0013547474518418312, 0.035751812160015106, -0.029147975146770477, -0.03441396728157997, -0.0010629830649122596, 0.010980304330587387, -0.03765895590186119, -0.015285607427358627, -0.03327537328004837, -0.02632995694875717, 0.018630223348736763, -0.009471668861806393, 0.02466476522386074, -0.011713272891938686, 0.003504730761051178, -0.001256010145880282, 0.014972494915127754, -0.007671268656849861, 0.00967092253267765, 0.00063022889662534, -0.0474223867058754, -0.005404757335782051, -0.011343230493366718, -0.033104583621025085, 0.04064776003360748, -0.02681385912001133, -0.002216697670519352, -0.0037324493750929832, -0.002141977660357952, -0.004959994927048683, 0.014075852930545807, 0.00352252135053277, -0.01346385944634676, 0.0017256796127185225, -0.0036968684289604425, -0.012844749726355076, 0.022857248783111572, -0.00704504270106554, 0.010752585716545582, -0.03908219560980797, -0.009187020361423492, 0.012496055103838444, -0.0013236140366643667, -0.0021384195424616337, 0.00492085563018918, -0.01813209056854248, 0.0009758095839060843, 0.023284221068024635, -0.003839192446321249, -0.0036168110091239214, 0.024195095524191856, -0.02621609903872013, 0.04406353831291199, -0.022615298628807068, 0.010183288715779781, -0.020338112488389015, 0.02719813399016857, -0.02096433937549591, 0.018687153235077858, -0.010311380960047245, -0.0014250200474634767, -0.0005306020029820502, 0.005689405836164951, 0.010012499988079071, 0.03062814474105835, 0.03324690833687782, -0.011193790473043919, -0.014509941451251507, -0.03475554287433624, 0.018829477950930595, -0.04147323966026306, 0.030001919716596603, 0.01642420142889023, 0.010361193679273129, 0.00836865697056055, 0.005401199217885733, -0.0033766392152756453, -0.009279531426727772, -0.007991498336195946, 0.004308862145990133, 0.01320055965334177, -0.004255490377545357, -0.010119243524968624, -0.007183808833360672, -0.013207675889134407, 0.03560948744416237, 0.00629784120246768, -0.03279147297143936, -0.003383755451068282, 0.012282568961381912, 0.022273721173405647, 0.026230331510305405, -0.008966417983174324, 0.007713966071605682, 0.01797553338110447, 0.002449753461405635, 0.003273454261943698, 0.025703731924295425, -0.020138859748840332, 0.0242804903537035, -0.015057888813316822, 0.03330383822321892, 0.0009633562294766307, 0.004009981174021959, 0.007948800921440125, 0.015612953342497349, -0.014588220044970512, -0.006795975379645824, -0.011955223977565765, 0.04172942414879799, 0.012567217461764812, -0.022344883531332016, 0.015854904428124428, 0.010090778581798077, 0.011215138249099255, -0.01216159388422966, -0.0068457890301942825, 0.026031076908111572, -0.02187521383166313, -0.001461490523070097, 0.01692233420908451, 0.018758315593004227, 0.026500746607780457, 0.00412739859893918, 0.011962340213358402, 0.028308263048529625, -0.0025547174736857414, 0.01971188746392727, 0.0035563232377171516, -0.008539445698261261, -0.017392003908753395, 0.01334999967366457, -0.01653805933892727, 0.00017990655032917857, -0.02005346491932869, -0.009528597816824913, -0.013869483023881912, -0.017534328624606133, 0.002474660286679864, 0.02416663058102131, -0.0028553770389407873, 0.008845442906022072, 0.000992710585705936, -0.026031076908111572, -0.017093123868107796, 0.010055197402834892, 0.02425202541053295, 0.009265298955142498, 0.013392697088420391, 0.007977265864610672, 0.010731237009167671, -0.012218523770570755, 0.034015458077192307, -0.00688136974349618, 0.01956956274807453, -0.014424546621739864, -0.0024444162845611572, 0.021007036790251732, 0.014659381471574306, 0.01601145975291729, -0.0010745469480752945, 0.011812900193035603, 0.02046620473265648, 0.00036003548302687705, 0.013833901844918728, -0.027781663462519646, 0.003079537535086274, 0.03549562767148018, -0.014801706187427044, 0.00352252135053277, -0.020266951993107796, -0.010460820980370045, -0.03139669448137283, 0.027255063876509666, 0.012346615083515644, -0.014972494915127754, 0.008510980755090714, 0.027738966047763824, 0.005447454750537872, -0.00032378730247728527, -0.018744083121418953, 0.035524092614650726, 0.013406929560005665, -0.002985247876495123, -0.01184136513620615, -0.020523134618997574, 0.022231023758649826, 0.048134010285139084, 0.04093240946531296, 0.03301918879151344, 0.026956183835864067, -0.027810128405690193, 0.0034940564073622227, -0.037829745560884476, -0.02983113005757332, 0.04090394452214241, -0.01582643948495388, -0.01945570297539234, -0.0036274853628128767, 0.015484861098229885, 0.003839192446321249, 0.02795245125889778, -0.005806823261082172, 0.010631609708070755, -0.00823344849050045, -0.004988459404557943, -0.0228430163115263, 0.01658075675368309, 0.003058189060539007, 0.02644381672143936, 0.010603144764900208, 0.032649148255586624, -0.015413699671626091, 0.03985074535012245, 0.01687963679432869, -0.0017541444394737482, -0.017947068437933922, -0.021804051473736763, 0.02149093896150589, 0.014474360272288322, 0.015314072370529175, -0.010225986130535603, 0.02489248476922512, 0.006600279826670885, -0.010048081167042255, -0.010112127289175987, 0.003775146557018161, 0.001105680363252759, 0.004828345030546188, 0.01418259646743536, -0.0075574093498289585, 0.015570255927741528, -0.013406929560005665, -0.0010887793032452464, 0.025888752192258835, -0.002061920240521431, -0.011393044143915176, 0.014147015288472176, 0.004397814627736807, -0.01786167360842228, 0.015214446000754833, 0.018971802666783333, 0.02119205705821514, 0.012659728527069092, -0.013214792124927044, -0.01598299667239189, -0.01433203648775816, -0.038085926324129105, -0.008212100714445114, 0.020750852301716805, -0.012837633490562439, -0.002319882856681943, -0.027326226234436035, -0.01564141735434532, -0.017989765852689743, -0.01623917929828167, 0.022615298628807068, -0.002069036476314068, -0.01729237660765648, -0.032193709164857864, 0.037032730877399445, 0.014381850138306618, 0.021007036790251732, 0.0018626665696501732, -0.010012499988079071, 0.010873560793697834, 0.007521828170865774, -0.014424546621739864, -0.023554638028144836, -0.002590298419818282, -0.03683347627520561, -0.015769509598612785, -0.006703464780002832, -0.00880274549126625, 0.010681423358619213, -0.01941300742328167, 0.017349306493997574, -0.021775586530566216, 0.011649226769804955, 0.012197175063192844, -0.01895757019519806, 0.018374040722846985, 0.0029425506945699453, 0.00726208696141839, 0.021476706489920616, -0.00962822511792183, 0.0009286646964028478, -0.002177558606490493, -0.02009616233408451, -0.018801013007760048, -0.00033668545074760914, 0.006984555162489414, -0.00499557564035058, 0.01233238261193037, 0.0167373139411211, 0.01566988229751587, 0.006454397924244404, 0.020950106903910637, -0.00036759645445272326, 0.011549600400030613, 0.002038792707026005, 0.02386775054037571, -0.0014054503990337253, 0.0300588496029377, 0.009585527703166008, 0.007276319433003664, -0.0052802241407334805, 0.008881023153662682, 0.008204984478652477, 0.026870789006352425, -0.0006253364845179021, 0.0024248468689620495, 0.008019962348043919, -0.01669461652636528, -0.030315032228827477, -0.009734967723488808, -0.005536407232284546, -0.006710581015795469, 0.007806476671248674, 0.011037233285605907, -0.04619840160012245, -0.03390159830451012, -0.005511500407010317, -0.00015055220865178853, 0.010446588508784771, -0.027653571218252182, -0.02847905084490776, -0.009094509296119213, 0.0016349480720236897, -0.011798667721450329, -0.01329307071864605, 0.014573987573385239, -0.02382505312561989, -0.023583102971315384, 0.011976572684943676, -0.0016500699566677213, 0.019555330276489258, -0.012175826355814934, -0.0020565830636769533, -0.008019962348043919, -0.007671268656849861, -0.010994535870850086, -0.02632995694875717, 0.00037048739613965154, 0.004152305424213409, 0.03893987089395523, 0.01892910525202751, 0.009585527703166008, -0.0237111933529377, -0.001860887510702014, 0.002366138156503439, 0.008696001954376698, -0.011834248900413513, -0.01027579978108406, -0.01334999967366457, -0.017007729038596153, -0.00023461238015443087, 0.010240218602120876, -0.02069392427802086, 0.018487900495529175, -0.003675519721582532, 0.016708848997950554, 0.007500479929149151, -0.01695079915225506, 0.00849674828350544, -0.022216791287064552, -0.051122814416885376, -0.03247835859656334, 0.008204984478652477, -0.016908101737499237, 0.007365271914750338, -0.04602761194109917, -0.01182001642882824, 0.024038540199398994, -0.0012346615549176931, 0.004774973262101412, -0.015015192329883575, 0.023440778255462646, -0.02258683368563652, 0.008987766690552235, -0.006379677448421717, 0.03763049095869064, -0.020451972261071205, -0.007500479929149151, -0.020679691806435585, 0.02420932799577713, 0.01389794796705246, 0.026429584249854088, 0.01813209056854248, -0.01537100225687027, 0.005952705163508654, -0.00791321974247694, 0.025091737508773804, -0.011015884578227997, -0.00010251782805426046, -0.005436780396848917, 0.0003246768319513649, -0.016481129452586174, -0.03492633253335953, -0.009229717776179314, 0.01902873069047928, 0.0010229544714093208, 0.00921548530459404, 0.007528944406658411, 0.01174885407090187, -0.028991417959332466, -0.017463166266679764, 0.003421115456148982, -0.0003342392446938902, 0.028649840503931046, 0.016751546412706375, 0.021177824586629868, 0.031595949083566666, 0.009941337630152702, -0.020708154886960983, 0.01525714248418808, 0.011905410327017307, 0.0008317064493894577, 0.00806265976279974, 0.012723773717880249, -0.009834595024585724, -0.016367271542549133, 0.007778011728078127, 0.02568949945271015, -0.011869829148054123, -0.008510980755090714, 0.013997574336826801, 0.02806631103157997, 0.00271483208052814, -0.037374306470155716, -0.013734275475144386, -0.025333689525723457, 0.005547081585973501, 0.009087393060326576, 0.022387580946087837, 0.03290532901883125, -0.010446588508784771, -0.013328651897609234, 0.005518616642802954, -0.017363538965582848, 0.022487206384539604, 0.024010075256228447, -0.026230331510305405, -0.015171748585999012, 0.015570255927741528, -0.00962822511792183, -0.018445203080773354, -0.019171055406332016, 0.014097201637923717, -0.017135821282863617, 0.014154131524264812, 0.006607396062463522, 0.009891524910926819, -0.017178518697619438, -0.01729237660765648, 0.0020992804784327745, 0.03205138444900513, -0.011940991505980492, -0.019327612593770027, 0.016609221696853638, -0.033104583621025085, 0.0231134332716465, -0.014944029971957207, 0.003721775021404028, 0.005977611988782883, -0.029774200171232224, -0.009379157796502113, 0.026088006794452667, 0.016409968957304955, -0.019469935446977615, -0.00453302264213562, -0.01502942480146885, -0.011485554277896881, 0.001775493030436337, -0.014004690572619438, 0.00851809699088335, -0.027070043608546257, -0.010610261000692844, -0.004447627812623978, 0.010290032252669334, 0.016452664509415627, -0.001939165755175054, 0.006304957438260317, 0.024864019826054573, 0.03538177162408829, -0.02156209945678711, 0.0027895523235201836, -0.018786780536174774, -0.0025653918273746967, -0.030571214854717255, 0.01380543690174818, 0.0005457239458337426, -0.018630223348736763, 0.02069392427802086, -0.013342883437871933, -0.041757889091968536, -0.026116471737623215, 0.02130591683089733, 0.01658075675368309, 0.0009446761687286198, 0.02455090545117855, 0.021120896562933922, 0.020608529448509216, 0.004305304028093815, -0.0041772122494876385, -0.026799626648426056, 0.024152398109436035, -0.006436607334762812, 0.021434009075164795, 0.020024999976158142, -0.005205503664910793, 0.0077424305491149426, -0.016068389639258385, 0.005198387429118156, -0.002069036476314068, -0.042924948036670685, -0.014538406394422054, 0.01010501105338335, 0.02847905084490776, -0.010446588508784771, -0.029147975146770477, -0.010147707536816597, -0.003575892886146903, -0.01520021352916956, 0.02946108765900135, 0.02557563968002796, -0.003913912456482649, -0.007358155678957701, 0.00226651132106781, 0.0009242171072401106, 0.017064658924937248, -0.009158555418252945, -0.004771415144205093, -0.01006231363862753, -0.02420932799577713, -0.03999307006597519, -0.025860287249088287, -0.018971802666783333, 0.009848827496170998, 0.03244989365339279, -0.023255757987499237, -0.0210781991481781, -0.02096433937549591, -0.04135938361287117, -0.006678557954728603, -0.025461779907345772, 0.0045792777091264725, 0.05115127936005592, 0.006618070416152477, 0.002693483605980873, 0.002177558606490493, -0.014026039279997349, 0.013399813324213028, -0.00694897398352623, 0.008916604332625866, -0.00424837414175272, 0.01025445107370615, 0.0051307836547493935, -0.01437473390251398, -0.04699541628360748, 0.0012826959136873484, 0.010958955623209476, 0.007251412607729435, 0.024565137922763824, 0.017021961510181427, -0.0381428562104702, 0.018943337723612785, -0.0012230976717546582, 0.003707542549818754, 0.019327612593770027, 0.010937606915831566, -0.008866790682077408, -0.037545096129179, -0.0064437235705554485, 0.035894136875867844, 0.02356887049973011, -0.017392003908753395, -0.0005506163579411805, 0.0010211754124611616, 0.005027598701417446, 0.012666844762861729, -0.020765084773302078, -0.008831210434436798, 0.0014374733436852694, -0.017164286226034164, 0.02409547008574009, 0.0075574093498289585, -0.008660420775413513, 0.0077993604354560375, 0.004483208991587162, -0.0015824660658836365, -0.005920682568103075, 0.015171748585999012, -0.028265565633773804, -0.01653805933892727, 0.029774200171232224, -0.01816055364906788, -0.0036719616036862135, 0.018786780536174774, -0.008382889442145824, -0.01389794796705246, -0.007436433807015419, 0.00044409563997760415, -0.0283224955201149, -0.02802361361682415, -0.008973534218966961, -0.005102318711578846, -0.04403507336974144, -0.016723081469535828, 0.0026116471271961927, -0.006934741511940956, 0.018103625625371933, -0.007585874292999506, -0.011051465757191181, -0.012453358620405197, 0.026002611964941025, -0.003999307285994291, -0.00967092253267765, -0.01305111963301897, -0.0030261659994721413, -0.0048461356200277805, -0.03606492653489113, 0.015171748585999012, 0.2022140771150589, -0.008012846112251282, 0.008660420775413513, 0.012773587368428707, -0.006518443580716848, 0.0050987605936825275, 0.012830517254769802, -0.009272415190935135, -0.013926412910223007, 0.00836865697056055, -0.00578903267160058, 0.002458648756146431, -0.01801823079586029, -0.0034620335791260004, 0.0020281183533370495, -0.005486594047397375, -0.03976535052061081, -0.013357115909457207, -0.039822280406951904, -0.021690191701054573, 0.001507745822891593, -0.022871481254696846, -0.004102492239326239, -0.00936492532491684, 0.041757889091968536, 0.013157862238585949, 0.00022749617346562445, -0.0070628332905471325, 0.04486055299639702, 0.022344883531332016, -0.038085926324129105, -0.013136513531208038, -0.0009126532822847366, 0.009322227910161018, -0.003513626055791974, -0.006504211109131575, 0.010766818188130856, 0.005237526725977659, 0.041672494262456894, 0.0025867405347526073, 0.0045792777091264725, -0.04007846489548683, 0.01687963679432869, -0.035182517021894455, -0.014773241244256496, 0.005159248597919941, 0.0015575593570247293, -0.022672228515148163, 0.013357115909457207, -0.006390351802110672, -0.007806476671248674, 0.026941951364278793, 0.035438697785139084, 0.015057888813316822, 0.019398774951696396, -0.008745815604925156, -0.01715005375444889, 0.017021961510181427, -0.024935182183980942, 0.00979901384562254, -0.01925645023584366, 0.0047892057336866856, -0.009115858003497124, -0.004312420263886452, -0.03199445828795433, 0.0008188083302229643, 0.0014606009935960174, -0.019768817350268364, -0.009777665138244629, -0.03341769799590111, 0.00910162553191185, -0.010802398435771465, -0.00015522220928687602, 0.006571814883500338, -0.01525714248418808, -0.02103550173342228, 0.01737777143716812, 0.03492633253335953, 0.02356887049973011, 0.05382697284221649, -0.005436780396848917, -0.001560227945446968, 0.001066541182808578, -0.029290297999978065, 0.0037253331393003464, -0.027098508551716805, 0.02553294226527214, -0.0014205724000930786, -0.024636300280690193, 0.012090431526303291, -0.026828091591596603, 0.004952878691256046, -0.013684461824595928, -0.009421855211257935, -0.01261703111231327, 0.007123320829123259, 0.005639592185616493, 0.009713619016110897, -0.008091124705970287, 0.005187713075429201, -0.04002153500914574, 0.05937761068344116, 0.01710735633969307, -0.0011261394247412682, -0.018687153235077858, -0.0051307836547493935, 0.019626492634415627, 0.014830170199275017, 0.0024639859329909086, -0.026458049193024635, 0.0034246735740453005, -0.01895757019519806, 0.02119205705821514, 0.0033161514438688755, 9.123196650762111e-05, 0.013819669373333454, 0.004678904544562101, -0.015157516114413738, -0.0038249599747359753, -0.02315613068640232, 0.01201215386390686, 0.0033944295719265938, 0.010147707536816597, 0.02012462727725506, -0.011976572684943676, -0.012965724803507328, 0.022159861400723457, -0.009315111674368382, -0.005013366229832172, -0.021092431619763374, 0.0242804903537035, -0.017591258510947227, 0.016836941242218018, -0.021661726757884026, -0.012666844762861729, -0.013599066995084286, 0.0039601679891347885, 0.002976352581754327, 0.01146420557051897, 0.0012987073278054595, 0.002234488260000944, 0.01575527712702751, 0.014246641658246517, 0.008055543527007103, -0.0049137393943965435, -0.017078891396522522, 0.0265861414372921, 0.008439818397164345, -0.020864712074398994, 0.00982036255300045, -0.007920335978269577, -0.015442164614796638, -0.012496055103838444, 0.012211407534778118, 0.04423432797193527, -0.005059621762484312, 0.0016385061899200082, -0.0531722828745842, 0.02126321941614151, 0.0020192230585962534, -0.037829745560884476, 0.008838326670229435, 0.019626492634415627, -0.007778011728078127, -0.031112046912312508, 0.0004102936654817313, -0.18547676503658295, 0.014196828007698059, 0.020722387358546257, -0.023170363157987595, 0.02160479687154293, -0.003405103925615549, -0.015627184882760048, 0.017989765852689743, -0.004251932259649038, 0.0004959105281159282, 0.026756929233670235, 0.008048427291214466, -0.0040277717635035515, 0.008845442906022072, 0.007578758057206869, -0.007148227654397488, -0.019284915179014206, 0.007393736857920885, 0.022686460986733437, 0.015840671956539154, 0.012695309706032276, -0.02772473357617855, 0.005974053870886564, -0.014460127800703049, -0.024308955296874046, 0.004066911060363054, -0.03028656728565693, -0.0006030983640812337, -0.003156036837026477, -0.013769855722784996, -0.01623917929828167, 0.02126321941614151, -0.006956090219318867, 0.010966071859002113, 0.008603491820394993, -0.00762145547196269, -0.01662345416843891, -0.003259221790358424, -0.017804743722081184, 0.032307568937540054, 0.008767164312303066, 0.014815938659012318, 0.0001482172083342448, 0.01435338519513607, -0.014132782816886902, 0.030428892001509666, 0.04355117306113243, 0.012318150140345097, -0.012545868754386902, -0.024678997695446014, -0.009770548902451992, -0.026842324063181877, 0.004956436809152365, -0.0025013459380716085, 0.010325613431632519, 0.01112262811511755, 0.006710581015795469, -0.014815938659012318, 0.0030190497636795044, -0.013036887161433697, 0.007212273310869932, -0.013584834523499012, -0.0017354644369333982, 0.01146420557051897, -0.011222254484891891, -0.0011652784887701273, -0.01628187671303749, 0.020451972261071205, -0.0012524520279839635, 0.01619648188352585, -0.004198560956865549, -0.008126705884933472, -0.009243950247764587, -0.010980304330587387, 0.010304264724254608, -0.0004932419396936893, -0.03375927358865738, 0.007970149628818035, -0.0008112473296932876, 0.009998267516493797, 0.015143283642828465, 0.050895094871520996, 0.003928144928067923, 0.011542484164237976, 0.004461860284209251, -0.014360501430928707, 0.005369176622480154, 0.009493017569184303, -0.003077758476138115, -0.0323929637670517, 0.024593602865934372, 0.0018003997392952442, 0.018914872780442238, -0.024636300280690193, 0.015854904428124428, -0.007571641821414232, -0.009279531426727772, 0.011791551485657692, -0.004241257905960083, -0.0182032510638237, -0.02598837949335575, 0.011208022013306618, -0.018986035138368607, 0.029034115374088287, 0.012432009913027287, 0.007294110022485256, -0.0251486673951149, 0.01452417392283678, 0.03051428496837616, -0.0034104411024600267, -0.0161680169403553, 0.01831711083650589, 0.010069429874420166, 0.0034780451096594334, -0.011179558001458645, 0.023013805970549583, 0.01801823079586029, -0.011933875270187855, 0.00017734916764311492, 0.0001305378827964887, 0.04648305103182793, -0.00047500667278654873, 0.003988632932305336, 0.006187540013343096, -0.03048582188785076, -0.026913486421108246, -0.09507249295711517, 0.0025814033579081297, 0.012666844762861729, -0.006055890116840601, -0.013435394503176212, -0.002421288751065731, 0.0024906715843826532, 0.02329845353960991, -0.003714658785611391, 0.01685117371380329, 0.004984901286661625, -0.014132782816886902, -0.012631263583898544, -0.004700253251940012, 0.015926066786050797, 0.0012586787343025208, -0.008703118190169334, -0.01554179098457098, -0.006735487841069698, 0.033104583621025085, -0.02160479687154293, -0.01914259046316147, 0.00011563832958927378, 0.0010772155364975333, -0.02361156791448593, -0.002449753461405635, -0.032649148255586624, 0.013663113117218018, 0.008582143113017082, -0.01140727661550045, 0.00864618830382824, -0.02617340162396431, 0.002987026935443282, -0.014929797500371933, -0.02795245125889778, 0.0007743320311419666, -0.03765895590186119, -0.007521828170865774, 0.000593313598074019, -0.04022078961133957, 0.003195175901055336, 0.012047735042870045, 0.011186674237251282, -0.008966417983174324, 0.0010612040059641004, 0.0034086620435118675, -0.0033641858026385307, 0.03535330668091774, -0.003832076210528612, -0.03259221836924553, -0.006447281688451767, -0.00507029565051198, -0.014687846414744854, -0.04312419891357422, 0.03390159830451012, -0.005917124450206757, 0.004056236706674099, 0.013278838247060776, -0.02911951020359993, 0.009521481581032276, -0.01752009615302086, -0.005404757335782051, -0.025703731924295425, 0.012844749726355076, 0.02568949945271015, 0.010475053451955318, -0.010112127289175987, -0.018416738137602806, 0.026144936680793762, 0.0044298372231423855, -0.015057888813316822, 0.018416738137602806, -0.00704504270106554, 0.015854904428124428, -0.007169576361775398, -0.007920335978269577, -0.020822014659643173, -0.03119744174182415, -0.005451012868434191, -0.0018155217403545976, -0.0019213752821087837, -0.024266257882118225, -0.013663113117218018, -0.007450666278600693, 0.0199396051466465, 0.011976572684943676, -0.00868888571858406, 0.00030021488782949746, 0.013776971958577633, -0.02240181341767311, -0.019398774951696396, 0.0017977312672883272, 0.004863925743848085, 0.021163592115044594, -0.024536674842238426, 0.02882062830030918, 0.01968342252075672, -0.0020672574173659086, -0.010133475996553898, -0.007251412607729435, -0.02674269676208496, -0.026088006794452667, -0.07042196393013, 0.02243027649819851, -0.0033001399133354425, 0.005853078328073025, -0.00923683401197195, 0.00424837414175272, -0.008290378376841545, -0.005184154957532883, -0.020935874432325363, 0.0026561233680695295, -0.019427238032221794, 0.033332303166389465, -0.027653571218252182, -0.0030421775300055742, -0.014004690572619438, -0.02500634267926216, 0.024920949712395668, 0.00407758541405201, 0.025618337094783783, -0.00861060805618763, -0.01423952542245388, -0.009806130081415176, 0.005931356456130743, 0.026458049193024635, 0.00863195676356554, 0.020153092220425606, -0.012716657482087612, 0.004725160077214241, -0.0164668969810009, -0.009834595024585724, 0.008980650454759598, -0.025817591696977615, 0.0018110740929841995, 0.013876599259674549, -0.002597414655610919, -0.0035954625345766544, 0.007898987270891666, 0.013577718287706375, 0.004835461266338825, -0.019128357991576195, -0.001027402002364397, -0.025177132338285446, -0.0039850748144090176, -0.028237100690603256, -0.0032236408442258835, -0.012709541246294975, -0.02598837949335575, -0.011627878993749619, 0.008105357177555561, -0.004066911060363054, 0.02946108765900135, 0.019583795219659805, -0.045572176575660706, -0.018672920763492584, 0.003885447746142745, -0.011827132664620876, 0.007308342028409243, 0.01218294259160757, 0.020110394805669785, -0.0055328491143882275, 0.027354691177606583, 0.025675266981124878, 0.02507750503718853, -0.0025333689991384745, 0.012552984990179539, -0.005906450096517801, -0.006756836548447609, -0.015285607427358627, 0.015470628626644611, -0.01676577888429165, -0.0176054909825325, -0.03003038465976715, 0.006945415865629911, 0.009243950247764587, 0.003924586810171604, 0.01763395592570305, -0.005404757335782051, -0.014054504223167896, -0.010788165964186192, 0.0184736680239439, 0.023241525515913963, 0.00017657082935329527, -0.015100586228072643, 0.00782070867717266, 0.014360501430928707, 0.01911412551999092, -0.005447454750537872, 0.005077411886304617, 0.011108395643532276, 0.00991287361830473, -0.02968880534172058, -0.0030368403531610966, -0.017164286226034164, 0.0029265391640365124, 0.016367271542549133, 0.016267644241452217, -0.003613252891227603, 0.00979901384562254, 0.022714925929903984, 0.024081237614154816, 0.021818283945322037, 0.020224254578351974, -0.009834595024585724, -0.023995842784643173, -0.026201866567134857, -0.020224254578351974, -0.03284840285778046, -0.027667803689837456, -0.0031080024782568216, 0.0030991071835160255, -0.004828345030546188, -0.010866444557905197, -0.00206369929946959, 0.02983113005757332, -0.019242217764258385, 0.000660472724121064, -0.0017167844343930483, -0.01605415716767311, -0.021989071741700172, 0.04517366737127304, 0.016182249411940575, -0.011165325529873371, 0.04702388122677803, 0.002661460544914007, 0.03210831433534622, -0.021163592115044594, 0.01216159388422966, -0.006119936238974333, 0.013108049519360065, -0.012866098433732986, -0.00035380880581215024, 0.01744893379509449, -0.006262260023504496, -0.01322190836071968, -0.01051775086671114, -0.010311380960047245, -0.0208077821880579, 0.03119744174182415, -0.0019889792893081903, 0.08539445698261261, 0.009578411467373371, -0.03606492653489113, -0.009884408675134182, -0.002848261035978794, 0.004508115816861391, 0.01554179098457098, 0.024821322411298752, -0.0027575292624533176, -0.0014686067588627338, 0.008852559141814709, -0.0017461387906223536, 0.0004071803414262831, -0.006934741511940956, -0.01831711083650589, 4.386472937767394e-05, -0.0018359808018431067, 0.032535288482904434, 0.012382196262478828, -0.013641764409840107, 0.007450666278600693, -0.004447627812623978, 0.009094509296119213, 0.006867137737572193, -0.0158691368997097, -0.027255063876509666, 0.03361695259809494, -0.015997229143977165, -0.01218294259160757, -0.02213139645755291, 0.002622321480885148, -0.0013663113350048661, -0.0027913313824683428, -0.014011806808412075, -0.016452664509415627, -0.012951492331922054, -0.015000959858298302, -0.011713272891938686, 0.0007067280821502209, -0.0014855077024549246, -0.0019053638679906726, 0.008510980755090714, -0.03498326241970062, -0.028863325715065002, -0.011926759034395218, 0.009685155004262924, -0.004945762455463409, -0.011791551485657692, -0.022387580946087837], "69adae88-db95-4f48-81df-ac19ca8077e3": [-0.006936755497008562, -0.01765848882496357, -0.02404741942882538, 0.00443596625700593, -0.005727269686758518, 0.01866876520216465, -0.015154142864048481, -0.006573909893631935, -0.026452161371707916, -0.029169946908950806, 0.024673504754900932, -0.01589406281709671, -0.005257704760879278, -0.01307667326182127, -0.023592082783579826, 0.009690113365650177, 0.004179839976131916, -0.01687588170170784, 0.0008426379063166678, -0.0035217374097555876, -0.022852161899209023, -0.0026413029991090298, -0.013809479773044586, 0.01970750093460083, -0.013176278211176395, 0.003573318477720022, 0.01024505402892828, -0.029426071792840958, 0.015324893407523632, 0.015609478577971458, 0.013852166943252087, 0.008267189376056194, -0.03753674030303955, 0.012358096428215504, -0.010237939655780792, -0.010038729757070541, 0.01030197087675333, -0.0022411055397242308, 0.04462290182709694, -0.019579436630010605, 0.03153200075030327, 0.0046743061393499374, 0.01684742234647274, -0.034520141780376434, -0.01509722601622343, 0.032641880214214325, 0.022240305319428444, -0.008765213191509247, -0.002696441253647208, 0.032641880214214325, 0.012493274174630642, 0.009910667315125465, -0.018654536455869675, -0.0030041486024856567, 0.023449791595339775, -0.013375487178564072, -0.011120152659714222, 0.023620542138814926, -0.003578654257580638, -0.00048157089622691274, 0.00421897042542696, -0.02396204322576523, 0.010010271333158016, -0.008459283970296383, -0.02088852785527706, -0.011724895797669888, -0.011603946797549725, 0.024289315566420555, -0.016491690650582314, -0.023535165935754776, 0.02710670605301857, 0.004318574909120798, 0.005485372617840767, -0.022795245051383972, 0.004909088369458914, -0.02152884379029274, -0.034633975476026535, -0.006015412043780088, 0.02444583736360073, -0.004944661632180214, 0.010010271333158016, -0.008466399274766445, -0.015182601287961006, 0.01936599798500538, 0.013894855044782162, -0.0021948604844510555, 0.009626082144677639, 0.007527268957346678, -0.03352409228682518, -0.004425294231623411, 0.029198404401540756, 0.016264023259282112, 0.011027662083506584, 0.008516201749444008, 0.005510273855179548, 0.018825286999344826, -0.006865609437227249, 0.014428451657295227, -0.002049010945484042, -0.022354139015078545, -0.011390508152544498, -0.0059762815944850445, -0.02687903866171837, 0.0021539514418691397, -0.017416592687368393, 0.0007154640625230968, 0.02228299342095852, 0.008473513647913933, 0.006965213920921087, -0.0001730853837216273, -0.03304030001163483, 0.030649786815047264, -0.017288528382778168, -0.016207106411457062, 0.003831223351880908, -0.03517468646168709, -0.003994859755039215, -0.01987825147807598, -0.022098012268543243, -0.03232883661985397, 0.00418339716270566, 0.028913820162415504, 0.0034523699432611465, -0.012237148359417915, -0.004169167950749397, -0.002043674932792783, -0.010230825282633305, -0.024872714653611183, 0.004827270284295082, -0.014641890302300453, 0.017003944143652916, 0.006933198310434818, 0.006531222257763147, 0.005079839378595352, -0.004186954349279404, 0.024602359160780907, -0.025214217603206635, 0.0033065201714634895, -0.03392251208424568, -0.00011905873543582857, 0.008217386901378632, 0.04098021611571312, -0.0010574104962870479, 0.018483785912394524, -0.014883787371218204, 0.026395244523882866, 0.026622911915183067, -0.017416592687368393, -0.0025737141259014606, 0.010714619420468807, 0.0012352761114016175, 0.016264023259282112, -0.017416592687368393, -0.03002370148897171, 0.008829244412481785, 0.012237148359417915, -0.0026448604185134172, 0.011924104765057564, -0.009014224633574486, -0.014385763555765152, 0.013389716856181622, 0.04456598684191704, -0.002815611194819212, -0.004951776005327702, 0.004055333789438009, 0.03952883556485176, 0.00656679505482316, 0.011981021612882614, -0.021799199283123016, -0.017003944143652916, 0.002851184457540512, 0.004731222987174988, -0.00533952284604311, 0.022325681522488594, 0.0016728253103792667, 0.017274299636483192, 0.0028494056314229965, -0.013439519330859184, -0.03423555567860603, -0.021969949826598167, -0.019408686086535454, 0.006780233699828386, 0.016520150005817413, 0.034377846866846085, -0.01476995274424553, 0.01212331373244524, 0.013282997533679008, -0.008921734988689423, 0.0037778636906296015, 0.005165214650332928, 0.016520150005817413, 0.020703546702861786, -0.015367581509053707, 0.0032602751161903143, -0.6083285808563232, -0.024915402755141258, -0.0005909582250751555, 0.0006434285314753652, -0.002237548353150487, 0.022752558812499046, 0.01444979477673769, 0.0012726278509944677, -0.03543081134557724, 0.05458337068557739, -0.017316987738013268, 0.025356508791446686, -0.00993912573903799, -0.007804739288985729, 0.008153355680406094, -0.001719959662295878, -0.01225137710571289, -0.012415013276040554, -0.002940117148682475, 0.02068931795656681, 0.001915611675940454, 0.00744900805875659, 0.007833197712898254, -0.0015669952845200896, -0.02727745659649372, -0.019522519782185555, 0.026694057509303093, 0.0012388334143906832, 0.014257700182497501, 0.009540706872940063, -0.022809475660324097, 0.012614223174750805, 0.023307498544454575, -0.007747822441160679, 0.05187981575727463, -0.011063235811889172, -0.04274464398622513, 0.022382598370313644, 0.02401896007359028, 0.03400788828730583, -0.019963625818490982, 0.020120147615671158, 0.0234071034938097, 0.014883787371218204, 0.001015612157061696, -0.008637149818241596, 0.0281454399228096, -0.012315409258008003, -0.0037316186353564262, -0.019807104021310806, 0.01314781978726387, 0.012941495515406132, -0.014727265574038029, 0.0041656107641756535, -0.002703556092455983, -0.0029098798986524343, 0.025769157335162163, 0.00924900732934475, 0.00830987747758627, -0.02222607657313347, -0.016776276752352715, 0.0070683760568499565, -0.010799994692206383, -0.011995251290500164, -0.013944657519459724, 0.013795250095427036, -0.004919760394841433, -0.001972528640180826, 0.005983396433293819, -0.010017386637628078, 0.008686952292919159, 0.023165205493569374, 0.0062359655275940895, -0.007146636955440044, -0.0007465905509889126, 0.02346402034163475, 0.020973902195692062, -0.007811853662133217, -0.006687743589282036, 0.01597943902015686, 0.02867192216217518, 0.007167980540543795, -0.01707508973777294, -0.015524103306233883, 0.004891301970928907, 0.0032193660736083984, -0.012599993497133255, 0.009519362822175026, -0.0062999967485666275, -0.0231225173920393, 0.023905126377940178, -0.013361258432269096, -0.005325293634086847, -0.03383713588118553, 0.006218178663402796, 0.011916990391910076, -0.007712249178439379, 0.005666795652359724, -0.013674301095306873, -0.020817380398511887, -0.02626718021929264, -0.024460066109895706, -0.0027533583343029022, 0.00899999588727951, 0.04499286413192749, 0.006733988877385855, -0.0183557216078043, -0.01768694818019867, 0.05168060585856438, -0.01740236207842827, -0.010102761909365654, -0.001553655369207263, -0.01370987482368946, -0.009327268227934837, 0.014599202200770378, -0.03358101099729538, 0.038475871086120605, 0.01696125604212284, -0.00418339716270566, 0.032641880214214325, 0.01939445734024048, 0.00017730968829710037, 0.007811853662133217, -0.018213430419564247, 0.012130429036915302, 0.016947027295827866, 0.029369154945015907, -0.019892480224370956, 0.030365202575922012, 0.004809483885765076, -0.015125684440135956, -0.03025136888027191, 0.015452956780791283, -0.0065988111309707165, 0.021856116130948067, -0.016861651092767715, 0.027092477306723595, 0.004087349865585566, 0.028273504227399826, -0.016335170716047287, -0.02497231960296631, -0.0041656107641756535, -0.010757306590676308, -0.012215804308652878, 0.003959286492317915, -0.0021539514418691397, -0.03901658207178116, -0.006947427522391081, -0.013816594146192074, -0.0024581016041338444, -0.002226876327767968, 0.013944657519459724, 0.014798412099480629, 0.018739910796284676, -0.021400779485702515, 0.005172329489141703, 0.005972724407911301, -0.051168352365493774, 0.009021339006721973, -0.013282997533679008, -0.005577862728387117, 0.04280155897140503, -0.006356914062052965, -0.01220868993550539, 0.014136752113699913, 0.0183557216078043, -0.00663794158026576, 0.009775489568710327, 0.0002619069709908217, -0.029397614300251007, -0.015168371610343456, -0.0006327566225081682, -0.022738328203558922, 0.001056521199643612, 0.0067055304534733295, -0.011454539373517036, -0.01370987482368946, -0.018512243404984474, 0.019351769238710403, 0.018227659165859222, 0.002454544184729457, 0.01967904157936573, -0.007897228933870792, 0.008231616578996181, -0.005755728576332331, -0.0036409073509275913, 0.024730423465371132, 0.009313038550317287, -0.028600776568055153, 0.04806637763977051, -0.014826870523393154, 0.011518571525812149, -0.011347820051014423, 0.02554148994386196, -0.03144662454724312, 0.03972804546356201, -0.021784968674182892, 0.019380226731300354, -0.006716202013194561, 0.036369942128658295, 0.006065214518457651, 0.02820235677063465, 0.032698798924684525, 0.0056454516015946865, -0.008274303749203682, -0.030507495626807213, 0.012635567225515842, -0.021201571449637413, 0.03508931025862694, 0.012180231511592865, 0.009946240112185478, 0.012599993497133255, -0.020504336804151535, 0.0002705779334064573, 0.009327268227934837, 0.009291695430874825, -0.02236836776137352, 0.007797624450176954, -0.022439515218138695, -0.013048214837908745, -0.0028849788941442966, -0.0059762815944850445, 0.03397943079471588, -0.003470156341791153, -0.000909337482880801, -0.012649795971810818, 0.017815010622143745, 0.016463233157992363, 0.009761259891092777, -0.00557074835523963, 0.0011401179945096374, 0.020988132804632187, 0.012301179580390453, 0.0044822110794484615, 0.027320144698023796, -0.009996042586863041, 0.01485532894730568, 0.002589721931144595, 0.019835563376545906, -0.008907505311071873, -0.0012094855774194002, -0.002609287155792117, 0.02699287235736847, -0.019892480224370956, -0.018156513571739197, 0.002812054008245468, 0.016975484788417816, 0.01777232252061367, -0.015424498356878757, 0.012016594409942627, -0.022354139015078545, 0.017146237194538116, -0.03175966814160347, -0.01112726703286171, 0.028999194502830505, -0.02152884379029274, 0.004656519275158644, 0.024033188819885254, 0.028501171618700027, 0.008686952292919159, 0.02640947327017784, -0.004368377383798361, 0.014293273910880089, 0.01656283810734749, 0.022553348913788795, 0.00012128205707995221, -0.03588614985346794, -0.015495644882321358, 0.008331221528351307, -0.021486155688762665, 0.002539919689297676, -0.013311455957591534, 0.009988928213715553, -0.03588614985346794, -0.0064849769696593285, 0.005307507235556841, 0.04172013700008392, 0.003272725734859705, 0.018369952216744423, 0.007320945151150227, -0.02973911538720131, -0.0375082828104496, 0.025669552385807037, 0.0277754794806242, 0.018341492861509323, 0.0007012348505668342, -0.003302962752059102, 0.024659276008605957, -0.02026244066655636, 0.01673358865082264, -0.012991297990083694, 0.004510669503360987, -0.004154938738793135, -0.004955333657562733, 0.00519367353990674, 0.020148606970906258, 0.013809479773044586, -0.001036066678352654, -0.0029934768099337816, 0.007633988279849291, 0.004261658061295748, 0.009896437637507915, -0.008722525089979172, 0.02063240110874176, 0.04465136304497719, -0.006065214518457651, -0.016320940107107162, -0.023848209530115128, -0.021543072536587715, -0.02401896007359028, 0.019138330593705177, 0.003576875664293766, -0.02077469415962696, 0.009725687094032764, 0.006043870467692614, 0.001151679316535592, -0.01852647215127945, -0.019437145441770554, 0.018711453303694725, -0.0014736158773303032, 0.022866392508149147, -0.010508295148611069, 0.0021468368358910084, 0.023705916479229927, 0.030393660068511963, 0.05273357033729553, 0.004215412773191929, 0.0093770707026124, -0.02962528169155121, 0.021045049652457237, -0.03753674030303955, -0.03204425424337387, 0.01495493296533823, -0.009170746430754662, -0.02144346758723259, -0.01408694963902235, 0.01661975495517254, 0.01676204614341259, 0.032784175127744675, -0.005382210947573185, 0.03335334360599518, 0.003923713695257902, -0.0030237138271331787, -0.00947667472064495, -0.005222131963819265, -0.005762842949479818, 0.01258576475083828, 0.03150354325771332, 0.014136752113699913, 0.00681936414912343, 0.030877454206347466, 0.01174623891711235, 0.00012495052942540497, -0.0014584972523152828, -0.017345445230603218, 0.018085366114974022, 0.012969953939318657, 0.013083787634968758, 0.0044501954689621925, 0.02979603223502636, 0.007705134339630604, -0.008466399274766445, 0.0006887842318974435, 0.017815010622143745, -0.005012250505387783, 0.004805926699191332, 0.008260075002908707, -0.014364419505000114, 0.0115754883736372, -0.018256116658449173, -0.006790905725210905, 0.030621329322457314, -0.015538332052528858, -0.004514227155596018, 0.022795245051383972, 0.0011089915642514825, -0.008359679952263832, -0.006189720239490271, 0.004439523443579674, 0.024744652211666107, 0.0025879433378577232, -0.02612488903105259, -0.010572326369583607, -0.015139913186430931, -0.034520141780376434, -0.019992085173726082, 0.023392874747514725, -0.014940704219043255, -0.02175651118159294, -0.011981021612882614, -0.01509722601622343, -0.005378653295338154, -0.0187256820499897, 0.019209476187825203, 0.0030041486024856567, -0.0036302353255450726, -0.026437930762767792, 0.05003001540899277, -0.00019242826965637505, -0.0019796432461589575, -0.0028067179955542088, -0.007548613008111715, -0.017160465940833092, 0.009917781688272953, -0.0067375460639595985, -0.019323309883475304, 0.002139722229912877, -0.0369391106069088, -0.011753354221582413, -0.004880629945546389, 0.009832406416535378, -0.008793671615421772, -0.005517388693988323, 0.013702760450541973, -0.02988140843808651, -0.007712249178439379, 0.007591300643980503, -0.001710177049972117, 0.03181658685207367, 0.018170742318034172, 0.021201571449637413, 0.030422119423747063, -0.00717509537935257, -0.01131224725395441, -0.00885770283639431, -0.01491224579513073, -0.023905126377940178, 0.005766400136053562, 0.0005829542642459273, 0.01609327271580696, -0.0014931811019778252, 0.015524103306233883, 0.009042683057487011, -0.025185758247971535, 0.008381023071706295, -0.0038418953772634268, -0.005449799820780754, -0.008694066666066647, 0.0027889313641935587, 0.0011801377404481173, 0.013297226279973984, 0.009789718315005302, 0.014869557693600655, -0.022083783522248268, -0.00543201295658946, 0.0036711443681269884, 0.029454531148076057, 0.004101579077541828, -0.014414221979677677, 0.021101966500282288, -0.019636353477835655, -0.03864661976695061, -0.004254543222486973, 0.011888531967997551, -0.006214621476829052, 0.015766000375151634, -0.0008083988213911653, -0.036085356026887894, -0.03193042054772377, -0.002305137226358056, 0.0010396239813417196, -0.0011392286978662014, -0.008829244412481785, -0.02537073753774166, -0.030820537358522415, 0.0019707500468939543, -0.013610269874334335, -0.019024496898055077, 0.0005238139419816434, -0.029198404401540756, 0.0030717377085238695, -0.001983200665563345, -0.0026448604185134172, 0.03787824138998985, 0.001972528640180826, 0.007054146844893694, -0.04450906813144684, -0.02323635295033455, -0.01982133463025093, -0.025911450386047363, -0.012884578667581081, -0.016690900549292564, 0.04707033187150955, 0.0278323981910944, 0.02418971061706543, -0.00515810027718544, 0.009974698536098003, 0.004350590519607067, 0.007384976372122765, -0.016861651092767715, -0.015552561730146408, -0.013496436178684235, -0.015054537914693356, -0.004603159613907337, 0.004354148171842098, 0.015381810255348682, 0.013226080685853958, 0.0003995304286945611, -0.012799203395843506, 0.028273504227399826, -0.001144564594142139, -0.010771536268293858, -0.021984178572893143, -0.049290094524621964, -0.047468751668930054, 0.0045960452407598495, -0.014570743776857853, 0.0036462433636188507, -0.05190827324986458, -0.01615018956363201, 0.027490895241498947, -4.499442002270371e-05, 0.010223709978163242, -0.018540702760219574, 0.05042843520641327, -0.000909337482880801, 0.036256108433008194, 0.010700389742851257, 0.011006318964064121, -0.016264023259282112, -0.012891693040728569, -0.017060860991477966, -0.0003352765052113682, 0.011049006134271622, 0.010195251554250717, 0.018981808796525, -0.01589406281709671, 0.01206639688462019, -0.006687743589282036, 0.026679828763008118, -0.020077459514141083, -0.0002994810638483614, 0.005737941712141037, -0.022496432065963745, -0.011390508152544498, -0.02372014708817005, 0.0005309286061674356, -0.008786557242274284, -0.006541893817484379, -0.006826478987932205, 0.011475883424282074, 0.016747817397117615, -0.04120788350701332, -0.010401575826108456, -0.01679050549864769, 0.0046173888258636, 0.03195887804031372, 0.022083783522248268, 0.03360946848988533, 0.021955721080303192, 0.008082209154963493, -0.013951771892607212, 0.007513039745390415, 0.01679050549864769, -0.0016336948610842228, 0.017302758991718292, 0.032641880214214325, -0.01704663224518299, 0.007690905127674341, 0.006036756094545126, 0.015011850744485855, -0.012045053765177727, -0.013055329211056232, 0.03318259119987488, 0.030507495626807213, -0.0020863625686615705, -0.03013753518462181, -0.009462445974349976, -0.01841263845562935, -0.007121735718101263, 0.005303950048983097, 0.011902760714292526, 0.023136748000979424, -0.03016599267721176, -0.021158883348107338, 0.0059442659839987755, -0.012735171243548393, 0.019835563376545906, 0.023990502581000328, -0.007239127065986395, 0.005335965659469366, -0.0022820145823061466, -0.00843794085085392, 0.0005318179028108716, -0.02172805182635784, 0.02150038443505764, -0.009803947992622852, 0.001534979441203177, 0.005371538922190666, 0.0007021241472102702, 0.003998416941612959, -0.01158971805125475, -0.009718572720885277, 0.03010907582938671, 0.011461654677987099, -0.011966792866587639, 0.008174699731171131, -0.030564412474632263, 0.018170742318034172, -0.009576279670000076, 0.007039917632937431, -0.01653437875211239, -0.032613422721624374, -0.010038729757070541, 0.028131211176514626, 0.016463233157992363, 0.0062608662992715836, -0.02418971061706543, -0.02346402034163475, -0.028529630973935127, 0.0037351760547608137, -0.02242528460919857, 0.011113038286566734, -0.02834464982151985, -0.0031499983742833138, -0.010700389742851257, -0.023905126377940178, 0.018170742318034172, 0.01030197087675333, 0.02441737987101078, 0.014150980859994888, 0.02733437344431877, -0.010309086181223392, 0.0013259875122457743, -0.01970750093460083, -0.003215808654204011, -0.03782132640480995, 0.021784968674182892, -0.013588925823569298, -0.000742588541470468, 0.006438732147216797, -0.003468377748504281, -0.04897705093026161, -0.008765213191509247, 0.00898576620966196, 0.002639524405822158, 0.0069580995477736, 0.016577066853642464, 0.04522053152322769, 0.016577066853642464, 0.006136360578238964, -0.019195247441530228, -0.03005215898156166, 0.030336743220686913, -0.010024501010775566, 0.00588023429736495, 0.019380226731300354, 0.008124897256493568, 0.012913037091493607, -0.018512243404984474, 0.010593670420348644, 0.002141500823199749, -0.013681416399776936, -0.02820235677063465, 0.023976271972060204, 0.034349389374256134, -0.022667182609438896, -0.015239518135786057, -0.03019445203244686, -0.01676204614341259, -0.015936750918626785, 0.027690105140209198, 0.02447429671883583, 0.006104344967752695, 0.007804739288985729, 0.01043003425002098, -0.001967192627489567, 0.023421332240104675, -0.01038734707981348, -0.015438727103173733, -0.038105908781290054, 0.0005224799970164895, -0.0280600655823946, -0.03013753518462181, -0.003852567169815302, 0.020390503108501434, 0.01119841355830431, -0.032869547605514526, -0.01970750093460083, -0.039984170347452164, -0.006026084069162607, -0.008836359716951847, -0.034434765577316284, 0.016890110448002815, 0.05276202782988548, 0.024730423465371132, -0.0037280614487826824, 0.03506085276603699, -0.01365295797586441, 0.011959677562117577, -0.013055329211056232, 0.006029641255736351, 0.026452161371707916, -0.01881105825304985, 0.025413425639271736, -0.016249794512987137, -0.04283002018928528, 0.0032798403408378363, 0.011582602746784687, 0.01583714596927166, 0.011596832424402237, 0.006748218089342117, -0.021514613181352615, 0.020105918869376183, -0.010643472895026207, -0.01277074497193098, 0.008786557242274284, 0.003020156640559435, 0.013460862450301647, -0.05868139490485191, -8.765435632085428e-05, 0.01569485478103161, 0.01881105825304985, -0.0007679344271309674, 0.004524899180978537, 0.01566639542579651, -0.002002765890210867, 0.00271600647829473, -0.018099596723914146, -0.03156045824289322, 0.00806086603552103, -0.01777232252061367, 0.036369942128658295, 0.008950193412601948, 0.017260070890188217, 0.0187541414052248, -0.00676244730129838, -0.020390503108501434, -0.001183695043437183, 0.006581024266779423, -0.011916990391910076, -0.023307498544454575, 0.012350982055068016, -0.00924900732934475, -0.0020205522887408733, 0.005079839378595352, -0.0023780621122568846, -0.00604031328111887, -0.04254543408751488, -0.0014691692776978016, -0.01509722601622343, -0.027675876393914223, -0.007562842220067978, 0.010003156960010529, -0.03955729305744171, -0.0067375460639595985, 0.011916990391910076, -0.023990502581000328, 0.025328051298856735, 0.012358096428215504, -0.024673504754900932, -0.027732793241739273, 0.0010805330239236355, -0.0015981217147782445, -0.009960469789803028, -0.04166322201490402, 0.003333200002089143, 0.009106715209782124, -0.024773109704256058, 0.013496436178684235, 0.19886788725852966, -0.014008688740432262, 0.003262053709477186, 0.011468769051134586, 0.002226876327767968, 0.010586556047201157, -0.012543076649308205, 0.005983396433293819, -0.009277465753257275, 0.03730907291173935, 0.011739124543964863, 0.013418175280094147, 0.0017448607832193375, -0.007456122897565365, 0.01314781978726387, 0.007079048082232475, -0.032954923808574677, -0.023833980783820152, -0.038447413593530655, -0.007705134339630604, -0.0093770707026124, -0.018270347267389297, 0.00023278150183614343, -0.014542285352945328, 0.03796361759305, 0.013282997533679008, -0.004151381552219391, -0.0010920943459495902, 0.024232398718595505, 0.01502607949078083, -0.032812632620334625, 0.002522133057937026, 0.007534383796155453, 0.011397622525691986, -0.003018378047272563, -0.01508299633860588, 0.022354139015078545, -0.0014976277016103268, 0.017430821433663368, 0.0008524205186404288, 0.009718572720885277, -0.015908293426036835, 0.02144346758723259, -0.023777063935995102, -0.00371383223682642, 0.01037311740219593, 0.01780078187584877, -0.024289315566420555, 0.01440710760653019, -0.009654540568590164, -0.006018969230353832, 0.02488694339990616, 0.023876668885350227, 0.011390508152544498, 0.017203154042363167, -0.01936599798500538, 0.004556914791464806, -0.0029347811359912157, -0.023862438276410103, 0.02046165056526661, -0.022041095420718193, 0.0023691686801612377, -0.007868770509958267, -0.013012642040848732, -0.0279177725315094, 0.022610265761613846, -0.006929640658199787, -0.02733437344431877, 0.004101579077541828, -0.0234071034938097, 0.000987153616733849, -0.02551303058862686, -0.0003857458650600165, 0.015239518135786057, -0.010266398079693317, -0.017459280788898468, 0.00024412042694166303, 0.010465607047080994, 0.005709483288228512, 0.024659276008605957, 0.013894855044782162, 0.01664821244776249, -0.003849009983241558, -0.009768374264240265, -0.017331216484308243, -0.04066717252135277, 0.04436677694320679, 0.0009337940136902034, -0.016747817397117615, 0.006147032603621483, -0.03415017947554588, 0.0029098798986524343, -0.019992085173726082, 0.014926474541425705, -0.013112246058881283, -0.006335570011287928, 0.00654545146971941, 0.004169167950749397, 0.010323314927518368, -0.017445050179958344, -0.04075254872441292, 0.053046613931655884, 0.015438727103173733, 0.0010929836425930262, -0.038475871086120605, -0.008217386901378632, 0.01345374807715416, 0.016192877665162086, 0.00531817926093936, -0.0015714418841525912, -0.020418962463736534, -0.028615005314350128, 0.007157308515161276, -0.003724504029378295, 0.023307498544454575, 0.029369154945015907, 0.0037956503219902515, -0.00023166985192801803, -0.009220548905432224, -0.01947983168065548, 0.0009053355315700173, -0.018540702760219574, -0.013460862450301647, 0.011732010170817375, -0.029169946908950806, -0.025626864284276962, -0.00012583985517267138, -0.009562050923705101, -0.006018969230353832, -0.03907349705696106, 0.0370529443025589, 0.0009800390107557178, 0.021457696333527565, 0.004798811860382557, 0.0036017769016325474, 0.004546242766082287, 0.02407587692141533, -0.0025843861512839794, -0.018939120694994926, 0.014698807150125504, -0.008381023071706295, 0.005649009253829718, 0.01892489194869995, 0.012158887460827827, 0.020646629855036736, -0.018426869064569473, 0.03403634577989578, -0.012457701377570629, -0.01973595842719078, -0.0184980146586895, -0.0018124496564269066, -0.01303398609161377, 0.00535375252366066, 0.01858339086174965, 0.02248220145702362, 0.00014006909623276442, -0.023677458986639977, -0.055152542889118195, -0.00798971951007843, -0.011568374000489712, -0.021827656775712967, -0.007897228933870792, 0.020561255514621735, 0.014727265574038029, -0.019024496898055077, -0.0010440705809742212, -0.18384180963039398, 0.0015714418841525912, -0.0005620550364255905, -0.019124101847410202, 0.009576279670000076, -0.0004708989872597158, -0.00019809772493317723, 0.002433200366795063, -0.001669268007390201, -0.022823704406619072, 0.03215808793902397, -0.007292486727237701, -0.004432409070432186, 0.00880078598856926, 0.007776280865073204, -0.0012388334143906832, -0.0017768766265362501, 0.012130429036915302, 0.023919355124235153, 0.0034345833119004965, 0.026679828763008118, -0.02823081612586975, 0.0073920912109315395, -0.0064849769696593285, -0.02248220145702362, 0.0072462414391338825, -0.04248851537704468, 0.002285572001710534, 0.001152568613179028, -0.003068180289119482, -0.04533436521887779, 0.012286950834095478, -0.00494110444560647, 0.01586560532450676, 0.012386554852128029, -0.01206639688462019, -0.017615800723433495, -0.007264027837663889, -0.010052959434688091, 0.0378497838973999, 0.014115408062934875, 0.03161737695336342, 0.022098012268543243, 0.010422919876873493, -0.018654536455869675, 0.02825927548110485, 0.03870353847742081, 0.02127271704375744, 0.013098017312586308, -0.01439287792891264, -0.010778650641441345, -0.038561247289180756, -0.010465607047080994, 0.010799994692206383, 0.0030948601197451353, 0.027377061545848846, 0.01600789651274681, -0.00486995792016387, 0.011596832424402237, -0.02051856741309166, -0.003703160211443901, -0.011162840761244297, -0.010600785724818707, -0.022183388471603394, -0.027576271444559097, -0.0005478258244693279, -0.01600789651274681, 0.018227659165859222, -0.030763620510697365, 0.022325681522488594, -0.0016345841577276587, 0.009170746430754662, -0.007441893685609102, -0.0033847808372229338, 0.01768694818019867, 0.0019067184766754508, -0.040325671434402466, 0.016861651092767715, 0.018184971064329147, -0.009818176738917828, 0.006143475417047739, 0.03514622896909714, -0.0017813232261687517, 0.013702760450541973, -0.012166001833975315, -0.0031019747257232666, 0.0069616567343473434, 0.014784182421863079, 0.006047427654266357, -0.01453517097979784, 0.01780078187584877, -0.005350194871425629, 0.02965374104678631, -0.02615334652364254, 0.00793280266225338, 0.011739124543964863, 0.002755136927589774, 0.005969167221337557, 0.01225137710571289, -0.019380226731300354, -0.015481415204703808, -0.0056134359911084175, -0.01174623891711235, 0.014926474541425705, 0.04328535497188568, 0.006353356409817934, -0.034434765577316284, -0.0048201559111475945, 0.027647417038679123, -0.02632409706711769, 0.012955725193023682, 0.020390503108501434, 0.007982605136930943, 0.004350590519607067, -0.007662446703761816, 0.018156513571739197, 0.01043003425002098, -0.0011676871217787266, 0.01433596108108759, 0.010344658978283405, 0.05472566559910774, 0.0013126475969329476, -0.025612635537981987, 0.011554144322872162, -0.02205532416701317, -0.016135960817337036, -0.08423711359500885, -0.006748218089342117, 0.007690905127674341, 0.011148611083626747, -0.030450576916337013, -0.001563437981531024, -0.004699207376688719, 0.020191295072436333, -0.0072853718884289265, 0.022994454950094223, 0.004033990204334259, -0.023506708443164825, -0.017558883875608444, 0.003196243429556489, 0.031048206612467766, -0.007897228933870792, -0.00089955487055704, -0.02640947327017784, 0.016306711360812187, 0.025726469233632088, 0.001328655518591404, -0.00398774491623044, -0.012720942497253418, -0.01011699065566063, -0.034662432968616486, -0.0027231210842728615, -0.038362037390470505, 0.020475879311561584, 0.0093059241771698, 0.01589406281709671, 0.02999524213373661, -0.01595097966492176, 0.010906714014708996, -0.0013464420335367322, -0.016164418309926987, -0.01476995274424553, -0.041748594492673874, -0.009519362822175026, 0.015481415204703808, -0.04846479743719101, 0.017985761165618896, 0.014599202200770378, 0.029454531148076057, -0.02878575585782528, 0.008018177933990955, -0.008075094781816006, -0.0025541489012539387, 0.04263081029057503, -0.007804739288985729, -0.038675080984830856, -0.0017555326921865344, 0.00017453054897487164, -0.007150194142013788, -0.01269959844648838, 0.03207271173596382, -0.01112726703286171, 0.0016265802551060915, 0.026608683168888092, -0.018739910796284676, -0.009369955398142338, -0.012301179580390453, -0.027818167582154274, -0.031162040308117867, -0.000723023375030607, 0.01592252217233181, 0.023079831153154373, -0.030763620510697365, -0.01603635586798191, 0.025384968146681786, 0.005456914193928242, -0.015225288458168507, 0.017672719433903694, -0.016491690650582314, -0.009540706872940063, -0.008672722615301609, -0.012407898902893066, -0.0048201559111475945, -0.03312567621469498, 0.00019765306205954403, -0.0038739112205803394, -0.0003334978537168354, -0.013254539109766483, -0.013667186722159386, 0.009341496974229813, 0.025271134451031685, 0.006990115158259869, 0.021315405145287514, 0.010159678757190704, -0.005371538922190666, -0.04322843626141548, -0.0013935763854533434, 0.008807900361716747, -0.003998416941612959, -0.003827666165307164, -0.02418971061706543, 0.029113028198480606, 0.011838729493319988, -0.009839520789682865, -0.02245374396443367, -0.000120837394206319, -0.01950829103589058, -0.005225689150393009, -0.08008217066526413, 0.041862428188323975, 0.0048130410723388195, 0.017815010622143745, -0.020077459514141083, -0.006335570011287928, -0.02430354617536068, 0.006520550232380629, 0.008139126002788544, 0.03489010035991669, -0.017174694687128067, 0.015054537914693356, -0.01704663224518299, 0.002518575871363282, 0.00033772215829230845, -0.017231611534953117, 0.022909078747034073, 0.005254147574305534, 0.029056111350655556, -0.026395244523882866, -0.014293273910880089, -0.013752561993896961, 0.007239127065986395, 0.016207106411457062, 0.02026244066655636, 0.015196830034255981, -0.001415809616446495, 0.014051376841962337, -0.007776280865073204, -0.024118565022945404, 0.023848209530115128, -0.012365211732685566, -0.0070363599807024, 0.014378649182617664, -0.011290903203189373, -0.036313027143478394, 0.005424898583441973, 0.0281454399228096, 0.022098012268543243, 6.236410263227299e-05, -0.00678379088640213, -0.01433596108108759, 0.008260075002908707, -0.010607900097966194, 0.0007603751146234572, -0.022809475660324097, -0.03386559709906578, -0.014172324910759926, 0.01777232252061367, 0.011781812645494938, 0.028600776568055153, 0.01300552673637867, -0.03881737217307091, -0.01569485478103161, -0.011596832424402237, -0.011988135986030102, 0.010209481231868267, 0.007897228933870792, 0.01301975641399622, 0.00969722867012024, 0.032812632620334625, 0.004592488054186106, 0.040240295231342316, 4.8607311327941716e-05, 0.008025292307138443, -0.0019280622946098447, -0.03318259119987488, -0.024374691769480705, 0.008416596800088882, -0.023791292682290077, -0.006147032603621483, -0.024659276008605957, 0.002111263806000352, 0.024943862110376358, 0.005912249907851219, 0.00012961949687451124, -0.027149394154548645, 0.0025096824392676353, -0.017786553129553795, 0.0281738992780447, 0.019977856427431107, -0.0023780621122568846, -0.02049010805785656, 0.01656283810734749, 0.011404737830162048, 0.006225293502211571, -0.02450275421142578, 0.016833193600177765, 0.0034363619051873684, 0.001339327427558601, -0.040297213941812515, -0.005577862728387117, -0.0004502221127040684, -0.0013242088025435805, 0.022795245051383972, 0.012144657783210278, -0.007939917035400867, 0.019636353477835655, 0.02144346758723259, 0.0061150165274739265, 0.022823704406619072, -0.012158887460827827, -0.028387337923049927, -0.022809475660324097, -0.025626864284276962, -0.00169950514100492, -0.0232932697981596, -0.03167429193854332, 0.016633983701467514, -0.007135964930057526, -0.0017528648022562265, 0.009142288006842136, 0.010536753572523594, 0.031105123460292816, -0.013339914381504059, -0.008196043781936169, 0.0037387332413345575, -0.021514613181352615, -0.036398399621248245, 0.04411064833402634, 0.006470747757703066, -0.00584466103464365, 0.015111454762518406, 0.0038774684071540833, 0.04852171614766121, -0.007868770509958267, 0.024545442312955856, -0.012030824087560177, 0.013930427841842175, -0.019095642492175102, -0.013766791671514511, 0.013446633704006672, -0.03190195932984352, -0.017174694687128067, -0.017786553129553795, 0.007491695694625378, -0.0012281615054234862, 0.028245044872164726, 0.010508295148611069, 0.09550667554140091, 0.00905691273510456, -0.027818167582154274, -0.014798412099480629, 0.0004789029189851135, 0.009889323264360428, 0.013532008975744247, 0.021969949826598167, 0.00256126350723207, -0.03315413370728493, 0.005773514974862337, -0.008473513647913933, 0.0013206514995545149, -0.013845052570104599, -0.025356508791446686, -0.0012539519229903817, 0.007356517948210239, 0.007911458611488342, -0.0032994055654853582, -0.012870348989963531, 0.017701176926493645, 0.00638537248596549, 0.02029089815914631, 0.01782923936843872, -0.029596824198961258, -0.024431608617305756, 0.01661975495517254, 0.006374700460582972, -0.004279444459825754, -0.030905913561582565, -0.01063635852187872, -0.005723712500184774, -0.006755332462489605, -0.016477461904287338, -0.002557706320658326, -0.006399601697921753, -0.010195251554250717, -0.018569160252809525, -0.00042176363058388233, -0.023307498544454575, 0.005022922530770302, 0.0013268768088892102, -0.02584030292928219, -0.011625290848314762, 0.008025292307138443, -0.01075019221752882, 0.02222607657313347, -0.006036756094545126, -0.013816594146192074], "21d0b6b7-28cf-437e-aef6-522813d4e0a1": [-0.008335297927260399, -0.0010660625994205475, -0.0197756327688694, 0.003517316421493888, -0.020796844735741615, 0.012144142761826515, 0.011047029867768288, -0.007534888572990894, -0.016215190291404724, -0.005544215440750122, 0.020603643730282784, -0.009818815626204014, -0.022853069007396698, -0.018961424008011818, -0.01028802152723074, 0.007238185498863459, 0.02311527170240879, -0.03560442104935646, -0.004847307223826647, -0.027393322438001633, -0.006451576016843319, 0.01952723041176796, 0.010460522957146168, 0.02713111974298954, -0.020465640351176262, -0.004015847109258175, -0.0006296324427239597, -0.029339145869016647, 0.004698955453932285, -0.0008344785892404616, 0.007293385919183493, -0.004184899386018515, -0.023336075246334076, 0.0008840729133225977, 0.002094174735248089, 0.003211987903341651, 0.016159990802407265, -0.00683108065277338, 0.023653479292988777, -0.031133167445659637, 0.013034253381192684, 0.0029704850167036057, 0.003912345971912146, -0.039026860147714615, -0.012827251106500626, 0.022094059735536575, 0.008079995401203632, -0.026358310133218765, 0.01879582181572914, 0.018740620464086533, 0.01582878641784191, 0.026178909465670586, -0.0021338502410799265, 0.003543191822245717, 0.03985486924648285, -0.007948894053697586, 0.0022580516524612904, 0.025944305583834648, -0.021776657551527023, -0.027338122949004173, 0.0013161904644221067, -0.011481734924018383, -0.01983083412051201, -0.008735503070056438, -0.021790456026792526, 0.005506264977157116, 0.0302775576710701, 0.02615130878984928, -0.011102231219410896, -0.02706211805343628, 0.005371713079512119, 0.00843189936131239, -0.00042284559458494186, -0.013324056752026081, 0.006941481959074736, -0.019554831087589264, -0.02565450221300125, -0.013703561387956142, 0.03734324127435684, 0.008914904668927193, 0.007900592871010303, -0.03546641767024994, -0.023432675749063492, 0.016836198046803474, 0.001002236851491034, -0.003933046478778124, 0.0060341209173202515, 0.025792503729462624, -0.02972554974257946, 0.008701002225279808, 0.014200367033481598, 0.020672643557190895, 0.024757491424679756, 0.0013946789549663663, -0.007396887056529522, 0.015649383887648582, -0.000504999712575227, 0.018450817093253136, 0.005430364049971104, -0.03499721363186836, -0.014793774113059044, 0.002806608099490404, -0.025323297828435898, 0.0023719030432403088, -0.025695903226733208, -0.007369286846369505, 0.017319204285740852, 0.003396565094590187, 0.0002514217048883438, -0.009280608966946602, -0.028897540643811226, 0.02261846698820591, -0.005623566452413797, -0.00732098612934351, -0.009756715036928654, 0.003995147068053484, 0.02126605063676834, -0.02744852378964424, -0.013896763324737549, -0.036736033856868744, -0.015552783384919167, 0.0370672382414341, 0.009232308715581894, -0.0312159676104784, -0.008659602142870426, -0.019140824675559998, -0.022163061425089836, -0.02546129934489727, 0.021707655861973763, -0.003801944898441434, 0.04741735756397247, 0.009515211917459965, 0.022452864795923233, -0.0002807470445986837, 0.004136598668992519, 0.01952723041176796, -0.017208803445100784, 0.005150910932570696, -0.030939964577555656, -0.012716850265860558, 0.014807574450969696, 0.038171250373125076, 0.003867495572194457, -0.010605424642562866, -0.0006494701374322176, 0.014200367033481598, -0.0010048242984339595, -0.02032763883471489, -0.01516637858003378, 0.017139801755547523, -0.005457964260131121, 0.009432410821318626, -0.004077948164194822, -0.03427960351109505, -0.004519553389400244, -0.0006007383344694972, -0.02187325805425644, 0.01755380630493164, -0.013620760291814804, -0.016642997041344643, 0.008894205093383789, 0.04068287834525108, 0.01995503529906273, -0.018023012205958366, -0.0004989621229469776, 0.028704337775707245, 0.02075544372200966, -0.01892002299427986, -0.00605482142418623, -0.023004870861768723, -0.018892422318458557, 0.01958242990076542, 0.010219020769000053, 0.004246999975293875, 0.02862153761088848, 0.01754000596702099, -0.006430875975638628, 0.01792641170322895, -0.018961424008011818, -0.0037605443503707647, -0.027600325644016266, 0.0119026405736804, 0.013551759533584118, 0.022383863106369972, -0.011088430881500244, 0.009956817142665386, 0.0008987355977296829, -0.019113225862383842, 0.005161260720342398, -0.00556146539747715, 0.021900858730077744, 0.016974199563264847, 0.0094255106523633, 0.0025858054868876934, -0.6098567843437195, -0.011371334083378315, 0.01581498607993126, 0.004664455074816942, -0.00812829565256834, 0.02176285721361637, -0.008645801804959774, -0.013393057510256767, -0.02071404457092285, 0.03491441160440445, -0.014296968467533588, 0.028028130531311035, 0.012364945374429226, 0.00012527960643637925, -0.006886281073093414, -0.018768221139907837, -0.014986976981163025, -0.002325327368453145, -0.012178643606603146, 0.01031562127172947, -0.017319204285740852, 0.00895630568265915, -0.0012756525538861752, 0.006541277281939983, -0.0066585782915353775, 0.0011281633051112294, 0.024150284007191658, -0.01824381574988365, 0.007176084443926811, 0.006182472687214613, -0.03425200283527374, -0.002889408962801099, 0.017043201252818108, 0.006127272266894579, 0.05467624589800835, 0.010543324053287506, -0.028649138286709785, 0.025502700358629227, 0.027614125981926918, 0.03905446082353592, -0.016408393159508705, 0.01817481406033039, 0.04004807025194168, -0.0024667789693921804, -0.005906469654291868, -0.007300286088138819, 0.020479440689086914, 0.015649383887648582, 0.005492464639246464, -0.0026461812667548656, 0.028221333399415016, 0.010329421609640121, -0.0004735180700663477, 0.02657911367714405, -0.00494390819221735, -0.004964608699083328, 0.03138156980276108, -0.006917331367731094, -0.0057443175464868546, 0.010612324811518192, -0.0008301660418510437, 0.001850946806371212, -0.004909407813102007, -0.018616419285535812, -0.014807574450969696, 0.0173054039478302, 0.006982882507145405, -0.0028204082045704126, -0.0038088448345661163, -0.022094059735536575, 0.02237006276845932, 0.020382840186357498, 0.009149507619440556, -0.010577824898064137, 0.012378745712339878, 0.005927169695496559, 0.016601596027612686, -9.654722816776484e-05, -0.0016396318096667528, 0.00559251569211483, 0.010184519924223423, 0.00992231722921133, -0.024950694292783737, -0.007369286846369505, 0.009618713520467281, 0.022577065974473953, -0.02292207069694996, 0.003227513050660491, -0.009970617480576038, -0.03734324127435684, 0.025130096822977066, -0.020921045914292336, -0.019485829398036003, -0.01495937630534172, 0.008583701215684414, 0.014020965434610844, -0.011875039897859097, 0.0009444486349821091, 0.009874016046524048, -0.020934846252202988, -0.024702291935682297, -0.0247160904109478, 0.015911588445305824, 0.011564536020159721, 0.03554921969771385, 0.009742914699018002, -0.04322211071848869, -0.02558550238609314, 0.041317686438560486, -0.0014645422343164682, -0.023929482325911522, -0.0010470873676240444, -0.00500600878149271, 0.0028273083735257387, 0.0036811933387070894, -0.04123488441109657, 0.025295699015259743, 0.007044983096420765, -0.0005114685045555234, 0.0327339842915535, 0.02076924405992031, -0.014890375547111034, 0.005002559162676334, 0.012185543775558472, 0.007997194305062294, 0.038585253059864044, -0.002884234068915248, -0.012351145967841148, 0.008880404755473137, -0.004260800313204527, 0.02551650069653988, -0.024384887889027596, 0.023515477776527405, -0.021528253331780434, 0.025475099682807922, -0.027489924803376198, 0.028262732550501823, 0.017995411530137062, 0.03731564059853554, -0.03795044869184494, -0.02837313525378704, -0.0013619035016745329, -0.010702026076614857, -0.021348850801587105, -0.0011730138212442398, 0.006386025343090296, -0.032043978571891785, 0.027117319405078888, -0.009315109811723232, 0.027158720418810844, -0.013572460040450096, -0.023336075246334076, 0.016353191807866096, 0.008845903910696507, -0.0006274761399254203, -0.005150910932570696, 0.014655772596597672, -0.029891151934862137, 0.017788410186767578, -0.031795576214790344, -0.005161260720342398, 0.022342463955283165, -0.02281166799366474, 0.0008025657152757049, -0.009280608966946602, 0.004578203894197941, -0.01570458523929119, 0.008859704248607159, -0.011750838719308376, -0.024743691086769104, -0.0007784154149703681, 0.01170943770557642, -0.010122419334948063, 0.02372247911989689, -0.00998441781848669, 0.020037835463881493, -0.036929234862327576, -0.00400204723700881, 0.018864821642637253, 0.0025789053179323673, -0.004509203135967255, 0.03168517351150513, 0.011826739646494389, 0.019679032266139984, -0.014724773354828358, 0.005430364049971104, 0.01687759906053543, 0.01625659130513668, -0.018989024683833122, 0.01618759147822857, 0.00927370972931385, 0.017829809337854385, -0.0200930368155241, 0.022025059908628464, -0.02743472345173359, 0.02279786951839924, -0.012737549841403961, 0.016118589788675308, -0.0034103651996701956, 0.01995503529906273, -0.012226943857967854, 0.026648113504052162, 0.013448258861899376, 0.01093662902712822, 0.006844880525022745, -0.03924766182899475, 0.004833506885915995, -0.03369999676942825, 0.04407772049307823, 0.012378745712339878, 0.012923852540552616, 0.02132125198841095, -0.0033379143569618464, -0.011088430881500244, 0.0031636871863156557, 0.014241768047213554, -0.0086527019739151, 0.006161772646009922, -0.024757491424679756, 0.003795044729486108, 0.010543324053287506, -0.0044402023777365685, 0.021652454510331154, -0.00800409447401762, -0.000786609249189496, -0.020852046087384224, 0.004236649721860886, 0.023460276424884796, 0.010163819417357445, 0.002278751926496625, -0.010336321778595448, 0.012026841752231121, 0.002849733689799905, 0.01220624428242445, 0.0207002442330122, 0.007997194305062294, 0.02490929327905178, -0.0063342745415866375, 0.013510359451174736, 0.0013136030174791813, 0.013206755742430687, 0.008231797255575657, 0.018257616087794304, -0.03218197822570801, -0.006613728124648333, 0.01983083412051201, 0.017636608332395554, 0.01673959754407406, 0.008286997675895691, 0.010122419334948063, -0.013979564420878887, 0.015373380854725838, -0.027462324127554893, 0.009253009222447872, 0.03289958834648132, -0.021983658894896507, -0.022052660584449768, 0.014476370997726917, 0.02707591839134693, 0.008024794980883598, 0.007631490007042885, 0.01128163281828165, 0.01810581423342228, 0.010984929278492928, 0.03267878666520119, -0.001288590137846768, -0.037729643285274506, -0.016021989285945892, -0.024674691259860992, -0.019361628219485283, 0.0003346539451740682, 0.00039157961145974696, 0.0004993933835066855, -0.03146437183022499, 0.022218262776732445, -0.0008392223971895874, 0.032540783286094666, 0.012075142003595829, 0.030884763225913048, 0.014793774113059044, -0.030056754127144814, -0.02268746681511402, 0.020286239683628082, 0.031602371484041214, 0.017388204112648964, -0.02242526412010193, 0.004981858655810356, 0.012289044447243214, -0.01792641170322895, 0.005192311014980078, -0.015428582206368446, 0.014545371755957603, 0.00046489297528751194, 0.0017871210584416986, -0.026482511311769485, 0.012523647397756577, 0.02459188923239708, 0.02268746681511402, -0.008763103745877743, 0.021045248955488205, 0.00553041510283947, -0.019513430073857307, -0.005340662784874439, 0.03651523217558861, 0.04523693397641182, -0.002268401673063636, 0.010219020769000053, -0.009218508377671242, -0.013655261136591434, -0.004730005748569965, 0.024136483669281006, -0.005178511142730713, 0.004968058783560991, -0.015111178159713745, -0.013648360967636108, -0.006944932043552399, -0.03295478969812393, -0.009480712004005909, 0.02898034080862999, -0.018023012205958366, -0.00670342892408371, -0.023750079795718193, -0.019872235134243965, 0.00012032016820739955, -0.015331980772316456, 0.028511136770248413, 0.0173054039478302, -0.010239720344543457, -0.029808351770043373, 0.0072795855812728405, -0.028538735583424568, -0.01847841776907444, 0.0027479573618620634, -0.028814740478992462, -0.01693280041217804, -0.004519553389400244, 0.02620650827884674, 0.015442381612956524, 0.02386048063635826, -0.00709328381344676, 0.04374651610851288, 0.013020453043282032, -0.003308589104562998, -0.007603889796882868, -0.015925386920571327, -0.018395617604255676, -0.001869922038167715, 0.03107796609401703, 0.013606959953904152, -0.005664966534823179, 0.011302333325147629, 0.01668439619243145, 0.01508357748389244, -0.012482247315347195, 0.004053797572851181, -0.0019923984073102474, 0.03601842373609543, 0.019306426867842674, 0.003118836786597967, 0.052440617233514786, 0.019265027716755867, -0.010646825656294823, 0.01661539636552334, 0.010577824898064137, -0.0063308244571089745, 0.005720167420804501, 0.01031562127172947, 0.016353191807866096, 0.013917463831603527, -0.011516235768795013, 0.004181449301540852, 0.023280873894691467, 0.019361628219485283, -0.010115519165992737, 0.038171250373125076, -0.002996360417455435, -0.004243549890816212, -0.015180178917944431, 0.012351145967841148, -0.011654237285256386, -0.020810645073652267, -0.012095842510461807, -0.03930286318063736, 0.0031050366815179586, -0.016090989112854004, -0.00725888554006815, 0.012102742679417133, -0.018506018444895744, -0.013268856331706047, -0.012116543017327785, -0.00017455049965064973, 0.004454002715647221, -0.000994474277831614, 0.00986021663993597, 0.007334786467254162, -0.0018009212799370289, -0.038723256438970566, 0.04498853161931038, 0.012972152791917324, 0.0022546015679836273, -0.010081019252538681, 0.0012014766689389944, -0.0047369059175252914, 0.022135460749268532, -0.01025352068245411, -0.010391522198915482, -0.00412624841555953, -0.021362651139497757, 0.0008452599868178368, -0.00946001149713993, 0.011233332566916943, -0.009963717311620712, -0.005934069864451885, 0.03527321666479111, -4.218213871354237e-05, 0.012433946132659912, 0.0069552818313241005, -0.006465376354753971, 0.016642997041344643, 0.018561217933893204, 0.02076924405992031, 0.039330463856458664, -0.009246109053492546, 0.012420146726071835, 0.008238697424530983, -0.01878202147781849, -0.019789433106780052, 0.004267700482159853, 0.0005429501761682332, 0.007824691943824291, 0.009777415543794632, 0.007534888572990894, 0.0010695125674828887, -0.03910966217517853, 0.012530547566711903, 0.004019297193735838, 0.0066344281658530235, -0.0023149773478507996, 0.017967810854315758, 0.014572971500456333, -0.008790703490376472, 0.026220308616757393, 0.02180425636470318, -0.0136000607162714, -0.003424165304750204, -0.002580630360171199, 0.006755179725587368, -0.002756582573056221, -0.01892002299427986, 0.01210964284837246, -0.021555854007601738, -0.03267878666520119, -0.015897788107395172, -0.027614125981926918, -0.0050336094573140144, 0.009680814109742641, 0.0035190414637327194, -0.033589594066143036, -0.04109688475728035, 0.004140048753470182, 0.011467935517430305, 0.018933823332190514, -0.000586075650062412, -0.03403120115399361, -0.03703963756561279, -0.01632559299468994, -0.023032471537590027, 0.0005356188048608601, -0.0030826113652437925, -0.02657911367714405, 0.01248914748430252, 0.008390499278903008, -0.01050882413983345, 0.03450040519237518, 0.008052394725382328, 0.0035604420118033886, -0.012930752709507942, -0.018989024683833122, -0.023708678781986237, -0.03596322238445282, -0.04995658993721008, -0.02125225029885769, 0.05147460848093033, 0.007020832970738411, 0.03469360992312431, -0.0036880935076624155, 0.0024478037375956774, 0.006710329093039036, -0.004719655495136976, -0.017567606642842293, -0.031436771154403687, -0.010419122874736786, -0.012930752709507942, -0.0066068279556930065, 0.01725020259618759, 0.008183496072888374, 0.03041555918753147, 0.0006796580273658037, -0.034390006214380264, 0.0163807924836874, 0.015028377063572407, -0.006196273025125265, -0.01526298001408577, -0.039082061499357224, -0.006027221214026213, 0.007900592871010303, -0.018630219623446465, -0.012896251864731312, -0.03270638361573219, -0.007024282589554787, 0.00930130947381258, -0.03016715496778488, 0.016173791140317917, -0.024205485358834267, 0.023777680471539497, -0.0037156937178224325, 0.017512407153844833, -0.00998441781848669, 0.015276780351996422, -0.008825204335153103, -0.03138156980276108, -0.008376698940992355, -0.00849399995058775, 0.010833127424120903, 0.005426913965493441, 0.016711996868252754, -0.009867115877568722, 0.008894205093383789, -0.004509203135967255, 0.02725532092154026, -0.02613750845193863, 0.009342710487544537, -0.008266297169029713, 0.0011842264793813229, -0.009135707281529903, -0.02176285721361637, -0.022590866312384605, -0.005551115609705448, -0.009391010738909245, 0.0029066591523587704, 0.015538983047008514, 0.008852804079651833, -0.046258144080638885, -0.026786115020513535, -0.008832104504108429, -0.01248914748430252, 0.0194582287222147, 0.021680055186152458, 0.046754952520132065, 0.01773320883512497, -0.014200367033481598, -0.020286239683628082, -0.00664132833480835, -0.00592026999220252, -0.00471275532618165, 0.018864821642637253, 0.04220089688897133, -0.021914659067988396, -0.003701893612742424, 0.014931775629520416, 0.005668416619300842, 0.002873883815482259, -0.010798627510666847, 0.03899925947189331, 0.028952741995453835, -0.0017569331685081124, -0.03082956373691559, 0.003581142285838723, -0.01780221052467823, -0.0014533295761793852, -0.01624279096722603, 0.0011462760157883167, 0.001913047512061894, -0.015801185742020607, -0.04443652555346489, 0.0027790076564997435, -0.013061854057013988, 0.05735347419977188, 0.01842321641743183, -0.02151445299386978, 0.022908270359039307, 0.011578336358070374, -0.0003657042980194092, 0.005733967758715153, -0.0018802721751853824, 0.018616419285535812, -0.01031562127172947, 0.017084602266550064, 0.00556146539747715, -0.018216215074062347, -0.008328397758305073, 0.0007922155782580376, -0.0006580952322110534, 0.031133167445659637, 0.014034765772521496, 0.009811915457248688, 0.008963205851614475, -0.022480465471744537, 0.016656795516610146, -0.0060375710017979145, 0.007638390175998211, -0.014572971500456333, -0.01618759147822857, 0.0038433452136814594, 0.020865846425294876, 0.023529278114438057, 0.004885257687419653, -0.02997395396232605, -0.011578336358070374, -0.031160768121480942, -0.015124978497624397, -0.023253273218870163, -0.027903929352760315, -0.014158966951072216, 0.006165222730487585, -0.0075210887007415295, -0.013324056752026081, 0.040627676993608475, 0.016477394849061966, 0.026868917047977448, -0.009328910149633884, 0.00914260745048523, -0.025061095133423805, 0.02354307658970356, 0.006793130189180374, -0.0006386887980625033, -0.033589594066143036, 0.014821374788880348, -0.002016548765823245, 0.004084848333150148, 0.0019371978705748916, 0.011592136695981026, -0.04355331510305405, -0.03472121059894562, 0.010612324811518192, 0.022397663444280624, 0.001615481567569077, -0.011350633576512337, 0.029835952445864677, 0.011854339390993118, -0.00573051767423749, -0.006482626311480999, -0.020313838496804237, 0.03505241498351097, -0.02725532092154026, 0.006717229261994362, 0.016849998384714127, -0.012751350179314613, 0.02366727963089943, 0.0069000814110040665, 0.005606316030025482, 0.01551138237118721, 0.0008461224497295916, -0.01867162063717842, 0.02379148080945015, 0.029256345704197884, -0.031050365418195724, -0.0231704730540514, -0.020051635801792145, -0.03427960351109505, -0.025723503902554512, 0.008845903910696507, 0.003130911849439144, 0.007369286846369505, 0.0038881958462297916, -0.0024961044546216726, 0.014600572176277637, 0.02057604305446148, 0.003030860796570778, -0.014752374030649662, -0.024674691259860992, 0.006130722351372242, -0.003039485774934292, -0.023377476260066032, 0.004888707771897316, 0.012834151275455952, 7.207350427052006e-05, -0.029808351770043373, -0.03289958834648132, -0.020369039848446846, -0.033037588000297546, -0.00764528987929225, -0.006979432422667742, 0.002549580065533519, 0.05221981555223465, 0.008079995401203632, 0.00354664190672338, 0.026096107438206673, -0.022590866312384605, 0.0302775576710701, -0.017774609848856926, -0.0007874717703089118, 0.017457205802202225, 0.0027514074463397264, 0.01161973737180233, -0.005171610973775387, -0.040379274636507034, 0.015221579000353813, 0.007013932801783085, 0.00627562403678894, 0.01767800748348236, 0.009846416302025318, -0.021845657378435135, 0.01620139181613922, -0.0020372490398585796, -0.03596322238445282, 0.00998441781848669, -0.017333004623651505, 0.009660113602876663, -0.03899925947189331, -0.0014274542918428779, 0.006475726142525673, 0.01090212818235159, -0.012972152791917324, 0.02237006276845932, 0.01356555987149477, 0.002647906308993697, 0.006134172435849905, -0.028593936935067177, -0.03626682609319687, -0.007431387435644865, -0.030912363901734352, 0.03784004598855972, -0.005078459624201059, 0.006396375596523285, 0.04612014442682266, -0.004598904401063919, -0.0057132672518491745, 0.017664209008216858, -0.010922828689217567, -0.023888081312179565, -0.014227967709302902, 0.036128826439380646, -0.017167402431368828, -0.015456181950867176, -0.00403309753164649, 0.013296457007527351, -0.017264002934098244, -0.01099872961640358, -0.017098400741815567, -0.004598904401063919, -0.026413511484861374, -0.007721190806478262, -0.006223873235285282, -0.030111955478787422, -0.03176797553896904, 0.019237427040934563, -0.02460568957030773, 0.010329421609640121, -0.003482816042378545, -0.026717115193605423, -0.015469982288777828, 0.0019389227963984013, -0.015028377063572407, -0.005288912449032068, -0.023405075073242188, 0.001631006714887917, -0.010853827930986881, 0.00816279649734497, 0.007383087184280157, 0.18337656557559967, -0.009011506102979183, 0.01010861899703741, 0.026648113504052162, 0.006565427407622337, 0.004091748036444187, -0.02526809833943844, 0.004695505369454622, -0.017471006140112877, 0.050894998013973236, 0.01210964284837246, 0.008231797255575657, -0.001045362325385213, -0.0012592648854479194, 0.0006335137295536697, -0.006434326060116291, -0.03190597519278526, -0.019444428384304047, -0.03077436238527298, -0.026054706424474716, -0.00790749303996563, -0.009563513100147247, 0.014572971500456333, -0.01433836854994297, 0.03403120115399361, -0.00952211208641529, -0.0003277538635302335, -0.001715532736852765, 0.0231704730540514, 0.0015740810194984078, -0.027420923113822937, 0.0004955120966769755, 0.01686379872262478, 0.03237518295645714, -0.0031516121234744787, -0.004081398248672485, 0.011778438463807106, -0.0038916459307074547, 0.027531323954463005, 0.008121395483613014, 0.008832104504108429, -0.02707591839134693, -0.00023093709023669362, -0.02391568198800087, -0.006420525722205639, -0.007376187015324831, 0.014793774113059044, -0.020258639007806778, -0.001442117034457624, -0.004188349470496178, -0.012737549841403961, 0.008238697424530983, 0.010177619755268097, 0.007935093715786934, 0.0017069076420739293, -0.00650677690282464, 0.013365457765758038, 0.005440714303404093, -0.013158455491065979, 0.01569078490138054, -0.014586771838366985, 0.018464617431163788, 0.00452645355835557, 0.0028290334157645702, -0.030360357835888863, 0.005513165146112442, -0.009121907874941826, -0.023004870861768723, -0.009473811835050583, -0.021238449960947037, 0.006072071380913258, -0.010605424642562866, 0.002622030908241868, 0.008825204335153103, -0.011668037623167038, -0.016463594511151314, 0.009439310990273952, 0.005233711563050747, 0.011605937033891678, 0.04763816297054291, -0.0033154890406876802, 0.005678766872733831, -0.026717115193605423, -0.012413246557116508, -0.0006326512084342539, -0.04741735756397247, 0.02107284776866436, 0.008852804079651833, -0.018768221139907837, 0.0011350633576512337, -0.01193024031817913, 0.00803169421851635, -0.014241768047213554, 0.010163819417357445, 0.01736060529947281, 0.015124978497624397, -0.013365457765758038, 0.010005118325352669, 0.012744450010359287, 0.00650677690282464, -0.033589594066143036, 0.042311299592256546, 0.006444675847887993, -0.010343221947550774, -0.01069512590765953, -0.013537959195673466, 0.012316645123064518, 0.01661539636552334, -0.004436752293258905, -0.020658843219280243, -0.012709950096905231, -0.0383092500269413, -0.006468826439231634, -0.014352168887853622, 0.012289044447243214, 0.017829809337854385, -0.004091748036444187, -0.014890375547111034, 0.0016767197521403432, -0.0050612096674740314, 0.012275245040655136, -0.0152905797585845, -0.012834151275455952, 0.01090212818235159, -0.023018671199679375, -0.039772067219018936, 0.0056615169160068035, -0.007500388193875551, 0.001700869994238019, -0.05012219026684761, 0.014172767288982868, 0.002606505760923028, 0.03657042980194092, -0.008038594387471676, -0.006358425132930279, 0.007948894053697586, 0.023267073556780815, 0.003077436238527298, -0.02867673709988594, 0.008507800288498402, 0.005727067589759827, -0.002572005381807685, -0.0022235512733459473, -0.0014447044814005494, -0.012861751951277256, 3.7249657907523215e-05, 0.014931775629520416, -0.01940302923321724, -0.024743691086769104, -0.01464197225868702, 0.006510226521641016, -0.024136483669281006, -0.0002363277890253812, 0.009501411579549313, 0.047858964651823044, -0.028649138286709785, -0.01516637858003378, -0.05285462364554405, -0.024743691086769104, -3.681840098579414e-05, -0.019513430073857307, -0.020410440862178802, 0.03731564059853554, 0.007210584823042154, -0.03806084766983986, -0.01785741001367569, -0.1762004792690277, 0.00045238659367896616, 0.0031654122285544872, -0.017967810854315758, 0.0013584535336121917, 0.010612324811518192, 0.017843609675765038, -0.006444675847887993, 0.034390006214380264, -0.01620139181613922, 0.0481901690363884, -0.005620116367936134, -0.0013213655911386013, 0.0019440979231148958, -0.005582165904343128, -0.006882830988615751, -0.014448770321905613, 0.02526809833943844, 0.030498359352350235, 0.009446211159229279, 0.044160518795251846, -0.030056754127144814, 0.03411400318145752, -0.008487099781632423, -0.023253273218870163, 0.02194225788116455, -0.035190414637327194, 0.026441112160682678, 0.01513877883553505, 0.003743294160813093, -0.007051883265376091, 0.0069242315366864204, 0.01161973737180233, 0.0048266067169606686, 0.003277538577094674, -0.0024046783801168203, -0.018575018271803856, 0.01217174343764782, 0.01161973737180233, 0.03287198767066002, 0.007686690427362919, 0.03325839340686798, 0.005168160889297724, -0.014352168887853622, -0.012565048411488533, 0.01749860681593418, 0.031160768121480942, 0.016215190291404724, 0.029311545193195343, -0.017843609675765038, -0.009584212675690651, -0.029753150418400764, -0.009266809560358524, 0.0022494264412671328, 0.013951964676380157, 0.017029400914907455, 0.0017060451209545135, -0.0011971640633419156, 0.014986976981163025, -0.036239225417375565, -0.012841051444411278, -0.02063124254345894, -0.013731162063777447, -0.01835421659052372, -0.027614125981926918, 0.007714291103184223, -0.023584477603435516, 0.011129830963909626, -0.046064943075180054, -0.0008314598235301673, 0.011047029867768288, -0.013268856331706047, -0.004353951197117567, 0.016946598887443542, 0.004909407813102007, 0.0007779841544106603, -0.020189637318253517, 0.01569078490138054, 0.0290355421602726, -0.019251227378845215, 0.018464617431163788, 0.03960646688938141, -0.005809868685901165, 0.01668439619243145, -0.006072071380913258, 0.0059547703713178635, 0.029863551259040833, 0.005702916998416185, 0.03270638361573219, 0.0022459763567894697, 0.020424241200089455, -0.01824381574988365, 0.01983083412051201, -0.02743472345173359, -0.003991696983575821, 0.010198320262134075, -0.0034327905159443617, 0.00024926543119363487, 0.000995336682535708, -0.008797603659331799, -0.023957083001732826, -0.014545371755957603, -0.006644778419286013, 0.02306007221341133, 0.035576820373535156, 0.010018917731940746, -0.017098400741815567, 0.012240744195878506, 0.034141603857278824, -0.018685420975089073, -0.0030860614497214556, 0.0132826566696167, -0.01041222270578146, 0.01618759147822857, -0.01461437251418829, 0.009722214192152023, -0.009722214192152023, -0.014807574450969696, -0.00016549414431210607, -0.008914904668927193, 0.04777616262435913, 0.010688225738704205, -0.016215190291404724, 0.016118589788675308, -0.030857164412736893, 0.0066551282070577145, -0.06419835984706879, 0.0037846947088837624, 0.01798161119222641, 0.014586771838366985, -0.026054706424474716, -0.002699656877666712, -0.005282012280076742, 0.013248155824840069, -0.0021959508303552866, 0.019499629735946655, -0.012875551357865334, -0.01631179265677929, -0.026289310306310654, 0.006492976564913988, 0.0210176482796669, -0.002244251547381282, 0.016118589788675308, -0.0036397927906364202, 0.016905199736356735, 0.023253273218870163, -0.007976493798196316, -0.02150065265595913, 0.022163061425089836, 0.011792238801717758, -0.044160518795251846, -0.01069512590765953, -0.026289310306310654, 0.0063135745003819466, 0.015193979255855083, -0.00721748499199748, 0.025571702048182487, -0.015566583722829819, 0.017346804961562157, -0.017139801755547523, -0.0029014842584729195, -0.006972532253712416, -0.043663714081048965, -0.006582677364349365, 0.00546831451356411, -0.015276780351996422, 0.02212166041135788, 0.007141584064811468, 0.015124978497624397, -0.02848353609442711, -0.007659090217202902, -0.0028169581200927496, 0.007007032632827759, 0.02892514131963253, 0.01922362670302391, -0.021114248782396317, 0.010322521440684795, 0.006351524963974953, -0.015373380854725838, -0.005464864429086447, 0.04333250969648361, -0.0098878163844347, 0.01755380630493164, 0.007659090217202902, -0.01304115355014801, -0.009322009980678558, -0.010357022285461426, -0.01909942552447319, -0.008404298685491085, 0.009411711245775223, 0.019817033782601357, 0.00016808166401460767, -0.01785741001367569, -0.011626636609435081, 0.018519818782806396, 0.0029325345531105995, -0.0119026405736804, 0.0026134056970477104, 4.441927376319654e-05, 0.0014050290919840336, -0.011240232735872269, -0.0028945840895175934, -0.023874280974268913, -0.024067483842372894, 0.01069512590765953, -0.005571815650910139, -0.0020406991243362427, -0.006165222730487585, -0.007686690427362919, 0.023957083001732826, 0.03659803047776222, 0.012440846301615238, 0.009225408546626568, 0.014835175126791, -0.01668439619243145, -0.0327339842915535, 0.000570981705095619, 0.020934846252202988, 0.02020343765616417, -0.020865846425294876, -0.02755892463028431, 0.033589594066143036, 0.013758761808276176, -0.007334786467254162, -0.020065436139702797, 0.01168183796107769, -0.02045184187591076, -0.0234878771007061, -0.08114495873451233, 0.01817481406033039, -0.004088297951966524, 0.005323412828147411, -0.009680814109742641, -0.00018479280697647482, -0.01865782029926777, 0.017098400741815567, -0.005747767630964518, 0.0389164574444294, -0.02928394451737404, 0.017871210351586342, 0.004840407054871321, 0.02212166041135788, -0.002810058183968067, -0.002513354644179344, 0.017871210351586342, -0.011564536020159721, 0.006544727366417646, -0.007893692702054977, -0.002263226779177785, 0.00458855414763093, 0.03662563115358353, 0.004840407054871321, -0.008114495314657688, 0.01103323046118021, -0.007424487732350826, 0.016394592821598053, -0.02577870339155197, -0.02798672951757908, 0.0021079748403280973, -0.02460568957030773, 0.010853827930986881, 0.04407772049307823, -0.00377089437097311, -0.043912116438150406, 0.010722726583480835, 0.01792641170322895, 0.01028802152723074, 0.010363922454416752, -0.04184209182858467, -0.016104789450764656, -0.0005377751076593995, -0.013413758017122746, 0.008355998434126377, 0.0009703239193186164, -0.029615148901939392, -0.011116030625998974, 0.008017894811928272, -0.007665990386158228, 0.018630219623446465, 0.020465640351176262, -0.03610122576355934, -0.008949405513703823, -0.01798161119222641, -0.03146437183022499, -0.013910563662648201, 0.00715538440272212, 0.010971128940582275, -0.0072243851609528065, 0.053682632744312286, 0.00046877426211722195, 0.03808844834566116, 0.004112448543310165, 0.017195003107190132, -0.015414781868457794, -0.023253273218870163, -0.0017940211109817028, 0.011854339390993118, -0.03687403351068497, -0.012523647397756577, -0.029339145869016647, -0.0006654266035184264, 0.02898034080862999, 0.002892859047278762, 0.003084336407482624, -0.03629442676901817, -0.002853183541446924, 0.008990805596113205, 0.015014576725661755, 0.018133413046598434, -0.0010979754151776433, -0.020921045914292336, 0.0047955564223229885, 0.028511136770248413, 0.030360357835888863, -0.03347919508814812, 0.014200367033481598, 0.018326615914702415, -0.0042021493427455425, -0.029090743511915207, 0.004657554905861616, -0.010777927003800869, -0.002140750177204609, 0.002016548765823245, -0.005185411311686039, -0.027213919907808304, 0.004533353261649609, 0.015594183467328548, 0.02613750845193863, 0.018368016928434372, 0.012213143520057201, -0.00774189131334424, -0.008349098265171051, -0.023142872378230095, -0.017636608332395554, -0.028041930869221687, -0.0420076958835125, 0.02485409379005432, -0.0053337630815804005, -0.045071329921483994, 0.01588398776948452, -0.004864557180553675, 0.020493241026997566, -0.0024081284645944834, -0.012447746470570564, -0.018740620464086533, -0.021680055186152458, -0.03560442104935646, 0.03560442104935646, 0.014476370997726917, 0.005285462364554405, 0.01934782788157463, 0.0005804693209938705, 0.017567606642842293, 0.010619224980473518, 0.008880404755473137, 0.004785206168889999, -0.0003911483509000391, -0.0034103651996701956, -0.007976493798196316, 0.02180425636470318, -0.028014330193400383, -0.009970617480576038, -0.026040906086564064, -0.011881940066814423, 0.00887350458651781, 0.022094059735536575, 0.006475726142525673, 0.09974757581949234, -0.022342463955283165, -0.007107083685696125, -0.020037835463881493, -0.01362766046077013, 0.012399446219205856, 0.013903663493692875, 0.01718120276927948, -0.007638390175998211, -0.03502481430768967, 0.017277803272008896, -0.023653479292988777, -0.0020613993983715773, -0.05773987993597984, 0.004778306465595961, 0.014241768047213554, -0.023639678955078125, 0.010888328775763512, 0.0012195893796160817, 0.0029825600795447826, 0.009190908633172512, -0.0007253710646182299, 0.01198544166982174, -0.011847439222037792, -0.017788410186767578, 0.005409663543105125, 0.008990805596113205, -0.013213655911386013, -0.002023448934778571, -0.04642374813556671, 0.011247132904827595, 0.01184053998440504, -0.025350898504257202, -0.012496047653257847, 0.03033275716006756, -0.02243906445801258, -0.0015706310514360666, -0.003991696983575821, 0.008017894811928272, -0.027462324127554893, 0.0006145384977571666, -0.00825249683111906, -0.020410440862178802, -0.008963205851614475, 0.03132636845111847, -0.004050347954034805, -0.002730707172304392, -0.005840918980538845, -0.02928394451737404], "792e2728-bdc4-4e54-ad72-55e359056616": [-0.010354411788284779, -0.01022228691726923, -0.01926240511238575, -0.014923147857189178, -0.006456730421632528, 0.02610507793724537, -0.029123086482286453, -0.020667100325226784, -0.030958926305174828, -0.011703475378453732, 0.03365705534815788, -0.014339017681777477, -0.010117977857589722, -0.010493490844964981, -0.009832866489887238, 0.004544397816061974, 0.013066447339951992, -0.026049446314573288, 0.0030805938877165318, -0.013490636833012104, -0.025826921686530113, 0.008622881956398487, -0.02075054682791233, 0.02621634118258953, -0.0066271014511585236, -0.01183560024946928, -0.004457473289221525, -0.031849030405282974, -0.007670192047953606, -0.013921781443059444, 0.0057474286295473576, -0.006401098798960447, -0.03791286423802376, -1.0118521458934993e-05, -0.014895332045853138, -0.013219433836638927, 0.006470637861639261, -0.02161283604800701, 0.028678035363554955, -0.03677241876721382, 0.015701988711953163, 0.00520502170547843, 0.011035897769033909, -0.013122078962624073, 0.010201425291597843, 0.037439994513988495, 0.03151524066925049, -0.018121959641575813, 0.0024060620926320553, 0.029651585966348648, -0.0006645355606451631, 0.010806418024003506, -0.01689806580543518, 0.0024460472632199526, 0.021292954683303833, -0.02379637211561203, 0.005980385467410088, 0.021028704941272736, -0.001663729315623641, -0.007579790893942118, 0.01199554093182087, -0.012836966663599014, 0.0017741230549290776, -0.0025103711523115635, -0.01146008726209402, -0.01202335674315691, 0.008337769657373428, 0.020472388714551926, -0.00885931495577097, -0.023601660504937172, 0.02492290921509266, 0.0007927487604320049, -0.019039878621697426, 0.0056048729456961155, 0.0036369089502841234, -0.0300131905823946, -0.0478430837392807, -0.00901230238378048, 0.0417514368891716, -0.008240414783358574, 0.013191618025302887, -0.019846536219120026, -0.046869534999132156, 0.015701988711953163, 0.004495719913393259, -0.002786790020763874, 0.012120711617171764, 0.015507278963923454, -0.02503417246043682, 0.007044337689876556, 0.02703690528869629, 0.0020792270079255104, 0.021890992298722267, -1.9394963601371273e-05, -0.014394649304449558, 0.02157111093401909, -0.0012977784499526024, 0.022099610418081284, 0.0017376149771735072, -0.009659018367528915, -0.006265496835112572, -0.0004296228871680796, -0.02254466339945793, 0.004460950382053852, -0.026689209043979645, -0.005876076407730579, 0.01677289605140686, 0.03465842083096504, -0.00020829214190598577, 0.0012560548493638635, -0.016188764944672585, 0.028733666986227036, -0.013880057260394096, -0.01584106869995594, 0.00546927098184824, -0.009867636486887932, -0.006898305378854275, -0.0210565198212862, -0.03760689124464989, -0.022141333669424057, -0.004394887946546078, 0.029317796230316162, 0.009672925807535648, -0.026605762541294098, 0.004287101794034243, -0.0213207695633173, 0.0034647989086806774, -0.027760114520788193, 0.02386591024696827, -0.010180563665926456, 0.030291348695755005, 0.013845288194715977, 0.013288972899317741, -0.0018201929051429033, -0.011348824948072433, 0.03257223963737488, -0.02361556887626648, 0.004120207391679287, -0.031598687171936035, -0.007468528114259243, 0.027009090408682823, 0.04634103551506996, 0.007844040170311928, -0.005956046748906374, -0.020611468702554703, -0.005347577389329672, 0.008970578201115131, -0.008581157773733139, 0.00012310640886425972, 0.0017889002338051796, -0.002308706985786557, -0.00019699198310263455, -0.002454739762470126, -0.02648059092462063, -0.007110400125384331, 0.02422751486301422, -0.0154099240899086, 0.015743711963295937, -0.013511499390006065, -0.027885286137461662, 0.009707695804536343, 0.04350382834672928, -0.0005085066077299416, 0.003461322048678994, 0.009777234867215157, 0.030041007325053215, 0.0051945908926427364, 0.009450400248169899, -0.0053371465764939785, -0.012412777170538902, -0.01641129143536091, 0.015743711963295937, -0.01963791809976101, 0.003049301216378808, 0.013768794946372509, 0.039053309708833694, 0.0009996284497901797, -0.00610555661842227, -0.02442222647368908, -0.013720117509365082, -0.016188764944672585, 0.011578304693102837, 0.023643385618925095, 0.037940677255392075, -0.015048318542540073, 0.020361127331852913, 0.016313934698700905, -0.016369566321372986, 0.007162554655224085, 0.010556075721979141, 0.031348347663879395, 0.035270366817712784, -0.011251469142735004, -0.013775748200714588, -0.5977047681808472, -0.004735630936920643, -0.017815986648201942, 0.015562910586595535, -0.010799463838338852, 0.0012256313348188996, 0.006258543115109205, 0.01578543707728386, -0.04219648614525795, 0.03721746802330017, -0.007211232557892799, 0.007482436019927263, -0.00455135153606534, -0.015757620334625244, 0.005622257944196463, -0.009207012131810188, -0.013386327773332596, -0.0066305785439908504, -0.015145674347877502, 0.026675300672650337, 0.0035534617491066456, 0.011905139312148094, -0.00037942416383884847, -0.01653646118938923, -0.007364219054579735, -0.006425437517464161, 0.03858043998479843, -0.012690934352576733, 0.008755005896091461, 0.012169389054179192, -0.022947991266846657, -0.0016324366442859173, 0.03927583619952202, -0.005938661750406027, 0.056020915508270264, -0.0060186320915818214, -0.030458243563771248, 0.006115987431257963, 0.018497470766305923, 0.03796849399805069, 0.00769105413928628, 0.00203576497733593, 0.021724097430706024, -0.012357145547866821, 0.00204967288300395, -0.010764693841338158, 0.018316669389605522, -0.0017854232573881745, -0.020764455199241638, -0.008907993324100971, 0.007225139997899532, 0.0005497956299223006, 0.0163973830640316, 0.011161068454384804, 0.01099417358636856, -0.002677265554666519, 0.016425197944045067, -0.01776035502552986, 0.008949716575443745, -0.006515838671475649, 0.001340371323749423, 0.0020009952131658792, -0.004443565383553505, -0.013970458880066872, -0.01591060683131218, 0.007656284142285585, 0.0073850806802511215, 0.00498944940045476, -0.00384552706964314, -0.013323742896318436, 0.02093135006725788, 0.017120592296123505, 0.002032287884503603, -0.015145674347877502, -0.010507398284971714, 0.023893726989626884, 0.019178956747055054, -0.0022200443781912327, -0.006508884951472282, -0.008671559393405914, 0.01584106869995594, -0.002430400811135769, -0.01186341606080532, -0.008504664525389671, 0.0031796875409781933, 0.012266743928194046, -0.012628349475562572, 0.007103446405380964, -0.011258423328399658, -0.010806418024003506, 0.024380501359701157, -0.00844903290271759, -0.004081960767507553, -0.03287821263074875, -0.002842421643435955, -0.006053402088582516, -0.012544902041554451, -0.003949835896492004, -0.007468528114259243, -0.01714840717613697, -0.0315430574119091, -0.007969211786985397, 0.005942138843238354, 0.015298660844564438, 0.05095844715833664, 0.02648059092462063, -0.007538067176938057, -0.03223844990134239, 0.05660504475235939, -0.02503417246043682, -0.024589119479060173, -0.003570846514776349, -0.015062226913869381, 0.011988586746156216, 0.002249598503112793, -0.030041007325053215, 0.05076373741030693, 0.009798096492886543, 0.008212598972022533, 0.03468623757362366, 0.013080354779958725, 0.007086061406880617, -0.010382227599620819, -0.00037007982609793544, 0.00888017751276493, 0.03193247690796852, 0.010396135039627552, -0.026299787685275078, 0.017176223918795586, -0.004339256323873997, -0.012134619057178497, -0.020681006833910942, 0.036077022552490234, -0.02347649075090885, 0.011098482646048069, -0.011348824948072433, 0.02970721758902073, -0.011487903073430061, 0.04934513568878174, -0.018358392640948296, -0.03515910357236862, 0.008657651022076607, -0.0003048866637982428, -0.026744840666651726, -0.006867012474685907, -0.005152867175638676, -0.020180324092507362, 0.005507518071681261, -0.014700622297823429, 0.022030072286725044, -0.02727334015071392, -0.001565505051985383, 0.019471023231744766, 0.014742345549166203, -0.02137640118598938, 0.0019088556291535497, 0.01852528750896454, -0.044338300824165344, 0.0006319389794953167, -0.018052419647574425, -0.008205645717680454, 0.03490876033902168, -0.012600533664226532, -0.016856342554092407, 0.006456730421632528, 0.027760114520788193, 0.01388701144605875, 0.017190132290124893, -0.012823059223592281, -0.03624391928315163, -0.0017184915486723185, -0.005065942648798227, -0.028441600501537323, -0.007378126960247755, 0.015354292467236519, 0.007089538499712944, -0.01566026546061039, 0.0025294944643974304, 0.006189003586769104, 0.00885236170142889, 0.012266743928194046, 0.04456082731485367, 0.001961010042577982, -0.004979018587619066, 0.006814857944846153, 0.0019923029467463493, 0.012996907345950603, 0.0295681394636631, -0.022349951788783073, 0.04762055724859238, -0.026258064433932304, 0.0231148861348629, -0.0049372948706150055, 0.008810637518763542, -0.020541928708553314, 0.03237752988934517, -0.029039639979600906, 0.0005093758809380233, -0.0023382611107081175, 0.011884277686476707, 0.013003861531615257, 0.03307292237877846, 0.007322495337575674, -0.008212598972022533, -0.007013045251369476, -0.027787931263446808, -0.002722466131672263, -0.027760114520788193, 0.025340145453810692, 0.027509773150086403, 0.029540322721004486, 0.008254323154687881, -0.03157087415456772, 0.004686953499913216, -0.00043092676787637174, 0.005072896834462881, -0.006766180507838726, 0.021960532292723656, -0.011640889570116997, 0.004801693372428417, -0.007412896491587162, -0.02261420153081417, 0.0317099504172802, -0.02591036818921566, -0.009652064181864262, -0.007315541617572308, 0.02273937314748764, 0.00657147029414773, 0.0047043380327522755, -0.006199434399604797, 0.008254323154687881, 0.00789271853864193, -0.006946982815861702, 0.0064150067046284676, 0.030124453827738762, -0.014825792983174324, 0.03710620477795601, -0.0029884541872888803, 0.04948421195149422, -0.003800326492637396, 0.005152867175638676, 0.015020503662526608, 0.030235717073082924, -0.04052754119038582, -0.018066328018903732, 0.006317651364952326, 0.03232189640402794, 0.018094142898917198, -0.014019136317074299, 0.00035921428934670985, -0.015799343585968018, 0.0019366713240742683, -0.01999952271580696, -0.01019447110593319, 0.032850395888090134, -0.03329544886946678, -0.022030072286725044, 0.011939909309148788, 0.024839462712407112, 0.01041004341095686, 0.011932955123484135, -0.0022217826917767525, 0.023267872631549835, 0.002621634164825082, 0.02567393332719803, -0.003949835896492004, -0.04606287553906441, -0.0011065452126786113, 0.00879673007875681, -0.01273961178958416, 0.008254323154687881, 0.006195957772433758, -0.015326476655900478, -0.011703475378453732, -0.003337889676913619, -0.0024877707473933697, 0.033017292618751526, -0.002984977327287197, 0.021793637424707413, 0.007232094183564186, -0.03474186733365059, -0.019776996225118637, 0.019721364602446556, 0.02826079912483692, 0.027801839634776115, -0.018427932634949684, -0.003901158459484577, 0.004742584656924009, -0.020166415721178055, 0.004965110681951046, -0.010027577169239521, 0.0016020131297409534, 0.0034456755965948105, -0.015701988711953163, -0.019373668357729912, 0.013414143584668636, 0.01566026546061039, 0.0035743233747780323, 0.010382227599620819, 0.03871951997280121, 0.02286454290151596, -0.0073294490575790405, -0.011536580510437489, 0.039164572954177856, 0.02510371059179306, -0.004168884828686714, -0.027370695024728775, -0.02578519657254219, -0.027495864778757095, -0.028984008356928825, 0.04200177639722824, 0.008150014095008373, -0.010013668797910213, 0.013768794946372509, 0.012148527428507805, 0.011752152815461159, -0.0012534471461549401, -0.013400236144661903, 0.02119559980928898, -0.015632450580596924, -0.014019136317074299, -0.0295681394636631, -0.008755005896091461, 0.03983214870095253, 0.034714050590991974, 0.04953984543681145, 0.021348586305975914, 0.015813251957297325, -0.024436132982373238, 0.011418364010751247, -0.027106445282697678, -0.04161235690116882, 0.007072153501212597, -0.008073520846664906, -0.02703690528869629, -0.024533487856388092, 0.007864902727305889, 0.006453253328800201, 0.02603553980588913, 0.003158825682476163, 0.03273913264274597, -0.009109657257795334, 0.0060707866214215755, -0.019902165979146957, -0.00295194610953331, -0.009193104691803455, 0.020778363570570946, 0.020361127331852913, 0.01956837810575962, 0.005674412474036217, 0.02926216647028923, 0.01727357879281044, 0.017384842038154602, -0.004836462903767824, -0.01531256828457117, 0.008455987088382244, 0.01566026546061039, 0.02211351878941059, 0.000668447173666209, 0.05190418288111687, 0.0028076518792659044, -0.015757620334625244, 0.016606001183390617, 0.02515934221446514, 0.00498944940045476, 0.024060621857643127, 0.007054768968373537, -0.004460950382053852, 0.01757955178618431, -0.017927248030900955, -0.02112605981528759, 0.028427693992853165, 0.019415391609072685, 0.004161931108683348, 0.009805050678551197, -0.0008136106189340353, -0.024714291095733643, -0.020736638456583023, 0.005990816280245781, 0.017982879653573036, -0.009088795632123947, -0.018038511276245117, -0.015145674347877502, 0.0017706460785120726, -0.04205740988254547, -0.038747336715459824, 0.01906769350171089, -0.017120592296123505, -0.025868644937872887, -0.014213846996426582, -0.026313696056604385, -0.015465554781258106, 0.0020705347415059805, 0.015020503662526608, 0.02639714442193508, -0.008177829906344414, -0.033267632126808167, 0.04984581843018532, 0.00023795502784196287, -0.009707695804536343, -0.011689567938446999, -0.013998274691402912, -0.00272594322450459, 0.014519819989800453, -0.011293193325400352, -0.025632210075855255, -0.0023486921563744545, -0.03132053092122078, 0.002635542070493102, -0.013462821021676064, 0.00798311922699213, 0.0035291227977722883, -0.008462941274046898, 0.005111143458634615, -0.011174975894391537, 0.019749179482460022, -0.018414024263620377, -0.004659137688577175, 0.02286454290151596, 0.017690815031528473, 0.020597560331225395, 0.024769922718405724, -0.002804175019264221, 0.016856342554092407, 0.004780831281095743, -0.003254442475736141, -0.01025010272860527, 0.017357025295495987, 0.0006597547326236963, 0.021487664431333542, 0.0029502075631171465, 0.01531256828457117, 0.010423950850963593, -0.007141693029552698, 0.013511499390006065, 0.005597919225692749, 0.011258423328399658, 0.012843920849263668, -0.006766180507838726, 0.010305734351277351, 0.009874589741230011, 0.0016906758537515998, 0.0026338035240769386, -0.013984366320073605, -0.01497877947986126, 0.0034943532664328814, 0.02273937314748764, -0.00043092676787637174, 0.0007197324302978814, 0.02082008682191372, -0.0008340377826243639, -0.024283146485686302, -0.0052815149538218975, 0.0029484692495316267, -0.0003672547754831612, 0.0198882594704628, 0.0058899843133986, -0.03260005638003349, -0.030792031437158585, -0.0026564039289951324, -0.006265496835112572, 0.0027920056600123644, -0.022753281518816948, -0.021390309557318687, -0.01472843810915947, 0.01646692119538784, -0.01044481247663498, -0.011425318196415901, 0.0014977040700614452, -0.021793637424707413, -0.0073850806802511215, -0.012823059223592281, 0.010361365973949432, 0.03574323281645775, -0.004179316107183695, 0.0042558093555271626, -0.01956837810575962, -0.0035743233747780323, -0.016425197944045067, -0.03560415655374527, -0.02746804989874363, -0.0030249624978750944, 0.04528403654694557, 0.02610507793724537, 0.029345612972974777, -0.01528475247323513, 0.00681833503767848, -0.0016506906831637025, -0.0029988852329552174, 0.004711292218416929, -0.019540561363101006, -0.03877514973282814, -0.006988706532865763, 0.002786790020763874, -0.0042592864483594894, -0.0008483802666887641, 0.017106683924794197, 0.00411673029884696, -0.004638275597244501, 0.016119224950671196, -0.005524902604520321, 0.007412896491587162, -0.024060621857643127, -0.045506563037633896, -0.013907873071730137, 0.008344723843038082, -0.028066089376807213, -0.0006988706300035119, -0.032711319625377655, -0.00999976135790348, 0.009485169313848019, 0.00839340128004551, 0.009832866489887238, -0.0031866414938122034, 0.028372062370181084, -0.020152509212493896, 0.03579886630177498, -0.0013264634180814028, -0.001877562957815826, -0.008539434522390366, -0.0024877707473933697, -0.015604633837938309, 0.0051389592699706554, 0.014992687851190567, 0.009958037175238132, 0.0036334318574517965, -0.012127665802836418, 0.015396015718579292, -0.0037620796356350183, 0.017426565289497375, -0.004078483674675226, -0.013838334009051323, 0.00839340128004551, -0.01727357879281044, -0.011821692809462547, -0.031153636053204536, -0.014088675379753113, -0.0013751409715041518, -0.0176490917801857, -0.015215213410556316, 0.0044157495722174644, 0.008136105723679066, -0.03732873126864433, -0.01883126050233841, 0.0049025253392755985, -0.013803564012050629, 0.017607368528842926, 0.028441600501537323, 0.0315430574119091, 0.013129032216966152, 0.003949835896492004, -0.013386327773332596, 0.005038127303123474, 0.0036855863872915506, -0.003849003929644823, 0.01913723349571228, 0.031654320657253265, -0.02150157280266285, -0.0011934693902730942, 0.0006793126813136041, 0.006474114954471588, -0.009742464870214462, -0.013080354779958725, 0.0340464748442173, 0.03056950494647026, 0.00475301593542099, -0.014436372555792332, -0.020222047343850136, -0.024324869737029076, -0.01525693666189909, 0.005229360423982143, 0.01000671461224556, -0.0018306238343939185, -0.013504545204341412, -0.04058317467570305, 0.016633816063404083, -0.01614704169332981, 0.021237323060631752, 0.023031437769532204, -0.009839820675551891, -0.0012152004055678844, 0.003963743802160025, -0.02237776853144169, -0.007204278372228146, -0.01721794717013836, 0.020708823576569557, -0.004899048246443272, 0.002392154186964035, -0.001385571900755167, 0.0038698657881468534, -0.014408556744456291, 0.0026303266640752554, 0.00609164871275425, 0.02522888220846653, -0.0037864185869693756, -0.0033743977546691895, 0.014464188367128372, -0.024533487856388092, 0.009450400248169899, 0.002722466131672263, 0.014366833493113518, -0.010416997596621513, -0.018163682892918587, 0.0048468937166035175, 0.03201592341065407, 0.029651585966348648, 0.004120207391679287, -0.02641105093061924, -0.03087547980248928, -0.019596192985773087, 0.005149390082806349, -0.024992449209094048, -0.00910270307213068, -0.02684219554066658, -0.0005458840169012547, 0.0033622283954173326, -0.025826921686530113, 0.02728724665939808, 0.007016522344201803, 0.007941395975649357, 0.01902597025036812, 0.03474186733365059, -0.01404695212841034, -0.00019862181216012686, 0.0005993423983454704, 0.003928974270820618, -0.03938709571957588, -0.0005545764579437673, -0.008928854949772358, -0.009638155810534954, 0.01814977452158928, -0.0005732651334255934, -0.06781478971242905, -0.022753281518816948, 0.00847684871405363, 0.01845574751496315, 0.007357264868915081, 0.00044331347453407943, 0.0324331596493721, 0.013518452644348145, -0.0009526893263682723, -0.0026824811939150095, -0.010208379477262497, 0.030792031437158585, -0.022294320166110992, 0.008219553157687187, 0.013873104006052017, -0.010556075721979141, 0.02379637211561203, 0.001156961196102202, 0.013024723157286644, -0.0017297917511314154, 0.0017193608218804002, -0.02802436426281929, 0.024436132982373238, 0.021139968186616898, -0.02037503384053707, -0.02610507793724537, -0.0232956875115633, -0.011223654262721539, -0.017788169905543327, 0.031098004430532455, 0.010813371278345585, 0.023323504254221916, -0.008268230594694614, 0.023100977763533592, 0.01410258375108242, 0.024561304599046707, 0.006147279869765043, -0.021084336563944817, -0.023754647001624107, -0.004923386964946985, -0.013706209138035774, -0.04294751212000847, -0.0033813517075031996, 0.009554709307849407, -0.003995036706328392, -0.03226626664400101, -0.034574974328279495, -0.03785723075270653, -0.01894252374768257, -0.008810637518763542, -0.025131527334451675, 0.01614704169332981, 0.06937247514724731, 0.017635183408856392, 0.0051389592699706554, 0.03337889537215233, -0.009387814439833164, 0.016564277932047844, -0.026953458786010742, -0.005545764695852995, 0.02354602888226509, 0.005396254826337099, 0.01538210827857256, -0.026007723063230515, -0.03604920953512192, 0.003045824356377125, 0.01066038478165865, 0.010173609480261803, 0.03056950494647026, 0.008838453330099583, -0.02422751486301422, 0.007913580164313316, -0.01062561571598053, -0.00022361252922564745, 0.001720230095088482, -0.0012760474346578121, -0.000499379588291049, -0.051486946642398834, 0.004252332262694836, 0.022210873663425446, 0.010569984093308449, -0.0025816489942371845, 0.009172242134809494, 0.028733666986227036, -0.017871616408228874, 0.0004315786936786026, -0.020736638456583023, -0.019985614344477654, -0.015145674347877502, -0.017370933666825294, 0.046007245779037476, 0.03262786939740181, -0.0007471135468222201, 0.025312328711152077, -0.012635302729904652, -0.012106804177165031, 0.016119224950671196, 0.01342109777033329, -0.002592079807072878, -0.014853608794510365, 0.029595954343676567, -0.018191497772932053, -0.0035847544204443693, 0.006004724185913801, -0.0026338035240769386, -0.010020622983574867, -0.011425318196415901, -0.0021487665362656116, -0.02112605981528759, -0.027203800156712532, -0.007225139997899532, 0.010813371278345585, -0.03805194050073624, -0.020333310589194298, 0.012482316233217716, -0.005643119569867849, 0.026438867673277855, 0.009311321191489697, -0.024450041353702545, -0.027009090408682823, 0.0007379865273833275, -0.0036786324344575405, -0.00022426445502787828, -0.017120592296123505, -0.004673045594245195, 0.015757620334625244, -0.009297413751482964, -0.005504040978848934, 0.19849316775798798, -0.0235599372535944, 0.010347457602620125, 0.01273961178958416, -0.011383594013750553, 0.011724337004125118, -0.017662998288869858, -0.019178956747055054, -0.024895092472434044, 0.03254442289471626, 0.008254323154687881, 0.008755005896091461, 0.02175191417336464, -0.00682181166484952, -0.01358103845268488, 0.002197443973273039, -0.03560415655374527, -0.015882791951298714, -0.03310073912143707, -0.02075054682791233, -0.028385968878865242, -0.027203800156712532, -0.007148646749556065, -0.01435292512178421, 0.0336848683655262, -0.0031970723066478968, 0.009714649990200996, -0.007197324652224779, 0.03510347381234169, 0.018733905628323555, -0.03232189640402794, 0.005444932263344526, 0.009081841446459293, 0.0038768197409808636, 0.0030666859820485115, -0.020611468702554703, 0.033712685108184814, -0.002346953609958291, 0.02764885313808918, 0.0009014040697365999, 0.0035847544204443693, -0.010681246407330036, 0.01134187076240778, -0.047203321009874344, 0.0029832387808710337, 0.008428171277046204, 0.0034126443788409233, -0.013024723157286644, -0.002564264228567481, 0.0025086326058954, -0.006811380852013826, 0.021418124437332153, 0.031403977423906326, 0.017885524779558182, 0.03838573023676872, -0.02130686119198799, 0.0011882539838552475, 2.1445832317112945e-05, -0.034324631094932556, 0.0018236698815599084, -0.035381630063056946, 0.007468528114259243, 0.007538067176938057, -0.009617294184863567, -0.02474210597574711, 0.006234204396605492, -0.008734144270420074, -0.01995779760181904, -0.01789943315088749, 0.0041445461101830006, 0.009116611443459988, -0.012037264183163643, -0.0011143683223053813, 0.02342085912823677, -0.030180085450410843, -0.009992807172238827, 0.010639523155987263, 0.02628588117659092, -0.00010262489377055317, 0.03716183826327324, 0.0004854717117268592, 0.01603577844798565, -0.014339017681777477, -0.015145674347877502, -0.01969354785978794, -0.05120879039168358, 0.01720403879880905, 0.002758974442258477, 0.004109776578843594, 0.0131707563996315, -0.024199699983000755, 0.005455363541841507, -0.010653430595993996, 0.023351319134235382, -0.0166616328060627, -0.0070060910657048225, -0.0016402598703280091, -0.002571218181401491, 0.018052419647574425, -0.005444932263344526, -0.04219648614525795, 0.05337841808795929, 0.019582286477088928, -0.0099441297352314, -0.013261157087981701, -0.02013860084116459, -0.010041484609246254, -0.0019418868469074368, 0.0033709208946675062, -0.005333669483661652, -0.0028963147196918726, -0.029985375702381134, -0.007412896491587162, 0.0007236440433189273, 0.01689806580543518, 0.0277740228921175, 0.000645846885163337, 0.01391482725739479, 0.004652183502912521, -0.0095408009365201, 0.005761336535215378, -0.004568736534565687, -0.0043114409781992435, 0.006157711148262024, -0.008122198283672333, -0.018567010760307312, -0.00863678939640522, -0.017537828534841537, -0.004596552345901728, -0.028246890753507614, 0.011905139312148094, 0.009436491876840591, 0.016077501699328423, -0.012586625292897224, 0.009749419055879116, -0.008588111959397793, 0.0054066856391727924, -0.0005684843054041266, -0.0037481719627976418, 0.01112629845738411, 0.0013812256511300802, 0.0006958282901905477, -0.0009153119171969593, 0.009151380509138107, 0.0012308467412367463, -0.015173490159213543, 0.02517325058579445, -0.005597919225692749, -0.004954679869115353, -0.024450041353702545, -0.00795530341565609, -0.027885286137461662, -0.005118097178637981, 0.009742464870214462, 0.021724097430706024, -0.003440460190176964, -0.017384842038154602, -0.062418535351753235, -0.0011760845081880689, 0.005493610166013241, -0.040916964411735535, 0.0012143312487751245, 0.03796849399805069, 0.00657147029414773, -0.011494857259094715, -0.004078483674675226, -0.17768698930740356, -0.0018149774987250566, 0.0035951852332800627, -0.02895619161427021, 0.010069300420582294, 0.006341990083456039, 0.007990073412656784, -0.0035552000626921654, 0.007280771620571613, 0.005118097178637981, 0.04008249193429947, 0.00616466486826539, -0.0040576220490038395, 0.00702347606420517, 0.017662998288869858, -0.008622881956398487, -0.00385248102247715, 0.015354292467236519, 0.028372062370181084, 0.0121832974255085, 0.035937946289777756, -0.025938183069229126, 0.022711556404829025, 0.0031223176047205925, -0.022419491782784462, 0.01994389109313488, -0.05187636613845825, 0.023212241008877754, 0.012176343239843845, 0.009109657257795334, -0.022266505286097527, 0.01164784375578165, 0.002287845127284527, 0.017064960673451424, -0.004276670981198549, -0.011376640759408474, -0.011272331699728966, 0.00021839707915205508, -0.008755005896091461, 0.04617413878440857, 0.0013838333543390036, 0.029846295714378357, -0.007099969312548637, -0.008073520846664906, -0.0027746206615120173, 0.034880947321653366, 0.04890008270740509, 0.025201067328453064, 0.02062537707388401, -0.028121719136834145, -0.009617294184863567, -0.023393042385578156, -0.0028702374547719955, 0.0006349813193082809, -0.00022220000391826034, 0.02440831810235977, 0.005584011320024729, -0.004248855169862509, 0.005396254826337099, -0.012725704349577427, 0.011626982130110264, -0.014505911618471146, -0.00879673007875681, -0.029595954343676567, -0.028566772118210793, 0.019554469734430313, -0.02088962495326996, -0.005862168502062559, -0.024644751101732254, 0.023685108870267868, -0.006408052518963814, -0.005208498798310757, -0.012830013409256935, -0.002061842242255807, 0.019373668357729912, -0.009179196320474148, -0.03871951997280121, 0.013650577515363693, 0.04230774939060211, -0.002616418758407235, 0.0074059427715837955, 0.04814905673265457, -0.013789656572043896, 0.011696521192789078, -0.0009022732847370207, -0.0018480087164789438, 0.015187397599220276, 0.004839939996600151, 0.01292736828327179, 0.005211975425481796, 0.021779729053378105, 0.008052658289670944, 0.021904900670051575, -0.024157976731657982, 0.008567250333726406, -0.011411409825086594, 0.017676906660199165, -0.0029745465144515038, 0.017134500667452812, -0.005201544612646103, -0.002113996772095561, -0.013038631528615952, -0.026202432811260223, 0.034269001334905624, 0.03707839176058769, 0.00938086025416851, -0.01969354785978794, 0.006129895336925983, 0.034714050590991974, -0.018497470766305923, -0.013553222641348839, 0.010403089225292206, 0.00972855743020773, -0.005215452518314123, -0.025576578453183174, 0.012621395289897919, -0.004606983158737421, -0.01627221144735813, -0.0012291083112359047, 0.00249994033947587, 0.03788504749536514, 0.022196965292096138, -0.007628468330949545, 0.01776035502552986, -0.03051387332379818, -0.004700861405581236, -0.06692468374967575, -0.023643385618925095, 0.006620147731155157, 0.013129032216966152, -0.033156368881464005, -0.01609141007065773, -0.0066514406353235245, 0.031098004430532455, 0.001310817082412541, 0.03390739485621452, 0.005107666365802288, -0.02050020545721054, -0.01062561571598053, 0.006647963542491198, 0.023754647001624107, 0.00023078377125784755, 0.010027577169239521, -0.03157087415456772, 5.92714459344279e-05, 0.046758271753787994, 0.0011421841336414218, -0.013365466147661209, -0.0011143683223053813, -0.013768794946372509, -0.04314222186803818, -0.006147279869765043, -0.03621610254049301, 0.01292736828327179, 0.015131765976548195, 0.007753639481961727, 0.03632736578583717, -0.014658898115158081, 0.026271972805261612, -0.018970338627696037, 0.008567250333726406, 0.00274158944375813, -0.04792653024196625, -0.024157976731657982, 0.007558929268270731, -0.04419922083616257, 0.024686474353075027, 0.015507278963923454, 0.02671702392399311, -0.04511713981628418, -0.008129151538014412, 0.007447666022926569, 0.0005428416770882905, 0.02915090322494507, 0.010111023671925068, -0.026953458786010742, -0.01566026546061039, 0.019860442727804184, -0.01759346015751362, -0.01664772443473339, 0.04350382834672928, -0.002906745532527566, 0.0017732538981363177, 0.017621275037527084, -0.02318442426621914, -0.012871736660599709, -0.0017889002338051796, -0.019846536219120026, -0.021849269047379494, 0.019985614344477654, 0.01844184100627899, 0.015757620334625244, -0.01963791809976101, -0.02069491520524025, 0.024589119479060173, 0.005448409356176853, -0.01342109777033329, 0.0014768423279747367, -0.019151141867041588, -0.012746565975248814, -0.01106371358036995, -0.00012093330587958917, -0.01087595708668232, -0.025562671944499016, -0.01047262828797102, -0.00888713076710701, 0.009248735383152962, -0.018163682892918587, -0.0068843974731862545, 0.020959164947271347, 0.014589359052479267, -0.007468528114259243, 0.017190132290124893, -0.004384457133710384, -0.0005198067519813776, -0.03513128682971001, -0.007183416746556759, 0.0038211881183087826, 0.01584106869995594, -0.016425197944045067, -0.032655686140060425, 0.015882791951298714, 0.00833081640303135, -0.0034595835022628307, -0.017537828534841537, 0.01044481247663498, -0.029595954343676567, -0.014269477687776089, -0.0804431363940239, 0.03424118459224701, -0.01066038478165865, -0.014658898115158081, -0.018469655886292458, -0.0012821321142837405, 0.00907488726079464, 0.004068052861839533, -0.013852241449058056, 0.020833995193243027, -0.01732921041548252, 0.01571589708328247, -0.024394409731030464, -0.0004915564204566181, 0.003308335319161415, -0.022224782034754753, 0.02386591024696827, 0.010027577169239521, 0.0166616328060627, -0.0245473962277174, -0.0026911734603345394, -0.0031640410888940096, 0.028928376734256744, 0.02542359195649624, 0.0012004233431071043, 0.026800472289323807, -0.01826103776693344, 0.01627221144735813, -0.027760114520788193, -0.02522888220846653, 0.014547635801136494, -0.02044457383453846, 0.005876076407730579, 0.033462341874837875, -0.016480829566717148, -0.024839462712407112, 0.011543534696102142, 0.011251469142735004, 0.016355659812688828, -0.002816344378516078, -0.015493370592594147, -0.018358392640948296, 0.006860058754682541, -0.019846536219120026, -0.0025225405115634203, -0.015882791951298714, -0.018219314515590668, -0.0030336547642946243, 0.004575690254569054, 0.004172361921519041, 0.01664772443473339, 0.01131405495107174, -0.03702275827527046, -0.007225139997899532, 0.0038663886953145266, -0.01344891358166933, 0.01995779760181904, -0.002557310275733471, 0.016703356057405472, -0.009839820675551891, 0.044950246810913086, 0.012287606485188007, 0.03735654801130295, -0.016911974176764488, 0.009394768625497818, 0.008622881956398487, -0.03248879313468933, -0.02075054682791233, 0.008073520846664906, -0.031209267675876617, -0.015270845033228397, -0.013455867767333984, 0.004808647092431784, 0.02236386016011238, 0.015326476655900478, 0.016439106315374374, -0.047564927488565445, 0.024505672976374626, 0.0058934614062309265, 0.026883918792009354, 0.01472843810915947, -0.0055701034143567085, -0.014088675379753113, 0.006797472946345806, 0.0076215146109461784, 0.010458720847964287, -0.02635541930794716, 0.0061611877754330635, 0.005024219397455454, -0.0002579475985839963, -0.02211351878941059, 0.007190370466560125, 0.009652064181864262, -0.01776035502552986, 0.029095271602272987, 0.01134187076240778, -0.030346980318427086, 0.009158334694802761, 0.02211351878941059, 0.00972855743020773, 0.014672806486487389, 0.0027207278180867434, -0.012238928116858006, -0.012176343239843845, -0.02734287828207016, -0.031237084418535233, -0.011967725120484829, -0.039164572954177856, 0.004227993544191122, -0.005650073755532503, -0.005820444785058498, -0.010889864526689053, -0.010479582473635674, 0.028135627508163452, -0.00272594322450459, -0.019039878621697426, -0.0005876076756976545, -0.022600295022130013, -0.037690337747335434, 0.03844136372208595, 0.016119224950671196, -0.0006206388352438807, 0.02169628255069256, -0.004276670981198549, 0.02833033725619316, 0.002673788694664836, 0.029735032469034195, -0.0020705347415059805, 0.02666139416396618, -0.0030927632469683886, -0.02248903177678585, 0.006453253328800201, -0.03571541979908943, -0.009958037175238132, -0.02485336922109127, 0.008699375204741955, -0.006609716918319464, 0.006547131575644016, -0.0031709950417280197, 0.08544997125864029, 0.011661752127110958, -0.03248879313468933, -0.015729805454611778, -0.004217562731355429, 0.014561543241143227, 0.024060621857643127, 0.022322136908769608, -0.014234708622097969, -0.022349951788783073, -0.008282138966023922, -0.008720236830413342, -0.01202335674315691, -0.017913341522216797, -0.023434767499566078, 0.0065401773899793625, -0.007211232557892799, 0.008296046406030655, 0.0038142341654747725, 0.002294799080118537, 0.020305495709180832, -0.007120830938220024, 0.010389181785285473, 0.0053371465764939785, -0.008991439826786518, -0.014644990675151348, 0.04077788442373276, -0.00838644802570343, -0.005736997816711664, -0.025938183069229126, 0.0049720648676157, 0.00931827537715435, -0.008518572896718979, -0.014992687851190567, 0.0037725106813013554, -0.004412272945046425, -0.021014796569943428, -0.026021631434559822, -0.008275184780359268, -0.008775868453085423, 0.0028598064091056585, 0.01000671461224556, -0.018872983753681183, -0.01759346015751362, -0.005535333417356014, -0.017871616408228874, 0.02280891314148903, -0.0048156012780964375, -0.019916074350476265], "6f1adeda-e4d0-4b96-b2f1-57def8904cb6": [-0.018802961334586143, 0.00467278016731143, -0.008933153934776783, -0.008821314200758934, -0.01778242737054825, 0.026366084814071655, -0.02186455763876438, -0.0018278714269399643, -0.02944166213274002, -0.025960667058825493, 0.010974218137562275, -0.0034512868151068687, -0.0034827417694032192, -0.004337262827903032, -0.004560941364616156, 0.007940581068396568, 0.009184791706502438, -0.021151583641767502, 0.004711225163191557, -0.027764074504375458, -0.019949311390519142, 0.0030965469777584076, -0.00884927436709404, 0.019054599106311798, -0.012295318767428398, -0.0001605503639439121, 0.010114454664289951, -0.026100466027855873, 0.005665353033691645, 0.009799906983971596, 0.01607688143849373, -0.01202970091253519, -0.032657038420438766, 0.012973343953490257, -0.024758396670222282, 0.0011148967314511538, 0.013903006911277771, -0.010666660964488983, 0.04543466120958328, -0.014357353560626507, 0.03631976991891861, 0.009527299553155899, 0.004473567008972168, -0.014098725281655788, -0.028043672442436218, 0.027806013822555542, 0.01600698195397854, -0.014014845713973045, -0.01874704100191593, 0.005141106899827719, 0.020270848646759987, -0.001993882702663541, -0.020131049677729607, -0.00046832652878947556, 0.029889017343521118, -0.008541716262698174, -0.0039038860704749823, 0.013574479147791862, -0.01592310145497322, -0.006787239573895931, 0.010533851571381092, -0.004927913658320904, -0.0023451275192201138, -0.002465704223141074, -0.010897329077124596, -0.014567052014172077, 0.01397989597171545, 0.011155957356095314, -0.004847528878599405, -0.03693488612771034, 0.01140060555189848, 0.01797814667224884, -0.01627259887754917, -0.012966353446245193, 0.022982949391007423, -0.0041205743327736855, -0.03752204030752182, -0.008129309862852097, 0.043840955942869186, 0.007311485707759857, 0.0073953652754426, -0.0006701612728647888, -0.025163812562823296, 0.02116556279361248, 0.027134979143738747, -0.014357353560626507, 0.012190469540655613, 0.014483172446489334, -0.0376618392765522, -0.007234596181660891, 0.008157269097864628, 0.011037128046154976, 0.013441670686006546, 0.0041939690709114075, 0.006011355202645063, 0.004885973874479532, -0.0016627339646220207, 0.039898622781038284, -0.0038374816067516804, -0.025079933926463127, -0.018649181351065636, -0.025219732895493507, -0.025387492030858994, -0.003914371132850647, -0.006168629042804241, -0.01188990194350481, 0.014874609187245369, 0.010044555179774761, 0.004407162312418222, -0.014042805880308151, -0.009282651357352734, 0.007101787254214287, -0.009506329894065857, -0.002477936679497361, 0.0009139357134699821, -0.020005231723189354, 0.005039752461016178, -0.037410203367471695, -0.020858004689216614, -0.035648737102746964, -0.004064654931426048, 0.03534117713570595, 0.025331571698188782, -0.008905193768441677, 0.0038619462866336107, -0.0024342495016753674, 0.013658358715474606, -0.022605491802096367, 0.024017462506890297, -0.002961990423500538, 0.04479158669710159, 0.02031278982758522, 0.020718205720186234, -0.01493052951991558, -0.004669285379350185, 0.01719527319073677, -0.01792222633957863, -0.0012442107545211911, -0.02590474858880043, -0.006968978326767683, 0.01841152273118496, 0.051865413784980774, 0.0002691129921004176, 0.002348622540012002, -0.0021406717132776976, 0.023136727511882782, -0.0031087794341146946, -0.005427694879472256, 0.004480556584894657, 0.01600698195397854, -0.002738312119618058, -0.0057492321357131, -0.006930533796548843, -0.01846744306385517, -0.0009113145060837269, 0.01720925234258175, 0.009646128863096237, 0.0038374816067516804, -0.010079504922032356, -0.041017014533281326, 0.015042368322610855, 0.043785035610198975, -0.005875051487237215, -0.0005334204179234803, 0.018369583413004875, 0.04277848079800606, 0.023556124418973923, -0.010268233716487885, -0.010575791820883751, -0.022885089740157127, -0.02180863730609417, 0.0014923539711162448, -0.01747487112879753, 0.022619472816586494, 0.011833982542157173, 0.028658786788582802, 0.00817124918103218, -0.0036312779411673546, -0.0029724754858762026, -0.020438607782125473, -0.022423753514885902, 0.017153332009911537, 0.023626023903489113, 0.038109198212623596, -0.012505017220973969, 0.0074722543358802795, 0.006123194471001625, -0.02257753163576126, 0.013944946229457855, 0.010408032685518265, 0.01121886633336544, 0.018802961334586143, -0.018565302714705467, 0.0034809941425919533, -0.6079577207565308, -0.012218429706990719, -0.0016373953549191356, 0.007423324976116419, -0.009366530925035477, 0.021123623475432396, 0.003161204047501087, -0.016048921272158623, -0.04624549672007561, 0.03919962793588638, -0.01515420712530613, 0.024758396670222282, -0.004064654931426048, -0.00877937488257885, 0.0019764078315347433, 0.004844034090638161, -0.020648306235671043, -0.00326430588029325, -0.002392309717833996, 0.016370458528399467, -0.010463952086865902, 0.003938835579901934, 0.022200075909495354, -0.009324590675532818, -0.014427253045141697, -0.007912620902061462, 0.02860286831855774, -0.0005452159675769508, 0.007458274718374014, 0.0009750977624207735, -0.016440358012914658, -0.004875489044934511, 0.020131049677729607, -0.009017033502459526, 0.05354300141334534, -0.021640880033373833, -0.03100740909576416, 0.014622971415519714, 0.024325018748641014, 0.035145457834005356, -0.03785755857825279, -0.0004148097359575331, 0.027638254687190056, -0.006790734827518463, -0.014077755622565746, -0.00012778499512933195, 0.029749218374490738, 0.003056354820728302, -0.0001113476901082322, -0.022773250937461853, 0.015182167291641235, -0.0031175168696790934, -0.00856967642903328, 0.0035072064492851496, -0.00863957591354847, -0.0023626023903489113, 0.014210564084351063, 0.0009759715176187456, 0.013972906395792961, -0.01747487112879753, 2.5202039978466928e-05, -0.0021948437206447124, 0.0037536020390689373, -0.01713935285806656, -0.027987752109766006, 0.0069410186260938644, 0.008485796861350536, -0.007150717079639435, 0.013958926312625408, -0.005368280224502087, 0.006011355202645063, 0.015657484531402588, 0.004375707358121872, -0.0002946699969470501, 0.011945821344852448, 0.018928779289126396, 0.02138924039900303, 0.014042805880308151, -0.01706945337355137, -0.00026780238840729, -0.0017754468135535717, -0.0012013973901048303, -0.009981646202504635, -0.00863957591354847, 0.018816940486431122, 0.01175010297447443, -0.022130176424980164, 0.009240711107850075, -0.01557360403239727, -0.015755342319607735, 0.009576229378581047, -0.0033446901943534613, -0.00899606291204691, -0.008436867035925388, 0.008646565489470959, -0.0026072505861520767, 0.003592833410948515, 0.0014539092080667615, 0.009003053419291973, -0.021151583641767502, -0.02144516073167324, -0.008087369613349438, 0.0028431613463908434, -0.00746526475995779, 0.041100893169641495, 0.015559624880552292, 0.0037221473176032305, -0.032321520149707794, 0.03455830365419388, -0.021612919867038727, -0.0006981210899539292, -0.0005434684571810067, -0.014000866562128067, -0.028435109183192253, -0.009387500584125519, -0.04026209935545921, 0.022479673847556114, -0.000570554519072175, 0.019935332238674164, 0.019795533269643784, 0.025499330833554268, 0.004396677482873201, 0.016678016632795334, -0.0018750536255538464, 0.014357353560626507, 0.019222358241677284, 0.03078373149037361, -0.023947563022375107, 0.006542591378092766, 0.004061159677803516, -0.003634772961959243, -0.005553513765335083, 0.029609419405460358, -0.01245608739554882, 0.0024587141815572977, -0.020788105204701424, 0.024087361991405487, -0.008576666004955769, 0.03179028257727623, -0.02442287839949131, -0.015056348405778408, 0.012546956539154053, -0.000814765808172524, -0.032181721180677414, -0.0058086467906832695, -0.03044821321964264, -0.01785232685506344, 0.002678897697478533, -0.011316725984215736, 0.02802969142794609, -0.02165485918521881, 0.0034635192714631557, -0.0008304932271130383, 0.010547831654548645, -0.011847961694002151, -0.00955525878816843, 0.0005814763135276735, -0.04330971837043762, 0.0102262943983078, -0.03271295875310898, -0.004641325678676367, 0.03598425164818764, -0.004061159677803516, -0.004616860765963793, 0.004955873358994722, 0.015070328488945961, -0.018858879804611206, 0.01585320197045803, -0.035648737102746964, -0.03349583223462105, -0.0061196996830403805, 0.0047881146892905235, -0.02130536176264286, -0.012658796273171902, 0.0010563558898866177, 0.0063433777540922165, -0.01641239784657955, -0.019739612936973572, 0.022899070754647255, 0.005158581770956516, -0.004326777998358011, 0.03788552060723305, 0.01578330248594284, -0.0018768010195344687, 0.009583218954503536, 0.009918736293911934, 0.017502829432487488, 0.02930186316370964, -0.03391522914171219, 0.03349583223462105, -0.022423753514885902, 0.02031278982758522, -0.021263422444462776, -0.0020131049677729607, -0.046189576387405396, 0.03609609231352806, -0.024101341143250465, 0.004623850807547569, 0.0044525968842208385, 0.0031839213334023952, -0.013176051899790764, 0.015839222818613052, 0.02243773266673088, 0.003914371132850647, -0.004609870724380016, -0.02569505013525486, 0.010785490274429321, -0.03489382192492485, 0.025387492030858994, 0.007269545923918486, 0.03058801218867302, 0.015168187208473682, -0.027973772957921028, 0.004263868555426598, 0.007577103562653065, 0.027624275535345078, -0.006210568826645613, 0.011141977272927761, -0.005518564023077488, -0.008024460636079311, 0.015447785146534443, -0.025932706892490387, 0.013847087509930134, 0.002942768158391118, -0.0321258008480072, -0.017097413539886475, 0.021710779517889023, 0.011582343839108944, 0.018998678773641586, 0.009506329894065857, 0.001632152940146625, 0.026715582236647606, -0.0007667099125683308, 0.00047837456804700196, 0.024534717202186584, 0.007098292466253042, 0.02597464807331562, -0.00631891330704093, 0.03201396390795708, 0.005930970888584852, 0.0022280460689216852, 0.012491037137806416, 0.039535146206617355, -0.030420254915952682, -0.01142856478691101, -0.005127126816660166, 0.018802961334586143, 0.01925031654536724, -0.005724767688661814, 0.004305807873606682, 0.004186979029327631, 0.020159009844064713, -0.02604454755783081, -0.012812575325369835, 0.032657038420438766, -0.02351418510079384, -0.021570980548858643, 0.006476187147200108, 0.015168187208473682, 0.020145030692219734, 0.017656609416007996, 0.019627774134278297, 0.011861941777169704, -0.005459149368107319, 0.02612842619419098, -0.01627259887754917, -0.03900391235947609, -0.004141544457525015, 0.01508430764079094, -0.036990806460380554, -0.0041205743327736855, 0.0018121440662071109, -0.004365222528576851, -0.032321520149707794, 0.008443857543170452, 0.004253383260220289, 0.04948883131146431, 0.0136933084577322, 0.024646557867527008, -0.009611179120838642, -0.0203267689794302, -0.03321623429656029, 0.02236783318221569, 0.018942760303616524, 0.010736560449004173, -0.032461319118738174, 0.0007562250248156488, 0.012854514643549919, -0.03461422398686409, 0.017810387536883354, -0.0016705975867807865, 0.016873734071850777, -0.00039689798722974956, -0.01642637886106968, 0.002348622540012002, 0.018635202199220657, 0.033439911901950836, 0.0022979455534368753, 0.02087198570370674, -0.006615986116230488, 0.010149404406547546, 0.0034373069647699594, -0.016524236649274826, 0.02860286831855774, 0.020214930176734924, -0.007098292466253042, -0.00725556630641222, -0.020075131207704544, 0.006934028584510088, -0.0055954535491764545, 0.02788989245891571, 0.004225423559546471, 0.008891213685274124, 0.017936207354068756, 0.009785927832126617, -0.0007129746954888105, -0.004190473817288876, -0.010149404406547546, 0.010925289243459702, 0.0008999558049254119, 0.010247264057397842, -0.03659936785697937, -0.0029794652946293354, 0.02802969142794609, -0.005046742502599955, 0.031035369262099266, 0.02384970337152481, 0.002107469365000725, -0.024954114109277725, -0.016803834587335587, -0.02811357192695141, -0.03206988051533699, 0.022465692833065987, 0.004312797915190458, -0.03179028257727623, -0.006804714445024729, 0.012092609889805317, 0.010058535262942314, 0.033887267112731934, 0.008318038657307625, 0.023821743205189705, -0.010890339501202106, -0.004134554415941238, -0.01472083106637001, -0.005675837863236666, -0.019767573103308678, 0.013882037252187729, 0.008255128748714924, 0.013609428890049458, -0.0029934453777968884, 0.02194843627512455, 0.0002348185662413016, 0.012665785849094391, 0.0007632149499841034, -0.011114017106592655, 0.01775446906685829, 0.018565302714705467, 0.0254154521971941, 0.011861941777169704, 0.05426995828747749, 0.014098725281655788, -0.009792917408049107, 0.009960676543414593, 0.005455654580146074, -0.012728695757687092, 0.013532539829611778, 0.0035316713619977236, -0.013015283271670341, 0.025932706892490387, -0.020368708297610283, 0.00649715680629015, 0.015517684631049633, -0.005343815311789513, 0.005777192302048206, 0.053487084805965424, -0.015098287723958492, -0.029413701966404915, -0.015587584115564823, 0.021724758669734, 0.016664035618305206, -0.010317163541913033, -0.0030196576844900846, -0.01252598688006401, -0.000530799210537225, -0.01599300093948841, -0.004117079544812441, 0.008877234533429146, -0.010275223292410374, -0.011491474695503712, -0.022954989224672318, -0.016020961105823517, -0.006399297621101141, -0.024366959929466248, 0.01133070606738329, 0.010988198220729828, -0.010960238985717297, -0.023821743205189705, 0.028826545923948288, 0.0005557008553296328, 0.00438619265332818, 0.00973699800670147, -0.005333330482244492, -0.011093047447502613, 0.020214930176734924, -0.0010851894039660692, -0.017964167520403862, 0.0007431188714690506, -0.022745290771126747, -0.00782175175845623, -0.007842721417546272, 0.014622971415519714, 0.0034722567070275545, -0.0022979455534368753, 0.0038724313490092754, -0.012477057054638863, 0.008129309862852097, -0.022172115743160248, 0.00449453666806221, 0.02344428561627865, -0.004830054007470608, 0.006490166764706373, 0.03321623429656029, -0.0007605937425978482, -0.0033272153232246637, 0.009450409561395645, -0.033579710870981216, -0.011030138470232487, 0.023751843720674515, -0.021361282095313072, 0.02583484910428524, -0.011568363755941391, -0.01599300093948841, -0.018285704776644707, -0.009072952903807163, 0.002269985619932413, -0.009799906983971596, -0.013728258199989796, -0.0030283951200544834, 0.014748790301382542, 0.005665353033691645, 0.01306421309709549, 0.0018453462980687618, 0.025709029287099838, -0.01437133364379406, -0.016468318179249763, 0.003126254305243492, 0.010275223292410374, -0.016957614570856094, 0.028127551078796387, 0.029217982664704323, -0.010680641047656536, -0.028658786788582802, -0.009855827316641808, 0.02986105903983116, -0.0237937830388546, 0.01897071860730648, 0.005155086517333984, -0.024394918233156204, -0.03794143721461296, -0.0028204440604895353, -0.0031314967200160027, 0.002974222879856825, -0.007304495666176081, -0.01869112066924572, -0.01775446906685829, -0.0037466122303158045, -0.007416334934532642, -0.01635647937655449, 0.004651810508221388, -0.02358408458530903, -0.009471380151808262, 0.01209960039705038, 0.011568363755941391, 0.037186525762081146, 0.008059410378336906, -0.008646565489470959, -0.015909122303128242, -0.02165485918521881, -0.03590037301182747, -0.027512436732649803, -0.02639404498040676, 0.00955525878816843, 0.037633880972862244, 0.02986105903983116, 0.030392294749617577, -0.005923980847001076, 0.018215805292129517, 0.0077728223986923695, -0.0025460885372012854, -0.007563123945146799, -0.022885089740157127, -0.021976396441459656, -0.00021887275215703994, -0.020508507266640663, 0.0033149828668683767, -0.004557446110993624, 0.01706945337355137, -0.0010231536580249667, -0.00899606291204691, 0.040821295231580734, 0.0005465265712700784, -0.001049365964718163, -0.012463077902793884, -0.030671892687678337, -0.024940134957432747, 0.02259151265025139, -0.02011707052588463, -0.006175619084388018, -0.047391846776008606, -0.03631976991891861, 0.006476187147200108, 0.0061301845125854015, -0.0010869369143620133, -0.005228481255471706, 0.033104393631219864, -0.006521621719002724, 0.02597464807331562, 0.0034582768566906452, 0.012190469540655613, -0.012302308343350887, -0.0035823483485728502, -0.016733935102820396, 0.003977280575782061, 0.005032762419432402, -0.005371775012463331, 0.012742675840854645, -0.015056348405778408, 0.023234587162733078, -0.01501440815627575, 0.015112267807126045, -0.02336040697991848, -0.015559624880552292, 0.002018347615376115, -0.011442544870078564, -0.005794667173177004, -0.028854506090283394, -0.004941893275827169, -0.004159019328653812, 0.003634772961959243, -0.013141102157533169, 0.007332455366849899, 0.002290955511853099, -0.03841675445437431, -0.023821743205189705, -0.011505454778671265, -0.011127997189760208, 0.04481954872608185, 0.01100217830389738, 0.03405502811074257, 0.03377543017268181, -0.010359102860093117, -0.010862379334867, 5.1168604841222987e-05, -0.006619480904191732, -0.0023678450379520655, 0.011813011951744556, 0.04023414105176926, -0.021543020382523537, -0.004200958646833897, 0.015629524365067482, 0.01529400609433651, 0.002540846122428775, -0.014525111764669418, 0.04814676195383072, 0.01072258036583662, 0.004207948688417673, -0.033244192600250244, -0.002778504276648164, -0.02569505013525486, -0.005756222177296877, 0.001997377723455429, 0.008017470128834248, 0.022353854030370712, -0.016552196815609932, -0.01989339292049408, 0.021039742976427078, -0.022619472816586494, 0.02485625632107258, 0.0013840097235515714, -0.02569505013525486, 0.016524236649274826, 0.016831794753670692, 0.0015535160200670362, -0.005703797563910484, -0.028281329199671745, 0.022619472816586494, 0.0014705103822052479, -0.0027662720531225204, 0.006301438435912132, 0.002484926488250494, -0.013951936736702919, -0.00709479721263051, 0.013476620428264141, 0.03220967948436737, -0.01188990194350481, 0.010638700798153877, 0.018984699621796608, -0.020368708297610283, 0.03615201264619827, -0.03050413355231285, 0.006147659383714199, -0.018635202199220657, -0.012281338684260845, 0.009331581182777882, 0.013972906395792961, 0.01627259887754917, 0.006948008667677641, -0.015000429004430771, -0.0012022710870951414, -0.027764074504375458, 0.019879411906003952, -0.026449963450431824, 0.000501528789754957, -0.026030566543340683, -0.0182577446103096, -0.003833986585959792, -0.012001740746200085, 0.021361282095313072, 0.013525549322366714, -0.0018768010195344687, 0.02775009348988533, 0.01754477061331272, -0.002748797181993723, 0.013819127343595028, -0.03559281677007675, -0.007870681583881378, -0.03637569025158882, -0.0030179100576788187, -0.014203574508428574, 0.0015124500496312976, 0.0026404529344290495, 0.000900829560123384, -0.04479158669710159, -0.018089985474944115, 0.01790824718773365, 0.01501440815627575, 0.0020148525945842266, 0.004823064431548119, 0.03162252530455589, 0.003409347264096141, -0.0069165537133812904, -0.020354729145765305, -0.004983833059668541, 0.03838879615068436, -0.008884224109351635, -0.010904318653047085, 0.028546947985887527, -0.008115329779684544, 0.007290516048669815, -0.016664035618305206, -0.0071646966971457005, 0.015517684631049633, -0.035788536071777344, -0.010463952086865902, 0.02930186316370964, 0.017964167520403862, -0.03165048360824585, -0.019236337393522263, -0.008010480552911758, -0.026785481721162796, -0.009044992737472057, 0.013805147260427475, 0.011673212982714176, 0.012379198335111141, -0.002642200328409672, 0.009317601099610329, 0.00849977694451809, 0.026072505861520767, 7.459585322067142e-05, -0.012861504219472408, -0.039479225873947144, -0.001219745958223939, -0.03464218229055405, -0.015098287723958492, -0.006133679300546646, 0.03290867432951927, -0.004253383260220289, -0.027204878628253937, -0.03044821321964264, -0.019837472587823868, -0.011393615044653416, -0.010715590789914131, -0.00898907333612442, 0.028910424560308456, 0.053375244140625, 0.0035421561915427446, -0.00292005087248981, 0.03179028257727623, -0.018145905807614326, 0.009604188613593578, -0.013071202673017979, -0.008730445057153702, 0.0251917727291584, 0.0024447343312203884, 0.005801656749099493, -0.021039742976427078, -0.048174723982810974, -0.0012704230612143874, 0.001424201880581677, 0.021067703142762184, 0.019418075680732727, -0.009142852388322353, -0.007863692007958889, -0.001721274689771235, -0.006000870373100042, -0.018579281866550446, 0.0016723450971767306, -0.017293130978941917, 0.00362778315320611, -0.0508309043943882, -7.268453919095919e-05, 0.01848142221570015, -0.005085187032818794, 0.0017640881706029177, 0.007556133903563023, 0.036627329885959625, -0.002041064901277423, 0.001757098245434463, -0.015615544281899929, -0.02060636691749096, -0.015098287723958492, -0.03665528818964958, 0.04255480319261551, -0.014210564084351063, 0.01161030400544405, 0.040597617626190186, 0.0075351642444729805, -0.017796408385038376, -0.014972468838095665, 0.002179116243496537, -0.019418075680732727, -0.012141539715230465, 0.011127997189760208, -0.0337195098400116, 0.004826559219509363, 0.004263868555426598, -0.01044298242777586, -0.017293130978941917, -0.03086761012673378, 0.0058226268738508224, 0.0026055031921714544, -0.030811691656708717, 0.010380072519183159, 0.007234596181660891, -0.0307278111577034, -0.023877663537859917, 0.009520309045910835, -0.01966971345245838, 0.027806013822555542, 0.01719527319073677, -0.01634249836206436, -0.019529914483428, 0.0023783298674970865, -0.006217558868229389, -0.018844900652766228, -0.033579710870981216, -0.005144601687788963, 0.00920576136559248, -0.01168020348995924, 0.019809512421488762, 0.18509382009506226, -0.00983485672622919, 0.005438179709017277, 0.02745651639997959, -0.0063783274963498116, 0.011176927015185356, -0.012484047561883926, 0.0008955870871432126, -0.013539529405534267, 0.026589762419462204, 0.030056776478886604, 0.013595448806881905, 0.0046553052961826324, 0.0012966353679075837, -0.005071207415312529, -0.020494528114795685, -0.035928335040807724, -0.02717691846191883, -0.03008473664522171, -0.024255119264125824, -0.0003326778532937169, -0.01846744306385517, -0.004270858131349087, -0.004767144564539194, 0.04115681350231171, -0.001401484594680369, 0.0075351642444729805, 0.0019082558574154973, 0.01876102015376091, 0.024884214624762535, -0.027498455718159676, -0.010463952086865902, 0.0229969285428524, 0.010526861995458603, -0.002975970506668091, -0.0017597194528207183, 0.011547394096851349, 0.024464817717671394, 0.019432056695222855, 0.006476187147200108, -3.481321982690133e-05, -0.022409774363040924, 0.004232413601130247, -0.03928351029753685, -0.018425503745675087, 0.011016158387064934, 0.0020218424033373594, -0.019236337393522263, -0.011659233830869198, 0.004061159677803516, 0.000530799210537225, 0.034082986414432526, 0.01726517267525196, 0.020634327083826065, 0.012903444468975067, -0.008814324624836445, 0.017111392691731453, 0.007028392981737852, -0.013176051899790764, 0.016398418694734573, -0.026659661903977394, 0.02463257685303688, 0.014294443652033806, 0.00553953368216753, -0.02910614386200905, 0.000633027171716094, -0.00732546579092741, -0.036627329885959625, 0.00973699800670147, -0.013567489571869373, 0.013958926312625408, -0.032097842544317245, -0.006067275069653988, 0.021543020382523537, -0.010037565603852272, -0.015252066776156425, 0.012449097819626331, 0.01142856478691101, 0.016957614570856094, 0.031958043575286865, 0.014553071931004524, -0.012658796273171902, -0.01557360403239727, -0.01292441412806511, -0.012127559632062912, -0.03234947845339775, 0.02152903936803341, -0.00041961533133871853, -0.006486671976745129, 0.0009532541735097766, -0.031175168231129646, -0.004858014173805714, -0.019166437909007072, -0.003068587277084589, -0.011365655809640884, 0.005693312734365463, -0.006483176723122597, 0.016803834587335587, -0.008332017809152603, -0.009764957241714, -0.040821295231580734, 0.044344231486320496, 0.011316725984215736, 0.0014617729466408491, -0.016314538195729256, -0.028407149016857147, 0.007129746954888105, 0.015335946343839169, -0.02386368252336979, -0.01876102015376091, -0.004553951323032379, -0.044707708060741425, 0.0019012659322470427, -0.010771510191261768, 0.008590646088123322, 0.029217982664704323, 0.0014460454694926739, -0.0013971158768981695, -0.011386625468730927, -0.015126247890293598, 0.02067626640200615, -0.009408470243215561, -0.006923543754965067, 9.80777112999931e-05, -0.03134292736649513, -0.03058801218867302, -0.014140664599835873, -0.0030895571690052748, -0.0002726079837884754, -0.03942330926656723, 0.002816949039697647, 0.0052249860018491745, 0.01335080061107874, -0.01370029803365469, -0.0013866309309378266, 0.0034635192714631557, 0.0006692875176668167, -0.0007326339255087078, -0.010827429592609406, 0.01712537370622158, 0.003024900099262595, 0.004026209935545921, 0.002463956829160452, -0.002041064901277423, -0.016719955950975418, -0.01458103209733963, 0.012812575325369835, 0.0074373045936226845, -0.03086761012673378, -0.03307643532752991, -0.001687198760919273, -0.012581906281411648, 0.0032555684447288513, 0.003987765405327082, 0.029469620436429977, -0.02419920079410076, -0.024884214624762535, -0.051501937210559845, -0.002360854996368289, -0.025736989453434944, -0.05480119213461876, -0.009723017923533916, 0.0358164943754673, 0.013847087509930134, -0.031958043575286865, 0.012868494726717472, -0.17939002811908722, 0.009212751872837543, 0.010212314315140247, -0.022381814196705818, 0.010359102860093117, 0.004574920982122421, 0.025373511016368866, 0.013644378632307053, -0.0078077721409499645, 0.0009558753808960319, 0.02336040697991848, -0.00047356897266581655, -0.04451198875904083, 0.0020253374241292477, 0.001550020999275148, -0.01677587628364563, -0.0016522490186616778, 0.021067703142762184, 0.01968369446694851, 0.009352550841867924, 0.034222785383462906, -0.0376618392765522, 0.01904061809182167, 0.011463514529168606, -0.016524236649274826, 0.020858004689216614, -0.03206988051533699, 0.0036767127458006144, 0.029357781633734703, 0.005801656749099493, -0.02492615580558777, 0.009296631440520287, -0.007283526007086039, 0.0020777620375156403, 0.008611615747213364, 0.0011690688552334905, -0.024031441658735275, -0.010079504922032356, -0.012735685333609581, 0.014832669869065285, 0.005724767688661814, 0.03220967948436737, 0.0030615972355008125, 0.005413714796304703, -0.014399292878806591, 0.012742675840854645, 0.04481954872608185, 0.028686746954917908, 0.0034652668982744217, -0.027232838794589043, -0.00877238530665636, -0.032880716025829315, -0.0024954115506261587, -0.011806022375822067, 0.024520738050341606, 0.025611169636249542, 0.002442986937239766, 0.010072515346109867, 0.01249802764505148, -0.020354729145765305, -0.00011183916649315506, -0.019432056695222855, -0.01100916787981987, -0.007087807171046734, -0.0197535939514637, 0.0004569678567349911, -0.01733507215976715, 0.01989339292049408, -0.02625424601137638, 0.014168624766170979, -0.005955435801297426, 0.004781124647706747, -0.004134554415941238, 0.004040190018713474, 0.013364780694246292, -0.01093926839530468, -0.030420254915952682, 0.03254519775509834, 0.027638254687190056, 0.012602876871824265, 0.0035281763412058353, 0.05393444001674652, 0.0043931822292506695, 0.005763212218880653, -0.004183483775705099, -0.004774134606122971, -9.87057137535885e-06, 0.00962515827268362, 0.009967666119337082, 0.0051900362595915794, 0.01747487112879753, -0.012672776356339455, 0.015070328488945961, -0.023542145267128944, 0.010142414830625057, 0.004767144564539194, -0.011840972118079662, 0.018089985474944115, 0.008597636595368385, -0.024408899247646332, -0.014944508671760559, -0.011743112467229366, -0.019082559272646904, 0.002338137710466981, 0.044064633548259735, 0.032964594662189484, -0.024674516171216965, 0.006720835343003273, 0.06413976103067398, -0.006350367795675993, -0.009093922562897205, 0.0001313891843892634, 0.00570030277594924, 0.029749218374490738, -0.0251917727291584, 0.013287891633808613, 0.009031012654304504, -0.014217554591596127, 0.004141544457525015, 0.0055115739814937115, 0.04358931630849838, -0.011058097705245018, -0.027414577081799507, 0.010429002344608307, -0.012945383787155151, -0.0034582768566906452, -0.08248138427734375, -0.009436430409550667, 0.004962863400578499, 0.01785232685506344, -0.014664910733699799, -0.02916206419467926, -0.00020401911751832813, 0.01649627834558487, 0.004344252869486809, 0.025289632380008698, 0.0031210118904709816, -0.003648752812296152, -0.014608991332352161, 0.0023346426896750927, 0.03637569025158882, 0.003407599637284875, -0.005476624239236116, -0.011840972118079662, 0.005204016342759132, 0.03894799202680588, -0.019865432754158974, -0.024366959929466248, 0.0034932265989482403, -0.0018995184218510985, -0.029050223529338837, -0.01377019751816988, -0.025862807407975197, 0.0037466122303158045, 0.016733935102820396, 0.009261681698262691, 0.01100217830389738, -0.021836597472429276, 0.02165485918521881, -0.00704586785286665, 0.0026981199625879526, 0.0033010030165314674, -0.05334728583693504, -0.005682827904820442, 0.015349926427006721, -0.037410203367471695, 0.025149833410978317, 0.009827867150306702, 0.01961379498243332, -0.021403221413493156, -0.012183479964733124, -0.008723455481231213, -0.009436430409550667, 0.0427505224943161, -0.004242898430675268, -0.02639404498040676, 0.011694183573126793, 0.0077238925732672215, 0.002621230436488986, -0.009226731956005096, 0.04960067197680473, -0.019641755148768425, 0.019026638939976692, 0.027652235701680183, -0.021696798503398895, -0.012553947046399117, -0.016873734071850777, -0.013679328374564648, -0.017670588567852974, 0.02768019400537014, 0.026855381205677986, 0.015615544281899929, -0.032964594662189484, -0.019865432754158974, 0.021962417289614677, 0.019557874649763107, -0.015140227973461151, 0.007108777295798063, 0.00047051088768057525, 0.00899606291204691, -0.0222979336977005, -0.009156832471489906, -0.026226285845041275, -0.031119249761104584, -0.004854518920183182, 0.012826554477214813, 0.01578330248594284, -0.007234596181660891, -0.01607688143849373, 0.026352103799581528, 0.040737416595220566, 0.016608117148280144, 0.009646128863096237, 0.003031889908015728, -0.005476624239236116, -0.032237641513347626, 0.007430315017700195, 0.005665353033691645, 0.01811794564127922, -0.026380063965916634, -0.025709029287099838, 0.03701876476407051, 0.013721268624067307, -0.010198334231972694, 0.007653993088752031, 0.004288333002477884, -0.028351228684186935, -0.018565302714705467, -0.07962948828935623, 0.024087361991405487, 0.00983485672622919, 0.004760154522955418, -0.014329393394291401, -0.012910434044897556, -0.0018435987876728177, -0.002406289568170905, -0.006077759899199009, 0.03030841425061226, -0.0005674964049831033, 0.004844034090638161, -0.0006815199158154428, -0.0035823483485728502, -0.005647878162562847, -0.006042810156941414, 0.02626822516322136, 0.020424628630280495, 0.032461319118738174, -0.01100217830389738, -0.005896021146327257, 0.0007038004114292562, 0.008667536079883575, 0.01009348500519991, 0.017013533040881157, -0.009450409561395645, 0.008297068066895008, 0.009373520500957966, -0.019725633785128593, -0.030839651823043823, 0.014343373477458954, -0.011512444354593754, -0.0011568363988772035, 0.028421128168702126, -0.021710779517889023, -0.017586709931492805, 0.008856263943016529, 0.012393178418278694, 0.01876102015376091, -0.004826559219509363, -0.016747916117310524, -0.016622096300125122, 0.0023573599755764008, -0.020620346069335938, -0.0013368275249376893, 0.010219303891062737, -0.018719080835580826, 0.0036242881324142218, -0.013644378632307053, 0.012323278933763504, 0.008625595830380917, 0.014748790301382542, -0.02626822516322136, -0.01175709255039692, 0.0014110957272350788, -0.014972468838095665, 0.01326692197471857, 0.016887715086340904, 0.03156660497188568, -0.0013936208561062813, 0.04616161808371544, 0.012274349108338356, 0.02131934091448784, -0.01182000245898962, 0.011645253747701645, 0.004253383260220289, -0.011861941777169704, -0.021696798503398895, -0.004539971239864826, -0.015307986177504063, -0.0018645686795935035, -0.027148958295583725, -0.009464389644563198, 0.022619472816586494, 0.021277401596307755, 0.00044298794819042087, -0.029553500935435295, -0.0004892963916063309, 0.008947134017944336, 0.009072952903807163, 0.031259048730134964, 0.001721274689771235, -0.03735428303480148, 0.012721705250442028, 0.003771076910197735, 0.001231104601174593, -0.013805147260427475, 0.018076006323099136, 0.01342070009559393, 0.002166884019970894, -0.0362638495862484, -0.002967233071103692, -0.003110526828095317, 0.0014740052865818143, -0.0011734375730156898, 1.4594246749766171e-05, 0.0033464375883340836, 0.0069270385429263115, 0.01224638894200325, 0.02039666846394539, 0.005923980847001076, 0.006710350047796965, 0.0028658786322921515, -0.024311039596796036, -0.0328247956931591, -0.008884224109351635, -0.01529400609433651, -0.04761552810668945, 0.006196589209139347, -0.007633023429661989, -0.022339874878525734, 0.006909563671797514, 0.012211439199745655, 0.03612405061721802, -0.027638254687190056, -0.0006339009269140661, -0.019124498590826988, -0.017363030463457108, -0.05435383692383766, 0.0413525328040123, 0.015335946343839169, 0.002449976745992899, 0.026953240856528282, -0.000923546904232353, 0.03206988051533699, -0.0011044117854908109, 0.037410203367471695, 0.0031437291763722897, 0.01249802764505148, -0.00877937488257885, -0.009191782213747501, 0.0063818227499723434, -0.01811794564127922, -0.013993876054883003, -0.029050223529338837, 0.007206636480987072, 0.004865003749728203, 0.008555696345865726, 0.01320401206612587, 0.10222100466489792, 0.0026387053076177835, -0.04233112558722496, 0.002490169135853648, -0.01043599285185337, 0.02484227530658245, 0.007227606140077114, 0.022563552483916283, 0.008094360120594501, -0.039758823812007904, 0.03058801218867302, -0.004529486410319805, -0.00870248582214117, -0.04263868182897568, -0.02053646743297577, 0.0029287883080542088, 0.004906943533569574, 0.03715856373310089, 0.021682819351553917, -0.008373958058655262, 0.010037565603852272, -0.005497594363987446, 0.020214930176734924, -0.003662732895463705, -0.011344686150550842, 0.0034495394211262465, 0.04775532707571983, 0.006972473114728928, -0.0028903435450047255, -0.0424988828599453, 0.018998678773641586, -0.005812142044305801, -0.01733507215976715, -0.017964167520403862, 0.0032555684447288513, -0.005099167115986347, -0.017377011477947235, -0.020298808813095093, 0.011694183573126793, 0.005315855611115694, -0.005738747306168079, -0.003318477887660265, -0.025457391515374184, -0.009093922562897205, -0.0032101336400955915, -0.014539091847836971, 0.00219309632666409, -0.004924418404698372, -0.024185219779610634], "07aa42dc-7b17-4b9f-848a-181c4ec7e77f": [-0.017328619956970215, -0.011545282788574696, -0.013078473508358002, 0.00800824724137783, -0.009627011604607105, 0.015474529005587101, -0.010910612531006336, 9.01139537745621e-06, -0.0035316869616508484, -0.010867825709283352, 0.013627569191157818, 0.01521780900657177, -0.004421294201165438, -0.006585588678717613, -0.016073543578386307, 0.01105323527008295, 0.00835054088383913, -0.020395001396536827, 0.0035245558246970177, -0.009976436384022236, -0.03271757438778877, 0.016815179958939552, -0.008236442692577839, 0.01923976093530655, -0.022762533277273178, -0.006150590721517801, 0.015888134017586708, -0.03457166627049446, -0.003175131045281887, 0.006229032762348652, 0.001005487865768373, 0.0010045964736491442, -0.0394778773188591, 0.02878119796514511, -0.011010448448359966, -0.0056014941073954105, 0.007801444735378027, -0.012935850769281387, 0.04007689282298088, -0.015417479909956455, 0.03956345096230507, 0.0016089588170871139, 0.019196974113583565, -0.03248938173055649, -0.03297429531812668, 0.01923976093530655, 0.012800359167158604, -0.01963910274207592, -0.005448175128549337, 0.007630297914147377, 0.029094967991113663, 0.005091619212180376, -0.031177254393696785, 0.008621523156762123, 0.037081822752952576, -0.011566676199436188, 0.009184882044792175, -0.0025600718799978495, -0.010097664780914783, -0.002278392668813467, -0.0015019919956102967, -0.020466312766075134, 0.010375779122114182, -0.003840107936412096, -0.019097138196229935, -0.005776206962764263, 0.0006694338517263532, 0.02649923972785473, -0.009142095223069191, -0.03542740270495415, 0.008557342924177647, 0.0037402722518891096, -0.0032571388874202967, -0.006995628122240305, 0.004899078980088234, -0.02060893550515175, -0.03870771452784538, -0.011231512762606144, 0.02522990107536316, 0.016715344041585922, 0.026171209290623665, -0.01660124585032463, -0.02866709977388382, 0.01797042042016983, 0.01993861049413681, 0.008742752484977245, 0.012743310071527958, 0.0050238738767802715, -0.0371103473007679, -0.010825038887560368, 0.027454810217022896, 0.016915015876293182, 0.008978079073131084, 0.0030325085390359163, 0.00810808315873146, 0.01570272445678711, -0.009869469329714775, 0.03502805903553963, -0.00903512816876173, -0.024859081953763962, 0.0005914372159168124, -0.012001673690974712, -0.03602641448378563, -0.005294856149703264, -0.022734008729457855, 0.008721359074115753, 0.005794034339487553, 0.013663224875926971, -0.0010652110213413835, 0.023404333740472794, -0.028339069336652756, 0.01305708009749651, -0.013577651232481003, -0.009199144318699837, -0.02217778190970421, -0.019268285483121872, -0.0001705897448118776, -0.027426285669207573, -0.03728149086236954, -0.025500882416963577, 0.004489039536565542, 0.029023656621575356, 0.0035209902562201023, -0.005063094664365053, 0.007723002228885889, 0.018227141350507736, 0.010218894109129906, -0.03442904353141785, 0.015774035826325417, -0.01570272445678711, 0.036568380892276764, 0.01277183461934328, 0.017628127709031105, -0.004000558052212, -0.006375220604240894, 0.03924968093633652, -0.03485691174864769, -0.008436114527285099, -0.03839394822716713, 0.0019022261258214712, 0.006935013458132744, 0.04461228474974632, -0.006571326404809952, 0.005077356938272715, -0.013413636013865471, 0.017014851793646812, 0.01797042042016983, -0.001579542993567884, 0.0060935416258871555, 0.010903481394052505, 0.004592441022396088, 0.009491520002484322, -0.013706011697649956, -0.020452050492167473, 0.019867299124598503, 0.021379096433520317, 0.007680215872824192, 0.010454220697283745, -0.008179393596947193, -0.017043376341462135, 0.01026168093085289, 0.03662542998790741, 0.0009163488284684718, -0.010689548216760159, 0.005170061718672514, 0.03408675268292427, 0.01408396102488041, 0.01129569299519062, -0.025401048362255096, -0.014490434899926186, -0.018498124554753304, 0.014012649655342102, -0.015674199908971786, 0.01611633040010929, 0.020295165479183197, 0.009969305247068405, 0.002123290905728936, -0.015189284458756447, -0.02217778190970421, -0.036882150918245316, -0.028453165665268898, 0.00031109509291127324, 0.012828883714973927, 0.00966979842633009, -0.008849719539284706, 0.009306110441684723, 0.001300537958741188, -0.03482838720083237, 0.0008044794085435569, 0.0006689881556667387, 0.005052397958934307, 0.02551514469087124, -0.015873871743679047, -0.008478901349008083, -0.6024369597434998, -0.030720863491296768, 0.015417479909956455, 0.00956996250897646, 0.003569125197827816, 0.0234756451100111, -0.009705453179776669, -0.012037329375743866, -0.03003627434372902, 0.050031933933496475, -0.009833813644945621, 0.021036801859736443, -0.008742752484977245, -0.008514557033777237, 0.025500882416963577, -0.008322016336023808, -0.007751526776701212, -0.002369314432144165, -0.0011882227845489979, 0.009291849099099636, -0.019596315920352936, 0.009833813644945621, 0.011110284365713596, -0.02092270366847515, -0.01795615814626217, -0.022534336894750595, 0.018284190446138382, -0.011281430721282959, 0.007944067008793354, 0.011081759817898273, -0.04889095574617386, 0.0020484139677137136, 0.028153659775853157, -0.009170619770884514, 0.04347130283713341, 0.0038044522516429424, -0.023618267849087715, 0.016159117221832275, 0.023803677409887314, 0.02721235156059265, -0.018712056800723076, -0.010539794340729713, 0.01419092807918787, -0.0034193717874586582, -0.002954066265374422, -0.001306777587160468, 0.03123430348932743, 0.0032018725760281086, 0.008985210210084915, -0.014312156476080418, 0.006328868679702282, -0.0008570714271627367, -0.012572163715958595, 0.0071632093749940395, 0.00161965552251786, -0.007530461996793747, 0.029137754812836647, 0.017414193600416183, 0.0001928744895849377, -0.016644032672047615, -0.0035477320197969675, -0.016273215413093567, -0.014041174203157425, -0.015945183113217354, -0.028039561584591866, 0.010318730026483536, -0.002363966079428792, -0.002380011137574911, 0.004549654200673103, -0.01364183146506548, 0.013007162138819695, 0.019225498661398888, 0.0069421445950865746, 0.00018730330339167267, 0.0027258703485131264, 0.019582053646445274, 0.012486590072512627, -0.0010028136894106865, -0.0064857532270252705, 0.01943943090736866, 0.01521780900657177, -0.0037081821355968714, -0.02367531694471836, -0.019425168633461, 0.02689858339726925, 0.0053376429714262486, -0.02139335870742798, 0.016415836289525032, -0.0012131816474720836, -0.018883204087615013, 0.024374166503548622, -0.0018737015780061483, -0.006596285384148359, -0.015446004457771778, -0.0015822171699255705, 0.01767091453075409, -0.0178705845028162, -0.005533748771995306, 0.010290205478668213, 0.0034817690029740334, -0.004991783760488033, -0.021264998242259026, 0.014069698750972748, -0.004553219769150019, 0.039135582745075226, 0.01355625782161951, -0.02731218747794628, -0.012130034156143665, 0.029023656621575356, -0.011424053460359573, 0.009313241578638554, -0.014576008543372154, -0.004057607147842646, -0.028310544788837433, 0.010140451602637768, -0.02986512891948223, 0.011024710722267628, 0.01825566589832306, 0.004328589420765638, 0.017214521765708923, 0.02799677476286888, -0.016358787193894386, 0.005348339676856995, -0.003426502924412489, 0.009705453179776669, 0.02357548102736473, 0.0153176449239254, -0.021464670076966286, 0.029009394347667694, -0.002608206821605563, -0.004314327146857977, -0.026356616988778114, 0.024217281490564346, -0.014262238517403603, 0.011716429144144058, -0.02424580603837967, 0.011452578008174896, 0.0015492356615141034, 0.04204507917165756, -0.03457166627049446, -0.023646792396903038, 0.0042964993044734, -0.0020769385155290365, -0.023789415135979652, -0.005854649003595114, -0.02050909958779812, -0.03653985634446144, -0.0035940841771662235, -0.024288592860102654, 0.023689579218626022, 0.005487396381795406, 0.012679130770266056, -0.002613555174320936, 0.009356028400361538, -0.011652248911559582, 0.0063966140151023865, 0.011466840282082558, -0.03867919370532036, 0.02788267657160759, -0.032632000744342804, -0.014297894202172756, 0.02788267657160759, -0.001943230046890676, -0.01580256037414074, 0.0014841642696410418, -0.0030146806966513395, 0.011609462089836597, 0.005590797867625952, -0.004556785337626934, -0.01923976093530655, -0.01640157401561737, -0.016743868589401245, -0.016815179958939552, -0.003768796566873789, -0.006959972437471151, 0.0036582641769200563, -0.029437260702252388, -0.02778284065425396, 0.02582891471683979, 0.007337921764701605, 0.006795956753194332, 0.029494309797883034, -0.004203794989734888, 0.015289120376110077, 0.011438315734267235, -0.0023193967062979937, 0.02955135889351368, 0.03257495537400246, -0.0178705845028162, 0.03305986896157265, -0.006621244363486767, 0.028909558430314064, -0.019867299124598503, 0.015060923993587494, -0.03782345727086067, 0.043927695602178574, -0.02474498376250267, -0.0027650916017591953, 0.005597928538918495, 0.019425168633461, 0.015075186267495155, 0.029693981632590294, 0.0263994038105011, -0.0028898862656205893, -0.019311072304844856, -0.02269122190773487, 0.018113043159246445, -0.0323752835392952, 0.03414379805326462, 0.014576008543372154, 0.018412550911307335, 0.00894242338836193, -0.024103183299303055, 0.005922394804656506, 0.019125662744045258, 0.001801499049179256, -0.014212321490049362, 0.00704554608091712, -0.018783368170261383, -0.0049739559181034565, -0.004824202507734299, -0.029123492538928986, 0.02885250933468342, -0.0007059808121994138, -0.019681889563798904, -0.0021518152207136154, 0.016572721302509308, 0.029522834345698357, 0.004374941810965538, 0.018526649102568626, 0.011088890954852104, 0.025401048362255096, 0.02622825652360916, 0.012928719632327557, 0.0034639411605894566, -0.01521780900657177, 0.025971537455916405, -0.005369733087718487, 0.027668744325637817, -0.0015421045245602727, -0.010589712299406528, 0.01148823369294405, 0.033830031752586365, -0.01487551536411047, -0.004510432947427034, -0.010211762972176075, 0.026171209290623665, 0.016173379495739937, -0.008635785430669785, 0.025900226086378098, 0.0002683083584997803, 0.006756735499948263, -0.028210708871483803, -0.008650047704577446, 0.02269122190773487, -0.0357411690056324, -0.007858493365347385, 0.010040616616606712, 0.03035004436969757, 0.008357672020792961, 0.016501409932971, -0.018184354528784752, 0.018626483157277107, -0.003034291323274374, 0.032460857182741165, -0.0034568102564662695, -0.040590330958366394, -0.012037329375743866, -0.013320931233465672, -0.016915015876293182, -0.0038721978198736906, -0.0017943679122254252, 0.005334077402949333, -0.02112237550318241, -0.0035530803725123405, 0.01521780900657177, 0.015631413087248802, 0.008279229514300823, 0.01232970505952835, 0.013335193507373333, -0.040390659123659134, -0.03103463165462017, 0.005359036382287741, 0.017157472670078278, 0.02239171415567398, -0.018897466361522675, -0.012629212811589241, 0.021350571885704994, -0.020780082792043686, 0.002187470905482769, 0.004578178748488426, 0.017214521765708923, -0.015845347195863724, -0.012593557126820087, 0.010989055037498474, 0.034314945340156555, 0.005883173551410437, 0.0023835767060518265, 0.02052336186170578, -0.017257308587431908, 0.01707189902663231, -0.003381933318451047, -0.011124546639621258, 0.01628747768700123, 0.022762533277273178, -0.02063746005296707, -0.007173906080424786, -0.020181067287921906, -0.03571264445781708, -0.018540911376476288, 0.018384026363492012, 0.021764175966382027, -0.017314357683062553, 0.0027597432490438223, 0.003376584965735674, 0.004599572159349918, 0.0025975103490054607, -0.008457507938146591, 0.025115802884101868, -0.02043778821825981, 0.007594642229378223, -0.01975320093333721, 0.003007549559697509, 0.023390071466565132, 0.015488791279494762, 0.05282733216881752, 0.02063746005296707, -0.005551576614379883, -0.007951198145747185, 0.005344774108380079, -0.031662169843912125, -0.009077914990484715, 0.012743310071527958, -0.00017359819321427494, -0.028909558430314064, -0.004289368167519569, 0.019282547757029533, 0.009641273878514767, 0.02219204418361187, -0.01025454979389906, 0.018925990909337997, -0.012037329375743866, 0.01183765847235918, -0.01571698673069477, 0.011174464598298073, -0.02259138599038124, 0.0006859245477244258, 0.02513006515800953, 0.007501937448978424, -0.015474529005587101, 0.018997302278876305, 0.04218770191073418, -0.00858586747199297, -0.004549654200673103, -0.007188168354332447, 0.045724738389253616, 0.026256781071424484, 0.02454531379044056, -0.008414721116423607, 0.039021484553813934, 0.01339937373995781, -0.00042207312071695924, 0.007544724270701408, 0.010867825709283352, -0.010896350257098675, 0.008849719539284706, 0.009199144318699837, 0.006097107194364071, 0.011331348679959774, -0.006574891973286867, 0.001705228933133185, 0.02394629828631878, 0.00036145863123238087, -0.010411434806883335, 0.05644994229078293, -0.00694571016356349, -0.007309397216886282, -0.006232598330825567, 0.029779555276036263, -0.003590518608689308, -0.014618794433772564, -0.02435990422964096, -0.019296810030937195, -0.020009921863675117, -0.016529934480786324, -0.01825566589832306, 0.023233186453580856, -0.022962205111980438, -0.028938082978129387, -0.0074234954081475735, -0.022448763251304626, -0.008322016336023808, -0.021721389144659042, 0.02119368687272072, 0.0035994325298815966, -0.005359036382287741, -0.02561498060822487, 0.027326449751853943, 0.01295724418014288, 0.008799801580607891, -0.0034817690029740334, -0.030121847987174988, -0.007416364271193743, 0.021535981446504593, 2.830163066391833e-05, -0.020651722326874733, 0.0007099920767359436, -0.012429540976881981, -1.678320040809922e-05, -0.004998914897441864, -0.001255077077075839, -0.00956996250897646, -0.01767091453075409, 5.105993113829754e-05, -0.006368089467287064, 0.0018326976569369435, -0.011438315734267235, 0.01183052733540535, 0.0306352898478508, 0.0014993178192526102, 0.019011564552783966, 0.02179270051419735, 0.002818574896082282, -0.02013828046619892, 0.006664031185209751, -0.03742411360144615, -0.030578240752220154, 0.007095464039593935, -0.02119368687272072, 0.011409791186451912, -0.0029291072860360146, 0.02898086979985237, -0.006959972437471151, -0.009077914990484715, 0.00024357229995075613, 0.004535391926765442, -0.011160202324390411, -0.010190369561314583, 0.011031841859221458, -0.0004171704931650311, 0.00773013336583972, 0.02435990422964096, 0.023033516481518745, -0.005234241485595703, 0.0039007223676890135, -0.0067175147123634815, 0.01935385726392269, -0.001363826566375792, 0.002142901299521327, 0.015146497637033463, -0.015588627196848392, -0.03879328817129135, 0.0035887358244508505, 0.0072915698401629925, -0.006792391184717417, 0.006835178006440401, -0.0013165829004719853, -0.03876476362347603, -0.03728149086236954, 0.015973707661032677, -0.012101509608328342, 0.01885467953979969, -0.010140451602637768, -0.029437260702252388, -0.022534336894750595, -0.002433494431897998, -0.017613865435123444, -0.024716459214687347, -0.0003478649305179715, -0.0340011790394783, -0.002476281253620982, 0.008364803157746792, 0.018312714993953705, 0.04087557643651962, 0.011438315734267235, 0.008293491788208485, -0.009890862740576267, -0.015845347195863724, -0.025971537455916405, -0.03223266080021858, -0.028125135228037834, -0.0058225588873028755, 0.04603850841522217, 0.009455864317715168, 0.01262208167463541, -0.010960530489683151, 0.0076445601880550385, 0.005633584223687649, 0.0017988248728215694, -0.011060366407036781, -0.019068613648414612, -0.029722506180405617, -0.002187470905482769, -0.006967103574424982, 0.015731249004602432, 0.00043165558599866927, 0.0180559940636158, 0.008336278609931469, -0.018384026363492012, 0.01943943090736866, -0.0038436732720583677, -0.011352742090821266, -0.015203546732664108, -0.045125722885131836, -0.029437260702252388, -7.398536399705335e-05, -0.0076588224619627, -0.008764145895838737, -0.04101819917559624, -0.026641862466931343, 0.01026168093085289, 0.0037295755464583635, 0.0001321485615335405, -0.012429540976881981, 0.01975320093333721, -0.011723560281097889, 0.016330262646079063, 0.0005584557657130063, 0.01738566905260086, -0.0038935912307351828, -0.011723560281097889, -0.03251790627837181, -0.008956685662269592, -0.007248783018440008, 0.021735651418566704, 0.013320931233465672, -0.012600688263773918, 0.00824357382953167, -0.020181067287921906, 0.03391560539603233, -0.017542554065585136, 0.0056407153606414795, -0.01036864798516035, -0.023832201957702637, -0.012885932810604572, -0.015303382650017738, -0.009741108864545822, -0.003629739861935377, -0.0100548779591918, -0.0001075796244549565, 0.000517006148584187, 0.024074658751487732, -0.038935910910367966, -0.016829442232847214, -0.002563637448474765, -0.0009163488284684718, 0.036368709057569504, 0.013427898287773132, 0.03770935907959938, 0.016529934480786324, -0.0035780391190201044, 0.013071342371404171, 0.004460514988750219, 0.006610547658056021, 0.004089696798473597, 0.010568318888545036, 0.02975103072822094, -0.019296810030937195, -0.006114935036748648, 0.008550211787223816, 0.015203546732664108, -0.001477033132687211, -0.027725791558623314, 0.049432918429374695, 0.05017455667257309, 0.0015429959166795015, -0.032147087156772614, -0.0002723196230363101, -0.028823984786868095, -0.0017872367752715945, 0.011659380048513412, 0.0001849634136306122, 0.019082875922322273, -0.026542026549577713, -0.02975103072822094, 0.005515920929610729, -0.01630173996090889, 0.027825627475976944, 0.001131173805333674, -0.015032399445772171, 0.003779493272304535, 0.02672743611037731, -0.008421852253377438, -0.0003598986950237304, -0.011823396198451519, 0.015987969934940338, -0.03502805903553963, 0.015103710815310478, 0.0009439819259569049, -0.00131301733199507, -0.01865500770509243, -0.006738907657563686, -0.0027633088175207376, 0.03280314803123474, -0.0035833874717354774, -0.002299786079674959, 0.01945369318127632, -0.025985799729824066, 0.04036213457584381, -0.013955600559711456, 0.014076829887926579, -0.023133352398872375, -0.024288592860102654, 0.0010126190027222037, 0.026370879262685776, 0.019196974113583565, 0.007366446312516928, -0.02659907564520836, -0.00540538877248764, -0.01648714765906334, 0.01036864798516035, -0.023390071466565132, -0.003478203434497118, -0.024958917871117592, -0.007148947101086378, -0.01015471387654543, 0.0012283353134989738, 0.007944067008793354, 0.020052708685398102, 0.02249155007302761, 0.012372491881251335, 0.026755960658192635, -0.007551855407655239, -0.0009439819259569049, -0.028224971145391464, -0.012950113043189049, -0.049718163907527924, 0.003098471323028207, -0.01173782255500555, -0.01069667935371399, 0.008642916567623615, -0.0008205244084820151, -0.05239946395158768, -0.00981955137103796, 0.022420238703489304, 0.01016897615045309, 0.005733420141041279, 0.016629770398139954, 0.04792112112045288, 0.0020537623204290867, -0.009783895686268806, 0.003743837820366025, -0.016915015876293182, 0.03035004436969757, -0.024088921025395393, 0.016230428591370583, 0.039335254579782486, 0.00021738771465606987, 0.008621523156762123, 0.0011846572160720825, 0.010325861163437366, -0.007808575872331858, -0.041503116488456726, -0.02809661068022251, 0.02277679555118084, 0.010197500698268414, -0.012607819400727749, -0.018341239541769028, -0.02140762098133564, -0.02915201708674431, -0.015674199908971786, 0.015346169471740723, 0.028253495693206787, -0.0031376925762742758, 0.0017658434808254242, 0.014247976243495941, 0.001443160348571837, 0.012244132347404957, -0.008642916567623615, -0.03662542998790741, -0.017100423574447632, -0.002215995453298092, -0.03605493903160095, -0.025315474718809128, -0.000960026984103024, 0.020395001396536827, -0.008329147472977638, -0.018041731789708138, -0.0035245558246970177, -0.022762533277273178, -0.009320372715592384, -0.034400518983602524, -0.021535981446504593, 0.02189253643155098, 0.056906331330537796, 0.018113043159246445, 0.0005758379120379686, 0.028453165665268898, -0.012600688263773918, 0.012144296430051327, -0.02709825336933136, -0.009805289097130299, 0.030292995274066925, -0.027754316106438637, 0.019125662744045258, -0.014540352858603, -0.04081852734088898, 0.003811583388596773, 0.013670356012880802, 0.01487551536411047, 0.006599850952625275, 0.019810250028967857, -0.038821812719106674, 0.004068303853273392, 0.004981087055057287, -0.008136607706546783, 0.011131677776575089, -0.017984682694077492, 0.011081759817898273, -0.03802312910556793, 0.0012925154296681285, 0.010618236847221851, 0.026484977453947067, 0.0037474031560122967, 0.01115307118743658, 0.029608407989144325, 0.018925990909337997, 0.011673642322421074, -0.03171921893954277, -0.014932564459741116, 0.01071094162762165, -0.03950640186667442, 0.04292934015393257, -0.002465584548190236, 0.0017515812069177628, 0.023974822834134102, -0.00321613484993577, 0.007509068585932255, -0.003961336798965931, 0.008963816799223423, -0.020395001396536827, -0.01707189902663231, 0.02946578525006771, -0.01104610413312912, -0.023546956479549408, -0.012001673690974712, -0.0035245558246970177, -0.013156915083527565, -0.020694509148597717, 0.005890304688364267, -0.016529934480786324, -0.026470715180039406, 0.014761417172849178, 0.03240380808711052, -0.0632672905921936, -0.018483862280845642, 0.015403217636048794, -0.019952872768044472, 0.009249062277376652, 0.010425697080790997, -0.02542957104742527, -0.01962484046816826, -0.002745480975136161, -0.004735063295811415, -0.007993984967470169, -0.012158558703958988, 0.007509068585932255, 0.0041788360103964806, -0.042273275554180145, 0.0070312838070094585, 0.18597958981990814, -0.032004464417696, 0.011687904596328735, 0.022234831005334854, -0.015146497637033463, 0.010903481394052505, -0.02918054163455963, 0.01138839777559042, -0.009840944781899452, 0.027240876108407974, 0.01707189902663231, 0.008949554525315762, 0.003683223156258464, -0.01242240983992815, 0.00035232186201028526, 0.016173379495739937, -0.024188756942749023, -0.043157536536455154, -0.03639723360538483, -0.0263994038105011, -0.019582053646445274, -0.016972064971923828, 0.010418565943837166, -0.008921029977500439, 0.028752673417329788, 0.01443338580429554, 0.01962484046816826, -0.005198586266487837, 0.031975939869880676, 0.016472885385155678, -0.02592875063419342, 0.00044146087020635605, 0.010789384134113789, 0.017699439078569412, 0.01894025318324566, -0.01905435137450695, 0.023033516481518745, -0.00478498125448823, 0.037851981818675995, -0.005633584223687649, 0.008264967240393162, -0.02629956789314747, 0.03345921263098717, -0.027340712025761604, -0.02836759388446808, -0.0002856904757209122, 0.010304467752575874, -0.030606765300035477, 0.004831333644688129, -0.004385638516396284, -0.005344774108380079, 0.03297429531812668, 0.015260595828294754, 0.02152171917259693, 0.01601649448275566, -0.007352184038609266, 0.001823783852159977, 0.011645117774605751, -0.01287167053669691, 0.005654977634549141, -0.019582053646445274, 0.00971971545368433, -0.0030592503026127815, -0.012351098470389843, -0.017442718148231506, 0.008272098377346992, -0.0076445601880550385, -0.03112020529806614, -0.00042229596874676645, -0.02424580603837967, 0.01275757234543562, -0.032346758991479874, -0.01767091453075409, 0.014255107380449772, -0.01856943592429161, -0.01262208167463541, -0.005925960373133421, 0.017613865435123444, 0.02935168705880642, 0.03194741532206535, 0.005826124455779791, 0.0004880359920207411, -0.0069813658483326435, -0.014105354435741901, -0.0014502913691103458, -0.027953987941145897, 0.029294637963175774, -0.0025885964278131723, -0.010632499121129513, 0.0028043126221746206, -0.022448763251304626, -0.019995659589767456, -0.009142095223069191, 0.00824357382953167, -0.0075661176815629005, 0.0046851453371346, -0.0018228924600407481, 0.011908969841897488, 0.0010527315316721797, -0.011645117774605751, -0.049347344785928726, 0.04538244381546974, 0.015346169471740723, -0.0016927494434639812, -0.029779555276036263, -0.02259138599038124, 0.009848075918853283, 0.0002180562587454915, -0.0006805761950090528, -0.005063094664365053, -0.013292406685650349, -0.02582891471683979, 0.010981923900544643, -0.003130561439320445, 0.01621616631746292, 0.022648435086011887, 0.022833844646811485, -0.0072701764293015, -0.002517285058274865, -0.0011053235502913594, 0.013128390535712242, -0.01758534088730812, -0.004086131229996681, 0.022748271003365517, -0.008956685662269592, -0.027354974299669266, 0.012629212811589241, -0.006842309143394232, 0.0033444950822740793, -0.02905218116939068, 0.030264470726251602, -0.00076124700717628, 0.003175131045281887, -0.006785260047763586, -0.0004965041880495846, 0.0083434097468853, 0.006974234711378813, -0.006211204919964075, -0.014069698750972748, 0.009056521579623222, -0.013620438054203987, -0.0009350680629722774, 0.019596315920352936, -0.0023336587473750114, -0.0028845379129052162, -0.0035156419035047293, 0.008757014758884907, 0.003961336798965931, -0.01975320093333721, -0.018184354528784752, -0.000735842389985919, 0.00043499827734194696, -0.020765820518136024, 0.0032892287708818913, 0.028638575226068497, -0.022862369194626808, -0.011217250488698483, -0.057191576808691025, -0.002609989605844021, -0.019368119537830353, -0.03759526088833809, -0.0031002541072666645, 0.017128948122262955, 0.002289089374244213, -0.012365360744297504, -0.0013718490954488516, -0.1838117390871048, 0.011680773459374905, 0.008371934294700623, -0.016558459028601646, 0.014397730119526386, 0.007494806312024593, -0.0033480606507509947, 0.009420208632946014, -0.004264409653842449, -0.009855207055807114, 0.03380150720477104, -0.024074658751487732, -0.007623166777193546, -0.0009555700235068798, 0.00992651842534542, 0.002244519768282771, 0.007366446312516928, 0.01340650487691164, 0.030863484367728233, 0.016002232208848, 0.030178897082805634, -0.04475490748882294, -0.005490961950272322, -0.006624809931963682, -0.025187114253640175, 0.024673672392964363, -0.04272966831922531, -0.0018326976569369435, 0.020081233233213425, -0.003647567704319954, -0.014861253090202808, 0.005733420141041279, -0.006646203342825174, 0.004150311462581158, -0.006200508214533329, -0.0025475923903286457, -0.023147612810134888, -0.012393885292112827, 0.0007541158702224493, 0.031148729845881462, 0.012607819400727749, 0.028610050678253174, 0.0037367066834121943, 0.017014851793646812, -0.018783368170261383, 0.03899296000599861, 0.038251325488090515, 0.01444051694124937, 0.019510742276906967, -0.016872229054570198, -0.013934207148849964, -0.02898086979985237, -0.00972684659063816, 0.01399838738143444, 0.016857966780662537, 0.036083463579416275, 0.021436145529150963, 0.005319815129041672, 0.0005611299420706928, -0.0270839910954237, 0.01339937373995781, -0.01973893865942955, -0.017342882230877876, -0.019710414111614227, -0.014483303762972355, -0.004931169096380472, -0.027640219777822495, 0.02564350515604019, -0.02751185931265354, 0.011260037310421467, -0.001551018445752561, 0.005241372622549534, 0.005886739119887352, 0.002608206821605563, 0.025971537455916405, -0.0014841642696410418, -0.024787770584225655, 0.028025299310684204, 0.01747124269604683, -0.0029932872857898474, 0.008999472483992577, 0.045211296528577805, 0.006453663110733032, 0.014326418749988079, 0.018512386828660965, -0.013028555549681187, 0.00858586747199297, 0.011402660049498081, 0.009527175687253475, -0.02072303369641304, 0.03123430348932743, 0.0013575868215411901, 0.013520602136850357, -0.030892008915543556, 0.005294856149703264, 0.013684618286788464, 0.003979164641350508, 0.01104610413312912, 0.01208011619746685, -0.010661023668944836, -0.028324807062745094, -0.0008682137704454362, -0.019482217729091644, 0.00824357382953167, 0.03565559908747673, 0.01925402320921421, -0.008999472483992577, 0.01330666895955801, 0.044583760201931, -0.01935385726392269, 0.0034657239448279142, 0.013770191930234432, 0.011851920746266842, 0.01895451545715332, -0.006753169931471348, 0.007808575872331858, 0.001107997726649046, -0.020295165479183197, 0.010732335038483143, -0.0035816046874970198, 0.03836542367935181, -0.0014110702322795987, -0.012557901442050934, 0.015060923993587494, -0.018298452720046043, -0.009270455688238144, -0.08739899843931198, -0.00687439925968647, 0.011702166870236397, -0.0014966436428949237, -0.0006725537241436541, 0.003050336381420493, -0.00021315361664164811, 0.026841534301638603, 0.022363191470503807, 0.03622608631849289, 0.0006899358122609556, 0.006500015500932932, -0.016758130863308907, -0.0161876417696476, 0.017528291791677475, -0.014312156476080418, 0.005426781717687845, -0.011666511185467243, 0.0032678355928510427, 0.03380150720477104, -0.00012668879935517907, -0.018141567707061768, -0.007230955176055431, 0.007965460419654846, -0.015774035826325417, -0.007829968817532063, -0.03625461086630821, 0.014732892625033855, 0.01521780900657177, 0.012386754155158997, 0.03662542998790741, -0.01894025318324566, 0.016943540424108505, -0.018298452720046043, 0.002000279026106, 0.015845347195863724, -0.04298638924956322, -0.010960530489683151, 0.0016339177964255214, -0.0323752835392952, 0.03685362637042999, 0.013285275548696518, 0.04056180641055107, -0.03693920001387596, 0.009206275455653667, -0.01252224575728178, -0.02102253958582878, 0.04332868009805679, -0.009120701812207699, -0.007266610860824585, 0.0025155022740364075, 0.002210647100582719, -0.018284190446138382, -0.011502495966851711, 0.03702477365732193, -0.018811892718076706, 0.01364183146506548, 0.026242518797516823, -0.01621616631746292, -0.0080938208848238, -0.01285740826278925, -0.011759215965867043, -0.022220568731427193, 0.008721359074115753, 0.013392242603003979, 0.004285802599042654, -0.03123430348932743, -0.00869283452630043, 0.02946578525006771, -0.0004760022275149822, -0.013713142834603786, 0.02848169021308422, -0.00369391986168921, -0.010119058191776276, -0.003184044733643532, -0.006735342089086771, -0.011687904596328735, -0.02524416334927082, -0.009512913413345814, 0.006318171974271536, 0.00026140009867958724, -0.03035004436969757, -0.006018664687871933, 0.020295165479183197, 0.015160759910941124, 0.013534864410758018, 0.009149226360023022, -0.003904287936165929, -0.0033748021814972162, -0.03271757438778877, 0.016173379495739937, 0.004431990906596184, -0.006097107194364071, 0.00569419888779521, -0.026456452906131744, 0.025572193786501884, 0.02689858339726925, -0.007530461996793747, 0.0033391467295587063, -0.011602330952882767, -0.01399125624448061, -0.009156357496976852, -0.08734194934368134, 0.042872291058301926, 0.005162930581718683, 0.021878274157643318, 0.01227978803217411, -0.018127305433154106, 0.01286453939974308, -0.005605059675872326, 0.0032892287708818913, 0.046209655702114105, -0.003187610302120447, 0.025458095595240593, -0.00036948113120160997, -0.000966266670729965, 0.0006836960674263537, -0.018897466361522675, 0.022020896896719933, 0.01788484677672386, 0.020166805014014244, -0.01138839777559042, 0.006189811509102583, 0.0008784647798165679, 0.0161876417696476, 0.02701267972588539, 0.0063538276590406895, 0.013599044643342495, -0.002169643063098192, 0.021635815501213074, -0.027340712025761604, -0.022163519635796547, 0.019952872768044472, -0.014048305340111256, 0.014476172626018524, 0.0262139942497015, -0.004253712948411703, -0.02885250933468342, 0.019011564552783966, 0.008778408169746399, -0.00013627123553305864, -0.008279229514300823, -0.022420238703489304, -0.01648714765906334, -0.008486032485961914, -0.01945369318127632, -0.018968777731060982, -0.022220568731427193, -0.028595788404345512, 0.00341045786626637, 0.008079558610916138, -0.0030752953607589006, 0.0227910578250885, 0.022149257361888885, -0.03388708084821701, -0.016943540424108505, -0.013135521672666073, -0.012657737359404564, 0.013221095316112041, 0.020052708685398102, 0.020780082792043686, -0.0010518401395529509, 0.055251915007829666, -0.007148947101086378, 0.03445756807923317, 0.005890304688364267, 0.0153176449239254, -0.0085929986089468, -0.016030756756663322, -0.01758534088730812, -0.00490977568551898, -0.0013156915083527565, -0.0031555204186588526, -0.026370879262685776, -0.008707096800208092, 0.027369236573576927, 0.004859857726842165, -0.0038686322513967752, -0.028738411143422127, 0.013706011697649956, -0.009705453179776669, 0.013470684178173542, 0.024117445573210716, -0.015617151744663715, -0.011309955269098282, 0.009170619770884514, 0.018326977267861366, 0.012122903019189835, -0.035598549991846085, 0.016472885385155678, 0.01836976408958435, -0.0020929835736751556, -0.03856509551405907, -0.020095495507121086, -0.010297336615622044, -0.008992341347038746, 0.029437260702252388, 0.012258394621312618, -0.02033795230090618, 0.010233156383037567, 0.03149102255702019, 0.007616035640239716, 0.02060893550515175, 0.0024923263117671013, -0.022919418290257454, -0.02986512891948223, -0.02249155007302761, -0.016857966780662537, -0.02564350515604019, -0.031975939869880676, 0.01467584352940321, -0.004260844085365534, 0.0006574000581167638, -0.0005441935500130057, 0.0021464668679982424, 0.032945770770311356, -0.02219204418361187, 0.00478498125448823, -0.0054695685394108295, -0.017656652256846428, -0.03380150720477104, 0.04415589198470116, 0.002615337958559394, -0.001880832714959979, 0.026342354714870453, -0.0031911758705973625, 0.041303444653749466, 0.0005950027843937278, 0.0221064705401659, 0.004071869421750307, 0.010618236847221851, -0.009413077495992184, -0.002114376984536648, -0.006289647426456213, -0.02888103388249874, -0.014946826733648777, -0.019425168633461, -0.006503581069409847, -0.013392242603003979, 0.014354943297803402, 0.014262238517403603, 0.09549995511770248, 0.003549514804035425, -0.013042817823588848, -0.0029291072860360146, -0.0037367066834121943, 0.016729606315493584, 0.011887576431035995, 0.0283961184322834, -0.0023033516481518745, -0.026927107945084572, 0.014789941720664501, -0.024802032858133316, 0.006906489375978708, -0.04435556381940842, -0.0061755492351949215, -1.777208672137931e-05, 0.010546925477683544, 0.007780051324516535, -0.0017676262650638819, -0.020181067287921906, -0.009684059768915176, -0.004285802599042654, 0.01114594005048275, 0.008072427473962307, -0.012443803250789642, -0.022534336894750595, 0.015417479909956455, -0.02602858655154705, -0.01453322172164917, -0.027469072490930557, 0.00682091573253274, -0.013028555549681187, -0.014112485572695732, -0.03035004436969757, -0.008678572252392769, -0.010767990723252296, -0.006068582646548748, -0.009662667289376259, -0.0033391467295587063, 0.02023811638355255, -0.008172262459993362, 0.0020252380054444075, -0.02759743295609951, -0.022049421444535255, 0.013955600559711456, -0.002244519768282771, 0.003501379629597068, -0.022234831005334854, -0.020879916846752167], "d14ad41a-0e46-4fb9-b979-8973ba836de4": [-0.01766020618379116, -0.00017815697356127203, -0.008227413520216942, 0.0009198024054057896, -0.014534629881381989, 0.0188796017318964, -0.005718543194234371, 0.001942973118275404, -0.019314099103212357, -0.024724289774894714, 0.0032464645337313414, 0.016566956415772438, -0.006184576544910669, -0.022663932293653488, -0.010336827486753464, 0.014899047091603279, 0.010589116252958775, -0.016230570152401924, 0.008255445398390293, -0.005946303717792034, -0.019888756796717644, 0.019706547260284424, -0.018262896686792374, 0.012572385370731354, -0.019454259425401688, -0.012712545692920685, 0.017365869134664536, -0.02985415793955326, -0.009453817270696163, -0.0068328180350363255, 0.002908327616751194, -0.012446240521967411, -0.03234901279211044, 0.014506598003208637, -0.014969127252697945, -0.01780036650598049, 0.010245722718536854, 0.014149188995361328, 0.03554467111825943, -0.002636766992509365, 0.028214283287525177, 0.0012710794107988477, 0.008192373439669609, -0.019986867904663086, -0.027807816863059998, 0.014941095374524593, 0.026350149884819984, -0.02542509138584137, -0.0005812275339849293, 0.0073864515870809555, 0.013518467545509338, 0.02398143894970417, -0.023406781256198883, 0.0037002337630838156, 0.029742030426859856, -0.005757087375968695, 0.027765769511461258, 0.015922218561172485, -0.01766020618379116, 0.012102847918868065, 0.012250016443431377, -0.014331397600471973, 0.005564366467297077, 0.010427931323647499, -0.027835849672555923, -0.034619610756635666, 0.009026328101754189, 0.028354443609714508, -0.000446761172497645, -0.022916220128536224, -0.006541985087096691, 0.007771892473101616, -0.0050422693602740765, -0.01415619719773531, 0.029433676972985268, -0.004874076694250107, -0.021640760824084282, -0.0035670814104378223, 0.025593282654881477, 0.012740577571094036, 0.03237704560160637, -0.011766462586820126, -0.02123429626226425, 0.006685649510473013, 0.027765769511461258, -0.00045201717875897884, 0.01621655561029911, -0.0015303760301321745, -0.024948546662926674, -0.010028474032878876, 0.015978282317519188, 0.014604710973799229, 0.02335071749985218, 0.012950818054378033, 0.0064859213307499886, 0.003425169037654996, -0.013294210657477379, 0.032769493758678436, -0.00737243564799428, -0.02678464725613594, -0.00916648842394352, -0.022187385708093643, -0.022958269342780113, -0.006685649510473013, -0.006990498397499323, 0.012095839716494083, 0.0011256629368290305, 0.0003668259596452117, 0.0025859589222818613, 0.028466571122407913, -0.022663932293653488, 0.0036476736422628164, -0.039132773876190186, 0.0007542379898950458, -0.01666506752371788, -0.01617450639605522, 0.013497443869709969, -0.014107141643762589, -0.026672517880797386, -0.03675004839897156, 0.005077309440821409, 0.022734012454748154, 0.0041837869212031364, -0.02068767137825489, 0.020253174006938934, 0.004022602457553148, -0.0015391360502690077, -0.027289224788546562, 0.016833260655403137, -0.012376160360872746, 0.021654777228832245, 0.024948546662926674, 0.024724289774894714, 0.01937016285955906, -0.008283478207886219, 0.021640760824084282, -0.01983269304037094, -0.0003376989043317735, -0.013988004997372627, 0.0036441695410758257, 0.0037843300960958004, 0.043926261365413666, -0.015866152942180634, 0.012866721488535404, -0.016314666718244553, 0.02145855315029621, 0.0075826761312782764, -0.0009250584407709539, 0.011465118266642094, 0.0024072544183582067, -0.002039333339780569, -0.005315581802278757, -0.017057517543435097, 0.0002976217947434634, 0.0069414423778653145, 0.019272051751613617, 0.007358419243246317, 0.013133026659488678, -0.0014340158086270094, -0.011689375154674053, -0.003906970378011465, 0.0453558973968029, -0.00338136893697083, -0.012221984565258026, 0.021108152344822884, 0.038544103503227234, 0.021710840985178947, -0.010897468775510788, -0.01201174408197403, -0.014016036875545979, -0.02018309384584427, 0.013833828270435333, 0.0027506472542881966, 0.011969695799052715, 0.02857869863510132, 0.015459688380360603, 0.0121939517557621, -0.026434246450662613, -0.0037527938839048147, -0.026069829240441322, -0.03916080668568611, 0.014842983335256577, 0.021696824580430984, 0.01747799851000309, -0.0009758665692061186, -0.0009224304230883718, 0.012516320683062077, -0.012810657732188702, 0.011689375154674053, 0.007337395567446947, 0.016202539205551147, 0.01837502419948578, 0.00552231865003705, -0.026518341153860092, -0.6122204661369324, -0.040085867047309875, -0.00681880209594965, 0.018711408600211143, -0.0009206784307025373, 0.0060724481008946896, -0.0024493024684488773, 0.006005872040987015, -0.03279752656817436, 0.049476612359285355, -0.0052595180459320545, 0.031143633648753166, -0.016875308007001877, -0.010694236494600773, 0.012502305209636688, 0.005897247698158026, 0.0030414799693971872, -0.005914767738431692, -0.015067239291965961, -0.001298235380090773, -0.031676243990659714, 0.016538923606276512, 0.006965970154851675, -8.360346691915765e-05, -0.011352989822626114, -0.029826126992702484, 0.023785214871168137, -0.008872151374816895, 0.007743860594928265, 0.008788054808974266, -0.029742030426859856, 0.0058236634358763695, 0.023855295032262802, -0.01562788151204586, 0.05334503576159477, 0.006398320663720369, -0.02845255471765995, 0.008591830730438232, 0.030695121735334396, 0.03089134581387043, -0.030554961413145065, 0.001005650614388287, 0.008795063011348248, -0.01648285984992981, -0.013868868350982666, -0.012004735879600048, 0.024289792403578758, 0.00808725319802761, -0.004782972391694784, -0.03428322821855545, 0.013924933038651943, -0.005725550930947065, -0.006563009228557348, 0.003141344292089343, 0.005687007214874029, -0.011913631111383438, 0.034984029829502106, 0.0022776059340685606, -2.2242245378834014e-08, -0.02217337116599083, -0.0016162242973223329, -0.013329250738024712, -0.01424730196595192, -0.02475232072174549, -0.03293768689036369, 0.00019502000941429287, 0.006195088382810354, -0.01106566097587347, 0.0058236634358763695, -0.0007498579798266292, 0.023154493421316147, 0.030554961413145065, -0.00995839387178421, 0.01388989295810461, 0.00516140554100275, 0.005809647496789694, 0.01991678774356842, -0.0005785995163023472, -0.01674916408956051, 0.01070124376565218, 0.022691963240504265, -0.002820727415382862, -0.04336562007665634, -0.022145338356494904, 0.01987474039196968, 0.007253299001604319, -0.023953408002853394, 0.009979418478906155, -0.0011204069014638662, -0.01562788151204586, 0.01264246553182602, -0.007337395567446947, -0.013672644272446632, -0.013154050335288048, -0.004285403527319431, -0.0017047005239874125, 0.0037002337630838156, -0.010757308453321457, 0.0031150642316788435, -0.017323821783065796, -0.012537345290184021, -0.018080687150359154, 0.010224699042737484, 0.007365427445620298, 0.04787878319621086, 0.005483774468302727, -0.019398195669054985, -0.020799798890948296, 0.020897911861538887, -0.007197234779596329, -0.006506945006549358, -0.015613865107297897, -0.021052086725831032, -0.03044283203780651, -0.02487846650183201, -0.024962561205029488, 0.024275775998830795, 0.011086685582995415, -0.006727697793394327, 0.010869436897337437, 0.005662478972226381, -0.0007060578791424632, 0.011647326871752739, 0.006426353007555008, 0.00020586054597515613, 0.014492582529783249, 0.01255836896598339, -0.023911358788609505, 0.026896774768829346, -0.004863564856350422, 0.001596952206455171, -0.024822400882840157, 0.028732875362038612, -0.010820380412042141, 0.019173938781023026, -0.0290412288159132, 0.0354045107960701, 0.006738209631294012, 0.0147869186475873, -0.03660988807678223, -0.019215986132621765, 0.005816655233502388, -0.005052781198173761, -0.011331966146826744, -0.011857567355036736, -0.025032641366124153, -0.028284363448619843, 0.005052781198173761, -0.005806143395602703, 0.01413517352193594, -0.008795063011348248, 0.0022162857931107283, 0.005140381399542093, 0.016651051118969917, -0.019230002537369728, -0.007365427445620298, 0.004495644010603428, -0.038992613554000854, 0.019173938781023026, -0.027121031656861305, -0.010876445099711418, 0.04451493173837662, 0.0068223061971366405, -0.009727129712700844, -0.0064648971892893314, -0.0020480933599174023, -0.008458678610622883, 0.01843108795583248, -0.016104426234960556, -0.006738209631294012, -0.005340110044926405, -0.020449398085474968, -0.01766020618379116, 0.0015943242469802499, -0.00781394075602293, 0.025144770741462708, -0.0336945541203022, -0.02402348816394806, 0.0029030716978013515, 0.011079677380621433, -0.004176779184490442, 0.0499531552195549, -0.009103416465222836, -0.00770181231200695, 0.015473704785108566, -0.004330955445766449, 0.02971399761736393, 0.02691079117357731, -0.02000088430941105, 0.040029801428318024, -0.016637036576867104, 0.018711408600211143, -0.02578950859606266, 0.0016232322668656707, -0.03246114030480385, 0.04367396980524063, -0.010343835689127445, -0.004422059748321772, 0.005813151132315397, 0.0032096724025905132, 0.010000442154705524, 0.03397487476468086, 0.007337395567446947, 0.01007052231580019, -0.02918138913810253, -0.020435381680727005, 0.014730854891240597, -0.03518025204539299, 0.017548078671097755, -0.0001553809124743566, 0.018164783716201782, 0.019664499908685684, -0.02113618329167366, 0.014422502368688583, 0.01515133585780859, 0.008388598449528217, -0.02221541851758957, 0.014856998808681965, -0.02678464725613594, 0.0034234169870615005, -0.007330387365072966, -0.02127634361386299, 0.027807816863059998, -9.515575220575556e-05, -0.01820683293044567, -0.0019079330377280712, 0.01780036650598049, 0.03478780388832092, 0.006177568342536688, 0.015459688380360603, 0.01551575306802988, 0.016146475449204445, 0.01878148876130581, -0.006478913128376007, 0.010266747325658798, -0.006068943999707699, 0.015305512584745884, 0.00135167152620852, 0.029517773538827896, 0.008416630327701569, -0.023196540772914886, 0.004271387122571468, 0.031143633648753166, -0.024359872564673424, -0.00019721001444850117, -0.004320443607866764, 0.03991767391562462, 0.012684513814747334, -0.003661689581349492, 0.011507166549563408, -0.00584819121286273, 0.0007844600477255881, -0.013308227062225342, 0.0012570633552968502, 0.023701118305325508, -0.005865711253136396, -0.0075055877678096294, 0.009082391858100891, 0.024682240560650826, 0.03534844517707825, 0.014590694569051266, -0.0017861686646938324, 0.03148001804947853, 0.0004931893199682236, 0.024808386340737343, 0.01644081063568592, -0.03616137430071831, -0.01548772118985653, -0.0027103512547910213, -0.01725374162197113, 0.006139024160802364, -0.015655912458896637, 0.0063247368671, -0.03148001804947853, 0.0013429115060716867, -0.013448387384414673, 0.03428322821855545, 0.014562662690877914, 0.015824105590581894, 0.002044589491561055, -0.019930804148316383, -0.03293768689036369, -0.0004966933047398925, 0.01142306998372078, -0.0016924365190789104, -0.010056506842374802, 0.007820948958396912, 0.01575402542948723, -0.028032073751091957, 0.02501862682402134, -0.000454645196441561, -0.0029188396874815226, -0.020757751539349556, -0.013420355506241322, 0.000878192309755832, 0.03176033869385719, 0.013154050335288048, -0.0035548172891139984, -0.0029188396874815226, -0.007596692070364952, 0.012320096604526043, 0.010974557138979435, -0.011381021700799465, 0.02140248753130436, 0.023112444207072258, -0.013903908431529999, -0.01576804183423519, -0.02822829782962799, -0.01910385861992836, -0.02591565251350403, 0.009509881027042866, 0.010617148131132126, -0.019748596474528313, 0.017183661460876465, 0.0025369026698172092, 0.018346993252635002, -0.007435507606714964, -0.022958269342780113, 0.03290965408086777, -0.00615304009988904, -0.00025579266366548836, -0.014814951457083225, -0.005077309440821409, 0.003405896946787834, 0.004635804332792759, 0.044066421687603, 0.016552940011024475, -0.0009986426448449492, -0.028424523770809174, 0.007982132956385612, -0.04255268722772598, -0.023897342383861542, 0.016580970957875252, -0.014590694569051266, -0.027611592784523964, -0.006654113531112671, 0.02782183326780796, 0.01241820864379406, 0.02023915760219097, -0.006951954215764999, 0.03184443712234497, -0.011352989822626114, 0.011934655718505383, -0.020211124792695045, 0.019566386938095093, -0.021486584097146988, -0.005413694307208061, 0.03327407315373421, 0.01680522784590721, -0.00878104753792286, 0.0063247368671, 0.010589116252958775, -0.0054557425901293755, -0.008998295292258263, -0.0016915604937821627, 0.023588990792632103, 0.007771892473101616, 0.011030620895326138, -0.017772335559129715, 0.04616882652044296, 0.01427533384412527, -0.01117778941988945, 0.010280762799084187, 0.022411642596125603, -0.003514521289616823, 0.004765452351421118, 0.000915422395337373, 0.023645054548978806, 0.012355136685073376, -0.015529768541455269, 0.0009890065994113684, 0.017127597704529762, 0.01140204630792141, 0.00485655665397644, 0.029517773538827896, -0.012824674136936665, -0.021780921146273613, -0.0010441947961226106, -0.001482195919379592, 0.009972410276532173, -0.028060106560587883, -0.02452806383371353, -0.029657933861017227, -0.009972410276532173, -0.013378307223320007, -0.008402613922953606, 0.013840836472809315, -0.023462845012545586, -0.021052086725831032, 0.0012228991836309433, -0.02402348816394806, 0.009671065956354141, -0.007029042579233646, 0.020659638568758965, 0.0012999874306842685, -0.0004607772279996425, -0.01820683293044567, 0.019706547260284424, 0.011990719474852085, 0.016959404572844505, 0.0008479702519252896, -0.012796641327440739, -0.005115853622555733, 0.027835849672555923, -0.025943685322999954, -0.021752890199422836, 0.01093250885605812, -0.010028474032878876, -0.003696729661896825, -0.010582108050584793, 0.004236347042024136, -0.003942010458558798, -0.010399899445474148, -0.004012090619653463, -0.021038072183728218, 0.011766462586820126, -0.02335071749985218, 0.0060514239594340324, 0.026938823983073235, 0.004232842940837145, 0.02841050736606121, 0.056708887219429016, -0.005662478972226381, -0.004530684091150761, 0.005038765259087086, -0.018122736364603043, -0.03192853182554245, 0.026798661798238754, -0.0029381117783486843, 0.01318909041583538, 0.018276913091540337, 0.026083845645189285, 0.002242565853521228, -0.004803996533155441, 0.0024142623879015446, -0.001687180483713746, -0.006356272846460342, -0.0037247617729008198, 0.020659638568758965, 0.000809426128398627, 0.020659638568758965, 0.03327407315373421, 0.026518341153860092, 0.004411547444760799, -0.0032044164836406708, -0.020337270572781563, 0.014030053280293941, -0.010988572612404823, -0.021738873794674873, 0.022117305546998978, -0.006654113531112671, -0.02977006323635578, -0.01575402542948723, 0.009138456545770168, -0.020169077441096306, 0.001158075057901442, 0.011710398830473423, -0.0453558973968029, -0.027709705755114555, 0.012635457329452038, -0.009145463816821575, 0.0034269210882484913, -0.0017774086445569992, -0.015053223818540573, -0.018627313897013664, -0.009208536706864834, -0.02709299884736538, -0.042300399392843246, 0.015782058238983154, -0.025256898254156113, -0.005788623355329037, 0.015249447897076607, 0.013483427464962006, 0.0411791168153286, 0.009846266359090805, 0.018304944038391113, -0.02479436993598938, -0.007554643787443638, -0.031003473326563835, -0.01562788151204586, -0.03450748324394226, 0.010266747325658798, 0.035432539880275726, 0.028284363448619843, 0.016594987362623215, -0.0056589748710393906, 0.0031798884738236666, 0.0068643540143966675, -0.009565944783389568, -0.01090447697788477, -0.001441899803467095, -0.030582992359995842, 0.0008146821637637913, 0.0011624550679698586, 0.014282342046499252, 0.003197408514097333, 0.015529768541455269, 0.007137666922062635, -0.01616048999130726, 0.03279752656817436, -0.00024374763597734272, 0.010371867567300797, -0.019230002537369728, -0.04115108400583267, -0.028368458151817322, 0.010757308453321457, -0.009124440141022205, -0.0007520479848608375, -0.036245472729206085, -0.020982006564736366, 0.01901976205408573, -0.0009110423852689564, -0.0006394817028194666, -0.006181072443723679, 0.03509615734219551, -0.018669361248612404, 0.015193384140729904, 0.00513687776401639, 0.013791779987514019, 1.1914999959117267e-05, -0.020435381680727005, -0.02501862682402134, 4.369061571196653e-05, 0.006506945006549358, 0.015123303979635239, 0.005925279576331377, 0.005417198408395052, 0.015109287574887276, -0.006244144402444363, 0.006913410034030676, -0.02014104463160038, -0.024766337126493454, -0.011261885985732079, 0.0006959838210605085, -0.008823094889521599, -0.015725992619991302, -0.009320664219558239, -0.009846266359090805, -0.016903340816497803, 0.0020936455111950636, -0.010252730920910835, 0.02126232720911503, -0.04583244025707245, -0.005364638287574053, 0.011051645502448082, 0.003777321893721819, 0.044963445514440536, 0.014114148914813995, 0.035152219235897064, -0.0002531646750867367, 0.006429857108741999, 0.0061915842816233635, 0.0007104378892108798, 0.0005234113777987659, -0.004253867082297802, 0.014212261885404587, 0.03862819820642471, -0.02772372029721737, 0.01670711673796177, 0.000725329911801964, 0.016384746879339218, -0.00833253376185894, -0.020477430894970894, 0.04768255725502968, 0.025397058576345444, 0.004264379385858774, -0.03991767391562462, 0.003116816282272339, -0.03585302084684372, 0.002876791637390852, 0.0004660332342609763, 0.0023844782263040543, 0.02330867014825344, -0.010385883040726185, -0.013322243466973305, 0.016426796093583107, 0.006979986559599638, 0.03927293419837952, 0.0010599627858027816, -0.005732559133321047, -0.00368621782399714, 0.03162017837166786, -0.002286365954205394, 0.002715607173740864, -0.0047374204732477665, 0.015501736663281918, -0.019930804148316383, -0.0009758665692061186, -0.006766241975128651, 0.010105562396347523, -0.009811226278543472, 0.006433360744267702, -0.009678073227405548, 0.03347029536962509, -0.020435381680727005, -0.008157333359122276, 0.025397058576345444, -0.04232843220233917, 0.03652579337358475, -0.031003473326563835, 0.004625292029231787, -0.011801502667367458, -0.030947409570217133, 0.00842363853007555, 0.03618940711021423, 0.021514616906642914, -0.009643033146858215, -0.0022005178034305573, -0.0010941268410533667, -0.01607639528810978, -0.001640752307139337, -0.01707153394818306, 0.004614780191332102, -0.03983357548713684, -0.00021462056611198932, -0.017828399315476418, -0.00178704468999058, 0.0188796017318964, 0.012355136685073376, -0.011570238508284092, 0.0044010356068611145, 0.026224005967378616, -0.015501736663281918, 0.024037502706050873, -0.014254309237003326, -0.002431782428175211, -0.040758635848760605, 0.010645180009305477, -0.01589418575167656, -0.009523897431790829, 0.0072603072039783, 0.00020914555352646858, -0.05157901719212532, -0.014233285561203957, 0.020757751539349556, 0.006307216826826334, -0.0006565637304447591, 0.028690828010439873, 0.04014192894101143, 0.0034076489973813295, -0.016693100333213806, -0.020673654973506927, -0.025957699865102768, 0.03896458446979523, -0.013518467545509338, 0.012586400844156742, 0.032180819660425186, 0.01004949864000082, 0.015655912458896637, -0.02109413594007492, 0.016370730474591255, 0.004460603930056095, -0.02628006972372532, -0.032489173114299774, 0.026756614446640015, 0.03282555937767029, -0.02162674441933632, -0.008115285076200962, -0.018893618136644363, -0.040310122072696686, -0.014590694569051266, 0.031367890536785126, 0.015221416018903255, -0.0028102153446525335, -0.0008505982696078718, 0.026139909401535988, 0.016637036576867104, 0.016875308007001877, 0.003920986317098141, -0.027261191979050636, -0.03363848850131035, -0.01065919641405344, -0.022565819323062897, -0.03052692860364914, -0.007046562619507313, 0.0031115601304918528, -0.0020848854910582304, -0.03212475776672363, -0.031087569892406464, -0.0154036246240139, -0.011338974349200726, -0.03176033869385719, -0.014899047091603279, 0.03103150613605976, 0.060941729694604874, 0.020519478246569633, -0.004649820271879435, 0.02154264971613884, -0.017449965700507164, 0.022888189181685448, -0.038992613554000854, -0.0008444662089459598, 0.019272051751613617, -0.010820380412042141, 0.022565819323062897, -0.006370288785547018, -0.03930096700787544, 0.013903908431529999, 0.00831151008605957, 0.008192373439669609, 0.0174359492957592, 0.031676243990659714, -0.013238146901130676, -0.00866891909390688, -0.007898036390542984, -0.005907759536057711, 0.014184229075908661, -0.014941095374524593, -0.013097986578941345, -0.032180819660425186, 0.010392891243100166, 0.01924401894211769, 0.011710398830473423, -0.007736852392554283, 0.009047351777553558, 0.014983143657445908, 0.00014596388791687787, -0.002058605430647731, -0.016693100333213806, -0.026798661798238754, -0.004534188192337751, -0.027835849672555923, 0.040310122072696686, 0.027990026399493217, -0.0050808135420084, 0.027471432462334633, 0.0014532877830788493, 0.006030399817973375, -0.0078349644318223, 0.026574406772851944, -0.01910385861992836, 0.00031557981856167316, 0.025775492191314697, -0.01488503161817789, 0.001622356241568923, -0.012621440924704075, -0.00805922131985426, -0.01729578897356987, -0.0009294384508393705, -0.007001010701060295, -0.004593756049871445, -0.042104173451662064, 0.005224477965384722, 0.012376160360872746, -0.05202753096818924, -0.028032073751091957, 0.02918138913810253, 0.0008453422342427075, 0.005490782670676708, 0.0092786168679595, -0.03324604034423828, -0.012341120280325413, 0.0031518563628196716, -0.005648463033139706, -0.005494286306202412, -0.03021857514977455, 0.013441379182040691, 0.005108845420181751, -0.03419912979006767, -0.00030813380726613104, 0.1930849254131317, -0.030863313004374504, 0.003920986317098141, 0.03562876582145691, -0.021038072183728218, -0.004236347042024136, -0.011962687596678734, 0.014261317439377308, -0.02000088430941105, 0.029882190749049187, 0.01119881309568882, 0.0066365934908390045, 0.005035261157900095, -0.01280364952981472, -0.0023091421462595463, 0.0028540154453366995, -0.03560073301196098, -0.03234901279211044, -0.020014900714159012, -0.027107015252113342, -0.017407918348908424, -0.023154493421316147, -0.009243576787412167, -0.006296704523265362, 0.02912532538175583, 0.002628006972372532, 0.001999037340283394, -0.015683945268392563, 0.018725425004959106, 0.012852706015110016, -0.01169638242572546, -0.013357283547520638, 0.02420569583773613, 0.0021935098338872194, 0.004740924574434757, -0.02402348816394806, 0.022663932293653488, 0.003581097349524498, 0.024457983672618866, 0.01739390194416046, 0.012929794378578663, -0.0056274388916790485, 0.03333013504743576, -0.037002336233854294, -0.0036126335617154837, -0.0043694996275007725, 0.014828966930508614, -0.029293516650795937, 0.00546275032684207, 0.024990594014525414, -0.013553507626056671, 0.029798094183206558, 0.010806364938616753, 0.027219144627451897, 0.007715828251093626, -0.012789634056389332, -0.012740577571094036, 0.0009355704532936215, -0.008241429924964905, 0.012088831514120102, -0.02162674441933632, 0.006506945006549358, 0.006661121733486652, -0.005371646024286747, -0.03257327154278755, 0.008437654003500938, -0.0075266119092702866, -0.021935097873210907, -0.008318518288433552, -0.006983490195125341, 0.011584254913032055, -0.019412212073802948, -0.005602910649031401, 0.009103416465222836, -0.019538355991244316, -0.02000088430941105, 0.005501294508576393, 0.028620747849345207, 0.02457011304795742, 0.04103895649313927, 0.00029477477073669434, -0.0029030716978013515, -0.003602121490985155, -0.011009597219526768, -0.025004610419273376, -0.01865534484386444, 0.04311332851648331, 0.002764663193374872, -0.00596031965687871, 0.004425563849508762, -0.01341334730386734, -0.00930664874613285, -0.00368621782399714, 0.012432225048542023, -0.01662302017211914, 0.021164216101169586, 0.0007739480352029204, 0.01896369829773903, -0.0022022698540240526, -0.009741146117448807, -0.037114467471838, 0.0372265949845314, 0.02471027337014675, -0.01029477920383215, -0.02573344297707081, -0.017197677865624428, -0.016146475449204445, -0.00869695097208023, -0.011002589017152786, -0.017183661460876465, -0.009930361993610859, -0.04213220626115799, 0.00037646200507879257, -0.0023862302768975496, 0.008213398046791553, 0.006415840703994036, 0.01977662742137909, -0.009341688826680183, 0.003991066478192806, -0.003885946236550808, -0.0023021341767162085, -0.013938948512077332, 0.004257371183484793, 0.024962561205029488, -0.025887619704008102, -0.03237704560160637, -0.013076962903141975, -0.02471027337014675, 0.007624723948538303, -0.02046341449022293, 0.022958269342780113, -0.008451670408248901, 0.011240861378610134, -0.007694804109632969, -0.019089842215180397, -0.0007078098715282977, 0.0013910916168242693, -0.0009040343575179577, -0.02430380880832672, -0.003412904916331172, -0.0015478960704058409, -0.003819370176643133, 0.01963646709918976, -0.015277480706572533, 0.010042490437626839, -0.008304501883685589, 0.019033778458833694, 0.013651619665324688, -0.022005178034305573, -0.006356272846460342, -0.017646189779043198, 0.004152250941842794, -0.005115853622555733, 0.010378875769674778, 0.03260130062699318, -0.005277038086205721, -0.00817835796624422, -0.02818625047802925, 0.003537297248840332, -0.02136044017970562, -0.02881697192788124, -0.014464549720287323, 0.014086117036640644, 0.0013902157079428434, -0.02316850982606411, 0.004590251948684454, -0.17996591329574585, 0.021668793633580208, 0.0031150642316788435, -0.02573344297707081, 0.006415840703994036, 0.0024703266099095345, -0.010911485180258751, 0.012102847918868065, 0.006892386358231306, -0.014394469559192657, 0.028074122965335846, 0.0005492534255608916, -0.018711408600211143, -0.017996590584516525, 0.012852706015110016, 0.0019499810878187418, 0.008339541964232922, 0.0041837869212031364, 0.03781526908278465, 0.010336827486753464, 0.024724289774894714, -0.03941309452056885, -0.00981823354959488, -0.0005672114784829319, -0.0037878339644521475, 0.013854852877557278, -0.03361045569181442, 0.009874298237264156, 0.013350275345146656, -0.011072669178247452, -0.034255195409059525, 0.01492707896977663, -0.00012526832870207727, -0.00020465604029595852, 0.017407918348908424, 0.004320443607866764, -0.017127597704529762, -0.009390744380652905, -0.013119010254740715, 0.01575402542948723, 0.025663362815976143, 0.03921687230467796, 0.022411642596125603, 0.021836984902620316, -0.013847844675183296, 0.02934958226978779, 0.04140337184071541, 0.006675137672573328, 0.0025088705588132143, -0.016230570152401924, -0.02213132195174694, -0.033302102237939835, -0.0027629113756120205, -0.0031886484939604998, 0.01593623496592045, 0.017225708812475204, 0.018641328439116478, 0.0021882536821067333, 0.0010240466799587011, -0.015445672906935215, 0.01474487129598856, -0.014114148914813995, -0.00737243564799428, -0.020715702325105667, -0.014114148914813995, -0.011864575557410717, -0.027933960780501366, 0.02158469706773758, -0.013861860148608685, 0.008297493681311607, -0.013133026659488678, 0.026854727417230606, 0.003265736624598503, 0.003192152362316847, 0.021038072183728218, 0.013988004997372627, -0.012796641327440739, 0.02962990291416645, 0.01662302017211914, -0.00737243564799428, 0.00397354643791914, 0.03977751359343529, -0.007039554417133331, 0.01548772118985653, -0.0077228364534676075, 0.009558937512338161, 0.016973420977592468, 0.019706547260284424, 0.0073864515870809555, -0.014576678164303303, 0.02086987905204296, -0.008563798852264881, 0.018459120765328407, -0.014772903174161911, -0.0006784637807868421, -0.005021245218813419, 0.010210682637989521, 0.020757751539349556, -0.004534188192337751, -0.008451670408248901, -0.016875308007001877, 0.004257371183484793, -0.0075826761312782764, 0.007743860594928265, 0.014618726447224617, 0.028284363448619843, -0.015922218561172485, -0.0006149536347948015, 0.022061241790652275, -0.007435507606714964, 0.008094261400401592, 0.0021251814905554056, -0.0070500667206943035, 0.01325216330587864, -0.01796855963766575, 0.01621655561029911, 0.00817134976387024, -0.0065279691480100155, 0.00980421807616949, -0.012474273331463337, 0.046084728091955185, -0.015978282317519188, -0.030330704525113106, 0.013175074942409992, -0.015165352262556553, -0.014674791134893894, -0.09396351128816605, -0.003176384372636676, 0.004565724171698093, 0.006612065248191357, -0.0014366437681019306, 0.01918795518577099, 0.00496868509799242, 0.020295221358537674, 0.01106566097587347, 0.030723152682185173, -0.011170781217515469, -0.008844119496643543, -0.023504894226789474, -0.007288339082151651, 0.018080687150359154, -0.0030712641309946775, 0.010329819284379482, -0.0173798855394125, 0.004450091626495123, 0.03089134581387043, -0.008045204915106297, -0.034759771078825, 0.004818012937903404, 0.0006403576699085534, -0.028957132250070572, -0.01156323030591011, -0.03445141762495041, 0.013490435667335987, 0.018052656203508377, 0.014149188995361328, 0.034927964210510254, -0.01253033708781004, 0.003577593481168151, -0.009145463816821575, -0.017015468329191208, -0.000694231828674674, -0.03871229290962219, -0.005417198408395052, 0.006962466519325972, -0.030947409570217133, 0.021164216101169586, 0.017492014914751053, 0.016833260655403137, -0.034115035086870193, -0.022467706352472305, -0.008283478207886219, -0.008157333359122276, 0.04263678565621376, -0.015866152942180634, -0.01589418575167656, 0.0004620912077371031, 0.006682145409286022, -0.005210461560636759, -0.017281774431467056, 0.037142496556043625, 0.0034146569669246674, 0.03052692860364914, 0.015725992619991302, -0.026994887739419937, -0.0036126335617154837, -0.015922218561172485, -0.003346328856423497, -0.013840836472809315, 0.01896369829773903, 0.01963646709918976, 0.013959973119199276, -0.0290412288159132, 0.009271608665585518, 0.026111876592040062, -0.00971311330795288, -0.004145242739468813, 0.018220847472548485, -0.006846833974123001, -0.0017117084935307503, -0.019412212073802948, 0.011388029903173447, -0.006317728664726019, -0.03016251139342785, -9.767425945028663e-05, 0.022187385708093643, 0.007165698800235987, -0.021164216101169586, -0.013112002983689308, 0.02493453025817871, 0.011598270386457443, 0.0057045272551476955, -0.005928783677518368, 0.001886909012682736, -0.009509881027042866, -0.03803952410817146, 0.007975124754011631, 0.0026910791639238596, 0.00651395320892334, 1.7889609807753004e-05, -0.0220332108438015, 0.033302102237939835, 0.005883231293410063, 0.007806932553648949, -0.000471727253170684, -0.01377075631171465, -0.030106447637081146, -0.019902773201465607, -0.06615569442510605, 0.023813247680664062, 0.0023687102366238832, 0.0038684261962771416, 0.00325697660446167, -0.023855295032262802, -0.003854410257190466, -0.00822040531784296, -0.008094261400401592, 0.036693986505270004, 0.0074284994043409824, 0.024135615676641464, -0.012158911675214767, -0.006846833974123001, -0.0016276122769340873, -0.006258160341531038, 0.028382474556565285, -0.011640318669378757, 0.023827262222766876, -0.0038719302974641323, 0.007491571828722954, -0.012614433653652668, 0.017940526828169823, 0.02194911427795887, 0.0027716713957488537, 0.014205253683030605, -0.015123303979635239, 0.02890106849372387, -0.025761475786566734, -0.025270914658904076, 0.014394469559192657, -0.022411642596125603, 0.011254877783358097, 0.015922218561172485, -0.007053570821881294, -0.022005178034305573, 0.03341423347592354, 0.016819244250655174, 0.013602564111351967, -0.018164783716201782, -0.0365818552672863, -0.023687101900577545, -0.0005120233399793506, -0.014618726447224617, -0.013980996794998646, -0.011647326871752739, -0.021052086725831032, 0.01106566097587347, -0.010638171806931496, 0.02501862682402134, 0.016735147684812546, 0.013665636070072651, -0.04140337184071541, -0.02993825450539589, -0.010469979606568813, -0.013988004997372627, 0.011640318669378757, 0.01969253271818161, 0.010519036091864109, 0.0002221760805696249, 0.049841027706861496, 0.023196540772914886, 0.04616882652044296, -0.007624723948538303, 0.01676318049430847, 0.0005860455567017198, -0.011479134671390057, -0.0243879035115242, 0.012677505612373352, -0.03103150613605976, 0.0003383558942005038, -0.027919946238398552, 0.014716838486492634, 0.025621315464377403, 0.006384304724633694, -0.00546275032684207, -0.018052656203508377, 0.0025526706594973803, -0.018571248278021812, 0.011619294993579388, 0.03504009172320366, -0.018571248278021812, 0.010743292048573494, 0.0009942626347765326, 0.021921081468462944, 0.028242314234375954, -0.0038684261962771416, 0.023518910631537437, 0.024626176804304123, -0.007302355486899614, -0.03489993140101433, -0.00808024499565363, -0.009895321913063526, 0.0010310547659173608, 0.02330867014825344, 0.007933076471090317, -0.02040735073387623, 0.03007841482758522, 0.032545238733291626, 0.00402961065992713, 0.009012311697006226, -0.009748153388500214, -0.011163773015141487, -0.019117875024676323, -0.03459157794713974, -0.04258072003722191, -0.029882190749049187, -0.046000633388757706, -0.001734484569169581, 0.0024493024684488773, -0.00846568588167429, 0.0007143798866309226, 0.005690510850399733, 0.029601870104670525, -0.029685966670513153, 0.006079455837607384, -0.0004023040528409183, 0.00048048727330751717, -0.038319844752550125, 0.04005783423781395, 0.010841405019164085, -0.005602910649031401, 0.032405078411102295, 0.0037002337630838156, 0.0307511854916811, 0.005256013944745064, 0.008900183252990246, 0.007295347284525633, 0.006384304724633694, 0.0005164033500477672, 0.0017502526752650738, -0.01065919641405344, -0.02520083449780941, -0.009502872824668884, -0.01300688274204731, 0.003994570579379797, -0.01402304507791996, 0.01865534484386444, 0.002528142649680376, 0.09116030484437943, -0.00609697587788105, -0.015571816824376583, -0.0053331018425524235, -0.009376728907227516, 0.011493150144815445, 0.011331966146826744, 0.018725425004959106, -0.00316236843355, -0.04168369248509407, 0.023603005334734917, -0.021668793633580208, -0.008276470005512238, -0.0394691601395607, -0.007463539484888315, 0.0059743355959653854, -0.00011705580982379615, 0.013378307223320007, 0.008227413520216942, -0.027387335896492004, 0.004818012937903404, -0.0023862302768975496, 0.009138456545770168, -0.002855767495930195, 0.004926636815071106, -0.011233853176236153, 0.014177221804857254, -0.00957295298576355, -0.020197108387947083, -0.04028208926320076, 0.010981565341353416, -0.00025206967256963253, -0.02298630028963089, 0.0030660079792141914, -0.023042364045977592, -0.0013218874810263515, -0.01077132485806942, -0.014674791134893894, -0.014072101563215256, 0.01571197807788849, -0.010042490437626839, 0.0024352865293622017, -0.025621315464377403, -0.015543784946203232, 0.00957295298576355, -0.0048145088367164135, -0.0070921145379543304, -0.011135741136968136, -0.0325172059237957], "e5834cdd-0e9d-484d-a7e8-721644c8e119": [-0.01336638256907463, -0.00931836012750864, -0.009828857146203518, 0.0032049838919192553, -0.011043982580304146, 0.015990765765309334, -0.01591886579990387, 0.008915714919567108, -0.015516219660639763, -0.022375568747520447, 0.015329277142882347, -0.004817361943423748, -0.0037316582165658474, 0.0031205001287162304, -0.012402909807860851, 0.00495756883174181, 0.010447205044329166, -0.019269447773694992, 0.018147794529795647, -0.009620344266295433, -0.02786879986524582, 0.0037855838891118765, -0.010166791267693043, 0.029824504628777504, -0.018449777737259865, -0.00029771478148177266, 0.0008965146844275296, -0.019283829256892204, -0.0014946404844522476, 0.002911987481638789, 0.004069592338055372, -0.008254226297140121, -0.04086848720908165, 0.006755092181265354, -0.018305975943803787, 0.001577326562255621, 0.009663484990596771, 0.005227197427302599, 0.032700542360544205, -0.02161341905593872, 0.02536664716899395, 0.009850426577031612, 0.00996546819806099, -0.03232665732502937, -0.012172826565802097, 0.02417309209704399, 0.023626644164323807, -0.010677287355065346, -0.0006385701126419008, 0.01576068252325058, 0.02572615072131157, 0.019125645980238914, -0.026286978274583817, 0.012834315188229084, 0.021023830398917198, -0.014725309796631336, 0.013459853827953339, 0.023827966302633286, -0.013337621465325356, 0.006230215076357126, 0.008103234693408012, -0.014387375675141811, 0.003284074831753969, 0.007592737674713135, -0.023712925612926483, -0.012755224481225014, -0.0012708489084616303, 0.0043320306576788425, -0.00465918006375432, -0.036985836923122406, 0.030342191457748413, 0.005770049523562193, 0.00323014915920794, -0.00986480712890625, 0.0025974209420382977, -0.010145220905542374, -0.025194084271788597, -0.012755224481225014, 0.028199544176459312, 0.00824703648686409, 0.01790333166718483, -0.004055212251842022, -0.05150982365012169, 0.018334737047553062, 0.032067812979221344, -0.009505302645266056, 0.006018107756972313, 0.004820957314223051, -0.028875412419438362, 0.0008920208783820271, 0.03080235794186592, 0.01885242387652397, 0.014301094226539135, 0.01038968376815319, 0.0004071389848832041, 0.0021947757340967655, -0.01463902834802866, 0.02046300284564495, -0.01399192027747631, -0.024101190268993378, -0.001047956058755517, -0.006539389491081238, -0.028990453109145164, 0.012021834962069988, -0.0038862451910972595, -0.0013553324388340116, 0.004734675865620375, 0.005496826022863388, 0.0017921306425705552, 0.004691535606980324, -0.025769291445612907, 0.025510448962450027, -0.012978116981685162, -0.0017696615541353822, -0.00892290472984314, -0.015890104696154594, 0.014243573881685734, -0.019168786704540253, -0.02333904057741165, -0.04158749431371689, 0.01768762804567814, 0.015228616073727608, 0.008750342763960361, -0.009440591558814049, 0.018248455598950386, 0.0015036280965432525, 0.017083659768104553, -0.025438547134399414, 0.00941902119666338, -0.008541829884052277, 0.026473920792341232, 0.0035177527461200953, 0.006888108793646097, 0.0007963027455843985, 0.007089431397616863, 0.019456390291452408, -0.01911126635968685, -0.00821827631443739, -0.023425322026014328, -0.01495539303869009, 0.008074474520981312, 0.03606550395488739, 0.005788024514913559, 0.007279968820512295, -0.019657714292407036, 0.025251604616642, 0.012683323584496975, -0.006079223472625017, -0.0011288445675745606, 0.012287868186831474, 0.005629842635244131, 0.0016321510775014758, -0.005076205357909203, -0.02040548250079155, 0.006679595913738012, 0.008707202039659023, -0.0006255380576476455, 0.01239571999758482, -0.02552482858300209, -0.0267759058624506, 0.001982667949050665, 0.039545509964227676, -0.004612444434314966, 0.01361803524196148, 0.031176241114735603, 0.03951675072312355, 0.009598773904144764, 0.003354178275913, -0.012848695740103722, -0.010562245734035969, -0.0027448178734630346, 0.000861912383697927, -0.02645954117178917, 0.01821969449520111, 0.011446627788245678, 0.011957123875617981, 0.018751760944724083, -0.017414404079318047, -0.022476229816675186, -0.028789130970835686, -0.016954239457845688, 0.011022412218153477, 0.01873738132417202, 0.024230612441897392, -0.00819670595228672, 0.008642490953207016, 0.006593314930796623, -0.01041125413030386, 0.0028400865849107504, 0.010483155027031898, 0.01049034483730793, 0.017356883734464645, -0.027379872277379036, -0.018723001703619957, -0.6014368534088135, -0.02996830642223358, -0.00021828671742696315, 0.014998533762991428, -0.015516219660639763, 0.022663172334432602, 0.0019844656344503164, 0.0006556465523317456, -0.04630419611930847, 0.04066716507077217, -0.009634723886847496, 0.032182853668928146, -0.005536371376365423, -0.014380184933543205, 0.0006093603442423046, 0.002004238311201334, -0.0084267882630229, -0.019140027463436127, 0.007075051311403513, 0.011691090650856495, -0.016033906489610672, 0.002654941752552986, 0.011194974184036255, -0.007427365519106388, -0.00702112540602684, -0.027595575898885727, 0.031808968633413315, -0.012704893946647644, 0.00021480402210727334, 0.009124227799475193, -0.01957143284380436, 0.005051040090620518, 0.029047975316643715, -0.0071505471132695675, 0.05752073973417282, 0.0021642178762704134, -0.026545822620391846, 0.02407243102788925, 0.028904171660542488, 0.03638187050819397, -0.011676710098981857, 0.015962006524205208, 0.016997378319501877, -0.0063596367835998535, -0.0003015345137100667, -0.0054680653847754, 0.018766142427921295, -0.016364650800824165, -0.0034458518493920565, -0.020707467570900917, 0.02802698127925396, -0.004515378270298243, -0.012712083756923676, 0.009548443369567394, -0.0014227395877242088, -0.0007495671743527055, 0.01255390141159296, -0.002906594891101122, 0.008484309539198875, -0.02828582376241684, -0.004731080960482359, -0.005133726168423891, -0.009275219403207302, -0.012287868186831474, -0.02427375316619873, 0.014020680449903011, 0.003154653124511242, -0.007341084536164999, 0.005802404601126909, -0.01252514123916626, 0.01988779567182064, 0.013747457414865494, -0.0030468017794191837, -0.0023044247645884752, 0.005924636498093605, 0.012676133774220943, 0.027494914829730988, 0.0024050860665738583, -0.01349580381065607, 0.006844968069344759, 0.014035061001777649, -0.009045136161148548, -0.017917711287736893, -0.010130840353667736, 0.001453297445550561, 0.009009186178445816, -0.017615726217627525, 0.007815631106495857, -0.013395142741501331, -0.022950775921344757, 0.03175145015120506, -0.015300516970455647, 0.003208578797057271, -0.014531177468597889, 0.012151256203651428, 0.004497402813285589, -0.009045136161148548, -0.0031025249045342207, -0.011554478667676449, -0.013689936138689518, -0.010138031095266342, -0.007226042915135622, 0.005442900117486715, -0.00013784755719825625, 0.048777587711811066, 0.02093755081295967, -0.014106961898505688, -0.03508765250444412, 0.042248982936143875, -0.013632415793836117, 0.002439238829538226, 0.002849074313417077, -0.0056837680749595165, -0.01576068252325058, -0.0054393052123487, -0.03367839381098747, 0.030457232147455215, 0.010188361629843712, -0.0008362976368516684, 0.024705158546566963, 0.02171408012509346, -0.003253516973927617, 0.0037783936131745577, 0.0005720617482438684, 0.005144511349499226, 0.022821353748440742, 0.025898713618516922, -0.012187207117676735, 0.03339079022407532, -0.0067227366380393505, 0.008225466124713421, -0.030457232147455215, 0.027653096243739128, -0.00785877089947462, 0.013524563983082771, -0.01748630590736866, 0.0217572208493948, -0.0002054793731076643, 0.03905658423900604, -0.013028447516262531, -0.028515907004475594, 0.002354755299165845, -0.006190669722855091, -0.021325815469026566, -0.009102657437324524, -0.025510448962450027, -0.03068731538951397, 0.0012007454643025994, -0.026488302275538445, 0.010864229872822762, -0.010928940959274769, 0.005363808944821358, 0.00695641478523612, 0.016824817284941673, -0.0322403758764267, 0.009181748144328594, 0.010555055923759937, -0.05798090621829033, 0.013244151137769222, -0.04233526438474655, -0.007078646216541529, 0.030457232147455215, -0.005705338437110186, -0.009907947853207588, 0.016882337629795074, 0.007643068674951792, -0.010382493957877159, 0.010785139165818691, -0.006629265379160643, -0.013042828068137169, -0.010727617889642715, -0.0130212577059865, -0.009591584093868732, -0.0026297764852643013, -0.002757400507107377, 0.011000841856002808, -0.02630135975778103, -0.027897559106349945, 0.02369854599237442, 0.012683323584496975, 0.000636772601865232, 0.04552766680717468, 0.009534062817692757, -0.003821534337475896, 0.006826993077993393, 0.0030108513310551643, 0.01895308494567871, 0.029062354937195778, -0.02405804954469204, 0.0492665134370327, -0.022936396300792694, 0.017759528011083603, -0.023267140612006187, 0.000606214685831219, -0.03851013630628586, 0.04150121659040451, -0.020117878913879395, -0.008987615816295147, -0.0015404773876070976, 0.006449513137340546, 0.0113028259947896, 0.04299675300717354, 0.024820199236273766, -0.005216412246227264, -0.013625225983560085, -0.021944163367152214, 0.006916868966072798, -0.04311179742217064, 0.04265163093805313, 0.007434555795043707, 0.00770058948546648, 0.006535794120281935, -0.028731610625982285, 0.012726464308798313, 0.00118097267113626, 0.011087123304605484, -0.0068341828882694244, 0.02135457471013069, -0.029479380697011948, -0.014121342450380325, 0.005033065099269152, -0.025611110031604767, 0.02786879986524582, -0.0009171862038783729, -0.022145485505461693, -0.021066971123218536, 0.018823662772774696, 0.015731923282146454, 0.007794060278683901, 0.005288313142955303, 0.016192087903618813, 0.023108957335352898, 0.004781411495059729, -0.003355975728482008, 0.02259127050638199, -0.004939593840390444, 0.03471376746892929, 0.0036777323111891747, 0.015127955004572868, 0.00824703648686409, -0.013165059499442577, 0.006323686335235834, 0.032010290771722794, -0.01905374601483345, -0.007251208648085594, -0.006032487843185663, 0.028429625555872917, 0.011180594563484192, -0.012136876583099365, 0.018032751977443695, -0.007107406388968229, 0.014099772088229656, -0.01566002145409584, -0.014531177468597889, 0.026948466897010803, -0.025194084271788597, -0.014178862795233727, 0.0077365399338305, 0.030399711802601814, 0.00869282241910696, 0.02197292260825634, -0.0065897200256586075, 0.02020416036248207, -0.006122363731265068, 0.01962895318865776, 0.006273355800658464, -0.03330450877547264, -0.0205205250531435, 0.013057208620011806, -0.030773596838116646, 0.0013014067662879825, -0.006438727956265211, -0.005967776756733656, -0.02588433399796486, 0.007279968820512295, 0.012050595134496689, 0.029766984283924103, 0.010785139165818691, 0.016220849007368088, -0.010066130198538303, -0.033793434500694275, -0.03876898065209389, 0.015429939143359661, 0.016307130455970764, 0.018981844186782837, -0.026531441137194633, -0.006798232439905405, 0.02077936753630638, -0.023554744198918343, 0.008513069711625576, -0.016623495146632195, 0.01498415321111679, -0.006629265379160643, -0.010231501422822475, 0.0035141578409820795, 0.03016962856054306, 0.0060936035588383675, 0.007563977502286434, 0.014523987658321857, 0.005511206109076738, 0.0027699831407517195, 0.007657448761165142, -0.02515094354748726, 0.016364650800824165, 0.014941012486815453, -0.019140027463436127, -0.0189387034624815, -0.026430780068039894, -0.00936869066208601, -0.027782518416643143, 0.022433089092373848, 0.012136876583099365, -0.020678706467151642, 0.014567127451300621, -0.00016627089644316584, 0.009037946350872517, -0.005992942024022341, -0.014049441553652287, 0.024662017822265625, -0.00707145594060421, 0.012546711601316929, -0.030313430353999138, 0.00887257419526577, 0.02489210106432438, 0.01988779567182064, 0.057491980493068695, 0.01863672025501728, 0.0003195097378920764, -0.024561356753110886, 0.014286714605987072, -0.024144330993294716, -0.02459011785686016, 0.022519370540976524, -0.001971883000805974, -0.02756681479513645, -0.005471660755574703, 0.01080670952796936, 4.9291455070488155e-05, 0.025237224996089935, -0.00180111825466156, 0.024561356753110886, -0.013316052034497261, 5.2416057769733015e-06, -0.01639341190457344, 0.00928959995508194, -0.0068341828882694244, 0.010504725389182568, 0.03364963456988335, 0.024086810648441315, 0.007028315681964159, 0.040897246450185776, 0.007024720776826143, 0.010964890941977501, 0.006557364482432604, -0.014696549624204636, 0.03330450877547264, 0.018924323841929436, 0.014531177468597889, 0.009390261024236679, 0.04196137934923172, 0.0009275219636037946, -0.017155561596155167, 0.0052847182378172874, 0.015228616073727608, -0.0030719670467078686, 0.024288132786750793, 0.004479427821934223, -0.015789443626999855, 0.03120500221848488, -0.0197871346026659, -0.0017301160842180252, 0.01511357445269823, 0.01088580023497343, 0.0005985752213746309, 0.03408103808760643, 0.0155306002125144, -0.016681015491485596, -0.005859925411641598, 0.0197296142578125, 0.024259373545646667, -0.016882337629795074, -0.02332466095685959, -0.016982998698949814, -0.01633588969707489, -0.030543513596057892, -0.025294745340943336, 0.020578045397996902, -0.018981844186782837, -0.030974918976426125, -0.016781676560640335, -0.03252797946333885, -0.00871439278125763, -0.010094890370965004, 0.01952829211950302, 0.007172117475420237, -0.013172250241041183, -0.022620031610131264, 0.041414935141801834, 0.00983604695647955, 0.015616881661117077, 0.015688782557845116, -0.010921751148998737, -0.01649407297372818, 0.02407243102788925, -0.009756955318152905, -0.025654250755906105, 0.008362078107893467, -0.01794647052884102, -0.007168522570282221, -0.005827570334076881, 0.015516219660639763, -0.00104076589923352, -0.003068372141569853, -0.000321981351589784, -0.014265144243836403, -0.00869282241910696, -0.0051049659959971905, 0.014941012486815453, 0.02374168671667576, -0.007635878399014473, 0.016148949041962624, 0.021440856158733368, 0.0005190348019823432, -0.009649104438722134, -0.0025219249073415995, -0.02437441423535347, -0.01336638256907463, 0.017040519043803215, -0.01026026252657175, 0.019643332809209824, -0.0056657930836081505, 0.021483996883034706, -0.0033415956422686577, -0.017975231632590294, -0.0008726975065656006, 0.001188162830658257, 0.007499266881495714, -0.007369845174252987, 0.007628688123077154, 0.012431669980287552, 0.02630135975778103, 0.013057208620011806, 0.014308284036815166, -0.002401490928605199, -0.0007014833972789347, -0.0011998467380180955, 0.03431112319231033, -0.0013616237556561828, -0.005809594877064228, 0.007096621673554182, -0.0036309969145804644, -0.022663172334432602, -0.008757532574236393, 0.019542671740055084, -0.018032751977443695, 0.011993074789643288, 0.00986480712890625, -0.03851013630628586, -0.04567147046327591, 0.0033272153232246637, 0.00029704070766456425, 0.011000841856002808, -0.004536948632448912, -0.021642178297042847, -0.026430780068039894, 0.0046088495291769505, -0.029407478868961334, -0.031291283667087555, 0.0014883491676300764, -0.020060358569025993, -0.008944475091993809, -0.009081087075173855, 0.023037057369947433, 0.03497261181473732, 0.00030400609830394387, -0.001287925406359136, -0.030543513596057892, -0.01742878556251526, -0.025294745340943336, -0.02574053220450878, -0.024906480684876442, 0.0016420374158769846, 0.055191151797771454, 0.008491499349474907, 0.021167632192373276, -0.008304556831717491, 0.020764987915754318, -0.003424281720072031, -0.003433269215747714, 0.003611224004998803, -0.0130500178784132, -0.023626644164323807, -0.005241577513515949, -0.0077796801924705505, -0.005083395633846521, -0.000504654657561332, 0.02066432684659958, 0.008088854141533375, -0.016537213698029518, 0.02318085916340351, -0.010914560407400131, -0.00978571642190218, -0.016666634008288383, -0.04552766680717468, -0.039229147136211395, 0.011274064891040325, -0.02040548250079155, 0.0001115026097977534, -0.04268039017915726, -0.0033038475085049868, 0.019010605290532112, -0.0004628622264135629, 0.005025874823331833, -0.0008924702415242791, 0.020002838224172592, -0.011000841856002808, 0.04075344651937485, -0.0003383837465662509, 0.01088580023497343, 0.0020923169795423746, -0.013977539725601673, -0.012877455912530422, -0.011626379564404488, 0.005137321073561907, 0.0071038114838302135, 0.02050614356994629, -0.013574894517660141, 0.018967464566230774, -0.009519682265818119, 0.017299363389611244, -0.025769291445612907, -0.019442010670900345, 0.00090055912733078, -0.015314897522330284, -0.011971504427492619, -0.015947625041007996, -0.005989347118884325, 0.010418443940579891, -0.0020096309017390013, -0.011856462806463242, 0.006302116438746452, 0.0197871346026659, -0.03813625127077103, -0.017342504113912582, -0.0024410365149378777, -0.006949224509298801, 0.030974918976426125, 0.038912780582904816, 0.03304566442966461, 0.026229457929730415, 0.01832035556435585, -0.0008461840334348381, -0.007722159381955862, 0.014969772659242153, 0.004612444434314966, 0.023094577714800835, 0.027998220175504684, -0.02574053220450878, 0.008700012229382992, 0.008599351160228252, 0.006237405352294445, -0.011583239771425724, -0.021182013675570488, 0.040523361414670944, 0.03298814594745636, 0.013452663086354733, -0.02937871776521206, 0.002547090407460928, -0.02917739562690258, -0.011461007408797741, 0.00497194891795516, 0.016580354422330856, 0.017673248425126076, -0.020419863983988762, -0.019240688532590866, 0.015616881661117077, -0.026128796860575676, 0.01826283521950245, 0.012417290359735489, -0.01732812263071537, -0.0007931570871733129, 0.02379920706152916, -0.007981003262102604, -0.0027753757312893867, -0.0189387034624815, 0.014854731038212776, -0.016781676560640335, 0.0015827191527932882, -0.011741421185433865, -0.0016483287326991558, -0.017443165183067322, -0.01566002145409584, -0.0030234339646995068, 0.031808968633413315, -0.0005149904172867537, -0.010612577199935913, 0.022260526195168495, -0.019341349601745605, 0.033994756639003754, -0.02046300284564495, 0.01706928014755249, -0.007643068674951792, -0.035519056022167206, 0.011683900840580463, 0.03048599325120449, 0.013747457414865494, 0.009692245163023472, -0.02427375316619873, -0.013833737932145596, -0.02484896034002304, 0.010152410715818405, -0.0196720939129591, -0.008261416107416153, -0.030140869319438934, -0.0017516863299533725, -0.017788289114832878, -0.014329854398965836, 0.011496958322823048, 0.0045585185289382935, 0.0015404773876070976, 0.016724156215786934, 0.026186317205429077, -0.023511603474617004, 0.008700012229382992, -0.026229457929730415, -0.018133413046598434, -0.044808655977249146, 0.007945052348077297, -0.007107406388968229, -0.009138607420027256, 0.0033146326895803213, -0.003239136654883623, -0.05599644035100937, -0.00015166601224336773, 0.01811903342604637, 0.015775064006447792, -0.007844391278922558, 0.021182013675570488, 0.054932307451963425, 0.009656294248998165, -0.0011755801970139146, 0.0028994048479944468, -0.002928165253251791, 0.039430469274520874, -0.012704893946647644, -0.0011674913112074137, 0.01806151308119297, -0.0021875856909900904, 0.017054900527000427, -0.007614308036863804, -0.0007482190267182887, 0.00027142598992213607, -0.02354036271572113, -0.02264879271388054, 0.01810465380549431, 0.015329277142882347, -0.01754382625222206, -0.019039364531636238, -0.018291596323251724, -0.015041673555970192, -0.020232921466231346, 0.029163016006350517, 0.01586134359240532, 0.005478850565850735, -0.005076205357909203, 0.003958146087825298, 0.01448803674429655, 0.012899026274681091, 0.009871996939182281, -0.02693408727645874, -0.022274907678365707, -0.0017139383126050234, -0.02197292260825634, -0.03482880815863609, -0.005460875574499369, 0.01686795800924301, 0.0046735601499676704, -0.037446003407239914, -0.013380762189626694, -0.030773596838116646, 0.008642490953207016, -0.02149837650358677, -0.025596730411052704, 0.01935572922229767, 0.05464470386505127, 0.01617770828306675, -0.013869688846170902, 0.030342191457748413, -0.01518547534942627, -0.0036094265524297953, -0.02558234892785549, 0.001242088503204286, 0.015962006524205208, -0.012733654119074345, 0.02588433399796486, -0.024417554959654808, -0.047886017709970474, 0.01518547534942627, 0.009383071213960648, 0.025826813653111458, 0.0030144464690238237, 0.006963604595512152, -0.018406637012958527, 0.01028183288872242, -0.0007518140482716262, -0.013416713103652, 0.005895875860005617, -0.008786293677985668, 0.0036921126302331686, -0.047253288328647614, -0.0030198388267308474, 0.028357725590467453, 0.009562822990119457, 0.0038323192857205868, 0.002135457471013069, 0.016537213698029518, -0.007463316433131695, -0.011008031666278839, -0.015271756798028946, -0.011993074789643288, 0.0059821573086082935, -0.03215409442782402, 0.042565349489450455, 0.0016770891379565, 0.0037424431648105383, 0.024604497477412224, 0.0014326259260997176, -0.003611224004998803, -0.00834769755601883, 0.005029469728469849, -0.019125645980238914, -0.022835735231637955, 0.02865970879793167, -0.018550438806414604, -0.008462739177048206, -0.0056190574541687965, -0.011863652616739273, -0.012517951428890228, -0.03267177939414978, -0.0031097151804715395, -0.007377034984529018, -0.033534593880176544, 0.005392569582909346, 0.022922014817595482, -0.045901551842689514, -0.0017678639851510525, 0.004979139193892479, -0.020161019638180733, 0.024662017822265625, 0.014660598710179329, -0.02979574352502823, -0.02359788492321968, -0.006241000257432461, -0.0064279427751898766, -0.021742839366197586, -0.02802698127925396, -0.007657448761165142, 0.003925790544599295, -0.011245304718613625, 0.006934844423085451, 0.19488027691841125, -0.020434243604540825, 0.008261416107416153, 0.022735072299838066, -0.015645641833543777, 0.024906480684876442, -0.034627486020326614, 4.465721758606378e-06, -0.016005145385861397, 0.038596417754888535, 0.012273488566279411, 0.022476229816675186, 0.0059785619378089905, -0.009979848749935627, -0.002469796920195222, 0.00941902119666338, -0.041731297969818115, -0.027063509449362755, -0.03431112319231033, -0.013193819671869278, -0.003803559113293886, -0.02400052919983864, 0.0007086734985932708, -0.005108560901135206, 0.041788820177316666, 0.009390261024236679, 0.011719850823283195, -0.003636389272287488, 0.02871723100543022, 0.009584393352270126, -0.04207642376422882, 0.009721005335450172, 0.017673248425126076, 0.004785006865859032, 0.0067910426296293736, -0.028616568073630333, 0.01899622566998005, 0.0012214169837534428, 0.020966310054063797, -0.014150102622807026, 0.004702320788055658, -0.015803823247551918, 0.03198153153061867, -0.029479380697011948, -0.017975231632590294, 0.012129686772823334, 0.010130840353667736, -0.020764987915754318, 0.005507611203938723, -0.0023206023033708334, -0.0056514129973948, 0.02871723100543022, 0.026833426207304, 0.017558205872774124, 0.024662017822265625, -0.00994389783591032, 0.002300829626619816, 0.003958146087825298, -0.024129951372742653, 0.020218539983034134, -0.02530912682414055, 0.01287026610225439, 0.01031059306114912, -0.017630107700824738, -0.029882024973630905, 0.0017696615541353822, -0.014049441553652287, -0.026171937584877014, 0.00996546819806099, -0.007377034984529018, 0.012597042135894299, -0.026488302275538445, -0.01899622566998005, 0.015242996625602245, -0.029033593833446503, -0.019442010670900345, 0.009512492455542088, 0.026531441137194633, 0.019010605290532112, 0.028875412419438362, 0.006280546076595783, 0.002911987481638789, -0.0017993206856772304, -0.020333582535386086, -0.013452663086354733, -0.018492918461561203, 0.026186317205429077, 0.00015447464829776436, -0.004716700874269009, -0.0035177527461200953, -0.03074483573436737, -0.005173271521925926, -0.006107983645051718, 0.002268474316224456, -0.017615726217627525, -0.005892280954867601, 0.0033829386811703444, 0.0010209931060671806, 0.0018119033193215728, -0.02139771543443203, -0.04575774818658829, 0.04607411473989487, 0.018449777737259865, -0.013459853827953339, -0.042248982936143875, -0.014200433157384396, 0.006057653110474348, 0.021728459745645523, -0.004529758356511593, -0.005464470479637384, -0.006125959102064371, -0.028573429211974144, -0.004105542786419392, -0.002198370872065425, 0.021225154399871826, 0.03126252442598343, 0.00939745083451271, 0.002904797438532114, -0.008045713417232037, -0.012180017307400703, 0.009332740679383278, -0.017658866941928864, -0.0032283517066389322, 0.00890133436769247, -0.020966310054063797, -0.030658554285764694, 0.0025452927220612764, -0.015473079867661, -0.0027520079165697098, -0.03333326801657677, 0.02358350344002247, -0.0029964710120111704, 0.011712661013007164, -0.016148949041962624, 0.004310460761189461, 0.004367981106042862, -0.002874239580705762, -0.009584393352270126, -0.0040192618034780025, 0.007287159096449614, -0.005633437540382147, -2.235669489891734e-05, 0.02046300284564495, -0.002360147889703512, -0.00897323526442051, -0.01028183288872242, 0.02165655978024006, 0.005090585444122553, -0.02479143999516964, -0.01665225438773632, -0.009490922093391418, -0.01187803316861391, -0.013093158602714539, 0.014674979262053967, 0.02953690104186535, -0.016192087903618813, -0.01768762804567814, -0.05542123317718506, 0.0020473788026720285, -0.016623495146632195, -0.046908166259527206, 0.001839764998294413, 0.03209657222032547, 0.0014344234950840473, -0.027595575898885727, 0.00015818203974049538, -0.1856769472360611, 0.011913983151316643, 0.008764723315834999, -0.0162927508354187, 0.023310281336307526, 0.01883804239332676, -0.0038431044667959213, -0.0023655404802411795, -0.002852669218555093, -0.00973538588732481, 0.023295899853110313, -0.00933993048965931, -0.022519370540976524, 0.004234964493662119, -0.00024828288587741554, 0.004227774683386087, 0.005601081997156143, 0.01786019094288349, 0.029148636385798454, 0.019815895706415176, 0.03497261181473732, -0.02939309924840927, -0.0004410672408994287, -0.006334471516311169, -0.013006878085434437, 0.03422484174370766, -0.03215409442782402, 0.0029695082921534777, 0.028616568073630333, -0.00047274859389290214, -0.019700853154063225, 0.0018514489056542516, 0.005119346082210541, 0.014660598710179329, -0.0006781156407669187, -0.00097066251328215, -0.0197871346026659, -0.014193243347108364, -0.00385029474273324, 0.027121029794216156, 0.01617770828306675, 0.032499220222234726, -0.011310015805065632, 0.017400024458765984, -0.019844654947519302, 0.02516532503068447, 0.04895015060901642, 0.026344500482082367, 0.008592160418629646, -0.015688782557845116, -0.014754069969058037, -0.031866490840911865, 0.0004637609818018973, 0.010015798732638359, 0.008340507745742798, 0.025251604616642, 0.012640182860195637, -0.011180594563484192, -0.0015099194133654237, -0.014229193329811096, 0.011662330478429794, -0.02098068967461586, -0.012331008911132812, -0.008110424503684044, -0.019614573568105698, -0.002748413011431694, -0.023037057369947433, 0.01806151308119297, -0.027178550139069557, 0.02421623282134533, -0.02103821188211441, -0.004554923623800278, 0.004367981106042862, -0.008534640073776245, 0.007448935881257057, -0.006611290387809277, -0.026042515411973, 0.03439740464091301, 0.017932090908288956, 0.0077581098303198814, 0.006107983645051718, 0.041213613003492355, -0.004691535606980324, 0.024043669924139977, -0.008980426006019115, -0.010519105941057205, 0.01038968376815319, 0.005126535892486572, -0.0032103764824569225, -0.004698725417256355, 0.028990453109145164, 0.006571744568645954, 0.011525718495249748, -0.013905638828873634, -0.002773578278720379, 0.0024733918253332376, -0.0009886377956718206, 0.008362078107893467, 0.007359059993177652, -0.023569123819470406, -0.021412096917629242, -0.004119923338294029, -0.011568859219551086, 0.015314897522330284, 0.036985836923122406, 0.013093158602714539, -0.023209618404507637, 0.009462161920964718, 0.04765593260526657, -0.022476229816675186, -0.005033065099269152, 0.017817050218582153, -0.0045944694429636, 0.015041673555970192, -0.0029173800721764565, 0.010655716992914677, 0.009936708025634289, -0.0109073705971241, -0.001880209194496274, 0.009476542472839355, 0.046217914670705795, -0.003679529996588826, -0.01613456755876541, 0.013316052034497261, -0.020951930433511734, -0.012316628359258175, -0.0870288833975792, -0.02516532503068447, 0.007786870468407869, 0.02656020224094391, -0.020578045397996902, -0.0034907900262624025, 0.0023943008854985237, 0.027782518416643143, 0.003548310836777091, 0.03431112319231033, 0.002509342273697257, -0.01182051282376051, -0.024129951372742653, 0.0012753426562994719, 0.01540117897093296, -0.012654563412070274, -0.00624819053336978, -0.005158891435712576, -0.00039186005597002804, 0.049410317093133926, -0.005338643677532673, -0.018550438806414604, -0.0002121077268384397, -0.008707202039659023, -0.027322351932525635, -0.012978116981685162, -0.029738223180174828, 0.012230347841978073, 0.0020905195269733667, 0.0044290972873568535, 0.02979574352502823, -0.00600013229995966, 0.02996830642223358, -0.003533930517733097, -0.00869282241910696, -0.003986906260251999, -0.03439740464091301, -0.006251785438507795, 0.01197869423776865, -0.04075344651937485, 0.025438547134399414, 0.028055742383003235, 0.029263677075505257, -0.0436294823884964, 0.002631573937833309, -0.004731080960482359, -0.0016132770106196404, 0.044233448803424835, -0.01994531787931919, -0.022792594507336617, -0.014387375675141811, 0.014214812777936459, -0.017716389149427414, -0.03272930160164833, 0.03643938899040222, -0.025122184306383133, 0.02985326573252678, 0.028559047728776932, -0.030946159735322, -0.013308861292898655, -0.019082505255937576, 0.0005662197945639491, -0.021469617262482643, 0.009052326902747154, 0.015314897522330284, 0.013769027777016163, -0.025194084271788597, -0.02270631305873394, 0.026430780068039894, 0.004961163736879826, -0.024230612441897392, 0.008268606849014759, -0.013905638828873634, -0.01189960353076458, -0.013229770585894585, 0.010677287355065346, -0.0032660996075719595, -0.03152136504650116, -0.0052379826083779335, 0.0007482190267182887, -0.005018684547394514, -0.02030482143163681, -0.027264831587672234, 0.014998533762991428, 0.020592425018548965, 0.002881429623812437, 0.005852735601365566, -0.004105542786419392, -0.012783984653651714, -0.04360072314739227, 0.0065214140340685844, -0.01200745441019535, 0.007499266881495714, -0.008462739177048206, -0.02159903757274151, 0.031089961528778076, 0.026373259723186493, -0.0029173800721764565, -0.006266165990382433, 0.0028616569470614195, -0.028213923797011375, -0.016781676560640335, -0.07109563797712326, 0.04843246564269066, -0.00340450881049037, 0.017040519043803215, -0.01816217415034771, -0.008886954747140408, -0.007671828847378492, 0.001172883901745081, -0.010231501422822475, 0.03672699257731438, -0.009073897264897823, 0.023454083129763603, -0.012539521791040897, -0.012086546048521996, -0.0028472766280174255, -0.0070858364924788475, 0.036985836923122406, 0.007477696519345045, 0.028990453109145164, -0.028645329177379608, -0.0008259618771262467, 0.0039509558118879795, 0.01811903342604637, 0.011741421185433865, 0.0054357098415493965, 0.012230347841978073, -0.001654620049521327, 0.007973812520503998, -0.024201851338148117, -0.025754911825060844, 0.018435398116707802, -0.020808128640055656, 0.010094890370965004, 0.025869954377412796, -0.01842101663351059, -0.01732812263071537, 0.01905374601483345, 0.014674979262053967, 0.015027293935418129, -0.016565972939133644, -0.010145220905542374, -0.027911940589547157, 0.0006430639186874032, -0.013790598139166832, -0.00923926942050457, -0.008484309539198875, -0.019772754982113838, -0.00084663339657709, -0.004544138442724943, 0.015674402937293053, 0.018651099875569344, 0.014286714605987072, -0.03491508960723877, -0.014811591245234013, -0.001856841379776597, -0.012748034670948982, 0.005442900117486715, 0.006798232439905405, 0.022562511265277863, 0.004299675580114126, 0.04716700688004494, 0.0034422569442540407, 0.04270914942026138, 0.0006538490415550768, 0.004526163451373577, 0.006604100111871958, -0.013244151137769222, -0.015429939143359661, 0.014178862795233727, -0.01299968734383583, 0.009721005335450172, -0.03284434229135513, 0.0014236383140087128, 0.027279211208224297, 0.014768450520932674, 0.012855885550379753, -0.023612264543771744, 0.01925506815314293, -0.00986480712890625, 0.0310036800801754, 0.018866803497076035, -0.012604232877492905, -0.020477384328842163, 0.010217121802270412, 0.007168522570282221, 0.004964759107679129, -0.02796946093440056, 0.004033641889691353, 0.014768450520932674, 0.003239136654883623, -0.0289760734885931, -0.00785877089947462, -0.0011917578522115946, -0.013085968792438507, 0.01391282957047224, 0.02155589871108532, -0.015616881661117077, -0.0007599029340781271, 0.016925478354096413, 0.00310612004250288, 0.018708622083067894, 0.005335048772394657, -0.02254812978208065, -0.025452928617596626, -0.03037095069885254, -0.022203005850315094, -0.01587572507560253, -0.024086810648441315, 0.0130212577059865, -0.008786293677985668, -0.0017265210626646876, -0.003192401258274913, 0.008254226297140121, 0.03157888725399971, -0.011827702634036541, 0.008203895762562752, -5.004978447686881e-05, -0.01448084693402052, -0.03284434229135513, 0.04014947637915611, 0.00931836012750864, -0.009987038560211658, 0.031808968633413315, 0.009476542472839355, 0.04754089191555977, 0.008570590056478977, 0.03339079022407532, -0.006492653861641884, 0.015731923282146454, -0.011748610995709896, 0.0004280352150090039, -0.009879187680780888, -0.03272930160164833, -0.02306581661105156, -0.030255910009145737, 0.015329277142882347, 0.003821534337475896, 0.018766142427921295, 0.00835488736629486, 0.10066130012273788, -0.00039320820360444486, -0.02985326573252678, -0.023094577714800835, 0.011741421185433865, 0.016508452594280243, 0.014078201726078987, 0.0289185531437397, 0.005816785153001547, -0.0379924513399601, 0.01742878556251526, -0.011669520288705826, -0.005241577513515949, -0.022274907678365707, -0.014250763691961765, -0.003720873035490513, 0.006072033196687698, 0.021412096917629242, -0.0002929962647613138, -0.01252514123916626, 0.009210508316755295, 0.011245304718613625, 0.021670939400792122, 0.008153565227985382, -0.02238994836807251, -0.030831117182970047, 0.026286978274583817, 0.004770626313984394, -0.000605765322688967, -0.032125335186719894, 0.002523722592741251, -0.008117614313960075, -0.018607959151268005, -0.010404064320027828, 0.007236828096210957, -0.0062949261628091335, -0.022016063332557678, -0.023137718439102173, -0.008685631677508354, 0.016954239457845688, -0.012985307723283768, 0.003012648783624172, -0.031147481873631477, -0.0259849950671196, 0.008333317004144192, -0.02155589871108532, 0.015631262212991714, -0.015257376246154308, -0.01633588969707489], "4cc6e453-d8cb-4316-9f00-1ad8fc6152ad": [-0.018021833151578903, 0.012959362007677555, -0.013269596733152866, -0.007833433337509632, -0.005411485675722361, 0.04148688167333603, -0.020362697541713715, -0.001530022593215108, -0.01432721596211195, -0.02770962566137314, 0.01759878545999527, -0.017105229198932648, -0.008207125589251518, -0.006997914519160986, -0.019333280622959137, 0.011048596352338791, 0.010463380254805088, -0.01594889909029007, 0.012134418822824955, -0.011422288604080677, -0.017500074580311775, 0.0018455457175150514, 0.004494882188737392, 0.033702801913022995, -0.018910232931375504, -0.01161971129477024, 0.010047383606433868, -0.01957300864160061, -0.0014445317210629582, 0.0066488999873399734, -0.0014692095573991537, -0.0008456548093818128, -0.029190292581915855, 0.013643288984894753, -0.01618862710893154, 0.0004715219547506422, 0.00435386598110199, -0.008115465752780437, 0.0433482900261879, 0.0022809323854744434, 0.027103258296847343, 0.003959021531045437, 0.0002901843108702451, -0.023112507537007332, -0.0048121679574251175, 0.02122289501130581, 0.02033449336886406, 0.004417323507368565, 0.006250530015677214, 0.00946921855211258, 0.014397724531590939, 0.012070962227880955, -0.027780134230852127, -0.006426800042390823, 0.03308233246207237, -0.028245486319065094, 0.015680968761444092, 0.020376799628138542, -0.02648278698325157, -0.003655837383121252, 0.0063527668826282024, -0.021645942702889442, -0.0021857465617358685, 0.004089461173862219, -0.026581499725580215, -0.011097951792180538, -0.0019900870975106955, 0.009151932783424854, -0.008884002454578876, -0.028428807854652405, 0.02071523666381836, 0.012338891625404358, -0.01627323590219021, -0.02205488830804825, -0.010674904100596905, -0.001330837607383728, -0.022463833913207054, -0.0031763834413141012, 0.01993964985013008, 0.005136504303663969, 0.011570354923605919, -0.013812508434057236, -0.03093888983130455, 0.016414251178503036, 0.02732888236641884, -0.005111826583743095, 0.012945260852575302, 0.023676570504903793, -0.048565879464149475, 0.007502046413719654, 0.009553828276693821, 0.023225320503115654, 0.012677330523729324, 0.019262773916125298, 0.0074738431721925735, 0.01620272733271122, -0.010364669375121593, 0.03468991443514824, -0.006201174575835466, -0.03652312234044075, -0.005679415538907051, 0.007600757293403149, -0.01944609358906746, -0.0015212091384455562, -0.014524638652801514, -0.00474871089681983, -0.006116564851254225, 0.009264744818210602, -0.006039006169885397, -0.004861523397266865, -0.03229264169931412, 0.03705897927284241, -0.0030847229063510895, -0.014820772223174572, 0.0059367697685956955, -0.0016128694405779243, 0.00889105349779129, -0.024057313799858093, -0.02387399412691593, -0.02700454741716385, -0.0027409966569393873, 0.021998481824994087, 0.0026599126867949963, -0.03133373335003853, 0.0011404661927372217, 0.034407880157232285, -0.005217588506639004, -0.023549657315015793, 0.017514176666736603, -0.008242379873991013, 0.03285670652985573, 0.025932826101779938, 0.023211218416690826, -0.004484306089580059, -0.0014092777855694294, 0.02122289501130581, -0.0206588301807642, 0.012275435030460358, -0.022407427430152893, -0.004808642435818911, 0.01506049931049347, 0.04236117750406265, 0.02096906490623951, 0.01032236497849226, -0.0011034494964405894, 0.024226533249020576, -0.0006596900639124215, -0.01178187970072031, -0.006098938174545765, 0.012790142558515072, 0.009081424213945866, 0.00968779344111681, -0.0014612773666158319, -0.014038133434951305, 0.013128581456840038, 0.007586656138300896, -0.0011845335830003023, 0.012254282832145691, -0.01728855073451996, -0.03435147553682327, -0.006959135178476572, 0.04738134518265724, 0.010999240912497044, 0.004375018645077944, 0.010914631187915802, 0.0248470026999712, 0.020235782489180565, -0.013318953104317188, -0.015384836122393608, -0.013890067115426064, -0.013297799974679947, -0.004921455401927233, -0.0005486400332301855, -0.003927293233573437, 0.012620924040675163, 0.0072129638865590096, 0.0059720235876739025, -0.007995601743459702, -0.008792341686785221, -0.0226894598454237, -0.024156024679541588, 0.012945260852575302, 0.016752690076828003, 0.027935251593589783, -0.020630627870559692, 0.0004776913847308606, 0.012564517557621002, -0.02579180896282196, 0.00975125003606081, -0.016936011612415314, 0.010251856409013271, 0.028245486319065094, -0.0016199202509596944, -0.001265617785975337, -0.6231775283813477, -0.022816374897956848, -0.007304624188691378, 0.006490257102996111, -0.00902501866221428, 0.02495981566607952, -0.009596132673323154, 0.0013352443929761648, -0.020616525784134865, 0.045266106724739075, -0.010921682231128216, 0.04066898673772812, -0.0037615993060171604, 0.005150605924427509, -0.003349127946421504, -0.01365739107131958, -0.0015820222906768322, 8.703325875103474e-06, 0.01587839052081108, 0.010562092065811157, -0.01919226534664631, 0.0035130588803440332, 0.019262773916125298, 0.007628960534930229, -0.006856898777186871, -0.011718422174453735, 0.022957390174269676, -0.022900983691215515, -0.0012268384452909231, -0.006285784300416708, -0.0247200895100832, 0.0052281650714576244, 0.01982683688402176, -0.0029119786340743303, 0.04645064100623131, -0.0029313683044165373, -0.02693403884768486, 0.02160363644361496, 0.03418225795030594, 0.023479148745536804, -0.023902196437120438, -0.008869900368154049, 0.02147672325372696, 0.013734949752688408, 0.0025224220007658005, -0.004082410596311092, 0.017880817875266075, 0.01264207623898983, -0.0005305723752826452, -0.0223087165504694, 0.025763606652617455, 0.005217588506639004, -0.012106215581297874, 0.002802691189572215, 0.0256084892898798, -0.0023144236765801907, 0.03311053663492203, -0.017485972493886948, 0.0033279755152761936, -0.011408187448978424, -0.006983812898397446, 0.0032292644027620554, -0.010012129321694374, 0.009003865532577038, -0.03226444125175476, 0.030346624553203583, 0.007339878007769585, -0.005252842791378498, -0.0013942947844043374, -0.02166004292666912, 0.02249203808605671, 0.008270583115518093, 0.001820867881178856, 0.002210424281656742, -0.014792568981647491, 0.0065537141636013985, -0.0029119786340743303, 0.008940408937633038, -0.021645942702889442, 0.003583566751331091, 0.0006341309053823352, -0.011358831077814102, -0.010315313935279846, -0.005034267902374268, 0.0031270277686417103, 0.007480894215404987, -0.021138284355401993, 0.007981500588357449, -0.021194690838456154, -0.013946473598480225, 0.024254735559225082, -0.017626987770199776, -0.0011316526215523481, -0.011034495197236538, -0.004917929880321026, 0.007579605095088482, -0.0028379452414810658, -0.004064783453941345, -0.0051329792477190495, -0.006751136854290962, -0.011986352503299713, -0.0033367888536304235, 0.008397497236728668, -0.022900983691215515, 0.0425868034362793, -0.0013387697981670499, -0.01451053749769926, -0.026384076103568077, 0.044702041894197464, -0.02254844456911087, 0.0032028239220380783, -0.0069908639416098595, -0.031220922246575356, -0.01745777018368244, -0.0037545484956353903, -0.026468686759471893, 0.036438509821891785, 0.012113266624510288, 0.004427899606525898, 0.00396959763020277, 0.0219279732555151, -0.007043744903057814, 0.00767126539722085, 0.007220014464110136, 0.016245033591985703, 0.03494374081492424, 0.00867247860878706, -0.008009703829884529, 0.01111910492181778, 0.0006120972102507949, 0.0043609170243144035, -0.016301438212394714, 0.02787884511053562, -0.018317965790629387, 0.011535101570189, -0.03525397554039955, 0.02584821544587612, 0.02006656304001808, 0.03832812234759331, -0.014552841894328594, -0.02205488830804825, -0.006165920756757259, -0.01099218986928463, -0.018585896119475365, 0.0007672146894037724, -0.02370477467775345, -0.03257467597723007, 0.024240635335445404, -0.01470795925706625, -0.003453127108514309, -0.0007125710253603756, -0.0103294150903821, 0.007487944792956114, 0.036805152893066406, -0.0276391189545393, 0.008376345038414001, 0.005845109466463327, -0.041402269154787064, 0.01060439646244049, -0.02387399412691593, -0.0008139262208715081, 0.03677694872021675, -0.018078239634633064, -0.020785745233297348, 0.008143668994307518, 0.004427899606525898, -0.00972304679453373, 0.008559665642678738, -0.009010916575789452, -0.03595905750989914, -0.012790142558515072, -0.00825648196041584, -0.020799847319722176, -0.009582030586898327, -0.005496094934642315, 0.010724259540438652, -0.03364639729261398, -0.005513722077012062, 0.01652706414461136, 0.002633472206071019, 0.0036382104735821486, 0.03861015662550926, -0.002832657191902399, 0.017937224358320236, 0.003934343811124563, 0.005788702983409166, 0.014390673488378525, 0.012966413050889969, -0.05209127813577652, 0.041063833981752396, -0.027018647640943527, 0.010435177013278008, -0.02019347809255123, 0.012162622064352036, -0.045322515070438385, 0.037961483001708984, -0.01569507084786892, 0.024381650611758232, 0.008524411357939243, 0.011408187448978424, 0.007833433337509632, 0.028104471042752266, 0.022774068638682365, 0.007138930261135101, -0.00686042383313179, -0.04171250760555267, 0.018092341721057892, -0.03381561487913132, 0.04442001134157181, 0.013199089094996452, 0.01645655743777752, 0.003701667534187436, -0.008002652786672115, -0.007692418061196804, 0.004738134332001209, 0.004540712106972933, -6.56605334370397e-05, -0.008425700478255749, -0.01613222062587738, 0.0037192946765571833, 0.003338551614433527, -0.007205912843346596, 0.0306850615888834, -0.00684279715642333, -0.01613222062587738, -0.015779679641127586, 0.020799847319722176, 0.026581499725580215, 0.019023045897483826, -0.002324999775737524, 0.028414705768227577, 0.014947686344385147, 0.023281726986169815, 0.010068535804748535, 0.023338133469223976, 0.0012056860141456127, 0.03257467597723007, -0.0017151059582829475, 0.0301774051040411, -0.0026898784562945366, -0.0021857465617358685, -0.0024642529897391796, 0.04230477288365364, -0.015469444915652275, 0.006077785510569811, -0.012056860141456127, 0.025270050391554832, 0.01098513975739479, 0.0003897767746821046, 0.0052034868858754635, 0.0047910152934491634, 0.0029454699251800776, -0.021998481824994087, -0.006673577707260847, 0.032038815319538116, -0.020560119301080704, -0.015920696780085564, 0.015554054640233517, 0.02825958840548992, 0.01016724668443203, 0.012501060031354427, 0.013382409699261189, 0.016950111836194992, 0.0068357461132109165, 0.026384076103568077, 0.015610461123287678, -0.029838966205716133, -0.0261161457747221, 0.00033403144334442914, -0.0234509464353323, 0.009081424213945866, -0.014538739807903767, 0.0031023500487208366, -0.02669431082904339, 0.022971492260694504, -0.006264631636440754, 0.020912660285830498, -0.0003924208285752684, 0.024607276543974876, 0.010484532453119755, -0.04174070805311203, -0.04269961640238762, 0.01366444118320942, 0.024734189733862877, 0.024875206872820854, -0.016992416232824326, -0.005912092048674822, 0.015836086124181747, -0.025058526545763016, 0.00623995391651988, 0.0063492413610219955, -0.000342183921020478, -0.008785291574895382, -0.0049778614193201065, 0.006229377817362547, 0.030149200931191444, 0.01589249260723591, 0.014376572333276272, 0.000695825379807502, 0.0012250756844878197, -0.018458982929587364, -0.0019530704012140632, 0.002711030887439847, 0.004480780567973852, 0.03271568939089775, -0.016400150954723358, -0.00812956690788269, -0.04171250760555267, -0.00977945327758789, -0.02292918600142002, 0.021378012374043465, 0.005055420566350222, -0.022661257535219193, 0.006726458668708801, 0.00540090911090374, 0.006525511387735605, -0.009694843553006649, -0.027723727747797966, 0.03728460520505905, -0.014404775574803352, 0.0027550982777029276, -0.020983166992664337, -0.00705079548060894, 0.03468991443514824, 0.002446626080200076, 0.029133886098861694, 0.017175737768411636, 0.025326456874608994, -0.01924867182970047, -0.015272023156285286, -0.033251550048589706, -0.008742986246943474, 0.021547231823205948, -0.0054855188354849815, -0.04292524233460426, -0.004258680623024702, 0.0252277459949255, 0.011605609208345413, 0.039033204317092896, -0.007276420947164297, 0.028033962473273277, -0.006310462020337582, -0.017203940078616142, 0.0048474217765033245, -0.0006561646587215364, -0.016992416232824326, 0.013558679260313511, 0.016921909525990486, 0.00968779344111681, -0.023070203140378, 0.026412280276417732, -0.002233339473605156, -0.0009183661313727498, -0.03251826763153076, -0.011718422174453735, 0.028880057856440544, 0.021702349185943604, 0.030036387965083122, 0.00436796760186553, 0.045576341450214386, 0.016174525022506714, -0.015272023156285286, 0.0063527668826282024, 0.009039119817316532, 5.0953014579135925e-05, 0.03043123334646225, 0.004600644111633301, -0.003086485667154193, 0.007311674766242504, -0.007953297346830368, -0.00555955246090889, 0.0037721756380051374, 0.021716449409723282, -0.017119331285357475, 0.02660970203578472, -0.014136845245957375, -0.018966639414429665, 0.0008143668528646231, 0.01678089238703251, 0.013622136786580086, -0.014919483102858067, -0.01828976348042488, -0.0405561737716198, -0.016315540298819542, -0.013079226016998291, -0.0016666317824274302, 0.0004237087268847972, -0.008446852676570415, -0.013403561897575855, -0.017880817875266075, -0.024156024679541588, -0.009652539156377316, -0.009546777233481407, 0.030262013897299767, -0.0004450814740266651, -0.0006160632474347949, -0.01988324336707592, 0.037199996411800385, 0.016851400956511497, 0.019770430400967598, 0.010505685582756996, -0.00435386598110199, -0.014038133434951305, 0.022506138309836388, -0.01995375193655491, -0.02064472995698452, 0.01683729887008667, -0.036494918167591095, -0.000615622557234019, -0.0010981614468619227, 0.01747187040746212, -0.014038133434951305, -0.007184760645031929, 0.0003789802431128919, -0.020926760509610176, 0.006729984190315008, 5.502925705513917e-05, 0.01759878545999527, 0.032236237078905106, 0.006796966772526503, 0.033759210258722305, 0.03500014916062355, -0.017048822715878487, -0.006060158833861351, -0.007110727019608021, -0.03765124827623367, -0.001196872559376061, 0.010808869265019894, 0.00227916962467134, 0.01368559431284666, -0.0027321833185851574, 0.014820772223174572, -0.014052235521376133, -0.014905381947755814, -0.0014198538847267628, 0.0067652384750545025, 0.006722933612763882, -0.024917511269450188, 0.02642638236284256, -0.0009148407261818647, 0.017965426668524742, 0.012494009919464588, 0.004709931556135416, -0.015666866675019264, -0.0006900965818203986, 0.004840371198952198, 0.023916298523545265, -0.0019918496254831553, -0.007960348390042782, 0.0256084892898798, -0.0029719104059040546, -0.03632569685578346, -0.004290408920496702, 0.009173084981739521, -0.026384076103568077, 0.0038567851297557354, 0.0035588890314102173, -0.030149200931191444, -0.05474237725138664, -0.007318725809454918, -0.003793328069150448, 0.011231916956603527, -0.017500074580311775, -0.027032749727368355, -0.028442908078432083, -0.008658376522362232, -0.015272023156285286, -0.0306850615888834, 0.0005949108744971454, -0.025016222149133682, -0.0053198253735899925, 0.00247835461050272, 0.013311902061104774, 0.040951021015644073, -0.00016382081957999617, 0.007177709601819515, -0.015596359968185425, -0.026341771706938744, -0.021885668858885765, -0.033956632018089294, -0.037764061242341995, -0.0038144802674651146, 0.04763517528772354, 0.019601210951805115, 0.030346624553203583, 0.011457542888820171, -0.0026634379755705595, 0.011161409318447113, 0.0007698587141931057, 0.00393786933273077, -0.0010488057741895318, -0.006969711277633905, -0.0032416032627224922, 0.004741659853607416, 0.022576646879315376, -0.002744522178545594, 0.03773585706949234, 0.012162622064352036, -0.0001030627972795628, 0.024170126765966415, -0.01165496464818716, -0.0010029756231233478, -0.007755875121802092, -0.04010492563247681, -0.0281467754393816, -0.005266944412142038, -0.01790902018547058, -0.003662888193503022, -0.05062471330165863, -0.0066136461682617664, 0.00972304679453373, -0.008552614599466324, 0.006105988752096891, -0.01429196260869503, 0.03367459774017334, -0.031982406973838806, 0.02840060368180275, 0.007981500588357449, 0.017373159527778625, -0.01703472249209881, -0.008404548279941082, -0.015398937277495861, -0.010505685582756996, 0.01412979420274496, -0.002374355448409915, 0.02388809435069561, 0.007234116084873676, 0.00952562503516674, 0.0023161862045526505, 0.01470795925706625, -0.03474631905555725, -0.004484306089580059, 0.001926629920490086, -0.02205488830804825, -0.012776041403412819, -0.01745777018368244, 0.0035007200203835964, 0.018980741500854492, 0.0037192946765571833, 0.010075586847960949, 0.023267624899744987, 0.008778240531682968, -0.044814854860305786, -0.022449733689427376, -0.020729338750243187, -0.0144541310146451, 0.04137406870722771, 0.022407427430152893, 0.03347717598080635, 0.039230626076459885, -0.0010840598260983825, 0.0132484445348382, -0.0007689773919992149, 0.010237755253911018, -0.01076656486839056, 0.008679529651999474, 0.029585137963294983, -0.016752690076828003, -0.0012189062545076013, 0.010759513825178146, 0.024607276543974876, 0.0004768100334331393, -0.029810763895511627, 0.034718118607997894, 0.025439269840717316, -0.004410272464156151, -0.03906140848994255, -0.0294159185141325, -0.03404124081134796, -0.024113720282912254, -0.002975435694679618, 0.008855799213051796, 0.0140733877196908, -0.01886792853474617, -0.014806670136749744, -0.0004904709639959037, -0.01867050677537918, 0.04870689660310745, -0.007297573145478964, -0.024804698303341866, 0.009215389378368855, 0.03012099862098694, -0.0029683848842978477, -0.005284571088850498, -0.013918270356953144, 0.01511690579354763, -0.02350735291838646, 0.007713570259511471, -0.001697479048743844, 0.027300680056214333, -0.014376572333276272, -0.012303638271987438, -0.0007883670623414218, 0.030826078727841377, 0.013586882501840591, -0.017683394253253937, 0.004234002903103828, -0.013326003216207027, 0.02624306082725525, -0.024409854784607887, 0.011351780965924263, -0.020108869299292564, -0.017302652820944786, -0.0005724364309571683, 0.010012129321694374, 0.013699695467948914, 0.015173312276601791, -0.024113720282912254, -0.019671719521284103, -0.038666561245918274, 0.012536314316093922, -0.0068956781178712845, -0.005245791748166084, -0.021124184131622314, -0.010089688003063202, 0.001437480910681188, -0.008806443773210049, 0.016611674800515175, 0.004949658643454313, 0.011471644043922424, 0.00908847525715828, 0.024762393906712532, -0.01931918039917946, -0.0008077567326836288, -0.012691431678831577, -0.02706095390021801, -0.037566639482975006, 0.0006160632474347949, 0.005919142626225948, 0.006969711277633905, 0.005284571088850498, -0.0057851774618029594, -0.03886398300528526, -0.008566716685891151, 0.01892433501780033, 0.016400150954723358, -0.008157770149409771, 0.01792312227189541, 0.02579180896282196, 0.02878134697675705, 0.010040332563221455, -0.014468232169747353, -0.0030071642249822617, 0.028541620820760727, -0.006655951030552387, 0.0037545484956353903, -0.00559128075838089, -0.01451053749769926, 0.012867702171206474, -0.020362697541713715, 0.014284911565482616, 0.0035959056112915277, -0.04199453815817833, -0.02089855819940567, 0.02184336446225643, 0.024113720282912254, -0.011767777614295483, -0.034464288502931595, -0.027201969176530838, -0.027963455766439438, -0.03037482686340809, 0.024607276543974876, 0.007925094105303288, 0.007579605095088482, 0.009067323058843613, -0.008855799213051796, 0.00067291030427441, 0.01968582160770893, -0.005986125208437443, -0.013234343379735947, -0.027117358520627022, -0.014552841894328594, -0.0219279732555151, -0.03697437047958374, 0.00331211113370955, 0.02387399412691593, -0.00787573866546154, -0.02966974675655365, -0.01651296392083168, -0.03195420652627945, -0.0131849879398942, -0.01843077875673771, -0.021899770945310593, 0.010216603055596352, 0.05192205682396889, 0.02256254479289055, -0.017359059303998947, 0.01060439646244049, -0.02198437973856926, 0.00451250933110714, -0.028541620820760727, -0.00033667549723759294, 0.020038360729813576, -0.008961561135947704, 0.03914601728320122, -0.022915085777640343, -0.04213555529713631, 0.02662380412220955, 0.01448233425617218, 0.030149200931191444, 0.022915085777640343, 0.007184760645031929, -0.02039089985191822, 0.0009148407261818647, 0.009983926080167294, -0.025143137201666832, 0.007093100342899561, -0.013128581456840038, -0.0005221995525062084, -0.05065291374921799, -0.0007050795247778296, 0.012219028547406197, 0.005873312707990408, 0.0050377934239804745, 0.002607031725347042, 0.0306850615888834, -0.006567815784364939, 0.0011554490774869919, -0.028541620820760727, -0.017316753044724464, 0.002420185599476099, -0.0037087183445692062, 0.025552082806825638, -0.005266944412142038, 0.025171339511871338, 0.03144654631614685, -0.009864063002169132, 0.0005138267297297716, 0.008023804984986782, 0.01508870255202055, -0.000600639614276588, -0.020052462816238403, 0.013770203106105328, -0.011394085362553596, -0.0060672094114124775, -0.009017967619001865, -0.0030036389362066984, -0.006024904549121857, -0.01962941512465477, -0.00601785397157073, 0.0010250094346702099, -0.0202780868858099, -0.003132315818220377, 0.015596359968185425, -0.03161576762795448, -0.009730097837746143, 0.016104016453027725, -0.03798968717455864, 0.00994162168353796, 0.00807316042482853, -0.02586231753230095, -0.0011413475731387734, -0.0022386275231838226, 0.006028430070728064, -0.011535101570189, -0.025058526545763016, 0.0004829794925171882, -0.006021379493176937, -0.017006518319249153, 0.036635931581258774, 0.1765519231557846, -0.005915617570281029, -0.010350567288696766, 0.025058526545763016, 0.0016014119610190392, 0.023408640176057816, -0.011549202725291252, 0.010822971351444721, -0.00041820030310191214, 0.03576163575053215, 0.02019347809255123, 0.004709931556135416, -0.00937050674110651, -0.008841697126626968, 0.019587110728025436, -0.011274222284555435, -0.03491554036736488, -0.01678089238703251, -0.015525851398706436, -0.009046170860528946, 0.003197535639628768, -0.009017967619001865, 0.003594143083319068, -0.011203713715076447, 0.041007425636053085, 0.003652312094345689, -0.0005261655896902084, -0.007854586467146873, 0.0285275187343359, 0.022449733689427376, -0.014609248377382755, -0.014207352884113789, 0.03533858805894852, 0.020531916990876198, -0.0010655514197424054, -0.008080211468040943, 0.018628202378749847, 0.004293934442102909, 0.0446174331009388, 0.01226133294403553, 0.006014328449964523, -0.01330485101789236, -0.005404434632509947, -0.027921149507164955, -0.01962941512465477, 0.0032627556938678026, 0.0004146748979110271, -0.027413493022322655, 0.007925094105303288, -0.00996982492506504, 0.0064232745207846165, 0.03037482686340809, 0.010082637891173363, 0.025566184893250465, 0.023465046659111977, -0.010787717066705227, 0.00393786933273077, -0.003361466806381941, -0.024621378630399704, -0.00620822561904788, -0.018021833151578903, 0.019981954246759415, -0.00476633757352829, -0.01514510903507471, -0.012465806677937508, -0.002933130832388997, -0.013904168270528316, -0.025453371927142143, -0.0053550791926681995, -0.01968582160770893, 0.003796853357926011, -0.0025012698024511337, -0.01426375936716795, 0.020813947543501854, -0.016047609969973564, -0.020687034353613853, 0.0003188281552866101, 0.028696738183498383, 0.009285897947847843, 0.023479148745536804, 0.003396720625460148, 0.00541501073166728, -0.020292188972234726, -0.015427140519022942, -0.013142682611942291, -0.02013707160949707, 0.030910687521100044, 2.8282365747145377e-06, -0.00845390371978283, 0.007339878007769585, -0.031926002353429794, -0.0005561314756050706, -0.017626987770199776, -0.00039330217987298965, -0.0024237108882516623, -0.008157770149409771, -0.005880363285541534, 0.0027286577969789505, -0.011492796242237091, -0.020306291058659554, -0.039597269147634506, 0.05228869989514351, 0.008122516795992851, 0.009292948059737682, -0.03327975422143936, -0.017866715788841248, -0.004096512217074633, 0.01575147733092308, 0.0006826051394455135, 0.0019936123862862587, 0.0003712684556376189, -0.02071523666381836, -0.010153145529329777, -0.009955722838640213, -0.003342077136039734, 0.030318420380353928, 0.014975889585912228, -0.012042758986353874, -0.007854586467146873, -0.015779679641127586, 0.02660970203578472, -0.011387034319341183, 0.013904168270528316, 0.007075473200529814, -0.005122402682900429, -0.026581499725580215, 0.004625321831554174, -0.006775814574211836, 0.004452577326446772, -0.034154053777456284, 0.02260485105216503, -0.0048474217765033245, 0.016216829419136047, -0.0049073537811636925, -0.005104776006191969, -0.003574753412976861, 0.0059967017732560635, 0.011528050526976585, -0.017824411392211914, 0.012783092446625233, -0.005859211087226868, 0.005531349219381809, 0.006789916194975376, 0.015032296068966389, 0.003594143083319068, -0.02287278138101101, 0.031474750488996506, 0.007325776387006044, -0.030262013897299767, -0.010731310583651066, 0.0005627415957860649, -0.008087262511253357, 0.008439802564680576, 0.01498999074101448, 0.0413176603615284, 0.0018402576679363847, -0.026144349947571754, -0.041825320571660995, -0.009849960915744305, -0.006712357513606548, -0.02825958840548992, -0.009271795861423016, 0.04509688913822174, 0.0006746730068698525, -0.02394450083374977, -0.00012327874719630927, -0.18230536580085754, 0.01241645123809576, 0.005118877626955509, -0.00930705014616251, -0.011189612559974194, 0.006303410977125168, 0.001231245114468038, 0.007114252541214228, -0.014200301840901375, -0.004932031501084566, 0.023549657315015793, -0.013995829038321972, -0.009405761025846004, 0.010202500969171524, 0.017077026888728142, 0.005358604714274406, -0.012254282832145691, 0.01828976348042488, 0.03533858805894852, 0.003962547052651644, 0.037199996411800385, -0.02648278698325157, -0.00927884690463543, 0.013650340028107166, -0.007967398501932621, 0.01841667853295803, -0.03829992190003395, -0.0005512840580195189, 0.010935783386230469, -0.0076078083366155624, -0.01563866436481476, 0.006275208201259375, -0.0022351022344082594, -0.003231026930734515, 0.006190598476678133, -0.010646700859069824, -0.023662470281124115, -0.002351440256461501, -0.007755875121802092, 0.021321605890989304, 0.018642302602529526, 0.03773585706949234, 0.006303410977125168, 0.004664101172238588, -0.002948995213955641, 0.04236117750406265, 0.0441097766160965, -0.0021434419322758913, 0.018247459083795547, -0.03601546213030815, -0.009158982895314693, -0.024875206872820854, -0.004417323507368565, -0.0015776155050843954, -0.006878050975501537, 0.0405561737716198, 0.011697269976139069, -0.004910878837108612, 0.00048430150491185486, -0.028513416647911072, 0.015709172934293747, -0.010378770530223846, 0.009201288223266602, -0.0020094767678529024, -0.027963455766439438, 0.00396959763020277, -0.011358831077814102, 0.016555268317461014, -0.015511750243604183, 0.01255041640251875, -0.0012435840908437967, 0.004695829935371876, -0.013255495578050613, -0.0022280514240264893, 0.003149942960590124, -0.006863949354737997, -0.02693403884768486, -0.006455003283917904, 0.011379984207451344, 0.0012920582666993141, 0.00822827871888876, 0.04159969463944435, -0.00032345522777177393, 0.016541166231036186, -0.009349354542791843, 0.00455833924934268, 0.0050941999070346355, 0.0038109549786895514, 0.014905381947755814, -0.01943199150264263, 0.020616525784134865, -6.0317352108540945e-06, 0.0035465501714497805, -0.021420316770672798, 0.02127930149435997, 0.009137830697000027, -0.003181671490892768, 0.0076642148196697235, 0.008242379873991013, -0.010886427946388721, -0.01797952875494957, 0.007410386111587286, -0.0057463981211185455, 0.016174525022506714, 0.005964973010122776, -0.004424374084919691, -0.021039573475718498, 0.002462490228936076, 0.054911594837903976, -0.019023045897483826, -0.003149942960590124, 0.024113720282912254, 0.0053938585333526134, -0.0021328656002879143, -0.005887414328753948, 0.006236428394913673, -0.007784078363329172, -0.016597572714090347, -0.005623009521514177, -0.0016578183276578784, 0.047099314630031586, 0.0030635707080364227, 0.0036734645254909992, 0.012635025195777416, -0.013734949752688408, -0.004886201117187738, -0.0679696649312973, -0.009405761025846004, 0.015568156726658344, 0.012014555744826794, -0.01658347062766552, -0.012162622064352036, 0.011767777614295483, 0.019728126004338264, -0.003040655516088009, 0.02369067259132862, 0.019657617434859276, -0.014348369091749191, -0.033759210258722305, 0.0025206594727933407, 0.016682181507349014, 0.006673577707260847, 0.0009166034287773073, -0.004244579002261162, 0.0025065578520298004, 0.024818800389766693, -0.019714023917913437, -0.012881803326308727, 0.0013581594685092568, 0.012846549041569233, -0.025890521705150604, -0.018332067877054214, -0.024297041818499565, 0.006120090372860432, 0.030572248622775078, 0.0019671719055622816, 0.01855769380927086, -0.019220467656850815, 0.03170037642121315, -0.021899770945310593, -0.018332067877054214, -0.0022386275231838226, -0.049129944294691086, -0.009807656519114971, 0.015920696780085564, -0.03206701949238777, 0.02642638236284256, 0.015850188210606575, 0.02077164314687252, -0.030713265761733055, 0.002815030049532652, -0.0003633362939581275, -0.003322687465697527, 0.048001814633607864, -0.01957300864160061, -0.01817695051431656, 0.0021399164106696844, -0.003835632698610425, -0.006856898777186871, -0.026948140934109688, 0.02833009697496891, -0.001055856584571302, 0.02191387303173542, 0.03406944498419762, -0.017105229198932648, -0.007068422622978687, -0.01727444864809513, -0.010949885472655296, -0.012910006567835808, -0.001028534839861095, 0.006581917405128479, -0.0038039041683077812, -0.039794690907001495, -0.024170126765966415, 0.009483319707214832, 0.005905041005462408, -0.024621378630399704, 0.01740136370062828, -0.013283698819577694, 0.005640636198222637, -0.005379756912589073, 0.0047169821336865425, -0.018374372273683548, -0.03691796585917473, -0.008355192840099335, -0.015173312276601791, 0.01111910492181778, -0.018021833151578903, -0.014496435411274433, 0.00018607490346767008, 0.027808336541056633, 0.020912660285830498, 0.003641735762357712, -0.013756101951003075, -0.013100378215312958, -0.027173765003681183, 0.001774156466126442, 0.00946921855211258, 0.0058063301257789135, -0.006807542871683836, -0.012705533765256405, 0.031051702797412872, 0.016682181507349014, -0.01868460886180401, -0.00767126539722085, -0.013015768490731716, -0.03813070058822632, -0.019601210951805115, -0.07665624469518661, 0.03308233246207237, -0.007131879683583975, 0.019544804468750954, -0.00374749768525362, 0.005467891693115234, -0.0024801173713058233, 0.0013431765837594867, -0.018007731065154076, -0.0010452804854139686, -0.012296587228775024, 0.028245486319065094, 0.0051682330667972565, -0.005637111142277718, -0.017485972493886948, -0.013452917337417603, 0.0247200895100832, 0.031531158834695816, 0.011570354923605919, -0.013481120578944683, 0.004879150539636612, -0.001965409144759178, 0.004861523397266865, 0.02916209027171135, 0.017711598426103592, 0.015243819914758205, -0.017753902822732925, 0.006983812898397446, -0.02401500940322876, -0.013770203106105328, 0.014595146290957928, -0.015723273158073425, 0.018599998205900192, 0.03951265662908554, -0.013297799974679947, -0.041458677500486374, 0.005266944412142038, 0.005880363285541534, 0.016287337988615036, -0.019840938970446587, -0.00044309842633083463, -0.012959362007677555, -0.007600757293403149, -0.030205607414245605, -0.031164515763521194, -0.008030856028199196, -0.015074600465595722, 0.008545564487576485, 0.004463153425604105, 0.0020094767678529024, 0.008771189488470554, 0.015666866675019264, -0.020799847319722176, -0.019262773916125298, 0.004385594744235277, -0.0251008328050375, 0.014221454039216042, 0.005231690127402544, 0.015850188210606575, -0.0063880207017064095, 0.05076572671532631, 0.0014401249354705215, 0.043235477060079575, -0.023211218416690826, 0.01625913381576538, -0.012726685963571072, -0.010703107342123985, -0.015102803707122803, 0.01772570051252842, -0.024282939732074738, 0.007974449545145035, -0.0469018928706646, -0.009504471905529499, 0.027864743024110794, 0.01855769380927086, 0.0029472324531525373, -0.0023602538276463747, 0.003208111971616745, 0.002102899830788374, 0.021702349185943604, 0.024353448301553726, -0.004191698040813208, -0.007840484380722046, 0.005661788862198591, 0.01060439646244049, 0.02477649599313736, -0.03914601728320122, 0.007325776387006044, 0.016668081283569336, 0.001919579110108316, -0.021307503804564476, 0.006091887131333351, -0.025707200169563293, -0.011866488493978977, 0.010012129321694374, 0.002573540434241295, -0.009201288223266602, 0.016315540298819542, 0.019615313038229942, 0.02407141588628292, 0.020785745233297348, 0.006317512597888708, -0.011972250416874886, -0.023352233693003654, -0.03437967970967293, -0.007361030671745539, -0.020983166992664337, -0.017373159527778625, 0.0022192378528416157, -0.00579575402662158, -0.010188399814069271, 0.0070261177606880665, -0.004085936117917299, 0.024677783250808716, -0.02198437973856926, -0.012338891625404358, 0.004727558232843876, -0.011549202725291252, -0.035987261682748795, 0.02700454741716385, 0.001797071541659534, -0.016978316009044647, 0.008305837400257587, 0.012564517557621002, 0.031531158834695816, -0.015765579417347908, 0.02254844456911087, -0.010696056298911572, 0.010082637891173363, -0.021039573475718498, 0.0004217257082927972, -0.010625548660755157, -0.0005755212041549385, -0.023930400609970093, -0.007579605095088482, -0.0016375472769141197, 0.0020782218780368567, 0.009285897947847843, -0.004635897930711508, 0.0984291061758995, -0.004889726638793945, -0.03037482686340809, -0.003934343811124563, -0.021251097321510315, 0.02407141588628292, 0.01678089238703251, 0.022351020947098732, -0.01289590448141098, -0.04193812981247902, 0.005256367847323418, -0.004678202793002129, 0.012268383987247944, -0.03683335706591606, -0.015864290297031403, 0.0020376797765493393, -0.00953267514705658, 0.019601210951805115, -0.00046138642937876284, -0.005848634988069534, 0.003927293233573437, -0.007650113198906183, 0.028569823130965233, 0.0006151819252409041, -0.012818345800042152, -0.021166488528251648, 0.019840938970446587, -0.008933357894420624, -0.00018563422781880945, -0.028189079836010933, 0.0029930626042187214, -0.016950111836194992, -0.008968612179160118, -0.019770430400967598, -0.01223312970250845, -0.021998481824994087, -0.022393327206373215, -0.00413176603615284, 0.0034178730566054583, -0.003997800871729851, -0.006687679328024387, 0.01022365316748619, -0.026257162913680077, -0.007332827430218458, 0.011676116846501827, -0.005372706335037947, -0.005968498531728983, -0.0028115047607570887, -0.026412280276417732], "975881aa-a45e-4b2c-83a8-bd6932e4a819": [-0.008627524599432945, 0.007356473710387945, -0.01762429252266884, -0.005332733504474163, -0.0003918777802027762, 0.023361774161458015, -0.019001856446266174, 0.002918446669355035, -0.021671773865818977, -0.02574765868484974, 0.018845638260245323, -0.017482277005910873, -0.006898469291627407, -0.015792274847626686, -0.011389752849936485, 0.023233959451317787, 0.0076760114170610905, -0.018916646018624306, 0.010913996025919914, -0.0021196017041802406, -0.03098808042705059, 0.012731811963021755, -0.0013172064209356904, 0.0200243778526783, -0.01841958798468113, -0.016715385019779205, 0.01337088830769062, -0.03067564219236374, -0.01701362058520317, 0.004881829954683781, 0.0012106937356293201, 0.003664035117253661, -0.0444512777030468, 0.018490595743060112, -0.01205013133585453, -0.00352911907248199, 0.012142442166805267, 0.006277145352214575, 0.037492454051971436, -0.002835011575371027, 0.020848076790571213, 0.015607653185725212, -0.003571724286302924, -0.02942589484155178, -0.018845638260245323, 0.028204549103975296, 0.010040592402219772, -0.007555297110229731, 0.0034563355147838593, 0.016047906130552292, 0.019868159666657448, 0.006248741876333952, -0.021685974672436714, 0.0024462405126541853, 0.034339677542448044, -0.015124795958399773, 0.012099836952984333, 0.022438663989305496, -0.01989656314253807, 0.0046688043512403965, 0.010289122350513935, -0.01841958798468113, 0.004590695258229971, 0.0027799801900982857, -0.021756984293460846, 0.00337822618894279, -0.000836124294437468, 0.015039586462080479, -0.00450548529624939, -0.028772616758942604, 0.028019927442073822, 0.008847651071846485, -0.018234966322779655, -0.014627736993134022, -0.0065682800486683846, -0.01229155994951725, -0.028559591621160507, -0.015394628047943115, 0.02990875206887722, 0.008031053468585014, 0.0133921904489398, -0.008726936765015125, -0.02922707051038742, 0.025477826595306396, 0.022751102223992348, -0.0051445611752569675, 0.006245191674679518, 0.021032698452472687, -0.033970434218645096, 0.00391256483271718, 0.0014228314394131303, 0.020919084548950195, 0.01701362058520317, 0.005400191526859999, 0.009692651219666004, 0.005552859511226416, -0.004203699063509703, 0.02603169158101082, -0.009721054695546627, -0.0335443839430809, -0.00903227273374796, 0.0008760665659792721, -0.015678662806749344, 0.004327964037656784, -0.004420274868607521, -0.012611097656190395, -0.0057658846490085125, 0.012831224128603935, -0.005993111524730921, 0.0008521011914126575, -0.02317715249955654, 0.02819034829735756, -0.012078534811735153, -0.009948281571269035, 0.00028780606226064265, -0.002888268092647195, 0.01148916408419609, -0.02165757119655609, -0.02682698518037796, -0.03959430381655693, -0.011297442018985748, 0.019484713673591614, 0.01753908209502697, -0.02385883405804634, 0.006941074505448341, 0.015636056661605835, -0.003905463730916381, -0.015281015075743198, 0.005851095076650381, -0.016189923509955406, 0.026656566187739372, 0.00015011626237537712, 0.020990092307329178, 0.0033409467432647943, 0.007033385336399078, 0.027196230366826057, -0.012390971183776855, 0.002678793156519532, -0.01290933322161436, -0.018433788791298866, 0.017638495191931725, 0.040020354092121124, 0.019200680777430534, 0.005201367661356926, -0.011162525974214077, 0.03524858504533768, -0.008364793844521046, -0.004622648935765028, -0.006245191674679518, 0.01509639248251915, 0.008215676061809063, 0.007605003193020821, -0.008457104675471783, -0.03391362726688385, 0.018760427832603455, 0.0029024695977568626, 0.009955381974577904, 0.0032237828709185123, -0.024327488616108894, -0.025122784078121185, -0.0003088866942562163, 0.04768926277756691, 0.006763553246855736, 0.01421588845551014, 0.0067706541158258915, 0.034339677542448044, 0.016275132074952126, -0.0035912515595555305, -0.014968577772378922, -0.023830430582165718, -0.014428913593292236, -0.00646531768143177, -0.0036232052370905876, 0.010118701495230198, 0.021231520920991898, 0.008371894247829914, 0.0005343384691514075, 0.0011316968593746424, -0.011119920760393143, -0.010495046153664589, -0.014059669338166714, -0.0003099961904808879, 0.01617572084069252, 0.029340684413909912, -0.01670118421316147, 0.0105092478916049, 0.012944837100803852, -0.02711101993918419, 0.006493721157312393, -0.009209793992340565, 0.0030728899873793125, 0.023830430582165718, -0.008414499461650848, -0.0073493728414177895, -0.6053326725959778, -0.03232304006814957, 0.005339834373444319, 0.006309099495410919, -0.008968365378677845, 0.0274660624563694, -0.015763871371746063, 0.001138797728344798, -0.02871580980718136, 0.048143718391656876, -0.013690426014363766, 0.031414132565259933, -0.0025225745048373938, -0.006135128438472748, -0.005812040064483881, -0.01837698183953762, 0.008031053468585014, 0.0062025864608585835, 0.02530740574002266, 0.0013784512411803007, -0.03362959250807762, 0.010857189074158669, 0.006177733652293682, -0.00786773394793272, -0.005879498086869717, -0.004910232964903116, 0.029965559020638466, -0.008016851730644703, 0.010033491998910904, 0.007896137423813343, -0.02209782414138317, 0.0023876584600657225, 0.016033703461289406, 0.006834561470896006, 0.05427884683012962, -0.006948175374418497, -0.02090488187968731, 0.025875473394989967, 0.02863059937953949, 0.017425470054149628, -0.03192539140582085, 0.002714297268539667, 0.034254468977451324, 0.004260506015270948, -0.003930316772311926, -0.004487732890993357, 0.032408248633146286, 0.017908327281475067, 0.003433257807046175, -0.02246706746518612, 0.020933285355567932, -0.008272482082247734, -0.019797151908278465, 0.008627524599432945, 0.019825555384159088, -0.008236978203058243, 0.037094805389642715, -0.0017006519483402371, 0.008435801602900028, 0.0006497271824628115, -0.010551853105425835, 0.004391871392726898, -0.011105719022452831, -0.0004801945178769529, -0.020066983997821808, 0.024412699043750763, 0.013164963573217392, -0.006387208588421345, 0.0032184573356062174, -0.018320174887776375, 0.02165757119655609, 0.004356367513537407, 0.0009302104590460658, -0.008272482082247734, -0.007697314023971558, 0.010296222753822803, 0.008080760017037392, 0.010708071291446686, -0.021756984293460846, 0.016800595447421074, 0.005006094463169575, -0.013321181759238243, 0.0025474275462329388, -0.006841662339866161, -0.004061682149767876, 0.0029006944969296455, -0.01133294589817524, 0.023830430582165718, -0.024015052244067192, -0.01461353525519371, 0.01349160261452198, -0.005034497939050198, -0.006884267553687096, -0.00842870119959116, 0.00536468718200922, 0.01004769280552864, 0.004548090044409037, 0.012944837100803852, 0.004082984756678343, -0.018547402694821358, -0.00806655827909708, -0.01672958768904209, -0.0073990789242088795, -0.011205130256712437, 0.03536219894886017, 0.00559546472504735, -0.019612528383731842, -0.03274909034371376, 0.051268089562654495, -0.01822076365351677, 0.003577049821615219, -0.009025171399116516, -0.02990875206887722, -0.023233959451317787, 0.01301584579050541, -0.03178337588906288, 0.03107329085469246, 0.0083079868927598, 0.003642732510343194, 0.009728155098855495, 0.03340236842632294, -0.004675905220210552, 0.013662022538483143, 0.009366012178361416, 0.01279571931809187, 0.03138572722673416, 0.010175508446991444, -0.010140004567801952, 0.0222256388515234, -0.0020237404387444258, 0.0008600896690040827, -0.029454298317432404, 0.022680092602968216, -0.01753908209502697, 0.012398072518408298, -0.022041017189621925, 0.026883792132139206, 0.022310849279165268, 0.04101447016000748, -0.03340236842632294, -0.02418547309935093, 0.004643951542675495, -0.00409363629296422, -0.016800595447421074, 0.0003794513177126646, -0.037293627858161926, -0.03990674018859863, 0.013321181759238243, -0.009678449481725693, 0.0048711784183979034, -0.0018692970043048263, -0.014365006238222122, 0.0010136454366147518, 0.02506597712635994, -0.01435080450028181, 0.0053895399905741215, 0.009202692657709122, -0.04229262098670006, 0.008194372989237309, -0.03692438453435898, -0.00867012981325388, 0.03902623429894447, -0.009564835578203201, -0.011723492294549942, -0.0027604529168456793, -0.002396534662693739, -0.013938955031335354, 0.014599333517253399, -0.008343490771949291, -0.025733456015586853, -0.008194372989237309, -0.012185047380626202, -0.0034226065035909414, -0.0007016520830802619, -0.009948281571269035, 0.012419374659657478, -0.03598707541823387, -0.01013290323317051, 0.0011609878856688738, 0.01341349259018898, 0.012348366901278496, 0.02755127288401127, -0.00225806818343699, 0.017510680481791496, 0.011425256729125977, 0.003731493139639497, 0.01826336979866028, 0.021487152203917503, -0.037776485085487366, 0.03803211823105812, -0.024881355464458466, 0.007267713081091642, -0.027082616463303566, 0.011027609929442406, -0.047632455825805664, 0.03928186371922493, -0.018234966322779655, 0.026244716718792915, -0.001965158386155963, 0.018149755895137787, 0.004757564980536699, 0.024213874712586403, 0.029596315696835518, 0.008677230216562748, -0.016204124316573143, -0.03598707541823387, 0.014144879765808582, -0.03916824981570244, 0.057602040469646454, 0.004260506015270948, 0.015210006386041641, 0.011957820504903793, 0.0024302636738866568, -0.003321419470012188, -0.004839224740862846, 0.008038154803216457, -0.015664460137486458, 0.006674792617559433, -0.01255429070442915, 0.006032166536897421, 0.0027906314935535192, -0.00020281784236431122, 0.03695278987288475, -0.004540989175438881, -0.02053563855588436, -0.01965513452887535, 0.014826560392975807, 0.022751102223992348, 0.01168798841536045, -0.005368237383663654, 0.019669335335493088, 0.03158454969525337, 0.004622648935765028, 0.014407611452043056, 0.017879923805594444, 0.008038154803216457, 0.03831614926457405, 0.0001390211982652545, 0.027011608704924583, -0.016757989302277565, -0.004352816846221685, -0.009912777692079544, 0.03916824981570244, -0.009863071143627167, -0.006337502505630255, 0.004310212098062038, 0.026159506291151047, 0.012760215438902378, -0.00786773394793272, 0.006738700438290834, 0.01072937436401844, 0.0075837005861103535, -0.029567912220954895, -0.014521224424242973, 0.03059043362736702, -0.028403373435139656, -0.014123577624559402, 0.018007738515734673, 0.03158454969525337, 0.004700758028775454, 0.008563617244362831, 0.007718616630882025, 0.02029420994222164, -0.0015994649147614837, 0.018803032115101814, 0.013605215586721897, -0.025847069919109344, -0.029042448848485947, -0.004942187108099461, -0.02134513482451439, -0.003239759709686041, -0.011964920908212662, 0.011737694032490253, -0.03272068500518799, 0.025534631684422493, -0.0009142335620708764, 0.03607228398323059, -0.000293131684884429, 0.02942589484155178, 0.004157543648034334, -0.03823094069957733, -0.03945228457450867, 0.018007738515734673, 0.012589795514941216, 0.016047906130552292, -0.01449282094836235, -0.007356473710387945, 0.022353455424308777, -0.032294634729623795, 0.014755552634596825, -0.00531498109921813, 0.00392321590334177, -0.007232208736240864, 0.0017414818285033107, -0.008996768854558468, 0.02502337098121643, 0.011325845494866371, 0.010686769150197506, 0.0002576274564489722, 0.006387208588421345, -0.009259499609470367, 0.0176100917160511, -0.0007162975380197167, 0.016232527792453766, 0.035134971141815186, -0.020251605659723282, -0.00711859529837966, -0.03147093579173088, -0.015181602910161018, -0.030249591916799545, 0.026841187849640846, -0.005385989788919687, -0.01097080297768116, 0.01628933474421501, 0.012561392039060593, 0.005804939195513725, 0.0015124796191230416, -0.02018059603869915, 0.024753538891673088, -0.01437210664153099, 0.01072937436401844, -0.031811777502298355, 0.0025545284152030945, 0.024767741560935974, 0.021231520920991898, 0.03255026414990425, 0.01337088830769062, 0.008045255206525326, -0.02277950569987297, -0.006213237997144461, -0.04144052043557167, -0.01573546789586544, 0.013619417324662209, -0.001299454364925623, -0.0362711064517498, 0.004143341910094023, 0.027650684118270874, 0.006589582655578852, 0.03746404871344566, -0.0022740450222045183, 0.04192337766289711, -0.008762440644204617, -0.014329501427710056, 0.005038048140704632, 0.005300779361277819, -0.007164750713855028, 0.008712735027074814, 0.027877910062670708, 0.014869165606796741, -0.0079671461135149, 0.03127211332321167, 0.006642838940024376, 0.011027609929442406, -0.031243709847331047, -0.010431138798594475, 0.02130253054201603, 0.019115470349788666, 0.025378413498401642, -0.0034403586760163307, 0.02982354164123535, 0.016005299985408783, -0.01158857624977827, 0.010672567412257195, 0.015025384724140167, -0.007313868496567011, 0.022722698748111725, 0.010530550964176655, 0.001155662233941257, 0.019811352714896202, -0.0046261996030807495, -0.003894812660291791, 0.016644377261400223, 0.003010757500305772, -0.01109151728451252, 0.04479211941361427, -0.003294791327789426, -0.015323619358241558, 0.00870563369244337, 0.02658555656671524, 0.006557628978043795, -0.021160513162612915, -0.017439670860767365, -0.04479211941361427, -0.007782524451613426, -0.012483282946050167, -0.004306661430746317, -0.008883154951035976, -0.010225214064121246, -0.018007738515734673, -0.018433788791298866, -0.026684969663619995, -0.006035716738551855, -0.01905866339802742, 0.03496455401182175, -0.003969371318817139, 0.005915002431720495, -0.02506597712635994, 0.04254825413227081, 0.009351810440421104, 0.011084415949881077, 0.01060866005718708, -0.010793281719088554, -0.01577807404100895, 0.02125992439687252, -0.007576599717140198, -0.032209426164627075, 0.0039977747946977615, -0.03252186253666878, -0.0059682587161660194, -0.01495437603443861, 0.0050948550924658775, 0.008052356541156769, -0.008975465781986713, -0.005361136514693499, -0.015025384724140167, 0.01762429252266884, 0.002574055688455701, 0.021117908880114555, 0.027963120490312576, 0.01617572084069252, 0.025889674201607704, 0.02346118539571762, -0.01147496234625578, -0.006138679105788469, -0.0038202537689357996, -0.035731442272663116, -0.02130253054201603, 0.021913202479481697, -0.0056735738180577755, 0.0015808251919224858, 0.004207249730825424, 0.0079671461135149, -0.009202692657709122, -0.017908327281475067, -7.683334115426987e-05, 0.0049031320959329605, -0.009777861647307873, -0.015664460137486458, 0.02125992439687252, -4.105174957658164e-05, 0.028616398572921753, 0.0130513496696949, 0.0037918502930551767, -0.01471294742077589, 0.005446346942335367, -0.005020296201109886, 0.0181355532258749, -0.015408829785883427, -0.00904647447168827, 0.02658555656671524, -0.00010346150520490482, -0.03950909152626991, -0.015266813337802887, 0.008698533289134502, -0.01701362058520317, -0.001456560450606048, 0.005027397070080042, -0.04104287549853325, -0.04621228948235512, -0.0020042129326611757, -0.016999417915940285, 0.0038770604878664017, -0.0011663135373964906, -0.01778051070868969, -0.031698163598775864, -0.0041397917084395885, -0.020365217700600624, -0.028019927442073822, -0.00704758707433939, -0.026514548808336258, -0.005890149623155594, -0.0013074427843093872, 0.00687716668471694, 0.03587346151471138, 0.0018373432103544474, -9.153431165032089e-05, -0.01628933474421501, -0.028275558724999428, -0.0200243778526783, -0.02493816241621971, -0.03059043362736702, -0.011134122498333454, 0.052631448954343796, 0.007960045710206032, 0.033970434218645096, 0.0004464655357878655, 0.001779648824594915, 0.004441577475517988, 0.008620424196124077, -0.009948281571269035, -0.014826560392975807, -0.015224208123981953, -0.007874835282564163, -0.0022633937187492847, 0.02874421328306198, 0.006852313876152039, 0.025250598788261414, 0.015252611599862576, -0.004278257954865694, 0.04229262098670006, -0.016928410157561302, -0.003403079230338335, -0.01741126738488674, -0.05055800452828407, -0.035419005900621414, 0.009962483309209347, -0.01945631019771099, -0.007420381065458059, -0.0515805259346962, -0.010409836657345295, 0.014897569082677364, -0.01035302970558405, 0.0003035610425285995, -0.020635049790143967, 0.03686757758259773, -0.020762866362929344, 0.023560598492622375, 0.016956813633441925, 0.01180870272219181, -0.009579037316143513, -0.021274127066135406, -0.02806253358721733, -0.0014237191062420607, -0.004743363242596388, 0.00950802955776453, 0.014400510117411613, -0.0048711784183979034, 0.00674580130726099, 0.005442796275019646, 0.02490975894033909, -0.033175140619277954, -0.011020508594810963, -0.0019509566482156515, -0.024994967505335808, -0.014684543944895267, -0.024071859195828438, -0.010303323157131672, 0.009884374216198921, 0.008897356688976288, 0.015792274847626686, 0.02154395915567875, 0.012362567707896233, -0.041696153581142426, -0.02686959132552147, -0.0057978383265435696, 0.00014556729001924396, 0.0393102690577507, 0.03706640377640724, 0.035447411239147186, 0.02057824470102787, -0.006291347090154886, -0.013193367049098015, 0.001053587649948895, 0.0046865567564964294, -0.012646601535379887, 0.010906895622611046, 0.014883367344737053, -0.009117483161389828, 0.002341503044590354, 0.003555747214704752, 0.014151981100440025, -0.013910551555454731, -0.027480263262987137, 0.03215261921286583, 0.0383729562163353, 0.0033622493501752615, -0.030618837103247643, -0.019271688535809517, -0.032209426164627075, -0.020351016893982887, -0.010899794287979603, 0.01621832698583603, 0.023773623630404472, -0.020762866362929344, -0.024611523374915123, 0.01589168794453144, -0.020407823845744133, 0.04249144718050957, 0.005261724814772606, -0.024526312947273254, -0.010771979577839375, 0.023319169878959656, -0.02125992439687252, 0.00271252216771245, -0.005996662192046642, 0.011105719022452831, -0.03618589788675308, 0.008563617244362831, -0.01301584579050541, 0.016388745978474617, -0.007711515761911869, -0.015039586462080479, -0.006916221231222153, 0.034652113914489746, 0.0089115584269166, -0.001933204592205584, 0.012724711559712887, -0.023887237533926964, 0.02722463384270668, -0.03632791340351105, 0.01048794575035572, -0.014783956110477448, -0.022325051948428154, 0.005506704095751047, 0.010622861795127392, 0.015522443689405918, 0.010615760460495949, -0.027196230366826057, -0.01565025933086872, -0.02650034800171852, -0.007090191822499037, -0.019995974376797676, 0.008918658830225468, -0.03203900530934334, -0.014996981248259544, -0.00554575864225626, -0.010068995878100395, 0.01817815937101841, 0.005620317533612251, 0.012525887228548527, 0.0057658846490085125, 0.02482454851269722, -0.030277995392680168, -0.005918553099036217, -0.020109588280320168, -0.021629169583320618, -0.03791850432753563, 0.009295003488659859, 0.0026894444599747658, -0.0004895143792964518, 0.00328769045881927, -0.004736262373626232, -0.05007514730095863, -0.01301584579050541, 0.021174713969230652, 0.011666685342788696, -0.003293015994131565, 0.027324045076966286, 0.02891463413834572, 0.037861697375774384, 0.001295903930440545, -0.025492027401924133, -0.0111128194257617, 0.04232102632522583, -0.005843994207680225, -0.010005088523030281, 0.011240635067224503, -0.007782524451613426, 0.013768535107374191, -0.03956589847803116, 0.015138997696340084, 0.004842774942517281, -0.03916824981570244, -0.015309418551623821, 0.02073446288704872, 0.015352022834122181, -0.016346141695976257, -0.038145728409290314, -0.029653120785951614, -0.02297832816839218, -0.024483706802129745, 0.008996768854558468, 0.0229073204100132, -0.007061788812279701, 0.013725929893553257, -0.006401410326361656, 0.001172526739537716, 0.020848076790571213, -0.01109151728451252, -0.01471294742077589, -0.020521437749266624, 0.005478300619870424, -0.018874041736125946, -0.03743564710021019, -0.0022172383032739162, 0.01738286390900612, -0.005361136514693499, -0.03226623311638832, -0.007100843358784914, -0.04024757817387581, -0.025719255208969116, -0.019882360473275185, -0.020549841225147247, 0.01361231692135334, 0.05490371957421303, 0.01877463050186634, -0.0051871659234166145, 0.021870598196983337, -0.03039160929620266, 0.004924434702843428, -0.024412699043750763, -0.0012346591101959348, 0.016360342502593994, -0.017908327281475067, 0.035419005900621414, -0.024157069623470306, -0.035447411239147186, 0.021799588575959206, 0.007981347851455212, 0.030618837103247643, 0.014897569082677364, 0.006990780122578144, -0.020833874121308327, 0.0006199923809617758, -0.002139128977432847, -0.020194798707962036, 0.011148324236273766, -0.006369456648826599, -0.0022172383032739162, -0.05180775374174118, -0.0051871659234166145, 0.010005088523030281, 0.00686651561409235, -0.004736262373626232, -0.004278257954865694, 0.026173708960413933, 0.007668910548090935, 0.013953156769275665, -0.030959676951169968, -0.025918077677488327, 0.004874729085713625, -0.028602195903658867, 0.033373963087797165, -0.002703646197915077, 0.023802027106285095, 0.024015052244067192, 0.0017290553078055382, -0.008755340240895748, 0.00048729535774327815, 0.005201367661356926, -0.012057231739163399, -0.018036141991615295, 0.035333797335624695, -0.010708071291446686, 0.00869143195450306, -0.002375232055783272, 0.006092523690313101, -0.015991099178791046, -0.02759387716650963, -0.002155106049031019, -0.005442796275019646, -0.029482701793313026, 0.01217084564268589, 0.00682746060192585, -0.038060519844293594, -0.014322401024401188, 0.013044249266386032, -0.028374969959259033, 0.010615760460495949, -0.00030444865114986897, -0.022083623334765434, -0.008094961754977703, -0.0063019986264407635, -0.0036782368551939726, -0.01701362058520317, -0.027934717014431953, -0.004693657625466585, 0.0007464761729352176, -0.03664034977555275, 0.025605641305446625, 0.18155436217784882, -0.001098855515010655, -0.009848869405686855, 0.009202692657709122, -0.017553284764289856, 0.003905463730916381, -0.006688994355499744, 0.005599014926701784, -0.010864290408790112, 0.04351396858692169, 0.02394404448568821, -0.0015346697764471173, -0.01485496386885643, -0.01036723144352436, 0.009273701347410679, -0.010928197763860226, -0.04232102632522583, -0.02341858111321926, -0.02141614258289337, -0.014301097951829433, -0.004544539842754602, -0.017311856150627136, 0.0011849532602354884, 0.0014183934545144439, 0.041696153581142426, 0.0010393859120085835, -0.0036782368551939726, -0.0007806489593349397, 0.03320354223251343, 0.031328920274972916, -0.020720260217785835, -0.020351016893982887, 0.027835305780172348, 0.018518999218940735, 0.005719729233533144, -0.0028225851710885763, 0.013725929893553257, 0.007203805726021528, 0.04112808406352997, 0.008641726337373257, 0.007278364151716232, -0.013385090045630932, 0.01185130700469017, -0.02451211027801037, -0.029283877462148666, 0.01519580464810133, -0.0015666235703974962, -0.033288754522800446, 0.01870362088084221, -0.003873510053381324, -0.004732712171971798, 0.04720640555024147, 0.029937155544757843, 0.008031053468585014, 0.029283877462148666, -0.013306980021297932, 0.014365006238222122, -0.006032166536897421, -0.023603202775120735, 0.01409517414867878, -0.02057824470102787, 0.005833342671394348, -0.004512585699558258, -0.010558954440057278, -0.02891463413834572, -0.007044036407023668, -0.008627524599432945, -0.030732449144124985, -0.003085316391661763, -0.029141860082745552, 0.014173283241689205, -0.0018799483077600598, -0.014925972558557987, -0.0023468288127332926, -0.013470299541950226, -0.02214043028652668, 0.003642732510343194, 0.02667076699435711, 0.011581475846469402, 0.02442690171301365, 0.010935299098491669, -0.003905463730916381, -0.004651052411645651, -0.007122145965695381, -0.0023610303178429604, -0.01941370591521263, 0.03681077063083649, -0.0034527850802987814, -0.013796938583254814, 0.0037954007275402546, -0.026287321001291275, -0.0054250443354249, -0.009607440792024136, 0.0031385726761072874, -0.01123353373259306, -0.010665467008948326, -0.001562185469083488, 0.011134122498333454, 0.005538657773286104, -0.012128240428864956, -0.03584505617618561, 0.055358175188302994, 0.018675217404961586, 0.002073446288704872, -0.03235144168138504, -0.015636056661605835, 0.0057268301025033, 0.023191353306174278, 0.0027249485719949007, -0.00979206245392561, -0.009273701347410679, -0.027295641601085663, -0.004118489101529121, -0.02121732011437416, 0.005602565128356218, 0.03456690534949303, 0.0037208418361842632, -0.0029610516503453255, -0.00906777661293745, -0.008975465781986713, 0.013456097804009914, 0.0007566835847683251, 0.003174077020958066, 0.007051137275993824, -0.02486715279519558, -0.02469673380255699, 0.007562397979199886, -0.007683112286031246, 0.002426713239401579, -0.028886230662465096, 0.02134513482451439, -0.009685549885034561, 0.010026390664279461, 0.013931854628026485, 0.004771766718477011, -0.0004162869299761951, 0.005652271211147308, 0.008002649992704391, -0.007683112286031246, 0.01277441717684269, 0.005719729233533144, 0.015763871371746063, 0.010942399501800537, 0.003300116863101721, -0.0010242966236546636, -0.02273689955472946, 0.02370261400938034, 0.004956388846039772, -0.026557153090834618, -0.0166159737855196, 0.009202692657709122, -0.0077257174998521805, 0.00259180786088109, 0.009863071143627167, 0.033657997846603394, -0.016445552930235863, -0.01925748772919178, -0.050472795963287354, -0.007200255058705807, -0.00662508700042963, -0.03345917537808418, -0.01143235806375742, 0.03283429890871048, 0.014755552634596825, -0.030420012772083282, -0.00704758707433939, -0.18280410766601562, 0.009955381974577904, 0.004913783632218838, -0.01701362058520317, 0.0001465658424422145, 0.013626518659293652, 0.005265275482088327, 0.010005088523030281, -0.009252399206161499, -0.011787399649620056, 0.03206740692257881, -0.009955381974577904, -0.015948494896292686, -0.0006199923809617758, 0.014556728303432465, -0.0058759478852152824, -0.012106937356293201, 0.015678662806749344, 0.03726522624492645, 0.0007105281110852957, 0.030931273475289345, -0.030079172924160957, -0.001231108675710857, 0.006571830250322819, -0.010899794287979603, 0.014798157848417759, -0.04700758308172226, 0.005804939195513725, 0.02427068166434765, -0.004377670120447874, -0.01293063536286354, 0.003940967842936516, -0.0011512242490425706, 0.005091304425150156, 0.002977028489112854, -0.006848763208836317, -0.0076760114170610905, -0.005755233578383923, 0.001734380959533155, 0.024554716423153877, 0.019001856446266174, 0.02698320522904396, 0.0019154524197801948, 0.009678449481725693, -0.010786181315779686, 0.04271867498755455, 0.04791649058461189, -0.008244078606367111, 0.019001856446266174, -0.025392616167664528, -0.028730012476444244, -0.027537070214748383, 0.002545652212575078, 0.0007447009556926787, -0.008726936765015125, 0.037009596824645996, 0.009323406964540482, 0.0036604846827685833, 0.00020181927538942546, -0.026954801753163338, 0.011205130256712437, -0.013768535107374191, 0.00020858726929873228, -0.005833342671394348, -0.020308412611484528, 0.004402522929012775, -0.025577237829566002, 0.022069420665502548, -0.018447991460561752, 0.013967358507215977, 0.0018817235250025988, 0.005709078162908554, -0.006397859659045935, 0.0038877117913216352, 0.008378994651138783, 0.0037421444430947304, -0.022282445803284645, 0.011396853253245354, 0.020081184804439545, 0.012383870780467987, 0.023802027106285095, 0.040304385125637054, -0.005400191526859999, 0.013122358359396458, -0.005151661578565836, -0.0024959463626146317, 0.007818028330802917, 0.0005809377180412412, 0.003040936077013612, -0.010324626229703426, 0.03408404812216759, -0.002259843284264207, 0.009969583712518215, -0.031612955033779144, 0.005769435316324234, 0.016516560688614845, -0.011226433329284191, -0.0063339523039758205, 0.006713847164064646, -0.017240848392248154, -0.018277570605278015, 0.005861746147274971, 0.001846219296567142, 0.025733456015586853, 0.0329195111989975, -0.00017951818881556392, -0.027338245883584023, 0.008698533289134502, 0.0546196848154068, -0.022254042327404022, 0.0005418831133283675, 0.016743788495659828, 6.89003718434833e-05, 0.0007318306597881019, -0.0028066083323210478, 0.0014219438889995217, -0.0023610303178429604, -0.006717397831380367, 0.011787399649620056, 0.00040718898526392877, 0.04254825413227081, -0.010842987336218357, -0.0026486145798116922, 0.02050723508000374, -0.01793673075735569, -0.007974247448146343, -0.08038154244422913, -0.005442796275019646, 0.021316731348633766, 0.012440677732229233, -0.012888030149042606, -0.005048699676990509, 0.0037634470500051975, 0.013441896066069603, -0.009018070995807648, 0.025761859491467476, 0.005961157847195864, -0.006152880843728781, -0.030817659571766853, 0.012043030001223087, 0.022964127361774445, -0.003064013784751296, -0.0010109825525432825, -0.0030764404218643904, 0.0040581319481134415, 0.026699170470237732, -0.019044462591409683, -0.023688413202762604, 0.009295003488659859, 0.014173283241689205, -0.02086227759718895, -0.019371099770069122, -0.029255473986268044, 0.0001991564640775323, 0.019527319818735123, 0.004498384427279234, 0.03175497055053711, -0.01255429070442915, 0.02429908514022827, -0.013825342059135437, -0.00854941550642252, -0.0036995394621044397, -0.03860018402338028, -0.00808786042034626, 0.03351597860455513, -0.03320354223251343, 0.03192539140582085, 0.011758996173739433, 0.01573546789586544, -0.03343077003955841, 0.003182952990755439, -0.009223995730280876, 0.0019314293749630451, 0.04672354832291603, -0.007200255058705807, -0.0111909294500947, -0.00906777661293745, -0.006632187403738499, -0.0053291828371584415, -0.02270849607884884, 0.027636481449007988, -0.020393621176481247, 0.018689420074224472, 0.03237984701991081, -0.004011976532638073, -0.031726568937301636, -0.020166395232081413, -0.005772985517978668, -0.026969002559781075, -0.006436914671212435, 0.004313762299716473, 0.000873847515322268, -0.0406736321747303, -0.0171414352953434, 0.021330934017896652, 0.0029255475383251905, -0.021174713969230652, 0.021756984293460846, -0.012781517580151558, -0.0072073559276759624, -0.012248954735696316, 0.0009009194909594953, -0.018845638260245323, -0.020762866362929344, -0.007590801455080509, -0.006539876572787762, 0.00013158749788999557, -0.019001856446266174, -0.013122358359396458, 0.018930848687887192, 0.014194585382938385, 0.0207060594111681, 0.0043847705237567425, -3.370126796653494e-05, -0.016076309606432915, -0.03127211332321167, 0.005755233578383923, -0.0016784617910161614, 0.01533782109618187, 0.0019545070827007294, 0.0017432570457458496, 0.039622705429792404, 0.016999417915940285, -0.01135424803942442, 0.005570611450821161, -0.003158099949359894, -0.031811777502298355, -0.018746227025985718, -0.077995665371418, 0.033572785556316376, 0.0005498715327121317, 0.027295641601085663, -0.011560172773897648, -0.0018355679931119084, -0.009394415654242039, -0.000686562794726342, -0.009117483161389828, 0.009479626081883907, -0.016743788495659828, 0.03831614926457405, 0.001530231675133109, -0.0020379419438540936, -0.014599333517253399, -0.006383657921105623, 0.024015052244067192, 0.013981560245156288, 0.020493034273386, -0.012426475994288921, -0.003731493139639497, 0.0007646720623597503, -0.002169307554140687, 0.026372531428933144, 0.02999396249651909, 0.004558741580694914, 0.00015300097584258765, 0.01280992105603218, -0.022495470941066742, -0.027920516207814217, 0.020166395232081413, -0.009834667667746544, 0.0011751895071938634, 0.0239014383405447, -0.008002649992704391, -0.03394203260540962, -3.777870369958691e-05, 0.008094961754977703, 0.015394628047943115, -0.017084628343582153, -0.012696308083832264, -0.00918849091976881, -0.015991099178791046, -0.020166395232081413, -0.03908304125070572, -0.004679455887526274, -0.02770749107003212, -0.005698426626622677, -0.0019793601240962744, 0.009905676357448101, 0.012589795514941216, 0.023248160257935524, -0.04209379851818085, -0.003940967842936516, 0.002540326677262783, -0.016544964164495468, 0.014528325758874416, 0.00832928903400898, 0.02550622820854187, 0.005975359585136175, 0.05104086175560951, -0.004029728472232819, 0.035333797335624695, -0.023972446098923683, 0.01925748772919178, -0.00645466661080718, -0.013399290852248669, -0.009820465929806232, 0.01930009201169014, -0.016275132074952126, 0.008968365378677845, -0.03760606423020363, -0.0036817872896790504, 0.024852951988577843, 0.021430345252156258, 0.015792274847626686, -0.008648826740682125, -0.0008307986427098513, 0.005964708514511585, 0.021359337493777275, 0.009174289181828499, -0.009912777692079544, -0.0043244133703410625, 0.011531769298017025, 0.008897356688976288, 0.011403954587876797, -0.013207568787038326, 0.017681099474430084, 0.011389752849936485, -0.0071469987742602825, -0.013967358507215977, -0.0022136878687888384, -0.014059669338166714, -0.008797944523394108, 0.011134122498333454, 0.0020237404387444258, -0.003987123724073172, 0.022807909175753593, 0.02346118539571762, 0.013761434704065323, 0.02398664876818657, 0.0038877117913216352, -0.008769541047513485, -0.028857827186584473, -0.018604209646582603, -0.0036782368551939726, -0.0065789311192929745, -0.038543377071619034, 0.009898575954139233, -0.006419162265956402, -0.0009843544103205204, -0.003671135986223817, 0.005996662192046642, 0.026159506291151047, -0.013228870928287506, -0.017311856150627136, -0.007420381065458059, -0.022041017189621925, -0.038997832685709, 0.017965134233236313, 0.0015692863380536437, -0.013008744455873966, 0.004849875811487436, 0.018305974081158638, 0.03587346151471138, -0.004796619527041912, 0.04544539749622345, -0.0006426263134926558, 0.010068995878100395, -0.023589001968503, -0.015451434999704361, -0.00903227273374796, -0.00880504585802555, -0.03195379301905632, -0.005567061249166727, 0.00698722992092371, -0.0009275476331822574, 0.007377776317298412, 0.0023894337937235832, 0.09208373725414276, -0.0050025442615151405, -0.01565025933086872, -0.003891262225806713, -0.007995549589395523, 0.027167826890945435, 0.021245723590254784, 0.020848076790571213, -0.0004100736987311393, -0.046553127467632294, 0.0036498333793133497, -0.01423719059675932, 0.02145874872803688, -0.04408203437924385, -0.003206030698493123, 0.0004677680553868413, -0.003349822713062167, 0.01773790642619133, 0.01341349259018898, -0.009735256433486938, -0.007960045710206032, -0.00259180786088109, 0.013647820800542831, -0.008513910695910454, -0.017113031819462776, -0.012490383349359035, 0.01758168824017048, -0.014464417472481728, -0.010530550964176655, -0.04209379851818085, 0.005680674687027931, -0.014272695407271385, -0.008201474323868752, -0.023517992347478867, 0.0018391184275969863, -0.015920091420412064, -0.01107021514326334, 0.012007526122033596, 0.012603997252881527, -0.008393196389079094, -0.008080760017037392, 0.01806454546749592, -0.024796145036816597, -0.023603202775120735, 0.024043455719947815, -0.00017885249690152705, 0.0009186716051772237, -0.002305998932570219, -0.019285891205072403], "26d56212-a665-414f-803a-387a807bffa0": [-0.02039274200797081, -0.02351801097393036, -0.02484518103301525, -0.0009534569690003991, -0.0018569667590782046, 0.019208278506994247, -0.018765889108181, 0.006065021269023418, -0.02505923993885517, -0.01946515031158924, 0.0269857756793499, 0.00027783148107118905, -0.007570573128759861, -0.0045880102552473545, -0.011559216305613518, 0.014884275384247303, 0.0014591726940125227, -0.007210239768028259, 0.003036078065633774, -0.0033767896238714457, -0.04001486673951149, 0.00948283914476633, -0.0029504543635994196, 0.01883724145591259, -0.01770986057817936, -0.00899050198495388, 0.014170743525028229, -0.024388520047068596, 0.005472789518535137, -0.006161347962915897, 0.0012174637522548437, 0.005319380201399326, -0.02846992202103138, 0.01338585838675499, -0.01953650265932083, -0.004948343615978956, 0.014969899319112301, -0.005437112879008055, 0.0279704499989748, -0.016125820577144623, 0.026928693056106567, 0.01447756215929985, 0.018038086593151093, -0.028412839397788048, -0.016796540468931198, 0.027214106172323227, 0.0111239617690444, -0.0028023964259773493, -0.00018306552374269813, 0.017024870961904526, 0.0306533295661211, 0.0066251433454453945, -0.019993163645267487, 0.005183808971196413, 0.03322204574942589, -0.0232325978577137, -0.0009168884716928005, 0.018509017303586006, 0.0057011195458471775, 0.005255162250250578, 0.012579566799104214, -0.02180553413927555, 0.012972009368240833, 0.012658055871725082, -0.018937136977910995, -0.004288326483219862, -0.004905531648546457, 0.03031083382666111, 0.00023769530525896698, -0.019707750529050827, 0.034734733402729034, 0.004580874927341938, 0.006132806651294231, -0.017153305932879448, 0.007627655752003193, -0.007748956326395273, -0.030482081696391106, -0.0010872442508116364, 0.02550162933766842, 0.008441082201898098, 0.023261139169335365, -0.01790964975953102, -0.028412839397788048, 0.014413343742489815, 0.024031754583120346, -0.012087230570614338, 0.008940554223954678, -0.0009489973890595138, -0.014120795764029026, -0.0038887488190084696, 0.03547680377960205, 0.016539668664336205, 0.017738401889801025, 0.014498967677354813, 0.0047913664020597935, 0.0009927012724801898, -0.010353347286581993, 0.03327912837266922, -0.0184947457164526, -0.02881241776049137, -0.015141146257519722, -0.005140997469425201, -0.02839856967329979, 0.005918746814131737, -0.005908044055104256, -0.004092105198651552, 0.0066679553128778934, 0.009225967340171337, 0.010396159254014492, 0.004052861128002405, -0.03901592269539833, 0.023032808676362038, -0.019094113260507584, -0.005447816103696823, 0.0065430873073637486, -0.012201394885778427, 0.0004158552910666913, -0.013856789097189903, -0.03302225470542908, -0.03293663263320923, 0.00973257515579462, 0.022005323320627213, 0.007153157144784927, -0.00810572225600481, 0.019722022116184235, -0.0017650994705036283, 0.007263754494488239, -0.020706694573163986, 0.01462740357965231, -0.005868799984455109, 0.020692424848675728, 0.003681824542582035, 0.003494522301480174, 0.00804150477051735, 0.002117405878379941, 0.018237875774502754, -0.027456706389784813, 0.005387165583670139, -0.02293291501700878, -0.004020752385258675, 0.012044418603181839, 0.038416557013988495, 0.005947288125753403, 0.0022636798676103354, -0.02130606211721897, 0.022262195125222206, 0.009468568488955498, 4.796829671249725e-05, 0.00035743488115258515, 0.011737599968910217, 0.016767999157309532, 0.000882103806361556, -0.007035424467176199, -0.028584087267518044, 0.005212350282818079, 0.01833776943385601, -0.0005940152914263308, 0.004905531648546457, -0.022547608241438866, -0.02203386463224888, 0.008341187611222267, 0.049890149384737015, 0.008512435480952263, 0.008162804879248142, 0.016739457845687866, 0.043668150901794434, 0.006560925859957933, 0.01447756215929985, -0.008070046082139015, -0.006150644738227129, -0.020706694573163986, 0.00488769356161356, -0.02777066081762314, 0.012087230570614338, 0.008326916955411434, 0.015455100685358047, -0.0006403948646038771, -0.018594641238451004, -0.02343238703906536, -0.024659661576151848, -0.017881108447909355, 0.0030111046507954597, 0.009932363405823708, 0.04957619681954384, -0.009054719470441341, 0.003412466263398528, 0.019365254789590836, -0.008676547557115555, 0.006618008483201265, 0.0037067981902509928, 0.01735309511423111, 0.0306533295661211, -0.009418620727956295, -0.012914926744997501, -0.585895299911499, -0.02697150595486164, 0.006860609166324139, 0.024673933163285255, -0.0131361223757267, 0.016239985823631287, -0.007977286353707314, -0.008712224662303925, -0.045209381729364395, 0.04934786632657051, -0.009040448814630508, 0.02062107063829899, -0.010488918982446194, -0.007641926407814026, 0.013714082539081573, -0.0018409122712910175, -0.01763850823044777, 1.2856116882176138e-06, -0.0027809904422611, 0.01433485560119152, -0.017024870961904526, 0.0007376135908998549, -0.0009409702033735812, -0.009268779307603836, -0.025401735678315163, -0.021277520805597305, 0.03633304312825203, 0.0010685139568522573, 0.0003159608459100127, 0.009539921768009663, -0.029654385522007942, -0.0016375556588172913, 0.008162804879248142, -0.008305511437356472, 0.06033625453710556, 0.00033647488453425467, -0.028213050216436386, 0.029654385522007942, 0.017438719049096107, 0.02194824069738388, -0.0214487686753273, 0.007684738375246525, 0.023974671959877014, -0.008091451600193977, -0.01073151919990778, -0.005772472824901342, 0.014199284836649895, 0.0016732322983443737, -0.017310284078121185, -0.019293902441859245, 0.01905130222439766, -0.0061292387545108795, -0.010610219091176987, 0.005679714027792215, -0.004448871128261089, 0.0006912340177223086, 0.024088837206363678, 0.0005190944648347795, 0.010353347286581993, -0.012679461389780045, -0.01083141379058361, -1.609627543075476e-05, -0.010096476413309574, -0.008569518104195595, -0.01719611883163452, 0.011252397671341896, -0.005044670309871435, -0.004209838341921568, 0.010546001605689526, -0.01472729817032814, 0.014035171829164028, 0.013813977129757404, 0.006293351296335459, -0.015141146257519722, -0.010303400456905365, 0.0156406182795763, 0.007267322391271591, 0.0021370279137045145, -0.010567407123744488, 0.018594641238451004, 0.017438719049096107, -0.013079039752483368, -0.011166773736476898, -0.017609966918826103, -0.002673960756510496, 0.002302924171090126, -0.007827444933354855, 0.01579759642481804, -0.007798903621733189, -0.010032257996499538, 0.029996881261467934, -0.0031181343365460634, -0.009654086083173752, -0.029768550768494606, 0.005672578699886799, 0.001962212612852454, -0.02470247447490692, -0.010610219091176987, -0.0033464645966887474, -0.015126875601708889, -0.023104162886738777, -0.020649611949920654, 0.0056297667324543, 0.001095271436497569, 0.05671151354908943, 0.025886936113238335, -0.023132704198360443, -0.019065571948885918, 0.06067875027656555, -0.016382692381739616, -0.005355056840926409, 0.008455352857708931, -0.014292043633759022, -0.00948283914476633, 0.01798100396990776, -0.03188060596585274, 0.03656137362122536, 0.03008250519633293, 0.00021695828763768077, 0.02435997873544693, 0.013956683687865734, -0.00525873014703393, 0.006436057388782501, -0.00035743488115258515, 0.006079291459172964, 0.024060295894742012, 0.03188060596585274, -0.011980200186371803, 0.03233726695179939, 0.002684663748368621, -0.003942263778299093, -0.03599054738879204, 0.029654385522007942, -0.010039393790066242, 0.011188180185854435, -0.005465654190629721, 0.03390703350305557, 0.00687131192535162, 0.05454237759113312, -0.027941908687353134, -0.030282292515039444, -0.004509521648287773, 0.0007581276586279273, -0.0225190669298172, -0.0007206671871244907, -0.02514486387372017, -0.030995825305581093, -0.014491832815110683, -0.005333650857210159, 0.008469623513519764, -0.015098334290087223, 0.007777497638016939, 0.006510978564620018, 0.02450268529355526, -0.015383747406303883, 0.0013450075639411807, 0.009511380456387997, -0.049747444689273834, 0.004441735800355673, -0.030482081696391106, -0.009668356738984585, 0.04030027985572815, -0.011673381552100182, -0.00814853422343731, 0.010239182971417904, 0.009154614061117172, 0.004234811756759882, 0.008141398429870605, -0.009275914169847965, -0.02201959490776062, -0.008919148705899715, -0.008184210397303104, -0.018651723861694336, -0.000824575312435627, -0.001235302072018385, 0.002502713119611144, -0.012408319860696793, -0.0018819404067471623, 0.01770986057817936, 0.015497912652790546, 0.01444188505411148, 0.024103106930851936, -0.003967237193137407, -0.0056333341635763645, 0.011923117563128471, 0.002418873133137822, 0.017952462658286095, 0.03490598127245903, -0.03547680377960205, 0.0462939478456974, -0.02010732889175415, 0.011709058657288551, -0.015255311504006386, 0.022219382226467133, -0.04298315942287445, 0.04586583003401756, -0.03704657405614853, 0.019736291840672493, -0.014884275384247303, 0.017595697194337845, 0.0037139335181564093, 0.02988271601498127, 0.030824577435851097, -0.003194838995113969, -0.020135870203375816, -0.02308989129960537, 0.020506907254457474, -0.030111046507954597, 0.03570513427257538, 0.010067935101687908, 0.010210641659796238, 0.00849816482514143, -0.023617904633283615, -0.0033036526292562485, -0.0029451027512550354, 0.010802872478961945, -0.004359679762274027, 0.010752925649285316, -0.017681319266557693, 0.013478617183864117, -0.008755036629736423, -0.010224912315607071, 0.02513059228658676, -0.004477412439882755, -0.012922062538564205, -0.014213555492460728, 0.011987335979938507, 0.010810008272528648, 0.005226620938628912, -0.0056083607487380505, 0.011552081443369389, 0.035219933837652206, 0.010224912315607071, 0.0013316288823261857, 0.017752673476934433, -0.014077983796596527, 0.028997935354709625, -0.001958644948899746, 0.0307389535009861, -0.0022511931601911783, -0.013186069205403328, -0.005533439572900534, 0.024088837206363678, -0.01785256713628769, -0.011459321714937687, -0.008348323404788971, 0.018437663093209267, 0.010888496413826942, -0.0184947457164526, 0.00494120828807354, -0.014755839481949806, 0.01185890007764101, -0.0362759605050087, -0.02010732889175415, 0.032108936458826065, -0.014020901173353195, -0.012308425270020962, 0.007520626299083233, 0.025515900924801826, 0.007713279686868191, 0.005337218288332224, -0.005893773399293423, 0.02287583239376545, 0.0029343999922275543, 0.014698756858706474, -0.003681824542582035, -0.017952462658286095, -0.032622676342725754, 0.007649061735719442, -0.030053963884711266, -0.0037852865643799305, -0.004916234873235226, 0.005583386868238449, -0.03758886083960533, -0.01076719630509615, 0.016382692381739616, 0.03536263853311539, 0.012244206853210926, 0.011302345432341099, 0.004484547767788172, -0.017966732382774353, -0.030339375138282776, 0.016910705715417862, 0.014641674235463142, 0.017438719049096107, -0.02053544856607914, -0.018994219601154327, 0.026143807917833328, -0.028070343658328056, 0.015126875601708889, -0.009211696684360504, 0.004934072960168123, -0.013121851719915867, 0.019636398181319237, 0.004984020255506039, 0.010424700565636158, 0.007684738375246525, 0.004020752385258675, 0.0009704033727757633, -0.001492173527367413, 0.010060799308121204, 0.015026981942355633, -0.020792318508028984, 0.017581425607204437, 0.03016812726855278, -0.02032138779759407, -0.005997235421091318, -0.035876382142305374, -0.014798651449382305, -0.032822467386722565, 0.025829853489995003, 0.0017312067793682218, -0.013414399698376656, 0.008034368976950645, 0.006307621952146292, 0.008491029031574726, -0.003597984556108713, -0.015340935438871384, 0.020549718290567398, 0.0031306210439652205, -0.001992537872865796, -0.014591727405786514, 0.004348977003246546, 0.033535998314619064, 0.03256559371948242, 0.055769652128219604, 0.02954022027552128, 0.007463543675839901, -0.016482586041092873, 0.014242096804082394, -0.024588309228420258, -0.0348488986492157, 0.01387819554656744, -0.0024206568486988544, -0.036704082041978836, -0.005833123344928026, 0.005326515529304743, 0.003184136003255844, 0.03390703350305557, 0.0012986280489712954, 0.034163907170295715, -0.005287271458655596, -0.0012700867373496294, -0.021705640479922295, 0.0102320471778512, -0.002784558106213808, 0.013507158495485783, 0.03159519284963608, 0.01186603493988514, -0.001775802462361753, 0.02727118879556656, 0.00839113537222147, 0.0018748050788417459, -0.001193382078781724, -0.016910705715417862, 0.03102436661720276, 0.008234158158302307, 0.005704687442630529, -0.0046022804453969, 0.04015757516026497, 0.012222801335155964, -0.014149337075650692, 0.0003683608374558389, 0.022676043212413788, -0.011216721497476101, 0.029968339949846268, 0.004363247659057379, -0.009475703351199627, 0.025715690106153488, -0.022148029878735542, -0.016910705715417862, 0.020763777196407318, -0.012365507893264294, -0.014577456749975681, 0.038958840072155, 0.010260588489472866, -0.019222548231482506, 0.0037067981902509928, 0.016239985823631287, 0.014655944891273975, -0.014020901173353195, -0.026357868686318398, -0.020649611949920654, -0.009789657779037952, -0.027727849781513214, -0.031338319182395935, 0.027299730107188225, -0.01798100396990776, -0.018594641238451004, -0.011623434722423553, -0.034534942358732224, -0.003353599924594164, -0.01412793155759573, 0.02578704245388508, 0.006892717909067869, -0.01728174276649952, -0.03333621099591255, 0.05205928534269333, -0.006275512743741274, 0.008676547557115555, 0.003155594691634178, -0.013464346528053284, -0.011880305595695972, 0.01249394379556179, -0.0014957411913201213, -0.021834075450897217, -0.006040047388523817, -0.043925024569034576, -0.0011889225570484996, -0.00983960460871458, 4.5849999878555536e-05, -0.0006698280340060592, -0.0019693479407578707, 0.00018284254474565387, -0.004423897713422775, -0.008127127774059772, 0.00039601020398549736, 0.017752673476934433, 0.03293663263320923, 0.003426736919209361, 0.020578259602189064, 0.02775639109313488, -0.004420329816639423, -0.011915982700884342, -0.005308677442371845, -0.03322204574942589, -0.019993163645267487, 0.02116335555911064, -0.005301542114466429, 0.006450328044593334, 0.006418219301849604, 0.02167709916830063, 0.005768905393779278, -0.01621144451200962, 0.0023368168622255325, 0.00630405405536294, -0.00437395041808486, -0.0032394346781075, 0.008548111654818058, 0.006903421133756638, 0.022476254031062126, 0.018323499709367752, 0.0184947457164526, -0.00361047126352787, 0.0019425905775278807, -0.002104919170960784, 0.03490598127245903, -0.002484874799847603, 0.0012852493673563004, 0.016967788338661194, -0.0007915744208730757, -0.038787592202425, -0.017866838723421097, 0.00948997400701046, -0.007278025150299072, 0.010467512533068657, -0.012344101443886757, -0.04052861034870148, -0.03407828137278557, -0.004452439025044441, -0.004423897713422775, -0.002276166807860136, -0.0018641020869836211, -0.025116322562098503, -0.028698252514004707, 0.017809756100177765, -0.01601165533065796, -0.02514486387372017, 0.0010587029391899705, -0.030995825305581093, -0.005940152797847986, -0.007570573128759861, 0.021405955776572227, 0.030396457761526108, 0.009040448814630508, 0.012451131828129292, -0.030824577435851097, -0.007556302472949028, -0.018352041020989418, -0.015383747406303883, -0.019365254789590836, 0.0030664033256471157, 0.04423897713422775, 0.02110627293586731, 0.034249529242515564, -0.0004740527365356684, 0.008662276901304722, 0.004502386320382357, 0.0041741617023944855, -0.010438971221446991, -0.015198228880763054, -0.035020146518945694, -0.007748956326395273, -0.005462086759507656, 0.0032733276020735502, 0.007185265887528658, 0.008269834332168102, 0.012672326527535915, -0.0069176917895674706, 0.031052907928824425, -0.01536947675049305, 0.0038316661957651377, -0.018352041020989418, -0.0532580204308033, -0.04709310457110405, 0.018180793151259422, -0.01448469702154398, -0.012272748164832592, -0.04929078370332718, -0.025316111743450165, 0.01990753971040249, -0.0038173955399543047, 0.0056083607487380505, -0.005847394000738859, 0.02668609283864498, -0.0269857756793499, 0.030225209891796112, 0.007170995231717825, 0.0176955908536911, -0.0121086360886693, -0.009625544771552086, -0.0307389535009861, -0.001364629715681076, 0.017595697194337845, 0.010981256142258644, 0.014955628663301468, -0.006657252553850412, 0.017324553802609444, -0.010032257996499538, 0.03247997164726257, -0.030196668580174446, -0.022633232176303864, 0.00047539061051793396, -0.013357317075133324, -0.02181980572640896, -0.02003597468137741, 0.0015439046546816826, -0.012336966581642628, -0.020906483754515648, 0.004513089079409838, 0.003267975989729166, 0.017724132165312767, -0.030225209891796112, -0.014698756858706474, 0.0010604867711663246, 0.0032572729978710413, 0.01643977500498295, 0.02832721546292305, 0.03399265930056572, 0.022918643429875374, 0.012222801335155964, -0.008412540890276432, 0.010524595156311989, 0.014498967677354813, 0.0013316288823261857, 0.01051746029406786, 0.028241591528058052, -0.020763777196407318, 0.01136656291782856, 0.008369728922843933, 0.02684306912124157, -0.006403948646038771, -0.02741389535367489, 0.03302225470542908, 0.035733677446842194, -0.013678406365215778, -0.03787427395582199, -0.009461432695388794, -0.013557106256484985, -0.013664135709404945, -0.007699009031057358, 0.0018284254474565387, 0.026015372946858406, -0.02739962376654148, -0.025901207700371742, 0.013557106256484985, -0.009547056630253792, 0.021776992827653885, 0.018451934680342674, -0.00814853422343731, -0.01826641708612442, 0.02067815326154232, -0.019522232934832573, -0.007770362310111523, -0.02535892277956009, 0.007806038949638605, -0.03250851109623909, 0.00451665697619319, -0.0007621412514708936, -0.0003469548828434199, -0.009539921768009663, -0.023917589336633682, 0.002916561672464013, 0.03242288902401924, -0.006981909740716219, -0.0069712065160274506, 0.01606873795390129, -0.034534942358732224, 0.03533409908413887, -0.032679758965969086, 0.014070848934352398, -0.0010060799540951848, -0.03639012575149536, -0.008398270234465599, 0.028840959072113037, 0.016097279265522957, 0.009290184825658798, -0.02505923993885517, -0.015597807243466377, -0.02677171677350998, 0.010667301714420319, -0.015398018062114716, 0.0061006974428892136, -0.035733677446842194, -0.006004370748996735, -0.006799959111958742, -0.016982058063149452, 0.007103209849447012, -0.005412139464169741, 0.0006145293591544032, 0.012237071990966797, 0.04820621386170387, -0.02585839480161667, -0.002511632163077593, -0.02124897949397564, -0.0036746892146766186, -0.04255504161119461, 0.01833776943385601, -0.007313701789826155, 0.0074849496595561504, 0.005394300911575556, -0.004249082412570715, -0.048320379108190536, -0.001974699553102255, 0.010396159254014492, 0.014213555492460728, 0.004313300363719463, 0.026857340708374977, 0.06067875027656555, 0.007210239768028259, -0.0007550059235654771, -0.014099390245974064, -0.02782774344086647, 0.0436110682785511, -0.010274859145283699, 0.0037424748297780752, 0.013828247785568237, -0.004463141784071922, 0.016197172924876213, -0.016539668664336205, 0.0025687147863209248, -0.0009498893050476909, -0.034306611865758896, -0.02550162933766842, 0.03313641995191574, 0.012451131828129292, -0.03499160334467888, -0.03367870673537254, -0.02584412507712841, -0.01990753971040249, -0.010381888598203659, 0.023346763104200363, 0.023746341466903687, 0.001818614429794252, 0.006396813318133354, 0.0012112203985452652, 0.004206270445138216, 0.01706768199801445, 0.00442746514454484, -0.021919699385762215, -0.03230872377753258, 0.00479850172996521, -0.016939247027039528, -0.04341128095984459, -0.009404350072145462, 0.027171295136213303, -0.00133608840405941, -0.037132199853658676, -0.01785256713628769, -0.04346836358308792, -0.006896285805851221, -0.014855734072625637, -0.019136924296617508, 0.012572431936860085, 0.061934567987918854, 0.01699632965028286, -0.009104667231440544, 0.02109200321137905, -0.01976483315229416, 0.006657252553850412, -0.01579759642481804, -0.005212350282818079, 0.022205112501978874, -0.023032808676362038, 0.007920203730463982, -0.02321832813322544, -0.04298315942287445, 0.009960904717445374, 0.008012963458895683, 0.02387477643787861, 0.01289352122694254, 0.010681572370231152, -0.014798651449382305, 0.0069176917895674706, -0.007891662418842316, -0.008526706136763096, 0.0034338722471147776, -0.001705341157503426, 0.014028036966919899, -0.04241233691573143, 0.001064946292899549, 0.027157023549079895, 0.012287018820643425, -0.0019996732007712126, 0.005155267659574747, 0.030767494812607765, 0.004809204954653978, 0.015212499536573887, -0.0197505634278059, -0.015141146257519722, 0.013535699807107449, -0.024131648242473602, 0.0306533295661211, 0.006650117225944996, 0.01792392134666443, 0.03619033843278885, -0.00849816482514143, -0.006700064521282911, -0.0017936407821252942, 0.00030481189605779946, -0.029426055029034615, -0.03299371525645256, 0.03265121951699257, -0.018523287028074265, -0.006514545995742083, 0.013300234451889992, -0.002843424677848816, -0.010203505866229534, -0.029996881261467934, 0.009846740402281284, -0.01692497543990612, -0.03213747590780258, 0.01097412034869194, 0.009618409909307957, -0.039329878985881805, -0.011773276142776012, 0.0032483539544045925, -0.026857340708374977, 0.020435553044080734, 0.005162402987480164, -0.021862616762518883, -0.018466204404830933, -0.005394300911575556, -0.002500929171219468, -0.013921007513999939, -0.025758501142263412, -0.004067131783813238, 0.0034445752389729023, -0.021505851298570633, 0.019722022116184235, 0.19316735863685608, -0.019165465608239174, 0.0030717547051608562, 0.007285160478204489, -0.016468316316604614, 0.014527508988976479, -0.020920755341649055, 0.0017151522915810347, -0.01663956418633461, 0.03504868596792221, 0.020521176978945732, 0.002056755591183901, -0.0041313497349619865, -0.01264378521591425, 0.003537334268912673, 0.0061185359954833984, -0.04064277559518814, -0.03159519284963608, -0.02293291501700878, -0.010017987340688705, -0.014984169974923134, -0.02804180234670639, -0.0017499369569122791, -0.0021691368892788887, 0.04652227833867073, 0.014548915438354015, 0.006214862689375877, -0.008383999578654766, 0.034877438098192215, 0.026115266606211662, -0.039900701493024826, 0.006125671323388815, 0.00914034340530634, -0.001733882469125092, 0.012658055871725082, -0.017267471179366112, 0.030225209891796112, 0.011380833573639393, 0.021648557856678963, 0.0008865633863024414, 0.00924023799598217, -0.0051088882610201836, 0.043582528829574585, -0.03764594346284866, -0.02110627293586731, 0.015597807243466377, -0.0015376611845567822, -0.021791264414787292, 0.012137177400290966, 0.0006479761213995516, -0.0023403845261782408, 0.04204129800200462, 0.02620089054107666, 0.02712848223745823, 0.029911257326602936, 0.0022815181873738766, -0.011181044392287731, -0.007920203730463982, -0.02159147523343563, 0.012087230570614338, -0.03356454148888588, 0.005158835556358099, 0.005576251540333033, -0.030282292515039444, -0.026514844968914986, -0.003209109650924802, -0.007281593047082424, -0.024260085076093674, -0.004734284244477749, -0.015098334290087223, 0.009504244662821293, -0.0222479235380888, -0.007213807199150324, 0.01384251844137907, -0.010524595156311989, -0.02464539185166359, -0.00038575317012146115, 0.025373194366693497, 0.019251089543104172, 0.040129031985998154, 0.012972009368240833, 0.007934474386274815, -0.009475703351199627, -0.010496053844690323, -0.011402239091694355, -0.021834075450897217, 0.037075117230415344, 0.0035212798975408077, -0.013071903958916664, 0.0030432133935391903, -0.028512734919786453, -0.008298375643789768, -0.010945579037070274, 0.013942413032054901, -0.008184210397303104, 0.0041741617023944855, 0.009304455481469631, -0.0016634211642667651, 0.006375407334417105, -0.004331138450652361, -0.043154407292604446, 0.05559840425848961, 0.041670262813568115, 0.0018168305978178978, -0.02874106355011463, -0.013186069205403328, 0.002529470482841134, 0.030824577435851097, -0.002458117436617613, -0.00617561861872673, -0.02287583239376545, -0.027028588578104973, 0.007274457719177008, 0.007870256900787354, 0.01805235631763935, 0.03727490454912186, 0.008876336738467216, -0.0012852493673563004, 0.0012103284243494272, -0.003127053380012512, 0.0033214909490197897, -0.021505851298570633, 0.0014377667102962732, 0.009532785974442959, -0.029968339949846268, -0.03944404423236847, -0.005611928179860115, -0.012900656089186668, -0.015911761671304703, -0.028155967593193054, 0.024688202887773514, -0.0046843369491398335, 0.0007215591031126678, -0.014534644782543182, 0.004762825556099415, -0.000625678279902786, -0.00030325105763040483, -0.0029468866996467113, -0.009925228543579578, 0.0027631521224975586, -0.009718304499983788, 0.008690818212926388, 0.01522677019238472, 0.006436057388782501, -0.005066076293587685, -0.013928142376244068, 0.01427063811570406, 0.013671270571649075, -0.01592603139579296, -0.02109200321137905, 0.006193456705659628, -0.002725691767409444, 0.005918746814131737, 0.014213555492460728, 0.018451934680342674, -0.008227022364735603, -0.02704285830259323, -0.045637499541044235, 0.0007639250834472477, -0.02180553413927555, -0.0409281887114048, -0.0038423691876232624, 0.027242647483944893, 0.013828247785568237, -0.03059624694287777, 0.006550222635269165, -0.18323498964309692, 0.0014413343742489815, 0.003226947970688343, -0.011687652207911015, 0.007203104440122843, 0.0012023012386634946, -0.00874076597392559, 0.018723076209425926, -0.01586894877254963, -0.013849654234945774, 0.02811315655708313, -0.0013120067305862904, -0.027927638962864876, -0.004748554900288582, 0.011152503080666065, -0.005330083426088095, 0.019779104739427567, 0.01636842079460621, 0.027742119506001472, 0.007955880835652351, 0.02647203393280506, -0.03399265930056572, -0.00023234382388181984, 0.002657906385138631, -0.018252145498991013, 0.012115771882236004, -0.04746413975954056, 0.005405004136264324, 0.030824577435851097, -0.00679639121517539, -0.027884826064109802, -0.0010319454595446587, 0.0014564970042556524, 0.01565488986670971, -0.008219887502491474, -0.003992211073637009, -0.011701922863721848, 0.00016210552712436765, -0.011309480294585228, 0.041042353957891464, 0.011238127015531063, 0.03130977973341942, 0.0001681259454926476, 0.0177812147885561, -0.016311338171362877, 0.043668150901794434, 0.03667553886771202, 0.0064895725809037685, 0.018851513043045998, -0.017467260360717773, -0.026229431852698326, -0.018723076209425926, -0.015340935438871384, 0.012543890625238419, 0.009511380456387997, 0.030139587819576263, 0.012465402483940125, -0.007356513757258654, -0.00027091914671473205, -0.011837493628263474, 0.01783829741179943, -0.019664939492940903, -0.0013164663687348366, -0.017866838723421097, -0.01087422575801611, -0.0024652527645230293, -0.03367870673537254, 0.02393185906112194, -0.018937136977910995, 0.022148029878735542, -0.007777497638016939, 0.00948283914476633, -0.014006630517542362, -3.425510658416897e-05, 0.0074706790037453175, -0.0004517548659350723, -0.030396457761526108, 0.039272796362638474, 0.023946130648255348, 0.009518515318632126, 0.019008489325642586, 0.04221254587173462, 0.00017559573461767286, 0.004584442358464003, -0.010567407123744488, -0.009925228543579578, 0.010389024391770363, 0.01285070925951004, -0.006318324711173773, -0.013607053086161613, 0.030139587819576263, -0.00030347402207553387, 0.013799706473946571, -0.018751617521047592, -0.0016384476330131292, -0.001423496170900762, -0.0013057633768767118, 0.010424700565636158, 0.0005355948815122247, -0.011052608489990234, -0.009996581822633743, 0.006354001350700855, -0.018665993586182594, 0.012322695925831795, 0.04198421537876129, 0.01487000472843647, -0.021719910204410553, 0.00864087138324976, 0.04786371812224388, -0.026257973164319992, 0.005658308044075966, 0.022262195125222206, 0.011744734831154346, 0.007991557009518147, -0.013164663687348366, 0.01100979745388031, 0.009068990126252174, -0.0041456203907728195, 0.005822420120239258, 0.020150139927864075, 0.05100325867533684, -0.004277623724192381, -0.01369981188327074, 0.017724132165312767, -0.03436369448900223, -0.01678227074444294, -0.08117138594388962, -0.0020549718756228685, -0.002388548105955124, 0.027642225846648216, -0.011059744283556938, -0.0017633156385272741, 0.003323274664580822, 0.02117762714624405, 0.0052480269223451614, 0.012429725378751755, 0.016596751287579536, -0.015340935438871384, -0.0346776507794857, -0.0011140016140416265, 0.019936081022024155, -0.011687652207911015, 0.0011978416005149484, -0.007078236434608698, -0.0010729735950008035, 0.035162851214408875, -0.004784231074154377, -0.018780158832669258, -0.006125671323388815, -0.009440027177333832, -0.013171798549592495, -0.0034142499789595604, -0.03256559371948242, 0.013821112923324108, 0.005526304244995117, 0.01728174276649952, 0.033535998314619064, -0.009811063297092915, 0.027670767158269882, 0.00012219233030918986, 0.0020959998946636915, -0.009782521985471249, -0.03533409908413887, -0.011437916196882725, 0.017738401889801025, -0.05203074589371681, 0.02755660191178322, 0.018166521564126015, 0.022818749770522118, -0.04275482892990112, 0.009725439362227917, -0.011502133682370186, -0.0066536846570670605, 0.04072840139269829, -0.017538614571094513, -0.027784932404756546, -0.012158582918345928, 0.004277623724192381, -0.0083554582670331, -0.033107880502939224, 0.022262195125222206, -0.024417061358690262, 0.02096356637775898, 0.02343238703906536, -0.026443492621183395, -0.021505851298570633, -0.024402789771556854, -0.009789657779037952, -0.03008250519633293, -0.0020353496074676514, 0.017595697194337845, 0.013706947676837444, -0.0346776507794857, -0.011031202971935272, 0.03259413689374924, 0.003810260212048888, -0.014812922105193138, 0.008448217995464802, -0.021220438182353973, -0.010160693898797035, -0.020592529326677322, -0.0022654638160020113, 0.002604391425848007, -0.0231469739228487, -0.0033268423285335302, 0.0015323096886277199, -0.0001967787102330476, -0.018566099926829338, -0.022219382226467133, 0.014413343742489815, 0.011808952316641808, 0.0042526498436927795, 0.005437112879008055, 0.004716445691883564, -0.008733630180358887, -0.036646999418735504, 0.001732098637148738, -0.006721470504999161, 0.003663986222818494, -0.0047093103639781475, -0.02748524770140648, 0.02089221403002739, 0.020478365942835808, 0.005925882142037153, -0.004348977003246546, 0.005390733480453491, -0.022276464849710464, -0.020235763862729073, -0.0766618624329567, 0.0444958470761776, -0.0010408646194264293, 0.022148029878735542, -0.01735309511423111, -0.009440027177333832, -0.014527508988976479, -0.0025419574230909348, -0.016239985823631287, 0.03059624694287777, -0.00973971001803875, 0.03350745886564255, -0.0012727625435218215, -0.00718883378431201, -0.01264378521591425, -0.022775938734412193, 0.03142394497990608, 0.0057296608574688435, 0.025330381467938423, -0.01783829741179943, -0.01275081466883421, -0.00016422382032033056, 0.010246317833662033, 0.01635415107011795, 0.018665993586182594, 0.01002512313425541, -0.008983366191387177, 0.026514844968914986, -0.0269857756793499, -0.026115266606211662, 0.007031856570392847, -0.01713903620839119, 0.01160916406661272, 0.01422782614827156, -0.013007686473429203, -0.013856789097189903, 0.013928142376244068, 0.01882297173142433, 0.006782120559364557, -0.010717248544096947, -0.010182100348174572, -0.02364644594490528, -0.0016357718268409371, -0.013264557346701622, -0.01260097324848175, -0.0193937961012125, -0.015826137736439705, -0.012536754831671715, 0.002818451030179858, 0.02527329884469509, 0.022148029878735542, 0.01532666478306055, -0.03978653624653816, -0.010139288380742073, 0.011145368218421936, -0.010824278928339481, 0.015398018062114716, 0.006792823784053326, 0.022419171407818794, 0.004423897713422775, 0.041755884885787964, 0.0045737395994365215, 0.0395011268556118, -0.014149337075650692, 0.007099642418324947, 0.010496053844690323, -0.017253201454877853, -0.01792392134666443, 0.009782521985471249, -0.012465402483940125, 0.004484547767788172, -0.013207475654780865, 0.0069747744128108025, 0.024873722344636917, 0.009218831546604633, 0.016482586041092873, -0.026728903874754906, 0.007891662418842316, -0.013200339861214161, 0.02012159861624241, 0.007449273020029068, 0.00010881361231440678, -0.0017829377902671695, 0.002343952190130949, 0.004259785171598196, 0.015183958224952221, -0.022076675668358803, 0.01812371052801609, 0.005230188835412264, -0.005693984683603048, -0.03818822652101517, -0.013863924890756607, 0.0074135963805019855, -0.0013780085137113929, 0.016097279265522957, 0.0018748050788417459, -0.012964874505996704, 0.008305511437356472, 0.028355756774544716, 0.008548111654818058, 0.02080659009516239, -0.00435254443436861, -0.024673933163285255, -0.027157023549079895, -0.02471674419939518, -0.014998440630733967, -0.006810661870986223, -0.03935841843485832, 0.01260810811072588, -0.014755839481949806, 0.006507410667836666, -0.013478617183864117, 0.02632932737469673, 0.03330766782164574, -0.008840659633278847, -0.01136656291782856, -0.004595145583152771, -0.01622571423649788, -0.03541972115635872, 0.03088166005909443, 0.018023815006017685, -0.011487863026559353, 0.022818749770522118, 0.01946515031158924, 0.03379287198185921, -0.0024955777917057276, 0.04438168182969093, 0.001764207612723112, 0.018608910962939262, -0.017510073259472847, -0.016396962106227875, -0.006325460039079189, -0.03188060596585274, -0.02825586311519146, -0.020164411514997482, 0.022918643429875374, 0.005305109545588493, 0.008084316737949848, 0.011958794668316841, 0.10086486488580704, -0.007706144358962774, -0.035590969026088715, -0.005255162250250578, 0.0026668254286050797, 0.007349378429353237, 0.01733882538974285, 0.026386409997940063, 0.005915179383009672, -0.030995825305581093, 0.0006145293591544032, -0.01882297173142433, 0.004727148916572332, -0.017510073259472847, -0.01967920921742916, -0.0030628356616944075, -0.002260112203657627, 0.015626348555088043, -0.007099642418324947, -0.0157262422144413, 0.002015727572143078, -0.000625232292804867, 0.018537558615207672, 0.007213807199150324, -0.013813977129757404, -0.02210521697998047, 0.029797092080116272, -0.013150393031537533, -0.009168884716928005, -0.025944018736481667, -0.0008120884886011481, -0.008804983459413052, -0.014541779644787312, -0.03031083382666111, -0.002641851780936122, 0.005772472824901342, -0.014149337075650692, -0.008012963458895683, -0.01090990286320448, 0.0006466382765211165, -0.0022119488567113876, 0.008812119252979755, -0.02818450890481472, -0.028783876448869705, 0.010610219091176987, -0.004930505529046059, 0.021634286269545555, -0.013871059753000736, -0.01926536113023758], "ca972543-cc22-4e27-a596-6492703c69ce": [-0.027352092787623405, -0.006105768494307995, -0.02506425231695175, -0.00014913776249159127, -0.010703309439122677, 0.016262618824839592, -0.006094838958233595, -0.011992952786386013, -0.032787539064884186, -0.023169860243797302, 0.01490740105509758, 0.014688816852867603, 0.003879858646541834, -0.006743303965777159, -0.013923774473369122, 0.01702037639915943, 0.003701348789036274, -0.009712397120893002, 0.011038471013307571, -0.02333015576004982, 0.0009317125659435987, 0.004863484762609005, -0.02504967898130417, 0.015038550831377506, -0.019483083859086037, -0.008415468037128448, 0.011927377432584763, -0.021173464134335518, -0.00972696952521801, 0.0015583188505843282, 0.003360722679644823, -0.01135177444666624, -0.030980581417679787, 0.004867128096520901, -0.03517738729715347, 0.013654188252985477, 0.002353416755795479, -0.0012231573928147554, 0.04295895993709564, -0.018579605966806412, 0.023301010951399803, -0.010142278857529163, 0.005034708883613348, -0.02522454597055912, -0.013690618798136711, 0.027526959776878357, 0.038645580410957336, 0.0031676404178142548, -0.011038471013307571, 0.040073659271001816, 0.019016772508621216, -0.01020785328000784, -0.015592295676469803, -0.013122301548719406, 0.02905704453587532, 0.00699103157967329, -0.018288159742951393, 0.017676126211881638, -0.03372016176581383, -0.001418061088770628, 0.023811038583517075, -0.023067854344844818, -0.007905439473688602, -0.004929060116410255, -0.020313702523708344, -0.011395490728318691, -9.06780333025381e-05, 0.022514110431075096, -0.0001255717215826735, -0.018477600067853928, 0.02235381491482258, 0.0037414224352687597, -0.009289802983403206, -0.006040193140506744, 0.01785099320113659, -0.016277192160487175, -0.014819967560470104, -0.006102125160396099, 0.033632729202508926, -0.009100363589823246, 0.010943751782178879, -0.032233793288469315, -0.02198950946331024, 0.033370427787303925, 0.01208767294883728, -0.010477440431714058, 0.015504862181842327, 0.00046266859862953424, -0.008459185250103474, 9.193033474730328e-05, 0.012860001064836979, 0.032787539064884186, 0.004167660605162382, 0.009238800033926964, -0.003034668741747737, 0.01646663062274456, -0.008517473936080933, 0.03258352726697922, -0.003728671697899699, -0.015038550831377506, -0.017923854291439056, -0.001007306040264666, -0.021202608942985535, 0.0034864081535488367, -0.007042034529149532, 0.01575259119272232, 0.0024353854823857546, -0.010637735016644001, 0.02043027989566326, -0.003593878587707877, -0.0063207088969647884, 0.02682749181985855, -0.019861962646245956, -0.00228419853374362, 0.0008788881823420525, -0.021013168618083, 0.004757835995405912, -0.018637893721461296, -0.0054281591437757015, -0.027308376505970955, -0.0017504902789369226, 0.019147923216223717, 0.01713695377111435, -0.011584930121898651, 0.006980102509260178, -0.007377196103334427, -0.019687095656991005, -0.022601542994379997, 0.007796147838234901, -0.0028689096216112375, 0.002881660358980298, 0.008094878867268562, -0.004335241392254829, 0.0023934904020279646, 0.007745145354419947, 0.019555944949388504, -0.018958482891321182, 0.01675807498395443, -0.021202608942985535, -0.007956442423164845, 0.0058871847577393055, 0.028445011004805565, 0.0035793061833828688, 0.01111861877143383, -0.01273613702505827, 0.02990223467350006, 0.006499218754470348, -0.005989190191030502, -0.011992952786386013, -0.0017322750063613057, -0.004003722686320543, 0.005664958152920008, -0.009034788236021996, -0.02972736768424511, -0.01296929270029068, 0.0029180909041315317, -0.019104205071926117, -0.0012523018522188067, -0.02016797848045826, -0.027191799134016037, 6.694122566841543e-05, 0.04820496588945389, 0.011883661150932312, -0.02442307397723198, 0.006415428128093481, 0.03768381103873253, 0.008094878867268562, -0.011191479861736298, -0.0025264620780944824, -0.023942189291119576, -0.015082268044352531, 0.011278913356363773, -0.0034445130731910467, -0.004546538460999727, 0.005355298053473234, 0.026769204065203667, -0.010419150814414024, -0.015417429618537426, -0.013501179404556751, -0.02248496562242508, -0.01992025040090084, 0.004127586726099253, 0.02059057354927063, 0.03887873515486717, -0.015679730102419853, 0.018084149807691574, 0.024146201089024544, -0.01693294197320938, 0.0230824276804924, 0.009151366539299488, 0.024670802056789398, 0.010521156713366508, 0.01213138923048973, -0.010717881843447685, -0.6076040863990784, -0.00558116752654314, -0.009821689687669277, 0.02105688489973545, -0.01646663062274456, 0.008983785286545753, 0.0017559548141434789, -0.012094958685338497, -0.03328299522399902, 0.0343613401055336, -0.026623481884598732, 0.006051122210919857, -0.017151525244116783, -0.004502822179347277, -0.005646742880344391, -0.00544273154810071, -0.0013798088766634464, -0.015723446384072304, 0.013501179404556751, -0.006357139442116022, -0.0014936545630916953, 0.011424635536968708, 0.009129507467150688, 0.009741541929543018, -0.014258936047554016, -0.006488289684057236, 0.023679889738559723, 0.014637814834713936, 0.005745105445384979, -0.005144000519067049, -0.009209655225276947, 0.010579445399343967, 0.005577524658292532, -0.0063352808356285095, 0.05799751356244087, -0.0024645300582051277, -0.019322790205478668, 0.015402857214212418, 0.019803673028945923, 0.029873089864850044, -0.031476035714149475, 0.024743663147091866, 0.03957820311188698, -0.008838063105940819, 0.002715901006013155, -0.009085791185498238, 0.023767322301864624, -0.006750589702278376, -0.0009093988337554038, -0.013231593184173107, 0.02437935583293438, 0.011315343901515007, -0.021843787282705307, 0.023563310503959656, -0.0009453740203753114, 0.02602601982653141, 0.036867763847112656, 0.0042150202207267284, -0.014142358675599098, -0.003909002989530563, 0.000938087934628129, 0.011133191175758839, -0.005297008901834488, -0.012349972501397133, -0.016612352803349495, 0.0008174115209840238, 0.013107729144394398, 0.014557667076587677, 0.012167819775640965, -0.02555970847606659, 0.00015437466208823025, 0.029552500694990158, 0.003901717020198703, -0.002061971928924322, -0.0030838502570986748, 0.006069337483495474, 0.028109850361943245, 0.0011084009893238544, -0.03182576969265938, 0.0228201262652874, 0.026040591299533844, -0.01755954883992672, -5.3507439588429406e-05, -0.006972816307097673, -0.0007450057310052216, -0.00648464635014534, -0.02504967898130417, 0.007905439473688602, -0.00816773995757103, -0.01002570055425167, 0.0022313741501420736, -0.02210608683526516, 0.012277111411094666, -0.013960205018520355, 0.014965689741075039, 0.003974578343331814, -0.018637893721461296, -0.003635773668065667, -0.0060219778679311275, -0.018331877887248993, -0.03870386630296707, -0.009573961608111858, 0.007348051760345697, -0.005807037465274334, 0.04677688702940941, 0.0022732692304998636, -0.03692605346441269, -0.0417640395462513, 0.06505047529935837, -0.016903797164559364, -0.00013479321205522865, -0.0017249888041988015, 0.0073881251737475395, -0.031213736161589622, 0.0006498307920992374, -0.035818565636873245, 0.03377845138311386, 0.004899915307760239, 0.009297088719904423, 0.038849588483572006, 0.03188405930995941, -0.008320748805999756, 0.010236998088657856, -0.020648863166570663, 0.013442890718579292, 0.038383278995752335, 0.0041203005239367485, -0.01256855670362711, 0.013464748859405518, -0.0038033544551581144, -0.009909123182296753, -0.01595660112798214, 0.033078983426094055, -0.012342686764895916, 0.018579605966806412, -0.01429536659270525, 0.02083830162882805, 0.0059709749184548855, 0.023009566590189934, -0.026725487783551216, -0.020663434639573097, 0.009974697604775429, 0.010433723218739033, -0.011992952786386013, -0.0017204349860548973, -0.022878415882587433, -0.0024317423813045025, 0.0016821828903630376, -0.006069337483495474, 0.0055119493044912815, -0.026579763740301132, 0.007577564567327499, 0.017676126211881638, 0.030135391280055046, -0.004899915307760239, -0.0043498133309185505, 0.008022017776966095, -0.0343613401055336, -0.016262618824839592, -0.010586732067167759, -0.010171422734856606, 0.028532445430755615, -0.0008893619524315, -0.006524720229208469, 0.0053443689830601215, 0.0059709749184548855, -0.0248456671833992, -0.006287921220064163, -0.007905439473688602, -0.025457702577114105, -0.0015000299317762256, -0.009777972474694252, -0.008291603997349739, 0.007701428607106209, -0.0061421990394592285, 0.02319900505244732, -0.0173118207603693, -0.032700106501579285, -0.007985587231814861, 0.004863484762609005, -0.005260578356683254, 0.03465278446674347, 0.006524720229208469, -0.005271507427096367, 0.009777972474694252, -0.008488329127430916, 0.01159950252622366, 0.038470711559057236, -0.01949765533208847, 0.04354185238480568, -0.01894391141831875, 0.025195401161909103, -0.03144689276814461, 0.03019367903470993, -0.02707521989941597, 0.02825557254254818, -0.023679889738559723, 0.005060209892690182, 0.009894550777971745, 0.02526826225221157, 0.006058408413082361, 0.011781655251979828, 0.03672204166650772, 0.015315423719584942, -0.0024845667649060488, -0.014732534065842628, 0.012233395129442215, -0.030834859237074852, 0.03360358253121376, 0.016903797164559364, 0.011934664100408554, 0.024772806093096733, -0.02350502274930477, -0.0010218783281743526, -0.02947963960468769, 0.00603290693834424, 0.009807117283344269, 0.010790742933750153, -0.02337387204170227, 0.004371671937406063, 0.004054725635796785, -0.02270354889333248, 0.025151684880256653, -0.012750709429383278, -0.0036667396780103445, -0.014747106470167637, 0.025020534172654152, 0.03214636072516441, 0.014273508451879025, -0.012998437508940697, 0.005384442396461964, 0.012204250320792198, 0.0007937316549941897, 0.007198686245828867, 0.025122540071606636, 0.013399174436926842, 0.016524920240044594, 0.007435485254973173, 0.02843043953180313, -0.0075338478200137615, -0.006266063079237938, 0.0024353854823857546, 0.024102482944726944, -0.030893146991729736, -0.008175026625394821, 0.011133191175758839, 0.023607026785612106, -0.005905400030314922, -0.01267784833908081, 0.013253451324999332, 0.006459144875407219, 0.04147259145975113, -0.021013168618083, 0.01459409762173891, 0.018011288717389107, -0.010688737966120243, -0.005501020234078169, 0.0066631562076509, 0.024452216923236847, 0.023607026785612106, 0.02163977548480034, 0.01128619909286499, 0.028736455366015434, 0.012116816826164722, 0.00905664637684822, -0.005482804961502552, -0.02012426219880581, -0.019089633598923683, -0.013246165588498116, -0.03205892816185951, -0.003275110851973295, -0.019891107454895973, 0.0016503060469403863, -0.044328752905130386, 0.021712636575102806, -0.0027559746522456408, 0.035439684987068176, 0.000572871183976531, 0.018477600067853928, -0.0033734734170138836, -0.036488886922597885, -0.015767162665724754, 0.015694301575422287, 0.0073990547098219395, 0.009195082820951939, -0.01584002375602722, 0.011526641435921192, 0.017952999100089073, -0.01936650648713112, 0.017282675951719284, -0.015606868080794811, 0.009777972474694252, -0.0018242622027173638, -0.009224227629601955, -0.006510147824883461, 0.017530404031276703, 0.020532285794615746, 0.01600031927227974, 0.0019927537068724632, 0.025457702577114105, 0.009668680839240551, 0.013260737992823124, -0.013595899567008018, 0.00871419906616211, 0.02395676076412201, -0.013020295649766922, -0.005825252737849951, -0.041880615055561066, 0.0019089633133262396, -0.021829213947057724, -0.0009471955709159374, -0.005322510376572609, -0.01315873209387064, 0.009996555745601654, 0.011315343901515007, 0.01713695377111435, -0.012932862155139446, -0.011337202042341232, 0.03334128484129906, -0.021960364654660225, 0.004069298040121794, -0.017865564674139023, -0.021071458235383034, 0.010681451298296452, 0.032904114574193954, 0.042638372629880905, 0.020036829635500908, 0.005446374416351318, -0.028605306521058083, 0.01949765533208847, -0.03179662674665451, -0.03645974397659302, 0.008765202015638351, -0.017676126211881638, -0.028780173510313034, -0.014098641462624073, -0.0005182252498343587, 0.012634131126105785, 0.020780013874173164, -0.0038215697277337313, 0.03596428781747818, -0.0032550739124417305, -0.015650585293769836, -0.0069145276211202145, 0.002681292127817869, -0.012182392179965973, 0.021013168618083, 0.03718835487961769, 0.018127866089344025, 0.003748708637431264, 0.045494530349969864, 0.019847389310598373, 0.005610312335193157, -0.0049545615911483765, -0.0009262479725293815, 0.023548739030957222, 0.020444851368665695, 0.03302069380879402, -0.001758687081746757, 0.051177702844142914, 0.02451050654053688, -0.016787219792604446, -0.0026211815420538187, 0.030980581417679787, 0.006692301016300917, 0.020269984379410744, 0.01742839813232422, -0.015344567596912384, 0.017297247424721718, -0.01595660112798214, -0.008976499550044537, 0.005391728598624468, -0.015169701538980007, -0.010798029601573944, 0.035439684987068176, -0.006102125160396099, -0.03608086332678795, -0.0008588513592258096, 0.002745045581832528, 0.024146201089024544, -0.005817966535687447, -0.008750629611313343, -0.013217020779848099, 0.005278793629258871, -0.03095143660902977, 0.003792425384745002, 0.021290041506290436, -0.009938267059624195, -0.028649022802710533, -0.0019253571517765522, -0.014521236531436443, -0.012976579368114471, -0.012138674966990948, 0.02758524939417839, 0.008692340925335884, -0.0133263124153018, -0.03144689276814461, 0.04855469986796379, -0.010666878893971443, 0.013836340978741646, 0.023213576525449753, -0.010528442449867725, -0.006510147824883461, 0.004156731069087982, -0.0005382620729506016, -0.010645020753145218, -0.0016867367085069418, -0.03048512525856495, -0.026390325278043747, -0.0013178768567740917, -0.006517434027045965, -0.0006762429839000106, -0.0018479421269148588, 0.011672363616526127, -0.012954720295965672, 0.0030510625801980495, 0.02134833112359047, -0.010892748832702637, 0.014441088773310184, 0.024772806093096733, 0.011577644385397434, 0.036663755774497986, -0.014368227683007717, 0.0019963968079537153, 0.005577524658292532, -0.02854701690375805, -0.018754471093416214, -0.009734256193041801, 0.0015264421235769987, -0.002559249522164464, -0.0062223463319242, 0.010185995139181614, 0.010688737966120243, -0.02417534589767456, 0.008757916279137135, 0.007519275415688753, -0.0008879958186298609, -0.0049691335298120975, 0.01218967791646719, 0.01073973998427391, 0.010280715301632881, 0.02257239818572998, 0.015898313373327255, -0.01637919619679451, -0.011992952786386013, -0.020998597145080566, 0.008583049289882183, -0.034798506647348404, 0.0037997113540768623, 0.026579763740301132, -0.007621281314641237, -0.036663755774497986, -0.006510147824883461, 0.006772448308765888, -0.015184273011982441, 0.018419310450553894, 0.006269705947488546, -0.030135391280055046, -0.027352092787623405, -0.019526800140738487, -0.0030874931253492832, 0.007307977881282568, -0.006619439925998449, 0.002012790646404028, -0.013486607931554317, 0.009770686738193035, -0.005694102495908737, -0.019322790205478668, 0.017748987302184105, -0.025151684880256653, 0.008335321210324764, 0.005351654719561338, 0.002919912338256836, 0.019730811938643456, 0.0028470512479543686, 0.020750869065523148, -0.017282675951719284, -0.02257239818572998, -0.03911188989877701, -0.02611345238983631, -0.024947673082351685, -0.007890868000686169, 0.03255438432097435, 0.02690035291016102, 0.026958642527461052, -0.011111332103610039, 0.00141897180583328, -0.008728771470487118, 0.0006707783904857934, 0.002220445079728961, -0.015971174463629723, -0.025107968598604202, -0.0005637634894810617, -0.00017406995175406337, -0.0004704101011157036, 0.0012268003774806857, 0.01442651730030775, -0.0043498133309185505, 0.0020528642926365137, 0.027046076953411102, -0.005960045848041773, 0.006750589702278376, -0.019570518285036087, -0.04829240217804909, -0.038091834634542465, 0.010652306489646435, -0.015271706506609917, 0.010710596106946468, -0.04628143087029457, -0.006295207422226667, 0.029027901589870453, -0.010193281807005405, -0.007562992163002491, -0.01785099320113659, 0.028532445430755615, -0.010601304471492767, 0.04639801010489464, 0.004149445332586765, -0.0037177426274865866, -0.013552182354032993, -0.024903956800699234, -0.02934849075973034, -0.0051148561760783195, 0.003745065536350012, 0.00778157589957118, 0.018171582370996475, 0.005333439446985722, 0.016364624723792076, -0.006925456691533327, 0.022222664207220078, -0.02649233117699623, -0.007351694628596306, 0.004874413833022118, -0.006692301016300917, -0.011861803010106087, -0.013537609949707985, -0.018331877887248993, -0.0005842557293362916, -0.007096680346876383, 0.007650425657629967, 0.0030292042065411806, 0.014433803036808968, -0.026244603097438812, -0.014149644412100315, -0.014645100571215153, -0.0059709749184548855, 0.027395809069275856, 0.029800228774547577, 0.040190234780311584, 0.02041570656001568, 0.002648504450917244, -0.028138993307948112, -0.00201096897944808, 0.00589447095990181, -0.005034708883613348, 0.02555970847606659, 0.03500251844525337, -0.004284238442778587, 0.017544975504279137, 0.014258936047554016, 0.021173464134335518, -0.019264500588178635, -0.014521236531436443, 0.03103886917233467, 0.01675807498395443, 0.007056606933474541, -0.031650904566049576, -0.012349972501397133, -0.0285907331854105, -0.007460986729711294, -0.016116896644234657, -0.0018388344906270504, 0.02783297747373581, -0.018055004999041557, -0.021129747852683067, 0.0062223463319242, -0.014921973459422588, 0.045960843563079834, 0.0123135419562459, -0.015942029654979706, -0.01027342863380909, 0.0019162495154887438, -0.01595660112798214, -0.018098721280694008, 0.0017186134355142713, 0.025035107508301735, 0.005322510376572609, -0.02707521989941597, -0.008007445372641087, -0.005056567024439573, 0.010943751782178879, -0.015169701538980007, 0.0076868562027812, 0.03339957073330879, 0.0033425074070692062, -0.009741541929543018, 0.020911162719130516, -0.03514824062585831, 0.01667064242064953, -0.020065974444150925, -0.005544736981391907, -0.013588612899184227, -0.0249768178910017, -0.0017422933597117662, 0.019934823736548424, 0.005326153244823217, -0.004029224161058664, -0.01315873209387064, -0.018375594168901443, -0.03398246318101883, 0.014878256246447563, -0.013967491686344147, 0.02417534589767456, -0.039811357855796814, -0.02640489675104618, -0.006018334999680519, -0.03170919418334961, 0.02518082968890667, 0.01111861877143383, 0.008991071954369545, 0.0025264620780944824, 0.017486687749624252, -0.01702037639915943, 0.0011512069031596184, -0.022135231643915176, 0.0017869208240881562, -0.04989534616470337, 0.00865591038018465, -0.015927458181977272, -0.016962086781859398, -0.01680179126560688, -0.006929100025445223, -0.04779694601893425, -0.02627374790608883, 0.015504862181842327, 0.030426835641264915, -0.01303486805409193, 0.03439048305153847, 0.0249768178910017, 0.01722438633441925, 0.005530165042728186, -0.006313422694802284, -0.024699945002794266, 0.037159211933612823, -0.02391304448246956, 0.003198606427758932, 0.027891265228390694, -0.0008310730336233974, 0.00871419906616211, -0.027352092787623405, 0.0035100881941616535, 0.018579605966806412, -0.027978699654340744, -0.014878256246447563, -0.005610312335193157, 0.02459793910384178, -0.04266751557588577, -0.014878256246447563, -0.031155448406934738, -0.02620088681578636, -0.012721564620733261, 0.01196380890905857, 0.019643379375338554, 0.011949236504733562, 0.010594017803668976, 0.006065694615244865, -0.001140277716331184, 0.012466550804674625, -0.0064810034818947315, -0.011796227656304836, -0.030164536088705063, 0.003428119234740734, -0.012583129107952118, -0.02623003162443638, 0.005734176374971867, 0.017282675951719284, 0.027046076953411102, -0.03494422882795334, -0.03943248093128204, -0.035818565636873245, -0.049341604113578796, -0.011089473962783813, -0.01798214390873909, 0.012779854238033295, 0.0384124219417572, 0.015242562629282475, 0.011861803010106087, 0.02674005925655365, -0.016233474016189575, -0.003103886963799596, -0.0307474248111248, -0.007402697578072548, 0.017501259222626686, -0.007490131072700024, 0.011752511374652386, -0.021625204011797905, -0.04016109183430672, 0.01579630747437477, 0.0007217812235467136, 0.02426277846097946, 0.00699103157967329, 0.008583049289882183, -0.024860240519046783, 0.02118803560733795, -0.002264161594212055, -0.01495111733675003, 0.013850913383066654, -0.0036394167691469193, -0.010120419785380363, -0.02981480211019516, 0.018958482891321182, 0.007759717293083668, 0.008663196116685867, -0.012940148822963238, 0.0006038371939212084, 0.020648863166570663, -0.007825292646884918, 0.0055119493044912815, -0.02152319811284542, -0.020954880863428116, -0.006036550272256136, -0.029363062232732773, 0.037246644496917725, 0.007082108408212662, -0.006317065563052893, 0.02341758832335472, -0.005260578356683254, -0.018623322248458862, -0.0015865525929257274, 0.007548419758677483, 0.0015810879413038492, -0.0004735977854579687, 0.029960524290800095, -0.0133481714874506, 0.006630368996411562, -0.0002468173042871058, 0.02072172425687313, -0.02021169662475586, -0.021071458235383034, 0.010492011904716492, -0.014018494635820389, -0.035905998200178146, 0.00920236948877573, 0.006011048797518015, -0.011818085797131062, -0.017195241525769234, 0.02147947996854782, -0.01556315179914236, 0.0346236415207386, 0.010426437482237816, -0.01646663062274456, -0.02261611633002758, 0.020357418805360794, -0.009318946860730648, -0.010521156713366508, -0.026390325278043747, 0.0024098840076476336, 0.006276992149651051, -0.0018670681165531278, 0.021333757787942886, 0.20622633397579193, -0.01229896955192089, -0.010688737966120243, 0.003056527115404606, -0.0028761958237737417, 0.007052963599562645, -0.012481123208999634, -0.008065734058618546, -0.022514110431075096, 0.02437935583293438, -0.003941790666431189, 0.0016065894160419703, -0.01742839813232422, -0.013340884819626808, -0.007562992163002491, -0.009668680839240551, -0.04333784058690071, -0.016233474016189575, -0.035527121275663376, -0.005479162093251944, -0.005909042898565531, -0.010120419785380363, -0.004950918257236481, 0.00233155838213861, 0.024073339998722076, -0.009632250294089317, 0.00444453302770853, 0.007016533054411411, 0.00918051041662693, 0.010404578410089016, -0.028153566643595695, -0.02000768482685089, 0.005165858659893274, 0.02816813811659813, -0.008116737008094788, -0.003730493364855647, 0.02029912918806076, 0.02366531640291214, 0.025953158736228943, 0.02883846126496792, 0.00489627243950963, -0.013136873953044415, 0.03170919418334961, -0.02539941295981407, -0.012896431609988213, 0.014222505502402782, 0.008575762622058392, -0.03057255782186985, -0.0075338478200137615, -0.018302733078598976, -0.01118419412523508, 0.019381077960133553, 0.028649022802710533, 0.015927458181977272, -0.006648584268987179, -0.016539491713047028, -0.0023862041998654604, 0.010586732067167759, -0.019395651295781136, 0.018973056226968765, -0.02311157062649727, 0.0016184293199330568, -0.0009235156467184424, 0.005552023183554411, -0.0418514721095562, 0.022718120366334915, -0.013559469021856785, -0.029333917424082756, -0.010032987222075462, -0.01916249468922615, -0.0013570397859439254, -0.01591288484632969, 0.004670402500778437, 0.011606788262724876, -0.025020534172654152, -0.022514110431075096, 0.005271507427096367, 0.015636011958122253, -0.0062114167958498, 0.030047956854104996, 0.01543200109153986, -0.005224147811532021, -0.03351614996790886, -0.01412778627127409, -0.02627374790608883, -0.04645629972219467, 0.04910844564437866, 0.020109690725803375, 0.0014799931086599827, 0.009617677889764309, -0.02762896567583084, -0.011803513392806053, -0.01702037639915943, 0.016452057287096977, -0.016160612925887108, 0.0062114167958498, 0.010652306489646435, -0.016029464080929756, -0.002032827353104949, -0.005384442396461964, -0.02522454597055912, 0.07274461537599564, -2.8233713237568736e-05, -0.012182392179965973, -0.013909202069044113, -0.01773441582918167, -0.01147563848644495, 0.02631746418774128, -0.0007814363343641162, -0.020896591246128082, 0.00045515477540902793, -0.04281323775649071, 0.007679570000618696, -0.0170932374894619, 0.0036248445976525545, 0.01280171237885952, 0.017034947872161865, 0.0004781516036018729, -0.023024138063192368, -0.015534006990492344, -0.0016575922491028905, 0.008852635510265827, -0.005584810860455036, 0.02315528877079487, -0.030922291800379753, -0.024525078013539314, 0.005734176374971867, -0.011854516342282295, -0.007628567051142454, -0.017632409930229187, 0.030689135193824768, 0.002511889673769474, -0.004280595108866692, -0.008175026625394821, 0.006295207422226667, 0.006626725662499666, 0.02025541290640831, -0.007176827639341354, -0.005333439446985722, 0.009282516315579414, 1.272936333407415e-05, 0.013887343928217888, 0.008051162585616112, 0.001369790523312986, -0.009756114333868027, -0.024117056280374527, 0.01693294197320938, 0.017413826659321785, -0.0189876276999712, -0.011927377432584763, 0.02867816761136055, -0.02198950946331024, -0.004284238442778587, 0.01478353701531887, 0.02349044941365719, -0.005763320717960596, -0.022688977420330048, -0.037071775645017624, -0.004659473430365324, -0.01490740105509758, -0.02526826225221157, -0.021231751888990402, 0.022091515362262726, 0.01924992725253105, -0.02732294797897339, 0.01358132716268301, -0.18943911790847778, 0.007468272466212511, 0.012714278884232044, -0.03112630359828472, 0.006921813823282719, 0.003519195830449462, 0.008998357690870762, 0.0017923854757100344, -0.007555705960839987, -0.0014535809168592095, 0.029465068131685257, 0.01916249468922615, 0.0036867766175419092, 0.0071950433775782585, 0.0045210374519228935, -0.0006015602266415954, -0.001854317495599389, 0.01273613702505827, 0.025924013927578926, 0.001943572424352169, 0.03439048305153847, -0.03785867616534233, 0.02370903268456459, -0.0061749862506985664, -0.0006038371939212084, 0.0039272187277674675, -0.040073659271001816, 0.008736057206988335, 0.014368227683007717, 0.0038033544551581144, -0.034769363701343536, 0.016248047351837158, 0.025443129241466522, 0.011038471013307571, -0.0124228335916996, -0.00852475967258215, -6.255816697375849e-05, -0.023607026785612106, 0.011577644385397434, 0.028751028701663017, 0.013005723245441914, 0.023184433579444885, -0.01789470948278904, -0.004823411349207163, 0.00484162662178278, 0.013566754758358002, 0.03267095983028412, 0.005286079831421375, 0.009479241445660591, -0.004138515796512365, -0.009530244395136833, -0.033836741000413895, 0.009872691705822945, 0.0032805753871798515, 0.0007349873194471002, 0.017617836594581604, -0.004816125147044659, 0.0004335241101216525, 0.022586971521377563, -0.025967730209231377, -0.009901836514472961, -0.019643379375338554, 0.008940069004893303, -0.00010525027755647898, -0.00827703159302473, -0.0048598418943583965, -0.026084307581186295, 0.01916249468922615, -0.0033443288411945105, 0.02531198039650917, -0.018098721280694008, 0.0007809809758327901, -0.004899915307760239, -0.004728691652417183, 0.028415866196155548, 0.000572871183976531, -0.019381077960133553, 0.009122221730649471, 0.020692579448223114, 0.011861803010106087, 0.0094938138499856, 0.045756831765174866, -0.010484726168215275, 0.02867816761136055, 0.0018479421269148588, -0.01697665825486183, 0.02337387204170227, 0.01844845525920391, 0.012284398078918457, -0.01929364539682865, 0.02926105633378029, -0.018754471093416214, 0.03538139536976814, -0.001896212692372501, 0.015082268044352531, -0.004437246825546026, -0.009114935994148254, -0.002703150501474738, 0.020065974444150925, -0.021508624777197838, -0.014207933098077774, 0.011555785313248634, -0.00155285419896245, 0.013588612899184227, 0.029363062232732773, 0.003333399770781398, -0.038762155920267105, 0.010156851261854172, 0.026798348873853683, -0.016947513446211815, -0.007402697578072548, 0.016146041452884674, -0.0030073458328843117, 0.019774528220295906, -0.028445011004805565, -0.0001564238773426041, 0.01659778133034706, 0.008022017776966095, 0.01671435870230198, 0.0076431394554674625, 0.04485335201025009, -4.1183651774190366e-05, -0.00663401186466217, 0.02451050654053688, -0.013275310397148132, -0.008757916279137135, -0.0844024121761322, 0.0034845867194235325, 0.015606868080794811, 0.013311740942299366, -0.015257134102284908, -0.015854597091674805, 0.005748748313635588, 0.01793842576444149, 0.0025975017342716455, 0.02547227405011654, -0.0020492211915552616, -0.015213417820632458, -0.03124288097023964, 0.004047439433634281, 0.03957820311188698, -0.025574279949069023, -0.0015847310423851013, -0.01802586019039154, 0.005205932538956404, 0.02725008688867092, -0.022601542994379997, -0.02896961197257042, 0.008568476885557175, 0.01020785328000784, -0.01662692427635193, -0.0030729209538549185, -0.014870970509946346, 0.005300652235746384, 0.012634131126105785, 0.022965848445892334, 0.0346236415207386, -0.008058448322117329, 0.02892589569091797, -0.015038550831377506, -0.004958204459398985, -0.006739660631865263, -0.04275495186448097, 0.005224147811532021, 0.013304454274475574, -0.03651802986860275, 0.016699785366654396, 0.0025956800673156977, 0.03264181688427925, -0.017166098579764366, -0.006083909887820482, -0.004502822179347277, -0.01256855670362711, 0.037042632699012756, 0.0002575187827460468, -0.04327955096960068, -0.014798109419643879, 0.012109531089663506, 0.000936266384087503, -0.008612193167209625, 0.02353416569530964, -0.02379646711051464, 0.016787219792604446, 0.006386283785104752, -0.02147947996854782, -0.03191320225596428, -0.005541094113141298, -0.017064092680811882, -0.03482765331864357, 0.00913679413497448, 0.00968325324356556, 0.016699785366654396, -0.029873089864850044, -0.020619718357920647, 0.032496094703674316, 0.0056321704760193825, -0.01459409762173891, 0.0027250086423009634, -0.0001840883633121848, 0.001163957640528679, -0.022965848445892334, -0.009595819748938084, -0.014156930148601532, -0.03211721405386925, -0.0049691335298120975, 0.01176708284765482, 0.008036590181291103, -0.015038550831377506, -0.0074828448705375195, 0.020401135087013245, 0.022412104532122612, 0.005322510376572609, 0.021872932091355324, -0.0004731423978228122, 0.0015191559214144945, -0.017719842493534088, -0.004269666038453579, -0.01092917937785387, 0.007118538953363895, -0.016524920240044594, -0.015825452283024788, 0.032496094703674316, 0.019133349880576134, 0.002258697059005499, -0.010360862128436565, 0.0015583188505843282, -0.029508784413337708, -0.024248206987977028, -0.0771745815873146, 0.02564714103937149, 0.0010100383078679442, 0.015461145900189877, -0.0034554421436041594, -0.01777813211083412, -0.009894550777971745, 0.0035119096282869577, 0.0033552581444382668, 0.006051122210919857, -0.009894550777971745, 0.02379646711051464, -0.0033425074070692062, -0.012721564620733261, -0.012196964584290981, -0.015184273011982441, 0.023738177493214607, 0.006470074411481619, 0.012204250320792198, -0.003912646323442459, 0.0022750908974558115, -0.00043807795736938715, -0.0006065694615244865, 0.011533927172422409, 0.020371990278363228, -0.01620432920753956, -0.0085903350263834, 0.027862122282385826, -0.013799910433590412, -0.012349972501397133, 0.011628647334873676, -0.012838142924010754, -0.004466391168534756, 0.020138835534453392, 0.007162255700677633, -0.02248496562242508, -0.005358940921723843, 0.015504862181842327, 0.024612512439489365, -0.020605146884918213, -0.030077101662755013, -0.02228095382452011, 0.002681292127817869, -0.014353655278682709, 0.016306335106492043, 0.009085791185498238, -0.036663755774497986, -0.0024718160275369883, -0.024656228721141815, 0.015067695640027523, 0.02139204740524292, 0.017340965569019318, -0.04476591944694519, -0.018055004999041557, -0.017617836594581604, -0.005092997569590807, 0.010098561644554138, 0.009836261160671711, 0.028911322355270386, -0.00720961531624198, 0.03447791934013367, -0.0009936445858329535, 0.02551599033176899, -0.008677768521010876, 0.002329736715182662, -0.010790742933750153, -0.04511565342545509, -0.022208092734217644, 0.013676046393811703, -0.013049440458416939, -0.005858040414750576, -0.027381237596273422, -0.0012632310390472412, 0.02096945233643055, 0.011082188226282597, 0.003313362831249833, -0.00854661874473095, 0.014091355726122856, 0.010236998088657856, 0.014339083805680275, 0.007526561617851257, 0.006874453742057085, -0.0341864749789238, 0.011628647334873676, 0.01629176363348961, 0.00559209706261754, -0.0030729209538549185, 0.021785497665405273, -0.0024153487756848335, 0.0045210374519228935, -0.023271866142749786, 0.016816364601254463, -0.001554675749503076, 0.016816364601254463, -0.0053079379722476006, -0.004608470480889082, -0.0056576719507575035, 0.016685213893651962, -0.006349853239953518, 0.025457702577114105, 0.016058607026934624, 0.015898313373327255, 0.0014444731641560793, -0.012291683815419674, -0.030922291800379753, -0.005282436963170767, -0.02008054591715336, -0.059600457549095154, -0.0030109889339655638, -0.013421032577753067, -0.01667064242064953, 0.00972696952521801, 0.020794585347175598, 0.0383249893784523, 0.008262460120022297, -0.016947513446211815, 0.012626845389604568, -0.013071298599243164, -0.0343613401055336, 0.01033900398761034, 0.003271467750892043, -0.009522958658635616, -0.0037377793341875076, 0.01693294197320938, 0.027395809069275856, -0.008160454221069813, 0.02464165724813938, 0.012160534039139748, 0.014076783321797848, -0.02155234105885029, 0.012561270035803318, 0.004601184744387865, -0.016728930175304413, -0.04654373228549957, -0.0049436320550739765, -4.6306704462040216e-05, -0.007694142404943705, 0.020984023809432983, -0.001854317495599389, 0.09337890893220901, 0.0012058528373017907, -0.017442969605326653, -0.011293485760688782, 0.0037742098793387413, 0.019730811938643456, 0.015184273011982441, 0.0011867267312482, -0.005828895606100559, -0.038295846432447433, 0.03144689276814461, -0.015475718304514885, 0.009107649326324463, -0.0341864749789238, -0.003360722679644823, 0.017166098579764366, 0.006171343382447958, 0.02232467010617256, 0.0047396207228302956, -0.016189757734537125, 0.0021075101103633642, -0.025457702577114105, 0.029027901589870453, -0.011774369515478611, -0.02577829174697399, -0.0008265192154794931, 0.018958482891321182, -0.005788822192698717, -0.008626765571534634, -0.029654506593942642, 0.011111332103610039, 0.009362664073705673, -0.005694102495908737, -0.017064092680811882, -0.0041203005239367485, -0.0033989748917520046, -0.003941790666431189, -0.014739819802343845, 0.0038106406573206186, -0.003675847314298153, -0.00347365764901042, 0.011482924222946167, -0.02745409868657589, -0.006397212855517864, -0.006054765544831753, -0.00585439708083868, 0.006393569987267256, 0.00787629559636116, -0.028066132217645645], "02048f03-be3c-4ebf-9383-5e85fd3356e1": [-0.024718087166547775, -0.016454476863145828, -0.02957732230424881, 0.0025969266425818205, -0.021401003003120422, 0.013610223308205605, -0.022375760599970818, 0.00030347489519044757, -0.022332115098834038, -0.038059160113334656, 0.020600831136107445, -0.0041427165269851685, 0.00763074541464448, 0.014635900966823101, -0.008758262731134892, 0.002773328684270382, 0.001416670740582049, -0.023350518196821213, 0.007594374008476734, -0.016207151114940643, -0.027918780222535133, 0.02057173289358616, -0.015974372625350952, 0.025110898539423943, -0.02012072689831257, 0.008270883932709694, 0.005022907163947821, -0.02867530845105648, 0.0006937867728993297, 0.007347047328948975, -0.002815155778080225, 0.0072088357992470264, -0.033665481954813004, 0.01904412917792797, -0.016585413366556168, -0.024208884686231613, 0.006954235024750233, -0.003928124438971281, 0.039455827325582504, -0.020324407145380974, 0.034538399428129196, -0.007943540811538696, 0.009151075035333633, -0.02708951011300087, -0.014177619479596615, 0.031134022399783134, 0.012169911526143551, -0.01619260199368, -0.014417671598494053, 0.008612776175141335, 0.019509684294462204, 0.022637635469436646, -0.01664360798895359, 0.012591821141541004, 0.03107582964003086, -0.002034986624494195, 0.013552029617130756, 0.015974372625350952, -0.0007847155793569982, -0.005673957522958517, -0.0002957459364552051, -0.01917506568133831, 0.002433254849165678, 0.014184894040226936, -0.007445250637829304, 0.011056942865252495, -0.008299981243908405, 0.022506698966026306, -0.032996244728565216, -0.021415552124381065, 0.023219579830765724, 0.010613210499286652, -0.00938385259360075, -0.009623904712498188, 0.014119424857199192, -0.023626940324902534, -0.022783121094107628, -0.0057685235515236855, 0.017618365585803986, 0.012104442343115807, 0.024354372173547745, -0.020106177777051926, -0.038641106337308884, 0.01745833083987236, 0.02880624495446682, 0.0017021872336044908, 0.013850275427103043, 0.000984758953563869, -0.037477217614650726, -0.008612776175141335, 0.030144717544317245, 0.019116872921586037, 0.013653869740664959, 0.0027405943255871534, -0.003935398533940315, 0.018127566203475, -0.02153194136917591, 0.04480971395969391, -0.0004264560993760824, -0.008911022916436195, -0.0009456595871597528, -0.011944407597184181, -0.032908953726291656, 0.0024096134584397078, -0.01889864355325699, 0.0075143566355109215, 0.006637802813202143, 0.016396282240748405, 0.0006601431523449719, 0.00560848880559206, -0.01872405968606472, 0.023859718814492226, -0.016396282240748405, -0.018607670441269875, -0.0037826383486390114, -0.024354372173547745, -0.009463869966566563, -0.013573852367699146, -0.03794277086853981, -0.030697565525770187, 0.01189348753541708, 0.019189614802598953, 0.008350901305675507, -0.007885346189141273, 0.009442047215998173, 0.024310724809765816, -0.004968349821865559, -0.029882842674851418, 0.014715918339788914, -0.024048849940299988, 0.028835343196988106, -0.00021106848726049066, 0.011064217425882816, 0.012737306766211987, -0.0003271163732279092, 0.039135757833719254, -0.025154544040560722, -0.005412082653492689, -0.04163811728358269, -0.0118498420342803, -0.0017449237639084458, 0.03933943808078766, -0.0012893704697489738, 0.0036935280077159405, -0.01062775868922472, 0.00451006880030036, 0.011377012357115746, -0.016658157110214233, 0.01591617800295353, 0.012584546580910683, 0.015348782762885094, 0.015101456083357334, -0.0035698649007827044, -0.01492687314748764, 0.02595471777021885, 0.016483573243021965, -6.2286235333886e-05, 0.008496387861669064, -0.005575754214078188, -0.011711630038917065, -0.008845554664731026, 0.04527527093887329, -0.01530513633042574, 0.009623904712498188, 0.01692003197968006, 0.02668214961886406, 0.014388574287295341, 0.012562723830342293, -0.011318817734718323, 0.0003293895861133933, -0.011304269544780254, 0.017705656588077545, -0.02175017073750496, 0.01831669919192791, 0.014803209342062473, 0.012940987944602966, 0.005172030534595251, -0.025110898539423943, -0.027074960991740227, -0.02908266894519329, -0.03384006395936012, 0.004128167871385813, 0.023074094206094742, 0.02554735727608204, -0.007899894379079342, 0.009660276584327221, 0.006026761140674353, -0.025969266891479492, 0.0050811017863452435, 0.0005382985109463334, 0.022957704961299896, 0.03159957751631737, -0.013130120001733303, 0.0011875302297994494, -0.5740299224853516, -0.02311773970723152, 0.0010402254993095994, 0.010620484128594398, -0.01221355702728033, 0.018694963306188583, -0.0019149606814607978, -0.005819443613290787, -0.03279256448149681, 0.05074554681777954, -0.02957732230424881, 0.028515273705124855, -0.004455511458218098, -0.02170652523636818, 0.007572550792247057, 0.004935615696012974, 0.0009429317433387041, 0.0035153075587004423, -0.0021150039974600077, 0.008649148046970367, -0.007936266250908375, 0.00834362767636776, 0.011013297364115715, -0.015028713271021843, -0.005761248990893364, -0.011493400670588017, 0.022084787487983704, -0.00702334102243185, 0.0034898475278168917, 0.02473263442516327, -0.047282978892326355, 0.021822912618517876, 0.022012045606970787, -0.019058678299188614, 0.061162352561950684, 0.0004641915438696742, -0.023583294823765755, 0.011202428489923477, 0.030959440395236015, 0.029606418684124947, -0.018069371581077576, 0.004251830745488405, 0.009638453833758831, -0.001092964201234281, -4.2338724597357213e-05, -0.02642027474939823, 0.027889683842658997, 0.003640789305791259, -0.012897341512143612, -0.036604300141334534, -0.00011150144564453512, 4.770920713781379e-05, -0.02554735727608204, 0.00594674376770854, -0.005302967969328165, -0.013217411004006863, 0.02193930186331272, 0.015188748016953468, 0.02022256702184677, -0.015392428264021873, -0.000745616212952882, -0.004277291242033243, 0.010496821254491806, -0.004917429760098457, -0.02030985802412033, 0.010685953311622143, -0.0006765103316865861, 0.006030398420989513, 0.024892669171094894, 0.006310459226369858, 0.016338087618350983, 0.03509124368429184, 0.0011984416050836444, -0.013530205935239792, -0.008154495619237423, 0.030901245772838593, 0.003613510634750128, -0.003677160944789648, -0.007572550792247057, 0.017109164968132973, 0.023350518196821213, 6.285453855525702e-05, -0.008496387861669064, -0.014795935712754726, 0.023990655317902565, 0.005361162591725588, -0.020644476637244225, 0.019829753786325455, -0.003588050603866577, -0.03157048299908638, 0.023903364315629005, -0.00470283767208457, -0.0024478035047650337, -0.024456212297081947, 0.01315921638160944, 0.00480467826128006, -0.015232393518090248, -0.005499374121427536, -0.003891752799972892, -0.01273003313690424, -0.00034689338644966483, -0.012533626519143581, 0.01117333211004734, 0.013733887113630772, 0.03843742609024048, 0.023234128952026367, -0.01767656020820141, -0.01690548285841942, 0.05612853169441223, -0.019524233415722847, 0.023234128952026367, -0.014999615959823132, -0.003155229613184929, -0.013173765502870083, -0.0008770083077251911, -0.026754891499876976, 0.033898260444402695, -0.006001301109790802, 0.010540466755628586, 0.014344928786158562, 0.01064958143979311, -0.02279767021536827, 0.0054411799646914005, -0.004673740826547146, 0.0032225169707089663, 0.02880624495446682, 0.02569284290075302, -0.01971336454153061, 0.030377496033906937, -0.009412949904799461, 0.001568521955050528, -0.04044513404369354, 0.032501593232154846, -0.011748001910746098, 0.02166287787258625, -0.023365065455436707, 0.011842567473649979, 0.0008197231800295413, 0.026042010635137558, -0.027700550854206085, -0.032268814742565155, 0.012693661265075207, 0.0007442522910423577, -0.0037935497239232063, -0.00746343657374382, -0.025940170511603355, -0.04338395223021507, -0.004255468025803566, -0.026172947138547897, 0.006801474839448929, -0.007205198518931866, -0.001352111343294382, 0.007594374008476734, 0.023641489446163177, -0.03189055249094963, -0.008285433053970337, -0.003480754792690277, -0.04641006141901016, 0.009471144527196884, -0.028704404830932617, -0.01096965093165636, 0.03704075887799263, -0.004175450652837753, -0.0086855199187994, 0.01091873086988926, 0.007307038642466068, -0.006797837559133768, 0.0005760340136475861, 0.00936202984303236, -0.01530513633042574, -0.022914059460163116, 0.0011838930658996105, -0.023583294823765755, -0.017531074583530426, -0.0018567661754786968, -0.0007201561238616705, -0.018069371581077576, -0.005408445373177528, 0.0043172999285161495, 0.012344494462013245, 0.0037571783177554607, 0.02631843276321888, -0.018665865063667297, 0.0005969476187601686, -0.00021118215227033943, 0.0010365883354097605, 0.021822912618517876, 0.03127950802445412, -0.008379998616874218, 0.038553815335035324, -0.018156664445996284, 0.02903902344405651, -0.023496003821492195, 0.01868041418492794, -0.04757395014166832, 0.057641588151454926, -0.02017892152070999, 0.000965663930401206, -0.015436073765158653, 0.016018018126487732, 0.008103575557470322, 0.031192217022180557, 0.024339823052287102, -0.0008874651393853128, -0.005422994028776884, -0.01692003197968006, 0.01863676868379116, -0.037331730127334595, 0.029824648052453995, 0.005575754214078188, 0.00846001598984003, 0.01214081421494484, -0.027351384982466698, 0.003989955876022577, 0.019233260303735733, 0.003642607945948839, -0.02994103729724884, 0.013297428376972675, -0.019058678299188614, -0.01062775868922472, -0.009863956831395626, -0.03541131317615509, 0.023990655317902565, -0.0009856682736426592, -0.01818576082587242, -0.018389441072940826, 0.023175934329628944, 0.014010310173034668, 0.016803642734885216, -0.0005551203503273427, 0.002738775685429573, 0.018534928560256958, 0.0024823565036058426, 0.0016812735702842474, 0.008736439980566502, -0.01060593593865633, 0.03328721597790718, -0.008583678863942623, 0.03384006395936012, -0.02777329459786415, -0.005408445373177528, 0.025663746520876884, 0.030319301411509514, -0.009594807401299477, -0.013530205935239792, -0.0021404640283435583, 0.028646210208535194, 0.01949513517320156, -0.017531074583530426, 0.018913190811872482, -0.006474130786955357, 0.02224482223391533, -0.01921871304512024, -0.017283746972680092, 0.021502843126654625, -0.02772964909672737, -0.023306870833039284, 0.007223384454846382, 0.039863187819719315, 0.0139957619830966, 0.0053866226226091385, -0.009900328703224659, 0.018214859068393707, 0.001653085695579648, 0.016265343874692917, 0.0039572217501699924, -0.024674441665410995, 0.006063132546842098, 0.0012493617832660675, -0.024398017674684525, -0.012155362404882908, -0.008983765728771687, -0.006797837559133768, -0.012417237274348736, -0.0073288618586957455, 0.013021005317568779, 0.021808365359902382, 0.011246074922382832, 0.032501593232154846, 0.0017985717859119177, -0.03328721597790718, -0.03191964700818062, 0.01600346900522709, 0.025154544040560722, 0.010416803881525993, -0.008147221058607101, 0.0016239885007962584, 0.026056557893753052, -0.010984200052917004, 0.004939252510666847, 0.0007910805870778859, 0.012169911526143551, -0.011995327658951283, -0.009332932531833649, -0.0032843484077602625, 0.039543118327856064, 0.013755709864199162, 0.007587099447846413, 5.8109191741095856e-05, -0.013566577807068825, -0.009332932531833649, 0.0047537581995129585, -0.0187677051872015, 0.010736873373389244, 0.017036421224474907, -0.012780953198671341, -0.01497051864862442, -0.01595982350409031, -0.024994509294629097, -0.03261798247694969, 0.021473746746778488, 0.0173710398375988, -0.019596977159380913, 0.005077464506030083, 0.008889200165867805, -0.002760598435997963, 0.0043936800211668015, -0.008831005543470383, 0.03872839733958244, -0.025852877646684647, -0.006823297590017319, -0.02410704456269741, -0.01808392070233822, 0.0150141641497612, 0.03957221657037735, 0.06174429506063461, 0.024441663175821304, 0.013042828068137169, -0.019960692152380943, 0.003935398533940315, -0.03509124368429184, -0.03322902321815491, 0.020513538271188736, -0.021284615620970726, -0.01895683817565441, -0.013399268500506878, 0.009100154973566532, 0.007070623803883791, 0.03168686851859093, -0.008787360042333603, 0.025721941143274307, -0.010685953311622143, 0.02717680111527443, -0.00484832376241684, 0.00451006880030036, -0.0012048067292198539, -0.003997230436652899, 0.02623114176094532, 0.016483573243021965, 0.008278158493340015, 0.021008191630244255, 0.02121187187731266, 0.010067637078464031, -0.017880240455269814, -0.015188748016953468, 0.03043569065630436, 0.021808365359902382, 0.020949997007846832, 0.0028642574325203896, 0.03363638371229172, 0.0007701669819653034, 0.0014803209342062473, 0.016352636739611626, 0.018069371581077576, -0.0063250078819692135, 0.006426848005503416, 0.017792949452996254, 0.0005796711193397641, 0.01096965093165636, -0.021561037749052048, 0.00531387934461236, 0.019727913662791252, 0.0007042436045594513, 0.0002984738093800843, 0.03125041350722313, -0.0035935065243393183, -0.010802342556416988, -0.00164490204770118, 0.021517392247915268, 0.023219579830765724, -0.018054824322462082, -0.010409529320895672, 0.0027405943255871534, -0.0005792165175080299, -0.02708951011300087, -0.029562773182988167, 0.0262747872620821, -0.021284615620970726, -0.01627989299595356, -0.0257364884018898, -0.02442711405456066, -0.006906952243298292, -0.014221264980733395, 0.028427982702851295, 0.01718190684914589, -0.006179521791636944, -0.026303885504603386, 0.03116312064230442, 0.0013502928195521235, -0.006976057775318623, 0.005728514865040779, -0.01569794863462448, -0.005175667814910412, 0.03279256448149681, 0.0012111717369407415, -0.03247249498963356, 0.001598528353497386, -0.017938435077667236, -0.007245207205414772, -0.010802342556416988, 0.007456162013113499, -0.0007974456530064344, -0.012839147821068764, -0.01123880036175251, -0.0018467640038579702, -0.0002752869622781873, -0.013224685564637184, 0.0016821828903630376, 0.037331730127334595, -0.00573215214535594, 0.018549475818872452, 0.013952115550637245, 0.012882793322205544, 0.0050047216936945915, 0.0012038974091410637, -0.00936202984303236, -0.025401871651411057, 0.01763291470706463, -0.015596108511090279, 0.013442914932966232, -0.00018299421935807914, 0.03648791089653969, 8.133865776471794e-06, -0.015625206753611565, 0.0005551203503273427, -0.0039026644080877304, -0.005299330689013004, 0.002942456165328622, 0.00702334102243185, 0.014344928786158562, 0.020498989149928093, 0.026944024488329887, 0.00877281092107296, -0.0028642574325203896, 0.00242416188120842, -0.017982080578804016, 0.02401975356042385, 0.00014389483840204775, -0.01219173427671194, -0.009027412161231041, 0.0018858634866774082, -0.045478951185941696, -0.001232085283845663, 0.010234946385025978, -0.004437325522303581, 0.02121187187731266, 0.00036166931386105716, -0.04838867485523224, -0.03587687015533447, 0.013915744610130787, -0.015203296206891537, 0.0037244439590722322, -0.015857983380556107, -0.011071491055190563, -0.013843001797795296, 0.005906735081225634, -0.016265343874692917, -0.03803006559610367, -0.015814337879419327, -0.04152173176407814, -0.01313739363104105, 0.0001931100559886545, 0.01773475483059883, 0.042132772505283356, -0.0036007806193083525, 0.007321587298065424, -0.004062699154019356, -0.019655169919133186, -0.010787793435156345, -0.02736593410372734, -0.01750197634100914, -0.02415069006383419, 0.040503326803445816, 0.01587253250181675, 0.028297044336795807, 0.00560848880559206, 0.01623624749481678, -0.006277724634855986, -0.0008292706916108727, -0.010569564066827297, 0.0010338604915887117, -0.033170826733112335, -0.008670970797538757, 0.0006687813438475132, 0.01773475483059883, 0.008721890859305859, 0.028908085078001022, 0.010729598812758923, -0.0007046982645988464, 0.023394163697957993, 0.006525051314383745, -0.006885129027068615, -0.0351785346865654, -0.050454575568437576, -0.042132772505283356, -0.00938385259360075, -0.01966971904039383, -0.008903748355805874, -0.04576992243528366, -0.021226420998573303, -0.0011229707160964608, -0.003271618392318487, 0.003100672271102667, -0.020455343648791313, 0.021910205483436584, -0.00404815049842, 0.04178360477089882, -0.005011995788663626, 0.02044079639017582, -0.006801474839448929, -0.011340640485286713, -0.018651315942406654, 0.01058411318808794, 0.008881925605237484, 0.009471144527196884, 0.028646210208535194, -0.006677811499685049, 0.013304702937602997, -0.014941421337425709, 0.011667984537780285, -0.02279767021536827, -0.0086855199187994, 0.01429400872439146, -0.018549475818872452, -0.01305010262876749, -0.026056557893753052, 0.001904049189761281, -0.008947394788265228, -0.004426414147019386, 0.007048801053315401, 0.0025496436282992363, 0.021590135991573334, -0.027875134721398354, -0.017618365585803986, 0.0005069280741736293, -0.003942673094570637, 0.02966461330652237, 0.016221698373556137, 0.04184179753065109, 0.015887081623077393, 0.0086855199187994, 0.0033152643591165543, 0.01827305369079113, 0.0028297044336795807, 0.0036989839281886816, 0.013013730756938457, 0.03157048299908638, -0.023990655317902565, 0.0025587365962564945, -0.0013821178581565619, -0.005179304629564285, -0.014817758463323116, -0.026609405875205994, 0.04082339629530907, 0.038379229605197906, 0.008561856113374233, -0.015843434259295464, 0.0022223000414669514, -0.013864824548363686, -0.009965796954929829, 0.011042393743991852, 0.0020495352800935507, 0.006976057775318623, -0.0368952713906765, -0.004619183484464884, 0.015596108511090279, -0.026667600497603416, 0.024136142805218697, 0.01790933683514595, 0.0011911673936992884, -0.010962377302348614, 0.021764719858765602, -0.01250452920794487, 0.022055691108107567, -0.018796803429722786, 0.017923885956406593, -0.015450622886419296, -0.0033152643591165543, -0.00897649209946394, -0.01336289756000042, -0.01578524149954319, -0.016338087618350983, 0.004324574023485184, 0.029373642057180405, -0.003873567096889019, -0.008612776175141335, 0.032996244728565216, -0.03296714648604393, 0.024747183546423912, -0.012599095702171326, 0.025154544040560722, -0.03427652269601822, -0.023757878690958023, -0.00733977323397994, 0.025401871651411057, 0.017167357727885246, 0.010889633558690548, -0.003660793649032712, -0.011406109668314457, -0.022957704961299896, 0.014053956605494022, -0.02925725281238556, 0.015712497755885124, -0.015101456083357334, -0.016134407371282578, -0.011413383297622204, -0.005575754214078188, 0.006954235024750233, 0.007725311443209648, 0.012606369331479073, 0.012977358885109425, 0.03334541246294975, -0.01646902598440647, 0.003055207896977663, -0.023088643327355385, -0.002529639285057783, -0.0444023534655571, -0.00763074541464448, -0.010394981130957603, -0.0242379829287529, 0.005401171278208494, 0.0015276039484888315, -0.057728879153728485, -0.01160251535475254, 0.017021872103214264, 0.003418923122808337, -0.014512237161397934, 0.022986801341176033, 0.039368536323308945, 0.0036316965706646442, 0.0002049307950073853, -0.007259755861014128, -0.034974854439496994, 0.03337451070547104, -0.01497051864862442, -0.0037935497239232063, 0.020746316760778427, -0.0026587583124637604, 0.017036421224474907, -0.012940987944602966, 0.008678245358169079, -0.013784807175397873, -0.027933329343795776, -0.032181523740291595, 0.02777329459786415, 0.008831005543470383, -0.018127566203475, -0.025227287784218788, -0.021110031753778458, -0.02288496121764183, -0.017269199714064598, 0.001046590507030487, -0.0026478469371795654, 0.010882359929382801, -0.010133106261491776, 0.023714233189821243, 0.01681819185614586, 0.002356874756515026, -0.0150141641497612, -0.023757878690958023, -0.028791697695851326, -0.014643174596130848, -0.03931033983826637, -0.023525100201368332, 0.0005187488277442753, 0.03159957751631737, 0.0016830922104418278, -0.03759360685944557, -0.014301282353699207, -0.020149823278188705, -0.016992775723338127, -0.03020291216671467, -0.024776281788945198, 0.005252047907561064, 0.04594450816512108, 0.0017240102170035243, -0.005652134772390127, 0.02519819140434265, -0.020324407145380974, -0.009245640598237514, -0.03413103520870209, 0.0019331463845446706, 0.029417287558317184, -0.003502577543258667, 0.032443396747112274, -0.0001990204182220623, -0.039455827325582504, 0.010227671824395657, 0.020135274156928062, 0.005262959282845259, 0.013297428376972675, 0.0030988536309450865, -0.01804027520120144, 0.024034302681684494, 0.010489546693861485, -0.005382985342293978, 0.003575320588424802, -0.02642027474939823, 0.014519511722028255, -0.0381755493581295, -0.003920850344002247, 0.026783989742398262, 0.026944024488329887, -0.01591617800295353, -0.0009320202516391873, -0.002333233132958412, -0.007739860098809004, -0.006783288903534412, -0.003117039566859603, -0.014417671598494053, 0.0033461800776422024, -0.014643174596130848, 0.04943617433309555, 0.01921871304512024, 0.007965363562107086, 0.02243395522236824, 0.0011838930658996105, 0.002515090862289071, -0.0017858417704701424, 0.011042393743991852, -0.01610531099140644, -0.031104926019906998, 0.04125985503196716, 8.649602386867628e-05, 0.0023896091151982546, 0.004779218230396509, -0.012104442343115807, -0.002773328684270382, -0.02062992751598358, 0.0035716835409402847, -0.030377496033906937, -0.020047983154654503, 0.009107429534196854, 0.01191531028598547, -0.05825262889266014, -0.01001671701669693, 0.010882359929382801, -0.022535795345902443, 0.026260240003466606, 0.01094782818108797, -0.021153677254915237, -0.014504963532090187, -0.017749302089214325, -0.011711630038917065, -0.004822863731533289, -0.01472319196909666, 0.0035989622119814157, 0.0014048500452190638, -0.01818576082587242, 0.004055424593389034, 0.19739553332328796, -0.03221062198281288, 0.012933713383972645, 0.015406976453959942, -0.014163070358335972, 0.007950814440846443, -0.00731431320309639, 0.00850366149097681, -0.008670970797538757, 0.018913190811872482, 0.013537480495870113, 0.0076452940702438354, 0.013472012244164944, -0.009267464280128479, 0.0038335584104061127, 0.00877281092107296, -0.031366802752017975, -0.04725388064980507, -0.04155082628130913, -0.023947009816765785, -0.00719064986333251, -0.020542636513710022, -0.005681231617927551, -0.006077681202441454, 0.019073225557804108, 0.017705656588077545, 0.007747134193778038, -0.017254650592803955, 0.030086522921919823, 0.024528954178094864, -0.03672068938612938, 0.004353671334683895, 0.004066335968673229, 0.015377880074083805, 0.011340640485286713, -0.017560170963406563, 0.03392735496163368, -0.017269199714064598, 0.010882359929382801, 0.01338472031056881, 0.01859312132000923, -0.02640572562813759, 0.029111767187714577, -0.013675692491233349, -0.01087508536875248, 0.004786492325365543, 0.014468591660261154, -0.015232393518090248, 0.013101022690534592, -0.016527220606803894, -0.00558666605502367, 0.017603816464543343, 0.03197784349322319, 0.017123712226748466, 0.006335919257253408, -0.010402255691587925, -0.00529205659404397, 0.011224252171814442, -0.02374332956969738, -0.006121327169239521, -0.022492149844765663, 0.009078332222998142, -0.0013030098052695394, -0.006244990509003401, -0.03590596839785576, 0.005819443613290787, -0.00760892266407609, -0.037331730127334595, -0.0014121243730187416, -0.017443781718611717, 0.031046731397509575, -0.019887948408722878, -0.028544370085000992, 0.012984633445739746, -0.017472879961133003, -0.03485846519470215, 0.0013721156865358353, 0.009703922085464, 0.028820794075727463, 0.045478951185941696, -0.003217061050236225, 0.012060796841979027, -0.006677811499685049, -0.005863089580088854, -0.011326092295348644, -0.029184509068727493, 0.0405324250459671, 0.005928558297455311, -0.010271318256855011, -0.007237933110445738, -0.0341019406914711, -0.0021131853573024273, -0.005001084413379431, 0.004186362028121948, -0.020949997007846832, -0.00840909592807293, 0.014286734163761139, 0.010620484128594398, -0.0033389057498425245, -0.011704355478286743, -0.0341019406914711, 0.0463227704167366, 0.011493400670588017, -0.014999615959823132, -0.04123075678944588, -0.018651315942406654, 0.019204163923859596, -0.003942673094570637, 0.0030879422556608915, -0.008270883932709694, -0.006717820186167955, -0.015712497755885124, 0.0017849324503913522, 0.004157265182584524, 0.033665481954813004, 0.008532758802175522, 0.021604685112833977, -0.01627989299595356, -0.0015939819859340787, -0.01623624749481678, -0.0032352469861507416, -0.0017485609278082848, 0.0074488879181444645, 0.023626940324902534, -0.01582888700067997, -0.013166490942239761, 0.010758696123957634, -0.016570866107940674, -0.0006856031832285225, -0.04562443867325783, 0.020047983154654503, 0.009485692717134953, 0.019786108285188675, -0.027976974844932556, 0.00636501656845212, 0.011653435416519642, 0.0019113235175609589, -0.0027987887151539326, -0.02401975356042385, 0.003540767589583993, -0.010911456309258938, -0.004466422833502293, 0.008620050735771656, 0.004430051427334547, -0.010860536247491837, -0.022375760599970818, 0.03232700750231743, 0.0028915361035615206, -0.008649148046970367, -0.014301282353699207, -0.01990249752998352, -0.012446334585547447, -0.009878505021333694, 0.016338087618350983, 0.03107582964003086, 0.0003962222835980356, -0.008896474726498127, -0.06366471201181412, 0.005826717708259821, -0.022783121094107628, -0.0428893007338047, -0.0035207634791731834, 0.013566577807068825, 0.006623254157602787, -0.030639370903372765, 0.007434339262545109, -0.18785163760185242, 0.007492533419281244, 0.00499744713306427, -0.029591871425509453, 0.03334541246294975, -0.0013502928195521235, -0.005368436686694622, 2.0174828023300506e-05, 0.0011111500207334757, -0.00702334102243185, 0.022812219336628914, -0.020906351506710052, -0.0047537581995129585, 0.006543236784636974, 0.01990249752998352, 0.008358175866305828, -0.005281145218759775, 0.0074379765428602695, 0.022012045606970787, 0.017298296093940735, 0.030086522921919823, -0.04370402172207832, 0.004248193930834532, -0.00497562438249588, -0.014985066838562489, 0.02541641891002655, -0.05231679603457451, -0.002282313071191311, -0.001154795871116221, -0.016018018126487732, -0.03139589726924896, 0.01687638647854328, -0.003591687884181738, -0.01777840033173561, 0.009958522394299507, 0.0029333631973713636, -0.012300848960876465, -0.004670103546231985, 0.014177619479596615, 0.039543118327856064, 0.011711630038917065, 0.03672068938612938, 0.009165623225271702, 0.025067253038287163, -0.025663746520876884, 0.02672579512000084, 0.059271033853292465, 0.040416035801172256, 0.022303016856312752, -0.010365883819758892, -0.011115137487649918, -0.02844252996146679, 0.01030768919736147, 0.02292860858142376, 0.010620484128594398, 0.035440411418676376, 0.015974372625350952, 0.0018785891588777304, 0.0010920549975708127, -0.014584980905056, 0.01372661255300045, -0.010074911639094353, -0.006612342782318592, -0.025474613532423973, -0.012853696011006832, -0.004175450652837753, -0.03116312064230442, 0.01578524149954319, -0.02062992751598358, 0.021022740751504898, -0.006666900124400854, 0.005983115639537573, 0.009296560660004616, -0.005041093099862337, 0.020819058641791344, 0.011820744723081589, -0.03424742445349693, 0.023554198443889618, 0.023132288828492165, -0.01470136921852827, -0.006612342782318592, 0.0347420796751976, 0.004102707840502262, 0.018345795571804047, 0.007812603376805782, 0.01343564037233591, 0.011406109668314457, 0.009587532840669155, 0.008852828294038773, -0.0020877253264188766, 0.029882842674851418, 0.015246942639350891, 0.009965796954929829, -0.024616247043013573, 0.008510936051607132, 0.009638453833758831, 0.012715484015643597, -0.009005588479340076, 0.0051902164705097675, -0.025300031527876854, -0.01690548285841942, -0.01799662970006466, -0.013835727237164974, 0.020018886774778366, 0.042132772505283356, 0.019247809424996376, -0.022419406101107597, 0.013944841921329498, 0.03500395268201828, -0.026085656136274338, 0.009602081961929798, 0.009034685790538788, 0.010751421563327312, 0.027744196355342865, -0.010293141007423401, 0.01971336454153061, 0.00784897431731224, -0.009420224465429783, 0.002626023953780532, -0.0013757528504356742, 0.04219096526503563, -0.004164539277553558, 4.046331741847098e-05, 0.01782204583287239, -0.034538399428129196, -0.02234666422009468, -0.08176318556070328, -0.009223817847669125, 0.0071324557065963745, 0.009805762208998203, -0.015508817508816719, -0.001220264588482678, 0.0013602949911728501, 0.023175934329628944, 0.01651267148554325, 0.025881975889205933, 0.006888766307383776, -0.009471144527196884, -0.016018018126487732, -0.013559303246438503, 0.005444816779345274, -0.018505830317735672, -0.008554582484066486, -0.022375760599970818, -0.000857458624523133, 0.047282978892326355, -0.007092447020113468, -0.024849023669958115, -0.009231092408299446, -0.019873399287462234, -0.02428162842988968, 0.004237282555550337, -0.05042547732591629, 0.03232700750231743, -0.001293916953727603, 0.013530205935239792, 0.018913190811872482, -0.01908777467906475, 0.01769110932946205, -0.016541767865419388, -0.008125398308038712, 0.005299330689013004, -0.02880624495446682, -0.012315397150814533, 0.005510285496711731, -0.05080374330282211, 0.0386120080947876, 0.018782254308462143, 0.029562773182988167, -0.0403287447988987, -0.0062595391646027565, -0.00701970374211669, -0.02022256702184677, 0.04274381324648857, -0.005564842838793993, -0.010031266137957573, -0.020920898765325546, -0.004979261197149754, -0.006234079133719206, -0.03337451070547104, 0.0351785346865654, -0.005066553130745888, -0.004135441966354847, 0.0038481070660054684, -0.020819058641791344, -0.004400954116135836, -0.024761732667684555, 1.764587068464607e-05, -0.013122845441102982, 0.0032006939873099327, 5.415947089204565e-05, 0.004139079246670008, -0.024863572791218758, -0.026245690882205963, 0.04757395014166832, 0.005233861971646547, -0.013348348438739777, 0.021139128133654594, -0.014519511722028255, -0.011784372851252556, -0.010227671824395657, 0.01311557088047266, -0.0061940704472362995, -0.028020620346069336, -0.00816176924854517, -0.0011347915278747678, -0.0043172999285161495, -0.03776818886399269, -0.023408710956573486, 0.014053956605494022, 0.033985551446676254, 0.020426247268915176, 0.007277941796928644, 0.004961075726896524, 0.002769691403955221, -0.0386120080947876, 0.012373591773211956, -0.00014764565275982022, 0.006077681202441454, -0.006212255917489529, -0.010569564066827297, 0.03523673117160797, 0.02464534342288971, 0.003217061050236225, -0.0021950213704258204, -0.012780953198671341, -0.03899027034640312, -0.0016239885007962584, -0.07309221476316452, 0.053073324263095856, 0.013799355365335941, 0.017400136217474937, -0.0033661844208836555, -0.0014539515832439065, -0.006310459226369858, -0.0037935497239232063, -0.001976792234927416, 0.042540132999420166, -0.016163503751158714, 0.022826766595244408, -0.006808748934417963, -0.010729598812758923, -0.01342836581170559, -0.04853415861725807, 0.01962607353925705, -0.0006183158839121461, 0.028733503073453903, -0.02269583009183407, 0.006146787200123072, -0.00417181383818388, 0.00787079706788063, 0.027031315490603447, -0.0006074044504202902, 0.014941421337425709, -0.008285433053970337, 0.0014875952620059252, -0.014999615959823132, -0.025751037523150444, 0.015377880074083805, -0.027525968849658966, 0.008758262731134892, 0.019698817282915115, 0.0038590184412896633, -0.021808365359902382, 0.029053572565317154, 0.0182294063270092, 0.013690240681171417, -0.006866943556815386, -0.011675259098410606, -0.020018886774778366, -0.014868678525090218, -0.01610531099140644, -0.025518260896205902, -0.019786108285188675, -0.028878988698124886, 0.011071491055190563, 0.012104442343115807, 0.0030370221938937902, 0.016992775723338127, 0.016745448112487793, -0.05621582642197609, -0.015159650705754757, -0.005353888031095266, -0.018113018944859505, 0.013028278946876526, 0.009594807401299477, 0.009107429534196854, -0.0012948261573910713, 0.05767068639397621, 1.032894397212658e-05, 0.02672579512000084, -0.0026205682661384344, 0.004615546204149723, -0.004277291242033243, -0.019800657406449318, -0.01962607353925705, 0.015072358772158623, -0.007928991690278053, 0.006848757620900869, -0.01158069260418415, -0.002467807848006487, 0.03401464596390724, -0.00012241290824022144, 0.017880240455269814, -0.022550344467163086, 0.010729598812758923, -0.024005204439163208, 0.02170652523636818, 0.02383062057197094, -0.006121327169239521, -0.000432593806181103, 0.009842134080827236, 0.003971770405769348, 0.02116822637617588, -0.013399268500506878, 0.013588400557637215, 0.02084815688431263, 0.005633948836475611, -0.04047422856092453, 0.0013875735457986593, 0.0014321287162601948, -0.010002168826758862, 0.01497051864862442, 0.009827584959566593, -0.0031461366452276707, 0.023772427812218666, 0.021779267117381096, 0.005935832392424345, 0.031628675758838654, 0.002189565682783723, -0.012635466642677784, -0.00843819323927164, -0.024572599679231644, -0.015508817508816719, -0.03971770405769348, -0.025154544040560722, -0.0004923794767819345, -0.010933279991149902, 0.0020113452337682247, 0.008038106374442577, 0.0068814922124147415, 0.0257364884018898, -0.012977358885109425, 0.015348782762885094, -0.000297337188385427, -0.02329232357442379, -0.04044513404369354, 0.04012506455183029, 0.0060740443877875805, 0.0002696039155125618, 0.019771559163928032, -0.0029951948672533035, 0.03893207758665085, -0.025678295642137527, 0.02271037921309471, -0.003611692227423191, 0.009274737909436226, -0.003464387496933341, -0.0015185110969468951, 0.0003987228265032172, -0.01732739247381687, -0.017298296093940735, -0.023626940324902534, 0.014323105104267597, -0.0018285783007740974, 0.021139128133654594, 0.019204163923859596, 0.08339262753725052, 0.0140466820448637, -0.030872147530317307, -0.013391994871199131, -0.002822430105879903, 0.019655169919133186, 0.025489162653684616, 0.02134281024336815, -0.004961075726896524, -0.020004337653517723, 0.010227671824395657, -0.018869545310735703, -0.005237499251961708, -0.02220117673277855, -0.02265218459069729, 0.004971987102180719, 0.009136526845395565, 0.006932412274181843, -0.016978226602077484, -0.005612126085907221, -0.009056509472429752, -0.014781386591494083, 0.014730466529726982, 0.001931327860802412, -0.0032497954089194536, -0.025110898539423943, 0.013588400557637215, 0.005652134772390127, -0.005382985342293978, -0.03418923169374466, 0.009100154973566532, -0.0012111717369407415, -0.00451006880030036, -0.02333596907556057, -0.002796970074996352, -0.0043827686458826065, 0.004019053187221289, -0.006499590817838907, -0.005055641755461693, 0.011115137487649918, -0.010685953311622143, -0.003800824051722884, -0.031774163246154785, -0.03229791298508644, 0.026376627385616302, -0.004273653961718082, 0.006044947076588869, 0.006928774993866682, -0.03052298165857792], "9cf96cfc-0673-4806-b906-e4dab4f6aa0e": [-0.017561035230755806, -0.00038315478013828397, 0.003292693989351392, -0.008405034430325031, -0.014759356155991554, 0.04159192368388176, -0.02431972324848175, -0.002274558413773775, -0.02365540713071823, -0.04312273859977722, 0.021821318194270134, -0.018730808049440384, -0.0038306452333927155, 0.005881357938051224, -0.005014859605580568, 0.004866832867264748, 0.013950624503195286, -0.021431393921375275, 0.00395700940862298, -0.009509820491075516, -0.03676841780543327, 0.02052157185971737, -0.01183492410928011, 0.02977866306900978, -0.009083791635930538, -0.0018738028593361378, 0.016304612159729004, -0.02995196171104908, 0.0016959900967776775, -0.0008145988103933632, 0.0013430725084617734, -0.0030183028429746628, -0.03336019068956375, -0.004462467040866613, -0.009834757074713707, -0.014131145551800728, 0.012903605587780476, -0.015178164467215538, 0.017171110957860947, -0.013257426209747791, 0.013560700230300426, 0.016304612159729004, -0.0022510907147079706, -0.028594447299838066, -0.00695003941655159, 0.026009393855929375, 0.005162886343896389, -0.0038848011754453182, 0.003852307563647628, 0.025359520688652992, 0.003577916417270899, 0.02889772318303585, -0.024363048374652863, 0.002803483512252569, 0.03333130478858948, 0.0016129506984725595, 0.0084122559055686, 0.029215438291430473, -0.019539538770914078, -0.0183697659522295, 0.007560198660939932, -0.009596469812095165, 0.008253397420048714, 0.003050796454772353, -0.011018971912562847, -0.00404004892334342, 0.004003944806754589, 0.013206880539655685, -0.012946930713951588, -0.023092182353138924, 0.026543734595179558, 0.016391262412071228, -0.009813094511628151, -0.02124365232884884, -0.002428000792860985, -0.006863389629870653, -0.030038611963391304, -1.0111968549608719e-05, 0.019828371703624725, -0.00508706783875823, 0.012528123334050179, -0.020709311589598656, -0.026124928146600723, 0.02780015766620636, 0.02995196171104908, -0.015813596546649933, 0.011878249235451221, 0.02073819562792778, -0.01488933153450489, -0.00951704103499651, 0.0306162778288126, 0.022471193224191666, -0.0003906012570951134, 0.005628629587590694, -0.005848864559084177, 0.014607719145715237, 0.0022041553165763617, 0.022875558584928513, 0.0012780851684510708, -0.008549450896680355, -0.007798485923558474, -0.01213819906115532, -0.03324465453624725, 0.004404700361192226, -0.011892691254615784, -0.0016860614996403456, -0.007704615127295256, 0.0037837098352611065, -0.0006688284920528531, 0.00043528006062842906, -0.03385120630264282, 0.026514852419495583, -0.012578669004142284, -0.0130480220541358, -0.004361375235021114, -0.02322215773165226, 0.0006598024629056454, -0.010657930746674538, -0.028594447299838066, -0.027005868032574654, 0.02063710428774357, 0.026832567527890205, 0.00879495870321989, -0.011856586672365665, 0.010210240259766579, -0.00168876932002604, 0.010224681347608566, -0.01655011996626854, 0.0007636017398908734, -0.0229477658867836, 0.03310023993253708, 0.011625520884990692, 0.012152640148997307, 0.011293362826108932, 0.007863473147153854, 0.02372761443257332, -0.003023718483746052, 0.002982198726385832, -0.007401340641081333, -0.01958286389708519, 0.013127450831234455, 0.03694171458482742, 0.00357250077649951, 0.006953649688512087, -0.003837866010144353, 0.016954485327005386, -0.0022240127436816692, -0.019207382574677467, 0.0010470189154148102, 0.004809066187590361, 0.005574473179876804, 0.007928460836410522, -0.0009129824466072023, -0.008650542236864567, 0.006729804445058107, -0.013300751335918903, -0.0006751467008143663, 0.005245925858616829, -0.004227790050208569, -0.03803928196430206, -0.0033287981059402227, 0.039512328803539276, -0.0001685610186541453, 0.004058100748807192, 0.03116505965590477, 0.037692680954933167, 0.013228543102741241, -0.00482711847871542, 0.00785625260323286, -0.010650710202753544, 0.0014748525572940707, 0.008123422972857952, -0.01809537597000599, 0.014716031961143017, 0.006310997065156698, 0.005332575645297766, -0.0025092349387705326, -0.019322915002703667, -0.02167690172791481, -0.011481104418635368, -0.0017979842377826571, -0.005105120129883289, 0.02514289692044258, 0.03509318456053734, -0.018846340477466583, 0.011654403991997242, 0.0039028532337397337, -0.011018971912562847, 0.007610744331032038, -0.003816203447058797, 0.0335334874689579, 0.02950427122414112, -0.010585722513496876, -0.0042891670018434525, -0.5892189145088196, -0.018398649990558624, 0.002034466015174985, 0.0037006703205406666, -0.02482517994940281, 0.009697561152279377, 0.0049643139354884624, 0.001284403377212584, -0.037865981459617615, 0.04719528183341026, -0.028695540502667427, 0.02983642928302288, -0.01070125587284565, -0.03497765213251114, 0.0028973540756851435, 0.003029134124517441, -0.002646430628374219, -0.0055130962282419205, 0.02410309761762619, 0.011827703565359116, -0.013943403959274292, 0.012455915100872517, 0.00043640832882374525, -0.0009973758133128285, -0.0006746954168193042, -0.019929463043808937, 0.03281140699982643, 0.003863138845190406, 0.0060257744044065475, 0.026283785700798035, -0.02470964752137661, 0.018441975116729736, 0.012246510945260525, -0.008036772720515728, 0.0550515353679657, 0.0030128872022032738, -0.03333130478858948, 0.022297892719507217, 0.0362774021923542, 0.027655741199851036, -0.018326442688703537, 0.011625520884990692, 0.014932656660676003, -0.0008795861504040658, 0.00616296986117959, -0.02030494622886181, 0.038356997072696686, 0.0015921908197924495, -0.02801678329706192, -0.006964480970054865, 0.01572694629430771, -0.01588580384850502, -0.012412589974701405, 0.0076829525642097, -0.0020272452384233475, -0.017994284629821777, 0.024131981655955315, -0.006682869046926498, 0.015986895188689232, -0.007339963689446449, -0.011842145584523678, 0.006596219260245562, 0.004144751001149416, -0.0214025117456913, -0.011199492029845715, 0.0014315276639536023, 0.007711836136877537, -0.009863640181720257, 0.002595884958282113, -0.008628880605101585, 0.018629716709256172, 0.028262291103601456, -0.0043577649630606174, 0.001005499274469912, -0.005982449743896723, 0.013380180113017559, 0.010354655794799328, 0.024622997269034386, -0.013221321627497673, 0.0013611245667561889, 0.025243988260626793, 0.0006588998367078602, -0.008376151323318481, -0.005628629587590694, 0.003538202028721571, 0.015842478722333908, -0.01737329363822937, 0.005292861256748438, -0.011264479719102383, -0.03133836016058922, 0.03304247185587883, -0.026558177545666695, -0.003538202028721571, -0.034399986267089844, -0.00898992083966732, 0.019568422809243202, -0.0021951294038444757, -0.012073211371898651, -0.023467665538191795, -0.03359125554561615, -0.011300583370029926, 0.00714500155299902, -0.0024478579871356487, 0.00043212095624767244, 0.054531633853912354, 0.014607719145715237, -0.01782098412513733, -0.03044297732412815, 0.061810221523046494, -0.01875969022512436, 0.005740552209317684, 0.0113583505153656, -0.008722750470042229, -0.013170775957405567, -0.003148277522996068, -0.027829041704535484, 0.03630628436803818, -0.001870192470960319, -0.0007626991136930883, 0.018052050843834877, 0.016680095344781876, 0.0066214920952916145, 0.005740552209317684, 8.501387492287904e-05, -0.0004470139101613313, 0.026485968381166458, 0.013033580966293812, -0.025677237659692764, 0.029533155262470245, 0.0038920221850275993, 0.0029641466680914164, -0.029330972582101822, 0.033995620906353, -0.01731552742421627, 0.0183697659522295, -0.02372761443257332, 0.007979006506502628, -0.004902936983853579, 0.03587303310632706, -0.02989419549703598, -0.01864415779709816, -0.006202684715390205, 0.005148444790393114, -0.005639460403472185, -0.011603858321905136, -0.011683287099003792, -0.03116505965590477, 0.015524763613939285, -0.02398756518959999, 0.009220987558364868, -0.014679927378892899, -0.0024478579871356487, 0.0020236349664628506, 0.02410309761762619, -0.015235930681228638, -0.0002335484023205936, 0.015611412934958935, -0.0423428900539875, 0.003117589047178626, -0.01676674373447895, -0.022803349420428276, 0.04361375421285629, -0.010722918435931206, -0.018673041835427284, 0.01491821464151144, 0.0067117526195943356, -0.006556504871696234, -0.00032809600816108286, 0.00011519464896991849, -0.03249369189143181, -0.009026025421917439, -0.0025200662203133106, -0.023510990664362907, -0.004722416400909424, -0.00745910732075572, 0.000533438113052398, -0.023482106626033783, 0.010838450863957405, 0.017618801444768906, 0.009719223715364933, -0.00714500155299902, 0.031511660665273666, 0.00791401881724596, 0.008253397420048714, 0.010130810551345348, 0.0031735505908727646, 0.013466829434037209, 0.018846340477466583, -0.01605910435318947, 0.05337630212306976, -0.028435589745640755, 0.017474384978413582, -0.01262921467423439, 0.014535510912537575, -0.04681979864835739, 0.04606883227825165, -0.01942400634288788, 0.015264813788235188, -0.02758353389799595, 0.008896050974726677, -0.004404700361192226, 0.02543172799050808, 0.03991669416427612, 6.205392128322273e-05, 0.00026694469852373004, -0.006722583435475826, -0.009596469812095165, -0.03821258246898651, 0.031251709908246994, 0.001335851731710136, 0.004523843992501497, 0.007668511010706425, -0.016290171071887016, -0.001631002756766975, 0.008859946392476559, 0.00638320529833436, -0.016636770218610764, 0.01604466326534748, -0.012470356188714504, -0.018384208902716637, 0.00794290192425251, -0.039627861231565475, 0.04153415933251381, -0.008599996566772461, -0.0019044913351535797, -0.02795901522040367, 0.005578083451837301, 0.00879495870321989, 0.006000501569360495, -0.006159359589219093, 0.011257259175181389, -0.0005907533341087401, -0.01348127145320177, -0.0037584370002150536, 0.017503269016742706, 0.005235094577074051, 0.017691008746623993, 0.010000836104154587, 0.03402450680732727, -0.02091149613261223, 0.005668343976140022, 0.027554649859666824, 0.017070019617676735, -0.0168245118111372, -0.008116201497614384, 0.0027384960558265448, 0.030529627576470375, 0.00635793199762702, -0.014326107688248158, 0.022023500874638557, 0.0011165193282067776, 0.022139035165309906, -0.020146088674664497, -0.008896050974726677, 0.022846674546599388, -0.013134672306478024, -0.012174302712082863, 0.01914961449801922, 0.0425739549100399, 0.007545757107436657, 0.018889665603637695, 0.002112089889124036, 0.0034226689022034407, 0.000719825504347682, 0.01296137273311615, 0.003455162514001131, -0.022572284564375877, 0.002341351006180048, -0.00031681350083090365, -0.018355324864387512, 0.005166497081518173, -0.01870192401111126, -0.0060835410840809345, -0.03572861850261688, 0.016680095344781876, -0.002585053676739335, 0.00957480724900961, -0.012029886245727539, 0.023453224450349808, -0.003494876902550459, -0.03324465453624725, -0.02024718001484871, 0.021474719047546387, 0.030789578333497047, 0.013177996501326561, -0.008065655827522278, -0.0055455900728702545, 0.028334498405456543, -0.012585889548063278, 0.023236598819494247, -0.015986895188689232, 0.008867166936397552, -0.0021572201512753963, -0.007025857921689749, 0.0021608304232358932, 0.030529627576470375, 0.01692560315132141, 0.01020301878452301, 0.019207382574677467, 8.84550463524647e-05, 0.005314523819833994, 0.015351464040577412, -0.033013589680194855, 0.021763551980257034, 0.028392264619469643, -0.010549617931246758, -0.01666565239429474, -0.03509318456053734, -0.02388647384941578, -0.03619075194001198, 0.00863610114902258, 0.0016923797084018588, -0.019842814654111862, -0.0021662460640072823, 0.018167583271861076, 0.000968492531683296, -0.01334407553076744, -0.006448192521929741, 0.028060106560587883, -0.011842145584523678, 0.010000836104154587, -0.020940378308296204, 0.009148779325187206, 0.04242954030632973, 0.0181964673101902, 0.057391081005334854, 0.006906714756041765, 0.016752302646636963, -0.04159192368388176, 0.011322245933115482, -0.03463105484843254, -0.029980845749378204, 0.026948101818561554, -0.024911830201745033, -0.028868839144706726, -0.015510321594774723, 0.030760694295167923, -0.005097899120301008, 0.04572223499417305, 0.003682618262246251, 0.033620137721300125, -0.003964230418205261, -0.01059294305741787, -0.008419476449489594, -0.010152473114430904, -0.013257426209747791, 0.012845839373767376, 0.03272475674748421, 0.02807454951107502, 0.0136762335896492, 0.02582165226340294, 0.007177495397627354, 0.011264479719102383, 0.0022131814621388912, -0.023857589811086655, 0.010585722513496876, 0.013004696927964687, 0.028912164270877838, 0.004170023836195469, 0.03679729998111725, 0.013820650056004524, 0.00364651414565742, -0.0033071357756853104, 0.019727280363440514, 0.007495211437344551, 0.013553479686379433, 0.01486044842749834, -0.012968593277037144, 0.023799823597073555, -0.015755830332636833, -0.005852474831044674, 0.002610326511785388, 0.017907634377479553, -0.002770989667624235, 0.009430390782654285, 0.005134003236889839, -0.015134839341044426, -0.005628629587590694, 0.021590253338217735, 0.017344409599900246, -0.02465187944471836, -0.025792770087718964, -0.012195965275168419, -0.028782188892364502, -0.04485573619604111, -0.013127450831234455, 0.02124365232884884, -0.015019305981695652, -0.006895883474498987, -0.021922409534454346, -0.028811072930693626, -0.014073378406465054, -0.003776489058509469, 0.01725776121020317, 0.012816956266760826, 0.01177715789526701, -0.026327110826969147, 0.027569090947508812, 0.010282447561621666, 0.01721443608403206, 0.004819897469133139, -0.0020434921607375145, -0.016535678878426552, 0.03928126394748688, -0.017575476318597794, -0.03156942501664162, 0.01776321791112423, -0.020651545375585556, -0.01226817350834608, -0.024059772491455078, 0.015871362760663033, 0.0032764472998678684, 0.006260450929403305, 0.0010632658377289772, -0.017402177676558495, 0.004780183080583811, -0.016232402995228767, 0.00044227525359019637, 0.02840670756995678, 0.0060293846763670444, 0.007415782194584608, 0.030414095148444176, -0.00045288080582395196, 0.009271533228456974, -0.0026843398809432983, -0.002713223220780492, -0.008260617963969707, -0.0003323833807371557, -0.00011688702943501994, 0.02515733800828457, -0.006170190870761871, 0.01249201875180006, 0.018499741330742836, -0.011733832769095898, -0.00525314686819911, 0.0050329118967056274, 0.0006033898098394275, -0.013474050909280777, 0.017575476318597794, 0.012607552111148834, 0.012289836071431637, 0.023366574198007584, 0.005780266597867012, 0.006802012678235769, -0.0004039146297145635, -0.005307302810251713, 0.018052050843834877, -0.012708643451333046, -0.0090982336550951, 0.016087988391518593, 0.007675732020288706, -0.02095482125878334, -0.005827201995998621, -0.003960619680583477, -0.022196801379323006, 0.001274474780075252, 0.0003684874973259866, -0.04413365200161934, -0.03939679637551308, 0.010101927444338799, -0.005718889646232128, 0.01177715789526701, -0.019756164401769638, -0.017474384978413582, -0.01497598085552454, 0.016232402995228767, -0.009502599015831947, -0.02255784161388874, -0.00337753864005208, -0.025937186554074287, -0.011993782594799995, -0.0077768233604729176, -0.000885453075170517, 0.059095192700624466, -0.002009193180128932, 0.0037620472721755505, -0.02023273892700672, -0.023121066391468048, -0.025619469583034515, -0.020059438422322273, -0.018774133175611496, -0.0014631187077611685, 0.036479584872722626, 0.0009341936092823744, 0.03142501041293144, 0.0037584370002150536, 0.006462634075433016, -0.019813930615782738, -0.0008362612570635974, -0.004097815603017807, 0.0004377622390165925, -0.02459411323070526, -0.004393869079649448, -0.000626857450697571, 0.007018637377768755, 0.00791401881724596, 0.028551124036312103, 0.005050963722169399, -0.008260617963969707, 0.02200905978679657, 0.00014227272185962647, -0.01566918008029461, -0.01979948952794075, -0.03997446224093437, -0.03237815946340561, -0.0037981513887643814, -0.03691283240914345, -0.014304445125162601, -0.03601745143532753, 0.002568806754425168, 0.009943069890141487, -0.024680763483047485, -0.0010813177796080709, -0.016420144587755203, 0.03463105484843254, -0.02278890833258629, 0.037143900990486145, 0.006718973163515329, 0.014593278057873249, -0.019438447430729866, -0.023019975051283836, -0.01249201875180006, -0.010491851717233658, 0.006101592909544706, -0.0025146505795419216, 0.010058602318167686, -0.009993615560233593, 0.00186477683018893, -0.008455580100417137, 0.005061795003712177, -0.01676674373447895, -0.025850536301732063, 0.007661290466785431, -0.013806208036839962, -0.0020832065492868423, -0.04959259182214737, -0.011105621233582497, 0.009690340608358383, -0.003393785562366247, 0.0020633493550121784, 0.01686783693730831, 0.002947899978607893, -0.04615548253059387, -0.01803760975599289, 0.003097731852903962, -0.005599746014922857, 0.033995620906353, 0.03298470750451088, 0.029980845749378204, 0.0273524671792984, 0.004336102399975061, -0.016723420470952988, 0.006957260426133871, 0.002375649753957987, -0.003393785562366247, 0.016954485327005386, 0.022182360291481018, -0.014643823727965355, 0.0011354739544913173, -0.008181189186871052, -0.01715666800737381, -0.025937186554074287, -0.028031224384903908, 0.034111153334379196, 0.025879420340061188, 0.017113344743847847, -0.020998144522309303, 0.0037476057186722755, -0.029663128778338432, -0.0020543234422802925, 0.00951704103499651, 0.006968091707676649, 0.020608220249414444, -0.02703475020825863, -0.022297892719507217, 0.013719558715820312, -0.029432063922286034, 0.027699066326022148, 0.022023500874638557, -0.019496215507388115, 0.000497333996463567, 0.020160529762506485, -0.012889164499938488, 0.006740635726600885, -0.01171939168125391, 0.00505818473175168, 0.004094204865396023, 0.005195380188524723, -0.002998445648699999, 0.012195965275168419, -0.00224748020991683, -0.012203185819089413, 0.005231484305113554, 0.02840670756995678, 0.0025417287833988667, -0.010166915133595467, 0.018831899389624596, -0.02476741373538971, 0.007740719243884087, -0.019568422809243202, 0.013322412967681885, -0.005664733704179525, -0.03916572779417038, -0.007166664116084576, 0.02410309761762619, 0.005910241510719061, 0.013134672306478024, -0.0038234242238104343, -0.012123757041990757, -0.013632908463478088, 0.0066214920952916145, -0.015640296041965485, 0.005318134091794491, -0.012564226984977722, -0.023539874702692032, 0.008628880605101585, -0.0181964673101902, 0.022904442623257637, -0.011343908496201038, 0.014622161164879799, 0.001501930644735694, 0.02983642928302288, -0.02790124900639057, 0.0024731308221817017, -0.019164057448506355, -0.008036772720515728, -0.041938524693250656, 0.007358015980571508, 0.007058351766318083, -0.0042891670018434525, 0.002319688443094492, 0.007849032059311867, -0.06585387885570526, -0.006960870698094368, 0.019770605489611626, 0.01387119572609663, -0.019062966108322144, 0.018080933019518852, 0.043555986136198044, 0.028998814523220062, 0.009473715908825397, -0.019597306847572327, -0.020694870501756668, 0.03006749600172043, -0.007719056680798531, 0.0030941215809434652, 0.00660705054178834, -0.0014540926786139607, 0.020218295976519585, -0.006751467008143663, 0.006459023803472519, -0.007098066154867411, -0.031078409403562546, -0.019626189023256302, 0.017402177676558495, 0.025619469583034515, -0.02316439151763916, -0.01936624012887478, -0.013972287066280842, -0.01527925580739975, -0.015105956234037876, 0.022471193224191666, 0.023843148723244667, -0.0011147140758112073, -0.0003605897072702646, 0.006123255472630262, 0.007134170271456242, 0.02057933807373047, -0.015466997399926186, -0.023756498470902443, -0.03468881919980049, -0.016073545441031456, -0.04442248493432999, -0.03275363892316818, -0.009358183480799198, 0.013098567724227905, -0.0011129089398309588, -0.04462466761469841, -0.014246677979826927, -0.029215438291430473, -0.01764768548309803, -0.023034416139125824, -0.021864643320441246, 0.028435589745640755, 0.04780182987451553, 0.006877831183373928, -0.002906380221247673, 0.031251709908246994, -0.013546259142458439, -0.00392812630161643, -0.033995620906353, 0.00468992255628109, 0.015293696895241737, -0.008599996566772461, 0.02795901522040367, -0.01858639158308506, -0.048957161605358124, 0.010282447561621666, 0.0065240110270679, 0.02465187944471836, 0.017185552045702934, 0.00395700940862298, -0.014419978484511375, -0.0011174218961969018, -0.012737526558339596, 0.00025679043028503656, -0.00012399502156767994, -0.0015497684944421053, 0.00802233163267374, -0.043324921280145645, -0.012968593277037144, 0.012975813820958138, 0.009495378471910954, 0.008340047672390938, 0.0050076390616595745, 0.009387066587805748, -0.018817458301782608, 0.010462968610227108, -0.005646681413054466, -0.01478101871907711, -0.009285975247621536, -0.024911830201745033, 0.03642181679606438, 0.013084126636385918, 0.003993113525211811, 0.023640966042876244, -0.00595717690885067, -0.019611747935414314, 0.0016120481304824352, 0.01321410108357668, -0.019337356090545654, -0.01764768548309803, 0.0333024226129055, -0.0168245118111372, -0.00031252612825483084, 0.02117144502699375, -0.005347017198801041, -0.0035977736115455627, -0.016073545441031456, -0.009748107753694057, -0.02455078810453415, -0.028218965977430344, -0.006101592909544706, 0.002112089889124036, -0.037086132913827896, -0.00279806787148118, 0.009675899520516396, -0.02917211316525936, 0.020969262346625328, 0.00014689855743199587, -0.012333161197602749, -0.006437361240386963, -0.006354321725666523, -0.012398147955536842, -0.006321828346699476, -0.021821318194270134, -0.005000418052077293, -0.006802012678235769, -0.012636435218155384, 0.011430558748543262, 0.20172083377838135, -0.0043433234095573425, -0.017792101949453354, 0.015091514214873314, -0.009784211404621601, -0.00039691946585662663, -0.0031049526296555996, 0.0038703596219420433, -0.02300553396344185, 0.004780183080583811, 0.021965734660625458, 0.013582362793385983, 0.00785625260323286, -0.007560198660939932, -0.00392812630161643, 0.001061460585333407, -0.0488705113530159, -0.014903772622346878, -0.026355993002653122, 0.0054300567135214806, -0.0005672856932505965, -0.03595968335866928, -0.007552978117018938, 3.2402019769506296e-06, 0.048523910343647, 0.010282447561621666, -0.0067117526195943356, -0.0049065472558140755, 0.02658705972135067, 0.01743105985224247, -0.029417620971798897, 0.006116034928709269, 0.027005868032574654, 0.017618801444768906, 0.011235596612095833, -0.024608556181192398, 0.02785792388021946, 0.010542397387325764, 0.024781854823231697, 0.00010278386616846547, 0.010101927444338799, -0.02167690172791481, 0.020102763548493385, -0.02459411323070526, -0.01780654303729534, 0.0259227454662323, -0.004166413098573685, -0.02068042941391468, 0.01439831592142582, -0.0012392732314765453, -0.017474384978413582, 0.02449302189052105, 0.02703475020825863, 0.02267337590456009, 0.011437779292464256, -0.012369264848530293, -0.00023151755158323795, 0.010470189154148102, -0.025128453969955444, 0.026341551914811134, -0.017676567658782005, 0.0153659051284194, 0.0028919384349137545, -0.0033324086107313633, -0.028825514018535614, 0.0009193006553687155, -0.016015779227018356, -0.043873704969882965, -0.005094288848340511, -0.026832567527890205, 0.027063634246587753, -0.010852892883121967, -0.003985892981290817, 0.024233072996139526, -0.00805121473968029, -0.021359186619520187, 0.0022565063554793596, 0.01698336936533451, 0.017084460705518723, 0.03705725073814392, 0.0034226689022034407, 0.007726277690380812, -0.011885469779372215, -0.020478246733546257, -0.02834893949329853, -0.027265816926956177, 0.02951871231198311, -0.010051381774246693, -0.008448359556496143, 0.006505959201604128, -0.027150284498929977, 0.006437361240386963, -0.012780851684510708, 0.016535678878426552, -0.004567168653011322, 0.005469771102070808, 0.010044161230325699, -0.005072626285254955, 0.004058100748807192, -0.0337645560503006, -0.04219847172498703, 0.05328965187072754, -0.005144834518432617, 0.005971618462353945, -0.04159192368388176, 0.0030201079789549112, 0.007065572775900364, 0.02486850507557392, -0.004440804477781057, -0.008542230352759361, -0.009047687985002995, -0.04248730465769768, -0.00833282619714737, -0.0067045316100120544, 0.021806877106428146, 0.03188714385032654, 0.00876607559621334, -0.008368930779397488, -0.004032827913761139, -0.0423428900539875, 0.005094288848340511, -0.012694202363491058, 0.012679760344326496, 0.009993615560233593, -0.020261621102690697, -0.008188409730792046, 0.00539395259693265, -0.01797984167933464, 0.00624600937590003, -0.0428050234913826, 0.019438447430729866, 0.013192438520491123, 0.028334498405456543, -0.024449696764349937, 0.007574640214443207, -0.0002933458308689296, 0.011141725815832615, -0.016449028626084328, -0.013965066522359848, 0.012275394052267075, 0.003538202028721571, 0.0038811909034848213, 0.02327992394566536, 0.0010840255999937654, -0.0071955472230911255, -0.020059438422322273, 0.032233741134405136, -0.00833282619714737, -0.0242619551718235, -0.03099176101386547, -0.030818460509181023, -0.01469436939805746, 0.0007144099217839539, 0.014773798175156116, 0.024724088609218597, -0.003776489058509469, -0.003765657776966691, -0.05406950041651726, 0.021864643320441246, -0.020839286968111992, -0.03232039138674736, -0.0010948568815365434, 0.028045665472745895, 0.02416086383163929, -0.022095710039138794, -0.008556672371923923, -0.18623939156532288, 0.014456082135438919, -0.0006598024629056454, -0.025662794709205627, 0.021084794774651527, 0.007260534912347794, -0.009892523288726807, 0.0010488241678103805, 0.004830728750675917, -0.012094873934984207, 0.04231400787830353, -0.015856921672821045, -0.008477242663502693, 0.013474050909280777, 0.012073211371898651, -0.010982867330312729, 0.0019279590342193842, 0.0013033580034971237, 0.0274679996073246, 0.009401507675647736, 0.03928126394748688, -0.02161913551390171, -0.004639376886188984, 0.004372206516563892, -0.016795627772808075, 0.0028269512113183737, -0.03486211970448494, -0.0005433667101897299, 0.013004696927964687, -0.008181189186871052, -0.01787875033915043, 0.011697729118168354, 0.00485600158572197, 0.029316529631614685, 0.01964063197374344, -0.0016093403100967407, -0.0028937438037246466, 0.008621659129858017, 0.006401257123798132, 0.02073819562792778, 0.0017853478202596307, 0.03038521111011505, 0.018600832670927048, 0.01942400634288788, -0.012398147955536842, 0.024579672142863274, 0.0610014908015728, 0.03203155845403671, 0.0153659051284194, -0.02427639812231064, 0.0023846758995205164, -0.027973458170890808, -0.001248299260623753, 0.028868839144706726, 0.007112507708370686, 0.02372761443257332, 0.014109482988715172, -0.0008556672255508602, -0.0036555402912199497, -0.02631266973912716, 0.012152640148997307, 0.0013295335229486227, 0.0001417086023138836, -0.013235763646662235, -0.016911160200834274, 0.004704364575445652, -0.01907740719616413, 0.014102261513471603, -0.038905780762434006, 0.01942400634288788, -0.015929128974676132, -0.007054741494357586, 0.0029298479203134775, -0.009062129072844982, 0.004704364575445652, 0.0061413077637553215, -0.04953482747077942, 0.029099905863404274, 0.014304445125162601, -0.0003454711113590747, -0.0010091096628457308, 0.045693349093198776, -0.0071486118249595165, 0.016810068860650063, -0.02834893949329853, 0.011603858321905136, 0.010181356221437454, -0.005397563334554434, 0.01423223689198494, 0.012123757041990757, 0.02537396177649498, -0.005877747666090727, 0.013307971879839897, -0.014318886213004589, 0.009401507675647736, 0.02459411323070526, 0.01232593972235918, -0.007892356254160404, 0.0012194160372018814, -0.02394424006342888, -0.010665151290595531, 0.0035797215532511473, -0.014766577631235123, 0.024305280297994614, 0.027092518284916878, 0.007163053844124079, -0.022514518350362778, 0.0043433234095573425, 0.04115867614746094, -0.01780654303729534, 0.0005370485014282167, 0.023236598819494247, 0.011315025389194489, -0.0004258027474861592, -0.007632406894117594, 0.02195129357278347, 0.002870276104658842, -0.007574640214443207, -0.020608220249414444, 0.014109482988715172, 0.03486211970448494, 0.007545757107436657, 0.006173801142722368, 0.03373567387461662, -0.02736690826714039, -0.0044480254873633385, -0.0857255756855011, -0.012145419605076313, 0.0048487805761396885, 0.007401340641081333, -0.027222491800785065, 0.004978755488991737, -0.019380681216716766, 0.014275562018156052, 0.0033865647856146097, 0.028825514018535614, -0.013957845978438854, -0.026485968381166458, -0.022803349420428276, -0.002325104083865881, 0.005000418052077293, 0.002180687617510557, -0.007000585086643696, -0.005827201995998621, 0.0006846240139566362, 0.03705725073814392, 6.54950927128084e-05, -0.021431393921375275, 0.0030598226003348827, -0.02173466980457306, -0.03191602602601051, -0.008087318390607834, -0.04433583468198776, 0.010419643484055996, 0.009054908528923988, 0.004000334534794092, 0.02813231572508812, -0.01864415779709816, 0.033620137721300125, 0.007365236524492502, -0.019279589876532555, -0.0017239708686247468, -0.03006749600172043, -0.00020207013585604727, 0.020478246733546257, -0.027222491800785065, 0.02752576768398285, 0.014354990795254707, 0.018557507544755936, -0.04511568322777748, 0.012932488694787025, -0.007538536563515663, -0.013011918403208256, 0.050112493336200714, -0.0009486352792009711, -0.021200329065322876, -0.0048596118576824665, -0.0016842563636600971, 0.003424474038183689, -0.03893466293811798, 0.0054083941504359245, -0.023857589811086655, 0.00027010380290448666, 0.015625854954123497, -0.01727220229804516, -0.007747940253466368, -0.026110485196113586, -0.002344961278140545, -0.006650375667959452, 0.006614271551370621, 0.007849032059311867, 0.006274892948567867, -0.01930847391486168, -0.03451552242040634, 0.022269010543823242, 0.004112257156521082, -0.022240126505494118, 0.013098567724227905, -0.013611245900392532, -0.027814598754048347, -0.012145419605076313, 0.00748799042776227, -0.012448694556951523, -0.0196839552372694, 0.00206154421903193, -0.005105120129883289, -0.006473465356975794, -0.019236264750361443, -0.021994618698954582, 0.0016607886645942926, 0.033504605293273926, 0.011170608922839165, 0.0022673376370221376, 0.0032385378144681454, 0.005141223780810833, -0.05889301002025604, -0.008015110157430172, -0.015091514214873314, 0.02431972324848175, 0.0019604526460170746, -0.007921239361166954, 0.033389072865247726, 0.015062631107866764, 0.0060510472394526005, -0.00511595094576478, -0.00184401695150882, -0.02911434695124626, -0.0037259431555867195, -0.07330577075481415, 0.035555317997932434, -0.00013888796092942357, 0.02052157185971737, -0.03575750067830086, -0.003971450962126255, -0.009603691287338734, -0.005069016013294458, -0.01571250520646572, 0.03281140699982643, -0.01793651655316353, 0.034659937024116516, 0.005744162481278181, -0.012528123334050179, -0.02582165226340294, -0.017012253403663635, 0.025908302515745163, 0.003139251610264182, 0.0306740440428257, -0.013293529860675335, 0.001926153781823814, 0.00948815792798996, 0.020434921607375145, 0.02013164758682251, 0.018658598884940147, 0.005603356286883354, -0.004718806128948927, 0.001481170766055584, -0.007726277690380812, -0.02001611329615116, 0.03128059208393097, -0.0260960441082716, -0.007047520484775305, 0.0305007454007864, -0.025619469583034515, -0.03396673873066902, 0.01737329363822937, 0.0019279590342193842, 0.03379343822598457, -0.030038611963391304, -0.011372791603207588, -0.026124928146600723, -0.00415197154507041, -0.019452890381217003, -0.036104101687669754, 0.00040775068919174373, -0.028652215376496315, 0.011213934049010277, -0.013654571026563644, 0.020218295976519585, 0.02179243601858616, 0.00202002446167171, -0.04442248493432999, -0.017445500940084457, 0.00041971018072217703, -0.040118876844644547, 0.013026359491050243, -0.0027746001724153757, 0.012665318325161934, -0.004303609021008015, 0.04676203057169914, 0.010383539833128452, 0.04658873379230499, -0.014874889515340328, 0.005693616811186075, 0.011213934049010277, -0.018326442688703537, -0.012730306014418602, 0.01969839818775654, -0.021994618698954582, 0.009004362858831882, -0.022687816992402077, -0.003267421154305339, 0.011156166903674603, 0.019496215507388115, 0.014080599881708622, -0.026731476187705994, 0.00951704103499651, -0.01748882606625557, 0.031858257949352264, 0.0009179467451758683, 0.0004770254308823496, -0.011011750437319279, 0.01787875033915043, -0.010961204767227173, -0.002095842966809869, -0.014030053280293941, 0.027973458170890808, 0.0012473966926336288, 0.004433583468198776, -0.0460110679268837, 0.008318385109305382, -0.009206545539200306, -0.004646597895771265, 0.025402845814824104, -0.002030855743214488, -0.001683353679254651, 0.011885469779372215, 0.027829041704535484, 0.005217042751610279, 0.0183697659522295, 0.004419141914695501, -0.002388286404311657, -0.024897389113903046, -0.02801678329706192, -0.010354655794799328, -0.02950427122414112, -0.030645161867141724, -0.006242399103939533, -0.00438303779810667, 0.0012419810518622398, 0.0025363131426274776, 0.022803349420428276, 0.02707807533442974, -0.019655073061585426, -0.019655073061585426, 0.007762381806969643, -0.010888996534049511, -0.041129790246486664, 0.03237815946340561, 0.01387119572609663, -0.0008741705678403378, 0.02647152729332447, 0.011567753739655018, 0.0272369347512722, 0.00876607559621334, 0.023583199828863144, 0.012983034364879131, 0.020261621102690697, -0.02664482593536377, 0.010166915133595467, 0.002518261084333062, -0.020709311589598656, -0.014225015416741371, -0.017748776823282242, 0.009553145617246628, 0.00802233163267374, 0.01897631585597992, 0.009430390782654285, 0.08266395330429077, 0.004733247682452202, -0.030962876975536346, -0.024507462978363037, 0.009805873967707157, 0.017748776823282242, 0.033129122108221054, 0.02819008193910122, 2.565365684858989e-05, -0.020088322460651398, 0.024752972647547722, -0.01381342951208353, 0.01191435381770134, -0.00011790245480369776, -0.010210240259766579, 0.001511859241873026, -0.013835091143846512, 0.003837866010144353, 0.014744915068149567, -0.007502432446926832, 0.009971952997148037, -0.01997278816998005, 0.013878416270017624, 0.013560700230300426, -0.018990756943821907, -0.017792101949453354, 0.022182360291481018, 0.007018637377768755, -0.007408561650663614, -0.03445775434374809, 0.012217627838253975, -0.007899577729403973, -0.0114161167293787, -0.0015967038925737143, 0.004170023836195469, -0.012751968577504158, -0.023409899324178696, -0.0020525180734694004, -0.007105287164449692, -0.0006449095089919865, -0.017445500940084457, 0.0044263629242777824, -0.02586497738957405, -0.024781854823231697, 0.010766242630779743, -0.004162802826613188, 0.01660788618028164, -0.009119896218180656, -0.018109817057847977], "9b16e0e5-8641-4e16-a4f7-67130cdd3a59": [-0.022727640345692635, -0.010843181051313877, -0.014230807311832905, 0.006199078168720007, -0.014397411607205868, 0.017882224172353745, -0.027017707005143166, -0.008330228738486767, -0.020575664937496185, -0.022283360362052917, 0.023782802745699883, -0.01370322611182928, 0.0005397293716669083, -0.006900205742567778, -0.02122819982469082, -0.0017536866944283247, 0.019159525632858276, -0.018007177859544754, 0.001043881755322218, -0.0008121972787193954, -0.025185057893395424, 0.01180809922516346, -0.014980527572333813, 0.01453624852001667, -0.014494597911834717, -0.01920117624104023, 0.006226846016943455, -0.027378683909773827, -0.010607157833874226, -0.0069245025515556335, 0.007004333660006523, 0.010808471590280533, -0.032237984240055084, 0.015605295076966286, -0.008871693164110184, -0.01778503693640232, 0.0065079908818006516, -0.012661946937441826, 0.027684126049280167, -0.025990312919020653, 0.03232128545641899, -0.0003865746548399329, 0.015369271859526634, -0.03418170288205147, -0.01749347895383835, 0.04123463109135628, 0.025754289701581, -0.015327620320022106, 0.002823600312694907, 0.0222694780677557, 0.003977684304118156, 0.01088483165949583, -0.02907249704003334, 0.011926110833883286, 0.019700990989804268, -0.013772644102573395, 0.019173409789800644, 0.008906402625143528, -0.013272830285131931, 0.009267379529774189, 0.0026066673453897238, -0.024379802867770195, 0.007913717068731785, 0.0024365917779505253, -0.0029069026932120323, 0.0008195730042643845, 6.280211528064683e-05, 0.012120482511818409, -0.01386288832873106, -0.027142660692334175, 0.019617687910795212, 0.004463613964617252, -0.00030696025351062417, -0.0031359838321805, 0.013383900746703148, -0.02569875493645668, -0.03906877338886261, -0.018021060153841972, 0.03648640215396881, 0.008288577198982239, 0.020075850188732147, -0.015716364607214928, -0.03329314664006233, 0.028378311544656754, 0.01796552538871765, 0.013814295642077923, 0.016479969024658203, 0.0009336797520518303, -0.02607361599802971, -0.003779841121286154, 0.030683008953928947, 0.0011280517792329192, 0.021117128431797028, 0.005973468068987131, 0.0003360292757861316, 0.013842063024640083, -0.004567741882055998, 0.021700244396924973, 0.00898970477283001, -0.017757270485162735, -0.003995038568973541, -0.004421962890774012, -0.03079407848417759, 0.005102265160530806, -0.03798584267497063, 0.008455181494355202, 0.018687479197978973, 0.021825198084115982, 0.0024105599150061607, 0.0016851357650011778, -0.025365546345710754, 0.023838337510824203, -0.015910737216472626, -0.019228944554924965, -0.0023185801692306995, -0.006365682929754257, -0.003014501417055726, -0.0226998720318079, -0.04117909446358681, -0.033404216170310974, -0.004911364056169987, 0.032598961144685745, 0.0026448476128280163, -0.02742033451795578, 0.0053487010300159454, 0.004758642986416817, 0.0005575179238803685, -0.02238054759800434, 0.01364769134670496, -0.022311128675937653, 0.019340014085173607, -0.0010343367466703057, 0.015799665823578835, 0.000130919084767811, -0.0015254730824381113, 0.039401981979608536, -0.022116756066679955, -0.011412412859499454, -0.029294636100530624, -0.002681292360648513, 0.02361619845032692, 0.02957231178879738, 0.0006855083629488945, 0.011759505607187748, -0.025407196953892708, 0.014994410797953606, 0.016396665945649147, -0.0011072262423112988, 0.005716619081795216, -0.00011660150630632415, 0.007663810160011053, 0.0041061085648834705, -0.011245808564126492, -0.019714873284101486, 0.009545053355395794, 0.02318580262362957, 0.0008087263558991253, 0.009919913485646248, -0.02342182584106922, -0.008864751085639, 0.0034240710083395243, 0.029905520379543304, 0.0056853811256587505, 0.003845788771286607, 0.013918423093855381, 0.030821844935417175, -0.0014942347770556808, 0.006691950373351574, -0.004081811755895615, -0.0021728011779487133, -0.01466120220720768, 0.0044323755428195, -0.0119955288246274, -0.00016248284373432398, 0.031738169491291046, 0.035903286188840866, 0.004685753490775824, -0.008684263564646244, -0.023713383823633194, -0.015744131058454514, -0.018048828467726707, 0.004317834973335266, 0.021728012710809708, 0.03171040490269661, -0.024324266240000725, 0.014071144163608551, -0.006938386242836714, -0.025670986622571945, 0.005438944790512323, -0.0038423179648816586, 0.01900680549442768, 0.03409840166568756, -0.01668822392821312, -0.01346720289438963, -0.6015535593032837, -0.033348679542541504, 0.003981154877692461, 0.008767565712332726, 0.0015341504476964474, 0.0006121850456111133, 0.0017996764509007335, 0.007997019216418266, -0.025726521387696266, 0.03820798173546791, -0.011238866485655308, 0.008531542494893074, 0.003280027536675334, -0.02079780399799347, 0.017201920971274376, -0.007413903251290321, 0.0015827433671802282, 0.008094205521047115, -0.005855456460267305, 0.0160079225897789, -0.01575801521539688, 0.011447122320532799, -0.0036410039756447077, -0.019187292084097862, -0.0054215905256569386, -0.014175272546708584, 0.045233141630887985, -0.0037520737387239933, 0.011516541242599487, 0.030155427753925323, -0.025795940309762955, -0.001112432568334043, 0.04270630329847336, -0.001048220437951386, 0.051619648933410645, 0.010482204146683216, -0.023463476449251175, 0.007295891642570496, 0.009184076450765133, 0.0315437987446785, -0.016646573320031166, -0.003214079886674881, 0.00917019322514534, -0.005657613277435303, 0.010260065086185932, -0.018992921337485313, 0.026240220293402672, 0.005463241599500179, -0.006029002834111452, -0.019645456224679947, -9.067801147466525e-05, 0.01153042446821928, -0.008927227929234505, 0.007754054386168718, 0.017590666189789772, -0.002924257190898061, 0.02060343138873577, 0.013800411485135555, 0.007282007951289415, -0.004449730273336172, -0.004946073051542044, -0.00719176372513175, -0.01767396740615368, -0.014730621129274368, -0.026573428884148598, 0.03134942799806595, -0.0070355720818042755, 0.0044323755428195, 0.003557701827958226, -0.005574311129748821, 0.0016807971987873316, 0.019340014085173607, 0.011537366546690464, -0.02121431566774845, 0.004560800269246101, 0.0005388616700656712, 0.012245436199009418, 0.005650671664625406, -0.005282753147184849, 0.017035316675901413, 0.013133993372321129, -0.011523482389748096, -0.022116756066679955, -0.020756153389811516, 0.01441129483282566, -0.00022777968843001872, 0.0028062458150088787, 0.0010239238617941737, -0.0026569957844913006, -0.01061409991234541, 0.029405705630779266, -0.005282753147184849, -0.011634552851319313, -0.011933051981031895, -0.0015506373019888997, 0.001704225898720324, -0.009239612147212029, -0.005480596330016851, 0.004710049834102392, -0.008809216320514679, -0.018354270607233047, -0.015313737094402313, -0.005674968007951975, 0.010343367233872414, 0.04029053822159767, 0.032182447612285614, -0.02686498686671257, -0.021491989493370056, 0.046704813838005066, -0.019548268988728523, -0.008073380216956139, -0.012800784781575203, 0.0015454309759661555, 0.002955495612695813, -0.0009935533162206411, -0.02282482571899891, 0.031988076865673065, 0.011690087616443634, 0.002020080341026187, 0.02085333876311779, 0.016729876399040222, -0.007983135990798473, 0.005071026738733053, 0.002355024917051196, 0.0005948303733021021, 0.01717415452003479, 0.012037180364131927, -0.01771561987698078, 0.022311128675937653, -0.01051691360771656, -0.0026604668237268925, -0.03368189185857773, 0.022366663441061974, -0.02036740817129612, 0.014758388511836529, -0.022047337144613266, 0.02600419707596302, 0.001108093885704875, 0.03568114712834358, -0.028794823214411736, -0.03704174980521202, 0.0057756248861551285, -0.001118506770581007, -0.023699499666690826, -0.02004808373749256, -0.026476243510842323, -0.03887439891695976, 0.0005501421983353794, -0.00839964672923088, 0.02108936198055744, -0.00816362351179123, 0.0018621531780809164, 0.006195607595145702, 0.009232670068740845, -0.020714500918984413, 0.0015436954563483596, 0.009191018529236317, -0.04495546594262123, 0.01168314553797245, -0.024935150519013405, -0.014112795703113079, 0.03146049752831459, -0.02018691971898079, -0.00013580007362179458, 0.009656122885644436, 0.0025841062888503075, -0.00027225096710026264, 0.004453201312571764, -0.003557701827958226, -0.026281870901584625, -0.012030238285660744, -0.008135856129229069, -0.01625782996416092, -0.008753681555390358, 0.0064316303469240665, 0.015299852937459946, -0.017951643094420433, -0.0022665164433419704, 7.310643559321761e-05, 0.0016894744476303458, 0.006466339807957411, 0.03165486827492714, -0.009315972216427326, 0.007642984855920076, 0.01877078227698803, -0.0008104618173092604, 0.02417154610157013, 0.03445937857031822, -0.030932914465665817, 0.03917984291911125, -0.020506246015429497, 0.021561408415436745, -0.020686734467744827, 0.009059123694896698, -0.03673630580306053, 0.045732952654361725, -0.02674003317952156, -0.004258829168975353, -0.006955740973353386, 0.013411668129265308, 0.020034199580550194, 0.021422570571303368, 0.015688596293330193, 0.0016174527117982507, -0.014591783285140991, -0.028045102953910828, 0.012439807876944542, -0.02968338131904602, 0.04856523126363754, 0.01140547078102827, 0.0060047064907848835, 0.009149367921054363, -0.014897225424647331, 0.025087870657444, 0.010933425277471542, 0.013578272424638271, -0.02164470963180065, 0.011592901311814785, -0.017812805250287056, -0.007007804699242115, -0.013446377590298653, -0.02151975780725479, 0.04126239940524101, -0.007559682242572308, -0.016285596415400505, -0.002943347441032529, 0.007032101042568684, 0.025101754814386368, 0.007282007951289415, 0.002757652662694454, 0.01450848113745451, 0.02318580262362957, 0.009926855564117432, 0.020284106954932213, 0.01846534013748169, -0.023824453353881836, 0.029849985614418983, -0.012856319546699524, 0.029766682535409927, -0.0041061085648834705, -0.0016617070650681853, 0.007469438016414642, 0.04048490896821022, -0.02643459104001522, -0.014466830529272556, 0.0024678301997482777, 0.025740405544638634, 0.023755034431815147, -0.006001235451549292, 0.005123090464621782, -0.005876282230019569, 0.004113050177693367, -0.024060476571321487, -0.012196842581033707, 0.041928816586732864, -0.03793030604720116, 0.00288260611705482, 0.018798548728227615, 0.036042120307683945, 0.00628585135564208, 0.008017844520509243, 0.0010074370075017214, 0.015174899250268936, -0.007170938421040773, 0.021616943180561066, 0.0033893617801368237, -0.03884663060307503, 0.0009024414466693997, -0.0004590302996803075, -0.009107716381549835, 0.013973957858979702, -0.00536605529487133, -0.010905657894909382, -0.021603059023618698, 0.0023827925324440002, -0.0005969997146166861, 0.03176593780517578, -0.001114168087951839, 0.020353524014353752, 0.007115403655916452, -0.034126169979572296, -0.034625984728336334, 0.013120110146701336, 0.01321729552000761, 0.021297616884112358, -0.005831160116940737, -0.023088617250323296, 0.018368152901530266, -0.011440180242061615, 0.012661946937441826, -0.007434729021042585, 0.010329483076930046, -0.01502217911183834, 0.0007662074640393257, -0.005067555699497461, 0.019340014085173607, 0.003929091151803732, -0.006112304981797934, 0.006348328199237585, 0.0032366409432142973, 0.011384645476937294, 0.0045365034602582455, -0.011766447685658932, 0.030016589909791946, 0.028378311544656754, -0.016202295199036598, -0.03193254396319389, -0.0166326891630888, -0.020075850188732147, -0.017368527129292488, 0.038985468447208405, 0.008809216320514679, -0.022533267736434937, -0.0010638396488502622, 0.018257083371281624, 0.01631336472928524, 0.007941484451293945, -0.014300225302577019, 0.012099657207727432, -0.018534759059548378, 0.006938386242836714, -0.010655750520527363, -0.006313619203865528, 0.019895361736416817, 0.0324878916144371, 0.0467325821518898, 0.024018825963139534, 0.008017844520509243, -0.018229316920042038, 0.002858309540897608, -0.03415393829345703, -0.03393179550766945, 0.006615589838474989, -0.009697774425148964, -0.020034199580550194, -0.01463343482464552, 0.015966271981596947, 0.007608275394886732, 0.012391215190291405, -0.00956587865948677, 0.03637533262372017, -0.0026535249780863523, 0.020839454606175423, -0.007927601225674152, 0.022588802501559258, 0.005313991568982601, 0.007809589151293039, 0.009517285972833633, 0.012870202772319317, -0.000293944263830781, 0.03618095815181732, 0.019478850066661835, 0.006032473873347044, -0.006251142360270023, -0.0032557309605181217, 0.02018691971898079, 0.017188038676977158, 0.02288036048412323, -0.007032101042568684, 0.049592625349760056, 0.009107716381549835, -0.01766008511185646, 0.02557380124926567, 0.03637533262372017, -0.005733973812311888, 0.010433611460030079, 0.008607902564108372, 0.009829669259488583, 0.015341504476964474, -0.02564322017133236, -0.00981578603386879, 0.018604176118969917, 0.010267006233334541, 0.0024608883541077375, 0.0259486623108387, 0.000591793330386281, -0.017035316675901413, -0.007497205398976803, 0.024213196709752083, 0.011454064399003983, -0.01895126886665821, -0.02024245448410511, -0.031377192586660385, -0.022047337144613266, -0.03104398399591446, -0.031988076865673065, 0.017771154642105103, -0.009024414233863354, -0.025532150641083717, -0.008788391016423702, -0.023907756432890892, -0.009836611337959766, -0.009885204024612904, 0.03323761001229286, 0.00624420028179884, -0.0069592115469276905, -0.02471301145851612, 0.042817372828722, 0.013918423093855381, 0.0040089222602546215, 0.008219159208238125, -0.01650773547589779, -0.009600588120520115, 0.01950661838054657, 0.002221394330263138, -0.03043310157954693, 0.015285969711840153, -0.008809216320514679, -0.003811079543083906, -0.008635669946670532, -0.004168584942817688, 0.006761368829756975, -0.012918796390295029, 0.0052168057300150394, -0.008559309877455235, 0.01067657582461834, -0.009184076450765133, -0.004408079199492931, 0.02882258966565132, 0.0019437199225649238, 0.029211334884166718, 0.023602314293384552, -0.0055881948210299015, 0.0032973820343613625, -0.01018370408564806, -0.015147131867706776, -0.017812805250287056, 0.017451828345656395, -0.006934915203601122, 0.016979781910777092, 0.007028630468994379, 0.021450338885188103, 0.0009085155325010419, -0.00104301399551332, -0.0044046081602573395, 0.006948798894882202, -0.0024365917779505253, 0.0012504019541665912, -0.005501421634107828, 0.00953811127692461, 0.02060343138873577, 0.005723561160266399, 0.004335189703851938, 0.00027745735133066773, -0.000922399281989783, -0.007636042777448893, 0.019784292206168175, -0.01282161008566618, -0.007719344925135374, 0.02551826648414135, -0.009246553294360638, -0.04031830653548241, 0.010135111398994923, -0.004550387151539326, 0.01699366606771946, 0.01033642515540123, 0.015313737094402313, -0.04445565119385719, -0.050758857280015945, 0.0063795666210353374, -0.01957603730261326, 0.007767938077449799, -0.016285596415400505, -0.03384849429130554, -0.02232501283288002, 0.00040024143527261913, -0.005501421634107828, -0.021936267614364624, -0.004401137586683035, -0.026115266606211662, -0.011259691789746284, -0.014425178989768028, 0.005449357908219099, 0.044983234256505966, 0.0021901559084653854, -0.00018428461044095457, -0.008607902564108372, -0.019964780658483505, -0.025421081110835075, -0.02662896364927292, -0.026642847806215286, -0.014494597911834717, 0.05195285752415657, 0.020409060642123222, 0.0272398479282856, -0.00929514691233635, 0.009892146103084087, -0.0027958329301327467, -0.0057756248861551285, -0.00981578603386879, -0.015799665823578835, -0.03479258716106415, -0.0101559367030859, 0.010058751329779625, 0.008045611903071404, 0.00969083234667778, 0.024254849180579185, -8.069908653851599e-05, -0.009621414355933666, 0.022588802501559258, -0.012273203581571579, -0.010107344016432762, -0.03268226236104965, -0.05242490395903587, -0.023657849058508873, 0.0027663300279527903, -0.02496291883289814, -0.009947680868208408, -0.03390403091907501, -0.019617687910795212, 0.02128373458981514, 0.007212589494884014, 0.005577782168984413, -0.007629100698977709, 0.028600450605154037, -0.002802774775773287, 0.03537570312619209, -0.00143436121288687, 0.009572820737957954, 0.0021467693150043488, -0.010600215755403042, -0.018326502293348312, 0.017326874658465385, 0.006612118799239397, 0.014550132676959038, 0.012689714320003986, -0.0022647809237241745, 0.00549100898206234, -0.011974703520536423, 0.012377331033349037, -0.0172991082072258, -0.019242828711867332, 0.017576782032847404, -0.025920893996953964, -0.024574173614382744, -0.02151975780725479, -0.008427414111793041, 0.006646828260272741, 0.0004060986393596977, -0.003613236593082547, 0.009399274364113808, 0.019950896501541138, -0.0363197959959507, -0.013578272424638271, -0.0020738798193633556, -0.007934542372822762, 0.025129523128271103, 0.00818444974720478, 0.022491617128252983, 0.011197215877473354, 0.008982762694358826, 0.0008746740058995783, 0.008135856129229069, 0.003661829512566328, -0.003661829512566328, 0.010475262068212032, 0.01784057356417179, -0.023477360606193542, 0.005529189016669989, 0.0047447592951357365, 0.014744504354894161, -0.024824080988764763, -0.020700618624687195, 0.026448475196957588, 0.04154007136821747, 0.00024773753830231726, -0.00720564741641283, -0.014758388511836529, -0.02532389387488365, -0.011579017154872417, 0.0055326600559055805, 0.003720835316926241, 0.007386135868728161, -0.030072124674916267, -0.025559917092323303, 0.006896735168993473, -0.01186363399028778, 0.023782802745699883, 0.008135856129229069, -0.01810436323285103, -0.013272830285131931, 0.026878871023654938, -0.013120110146701336, -0.01441129483282566, -0.014001725241541862, 0.0019281008280813694, -0.022852594032883644, 0.022172290831804276, -0.010683517903089523, -0.008580135181546211, -0.01183586660772562, 0.0022127169650048018, 0.0039186784997582436, 0.02619856782257557, 0.006081066560000181, -0.007122345268726349, 0.034737054258584976, -0.03126612305641174, 0.017882224172353745, -0.004269242286682129, 0.01649385318160057, -0.009468693286180496, -0.02067285031080246, 0.002886077156290412, 0.021922385320067406, 0.023532895371317863, 0.007358368486166, -0.020645081996917725, -0.014494597911834717, -0.01871524751186371, 0.006216432899236679, -0.021728012710809708, -0.004769055638462305, -0.01957603730261326, -0.005876282230019569, 0.004265771247446537, -0.004727404564619064, 0.017896108329296112, 0.005897107534110546, 0.024032708257436752, 0.006816903594881296, 0.026281870901584625, -0.028128404170274734, 0.0018500048900023103, -0.007490263786166906, -2.0730663891299628e-05, -0.03568114712834358, 0.00042952739750035107, -0.0010855329455807805, -0.008427414111793041, 0.012828552164137363, 0.01180809922516346, -0.06436489522457123, -0.004637160338461399, 0.024629708379507065, -0.004335189703851938, -0.011120854876935482, 0.021575292572379112, 0.03581998124718666, 0.004918305668979883, -0.005834630690515041, -0.005688851699233055, -0.017021434381604195, 0.033570822328329086, -0.014286342076957226, 0.008462123572826385, 0.032793331891298294, -0.019548268988728523, 0.02607361599802971, -0.013654632493853569, 0.02183908224105835, -0.011391587555408478, -0.020936641842126846, -0.0453997440636158, 0.026115266606211662, 0.019714873284101486, -0.02067285031080246, -0.025601569563150406, -0.023046964779496193, -0.023519011214375496, -0.016021806746721268, 0.021866850554943085, 0.00870508886873722, -0.001973222941160202, -0.004345602355897427, 0.012773017399013042, 0.00812891498208046, 0.028489381074905396, -0.008434356190264225, -0.031738169491291046, -0.025740405544638634, -0.01827096752822399, -0.013390841893851757, -0.03268226236104965, 0.002769801067188382, 0.01448071375489235, 0.0018690950237214565, -0.04029053822159767, -0.028767054900527, -0.019367780536413193, -0.011981645599007607, -0.031682636588811874, -0.016674339771270752, 0.013599097728729248, 0.06969624757766724, 0.03048863634467125, 0.0015332826878875494, 0.015980154275894165, -0.019673222675919533, 0.017646200954914093, -0.022158408537507057, 0.009496460668742657, 0.03273779898881912, -0.012307913042604923, 0.02165859378874302, -0.022130640223622322, -0.03484812378883362, 0.023338522762060165, 0.02196403592824936, 0.020284106954932213, 0.028739288449287415, 0.016660457476973534, -0.027920149266719818, 0.0016252623172476888, -0.004835003521293402, 0.008566251955926418, -0.0006338783423416317, 0.0025945191737264395, 0.006126188673079014, -0.02778131142258644, -0.00971859972923994, 0.019589921459555626, 0.019492734223604202, -0.017090851441025734, 0.0070841652341187, 0.026156917214393616, -0.004803765099495649, 0.0023272575344890356, -0.026698382571339607, -0.025060104206204414, -0.000527581141795963, -0.01927059516310692, 0.044816628098487854, 0.009697774425148964, 0.002210981445387006, 0.00932291429489851, -0.008809216320514679, -0.0013580007944256067, 0.01294656377285719, 0.01828485168516636, -0.0021380919497460127, -0.03729165717959404, 0.03748602792620659, -0.006650299299508333, -0.013265889137983322, -0.003946445882320404, 0.005862398073077202, -0.013946190476417542, -0.004803765099495649, -0.011100029572844505, -0.03159933164715767, -0.034514911472797394, -0.0035091086756438017, 0.014300225302577019, -0.052174996584653854, -0.015216550789773464, 0.013765702955424786, -0.006712775677442551, 0.02268598973751068, 0.0007575301569886506, -0.032182447612285614, -0.009517285972833633, -0.0270454753190279, 0.0065114619210362434, 0.0028218647930771112, -0.018354270607233047, 0.0017476124921813607, 0.013279772363603115, -0.017923874780535698, 7.283526792889461e-05, 0.19426092505455017, -0.02796179987490177, -0.0025858418084681034, 0.013272830285131931, -0.019090106710791588, 0.0034865476191043854, -0.01895126886665821, -0.0063032060861587524, -0.004807236138731241, 0.033459752798080444, 0.015896853059530258, 0.009600588120520115, 0.007927601225674152, -0.007705461233854294, -0.020284106954932213, 0.01779892109334469, -0.04009616747498512, -0.027614707127213478, -0.03251565992832184, -0.02679556794464588, -0.01999254897236824, -0.030266497284173965, 0.005018962547183037, -0.005529189016669989, 0.035292401909828186, 0.007601333316415548, 0.01699366606771946, -0.016674339771270752, 0.04215095564723015, 0.016591038554906845, -0.03309877589344978, 0.003203667001798749, -0.013800411485135555, -9.214230522047728e-05, -0.003623649477958679, -0.02164470963180065, 0.03668077290058136, -0.019423315301537514, 0.03448714688420296, -0.01002404186874628, 0.023824453353881836, -0.008024786598980427, 0.01632724702358246, -0.04209542274475098, -0.016757642850279808, 0.015272085554897785, 0.007087636273354292, -0.03276556357741356, 0.0016070399433374405, 0.0006703230901621282, -0.015535876154899597, 0.0239910576492548, 0.026281870901584625, 0.012814668007194996, 0.03134942799806595, -0.015272085554897785, -0.010017099790275097, 0.0006373492651619017, -0.03018319420516491, 0.0006334444624371827, -0.03012765944004059, 0.006688479334115982, -0.008816158398985863, -0.02060343138873577, -0.014883341267704964, 0.0006156559684313834, 0.007122345268726349, -0.026712266728281975, -0.009447867050766945, -0.004321306012570858, 0.016355015337467194, -0.014425178989768028, -0.012620296329259872, 0.020145269110798836, -0.02605973184108734, -0.012085773050785065, 0.010315599851310253, 0.03942974656820297, 0.01202329620718956, 0.026545660570263863, 0.008684263564646244, 0.014716736972332, 0.007990077137947083, -0.011891401372849941, -0.01724357344210148, -0.04129016399383545, 0.030877379700541496, 0.002414030721411109, 0.005723561160266399, -0.0016278654802590609, -0.013911481946706772, 0.0021936269477009773, -0.0004538239154499024, 0.013404726050794125, -0.023269105702638626, -0.0027715363539755344, 0.0029207863844931126, -0.0018864496378228068, 0.006101892329752445, -0.0020912345498800278, -0.03973519057035446, 0.05986657366156578, 0.01742406189441681, -0.019825944676995277, -0.03262672945857048, -0.013960074633359909, 0.006768310442566872, 0.011946936137974262, 0.000920663820579648, 0.0029034316539764404, -0.009586704894900322, -0.012127424590289593, 0.0003815852105617523, -0.005730503238737583, 0.011044494807720184, 0.023324640467762947, 0.007358368486166, 0.000978801865130663, 0.0027177371084690094, -0.011454064399003983, 0.02164470963180065, -0.005841572768986225, -0.00020955731451977044, 0.010329483076930046, -0.007309775333851576, -0.030683008953928947, 0.004258829168975353, -0.034737054258584976, -0.005761741194874048, -0.024546407163143158, 0.025795940309762955, 0.0014777478063479066, 0.018007177859544754, -0.02926686964929104, 0.01046137884259224, 0.00407834118232131, 0.01098201796412468, -0.011960819363594055, 0.004123463295400143, 0.016424434259533882, -0.008038670755922794, 0.005435474216938019, 0.010558564215898514, 0.0037763703148812056, 0.009822728112339973, -0.012530052103102207, 0.02178354747593403, -0.009128541685640812, -0.0171047355979681, -0.02239443175494671, -0.00010987657879013568, -0.02429649978876114, -0.013286714442074299, 0.008691204711794853, 0.02000643126666546, -0.003384155221283436, -0.010919541120529175, -0.052535973489284515, -0.013772644102573395, -0.001179247978143394, -0.03126612305641174, -0.0004262734146323055, 0.030627474188804626, -0.0033633296843618155, -0.012391215190291405, 0.00010613448830554262, -0.17726726830005646, 0.01570248045027256, -0.0014760124031454325, -0.035459004342556, 0.01404337678104639, 0.018854083493351936, 0.0068481420166790485, 0.006490636151283979, 0.008600960485637188, 0.015258201397955418, 0.021006058901548386, 0.002545926021412015, -0.0042171780951321125, 0.013293656520545483, 0.012661946937441826, 0.007212589494884014, -0.009628355503082275, -0.0002705155056901276, 0.026392940431833267, 0.021255966275930405, 0.02496291883289814, -0.04298397898674011, 0.005657613277435303, 0.007413903251290321, -0.022727640345692635, 0.017687851563096046, -0.04942602291703224, 0.008961937390267849, 0.00012799048272427171, 0.004290067590773106, -0.020645081996917725, 0.02000643126666546, -0.00020272392430342734, 0.001248666550964117, 0.002112060086801648, -0.006372625008225441, -0.014980527572333813, 0.003804137697443366, -0.012141307815909386, 0.03790253773331642, 0.007559682242572308, 0.031238356605172157, 0.007101519964635372, 0.01147488970309496, -0.015494224615395069, 0.04623276740312576, 0.06042192503809929, 0.012307913042604923, 0.01785445585846901, -0.020436827093362808, -0.010371134616434574, -0.022769290953874588, -0.0002323352819075808, 0.006292793434113264, 0.01168314553797245, 0.03484812378883362, 0.025601569563150406, -0.003724306356161833, -0.0037659574300050735, -0.025740405544638634, 0.0289614275097847, -0.014758388511836529, -0.016216177493333817, -0.018548641353845596, -0.007219531573355198, -0.006938386242836714, -0.024699127301573753, 0.004196352791041136, -0.027434218674898148, 0.02049236185848713, -0.009440925903618336, 0.011273575946688652, -0.006601706147193909, -0.015452574007213116, 0.024393685162067413, -0.0012130895629525185, -0.039651889353990555, 0.023158034309744835, 0.0462605357170105, -0.014369644224643707, 0.005022433586418629, 0.05348006635904312, -0.013439435511827469, 0.011988586746156216, -0.005633316934108734, -0.0032557309605181217, 0.01346720289438963, -0.0018916560802608728, 0.02692052163183689, -0.015591410920023918, 0.0138351209461689, 0.0018430630443617702, 0.020575664937496185, -0.031682636588811874, 0.0019090106943622231, 0.00037464333581738174, 0.010718227364122868, 0.0004525223048403859, 0.015216550789773464, -0.015466457232832909, -0.018423689529299736, -0.01018370408564806, -0.015341504476964474, 0.026295755058526993, 0.04245639964938164, 0.01368239987641573, -0.013724051415920258, 0.0005666291108354926, 0.03534793481230736, -0.011821982450783253, -0.003942974843084812, 0.01668822392821312, -0.004033219069242477, -0.002481713891029358, -0.010086518712341785, 0.017215805128216743, 0.002618815517053008, -0.01419609785079956, 0.008725914172828197, -0.0009007059270516038, 0.04923165217041969, 0.015994038432836533, -0.007636042777448893, 0.020714500918984413, -0.027684126049280167, -0.014605667442083359, -0.0839131698012352, -0.023296872153878212, 0.0005471050972118974, 0.016230061650276184, -0.009420099668204784, 0.0032158151734620333, -0.0027993039693683386, 0.021603059023618698, 0.011717854999005795, 0.021422570571303368, -0.004727404564619064, -0.004977311473339796, -0.009746367111802101, -0.0010195852955803275, 0.016341131180524826, -0.01257170271128416, -0.005598607938736677, -0.009024414233863354, -0.007663810160011053, 0.03148826211690903, 0.004543445538729429, -0.03595881909132004, -0.007733228616416454, -0.0019975192844867706, -0.026976056396961212, -0.011488773860037327, -0.04556635022163391, 0.013585214503109455, 0.008663437329232693, 0.002943347441032529, 0.032349053770303726, -0.01686871238052845, 0.02680945210158825, -0.019825944676995277, 0.007157054729759693, 0.005747857503592968, -0.03673630580306053, -0.02133926935493946, -0.0022023040801286697, -0.03656970337033272, 0.035486772656440735, 0.019228944554924965, 0.013439435511827469, -0.04012393206357956, 0.002802774775773287, -0.018382037058472633, -0.007122345268726349, 0.03323761001229286, -0.010523855686187744, -0.011051436886191368, -0.007830414921045303, 0.019895361736416817, -0.014716736972332, -0.028544915840029716, 0.03298770636320114, -0.0050606136210262775, 0.007663810160011053, 0.023380175232887268, -0.015799665823578835, -0.03562561050057411, -0.003267879132181406, -0.02342182584106922, -0.01693813130259514, 0.005303578916937113, 0.008038670755922794, 0.017618432641029358, -0.017271339893341064, -0.016952015459537506, 0.026448475196957588, -0.004935660399496555, -0.008108088746666908, 0.01913175731897354, -0.011738680303096771, -0.01577189937233925, -0.006254613399505615, 0.0062476713210344315, -0.013064575381577015, -0.018812432885169983, -0.00731671741232276, 0.004873183555901051, -0.004890538286417723, -0.03715281933546066, -0.012731365859508514, 0.01588296890258789, 0.014827806502580643, 0.007927601225674152, 0.0034934894647449255, -0.00023276914726011455, -0.010877889581024647, -0.029433473944664, 0.008392705582082272, 0.00431089336052537, 0.018687479197978973, 0.0033598588779568672, -0.03482035547494888, 0.017396293580532074, 0.01975652575492859, 0.0008022183319553733, -0.0013623394770547748, -0.0026587313041090965, -0.03793030604720116, 0.0009458280401304364, -0.07813754677772522, 0.037624865770339966, 0.012897970154881477, 0.0044809686951339245, 6.665267574135214e-05, -0.0016278654802590609, 0.003738190047442913, 0.0021085890475660563, -0.0041061085648834705, 0.03626426309347153, -0.018909618258476257, 0.02122819982469082, -0.02526835910975933, -0.0027888910844922066, 0.0014855574117973447, -0.027517521753907204, 0.0239910576492548, 0.0025927836541086435, 0.024379802867770195, -0.03415393829345703, 0.0024435336235910654, -0.006858554668724537, 0.021061593666672707, 0.01889573410153389, 0.004973840434104204, 0.017507363110780716, -0.019770408049225807, -0.004991195164620876, -0.033154308795928955, -0.02318580262362957, 0.023532895371317863, -0.024254849180579185, 0.0185902938246727, 0.03557007387280464, -0.014119736850261688, -0.03354305401444435, -0.0009640504140406847, 0.018312618136405945, 0.006466339807957411, -0.0028878124430775642, -0.005407706834375858, -0.003207138041034341, 0.000328436610288918, -0.004619806073606014, -0.009260437451303005, -0.020103618502616882, -0.022005686536431313, -0.007656868547201157, 0.001954132691025734, 0.0011610256042331457, 0.016965897753834724, 0.021075477823615074, -0.055118344724178314, -0.01466120220720768, -0.003790254006162286, -0.00953811127692461, 0.009239612147212029, 0.00575132854282856, 0.009468693286180496, 0.006702363025397062, 0.048481930047273636, -0.003196725156158209, 0.04312281683087349, -0.015855202451348305, 0.012134365737438202, -0.004605922382324934, -0.019548268988728523, -0.018243201076984406, 0.01828485168516636, -0.016146760433912277, -0.009336797520518303, -0.01552199199795723, -0.007455554325133562, 0.02268598973751068, 0.009947680868208408, 0.00665724091231823, -0.025809824466705322, 0.008517658337950706, -0.006535758264362812, 0.02176966331899166, 0.022477732971310616, -0.02178354747593403, 0.0021485048346221447, 0.010739052668213844, 0.016146760433912277, 0.01613287627696991, -0.019478850066661835, 0.00013514928286895156, 0.0024487401824444532, 0.0021797430235892534, -0.02453252300620079, -0.0004902686341665685, -0.0018569467356428504, -0.016396665945649147, 0.02912803180515766, 0.008871693164110184, -0.015327620320022106, 0.01704920083284378, 0.03543123975396156, 0.008038670755922794, 0.03221021592617035, -0.0004972105380147696, -0.014800039120018482, -0.023352406919002533, -0.01749347895383835, -0.02024245448410511, -0.01724357344210148, -0.030932914465665817, 0.017743386328220367, -0.006088008638471365, 0.011273575946688652, 0.0021953622344881296, -0.0046683987602591515, 0.03157156705856323, -0.005362584721297026, -0.012800784781575203, 0.006265026051551104, -0.023338522762060165, -0.030155427753925323, 0.04092919081449509, 0.018326502293348312, 0.01184280775487423, 0.01618841104209423, -0.0016599715454503894, 0.04054044559597969, -0.02176966331899166, 0.026448475196957588, -0.012252377346158028, 0.024032708257436752, 0.003014501417055726, -0.018423689529299736, 0.003790254006162286, -0.04267853870987892, -0.016271712258458138, -0.023602314293384552, 0.008885577321052551, -0.009954622946679592, 0.02121431566774845, 0.007282007951289415, 0.09452032297849655, 0.011933051981031895, -0.01661880500614643, -0.011676203459501266, -0.007170938421040773, 0.013737935572862625, 0.035236865282058716, 0.030766310170292854, -0.008239984512329102, -0.023074733093380928, 0.013800411485135555, -0.012842435389757156, -0.0013588685542345047, -0.019173409789800644, -0.01636889949440956, 0.004019335377961397, -0.0004863638605456799, 0.009697774425148964, -0.004769055638462305, -0.028905892744660378, 0.00341192283667624, -0.011690087616443634, 0.020089734345674515, 0.0020009903237223625, -0.00484541617333889, -0.020436827093362808, 0.013474144972860813, -0.004047102760523558, -0.014994410797953606, -0.01945108361542225, 0.00536605529487133, 0.0040089222602546215, -0.015424806624650955, -0.011023668572306633, -0.01030865777283907, -0.02526835910975933, -0.018687479197978973, -0.014772271737456322, 0.003588940016925335, -0.013772644102573395, -0.002547661541029811, -0.00261534471064806, -0.027323149144649506, -0.016757642850279808, 0.027073241770267487, -0.007858182303607464, 0.0025268360041081905, 0.0006178252515383065, -0.03207137808203697], "7f0dd2c8-c705-447e-b1f0-55556cf61ad4": [-0.018294816836714745, -0.009069768711924553, -0.029249122366309166, 0.0021968602668493986, -0.0008615397964604199, 0.029813775792717934, 0.0026662296149879694, 0.019565289840102196, -0.019057100638747215, -0.0030473717488348484, 0.024534253403544426, -0.006302959751337767, -0.0031497152522206306, 0.010410823859274387, -0.015076284296810627, -0.00027019617846235633, -0.0007124356343410909, -0.0008827143465168774, 0.001683377311564982, -0.01826658472418785, -0.03692842647433281, 0.010601394809782505, -0.00786987692117691, 0.005110126454383135, -0.03046312928199768, -0.0006039160070940852, 0.012549454346299171, -0.02087811380624771, -0.011991857551038265, 0.016516154631972313, -0.013579949736595154, 0.00127841392531991, -0.0405704528093338, -0.00296620256267488, -0.023235546424984932, -0.010629627853631973, 0.004806624259799719, -0.01641733944416046, 0.03258058428764343, -0.01674201712012291, 0.03037843108177185, -0.005964166950434446, 0.008695684373378754, -0.020482854917645454, -0.02329201251268387, 0.04559588059782982, 0.021527467295527458, -0.024449555203318596, -0.001997466664761305, 0.019664105027914047, 0.005244231782853603, 0.018111305311322212, -0.03212886303663254, -0.002064519328996539, 0.04923790320754051, -0.016120895743370056, 0.017363136634230614, 0.004390191286802292, -0.01706669293344021, -0.020976927131414413, -0.002727988874539733, -0.048673249781131744, -0.0030561944004148245, 0.008378066122531891, -0.013382320292294025, -0.018125420436263084, 0.019664105027914047, 0.0258188433945179, -0.01715139113366604, -0.03413338586688042, 0.01404578983783722, 0.005900643300265074, -0.005907701328396797, -0.009803819470107555, -0.0016727900365367532, -0.01658673584461212, -0.0222050528973341, -0.0004830445977859199, 0.031112482771277428, 0.0034726273734122515, 0.019297080114483833, -0.04288553446531296, -0.022261517122387886, 0.018732424825429916, 0.013890509493649006, -0.012295359745621681, 0.01757488213479519, 0.013784636743366718, -0.04745924100279808, -0.015203331597149372, 0.0222050528973341, 0.019918199628591537, 0.009126233868300915, 0.011716588400304317, 0.003015609923750162, 0.023419059813022614, 0.0036914311349391937, 0.04288553446531296, -0.009020361118018627, -0.017871325835585594, 0.0015739754308015108, -0.011257805861532688, -0.031112482771277428, 0.004263143986463547, 0.00186159648001194, 0.010100264102220535, 0.020299341529607773, 0.007012307643890381, 0.0001484424719819799, 0.003952583763748407, -0.03526269644498825, 0.013304679654538631, -0.023616690188646317, 0.0025321240536868572, -0.015838569030165672, -0.011293097399175167, -0.009267398156225681, -0.022007422521710396, -0.030406663194298744, -0.017461951822042465, 0.001956881955265999, 0.03421808406710625, 0.00566066475585103, -0.02035580761730671, 0.0018042486626654863, 0.02329201251268387, -0.013474076054990292, -0.022501496598124504, 0.015796219930052757, -0.009083884768188, 0.03819889947772026, 0.024887163192033768, 0.026101170107722282, -0.00407963152974844, -0.015048052184283733, 0.01950882561504841, -0.0028497425373643637, 0.005583025049418211, -0.010036740452051163, -0.011314271949231625, 0.019381778314709663, 0.04912497103214264, -0.01884535513818264, 0.0006824383162893355, -0.009352096356451511, 0.028049230575561523, 0.012323591858148575, -0.02245914749801159, 0.001995702041313052, 0.010424939915537834, 0.014172837138175964, -0.004697222728282213, -0.011088409461081028, -0.037154290825128555, 0.004256085958331823, 0.024760115891695023, -0.007149942219257355, 0.01203420665115118, -0.009210932068526745, -0.021894492208957672, 0.0007772826938889921, 0.03156420588493347, 0.014342233538627625, -0.016177361831068993, 0.011596598662436008, 0.02893856167793274, 0.011518958956003189, 0.0030897208489477634, -0.004220794886350632, -0.021598048508167267, -0.008787441067397594, 0.019649989902973175, -0.02111809141933918, 0.006909963674843311, 0.009782644920051098, -0.007234640419483185, 0.012013032101094723, -0.027145782485604286, -0.019127683714032173, -0.017123159021139145, -0.019621755927801132, 0.0010746087646111846, 0.014765724539756775, 0.024590719491243362, -0.009267398156225681, 0.005597141105681658, -0.0030209035612642765, -0.018746541813015938, 0.003927880432456732, -0.005304226651787758, 0.01918414793908596, 0.025677679106593132, 0.006320605520159006, -0.0018157182494178414, -0.6016961932182312, -0.03814243525266647, -0.009944983758032322, 0.01606443151831627, -0.010516696609556675, 0.015344495885074139, -0.012387115508317947, 0.005053660832345486, -0.0026327031664550304, 0.05488445237278938, -0.021809794008731842, 0.02413899451494217, 0.0010816669091582298, -0.0030985435005277395, 0.004097276832908392, -0.010820198804140091, 0.0013375261332839727, 0.00042613796540535986, -0.0017486654687672853, 0.011003711260855198, -0.005914759822189808, 1.1386838195903692e-05, -0.005501855630427599, -0.0162479430437088, -0.007883992977440357, -0.015415078029036522, 0.024604834616184235, 0.014109313488006592, -0.0030756043270230293, 0.01708080992102623, -0.03599674627184868, 0.011377795599400997, 0.02161216549575329, -0.02902325987815857, 0.054319798946380615, -0.015259797684848309, -0.018901821225881577, 0.030180802568793297, 0.01960763894021511, 0.023108499124646187, -0.026030588895082474, -0.013459959998726845, 0.03212886303663254, -0.004792508203536272, -0.01715139113366604, -0.016939645633101463, 0.02876916527748108, 0.0002735047019086778, -0.007291106041520834, -0.012133020907640457, 0.023263780400156975, 0.0014672203687950969, -0.02077929861843586, -0.013791695237159729, 0.00858275406062603, -0.006302959751337767, 0.02869858220219612, -0.01144131924957037, 0.009768528863787651, -0.027371644973754883, -0.006948783993721008, 0.011617773212492466, -0.005254819057881832, -0.014165778644382954, -0.005438331980258226, 0.012217719107866287, 0.0020856938790529966, 0.007347571197897196, -0.0012987061636522412, -0.00288150436244905, 0.02590354159474373, 0.030801922082901, 0.007891051471233368, 0.020638134330511093, -0.010961362160742283, 0.007756946142762899, -0.007968692108988762, 0.019819386303424835, 0.012182428501546383, -0.0007799295126460493, 0.031253647059202194, 0.00803927332162857, -0.02776690199971199, -0.008427473716437817, 0.027865717187523842, -0.003973758779466152, -0.0223038662225008, 0.014059905894100666, -0.01185775175690651, -0.03994933143258095, 0.035290926694869995, -0.0020009956788271666, -0.019000636413693428, -0.024590719491243362, 0.0020539320539683104, 0.030265500769019127, 0.00536069180816412, 0.015443310141563416, 0.008681568317115307, -0.029587915167212486, -0.010573161765933037, -0.0036561402957886457, 0.011173107661306858, -0.009754412807524204, 0.012655327096581459, 0.001527214888483286, -0.01667143404483795, 0.005297168157994747, 0.05350104719400406, -0.014066964387893677, 0.01758899912238121, -0.0077710626646876335, -0.0043160803616046906, 0.003093249863013625, 0.0022656775545328856, -0.031112482771277428, 0.038311831653118134, 0.025607097893953323, -0.006655869074165821, 0.002975025214254856, 0.011646006256341934, -0.024364857003092766, 0.005572437774389982, -0.02710343338549137, 0.020581670105457306, 0.024590719491243362, 0.02651054598391056, -0.03472627326846123, 0.01489277184009552, -0.0033438154496252537, -0.008702742867171764, -0.029220888391137123, 0.010114380158483982, -0.004358429461717606, -0.0025197723880410194, -0.022741474211215973, 0.010446114465594292, 0.002900914289057255, 0.026439962908625603, -0.018915938213467598, -0.025607097893953323, 0.009041535668075085, -0.007509909570217133, -0.02289675362408161, -0.014243418350815773, -0.02466130070388317, -0.015330378897488117, 0.009027419611811638, -0.021428652107715607, 0.0021545111667364836, 0.010361416265368462, 0.002713872352614999, -0.0162479430437088, 0.019042985513806343, -0.026101170107722282, -0.009281514212489128, 0.004210207611322403, -0.027046967297792435, 0.006059452425688505, -0.02617175318300724, -0.004019636660814285, 0.02188037522137165, -0.043619588017463684, -0.011956566944718361, -0.004224324133247137, 0.013904625549912453, 0.011173107661306858, 0.005399512127041817, 0.00023975774820428342, -0.0105661042034626, -0.012260068207979202, 0.010911955498158932, -0.027710437774658203, -0.008815674111247063, 0.0016683785943314433, 0.002941498998552561, -0.022063888609409332, -0.0035643838346004486, 0.01149072591215372, 0.004174917005002499, 0.011144875548779964, 0.02045462280511856, -0.010664918459951878, -0.009528550319373608, 0.012083614245057106, -0.004450186155736446, 0.014038731344044209, 0.04130450263619423, -0.00717464555054903, 0.03382282704114914, -0.029333820566534996, 0.026623476296663284, -0.012697676196694374, 0.022614426910877228, -0.033625196665525436, 0.0476004034280777, -0.0337945930659771, 0.008822731673717499, -0.017349019646644592, 0.03162067010998726, 0.021428652107715607, 0.013558775186538696, 0.021428652107715607, -0.00597122497856617, -0.00892154686152935, -0.03280644863843918, 0.0202852264046669, -0.04198208823800087, 0.03297584503889084, 0.014208127744495869, 0.012401232495903969, 0.02852918580174446, -0.0014848657883703709, -0.01325527299195528, 0.013975207693874836, 0.018633609637618065, -0.031846534460783005, 0.0047325133346021175, -0.006274727173149586, -0.014363408088684082, 0.0031020725145936012, -0.028486836701631546, 0.03029373288154602, 0.00488073518499732, 0.005141888279467821, -0.016756132245063782, 0.0331452414393425, 0.019212381914258003, 0.013438785448670387, 0.01959352381527424, 0.0035485029220581055, 0.033709894865751266, 0.004901909735053778, -0.008095739409327507, 0.017546650022268295, -0.02087811380624771, 0.01775839552283287, -0.006909963674843311, 0.030096104368567467, -0.008872139267623425, 0.0007825763314031065, 0.018450098112225533, 0.019452359527349472, -0.02137218602001667, -0.016036197543144226, 9.092927939491346e-05, 0.03131011128425598, -0.0057877120561897755, -0.021485116332769394, 0.007224053144454956, -0.003128540702164173, 0.018901821225881577, -0.012612977996468544, 0.004485477227717638, 0.020087596029043198, -0.000449738756287843, -0.006352367345243692, 0.018294816836714745, 0.024167228490114212, 0.01674201712012291, 0.008011041209101677, 0.0018686546245589852, 0.02196507342159748, -0.0017610173672437668, 0.023517875000834465, 0.00019134300237055868, -0.02598823979496956, 0.00506777735427022, -0.006122976075857878, -0.0061335633508861065, 0.010799024254083633, -0.015612706542015076, 0.00494425930082798, -0.03684372827410698, 0.015189215540885925, 0.009048594161868095, 0.012147137895226479, -0.0015042758313938975, 0.01429988443851471, -0.0037867166101932526, -0.024209577590227127, -0.02676464058458805, 0.022360332310199738, 0.015344495885074139, 0.014137545600533485, 0.010869606398046017, 0.0007521379156969488, 0.04483359679579735, -0.025183606892824173, 0.010537871159613132, 0.008695684373378754, 0.0070087783969938755, -0.024971861392259598, 0.0062041450291872025, 0.017857210710644722, 0.02970084547996521, 0.01631852611899376, 0.010340241715312004, 0.006726450752466917, -0.0007975749904289842, 0.010714326053857803, 0.004785449709743261, -0.03904588147997856, 0.02169686369597912, 0.03845299407839775, -0.008046331815421581, 0.002202153904363513, -0.011398970149457455, -0.005039544776082039, -0.038340065628290176, 0.01706669293344021, 0.007721655070781708, -0.010686093010008335, -0.001903945580124855, -0.002713872352614999, 0.015386844985187054, -0.010255543515086174, -0.006130034103989601, 0.019565289840102196, -0.00393140921369195, -0.0056077283807098866, -0.017391368746757507, -0.004831328056752682, 0.017038460820913315, 0.036053214222192764, 0.05081893876194954, 0.017038460820913315, 0.009867344051599503, -0.015005703084170818, 0.011328388005495071, -0.03029373288154602, -0.05451742559671402, 0.0230520348995924, -0.023870784789323807, -0.030067870393395424, -0.021400418132543564, 0.004358429461717606, 0.026778755709528923, 0.0324958860874176, -0.006168854422867298, 0.024096645414829254, -0.010502580553293228, 0.017716046422719955, -0.026806989684700966, -0.005117184482514858, -0.007566375192254782, -0.01375640369951725, 0.027950415387749672, 0.016431456431746483, -0.00397728756070137, 0.025677679106593132, 0.050367213785648346, -0.003814949421212077, 0.015330378897488117, -0.02011583000421524, -0.002900914289057255, 0.02632703259587288, 0.04503122344613075, -0.01993231661617756, 0.03763424605131149, -0.003153244499117136, -0.006119446828961372, 0.0062041450291872025, 0.011328388005495071, 0.003913763910531998, 0.004831328056752682, 0.02245914749801159, 0.00018042487499769777, 0.007012307643890381, -0.007658131420612335, 0.002525066025555134, 0.01969233900308609, 0.008858023211359978, 0.005184237379580736, 0.024350740015506744, -0.005815945100039244, -0.028882095590233803, 0.013946974650025368, 0.04150213301181793, 0.0081239715218544, -0.0035308573860675097, -0.01013555470854044, -0.019889967516064644, -0.013650530949234962, -0.03969523683190346, -0.007629898842424154, 0.024548370391130447, -0.024209577590227127, -0.009098001755774021, -0.022924987599253654, -0.01413048803806305, -0.004810153506696224, -0.017377253621816635, 0.0354885570704937, 0.025395352393388748, -0.0017001405358314514, -0.03246765583753586, 0.03819889947772026, 0.012055381201207638, 0.0019921730272471905, 0.0021351012401282787, -0.017617231234908104, 0.0022674421779811382, 0.019974665716290474, -0.008251018822193146, -0.034613341093063354, 0.014652793295681477, -0.033371102064847946, -0.012718850746750832, -0.012881188653409481, 0.010961362160742283, -0.006384129170328379, -0.00467251893132925, 0.008251018822193146, -0.0053818668238818645, 0.013121167197823524, -0.010149670764803886, 0.0006775858346372843, 0.033032309263944626, -0.0003694519109558314, 0.012401232495903969, 0.04299846664071083, -0.00962736550718546, 0.00959207396954298, 0.007001720368862152, -0.009415620006620884, -0.03274998068809509, 0.007181704044342041, 0.0017698400188237429, 0.006087685003876686, 0.0014354585437104106, 0.03215709328651428, -0.003001493401825428, 0.001547507243230939, 0.025621214881539345, 0.0026238805148750544, 0.005819473881274462, -0.006839381996542215, 0.02271324209868908, -0.00237860856577754, 0.0046901642344892025, 0.014405757188796997, 0.01031200960278511, 0.003934938460588455, 0.0013428197707980871, 0.004997195675969124, 0.016346758231520653, -0.00186159648001194, -0.010509638115763664, 0.02103339321911335, 0.0004142272809986025, -0.05703014135360718, 0.00036129087675362825, -0.00271210796199739, -0.01127192284911871, -0.007721655070781708, 0.008716858923435211, -0.03291937708854675, -0.023122616112232208, 0.013897567987442017, -0.014208127744495869, -0.0013992852764204144, -0.019565289840102196, -0.026905803009867668, -0.011088409461081028, -0.003952583763748407, -0.006147679872810841, -0.019805269315838814, -0.011878926306962967, -0.02759750559926033, -0.010064972564578056, 0.0030473717488348484, 0.000999615527689457, 0.031168948858976364, -0.0025956477038562298, 0.010862547904253006, -0.02010171301662922, -0.01682671532034874, -0.0014522216515615582, -0.011533075012266636, -0.017560765147209167, 0.011984799057245255, 0.028740931302309036, 0.0093450378626585, 0.010862547904253006, -0.0034973309375345707, -0.005445390474051237, -0.0016807304928079247, -0.004958375357091427, -0.014765724539756775, -0.01665731891989708, -0.02717401459813118, -0.010806082747876644, 0.0041184513829648495, 0.011730704456567764, 0.00320618087425828, 0.04381721839308739, 0.003850240260362625, -0.009916750714182854, 0.022402681410312653, 0.011180166155099869, -0.01725020632147789, -0.022614426910877228, -0.04954846203327179, -0.03156420588493347, 0.0007243463187478483, -0.014285767450928688, 0.0011566601460799575, -0.04401484504342079, -0.019649989902973175, 0.013551716692745686, -0.0031426572240889072, -0.009810877963900566, -0.021809794008731842, 0.020496971905231476, -0.01640322431921959, 0.01429988443851471, 0.014681026339530945, 0.023955482989549637, -0.012048322707414627, -0.013036468997597694, -0.0190147515386343, 0.01599384844303131, 0.005724188406020403, 0.018647726625204086, 0.01409519650042057, 0.007905167527496815, 0.0007790472591295838, -0.007262872997671366, 0.022670892998576164, -0.0059112305752933025, -0.0026485840789973736, 0.004908968228846788, -0.017349019646644592, -0.021936841309070587, -0.04923790320754051, -0.011963624507188797, 0.0047289845533668995, -0.004612524528056383, 0.01093313004821539, -0.006557054352015257, 0.010537871159613132, -0.02340494468808174, -0.020991044119000435, -0.0032608818728476763, 0.005766537506133318, 0.02271324209868908, 0.01514686644077301, 0.034613341093063354, 0.02861388400197029, 0.01055904570966959, -0.003146186238154769, 0.026228217408061028, 0.017207857221364975, 3.352638304932043e-05, 0.019071217626333237, 0.012612977996468544, -0.004549000877887011, -0.005399512127041817, -0.011765995994210243, 0.006818207446485758, -0.003405574709177017, -0.011398970149457455, 0.052202340215444565, 0.026976386085152626, 0.0055618504993617535, -0.016445573419332504, -0.008286310359835625, -0.015711521729826927, 0.004566646181046963, 0.008547462522983551, 0.0005430391756817698, 0.01497747004032135, -0.009556783363223076, -0.011109584011137486, 0.00305090076290071, -0.02001701481640339, 0.031084250658750534, 0.022430913522839546, -0.0016966114053502679, -0.003867885796353221, 0.004432540386915207, -0.0072769895195961, 0.004192562308162451, -0.027964532375335693, 0.015259797684848309, -0.023009685799479485, -0.0005196589045226574, -0.00012153313582530245, 0.007509909570217133, -0.013431726954877377, -0.013622298836708069, 0.006430007051676512, 0.028500953689217567, -0.009366212412714958, 0.003042078111320734, 0.02348964288830757, -0.032439421862363815, 0.023687271401286125, -0.001645439537242055, 0.015048052184283733, 0.003502624575048685, -0.013467018492519855, -0.0214568842202425, 0.015852684155106544, 0.01548565924167633, 0.009655597619712353, -0.0031550091225653887, -0.013784636743366718, -0.014850422739982605, -0.0046866354532539845, -0.032354723662137985, 0.006331192795187235, -0.022078005596995354, -0.012725909240543842, -0.015782102942466736, 0.0031585381366312504, 0.024251926690340042, 0.024548370391130447, -0.0049230847507715225, 0.01967822201550007, 0.04678165540099144, -0.005554792005568743, -0.0015704463003203273, -0.04401484504342079, -0.010424939915537834, -0.02717401459813118, -0.0014345762319862843, -0.0008275722502730787, -0.016883179545402527, 0.015203331597149372, 0.0008266899967566133, -0.02987024188041687, -0.020426388829946518, -0.003283820813521743, 0.008286310359835625, 0.0007089065038599074, 0.010679034516215324, 0.0283597894012928, 0.009775587357580662, 0.008716858923435211, -0.0235743410885334, -0.02154158242046833, 0.024167228490114212, -0.020059363916516304, 0.00022894989524502307, 0.01749018393456936, 0.002447425853461027, 0.010756675153970718, -0.01691141352057457, 0.0069381967186927795, 0.0014645735500380397, -0.03845299407839775, -0.03551679104566574, 0.025790611281991005, 0.005667723249644041, -0.028246859088540077, -0.025423584505915642, -0.023517875000834465, -0.006475885398685932, -0.00683585274964571, 0.00951443426311016, 0.019734688103199005, 0.011511900462210178, -0.005166592076420784, -0.004309022333472967, -0.003172654425725341, 0.017701929435133934, -0.0190147515386343, 0.001581033575348556, -0.02086399681866169, -0.012330650351941586, -0.035121530294418335, -0.02162628062069416, -0.011723646894097328, 0.0047713336534798145, -0.004150213208049536, -0.033681660890579224, -0.022007422521710396, -0.026016471907496452, -0.015288029797375202, -0.004894851706922054, -0.009133292362093925, 0.0162479430437088, 0.06024867296218872, 0.020765181630849838, -0.004693693481385708, 0.015203331597149372, -0.005664194002747536, 0.007516967598348856, 0.010199078358709812, 0.0048419153317809105, 0.015175099484622478, -0.005233644507825375, 0.005632432177662849, -0.003934938460588455, -0.028740931302309036, -0.013883450999855995, 0.0038784730713814497, 0.005780654028058052, 0.01396109163761139, 0.0009290336747653782, -0.030350198969244957, 0.005967696197330952, -0.009105059318244457, -0.01446928083896637, 0.002948557026684284, -0.007411094848066568, 0.009697946719825268, -0.04040105640888214, 0.008533346466720104, 0.02819039300084114, 0.028077462688088417, -0.00030614880961366, -0.002941498998552561, 0.008512171916663647, -0.005957108922302723, 0.031931232661008835, -0.02147100120782852, -0.008533346466720104, -0.00622531957924366, -0.007432269398123026, 0.035036832094192505, -0.001113428850658238, -0.0030632526613771915, 0.022402681410312653, -0.0008474234491586685, -0.0015730931190773845, -0.0037620130460709333, 0.001937472028657794, -0.036307308822870255, -0.035121530294418335, 0.038085971027612686, -0.024548370391130447, -0.0214568842202425, -0.0024333095643669367, -0.009020361118018627, -0.009994391351938248, -0.019805269315838814, 0.0012740024831146002, -0.02086399681866169, -0.025960007682442665, -0.004181975033134222, -0.01689729653298855, -0.05575966835021973, -0.024124879390001297, 0.006772329099476337, -0.01902886852622032, 0.02279794029891491, 0.0035043891984969378, -0.021922724321484566, -0.03029373288154602, 0.002184508368372917, -0.011589541099965572, -0.00031739778933115304, -0.02919265627861023, 0.007806353271007538, -0.007072302047163248, -0.012062439695000648, 0.012076555751264095, 0.1839645504951477, -0.025861192494630814, 0.006158267147839069, 0.02590354159474373, -0.0036773148458451033, -0.005928875878453255, -0.007975749671459198, -0.009959099814295769, -0.00023093500931281596, 0.01606443151831627, 0.016007965430617332, 0.0004830445977859199, -0.00891448836773634, -0.0036526110488921404, 0.004439598880708218, -0.007933400571346283, -0.04627346619963646, -0.04014696180820465, -0.03447217866778374, -0.013636414892971516, 0.010199078358709812, -0.02396959811449051, -0.007940459065139294, -0.021640397608280182, 0.023249663412570953, 0.013431726954877377, -0.01161071565002203, 0.0053430465050041676, 0.024040181189775467, 0.012048322707414627, -0.026778755709528923, -0.006408832501620054, 0.024873046204447746, 0.019635872915387154, 0.03170536831021309, -0.007644014898687601, 0.008131030015647411, -0.01523156464099884, 0.03884825482964516, 0.01631852611899376, 0.011476609855890274, -0.03814243525266647, 0.021852143108844757, -0.014363408088684082, -0.0084980558604002, -0.0028232743497937918, 0.010679034516215324, -0.02651054598391056, 0.022176818922162056, -0.002336259465664625, -0.016869064420461655, 0.033540498465299606, 0.02886797860264778, 0.03944114223122597, -0.007135825697332621, -0.012125963345170021, -0.0093450378626585, 0.0010031446581706405, -0.02179567702114582, 0.001701022731140256, -0.0173207875341177, 0.0022003892809152603, 0.006055923178792, 0.0013692880747839808, -0.0075381421484053135, 0.012147137895226479, -0.008858023211359978, -0.03037843108177185, -0.0020927521400153637, -0.017377253621816635, 0.005928875878453255, -0.024873046204447746, -0.006387657951563597, 0.003444394562393427, -0.014017556793987751, -0.025889424607157707, -0.000973147340118885, 0.006027690600603819, 0.018746541813015938, 0.04966139420866966, -0.011088409461081028, 0.016854947432875633, -0.026228217408061028, -0.012789432890713215, 0.00017127128376159817, -0.027399877086281776, 0.03224179148674011, 0.014963353984057903, 0.012076555751264095, -0.0010260837152600288, -0.03263705223798752, -0.006027690600603819, -0.017956024035811424, 0.023179082199931145, -0.0010446114465594292, 0.012704734690487385, 0.007749888114631176, 0.024506021291017532, 0.010453172959387302, 0.010326125659048557, -0.051863547414541245, 0.06380599737167358, 0.022402681410312653, -0.011547191999852657, -0.0395258404314518, -0.004683106206357479, 0.030745455995202065, 0.0035590901970863342, -0.0031161890365183353, -0.010029681958258152, 0.003959642257541418, -0.04251851141452789, -0.0053430465050041676, -0.01514686644077301, 0.002405076753348112, 0.025592980906367302, 0.02062401920557022, -0.0230520348995924, -0.005226586479693651, -0.03517799824476242, 0.004827798809856176, -0.028585651889443398, 0.0038220074493438005, 0.011850694194436073, -0.008794499561190605, 0.002701520686969161, 0.02322143130004406, -0.022939102724194527, -0.001109017408452928, -0.03424631804227829, 0.02659524418413639, -0.005621844902634621, 0.03190299868583679, -0.007651073392480612, 0.002090987516567111, 0.0078628184273839, 0.016600852832198143, 0.0074675604701042175, -0.0035343864001333714, -0.003730251220986247, 0.004474889952689409, -0.020595785230398178, 0.0235743410885334, 0.004326667636632919, 0.010883722454309464, -0.01228830125182867, 0.03212886303663254, 0.009408561512827873, 0.00567831052467227, -0.021146323531866074, -0.017292555421590805, -0.0036667275708168745, -0.006348838098347187, 0.01098253671079874, 0.00875215046107769, -0.00550891412422061, -0.015513892285525799, -0.0414174348115921, 0.008956837467849255, -0.007019365672022104, -0.016022082418203354, 0.010283776558935642, 0.003705547424033284, 0.006528821773827076, -0.03114071488380432, 0.009824994951486588, -0.18136714398860931, 0.011257805861532688, 0.021513350307941437, -0.01531626284122467, 0.006151208654046059, 0.012655327096581459, 0.003070310689508915, -0.0043549006804823875, 0.017377253621816635, -0.0025109495036303997, 0.006161795929074287, -0.016290292143821716, -0.008109855465590954, 0.012267126701772213, 0.026736406609416008, -0.027399877086281776, -0.0015104517806321383, -0.010488463565707207, 0.019621755927801132, -0.012387115508317947, 0.02607293799519539, -0.03726721927523613, -0.00433372613042593, -0.008639219217002392, -0.015669172629714012, 0.014151662588119507, -0.058272380381822586, -0.022529728710651398, -0.00027019617846235633, -0.012422407045960426, -0.027555156499147415, 0.029390284791588783, -0.018379515036940575, 0.0123729994520545, 0.013890509493649006, -0.01860537752509117, -0.01514686644077301, -0.00012980445171706378, -0.003405574709177017, 0.020045246928930283, 0.012521221302449703, 0.03526269644498825, 0.017871325835585594, 0.016812598332762718, -0.02843037247657776, 0.015951499342918396, 0.04872971400618553, 0.029983172193169594, -0.0053818668238818645, -0.016431456431746483, -0.0007962515810504556, -0.03616614267230034, 0.005463035777211189, 0.017617231234908104, 0.006846440024673939, 0.004492535255849361, 0.017970141023397446, 0.0038290657103061676, 0.007284047547727823, -0.014596328139305115, 0.004016107879579067, -0.014038731344044209, -0.006818207446485758, -0.020412273705005646, -0.02564944699406624, 0.00397728756070137, -0.04040105640888214, 0.024463672190904617, -0.031197180971503258, 0.024124879390001297, -0.009634423069655895, -0.0063700126484036446, -0.001692199963144958, 0.019395893439650536, 0.008236902765929699, 0.0013534071622416377, -0.035036832094192505, 0.02490127831697464, 0.013015294447541237, -0.016205593943595886, 0.010919013060629368, 0.049689628183841705, 0.009846169501543045, 0.00866039376705885, 0.018803006038069725, 0.013262330554425716, 0.019042985513806343, 0.010827257297933102, 0.015386844985187054, -0.009528550319373608, 0.026482312008738518, 0.007411094848066568, 0.029390284791588783, -0.022430913522839546, 0.002168627455830574, 0.014222243800759315, 0.010516696609556675, -0.0074252113699913025, -0.011074293404817581, -0.025889424607157707, -0.025127140805125237, -0.006860556546598673, -0.02279794029891491, 0.016516154631972313, 0.03481097146868706, 0.011342504061758518, -0.02876916527748108, -0.010615510866045952, 0.032015930861234665, -0.021329836919903755, -0.007040540222078562, 0.004743100609630346, 0.013241156004369259, 0.006955842021852732, -0.013530542142689228, 0.02902325987815857, 0.01825246773660183, -0.019057100638747215, -0.005205411929637194, -0.013438785448670387, 0.04494652524590492, -0.000419741467339918, -0.002038051141425967, 0.013968149200081825, -0.022106237709522247, -0.012563570402562618, -0.07696245610713959, -0.0037478965241461992, 0.00337557727470994, -0.0026997560635209084, -0.040852777659893036, -0.01523156464099884, -0.0010093206074088812, 0.007432269398123026, 0.015132750384509563, 0.023080267012119293, 0.0068146781995892525, -0.024124879390001297, -0.005914759822189808, -0.014695142395794392, 0.030067870393395424, -0.016473805531859398, 0.01084843184798956, -0.018365399911999702, -0.003783187596127391, 0.031168948858976364, -0.009810877963900566, 0.00024064001627266407, -0.004429011605679989, -0.002166863065212965, -0.03701312467455864, 0.002795041538774967, -0.050960101187229156, 0.01005085650831461, 0.01548565924167633, -0.002064519328996539, 0.05132712796330452, -0.019579406827688217, 0.008462764322757721, -0.010079089552164078, -0.01942412741482258, 0.004224324133247137, -0.048588551580905914, -0.013297622092068195, 0.02003113180398941, -0.03565795347094536, 0.024506021291017532, 0.016346758231520653, 0.025550631806254387, -0.018323050811886787, -0.0037267219740897417, -0.00288150436244905, -0.008300426416099072, 0.031168948858976364, -0.013431726954877377, -0.025367120280861855, -0.0005161298322491348, -0.0017521945992484689, -0.008618044666945934, -0.030943086370825768, 0.031338345259428024, -0.013862276449799538, -0.01073550060391426, 0.025183606892824173, -0.017363136634230614, -0.010417882353067398, -0.013749346137046814, -0.004552529659122229, -0.01350230909883976, 0.000556714425329119, 0.00866039376705885, 0.010947246104478836, -0.030180802568793297, -0.018563028424978256, 0.024887163192033768, 0.011984799057245255, 0.010926071554422379, 0.019988782703876495, -0.012125963345170021, -0.016007965430617332, -0.0005858294316567481, 0.0034496881999075413, -0.01236594095826149, -0.020581670105457306, -0.016262060031294823, -0.011765995994210243, 0.0012766493018716574, -0.01825246773660183, -0.000732727930881083, 0.004033753182739019, 0.020821647718548775, 0.011921275407075882, -0.018633609637618065, 0.015245680697262287, 0.016022082418203354, -0.0356861874461174, -0.0029132661875337362, 0.003509682836011052, 0.011109584011137486, 0.010100264102220535, -0.012464756146073341, 0.03935644403100014, 0.02221916802227497, 0.006606461945921183, -0.009479143656790257, 0.0071217091754078865, -0.01749018393456936, -0.023164965212345123, -0.08944132924079895, 0.037069592624902725, -0.0011381324147805572, 0.003613790962845087, -0.011116642504930496, -0.017476066946983337, -0.0038961186073720455, -0.011921275407075882, -0.01648792251944542, 0.010629627853631973, 0.001979821128770709, 0.02178156189620495, 0.012302417308092117, 0.0026327031664550304, -0.009585016407072544, -0.04045752063393593, 0.02413899451494217, -0.004217266105115414, 0.02247326262295246, -0.003435571910813451, -0.0009012420778162777, -0.015245680697262287, 0.01291648019105196, 0.04503122344613075, -0.0005403923569247127, 0.010446114465594292, -0.005784183274954557, 0.025621214881539345, -0.01098253671079874, -0.025197722017765045, 0.006465298123657703, -0.04503122344613075, -0.009775587357580662, 0.02727282978594303, 0.007749888114631176, -0.031112482771277428, 0.028331557288765907, -0.0015413312939926982, 0.011900100857019424, -0.027286946773529053, -0.007982808165252209, -0.02186626009643078, 0.01202714815735817, -0.004877206403762102, -0.0003209268907085061, -0.011977741494774818, -0.028289208188652992, 0.011229573749005795, 0.017052575945854187, -0.013347028754651546, 0.02130160480737686, 0.019085334613919258, -0.0558725968003273, -0.028557419776916504, -0.01801249012351036, -0.018563028424978256, 0.014991586096584797, 0.004400778561830521, 0.01187186874449253, -0.01291648019105196, 0.03644847124814987, 0.01514686644077301, 0.005568908527493477, 0.00761578232049942, 0.02035580761730671, 0.019395893439650536, -0.011427202261984348, -0.026228217408061028, 0.0026891687884926796, -0.014165778644382954, -0.010587278753519058, -0.009683830663561821, 0.0009166818927042186, 0.015217448584735394, 0.016431456431746483, 0.00498307915404439, -0.018873589113354683, 0.004753687884658575, -0.022021539509296417, 0.004866619128733873, 0.019748803228139877, 0.015189215540885925, -0.006197087001055479, 0.007502851542085409, 0.02128748781979084, 0.015302146784961224, -0.01884535513818264, 0.03509330004453659, 0.01835128292441368, -0.005272464826703072, -0.03955407440662384, 0.005875939503312111, 0.0008668334339745343, -0.008003982715308666, 0.014596328139305115, 0.006038277875632048, -0.0162479430437088, 0.03721075505018234, 0.018690075725317, 0.015471543185412884, 0.008286310359835625, 0.012323591858148575, 0.0021227493416517973, -0.021908609196543694, -0.04393014684319496, -0.01758899912238121, -0.024802464991807938, -0.016784366220235825, 0.01689729653298855, 0.0035308573860675097, 0.005639490205794573, 0.012076555751264095, -0.001588091836310923, 0.030999552458524704, -0.027992764487862587, -0.00610180152580142, 0.006648811046034098, -0.03687196224927902, -0.04116334021091461, 0.033681660890579224, 0.018788890913128853, 0.01367170549929142, 0.016459688544273376, -0.004132567904889584, 0.027498692274093628, -0.007813411764800549, 0.01723608933389187, -0.01607854664325714, 0.014695142395794392, -0.013629356399178505, 0.010700209066271782, 0.01324821449816227, -0.01909944973886013, -0.007679305970668793, -0.01253533735871315, 0.007488735020160675, 0.007855760864913464, 0.024590719491243362, 0.008131030015647411, 0.07984219491481781, 0.006341780070215464, -0.02902325987815857, -0.03430278226733208, -0.025367120280861855, -0.001262533012777567, 0.03752131387591362, 0.026439962908625603, -0.018690075725317, -0.017292555421590805, 0.005537146702408791, -0.011638947762548923, -0.0036914311349391937, -0.023927249014377594, -0.010679034516215324, 0.0031514798756688833, -0.0015483894385397434, 0.002549769589677453, 0.004725455306470394, -0.00011557779362192377, 0.005357163026928902, -0.006179441697895527, 0.013064702041447163, 0.007262872997671366, -0.012514162808656693, 0.001995702041313052, 0.02171097882091999, -0.009923809207975864, -0.01650203764438629, -0.027964532375335693, 0.0008535993401892483, -0.01950882561504841, -0.00033746950794011354, -0.020144062116742134, 0.006828794721513987, -0.0036561402957886457, -0.011194282211363316, -0.006673514377325773, 0.012740025296807289, 0.006560583598911762, -0.010714326053857803, 0.012076555751264095, -0.019889967516064644, -0.01429988443851471, 0.0037337802350521088, 0.005293639376759529, -0.009105059318244457, -0.003391458187252283, -0.020214643329381943], "7ce57955-6637-4a9a-85e0-3b8d16306141": [-0.012063426896929741, -0.012168630957603455, -0.018586093559861183, -0.0064946124330163, 0.0034857692662626505, 0.015009147115051746, -0.03130879998207092, 0.000266517570707947, -0.019960762932896614, -0.028363080695271492, 0.02238747663795948, -0.005691553000360727, -0.0017376244068145752, 0.004327403847128153, -0.020058954134583473, -0.006235108245164156, 0.004674578085541725, -0.014644439332187176, 0.0076588732190430164, -0.007066222373396158, -0.031280744820833206, 0.0004764878249261528, -0.01428674440830946, 0.01524761039763689, -0.019203292205929756, -0.012841938994824886, 0.004523784853518009, -0.024575725197792053, 0.00954553671181202, 0.00185510260052979, 0.008998475037515163, 0.003291141241788864, -0.040594834834337234, 0.0073081920854747295, -0.015107338316738605, -0.010836043395102024, 0.00920888315886259, -0.006161465309560299, 0.039135999977588654, -0.02414088137447834, 0.020900588482618332, 0.0035050567239522934, 0.012329944409430027, -0.03332872316241264, -0.013515246100723743, 0.04025818035006523, 0.017463915050029755, -0.01843179389834404, -0.005498678423464298, 0.029092496261000633, -0.0030859929975122213, 0.0007951692095957696, -0.024856269359588623, 0.0032402926590293646, 0.029260823503136635, -0.023607846349477768, 0.007602764293551445, 0.019399672746658325, -0.015822727233171463, 0.005060326773673296, -0.0008170867804437876, -0.02414088137447834, 0.011572473682463169, -0.0015202021459117532, -0.007231042254716158, -0.017674323171377182, -0.014216608367860317, 0.007006606552749872, -0.012680625542998314, -0.019694246351718903, 0.01934356428682804, -5.895824506296776e-05, 0.0026476415805518627, -0.011418174020946026, 0.006529680453240871, -0.013332892209291458, -0.029260823503136635, -0.015500100329518318, 0.04275503009557724, -0.00022903853096067905, 0.01484082080423832, -0.00301936361938715, -0.03593778982758522, 0.02562776766717434, 0.02331327274441719, -0.0007517724297940731, 0.012147590517997742, 0.009054583497345448, -0.0265535656362772, 0.004450141917914152, 0.028503352776169777, 0.010569525882601738, 0.01980646327137947, 0.014223622158169746, -0.008731957525014877, 0.0031403484754264355, 0.0059720976278185844, 0.021798331290483475, -0.0014351620338857174, -0.018039030954241753, 0.0021391541231423616, -0.0018919240683317184, -0.028138644993305206, 0.0064946124330163, -0.019974790513515472, -0.009082638658583164, 0.025641795247793198, 0.0072801378555595875, 0.008542589843273163, -0.008893270045518875, -0.03217849135398865, 0.018010977655649185, -0.004804329946637154, -0.02278023771941662, -0.00256698508746922, -0.006747102830559015, -0.011165683157742023, -0.00842335820198059, -0.03195405378937721, -0.03546086326241493, 0.00825503095984459, 0.0258101224899292, 0.007245069835335016, -0.02644134871661663, 0.013978145085275173, -0.0017989935586228967, 0.015780646353960037, -0.03518031910061836, 0.004302856046706438, -0.026329129934310913, 0.0069084158167243, -0.015472046099603176, -0.008535576052963734, 0.006645405199378729, 0.009005488827824593, 0.03596584498882294, -0.011726773343980312, -0.0028405161574482918, -0.03383370488882065, -0.006715541239827871, 0.028461270034313202, 0.04048261418938637, 0.008149826899170876, 0.021167105063796043, -0.020016871392726898, 0.017562104389071465, 0.006035220343619585, -0.004720166325569153, -0.002100579207763076, 0.0011458501685410738, 0.0002494218642823398, -0.005197092425078154, -0.008767025545239449, -0.014812765643000603, -0.0012151097180321813, 0.01899288408458233, -0.005758182145655155, 0.011916141025722027, -0.01147428248077631, -0.030074402689933777, -0.0021549349185079336, 0.019960762932896614, 0.015780646353960037, 0.014672493562102318, 0.01285596564412117, 0.03013051301240921, 0.015991054475307465, 0.010429252870380878, -0.007644846104085445, -0.0005580211873166263, -0.00196907389909029, 0.0019480329938232899, -0.037088025361299515, 0.0074133966118097305, 0.014560275711119175, 0.03473144769668579, 0.007757063955068588, -0.005126956384629011, -0.019399672746658325, -0.02912055142223835, -0.019596055150032043, -0.009461374022066593, 0.016986988484859467, 0.052574098110198975, -0.018908720463514328, 0.0011274394346401095, -0.0010722072329372168, -0.01566842757165432, 0.0042537604458630085, -0.015191501006484032, 0.018852612003684044, 0.02480016089975834, -0.023158973082900047, -0.015794672071933746, -0.6091188788414001, -0.02268204838037491, 0.005628430284559727, -0.0009266745764762163, -0.015682455152273178, 0.009840109385550022, 0.006157958414405584, 0.0017306108493357897, -0.05868997424840927, 0.04780483618378639, -0.010429252870380878, 0.01651006191968918, -0.0005023505655117333, -0.021728195250034332, -0.007995527237653732, -0.010765907354652882, 0.0018480889266356826, -0.0034366738982498646, -0.003128074575215578, 0.024912379682064056, -0.010618621483445168, 0.012140576727688313, 0.0017744458746165037, -0.008065663278102875, -0.004309869837015867, -0.015500100329518318, 0.029429150745272636, 0.00013961487275082618, 0.004060886334627867, 0.019189264625310898, -0.019511891528964043, 0.003156129037961364, 0.02773185446858406, 0.002640628023073077, 0.050273630768060684, -0.004011790733784437, -0.02036755345761776, 0.035152263939380646, 0.014139458537101746, 0.024070745334029198, -0.007259096950292587, -0.0025739986449480057, 0.014055294916033745, 0.003003582824021578, 0.0043449378572404385, -0.015219556167721748, 0.03330066800117493, -0.0062666698358953, -0.002200523391366005, -0.018726365640759468, 0.008072677068412304, -0.002851036610081792, -0.006228094920516014, 0.010471334680914879, 0.009468386881053448, 0.000903003616258502, 0.0039065866731107235, -0.006021192763000727, 0.009335128590464592, -0.030719656497240067, -0.003724232316017151, -0.007644846104085445, -0.008086703717708588, -0.001455326215364039, -0.04424191638827324, 0.01860012114048004, 0.0021970164962112904, 0.011270888149738312, 0.01722545176744461, -0.00037391361547634006, 0.012792843393981457, 0.02081642486155033, -0.0017253506230190396, -0.010576539672911167, 0.0051690381951630116, 0.011186724528670311, 0.022892456501722336, 0.008030595257878304, 0.004295842256397009, 0.008914311416447163, 0.019596055150032043, 0.0013360946904867887, -0.012687639333307743, -0.01156545989215374, 0.0042993491515517235, -0.0016683648573234677, -0.009096665307879448, 0.005663498304784298, -0.0019252387573942542, 0.010885138995945454, 0.02395852655172348, -0.002914159093052149, 0.010071558877825737, -0.020942669361829758, 0.0014404222602024674, -0.0004208172031212598, -0.012000304646790028, 0.002021675929427147, -0.00460794847458601, -0.023565763607621193, -0.015051228925585747, -0.007700955029577017, -0.000820155197288841, 0.005551280453801155, 0.04513965919613838, 0.01632770709693432, -0.012175644747912884, -0.03397397696971893, 0.044746898114681244, -0.029373042285442352, -0.01788473129272461, -0.012386052869260311, -0.016257571056485176, -0.006799704860895872, -0.010436266660690308, -0.030635492876172066, 0.021517787128686905, 0.0006220204522833228, 0.011803923174738884, 0.03181378170847893, 0.010204817168414593, -0.01524761039763689, -0.005407501012086868, -0.008956393226981163, 0.0003140786720905453, 0.010541471652686596, 0.028152670711278915, -0.01659422554075718, 0.011116588488221169, -0.005498678423464298, -0.015528155490756035, -0.038490746170282364, 0.016552144661545753, -0.016201462596654892, 0.019371619448065758, -0.012975197285413742, 0.026287049055099487, -0.011635595932602882, 0.0438491553068161, -0.016552144661545753, -0.03778938576579094, 0.000503227231092751, -0.004162583500146866, -0.021882494911551476, -0.015177474357187748, -0.018221385776996613, -0.02735311910510063, 0.003853984409943223, -0.014574303291738033, 0.02607664093375206, -0.03153323754668236, 0.018656229600310326, 0.00479380926117301, 0.013424068689346313, -0.03512420877814293, 0.0028194752521812916, 0.018740393221378326, -0.05271437019109726, 0.012386052869260311, -0.006806718651205301, -0.010113640688359737, 0.04264280945062637, -0.00481485016644001, -0.03265541419386864, 0.0005939659895375371, 0.012554380111396313, 0.00875299796462059, 0.009531510062515736, 0.0018656229367479682, -0.03565724566578865, -0.005730127915740013, -0.00695751141756773, -0.019147183746099472, -0.01759015955030918, 0.006613844074308872, 0.020886560901999474, -0.022611912339925766, -0.0023460560478270054, 0.0018533491529524326, 0.0057266210205852985, 0.015429964289069176, 0.022163039073348045, -0.0007662380230613053, 0.013697599992156029, 0.017253505066037178, 0.006992579437792301, 0.00972087774425745, 0.01239306665956974, -0.03907989338040352, 0.050077248364686966, -0.02773185446858406, 0.02928887866437435, -0.021082943305373192, 0.015065256506204605, -0.022373449057340622, 0.0466546006500721, -0.01879650168120861, -0.006087822373956442, 0.008241003379225731, 0.01419556699693203, 0.00926499255001545, 0.02268204838037491, 0.010800975374877453, 8.849216101225466e-06, -0.01583675481379032, -0.025108760222792625, 0.013227688148617744, -0.03778938576579094, 0.04255864769220352, 0.01345913764089346, 0.022738156840205193, 0.022457612678408623, -0.027311036363244057, 0.022892456501722336, 0.0022092903964221478, 0.009103679098188877, -0.017562104389071465, 0.016566170379519463, -0.010253912769258022, -0.0037803412415087223, -0.005253201350569725, -0.01750599592924118, 0.040314290672540665, -0.009847123175859451, -0.020591989159584045, -0.011341024190187454, 0.019778409972786903, 0.00916680134832859, 0.00697855232283473, -0.008149826899170876, 0.0129471430554986, 0.0018621161580085754, -0.006368367001414299, 0.02635718509554863, 0.027423255145549774, -0.027717826887965202, 0.027787962928414345, -0.00783421378582716, 0.03481560945510864, -0.0006259655929170549, 0.0012887527700513601, 0.002181235933676362, 0.035432808101177216, -0.01474262960255146, -0.016902824863791466, 0.0037066983059048653, 0.028138644993305206, 0.027661718428134918, -0.01604716293513775, 0.012715693563222885, -0.0013501219218596816, 0.006561241578310728, -0.026792028918862343, -0.01641187071800232, 0.03456312045454979, -0.031561292707920074, -0.005467116832733154, 0.009510468691587448, 0.018838584423065186, 0.022331366315484047, 0.01604716293513775, 0.00017808019765652716, 0.005186572205275297, -0.004562359768897295, 0.029625531286001205, -0.0032437993213534355, -0.03464728221297264, -0.006136917509138584, 0.0061649722047150135, -0.02184041403234005, -0.006999592762440443, -0.01566842757165432, -0.014132444746792316, -0.018936773762106895, 0.000875825819093734, -0.0028598036151379347, 0.011663650162518024, 0.001457956270314753, 0.02083045244216919, 0.010751879774034023, -0.03369343280792236, -0.03529253602027893, 0.01862817443907261, 0.016103271394968033, 0.025922341272234917, -0.004176610615104437, -0.003503303276374936, 0.01512136496603489, -0.0035576587542891502, 0.010303008370101452, -0.004937588702887297, -0.01442000363022089, -0.020521853119134903, -0.0041801175102591515, -0.0035488917492330074, 0.024533644318580627, 0.0186141487210989, -0.0017972402274608612, 0.010632648132741451, 0.01059758011251688, 0.013227688148617744, 0.02063407003879547, -0.020044926553964615, 0.01659422554075718, 0.031757671386003494, -0.009573591873049736, -0.015037201344966888, -0.030467165634036064, -0.012414108030498028, -0.01583675481379032, 0.012610489502549171, 0.016145354136824608, -0.032935962080955505, 0.00782719999551773, 0.016355762258172035, 0.0186983123421669, 0.005751168821007013, -0.04163284972310066, 0.02111099660396576, -0.009601646102964878, 0.007750050164759159, -0.02533319592475891, -0.004197651520371437, 0.014125430956482887, 0.032851796597242355, 0.04006179794669151, 0.01684671640396118, 0.012638543732464314, -0.02968164160847664, 0.01478471141308546, -0.032206542789936066, -0.030354948714375496, 0.015892863273620605, 0.0012913828250020742, -0.02341146394610405, -0.003924120683223009, -0.006827759090811014, 0.015640372410416603, 0.023453546687960625, -0.008521548472344875, 0.033048179000616074, -0.0007929774583317339, 0.00256698508746922, -0.016369789838790894, -0.0026230940129607916, 0.002915912540629506, 0.008311140350997448, 0.026188857853412628, 0.01026794034987688, 0.010948261246085167, 0.044831059873104095, 0.011923154816031456, 0.004148556385189295, -0.008030595257878304, -0.014714575372636318, 0.02074628882110119, 0.0193575918674469, 0.014188554137945175, 0.0028562969528138638, 0.04093148931860924, 0.015275664627552032, -0.011621568351984024, 0.02488432452082634, 0.03139296546578407, 0.004941095598042011, 0.014588329941034317, 0.006838279776275158, -0.007855254225432873, 0.011130615137517452, -0.02349562756717205, -0.007609778083860874, 0.020297417417168617, 0.01565439999103546, 0.006817238871008158, 0.024673916399478912, 0.0011905620340257883, -0.025305142626166344, -0.016187435016036034, 0.009391237050294876, 0.019582027569413185, 0.017562104389071465, -0.017113232985138893, -0.01566842757165432, -0.0325993075966835, -0.035236429423093796, -0.025838177651166916, 0.01197926327586174, -0.010113640688359737, -0.02275218442082405, -0.014020226895809174, -0.04497133195400238, -0.013213660567998886, -0.015009147115051746, 0.02053588069975376, -0.0010160981910303235, 0.002970268251374364, -0.028040453791618347, 0.04342833533883095, 0.009335128590464592, -0.0004026256501674652, 0.00816385354846716, -0.010520430281758308, -0.019932707771658897, 0.015920918434858322, -0.010113640688359737, -0.015794672071933746, 0.003794368589296937, -0.022050822153687477, -0.005393473897129297, -0.012975197285413742, 0.010744865983724594, 0.001564037287607789, -0.0009100172319449484, 0.007567696273326874, -0.015219556167721748, 0.015780646353960037, 0.01695893332362175, 0.002959747798740864, 0.01796889491379261, 0.010632648132741451, 0.014630411751568317, 0.027886154130101204, 0.0061649722047150135, 0.010071558877825737, 0.005323337856680155, -0.015738563612103462, -0.009783999994397163, 0.005540759768337011, -0.013543300330638885, 0.013515246100723743, 0.009615673683583736, 0.011095547117292881, 0.00481485016644001, -0.012224740348756313, 0.00037676290958188474, 0.011663650162518024, 0.006101849488914013, 0.0049025206826627254, 0.00026322994381189346, 0.010702784173190594, 0.015373855829238892, 0.004948108922690153, 0.004934081807732582, -0.012133562937378883, -0.0066594323143363, -0.002491588471457362, 0.013620450161397457, -0.005221640225499868, 0.0019024445209652185, 0.019105101004242897, -0.015977026894688606, -0.026511484757065773, -0.011537405662238598, 0.010955275036394596, -0.011635595932602882, 0.01068875752389431, 0.018389713019132614, -0.04471884295344353, -0.04311973601579666, 0.002204030053690076, -0.0029281864408403635, -0.00026410663849674165, -0.011677677743136883, -0.013129496946930885, -0.003853984409943223, 0.012519312091171741, -0.008689875714480877, -0.017758486792445183, -0.004821863956749439, -0.02350965514779091, -0.021672086790204048, -0.02404269017279148, 0.010758893564343452, 0.030298840254545212, -0.0013238207902759314, -0.006652418989688158, -0.034422848373651505, -0.0072941649705171585, -0.01631368137896061, -0.022373449057340622, -0.0186141487210989, -0.008879243396222591, 0.035993900150060654, 0.027886154130101204, 0.022177066653966904, 0.005863386671990156, 0.023607846349477768, -0.011838991194963455, 0.010471334680914879, 0.006470064632594585, -0.01888066530227661, -0.022738156840205193, -0.017253505066037178, -0.0016473240684717894, -0.006564748473465443, -0.0011440968373790383, 0.020241307094693184, 0.007217015139758587, -0.024842243641614914, 0.025206951424479485, -0.0017683090409263968, -0.005470623727887869, -0.02738117426633835, -0.04429802671074867, -0.02480016089975834, 0.007178440224379301, -0.015977026894688606, -0.008065663278102875, -0.04090343415737152, -0.022177066653966904, 0.013508232310414314, 0.002354823052883148, 0.0004931451985612512, -0.014062308706343174, 0.02718479186296463, -0.02440739795565605, 0.039949581027030945, 0.006575269158929586, -0.005961577408015728, -0.018179303035140038, -0.010331062600016594, -0.015514127910137177, 0.008437384851276875, -0.013508232310414314, 0.010562512092292309, 0.01005051750689745, -0.014672493562102318, 0.008731957525014877, 0.0031613893806934357, 0.01240008044987917, -0.01604716293513775, -0.01566842757165432, 0.012848951853811741, -0.018740393221378326, -0.008591684512794018, -0.02313091978430748, -0.0002652025141287595, 0.014518193900585175, 0.00834620837122202, 0.0030579385347664356, 0.008577657863497734, 0.014020226895809174, -0.029513314366340637, -0.020620044320821762, -0.0004572003672365099, -0.01677658036351204, 0.02708660066127777, 0.028236834332346916, 0.035713355988264084, 0.021784303709864616, 0.019610082730650902, -0.01823541335761547, -0.003734752768650651, 0.003987242933362722, 0.011088533326983452, 0.021714167669415474, 0.022696075960993767, -0.01851595751941204, 0.016650334000587463, 0.01415348518639803, 0.023748118430376053, -0.023734090849757195, -0.020227281376719475, 0.032767634838819504, 0.029260823503136635, 0.009370196610689163, -0.023341327905654907, -0.015065256506204605, -0.024365317076444626, -0.006526173558086157, 0.006378887686878443, 0.018656229600310326, 0.007855254225432873, -0.01982049085199833, -0.013353932648897171, 0.004278308246284723, -0.017491968348622322, 0.019385647028684616, 0.01022585853934288, -0.008570644073188305, -0.012322930619120598, 0.02231733873486519, -0.008311140350997448, 0.003941654693335295, -0.012610489502549171, 0.013396014459431171, -0.02136348746716976, 0.006157958414405584, -0.013010265305638313, 0.0005146244075149298, -0.007785118650645018, -0.012687639333307743, 0.0031929505057632923, 0.0320943258702755, 0.007167920004576445, -0.008283085189759731, 0.011228806339204311, -0.022373449057340622, 0.0013650258770212531, 0.007052195258438587, 0.004681591410189867, -0.014300771988928318, -0.0202693622559309, -0.0006180753116495907, 0.029148606583476067, 0.009819068014621735, 0.0056670051999390125, -0.023144947364926338, -0.015696482732892036, -0.0005260215257294476, 0.0024845749139785767, -0.015598291531205177, -0.010253912769258022, -0.02099877968430519, -0.006568255368620157, -0.0047973161563277245, -0.0027247914113104343, 0.013325878418982029, -0.008605712093412876, 0.012701665982604027, 0.033132340759038925, 0.02377617172896862, -0.03265541419386864, -0.0049025206826627254, -0.009321101009845734, 0.005551280453801155, -0.021040860563516617, 0.00816385354846716, -0.013922035694122314, -0.012568407692015171, 0.022541776299476624, 0.0005720484186895192, -0.06228094920516014, -0.0014141211286187172, 0.020606016740202904, -0.0018638696055859327, -0.009643727913498878, 0.011579486541450024, 0.04314779117703438, 0.006252642255276442, 0.0032350323162972927, -0.009833095595240593, -0.012961170636117458, 0.022008739411830902, 0.0016780085861682892, 0.01119373831897974, 0.013550314120948315, 0.004281815141439438, 0.04452246055006981, -0.011263874359428883, 0.014027240686118603, -0.01520552858710289, -0.016818661242723465, -0.05338767543435097, 0.027409227564930916, 0.020479770377278328, -0.014265703968703747, -0.02738117426633835, -0.02848932519555092, 8.832778257783502e-05, -0.014686521142721176, 0.015991054475307465, 0.018642202019691467, 0.002279426669701934, 0.003927627112716436, 0.0005492541240528226, 0.013992172665894032, 0.03057938441634178, -0.004744714125990868, -0.022443585097789764, -0.027030492201447487, -0.012912075035274029, -0.007616791408509016, -0.03818214684724808, -0.0044185807928442955, 0.01239306665956974, 0.003924120683223009, -0.03936043754220009, -0.023944498971104622, -0.02202276699244976, -0.01973632723093033, -0.01005051750689745, -0.0249825157225132, 0.02690424770116806, 0.053668223321437836, 0.010541471652686596, 0.01161455549299717, 0.0186141487210989, -0.007953445427119732, -0.002028689719736576, -0.007813173346221447, 0.005996645428240299, 0.036358606070280075, -0.016818661242723465, 0.02268204838037491, -0.02008700743317604, -0.016271598637104034, 0.00301936361938715, 0.015977026894688606, 0.02405671775341034, 0.034871719777584076, 0.007764077745378017, -0.03464728221297264, 0.0008683738415129483, 0.003187690395861864, 0.0015561470063403249, 0.0005729250842705369, 0.008402316831052303, -0.003983736503869295, -0.045756857842206955, 0.0007513340678997338, 0.020690180361270905, 0.008374262601137161, -0.0031841835007071495, 0.01152337808161974, 0.017281560227274895, 0.00322626531124115, 0.00913173332810402, -0.02397255413234234, -0.02376214601099491, -0.009931285865604877, -0.03750884160399437, 0.04836592450737953, 0.006529680453240871, 0.012147590517997742, 0.012891033664345741, -0.002416192088276148, -0.025641795247793198, -0.0014982846332713962, 0.020311444997787476, -0.026665784418582916, -0.04090343415737152, 0.030074402689933777, -0.01432882621884346, -0.007890323176980019, 0.003955681808292866, 0.0015237090410664678, -0.014868875034153461, -0.021531814709305763, -0.004790302831679583, -0.02137751504778862, -0.014616384170949459, -0.0024354795459657907, 0.01760418713092804, -0.04909534007310867, -0.00829009898006916, 0.013466150499880314, -0.0024880818091332912, 0.024168934673070908, 0.006757623050361872, -0.034507010132074356, -0.01470054779201746, -0.02164403162896633, -0.008900283835828304, -0.008030595257878304, -0.024772105738520622, -0.01632770709693432, 0.007118824403733015, -0.003285881131887436, -0.015359828248620033, 0.19503475725650787, -0.01658019796013832, -0.0001469572598580271, 0.012322930619120598, -0.00525670824572444, 0.010892151854932308, -0.021419595927000046, -0.0029229263309389353, -0.011067492887377739, 0.032038215547800064, 0.004853425081819296, 0.005842345766723156, 0.005852865986526012, -0.008023581467568874, -0.007483532652258873, 0.006652418989688158, -0.03851880133152008, -0.02433726191520691, -0.032010164111852646, -0.0036540960427373648, 0.002211043843999505, -0.02708660066127777, 0.0004021872882731259, 0.003315689042210579, 0.044382188469171524, -0.009096665307879448, -0.0019532933365553617, 0.0024214524310082197, 0.026118721812963486, 0.01009259931743145, -0.03411424905061722, 0.0045974282547831535, 0.0019918682519346476, 0.008058649487793446, -0.005772209260612726, -0.012035372667014599, 0.03254319727420807, -0.008458426222205162, 0.03686358779668808, -0.0006075548590160906, 0.01050640270113945, -0.0026511484757065773, 0.03776133060455322, -0.0306074395775795, -0.015051228925585747, 0.012743747793138027, 0.0043729920871555805, -0.025094732642173767, 0.0021549349185079336, -0.010106626898050308, -0.0060317134484648705, 0.0193575918674469, 0.03748078644275665, 0.02091461606323719, 0.03776133060455322, -0.02111099660396576, 0.005937029607594013, -0.005498678423464298, -0.03806992992758751, 0.009608659893274307, -0.040230125188827515, 0.004948108922690153, -3.709547672769986e-05, -0.014434030279517174, -0.031028255820274353, 0.006007165648043156, 0.004390526097267866, -0.024856269359588623, -0.0007864021463319659, -0.011067492887377739, 0.015065256506204605, -0.0027651197742670774, -0.01565439999103546, 0.015906890854239464, -0.021728195250034332, -0.01860012114048004, 0.005263722036033869, 0.037172187119722366, 0.006371873896569014, 0.033132340759038925, 0.012884020805358887, 0.013508232310414314, 0.006459544412791729, -0.008949379436671734, -0.018544012680649757, -0.02119516022503376, 0.03835047408938408, 0.00511292926967144, -0.009889204986393452, 0.0017560351407155395, -0.021798331290483475, -0.005544266663491726, -0.011488310061395168, 0.01478471141308546, -0.025277087464928627, -0.008276072330772877, 0.005119942594319582, 0.005677525419741869, -0.0007544025429524481, -0.007799145765602589, -0.04275503009557724, 0.034703392535448074, 0.03049522079527378, -0.009910245425999165, -0.0373966246843338, -0.00502175185829401, 0.00534788565710187, 0.02192457765340805, 0.013396014459431171, -0.004944602493196726, -0.008212949149310589, -0.019610082730650902, -0.009152774699032307, -0.012975197285413742, 0.004716659430414438, 0.0407070517539978, 0.009236937388777733, 0.0076588732190430164, -0.00048043299466371536, -0.014882901683449745, 0.01054848451167345, -0.021545840427279472, 0.007953445427119732, 0.0009398250840604305, -0.017015041783452034, -0.02397255413234234, 0.003126321127638221, -0.01897885650396347, -0.01520552858710289, -0.038743238896131516, 0.026287049055099487, 0.008002541027963161, 0.016916852444410324, -0.009454360231757164, 0.01667838916182518, -0.018838584423065186, 0.009321101009845734, -0.014125430956482887, 0.012701665982604027, 0.02367798238992691, 0.004211679100990295, 0.011775868013501167, 0.017744459211826324, 0.012042385526001453, 0.0006925949710421264, -0.02155986800789833, 0.030551329255104065, -0.006427982822060585, -0.01705712452530861, -0.02698841132223606, 0.019469810649752617, -0.021237242966890335, -0.0023372890427708626, 0.016089245676994324, 0.03178572654724121, -0.0077921319752931595, -0.023088837042450905, -0.04107176139950752, -0.0035190838389098644, -0.025403331965208054, -0.029793858528137207, -0.0028159685898572206, 0.031841836869716644, -0.005379446782171726, -0.02091461606323719, 0.00576168904080987, -0.18022198975086212, 0.007017127238214016, 0.004734193440526724, -0.033048179000616074, 0.00972789153456688, 0.009040556848049164, 0.007736023049801588, -0.006273683160543442, -0.00737131480127573, 0.011341024190187454, 0.025192923843860626, 0.0007815802819095552, -0.01018377672880888, 0.005102408584207296, 0.02948525920510292, -0.0018901706207543612, 0.005645964294672012, 0.0041801175102591515, 0.02036755345761776, -0.00011627266940195113, 0.031477127224206924, -0.03290790691971779, 0.01156545989215374, -0.0034314137883484364, -0.020591989159584045, 0.02423907071352005, -0.040117908269166946, 0.011761841364204884, 0.01815124973654747, 0.0026230940129607916, -0.026778001338243484, 0.007939417846500874, -0.003364784410223365, 0.019147183746099472, -0.007097783498466015, -0.007364301010966301, -0.017940839752554893, -0.012554380111396313, -0.022191094234585762, 0.04146452248096466, 0.013094428926706314, 0.029906077310442924, -0.012133562937378883, 0.0011554938973858953, -0.006547214463353157, 0.040398452430963516, 0.05004919320344925, 0.01677658036351204, 0.017758486792445183, -0.03969709202647209, -0.014770683832466602, -0.020507825538516045, -0.013325878418982029, 0.00913173332810402, 0.008858202025294304, 0.02414088137447834, 0.0004048174014315009, 0.0004387896042317152, -0.006845293566584587, -0.023846309632062912, 0.009622686542570591, -0.017477940768003464, -0.007904349826276302, -0.016159381717443466, -0.01684671640396118, -0.0048569319769740105, -0.021335432305932045, 0.012365012429654598, -0.0357414074242115, 0.021545840427279472, -0.008500508032739162, 0.0040398454293608665, -0.012161617167294025, -0.0031947039533406496, 0.027409227564930916, -0.012407094240188599, -0.043821100145578384, 0.0241549089550972, 0.028587516397237778, 0.0013168072327971458, 0.00693647051230073, 0.0466546006500721, -0.007024140562862158, 0.007897336035966873, 0.012877007015049458, -0.005446075927466154, 0.00301936361938715, -0.006228094920516014, 0.0015377362724393606, -0.014770683832466602, 0.008486480452120304, -0.0018743900582194328, 0.03302012383937836, -0.01806708611547947, -0.0005229530506767333, 0.005007724743336439, 0.006698007229715586, 0.012168630957603455, 0.000952098926063627, -0.02256982959806919, 0.0005952810170128942, 0.0010301254224032164, -0.006536694243550301, 0.020970724523067474, 0.047496236860752106, 0.007700955029577017, -0.01909107342362404, 0.011235819198191166, 0.030383002012968063, -0.014868875034153461, -0.009089651517570019, 0.02230331301689148, 0.00742041040211916, 0.004600934684276581, -0.011446228250861168, 0.009328114800155163, 0.005495171528309584, -0.01110256090760231, 0.006442010402679443, 0.0016876523150131106, 0.03669526055455208, 0.006620857398957014, -0.0023706036154180765, 0.025319168344140053, -0.022064849734306335, -0.02258385717868805, -0.08029192686080933, -0.031925998628139496, -2.74243502644822e-05, 0.02450558915734291, -0.02074628882110119, 0.006582282483577728, -0.009566578082740307, 0.022177066653966904, 0.012891033664345741, 0.027591582387685776, 0.01395710464566946, -0.031477127224206924, -0.024126853793859482, -0.005323337856680155, 0.012554380111396313, -0.01970827206969261, 0.010758893564343452, -0.015878835693001747, -0.020255334675312042, 0.02829294465482235, 0.0021689620334655046, -0.010253912769258022, -0.0020164158195257187, -0.010962288826704025, -0.028363080695271492, -0.018768448382616043, -0.03989347070455551, 0.021686114370822906, -0.008269058540463448, 0.001825294690206647, 0.03641471639275551, -0.00332971615716815, 0.021125024184584618, -0.017954867333173752, 0.00037500952021218836, -0.01778654009103775, -0.042979463934898376, -0.018726365640759468, 0.01990465447306633, -0.06278593093156815, 0.02008700743317604, 0.022261230275034904, 0.020521853119134903, -0.02203679457306862, 0.0054601035080850124, -0.022345393896102905, 0.0125754214823246, 0.03593778982758522, -0.004955122712999582, -0.018656229600310326, -0.0024442465510219336, 0.015443991869688034, -0.018207358196377754, -0.032122381031513214, 0.01211252249777317, -0.012414108030498028, 0.0054881577380001545, 0.024856269359588623, -0.022541776299476624, -0.023734090849757195, -0.009608659893274307, -0.019511891528964043, -0.028685707598924637, 0.015093310736119747, 0.018501929938793182, 0.01687476970255375, -0.017295587807893753, -0.008198922500014305, 0.02294856496155262, -0.0019375125411897898, -0.013283796608448029, 0.019792435690760612, -0.014097376726567745, -0.0007732516387477517, -0.006477078422904015, 0.013760723173618317, 0.009615673683583736, -0.024631833657622337, -0.005032272543758154, -0.004011790733784437, 0.0061193834990262985, -0.015528155490756035, -0.02433726191520691, 0.011902113445103168, 0.011853017844259739, 0.0077921319752931595, 0.005663498304784298, 0.009342142380774021, -0.008416344411671162, -0.03489977493882179, 0.026974383741617203, 0.008304126560688019, 0.008893270045518875, -0.002630107570439577, -0.017449887469410896, 0.023663954809308052, 0.02203679457306862, -0.00507084745913744, -0.009433318860828876, 0.004011790733784437, -0.03245903551578522, -0.004860438872128725, -0.0774303674697876, 0.03237487003207207, 0.014630411751568317, 0.013213660567998886, -0.02119516022503376, -0.0027142709586769342, 0.001156370621174574, -0.01816527731716633, -0.011881073005497456, 0.02875584363937378, -0.015682455152273178, 0.020395606756210327, -0.019427727907896042, -0.013164564967155457, 0.005323337856680155, -0.01851595751941204, 0.030747711658477783, 0.012049399316310883, 0.030663548037409782, -0.02258385717868805, 0.0015657907351851463, -0.0001332587853539735, 0.010983329266309738, 0.020437689498066902, 0.015458019450306892, 0.03265541419386864, -0.009012501686811447, 0.002214550506323576, -0.011341024190187454, -0.026020530611276627, 0.031168527901172638, -0.015107338316738605, 0.003955681808292866, 0.021068915724754333, -0.016285626217722893, -0.026301076635718346, -0.001457956270314753, 0.020241307094693184, 0.012666597962379456, -0.014160498976707458, -0.0014728602254763246, 0.0019129649735987186, 0.0024600273463875055, -0.008858202025294304, -0.008128785528242588, -0.01723947934806347, -0.022471638396382332, -0.006389407906681299, -0.003948668017983437, 0.007623805198818445, 0.039304327219724655, 0.015542182140052319, -0.04239032045006752, -0.009643727913498878, -0.008058649487793446, -0.009405264630913734, 0.0129892248660326, -0.006666446104645729, 0.007076742593199015, 0.01752002350986004, 0.052938804030418396, 0.022373449057340622, 0.046486273407936096, -0.008226976729929447, -0.0032332788687199354, 0.0022917003370821476, -0.04062288999557495, -0.01189509965479374, 0.029092496261000633, 0.003394592087715864, -0.0012957663275301456, -0.0137747498229146, -0.002700243843719363, 0.03215043619275093, 0.016524089500308037, 0.013515246100723743, -0.034871719777584076, 0.011656636372208595, -0.015317746438086033, 0.016832688823342323, 0.026104694232344627, -0.018740393221378326, -0.006312258075922728, 0.013241714797914028, 0.0007885938975960016, 0.014041267335414886, -0.011116588488221169, 0.015009147115051746, -0.002635367913171649, 0.0012931362725794315, -0.027801990509033203, -0.01750599592924118, 0.0012519311858341098, -0.0021374006755650043, 0.031925998628139496, 0.002723037963733077, -0.0132767828181386, 0.009692823514342308, 0.016383817419409752, -0.001939265988767147, 0.013290810398757458, -0.007946431636810303, -0.01806708611547947, -0.002616080455482006, -0.01023287232965231, -0.0028352560475468636, -0.007616791408509016, -0.03254319727420807, 0.001139713334850967, -0.0007693064981140196, 0.02228928543627262, 0.0007022386998869479, 0.006136917509138584, 0.026974383741617203, -0.0023407957050949335, -0.009440332651138306, -0.005645964294672012, -0.012582434341311455, -0.02367798238992691, 0.0436808280646801, 0.012666597962379456, 0.0015456265537068248, 0.01345212385058403, -0.0022671527694910765, 0.034142304211854935, -0.01669241674244404, 0.04272697493433952, -0.02984996698796749, 0.025389304384589195, -0.023060783743858337, 0.00017194327665492892, 0.0013036566087976098, -0.0405387245118618, -0.01390800904482603, -0.027170764282345772, 0.01059758011251688, 0.007686927914619446, 0.011116588488221169, 0.004664057400077581, 0.08450009673833847, 0.011495323851704597, -0.025655822828412056, -0.003948668017983437, 0.009250964969396591, 0.019778409972786903, 0.0260626133531332, 0.02895222418010235, -0.015584263950586319, -0.03302012383937836, 0.013262756168842316, -0.011249846778810024, -0.00833919458091259, -0.013417055830359459, -0.031112419441342354, -0.005638950504362583, -0.005908974912017584, 0.01613132655620575, 0.011256860569119453, -0.022541776299476624, 0.019469810649752617, -0.005144490394741297, 0.016734497621655464, 0.01677658036351204, -0.016720470041036606, -0.025768041610717773, 0.02256982959806919, -0.0031122940126806498, -0.009370196610689163, -0.026609675958752632, 0.004341430962085724, -0.009335128590464592, -0.004888493102043867, -0.02129335142672062, 0.011123601347208023, -0.010478348471224308, -0.025192923843860626, -0.02230331301689148, 0.006094836164265871, 0.00435195118188858, -0.006375380791723728, -0.00015890233044046909, -0.028447244316339493, -0.01349420566111803, -0.006168479099869728, -0.011130615137517452, 0.017463915050029755, 0.007757063955068588, -0.03024272993206978], "ffdf9f90-fc3a-4461-a76f-81e03fe84ba5": [-0.02913755178451538, -0.010724624618887901, -0.0286639966070652, 0.012138325721025467, -0.008572735823690891, 0.027145836502313614, -0.026602640748023987, -0.01860792003571987, -0.010968366637825966, -0.02415129728615284, 0.020223578438162804, -0.0013179449597373605, -0.00518821133300662, -0.00021664699306711555, -0.009192535653710365, -0.004725102800875902, 0.007723122835159302, -0.030530361458659172, 0.00705457478761673, -0.024805918335914612, -0.029053984209895134, 0.014763769693672657, -0.007750978693366051, 0.02242421545088291, -0.027758672833442688, -0.013809695839881897, 0.014032544568181038, -0.03465307503938675, -0.004718138370662928, 0.00942234881222248, 0.001496398588642478, -0.001496398588642478, -0.04323277249932289, 0.020975694060325623, -0.00989590398967266, -0.023259900510311127, 0.007778835017234087, 0.003781474893912673, 0.03495949134230614, -0.010111789219081402, 0.03983432054519653, 0.006030860356986523, 0.0012204484082758427, -0.03874792903661728, -0.020933911204338074, 0.01741010509431362, 0.016435138881206512, -0.015864087268710136, -0.0010298077249899507, 0.0022650547325611115, 0.03147746995091438, 0.004359490238130093, -0.03384524583816528, 0.008022576570510864, 0.030056806281208992, -0.016630131751298904, 0.02416522614657879, 0.01624014601111412, 0.008447383530437946, -0.009039326570928097, 0.006518343463540077, -0.02841329202055931, -0.0011125056771561503, -7.758378342259675e-05, -0.005581679753959179, -0.006138802971690893, 0.002674192190170288, 0.017075831070542336, -0.02362203039228916, -0.017995085567235947, 0.010836049914360046, 0.011239963583648205, 0.0063825445249676704, -0.00883040577173233, 0.00011545076267793775, -0.008001684211194515, -0.015056258998811245, -0.012270642444491386, 0.02676977775990963, 0.011330496519804, 0.01770259439945221, -0.017340464517474174, -0.02603158913552761, 0.00896968599408865, 0.03743869066238403, -0.00869808904826641, 0.010083933360874653, 0.008927902206778526, -0.023037051782011986, -0.01883077062666416, 0.010327674448490143, 0.011713518761098385, 0.010494811460375786, 0.006389508489519358, 0.005832385271787643, 0.013816659338772297, 0.004025216214358807, 0.03777296468615532, -0.0063546886667609215, -0.024555211886763573, -0.0033148841466754675, -0.014150933362543583, -0.023594174534082413, 0.018315430730581284, -0.031115340068936348, 0.0018524351762607694, 0.0055921259336173534, 0.011469777673482895, 0.018580064177513123, 0.010961402207612991, -0.0202792901545763, 0.02363595925271511, -0.028399363160133362, -0.011790123768150806, -0.006204961333423853, -0.007890259847044945, 0.006793423090130091, -0.019053619354963303, -0.028636140748858452, -0.02146317809820175, 0.010975330136716366, 0.0023695153649896383, 0.0014067365555092692, -0.0167137011885643, 0.013350068591535091, 0.017619026824831963, 0.003119890810921788, -0.01933218166232109, 0.014471279457211494, -0.012953118421137333, 0.029304688796401024, -0.0024165227077901363, 0.005181247368454933, 0.0008169692009687424, -0.004011288285255432, 0.03504306077957153, -0.014540920034050941, -0.018092582002282143, -0.01859399303793907, -0.011567274108529091, 0.005101161077618599, 0.04426345229148865, -0.008078289218246937, 0.005769709125161171, -0.02703441120684147, 0.0018924784380942583, 0.00787633191794157, 0.0011969447368755937, 0.0034280498512089252, -0.006699408404529095, -0.001105541712604463, -0.01813436485826969, -0.005045448429882526, -0.02150496281683445, 0.007897223345935345, 0.027340829372406006, 0.004282885696738958, 0.006915293633937836, -0.021574603393673897, -0.01867756061255932, 0.0037745109293609858, 0.03225744143128395, 0.012124397791922092, -0.003264394821599126, 0.02291169948875904, 0.03565589711070061, -0.0008557066903449595, 0.013475421816110611, -0.0038650433998554945, -0.0008570124628022313, -0.027758672833442688, 0.015334820374846458, -0.017855804413557053, 0.013210788369178772, 0.016602275893092155, 0.006298976019024849, 0.005487665068358183, -0.01572480797767639, -0.005035002250224352, -0.015265180729329586, -0.017981156706809998, 0.004888757597655058, 0.03390095755457878, 0.02098962292075157, -0.012925262562930584, 0.00770919444039464, 0.010202322155237198, -0.041449978947639465, 0.012263678014278412, 0.01289044227451086, 0.028106873854994774, 0.026964770630002022, -0.02243814431130886, -0.01374005526304245, -0.6141728162765503, -0.056269459426403046, 0.01768866740167141, 0.01074551697820425, -0.0024461199063807726, 0.002061356557533145, 0.005449363030493259, 0.00907414685934782, -0.022089941427111626, 0.050753939896821976, -0.021672099828720093, 0.02799544855952263, -0.0015869310591369867, -0.007207783404737711, 0.011643878184258938, 0.013705234974622726, -0.015139827504754066, -0.0035795175936073065, 0.005296153947710991, 0.010926581919193268, -0.012214929796755314, 0.019931089133024216, -0.0006589724798686802, -0.010466955602169037, 0.005884615704417229, -0.03105962835252285, 0.03983432054519653, 0.0023033570032566786, 0.004655462224036455, 0.0179393719881773, -0.03724369779229164, 0.008865226060152054, 0.01374005526304245, -0.02197851613163948, 0.06295493990182877, -0.0023120620753616095, -0.03484806790947914, 0.005069822538644075, 0.03242458030581474, -0.0032052004244178534, -0.01722904108464718, -0.004568411502987146, 0.017368320375680923, -0.00770919444039464, 0.005442399065941572, -0.01837114244699478, 0.02888684719800949, -0.005031520500779152, 0.008001684211194515, -0.03328812122344971, 0.023106692358851433, -0.004080928862094879, -0.02555803395807743, 0.006097018718719482, -0.009060218930244446, 0.0003416733234189451, 0.02891470305621624, 0.0023938894737511873, 0.013830587267875671, -0.013489349745213985, -0.02243814431130886, -0.0022511265706270933, 0.009241283871233463, -0.007319208234548569, -0.0382465198636055, 0.011407100595533848, 0.005898543633520603, -0.013642558827996254, 0.006890919525176287, -0.011393172666430473, 0.00812007300555706, 0.02298133820295334, 0.009561629965901375, -0.009471097029745579, 0.008106145076453686, 0.018719345331192017, 0.0262683667242527, -0.018788985908031464, 0.00675163883715868, 0.010418207384645939, 0.022145653143525124, -0.010675876401364803, -0.015209468081593513, -0.015334820374846458, 0.013301320374011993, 0.0016356793930754066, -0.008544879965484142, 0.017758307978510857, 0.002689861226826906, -0.024499500170350075, 0.022660993039608, -0.017145471647381783, -0.007750978693366051, -0.024917343631386757, 0.026101229712367058, 0.02746618166565895, -0.002500091213732958, 0.007186891511082649, 0.009972508065402508, 0.00047964841360226274, -0.009004506282508373, -0.007681338582187891, 0.009875011630356312, 0.0012091317912563682, 0.026574784889817238, 0.012556168250739574, -0.021407466381788254, -0.01980573497712612, 0.03231315687298775, -0.01576659083366394, 0.005606053862720728, -0.0038859355263412, -0.010097861289978027, -0.020404644310474396, 0.007925080135464668, -0.027870096266269684, 0.029555395245552063, -0.012625808827579021, 0.005560787860304117, -0.003050250466912985, 0.009067182429134846, -0.012709377333521843, -0.0031547110993415117, -0.0014058660017326474, 0.0215328186750412, 0.01326650008559227, 0.02941611409187317, -0.014401638880372047, 0.015474101528525352, -0.004547519609332085, -0.0016922622453421354, -0.026825489476323128, 0.03504306077957153, 0.005313564091920853, 0.008050432428717613, -0.024053800851106644, 0.009770550765097141, 0.01002822071313858, 0.016630131751298904, -0.030279655009508133, -0.029722532257437706, 0.005821939092129469, 0.004732066765427589, -0.007869367487728596, -0.0057348888367414474, -0.03326026350259781, -0.03651943802833557, 0.014227538369596004, -0.017521530389785767, 0.023594174534082413, 0.0034419777803122997, 0.005181247368454933, 0.003844151273369789, 0.0034506828524172306, -0.02724333293735981, -0.010209285654127598, -0.003805849002674222, -0.052425310015678406, -0.004255029838532209, -0.014095221646130085, -0.021644242107868195, 0.038608647882938385, -0.006647178437560797, -0.009394492954015732, 0.008767728693783283, -0.006901365704834461, -0.01551588624715805, 0.011309604160487652, -0.0030136893037706614, -0.02082248590886593, -0.00029967143200337887, -0.018538279458880424, -0.019931089133024216, 0.0018350251484662294, -0.01002822071313858, 0.014554847963154316, -0.029750388115644455, -0.030251799151301384, -5.598436837317422e-05, 0.000533184502273798, 0.005501593463122845, 0.03217387571930885, -0.008913974277675152, 0.0022650547325611115, 0.016657989472150803, -0.0031320778653025627, 0.03699299320578575, 0.02793973684310913, 0.0009688723366707563, 0.042675651609897614, -0.019025763496756554, 0.023371325805783272, -0.01962467096745968, 0.007688302546739578, -0.03431880101561546, 0.041004281491041183, -0.016560493037104607, 0.004335116129368544, -0.006998862139880657, 0.003791920840740204, 0.02220136672258377, 0.03657514974474907, 0.02795366570353508, -0.001775830751284957, -0.020975694060325623, -0.01937396451830864, 0.008739872835576534, -0.04317706078290939, 0.03055821731686592, 0.011560309678316116, 0.01196422427892685, 0.0062119257636368275, -0.01037642266601324, 0.015265180729329586, 0.008642376400530338, -0.002674192190170288, -0.020237507298588753, 0.021797452121973038, -0.02246600016951561, -0.012618844397366047, -0.007959900423884392, -0.029583251103758812, 0.024095585569739342, -0.013092399574816227, -0.015613382682204247, -0.011790123768150806, 0.02124032936990261, 0.01796722784638405, 0.009018434211611748, 0.008677196688950062, 0.030725354328751564, 0.02771688811480999, 0.01037642266601324, -0.004216727335005999, 0.011177287437021732, -0.012980974279344082, 0.02105926349759102, -0.002841329202055931, 0.030530361458659172, -0.010251070372760296, -0.01527910865843296, 0.0072426036931574345, 0.027911880984902382, -0.019931089133024216, 0.0026393719017505646, 0.001265714643523097, 0.03537733480334282, -0.00017921527614817023, -0.009693946689367294, 0.011212107725441456, -0.01507018692791462, 0.011344424448907375, -0.0035255462862551212, -0.011379244737327099, 0.030892491340637207, -0.01795330084860325, -0.008161857724189758, 0.0029823509976267815, 0.03796795755624771, 0.017827948555350304, 0.011379244737327099, -0.0014824704267084599, 0.012834729626774788, 0.009032363072037697, 0.014652344398200512, 0.0010611459147185087, -0.03749440237879753, -0.0003536427684593946, 7.44282006053254e-05, -0.02799544855952263, 0.0028778903651982546, -0.005922917742282152, -0.0067411926575005054, -0.02339918166399002, 0.0014824704267084599, 0.0034019346348941326, 0.025376969948410988, 0.02247992716729641, 0.012695448473095894, 0.004199317190796137, -0.030001092702150345, -0.03916577249765396, 0.005898543633520603, 0.011985116638243198, 0.002722940407693386, -0.017354393377900124, -0.00872594490647316, 0.026714066043496132, -0.010661948472261429, -0.0003503783664200455, 0.0027769117150455713, 0.011163359507918358, -0.019889304414391518, 0.00033819128293544054, -0.0008387318230234087, 0.03961146995425224, -0.008029541000723839, 6.931398093001917e-05, 0.012737233191728592, -0.00597166595980525, -0.01148370560258627, -0.0023033570032566786, -0.025223759934306145, 0.00933878030627966, 0.015251251868903637, -0.01936003752052784, -0.005658284295350313, -0.007395812775939703, -0.03292598947882652, -0.02679763361811638, 0.019652526825666428, 0.021114975214004517, -0.015836231410503387, -0.01579444669187069, -0.006897883955389261, 0.019708238542079926, -0.010905689559876919, -0.004084410611540079, 0.020209649577736855, -0.020724989473819733, 0.0034193447791039944, -0.014708057045936584, 0.006995380390435457, 0.01507018692791462, 0.026644425466656685, 0.046269096434116364, 0.02415129728615284, 0.013781839050352573, -0.02122640050947666, 0.028636140748858452, -0.030669640749692917, -0.03699299320578575, 0.022897770628333092, -0.012402959167957306, -0.015961583703756332, -0.016671916469931602, 0.007106805220246315, 0.018217934295535088, 0.016059082001447678, -0.007918115705251694, 0.030753210186958313, 0.0025575445033609867, 0.018231863155961037, -0.01580837555229664, 0.01063409261405468, -0.004756440874189138, 0.000481824652524665, 0.025697315111756325, 0.010843013413250446, 0.016421211883425713, 0.022298863157629967, 0.012577059678733349, 0.00041610150947235525, -0.016073008999228477, -0.0011481964029371738, 0.027340829372406006, 0.01842685602605343, 0.024039873853325844, 0.006849135272204876, 0.048135459423065186, -0.0077440147288143635, -0.016894767060875893, 0.01013268157839775, 0.019652526825666428, -0.006316386163234711, 0.01149066910147667, 0.007012790534645319, 0.0016905212542042136, 0.016546564176678658, -0.021853163838386536, 0.0004193659115117043, 0.010578379966318607, -0.005327492021024227, -0.0026881203521043062, 0.028552573174238205, 0.005449363030493259, -0.01385147962719202, 0.0018872554646804929, 0.011852799914777279, 0.01629585772752762, -0.015446245670318604, -8.21539360913448e-05, -0.014666272327303886, -0.014610560610890388, -0.017814019694924355, -0.0335388258099556, 0.02104533463716507, -0.013238644227385521, -0.023538462817668915, -0.03802366927266121, -0.016546564176678658, -0.0006319868261925876, 0.00013851915718987584, 0.023287756368517876, 0.005445880815386772, -0.001009786152280867, -0.03646372631192207, 0.025850525125861168, 0.006110947113484144, 0.014199681580066681, 0.022145653143525124, -0.035265907645225525, -0.005066340789198875, 0.023803096264600754, -0.00011262161569902673, -0.02126818522810936, 0.018775057047605515, -0.02385880798101425, -0.01507018692791462, -0.009359672665596008, 0.0073609924875199795, -0.0071659991517663, -0.019972871989011765, -0.0024165227077901363, -0.01098229456692934, 0.01278598140925169, -0.017270823940634727, 0.009714839048683643, 0.031198909506201744, -0.005167319439351559, 0.004073964431881905, 0.03234101086854935, 0.015641238540410995, -0.0008874800987541676, -0.0038824535440653563, -0.01504233106970787, -0.006842171307653189, 0.010223213583230972, 0.0003516841388773173, 0.013928084634244442, -0.002120550721883774, 0.04401274770498276, -0.00992375984787941, -0.021602459251880646, -0.00010777943680295721, 0.004815635271370411, 0.0007473287987522781, -0.005048930644989014, 0.012590988539159298, -0.01183190755546093, 0.028385436162352562, 0.015125899575650692, 0.020251434296369553, -0.008391670882701874, -0.003194754244759679, -0.003945129923522472, 0.014060401357710361, -0.0015512403333559632, -0.025502322241663933, 0.013656486757099628, 0.0017714782152324915, -0.045516978949308395, -0.01421361044049263, 0.01362863089889288, -0.012813837267458439, 0.01601729728281498, 0.01541838888078928, -0.052453164011240005, -0.04228566214442253, 0.010230178013443947, -0.006612358149141073, 0.0029196746181696653, -0.0009410161874257028, -0.02339918166399002, -0.020432500168681145, 0.017270823940634727, -0.014777697622776031, -0.02727118879556656, -0.009958580136299133, -0.023984160274267197, -0.006654142402112484, 0.012194037437438965, -0.0022894288413226604, 0.04897114261984825, -0.007514201570302248, 0.00825238972902298, -0.017619026824831963, -0.03543304651975632, -0.024220937862992287, -0.02988966926932335, -0.023050978779792786, 0.001767125679180026, 0.052230317145586014, 0.008879153989255428, 0.024415932595729828, -0.009512881748378277, 0.014485207386314869, -0.0017679962329566479, 0.005672212224453688, -0.020738918334245682, 0.0018106509232893586, -0.022563496604561806, -0.008064360357820988, 0.01206868514418602, 0.013203823938965797, 0.010111789219081402, 0.01835721544921398, 0.0038963814731687307, 0.0038580794353038073, 0.007521165534853935, 0.0027281634975224733, -0.00705457478761673, -0.02195066027343273, -0.03392881155014038, -0.0358230322599411, 0.0011873692274093628, -0.011386209167540073, 0.0015895426040515304, -0.03685371205210686, -0.022298863157629967, 0.007660446222871542, 0.0036665680818259716, 0.00873290840536356, -0.009345744736492634, 0.03434665501117706, -0.005529449321329594, 0.027299044653773308, 0.011065863072872162, 0.01625407487154007, -0.0016896507004275918, -0.0059507740661501884, -0.01789758913218975, -0.0006472206441685557, 0.010459991171956062, 0.017827948555350304, 0.021114975214004517, -0.0002970599161926657, 0.005456326995044947, -0.012103505432605743, 0.01741010509431362, -0.03139390051364899, -0.010223213583230972, 0.0002576695696916431, -0.01717332750558853, -0.01622621901333332, -0.020223578438162804, 0.0125422403216362, 0.0005784507375210524, -0.005849795415997505, -0.005989076104015112, 0.0016060821944847703, 0.01241688709706068, -0.029499681666493416, -0.03746654838323593, -0.005397132597863674, 0.0027090124785900116, 0.025711243972182274, 0.03250814974308014, 0.03253600373864174, 0.005665248259902, 0.004954915959388018, -0.0023938894737511873, -0.003112926846370101, 0.00490616774186492, 0.00846131145954132, 0.015098043717443943, 0.023037051782011986, -0.009624306112527847, -0.00316863926127553, 0.00046615555766038597, -0.0013762688031420112, -0.005564269609749317, -0.022034229710698128, 0.04284278675913811, 0.02321811579167843, 0.008746837265789509, -0.022354574874043465, -0.006636732257902622, -0.024722348898649216, 0.018538279458880424, 0.005421506706625223, 0.007806691341102123, 0.023552389815449715, -0.01646299473941326, -0.023009195923805237, 0.016309786587953568, -0.018078653141856194, 0.03225744143128395, 0.014304142445325851, -0.011929403990507126, -0.0037745109293609858, 0.01844078302383423, -0.01052963174879551, 0.012667592614889145, -0.02196458913385868, 0.013837551698088646, -0.035238053649663925, 0.015460173599421978, -0.014137005433440208, -0.009603413753211498, -0.017047975212335587, -0.009498953819274902, -0.0013144629774615169, 0.026226582005620003, 0.005839349236339331, -0.004979290068149567, 0.023817023262381554, -0.0359066016972065, 0.027368685230612755, -0.028343651443719864, 0.010487847030162811, -0.00957555789500475, -0.022647064179182053, -0.0076952665112912655, 0.03245243802666664, 0.029081840068101883, 0.0038824535440653563, -0.011971188709139824, 0.005069822538644075, -0.00873290840536356, 0.007019754499197006, -0.02124032936990261, 0.0037362086586654186, -0.023886663839221, -0.0062119257636368275, -0.028023306280374527, -0.011079791001975536, 0.017619026824831963, -0.003264394821599126, 0.005700068548321724, 0.0021518890280276537, 0.037856534123420715, -0.005957738030701876, -0.003126855008304119, -0.025028767064213753, -0.005087232682853937, -0.03568375110626221, 0.0095546655356884, -0.0038754893466830254, -0.01159512996673584, 0.013935048133134842, -0.0014293696731328964, -0.04470914974808693, -0.02487555891275406, 0.02009822614490986, 0.013447565026581287, -0.0014859525253996253, 0.01196422427892685, 0.05933363735675812, -0.00968001876026392, -0.002195414388552308, 0.002158852992579341, -0.018217934295535088, 0.044820576906204224, -0.013489349745213985, -0.0015303482068702579, 0.02174174040555954, -0.013691307045519352, 0.0023451412562280893, -0.006156213115900755, -0.011309604160487652, -0.015460173599421978, -0.051533911377191544, -0.02342703752219677, 0.026101229712367058, 0.005132499150931835, -0.024555211886763573, -0.024304507300257683, -0.014596632681787014, -0.020683204755187035, 0.0027978038415312767, 0.005271779838949442, 0.008280246518552303, 0.00872594490647316, -0.0011273042764514685, 0.00814792886376381, 0.0038650433998554945, 0.006312904413789511, -0.011344424448907375, -0.04225780814886093, -0.022271007299423218, -0.010244105942547321, -0.021588530391454697, -0.03479235619306564, -0.0014850819716230035, 0.0008805160759948194, 8.922679262468591e-05, -0.038608647882938385, -0.018788985908031464, -0.02174174040555954, 2.0103230781387538e-05, -0.024959126487374306, -0.012953118421137333, 0.0202653631567955, 0.05994647368788719, 0.014401638880372047, -0.006681998260319233, 0.025934092700481415, -0.010202322155237198, 0.013001866638660431, -0.012033864855766296, 0.002005644142627716, 0.01987537555396557, -0.012876514345407486, 0.01931825280189514, -0.0077161588706076145, -0.04016859456896782, 0.01674155704677105, 0.010926581919193268, 0.01789758913218975, -0.0027595018036663532, 0.017131542786955833, -0.015933727845549583, 0.010195357725024223, 0.00045179223525337875, 0.0006724653067067266, 0.014004688709974289, -0.018983978778123856, 0.0012787722516804934, -0.041923534125089645, 0.009979472495615482, 0.013447565026581287, 0.016435138881206512, 0.0035725536290556192, 0.001752327079884708, 0.01551588624715805, 0.004101820755749941, 0.023984160274267197, -0.022368503734469414, -0.00992375984787941, -0.0015590749680995941, -0.014972690492868423, 0.033093128353357315, 0.00870505254715681, 0.0001854176225606352, 0.028747566044330597, -0.004749476909637451, -0.004164497368037701, 0.0013118514325469732, 0.018747201189398766, -0.013189896009862423, -0.023482749238610268, 0.047773327678442, -0.003767546731978655, 0.002164076082408428, 0.01398379635065794, -0.022800274193286896, -0.00896968599408865, -0.01747974567115307, 0.002856998238712549, -0.00753509346395731, -0.02103140763938427, -0.00381977716460824, 0.007750978693366051, -0.0478568971157074, -0.01816222257912159, 0.009930724278092384, -0.017814019694924355, 0.020724989473819733, 0.015111971646547318, -0.03755011409521103, 0.0025087962858378887, 0.004791261162608862, 0.012632772326469421, -0.013907192274928093, -0.02484770305454731, 0.019513245671987534, 0.0007538575446233153, -0.007423669099807739, -0.009380565024912357, 0.20034156739711761, -0.021198544651269913, 0.014157897792756557, 0.013461493887007236, -0.0071659991517663, 0.016309786587953568, -0.029778243973851204, -0.014513064175844193, -0.02176959626376629, 0.02461092546582222, 0.014053436927497387, 0.019763952121138573, 0.005689622368663549, -0.0024078176356852055, 0.0025906236842274666, 0.00675163883715868, -0.022382430732250214, -0.04880400747060776, -0.028858991339802742, -0.027563678100705147, -0.01074551697820425, -0.021073192358016968, 0.019053619354963303, -0.007200819440186024, 0.015696950256824493, 0.019652526825666428, 0.0017140249256044626, -0.00447091506794095, 0.024931270629167557, 0.01838507130742073, -0.044792719185352325, -0.009589485824108124, 0.009283068589866161, 0.014143969863653183, 0.012723305262625217, -0.017758307978510857, 0.008433454670011997, -0.008349886164069176, 0.02941611409187317, -0.008802548982203007, 0.020711060613393784, -0.014074329286813736, 0.03376167640089989, -0.02936040237545967, -0.01933218166232109, 0.005243923515081406, 0.0009088075021281838, -0.024736277759075165, 0.005804528947919607, 0.005219549406319857, -0.011156395077705383, 0.03654729202389717, 0.017493674531579018, 0.013552025891840458, 0.0072634960524737835, -0.00918557122349739, -0.003986914176493883, 0.004544037394225597, -0.016671916469931602, 0.014791625551879406, -0.04490414261817932, 0.010682840831577778, 0.01363559439778328, -0.017131542786955833, -0.01937396451830864, 0.016323715448379517, -0.007966863922774792, -0.028719710186123848, -0.013858444057404995, -0.017145471647381783, 0.03326026350259781, -0.02267492190003395, 0.0071938554756343365, 0.011184251867234707, -0.011407100595533848, -0.026936914771795273, -0.0005958608817309141, 0.028858991339802742, 0.01813436485826969, 0.040001459419727325, -0.012270642444491386, -0.007319208234548569, 0.00235384632833302, -0.009157715365290642, -0.01747974567115307, -0.022744562476873398, 0.03966718539595604, 0.002578436629846692, 0.008238461799919605, 0.0016887802630662918, -0.025293400511145592, -0.012792945839464664, -0.011476741172373295, 0.014318070374429226, -0.010926581919193268, 0.002883113455027342, -0.007730086799710989, 0.011198179796338081, 0.0013240384869277477, -0.004481361247599125, -0.04490414261817932, 0.05473737046122551, 0.00740277674049139, -0.0028726672753691673, -0.036213018000125885, -0.020195722579956055, 0.006316386163234711, 0.004108784720301628, -0.0060204146429896355, -0.0119433319196105, -0.0069535961374640465, -0.02487555891275406, 0.014638416469097137, -0.011337460950016975, 0.013684342615306377, 0.02963896282017231, 0.005313564091920853, 0.011407100595533848, -0.010355530306696892, -0.019903233274817467, 0.02122640050947666, -0.00590550759807229, 0.007388848811388016, 0.03186745569109917, -0.02578088454902172, -0.018775057047605515, -0.004829563200473785, -0.026964770630002022, -0.003048509359359741, -0.03133818879723549, 0.023287756368517876, 0.004446540959179401, 0.014749840833246708, -0.015223396010696888, -0.007542057428508997, 0.01362863089889288, 0.0014302401104941964, -0.004888757597655058, -0.01374701876193285, 0.02533518522977829, 0.004954915959388018, 0.0005997781408950686, 0.02438807487487793, -0.006560127716511488, 0.005773190874606371, -0.017563315108418465, 0.009505917318165302, -0.003892899490892887, -0.016073008999228477, -0.024248795583844185, -0.021644242107868195, -0.014749840833246708, -0.016309786587953568, 0.004648498259484768, 0.03033536672592163, -0.005306600127369165, -0.008447383530437946, -0.056297317147254944, -0.010661948472261429, -0.0202792901545763, -0.042898498475551605, 0.010884798131883144, 0.014861266128718853, -0.01933218166232109, -0.028970414772629738, -0.001361470203846693, -0.17850232124328613, 0.018775057047605515, -0.007065020967274904, -0.016657989472150803, 0.027424398809671402, 0.0067411926575005054, 0.005240441765636206, 0.0029875740874558687, -0.006128357257694006, -0.01027196180075407, 0.02101747877895832, -0.007681338582187891, -0.012695448473095894, 0.008913974277675152, 0.0038580794353038073, -0.0001286171464016661, 0.0033967115450650454, -0.0012665851972997189, 0.009972508065402508, 0.023789167404174805, 0.012298498302698135, -0.029694676399230957, -0.003556884592399001, -0.014018616639077663, -0.0239284485578537, 0.02484770305454731, -0.03735512122511864, 0.016421211883425713, 0.01621229015290737, 0.0005475478246808052, -0.026616569608449936, 0.013642558827996254, -0.0073122442699968815, 0.012646700255572796, 0.009652161970734596, -0.00242000469006598, -0.0074097407050430775, -0.014241466298699379, 0.004028698429465294, 0.02151888981461525, 0.026909058913588524, 0.02195066027343273, 0.00013884558575227857, 0.013552025891840458, -0.026909058913588524, 0.026338007301092148, 0.025418754667043686, 0.025418754667043686, 0.010668912902474403, -0.007326172199100256, -0.009129859507083893, -0.03195102512836456, -0.004895721562206745, 0.016309786587953568, 0.013252572156488895, 0.025042695924639702, 0.015878016129136086, 0.001035901252180338, -0.007730086799710989, -0.007388848811388016, 0.022758489474654198, -0.01961074210703373, -0.021811379119753838, -0.015933727845549583, -0.01814829371869564, -0.001345801167190075, -0.030781066045165062, 0.025502322241663933, -0.02846900373697281, 0.01422057393938303, -0.003335776273161173, -0.0004304648609831929, -0.00015429705672431737, 0.00531704630702734, 0.013496313244104385, 0.004585821647197008, -0.01936003752052784, 0.041672829538583755, 0.010390350595116615, -0.008412563242018223, 0.010585344396531582, 0.030446792021393776, 0.003295732894912362, 0.015641238540410995, 0.006076126825064421, -0.007061538752168417, 0.009108967147767544, 0.0060238963924348354, 0.010480883531272411, 0.000588461582083255, 0.009826263412833214, 0.009735730476677418, 0.02002858556807041, -0.023970233276486397, 0.00048356567276641726, 0.02319025993347168, 0.010627128183841705, 0.008934865705668926, 0.0032783227507025003, -0.015683023259043694, -0.015181612223386765, -0.017563315108418465, -0.007500273175537586, 0.02007037028670311, 0.03922148421406746, 0.006006486248224974, -0.011497633531689644, 0.012960082851350307, 0.03841365501284599, -0.015474101528525352, 0.004255029838532209, 0.00620844354853034, 0.002096176613122225, 0.022076014429330826, 0.002888336544856429, 0.016351571306586266, 0.009533774107694626, -0.025850525125861168, 0.0005841090460307896, -0.005773190874606371, 0.06780191510915756, -0.004958398174494505, -0.01507018692791462, 0.026477288454771042, -0.038831498473882675, -0.029471825808286667, -0.09537952393293381, -0.015376605093479156, 0.00968001876026392, 0.005477219354361296, -0.011817979626357555, 0.0031877902802079916, -0.007270460017025471, 0.02487555891275406, 0.03270314261317253, 0.019415749236941338, -0.0005745334783568978, -0.004032180178910494, -0.010794265195727348, -0.010836049914360046, 0.0031773443333804607, -0.020126082003116608, 0.005097678862512112, -6.991245754761621e-05, -0.02151888981461525, 0.043845608830451965, -0.008412563242018223, -0.03128247708082199, -0.012695448473095894, -0.012026900425553322, -0.0179254449903965, -0.006821279413998127, -0.029221121221780777, 0.006918775849044323, 0.013579881750047207, -0.005599089898169041, 0.03468092903494835, -0.01576659083366394, 0.00597166595980525, -0.013175968080759048, 0.004791261162608862, -0.010592307895421982, -0.025251617655158043, -0.016797268763184547, -0.005341420415788889, -0.03638015687465668, 0.022284934297204018, 0.014986618421971798, 0.020627493038773537, -0.04423559457063675, -0.010564452037215233, -0.01721511222422123, -0.013545062392950058, 0.03969503939151764, -0.01866363361477852, 0.0031773443333804607, -0.008788621053099632, -0.0001741010491969064, -0.024248795583844185, -0.025934092700481415, 0.03866436332464218, -0.0026393719017505646, 0.019471460953354836, 0.022089941427111626, -0.029973236843943596, -0.011706555262207985, -0.017577242106199265, -0.012361174449324608, -0.017800090834498405, 0.0031547110993415117, 0.00043568789260461926, 0.007354028522968292, -0.018928267061710358, -0.008816476911306381, 0.03615730628371239, -0.0023834435269236565, -0.011532453820109367, 0.0334274023771286, -0.023134548217058182, -0.015585525892674923, -0.0053762407042086124, 0.00039368600118905306, -0.00035298988223075867, -0.024708421900868416, -0.013252572156488895, -0.003917273599654436, 0.005658284295350313, -0.022855985909700394, -0.010334638878703117, 0.013120255433022976, 0.01813436485826969, 0.026435503736138344, -0.00406003650277853, 0.001050699851475656, 0.002317284932360053, -0.029248977079987526, 0.0069048479199409485, 0.0083777429535985, -0.011135503649711609, -0.002961458871141076, -0.005874169524759054, 0.010947474278509617, 0.022396359592676163, 0.0002022836561081931, -0.0025766955222934484, -0.0017897587968036532, -0.02461092546582222, -0.007367956452071667, -0.06613054126501083, 0.028496859595179558, 0.003910309635102749, 0.01624014601111412, 0.006863063666969538, -0.011274783872067928, -0.0068560997024178505, -0.014721984975039959, -0.012688484974205494, 0.04512699320912361, -0.014387710951268673, 0.026156941428780556, -0.004115748684853315, -0.007172963581979275, -0.015167683362960815, -0.025892307981848717, 0.02768903225660324, -0.016574420034885406, 0.033343832939863205, -0.013287392444908619, 0.011191215366125107, -0.004053072538226843, 0.026853347197175026, 0.021114975214004517, 0.00981929898262024, 0.02291169948875904, -0.01101015042513609, 0.005881133489310741, -0.02103140763938427, -0.03626872971653938, 0.014025581069290638, -0.01937396451830864, 0.005947291851043701, 0.02750796638429165, -0.004053072538226843, -0.0014528733445331454, 0.003948611672967672, 0.0262683667242527, 0.007200819440186024, -0.00919950008392334, -0.015446245670318604, -0.02582266740500927, 0.0007812784751877189, -0.01573873497545719, -0.015334820374846458, -0.01629585772752762, -0.033789534121751785, 0.006278084125369787, 0.018022941425442696, 0.008370778523385525, 0.015404460951685905, 0.004596267826855183, -0.046742651611566544, -0.025154119357466698, -0.008196678012609482, -0.0072426036931574345, 0.017730452120304108, 0.004324669949710369, 0.010731589049100876, -0.008280246518552303, 0.03172817453742027, 0.007848475128412247, 0.01692262291908264, 0.007152071222662926, 0.01796722784638405, -0.003504654159769416, -0.025432681664824486, -0.022271007299423218, 0.017326537519693375, -0.0012761607067659497, 0.002515760250389576, -0.012799909338355064, 0.00525436969473958, 0.015432317741215229, 0.011274783872067928, 0.002522724214941263, -0.013642558827996254, 0.012946153990924358, -0.02098962292075157, 0.027424398809671402, 0.010606235824525356, -0.021323896944522858, 0.0002715976443141699, 0.0013867148663848639, 0.012723305262625217, 0.03172817453742027, -0.030251799151301384, 0.010090896859765053, 0.022076014429330826, 0.003652640152722597, -0.02459699660539627, -0.01302972249686718, -0.0030920347198843956, -0.006800387054681778, 0.001983010908588767, 0.013113291002810001, -0.01121907215565443, 0.03055821731686592, 0.026602640748023987, 0.006647178437560797, 0.02363595925271511, 0.007340100593864918, -0.01408825721591711, -0.013447565026581287, -0.011992080137133598, -0.015891944989562035, -0.02057178132236004, -0.025739099830389023, 0.007061538752168417, 0.006152731366455555, 0.00146593083627522, 0.011267820373177528, 0.011985116638243198, 0.024986982345581055, -0.00681779719889164, 0.019443605095148087, 0.0020091261249035597, -0.018329359591007233, -0.03551661595702171, 0.055573057383298874, 0.02225707843899727, 0.021658170968294144, 0.033817388117313385, -0.005174283403903246, 0.03866436332464218, 0.01149066910147667, 0.02988966926932335, 0.0011656065471470356, 0.005658284295350313, -0.014415566809475422, -0.00824542623013258, -0.008656304329633713, -0.011065863072872162, -0.01791151612997055, -0.029248977079987526, 0.004084410611540079, -0.004975808318704367, 0.02129604108631611, 0.015864087268710136, 0.07822012156248093, 0.02362203039228916, -0.01579444669187069, -0.0077161588706076145, 0.003328812075778842, 0.015293036587536335, 0.029471825808286667, 0.043149206787347794, -0.005369276273995638, -0.029917525127530098, 0.018064726144075394, -0.006535753607749939, 0.002301615895703435, -0.024039873853325844, -0.0009888940257951617, 0.010369459167122841, 0.007106805220246315, 0.02009822614490986, -0.016839053481817245, -0.014986618421971798, -0.0035969277378171682, -0.0006036954000592232, 0.011636914685368538, 0.0023886663839221, -0.017632953822612762, -0.018552208319306374, 0.022298863157629967, -0.0037536188028752804, -0.011024078354239464, -0.020460356026887894, 0.017507601529359818, 0.008816476911306381, -0.014471279457211494, -0.013921120204031467, 0.0033009559847414494, -0.008746837265789509, -0.009700911119580269, -0.026881203055381775, 0.00022437273582909256, 0.009756622835993767, -0.00705457478761673, -0.005532931536436081, -0.028608284890651703, -0.024067729711532593, -0.002350364113226533, -0.013642558827996254, -0.0036421939730644226, -0.020140009000897408, -0.018552208319306374], "626bf733-83e0-4372-99f9-1dbf3c28ba09": [-0.005128607619553804, -0.008449649438261986, -0.010314597748219967, 0.010501092299818993, -0.028347212821245193, 0.018721209838986397, -0.009891398251056671, -0.0007571869064122438, -0.017028411850333214, -0.02031358890235424, 0.010070719756186008, -0.014195124618709087, 0.004820173606276512, -0.005444214213639498, -0.007718016393482685, 0.010952983982861042, 0.0075171757489442825, -0.011591370217502117, -0.0034788455814123154, -0.00849985983222723, -0.026295769959688187, 0.007603249978274107, -0.00744544668123126, -0.00423917081207037, -0.026252731680870056, 0.00906651746481657, 0.01543603278696537, -0.028519360348582268, -0.005451386794447899, 0.016684113070368767, 0.01656934805214405, -0.000505687843542546, -0.042549509555101395, 0.0075889043509960175, -0.01823345385491848, -0.025650210678577423, 0.018176071345806122, -0.006710227113217115, 0.043783243745565414, -0.027486465871334076, 0.05141518637537956, 0.008205772377550602, -0.001776183838956058, -0.029437489807605743, -0.02708478644490242, 0.036581676453351974, 0.001539478893391788, -0.018721209838986397, -0.009561445564031601, 0.017889156937599182, 0.012566881254315376, 0.022321995347738266, -0.03224925696849823, 0.018764248117804527, 0.016655420884490013, -0.018692519515752792, 0.011089269071817398, 0.021059568971395493, 0.0072123282589018345, 0.0006643877713941038, -0.011426393873989582, 0.0028906697407364845, 0.007818436250090599, -0.004436424933373928, -0.0231110118329525, -0.006699467543512583, 0.006778369192034006, 0.01718621514737606, -0.01572294719517231, -0.014123396016657352, 0.014453348703682423, 0.012868142686784267, -0.017128830775618553, -0.010214177891612053, 0.008270327933132648, -0.011541159823536873, -0.02017013169825077, -0.001238218042999506, 0.027873802930116653, 0.01285379659384489, 0.02334054373204708, -0.00849985983222723, -0.030699916183948517, 0.0200266744941473, 0.020629195496439934, -0.015349958091974258, 0.023713532835245132, -0.007144186180084944, -0.03210579976439476, -0.0031560661736875772, 0.0378727950155735, -0.001571756787598133, 0.0028494256548583508, 0.006247576326131821, 0.009059344418346882, 0.010766489431262016, -0.01176351960748434, 0.018348220735788345, 0.007631941698491573, -0.03006870299577713, -0.009245838969945908, -0.004920593928545713, -0.0338272899389267, 0.011074922978878021, 0.0022020733449608088, -0.0071405996568500996, 0.017272289842367172, 0.019711067900061607, 0.008320538327097893, 0.001462370390072465, -0.019997982308268547, 0.010895601473748684, -0.008779602125287056, -0.013850826770067215, 0.0008916783262975514, -0.02562151849269867, 0.010759316384792328, -0.03996727243065834, -0.030470384284853935, -0.028232445940375328, 0.008126870729029179, 0.025822360068559647, 0.008449649438261986, -0.011727654375135899, 0.015235192142426968, 0.012509498745203018, -0.004275035113096237, -0.019524572417140007, 4.9565704102860764e-05, -0.01368585042655468, 0.03747111186385155, 0.017229251563549042, 0.02864847332239151, -9.106192010222003e-05, -0.00030529560171999037, 0.01955326460301876, -0.011806556023657322, -0.005810030736029148, -0.024545587599277496, -7.878957694629207e-05, 0.005272064823657274, 0.030040010809898376, -0.0018272905144840479, -0.0064089661464095116, -0.022938862442970276, 0.024502549320459366, 0.0180039219558239, -0.011046231724321842, 0.014187951572239399, 0.004777136258780956, -0.002851218916475773, -0.019165929406881332, 0.004655197728425264, -0.018821630626916885, -0.0033210422843694687, 0.013908209279179573, -0.002270215656608343, 0.007262538652867079, -0.025549789890646935, -0.01595247909426689, -0.004393387585878372, 0.03385598212480545, -0.008033622987568378, 0.010945810936391354, 0.01737270876765251, 0.03107290528714657, 0.01200022455304861, 0.0001240683632204309, -0.016253741458058357, -0.004726926330476999, -0.02387133613228798, 0.010429363697767258, -0.024258671328425407, 0.008105351589620113, 0.011440739966928959, -0.004891902673989534, 0.02169078215956688, -0.010615859180688858, -0.020543120801448822, -0.004310899414122105, -0.0065703559666872025, 0.015005660243332386, 0.004440010990947485, 0.03391336649656296, -0.016167666763067245, 0.0014318856410682201, -0.0033515270333737135, -0.010142449289560318, -0.007158531807363033, -0.010063547641038895, 0.008270327933132648, 0.022996244952082634, -0.01465418841689825, -0.01051543839275837, -0.6004559397697449, -0.019252004101872444, 0.022709330543875694, 0.014094704762101173, -0.0102787334471941, 0.008994788862764835, -0.00935343187302351, -0.004020398017019033, -0.022738022729754448, 0.0436684787273407, -0.029609639197587967, 0.017501821741461754, -0.007194396108388901, -0.002205659868195653, 0.00968338456004858, -0.005214681848883629, -0.0017492854967713356, -0.008456822484731674, -0.000888091919478029, 0.023498347029089928, -0.012609918601810932, -0.004655197728425264, 0.00816990714520216, -0.002573269885033369, -0.009611655957996845, -0.014876548200845718, 0.02998262830078602, 0.006893135141581297, 0.0031273746863007545, 0.012925525195896626, -0.03595046326518059, 0.012839450500905514, 0.010415018536150455, -0.011677444912493229, 0.061342447996139526, 0.0075673856772482395, -0.03982381522655487, 0.02504768781363964, 0.02722824364900589, 0.03356906771659851, -0.020858727395534515, -0.011569851078093052, -0.0058889323845505714, -0.008091005496680737, 0.003032333916053176, -0.01642588898539543, 0.03356906771659851, 0.0031578594353049994, 0.0037944521754980087, -0.01406601257622242, 0.018879013136029243, 0.009131073020398617, -0.014245335012674332, 0.01193566806614399, -0.009841187857091427, -0.000608349684625864, 0.01580902189016342, -0.011024712584912777, 0.026883944869041443, -0.0040490892715752125, -0.01065889559686184, -0.002827906981110573, -0.018405603244900703, -0.023742225021123886, -0.04438576474785805, 0.01448921300470829, 0.014123396016657352, -0.021748164668679237, 0.006150742527097464, 0.006893135141581297, 0.017602240666747093, 0.02206377126276493, 0.0012749789748340845, -0.010709105990827084, 0.009016307070851326, 0.008700700476765633, 0.02027055248618126, 0.0062224711291491985, -0.00947537086904049, -0.0010194452479481697, 0.025449369102716446, -0.00536172604188323, -0.015536452643573284, -0.016741495579481125, 0.022293303161859512, 0.017788736149668694, -0.00835640262812376, 0.005096329376101494, 0.007036592811346054, -0.013865171931684017, 0.036294762045145035, 0.0007621182594448328, 0.0027472120709717274, -0.014324236661195755, -0.010945810936391354, 0.01860644482076168, -0.007007901556789875, 0.000274810881819576, 0.0041459230706095695, -0.01633981429040432, -0.01557948999106884, -0.0200266744941473, 0.01238038670271635, 0.0041674417443573475, 0.04338156431913376, 0.016311123967170715, -0.020629195496439934, -0.025348950177431107, 0.05356704816222191, -0.011003194376826286, -0.014704398810863495, 0.00010047632531495765, -0.004917007405310869, -0.010967330075800419, 0.01060868613421917, -0.03428635373711586, 0.026023199781775475, -0.013528047129511833, 0.014474866911768913, -0.0041459230706095695, 0.0012471841182559729, -0.01086690928786993, -0.001150350202806294, -0.013312860392034054, 0.0002974502567667514, 0.015421686694025993, 0.015005660243332386, -0.012208237312734127, 0.024229981005191803, 0.01288248784840107, -0.0011377977207303047, -0.028017260134220123, 0.02367049641907215, -0.002939086640253663, 0.01403732132166624, -0.020069710910320282, 0.01761658675968647, 0.008844157680869102, 0.025822360068559647, -0.018491677939891815, -0.026310114189982414, -0.008349229581654072, 0.005003082100301981, -0.012459288351237774, -0.003937909845262766, -0.02603754587471485, -0.039852507412433624, -0.002558924024924636, -0.02315404824912548, 0.0012534603010863066, -0.0008647800423204899, 0.012021742761135101, -0.010701932944357395, 0.013915382325649261, -0.019624993205070496, 0.005871000234037638, -0.00536172604188323, -0.05023883283138275, 0.005196749698370695, -0.03807363286614418, -0.0101854857057333, 0.038245782256126404, -0.014001457020640373, -0.015622527338564396, 0.010242869146168232, 0.005232613999396563, -0.00227918173186481, 0.006175847724080086, 0.00048372094170190394, -0.027386046946048737, 0.008528551086783409, -0.011311627924442291, -0.01866382732987404, 0.00655959639698267, -0.01096015702933073, 0.009281703270971775, -0.016138974577188492, -0.0127390306442976, 0.021059568971395493, -0.002528439275920391, 0.0020048192236572504, 0.03422897309064865, -0.002080134581774473, 0.0024800223764032125, 0.013176576234400272, -0.00930322241038084, 0.02552109770476818, 0.01691364496946335, -0.04759921506047249, 0.04986584559082985, -0.010415018536150455, 0.01808999665081501, -0.019051162526011467, 0.013312860392034054, -0.030183468014001846, 0.04056979715824127, -0.02519114688038826, 0.013485009782016277, -0.011641580611467361, 0.015407340601086617, -0.001594172092154622, 0.043639786541461945, 0.0075889043509960175, 0.018864667043089867, -0.012588400393724442, -0.022551527246832848, 0.014546595513820648, -0.03821709007024765, 0.03365514054894447, 0.0020729615353047848, 0.0004563743423204869, 0.013219613581895828, -0.024545587599277496, 0.01051543839275837, -0.006509386468678713, 0.00766063341870904, -0.03543401509523392, 0.02992524579167366, -0.020629195496439934, -0.009755113162100315, -0.002193107269704342, -0.017630932852625847, 0.04886164143681526, -0.003376631997525692, -0.020485738292336464, -0.014123396016657352, 0.008306192234158516, 0.030470384284853935, -0.0018739142687991261, 0.01522084604948759, 0.007276884280145168, 0.010716279037296772, 0.00802644994109869, -0.004041916690766811, 0.015077388845384121, -0.014209470711648464, 0.021231718361377716, -0.005688091740012169, 0.03612261265516281, -0.00900196097791195, -0.007847128435969353, 0.008607452735304832, 0.02807464264333248, -0.016827570274472237, 0.002526646014302969, 0.002713141031563282, 0.011361838318407536, 0.017272289842367172, 0.0037585878744721413, 0.012681647203862667, -0.010314597748219967, 0.011641580611467361, -0.026912637054920197, -0.002401120727881789, 0.031101597473025322, -0.02562151849269867, -0.005842308979481459, 0.003335388144478202, 0.0320197269320488, 0.013506527990102768, 0.014044494368135929, -0.008083833381533623, 0.01780308224260807, -0.005282824393361807, 0.015995517373085022, -0.007545867003500462, -0.0294948723167181, -0.008772429078817368, 0.007147772703319788, -0.0396803580224514, 0.00654525076970458, -0.010228523053228855, 0.006979209836572409, -0.02212115377187729, -0.002228971803560853, -0.0042857942171394825, 0.02671179547905922, 0.02745777554810047, 0.017587896436452866, 0.001173662138171494, -0.03193365037441254, -0.03517579287290573, 0.025535443797707558, 0.02136082947254181, 0.004135163966566324, -0.002445951336994767, -0.016411544755101204, 0.020241860300302505, -0.011727654375135899, 0.007004315033555031, -0.00507839722558856, 0.009073690511286259, -0.008471168577671051, -0.0022522835060954094, 0.009575791656970978, 0.03049907460808754, 0.02183423936367035, 0.012086298316717148, 0.006326477974653244, 0.0032421406358480453, 0.004705407656729221, 0.010092238895595074, -0.017272289842367172, 0.01474743615835905, 0.041459232568740845, -0.014761782251298428, -0.008894368074834347, -0.022049425169825554, -0.020629195496439934, -0.017831774428486824, 0.02070092409849167, 0.017544858157634735, -0.013298515230417252, -0.0054406276904046535, -0.0007764640031382442, 0.013872344978153706, -0.014094704762101173, 0.007050938438624144, 0.015694256871938705, -0.0025965815875679255, 0.007983412593603134, -0.037241581827402115, 0.01776004396378994, 0.024229981005191803, 0.029437489807605743, 0.044012777507305145, 0.004389801062643528, 0.005121434573084116, -0.013965592719614506, 0.00720874173566699, -0.0407419428229332, -0.03500364348292351, 0.030040010809898376, -0.014123396016657352, -0.02471773698925972, -0.01297573558986187, 0.010178313590586185, 0.014367274008691311, 0.013979938812553883, -0.005874586757272482, 0.02523418329656124, 0.010099411942064762, -0.005365312565118074, -0.013857999816536903, -0.0015672737499698997, -0.0007849817629903555, -0.005064051598310471, 0.025650210678577423, 0.01691364496946335, 0.007997758686542511, 0.027343008667230606, 0.005863827187567949, 0.018147381022572517, -0.02083003707230091, -0.000381955731427297, 0.03477410972118378, 0.018176071345806122, 0.021748164668679237, 0.020069710910320282, 0.05881759524345398, 0.004052675794810057, -0.015665564686059952, 0.015852060168981552, -0.0012866349425166845, -0.016397198662161827, 0.007319921627640724, 0.012093471363186836, -0.014833510853350163, 0.01724359765648842, -0.01288248784840107, -0.0032439338974654675, 0.01619635708630085, -0.0007567385910078883, 0.0073521994054317474, 0.04427099972963333, 0.010802353732287884, -0.017587896436452866, -0.005390417296439409, 0.01681322418153286, 0.028045950457453728, -0.009389297105371952, -0.02826113812625408, -0.00906651746481657, -0.030843373388051987, -0.029810478910803795, -0.01689929887652397, 0.025822360068559647, -0.009518408216536045, -0.016167666763067245, -0.023311851546168327, -0.017014065757393837, 0.005411935970187187, 0.00372272334061563, 0.020471392199397087, 0.007327094208449125, -0.009998991154134274, -0.029207957908511162, 0.03793017566204071, 0.006530905142426491, 0.0013897450407966971, -0.001560100819915533, -0.004074194468557835, -0.017401400953531265, 0.014022975228726864, 0.00485603790730238, -0.023469654843211174, 0.010737797245383263, -0.013771925121545792, -0.009202801622450352, -0.021705128252506256, 0.01695668324828148, -0.014345754869282246, -0.002422639401629567, -0.010859736241400242, -0.022608909755945206, 0.010981675237417221, 0.001334155211225152, 0.013320033438503742, 0.030843373388051987, 0.0022110394202172756, 0.002440571552142501, 0.016325470060110092, 0.00607184087857604, -0.019725413993000984, -0.007287643384188414, -0.02642488107085228, -0.01889335922896862, 0.023096665740013123, -0.02045704610645771, 0.011440739966928959, 0.019825832918286324, 0.038245782256126404, -0.011742000468075275, -0.008306192234158516, 0.00613281037658453, 0.014525077305734158, 0.009991818107664585, -0.004432838410139084, 0.019997982308268547, 0.003408910008147359, 0.008234463632106781, 0.020686578005552292, 0.022178538143634796, -0.005279237870126963, 0.0033640796318650246, -0.004038330167531967, 0.02428736351430416, 0.01784611865878105, -0.014352927915751934, 0.021891621872782707, -0.01724359765648842, -0.03589307889342308, -0.0013216027291491628, 0.009690557606518269, -0.014625497162342072, 0.01546472404152155, 0.0207439623773098, -0.02017013169825077, -0.05250546336174011, 0.004508153535425663, -0.021002184599637985, 0.006771196611225605, -0.00859310757368803, -0.012079126201570034, -0.01827649213373661, 0.0024585037026554346, -0.0023957411758601665, -0.020241860300302505, 0.005268478766083717, -0.02978178672492504, -0.007291229907423258, -0.00303592043928802, 0.008786775171756744, 0.03988119959831238, -0.00602521700784564, 0.0062439898028969765, -0.027142168954014778, -0.032077107578516006, -0.029179265722632408, -0.025033343583345413, -0.026539646089076996, -0.005419109016656876, 0.049837153404951096, 0.009453852660953999, 0.04002465680241585, 0.007036592811346054, 0.006154329050332308, -0.004457943607121706, -0.0033640796318650246, -0.01465418841689825, -0.00814838893711567, -0.026697449386119843, 0.004009638447314501, 0.0023580833803862333, 0.027070440351963043, -0.003991706296801567, 0.02235068567097187, -0.0023634631652384996, -0.016985373571515083, 0.02778772823512554, -0.0012570468243211508, 0.009869879111647606, -0.017358364537358284, -0.026224039494991302, -0.05236200615763664, 0.018649481236934662, -0.035261865705251694, -0.004020398017019033, -0.0205574668943882, -0.0027633511926978827, 0.018692519515752792, -0.010264387354254723, 0.01285379659384489, 0.0014067805605009198, 0.019811488687992096, -0.008578761480748653, 0.03173280879855156, 0.017602240666747093, 0.014051667414605618, -0.011275763623416424, -0.01642588898539543, -0.02504768781363964, 0.003582852426916361, 0.0019510226557031274, 0.015120426192879677, 0.016325470060110092, -0.0294948723167181, 0.01671280525624752, -0.012444942258298397, 0.016612384468317032, -0.021949006244540215, -0.0031345474999397993, -0.00047834127326495945, -0.02088741958141327, -0.015550798736512661, -0.028088988736271858, 0.0005016531213186681, 0.0030269543640315533, -0.004694648552685976, 0.007416755426675081, 0.01794653944671154, 0.005874586757272482, -0.04338156431913376, -0.013291342183947563, -0.009970299899578094, -0.005953488405793905, 0.047800056636333466, 0.028662819415330887, 0.04533258453011513, -0.0023975344374775887, 0.0008629868389107287, -0.008923059329390526, -0.0049887364730238914, 0.016540655866265297, 0.001947436248883605, 0.013771925121545792, 0.04177483916282654, -0.009432333521544933, -0.010027682408690453, 0.004127990920096636, 0.0007692911312915385, -0.01392255537211895, -0.02301059104502201, 0.03962297737598419, 0.023326197639107704, -0.011569851078093052, -0.024660352617502213, -0.008435304276645184, -0.03617999330163002, -0.006509386468678713, -0.008040796034038067, 0.01522084604948759, 0.011096441186964512, -0.02841894142329693, -0.021489940583705902, -0.007631941698491573, -0.007732362020760775, 0.019381115213036537, 0.020428355783224106, -0.025879742577672005, 2.664611929503735e-05, 0.004203306045383215, -0.007646287325769663, 0.012932698242366314, -0.013908209279179573, 0.007122667506337166, -0.007015074137598276, 0.005526702385395765, -0.0010840011527761817, 0.0032080695964396, -0.010149621404707432, -0.005189577117562294, -0.002700588433071971, 0.030040010809898376, -0.00484169228002429, 0.006010871380567551, 0.00755304004997015, -0.040368955582380295, 0.030556458979845047, -0.033511683344841, -0.004171028267592192, 0.001387055148370564, -0.01932373270392418, 0.012057607062160969, 0.019782796502113342, 0.014288372360169888, -0.0010777248535305262, -0.017300980165600777, -0.007101148832589388, -0.01477612741291523, 0.016024207696318626, -0.025937125086784363, -0.012251274660229683, -0.02646791748702526, -0.0021572429686784744, -0.009848360903561115, -0.011333146132528782, 0.0077753993682563305, 0.0023491173051297665, 0.0010786214843392372, 0.002411880064755678, 0.03253617137670517, -0.015923788771033287, -0.010565648786723614, -0.017157522961497307, -0.012746203690767288, -0.02414390631020069, 0.01893639750778675, -0.010981675237417221, 0.009604482911527157, 0.018075650557875633, 0.0002278509346069768, -0.047283608466386795, -0.010730625130236149, 0.016138974577188492, 0.015938133001327515, -0.0039307367987930775, 0.0053437938913702965, 0.047656599432229996, 0.025062033906579018, 0.0017994956579059362, -0.004777136258780956, -0.018075650557875633, 0.017401400953531265, -0.01776004396378994, -0.0008123283623717725, 0.011957187205553055, -0.0039020453114062548, 0.006502213422209024, -0.016311123967170715, 0.007940375246107578, 0.0035451946314424276, -0.052821069955825806, -0.030699916183948517, 0.01330568827688694, 0.01798957772552967, -0.022651948034763336, -0.020514430478215218, -0.008887195028364658, -0.019811488687992096, -0.018534716218709946, 0.02121737226843834, 0.013987110927700996, 0.015149117447435856, -0.007897337898612022, 0.007653460372239351, 0.00036402352270670235, 0.006509386468678713, -0.006043149158358574, -0.01572294719517231, -0.035347942262887955, -0.009052171371877193, -0.030900755897164345, -0.029322722926735878, -0.027056094259023666, 0.023498347029089928, -0.002313253004103899, -0.03669644147157669, -0.018649481236934662, -0.0440414696931839, -0.019165929406881332, -0.019725413993000984, -0.023785261437296867, 0.006061081308871508, 0.05336621031165123, 0.026166656985878944, -0.012631437741219997, 0.018348220735788345, -0.004260689485818148, 0.00029834688757546246, -0.022565873339772224, -0.007076043635606766, 0.01880728453397751, -0.02646791748702526, 0.019854525104165077, -0.006914653815329075, -0.03910652920603752, 0.009955953806638718, 0.014647016301751137, -0.00359361176379025, 0.030412999913096428, 0.020772652700543404, -0.036352142691612244, 0.0036760997027158737, -0.0015036144759505987, -0.005641468334943056, 0.005810030736029148, -0.008234463632106781, 0.006444830447435379, -0.04200436919927597, 0.012982908636331558, 0.013255477882921696, 0.006143569480627775, -0.005024600774049759, 0.009755113162100315, 0.027974221855401993, -0.01380061637610197, 0.015507761389017105, -0.03138851374387741, -0.026152310892939568, 0.010924292728304863, -0.02031358890235424, 0.059219278395175934, -0.012193892151117325, 0.004153096117079258, 0.021475594490766525, 0.003649201476946473, -0.015034351497888565, -0.0051357802003622055, 0.004601400811225176, -0.01648327335715294, -0.024789465591311455, 0.030527766793966293, -0.013678677380084991, -0.006143569480627775, 0.002677276497706771, -0.0015134771820157766, -0.009166937321424484, -0.030011320486664772, 0.0010902773356065154, -0.01724359765648842, -0.015364304184913635, -0.01586640439927578, 0.01039349939674139, -0.04275035113096237, -0.012480806559324265, 0.0181904174387455, 0.004852451849728823, 0.019581954926252365, 0.021719472482800484, -0.02846197783946991, 0.005562566686421633, 0.006229644175618887, 0.005171644501388073, -0.006469935644418001, -0.027386046946048737, 0.015981171280145645, 0.0016067245742306113, -0.013936901465058327, 0.008564415387809277, 0.2001519799232483, -0.006473522167652845, 0.0079116839915514, 0.009912916459143162, -0.008091005496680737, 0.01786046475172043, -0.027285626158118248, 0.007581731770187616, -0.028992770239710808, 0.002300700405612588, 0.01885032281279564, 0.0016497618053108454, -0.0015968618681654334, -0.004845278803259134, 0.002546371426433325, -0.0001365088246529922, -0.02562151849269867, -0.04450053349137306, -0.031847577542066574, -0.022221574559807777, 0.003841076046228409, -0.018735555931925774, 0.008657663129270077, -0.0055518071167171, 0.03566354885697365, 0.02064354158937931, 0.0021267582196742296, 0.0023401512298732996, 0.029136229306459427, 0.018061306327581406, -0.03813101723790169, 0.005132193677127361, 0.019682375714182854, 0.0050389464013278484, 0.019768450409173965, -0.004683888982981443, 0.024459512904286385, -0.004680302459746599, 0.019309386610984802, 0.0019833005499094725, 0.005978593602776527, -0.02117433398962021, 0.020571812987327576, -0.024301709607243538, -0.007233846932649612, -0.0055804988369345665, 0.007237433455884457, -0.026668759062886238, 0.017788736149668694, 0.0064591760747134686, -0.01096015702933073, 0.027644271031022072, 0.0302121601998806, 0.02348400093615055, 0.013011599890887737, -0.02144690416753292, -0.014030148275196552, -0.014733090065419674, -0.03288047015666962, 0.03173280879855156, -0.022035079076886177, 0.00725536560639739, 0.011835248209536076, -0.009991818107664585, -0.01961064711213112, 0.0025105071254074574, -0.0019420565804466605, -0.007696497719734907, -0.005616363137960434, -0.013219613581895828, 0.008743737824261189, -0.024172596633434296, 0.0038661810103803873, 0.007890164852142334, -0.022006388753652573, -0.038245782256126404, 0.004583468660712242, 0.020385317504405975, 0.016841916367411613, 0.04470137134194374, 0.005526702385395765, 0.0009764079586602747, 0.004852451849728823, -0.021819893270730972, -0.013771925121545792, -0.0293083768337965, 0.035634856671094894, 0.002289941068738699, 0.006240403279662132, 0.005738302133977413, -0.018549060449004173, 0.011820902116596699, -0.006864443887025118, -0.0011539367260411382, -9.386382589582354e-05, -0.006304959300905466, -0.014668534509837627, 0.00043664893019013107, -0.019008126109838486, -0.0018703278619796038, -0.051443878561258316, 0.04447184130549431, 0.014022975228726864, -0.006477108225226402, -0.049693696200847626, -0.007696497719734907, 0.02083003707230091, 0.010336116887629032, 0.003927150275558233, -0.005182404071092606, -0.010257215239107609, -0.029064500704407692, 0.007337853778153658, 0.0017941159894689918, 0.01804696023464203, 0.039049144834280014, 0.0015045111067593098, -0.008205772377550602, -0.011297281831502914, 0.004974390380084515, 0.009984645992517471, -0.022436760365962982, -0.0041459230706095695, 0.01489089336246252, -0.023125357925891876, -0.03049907460808754, -0.015923788771033287, -0.0323927141726017, -0.002198487054556608, -0.03586438670754433, 0.019711067900061607, -0.006957691162824631, 0.021002184599637985, -0.02159036137163639, -0.009030653163790703, 0.006609806790947914, 0.00301260850392282, -0.023900028318166733, 0.004160269163548946, 0.006208125501871109, -0.005182404071092606, 0.00047161668771877885, 0.01477612741291523, -0.004952872171998024, 0.0022971141152083874, -0.022565873339772224, 0.022752366960048676, 0.004074194468557835, -0.020284898579120636, -0.03339691832661629, -0.01975410431623459, -0.002171588595956564, -0.015794675797224045, -0.007287643384188414, 0.03233533352613449, -0.008980442769825459, -0.02542067877948284, -0.048660799860954285, 0.0005989352939650416, -0.003498570993542671, -0.027916839346289635, -0.010214177891612053, 0.01790350303053856, 0.004041916690766811, -0.021059568971395493, -0.02632446028292179, -0.18546192348003387, -0.001765424502082169, 0.014051667414605618, -0.025176800787448883, 0.03224925696849823, 0.009869879111647606, 0.005842308979481459, 0.00035707480856217444, -0.004791482351720333, 0.0014668534277006984, 0.014073185622692108, -0.004271448589861393, -0.023139702156186104, 0.003765760688111186, 0.017200561240315437, 0.008808293379843235, -0.0016730737406760454, 0.005634295288473368, 0.0360078439116478, 0.022465452551841736, 0.030183468014001846, -0.0411149337887764, -0.003772933501750231, -0.0010104791726917028, -0.0222072284668684, 0.030183468014001846, -0.03661036863923073, 0.0032242084853351116, 0.014718744903802872, 0.002592995297163725, -0.03115897998213768, 0.026209695264697075, -0.0039307367987930775, 0.012222583405673504, 0.004300140310078859, 0.003552367677912116, -0.008578761480748653, -0.00876525603234768, 0.0014031941536813974, 0.02206377126276493, 0.007696497719734907, 0.02656833827495575, -0.02031358890235424, 0.007667805999517441, -0.01143356692045927, 0.03480280190706253, 0.05985049158334732, 0.016971027478575706, 0.014281199313700199, -0.006523732095956802, -0.020801344886422157, -0.04309464991092682, 0.00034384982427582145, 0.0020155785605311394, 0.01318374928086996, 0.015737293288111687, 0.0017044550040736794, 0.009152592159807682, -0.00509274285286665, -0.01889335922896862, 5.110675192554481e-05, -0.01576598547399044, -0.017889156937599182, -0.015364304184913635, -0.021719472482800484, -0.006581115070730448, -0.03399943932890892, 0.01737270876765251, -0.03299523517489433, 0.019495882093906403, -0.007474138401448727, 0.002655757823958993, 0.0127390306442976, 0.003399943932890892, 0.003970187623053789, -7.593163172714412e-05, -0.01629677787423134, 0.026023199781775475, 0.03391336649656296, -0.0077753993682563305, -0.0016515550669282675, 0.043266795575618744, 0.01710014045238495, 0.015981171280145645, 0.00012003362644463778, 0.005964247509837151, 0.004038330167531967, -0.005010255146771669, 0.0042355842888355255, -0.010558475740253925, 0.01874990202486515, -0.007004315033555031, 0.015235192142426968, -0.03442981094121933, 0.006204538978636265, 0.021518632769584656, 0.004020398017019033, -0.0024029139894992113, 0.009690557606518269, -0.01652630977332592, -0.015149117447435856, -0.014919585548341274, -0.024875540286302567, 0.03422897309064865, 0.04920594021677971, 0.012731857597827911, -0.01039349939674139, 0.015995517373085022, 0.04214783012866974, -0.014582459814846516, -0.02107391506433487, 0.0024943682365119457, 0.02410086803138256, 0.01932373270392418, -0.012746203690767288, 0.028705855831503868, 0.01743009313941002, -0.01681322418153286, 0.01202891580760479, 0.010465227998793125, 0.0538826547563076, -0.01732967235147953, -0.010429363697767258, 0.021805547177791595, -0.023699186742305756, -0.0031291679479181767, -0.07901641726493835, -0.01798957772552967, 0.006401793099939823, 0.017157522961497307, -0.018176071345806122, 0.0064591760747134686, -0.01484785694628954, 0.02306797355413437, 0.02008405700325966, 0.023928718641400337, -0.01732967235147953, -0.006061081308871508, -0.0323927141726017, 0.00788299273699522, 0.00419254694133997, -0.0008513309294357896, -0.0023652564268559217, -0.0023957411758601665, -0.009991818107664585, 0.03064253367483616, -0.0017053516348823905, -0.034114204347133636, -0.006387447472661734, -0.005515942815691233, -0.0247607734054327, -0.006211712025105953, -0.03072860836982727, 0.009417988359928131, 0.015923788771033287, 0.007674979045987129, 0.03253617137670517, -0.007524348329752684, 0.025836704298853874, -0.004102886188775301, -0.007990585640072823, -0.015134771354496479, -0.03755718842148781, 0.0029014290776103735, 0.022881479933857918, -0.03385598212480545, 0.03718419745564461, 0.022365031763911247, 0.020873073488473892, -0.029193611815571785, -0.006918240338563919, -0.013764752075076103, -0.015048696659505367, 0.045476045459508896, 0.006301372777670622, -0.01786046475172043, -0.013585429638624191, 0.01098884828388691, -0.026224039494991302, -0.029753096401691437, 0.0458490327000618, -0.019381115213036537, 0.015034351497888565, 0.026640066877007484, -0.015665564686059952, -0.009195628575980663, -0.005426282063126564, -0.013076155446469784, -0.0158233679831028, 0.0034376014955341816, 0.011684617958962917, 0.010314597748219967, -0.01619635708630085, -0.009719248861074448, 0.023125357925891876, 0.01299725379794836, -0.011942841112613678, 0.020284898579120636, -0.011713309213519096, -0.01586640439927578, -0.01060868613421917, 0.003604370867833495, -0.0075889043509960175, -0.016985373571515083, -0.0065488372929394245, 0.017602240666747093, -0.008750910870730877, -0.02173381857573986, -0.005444214213639498, 0.02467469871044159, 0.018620790913701057, 0.006523732095956802, 0.011383356526494026, 0.0135639114305377, -0.006183020304888487, -0.03471672907471657, 0.003057439113035798, 0.00744544668123126, 0.013427626341581345, -0.024789465591311455, -0.02718520537018776, 0.020284898579120636, 0.016325470060110092, 0.012394732795655727, -0.0032224152237176895, -0.0021339310333132744, -0.013865171931684017, -0.008334883488714695, -0.07040896266698837, 0.04587772488594055, -0.006297786720097065, 0.012681647203862667, -0.01477612741291523, -0.02083003707230091, -0.006233230698853731, 0.0024818156380206347, -0.00980532355606556, 0.033454302698373795, -0.018104342743754387, 0.027730343863368034, -0.010386326350271702, -0.005910451058298349, -0.0024244326632469893, -0.002784869633615017, 0.037385039031505585, 0.0023939479142427444, 0.01644023507833481, -0.0020030259620398283, -0.007868646644055843, -0.010163967497646809, 0.0058458950370550156, 0.015622527338564396, -0.00665284413844347, 0.004110058769583702, -0.011842421256005764, 0.01086690928786993, -0.021389521658420563, -0.023613112047314644, 0.01852037012577057, -0.014381619170308113, 0.0071621183305978775, 0.017960885539650917, -0.01065889559686184, -0.028232445940375328, 0.023211432620882988, 0.01489089336246252, 0.014919585548341274, -0.004271448589861393, -0.00840661209076643, -0.017673971131443977, 0.0036832725163549185, -0.009812496602535248, -0.017085794359445572, -0.015063042752444744, -0.01586640439927578, 0.003025161102414131, 0.0064520034939050674, -0.0006522835465148091, 0.02774468995630741, 0.016182010993361473, -0.03830316662788391, -0.026410534977912903, -0.01689929887652397, -0.02827548421919346, 0.012466461397707462, 0.014582459814846516, 0.00703300628811121, 0.022666292265057564, 0.03514710068702698, 0.008894368074834347, 0.03784410282969475, -0.0058674137108027935, 0.00227918173186481, -0.006251162849366665, -0.007366545032709837, -0.01403732132166624, 0.021905967965722084, -0.010909946635365486, 0.007926030084490776, -0.026410534977912903, -0.001205940032377839, 0.01907985471189022, 0.0002535163948778063, 0.01586640439927578, -0.04315203055739403, 0.008664836175739765, -0.006107705179601908, 0.010228523053228855, 0.0160098634660244, -0.01463267020881176, -0.008614625781774521, 0.010838218033313751, 0.009977472946047783, 0.01051543839275837, -0.02496161311864853, 0.010788007639348507, 0.0026718969456851482, -0.0028332865331321955, -0.030757298693060875, -0.0062439898028969765, -0.003520089667290449, -0.002300700405612588, -0.002777696819975972, -0.0032564864959567785, -0.014044494368135929, 0.020155785605311394, 0.012079126201570034, 0.005759820807725191, 0.014582459814846516, -0.0006518352311104536, 0.0028799104038625956, -0.027873802930116653, -0.017874810844659805, -0.014919585548341274, -0.013133538886904716, -0.019008126109838486, 0.013054637238383293, -0.02126040868461132, -0.000769739446695894, -0.0009279910591430962, 0.010465227998793125, 0.023613112047314644, -0.00994878076016903, -0.0016147940186783671, 0.009073690511286259, -0.02259456366300583, -0.04857472702860832, 0.046422865241765976, 0.022895826026797295, 0.01751616783440113, 0.03491756692528725, 0.001086690928786993, 0.05075528100132942, 0.008055141195654869, 0.017071448266506195, -5.477724698721431e-05, 0.025678901001811028, -0.023713532835245132, -0.009138246066868305, 0.0040275705978274345, -0.0371268130838871, -0.011914149858057499, -0.030757298693060875, 0.02078699879348278, 0.00824163667857647, 0.010996021330356598, 0.009202801622450352, 0.09158330410718918, 0.006534491665661335, -0.022408070042729378, -0.0181904174387455, -0.012100644409656525, 0.015378649346530437, 0.03623737767338753, 0.018922051414847374, 0.01784611865878105, -0.03087206557393074, -0.0002810871519614011, -0.00027705240063369274, 0.00617943424731493, -0.028964079916477203, -0.030843373388051987, -0.007165704853832722, -0.010450882837176323, 0.012366040609776974, -0.02443082071840763, -0.013133538886904716, -0.0053437938913702965, 0.01889335922896862, 0.01808999665081501, 0.0007087699486874044, -0.0039307367987930775, -0.005189577117562294, 0.01841994933784008, 0.007739535067230463, -0.016927991062402725, -0.03517579287290573, 0.01786046475172043, 3.253011891501956e-05, -0.023943064734339714, -0.006742504891008139, 0.0075386944226920605, 0.003141720313578844, -0.008428131230175495, -0.029250994324684143, 0.010730625130236149, -0.0007813953561708331, -0.008126870729029179, 0.015335611999034882, -0.025176800787448883, -0.03623737767338753, 0.02636749856173992, -0.0020263378974050283, 0.008040796034038067, -0.00966186635196209, -0.03376990929245949], "d5075358-1c6e-4cea-9e52-089839227b0b": [-0.023686513304710388, -0.022049132734537125, -0.035661593079566956, -0.0011482477420940995, -0.004700530786067247, 0.03419072553515434, -0.017136991024017334, -0.0034447433426976204, -0.027544070035219193, -0.027696708217263222, 0.019523680210113525, -0.01524983998388052, -0.0025653450284153223, -0.010212813504040241, -0.014091185294091702, 0.006854796316474676, 0.010691539384424686, -0.023311857134103775, 0.00821465440094471, -0.02182711474597454, -0.03144325688481331, 0.0011968141188845038, -0.0012878760462626815, 0.03446824848651886, -0.016082406044006348, -0.012099964544177055, 0.006174867041409016, -0.03205380588769913, 0.004801132716238499, 0.008693380281329155, 0.004926017485558987, 0.003926937934011221, -0.040240708738565445, 0.008623999543488026, -0.0015766725409775972, -0.016373805701732635, 0.021383078768849373, -0.012009769678115845, 0.03743773326277733, -0.013182300142943859, 0.0230620875954628, 0.0021386549342423677, 0.016554193571209908, -0.04692899063229561, -0.022049132734537125, 0.034384991973638535, 0.017983432859182358, -0.02105005271732807, -0.001999893691390753, 0.02259030006825924, 0.009359433315694332, 0.014174441806972027, -0.023020459339022636, 0.0011508495081216097, 0.029195327311754227, -0.025087999179959297, 0.019981592893600464, 0.02257642336189747, 0.007687362842261791, -0.0109829381108284, 0.00949819479137659, -0.02400566264986992, -0.00044793804408982396, -0.01319617684930563, -0.005224354099482298, -0.010226690210402012, -0.0008776637259870768, 0.00996998231858015, -0.015444105491042137, -0.030610689893364906, 0.005824495572596788, 0.01122576929628849, -0.0053353626281023026, -0.0012627256801351905, -0.0013069557026028633, -0.022659681737422943, -0.027918724343180656, 0.0004917344776913524, 0.03052743338048458, 0.009858973324298859, 0.01677621155977249, -0.01580488495528698, -0.023200849071145058, 0.026628246530890465, 0.018885379657149315, -0.00957451295107603, 0.011073132045567036, 0.025365522131323814, -0.029528353363275528, -0.006990088149905205, 0.011253521777689457, -0.0013182300608605146, 0.018871504813432693, -0.0008741946658119559, 0.0036806371062994003, 0.01738676056265831, -0.0029295929707586765, 0.030860459432005882, -0.0009574512951076031, -0.013674902729690075, 0.0054463716223835945, 0.0017986901802942157, -0.02386690303683281, 0.004357097204774618, -0.029750371351838112, -0.006466265302151442, 0.005817557219415903, 0.016235044226050377, 0.010316885076463223, 0.020467255264520645, -0.031110228970646858, 0.040545981377363205, -0.024865981191396713, -0.020814158022403717, -0.004651964642107487, -0.02372814156115055, -0.009602265432476997, -0.01849684864282608, -0.031831786036491394, -0.017608778551220894, -0.0005108141340315342, 0.020439503714442253, 0.010268318466842175, -0.009678583592176437, 0.016373805701732635, 0.00298162829130888, -0.004950300790369511, -0.023797521367669106, 0.014916813932359219, -0.008117522113025188, 0.032830867916345596, 0.013640211895108223, 0.012661946937441826, -0.005141097120940685, -0.004697062075138092, 0.037520989775657654, -0.009047221392393112, -0.021591220051050186, -0.025171255692839622, -0.006004884839057922, 0.018247079104185104, 0.048150088638067245, 0.0021091680973768234, 0.011593486182391644, -0.031831786036491394, 0.014930689707398415, 0.010150371119379997, -0.018385840579867363, -0.00537352217361331, 0.005952849518507719, 0.008096707984805107, -0.005612884648144245, -0.006299752276390791, -0.023506123572587967, 0.012648070231080055, 0.019176777452230453, -0.0013442477211356163, 0.003978973254561424, -0.015138831920921803, -0.029750371351838112, 0.015582866966724396, 0.03269210457801819, -0.002792566316202283, -0.015902018174529076, 0.015374725684523582, 0.04010194540023804, -0.0035835043527185917, -0.004873982165008783, -0.011558796279132366, -0.014035681262612343, -0.025698548182845116, 0.03205380588769913, -0.018538476899266243, 0.005425557494163513, 0.01977345161139965, 0.022507043555378914, -0.002091822912916541, -0.005456778686493635, -0.019329415634274483, -0.023339610546827316, -0.030610689893364906, 0.030749451369047165, 0.022798441350460052, 0.023520000278949738, -0.003139468841254711, 0.02293720282614231, 0.0019218407105654478, -0.029445096850395203, -0.0014249025844037533, -0.010962123982608318, 0.020980672910809517, 0.019523680210113525, -0.0154857337474823, -0.006955398246645927, -0.6109926700592041, -0.029139822348952293, 0.0009505132329650223, 0.009199858643114567, -0.0043397522531449795, 0.002867150353267789, -0.007038654759526253, 0.007055999711155891, -0.010691539384424686, 0.03907511383295059, -0.014958442188799381, 0.01627667248249054, -0.01484743319451809, -0.0109829381108284, -0.005668389145284891, 0.011329840868711472, -0.006657061632722616, -0.0011473804479464889, -0.007597167976200581, 0.02404729090631008, -0.007104566320776939, 0.009345557540655136, 0.001996424747630954, -0.011704495176672935, -0.01461153943091631, -0.03258109837770462, 0.04667922109365463, 0.0014613274252042174, 0.01501394622027874, 0.023964034393429756, -0.046873487532138824, 0.00435015931725502, 0.03191504254937172, -0.02134145051240921, 0.060444317758083344, -0.004769911523908377, -0.025545911863446236, 0.00861012376844883, 0.01992608793079853, 0.02447745017707348, -0.020037095993757248, 0.00940799992531538, 0.012446867302060127, 0.0028064423240721226, -0.004717876203358173, -0.017830796539783478, 0.029139822348952293, -0.005605946760624647, 0.0017457875655964017, -0.02578180469572544, 0.002135185757651925, -0.002159469062462449, -0.021244317293167114, 0.008783575147390366, -0.0017275752034038305, -0.006393415853381157, 0.03080495446920395, 0.013716530986130238, 0.01319617684930563, -0.0026104424614459276, -0.009394124150276184, -0.0021837521344423294, -0.021077804267406464, -0.009033344686031342, -0.017164742574095726, 0.01723412424325943, 0.012856212444603443, 0.0004225707962177694, 0.016887221485376358, -0.021285945549607277, -0.0002658141602296382, 0.021577345207333565, 0.0005099468980915844, -0.008651752024888992, -0.0026694159023463726, 0.011413097381591797, 0.01706760935485363, 0.007826123386621475, -0.0006192212458699942, 0.0034378052223473787, 0.012516247108578682, -0.0042842477560043335, -0.013730406761169434, -0.02417217567563057, 0.02039787545800209, 0.003083964576944709, -0.009144353680312634, 0.0235616285353899, 0.007701238617300987, -0.019690195098519325, 0.022409910336136818, -0.012523185461759567, -0.00892233569175005, -0.01615178771317005, 0.002320778788998723, 0.0040865130722522736, -0.0021126370411366224, 0.004783787298947573, 0.004613805096596479, -0.016498690471053123, -0.012384424917399883, -0.024310937151312828, 0.0069380528293550014, 0.0067333802580833435, 0.041517309844493866, 0.011871008202433586, -0.027308177202939987, -0.020328495651483536, 0.04962095618247986, -0.016235044226050377, -3.7969577533658594e-05, -0.0013850087998434901, -0.011995893903076649, -0.012835398316383362, -0.00035340708564035594, -0.02467171661555767, 0.0319705493748188, 0.014056495390832424, 0.0010545840486884117, 0.016359928995370865, 0.020592141896486282, 0.0013746017357334495, 0.001906229997985065, 0.00219415919855237, 0.02005097270011902, 0.013772035017609596, 0.007319645956158638, -0.019717946648597717, 0.021272070705890656, 0.0003393141378182918, 0.0007753274403512478, -0.03330265358090401, 0.0183442123234272, -0.013806724920868874, 0.023922406136989594, -0.02401953935623169, 0.010101805441081524, 0.00845054816454649, 0.028890052810311317, -0.01862173341214657, -0.018136071041226387, -0.005151504185050726, -0.009831220842897892, -0.014105062000453472, -0.017012106254696846, -0.023991787806153297, -0.03308063745498657, 0.004176707938313484, -0.008554619736969471, 0.01723412424325943, -0.0033424070570617914, 0.007826123386621475, 0.005231291987001896, 0.00987978745251894, -0.017470017075538635, -0.0015879468992352486, -0.0008247610530816019, -0.044986333698034286, 0.006421167869120836, -0.009616141207516193, -0.013938548043370247, 0.04112877696752548, -0.007017840631306171, -0.010490336455404758, 0.011468601413071156, 0.01098987553268671, 0.01004630047827959, 0.0020952920895069838, -0.013966300524771214, -0.015735503286123276, -0.010504212230443954, -0.007749805226922035, -0.02195199951529503, -0.003926937934011221, 0.006088141351938248, 0.009567574597895145, -0.0186772383749485, -0.012557875365018845, 0.007208636961877346, 0.008533804677426815, 0.006951929070055485, 0.02210463583469391, -0.007298831827938557, -0.010906619019806385, 0.01018506195396185, -0.004194052889943123, 0.02464396320283413, 0.02969486638903618, -0.01004630047827959, 0.04121203348040581, -0.02654499001801014, 0.0309714674949646, -0.021285945549607277, 0.016498690471053123, -0.032497838139534, 0.044653307646512985, -0.0023884247057139874, 0.005925097037106752, -0.009754902683198452, 0.022382158786058426, 0.007687362842261791, 0.041517309844493866, 0.012682761065661907, 0.018108317628502846, -0.008526867255568504, -0.023339610546827316, 0.0137581592425704, -0.04185033589601517, 0.030416423454880714, 0.0018923539901152253, 0.01896863617002964, 0.0170814860612154, -0.008193840272724628, 0.017497768625617027, 0.017012106254696846, 0.0024768849834799767, -0.028057485818862915, 0.020134229212999344, -0.017164742574095726, -0.0059736636467278, -0.012988035567104816, -0.022174017503857613, 0.021244317293167114, -0.011433911509811878, -0.0067021590657532215, -0.02260417677462101, 0.02703065425157547, 0.026961274445056915, 0.0030666193924844265, 0.002884495537728071, 0.008297910913825035, 0.03144325688481331, -0.009907539933919907, 0.007728991098701954, 0.0011274336138740182, -0.013959362171590328, 0.027252672240138054, 0.0006317964289337397, 0.020148105919361115, -0.019315538927912712, -0.023991787806153297, 0.012217910960316658, 0.026447858661413193, -0.02815461903810501, 0.005664920434355736, -0.005848778411746025, 0.033441416919231415, 0.006348318420350552, -0.007534725591540337, 0.013390442356467247, -0.01613791100680828, 0.00648361025378108, -0.02578180469572544, -0.004735221154987812, 0.0382147952914238, -0.03271985799074173, -0.014583786949515343, 0.013501451350748539, 0.030138902366161346, 0.024283185601234436, 0.01138534490019083, -0.010830300860106945, 0.013473698869347572, -0.0010329026263207197, 0.026461733505129814, 0.005207008682191372, -0.03704920411109924, 0.010851114988327026, -0.002064070664346218, -0.032497838139534, 0.0008793981978669763, -2.1505253243958578e-05, -0.0067021590657532215, -0.03410746902227402, -0.0018992919940501451, 0.009838159196078777, 0.026281343773007393, 0.016651326790452003, 0.019704069942235947, 8.314822480315343e-05, -0.03765975311398506, -0.02354775182902813, 0.016706831753253937, 0.015235964208841324, 0.01263419445604086, -0.02958385832607746, 0.009678583592176437, 0.01524983998388052, -0.032664354890584946, -0.0035592210479080677, -0.00391653086990118, 0.00691723870113492, -0.018691115081310272, -0.012648070231080055, 0.006861734203994274, 0.03621663525700569, 0.0019877522718161345, 0.001984283095225692, 0.01898251287639141, -0.0043779113329946995, 0.005442902445793152, 0.008693380281329155, -0.025351645424962044, 0.025573663413524628, 0.04076799750328064, 0.0009773982455953956, -0.01004630047827959, -0.018913133069872856, -0.03299738094210625, -0.03441274166107178, 0.0097202118486166, 0.008471362292766571, -0.005640637129545212, 0.007409840356558561, 0.013480637222528458, 0.019371043890714645, -0.014334017410874367, -0.0010745309991762042, 0.028890052810311317, -0.014819680713117123, 0.0015445840544998646, -0.02021748572587967, 0.004606867209076881, 0.016970477998256683, 0.018441345542669296, 0.0619429349899292, 0.010740105994045734, 0.00908191129565239, -0.02622584067285061, 0.018441345542669296, -0.025254512205719948, -0.040712494403123856, 0.026489486917853355, -0.012571752071380615, -0.02290945127606392, -0.005997946951538324, 0.024380318820476532, 0.014736424200236797, 0.03363567963242531, -0.014625415205955505, 0.019676318392157555, -0.017025981098413467, 0.012356672435998917, -0.016484813764691353, 0.003975504543632269, -0.013619397766888142, -0.002221911447122693, 0.031110228970646858, 0.023783644661307335, 0.005460247863084078, 0.02687801793217659, 0.01769203506410122, 0.003781238803640008, 0.0033666901290416718, 0.004801132716238499, 0.020023221150040627, 0.01846909709274769, 0.020966796204447746, 0.013078229501843452, 0.05153585597872734, -0.00051905307918787, -0.011010689660906792, 0.0017145663732662797, 0.02673925645649433, -0.004481981974095106, 0.020175857469439507, -0.0037604246754199266, -0.0021334511693567038, 0.015305344946682453, -0.03352467343211174, -0.0183442123234272, 0.020328495651483536, 0.005574725568294525, -0.003663291921839118, 0.0065842121839523315, 0.015624495223164558, -0.009588388726115227, -0.00324180512689054, 0.01706760935485363, 0.029500601813197136, -0.022215645760297775, -0.014292389154434204, -0.010330760851502419, -0.017261875793337822, -0.030083397403359413, -0.03127674385905266, 0.024893734604120255, -0.013397379778325558, -0.02483822964131832, -0.030943715944886208, -0.007486158981919289, -0.007333521731197834, -0.015471857972443104, 0.025393273681402206, 0.011933451518416405, 0.008082831278443336, -0.0203701239079237, 0.03241458162665367, 0.00691723870113492, 0.01579100824892521, 0.004561769776046276, -0.019398795440793037, -0.010296070948243141, 0.01974569819867611, -0.006147115025669336, -0.020439503714442253, 0.003087433520704508, -0.01627667248249054, -0.007354336325079203, -0.010212813504040241, -0.00047655749949626625, -0.010566654615104198, -0.014250760897994041, -0.0011265663197264075, -0.01027525682002306, 0.0018958229338750243, -0.010462583974003792, 0.002709309570491314, 0.03743773326277733, 0.017025981098413467, 0.013182300142943859, 0.03585585579276085, 0.011662866920232773, -0.0017830795841291547, -0.002355468925088644, -0.019190654158592224, -0.019842831417918205, 0.01296722050756216, -0.006258123554289341, 0.017914053052663803, 0.005918159149587154, 0.03432948514819145, -0.0038193981163203716, -0.008367291651666164, 0.0016191680915653706, 0.0043397522531449795, 0.008360354229807854, -0.001530707930214703, 0.00276481406763196, 0.002891433658078313, 0.010198937729001045, 0.02594831772148609, 0.02007872611284256, -0.010358513332903385, -0.007326583843678236, -0.009963043965399265, 0.020300742238759995, 0.013661026023328304, -0.015180460177361965, 0.01042789313942194, -0.011350654996931553, -0.049371182918548584, 0.0010259646223857999, 0.01201670803129673, 0.0034378052223473787, 0.0069623361341655254, -0.012301167473196983, -0.040518227964639664, -0.04473656415939331, 0.012079150415956974, -0.01771978661417961, 0.007139256689697504, -0.010629096999764442, -0.019079646095633507, -0.01611015945672989, -0.0024317875504493713, -0.006507893558591604, -0.03205380588769913, 0.0009071504464372993, -0.024782724678516388, -0.016082406044006348, 0.0006721238605678082, -0.008637876249849796, 0.038825344294309616, 0.004592990968376398, 0.008096707984805107, -0.02419992908835411, -0.027252672240138054, -0.0055018761195242405, -0.010525026358664036, -0.01863561011850834, -0.011760000139474869, 0.04948219284415245, 0.011003752239048481, 0.026947397738695145, -0.004849698860198259, 0.012384424917399883, -0.004693592898547649, -0.014361769892275333, -0.00994916819036007, -0.002985097235068679, -0.03005564585328102, -0.0004613805213011801, 0.0077151148580014706, 0.010178123600780964, 0.011010689660906792, 0.0313044935464859, 0.014916813932359219, 0.0012315043713897467, 0.016679080203175545, 0.002848070813342929, -0.008082831278443336, -0.016540318727493286, -0.036743927747011185, -0.022493166849017143, 0.00750697311013937, -0.015721628442406654, -0.004214867018163204, -0.04709550365805626, -0.007139256689697504, 0.011635114438831806, 0.0037326724268496037, 0.017497768625617027, -0.007458406966179609, 0.031387750059366226, -0.0014760707272216678, 0.03574484959244728, 0.005710017401725054, 0.019953839480876923, 0.005772460252046585, -0.004138548392802477, -0.021410832181572914, 0.012897840701043606, 0.005956318229436874, 0.007638796232640743, 0.024727221578359604, 0.004180177114903927, 0.0007519114878959954, -0.014334017410874367, 0.026433981955051422, -0.03160976991057396, -0.004953769966959953, 0.008075893856585026, -0.019371043890714645, -0.02056438848376274, -0.032664354890584946, -0.0027838938403874636, 0.005141097120940685, -0.005494937766343355, 0.0038193981163203716, 0.014403398148715496, 0.01613791100680828, -0.03463476151227951, -0.0316375195980072, -0.007687362842261791, -0.012058336287736893, 0.018885379657149315, 0.03541182354092598, 0.03441274166107178, 0.0005177521961741149, 0.007139256689697504, 0.0017154335509985685, 0.005109875928610563, -0.0056753274984657764, -0.0026832919102162123, 0.015138831920921803, 0.026600494980812073, -0.02274293825030327, -0.004676247481256723, 0.007867751643061638, -0.01178081426769495, -0.010885804891586304, -0.01630442403256893, 0.0518411323428154, 0.03346916660666466, 0.003071822924539447, -0.019523680210113525, -0.002752672415226698, -0.027627326548099518, -0.009976919740438461, 0.010504212230443954, -0.0017969557084143162, 0.006448920350521803, -0.025823432952165604, -0.013619397766888142, 0.016526442021131516, -0.01594364643096924, 0.019704069942235947, 0.012058336287736893, -0.0024838228709995747, -0.0010493805166333914, 0.01455603539943695, -0.016692955046892166, 0.0037430794909596443, -0.012689698487520218, 0.0238946545869112, -0.025060247629880905, 0.013369628228247166, -0.0019287787145003676, 0.0022947608958929777, -0.012335858307778835, -0.0034499468747526407, -0.005002336110919714, 0.03049967996776104, 0.020786406472325325, 0.002296495484188199, 0.02814074233174324, -0.02955610491335392, 0.024421947076916695, -0.0025358584243804216, 0.00023654424876440316, -0.02084191143512726, -0.014736424200236797, 0.009817345067858696, 0.024893734604120255, 0.0203701239079237, 0.00022331858053803444, -0.016068531200289726, -0.012058336287736893, -0.013029663823544979, 0.004749097395688295, -0.03155426308512688, 0.007527787238359451, -0.019038017839193344, -0.0023173096124082804, -0.005498406942933798, -0.014680920168757439, 0.01833033561706543, -0.0020553981885313988, 0.02068927325308323, 0.0012566548539325595, 0.014334017410874367, 0.0022167079150676727, 0.011919574812054634, -0.013258619233965874, -0.01833033561706543, -0.02372814156115055, -0.0019149025902152061, -0.007985698990523815, -0.0053527080453932285, 0.014667043462395668, -0.006778477691113949, -0.05497713014483452, -0.0016070265555754304, 0.023311857134103775, 0.015235964208841324, -0.000945309700910002, 0.025004742667078972, 0.0568920336663723, -0.003037132788449526, -0.013584707863628864, -0.006254654843360186, -0.008415858261287212, 0.030888210982084274, -0.01722024753689766, -0.003028460079804063, 0.022201769053936005, 0.004714407026767731, 0.0004982389509677887, -0.020828034728765488, 0.013813663274049759, -0.00915822945535183, -0.03765975311398506, -0.02986137941479683, 0.02024523913860321, 0.015180460177361965, 0.0015038229757919908, -0.030249910429120064, -0.02370038814842701, -0.00806895550340414, -0.002943468978628516, 0.006008354015648365, 0.0024491327349096537, 0.020467255264520645, -0.016817839816212654, 0.0024716814514249563, 0.008436672389507294, 0.007735928986221552, -0.008839079178869724, -0.035467326641082764, -0.037354476749897, -0.004762973170727491, -0.023020459339022636, -0.033441416919231415, -0.004991929046809673, 0.0034412741661071777, -0.004364035092294216, -0.03779851272702217, -0.025226760655641556, -0.024408070370554924, -0.0020831504371017218, -0.012377486564218998, -0.027086159214377403, 0.02088353969156742, 0.07493097335100174, 0.02941734530031681, 0.006438513286411762, 0.0180111862719059, -0.006972743198275566, 0.007045592647045851, -0.02798810601234436, -0.00041129643796011806, 0.017511645331978798, -0.014750300906598568, 0.01067766360938549, -0.015749379992485046, -0.04634619504213333, 0.007340460084378719, 0.008984779007732868, 0.01862173341214657, 0.029500601813197136, 0.01767815835773945, -0.03049967996776104, 0.005168849602341652, -0.0019201061222702265, 0.0011274336138740182, 0.03177628293633461, -0.008637876249849796, 0.005678796209394932, -0.042294371873140335, -0.0031932389829307795, 0.015069451183080673, 0.011191079393029213, -0.0010797345312312245, 0.0024369910825043917, 0.0068513271398842335, -0.0031984425149858, 0.014861308969557285, -0.023755893111228943, -0.01579100824892521, -0.01294640637934208, -0.015222088433802128, 0.035966865718364716, 0.019412672147154808, 0.014972317963838577, 0.030222158879041672, -0.010948247276246548, -0.0035973803605884314, 0.005154973361641169, 0.014722548425197601, -0.0010407079244032502, -0.033746689558029175, 0.023603256791830063, -0.013626336120069027, -0.011753061786293983, -0.00399631867185235, -0.024269308894872665, -0.009123539552092552, -0.021119432523846626, 0.010837238281965256, -0.01595752127468586, -0.03147100657224655, 0.0011369733838364482, 0.011357592418789864, -0.039435893297195435, -0.018593981862068176, 0.020814158022403717, -0.025823432952165604, 0.01882987655699253, 0.00019123007950838655, -0.030943715944886208, -0.014930689707398415, -0.015624495223164558, 0.0053665838204324245, -0.00884601753205061, -0.03271985799074173, 0.007416778709739447, 0.005494937766343355, -0.01416056603193283, 0.0012375751975923777, 0.20825259387493134, -0.024574583396315575, 0.007867751643061638, 0.007701238617300987, 0.0014552565990015864, 0.014056495390832424, -0.02105005271732807, 0.006698689889162779, -0.01895476132631302, 0.01959306187927723, 0.006507893558591604, 0.02245153859257698, 0.012037522159516811, -0.010157309472560883, 0.007617982104420662, -0.005671858321875334, -0.030721697956323624, -0.034829024225473404, -0.029001060873270035, -0.033580176532268524, -0.017303504049777985, -0.010365450754761696, -0.006067327223718166, -0.004988459870219231, 0.01413975190371275, 0.015929769724607468, 0.02260417677462101, 0.0035522831603884697, 0.021091680973768234, 0.013876105658710003, -0.03158201649785042, 0.008617062121629715, 0.013480637222528458, 0.015124955214560032, 0.01155185792595148, -0.008728070184588432, 0.022396035492420197, -0.007479221094399691, 0.03363567963242531, 0.0012792034540325403, 0.01769203506410122, -0.00470399996265769, 0.01524983998388052, -0.02433869056403637, -0.005165380425751209, 0.0115310437977314, -0.003144672606140375, -0.014223008416593075, 0.0170814860612154, -0.00033497787080705166, -0.007722052745521069, 0.025171255692839622, 0.02357550337910652, 0.009942229837179184, 0.015388601459562778, -0.019648566842079163, 0.0031689556781202555, -0.002135185757651925, -0.02370038814842701, 0.014944566413760185, -0.03477352112531662, 0.012280353344976902, 0.004155893810093403, -0.023964034393429756, -0.0286125298589468, 0.015846513211727142, -0.004523610696196556, -0.024102795869112015, -0.01896863617002964, -0.003135999897494912, 0.016679080203175545, -0.003833274357020855, -0.0044334158301353455, 0.018219327554106712, -0.012696636840701103, -0.021272070705890656, -0.0036736989859491587, 0.025504281744360924, 0.01328637171536684, 0.019412672147154808, 0.006029168143868446, 0.0028255220968276262, -0.005904282908886671, -0.007222513202577829, -0.02546265348792076, -0.02672537975013256, 0.026447858661413193, -0.01374428253620863, -0.006105486769229174, 0.001859398209489882, -0.025240637362003326, -0.01724799908697605, -0.02181323803961277, 0.011600424535572529, -0.02972261793911457, 0.00018331636965740472, -0.006358725484460592, 0.018927007913589478, 0.0033597522415220737, -0.023353485390543938, -0.04351546987891197, 0.04318244010210037, 0.01962081342935562, -0.018260955810546875, -0.048261094838380814, -0.023478372022509575, -2.861946813936811e-05, 0.004790725652128458, -0.012745203450322151, 0.001118761021643877, -0.002702371682971716, -0.025032494217157364, -0.0016356459818780422, -0.010531964711844921, 0.014445026405155659, 0.010358513332903385, 0.01946817710995674, 0.0023589381016790867, 0.005886937957257032, -0.02293720282614231, 0.014077309519052505, -0.009519008919596672, -0.005061309784650803, 0.014597663655877113, -0.02736368030309677, -0.029805876314640045, 0.00047829202958382666, -0.012453804723918438, -0.012217910960316658, -0.023908531293272972, 0.03424622863531113, 0.006629309616982937, 0.014077309519052505, -0.016887221485376358, -0.0026954335626214743, 0.0027474688831716776, -0.0006018761196173728, 0.003344141412526369, -0.007278017699718475, 0.007066406775265932, 0.006032636854797602, -0.01075398176908493, 0.01946817710995674, 0.00754860183224082, 0.004107327200472355, -0.011919574812054634, 0.018788248300552368, -0.009630017913877964, 0.0003226194530725479, -0.014445026405155659, -0.010670725256204605, -0.03308063745498657, -0.009886725805699825, -0.0043952567502856255, 0.02388077788054943, -0.013633274473249912, -0.002473415806889534, -0.060166794806718826, -0.012460743077099323, -0.007659610360860825, -0.03369118645787239, 0.013751220889389515, 0.030111148953437805, -0.004714407026767731, -0.02261805348098278, -0.0034221946261823177, -0.1777251660823822, 0.008096707984805107, -0.006265061907470226, -0.02764120325446129, 0.009324743412435055, 0.0006742920377291739, -0.012738265097141266, 0.0008369026472792029, 0.0067888847552239895, -0.009685521945357323, 0.02164672501385212, -0.013702654279768467, 0.002253132639452815, 0.01566612347960472, 0.012932530604302883, 0.00320364604704082, -0.004592990968376398, 0.0009158229804597795, 0.027599574998021126, 0.010379327461123466, 0.03618888556957245, -0.024865981191396713, 0.004360566381365061, -0.0069241770543158054, -0.014736424200236797, 0.00987978745251894, -0.04548587650060654, 0.012752140872180462, 0.010531964711844921, -0.004183645825833082, -0.03355242311954498, 0.00908191129565239, -0.003871433436870575, 0.011281274259090424, 0.011912636458873749, 0.0011759999906644225, -0.012127716094255447, -0.01145472563803196, -0.011891822330653667, 0.032636601477861404, 0.005827964283525944, 0.02610095590353012, -0.005723893642425537, 0.013265557587146759, -0.013445946387946606, 0.02342286705970764, 0.04185033589601517, 0.027557946741580963, 0.013140671886503696, -0.010712353512644768, -0.013022725470364094, -0.02544877864420414, -0.013896919786930084, 0.012856212444603443, 0.00892233569175005, 0.04157281294465065, 0.014805804938077927, -0.004964177031069994, 0.0026399290654808283, -0.006941522005945444, 0.012759079225361347, -0.014944566413760185, -0.009116601198911667, -0.020925167948007584, -0.013813663274049759, 0.01352226547896862, -0.031720779836177826, 0.01611015945672989, -0.03560608625411987, 0.01479192916303873, -0.0007462743087671697, 0.029667114838957787, 0.002659008838236332, 0.013501451350748539, 0.02482435293495655, -0.00025237168301828206, -0.02891780436038971, 0.017039857804775238, 0.027446936815977097, -0.0036702300421893597, -0.002761345123872161, 0.04792806878685951, -0.006060389336198568, 0.013452884741127491, -0.001459592836908996, 0.0015992212574929, 0.01383447740226984, 0.002912247786298394, 0.019093520939350128, 0.0010389734525233507, 0.01771978661417961, 0.008318725042045116, 0.008693380281329155, -0.02181323803961277, -0.009699397720396519, 0.014750300906598568, 0.014930689707398415, 0.01178775168955326, 0.02023136243224144, -0.02152184024453163, -0.01737288385629654, -0.01114945113658905, -0.019176777452230453, 0.01407037116587162, 0.034079715609550476, -0.0028446016367524862, -0.010448708198964596, -0.007673486601561308, 0.024865981191396713, -0.01019199937582016, 0.010629096999764442, -0.005224354099482298, 0.001536778756417334, 0.024158300831913948, -0.006410760805010796, 0.016790088266134262, 0.009116601198911667, -0.009144353680312634, 0.005980601534247398, 0.010760920122265816, 0.04995398223400116, 0.007222513202577829, -0.02608707919716835, 0.016179539263248444, -0.02908431738615036, -0.0233951136469841, -0.08098095655441284, -0.005699610337615013, 0.007160070817917585, -0.0044715749099850655, -0.02672537975013256, -0.013175362721085548, 0.007236389443278313, 0.028335008770227432, 0.009636955335736275, 0.023117592558264732, -0.004787256475538015, -0.018607858568429947, -0.01705373451113701, -0.013987114652991295, 0.011073132045567036, -0.007541663479059935, -0.0022392566315829754, -0.006958866957575083, -0.002445663558319211, 0.033718936145305634, -0.0023311858531087637, -0.02719716727733612, -0.014805804938077927, -0.016665203496813774, -0.02371426485478878, -0.004582583904266357, -0.04445904493331909, 0.013577769510447979, 0.009935291483998299, -0.003253946779295802, 0.02671150304377079, -0.028723539784550667, 0.009650832042098045, -0.011184141039848328, 0.013439008966088295, 0.0004947698907926679, -0.040573734790086746, -0.013092106208205223, 0.020939044654369354, -0.0363553985953331, 0.027585698291659355, 0.018260955810546875, 0.019690195098519325, -0.030888210982084274, -0.0016842123586684465, 0.007375150453299284, -0.017178619280457497, 0.03996318578720093, -0.016387680545449257, -0.015444105491042137, -0.007395964581519365, 0.02622584067285061, -0.01899638958275318, -0.019384920597076416, 0.0474562831223011, -0.0013850087998434901, 0.0032400707714259624, 0.015152707695960999, -0.02732205204665661, -0.0056822653859853745, 0.005862654652446508, -0.015152707695960999, -0.012363610789179802, 0.005796743091195822, 0.012703575193881989, 0.0007263274164870381, -0.04315469041466713, -0.021410832181572914, 0.017275752499699593, -0.0027474688831716776, -0.003517592791467905, 0.03160976991057396, -0.020356247201561928, -0.02150796353816986, -0.010830300860106945, 0.004537486471235752, -0.010545840486884117, -0.029472848400473595, -0.014188318513333797, 0.0012341061374172568, 0.0005385663826018572, -0.023783644661307335, 0.002280884888023138, 0.008832141757011414, 0.023742016404867172, 0.006636247504502535, 0.012481557205319405, -0.000816522107925266, -0.0071531324647367, -0.03299738094210625, -0.002041522180661559, 0.01020587608218193, 0.0027700175996869802, -0.002234053099527955, -0.022215645760297775, 0.02135532721877098, 0.014458902180194855, 0.0010329026263207197, -0.014486654661595821, -0.008020388893783092, -0.023006582632660866, -0.006008354015648365, -0.07348785549402237, 0.03641090169548988, 0.013279433362185955, 0.0013997522182762623, -0.004749097395688295, -0.014389521442353725, -0.00644545117393136, -0.004898265469819307, 0.0019391857786104083, 0.0370214506983757, -0.0009600530611351132, 0.007049061823636293, -0.006629309616982937, -0.005945911165326834, 0.003056212328374386, -0.01178081426769495, 0.026114830747246742, 0.003871433436870575, 0.032830867916345596, -0.020134229212999344, 0.0042911856435239315, 0.0012280354276299477, 0.03149875998497009, 0.01852460205554962, 0.01202364545315504, 0.019648566842079163, -0.012842335738241673, 0.022867823019623756, -0.018607858568429947, -0.03840906172990799, 0.012828459963202477, -0.02088353969156742, 0.004443822894245386, 0.027627326548099518, -0.007139256689697504, -0.021466335281729698, 0.03033316694200039, 0.015929769724607468, 0.008630937896668911, 0.0002571415971033275, -0.01455603539943695, -0.016984352841973305, 0.007375150453299284, -0.01912127435207367, -0.009602265432476997, -0.03871433436870575, -0.026517238467931747, 0.006958866957575083, 0.008471362292766571, -0.012446867302060127, 0.015721628442406654, 0.015471857972443104, -0.026767008006572723, -0.014916813932359219, -0.028890052810311317, -0.02719716727733612, 0.014091185294091702, 0.005009273998439312, 0.009276176802814007, -0.009151292033493519, 0.059667255729436874, 0.021077804267406464, 0.026295220479369164, -0.01129515003412962, 0.022798441350460052, -0.0054775928147137165, -0.015166583471000195, -0.00632750429213047, 0.0034620885271579027, -0.006046513095498085, -0.006792353931814432, -0.01946817710995674, 0.0004149822925683111, 0.023991787806153297, 0.003189769806340337, 0.0057065486907958984, -0.0056336987763643265, 0.015374725684523582, -0.009692460298538208, 0.030582936480641365, 0.012148531153798103, -0.01914902590215206, -0.015291468240320683, 0.009234548546373844, 0.008533804677426815, 0.027405308559536934, -0.030444176867604256, 0.008998654782772064, 0.0044403537176549435, -0.009588388726115227, -0.02733592875301838, -0.00948431808501482, -0.016887221485376358, 0.006709097418934107, 0.024546831846237183, 0.019246159121394157, -0.016054654493927956, 0.013376565650105476, 0.02210463583469391, 0.007111504208296537, 0.021424707025289536, 0.0001614181383047253, -0.01568000018596649, -0.010358513332903385, -0.02419992908835411, -0.013307185843586922, -0.021924247965216637, -0.03838130831718445, 0.016970477998256683, -0.004367504268884659, -0.0032522124238312244, -0.00309957517310977, -0.016540318727493286, 0.01615178771317005, -0.004710937850177288, -0.008943149819970131, 0.014223008416593075, -0.016179539263248444, -0.04104552045464516, 0.044320281594991684, 0.016193415969610214, 0.015707751736044884, 0.012134654447436333, -0.00652523897588253, 0.05342300608754158, 0.0033354689367115498, 0.016692955046892166, -0.008332601748406887, 0.011288211680948734, -0.013182300142943859, -0.0005255574942566454, 0.013168424367904663, -0.017941804602742195, -0.019537556916475296, -0.029944635927677155, 0.0043154689483344555, -0.0006829645717516541, 0.030388671904802322, 0.0025081061758100986, 0.08519928902387619, 0.0035626902244985104, -0.019176777452230453, -0.02214626409113407, 0.0026694159023463726, 0.01833033561706543, 0.02687801793217659, 0.040712494403123856, -0.006025698967278004, -0.04154505953192711, 0.009664707817137241, -0.012037522159516811, -0.0038575574290007353, -0.02231277897953987, -0.009470442309975624, 0.015444105491042137, 0.004298123996704817, 0.019079646095633507, -0.009609203785657883, -0.016207290813326836, 0.013418194837868214, 0.003233132651075721, 0.018247079104185104, -0.004638088401407003, -0.011558796279132366, -0.015180460177361965, 0.01989833638072014, -0.005401274189352989, 0.00513762841001153, -0.014431149698793888, 0.0019131681183353066, -0.01232891995459795, -0.013182300142943859, -0.007923256605863571, 0.00902640726417303, -0.005217415746301413, -0.005997946951538324, -0.006556460168212652, -0.005605946760624647, -0.006872141268104315, -0.007687362842261791, -0.0001532876049168408, -0.021091680973768234, -0.03419072553515434, 0.011655928567051888, -0.0109829381108284, -0.0036216636653989553, -0.0028272566851228476, -0.02163284830749035], "c50c0de2-ac18-4cd7-b256-ada4437b2bda": [-0.011244585737586021, -0.01352931372821331, -0.023477548733353615, -0.01135201845318079, -0.002923950320109725, 0.02420808933675289, -0.021142685785889626, -0.0036920916754752398, -0.02427971176803112, -0.026113223284482956, 0.033662136644124985, -0.01557052880525589, 0.002427970990538597, -0.010592829436063766, -0.03168538212776184, -0.005783441476523876, 0.015341339632868767, -0.01859295926988125, 0.022761333733797073, 0.006847021635621786, -0.0333469994366169, 0.0023259103763848543, -0.005056482739746571, 0.045465368777513504, -0.019452417269349098, -0.004522901959717274, 0.010965261608362198, -0.030367543920874596, 0.0020089850295335054, 0.007613372523337603, 0.004777158610522747, 0.0027574303094297647, -0.027760518714785576, 0.013643908314406872, -0.013300124555826187, -0.015799717977643013, 0.015255393460392952, -0.0009785296861082315, 0.030539436265826225, -0.009203371591866016, 0.025225115939974785, -0.003482598578557372, -0.0011674314737319946, -0.032974567264318466, -0.01244782842695713, 0.037300512194633484, 0.019466741010546684, -0.02058403752744198, -0.011853368952870369, 0.012626881711184978, 0.02006836235523224, 0.0073483726009726524, -0.0216726865619421, 0.02174430713057518, 0.03059673309326172, -0.017232147976756096, 0.019194578751921654, 0.010485397651791573, -0.009704722091555595, -0.0024566196370869875, 0.003033173270523548, -0.01928052492439747, 0.008351074531674385, 0.008172020316123962, -0.008329587988555431, -0.013156881555914879, -0.001824559411033988, 0.009919586591422558, -0.014424582943320274, -0.026800790801644325, 0.018807822838425636, 0.00531432032585144, 0.0004646449233405292, -0.014224043115973473, 0.007942832075059414, -0.013142557814717293, -0.02750268206000328, -0.01165999099612236, 0.015412961132824421, -0.0032265514601022005, 0.011516747996211052, -0.0032659433782100677, -0.0369853749871254, 0.02115701138973236, 0.024809710681438446, -0.022761333733797073, 0.010843505151569843, 0.0059266844764351845, -0.033318351954221725, 0.0044226315803825855, 0.029622679576277733, 0.004472767002880573, 0.010141613893210888, 0.011617017909884453, 0.011316207237541676, 0.003939186222851276, -0.012712827883660793, 0.020870523527264595, -0.0007949993596412241, -0.029364842921495438, 0.0061200628988444805, -0.010299181565642357, -0.026915384456515312, 0.0013822962064296007, -0.029207274317741394, -0.03076862543821335, -0.0039821588434278965, 0.015627825632691383, 0.012096882797777653, 0.006159454584121704, -0.029178626835346222, 0.02363511733710766, -0.02833349071443081, -0.0036634430289268494, -0.0022077348548918962, -0.01938079483807087, 0.016401339322328568, -0.0017815864412114024, -0.027961058542132378, -0.03996483236551285, 0.0195526871830225, 0.014632285572588444, -0.006052022334188223, -0.00956864096224308, 0.013794313184916973, 0.0051495907828211784, 0.009146073833107948, -0.02589835785329342, 0.015384312719106674, -0.008408372290432453, 0.021085388958454132, -0.00024440858396701515, 0.019180255010724068, -0.0077422913163900375, -0.013063773512840271, 0.034722134470939636, -0.0232913326472044, -0.0012247287668287754, -0.028276193886995316, -0.011287558823823929, 0.004351010080426931, 0.028304843232035637, 0.00958296563476324, 0.0017672621179372072, -0.027416735887527466, 0.03669888898730278, 0.003615098539739847, -0.008594588376581669, -0.009217695333063602, 0.011488099582493305, -0.005146009381860495, 0.0061666169203817844, 0.004888171795755625, -0.025697818025946617, -0.0031585111282765865, 0.012032423168420792, -0.0019624310079962015, 0.02811862714588642, -0.011774585582315922, -0.024666467681527138, -0.00040891437674872577, 0.025884034112095833, -0.004286550916731358, -0.008028777316212654, 0.02558322250843048, 0.04363185912370682, 0.005253441631793976, -0.0013688672333955765, -0.02393592707812786, -0.021930523216724396, -0.007341210730373859, 0.010736072435975075, -0.01555620413273573, 0.018478363752365112, 0.014431745745241642, 0.02115701138973236, 0.015713771805167198, -0.010879315435886383, -0.024394305422902107, -0.022388901561498642, -0.01645863614976406, 0.01650160923600197, 0.019452417269349098, 0.021973496302962303, -0.010907964780926704, 0.020054038614034653, 0.02932186983525753, -0.014481880702078342, 0.00875931791961193, 0.0002618663420435041, 0.013937557116150856, 0.026399709284305573, -0.020283227786421776, 0.0006383272120729089, -0.5931411385536194, -0.02877754531800747, -0.0058801304548978806, 0.009754857048392296, -0.02437998168170452, 0.017504310235381126, -0.01724647358059883, 0.006363576278090477, -0.024995926767587662, 0.04612428694963455, -0.029035381972789764, 0.036612942814826965, -0.017676202580332756, -0.018736202269792557, 0.002651788527145982, -0.0032158084213733673, -0.01958133652806282, 0.003231923095881939, 0.002263241447508335, 0.01478269137442112, 0.00041271926602348685, 0.007086954079568386, 0.014052151702344418, -0.0025192885659635067, -0.009009992703795433, -0.014224043115973473, 0.0412253737449646, -0.016745122149586678, 0.004859523382037878, 0.007985804229974747, -0.01928052492439747, -0.0004982175305485725, 0.03251619264483452, -0.005915941204875708, 0.058557793498039246, -0.007434318773448467, -0.02154376730322838, 0.030825922265648842, 0.022732684388756752, 0.027445383369922638, -0.014066475443542004, 0.0022793563548475504, 0.03495132550597191, 0.0014762994833290577, -0.006553373299539089, -0.01092228852212429, 0.010435261763632298, 0.007287494372576475, 0.009905262850224972, -0.031227001920342445, 0.008587425574660301, -0.002725200494751334, -0.011036883108317852, 0.014467556029558182, 0.006965197157114744, -0.0013357421848922968, 0.030482137575745583, -0.0021343226544559, 0.005353712011128664, -0.008043101988732815, -0.02236025221645832, -0.00251212646253407, -0.014868637546896935, -0.007477291394025087, -0.03168538212776184, 0.01286323368549347, 0.00020031657186336815, -0.007849724031984806, 0.006052022334188223, 0.0013321611331775784, 0.021586740389466286, 0.01999674178659916, -0.004902496002614498, -0.0007238254765979946, 0.0004353248223196715, 0.009425397962331772, 0.024838358163833618, 0.004691212438046932, -0.009926749393343925, 0.0013061983045190573, 0.010349316522479057, -0.005740468390285969, -0.03288862481713295, -0.026184843853116035, 0.02437998168170452, 0.0158140417188406, -0.018392417579889297, 0.011101342737674713, -0.010993910022079945, -0.005493374075740576, 0.017876742407679558, -0.026944033801555634, -0.024609170854091644, -0.026084573939442635, 0.0019946605898439884, 0.01780512183904648, -0.007215872872620821, 0.006424454506486654, 0.008479993790388107, -0.00023299390159081668, -0.016687825322151184, -0.008193506859242916, -0.014467556029558182, 0.0031459773890674114, 0.05251293256878853, 0.017131878063082695, -0.023477548733353615, -0.03684213384985924, 0.052255094051361084, -0.03389132395386696, -0.0060448599979281425, -0.005479049868881702, -0.025640521198511124, -0.011946476995944977, 0.01003418117761612, -0.02538268268108368, 0.02263241447508335, 0.017690526321530342, 0.009640262462198734, 0.011760260909795761, 0.00879512820392847, 0.0010331410448998213, 0.0032963824924081564, 0.008651885204017162, 0.01728944666683674, 0.01780512183904648, 0.023620791733264923, -0.013178368099033833, 0.014539177529513836, -0.002864862559363246, -0.005428914912045002, -0.02942213974893093, 0.036469701677560806, -0.005342968739569187, 0.020426470786333084, -0.005303577054291964, 0.028047004714608192, -0.004186280537396669, 0.024666467681527138, -0.018206201493740082, -0.032287001609802246, 0.002641045255586505, -0.004444118123501539, -0.034894026815891266, -0.0009319756063632667, -0.02078457921743393, -0.031570784747600555, 0.0066142515279352665, -0.017647553235292435, 0.017962688580155373, -0.01751863583922386, 0.003008105792105198, -0.0013599144294857979, 0.022317279130220413, -0.022030793130397797, 0.00030662983772344887, 0.005529184825718403, -0.05701076611876488, 0.012347557581961155, -0.033547542989254, -0.00715857557952404, 0.038532402366399765, -0.004318780265748501, -0.0015139008173719049, 0.0036330039147287607, 0.013973367400467396, -0.0011799653293564916, 0.004802226088941097, -0.020498091354966164, -0.024738088250160217, -0.026600249111652374, 0.0016320764552801847, -0.0084871556609869, -0.007591885980218649, -0.004311618395149708, 0.010277695022523403, -0.020913496613502502, -0.016659175977110863, 0.0018890188075602055, 0.020555390045046806, 0.012061071582138538, 0.03962105140089989, -0.011745937168598175, 0.0046339151449501514, 0.016315393149852753, 0.016143500804901123, 0.020254578441381454, 0.01704593189060688, -0.02324835956096649, 0.03423510864377022, -0.017060257494449615, 0.00666080554947257, -0.011029721237719059, 0.017031608149409294, -0.029307544231414795, 0.04291564226150513, -0.02140052430331707, 0.0036276322789490223, 0.007842561230063438, 0.02218836173415184, 0.011187288910150528, 0.029708625748753548, 0.024580521509051323, 0.013987692072987556, -0.007316142786294222, -0.01913728192448616, 0.01670214906334877, -0.03076862543821335, 0.03669888898730278, 0.019223228096961975, 0.00072248256765306, 0.007785264402627945, -0.008816614747047424, -0.009504182264208794, 0.009611614048480988, 0.008243641816079617, -0.021271605044603348, 0.0196529570966959, -0.013765664771199226, -0.009647425264120102, -0.00499918544664979, -0.012197152711451054, 0.036469701677560806, -0.00042704358929768205, -0.01913728192448616, -0.012619719840586185, 0.028763221576809883, 0.023549171164631844, 0.00528209051117301, 0.013099584728479385, 0.0216726865619421, 0.025253763422369957, 0.003436044557020068, 0.004490672145038843, 0.009898100048303604, 0.008086075074970722, 0.02119998261332512, -0.008293777704238892, 0.0377875380218029, -0.011638504453003407, -0.012856070883572102, -0.0021504375617951155, 0.03595402464270592, -0.0242510624229908, -0.005747630726546049, -0.009432559832930565, 0.03165673092007637, 0.013908907771110535, -0.009368101134896278, 0.01040661334991455, 0.0028236801736056805, 0.0038460781797766685, -0.0066142515279352665, -0.01107985619455576, 0.020054038614034653, -0.020899172872304916, -0.016959987580776215, 0.019352147355675697, 0.023062143474817276, 0.009339451789855957, 0.007341210730373859, 0.0009346614242531359, 0.024824034422636032, 0.0033859096001833677, 0.014532015658915043, 0.007856885902583599, -0.0397069975733757, -0.003763713175430894, 0.004859523382037878, -0.03432105481624603, -0.0003164777881465852, -0.010721748694777489, 2.3640712242922746e-05, -0.0291499774903059, 0.001171907875686884, -0.0025157073978334665, 0.03214376047253609, 0.009561479091644287, 0.02046944387257099, 0.007484453730285168, -0.0358680784702301, -0.04383239895105362, 0.012104044668376446, 0.012598233297467232, 0.0016929548000916839, -0.016043230891227722, -0.005371617618948221, 0.015269718132913113, -0.014646610245108604, 0.024666467681527138, -0.018750526010990143, -0.0053214821964502335, -0.02599862776696682, 0.0016016372246667743, 0.007957155816257, 0.019094308838248253, 0.02774619497358799, 0.011015396565198898, 0.008830939419567585, 0.005948171019554138, 0.0018925998592749238, -0.0006428035558201373, -0.011459450237452984, 0.008372561074793339, 0.036441054195165634, -0.011115667410194874, -0.006811210885643959, -0.03188592195510864, -0.01810593158006668, -0.026772141456604004, 0.014589313417673111, 0.01003418117761612, -0.0022650319151580334, -0.004397564101964235, -0.004666144959628582, 0.007194386329501867, -0.005754792597144842, -0.0243513323366642, 0.023606467992067337, -0.011545396409928799, 0.013679719530045986, -0.04197023808956146, -0.004154050722718239, 0.005113780032843351, 0.02767457254230976, 0.04990590736269951, 0.005146009381860495, 0.0184926874935627, -0.01539863646030426, 0.010170262306928635, -0.024050522595643997, -0.03423510864377022, 0.024580521509051323, -0.005815671291202307, -0.026499979197978973, 0.007606210187077522, 0.017475662752985954, 0.021729983389377594, 0.03265943378210068, -0.006958035286515951, 0.047384828329086304, -0.00022001250181347132, 0.0079070208594203, -0.014940259046852589, 0.005969657562673092, -0.017704851925373077, 0.019423767924308777, 0.027187546715140343, 0.0038353349082171917, 0.016487283632159233, 0.025640521198511124, 7.307637861231342e-05, 0.007398507557809353, -0.001265911152586341, -0.01724647358059883, 0.02397890016436577, 0.015083502046763897, 0.011566882953047752, 0.002590910065919161, 0.04437672346830368, -0.0034861797466874123, -0.006528305821120739, 0.01062864065170288, 0.002320538740605116, 0.0009973302949219942, 0.02154376730322838, 0.002202363219112158, 0.00038742792094126344, 0.014603637158870697, -0.035209160298109055, -0.00016271525237243623, 0.020841876044869423, -0.0030600314494222403, 0.001658934517763555, 0.03893348202109337, 0.0018729039002209902, -0.016301067546010017, -0.021658360958099365, 0.01032066810876131, 0.013765664771199226, -0.011409315280616283, -0.026156196370720863, -0.01663052849471569, -0.00958296563476324, -0.03351889178156853, -0.013285800814628601, 0.022661063820123672, -0.0161148514598608, -0.03283132612705231, -0.011617017909884453, -0.01731809414923191, -0.007283913437277079, -0.004934725817292929, 0.031828623265028, -0.0016965358518064022, 0.009804992005228996, -0.04537942260503769, 0.03724321350455284, 0.0016419243765994906, 0.009855127893388271, -0.011975125409662724, -0.018234850838780403, -0.007892696186900139, 0.023721063509583473, -0.031227001920342445, -0.012927692383527756, -0.0019498971523717046, -0.01824917457997799, -0.006052022334188223, -0.010456748306751251, 0.009325128048658371, -0.002891720738261938, -0.007215872872620821, 0.003068984020501375, -0.010764721781015396, 0.002723410027101636, -0.006499656941741705, 0.008630398660898209, 0.014309989288449287, 0.009418236091732979, 0.007928507402539253, 0.024193765595555305, 0.004401145037263632, -0.015384312719106674, -0.008802290074527264, -0.03288862481713295, -0.014825664460659027, 0.0333469994366169, -0.008515804074704647, 0.00951850600540638, 0.011939315125346184, 0.026457006111741066, 0.004956212360411882, -0.014696745201945305, 0.004132564179599285, 0.0017797958571463823, 0.015427284874022007, -0.015756744891405106, 0.001351857092231512, -0.00040980963967740536, 0.01555620413273573, 0.022274307906627655, 0.017962688580155373, -0.0018236641772091389, 0.01083634328097105, -8.53863384691067e-05, 0.01923755183815956, -0.0030725651886314154, -0.00769931823015213, 0.020111335441470146, -0.001680420944467187, -0.028247546404600143, -0.01032066810876131, 0.008479993790388107, -0.006026954855769873, 0.013779989443719387, 0.004465604666620493, -0.032945919781923294, -0.043946992605924606, 0.00898850616067648, 0.009289316833019257, 0.004146888852119446, -0.014467556029558182, -0.015541879460215569, -0.03492267429828644, 0.012634044513106346, -0.022131063044071198, -0.031828623265028, 0.002972295042127371, -0.03125565126538277, -0.020827552303671837, -0.004007226787507534, 0.007928507402539253, 0.04311618208885193, -0.0018979714950546622, -0.011846207082271576, -0.0289494376629591, -0.01478269137442112, -0.028591329231858253, -0.028748895972967148, -0.013450530357658863, -0.010112965479493141, 0.05566428229212761, 0.016129177063703537, 0.026227816939353943, -0.006270468235015869, 0.01731809414923191, 0.012147017754614353, -0.0011065532453358173, -0.012197152711451054, -0.006825535092502832, -0.017547283321619034, -0.002714457456022501, 0.009525667876005173, 0.018363770097494125, 0.006374319549649954, 0.030367543920874596, 0.01773349940776825, -0.010485397651791573, 0.024122143164277077, -0.015527555719017982, -0.009146073833107948, -0.016687825322151184, -0.047384828329086304, -0.029092680662870407, 0.009432559832930565, -0.005113780032843351, -0.007190805394202471, -0.04317348077893257, -0.0025550993159413338, 0.01938079483807087, -0.004802226088941097, 0.014073637314140797, -0.010707424022257328, 0.03466483950614929, -0.023377278819680214, 0.038704294711351395, -0.005611549597233534, 0.031026462092995644, -0.01555620413273573, -0.012075396254658699, -0.023620791733264923, 0.011846207082271576, 0.013106746599078178, 0.021959172561764717, 0.014768366701900959, -0.002759220777079463, 0.003138815052807331, 0.005851482041180134, 0.012003774754703045, -0.017103230580687523, -0.0014190023066475987, -0.005894454661756754, -0.029107004404067993, -0.006958035286515951, -0.03543835133314133, -0.011001072824001312, 0.00842269603163004, -0.003351889317855239, -0.0060018873773515224, 0.015255393460392952, 0.01759025640785694, -0.04772861301898956, -0.01332161109894514, -0.0015953703550621867, -0.0031227003782987595, 0.023792684078216553, 0.022274307906627655, 0.025568898767232895, 0.005285671446472406, 0.014839988201856613, 0.0034181391820311546, -0.0006356413941830397, 0.005923103541135788, 0.0046697258949279785, 0.02095646969974041, 0.039936184883117676, -0.027961058542132378, 0.013378908857703209, 0.006213170941919088, 0.01844971626996994, -0.008136210031807423, -0.019939443096518517, 0.03025295026600361, 0.02705862745642662, 0.011688639409840107, -0.037501052021980286, -0.012111206538975239, -0.013622421771287918, -0.016816744580864906, 0.013593773357570171, 0.010385126806795597, 0.016172150149941444, -0.026213493198156357, -0.017704851925373077, 0.01854998618364334, -0.01783376932144165, 0.02730214037001133, 0.007806750480085611, -0.01731809414923191, -0.010141613893210888, 0.022231334820389748, -0.011459450237452984, 0.004701955709606409, -0.027932411059737206, 0.02102809213101864, -0.02897808514535427, 0.018736202269792557, -0.0006302697584033012, 0.016172150149941444, -0.016902688890695572, -0.020254578441381454, -0.003556010778993368, 0.03303186595439911, 0.008100398816168308, -0.006753913592547178, 0.007491615600883961, -0.03134159743785858, 0.015341339632868767, -0.027559978887438774, 0.0016526676481589675, -0.009296479634940624, -0.0292502474039793, 0.010592829436063766, 0.03389132395386696, 0.0018872282234951854, 0.009597289375960827, -0.024093495681881905, -0.02420808933675289, -0.021457821130752563, 0.007065467536449432, -0.013765664771199226, -0.0014664515620097518, -0.035409703850746155, -0.01400917861610651, -0.01625809632241726, -0.010915126651525497, 0.027173222973942757, 0.005615130998194218, 0.01104404591023922, 0.007251683622598648, 0.031771328300237656, -0.01972457952797413, -0.0007018913747742772, -0.012942017056047916, -0.004247158765792847, -0.03833186253905296, -0.002696551848202944, -0.004239996895194054, -0.01574241928756237, 0.021944846957921982, 0.002784288488328457, -0.06004752218723297, -0.015011880546808243, 0.01889376901090145, 0.005740468390285969, 0.0009248134447261691, 0.015899987891316414, 0.04159780591726303, 0.016472959890961647, -0.003412767546251416, 0.006718102842569351, -0.014410259202122688, 0.02301917038857937, -0.008623236790299416, 0.015212420374155045, 0.008938371203839779, -0.006334927398711443, 0.0322297029197216, -0.01320701651275158, 0.019466741010546684, -0.016759445890784264, -0.037329159677028656, -0.02880619466304779, 0.028548356145620346, 0.012061071582138538, -0.0292502474039793, -0.02629943937063217, -0.007341210730373859, -0.017002960667014122, -0.02558322250843048, 0.020283227786421776, 0.011366342194378376, 0.007978642359375954, 0.003588240360841155, -0.0005720772314816713, 0.0073483726009726524, 0.040451861917972565, 0.0027896598912775517, -0.030883219093084335, -0.020054038614034653, -0.005772698204964399, -0.03933456540107727, -0.02641403302550316, -0.003638375550508499, 0.0169743113219738, -0.0018424647860229015, -0.04939023032784462, -0.014438907615840435, -0.040279969573020935, -0.008623236790299416, -0.009088777005672455, -0.03707132115960121, 0.013744178228080273, 0.06720967590808868, 0.011008234694600105, 0.01738971658051014, 0.0244516022503376, -0.02307646907866001, 0.007770939730107784, -0.01817755401134491, -0.008315264247357845, 0.01985349878668785, -0.02511052042245865, 0.020942145958542824, -0.01913728192448616, -0.043030235916376114, 0.011201612651348114, 0.019524039700627327, 0.01352931372821331, 0.01352931372821331, 0.007949993945658207, -0.014295664615929127, 0.0011540025006979704, 0.010478234849870205, -0.006252562627196312, 0.013457692228257656, 0.00531432032585144, 0.002644626423716545, -0.055406443774700165, -0.0028720248956233263, 0.031169705092906952, 0.009912424720823765, -0.00634567067027092, 0.016229446977376938, 0.014825664460659027, 0.009704722091555595, 0.007792426273226738, -0.015427284874022007, -0.00994823593646288, 0.0015201676869764924, -0.029508085921406746, 0.03709997236728668, 0.015541879460215569, 0.019524039700627327, 0.03684213384985924, -0.007849724031984806, -0.004444118123501539, 0.006961616221815348, 0.006768237799406052, -0.008873911574482918, -0.01783376932144165, 0.020755929872393608, -0.005153171718120575, -0.00987661350518465, 0.01238336879760027, -0.015871338546276093, -0.01296350359916687, -0.024537548422813416, -0.014023502357304096, -0.006034116726368666, -0.027559978887438774, 0.009769181720912457, 0.006847021635621786, -0.03615456819534302, -0.010750397108495235, 0.0025622614193707705, -0.018234850838780403, 0.009189046919345856, 0.001955268671736121, -0.025053223595023155, -0.02695835754275322, -0.009074452333152294, -0.013615259900689125, -0.019266201183199883, -0.033490244299173355, 0.011344855651259422, 0.001160269370302558, -0.01827782392501831, 0.011344855651259422, 0.20122794806957245, -0.007036818657070398, -0.011796072125434875, 0.02459484525024891, -0.014116610400378704, 0.009554317221045494, -0.017346743494272232, 0.009611614048480988, -0.0205124169588089, 0.03672754019498825, 0.0022524981759488583, 0.014481880702078342, 0.003932023886591196, -0.009769181720912457, 0.006639319006353617, 0.013844449073076248, -0.043431319296360016, -0.026256466284394264, -0.031169705092906952, -0.01862160675227642, -0.009984046220779419, -0.021944846957921982, -0.000834838894661516, -0.007079791743308306, 0.029880518093705177, 0.015054852701723576, 0.0009382425341755152, 0.007620534393936396, 0.034693486988544464, 0.0232913326472044, -0.03205781430006027, -0.0004006331437267363, 0.02407917007803917, 0.010428099893033504, -0.0004017522151116282, -0.023262685164809227, 0.022145388647913933, -0.010786207392811775, 0.03240159526467323, -0.006718102842569351, -0.0027753356844186783, -0.018635932356119156, 0.016959987580776215, -0.020841876044869423, -0.01088647823780775, -0.00047538813669234514, 0.01193215325474739, -0.015785392373800278, 0.01886511966586113, 0.010463911108672619, 0.006990264635533094, 0.029450787231326103, 0.030911868438124657, 0.030568083748221397, 0.02198782004415989, -0.00999837089329958, 0.009497019462287426, -0.0004431584384292364, -0.021930523216724396, -0.0035255716647952795, -0.037501052021980286, 0.008616073988378048, 0.008444182574748993, -0.009547154419124126, -0.022030793130397797, 0.009955397807061672, -0.005733306519687176, -0.03649834915995598, -0.011774585582315922, -0.006295535713434219, 0.004680469166487455, -0.01728944666683674, -0.02260376699268818, 0.01035647839307785, -0.019810525700449944, -0.02973727509379387, 0.00419344287365675, 0.01893674209713936, 0.005171076860278845, 0.032287001609802246, 0.011946476995944977, 0.010313505306839943, -0.0013348469510674477, -0.0077064805664122105, -0.01618647389113903, -0.020627010613679886, 0.03813132271170616, 0.011459450237452984, -0.006961616221815348, 0.0009131749393418431, -0.016931338235735893, 0.004934725817292929, -0.011717287823557854, 0.01368688140064478, -0.023033495992422104, -0.009454046376049519, 0.0004060047504026443, 0.00038026575930416584, -0.012605395168066025, -0.015971608459949493, -0.037816185504198074, 0.04211347922682762, 0.01615782454609871, -0.0006710045272484422, -0.03793078288435936, -0.014052151702344418, -0.004705537110567093, 0.0197532270103693, -0.0022184778936207294, -0.008687695488333702, -0.004035875201225281, -0.021114038303494453, 0.0028702341951429844, -0.00112535385414958, 0.009317966178059578, 0.021386198699474335, 0.004429793916642666, -0.013987692072987556, 0.005210469011217356, -0.021171335130929947, 0.003638375550508499, -0.012934855185449123, -0.004376077558845282, 0.010915126651525497, -0.014231204986572266, -0.02695835754275322, 0.0011146105825901031, -0.01130188349634409, -0.004941888153553009, -0.025497278198599815, 0.02737376280128956, 0.01728944666683674, 0.017447013407945633, -0.01351498905569315, 0.008859587833285332, 0.00021038834529463202, 0.004608847666531801, -0.01301363855600357, -0.000894821947440505, 0.015599177218973637, -0.008494317531585693, 0.014596475288271904, 0.014603637158870697, 0.01790539175271988, 0.0023259103763848543, -0.02078457921743393, 0.018478363752365112, -0.0040573617443442345, -0.024852683767676353, -0.02942213974893093, -0.007964317686855793, -0.0016768398927524686, -0.0020537483505904675, 0.0020555390510708094, 0.022217009216547012, -0.013679719530045986, -0.003727902425453067, -0.049504827708005905, 0.005654522683471441, -0.004995604045689106, -0.021787280216813087, 0.015470257960259914, 0.030854569748044014, 0.0013661814155057073, -0.01667349971830845, -0.008000128902494907, -0.18484093248844147, 0.004619590938091278, 0.017103230580687523, -0.013185529969632626, 0.009110263548791409, 0.0037135782185941935, -0.0217729564756155, 0.004118239972740412, -0.030195651575922966, -0.010155937634408474, 0.030654029920697212, -0.007692156359553337, -0.020011065527796745, 0.002941855927929282, -0.007513102144002914, 0.004354591015726328, 0.014897285960614681, 0.00979066826403141, 0.04875996336340904, 0.021959172561764717, 0.03701402619481087, -0.03111240826547146, 0.0031817881390452385, -0.006639319006353617, -0.004619590938091278, 0.010334991849958897, -0.02959403023123741, 0.015155123546719551, 0.018779175356030464, -0.013543638400733471, -0.04197023808956146, 0.010069992393255234, -0.01114431582391262, 0.009418236091732979, 0.007613372523337603, -0.0023509778548032045, -0.0205124169588089, 0.006947292014956474, -0.009976884350180626, 0.04073834791779518, 0.006152292713522911, 0.021901875734329224, 0.0161148514598608, 0.009439722634851933, -0.005310738924890757, 0.028218897059559822, 0.05047887936234474, 0.029622679576277733, 0.012748639099299908, -0.018535660579800606, -0.016988635063171387, -0.01852133683860302, -0.010420938022434711, 0.01632971689105034, 0.004282969515770674, 0.031026462092995644, 0.018564309924840927, 0.006410130299627781, 0.00023478444200009108, -0.014617961831390858, 0.018779175356030464, -0.012605395168066025, -0.009396749548614025, -0.020111335441470146, -0.030539436265826225, -0.0024673629086464643, -0.014238366857171059, 0.01504052896052599, -0.02383565716445446, 0.019294850528240204, -0.010499721392989159, 0.017361067235469818, -0.018120255321264267, -0.013142557814717293, 0.019495390355587006, -0.012827422469854355, -0.04194159060716629, 0.029794571921229362, 0.016544582322239876, -0.008021615445613861, -0.0018147113732993603, 0.038217268884181976, -0.018062958493828773, 0.01061431597918272, -0.012476476840674877, -0.0024225993547588587, -0.009346614591777325, 0.004555131774395704, 0.009955397807061672, -0.004279388580471277, 0.019982416182756424, 0.006356413941830397, 0.009804992005228996, -0.03271673247218132, -0.005765535868704319, 0.0037744564469903708, 0.007634859066456556, 0.007226616144180298, 0.002200572518631816, -0.015341339632868767, -0.025984304025769234, 0.007205129601061344, -0.022489171475172043, 0.0216726865619421, 0.029035381972789764, 0.016071880236268044, -0.02897808514535427, 0.00010262027353746817, 0.04308753460645676, -0.0316280834376812, 0.00024485622998327017, 0.004239996895194054, 0.00927499309182167, 0.008580263704061508, -0.022474847733974457, 0.020569713786244392, 0.01625809632241726, -0.009146073833107948, 0.005582901183515787, 0.008501480333507061, 0.0578988753259182, 0.0007681412971578538, -0.01968160644173622, 0.007398507557809353, -0.03300321847200394, -0.012583909556269646, -0.07746588438749313, -0.026571601629257202, 0.011158639565110207, 0.0030761463567614555, -0.00210925517603755, -0.013951880857348442, -0.004214928951114416, 0.013393232598900795, 0.005812089890241623, 0.02839078940451145, -0.002000032225623727, -0.01264120638370514, -0.018879445269703865, 0.008673371747136116, 0.01721782423555851, -0.007369859144091606, -0.0021952008828520775, 0.0011280396720394492, 0.007684994023293257, 0.04348861426115036, -0.014087961986660957, -0.011617017909884453, -0.00606992794200778, -0.007606210187077522, -0.02922159805893898, -0.006381481420248747, -0.04007942974567413, 0.020655659958720207, 0.007957155816257, 0.011287558823823929, 0.014968907460570335, -0.005887292791157961, 0.01145228836685419, 0.009217695333063602, -0.006456684321165085, -0.017991337925195694, -0.02942213974893093, -0.018850795924663544, 0.021314578130841255, -0.04016537591814995, 0.024881331250071526, 0.0431448295712471, 0.031771328300237656, -0.027459708973765373, 0.002404693979769945, 0.003244456835091114, -0.008329587988555431, 0.03618321567773819, -0.0025515183806419373, -0.009411074221134186, -0.0015121103497222066, 0.012648368254303932, -0.01190350390970707, -0.023305658251047134, 0.03982159122824669, -0.022546468302607536, 0.009819316677749157, 0.031026462092995644, -0.03827456384897232, -0.004046618472784758, -0.01066445093601942, -0.02064133621752262, -0.02009701170027256, 0.0030188490636646748, 0.01625809632241726, 0.010191748850047588, -0.02929322049021721, -0.012010936625301838, 0.00948269572108984, 0.009489857591688633, -0.020412147045135498, 0.011767423711717129, -0.020311875268816948, 0.0022417549043893814, -0.023176738992333412, -0.0028970923740416765, -0.007223034743219614, -0.03515186533331871, -0.0075775617733597755, 0.008995668962597847, -0.012899043969810009, -0.01814890466630459, -0.006191684398800135, -0.0027520586736500263, 0.011058369651436806, 0.007405669894069433, 0.006650062277913094, 0.011860531754791737, 0.009332289919257164, -0.03503727167844772, 0.014797015115618706, 0.0036777674686163664, 0.007663507480174303, -0.013128233142197132, -0.022073766216635704, 0.02493862994015217, 0.013335935771465302, 0.0020286808721721172, -0.013085260055959225, 0.0019122958183288574, -0.019738903269171715, -0.006309859920293093, -0.0705329179763794, 0.04924698919057846, 0.0019946605898439884, 0.014152421616017818, -0.014825664460659027, -0.01269134134054184, -0.00717648072168231, 0.015269718132913113, -0.010958099737763405, 0.022030793130397797, -0.0015846271999180317, 0.01814890466630459, -0.016172150149941444, 0.00022392929531633854, -0.006958035286515951, -0.016659175977110863, 0.024136466905474663, 0.0025497276801615953, 0.024537548422813416, -0.020942145958542824, -0.006342089734971523, -0.01748998649418354, 0.015226745046675205, 0.029995111748576164, 0.015527555719017982, 0.01584269106388092, -0.013421881012618542, 0.007899858988821507, -0.015857014805078506, -0.025568898767232895, 0.02363511733710766, -0.014395934529602528, 0.0049920231103897095, 0.026628898456692696, -0.018578633666038513, -0.031083758920431137, 0.023090792819857597, 0.022174036130309105, 0.02489565685391426, -0.012956341728568077, -0.012956341728568077, -0.02651430293917656, -0.0021593901328742504, -0.022446198388934135, -0.011946476995944977, -0.01773349940776825, -0.018564309924840927, 0.009382424876093864, 0.007720804773271084, 0.008243641816079617, 0.019294850528240204, 0.011051207780838013, -0.03475078195333481, -0.01352931372821331, -0.0045085777528584, -0.02088484913110733, 0.02294754981994629, 0.004272226244211197, 0.02078457921743393, 0.0011280396720394492, 0.04469185695052147, 0.012762962840497494, 0.03684213384985924, -0.015871338546276093, 0.006965197157114744, -0.013328772969543934, -0.020942145958542824, -0.011523909866809845, 0.004225672222673893, -0.03045349009335041, 0.01577106863260269, -0.02215971238911152, 7.11179745849222e-05, 0.029164301231503487, 0.0002757430193014443, 0.0034056054428219795, -0.010965261608362198, 0.01112999115139246, -0.0169743113219738, 0.013873097486793995, 0.014037827029824257, -0.009389587678015232, -0.008558777160942554, 0.01645863614976406, -0.0006025164038874209, 0.0013796103885397315, -0.026800790801644325, 0.019524039700627327, 0.014410259202122688, 0.0025336130056530237, -0.026729168370366096, -0.018263500183820724, 0.0013061983045190573, -0.00036347945570014417, 0.030854569748044014, 0.011975125409662724, -0.011538234539330006, -0.003398443339392543, 0.028233220800757408, 0.007001007907092571, 0.027244843542575836, -0.00478432048112154, -0.0008245432982221246, -0.028992410749197006, -0.028218897059559822, -0.023964576423168182, -0.021629713475704193, -0.024222413077950478, -0.0012963503831997514, -0.01759025640785694, 0.0004888171679340303, -0.016587555408477783, 0.010270532220602036, 0.0337480828166008, 4.3980118789477274e-05, -0.0046160100027918816, 0.0065247248858213425, -0.005353712011128664, -0.03412051498889923, 0.04073834791779518, 0.006309859920293093, -0.00502425292506814, 0.025339709594845772, -0.0006002782611176372, 0.03933456540107727, -0.013242827728390694, 0.0337480828166008, 0.00012847119069192559, 0.025096196681261063, -0.022145388647913933, 0.011674315668642521, -0.009203371591866016, -0.03987888619303703, -0.011924990452826023, -0.010728910565376282, 0.009289316833019257, -0.0037601322401314974, 0.016573229804635048, 0.006481751799583435, 0.10221830010414124, 0.012562423013150692, -0.027617275714874268, 0.00041674799285829067, -0.006077089812606573, 0.01373701635748148, 0.01810593158006668, 0.025124846026301384, 0.011681477539241314, -0.035237811505794525, 0.008680533617734909, -0.006406548898667097, -0.0033715851604938507, -0.04002213105559349, -0.02181592956185341, 0.005088712088763714, -0.00015745553537271917, 0.016444312408566475, 0.008250804618000984, -0.021114038303494453, 0.01594296097755432, 0.01114431582391262, 0.02383565716445446, 0.016344040632247925, -0.01539863646030426, -0.014087961986660957, 0.030167004093527794, 0.0030134774278849363, -0.005181820131838322, -0.028319166973233223, 0.010843505151569843, -0.013199854642152786, -0.021701334044337273, -0.02452322468161583, -0.010857829824090004, -0.01564214937388897, -0.01584269106388092, -0.03148483857512474, -0.0006508610094897449, -0.0029096261132508516, -0.0052677663043141365, 0.015054852701723576, -0.022861603647470474, -0.024995926767587662, 0.0058228331618011, -0.012598233297467232, -0.0033483081497251987, -0.023549171164631844, -0.029364842921495438], "01024302-ea9b-4c9e-a828-a1993457fb64": [-0.012430024333298206, -0.00860814843326807, -0.012230000458657742, -0.004954150412231684, -0.028088996186852455, 0.03560416027903557, -0.018073540180921555, 0.010444077663123608, -0.006979386787861586, -0.017516331747174263, 0.020116636529564857, -0.005768531002104282, -0.006961527746170759, 0.013330128975212574, -0.013708745129406452, 0.007082970347255468, 0.01723058521747589, 0.0057113817892968655, 0.017944954335689545, -0.007900923490524292, -0.03297528252005577, -0.0015707192942500114, -0.019259393215179443, 0.022659791633486748, 0.0017466326244175434, 0.002611019415780902, 7.428323442582041e-05, -0.018887922167778015, 0.019316542893648148, 0.017659205943346024, -0.007722330745309591, 0.0013992706080898643, -0.02988920733332634, 0.0017296663718298078, 0.002341344952583313, -0.01614474318921566, 0.00673292949795723, -0.018902208656072617, 0.031403668224811554, -0.026717407628893852, 0.020202361047267914, -0.005722097121179104, -0.0037040042225271463, -0.017044849693775177, -0.01670195162296295, 0.025174370035529137, 0.00196987297385931, -0.011644218116998672, -0.005404202733188868, 0.01775921881198883, 0.015458948910236359, -0.006415035109966993, -0.01653050258755684, -0.002889623399823904, 0.033946823328733444, 0.010915561579167843, 0.004125481937080622, -0.0012831856729462743, -0.0193594042211771, -0.03251808509230614, 0.01088698673993349, -0.012029977515339851, 0.0068579441867768764, 0.011929965578019619, -0.038918834179639816, -0.009772570803761482, -0.005261329002678394, 0.01054408960044384, -0.0066257743164896965, -0.014451689086854458, 0.023788493126630783, 0.02080243080854416, -0.01653050258755684, -0.004836279433220625, 0.00043330955668352544, -0.016444778069853783, -0.03800443932414055, -0.00787234865128994, 0.0206595566123724, 0.009608265943825245, 0.018187839537858963, -0.012501460500061512, -0.016116168349981308, 0.013723032549023628, 0.015930432826280594, -0.0022341895382851362, 0.0024395708460360765, 0.002784254029393196, -0.037975866347551346, 0.013994492590427399, 0.01947370357811451, 0.028731929138302803, 0.012294293381273746, 0.019988050684332848, 0.009558259509503841, 0.026460234075784683, 0.003814731491729617, 0.01881648413836956, -0.003807587781921029, -0.026460234075784683, 0.0024377848021686077, -0.01681625097990036, -0.006200724747031927, 0.0027753242757171392, -0.017302021384239197, -0.016616227105259895, 0.010229766368865967, 0.022874101996421814, 0.006468613166362047, -0.002100245328620076, -0.03497551381587982, 0.03563273698091507, 0.008836747147142887, -0.014830304309725761, -0.011787091381847858, -0.003380752168595791, -0.00044179268297739327, -0.017830654978752136, -0.026760268956422806, -0.015816133469343185, -0.01680196262896061, 0.03320388123393059, 0.004782701842486858, -0.02321699820458889, -0.019988050684332848, 0.009994025342166424, 0.006411463487893343, -0.02456001192331314, 0.020088061690330505, 0.007465158123522997, 0.03268953412771225, 0.026260212063789368, 0.004225493874400854, -0.014830304309725761, 0.0008286682423204184, 0.016873400658369064, -0.010308347642421722, 0.0011331681162118912, -0.022031145170331, -0.00914392527192831, 0.018459299579262733, 0.040776193141937256, -0.004289786797016859, -0.01514462660998106, -0.01308009959757328, 0.021931134164333344, 0.01020119246095419, 0.004604109562933445, -0.007936641573905945, -0.007850917056202888, 0.01975945197045803, -0.01630190573632717, 0.002073456533253193, -0.0260030385106802, 0.005757815670222044, 0.009451104328036308, -0.014987465925514698, 0.02480289898812771, -0.005322050303220749, -0.026231637224555016, -0.02630307339131832, 0.04186203330755234, -0.009822576306760311, 0.000782234244979918, 0.0035164824221283197, 0.031032197177410126, -0.00753659475594759, -0.0028521190397441387, -0.0046433997340500355, -0.027031730860471725, -0.0017680637538433075, 0.007247275207191706, -0.017273446545004845, 0.011222739703953266, 0.018645035102963448, 0.02174539864063263, 0.021002454683184624, -0.02283123880624771, -0.04311932250857353, -0.011415619403123856, -0.018116403371095657, 0.0029682039748877287, 0.015673259273171425, 0.03749009594321251, -0.027517501264810562, 0.00303785502910614, 0.003818303346633911, -0.029403435066342354, 0.01775921881198883, -0.0018109258962795138, 0.016901975497603416, 0.03443259373307228, 0.0026770986150950193, -0.0026628111954778433, -0.6039562821388245, -0.015258925966918468, 0.0004406764928717166, -0.013523008674383163, 0.010572664439678192, 0.008643867447972298, -0.0021948993671685457, 0.0022788376081734896, -0.011422763578593731, 0.025402968749403954, -0.012380017898976803, 0.026445947587490082, -0.012022833339869976, 0.010522658005356789, -0.009908300824463367, -0.01830213889479637, 0.001950227888301015, 0.010651244781911373, 0.013773038052022457, 0.0008215245907194912, -0.009022482670843601, 0.0026520956307649612, 0.0153589379042387, -0.012908651493489742, -0.002712816931307316, -0.003298599738627672, 0.03749009594321251, -0.02480289898812771, -0.007529451046139002, -0.007215128745883703, -0.029574884101748466, 0.004075476434081793, 0.02107389084994793, -0.012365730479359627, 0.05152030661702156, 0.0068865190260112286, -0.031832292675971985, 0.018916497007012367, 0.03220376372337341, 0.03174656629562378, -0.008915327489376068, 0.005800677929073572, 0.01733059622347355, 0.018244989216327667, 0.0036825730931013823, -0.012215713039040565, 0.019916612654924393, 0.0008978727855719626, -0.0010001168120652437, -0.027703236788511276, 0.008372406475245953, -0.009079632349312305, -0.00753659475594759, -0.011872815899550915, 0.0070472522638738155, 0.01961657777428627, 0.0260173249989748, 0.0005938193644396961, 0.017001986503601074, -0.010822692885994911, -0.0120085459202528, -0.01588757149875164, 0.009108207188546658, -0.007465158123522997, -0.023274147883057594, -0.018345000222325325, 0.0037432946264743805, 0.01127988938242197, 0.01487316656857729, 0.010965567082166672, 0.014351677149534225, 0.024631449952721596, 0.010044030845165253, -0.009994025342166424, 0.0036397110670804977, 0.018887922167778015, 0.004950578324496746, 0.019816601648926735, -0.013973060995340347, 0.012508604675531387, 0.007436583284288645, 0.009765426628291607, -0.00787949189543724, -0.008622435852885246, 0.012387162074446678, 0.012637190520763397, -0.0300320815294981, -0.005132742691785097, -0.01060123834758997, -0.01308009959757328, 0.024660024791955948, -0.009572546929121017, -0.015201776288449764, -0.020716706290841103, 0.01460884977132082, 0.032489512115716934, -0.020073773339390755, 0.0013501577777788043, 0.010786974802613258, -0.006286448799073696, -0.005089880432933569, -0.024345701560378075, 0.006511474959552288, 0.00807237159460783, 0.05180605500936508, 0.006679351907223463, -0.022774089127779007, -0.0019877322483807802, 0.03028925321996212, -0.030517851933836937, -0.00787234865128994, -0.018116403371095657, -0.013172968290746212, 0.0070543959736824036, -0.0009018910932354629, -0.027060305699706078, 0.028503330424427986, 0.011565636843442917, 0.004568391013890505, 0.019259393215179443, 0.01705913618206978, -0.009108207188546658, 0.002387779066339135, 0.012958656996488571, 0.011337039060890675, 0.028531905263662338, 0.003896883921697736, -0.03374680131673813, 0.03254666179418564, -0.013380134478211403, -0.009465391747653484, -0.027517501264810562, 0.03486121818423271, -0.024474289268255234, 0.013501578010618687, -0.026874568313360214, 0.024388564750552177, -0.003420042572543025, 0.028531905263662338, -0.010051174089312553, -0.041404839605093, 0.007650894112884998, 0.0016341195441782475, -0.004214778076857328, -0.0018153906567022204, -0.022902676835656166, -0.030660726130008698, 0.02803184650838375, -0.01763063110411167, 0.004714836832135916, -0.005632800981402397, -0.018459299579262733, -0.013030094094574451, 0.013751606456935406, -0.037947289645671844, -0.0077866241335868835, 0.009393954649567604, -0.03097504749894142, 0.02267407812178135, -0.019702302291989326, -0.012794352136552334, 0.03120364621281624, -0.012065695598721504, -0.013994492590427399, 0.01260861661285162, 0.004193346947431564, -0.013958773575723171, 0.01521606370806694, -0.0050577339716255665, -0.031403668224811554, -0.0166733767837286, 0.01120130904018879, -0.018244989216327667, -0.005447064992040396, -0.024888623505830765, -0.006700783036649227, -0.03926173225045204, 0.0027074592653661966, 0.029546309262514114, 0.006929381284862757, -0.0032057317439466715, 0.057206686586141586, 0.011587068438529968, 0.011408476158976555, 0.014730292372405529, 0.006893662735819817, 0.009029626846313477, 0.00993687566369772, -0.03620423004031181, 0.03631852939724922, -0.0037254353519529104, 0.031717993319034576, -0.009693989530205727, 0.017259160056710243, -0.036089930683374405, 0.03266096115112305, -0.05034874007105827, 0.011101297102868557, -0.0025395825505256653, -0.0019395123235881329, 0.02523151971399784, 0.008058084174990654, 0.020216647535562515, 0.00767946895211935, -0.009708276949822903, -0.027031730860471725, 0.026774557307362556, -0.023931367322802544, 0.035832758992910385, 0.014973178505897522, 0.0041647725738584995, -0.007243703585118055, -0.027646087110042572, -0.015344650484621525, 0.0022520488128066063, 0.03700432553887367, -0.010701250284910202, 0.011579924263060093, -0.0017868159338831902, 0.0022341895382851362, -0.010001168586313725, 0.00042504965676926076, 0.03306100517511368, 0.012637190520763397, -0.008729591965675354, -0.024074241518974304, 0.013015806674957275, 0.020616695284843445, 0.012787208892405033, -0.004218350164592266, 0.009715421125292778, 0.014273096807301044, 0.00894390232861042, 0.008293826133012772, 0.029546309262514114, -0.02377420663833618, 0.04377654567360878, 0.004786273464560509, 0.01514462660998106, -0.014844591729342937, 0.001959157409146428, 0.019916612654924393, 0.027003156021237373, -0.021516799926757812, -0.014108791947364807, -0.005082736723124981, 0.006097141187638044, 0.03283240646123886, -0.014244521968066692, 0.006747216917574406, -0.006875803228467703, 0.010486939921975136, -0.00807237159460783, -0.029946357011795044, 0.047148365527391434, -0.021816834807395935, -0.01693055033683777, 0.02387421764433384, 0.01895935833454132, 0.03360392525792122, 0.01140133198350668, 0.017144860699772835, 0.021145328879356384, 0.017101997509598732, 0.02145965024828911, -0.016216181218624115, -0.03840448707342148, 0.0012555038556456566, -0.0024485003668814898, -0.014830304309725761, 0.001453741337172687, -0.009629696607589722, 0.010858411900699139, -0.014201659709215164, 0.003014638088643551, 0.022631216794252396, 0.02444571442902088, 0.007247275207191706, 0.016973411664366722, -0.000722405849955976, -0.017144860699772835, -0.048920001834630966, 0.026603108271956444, 0.008500993251800537, 0.01588757149875164, -0.003125365125015378, 0.008293826133012772, 0.027660375460982323, -0.01737345941364765, 0.007147263735532761, -0.011901390738785267, -0.010415502823889256, -0.007179410196840763, -0.017673494294285774, -0.008622435852885246, 0.04786273464560509, 0.027588937431573868, -0.010165473446249962, -0.008993907831609249, -0.0005996236577630043, -0.0153589379042387, -0.0035557725932449102, -0.02444571442902088, 0.006686495617032051, 0.056520890444517136, -0.017659205943346024, -0.007443726994097233, -0.019245106726884842, -0.009508254006505013, -0.027574650943279266, 0.03097504749894142, 0.005832824390381575, -0.011222739703953266, 0.0021145327482372522, 0.015673259273171425, 0.0008572430233471096, -0.02817472070455551, -0.015587535686790943, 0.05843539908528328, -0.005247041583061218, -0.015716122463345528, -0.019145093858242035, -0.016459066420793533, 0.030803600326180458, -0.009715421125292778, 0.024502864107489586, 0.01573040895164013, 0.011437050998210907, -0.0286747794598341, 0.003571846056729555, -0.010836980305612087, -0.010615525767207146, 0.008236676454544067, -0.0013733747182413936, -0.03380395099520683, -0.003627209458500147, 0.004814848303794861, -0.010894129984080791, 0.030632151290774345, -0.00034825498005375266, 0.029974931851029396, -0.014758867211639881, -0.00707225501537323, -0.01161564327776432, -0.025845877826213837, -0.02681741863489151, 0.008029509335756302, 0.021545374765992165, 0.014730292372405529, -0.003003922523930669, 0.02907482534646988, -0.008929614908993244, 0.013737319968640804, -0.013865905813872814, -0.023974230512976646, 0.019387979060411453, 0.034232571721076965, 0.030060656368732452, 0.01907365769147873, 0.04340507090091705, 0.0026645970065146685, 0.014451689086854458, -0.003366464748978615, 0.0100083127617836, -0.007636606693267822, 0.0017582412110641599, 0.01054408960044384, -0.003521840088069439, 0.009536828845739365, -0.015044615603983402, 0.0003011512744706124, 0.021245339885354042, -0.0013858762104064226, -0.008550998754799366, 0.023145562037825584, -0.005818536970764399, -0.019716588780283928, -0.02403138019144535, 0.010972710326313972, 0.0030932186637073755, -0.014687430113554, 0.00048621752648614347, -0.03054642677307129, -0.015687547624111176, -0.04294787719845772, -0.017702069133520126, 0.024317126721143723, -0.008643867447972298, -0.011679936200380325, -0.027860399335622787, -0.04843423143029213, -0.007379433605819941, -0.009236793965101242, 0.014816016890108585, 0.001106379320845008, -0.004557675216346979, -0.034918367862701416, 0.04017612338066101, 0.00596855441108346, -0.0030932186637073755, -0.019145093858242035, -0.010529802180826664, -0.02456001192331314, 0.02707459218800068, -0.00011820577492471784, -0.005975698120892048, 0.001361766248010099, -0.03126079589128494, -0.010429790243506432, -0.005475639831274748, 0.008300970308482647, -0.009715421125292778, 0.0036897168029099703, 0.011965683661401272, -0.015116051770746708, 0.0033593210391700268, 0.0005978377303108573, 0.004364795982837677, 0.029574884101748466, 0.004621968604624271, 0.016473352909088135, 0.009093919768929482, -0.01974516361951828, 0.004379082936793566, -0.000590247567743063, -0.018330713734030724, -0.005061305593699217, -0.020730994641780853, -0.011794235557317734, 0.020759569481015205, 0.0068793753162026405, 0.0006866873591206968, -0.008043796755373478, -0.011194164864718914, -0.022316893562674522, -0.006054278928786516, -0.0173448845744133, -0.008522424846887589, 0.005872114561498165, 0.010829837061464787, 0.013937342911958694, 0.007600888144224882, -0.014115935191512108, -0.008436700329184532, 0.02230260521173477, 0.007758049294352531, 0.020388096570968628, -0.016101881861686707, 0.011179877445101738, 0.03683287650346756, 0.0022931250277906656, -0.023059837520122528, -0.012179994955658913, 0.005118455272167921, -0.00753659475594759, -0.002469931496307254, 0.00420763436704874, -0.03586133196949959, -0.0360042080283165, 0.009836863726377487, 0.02680313214659691, 0.01487316656857729, -0.0247028861194849, -0.01973087713122368, -0.011922821402549744, -0.005461352411657572, -0.011337039060890675, -0.017830654978752136, -0.012787208892405033, -0.013887337408959866, -0.007622319273650646, 0.002366347936913371, 0.02960345894098282, 0.03363250195980072, -0.005872114561498165, -0.01380875613540411, -0.013222973793745041, -0.011787091381847858, -0.018387863412499428, -0.02390279248356819, -0.004121910315006971, -0.0072937095537781715, 0.044348038733005524, 0.0008050047908909619, 0.02643165923655033, -0.008936758153140545, -0.001506426022388041, 0.0030646438244730234, -0.012322868220508099, -0.004068332724273205, -0.0019430841784924269, -0.011558493599295616, -0.01868789829313755, -0.008743878453969955, 0.005939980037510395, 0.0016242970013990998, 0.019445128738880157, 0.008808172307908535, -0.004275499377399683, 0.0333467535674572, -0.0033521773293614388, -0.008822459727525711, -0.011172734200954437, -0.04120481386780739, -0.004339792765676975, 0.0014028424629941583, -0.01693055033683777, -0.007136548403650522, -0.037832994014024734, -0.03746151924133301, 0.004846994765102863, 0.005293475929647684, 0.008015221916139126, -0.02295982651412487, 0.0454053059220314, -0.009165356867015362, 0.018230700865387917, 0.0029342714697122574, -0.0005719418404623866, -0.019145093858242035, -0.0010688748443499207, -0.021588236093521118, -0.004368367604911327, 0.01235144305974245, 0.004061189014464617, 0.02880336530506611, 0.007736618164926767, -0.013130106031894684, 0.007472301833331585, 0.005475639831274748, -0.029803482815623283, -0.01361587643623352, 0.0006406998727470636, -0.013187255710363388, -0.0067114983685314655, -0.03720434755086899, -0.015401800163090229, 0.0010001168120652437, 0.010115467943251133, -0.003764725523069501, 0.0018698613857850432, 0.019845176488161087, -0.01708771102130413, -0.012058552354574203, 0.011437050998210907, -0.00313608068972826, 0.05163460597395897, -0.0021556089632213116, 0.028660491108894348, 0.01773064397275448, -0.011901390738785267, -0.010129755362868309, -0.010001168586313725, -0.0002629771479405463, -0.007822342216968536, 0.0025735150557011366, 0.06566481292247772, -0.02283123880624771, 0.0044683790765702724, 0.005743528250604868, -0.006729357875883579, 0.013844475150108337, -0.018859347328543663, 0.03857593610882759, 0.04777701199054718, 0.012451454997062683, -0.028131859377026558, -0.005686378572136164, -0.010051174089312553, 0.0015108907828107476, 0.0003134294820483774, 0.003796872217208147, 0.016630515456199646, -0.02588873915374279, -0.02334558591246605, -0.014237377792596817, -0.009715421125292778, 0.02988920733332634, -0.009901156648993492, -0.018973644822835922, 0.004675546195358038, 0.014273096807301044, -0.008879609405994415, -0.009886869229376316, -0.03040355257689953, 0.020188072696328163, -0.02444571442902088, 0.0021288201678544283, -0.0028038991149514914, 0.016487641260027885, -0.015201776288449764, -0.007197269704192877, 0.0031003623735159636, 0.029832057654857635, -0.022116869688034058, -0.002907482674345374, -0.0007335678674280643, -0.01047979574650526, 0.014558844268321991, 0.005986413918435574, 0.006168577820062637, -0.016901975497603416, -0.03508981317281723, -0.008300970308482647, 0.0307178758084774, 0.012865789234638214, 0.01127274613827467, -0.022631216794252396, -0.011479913257062435, -0.031403668224811554, 0.01174422912299633, -0.001316225272603333, 0.006979386787861586, -0.029260562732815742, -0.012780064716935158, 0.015916146337985992, -0.001240323530510068, 0.01950227841734886, 0.01180852297693491, 0.006436466239392757, 0.019373692572116852, 0.0044183735735714436, -0.015301788225769997, -0.007161551155149937, 0.0016841253964230418, -0.026788843795657158, -0.05034874007105827, 0.01380875613540411, -0.005761387292295694, 0.001582327764481306, 0.011444194242358208, 0.005904261488467455, -0.029832057654857635, -0.011237027123570442, 0.013973060995340347, 0.021573949605226517, -0.0010885200463235378, 0.0018895064713433385, 0.02308841235935688, 0.01346585899591446, 0.013715888373553753, 0.009643984027206898, -0.018445013090968132, 0.026331648230552673, -0.014387395232915878, -0.012744346633553505, 0.00819381419569254, -0.008015221916139126, 0.0036254236474633217, -0.0037290072068572044, 0.030317828059196472, -0.0004221475392114371, -0.017816368490457535, -0.03014637902379036, 0.021645385771989822, 0.013115818612277508, -0.004068332724273205, -0.02643165923655033, 0.009572546929121017, -0.015544673427939415, -0.005682806950062513, 0.04351937025785446, 0.019959475845098495, 0.010565520264208317, 0.000339995080139488, 0.008901040069758892, 0.03134651854634285, 0.019130807369947433, -0.010486939921975136, -0.013137249276041985, -0.01207998301833868, -0.01985946297645569, -0.04283357784152031, -0.03720434755086899, 0.01334441639482975, 0.010851267725229263, -0.0044755227863788605, -0.02548869326710701, -0.004721980541944504, -0.03280383348464966, -0.0280032716691494, -0.011072722263634205, -0.009186787530779839, 0.010844124481081963, 0.03949032723903656, 0.028231870383024216, 0.003175371093675494, 0.003764725523069501, -0.005525645799934864, 0.016616227105259895, -0.019788026809692383, 0.01815926469862461, 0.0021520371083170176, -0.014730292372405529, 0.01827356405556202, -0.005429205950349569, -0.04177631065249443, -0.0025502981152385473, 0.005329194013029337, 0.017459183931350708, 0.027917547151446342, 0.006957956124097109, -0.004039757885038853, -0.0023931367322802544, 0.001710914191789925, -0.028088996186852455, -0.0030503564048558474, -0.002380635356530547, -0.009101063944399357, -0.050663061439991, -0.009665414690971375, 0.024217115715146065, 0.01800210401415825, 0.006725785788148642, 0.017144860699772835, 0.03523268923163414, 0.004807704593986273, 8.751022687647492e-05, -0.02508864551782608, -0.009365379810333252, 0.009715421125292778, -0.00290391081944108, 0.03120364621281624, 0.021845409646630287, 0.007736618164926767, 0.032632384449243546, 0.0062042963691055775, 0.006915093865245581, 0.02094530500471592, 0.010622669942677021, -0.031546544283628464, -0.009365379810333252, 0.026660257950425148, -0.003418256528675556, 0.0016341195441782475, -0.007893779315054417, -0.01973087713122368, -6.100043174228631e-05, -0.01920224353671074, -0.0015725052217021585, -0.02321699820458889, -0.0160018689930439, 0.006757932715117931, 0.019402267411351204, -0.03854736313223839, -0.021416788920760155, 0.0010715537937358022, -0.028889089822769165, 0.01920224353671074, 0.01950227841734886, -0.015973296016454697, 0.00676864804700017, -0.00841526873409748, -0.016201892867684364, -0.004246925003826618, -0.02083100564777851, 0.010594095103442669, -0.008350975811481476, -0.009701133705675602, 0.010129755362868309, 0.18893636763095856, -0.015501811169087887, -0.019773738458752632, 0.01560182310640812, -0.0057042380794882774, 0.025945888832211494, 0.008365263231098652, 0.008208101615309715, 0.006415035109966993, 0.05552077293395996, -0.005100596230477095, 0.00038754529668949544, 0.008765310049057007, -0.009051057510077953, 0.019187957048416138, -0.019159382209181786, -0.033003855496644974, -0.010872699320316315, -0.040090400725603104, 0.011508488096296787, -0.0029717758297920227, -0.027988985180854797, 0.02187398448586464, -0.019830888137221336, 0.027531787753105164, -0.008086659014225006, 0.0012599686160683632, -0.0004737160634249449, 0.02160252444446087, 0.024102816358208656, -0.03214661404490471, -0.0093368049710989, 0.018645035102963448, 0.03054642677307129, -0.012901507318019867, -0.014744579792022705, 0.025931602343916893, -0.0036825730931013823, 0.03131794556975365, -0.012980088591575623, -0.007472301833331585, -0.037718694657087326, 0.00611142860725522, -0.014108791947364807, -0.01785922981798649, 0.005207751411944628, -0.001374267740175128, -0.013473003171384335, 0.009458248503506184, -0.013058668933808804, -0.007179410196840763, 0.03094647265970707, 0.013558727689087391, 0.0140016358345747, 0.02720317803323269, 0.0014983894070610404, 0.03148939460515976, -0.008643867447972298, -0.028989100828766823, -0.015158914029598236, 0.01254432275891304, 0.025060070678591728, -0.012065695598721504, -0.005000584293156862, -0.005218466743826866, 0.009258224628865719, 0.011329895816743374, -0.014887453988194466, -0.002918198239058256, -0.007979503832757473, 0.029146263375878334, -0.031146496534347534, -0.009565403684973717, 0.00288605154491961, -0.017716355621814728, -0.011179877445101738, 0.0042433529160916805, 0.030803600326180458, -0.007018677424639463, 0.02974633313715458, -0.008565286174416542, 0.0005281867343001068, -0.009186787530779839, 0.0110155725851655, -0.015573248267173767, -0.030203528702259064, 0.019287968054413795, -0.004621968604624271, -0.004993440583348274, 0.0007201734115369618, -0.020588120445609093, -0.0033003855496644974, -0.002189541468396783, -0.01574469730257988, 0.011851385235786438, -0.03586133196949959, -0.0010224408470094204, 0.012915794737637043, -0.006140002980828285, -0.01120130904018879, -0.02856048010289669, 0.03986180201172829, 0.01395163033157587, 0.005654232110828161, -0.02803184650838375, -0.03763296827673912, 0.004061189014464617, 0.019573716446757317, 0.010801262222230434, -0.012780064716935158, 0.016501927748322487, -0.01960229128599167, -0.028203295543789864, -0.0061971526592969894, -0.0011447765864431858, 0.020102348178625107, 0.017459183931350708, -0.013501578010618687, -0.006715070456266403, -0.024745749309659004, 0.01027977280318737, -0.023974230512976646, -0.0005147922784090042, 0.009193931706249714, -0.015173201449215412, -0.025031495839357376, -0.014265952631831169, -0.008058084174990654, -0.000981364632025361, -0.025460118427872658, 0.02974633313715458, 0.002761036856099963, 0.027431776747107506, 0.006568624638020992, 0.0028253302443772554, 0.01587328314781189, 0.00860814843326807, -8.812413580017164e-05, -0.026631683111190796, 0.006215012166649103, -0.006604343187063932, 0.021445363759994507, 0.005597082432359457, 0.0021877556573599577, 0.002757465001195669, -0.03160369396209717, 0.006507903337478638, 0.006829369347542524, -0.02190255932509899, -0.047319814562797546, -0.01921653188765049, -0.018745047971606255, -0.009658271446824074, 0.026203062385320663, 0.024660024791955948, -0.004536244552582502, -0.022245457395911217, -0.052120376378297806, 0.005768531002104282, -0.008629580028355122, -0.034203995019197464, -0.011637073941528797, 0.034346871078014374, -0.009515397250652313, -0.00520417932420969, -0.0024234973825514317, -0.1842501014471054, 0.009858294390141964, 0.015473236329853535, -0.02121676504611969, 2.2156606064527296e-05, 0.0022877673618495464, 0.02310269884765148, 0.004682689905166626, 0.008393838070333004, 0.015001753345131874, 0.012794352136552334, 0.0021913275122642517, -0.013330128975212574, 0.01207283977419138, 0.024317126721143723, 0.01315153669565916, -0.009722564369440079, 0.008851034566760063, 0.019045082852244377, 0.011222739703953266, 0.025945888832211494, -0.025545842945575714, -0.006490044295787811, 0.009193931706249714, -0.014065929688513279, 0.025188658386468887, -0.05274902284145355, 0.0002504756848793477, 0.01047979574650526, -0.0012555038556456566, -0.013437284156680107, 0.02640308439731598, -0.009122494608163834, -0.005872114561498165, 0.0048827133141458035, -0.008450987748801708, -0.028931953012943268, 0.0033289603888988495, -0.006725785788148642, 0.05374913662672043, -0.011051291599869728, 0.03348962590098381, 0.0016028658719733357, 0.01107986643910408, -0.01574469730257988, 0.03400397300720215, 0.056092269718647, 0.01775921881198883, 0.010844124481081963, -0.010094036348164082, -0.001437667990103364, -0.039176005870103836, -0.005597082432359457, -0.0016680520493537188, -0.002755679190158844, 0.023131273686885834, 0.004121910315006971, 0.0036754293832927942, 0.007436583284288645, -0.01241573691368103, 0.0073508587665855885, -0.011565636843442917, -0.01035120990127325, -0.0066400617361068726, -0.0153589379042387, -0.020616695284843445, -0.01693055033683777, 0.009193931706249714, -0.017987815663218498, 0.006129287648946047, 0.005857827141880989, -0.010751256719231606, 0.007543738465756178, 0.011044147424399853, 0.01830213889479637, -0.012572897598147392, -0.03277525678277016, 0.027388915419578552, 0.026760268956422806, -0.003253951668739319, -0.022231169044971466, 0.04163343459367752, -0.012444311752915382, 0.01933082938194275, 0.010365497320890427, 0.00026788844843395054, -0.0068650878965854645, 0.009101063944399357, 0.010058318264782429, -0.013065812177956104, 0.03157511726021767, -0.00967255886644125, 0.0013662311248481274, -0.008293826133012772, 0.016244756057858467, 0.02884622849524021, -0.006290020886808634, -0.0024145678617060184, -0.0003913403779733926, -0.008022366091609001, -0.01737345941364765, 0.01641620323061943, -0.03640425577759743, 0.011258458718657494, 0.009158212691545486, 0.01828785054385662, -0.03123222105205059, 0.016501927748322487, 0.05160602927207947, -0.014373107813298702, -0.017987815663218498, 0.0373472198843956, 0.023645620793104172, 0.03277525678277016, -0.006315023638308048, 0.018502162769436836, -0.0016734098317101598, -0.019173668697476387, -0.02174539864063263, 0.01020119246095419, 0.029460584744811058, -0.0024074241518974304, -0.004054045304656029, -0.00013773930550087243, -0.01573040895164013, -0.03500409051775932, -0.0813237875699997, -0.0307178758084774, 0.01574469730257988, 0.016987700015306473, -0.030060656368732452, -0.004100479185581207, 0.011858528479933739, 0.022888388484716415, -0.014108791947364807, 0.034775491803884506, -0.0033486054744571447, -0.021573949605226517, -0.026903143152594566, -0.006029276177287102, 0.02028808556497097, 0.00764375040307641, 0.01601615734398365, -0.013458715751767159, 0.014351677149534225, 0.03586133196949959, -0.0006505224155262113, -0.0016376913990825415, -0.009243937209248543, -0.0071115451864898205, -0.02310269884765148, -0.037947289645671844, -0.02414567954838276, 0.014373107813298702, 0.014987465925514698, -0.004511241335421801, 0.02457430027425289, -0.02457430027425289, 0.027531787753105164, 0.008150952868163586, -0.03531841188669205, -0.007565169595181942, -0.05512072518467903, -0.019559428095817566, 0.007086542434990406, -0.02654595859348774, 0.011158446781337261, 0.008279538713395596, 0.012101413682103157, -0.040204696357250214, -0.018216414377093315, -0.003832590766251087, -0.022316893562674522, 0.03683287650346756, -0.011479913257062435, -0.01923081837594509, 0.005439921282231808, 0.005322050303220749, -0.003005708334967494, -0.025417255237698555, 0.0266888327896595, -0.013930199667811394, 0.012730059213936329, 0.026888856664299965, -0.01047979574650526, 0.013358703814446926, -0.029974931851029396, -0.010522658005356789, -0.012337155640125275, 0.029403435066342354, 0.006297164596617222, 0.00730085326358676, -0.016901975497603416, -0.018216414377093315, 0.008293826133012772, 0.01147276908159256, -0.02121676504611969, 0.019287968054413795, -0.015501811169087887, -0.015716122463345528, -0.01681625097990036, 0.01775921881198883, -0.02067384496331215, -0.028088996186852455, -0.0015216063475236297, -0.005097024142742157, 0.007479445543140173, -0.022174019366502762, -0.0030985763296484947, -0.014365964569151402, 0.011072722263634205, 0.0016939479392021894, 0.002096673473715782, -0.006936524994671345, -0.0031825148034840822, -0.04923432320356369, 0.005450637079775333, 0.009222506545484066, 0.009972593747079372, -0.031175071373581886, -0.0413191132247448, 0.031146496534347534, 0.01655907742679119, -0.009243937209248543, -0.013901624828577042, -0.00504344655200839, -0.04120481386780739, 0.00019176347996108234, -0.08509565889835358, 0.032375212758779526, 0.007736618164926767, 0.010486939921975136, -0.011094153858721256, 0.0058113932609558105, -0.008150952868163586, -0.018787909299135208, -0.00390045577660203, 0.02747463993728161, -0.0130015192553401, 0.010972710326313972, -0.00416834419593215, -0.014301671646535397, 0.006850800476968288, -0.02574586495757103, 0.013351560570299625, -0.001982374582439661, 0.031117921695113182, -0.00940824206918478, 0.009451104328036308, 0.0011269174283370376, 0.014744579792022705, 0.020316660404205322, -0.00012445650645531714, 0.013715888373553753, -0.010029743425548077, 0.02253120392560959, -0.02830330654978752, -0.013330128975212574, 0.022388329729437828, -0.02614591270685196, 0.0083366883918643, 0.038375914096832275, -0.025260094553232193, -0.03137509524822235, 0.013494433835148811, 0.0140016358345747, 0.016087593510746956, -0.0021806119475513697, -0.027817536145448685, -0.022759802639484406, 0.023317011073231697, -0.01574469730257988, -0.013237261213362217, -0.0008639402221888304, -0.010836980305612087, 0.011215596459805965, 0.012908651493489742, -0.0066186306066811085, 0.018973644822835922, 0.012315724976360798, -0.018645035102963448, -0.035032663494348526, -0.004621968604624271, -0.007836629636585712, 0.014037354849278927, -0.0012715772027149796, 0.025260094553232193, 0.01027977280318737, 0.057978201657533646, 0.018373575061559677, 0.05443493276834488, -0.009093919768929482, -0.0005402417154982686, 0.0029592744540423155, -0.003793300362303853, -0.0083366883918643, -0.0030950044747442007, -0.02681741863489151, 0.005036302842199802, -0.003044998738914728, -0.016473352909088135, 0.031175071373581886, 0.0011912105837836862, 0.011358469724655151, -0.010036886669695377, 0.012644334696233273, 0.003044998738914728, 0.015544673427939415, 0.026860281825065613, -0.0077794804237782955, 0.0017957455711439252, 0.027131741866469383, 0.005918548908084631, 0.01747347041964531, -0.02774609997868538, 0.032746683806180954, 0.014816016890108585, -0.015616110526025295, -0.033975400030612946, 0.007393721025437117, -0.016244756057858467, -0.018102115020155907, 0.010458365082740784, 0.015401800163090229, 0.0012099627638235688, -0.013101531192660332, 0.013965917751193047, 0.001980588538572192, -0.01453741267323494, -0.007586600724607706, -0.009379667229950428, -0.013051524758338928, -0.034232571721076965, -0.0016948409611359239, -0.0041504851542413235, -0.02081671729683876, -0.002105603227391839, 0.0004920217907056212, -0.015558960847556591, 0.004814848303794861, 0.019316542893648148, 0.027331765741109848, -0.025974463671445847, -0.013451571576297283, 0.017816368490457535, -0.014544556848704815, -0.018502162769436836, 0.036489978432655334, 0.0027396059595048428, 0.0035236261319369078, 0.020759569481015205, -0.001651085796765983, 0.0029396291356533766, -0.0038575935177505016, 0.021445363759994507, -0.006736501585692167, 0.007758049294352531, -0.021173903718590736, 0.014787442050874233, 0.007543738465756178, -0.011387044563889503, -0.009708276949822903, -0.0246885996311903, -0.003657570341601968, 3.744857167475857e-05, 0.030346402898430824, 0.012444311752915382, 0.10104037821292877, 0.017030561342835426, -0.039690352976322174, -0.0077651930041611195, -0.02120247669517994, 0.017244871705770493, 0.0034379016142338514, 0.021388214081525803, 0.012330012395977974, -0.03817588835954666, 0.013851618394255638, -0.005111311562359333, -0.004189775325357914, -0.012651477940380573, -0.034889791160821915, -0.001830571098253131, 0.0013930199202150106, 0.012372874654829502, 0.011787091381847858, -0.009158212691545486, 0.014373107813298702, -0.021802548319101334, 0.012501460500061512, 0.012908651493489742, -0.014223090372979641, -0.010194048285484314, 0.025160083547234535, -0.011929965578019619, -0.013665882870554924, -0.02841760590672493, 0.005229182541370392, -0.0213453508913517, -0.01655907742679119, -0.02588873915374279, 0.010486939921975136, -0.025131508708000183, -0.01295151375234127, -0.0333467535674572, 0.010358353145420551, -0.0050577339716255665, -0.02587445266544819, 0.0018377146916463971, -0.005357768852263689, 0.0037325790617614985, 0.02453143708407879, -0.011758516542613506, 0.0027967554051429033, 0.0025324388407170773, -0.020859580487012863], "097a8045-83e3-4b75-a50f-f1d632d4b401": [-0.029756974428892136, -0.007640304509550333, -0.017506636679172516, -0.002881270833313465, -0.015725813806056976, 0.02834955044090748, -0.03231331706047058, 0.005701505113393068, -0.0218438021838665, -0.030992060899734497, 0.021355511620640755, 0.0022978358902037144, -0.006207747384905815, 0.008760499767959118, -0.014368655160069466, 0.0023714385461062193, 0.008839487098157406, -0.016975263133645058, -0.000818604021333158, -0.014512269757688046, -0.045267365872859955, 0.015352415852248669, -0.009571922942996025, 0.01789439655840397, -0.025549063459038734, -0.00883230660110712, 0.02035020850598812, -0.03340478986501694, -0.015036463737487793, 0.01135992631316185, 0.002287064678966999, 0.004003260750323534, -0.04509503021836281, 0.019919365644454956, -0.021570933982729912, -0.003473681630566716, 0.01640080288052559, -0.014275304973125458, 0.022849105298519135, -0.01974702626466751, 0.03504199907183647, 0.0048864916898310184, -0.0001869235566118732, -0.03981000557541847, -0.007166375871747732, 0.02274857461452484, 0.0068899174220860004, -0.013894726522266865, -0.0013481833739206195, -0.015438584610819817, 0.024917157366871834, 0.01017510425299406, -0.024687374010682106, 0.0009038752759806812, 0.036564312875270844, -0.015639645978808403, 0.005881023593246937, 0.029469745233654976, -0.010455152951180935, -0.005180901847779751, 0.0022906551603227854, -0.01911512203514576, 0.01967521943151951, 0.014246582053601742, -0.013844461180269718, -0.005629697814583778, -0.003281596815213561, -0.010275634936988354, -0.012279060669243336, -0.03676537424325943, 0.022791659459471703, 0.015007740817964077, -0.018698640167713165, -0.005328107159584761, -0.014383016154170036, -0.011022431775927544, -0.019258737564086914, 0.0024522216990590096, 0.013686484657227993, 0.023423563688993454, 0.027272440493106842, -0.009607826359570026, -0.04463546350598335, 0.014289666898548603, 0.036564312875270844, 0.005633288063108921, 0.02302144281566143, -0.0019136664923280478, -0.023121973499655724, 0.0027574030682444572, 0.018152903765439987, 0.00561533635482192, 0.01938799023628235, 0.01765025220811367, -0.005593794398009777, 0.017233768478035927, -0.007360255345702171, 0.023538457229733467, -0.011015250347554684, -0.026123521849513054, -0.003956586122512817, -0.019646497443318367, -0.03171013668179512, -0.005335287656635046, -0.021412957459688187, 0.00746796652674675, 0.007582858204841614, 0.008882571943104267, -0.004064297303557396, 0.02185816317796707, -0.004958298988640308, 0.023682070896029472, -0.015969960018992424, -0.018095457926392555, -0.008681511506438255, -0.010807009413838387, -0.0033498138654977083, -0.017434829846024513, -0.03679409623146057, -0.011079877614974976, 0.018483217805624008, 0.0013392075197771192, 0.00441615330055356, -0.008480450138449669, 0.006595507264137268, -0.002331944415345788, 0.01671675592660904, -0.023825686424970627, 0.012171349488198757, -0.01821034960448742, 0.012042095884680748, 0.029441021382808685, 0.023423563688993454, -0.0002589553187135607, -0.0012602193746715784, 0.042337626218795776, 0.00015831281780265272, -0.007949075661599636, -0.02687031775712967, -0.017564082518219948, 0.010060212574899197, 0.043515268713235855, -0.007220230996608734, 0.0027143186889588833, -0.024744819849729538, 0.005995915737003088, 0.0013006110675632954, -0.03173885866999626, -0.00018568937957752496, 0.0074751474894583225, -0.0005816397024318576, -0.0028902466874569654, -0.013751111924648285, -0.01852630265057087, 0.02032148651778698, 0.016242828220129013, -0.006347771733999252, 0.00854507740586996, -0.008372739888727665, -0.030072927474975586, 0.004078658763319254, 0.03165268898010254, 0.006512928754091263, -0.004480780102312565, 0.027416054159402847, 0.0335196815431118, -0.008372739888727665, 0.01825343444943428, 0.0029997529927641153, -0.021427320316433907, 0.0005152178928256035, 0.012551928870379925, -0.008494812063872814, 0.023035803809762, 0.020192231982946396, 0.012652458623051643, 0.009442669339478016, -0.004617214202880859, -0.006685266271233559, -0.019818834960460663, -0.008530715480446815, 0.022834744304418564, 0.014088606461882591, 0.03823024407029152, -0.005037287250161171, -0.006534470710903406, 0.01001712866127491, -0.03438137099146843, 0.014878487214446068, -0.005683553405106068, 0.009069271385669708, 0.03104950673878193, -0.00227988394908607, -0.006042590364813805, -0.5859481692314148, -0.02361026406288147, 0.0004077312187291682, 0.01704706996679306, -0.01582634449005127, 9.991322440328076e-05, -0.012171349488198757, -0.005895385053008795, -0.03429520130157471, 0.03774195536971092, -0.0030859217513352633, 0.018440132960677147, -0.017578445374965668, -0.023165058344602585, 0.019847556948661804, 0.016242828220129013, -0.019617773592472076, 0.0008536101086065173, 0.02180071733891964, 0.016573140397667885, -0.005446589086204767, -0.0021021608263254166, -0.001435249811038375, -0.01328436378389597, 0.0023858000058680773, -0.02180071733891964, 0.027588391676545143, -0.008200401440262794, 0.026209689676761627, 0.007970618084073067, -0.057359728962183, 0.007388978730887175, 0.016889093443751335, -0.017233768478035927, 0.054200202226638794, 0.01467024628072977, -0.03191119432449341, 0.0200198944658041, 0.02276293747127056, 0.025793207809329033, -0.010110477916896343, 0.004940347280353308, 0.026382029056549072, 0.005464540794491768, 0.024443229660391808, -0.016314635053277016, 0.00604977086186409, 0.00231758295558393, -0.0013024061918258667, -0.02484535053372383, 0.0170039851218462, 0.0048290458507835865, -0.025635231286287308, 0.0048721302300691605, 0.009442669339478016, -0.004222273360937834, 0.033634573221206665, 0.004893672186881304, 0.023150697350502014, -0.018598109483718872, -0.016688033938407898, -0.00038798421155661345, -0.008767680265009403, -0.004509503021836281, -0.04070041701197624, 0.008968740701675415, 0.011201949790120125, -0.008911294862627983, 0.004243815783411264, -0.002039329381659627, 0.026683619245886803, 0.012336506508290768, -0.0009119536262005568, -0.0027681742794811726, -0.0015662983059883118, 0.02903890050947666, -0.0015034668613225222, 0.0048290458507835865, -0.013033038005232811, 0.0007773147663101554, 0.0026084028650075197, 0.003340838011354208, -0.008128594607114792, -0.019919365644454956, 0.002938716672360897, 0.006972495932132006, -0.024012384936213493, -0.0014648704091086984, -0.02932612970471382, -0.014605619013309479, 0.025534700602293015, -0.016975263133645058, 0.01525188609957695, -0.033347342163324356, 0.003726802533492446, 0.015165716409683228, -0.005058829206973314, 0.0158119834959507, -0.0014944908907637, -0.0022852695547044277, -0.023768240585923195, -0.019330544397234917, 0.00821476336568594, 0.0026191738434135914, 0.05023643746972084, 0.007841365411877632, -0.020091703161597252, -0.026827234774827957, 0.06221390515565872, -0.016673671081662178, 0.013478243723511696, -0.01030435785651207, -0.015668367967009544, -0.017707698047161102, -0.006164663005620241, -0.02753094583749771, 0.04630139470100403, 0.0026999572291970253, -0.003748344723135233, 0.004434105008840561, 0.015639645978808403, -0.0015887380577623844, 0.0017924915300682187, -0.009277512319386005, 0.018353963270783424, 0.03191119432449341, 0.025908099487423897, -0.006728350650519133, 0.02088158391416073, -0.020422017201781273, -0.012171349488198757, -0.04098764806985855, 0.027674561366438866, -0.019890641793608665, 0.02540544793009758, -0.02424216829240322, 0.004836226347833872, 0.0015259066130965948, 0.02302144281566143, -0.014950294978916645, -0.03280160576105118, -0.0022852695547044277, 0.0020734379068017006, -0.022317731752991676, -0.013629038818180561, -0.02299272082746029, -0.02569267712533474, 0.010196646675467491, -0.024902796372771263, -0.004283309914171696, -0.006369313690811396, 0.01884225383400917, -0.01736302301287651, 0.023452287539839745, -0.026382029056549072, 0.0017592805670574307, 0.020192231982946396, -0.04963325336575508, 0.013219737447798252, -0.017118876799941063, -0.018598109483718872, 0.02926868386566639, -0.0005672782426699996, 0.0013903701910749078, 0.015912514179944992, 0.006678085308521986, -0.005920517724007368, -0.012343687005341053, -0.013291544280946255, -0.03139418363571167, -0.004685430787503719, -0.010383346118032932, -0.017104515805840492, -0.021599657833576202, -0.002653282368555665, 0.0085019925609231, -0.024385783821344376, -0.011180407367646694, 0.009981224313378334, 0.01793748140335083, 0.017420468851923943, 0.025577785447239876, 0.0018598109018057585, -0.0019387990469112992, -0.0013975509209558368, 0.01947415992617607, 0.01819598861038685, 0.03498455137014389, -0.014734872616827488, 0.043486542999744415, -0.00739615922793746, 0.03340478986501694, -0.008537896908819675, 0.013535689562559128, -0.02691340260207653, 0.02628149837255478, -0.009062089957296848, 0.004768009297549725, -0.015984321013092995, 0.009019006043672562, 0.029843144118785858, 0.033060114830732346, 0.025218749418854713, 0.009349320083856583, -0.00790599174797535, -0.01164715550839901, 0.005766131915152073, -0.025865014642477036, 0.02572140097618103, 0.01760716736316681, 0.0026568728499114513, 0.021685825660824776, -0.011438914574682713, 0.013198195025324821, 0.005195263307541609, 0.00023157877149060369, -0.014979017898440361, 0.00942830741405487, -0.015194439329206944, 0.0018472446827217937, -0.016659310087561607, -0.0417918898165226, 0.015711452811956406, -0.0006166457897052169, -0.012286241166293621, -0.012480121105909348, 0.02030712552368641, 0.019230013713240623, -0.008013702929019928, 0.006222108844667673, 0.028177212923765182, 0.021886887028813362, 0.021685825660824776, 0.004918804857879877, 0.010541321709752083, -0.006606278009712696, 0.026985209435224533, 0.00629032589495182, 0.02477354370057583, -0.012645278126001358, -0.005267070606350899, 0.015065186657011509, 0.01915820688009262, -0.021585294976830482, -0.02299272082746029, -0.0029620539862662554, 0.016070488840341568, 0.030733555555343628, 0.006218518130481243, 0.01611357368528843, -0.01077828649431467, 0.014088606461882591, -0.013492604717612267, -0.01912948302924633, 0.019028954207897186, -0.023495372384786606, 0.004301261622458696, -0.004642346408218145, 0.037512172013521194, 0.006566783878952265, 0.020824138075113297, -0.012336506508290768, 0.029986757785081863, -0.01258065178990364, 0.02866550348699093, -0.0006381880375556648, -0.04693329706788063, -0.013830099254846573, -0.0008127696928568184, -0.026382029056549072, -0.013348990119993687, -0.002455812180414796, -0.011309660971164703, -0.025807568803429604, 0.0035634408704936504, -0.0032044039107859135, 0.01822471059858799, 0.008803583681583405, 0.028608057647943497, 0.007184327580034733, -0.042883362621068954, -0.03518561273813248, 0.03670792654156685, 0.019617773592472076, 0.010053032077848911, -0.017808228731155396, -0.01226469874382019, 0.020407654345035553, -0.014598438516259193, 0.014806680381298065, -0.006369313690811396, -0.0026568728499114513, -0.015280609019100666, -0.012946869246661663, 0.01585506834089756, 0.03349095955491066, 0.012156987562775612, 0.011769228614866734, 0.010088935494422913, 0.0023050166200846434, 5.907278318773024e-05, 0.002462992910295725, -0.03294522315263748, 0.012437036260962486, 0.025951184332370758, -0.008473269641399384, -0.006527290213853121, -0.022030500695109367, -0.029814420267939568, -0.024256529286503792, 0.009564741514623165, 0.019933726638555527, -0.028306465595960617, 0.015725813806056976, -0.011754866689443588, 0.020235316827893257, -0.0133059062063694, -0.011898481287062168, 0.029498467221856117, -0.01790875755250454, 0.004775190260261297, -0.025793207809329033, 0.0031110544223338366, 0.04365888237953186, 0.03705260530114174, 0.05916927382349968, 0.023165058344602585, 0.014167594723403454, -0.020781053230166435, 0.007342303637415171, -0.020824138075113297, -0.018095457926392555, 0.02207358554005623, -0.019502881914377213, -0.023854408413171768, 0.0028166440315544605, 0.017535360530018806, 0.012279060669243336, 0.039034485816955566, -0.008401462808251381, 0.02720063179731369, -0.02327995002269745, 0.005866662133485079, -0.014734872616827488, -0.0013122797245159745, -0.015668367967009544, 0.01584070548415184, 0.04159082844853401, 0.00545377004891634, 0.0005246425862424076, 0.025549063459038734, 0.006882736459374428, 0.011625613085925579, -0.014059883542358875, -0.02215975522994995, 0.039896175265312195, 0.015625283122062683, 0.0295559149235487, 0.011331203393638134, 0.037799399346113205, 0.007812641561031342, -0.007611581590026617, 0.012875061482191086, 0.005166540388017893, 0.0012009782949462533, 0.017520999535918236, 0.018310880288481712, -0.011223492212593555, -0.0001239799166796729, -0.016587503254413605, -0.013313086703419685, 0.0041720084846019745, -0.00046360635315068066, -0.014167594723403454, 0.02659744955599308, -0.012336506508290768, -0.036334529519081116, -0.008509173057973385, 0.021053921431303024, 0.011604071594774723, -0.014454823918640614, -0.012975592166185379, 6.546812801389024e-05, -0.01018228568136692, -0.03538667410612106, -0.03205481171607971, 0.01707579381763935, -0.013930629938840866, -0.018698640167713165, -0.028234658762812614, -0.021958693861961365, -0.00029328823438845575, -0.01332026720046997, 0.02421344630420208, 0.0025832701940089464, 0.010103297419846058, -0.030561218038201332, 0.03283033147454262, 0.01044797245413065, 0.01973266527056694, 0.007083797361701727, -0.021973054856061935, -0.018282156437635422, 0.03667920455336571, -0.011015250347554684, -0.022791659459471703, 0.012709904462099075, -0.025592146441340446, -0.016903454437851906, -0.0019782930612564087, 0.001801467384211719, -0.0208959449082613, -0.013090483844280243, 0.007403340190649033, -0.012638097628951073, 0.00016246417362708598, -0.017822589725255966, 0.011733324266970158, 0.02866550348699093, -0.0017072202172130346, 0.025549063459038734, 0.02958463691174984, 0.017104515805840492, -0.01734866015613079, -0.002872294746339321, -0.015381138771772385, -0.03015909530222416, 0.017133239656686783, -0.017851311713457108, 0.006854013539850712, -0.013930629938840866, 0.010677755810320377, 0.008401462808251381, -0.0154098616912961, -0.004678250290453434, 0.0030643795616924763, -0.0058020357973873615, 0.0017906962893903255, 0.017549721524119377, 0.010483875870704651, 0.02596554532647133, 0.023825686424970627, 0.023409202694892883, 0.007762376684695482, 0.002441450720652938, -0.013104844838380814, 0.014849764294922352, -0.0033785367850214243, -0.004574129357933998, 0.008121414110064507, 0.007263315841555595, -0.01887097768485546, -0.007834183983504772, 0.017219407483935356, -0.016314635053277016, 0.018770447000861168, 0.006836061831563711, -0.05230448767542839, -0.04460673779249191, 0.028191573917865753, 0.011453275568783283, 0.016228465363383293, -0.001656057545915246, -0.029153792187571526, -0.008853849023580551, 0.018009288236498833, -0.00463516591116786, -0.03966639190912247, 0.0001674009399721399, -0.022504430264234543, -0.017248131334781647, 0.0085019925609231, 0.02302144281566143, 0.031566519290208817, -0.0011543035507202148, 0.004423334263265133, -0.016644949093461037, -0.015194439329206944, -0.01638644188642502, -0.008415823802351952, -0.010993708856403828, -0.005676372908055782, 0.04951836168766022, 0.016673671081662178, 0.016056127846240997, 0.0022996310144662857, 0.012164168991148472, 0.004290490411221981, -0.003274416085332632, -0.01121631171554327, -0.012128264643251896, -0.008782041259109974, -0.001648876816034317, -0.004312032833695412, 0.014849764294922352, 0.011201949790120125, 0.020536908879876137, 0.008767680265009403, 0.00896156020462513, 0.017520999535918236, -0.007058664690703154, -0.010268454439938068, -0.01000994723290205, -0.04802476987242699, -0.03130801394581795, 0.004046345595270395, -0.015036463737487793, -0.0015124427154660225, -0.046531178057193756, -0.0020195823162794113, -0.012063638307154179, 0.0020554859656840563, -0.0028992225416004658, -0.010620309971272945, 0.02964208275079727, -0.004703382961452007, 0.03952277824282646, 0.008035244420170784, 0.012544747442007065, 0.0021883295848965645, -0.019545966759324074, -0.020752331241965294, 0.003784248372539878, 0.0007010194822214544, 0.006182614713907242, 0.012566289864480495, 0.0014702558983117342, 0.011604071594774723, -0.0020124015863984823, 0.010074574500322342, -0.009808886796236038, -0.019790111109614372, -0.012013372965157032, -0.027128824964165688, -0.006168253254145384, -0.03168141096830368, 0.001506159664131701, -0.0019244375871494412, 0.003981718793511391, -0.009916597977280617, 0.00604977086186409, 0.006150301545858383, -0.018468856811523438, -0.030676109716296196, -0.008889752440154552, -0.004358707461506128, 0.04098764806985855, 0.02600863017141819, 0.026726704090833664, 0.0158119834959507, -0.000480660586617887, 0.0026568728499114513, -0.007841365411877632, 0.020134786143898964, 0.002746631857007742, 0.022231562063097954, 0.030130373314023018, -0.020867222920060158, -0.017793865874409676, -9.862293518381193e-05, -0.027042655274271965, 0.003459320170804858, -0.02806232124567032, 0.048857733607292175, 0.02508949488401413, 0.0058128065429627895, -0.014304028823971748, -0.003166705137118697, -0.04693329706788063, -0.0011821289081126451, -0.005672782193869352, 0.01479231845587492, 0.01344952080398798, -0.011517901904881, -0.006753483321517706, 0.0017844131216406822, -0.030273986980319023, 0.009586283937096596, 0.002127293264493346, -0.011137323454022408, 0.005267070606350899, 0.018770447000861168, -0.010103297419846058, 0.024988966062664986, -0.014849764294922352, 0.027861259877681732, -0.02057999186217785, -0.012472940608859062, -0.010361803695559502, 0.023811323568224907, -0.03745472431182861, -0.008458908647298813, 0.007934714667499065, 0.027143185958266258, -0.011999011971056461, -0.002471968764439225, 0.01879916898906231, -0.02842135727405548, 0.019316183403134346, -0.027617115527391434, 0.009816067293286324, -0.007977798581123352, -0.026195328682661057, -0.0052132150158286095, 0.018339602276682854, 0.02718627080321312, 0.0072453636676073074, -0.01734866015613079, -0.009313415735960007, -0.009880694560706615, 0.02392621524631977, -0.013083303347229958, -0.010383346118032932, -0.020479463040828705, -0.012853519059717655, -0.007331532426178455, -0.010964985936880112, 0.019847556948661804, -0.0029117888770997524, 0.012796073220670223, -0.001615665853023529, 0.03762706369161606, -0.0011085262522101402, -0.027703283354640007, -0.023121973499655724, -0.032112255692481995, -0.03889087215065956, 0.008631246164441109, -0.012034915387630463, -0.005223986227065325, -0.0038488751742988825, 0.0026496918871998787, -0.06342027336359024, -0.002500691683962941, 0.013492604717612267, 0.011410191655158997, -0.003355199471116066, 0.010562864132225513, 0.04874284192919731, 0.0029064032714813948, 0.004003260750323534, -0.0032780065666884184, -0.016214104369282722, 0.03791429102420807, -0.02033584751188755, -0.00022765180619899184, 0.007155604660511017, 0.003529332345351577, -0.00028117073816247284, -0.014806680381298065, 0.007604400627315044, -0.010728021152317524, -0.0280479583889246, -0.025319278240203857, 0.025620870292186737, 0.005191673059016466, -0.019948087632656097, -0.026410751044750214, -0.018928423523902893, -0.027990512549877167, -0.006132349371910095, 0.018885338678956032, 0.014548173174262047, 0.012530386447906494, 0.01090754009783268, 0.00508755212649703, 0.008286570198833942, 0.021700188517570496, -0.021599657833576202, -0.03208353370428085, -0.026841595768928528, 0.002739451127126813, -0.031566519290208817, -0.024874072521924973, -0.001577966962940991, 0.01268118154257536, -0.0011264781933277845, -0.042912084609270096, -0.018009288236498833, -0.022217201068997383, 0.002653282368555665, -0.02483098953962326, -0.024012384936213493, 0.015093909576535225, 0.050092823803424835, 0.030101649463176727, -0.0038632366340607405, 0.028909647837281227, -0.002206281526014209, 0.01119476929306984, -0.021398596465587616, -0.0013239483814686537, 0.007898811250925064, -0.010964985936880112, 0.017449190840125084, -0.02540544793009758, -0.045267365872859955, 0.019215652719140053, 0.022806020453572273, 0.025807568803429604, 0.015294970013201237, 0.007575677707791328, -0.015510392375290394, -0.00664936238899827, -0.006060542073100805, -0.011604071594774723, 0.00984479021281004, -0.02151348814368248, -0.0012521410826593637, -0.043773774057626724, 0.0016138707287609577, 0.02356717921793461, 0.01586942933499813, -0.005130636505782604, 0.014239401556551456, 0.023696431890130043, -0.006950953509658575, 0.0256639551371336, -0.0008181552402675152, -0.003184656845405698, -0.013348990119993687, -0.018081096932291985, 0.05414275825023651, 0.01851193979382515, 0.01433993224054575, 0.03346223384141922, -0.008265028707683086, -0.023380480706691742, -0.011855397373437881, 0.012946869246661663, -0.01614229753613472, -0.033031389117240906, 0.027315523475408554, -0.006520109251141548, -0.010045851580798626, -0.004689021501690149, -0.017434829846024513, -0.014612800441682339, -0.010541321709752083, 0.008286570198833942, 0.004724924918264151, -0.009406765922904015, 0.00158514769282192, 0.0028938371688127518, -0.037540894001722336, -0.009212885983288288, 0.00369807961396873, -0.030704831704497337, 0.03079100139439106, 0.014038341119885445, -0.026238413527607918, -0.021398596465587616, 0.007719292305409908, -0.01074238307774067, -0.023854408413171768, -0.012803254649043083, 0.004879310727119446, -0.013226917944848537, -0.00868869200348854, 0.013399255461990833, 0.18256306648254395, -0.026798510923981667, 0.007604400627315044, 0.017578445374965668, -0.007234592456370592, 0.015108270570635796, -0.015424223616719246, -0.0014980812557041645, -0.025290556252002716, 0.026999572291970253, 0.018382687121629715, 0.02806232124567032, -0.002288860036060214, -0.005080371629446745, 0.0006920435698702931, 0.003502404550090432, -0.029110709205269814, -0.02514694072306156, -0.02934049256145954, -0.014655884355306625, -0.0033731511794030666, -0.0158119834959507, 0.006168253254145384, -0.009715537540614605, 0.016846008598804474, 0.012200072407722473, -0.001937003806233406, 0.0001888309489004314, 0.008056786842644215, 0.008293751627206802, -0.026985209435224533, -0.004358707461506128, 0.030302710831165314, 0.006006686482578516, 0.011280938051640987, -0.015969960018992424, 0.009406765922904015, 0.0015671958681195974, 0.01618538238108158, 0.007331532426178455, 0.010433611460030079, -0.019230013713240623, 0.024874072521924973, -0.01704706996679306, -0.02870858646929264, 0.006218518130481243, 0.014691787771880627, -0.02187252603471279, 0.01049105729907751, -0.00410738168284297, -0.011970289051532745, 0.04061425104737282, 0.01301149558275938, 0.022533152252435684, 0.008861029520630836, -0.01852630265057087, -0.0004140143864788115, 0.003590368665754795, -0.01298995316028595, 0.020867222920060158, -0.024026745930314064, 0.013126387260854244, 0.016860371455550194, 0.009895055554807186, -0.02543417178094387, 0.014038341119885445, -0.02330867201089859, -0.030446326360106468, -3.478169674053788e-05, -0.015582199208438396, 0.02872294932603836, -0.0015671958681195974, -0.009047728963196278, 0.011683058924973011, -0.008624065667390823, -0.027301162481307983, -0.00629032589495182, 0.023969300091266632, 0.026425112038850784, 0.026669258251786232, -0.004739286378026009, 0.01734866015613079, -0.018741723150014877, -0.005144997965544462, -0.03372074291110039, -0.0179518423974514, 0.026180967688560486, -0.008451727218925953, 0.00302668078802526, -0.005927698686718941, -0.018282156437635422, -0.016616225242614746, -0.010038670152425766, 0.0038704173639416695, -0.006696037482470274, -0.01137428730726242, 0.011166046373546124, 0.016917817294597626, -0.011424552649259567, -0.031509075313806534, -0.050696004182100296, 0.0626160278916359, 0.015941236168146133, 0.008437366224825382, -0.02575012296438217, -0.011280938051640987, 0.005475312005728483, 0.0012180325575172901, -0.012544747442007065, -0.013341809622943401, -0.010189466178417206, -0.03733983263373375, -0.0027232945431023836, -0.006602687761187553, 0.03380690887570381, 0.04276847094297409, 0.02361026406288147, -0.0019136664923280478, -0.008135775104165077, -0.013916268944740295, -0.005493263714015484, -0.01673111692070961, 0.004286900162696838, 0.01822471059858799, -0.013420797884464264, -0.01881353184580803, -0.004523864481598139, -0.022260285913944244, -0.003712441073730588, -0.036018576472997665, 0.034237753599882126, 0.01526624709367752, 0.015065186657011509, -0.02151348814368248, -0.003209789516404271, 0.016515694558620453, -0.005547119304537773, -0.019574688747525215, -0.006925820838660002, 0.007184327580034733, -0.020422017201781273, 0.0016677262028679252, 0.022260285913944244, -0.0016811901004984975, -0.003324681194499135, -0.017520999535918236, 0.021025197580456734, 0.0028758852276951075, -0.03972383961081505, -0.022791659459471703, -0.012149807065725327, -0.015668367967009544, -0.0123939523473382, 0.010088935494422913, 0.03530050441622734, -0.02932612970471382, -0.02241826057434082, -0.0495758093893528, 0.003488043090328574, 0.014368655160069466, -0.05770440399646759, 0.010749563574790955, 0.013600315898656845, 0.0015573223354294896, -0.021743271499872208, -0.0042115021497011185, -0.18405665457248688, -0.008265028707683086, -0.001805955427698791, -0.02511821873486042, 0.0247879046946764, -0.005945650395005941, -0.019617773592472076, -0.011560986749827862, -0.01884225383400917, 0.003611910855397582, 0.02990058995783329, -0.026654895395040512, -0.02777509205043316, 0.009363681077957153, 0.006717579439282417, 0.004340755753219128, 0.002682005288079381, 0.005033696535974741, 0.03397924825549126, 0.013356170617043972, 0.04236634820699692, -0.022289007902145386, -0.0029010178986936808, -0.009334958158433437, -0.028852201998233795, 0.00794189516454935, -0.04147593677043915, 0.0037232122849673033, 0.01887097768485546, -0.013090483844280243, -0.022877829149365425, 0.0005915132351219654, 0.0023193780798465014, 0.0010573635809123516, 0.015725813806056976, 0.007740834727883339, -0.015294970013201237, -0.004538225941359997, -0.002154221059754491, 0.03133673593401909, 0.018440132960677147, 0.025908099487423897, 0.006254422012716532, 0.01822471059858799, -0.0158119834959507, 0.01617101952433586, 0.05161513760685921, 0.0376557856798172, 0.010605948977172375, -0.010024309158325195, 0.0032726209610700607, -0.026999572291970253, 0.0035724167246371508, 0.025534700602293015, 0.016860371455550194, 0.03883342817425728, 0.009464211761951447, 0.012372409924864769, -0.0055004446767270565, -0.011237853206694126, 0.01730557717382908, -0.0054717217572033405, -0.010117658413946629, -0.0047967322170734406, -0.02510385774075985, 0.0012189301196485758, -0.016587503254413605, 0.020163509994745255, -0.03504199907183647, 0.025865014642477036, -0.0048110936768352985, -0.005942060146480799, 0.014074244536459446, 0.020134786143898964, 0.017248131334781647, -0.003791429102420807, -0.03469732031226158, 0.017808228731155396, 0.02753094583749771, -0.004803913179785013, -0.003798609832301736, 0.05339596047997475, -0.004739286378026009, 0.02237517759203911, -0.011805132031440735, 0.004394611343741417, -0.0010672371136024594, -0.004229454323649406, -0.004121743142604828, 0.004965479951351881, 0.012142626568675041, 0.003267235355451703, 0.018914062529802322, -0.012358048930764198, 0.0075038704089820385, 0.03076227754354477, 0.0018867386970669031, 0.012185710482299328, 0.009902236051857471, -0.012853519059717655, -0.018899699673056602, 0.009062089957296848, -0.029670806601643562, 0.02330867201089859, 0.028766032308340073, 0.005392733495682478, -0.025635231286287308, 0.007762376684695482, 0.04842689260840416, -0.030934615060687065, -0.0014190932270139456, -0.001577966962940991, 0.015007740817964077, 0.010706478729844093, -0.018167264759540558, 0.012042095884680748, 0.003477271879091859, -0.01914384588599205, 0.0029494878835976124, -0.002527619479224086, 0.033031389117240906, -0.013995256274938583, -0.01701834611594677, 0.025778846815228462, -0.026769788935780525, -0.014059883542358875, -0.1010473296046257, -0.0017637686105445027, -0.006430350244045258, 0.01673111692070961, -0.025204386562108994, -0.010311538353562355, -0.007295629009604454, 0.03165268898010254, 0.0012297012144699693, 0.022863466292619705, -0.015481669455766678, -0.009593464434146881, -0.026985209435224533, -0.01018228568136692, 0.010203827172517776, -0.014763595536351204, -0.018440132960677147, -0.004671069327741861, 0.010045851580798626, 0.03234203904867172, -0.0022116671316325665, -0.02662617340683937, 0.005683553405106068, -0.013772653415799141, -0.033577125519514084, -0.011302480474114418, -0.0352717824280262, 0.006240060552954674, 0.00746796652674675, 0.0032851872965693474, 0.038747258484363556, -0.014426100999116898, 0.023107612505555153, -0.0005484287976287305, -0.004118152894079685, 0.010254092514514923, -0.022016139701008797, -0.012788892723619938, -0.00672476040199399, -0.030561218038201332, 0.03894831985235214, 0.03711004927754402, 0.017406105995178223, -0.03340478986501694, -0.00753977382555604, -0.0123939523473382, -0.028320826590061188, 0.044951412826776505, -0.014124509878456593, -0.009263151325285435, -0.02187252603471279, 0.013585954904556274, -0.010218189097940922, -0.029527191072702408, 0.04038446396589279, 0.0020554859656840563, 0.016300274059176445, 0.02925432287156582, -0.03208353370428085, 0.0034898382145911455, -0.014641523361206055, 0.007748015224933624, -0.021097006276249886, 0.016328996047377586, -0.0027735596522688866, 0.0014549968764185905, -0.027013933286070824, -0.024945881217718124, 0.03205481171607971, -0.009406765922904015, -0.022863466292619705, 0.019574688747525215, -0.020752331241965294, -0.01452663168311119, -0.01119476929306984, -0.007360255345702171, -0.012781712226569653, -0.022820383310317993, -0.013815738260746002, 0.0020429196301847696, -0.0064447117038071156, -0.02656872756779194, -0.012422675266861916, -0.0018616061424836516, 0.025592146441340446, 0.019962448626756668, -0.0009415741660632193, 0.009679633192718029, 0.005475312005728483, -0.031566519290208817, -0.004268948454409838, 0.014347112737596035, 0.0026658487040549517, -0.006369313690811396, -0.020106064155697823, 0.0236677099019289, 0.012300603091716766, 0.0005946548189967871, 0.02062307670712471, -0.010397707112133503, -0.017535360530018806, -0.0011022432008758187, -0.06761381775140762, 0.04385994374752045, 0.006064132321625948, 0.026482557877898216, -0.00403557438403368, -0.010706478729844093, 0.0017835155595093966, -0.015941236168146133, -0.026453835889697075, 0.05641186982393265, -0.007525412365794182, 0.047651372849941254, 0.01061312947422266, -0.015998682007193565, -0.010038670152425766, -0.022849105298519135, 0.028019236400723457, 0.003224150976166129, 0.026525642722845078, -0.0041253333911299706, 0.0020213774405419827, 0.010383346118032932, 0.010275634936988354, 0.023811323568224907, 0.020781053230166435, 0.0068001579493284225, -0.0005636878777295351, 0.016601864248514175, 0.0029638493433594704, -0.000582986103836447, 0.016013043001294136, -0.02066616155207157, 0.00029351262492127717, 0.027258077636361122, -0.004807503428310156, -0.021283704787492752, 0.01825343444943428, 0.0071591949090361595, 0.012487301602959633, -0.0034611152950674295, -0.00929187424480915, -0.01910076104104519, 0.015682730823755264, -0.03145162761211395, -0.022561876103281975, -0.015496030449867249, -0.014117329381406307, 0.020766692236065865, 0.0002502037968952209, -0.0005852300673723221, 0.029096346348524094, 0.010964985936880112, -0.01856938563287258, -0.029986757785081863, -0.016932178288698196, -0.01647261157631874, 0.010627491399645805, -0.01648697257041931, 0.003823742503300309, 0.00924878939986229, 0.04325675964355469, 0.007166375871747732, 0.03705260530114174, -0.006204156670719385, -0.005608155857771635, -0.007740834727883339, -0.014138871803879738, -0.01881353184580803, 0.009241608902812004, -0.03489838168025017, 0.02033584751188755, 0.0017978770192712545, -0.002281679306179285, 0.025190025568008423, 0.009672452695667744, 0.006451892200857401, -0.020867222920060158, 0.008135775104165077, -0.002529414603486657, 0.02477354370057583, 0.015122632496058941, -0.006911459378898144, -0.008753318339586258, -0.00019713367510121316, -0.0024001614656299353, 0.0014487137086689472, -0.028895286843180656, 0.009550380520522594, 0.004936756566166878, 0.00019343110034242272, -0.04176316782832146, 0.011410191655158997, -0.011639975011348724, -0.0197039432823658, 0.022303368896245956, 0.006563193630427122, -0.002157811541110277, 0.008631246164441109, 0.02210230939090252, -0.003376741660758853, 0.016802925616502762, 0.0027789452578872442, -0.025951184332370758, -0.0359036847949028, -0.014684607274830341, -0.020709246397018433, -0.008968740701675415, -0.027976151555776596, 0.00039606253267265856, 0.0009218271006830037, 0.007004809100180864, 0.00017772323917597532, 0.019287459552288055, 0.03191119432449341, 0.001428069081157446, 0.014907210133969784, 0.007008399348706007, -0.027617115527391434, -0.03883342817425728, 0.04940347000956535, 0.012752989307045937, -0.01826779544353485, 0.009184163063764572, 0.013930629938840866, 0.04058552533388138, 0.004775190260261297, 0.016960900276899338, -0.004283309914171696, 0.006451892200857401, -0.012207252904772758, -0.006494976580142975, -0.023423563688993454, -0.02905326336622238, -0.019000230357050896, -0.013629038818180561, -0.00492239510640502, 0.014964655973017216, 0.023840047419071198, 0.016644949093461037, 0.08858157694339752, 0.013377713039517403, -0.025304917246103287, -0.0014388401759788394, -0.00291717448271811, 0.03429520130157471, 0.02898145467042923, 0.02596554532647133, -0.011898481287062168, -0.027344247326254845, 0.013801376335322857, -0.00079257384641096, 0.009650910273194313, -0.013751111924648285, -0.018052373081445694, 0.001739533618092537, 0.013205375522375107, -0.00019971425354015082, 0.012530386447906494, 0.007090977858752012, 0.003019500058144331, -0.023969300091266632, 0.019330544397234917, 0.012092361226677895, -0.019301820546388626, -0.02297835797071457, 0.03311755880713463, -0.0023355346638709307, -0.006556013133376837, -0.018483217805624008, 0.015309331938624382, -0.024041108787059784, -0.011144503951072693, -0.03291649743914604, 0.0018050577491521835, -0.003150548320263624, -0.031193122267723083, -0.01670239493250847, -0.003123620757833123, 0.007205869536846876, -0.005022925790399313, 0.0028328008484095335, -0.014383016154170036, -0.02753094583749771, 0.011352745816111565, -0.004940347280353308, 0.01268836297094822, -0.008279389701783657, -0.02513257972896099], "323c8c4a-7364-4ad8-82c9-ed3deb9eca73": [-0.015498715452849865, 0.0007763602770864964, -0.012500112876296043, -0.022065725177526474, -0.020997339859604836, 0.03695189952850342, -0.013653969392180443, -0.00913825910538435, -0.029829328879714012, -0.03780660778284073, 0.021795067936182022, -0.023091375827789307, -0.004066988360136747, 0.011709507554769516, -0.02237911894917488, 0.007443087175488472, 0.012072758749127388, -0.020057160407304764, 0.010933146812021732, -0.016339179128408432, -0.02277798391878605, 0.018390478566288948, -0.038120001554489136, -0.003523892257362604, -0.00703353900462389, -0.0015073141548782587, 0.003500743769109249, -0.019957445561885834, -0.0077636027708649635, 0.015413244254887104, 0.004056304227560759, -0.0024697515182197094, -0.013077041134238243, 0.01008556131273508, -0.025114186108112335, -0.006235811393707991, 0.006499346345663071, -0.0171226616948843, 0.03302023932337761, -0.014245142228901386, 0.03202307969331741, -0.009935987181961536, 0.00013844498607795686, -0.03527097404003143, -0.010220889933407307, 0.038518864661455154, 0.0075000678189098835, -0.00851859524846077, 0.001860771793872118, 0.01115394663065672, 0.010762205347418785, 0.015242302790284157, -0.03806301951408386, -0.016410404816269875, -0.003425956703722477, 0.004237929824739695, 0.01387476921081543, 0.028960375115275383, -0.030968939885497093, -0.0009099085000343621, 0.012571338564157486, -0.016581345349550247, 0.0006730830064043403, -0.0073861065320670605, -0.005014290101826191, -0.00236825505271554, -0.014800703153014183, 0.002133210189640522, -0.021367713809013367, -0.032307982444763184, 0.021182527765631676, 0.021880539134144783, -0.014928909949958324, 0.011218049563467503, 0.0073861065320670605, -0.02411702647805214, -0.028874903917312622, 0.010363341309130192, 0.027421899139881134, 0.014658251777291298, 0.011901816353201866, -0.0006646249094046652, -0.04373258724808693, 0.009408916346728802, 0.046752557158470154, -0.013326331041753292, 0.015527205541729927, 0.0074003515765070915, -0.028846414759755135, 0.0018394039943814278, 0.0321655310690403, 0.020626965910196304, 0.029401974752545357, 0.008105486631393433, -0.0013702046126127243, 0.022792227566242218, -0.012514357455074787, 0.021937519311904907, -0.0035256727132946253, -0.014238020405173302, 0.011673894710838795, -0.014800703153014183, -0.02641049399971962, 0.0022560744546353817, -0.01886056922376156, 0.0012366564478725195, 0.013910382054746151, 0.008725149556994438, 0.016282198950648308, -0.0313962958753109, -0.02649596519768238, 0.006392507813870907, -0.004547761753201485, -0.005662444047629833, 0.015441734343767166, -0.005470134783536196, 0.017008699476718903, -0.028162647038698196, -0.04831952229142189, -0.007186674512922764, 0.014757967554032803, 0.01616823673248291, 0.009330568835139275, -0.03906018286943436, 0.004647477995604277, -0.012948834337294102, 0.0075143128633499146, -0.025655502453446388, 0.0182765182107687, -0.016994455829262733, 0.04304882138967514, 0.013554253615438938, 0.03227949142456055, 0.011958797462284565, -0.019088491797447205, 0.011688139289617538, -0.018589911982417107, -0.0022596358321607113, -0.040798090398311615, -0.01320524699985981, 0.014515800401568413, 0.03792056813836098, 0.006930261850357056, -0.014601271599531174, 0.01358986645936966, -0.007784970570355654, -0.005192354321479797, -0.0031214668415486813, -0.003292408538982272, -0.0029451833106577396, 0.003620046889409423, -0.0012259725481271744, -0.00027421899721957743, -0.01645313948392868, -0.0001910852297442034, 0.022421853616833687, -0.01913122646510601, 0.010270748287439346, 0.0014699206221848726, -0.03569832816720009, -0.02143893949687481, 0.0394020639359951, -0.006595501210540533, -0.011652526445686817, 0.034957580268383026, 0.036325111985206604, 0.00799152534455061, 0.009230852127075195, -0.006303475704044104, -0.012079880572855473, -0.006905332673341036, 0.008625433780252934, -0.0032478924840688705, 0.005067709367722273, 0.04091205075383186, 0.007571293506771326, 0.02284920960664749, -0.010783572681248188, -0.03552738577127457, -0.012122616171836853, -0.01769246719777584, 0.0016925010131672025, 0.020527251064777374, 0.03609719127416611, -0.015512960031628609, 0.0006000766297802329, 0.0070513454265892506, -0.014124059118330479, 0.0075143128633499146, 0.008874723687767982, 0.03390343859791756, 0.008048505522310734, -0.0026638417039066553, -0.012222331948578358, -0.5812017917633057, -0.006709462031722069, -0.004829103592783213, 0.006086237262934446, -0.006702339742332697, -0.0013150047743692994, 0.003123247530311346, -0.004971554968506098, -0.019017266109585762, 0.024900509044528008, -0.012785015627741814, 0.01854717545211315, 0.017735201865434647, -0.0021047198679298162, -0.0025570031721144915, -0.015285038389265537, -0.00409191707149148, -0.005277825519442558, 0.0024822161067277193, 0.03504304960370064, -0.006556326989084482, 0.013938872143626213, 0.004946625791490078, -0.010876166634261608, -0.01329071819782257, -0.029344994574785233, 0.01770671270787716, -0.00034499954199418426, 0.00705846818163991, 0.004569129552692175, -0.01702294498682022, 0.004515710286796093, 0.011253662407398224, 0.0006156572489999235, 0.06188090145587921, 0.015854842960834503, -0.039573006331920624, 0.001212617731653154, 0.01953009143471718, 0.02220817655324936, -0.024088535457849503, -0.0053526125848293304, 0.024458909407258034, -0.022079970687627792, 0.005220844876021147, -0.006314159370958805, 0.006221565883606672, 0.0003242995881009847, -0.0053205606527626514, -0.020128386095166206, 0.018504440784454346, -0.008020015433430672, -0.02160988189280033, -0.0012535725254565477, 0.006068430840969086, 0.012656808830797672, -0.0015064238104969263, -0.02658143639564514, 0.0027795834466814995, -0.017193887382745743, -0.015327773056924343, -0.007300635799765587, -0.008290672674775124, -0.006054185796529055, -0.02850452996790409, 0.005032096523791552, 0.004829103592783213, -0.0035612855572253466, 0.007293513044714928, -0.019273677840828896, 0.023404769599437714, -0.004946625791490078, -0.019003020599484444, -0.01931641437113285, -0.0066596041433513165, 0.013860523700714111, 0.014565658755600452, -0.003032434731721878, -0.025014471262693405, 0.0006183282239362597, -0.003502524457871914, 0.015512960031628609, -0.017108416184782982, -0.01200865488499403, 0.01205851323902607, 0.01124654058367014, -0.02544182538986206, 0.014772213064134121, -0.040798090398311615, -0.01732209324836731, 0.017393318936228752, 0.0021136230789124966, 0.019344903528690338, -0.02220817655324936, -0.0051389350555837154, -0.02009989693760872, -0.0223933644592762, -0.014273633249104023, -0.011908939108252525, -0.020683947950601578, -0.012642564252018929, -0.009530000388622284, 0.005245773587375879, -0.013027182780206203, 0.05136798322200775, 0.030171211808919907, -0.005409592762589455, -0.011616913601756096, 0.04054167494177818, -0.006271424237638712, -0.007450209464877844, -0.020014425739645958, -0.007549925707280636, -0.0034829373471438885, 0.000335206015734002, -0.041367895901203156, 0.03339061513543129, 0.005719424691051245, 0.019686786457896233, 0.020812153816223145, 0.02594040520489216, 0.0016114817699417472, -0.0062144435942173, -0.024088535457849503, 0.0059793987311422825, 0.023846369236707687, 0.01703719049692154, -0.013169634155929089, 0.02249308116734028, -0.0053668576292693615, 0.008504349738359451, -0.022079970687627792, 0.032393455505371094, -0.023404769599437714, 0.017948878929018974, -0.008404633961617947, 0.01953009143471718, -0.0026228867936879396, 0.045669928193092346, -0.012407518923282623, -0.02383212372660637, 0.0049573094584047794, 0.010776450857520103, -0.01740756444633007, -0.011923184618353844, -0.016296442598104477, -0.035157013684511185, 0.005124690011143684, -0.029487445950508118, 0.028205381706357002, -0.02545606903731823, 0.009202362038195133, -0.012229454703629017, 0.01653861068189144, -0.03692340850830078, -0.0019409006927162409, 0.01057701837271452, -0.025911914184689522, 0.009052787907421589, -0.02974385768175125, -0.012022900395095348, 0.012200964614748955, -0.016438893973827362, -0.01663832738995552, 0.02515692263841629, 0.005872560199350119, -0.0001118466243497096, 0.02113979123532772, 0.005498624872416258, -0.031225353479385376, 0.003164202207699418, 0.020413288846611977, -0.01535626407712698, 0.006000766530632973, -0.03903169184923172, 0.01683775894343853, -0.013938872143626213, 0.004611865151673555, 0.00645661074668169, 0.0038604335859417915, -0.013903259299695492, 0.03173817694187164, 0.007671009283512831, 0.011709507554769516, -0.002638912759721279, 0.00975080020725727, 0.017863409593701363, 0.01439471635967493, -0.03233647346496582, 0.047122932970523834, -0.0005497734528034925, 0.02259279601275921, 0.006752197630703449, 0.0031481764744967222, -0.006574133411049843, 0.040997520089149475, -0.015527205541729927, 0.006755759008228779, -0.019102735444903374, 0.007307758089154959, -0.0004171155742369592, 0.03293476998806, 0.006940945982933044, -0.00204595853574574, 0.0075143128633499146, -0.03481512889266014, 0.013689582236111164, -0.024430420249700546, 0.01086192112416029, 0.01752152480185032, 0.014579903334379196, 0.0024946806952357292, -0.023119866847991943, -0.004245052579790354, -0.0014806045219302177, 0.00908840075135231, 0.005509309004992247, 0.022749492898583412, -0.023490240797400475, 0.013554253615438938, -0.004665284417569637, -0.006520714145153761, 0.0478636808693409, 0.0319376103579998, -0.023319298401474953, -0.003618266200646758, 0.021296488121151924, 0.007792092859745026, 0.02038479968905449, -0.010968759655952454, 0.005890366621315479, 3.3108826755778864e-05, 0.006755759008228779, 0.013575620949268341, -0.0061752693727612495, -0.026909073814749718, 0.05598340928554535, 0.002630009548738599, 0.010897533968091011, -0.0064922235906124115, 0.00885335635393858, 0.02296316996216774, 0.02746463567018509, -0.024131271988153458, -0.002605080371722579, -0.006381823681294918, 0.02928801253437996, 0.02631077915430069, -0.0022026551887392998, 0.03820547088980675, 0.021196771413087845, 0.01673804223537445, -0.0427069365978241, -0.016125502064824104, 0.022550061345100403, -0.030854979529976845, 0.0025570031721144915, 0.027008790522813797, 0.02803444117307663, 0.02115403674542904, 0.011424604803323746, -0.021980255842208862, 0.016339179128408432, 0.001287404797039926, 0.026937564834952354, -0.007393228821456432, -0.021752333268523216, -0.01032772846519947, 0.008112608455121517, -0.01061263121664524, -0.012578461319208145, -0.0026086417492479086, -0.021467430517077446, 0.006755759008228779, 0.003746472531929612, 0.00826930534094572, 0.027421899139881134, 0.006702339742332697, 0.03014272265136242, 0.00023459969088435173, -0.03148176521062851, -0.015655411407351494, 0.02994328923523426, 0.035071540623903275, 0.014757967554032803, -0.009928864426910877, -0.012528602965176105, 0.007549925707280636, -0.017279358580708504, -0.0033636342268437147, -0.01024225726723671, -0.00016704655718058348, 0.01809133030474186, -0.011595546267926693, -0.012165351770818233, 0.00904566515237093, 0.026638416573405266, -0.00017939976532943547, 0.01238615158945322, 0.03700888156890869, -0.002446603262796998, -0.005192354321479797, -0.03302023932337761, 0.030199702829122543, 0.04669557884335518, -0.026282288134098053, -0.02276373840868473, -0.021567145362496376, -0.01819104701280594, -0.017193887382745743, 0.004237929824739695, 0.012549970299005508, -0.010840553790330887, 0.02390334941446781, -0.005242212675511837, 0.018148312345147133, -0.0235472209751606, 0.006449488457292318, 0.034216832369565964, -0.005373979918658733, 0.0018376234220340848, -0.02602587640285492, -0.0004440477932803333, 0.029487445950508118, 0.0051994770765304565, 0.049801018089056015, 0.009537123143672943, 0.013418924063444138, -0.02467258647084236, 0.01032772846519947, -0.022906189784407616, -0.03321967273950577, 0.02133922278881073, -0.008653923869132996, -0.02794896997511387, -0.006762881297618151, 0.027721047401428223, 0.022165441885590553, 0.03498607128858566, 0.0061752693727612495, 0.04307731240987778, 0.000686882995069027, -0.003011066932231188, -0.0012491209199652076, -0.005274264141917229, 0.001541146426461637, 0.00705490680411458, 0.03461569547653198, 0.025911914184689522, -0.01272091269493103, 0.03623964264988899, 0.01645313948392868, 0.008554208092391491, -0.0019587071146816015, -0.01867538131773472, 0.006139656528830528, 0.029145561158657074, 0.019259432330727577, -0.004661723040044308, 0.02985781989991665, 0.03532795235514641, -0.0005386444390751421, -0.020783662796020508, 0.004359013866633177, 0.004483658820390701, 0.02182355895638466, 0.006207320839166641, -0.02019961178302765, 0.009579858742654324, -0.02019961178302765, -0.01941612921655178, 0.016097011044621468, 0.026239553466439247, -0.022792227566242218, 0.01894604042172432, 0.0006793152424506843, -0.012735157273709774, -0.014173916541039944, 0.01682351343333721, 0.004971554968506098, -0.0035470405127853155, -0.005673128180205822, -0.005249334964901209, -0.03615417331457138, -0.05002894252538681, -0.03079799935221672, 0.006816300563514233, -0.0011129017220810056, -0.019060000777244568, -0.01588333398103714, -0.03843339532613754, -0.01904575526714325, -0.006267862860113382, 0.01598305068910122, 0.0276640672236681, -0.034872110933065414, -0.017678221687674522, 0.03330514207482338, -0.0051389350555837154, 0.007806338369846344, 0.007834828458726406, -0.017265113070607185, 0.0064922235906124115, 0.016595590859651566, -0.0071368166245520115, -0.04190921038389206, 0.01646738499403, -0.018233781680464745, 0.013119776733219624, -0.005690934602171183, -0.007720867171883583, 0.010455934330821037, -0.02401730976998806, 0.010391831398010254, 0.006282107904553413, 0.021267997100949287, -0.0017494815401732922, -0.01210124883800745, 0.014423207379877567, 0.0005867218133062124, 0.002250732621178031, 0.028091421350836754, -0.009978722780942917, -0.00018685621034819633, 0.003614705055952072, -0.006958752404898405, -0.0152565473690629, 0.00705846818163991, 0.00207979092374444, -0.004551323130726814, 0.00023727065126877278, 0.005972275976091623, 0.0027956091798841953, -0.007350493688136339, 0.0019604878034442663, -0.016025785356760025, 0.007877564057707787, -0.005231528542935848, 0.022421853616833687, -0.002134990645572543, 0.013169634155929089, 0.011695262044668198, 0.040028851479291916, -0.013326331041753292, -0.024544380605220795, -0.006534959189593792, 0.01846170425415039, -0.01740756444633007, -0.01692323014140129, 0.02727944776415825, -0.002019248902797699, -0.04470125585794449, -0.0055164312943816185, 0.001926655531860888, -0.029487445950508118, 0.022336384281516075, 0.003137492574751377, -0.0537896603345871, -0.030940450727939606, -0.00030048348708078265, -0.010406076908111572, -0.0028828608337789774, -0.025797953829169273, -0.027478879317641258, -0.00500004505738616, 0.006844791118055582, -0.011260785162448883, -0.03367551788687706, -0.001666681724600494, -0.026353513821959496, -0.00734337093308568, -0.001705855829641223, 0.008155344054102898, 0.028176892548799515, 0.005466573406010866, 0.019287923350930214, -0.0016862687189131975, -0.00466884532943368, -0.017948878929018974, -0.014473064802587032, -0.03336212411522865, 0.011873326264321804, 0.038889240473508835, 0.01914547197520733, 0.033618535846471786, -0.0030947572086006403, 0.0058654374442994595, -0.013739439658820629, 0.0024519450962543488, 0.0016533269081264734, -0.024259477853775024, -0.01682351343333721, -0.021011585369706154, -0.0055164312943816185, 0.005673128180205822, 0.0013203466078266501, 0.022550061345100403, -0.015114095993340015, 0.003294189227744937, 0.030655546113848686, 0.006292791571468115, -0.01056989561766386, -0.02688058465719223, -0.0306270569562912, -0.017863409593701363, -0.002197313355281949, -0.02868971787393093, 0.0008591601508669555, -0.051424965262413025, -0.0061610243283212185, 0.013639723882079124, 0.005316999275237322, 0.001697842963039875, -0.01569814793765545, 0.0212395079433918, 0.00966532900929451, 0.014672497287392616, -0.013689582236111164, 0.027293693274259567, -0.017008699476718903, 0.0010434567229822278, -0.01933065801858902, 0.002425235463306308, 0.0018376234220340848, -0.011032862588763237, 0.01325510535389185, -0.020028671249747276, 0.01468674186617136, -0.021111302077770233, 0.023760898038744926, -0.019387640058994293, -0.01608276553452015, -0.004049181938171387, -0.023504486307501793, -0.016282198950648308, -0.014387594535946846, -0.0025018032174557447, -0.005612586159259081, 0.011047108098864555, -0.013511518016457558, 0.009252220392227173, 0.009195239283144474, -0.028191138058900833, -0.013803543522953987, 0.012941712513566017, -0.018005860969424248, 0.03598323091864586, 0.01239327434450388, 0.05282098799943924, 0.03623964264988899, 0.005242212675511837, -0.012870486825704575, -0.008354776538908482, 0.002964770421385765, -0.02143893949687481, 0.018874814733862877, 0.03900320082902908, -0.016424650326371193, 0.008490105159580708, -0.00710120378062129, -0.014230897650122643, -0.016225216910243034, -0.015655411407351494, 0.03948753699660301, 0.03225100412964821, 0.020683947950601578, -0.016339179128408432, -0.010918902233242989, -0.041937701404094696, -0.013661092147231102, 0.03125384449958801, -0.0011663211043924093, 0.004348329734057188, -0.01846170425415039, -0.01645313948392868, 0.03532795235514641, -0.03165270760655403, 0.02307713031768799, 0.009786413051187992, -0.03549889475107193, 0.019572826102375984, -0.002266758354380727, 0.00621800497174263, 0.0007852634880691767, -0.011673894710838795, 0.02498598024249077, 0.011745120398700237, -0.01683775894343853, 0.004280665423721075, 0.009907497093081474, -0.01468674186617136, -0.015370508655905724, -0.0018224879167973995, 0.03307722136378288, 0.00466884532943368, -0.00555204413831234, 0.03413136303424835, -0.022820718586444855, 0.02784925326704979, -0.005986521020531654, 0.007478700019419193, 0.00468665175139904, -0.02458711713552475, -0.011089843697845936, 0.03980092704296112, 0.016324933618307114, -0.0048896451480686665, -0.012763647362589836, -0.008283550851047039, -0.009017175063490868, 0.025213902816176414, -0.01998593471944332, 0.01789189875125885, -0.01239327434450388, -0.019444620236754417, 0.017849164083600044, -0.0027386287692934275, 0.027094261720776558, 0.002134990645572543, 0.004900329280644655, 0.020071405917406082, 0.023846369236707687, -0.009024297818541527, 0.006898210383951664, -0.023176847025752068, -0.004854032304137945, -0.05920281261205673, 0.0033404859714210033, -0.020028671249747276, -0.015242302790284157, 0.011581300757825375, -0.013233737088739872, -0.030456114560365677, -0.016424650326371193, 0.013611233793199062, 0.016410404816269875, 0.011296398006379604, -0.01740756444633007, 0.023305052891373634, 0.029202543199062347, 0.016809267923235893, 0.010840553790330887, -0.017535770311951637, 0.0342453233897686, -0.005509309004992247, 0.013105531223118305, -0.008831988088786602, -0.0023646936751902103, 0.013689582236111164, -0.009686697274446487, 0.017393318936228752, 0.0032087184954434633, -0.024943245574831963, -0.016766533255577087, 0.022407609969377518, 0.01569814793765545, -0.005769282579421997, -0.025370599702000618, -0.012948834337294102, -0.013426046818494797, -0.014900418929755688, 0.028960375115275383, 0.0067201461642980576, 0.014772213064134121, 0.008974439464509487, 0.0006713023758493364, 0.011510075069963932, 0.015854842960834503, -0.002419893629848957, -0.025883425027132034, -0.013853400945663452, 0.004636793863028288, -0.029045846313238144, -0.01950160041451454, -0.003084073308855295, 0.030313663184642792, -0.004939503036439419, -0.0380915105342865, -0.01316251140087843, -0.025042960420250893, -0.027193976566195488, -0.01740756444633007, -0.018490195274353027, 0.013646846637129784, 0.05133949592709541, 0.004800613038241863, 0.006777126807719469, 0.03891773149371147, -0.020812153816223145, 0.005829824600368738, -0.03586927056312561, 0.009914618916809559, 0.01569814793765545, -0.0028276608791202307, 0.005096199922263622, -0.01750728115439415, -0.04145336523652077, -0.00962259341031313, 0.014095569029450417, 0.013881891965866089, 0.027806518599390984, 0.004839787259697914, -0.014914664439857006, 0.0030627057421952486, -0.01586908847093582, -0.004512148909270763, -0.0019800749141722918, -0.019957445561885834, 0.004800613038241863, -0.03262137621641159, -0.008589820936322212, 0.00937330350279808, 0.009216607548296452, -0.017663976177573204, 0.006741513963788748, 0.00674863625317812, -0.018974529579281807, 0.0015651850262656808, -0.016310688108205795, -0.013361943885684013, -0.005299192853271961, -0.03415985032916069, 0.034302301704883575, 0.007542802952229977, 0.0012143984204158187, 0.01857566647231579, 0.00252139032818377, 0.0017423590179532766, -0.014558536000549793, 0.007414596620947123, -0.022407609969377518, -0.01923094317317009, 0.021211016923189163, -0.018504440784454346, -0.0003042673342861235, 0.012236577458679676, -0.005106883589178324, -0.013183879666030407, -0.015142587013542652, -0.0030003832653164864, 0.0016177140641957521, -0.020968850702047348, -0.010940269567072392, 0.020840642973780632, -0.01702294498682022, -0.008860479108989239, 0.015099851414561272, -0.02237911894917488, 0.03299175202846527, 0.014886174350976944, -0.020356308668851852, -0.017863409593701363, 0.0056161475367844105, -0.0058796824887394905, -0.014145426452159882, -0.005149619188159704, -0.0012856241082772613, -0.004020691383630037, 0.0019052878487855196, 0.02190903015434742, 0.18564270436763763, -0.01535626407712698, 0.017578506842255592, 0.006360456347465515, 0.014024343341588974, 0.024174006655812263, -0.0033600730821490288, -0.001809133100323379, -0.022721001878380775, 0.020726682618260384, 0.011930307373404503, 0.017834918573498726, 0.00559477973729372, -0.007307758089154959, -0.008960194885730743, -0.0014948496827855706, -0.05108308047056198, -0.012193841859698296, -0.030256683006882668, -0.015512960031628609, -0.006616868544369936, -0.015740882605314255, 0.0007371861138381064, 0.0007403022609651089, 0.038604337722063065, -0.003137492574751377, 0.004804174415767193, 0.00942316185683012, 0.015669656917452812, -0.004992922302335501, -0.0321655310690403, -0.013554253615438938, 0.010755082592368126, 0.015171077102422714, -0.004679529462009668, -0.001307882135733962, 0.009344813413918018, 0.005160302855074406, 0.023946084082126617, -0.008041382767260075, -0.003397466614842415, -0.027051525190472603, 0.0153135284781456, -0.029971780255436897, -0.019344903528690338, 0.0070371003821492195, 0.009864761494100094, -0.011737997643649578, 0.005174547899514437, -0.0025338546838611364, 0.0032728214282542467, 0.007820582948625088, 0.034387774765491486, 0.02498598024249077, 0.007606906350702047, -0.010804940946400166, -0.025612765923142433, 0.02457287162542343, -0.020427534356713295, 0.026567190885543823, -0.032194022089242935, 0.03378947824239731, 0.013326331041753292, 0.008333408273756504, -0.02679511345922947, 0.024145517498254776, -0.008098363876342773, -0.0275501050055027, -0.015128341503441334, -0.00041244138265028596, 0.014943154528737068, -0.03262137621641159, 0.004188071936368942, 0.011595546267926693, -0.02113979123532772, -0.02562701143324375, 0.01029211562126875, 0.03022819198668003, 0.009002930484712124, 0.027692558243870735, -0.02497173473238945, -0.009807780385017395, -0.026837848126888275, -0.012215210124850273, -0.0036218275781720877, -0.05814867094159126, 0.018048595637083054, 0.00880349799990654, -0.00252139032818377, -0.01599729433655739, -0.01924518682062626, -0.008297795429825783, -0.008482982404530048, 0.010185277089476585, -0.004718703683465719, -0.008012892678380013, -0.002952305832877755, -0.0016577785136178136, -0.020327817648649216, -0.008133976720273495, -0.03846188634634018, 0.0468665175139904, 0.023803632706403732, 0.036011721938848495, -0.03752170503139496, -0.013696704991161823, 0.014700987376272678, 0.012606951408088207, -0.013141144067049026, -0.016581345349550247, -0.0037571564316749573, -0.02545606903731823, -0.004002884961664677, -0.003774962853640318, 0.022706758230924606, 0.02555578574538231, 0.0046403552405536175, 0.007457332219928503, -0.001392462640069425, -0.0037963304203003645, 0.01262831874191761, 0.0004923477536067367, -0.01378217525780201, 0.01797736994922161, -0.01896028406918049, -0.023105621337890625, -0.0041097234934568405, -0.002106500556692481, 0.006314159370958805, -0.027051525190472603, 0.028960375115275383, -0.020826399326324463, 0.020028671249747276, -0.01722237840294838, -0.013191002421081066, 0.010975882411003113, -0.008860479108989239, -0.011844836175441742, 0.0106197539716959, -0.004633232485502958, -0.004633232485502958, 0.011360500939190388, 0.009302077814936638, 0.0011832371819764376, 0.009544245898723602, -0.013468782417476177, 0.005541360471397638, -0.0036645629443228245, -0.036695487797260284, -0.029629897326231003, -0.002589054638519883, -0.011075598187744617, -0.004205878358334303, 0.00559834111481905, 0.05216571316123009, -0.0222794022411108, -0.021666862070560455, -0.037949059158563614, -0.008646802045404911, 0.005174547899514437, -0.061368074268102646, 0.018632646650075912, 0.0321655310690403, 0.009124013595283031, -0.022550061345100403, 0.004056304227560759, -0.18210990726947784, 0.014166794717311859, 0.018119821324944496, -0.02381787821650505, 0.012179597280919552, 0.041396383196115494, 0.004483658820390701, 0.008112608455121517, 0.004554884508252144, -0.0005355283501558006, 0.04091205075383186, 0.004946625791490078, -0.01797736994922161, 0.008005769923329353, 0.018305009230971336, 0.006449488457292318, -0.004148897714912891, 0.014259387739002705, 0.032393455505371094, 0.015327773056924343, 0.035755306482315063, -0.02249308116734028, -0.006784249097108841, 0.013034305535256863, -0.0283193439245224, 0.025085696950554848, -0.039857909083366394, -0.019102735444903374, -0.0028276608791202307, 0.008027138188481331, -0.002605080371722579, 0.016795022413134575, 0.015142587013542652, 0.00913825910538435, -0.010277870111167431, -0.0005030315951444209, -0.030883468687534332, -0.006894649006426334, -0.004017130006104708, 0.02793472446501255, 0.00918811745941639, 0.016609836369752884, 0.012265067547559738, -0.0007621151162311435, -0.009116890840232372, 0.0242024976760149, 0.04384654760360718, 0.030541585758328438, 0.02965838648378849, -0.01578361727297306, -0.01950160041451454, -0.01722237840294838, 0.011559933423995972, 0.012521480210125446, -0.0036645629443228245, 0.02783500961959362, -0.009202362038195133, 0.01033485122025013, -0.004173826891928911, 0.0050712707452476025, 0.02048451453447342, -0.033048730343580246, 0.007621151395142078, -0.015897579491138458, -0.019729522988200188, 0.004544200375676155, -0.012834873981773853, 0.017948878929018974, -0.02670964226126671, 0.0031962539069354534, -0.016011539846658707, -0.003577311523258686, 0.006549204234033823, -0.010349095799028873, 0.011018618009984493, -0.020028671249747276, -0.03581228852272034, 0.02152441069483757, 0.007735112681984901, 0.008867600932717323, 0.007642519194632769, 0.04336221516132355, -0.01464400626718998, 0.019003020599484444, 0.008304918184876442, -0.019116980955004692, -0.003399247070774436, 0.003935220651328564, 0.012158229015767574, -0.014772213064134121, 0.027236713096499443, 0.002302371198311448, -0.02199449948966503, -0.02192327380180359, 0.011424604803323746, 0.022136950865387917, 0.004123969003558159, 0.004651038907468319, -0.014772213064134121, -0.031168371438980103, -0.003696614410728216, -0.002407429041340947, -0.04475823789834976, 0.025570031255483627, 0.04450182616710663, 0.01445169746875763, -0.005495063960552216, 0.005235089920461178, 0.04219411313533783, 0.005242212675511837, -0.001085301861166954, 0.01789189875125885, 0.041966188699007034, 0.01759275048971176, -0.03703737258911133, 0.012350538745522499, -0.009829148650169373, -0.013447415083646774, -0.014458820223808289, 0.007813461124897003, 0.026453230530023575, -0.006182392127811909, 0.0032692602835595608, 0.007970157079398632, -0.016239462420344353, 0.0005889476160518825, -0.10017184168100357, -0.00794166699051857, 0.005544921848922968, 0.02727944776415825, -0.05111157149076462, -0.027607087045907974, -0.014601271599531174, 0.03290627896785736, 0.008953072130680084, 0.02870396338403225, 0.023091375827789307, -0.01539899967610836, -0.015954559668898582, -0.008525718003511429, -0.0025854934938251972, 0.017478790134191513, 0.01210837159305811, -0.012557093054056168, -0.004565568175166845, 0.036581527441740036, 0.0035399179905653, 0.002339764731004834, 0.018148312345147133, -0.004034936428070068, -0.013910382054746151, -0.00736473873257637, -0.04082657769322395, 0.01857566647231579, 0.020683947950601578, 0.0010959856444969773, 0.006616868544369936, -0.025655502453446388, 0.023276563733816147, -0.002243609866127372, -0.01933065801858902, -0.007428841665387154, -0.03108290210366249, 0.011638281866908073, 0.01272091269493103, -0.03336212411522865, 0.03330514207482338, 0.009743677452206612, 0.008262182585895061, -0.01598305068910122, -0.014031465165317059, 0.0011039985110983253, -0.017094170674681664, 0.030456114560365677, -0.001085301861166954, -0.037265293300151825, -0.016980210319161415, -0.0010755083058029413, -0.011894694529473782, -0.03532795235514641, 0.01991470903158188, -0.0153135284781456, 0.03022819198668003, 0.019444620236754417, -0.026481719687581062, -0.004747193772345781, -0.019729522988200188, -0.017863409593701363, -0.01008556131273508, 0.029515935108065605, 0.011303520761430264, 0.016510119661688805, -0.0152565473690629, -0.03153874725103378, 0.014900418929755688, 0.004750755149871111, -0.006118288729339838, 0.00533124478533864, -0.008810620754957199, -0.000411551067372784, -0.0035185501910746098, -0.006079114507883787, -0.01598305068910122, -0.03720831125974655, 0.004455168265849352, -0.0026638417039066553, 0.010071315802633762, -0.020626965910196304, 0.0018207073444500566, 0.004829103592783213, 0.04407447203993797, -0.008333408273756504, 0.0039280978962779045, -0.002603299915790558, -0.0005760379717685282, -0.02813415601849556, 0.003735788632184267, 0.009608348831534386, -0.002430577529594302, -0.026438985019922256, -0.03407438099384308, 0.02344750426709652, 0.02314835600554943, -0.011075598187744617, -0.015527205541729927, -0.01618248224258423, -0.02393184043467045, -0.0042094397358596325, -0.07128269225358963, 0.0365530364215374, -0.0028187576681375504, -0.0013096628244966269, -0.012179597280919552, -0.02326231822371483, 0.001386230462230742, 0.015413244254887104, -0.021852048113942146, 0.035157013684511185, -0.0022988098207861185, 0.03925961256027222, 0.006752197630703449, -0.006809178274124861, -0.016624081879854202, -0.014587026089429855, 0.019074246287345886, 0.024259477853775024, 0.020513005554676056, -0.007841951213777065, -0.0063568949699401855, 0.02267826721072197, 0.01472947746515274, 0.012606951408088207, -0.008418879471719265, 0.01847594976425171, -0.00798440258949995, 0.021111302077770233, -0.020840642973780632, -0.013041428290307522, 0.009209484793245792, -0.040712617337703705, 0.006435243412852287, 0.018803589046001434, 0.002448383951559663, -0.022350627928972244, 0.022920435294508934, -0.009829148650169373, 0.015840599313378334, 2.0324368961155415e-05, 0.0013995852787047625, -0.03672397881746292, -0.019003020599484444, -0.007485822308808565, 0.00439818762242794, -0.007521435152739286, -0.01091177947819233, -0.0053205606527626514, -0.017820673063397408, -0.009679574519395828, 0.015327773056924343, 0.01501438021659851, -0.013853400945663452, -0.02371816337108612, 0.00734337093308568, -0.015954559668898582, 0.02122526243329048, -0.023305052891373634, 0.010512915439903736, -0.003449105191975832, 0.04897480085492134, -0.010356218554079533, 0.04803461953997612, -0.016880493611097336, 0.006253617815673351, 0.022550061345100403, -0.003963710740208626, -0.004700897261500359, -0.012927467003464699, -0.037464726716279984, -0.005722986068576574, -0.018105575814843178, -0.022607041522860527, 0.03299175202846527, 0.011360500939190388, 0.028005950152873993, -0.03834792226552963, 0.017749447375535965, -0.006178830750286579, 0.03225100412964821, 0.02495748922228813, -0.007592660840600729, -0.025883425027132034, 0.010698102414608002, -0.0009473019745200872, 0.015185321681201458, -0.0242024976760149, 0.021097056567668915, 0.004099039826542139, 0.009074156172573566, -0.038689807057380676, 0.018219538033008575, 0.006449488457292318, -0.011303520761430264, -0.007820582948625088, -0.0016675720689818263, -0.02629653364419937, -0.00767813203856349, 0.0036218275781720877, 0.021581390872597694, 0.02574097365140915, -0.009394671767950058, -0.016581345349550247, -0.03911716118454933, -0.03279231861233711, -0.009886128827929497, -0.038034532219171524, -0.03435928374528885, -0.0035755308344960213, 0.01052716001868248, 0.004672406706959009, -0.01118955947458744, 0.025028714910149574, 0.030171211808919907, -0.008618311025202274, -0.006965874694287777, 0.020626965910196304, -0.030684037134051323, -0.042251091450452805, 0.03666699677705765, -0.004772122949361801, -0.0007051345892250538, 0.028105666860938072, 0.004127529915422201, 0.03646756336092949, 0.006891087628901005, 0.031339313834905624, -0.010926024056971073, 0.02908858098089695, -0.03948753699660301, -0.0072863902896642685, 0.0023468872532248497, -0.02017112262547016, 0.005701618269085884, -0.03760717809200287, -0.003342266660183668, 0.018803589046001434, 0.011004372499883175, 0.0038461885415017605, 0.09042816609144211, 0.012906099669635296, -0.04076959937810898, -0.01682351343333721, -0.008176712319254875, 0.0305130947381258, 0.036011721938848495, 0.00975080020725727, 0.0016631203470751643, -0.005495063960552216, 0.016595590859651566, -0.02066970244050026, 0.012728034518659115, -0.015484469942748547, -0.03148176521062851, 0.0006646249094046652, 0.00339568592607975, 0.02047027088701725, 0.015171077102422714, 0.007977279834449291, 0.011887571774423122, -0.0124288871884346, 0.017948878929018974, 0.013596988283097744, -0.00442311679944396, -0.012941712513566017, 0.022250913083553314, 0.0022988098207861185, 0.011132579296827316, -0.02725095860660076, -0.0005551154026761651, -0.021766578778624535, 0.01685200445353985, -0.02527088299393654, 0.007154623046517372, -0.003034215420484543, -0.0062286886386573315, -0.0007906054379418492, 0.007428841665387154, -0.003465130925178528, -0.002706577070057392, 0.0028276608791202307, -0.04581237956881523, -0.022550061345100403, 0.0033671956043690443, -0.008924582041800022, 0.011958797462284565, -0.0049893613904714584, -0.010690979659557343], "076e6fd8-44dc-4bac-89f1-37a0041f2c11": [-0.010927249677479267, 0.009669385850429535, -0.005245782434940338, -0.011882944032549858, -0.028277331963181496, 0.015684643760323524, -0.005073616746813059, 0.005994176026433706, -0.023723725229501724, -0.03260606899857521, 0.002187206642702222, -0.018017664551734924, 0.0032922292593866587, -0.010449402034282684, -0.029823308810591698, 0.016204653307795525, 0.01353432983160019, -0.0212501622736454, 0.007701778318732977, -0.0024068057537078857, -0.028600580990314484, 0.00806016381829977, -0.02244478091597557, 0.01742738112807274, -0.015178686939179897, -0.00680581433698535, 0.008193680085241795, -0.02805246226489544, -0.013428921811282635, 0.005579573102295399, 0.010751569643616676, 0.003214930184185505, -0.015234904363751411, 0.02323182485997677, -0.0009881957666948438, 0.009915336966514587, 0.020955020561814308, 0.0010672514326870441, 0.03052602708339691, -0.010463455691933632, 0.023512911051511765, -0.005481192376464605, 0.01418082881718874, -0.04685717076063156, -0.006587971933186054, 0.03690669685602188, 0.01384352520108223, -0.00015547614020761102, -0.0048522609286010265, 0.015726806595921516, 0.015248958952724934, 0.02342858538031578, -0.023302095010876656, 0.01314080785959959, 0.026843789964914322, -0.009641277603805065, 0.01964796707034111, 0.0225572157651186, -0.018917141482234, 0.002116934861987829, 0.015558154322206974, -0.0326622873544693, 0.012810531072318554, 0.0075190719217062, -0.018340913578867912, -0.011285634711384773, -0.007926647551357746, 0.004929559770971537, -0.023414529860019684, -0.03814347833395004, 0.01550193689763546, 0.012002406641840935, -0.011749428696930408, -0.00759637076407671, 0.010484538041055202, -0.015937620773911476, -0.028277331963181496, -0.00442009000107646, 0.027869755402207375, 0.010983467102050781, 0.026984332129359245, -0.016260871663689613, -0.03457367792725563, 0.016668446362018585, 0.023512911051511765, -0.005758765619248152, -0.005041994620114565, 0.01194618921726942, -0.01872038096189499, -0.009008832275867462, 0.026309724897146225, 0.007308256812393665, 0.01516463328152895, -0.003970351070165634, 0.004005487076938152, 0.014855436980724335, -0.0029004644602537155, 0.03252174332737923, 0.007329338230192661, -0.02001338079571724, -0.0023347772657871246, -0.01247322652488947, -0.019142011180520058, 0.005811469629406929, -0.026942169293761253, 0.004402521997690201, 0.017863066866993904, 0.0048628016375005245, -0.0031622264068573713, 0.01329540554434061, -0.028811397030949593, 0.024552932009100914, -0.015558154322206974, -0.009655331261456013, -0.004799556918442249, -0.01716034859418869, 0.02659081108868122, -0.020491227507591248, -0.015263013541698456, -0.03322445973753929, 0.00358385662548244, 0.02898004837334156, 0.002271532779559493, -0.020772313699126244, 0.0025578897912055254, 0.013653791509568691, -0.003678723471239209, -0.008516930043697357, 0.0014449618756771088, -0.02001338079571724, 0.02556484378874302, 0.02167179249227047, 0.013667846098542213, 0.006904194597154856, -0.0021134214475750923, 0.008833152242004871, -0.017329001799225807, -0.008172598667442799, -0.015825185924768448, -0.012255384586751461, 0.0158111322671175, 0.037187784910202026, 0.004388467874377966, -0.007055278867483139, -0.009514788165688515, 0.004553606268018484, -0.0017796307802200317, -0.004954155068844557, 0.014897600747644901, -0.0055760592222213745, 0.003875484224408865, 0.01202348805963993, -0.003903592936694622, -0.02120799943804741, 0.010758597403764725, 0.017399273812770844, -0.0016821288736537099, 0.008341250941157341, -0.006415806245058775, -0.016963588073849678, -0.008355305530130863, 0.029823308810591698, -0.005013885907828808, 0.009999662637710571, 0.023133443668484688, 0.03058224357664585, -0.003348446451127529, 0.0068409498780965805, -0.009676412679255009, -0.013471084646880627, -0.00767366960644722, 0.019268499687314034, -0.012079705484211445, 0.019886890426278114, 0.021531248465180397, 0.018832815811038017, 0.011018602177500725, -0.01384352520108223, -0.02637999691069126, -0.024721583351492882, -0.028122734278440475, 0.012255384586751461, 0.018523620441555977, 0.022051259875297546, -0.012297547422349453, 0.0001930275757331401, 0.013407840393483639, -0.007547180633991957, 0.0017084807623177767, 0.014019204303622246, 0.02261343225836754, 0.03614776208996773, -0.013625682331621647, -0.009184511378407478, -0.6188406944274902, -0.01519274152815342, -0.00351885543204844, 0.014363535679876804, 0.002814381616190076, 0.011658075265586376, 0.006893653888255358, 0.010709406808018684, -0.030863329768180847, 0.0450863242149353, -0.010941303335130215, 0.017694413661956787, -0.0020378793124109507, -0.008819098584353924, 0.002684378996491432, -0.004521983675658703, -0.0034433132968842983, -0.009901282377541065, -0.0017576708924025297, 0.027026494964957237, -0.0010575890773907304, 0.005656871944665909, 0.007136091124266386, -0.010611026547849178, -0.02057555317878723, -0.028867613524198532, 0.020449064671993256, -2.4238246624008752e-05, 0.010147233493626118, 0.010920221917331219, -0.024271845817565918, 0.0021204485092312098, 0.02608485519886017, -0.02126421593129635, 0.057369817048311234, 0.0005529504269361496, -0.033196352422237396, 0.021742064505815506, 0.03038548305630684, 0.02306317165493965, -0.015558154322206974, 0.0060890428721904755, 0.009198565967381, 0.0068514905869960785, -0.0018288210267201066, -0.014504078775644302, 0.0015248958952724934, -0.0112786078825593, -0.01862199977040291, -0.012459172867238522, 0.007030683569610119, 0.0021397732198238373, -0.002282073488458991, 0.022796139121055603, 0.008671527728438377, -0.006008230149745941, 0.020983129739761353, -8.591813093516976e-05, 0.0060574207454919815, -0.020196085795760155, 1.6483654690091498e-05, -0.00047082037781365216, -0.008228816092014313, -0.00787745788693428, -0.027181092649698257, 0.012747286818921566, 0.0013298919657245278, -0.005309027153998613, 0.003320337738841772, -0.023667508736252785, 0.0060187713243067265, -0.0011243472108617425, -0.0054741655476391315, -0.006630134768784046, -0.001412461162544787, 0.0033308786805719137, 0.0036471013445407152, 0.024552932009100914, -0.007273120805621147, 0.01756792515516281, 0.005147402174770832, -0.00860828347504139, -0.01596572995185852, -0.003281688317656517, 0.01275431364774704, -0.0020642310846596956, -0.02778542973101139, 0.008594228886067867, -0.018832815811038017, -0.01721656695008278, 0.04230356216430664, -0.013822443783283234, -0.00484874751418829, -0.024510769173502922, 0.014827328734099865, 0.003381825517863035, -0.009809928946197033, 0.002282073488458991, -0.0027739752549678087, -0.0025315380189567804, -0.02545240893959999, -0.015403556637465954, -0.012705123052001, -0.015263013541698456, 0.047925300896167755, 0.024805910885334015, -0.02363939955830574, -0.011159146204590797, 0.06048987805843353, -0.01762414164841175, 0.009578032419085503, 0.0014142179861664772, -0.019254446029663086, 0.0012850937200710177, -0.023316150531172752, -0.025058887898921967, 0.03322445973753929, 0.009135320782661438, 0.004177652765065432, 0.017596034333109856, 0.013246215879917145, 0.0009548166999593377, -0.0036822371184825897, -0.009739657863974571, 0.008889369666576385, 0.037609413266181946, 0.010990493930876255, -0.014588405378162861, 0.016457632184028625, -0.005934445187449455, 0.006046879570931196, -0.016246816143393517, 0.02824922278523445, -0.016443578526377678, 0.015024089254438877, -0.019844727590680122, 0.01943715289235115, 0.01334459614008665, 0.033983394503593445, -0.011102928780019283, -0.025339975953102112, -0.0012385387672111392, 0.015642480924725533, -0.019943108782172203, -0.013021346181631088, -0.017708469182252884, -0.02690000645816326, 0.011911053210496902, -0.015248958952724934, 0.0074136643670499325, -0.014630568213760853, -0.000852044380735606, -0.015431664884090424, 0.010554809123277664, -0.035951003432273865, 0.007252039387822151, 0.008650446310639381, -0.046885278075933456, -0.0032623636070638895, -0.03544504567980766, -0.008657473139464855, 0.035079631954431534, -0.012543498538434505, -0.004796043504029512, 0.01804577186703682, 8.516326488461345e-06, -0.003893052227795124, 0.00594849931076169, -0.02535402961075306, -0.03094765730202198, -0.02155935764312744, 0.007209876552224159, -0.013934877701103687, -0.009409381076693535, -0.014939763583242893, 0.0030006016604602337, -0.031284961849451065, -0.024018866941332817, 0.00910018477588892, 0.014532187953591347, -0.005193078424781561, 0.04907775670289993, 0.0061487737111747265, -0.0066898660734295845, 0.01449002418667078, 0.0031868217047303915, 0.027096766978502274, 0.01960580423474312, -0.023470748215913773, 0.053012970834970474, -0.01845334842801094, 0.029879527166485786, -0.017638197168707848, 0.003134117927402258, -0.03772184997797012, 0.04682905972003937, -0.027546506375074387, 0.0022803167812526226, -0.0041811661794781685, 0.00953586958348751, 0.016359250992536545, 0.04320304095745087, 0.03685047850012779, 0.0038614298682659864, -0.006282289978116751, -0.021348541602492332, 0.01777873933315277, -0.038649436086416245, 0.03772184997797012, 0.026914061978459358, 0.012325656600296497, 0.026984332129359245, -0.0017734820721670985, -0.012775395065546036, 0.010512646287679672, 0.004335763864219189, -0.013274324126541615, 0.012873775325715542, -0.029486006125807762, 0.007975838147103786, -0.0003930823295377195, -0.0027300554793328047, 0.034236371517181396, -0.0001990665477933362, 0.0029320865869522095, -0.0054847062565386295, 0.011271581053733826, 0.029204918071627617, 0.01980256475508213, 0.0038227804470807314, 0.010245613753795624, 0.0066617573611438274, 0.006384184118360281, 0.007659615483134985, 0.0023277499713003635, -0.005670926067978144, 0.024384280666708946, -0.0026545135769993067, 0.02219180203974247, -0.0019763915333896875, 0.008053136989474297, 0.007336365524679422, 0.03603532910346985, -0.019212283194065094, -0.006918248720467091, -0.016359250992536545, 0.022529106587171555, 0.01793333701789379, -0.008875316008925438, 0.025129159912467003, 0.0034503403585404158, -0.004655499942600727, -0.021854499354958534, -0.00863639172166586, 0.04401819407939911, -0.02354102022945881, -0.01995716243982315, 0.027195148169994354, 0.03758130595088005, 0.00907207652926445, 0.021952878683805466, 0.0023330203257501125, 0.013759198598563671, 0.0041917068883776665, 0.017638197168707848, -0.009676412679255009, -0.03235309198498726, -0.0030322237871587276, 0.008053136989474297, -0.02768705040216446, -0.002227613003924489, -0.013253242708742619, 0.00014098259271122515, -0.04640743136405945, 0.00342925894074142, -0.0005226457724347711, 0.020041488111019135, 0.0062576946802437305, 0.02259937860071659, 0.01446191594004631, -0.026253506541252136, -0.03555747866630554, 0.014995981007814407, 0.009015859104692936, 0.008826125413179398, -0.019409043714404106, -0.020139869302511215, 0.021601520478725433, -0.01602194830775261, 0.011257526464760303, -0.006514186505228281, -0.0030322237871587276, -0.01212889514863491, -0.009627223014831543, -0.005625249817967415, 0.01477111130952835, 0.03100387379527092, 0.010231559164822102, 0.005695521365851164, 0.010245613753795624, -0.0032342548947781324, -0.0001926981785800308, -0.009043967351317406, 0.01922633685171604, 0.027546506375074387, -0.01648574136197567, -0.024229682981967926, -0.03184713423252106, -0.012585661374032497, -0.02354102022945881, 0.005607681814581156, 0.0008722475031390786, -0.0158111322671175, 0.00980290211737156, 0.008165571838617325, 0.012346738018095493, -0.0016522633377462626, -0.004532524850219488, 0.011032656766474247, -0.01247322652488947, 0.0002731812419369817, -0.023372367024421692, -0.006342020817101002, 0.00910018477588892, 0.022782085463404655, 0.04278141260147095, 0.023372367024421692, 0.024342115968465805, -0.02824922278523445, 0.0034872330725193024, -0.03364609181880951, -0.041038673371076584, 0.021292325109243393, -0.01212889514863491, -0.01908579282462597, -0.016837099567055702, 0.0300762876868248, 0.03027304820716381, 0.026309724897146225, 0.002203017706051469, 0.039380259811878204, -0.03218443691730499, -0.0005463624838739634, 0.002160854870453477, -0.0033027699682861567, -0.021446922793984413, 0.004585228394716978, 0.03002006933093071, 0.03044169954955578, -0.01236781943589449, 0.03322445973753929, 0.009451543912291527, 0.013337568379938602, -0.008741799741983414, -0.005049021448940039, 0.02483401820063591, 0.015403556637465954, 0.019985271617770195, -0.002199504291638732, 0.03052602708339691, 0.026295669376850128, -0.008910452015697956, -0.007107982411980629, 0.008404495194554329, 0.007378528360277414, 0.0202241949737072, -0.002434914465993643, -0.009563978761434555, 0.018073881044983864, -0.026520539075136185, -0.006001203320920467, 0.016092218458652496, -0.0011173200327903032, -0.010076961480081081, 0.019268499687314034, -0.0054847062565386295, -0.018987413495779037, -0.009746684692800045, 0.023288041353225708, 0.0013887444511055946, -0.019198227673768997, -0.011187254451215267, -0.02006959728896618, -0.016682501882314682, -0.031031982973217964, -0.02084258571267128, 0.025339975953102112, -0.012044569477438927, -0.02940167859196663, -0.009395326487720013, -0.02359723672270775, -0.015178686939179897, -0.02685784362256527, 0.027096766978502274, 0.007926647551357746, -0.027701104059815407, -0.03960512951016426, 0.03302769735455513, -0.00254032202064991, -0.00010837213631020859, 0.011334825307130814, -0.0030919548589736223, -0.008580174297094345, 0.02483401820063591, -0.024117248132824898, -0.035894785076379776, 0.01637330651283264, -0.018425239250063896, 0.0010637379018589854, -0.010603999719023705, -0.0108850859105587, 0.005006858613342047, -0.016204653307795525, 0.001171780633740127, -0.0024208601098507643, -0.002600052859634161, 0.011882944032549858, 0.007694751024246216, 0.024848073720932007, -0.0061874231323599815, 0.025902148336172104, 0.028263278305530548, -0.012965128757059574, -0.007266093976795673, -0.008896397426724434, -0.02141881361603737, -0.03179091587662697, 0.009634249843657017, -0.00891747884452343, 0.00515794288367033, 0.016190599650144577, 0.019732292741537094, 0.0030585757922381163, 0.007561234757304192, -0.0009609655244275928, -0.014658676460385323, 0.008425576612353325, -0.008523956872522831, 0.015108415856957436, -0.007786104455590248, 0.02622539922595024, 0.015375448390841484, 0.028136787936091423, -0.014433806762099266, -0.005684980656951666, -0.005193078424781561, 0.01742738112807274, -0.0002617620921228081, -0.004258465021848679, 0.017553871497511864, 0.0022504511289298534, -0.03353365510702133, -0.011053738184273243, -0.004254951607435942, -0.006349048111587763, 0.014054340310394764, 0.014602459035813808, -0.05076427757740021, -0.04817827790975571, 0.010800760239362717, -0.006264721974730492, 0.0020853127352893353, -0.025691334158182144, -0.031903352588415146, -0.019324718043208122, 0.0013298919657245278, -0.01571275293827057, -0.03710345923900604, 0.0032307414803653955, -0.02110961824655533, -0.0006732907495461404, 0.003041007788851857, 0.009079103358089924, 0.030160613358020782, 0.00627526268362999, 0.0008494091453030705, -0.001885038334876299, -0.02608485519886017, -0.020449064671993256, -0.030048178508877754, -0.028867613524198532, -0.008559092879295349, 0.035585589706897736, 0.027082713320851326, 0.02768705040216446, -0.00980290211737156, 0.0019026062218472362, -0.006679324898868799, -0.0067320289090275764, -0.007884484715759754, -0.01229052059352398, -0.020758260041475296, -0.0034643947146832943, -0.009634249843657017, 0.00010623104753904045, 0.006932303309440613, 0.025944311171770096, -0.011088874191045761, -9.327469888376072e-05, 0.01590951345860958, -0.006074988283216953, -0.0002672520640771836, -0.018326859921216965, -0.04550795257091522, -0.02525564841926098, 0.019886890426278114, -0.002673838287591934, -0.0012719177175313234, -0.043315477669239044, 2.9920372980996035e-05, 0.020435011014342308, -0.007209876552224159, 0.021137727424502373, -0.009423434734344482, 0.03918350115418434, -0.018467402085661888, 0.0337023064494133, 0.0014765841187909245, 0.01762414164841175, -0.0007246768800541759, -0.002802083967253566, -0.009662359021604061, 0.008221789263188839, 0.016162490472197533, 0.01151050440967083, 0.009493706747889519, -0.005843091756105423, 0.005642817355692387, -0.003977378364652395, 0.009971554391086102, -0.016780881211161613, -0.00980290211737156, 0.0008845450356602669, -0.02556484378874302, -0.013351622968912125, -0.04500199854373932, 0.004936587065458298, 0.013597574084997177, -0.013724062591791153, 0.014145692810416222, 0.009592087008059025, 0.005597141105681658, -0.021784227341413498, -0.01870632730424404, 0.00845368579030037, -0.007041224278509617, 0.04027973860502243, 0.017975501716136932, 0.02477780170738697, 0.03297148272395134, 0.013745144940912724, 0.007919620722532272, 0.017764685675501823, 0.006447428371757269, -0.018214425072073936, 0.022360455244779587, 0.036316413432359695, -0.02068798802793026, 0.004536038264632225, 0.0020870694424957037, -0.0005709575489163399, -0.015277067199349403, -0.02737785503268242, 0.039998650550842285, 0.021039346233010292, 0.0023066685535013676, -0.030779004096984863, 0.0014063124544918537, -0.038284022361040115, -0.020926911383867264, -0.004732798784971237, 0.02109556458890438, 0.022205857560038567, -0.017905229702591896, -0.01334459614008665, 0.01008398924022913, -0.015544099733233452, 0.023147497326135635, 0.007378528360277414, -0.028136787936091423, 0.0035820999182760715, 0.020406901836395264, -0.003854402806609869, 0.0004293161618988961, -0.014349481090903282, 0.022585324943065643, -0.021390706300735474, -0.005382812116295099, -0.005727143492549658, 0.001105022500269115, -0.011615912429988384, -0.022205857560038567, -0.004054677207022905, 0.0321563296020031, -0.0011673886328935623, -0.013253242708742619, 0.024426443502306938, -0.014251100830733776, 0.017019806429743767, -0.013239188119769096, 0.011109955608844757, -0.005723630078136921, -0.021742064505815506, -0.001390501274727285, 0.019113902002573013, 0.014728948473930359, -0.0010110341245308518, 0.004469280131161213, -0.007968810386955738, -0.02441238798201084, -0.011826727539300919, -0.012655933387577534, 0.00961316842585802, -0.03375852480530739, -0.0181441530585289, 0.006233099848031998, -0.01924039237201214, 0.022950736805796623, -0.004276033025234938, 0.003945755772292614, 0.002568430732935667, 0.023808052763342857, -0.016612229868769646, 0.008439631201326847, -0.019296608865261078, -0.010203450918197632, -0.04629499465227127, 0.007989892736077309, -0.011531585827469826, -0.02529781125485897, 0.019268499687314034, -0.002881139749661088, -0.04888099431991577, -5.043916189606534e-06, 0.018284697085618973, 0.004936587065458298, -0.010772651992738247, 0.007624479476362467, 0.05127023160457611, 0.0068304091691970825, 0.011707264930009842, 0.0020097706001251936, -0.015080306679010391, 0.0451144315302372, -0.008720718324184418, 0.001820037025026977, -0.00026747165247797966, 0.0008665379136800766, 0.00268262205645442, 0.0030884412117302418, 0.018790652975440025, -0.009395326487720013, -0.022782085463404655, -0.016780881211161613, 0.012276466004550457, 0.029823308810591698, -0.003127090632915497, -0.034910980612039566, -0.015445719473063946, -0.022051259875297546, -0.024398334324359894, 0.01835496723651886, 0.008538011461496353, 0.002837219974026084, 0.011299689300358295, 0.004072245210409164, 0.024398334324359894, 0.023836160078644753, 0.00023562979185953736, -0.006981493439525366, -0.03308391571044922, -0.012880802154541016, -0.02161557413637638, -0.02394859492778778, -0.0013940148055553436, 0.019662022590637207, -0.008144490420818329, -0.02510105073451996, -0.004897937644273043, -0.027462180703878403, -0.018748490139842033, -0.020505281165242195, -0.010709406808018684, 0.014005149714648724, 0.05846605449914932, 0.021348541602492332, 0.0030638461466878653, 0.0347423292696476, -0.008882342837750912, 0.0061663417145609856, -0.020884748548269272, 0.027195148169994354, 0.0048944237641990185, -0.004887396935373545, 0.03311202675104141, -0.01054778229445219, -0.051663752645254135, 0.018031718209385872, 0.009816956706345081, 0.02529781125485897, 0.016513848677277565, 0.018326859921216965, -0.0032254711259156466, -0.0023505883291363716, 0.0033747984562069178, -0.013970013707876205, -0.0030656028538942337, -0.0041390033438801765, 0.008622337132692337, -0.04384953901171684, -0.0006952506373636425, 0.02161557413637638, 0.011180227622389793, -0.016837099567055702, 0.004602796398103237, 0.0033343920949846506, -0.02057555317878723, 0.007497990503907204, -0.023498857393860817, 0.0011726589873433113, -4.628050373867154e-05, -0.027251364663243294, 0.020758260041475296, 0.004525497555732727, 0.01516463328152895, 0.024145355448126793, -0.006580944638699293, 0.0004699419951066375, 0.005481192376464605, 0.014967871829867363, -0.0011577262775972486, -0.018917141482234, 0.032072003930807114, -0.011882944032549858, 0.007006088271737099, -0.004500902257859707, -0.007715832442045212, -0.0066617573611438274, -0.010568863712251186, -0.010273722931742668, 0.0068901400081813335, -0.03547315299510956, 0.002765191486105323, 0.010695353150367737, -0.043568454682826996, -0.020519336685538292, -0.010688325390219688, -0.023245878517627716, 0.03401150181889534, 0.0049436138942837715, -0.026885952800512314, -0.016766827553510666, 0.011229417286813259, 0.0031920920591801405, -0.006440401077270508, -0.011116983368992805, 0.00933208130300045, -0.007814212702214718, -0.025747550651431084, 0.010505619458854198, 0.19721050560474396, -0.012093759141862392, -0.0006579188047908247, 0.01808793470263481, -0.010618054307997227, 0.013731090351939201, -0.004936587065458298, 0.008566120639443398, -0.01612032763659954, 0.03642885014414787, 0.007385555654764175, -0.007856376469135284, 0.0060995835810899734, -0.010540755465626717, 0.0018428753828629851, 0.0033730415161699057, -0.04505821317434311, -0.020828532055020332, -0.0292892437428236, -0.01959175057709217, -0.004328736569732428, -0.023625345900654793, -0.011376988142728806, -0.010737515985965729, 0.03685047850012779, -0.008123408071696758, 0.00027625562506727874, -0.004838206339627504, 0.03311202675104141, 0.01706196926534176, -0.03344932943582535, -0.003970351070165634, 0.015797078609466553, 0.003952783066779375, 0.007455827202647924, -0.017174404114484787, 0.008566120639443398, -0.013365677557885647, 0.02389237843453884, -0.011953216046094894, -0.0016487498069182038, -0.016780881211161613, 0.017202511429786682, -0.022739922627806664, -0.002083555795252323, 0.009086131118237972, 0.014166775159537792, -0.009325054474174976, 0.007273120805621147, -0.005723630078136921, -0.013977041468024254, 0.017511706799268723, 0.027152985334396362, 0.03597911074757576, 0.03696291521191597, -0.022585324943065643, -0.016359250992536545, 0.011088874191045761, -0.022121531888842583, 0.006278776563704014, -0.03322445973753929, 0.010231559164822102, -0.00019050219270866364, -0.013119726441800594, -0.020814478397369385, 0.004511442966759205, -0.012803503312170506, -0.017596034333109856, -0.0021415301598608494, -0.018734434619545937, 0.020252304151654243, -0.03246552497148514, -0.005200105719268322, -0.003650614758953452, -0.017919283360242844, -0.020814478397369385, 0.003640074050053954, 0.006580944638699293, 0.005034967325627804, 0.019296608865261078, 0.002304911846294999, 0.010716434568166733, -0.012515389360487461, -0.014953818172216415, -0.005024426616728306, -0.03774995729327202, 0.018636055290699005, 0.0009469111682847142, -0.009746684692800045, 0.0073644742369651794, -0.029767092317342758, -0.005231727845966816, -0.02188260667026043, 0.010828869417309761, -0.009191538207232952, -0.000813834136351943, 0.0023822106886655092, 0.012712150812149048, -0.012058624066412449, -0.018073881044983864, -0.050623733550310135, 0.056582771241664886, 0.02290857397019863, -0.005245782434940338, -0.03966134786605835, 0.002143286867067218, 0.0108850859105587, -0.0017989554908126593, -0.005867687053978443, 0.0031692537013441324, -0.003232498187571764, -0.029261136427521706, -0.012192140333354473, -0.003590883919969201, 0.011215363629162312, 0.02940167859196663, 0.014349481090903282, -0.0024173464626073837, -0.009170456789433956, -0.013829470612108707, 0.010983467102050781, -0.01477111130952835, 0.003106009215116501, 0.0016900344053283334, -0.030750896781682968, -0.04106678068637848, 0.012606742791831493, -0.003699805121868849, -0.0017102374695241451, -0.032887157052755356, 0.03271850198507309, -0.004859288223087788, 0.01829875074326992, -0.030863329768180847, 0.012901884503662586, 0.009753711521625519, 0.008847206830978394, -0.010308858007192612, -0.014222991652786732, -0.0069006807170808315, -0.022725867107510567, -0.0037244001869112253, 0.009711548686027527, 0.000681635516230017, 0.0005327473045326769, -0.020603662356734276, 0.015389502048492432, -0.016106273978948593, -0.02556484378874302, -0.010941303335130215, -0.006419319659471512, -0.007940702140331268, -0.01293701957911253, -0.004254951607435942, 0.029373571276664734, 0.004237383604049683, -0.010442374274134636, -0.05053940787911415, -0.00995749980211258, 0.006552835926413536, -0.049021538347005844, -0.0013000264298170805, 0.04550795257091522, 0.0032974996138364077, -0.02011176012456417, -0.009339109063148499, -0.1814696341753006, 0.016288980841636658, 0.005850119050592184, -0.026141071692109108, 0.0058957957662642, 0.02244478091597557, 0.0022346400655806065, 0.0003144658694509417, 0.004546578973531723, -0.00891747884452343, 0.023259932175278664, 0.0010382643667981029, -0.01706196926534176, 0.01565653458237648, 0.014518133364617825, 0.0030884412117302418, 0.013302432373166084, 0.008643419481813908, 0.035276394337415695, 0.02250099927186966, 0.033927176147699356, -0.035698022693395615, 0.006082015577703714, -0.005094698164612055, -0.014785165898501873, 0.006974466145038605, -0.04376521334052086, 0.009585060179233551, 0.0028565446846187115, 0.002241667127236724, -0.02535402961075306, 0.006545808631926775, 0.005590113811194897, 0.016977643594145775, 0.0003300574026070535, -0.0041600847616791725, -0.015417611226439476, 0.006869058590382338, -0.007961783558130264, 0.036625608801841736, -0.0022012609988451004, 0.02726542018353939, 0.011391042731702328, 0.010484538041055202, -0.01547382865101099, 0.02996385283768177, 0.047363124787807465, 0.01519274152815342, 0.0259162038564682, -0.026267562061548233, -0.02841787599027157, -0.002517483662813902, -0.0031077659223228693, 0.00041921460069715977, 0.009739657863974571, 0.038593217730522156, 0.009571005590260029, 0.0022855871357023716, -0.0024700502399355173, -0.004880369640886784, 0.003473178716376424, -0.01096238475292921, -0.0027247851248830557, 0.002308425260707736, -0.021039346233010292, 0.006264721974730492, -0.013049454428255558, 0.0264362134039402, -0.013056482188403606, 0.01825658790767193, -0.01371703576296568, 0.020645825192332268, -0.009296946227550507, 0.0013896229211241007, 0.008200707845389843, -0.015066252090036869, -0.029317352920770645, 0.030835222452878952, 0.010878059081733227, -0.0015863836742937565, 0.00023782577773090452, 0.031031982973217964, -0.003994946368038654, 0.0068128411658108234, -0.0061593144200742245, -0.002974249655380845, -0.0027072173543274403, 0.0080320555716753, 0.010849950835108757, -0.016513848677277565, 0.02664702944457531, -0.0015547613147646189, 0.012719177640974522, -0.024538878351449966, -0.004666040651500225, 0.010435347445309162, 0.01392082404345274, 0.008629364892840385, -0.00043524533975869417, -0.008003946393728256, -0.02555079013109207, 0.012634851969778538, -0.023569127544760704, 0.01742738112807274, 0.028839506208896637, 0.005439029540866613, -0.0009723846451379359, -0.008552066050469875, 0.047306910157203674, -0.021292325109243393, 0.009465597569942474, 0.01679493673145771, 0.0036435876972973347, 0.026042692363262177, 0.00925478246062994, 0.01731494627892971, 0.011622939258813858, -0.00610309699550271, -0.005382812116295099, 0.007919620722532272, 0.049836691468954086, -0.011039684526622295, -0.0016803720500320196, 0.008144490420818329, -0.020308520644903183, 0.0009679926442913711, -0.0762307420372963, -0.0019342285813763738, -0.000442711723735556, 0.011524558998644352, -0.02498861588537693, -0.002716001123189926, 0.009816956706345081, 0.02639405056834221, 0.005899309180676937, 0.012557553127408028, -0.0041495440527796745, -0.01151050440967083, -0.02141881361603737, -0.01039318460971117, -0.0008221789030358195, 0.003959810361266136, 0.01202348805963993, 0.006356075406074524, 0.011693211272358894, 0.04438360407948494, 0.012536471709609032, -0.005885255057364702, -0.007772049866616726, -0.0023242365568876266, -0.019929053261876106, -0.004103867337107658, -0.04011108726263046, 0.014089476317167282, 0.017033860087394714, 0.014166775159537792, 0.014201910234987736, -0.019156064838171005, 0.01820036955177784, -6.6325778789178e-06, -0.009289918467402458, 0.004486848134547472, -0.02311939001083374, -0.012199167162179947, 0.022416671738028526, -0.03640073910355568, 0.03406772017478943, 0.01725872978568077, 0.01742738112807274, -0.03384285047650337, -0.009528842754662037, 0.014391643926501274, -0.013400813564658165, 0.04162895679473877, -0.012543498538434505, -0.017610087990760803, -0.009198565967381, 0.013632710091769695, -0.019479315727949142, -0.026787571609020233, 0.026520539075136185, -0.02068798802793026, 0.008643419481813908, 0.0352482832968235, -0.019296608865261078, -0.003480206010863185, 0.0041495440527796745, -0.019788511097431183, -0.028178952634334564, 0.0061663417145609856, 0.015698697417974472, 0.008327196352183819, -0.032268766313791275, -0.03063846193253994, 0.012353764846920967, -6.10759889241308e-06, -0.018397131934762, 0.00653175450861454, -0.023091280832886696, -0.013197025284171104, -0.014995981007814407, 0.013555411249399185, -0.01881876215338707, -0.03654128313064575, -0.014560296200215816, 0.0036435876972973347, -0.0017620628932490945, -0.02597242034971714, 0.00969749502837658, 0.002656270284205675, 0.030750896781682968, 0.019971217960119247, -0.0016478713368996978, -0.005305513273924589, 0.009816956706345081, -0.025859985500574112, -0.008959641680121422, -0.0032974996138364077, 0.006914735306054354, -0.02005554363131523, -0.010751569643616676, 0.018804706633090973, 0.027448125183582306, 0.001236781943589449, -0.012149976566433907, -0.016556013375520706, -0.029148701578378677, -0.020772313699126244, -0.07729887217283249, 0.03308391571044922, -0.001885038334876299, 0.02637999691069126, -0.0054741655476391315, -0.017497653141617775, -0.013042427599430084, 0.001445840229280293, -0.007023656275123358, 0.03249363228678703, -0.0007444408256560564, 0.0106250811368227, -0.007448800373822451, -0.008488821797072887, -0.021292325109243393, -0.030413592234253883, 0.015361393801867962, 0.009416407905519009, 0.014546241611242294, -0.01742738112807274, -0.003139388281852007, 0.0036962914746254683, 0.020617716014385223, 0.018326859921216965, 0.018130099400877953, 0.0086855823174119, 0.013281350955367088, 0.022627487778663635, -0.023864269256591797, -0.025691334158182144, 0.020392848178744316, -0.036569394171237946, 0.009198565967381, 0.04483334347605705, -0.01820036955177784, -0.03673804551362991, 0.0165841206908226, 0.010168314911425114, 0.0321282222867012, 0.0048030707985162735, -0.01565653458237648, -0.029148701578378677, 0.0020905830897390842, -0.0068304091691970825, -0.02302100881934166, -6.68130160192959e-05, -0.023288041353225708, 0.0019377421122044325, -0.008495848625898361, 0.005720116198062897, 0.03106009215116501, 0.016148436814546585, -0.03634452447295189, -0.01798955537378788, -0.01425812765955925, -0.024145355448126793, 0.014728948473930359, 0.007252039387822151, 0.010681298561394215, -0.00782826729118824, 0.05925309658050537, 0.0016751016955822706, 0.035220175981521606, -0.018186315894126892, 0.00943046249449253, -0.006419319659471512, -0.01592356711626053, -0.012993237003684044, 0.010751569643616676, -0.02867085300385952, -0.01371703576296568, -0.014728948473930359, -0.00594849931076169, 0.025382138788700104, 0.008594228886067867, 0.0003564092912711203, -0.02690000645816326, 0.019142011180520058, -0.006949871312826872, 0.016991697251796722, 0.018383076414465904, -0.012409982271492481, -0.004697663243860006, 0.001115563209168613, 0.011686183512210846, 0.014785165898501873, -0.017033860087394714, 0.012445118278265, 0.004009000491350889, 0.0008375508477911353, -0.033308785408735275, 0.011798618361353874, -0.005822010338306427, -0.010301831178367138, 0.00902288593351841, 0.015389502048492432, -0.01592356711626053, -0.0016426009824499488, 0.00844665803015232, 0.02234639972448349, 0.012901884503662586, 0.011088874191045761, -0.003490746719762683, -0.028867613524198532, -0.024089138954877853, -0.018593892455101013, -0.017638197168707848, -0.042640868574380875, 0.012866748496890068, -0.0038333211559802294, -0.0020536903757601976, -0.001292120898142457, 0.029204918071627617, 0.028839506208896637, 0.00039242353523150086, -0.0069006807170808315, 0.009528842754662037, -0.020463118329644203, -0.026618920266628265, 0.04410251975059509, 0.006461482960730791, -0.014714893884956837, 0.019718239083886147, 0.005976608023047447, 0.039689455181360245, -0.003864943515509367, 0.014911654405295849, -0.009086131118237972, 0.006654730066657066, -0.027082713320851326, 0.0055163283832371235, 0.0005107874167151749, -0.024285899475216866, -5.328022234607488e-05, -0.02458104118704796, -0.0012982696061953902, -0.007547180633991957, 0.017666304484009743, 0.0007286297040991485, 0.08404495567083359, -0.003172767348587513, -0.03358987346291542, -0.013386758975684643, 0.004680095240473747, 0.020589608699083328, 0.02421562746167183, 0.01758197881281376, -0.008306114934384823, -0.026984332129359245, 0.0295422226190567, -0.02456698566675186, 0.0006912978715263307, -0.03058224357664585, -0.023456692695617676, 0.01596572995185852, 0.012613770551979542, 0.02508699707686901, 0.017300892621278763, -0.02037879265844822, 0.015445719473063946, -0.0009811685886234045, 0.019170120358467102, 0.015361393801867962, -0.003056818852201104, -0.013977041468024254, 0.005790388211607933, -0.0058957957662642, 0.0022891005501151085, -0.026464322581887245, 0.005860659759491682, -0.020435011014342308, -0.005706062074750662, -0.018467402085661888, -0.008425576612353325, -0.0035820999182760715, -0.014145692810416222, -0.0017576708924025297, 6.242103700060397e-05, -0.00653175450861454, -0.006897167302668095, 0.006668784189969301, -0.02841787599027157, -0.024299953132867813, 0.018284697085618973, -0.00806016381829977, -0.0008327196701429784, 0.006970952730625868, -0.023990757763385773], "6b452ef4-8877-4949-bb83-18edbabbfb58": [-0.021835101768374443, -0.018826328217983246, -0.013353224843740463, 0.004731655120849609, -0.005415793042629957, 0.01591784693300724, -0.01842515729367733, 0.008883046917617321, -0.01912720501422882, -0.029944462701678276, 0.03103335201740265, -0.0015975156566128135, -0.008689625188708305, 0.0007324931211769581, -0.015516676008701324, 0.008467549458146095, 0.009441819041967392, -0.008711116388440132, -0.005118497181683779, -0.012622522190213203, -0.03355498984456062, 0.0070491270162165165, -0.005680851638317108, 0.026921361684799194, -0.019213169813156128, -0.0039436426013708115, 0.015932174399495125, -0.026606157422065735, 0.00653691915795207, 0.00376096717081964, 0.007994742132723331, 0.010065064765512943, -0.025531595572829247, 0.03068949282169342, -0.016276033595204353, -0.00775117427110672, 0.02043100632727146, -0.0012500738957896829, 0.030918732285499573, -0.017207320779561996, 0.02633393369615078, -0.005541158374398947, 0.014442114159464836, -0.028855573385953903, -0.023038610816001892, 0.019685978069901466, 0.0063363341614604, -0.012027931399643421, -0.0027831157203763723, 0.00551966717466712, 0.028296800330281258, 0.009807169437408447, -0.026763759553432465, 0.006393644493073225, 0.025789489969611168, -0.007550589274615049, 0.012271499261260033, 0.015803225338459015, 0.004760310053825378, -0.014771646820008755, 0.006157240830361843, -0.03604797646403313, 0.014900594018399715, 0.014098254032433033, -0.009878807701170444, -0.010315795429050922, -0.004294666461646557, 0.02119036391377449, -0.02392691560089588, -0.02401288039982319, 0.02474358305335045, 0.008532023057341576, 0.010788602754473686, -0.006762577220797539, 0.010695474222302437, -0.00962807610630989, -0.01868305169045925, -0.010702637955546379, 0.021863756701350212, 0.015516676008701324, 0.02948598377406597, -0.002430301159620285, -0.02503013238310814, 0.029113467782735825, 0.03154914081096649, -0.008295618928968906, 0.017479542642831802, 0.007772665470838547, -0.029400018975138664, -0.004158555064350367, 0.020889487117528915, 0.012601030990481377, 0.016920771449804306, 0.006382898893207312, -0.001164108864031732, 0.0028923628851771355, -0.015774570405483246, 0.03100469708442688, -0.010265649296343327, -0.019456736743450165, -0.0037502215709537268, -0.015903519466519356, -0.02617633156478405, -0.0021222601644694805, -0.013883342035114765, 0.008102198131382465, 0.014141236431896687, 0.01294489111751318, 0.0030553380493074656, 0.013589628040790558, -0.043670203536748886, 0.034328676760196686, -0.01667720265686512, 0.0002874453493859619, -0.003678584238514304, -0.029400018975138664, 0.0037358941044658422, -0.03066083788871765, -0.03398481756448746, -0.030603528022766113, 0.011813019402325153, 0.02278071641921997, -0.001172168180346489, -0.004620616789907217, 0.007063454482704401, 0.010967697016894817, -0.0026022312231361866, -0.024915512651205063, 0.015674278140068054, -0.013582464307546616, 0.0223365630954504, 0.003155630547553301, 0.007160165347158909, 0.008653806522488594, 0.012013603933155537, 0.03238013759255409, -0.02471492812037468, -0.009778514504432678, -0.028597678989171982, -0.0039651342667639256, 0.009047812782227993, 0.048140380531549454, 0.002161660697311163, 0.008438894525170326, -0.03157779574394226, 0.020545626059174538, 0.010853077284991741, -0.0070956917479634285, 0.0016610939055681229, 0.015989484265446663, 0.015058196149766445, 0.00610709423199296, 0.0032469683792442083, -0.023740658536553383, 0.011247082613408566, 0.019642993807792664, -0.004720909520983696, 0.00795892346650362, -0.012729979120194912, -0.017021063715219498, 0.00943465530872345, 0.03590470179915428, -0.002385527826845646, 0.002385527826845646, 0.013059510849416256, 0.03344037011265755, -0.00867529772222042, 0.008653806522488594, -0.013689921237528324, -0.014463605359196663, -0.020058492198586464, 0.01823890022933483, -0.020416678860783577, 0.018210245296359062, 0.00929137971252203, 0.024156155064702034, 0.0027652063872665167, -0.018854983150959015, -0.026391243562102318, -0.02684972435235977, -0.03387019783258438, -0.0034171072766184807, 0.014685682021081448, 0.03074680268764496, -0.006655121222138405, 0.013224277645349503, 0.016863461583852768, -0.025359664112329483, -0.0007351795793510973, 0.003366961143910885, 0.001896602101624012, 0.026520192623138428, -0.017938023433089256, -0.00529042724519968, -0.58868807554245, -0.0182675551623106, 0.0026111858896911144, 0.014685682021081448, -0.00012301496462896466, 0.02474358305335045, 0.010645328089594841, -0.010122374631464481, -0.04447254166007042, 0.05112050101161003, -0.011454831808805466, 0.013732903636991978, -0.018367847427725792, -0.01337471604347229, 0.01568860560655594, 0.004255265928804874, -0.010394597426056862, 0.005680851638317108, -0.0018133234698325396, 0.019270479679107666, -0.009527783840894699, 0.006751831620931625, 0.010380269959568977, -0.012429101392626762, -0.01839650236070156, -0.027236565947532654, 0.022895336151123047, -0.00039624475175514817, 0.005319082178175449, 0.027623409405350685, -0.04728073254227638, 0.010208339430391788, 0.031692419201135635, -0.015602641738951206, 0.055132199078798294, -0.007153001613914967, -0.028769608587026596, 0.02341112494468689, 0.0203020591288805, 0.024987149983644485, -0.019069895148277283, -0.002591485623270273, 0.013890505768358707, -0.001498118625022471, -0.016190068796277046, -0.0124864112585783, 0.026290951296687126, -0.005415793042629957, 0.007238966412842274, -0.029973117634654045, 0.00722822081297636, 0.003517399774864316, -0.023325160145759583, 0.00759357213973999, 0.0063040973618626595, -0.0009330780594609678, 0.026190659031271935, 0.008904538117349148, 0.007253293879330158, -0.017293285578489304, -0.0076007358729839325, -0.00136379839386791, -0.0058277081698179245, -0.0059566558338701725, -0.020029837265610695, 0.009757023304700851, -0.007951759733259678, -0.012987873516976833, 0.007636554539203644, -0.0070777819491922855, 0.024929840117692947, 0.008331437595188618, -0.003211149713024497, 0.006400808226317167, -0.004147809464484453, 0.027695046737790108, 0.004538233857601881, 0.010351615026593208, -0.00089546840172261, 0.018482467159628868, 0.02106141671538353, -0.007665209472179413, -0.017336267977952957, -0.023611711338162422, 0.01775176450610161, -0.001705867238342762, -0.02417048253118992, 0.016978081315755844, -0.014413459226489067, -0.01816726289689541, 0.026792414486408234, -0.008617987856268883, -0.010337287560105324, -0.027866976335644722, 0.025015804916620255, 0.010631000623106956, -0.014005125500261784, 0.012780125252902508, -0.008789917454123497, -0.011368867009878159, -0.008782753720879555, -0.024500016123056412, 0.00192167516797781, 0.007679536938667297, 0.03770996630191803, 0.013654101639986038, -0.030574873089790344, -0.016032466664910316, 0.043383654206991196, -0.023296505212783813, 0.01504386868327856, -0.00981433317065239, -0.011032170616090298, -0.014363313093781471, 0.004244520328938961, -0.025674870237708092, 0.03951523080468178, 0.020961124449968338, 0.004849856719374657, 0.019528374075889587, 0.011813019402325153, -0.019657321274280548, 0.0011909729801118374, -0.004147809464484453, 0.01140468567609787, 0.020087147131562233, 0.027050308883190155, -0.012393282726407051, 0.027107618749141693, -0.017393577843904495, -0.0001408124080626294, -0.03157779574394226, 0.016032466664910316, -0.006948834750801325, 0.02242252789437771, -0.018281882628798485, 0.018224572762846947, 0.008582169190049171, 0.036420490592718124, -0.019771942868828773, -0.03458657115697861, 0.009950445033609867, -0.0065727378241717815, -0.021333638578653336, -0.002967582317069173, -0.02239387296140194, -0.02322486788034439, -0.004355558194220066, -0.004624198656529188, 0.007034799549728632, 0.0008914388017728925, 0.012400446459650993, -0.004287502728402615, 0.01591784693300724, -0.0255745779722929, 0.0027777429204434156, -0.0018052642699331045, -0.05410061776638031, 0.010623836889863014, -0.028612006455659866, -0.014571061357855797, 0.040202949196100235, -0.00166019843891263, 0.0033777067437767982, 0.005251026712357998, 0.012314481660723686, 0.0025216389913111925, 0.005265354178845882, -0.0025413392577320337, -0.021491240710020065, -0.009900298900902271, -0.003383079543709755, -0.018568431958556175, -0.0053226640447974205, -0.009191087447106838, 0.002885199151933193, -0.023325160145759583, -0.005329827778041363, 0.008460385724902153, 0.017035391181707382, 0.013295914977788925, 0.017307613044977188, -0.023468434810638428, -0.004287502728402615, 0.017264630645513535, 0.001725567621178925, 0.03074680268764496, 0.03341171517968178, -0.020602935925126076, 0.03687896952033043, -0.027652064338326454, 0.024127500131726265, -0.021706154569983482, 0.010301467962563038, -0.03997370973229408, 0.049859680235385895, -0.03177838400006294, 0.013417698442935944, -0.015445038676261902, 0.015000886283814907, 0.014277348294854164, 0.023454107344150543, 0.03011639229953289, 0.00965673103928566, -0.02401288039982319, -0.020488316193223, 0.026806741952896118, -0.034959085285663605, 0.031491830945014954, 0.012235679663717747, 0.01947106420993805, 0.013639774173498154, -0.01699240878224373, 0.007034799549728632, 0.015086851082742214, 0.004581216257065535, -0.018754690885543823, 0.019198842346668243, -0.025373991578817368, 0.00010141179518541321, -0.011204100213944912, -0.019141532480716705, 0.029342709109187126, -0.003556800540536642, -0.01743656024336815, -0.002417764626443386, 0.025631887838244438, 0.020545626059174538, -0.0022046430967748165, 0.0033239787444472313, 0.016433635726571083, 0.034930430352687836, 0.02217896096408367, -0.00548743037506938, 0.012558048591017723, -0.01769445464015007, 0.018095625564455986, -0.00104232516605407, 0.022465510293841362, -0.007106437347829342, 0.00032908463617786765, 0.0004074381140526384, 0.025961419567465782, -0.013295914977788925, -0.015129834413528442, -0.014363313093781471, 0.026892706751823425, 0.02236521802842617, -0.020287731662392616, 0.010143865831196308, -0.02242252789437771, 0.01889796555042267, -0.023554401472210884, -0.021777791902422905, 0.02985849790275097, -0.0304315984249115, -0.0011372448643669486, 0.009585093706846237, 0.03937195613980293, 0.012651177123188972, 0.015488021075725555, 0.0003541577607393265, 0.012307317927479744, 0.008761262521147728, 0.02239387296140194, 0.006587065290659666, -0.03444329649209976, -0.0149149214848876, 0.004488087724894285, -0.02823949046432972, -0.006476027425378561, -0.0034869539085775614, -0.005498175974935293, -0.03398481756448746, -0.008553514257073402, 0.013589628040790558, 0.03306785598397255, 0.011060825549066067, 0.006125004030764103, 0.004058262798935175, -0.030947387218475342, -0.03928598761558533, 0.02782399393618107, 0.010888895951211452, 0.014298839494585991, -0.012565212324261665, -0.014929248951375484, 0.044271957129240036, -0.0180812980979681, 0.0029371362179517746, -0.003261295845732093, 0.003143094014376402, -0.014277348294854164, -0.00693450728431344, 0.01478597428649664, 0.02335381507873535, -0.002527011791244149, 0.005315500311553478, 0.005347737111151218, -0.01769445464015007, -0.00020170425705146044, 0.01800966076552868, -0.030546218156814575, 0.014212874695658684, 0.0332970954477787, -0.011913311667740345, -0.010029246099293232, -0.031119316816329956, -0.03238013759255409, -0.029185105115175247, 0.01816726289689541, 0.007074200082570314, -0.013861850835382938, -0.0012178369797766209, 0.009298543445765972, 0.012794452719390392, 0.0013584255939349532, -0.02369767613708973, 0.02268042415380478, -0.007385823410004377, -0.007514770608395338, -0.016505273059010506, -0.007973250932991505, 0.025431301444768906, 0.037538036704063416, 0.049888335168361664, 0.02985849790275097, 0.014255857095122337, -0.02570352517068386, 0.005100587848573923, -0.01795235089957714, -0.02458598092198372, 0.021304983645677567, -0.011727053672075272, -0.013274423778057098, -0.003227268112823367, 0.0037824586033821106, 0.011118135415017605, 0.02503013238310814, -0.005960237700492144, 0.021462585777044296, -0.015387728810310364, 0.019786270335316658, -0.019385099411010742, 0.007414478342980146, -0.011411849409341812, 0.00775117427110672, 0.019843580201268196, 0.018640069290995598, 0.005197298713028431, 0.037853240966796875, 0.012987873516976833, 0.005544740241020918, 0.00046743449638597667, -0.01534474641084671, 0.034959085285663605, 0.011676907539367676, 0.014886266551911831, -0.010867404751479626, 0.03805382549762726, 0.007708191871643066, -0.004294666461646557, 0.004971640650182962, 0.011096644215285778, -0.000618768681306392, 0.014492260292172432, 0.0019270479679107666, -0.007872957736253738, 0.010494889691472054, -0.01912720501422882, -0.00845322199165821, 0.019399426877498627, -0.01189898420125246, -0.010588018223643303, 0.03922867774963379, -0.004903584718704224, -0.021462585777044296, -0.0018446649191901088, 0.018023988232016563, 0.011633925139904022, -0.01278728898614645, -0.016763167455792427, -0.019084222614765167, -0.011798691935837269, -0.026247968897223473, -0.03252341225743294, 0.03601932153105736, -0.015430711209774017, -0.024500016123056412, -0.024070190265774727, -0.01889796555042267, -0.011096644215285778, -0.019900890067219734, 0.022666096687316895, 0.012178369797766209, -0.014585388824343681, -0.030345633625984192, 0.04473043605685234, -0.005483848508447409, 0.0039651342667639256, -0.0014390177093446255, -0.019814925268292427, -0.01680615171790123, 0.023153230547904968, -0.01651960052549839, -0.024184809997677803, 0.0012017185799777508, -0.016376325860619545, -0.003277414245530963, -0.0005104169831611216, 0.004266011528670788, -0.0026308861561119556, -0.006450954359024763, 0.0024607472587376833, -0.0020040583331137896, -0.006529755424708128, -0.024700600653886795, -0.00040049824747256935, 0.039314642548561096, -0.0017049717716872692, 0.020488316193223, 0.02299562841653824, 0.009893135167658329, -0.00999342743307352, -0.0010727711487561464, -0.028153525665402412, -0.023712003603577614, 0.018038315698504448, -0.021519895642995834, 0.006114257965236902, -0.0002825202827807516, 0.02706463634967804, 0.00017741468036547303, -0.010351615026593208, 0.0032004041131585836, 0.003655301872640848, -0.008159507997334003, 0.005100587848573923, 0.0003765444562304765, -0.0016055748565122485, 0.03134855628013611, 0.01620439626276493, 0.014334658160805702, -0.00788012146949768, 0.007744010537862778, -0.003338306210935116, 0.015387728810310364, 0.012808780185878277, -0.003796786069869995, 0.00584561750292778, -0.00594949210062623, -0.03983043506741524, -0.003850514069199562, 0.018826328217983246, -0.005920837167650461, 0.008789917454123497, 0.0008318901527673006, -0.04031756892800331, -0.03518832474946976, 0.010645328089594841, -0.006458118092268705, -0.005297590978443623, -0.0080233970656991, -0.028612006455659866, -0.014728664420545101, 0.013059510849416256, -0.011734217405319214, -0.03235148265957832, -0.013475008308887482, -0.02716492861509323, -0.010681146755814552, -0.0009277052595280111, 0.015531003475189209, 0.022537147626280785, 0.0010414296993985772, 0.004484505858272314, -0.02884124591946602, -0.02255147509276867, -0.018152935430407524, -0.021806446835398674, 0.0004300487053114921, -0.01550234854221344, 0.040976632386446, 0.022092996165156364, 0.02207866869866848, 0.003073247615247965, 0.0160467941313982, -0.010301467962563038, -0.005462357308715582, -0.015960829332470894, -0.008560677990317345, -0.027652064338326454, -0.005705924704670906, -0.006207386963069439, 0.005247444845736027, 0.01779474876821041, 0.006751831620931625, 0.014062435366213322, -0.013711412437260151, 0.030890077352523804, -0.00591725530102849, -0.009936117567121983, -0.008617987856268883, -0.05275383219122887, -0.031721074134111404, 0.007622227072715759, -0.007507606875151396, -0.0063363341614604, -0.04298248142004013, -0.0249728225171566, 0.007342841010540724, -0.0010718756821006536, 0.007829975336790085, 0.001180227380245924, 0.029973117634654045, -0.014900594018399715, 0.04008832946419716, 0.016662875190377235, 0.02894153818488121, -0.016132758930325508, -0.013539481908082962, -0.017235975712537766, 0.011884656734764576, 0.007837139070034027, 0.0149149214848876, 0.011877493001520634, -0.0035926192067563534, 0.00486060231924057, -0.010917550884187222, 0.016290361061692238, -0.0225228201597929, -0.010236994363367558, 0.00479612872004509, -0.012006440199911594, -0.015230126678943634, -0.02875528112053871, -0.012866090051829815, 0.0018607833189889789, 0.007693864405155182, -0.0037752946373075247, -0.010373106226325035, 0.01534474641084671, -0.013346061110496521, -0.021706154569983482, -0.00798757839947939, -0.0028511714190244675, 0.022250598296523094, 0.021835101768374443, 0.0361625961959362, 0.015588313341140747, 0.010115210898220539, 0.005559067707508802, 0.011684071272611618, 0.017579834908246994, 0.0015151324914768338, 0.014700009487569332, 0.024542998522520065, -0.020416678860783577, -0.0059566558338701725, -0.002254789462313056, 0.02427077479660511, 0.005784725770354271, -0.017766093835234642, 0.0515216700732708, 0.03911405801773071, 0.010416088625788689, -0.03558949753642082, -0.008438894525170326, -0.008668133988976479, -0.014492260292172432, 0.002254789462313056, 0.005369228310883045, 0.038770198822021484, -0.023683348670601845, -0.012923399917781353, 0.01331024244427681, -0.02500147745013237, 0.019112877547740936, 0.010888895951211452, -0.005695179104804993, -0.007851466536521912, 0.004369885660707951, -0.018339192494750023, 0.004244520328938961, -0.015516676008701324, 0.022895336151123047, -0.03541756421327591, 0.005118497181683779, -0.0003145332739222795, -0.005784725770354271, -0.012164042331278324, -0.01829621009528637, 0.0035496368072927, 0.02891288325190544, 0.0005314605077728629, -0.0030517561826854944, 0.005157897714525461, -0.036964934319257736, 0.04100528731942177, -0.01991521753370762, 0.005448029842227697, -0.0028708716854453087, -0.03914271295070648, -0.007117182947695255, 0.030001772567629814, 0.019685978069901466, 0.010853077284991741, -0.014413459226489067, -0.005953073967248201, -0.035274289548397064, -0.0008896478684619069, -0.012092404998838902, 0.00978567823767662, -0.02649153769016266, -0.007031217683106661, -0.01868305169045925, -0.004427195526659489, 0.009642403572797775, 0.009212578646838665, 0.0162330511957407, 0.007944596000015736, 0.04114856198430061, -0.0067840684205293655, -0.001160526997409761, -0.009327198378741741, -0.007156583480536938, -0.02296697348356247, 0.009384509176015854, -0.021462585777044296, -0.000582054432015866, 0.008238309063017368, 0.014714336954057217, -0.051321085542440414, -0.005365646444261074, 0.01740790531039238, 0.005344155244529247, 5.302851786836982e-05, 0.021992703899741173, 0.06636495143175125, 0.0104519072920084, -0.005319082178175449, -0.0102441580966115, -0.017766093835234642, 0.0341280922293663, -0.007199565880000591, 0.006214550696313381, 0.017809076234698296, 0.00031520487391389906, 0.01153363287448883, -0.01591784693300724, 0.006450954359024763, -0.01189898420125246, -0.029242414981126785, -0.030202357098460197, 0.032265517860651016, 0.012952054850757122, -0.015029541216790676, -0.027981596067547798, -0.026520192623138428, -0.020961124449968338, -0.008360092528164387, 0.01868305169045925, 0.0237263310700655, 0.010373106226325035, -0.0039651342667639256, 0.0115622878074646, 0.007837139070034027, 0.021591532975435257, -0.007701028138399124, -0.027566099539399147, -0.04172166436910629, 0.006952416617423296, -0.027422824874520302, -0.04003101959824562, -0.017207320779561996, 0.019270479679107666, -0.0037108210381120443, -0.04031756892800331, -0.015860537067055702, -0.025746507570147514, -0.009427491575479507, -0.013295914977788925, -0.033469025045633316, 0.013861850835382938, 0.05943044647574425, 0.014900594018399715, -0.013410534709692001, 0.028697971254587173, -0.007378659676760435, 0.00109963514842093, -0.005598468240350485, 0.0034493443090468645, 0.021118726581335068, -0.010315795429050922, 0.029715223237872124, -0.016877789050340652, -0.04037487879395485, 0.0016360207227990031, 0.02035936899483204, 0.022881008684635162, 0.02061726339161396, 0.0076007358729839325, -0.016734512522816658, 0.013052347116172314, -0.0149149214848876, -0.006393644493073225, 0.00897617544978857, 0.0029640004504472017, 0.011906147934496403, -0.046621665358543396, -0.0021312148310244083, 0.031062006950378418, 0.02884124591946602, -0.005379973910748959, -0.0008780067437328398, 0.012185533531010151, 0.007772665470838547, 0.01321711391210556, -0.023869605734944344, -0.007181656546890736, 0.0050289505161345005, -0.024442704394459724, 0.028124870732426643, 0.003041010582819581, 0.022307908162474632, 0.029457328841090202, -0.0007768188370391726, -0.005265354178845882, -0.000919646059628576, 0.013904833234846592, -0.022092996165156364, -0.014470769092440605, 0.024944167584180832, -0.004617034923285246, -0.009620912373065948, 0.005863526836037636, -0.003707239171490073, -0.0017246721545234323, -0.029185105115175247, 0.006554828491061926, -0.016147086396813393, -0.01588919200003147, 0.00151065515819937, 0.010294304229319096, -0.054816994816064835, -0.021906739100813866, 0.002168824430555105, -0.026548847556114197, 0.01146915927529335, 0.013475008308887482, -0.03223686292767525, -0.025058787316083908, -0.002104350831359625, -0.010365942493081093, -0.007915940135717392, -0.021176036447286606, 0.009420327842235565, 0.007557753007858992, -0.01285176258534193, 0.0028923628851771355, 0.2036796659231186, -0.02957194857299328, 0.007887285202741623, 0.01881200075149536, -0.004849856719374657, 0.015172816812992096, -0.018382174894213676, 0.0006810037302784622, -0.022322235628962517, 0.037280138581991196, 0.011920475400984287, 0.007213893346488476, -0.001978985033929348, -0.011877493001520634, 0.0044952514581382275, 0.021691827103495598, -0.0341280922293663, -0.025646215304732323, -0.03928598761558533, -0.016978081315755844, -0.008775589987635612, -0.019685978069901466, -0.0032057769130915403, -0.015244454145431519, 0.023969898000359535, 0.015430711209774017, -0.0016637803055346012, 0.005283263511955738, 0.03097604215145111, 0.021906739100813866, -0.028826918452978134, 0.006773322820663452, 0.015430711209774017, 0.015058196149766445, 0.028139198198914528, -0.022193288430571556, 0.029371364042162895, -0.01199211273342371, 0.029113467782735825, 0.00275983358733356, 0.0225228201597929, -0.01839650236070156, 0.03278130665421486, -0.027981596067547798, -0.021433930844068527, 0.00011652282410068437, 0.015015213750302792, -0.017192993313074112, 0.008868718519806862, 0.003171748947352171, -0.007063454482704401, 0.034013472497463226, 0.024471359327435493, 0.02134796604514122, 0.022479837760329247, -0.011490650475025177, -0.006483191158622503, -0.007067036349326372, -0.01680615171790123, 0.00584561750292778, -0.032580722123384476, 0.008875882253050804, 0.004925076384097338, -0.0004343021719250828, -0.022737734019756317, 0.009842989034950733, -0.010065064765512943, -0.03444329649209976, -0.0028117706533521414, -0.013639774173498154, 0.013646937906742096, -0.021262001246213913, -0.015702933073043823, 0.010960533283650875, -0.013603955507278442, -0.017551179975271225, -0.005867108702659607, 0.01561696920543909, 0.028540369123220444, 0.03384154289960861, -0.001351261860691011, 0.026419900357723236, -0.017293285578489304, -0.007052708882838488, -0.019270479679107666, -0.022193288430571556, 0.027336858212947845, -0.002210015896707773, -0.019370771944522858, -0.0013700666604563594, -0.02080352231860161, -0.0004745982587337494, -0.015359073877334595, 0.024027207866311073, -0.027379842475056648, -0.006454536225646734, 0.012758634053170681, 0.01353231817483902, 0.006364989560097456, -0.027523117139935493, -0.045131608843803406, 0.051865529268980026, 0.02706463634967804, -0.008560677990317345, -0.03644914552569389, -0.020058492198586464, 0.012801616452634335, 0.013224277645349503, -0.007213893346488476, -0.005397883243858814, -0.013267260044813156, -0.02341112494468689, -0.0038326047360897064, 0.0022350891958922148, 0.01639065332710743, 0.02614767663180828, 0.026821069419384003, -0.004663599189370871, -0.0031323484145104885, -0.02103276178240776, 0.005079096648842096, -0.013704248704016209, 0.008037724532186985, 0.012572376057505608, -0.012207024730741978, -0.02513042464852333, 0.0008753203437663615, -0.010351615026593208, -0.016118431463837624, -0.04071873798966408, 0.02528802677989006, 0.005666524171829224, 0.014270184561610222, -0.010287140496075153, 0.00045109220081940293, 0.014062435366213322, 0.008188162930309772, -0.0036051557399332523, -0.023683348670601845, 0.014162728562951088, -0.01985790766775608, -0.0019073477014899254, 0.015932174399495125, 0.004377049393951893, 0.0006671239389106631, -0.025904109701514244, 0.020087147131562233, 0.0078156478703022, -0.020101474598050117, -0.016505273059010506, -0.01578889787197113, 0.0035514277406036854, -0.006264696829020977, 0.009298543445765972, 0.022279253229498863, -0.016276033595204353, -0.01861141435801983, -0.05702342838048935, 0.013417698442935944, -0.010437579825520515, -0.03710820898413658, 0.0066443756222724915, 0.016763167455792427, -0.004172882530838251, -0.022881008684635162, 0.0024876112584024668, -0.1845381259918213, 0.007464624475687742, 0.011397521942853928, -0.02518773451447487, 0.023325160145759583, -0.0007374182459898293, -0.012457756325602531, 0.007801320869475603, -0.008095034398138523, -0.0026201405562460423, 0.020889487117528915, -0.021276328712701797, -0.014728664420545101, 0.01769445464015007, 0.007529098074883223, -0.010194011963903904, 0.004463014658540487, 0.01699240878224373, 0.02617633156478405, 0.018597086891531944, 0.02510176971554756, -0.036993589252233505, -0.012042258866131306, -0.01245059259235859, -0.020001182332634926, 0.008990502916276455, -0.04140646010637283, 0.0021133054979145527, 0.008746935054659843, -0.019642993807792664, -0.037881895899772644, 0.013260096311569214, -0.0013423070777207613, 0.014556733891367912, 0.004051099065691233, 2.1910991563345306e-05, -0.012615358456969261, 0.0005229535163380206, -0.010860241018235683, 0.03945792093873024, 0.014076762832701206, 0.019714633002877235, 0.01255088485777378, 0.020975451916456223, -0.018367847427725792, 0.03154914081096649, 0.05106319114565849, 0.013209950178861618, 0.016634220257401466, -0.01829621009528637, -0.009835824370384216, -0.012995037250220776, -0.009792841970920563, 0.021720482036471367, 0.016304688528180122, 0.039028093218803406, 0.026061711832880974, -0.006741086021065712, 0.006748249754309654, -0.010380269959568977, 0.013052347116172314, -0.010896059684455395, -0.0082096541300416, -0.017135683447122574, -0.013123984448611736, -0.0012500738957896829, -0.021749136969447136, 0.02131931111216545, -0.015588313341140747, 0.02725089341402054, -0.003370543010532856, 0.03266668692231178, -0.002691777888685465, 0.012192697264254093, 0.016347670927643776, -0.0017873549368232489, -0.05238131806254387, 0.028167853131890297, 0.008403075858950615, -0.011397521942853928, 0.018339192494750023, 0.04375616833567619, -0.0011363493977114558, 0.007203147746622562, 0.006160822696983814, -0.006082021165639162, -0.0006174254813231528, 0.015488021075725555, -0.012866090051829815, -0.006314842961728573, 0.020846504718065262, 0.007317767478525639, 0.01941375434398651, -0.02182077430188656, -0.005079096648842096, 0.01140468567609787, 0.008983339183032513, 0.0040725902654230595, -0.00037878312286920846, -0.0046600173227488995, -0.025588905438780785, -0.005129242781549692, -0.014126908965408802, 0.011211263947188854, 0.029915807768702507, 0.01610410399734974, -0.02131931111216545, -0.001074562082067132, 0.04232341796159744, -0.027394169941544533, 0.01565995067358017, 0.010079392232000828, 0.009757023304700851, 0.02649153769016266, -0.006343497894704342, 0.005483848508447409, 0.022852353751659393, -0.0067554134875535965, -0.0019951036665588617, 0.009671058505773544, 0.04848423972725868, -0.0011238128645345569, -0.01829621009528637, 0.020545626059174538, -0.025818144902586937, -0.018038315698504448, -0.09135210514068604, -0.004867766052484512, 0.005938746500760317, 0.005730997771024704, -0.012027931399643421, 0.0008399493526667356, 0.01478597428649664, 0.027494462206959724, 0.005834871903061867, 0.019241824746131897, 0.0004269145429134369, -0.013260096311569214, -0.024156155064702034, -0.015731588006019592, 0.018038315698504448, -0.015058196149766445, -0.010638164356350899, -0.022092996165156364, 0.008266963995993137, 0.029715223237872124, -0.009169596247375011, -0.035818737000226974, -0.02614767663180828, -0.006193059496581554, -0.01960001140832901, 0.005834871903061867, -0.030632182955741882, 0.022694751620292664, -0.0010020291665568948, 0.007224638946354389, 0.03240879252552986, -0.013403370976448059, 0.01294489111751318, -0.0044701783917844296, -0.010301467962563038, -0.003825441002845764, -0.029185105115175247, -0.02080352231860161, 0.0010459070326760411, -0.052180733531713486, 0.025932764634490013, 0.026419900357723236, 0.023138903081417084, -0.037509381771087646, 0.0027490879874676466, -0.008890210650861263, -0.011504977941513062, 0.048398274928331375, -0.014248693361878395, -0.019385099411010742, -0.017579834908246994, 0.00679839588701725, -0.007729683071374893, -0.024600308388471603, 0.03656376525759697, -0.011089480482041836, -0.002491193125024438, 0.029213760048151016, -0.012701323255896568, 0.0033239787444472313, -0.011067989282310009, -0.008238309063017368, -0.027909958735108376, -0.0037287303712219, 0.015559658408164978, 0.0011336629977449775, -0.03424271196126938, -0.022322235628962517, 0.03604797646403313, -0.0021437513642013073, -0.017164338380098343, 0.018912293016910553, -0.015445038676261902, -0.011239918880164623, -0.013718576170504093, -0.011354539543390274, -0.0036929117050021887, -0.03068949282169342, -0.007013308349996805, 0.0021831518970429897, -0.007299858145415783, -0.02852604165673256, -0.008811408653855324, -0.0010736666154116392, 0.007414478342980146, 0.01769445464015007, -0.004663599189370871, 0.0074431332759559155, -0.00010622493573464453, -0.04478774592280388, 0.010194011963903904, 0.006880779284983873, 0.013818868435919285, 0.0017192993545904756, -0.029772533103823662, 0.022881008684635162, 0.027680719271302223, 0.005544740241020918, -0.0071243466809391975, 0.00010812780965352431, -0.034930430352687836, -0.007081364281475544, -0.07553455233573914, 0.04659301042556763, 0.017522525042295456, 0.025058787316083908, -0.009900298900902271, -0.02173480950295925, -0.005695179104804993, -0.008689625188708305, -0.0182675551623106, 0.04215148836374283, -0.0018858563853427768, 0.024070190265774727, 0.0006335438811220229, -0.0027580426540225744, -0.005777562037110329, -0.03398481756448746, 0.02758042700588703, -0.0018464558525010943, 0.025216389447450638, -0.01871170662343502, -0.003993789199739695, -0.008997666649520397, 0.01537340134382248, 0.0111682815477252, 0.006311261095106602, 0.017493870109319687, -0.0021133054979145527, 0.00879708118736744, -0.015015213750302792, -0.026419900357723236, 0.0160467941313982, -0.026219313964247704, 0.009183923713862896, 0.01944240927696228, -0.00795892346650362, -0.02255147509276867, 0.008223981596529484, 0.016605565324425697, 0.021290656179189682, -0.0008314424194395542, -0.0060390387661755085, -0.012737142853438854, -0.000470120896352455, -0.018597086891531944, -0.02007281966507435, -0.029041830450296402, -0.022007031366229057, 0.010036409832537174, 0.008231145329773426, 0.011454831808805466, 0.027852648869156837, 0.007786992937326431, -0.045418158173561096, -0.02280937135219574, -0.0057166703045368195, -0.02074621245265007, 0.02166317217051983, 0.01750819757580757, 0.014384804293513298, 0.006175150163471699, 0.03911405801773071, 0.011984949000179768, 0.029915807768702507, -0.020230421796441078, 0.017207320779561996, -0.008324273861944675, -0.012135387398302555, -0.02823949046432972, 0.0059566558338701725, -0.02210732363164425, -0.0007020471966825426, -0.015860537067055702, 0.00011461995745776221, 0.027981596067547798, 0.004348394460976124, 0.006905852351337671, -0.017551179975271225, 0.013317406177520752, -0.009520620107650757, 0.008431730791926384, 0.01962866634130478, -0.004874929785728455, -0.011999276466667652, 0.022637441754341125, -0.001347679877653718, 0.012436265125870705, -0.02951463870704174, 0.01998685486614704, 0.00916243251413107, 0.007110019214451313, -0.04452985152602196, -0.009105122648179531, -0.00017360893252771348, 0.002718642121180892, 0.03309651091694832, 0.020187439396977425, -0.01081725861877203, 0.017680127173662186, 0.02510176971554756, -4.1723229514900595e-05, 0.02014445699751377, 0.0004660912964027375, -0.02265176922082901, -0.028884228318929672, -0.010795766487717628, -0.011139626614749432, -0.009885971434414387, -0.03344037011265755, 0.006554828491061926, -0.010459071025252342, 0.007894448935985565, -0.008102198131382465, 0.020989779382944107, 0.03238013759255409, -0.01073845662176609, 0.007160165347158909, 0.00019633144256658852, -0.010502053424715996, -0.03338306024670601, 0.0462491512298584, 0.010365942493081093, -0.011526469141244888, 0.0160467941313982, -0.007009726483374834, 0.04160704463720322, -0.023138903081417084, 0.028697971254587173, -0.003488744841888547, 0.01321711391210556, -0.018940947949886322, 0.001989730866625905, -0.0010808303486555815, -0.02862633392214775, -0.03278130665421486, -0.021390948444604874, 0.00016342298476956785, -0.0009805378504097462, 0.030345633625984192, 0.0028708716854453087, 0.0922117531299591, 0.009176759980618954, -0.02948598377406597, -0.015545330941677094, 0.006125004030764103, 0.014356149360537529, 0.013424862176179886, 0.0332970954477787, -0.002552084857597947, -0.03384154289960861, 0.0009312871261499822, -0.010924714617431164, -0.012027931399643421, -0.024027207866311073, -0.016533927991986275, -0.0012885789619758725, 0.01409109029918909, 0.011684071272611618, -0.005079096648842096, -0.016089776530861855, -0.00033423356944695115, -0.013145475648343563, 0.008159507997334003, 0.015674278140068054, -0.016849134117364883, -0.026520192623138428, 0.011053661815822124, -0.0017443724209442735, -0.0077368468046188354, -0.02468627318739891, -0.004412868060171604, -0.014313166961073875, -0.012894744984805584, -0.031090661883354187, 0.0022977718617767096, 0.0014363313093781471, -0.010029246099293232, -0.020416678860783577, -0.004058262798935175, 0.009943281300365925, -0.013396207243204117, 0.009585093706846237, -0.03341171517968178, -0.027465807273983955, 0.01374006737023592, -0.012901908718049526, 0.011461995542049408, -0.014427786692976952, -0.021176036447286606], "7bd9db26-5333-49d3-acfe-b320ad60a235": [-0.01472214050590992, -0.01264919526875019, -0.021152500063180923, 0.0005927106831222773, -0.000827591575216502, 0.01998206228017807, -0.026976488530635834, -0.0064832414500415325, -0.029528891667723656, -0.008327034302055836, 0.032349225133657455, 0.0001695505197858438, 0.004868600517511368, 0.013530549593269825, -0.009257744066417217, -0.006000259425491095, 0.0060390387661755085, -0.012479975819587708, 0.0007081680814735591, -0.010682012885808945, -0.027159810066223145, 0.01472214050590992, -0.013452989980578423, 0.015540037304162979, -0.008996863849461079, 0.004142364487051964, 0.020066672936081886, -0.030798040330410004, 0.003005417762324214, 0.014165124855935574, 0.0001277963601751253, 0.004064805340021849, -0.044758692383766174, 0.006867511663585901, -0.0289930272847414, -0.012543432414531708, 0.02147683873772621, -0.004181144293397665, 0.0169220007956028, -0.022774191573262215, 0.026736760511994362, 0.0024096223060041666, 0.008073204196989536, -0.022971615195274353, -0.011986416764557362, 0.02318314090371132, 0.02204090543091297, -0.021716566756367683, -0.003305078251287341, 0.006532597355544567, 0.0184731837362051, 0.018177049234509468, -0.014538818970322609, 0.011781943030655384, 0.030713431537151337, -0.011944112367928028, 0.006885138805955648, 0.011676180176436901, -0.0024607409723103046, -0.0074104261584579945, -6.114394636824727e-05, -0.02706109918653965, 0.013192109763622284, 0.010195504873991013, -0.0028696891386061907, -0.007939238101243973, -0.0035148405004292727, 0.016752781346440315, -0.012987635098397732, -0.029303263872861862, 0.02875329926609993, 0.007903984747827053, -0.004308059345930815, -0.019121861085295677, -0.006737071555107832, -0.022943412885069847, -0.027526455000042915, -0.005175311584025621, 0.03866676986217499, 0.018712911754846573, 0.01903725042939186, -0.009377609007060528, -0.03119288757443428, 0.016442542895674706, 0.030741633847355843, -0.013199160806834698, 0.015864375978708267, -0.0071037146262824535, -0.025721440091729164, -0.0013951837318018079, 0.018501387909054756, 0.016696373000741005, 0.016386136412620544, 0.0084610003978014, 0.0009553879499435425, 0.011013401672244072, 0.006945070810616016, 0.018585996702313423, 0.004678227938711643, -0.0156528502702713, -0.0043750423938035965, -0.013199160806834698, -0.04072561487555504, 0.005760530941188335, -0.004174093250185251, -0.0014418954961001873, 0.0091096768155694, 0.008884049952030182, -0.001662233960814774, 0.014073464088141918, -0.03672074154019356, 0.011076859198510647, -0.017330948263406754, -0.011986416764557362, -0.0017970812041312456, -0.003079451620578766, 0.003839178942143917, -0.03265945985913277, -0.027286725118756294, -0.013572854921221733, 0.009398761205375195, 0.023944631218910217, 0.0019724706653505564, -0.010815978981554508, 0.003758094273507595, 0.009596184827387333, 0.0038673821836709976, -0.020588433369994164, 0.012529331259429455, -0.01506058033555746, 0.028837909922003746, 0.023944631218910217, 0.017457863315939903, -0.0030107058119028807, 0.004991990048438311, 0.031474921852350235, -0.01659766212105751, -0.002874977421015501, -0.036861758679151535, -0.010583301074802876, 9.182609210256487e-05, 0.04803027957677841, -0.009159033186733723, -0.00524582015350461, -0.012197942472994328, 0.008785338141024113, -0.002478367881849408, -0.009539777413010597, 0.019135961309075356, 0.0035007388796657324, 0.011351842433214188, -0.0011228452203795314, -0.014806750230491161, -0.030544210225343704, 0.016428442671895027, 0.017641184851527214, 0.0008544728625565767, -3.561221819836646e-05, -0.007311714347451925, -0.02085636556148529, 0.00382155179977417, 0.04966607317328453, 0.0029825025703758, 0.013833735138177872, 0.025072764605283737, 0.03626948595046997, 0.011528112925589085, 0.0020130129996687174, -0.006384529639035463, -0.008397542871534824, -0.027385437861084938, 0.016837390139698982, -0.0328286811709404, 0.010357674211263657, 0.015991291031241417, 0.027286725118756294, 0.005742903798818588, -0.01174668874591589, -0.006377479061484337, -0.011866552755236626, -0.037171993404626846, 0.001313217799179256, -0.0008328796830028296, 0.03838473930954933, -0.00826357677578926, -0.0005927106831222773, 0.019333384931087494, -0.01665406860411167, 0.0042128730565309525, -0.0029102314729243517, 0.01941799558699131, 0.014179226011037827, -0.010096793994307518, -0.008482152596116066, -0.5970081686973572, -0.019657723605632782, 0.008319983258843422, 0.016569457948207855, -0.0011915909126400948, 0.011887704953551292, 0.002025351859629154, 0.003320942632853985, -0.03062882088124752, 0.0438561849296093, -0.011316588148474693, 0.016936102882027626, -0.01061855535954237, -0.016682272776961327, 0.0002716774179134518, -0.0012286077253520489, 0.0001089574143406935, 0.00902506709098816, 0.007777069229632616, 0.005517277400940657, -0.023352360352873802, 0.004843922797590494, 0.009969878941774368, -0.014235632494091988, -0.011817197315394878, -0.021378127858042717, 0.038497552275657654, -0.004389144014567137, 0.002548876218497753, 0.0223088376224041, -0.04535096138715744, -0.0010734894312918186, 0.01690789870917797, -0.0110275037586689, 0.054347824305295944, -0.0025012833066284657, -0.025072764605283737, 0.02362029254436493, 0.015427223406732082, 0.019460299983620644, -0.02400103770196438, -0.0015661664074286819, 0.03364657610654831, 0.0042305001989007, -0.00413178838789463, -0.01659766212105751, 0.030036550015211105, 0.007131918333470821, -0.006599580403417349, -0.021138399839401245, 0.015822069719433784, 0.0018385048024356365, -0.022788293659687042, 0.014108717441558838, -0.001810301560908556, -0.0014665733324363828, 0.030205771327018738, 0.007664256263524294, 0.018938539549708366, -0.009187236428260803, -0.013206210918724537, -0.0033262306824326515, -0.010660860687494278, -0.00918018538504839, -0.00902506709098816, 0.006419783923774958, 0.014299090020358562, 0.006807579658925533, 0.01723223738372326, -0.0018173523712903261, 0.014362547546625137, 0.010512792505323887, -0.00580988684669137, -0.012740856036543846, 0.005030769854784012, 0.018092438578605652, 0.0012841330608353019, 0.006391580682247877, -0.019446199759840965, 0.009166083298623562, 0.01462342869490385, -0.012388314120471478, -0.01654125563800335, -0.022999819368124008, 0.014863156713545322, 0.012360110878944397, -0.019587215036153793, 0.00015533868281636387, -0.011020452715456486, -0.019587215036153793, 0.030741633847355843, -0.02098328061401844, -0.015455426648259163, -0.03381579741835594, 0.01513108890503645, -0.006504394114017487, -0.014990071766078472, 0.017330948263406754, 0.00867252517491579, -0.0027374860364943743, -0.009483370929956436, -0.0034337558317929506, 0.0031023668125271797, 0.004674702417105436, 0.03488752618432045, 0.025143273174762726, -0.025157373398542404, -0.024127952754497528, 0.04303828626871109, -0.013798480853438377, 0.024029240012168884, -0.0014745055232197046, -0.013650413602590561, -0.007678357884287834, 0.007882831618189812, -0.036241285502910614, 0.04205117002129555, 0.008573813363909721, -0.005647717509418726, 0.02768157236278057, 0.01803603209555149, -0.009539777413010597, 0.008602016605436802, -0.008446898311376572, 0.005658294074237347, 0.0328286811709404, 0.034859322011470795, -0.020405111834406853, 0.02242165058851242, -0.021660160273313522, -0.017020711675286293, -0.009039168246090412, 0.023704903200268745, -0.01087238546460867, 0.02005257084965706, -0.02711750566959381, 0.024029240012168884, -0.0031852140091359615, 0.04078201949596405, -0.03469010069966316, -0.017697591334581375, 0.00311646843329072, -0.00882764346897602, -0.012881873175501823, -0.02211141400039196, -0.02204090543091297, -0.031080074608325958, 0.003472535405308008, -0.012818415649235249, 0.023211343213915825, -0.009687845595180988, 0.002605282934382558, -0.001806776039302349, 0.02349337749183178, -0.025707339867949486, 0.0013185058487579226, 0.005432667210698128, -0.04803027957677841, 0.00483687175437808, -0.022689582780003548, -0.01916416548192501, 0.03469010069966316, -0.01033652201294899, -0.017006609588861465, 0.020532026886940002, -0.009003913961350918, -0.0029067061841487885, 0.002062368905171752, 0.0021081992890685797, -0.02147683873772621, -0.0150041738525033, -0.014933665283024311, -0.019869249314069748, -0.00035496539203450084, -0.006888664327561855, 0.012106280773878098, -0.009857065044343472, -0.00722005357965827, 0.014764445833861828, 0.007089613005518913, 0.004674702417105436, 0.02675086259841919, -0.0026493507903069258, 0.010343573056161404, 0.016061799600720406, 0.001951318234205246, 0.01665406860411167, 0.0305160079151392, -0.015229800716042519, 0.032095395028591156, -0.027272624894976616, 0.02669445611536503, -0.011556316167116165, 0.006599580403417349, -0.03497213497757912, 0.037115588784217834, -0.031926173716783524, 0.006969748996198177, -0.01459522545337677, 0.017260439693927765, -0.0013308448251336813, 0.025848355144262314, 0.02737133577466011, 0.0001697708503343165, -0.018430879339575768, -0.02598937228322029, 0.012071027420461178, -0.04571760445833206, 0.02467791736125946, 0.014736241661012173, 0.015765663236379623, 0.013826685026288033, -0.012536382302641869, 0.0018050133949145675, 0.012973533943295479, -0.003458433784544468, -0.019939757883548737, 0.019685927778482437, -0.02287290431559086, -0.005665344651788473, -0.008573813363909721, -0.023719003424048424, 0.04520994424819946, -0.002494232263416052, -0.02198449894785881, -0.01610410399734974, 0.01064675860106945, 0.025270188227295876, 0.020701246336102486, 0.0027321979869157076, 0.015836171805858612, 0.025397103279829025, 0.00693802023306489, -0.003980195615440607, 0.011852451600134373, -0.020884569734334946, 0.025270188227295876, -0.004621821455657482, 0.023507479578256607, -0.007960391230881214, 0.00454073678702116, 0.008482152596116066, 0.02198449894785881, -0.011380045674741268, -0.013241465203464031, 0.01628742553293705, 0.030036550015211105, 0.019389791414141655, -0.007791170850396156, 0.019079554826021194, -0.013812582939863205, 0.030092958360910416, -0.02236524410545826, -0.01878342032432556, 0.03421064466238022, -0.029641704633831978, -0.0029366721864789724, 0.007318765390664339, 0.02938787452876568, 0.018896233290433884, 0.010548046790063381, 0.0048333462327718735, 0.02342286892235279, -0.005802835803478956, 0.02047562040388584, 0.0005204396438784897, -0.02092687413096428, -0.006194157060235739, 0.01603359542787075, -0.018191151320934296, -0.004748736508190632, -0.0014956580707803369, -0.0039308397099375725, -0.01274790707975626, -0.017965523526072502, 0.0067970035597682, 0.025693237781524658, 0.002548876218497753, 0.021815279498696327, -0.005341006442904472, -0.03601565584540367, -0.025016358122229576, 0.01961541920900345, 0.019023148342967033, 0.018755218014121056, -0.016809187829494476, -0.013537600636482239, 0.030967261642217636, -0.010266013443470001, 0.021194806322455406, -0.005633615888655186, 0.014172174967825413, -0.007012053858488798, -0.001516810618340969, 0.012642144225537777, 0.016061799600720406, 0.008531508967280388, 0.011683231219649315, 0.00995577685534954, 0.009278897196054459, -0.0011475231731310487, 0.01685149222612381, -0.026045778766274452, 0.02449459582567215, 0.03218000382184982, -0.019516706466674805, -0.01018140371888876, -0.014947767369449139, -0.016611764207482338, -0.036241285502910614, 0.024015139788389206, 0.008383440785109997, -0.018120642751455307, 0.01090058870613575, 0.017443763092160225, 0.007565544452518225, -0.007124867290258408, -0.01772579550743103, 0.03446447476744652, -0.0017080644611269236, -0.008319983258843422, -0.018007827922701836, -0.0006420665304176509, 0.029839128255844116, 0.021321721374988556, 0.05694252997636795, 0.03421064466238022, 0.00789693370461464, -0.027653370052576065, 0.008319983258843422, -0.020630739629268646, -0.022435752674937248, 0.024593306705355644, -0.0236061904579401, -0.027949504554271698, 0.0011105062440037727, 0.015356715768575668, 0.0035042641684412956, 0.023507479578256607, 0.00045169400982558727, 0.02825974114239216, -0.005792259704321623, 0.0072094774805009365, -0.02593296580016613, 0.009567980654537678, 0.006458563730120659, 0.010731368325650692, 0.022449854761362076, 0.02116660214960575, 0.00995577685534954, 0.04134608805179596, 0.012324856594204903, 0.008651372976601124, -0.02029229886829853, -0.016202814877033234, 0.02387412264943123, 0.02675086259841919, 0.024381782859563828, -0.014348446391522884, 0.05237359181046486, -0.001739793224260211, -0.014038209803402424, 0.0030318584758788347, 0.018994946032762527, -0.02167426235973835, -0.007417476736009121, 0.004047178663313389, 0.0025612153112888336, 0.019403893500566483, -0.012148586101830006, -0.011351842433214188, 0.03158773481845856, -0.0017186406766995788, -0.006409207824617624, 0.02893662080168724, 0.006948596332222223, -0.023028021678328514, -0.007523239590227604, 0.017711693421006203, 0.012987635098397732, -0.010089742951095104, -0.018318066373467445, -0.024720221757888794, -0.007875781506299973, -0.03381579741835594, -0.03497213497757912, 0.00851740688085556, -0.01506058033555746, -0.017697591334581375, -0.01472214050590992, -0.026609845459461212, 0.006366902496665716, -0.029895534738898277, 0.030459601432085037, 0.007124867290258408, -0.018938539549708366, -0.03240562975406647, 0.051386475563049316, 0.003902636468410492, 0.012169738300144672, 0.0005177955608814955, -0.016569457948207855, -0.006275241728872061, 0.01710532233119011, -0.013636312447488308, -0.013121601194143295, 0.004304533824324608, -0.02662394754588604, -0.0119300102815032, -0.009074422530829906, 0.013199160806834698, 0.0052176169119775295, -0.013967701233923435, 0.005894497036933899, -0.00977245531976223, 0.00566887017339468, -0.004403245635330677, -0.0029208078049123287, 0.027046997100114822, -0.009779506362974644, 0.01459522545337677, 0.025213779881596565, -0.004727583844214678, -0.007332867011427879, -0.001591725624166429, -0.016372036188840866, -0.02074355259537697, 0.012670347467064857, -0.021589651703834534, 0.0068216812796890736, -0.0018913861131295562, 0.018332166597247124, -0.0021311144810169935, 5.8775309298653156e-05, -0.005771107040345669, -0.0018667081603780389, -0.007382222916930914, 0.006818156223744154, 0.0084610003978014, 0.01020960696041584, 0.021265313029289246, -0.007255307864397764, 0.008171916007995605, 0.008115509524941444, 0.008129610680043697, 0.0006425072206184268, 0.024353578686714172, 0.006024937145411968, 0.005164735484868288, 0.021942194551229477, -0.007276460062712431, -0.038807787001132965, -0.00833408534526825, 0.007100189570337534, -0.00874303374439478, 0.029331468045711517, 0.006687715649604797, -0.03615667298436165, -0.03271586820483208, -0.0007874899893067777, -0.013523498550057411, 0.011894755996763706, -0.011478756554424763, -0.020249994471669197, -0.018275760114192963, 0.011506960727274418, -0.01190180703997612, -0.026779064908623695, -0.0020130129996687174, -0.026073982939124107, -0.019135961309075356, 0.0012197941541671753, 0.019939757883548737, 0.03395681455731392, 0.013601058162748814, 0.00635985191911459, -0.0169220007956028, -0.025538118556141853, -0.013988853432238102, -0.011351842433214188, -0.002429012209177017, -0.015638748183846474, 0.041317883878946304, 0.010710216127336025, 0.027709776535630226, -0.009857065044343472, 0.009991031140089035, -0.005489073693752289, -0.0022139616776257753, -0.023831818252801895, -0.019009048119187355, -0.026285506784915924, -0.0019019623287022114, 0.0004124737752135843, 0.031164683401584625, 0.009441066533327103, 0.016682272776961327, 0.003966093994677067, -0.004868600517511368, 0.022153718397021294, -0.011013401672244072, -0.0006975918659009039, -0.029021231457591057, -0.0636267215013504, -0.020447418093681335, 0.005771107040345669, -0.030177567154169083, -0.009074422530829906, -0.03607206419110298, -0.013770277611911297, -0.000664100400172174, -0.010371776297688484, 0.0021646060049533844, -0.003583586076274514, 0.020715348422527313, -0.014961868524551392, 0.03810270503163338, 0.007001477759331465, 0.019530808553099632, -0.0045759910717606544, -0.0067864274606108665, -0.030854446813464165, 0.0019090131390839815, 0.00779822189360857, 0.0074104261584579945, 0.008531508967280388, -0.0021134873386472464, 0.019685927778482437, -0.011788994073867798, 0.028795603662729263, -0.01610410399734974, -0.002240402391180396, -0.0076290019787848, -0.00854561012238264, -0.014820852316915989, -0.03595925122499466, 0.010124997235834599, 0.0011774891754612327, 0.01672457717359066, -0.00019136402988806367, 0.004145890008658171, 0.012501128017902374, -0.026454728096723557, -0.013833735138177872, 0.005238769110292196, -0.010315369814634323, 0.02216782048344612, 0.02567913569509983, 0.02969811111688614, 0.02267548069357872, 0.002132877241820097, -0.011048655956983566, 0.009102625772356987, 0.00930710043758154, 0.004628872033208609, 0.00394846685230732, 0.025157373398542404, -0.010378827340900898, -0.008164864964783192, 0.013107499107718468, -0.006941545754671097, -0.010019234381616116, -0.0019865722861140966, 0.044758692383766174, 0.0300083477050066, -0.002941960236057639, -0.034549083560705185, -0.00438561849296093, -0.025143273174762726, -0.01609000191092491, 0.0016639967216178775, 0.005178837105631828, 0.011133266612887383, -0.01716172881424427, -0.022971615195274353, 0.0017186406766995788, -0.021688364446163177, 0.02699059061706066, 0.002845011418685317, -0.026638049632310867, 0.0009289472945965827, 0.018966741859912872, -0.022069109603762627, -0.0029825025703758, -0.006677139550447464, 0.019996164366602898, -0.020334603264927864, -8.912694465834647e-05, -0.0018984369235113263, 0.0006923036999069154, -0.01115441881120205, -0.013135703280568123, -0.0015970137901604176, 0.0292468573898077, -0.018501387909054756, 0.0033368070144206285, 0.022590870037674904, -0.017641184851527214, 0.02686367556452751, -0.03195437788963318, 0.013925395905971527, -0.01390424370765686, -0.018318066373467445, -0.0091096768155694, 0.03246203809976578, 0.013692718930542469, -0.00113518419675529, -0.025100966915488243, -0.009003913961350918, -0.02292931079864502, -0.003613552078604698, -0.021335821598768234, 0.013382482342422009, -0.03037499077618122, -0.008637270890176296, -0.0029102314729243517, -0.0133401770144701, 0.01697840727865696, 0.00017417762137483805, 0.01300173718482256, 0.013389532454311848, 0.028908416628837585, -0.018642403185367584, -0.00042305001989006996, -0.023775409907102585, -0.021575551480054855, -0.034295253455638885, 0.002753350418061018, 0.002210436388850212, -0.0031481971964240074, 0.004801617469638586, 0.0076924595050513744, -0.04396899789571762, -0.019869249314069748, 0.010322419926524162, 0.0061448016203939915, -0.008319983258843422, 0.02549581415951252, 0.04117686673998833, 0.006574902217835188, -0.009751303121447563, -0.019093656912446022, -0.024776628240942955, 0.03863856941461563, -0.02048972249031067, 0.005919174756854773, 0.015201597474515438, -0.001791793038137257, 0.00010796589049277827, -0.021885788068175316, 0.0032662986777722836, -0.001020608120597899, -0.030713431537151337, -0.024015139788389206, 0.027145709842443466, 0.017443763092160225, -0.016738679260015488, -0.030092958360910416, -0.021448636427521706, -0.026045778766274452, -0.01231075543910265, 0.01741555891931057, 0.019079554826021194, 0.004858024418354034, -0.009151982143521309, 0.015878476202487946, 0.022957513108849525, 0.01797962561249733, -0.00864432193338871, -0.020771754905581474, -0.029331468045711517, -0.011612722650170326, -0.04348954185843468, -0.03940005600452423, -0.013389532454311848, 0.006659512408077717, -0.006599580403417349, -0.025975270196795464, -0.013488244265317917, -0.038187313824892044, -0.012867771089076996, -0.021448636427521706, -0.021589651703834534, 0.008446898311376572, 0.07011348754167557, 0.00826357677578926, 0.0038850093260407448, 0.01421448029577732, -0.013163906522095203, 0.0002826943527907133, -0.018007827922701836, -0.001799725228920579, 0.009786557406187057, -0.004780465271323919, 0.021194806322455406, -0.02298571728169918, -0.03877958282828331, 0.010992249473929405, 0.018557794392108917, 0.01854369230568409, 0.042502425611019135, 0.0030142313335090876, -0.02280239574611187, 0.016569457948207855, -0.005492599215358496, -0.010689063929021358, -0.0018825725419446826, -0.010942894034087658, 0.007882831618189812, -0.03892059996724129, -0.010674961842596531, 0.03150312602519989, 0.01541312225162983, -0.01709122024476528, -0.001217150129377842, 0.01721813529729843, -0.00021020296844653785, 0.009067371487617493, -0.025608627125620842, -0.008700728416442871, -0.00439972011372447, -0.030741633847355843, 0.038441143929958344, 0.0028837909922003746, 0.004523109644651413, 0.025608627125620842, 0.0024907069746404886, -0.005510226357728243, -0.000864167814143002, 0.014094616286456585, -0.01690789870917797, -0.028527673333883286, 0.04659190773963928, -0.004635923076421022, -0.021208906546235085, 0.015525935217738152, -0.0027286724653095007, -0.005238769110292196, -0.015455426648259163, -0.0012709127040579915, -0.013304922729730606, -0.022971615195274353, -0.01030831877142191, 0.014122819527983665, -0.04577401280403137, -0.0241138506680727, 0.002189283724874258, -0.02637011744081974, 0.03119288757443428, 0.003983721137046814, -0.022534463554620743, -0.014651631936430931, 0.005813412368297577, 0.001402234542183578, -0.019192369654774666, -0.013840786181390285, -0.006356326397508383, 0.007586697116494179, -0.015765663236379623, 0.010216658003628254, 0.18941359221935272, -0.016146408393979073, 0.005097752436995506, 0.025777846574783325, -0.010569199919700623, 0.015145190060138702, -0.006578427739441395, -0.011732586659491062, -0.006158903241157532, 0.036805350333452225, 0.017457863315939903, 0.009201337583363056, -0.000623117433860898, -0.01362221036106348, -0.013290821574628353, 0.002145216101780534, -0.031474921852350235, -0.02749825082719326, -0.050089120864868164, -0.010548046790063381, -0.01228255219757557, -0.022844700142741203, -0.0004666770400945097, -0.003197553101927042, 0.01400295551866293, 0.006444461643695831, 0.002917282283306122, -0.0001517030905233696, 0.036805350333452225, 0.028287943452596664, -0.03838473930954933, -0.005330430343747139, 0.019432097673416138, 0.01903725042939186, 0.01092879194766283, -0.021152500063180923, 0.015638748183846474, -0.01008269190788269, 0.03240562975406647, 0.00048166007036343217, 0.009603234939277172, -0.041374292224645615, 0.032349225133657455, -0.017711693421006203, -0.003980195615440607, 0.020320503041148186, 0.005883920472115278, -0.02893662080168724, 0.01556824054569006, -0.005933276377618313, -0.007537341210991144, 0.03466189652681351, 0.02969811111688614, 0.020461518317461014, 0.02161785587668419, -0.021138399839401245, 0.0035483320243656635, -0.01046343706548214, -0.016273323446512222, 0.010569199919700623, -0.014750343747437, 0.0031411463860422373, -0.00033227051608264446, -0.005365684162825346, -0.026144491508603096, -0.011796044185757637, -0.003698162268847227, -0.027639267966151237, -0.007946289144456387, -0.022887006402015686, 0.018882133066654205, -0.024409985169768333, -0.014863156713545322, 0.02142043225467205, -0.012317806482315063, -0.031418513506650925, 0.0075514428317546844, 0.036297690123319626, 0.02869689278304577, 0.04041537642478943, 0.002635248936712742, 0.012106280773878098, -0.011499909684062004, -0.019234674051404, -0.016766881570219994, -0.03418244048953056, 0.025072764605283737, -0.007452731020748615, -0.012247297912836075, -0.006331648677587509, -0.03401321917772293, -0.0025171476881951094, -0.00848920363932848, 0.0002674910065252334, -0.012917127460241318, 0.0025576897896826267, 0.0031711123883724213, 0.008122560568153858, 0.003206366440281272, -0.01005448866635561, -0.03954107314348221, 0.054404232650995255, 0.0138478372246027, -0.0194885041564703, -0.03863856941461563, -0.031982582062482834, 0.019333384931087494, 0.00738927349448204, -0.00939171016216278, -0.007939238101243973, 0.002901417901739478, -0.029331468045711517, 0.005016668234020472, 0.0018279285868629813, 0.022774191573262215, 0.03395681455731392, 0.020221790298819542, -0.01349529530853033, 0.0037827722262591124, -0.021349923685193062, 0.017429661005735397, 0.00789693370461464, -0.00042899916297756135, 0.017570676282048225, -0.00908147357404232, -0.01541312225162983, 0.0012153874849900603, -0.011915909126400948, -0.0138478372246027, -0.040499988943338394, 0.018825724720954895, -0.003934365231543779, 0.016555357724428177, -0.014792649075388908, 0.003810975467786193, 0.019065454602241516, 0.006151852197945118, 0.002095860196277499, -0.01734505034983158, 0.0005900666583329439, -0.0248753409832716, -0.0018931487575173378, 0.009285947307944298, -0.008129610680043697, -0.015948984771966934, -0.029049433767795563, 0.026200897991657257, 0.010498691350221634, -0.020447418093681335, -0.019826943054795265, -0.017133524641394615, -0.020249994471669197, -0.012388314120471478, 0.01603359542787075, 0.03395681455731392, -0.010738419368863106, -0.021815279498696327, -0.07829245924949646, 0.01159157045185566, 0.0020130129996687174, -0.040753819048404694, -0.01136594358831644, 0.018374472856521606, 0.014348446391522884, -0.01785271055996418, -0.007480934262275696, -0.18072696030139923, 0.00496378680691123, 0.012571636587381363, -0.03088265098631382, 0.026229100301861763, 0.012924177572131157, -0.0021046737674623728, 0.009300049394369125, 0.0006482360186055303, 0.002963112900033593, 0.020433316007256508, -0.008919304236769676, -0.015483630821108818, 0.024325376376509666, 0.01635793410241604, 0.003380874637514353, -0.012324856594204903, -0.004029551520943642, 0.031982582062482834, 0.014651631936430931, 0.025086864829063416, -0.03288508579134941, -0.0038074501790106297, 0.0014084039721637964, -0.02787899598479271, 0.01577976532280445, -0.041374292224645615, -0.003169349627569318, 0.023281851783394814, -0.009292998351156712, -0.024635612964630127, 0.010040386579930782, -0.0054749720729887486, 0.016188714653253555, -0.0021540296729654074, 0.0009025066974572837, -0.01759888045489788, -0.0002608808281365782, -0.004932058043777943, 0.023267751559615135, 0.013170956633985043, 0.01778220199048519, 0.0022192499600350857, 0.013361329212784767, -0.017330948263406754, 0.03201078251004219, 0.06785722076892853, 0.02387412264943123, 0.007509137503802776, -0.02116660214960575, -0.018966741859912872, -0.03401321917772293, -0.0007125748670659959, 0.019135961309075356, 0.017895014956593513, 0.028767401352524757, 0.009137880057096481, -0.006162428297102451, -0.0014815564500167966, -0.01828986220061779, 0.016400238499045372, -0.018769318237900734, -0.003899110946804285, -0.0169220007956028, -0.007699510082602501, -0.0011369469575583935, -0.03519776090979576, 0.01721813529729843, -0.013051092624664307, 0.017641184851527214, 0.002021826570853591, -0.009039168246090412, 0.012959431856870651, 0.0045513128861784935, 0.009300049394369125, -0.006701817270368338, -0.038610365241765976, 0.03632589429616928, 0.014510615728795528, 0.0026722659822553396, 0.012924177572131157, 0.051273662596940994, 0.004791041370481253, 0.013474143110215664, 0.002957824617624283, -0.006920393090695143, 0.007276460062712431, -0.0004003551439382136, 0.007071985863149166, -0.0012180315097793937, 0.026468828320503235, 0.0005058973329141736, 0.01861420087516308, -0.03218000382184982, 0.005894497036933899, 0.008658424019813538, 0.002464266261085868, 0.009144931100308895, 0.0049391090869903564, -0.01472214050590992, -0.02793540246784687, -0.0017979625845327973, -0.025256086140871048, 0.030995463952422142, 0.04622526466846466, 0.010717267170548439, -0.010075640864670277, 0.007276460062712431, 0.03336454555392265, -0.016188714653253555, -0.0004979651421308517, 0.005323379300534725, 0.017753999680280685, 0.021223008632659912, -0.006733546033501625, 0.009850014001131058, 0.019432097673416138, -0.01816294714808464, -0.0010267776669934392, 0.0033297562040388584, 0.043997202068567276, 0.0019248775206506252, -0.01572335883975029, 0.022830598056316376, -0.02955709397792816, -0.023789511993527412, -0.07919496297836304, 0.005506700836122036, -0.006296394392848015, 0.0161605104804039, -0.022901106625795364, -0.006109547335654497, -0.000552609097212553, 0.022026803344488144, 0.012663297355175018, 0.01603359542787075, -0.0022756564430892467, -0.010562148876488209, -0.021561449393630028, -0.0019830469973385334, 0.01503237709403038, -0.009758353233337402, -0.009405812248587608, 0.0004944396787323058, -0.003479586448520422, 0.026849573478102684, -0.014947767369449139, -0.022999819368124008, -0.006983850616961718, -0.009398761205375195, -0.022760091349482536, 0.0064832414500415325, -0.03852575272321701, 0.018092438578605652, 0.008750084787607193, 0.010555097833275795, 0.030600616708397865, -0.013854888267815113, 0.015864375978708267, -0.010040386579930782, 0.006035513710230589, 0.009871167130768299, -0.03474650904536247, -0.002004199428483844, 0.004022500477731228, -0.03652331605553627, 0.029331468045711517, 0.03274407237768173, 0.020560231059789658, -0.0497506819665432, 0.007650154177099466, -0.006648935843259096, -0.009405812248587608, 0.051330067217350006, -0.009250693954527378, -0.020532026886940002, -0.02054612897336483, 0.018769318237900734, -0.017246339470148087, -0.039428260177373886, 0.03725660592317581, -0.013868989422917366, 0.004706431180238724, 0.021787075325846672, -0.026384219527244568, -0.022576769813895226, -0.024198461323976517, -0.009116727858781815, -0.026708558201789856, 0.013819633983075619, 0.008862897753715515, -0.001019726856611669, -0.03601565584540367, -0.023380564525723457, 0.03457728773355484, -0.0022386396303772926, -0.018882133066654205, 0.012550483457744122, -0.012860720045864582, -0.019065454602241516, -0.0161605104804039, 0.009173134341835976, -0.018078336492180824, -0.030177567154169083, -0.004984939470887184, 0.015088783577084541, 0.008609067648649216, -0.026793166995048523, -0.010040386579930782, 0.02198449894785881, 0.031785156577825546, 0.0045759910717606544, -0.011062758043408394, 0.011034554801881313, 0.0018385048024356365, -0.03387220576405525, -0.0010479300981387496, -0.003220468293875456, 0.019403893500566483, -0.00482277013361454, -0.023408766835927963, 0.040189750492572784, 0.0297545175999403, -0.0014225057093426585, -0.01108391024172306, -0.005154159385710955, -0.03184156492352486, -0.015088783577084541, -0.0805487260222435, 0.04196656122803688, -0.0027656895108520985, 0.013763227500021458, -0.025213779881596565, -0.0014189803041517735, -0.0009624387603253126, -0.008841745555400848, -0.02149094082415104, 0.04002053290605545, -0.012910076417028904, 0.026031676679849625, 0.00579578522592783, -0.0030847396701574326, -0.0064268349669873714, -0.013636312447488308, 0.027455946430563927, 0.004819244612008333, 0.019516706466674805, -0.018952639773488045, -0.016259221360087395, -0.011069809086620808, 0.003528942121192813, 0.025721440091729164, 0.006832257844507694, 0.012811364606022835, -0.015455426648259163, 0.010604453273117542, -0.023465173318982124, -0.02147683873772621, 0.01202872209250927, -0.0169220007956028, 0.004558363929390907, 0.029162246733903885, -0.01002628542482853, -0.02174477092921734, 0.013114550150930882, 0.004925007000565529, 0.0071847992949187756, -0.02048972249031067, 0.00325043429620564, -0.014637530781328678, -0.0028397231362760067, -0.019319284707307816, -0.015215698629617691, -0.01710532233119011, -0.016428442671895027, -0.00021769448358099908, -0.009934624657034874, 0.0045724655501544476, 0.030544210225343704, 0.021758873015642166, -0.03889239951968193, -0.012945330701768398, -0.001116675790399313, -0.02429717220366001, 0.013128652237355709, 0.020151281729340553, 0.009857065044343472, 0.006412732880562544, 0.04379977658390999, 0.012515229173004627, 0.03226461261510849, 0.001670166151598096, 0.020249994471669197, -0.011824247427284718, 0.007202426437288523, -0.006007310003042221, 0.01556824054569006, -0.02048972249031067, -0.003197553101927042, -0.016428442671895027, -0.0034936880692839622, 0.03249024227261543, 0.0021469788625836372, 0.019192369654774666, -0.019178267568349838, -0.007452731020748615, 0.006708868313580751, 0.034802913665771484, 0.022830598056316376, 0.002088809385895729, -0.021646058186888695, 0.009525676257908344, 0.003386162919923663, 0.004942634142935276, -0.01929108053445816, 0.01885392889380455, 0.010604453273117542, 0.0009130829712375998, -0.03838473930954933, -0.00681110518053174, -0.006581953261047602, -0.008129610680043697, 0.027385437861084938, 0.019841045141220093, -0.018459081649780273, 0.025820152834057808, 0.028076419606804848, 0.012924177572131157, 0.017302745953202248, 0.00946221873164177, -0.014334344305098057, -0.03243383392691612, -0.022252431139349937, -0.021194806322455406, -0.01659766212105751, -0.037679653614759445, 0.009779506362974644, -0.005679446272552013, -0.001388132805004716, -0.0034601965453475714, 0.005732327699661255, 0.03158773481845856, -0.01978463865816593, -1.207730656460626e-05, 0.00637395353987813, -0.031221091747283936, -0.03477470949292183, 0.050963424146175385, 0.014115768484771252, 0.002414910588413477, 0.02167426235973835, 0.014242683537304401, 0.0318133607506752, -0.0008399305515922606, 0.014933665283024311, -0.0017345050582662225, 0.01592078246176243, -0.00905327033251524, -0.013608108274638653, 0.005735853221267462, -0.024635612964630127, -0.018148845061659813, -0.0330825112760067, -0.0009783031418919563, -0.003818026278167963, 0.022534463554620743, 0.015540037304162979, 0.09369147568941116, 0.0004737278795801103, -0.027484148740768433, -0.014143971726298332, 0.000901625317055732, 0.02542530559003353, 0.018444981426000595, 0.03875138238072395, 0.006070767529308796, -0.022717785090208054, -0.008073204196989536, -0.012479975819587708, 0.0025136221665889025, -0.007431578356772661, -0.015427223406732082, -0.001806776039302349, -0.0013634549686685205, 0.022760091349482536, 0.001168675604276359, -0.002215724438428879, 0.007509137503802776, 0.0053374809212982655, 0.014750343747437, 0.017147626727819443, -0.01190180703997612, -0.022816497832536697, 0.019220571964979172, -0.01046343706548214, -0.00580988684669137, -0.02149094082415104, 0.006349275819957256, -0.023789511993527412, -0.00836228858679533, -0.01936158910393715, 0.003906161757186055, -0.006712393369525671, -0.014418954961001873, -0.003290976630523801, -0.010223709046840668, 0.0010073878802359104, -0.0042939577251672745, 0.002374368254095316, -0.029416076838970184, -0.02543940767645836, 0.02017948590219021, -0.0005838971701450646, 0.008221271447837353, -0.012479975819587708, -0.029923737049102783], "279ac7d5-3dfe-4ac0-90e5-1e530831058a": [-0.01728079281747341, -0.009609212167561054, -0.02039535529911518, 0.011632959358394146, -0.0023197743576020002, 0.011510960757732391, -0.025820720940828323, -0.00023749429965391755, -0.021428758278489113, -0.024930845946073532, 0.025002609938383102, -0.011711900122463703, 0.0019017484737560153, 0.005152661819010973, -0.01815631613135338, -0.0008373972377739847, 0.018070198595523834, -0.01766831986606121, 0.00010663695866242051, -0.0034608233254402876, -0.034188412129879, 0.010312500409781933, -0.010499087162315845, 0.03094467706978321, -0.016864562407135963, -0.004524725954979658, 0.012759655714035034, -0.028877871111035347, 0.0019914535805583, 0.00281494646333158, -0.007194350473582745, 0.0068570589646697044, -0.045584551990032196, 0.01159707736223936, -0.01699373684823513, -0.0212421715259552, 0.0073988777585327625, -0.001130284508690238, 0.02679671160876751, -0.004036730155348778, 0.028275052085518837, 0.009652270004153252, 0.0032742368057370186, -0.02708376944065094, -0.01653444766998291, 0.02676800638437271, 0.005913361441344023, -0.025619780644774437, 0.0029925627168267965, 0.0012020485009998083, 0.021012526005506516, 0.02551931142807007, -0.02587813138961792, 0.0005476497462950647, 0.03674321621656418, -0.021744519472122192, 0.012314718216657639, 0.015199635177850723, -0.0063726515509188175, -0.004435020964592695, 0.0051813675090670586, -0.03051409125328064, 0.007786403875797987, 0.00762134650722146, -0.009602035395801067, -0.00047633415670134127, -0.0066310022957623005, 0.019634656608104706, -0.020912056788802147, -0.03398747369647026, 0.024227557703852654, 0.016347860917448997, -0.0056765396147966385, 0.005414600949734449, -0.003281413111835718, -0.025002609938383102, -0.025304019451141357, -0.007528053130954504, 0.023983560502529144, 0.022031577304005623, 0.02399791218340397, -0.004029553849250078, -0.02988256886601448, 0.02127087675035, 0.04262787103652954, -0.009831680916249752, 0.01600339263677597, 0.006577179301530123, -0.043001044541597366, 0.002789829159155488, 0.016864562407135963, 0.0170942060649395, 0.01228601299226284, 0.019921712577342987, 0.006354710552841425, 0.0034967053215950727, -0.016491388902068138, 0.02361038699746132, -0.011496607214212418, -0.026997651904821396, -0.006440827157348394, -0.015300104394555092, -0.023840030655264854, -0.00033033909858204424, -0.015974687412381172, -0.004539079032838345, 0.004431432578712702, 0.01713726483285427, -0.004287904594093561, 0.008819807320833206, -0.03395877033472061, 0.009401096031069756, -0.014969989657402039, -0.008396399207413197, -0.006544885225594044, -0.007484994828701019, 0.0119487214833498, -0.013986821286380291, -0.023380741477012634, -0.017783142626285553, 0.00993215013295412, 0.02003653533756733, 0.0038429670967161655, -0.023840030655264854, 0.012766832485795021, 0.0056657749228179455, 0.013606471940875053, -0.01667797565460205, 0.020452765747904778, -0.023208508267998695, 0.029968684539198875, 0.004801017697900534, 0.007169232703745365, 0.001432590652257204, 0.0012899595312774181, 0.04050365462899208, -0.020668059587478638, -0.00838922243565321, -0.029050104320049286, -0.005353601183742285, 0.020438414067029953, 0.037403445690870285, -0.009200156666338444, 0.004191022831946611, -0.029825156554579735, 0.016965031623840332, 0.0034105884842574596, -0.00789405032992363, 0.003268854459747672, 0.011546842753887177, 0.01600339263677597, 0.000358147663064301, -0.019390657544136047, -0.03688674420118332, 0.02573460340499878, 0.03051409125328064, -0.003455440979450941, 0.004115670919418335, -0.011941544711589813, -0.01716597005724907, 0.011195198632776737, 0.045297496020793915, 0.003283207304775715, 0.010786143131554127, 0.019591597840189934, 0.031002087518572807, 0.00423049321398139, 0.002877740189433098, -0.013254827819764614, -0.020983820781111717, -0.018084552139043808, -0.00011095401714555919, -0.010111561045050621, 0.015314457006752491, 0.011654488742351532, 0.02018006332218647, 0.015414927154779434, -0.007635699585080147, -0.007850991562008858, -0.022246869280934334, -0.03444676473736763, 0.0041228472255170345, 0.02269180677831173, 0.03479123115539551, -0.0024381850380450487, 0.004435020964592695, 0.013979645445942879, -0.017108559608459473, 0.004793841391801834, -0.011216728016734123, 0.005619128234684467, 0.014840814284980297, -0.011489431373775005, -0.0170655008405447, -0.5993736982345581, -0.01964900828897953, 0.009422625415027142, 0.00902792252600193, -0.009623564779758453, 0.021543581038713455, -0.009508742019534111, -0.011195198632776737, -0.03499217331409454, 0.04492432251572609, -0.0044960202649235725, 0.028562108054757118, -0.009881915524601936, -0.019778184592723846, 0.0022336572874337435, 0.0018533077090978622, -0.006089183036237955, 0.02127087675035, 0.016448330134153366, 0.007528053130954504, -0.01306106522679329, -0.005522246938198805, 0.013642353937029839, -0.008145224303007126, 0.00028279537218622863, -0.009846033528447151, 0.03705897927284241, -0.025160491466522217, 0.003123532049357891, 0.01467575691640377, -0.03777661919593811, -0.0021708637941628695, 0.01964900828897953, -0.014855166897177696, 0.05603340268135071, -0.0047543710097670555, -0.019778184592723846, 0.032121606171131134, 0.022490866482257843, 0.029337160289287567, -0.021974164992570877, 0.002667830092832446, 0.029710333794355392, 0.006297299172729254, -0.010656967759132385, -0.011668841354548931, 0.02559107542037964, 0.004632372409105301, 0.007108233403414488, -0.03536534309387207, 0.005385895259678364, -0.008697807788848877, -0.01943371631205082, -0.007764874957501888, 0.008611691184341908, -0.023452505469322205, 0.04262787103652954, 0.006828353274613619, 0.018572546541690826, -0.01829984411597252, -0.012974947690963745, -0.0016066186362877488, -0.010312500409781933, -0.007772051263600588, -0.03275313228368759, 0.01202048547565937, -0.00232336251065135, -0.0006983543280512094, 0.006121477112174034, 0.0006566414376720786, 0.020481472834944725, 0.018457723781466484, -0.007093880325555801, -0.009271920658648014, -0.005156250204890966, 0.026050366461277008, -0.003882437478750944, 0.00562989292666316, -0.0060712420381605625, 0.019074896350502968, 0.015142223797738552, -0.0012451070360839367, -0.009745563380420208, -0.016735386103391647, 0.008295929059386253, 0.012192719615995884, -0.014309760183095932, 0.010369911789894104, -0.00952309463173151, -0.006232711486518383, 0.024442849680781364, -0.006953940726816654, -0.02414144016802311, -0.022045928984880447, 0.013125652447342873, 0.006548473611474037, -0.00555812893435359, 0.012896007858216763, 0.005206484813243151, -7.103523967089131e-05, -0.003010503714904189, -0.02491649240255356, 0.008417927660048008, -0.0007858168100938201, 0.04521137848496437, 0.01798408105969429, -0.02672494761645794, -0.02566283941268921, 0.04374739155173302, -0.012350600212812424, 0.007886873558163643, -0.01716597005724907, -0.009580506011843681, -0.016276096925139427, -0.012336247600615025, -0.02602165937423706, 0.0185869000852108, 0.008209812454879284, 0.00573395099490881, 0.010104384273290634, 0.01426670141518116, -0.011554018594324589, 0.004402726888656616, -0.0034518528264015913, 0.016692327335476875, 0.035738516598939896, 0.02853340283036232, -0.02580636739730835, 0.028188936412334442, -0.008927453309297562, -0.009515918791294098, -0.024084029719233513, 0.028260700404644012, -0.010936847887933254, 0.015974687412381172, -0.015544102527201176, 0.019979123026132584, 0.0021134524140506983, 0.024127088487148285, -0.02800234965980053, -0.01883089728653431, 0.005188543815165758, -0.009085333906114101, -0.01263765711337328, -0.021715814247727394, -0.030313152819871902, -0.05201461538672447, 0.00963074155151844, -0.002556595718488097, 0.012013308703899384, -0.0079658143222332, 0.008690631948411465, -0.010133089497685432, 0.01689326763153076, -0.018185021355748177, 0.004998369142413139, 0.0031701787374913692, -0.06275052577257156, 0.010735908523201942, -0.012766832485795021, -0.021285230293869972, 0.03734603524208069, -0.006186064798384905, -0.005873891059309244, 0.012824242934584618, -0.001980688888579607, -0.005507894326001406, 0.005529423244297504, 0.002791623119264841, -0.015314457006752491, -0.018558194860816002, -0.012436716817319393, -0.01403705682605505, 0.0025888895615935326, 0.0041228472255170345, 0.018572546541690826, -0.027629176154732704, -0.016017746180295944, 0.006559237837791443, 0.016663622111082077, 0.011001435108482838, 0.02498825639486313, -0.006336769554764032, 0.01774008385837078, 0.006021007429808378, 0.02322285994887352, 0.007592640817165375, 0.03318371623754501, -0.01667797565460205, 0.03777661919593811, -0.011066023260354996, 0.025835072621703148, -0.019376305863261223, 0.0005911567131988704, -0.04762265086174011, 0.04472338408231735, -0.00922168605029583, -0.0003751916519831866, -0.00945133063942194, 0.025935543701052666, -0.00038618053076788783, 0.019318893551826477, 0.016907619312405586, 0.01926148310303688, -0.02418449893593788, -0.01235777698457241, 0.016304802149534225, -0.035738516598939896, 0.0303418580442667, 0.010276618413627148, 0.018070198595523834, 0.014403053559362888, -0.008740866556763649, 0.0034016179852187634, 0.006846294272691011, 0.009695328772068024, -0.028231993317604065, 0.020151358097791672, -0.022892745211720467, 0.005777009297162294, -0.0020721880719065666, -0.026466596871614456, 0.02903575263917446, -0.0011096523376181722, -0.02127087675035, -0.01306106522679329, 0.01844337210059166, 0.024198852479457855, 0.012278836220502853, -0.002705506281927228, 0.013764352537691593, 0.03401618078351021, 0.014395876787602901, 0.0037568502593785524, 0.0038932019378989935, -0.012953418307006359, 0.009157097898423672, 0.001573427696712315, 0.029853861778974533, -0.009544624015688896, -0.014259525574743748, -0.0024561260361224413, 0.03367171064019203, -0.015142223797738552, -0.014316936023533344, -0.000556620245333761, 0.04429279640316963, 0.029939979314804077, -0.009013569913804531, 0.019735125824809074, -0.02028053253889084, 0.011647311970591545, -0.008238517679274082, -0.028863517567515373, 0.022347338497638702, -0.04374739155173302, -0.009271920658648014, 0.008432281203567982, 0.03378653526306152, 0.018500782549381256, 0.01104449387639761, -0.012329070828855038, 0.023352036252617836, -0.0037712031044065952, 0.01993606425821781, 0.010018267668783665, -0.04389091953635216, -0.01070720236748457, 0.00823134183883667, -0.029825156554579735, 0.002829299308359623, -0.01202048547565937, -0.0013599295634776354, -0.02032359130680561, -0.007050822023302317, 0.012070720084011555, 0.02570589818060398, 0.0007795374840497971, 0.00747781852260232, 0.00028997179470025003, -0.028547756373882294, -0.04417797550559044, 0.031059499830007553, 0.019979123026132584, 0.014826461672782898, -0.019835595041513443, -0.0029853861778974533, 0.028935281559824944, -0.016577504575252533, 0.018357254564762115, -5.281388803268783e-05, 0.0013742824085056782, -0.014316936023533344, -0.006810412276536226, 0.01153966598212719, 0.018041493371129036, 0.01076461374759674, 0.002628359943628311, 0.01960594952106476, -0.01699373684823513, -0.009264744818210602, 0.016333507373929024, -0.024772964417934418, 0.022103341296315193, 0.023768266662955284, -0.008382045663893223, -0.004790253005921841, -0.01138178538531065, -0.029825156554579735, -0.021328289061784744, 0.020825939252972603, 0.012817067094147205, -0.007413230836391449, 0.010032620280981064, 0.005895419977605343, 0.013477296568453312, -0.01656315289437771, -0.020739823579788208, 0.019161012023687363, -0.010240736417472363, 0.003270648419857025, -0.03051409125328064, -0.00513472082093358, 0.026983298361301422, 0.011984603479504585, 0.04882828891277313, 0.024414144456386566, 0.00018389549222774804, -0.024772964417934418, 0.00831745844334364, -0.037862736731767654, -0.030887264758348465, 0.01841466687619686, -0.016878914088010788, -0.02206028252840042, 0.004384785890579224, 0.02049582451581955, 0.010441675782203674, 0.028059760108590126, -0.0021583051420748234, 0.03312630578875542, -0.00762852281332016, 0.002287480514496565, -0.008016048930585384, 0.01362800132483244, -0.01453222893178463, -0.0002614904078654945, 0.03252348676323891, 0.006376239471137524, -0.005210073199123144, 0.025892484933137894, 0.015673277899622917, 0.004284316208213568, -0.01014026626944542, -0.0119630740955472, 0.03295407071709633, 0.017409969121217728, 0.021658403798937798, -0.002213922329246998, 0.03461899980902672, 0.009795798920094967, -0.0077002872712910175, 0.011625782586634159, 0.009049451909959316, -0.01334812119603157, 0.006670472212135792, 0.01815631613135338, -0.0017196470871567726, 0.010951200500130653, -0.012601775117218494, 0.009652270004153252, 0.022490866482257843, -0.00373532110825181, -0.012644832953810692, 0.02527531422674656, 0.0001309694634983316, -0.01525704562664032, -0.005611951928585768, 0.023710856214165688, 0.0030302389059215784, -0.0024058911949396133, -0.023481210693717003, -0.023696502670645714, -0.0059348903596401215, -0.010822025127708912, -0.02148616872727871, 0.013247651048004627, -0.012967771850526333, -0.020294886082410812, -0.007337878458201885, -0.01495563704520464, 0.0037532621063292027, -0.023739561438560486, 0.032236430794000626, -0.0018730427836999297, -0.005680128000676632, -0.027557412162423134, 0.034963466227054596, 0.001953777391463518, 0.007886873558163643, -0.0002154044050257653, -0.019663361832499504, -0.0050557805225253105, 0.01993606425821781, -0.017941022291779518, -0.02556237019598484, 0.009508742019534111, -0.018185021355748177, -0.007585464511066675, -0.013477296568453312, 0.01600339263677597, -0.003419558983296156, -0.020825939252972603, -0.015271399170160294, -0.01237212959676981, -0.00381426140666008, -0.010082854889333248, 0.008439457044005394, 0.03662839159369469, 0.006552061531692743, 0.029710333794355392, 0.02452896721661091, 0.010204854421317577, -0.012630480341613293, -0.0008486104197800159, -0.02216075174510479, -0.020065240561962128, 0.0334133617579937, -0.023596033453941345, 0.010843554511666298, 0.006953940726816654, 0.015213987790048122, -0.00013758521527051926, -0.011970250867307186, 0.004269963596016169, 0.0020668059587478638, -0.003241942962631583, -0.0045175496488809586, 0.01827113889157772, 2.301496897416655e-05, 0.014295407570898533, 0.014668580144643784, 0.013455767184495926, -0.0008912203484214842, -0.003085856093093753, -0.0047974297776818275, 0.025447547435760498, 0.0011222109897062182, -0.009422625415027142, 0.015544102527201176, -0.00854710303246975, -0.031805846840143204, -0.0046287840232253075, 0.008403575047850609, -0.0022928628604859114, 0.0026875652838498354, 0.010391440242528915, -0.04070459306240082, -0.04251305013895035, 0.011066023260354996, -0.010154618881642818, 0.007743345573544502, -0.00521366111934185, -0.028590815141797066, -0.01967771351337433, 0.013714117929339409, -0.020868998020887375, -0.025921190157532692, 0.005705245304852724, -0.022031577304005623, -0.031805846840143204, -0.0013904293300583959, 0.028404228389263153, 0.04228340461850166, 0.00646235654130578, -0.0021206289529800415, -0.0076572285033762455, -0.019634656608104706, -0.024485908448696136, -0.014453288167715073, -0.015989039093255997, -0.020524529740214348, 0.03975730761885643, 0.012903183698654175, 0.013412709347903728, -0.0025888895615935326, 0.016907619312405586, 0.0027593292761594057, 0.007104645017534494, -0.016979385167360306, -0.0039757308550179005, -0.026681888848543167, -0.006031772121787071, 0.013211769051849842, 0.018213726580142975, 0.012551539577543736, 0.01769702509045601, 0.012221424840390682, -0.008611691184341908, 0.012809890322387218, -0.009329332038760185, -0.016936326399445534, -0.025146137923002243, -0.05267484486103058, -0.0292079858481884, 0.016261743381619453, -0.01607515662908554, -0.014998695813119411, -0.03140396624803543, -0.020452765747904778, 0.004449373576790094, -0.018644310534000397, 0.011546842753887177, -0.011001435108482838, 0.025016963481903076, -0.0119630740955472, 0.03685803711414337, 0.009200156666338444, 0.022419102489948273, 0.0015258840285241604, -0.018256785348057747, -0.025361429899930954, 0.0007732580997981131, -0.00025341694708913565, 0.0031037970911711454, 0.014840814284980297, -0.00579853868111968, 0.007406054530292749, -0.014230819419026375, 0.016548799350857735, -0.01979253627359867, -0.00881263054907322, -0.012171190232038498, -0.016118215397000313, -0.008568632416427135, -0.027198590338230133, -0.01168319396674633, 0.0071512917056679726, -0.0031163557432591915, -4.748764695250429e-05, 0.018400313332676888, 0.022648748010396957, -0.040905531495809555, -0.022921450436115265, -0.005005545448511839, -0.002547625219449401, 0.043489038944244385, 0.024930845946073532, 0.02884916588664055, 0.0038501436356455088, -0.0033190893009305, 0.0008652058313600719, 0.009709681384265423, 0.005938478745520115, 0.008611691184341908, 0.025217901915311813, 0.017653966322541237, -0.01967771351337433, -0.0054289535619318485, 0.012207072228193283, 0.005594010930508375, -0.003392647486180067, -0.014589640311896801, 0.051842380315065384, 0.03915448859333992, 0.010771790519356728, -0.025619780644774437, -0.004768724087625742, -0.03249477967619896, -0.0006494650151580572, 0.007764874957501888, 0.02332332916557789, 0.021902401000261307, -0.033155009150505066, -0.01829984411597252, 0.0008391913725063205, -0.019103601574897766, 0.019031837582588196, -0.01040579378604889, -0.01054932177066803, 0.009616388007998466, 0.018601253628730774, -0.01788361184298992, 0.010656967759132385, -0.008066284470260143, 0.026423538103699684, -0.03232254832983017, 0.007079527713358402, 0.0016792797250673175, 0.009659446775913239, -0.01412317343056202, -0.003907554782927036, -0.00340341217815876, 0.0333559513092041, -0.0063618868589401245, 0.0017008089926093817, 0.004395550582557917, -0.024902140721678734, 0.016936326399445534, -0.02491649240255356, 0.010276618413627148, -0.019017484039068222, -0.017725730314850807, -0.008102166466414928, 0.01759655587375164, 0.019060542806982994, 0.0065987082198262215, -0.027700940147042274, -0.012967771850526333, -0.0261651873588562, -0.0026032424066215754, -0.019993476569652557, 0.005985125433653593, -0.027700940147042274, -0.008202635683119297, -0.014130350202322006, -0.013599295169115067, 0.00681400066241622, -0.002716270973905921, 0.020940762013196945, 0.012652009725570679, 0.026251304894685745, -0.020165709778666496, -0.013986821286380291, -0.027499999850988388, -0.01138178538531065, -0.03174843639135361, 0.009587682783603668, -0.004600078333169222, -0.004309433978050947, 0.015816805884242058, 0.008633220568299294, -0.05571763962507248, -0.0106210857629776, 0.02729906141757965, -0.0020955114159733057, -0.009314979426562786, 0.023380741477012634, 0.048311587423086166, 0.01629044860601425, -0.018960073590278625, -0.012544363737106323, -0.022490866482257843, 0.02945198304951191, -0.0063511221669614315, 0.005224425811320543, 0.01502740103751421, -0.0035110581666231155, 0.016807150095701218, -0.017610907554626465, 0.01153966598212719, -0.00964509416371584, -0.023064980283379555, -0.0325808972120285, 0.019074896350502968, 0.01118802186101675, -0.01343423780053854, -0.028332464396953583, -0.027729645371437073, -0.02162969671189785, -0.02213204652070999, 0.02109864354133606, 0.013032359071075916, -0.007528053130954504, -0.001096196472644806, 0.00907815806567669, 0.013563413172960281, 0.0144102293998003, -0.001833572518080473, -0.029294103384017944, -0.01784055307507515, -0.017639614641666412, -0.02783011458814144, -0.03367171064019203, -0.009049451909959316, 0.022189456969499588, 0.003886025631800294, -0.03972860053181648, -0.009917797520756721, -0.017754437401890755, -0.014015527442097664, -0.023280272260308266, -0.030600208789110184, 0.030284447595477104, 0.06745824962854385, 0.024772964417934418, -0.006160947494208813, 0.017711378633975983, -0.014295407570898533, 0.00032944203121587634, -0.024859081953763962, 0.01610386185348034, 0.02435673214495182, -0.005859537981450558, 0.02510307915508747, -0.01926148310303688, -0.042570460587739944, 0.0014307965757325292, 0.019591597840189934, 0.011776487343013287, 0.023179801180958748, 0.012400834821164608, -0.013398355804383755, -0.0066417669877409935, -0.0004276691470295191, -0.0032437369227409363, 0.001609309809282422, -0.0024525378830730915, -0.0014846196863800287, -0.05815761908888817, 0.0019376304699108005, 0.027456941083073616, 0.027112474665045738, 0.006433650851249695, 0.0006853470695205033, 0.011159316636621952, -0.002508155070245266, -0.004603666719049215, -0.03126043826341629, -0.010664144530892372, -0.0005059368559159338, -0.02814587764441967, 0.051239561289548874, 0.0015716336201876402, 0.02092640846967697, 0.040015656501054764, -0.005088074132800102, -0.0003485043707769364, -0.008661925792694092, -0.0018371607875451446, -0.018716074526309967, -0.021572286263108253, 0.03691544756293297, -0.004793841391801834, -0.007323525846004486, -0.004826135002076626, 0.0003967208613175899, -0.003627674886956811, -0.016577504575252533, -0.003125326242297888, -0.00963074155151844, -0.028949635103344917, 0.007772051263600588, 0.022777922451496124, -0.05043580383062363, -0.016405271366238594, 0.023108037188649178, -0.022878393530845642, 0.02322285994887352, -0.00895615853369236, -0.03324112668633461, -0.011180846020579338, -0.011604254133999348, -0.002545831259340048, -0.017295146360993385, -0.020912056788802147, 0.005540187936276197, -0.01104449387639761, -0.03111691027879715, 0.005827244371175766, 0.18406054377555847, -0.034848641604185104, 0.0020111887715756893, 0.013620824553072453, -0.00646235654130578, 0.015816805884242058, -0.008310281671583652, 0.0007145012496039271, -0.013807411305606365, 0.03160490468144417, 0.012594598345458508, 0.006986234337091446, 0.003432117635384202, -0.01153966598212719, 0.005152661819010973, 0.029509395360946655, -0.03249477967619896, -0.023811325430870056, -0.0417092889547348, -0.0038573199417442083, -0.014632698148488998, -0.014467640779912472, -0.002472273074090481, 0.0025619780644774437, 0.027428235858678818, 0.023883089423179626, -0.00579853868111968, -0.007158468011766672, 0.02843293361365795, 0.014883873052895069, -0.030772441998124123, 0.004693371709436178, 0.019763831049203873, 0.011080375872552395, 0.006968293339014053, -0.012946242466568947, 0.023552974686026573, -0.011496607214212418, 0.03398747369647026, 0.008353340439498425, 0.015199635177850723, -0.016347860917448997, 0.03217902034521103, -0.015974687412381172, -0.031203027814626694, 0.005131132435053587, 0.016764091327786446, -0.023251565173268318, 0.01111625786870718, -0.00696470495313406, -0.017610907554626465, 0.03972860053181648, 0.013240475207567215, 0.008080637082457542, 0.01568763144314289, -0.02793058566749096, 0.005253131501376629, -0.0059815370477736, -0.021572286263108253, 0.0063295927830040455, -0.02467249520123005, 0.006720707286149263, -0.0046395487152040005, -0.006286534480750561, -0.02353862300515175, 0.01095837727189064, -0.006534120533615351, -0.036169104278087616, -0.0027754763141274452, -0.01614692062139511, 0.0146183455362916, -0.02573460340499878, -0.020725470036268234, 0.01453222893178463, -0.03404488414525986, -0.020768528804183006, -0.004679018631577492, 0.02312239073216915, 0.0303418580442667, 0.023667797446250916, -0.00787969771772623, 0.010039796121418476, 0.00136979715898633, 0.0019591597374528646, -0.01028379425406456, -0.012537186965346336, 0.027887526899576187, 0.0003451404336374253, -0.014998695813119411, -0.010090031661093235, -0.02665318362414837, -0.0014307965757325292, -0.005963596049696207, 0.0062040057964622974, -0.0185869000852108, -0.015400574542582035, 0.01210660208016634, 0.019232776015996933, -0.004008024465292692, -0.017854906618595123, -0.03688674420118332, 0.0493449904024601, 0.008432281203567982, -0.00654129683971405, -0.035307932645082474, -0.016448330134153366, 0.0010585203999653459, 0.013900704681873322, 0.00556530524045229, -0.006343945860862732, -0.00614300649613142, -0.02640918642282486, 0.009056628681719303, -0.006663295906037092, 0.019247129559516907, 0.029997391626238823, 0.02988256886601448, -0.01585986465215683, -0.01639091782271862, -0.018199373036623, 0.004467314574867487, 0.002531478414312005, 0.008216988295316696, 0.008360517211258411, -0.01077896635979414, -0.022433456033468246, -0.011223903857171535, -0.02594989538192749, -0.00920733343809843, -0.03312630578875542, 0.03823591023683548, 0.008913100697100163, 0.01752479188144207, 0.007258938159793615, -0.0036348511930555105, 0.01791231706738472, 0.009035099297761917, -0.00031060396577231586, -0.0039649661630392075, 0.0065879435278475285, -0.016835855320096016, 0.001064799726009369, 0.01369976531714201, -0.0010405792854726315, 0.008898747153580189, -0.015587161295115948, 0.028949635103344917, 0.008704984560608864, -0.01812760904431343, -0.017998434603214264, -0.006021007429808378, -0.012860124930739403, -0.013800235465168953, 0.008762395940721035, 0.031145615503191948, -0.01012591365724802, -0.011991780251264572, -0.06102818250656128, 0.010412969626486301, 0.0022515985183417797, -0.037546973675489426, -0.005235190503299236, 0.024930845946073532, 0.014560934156179428, -0.01822808012366295, -0.011360256001353264, -0.185093954205513, 0.016835855320096016, 0.014094468206167221, -0.02821764163672924, 0.0261651873588562, 0.015285751782357693, 0.0016012362902984023, 0.008590161800384521, 0.0026552714407444, -0.002140364143997431, 0.025304019451141357, -0.014245172031223774, -0.019247129559516907, 0.0032975601498037577, 0.011022964492440224, -0.006968293339014053, -0.006265005096793175, 0.0038573199417442083, 0.031490083783864975, 0.018558194860816002, 0.02208898775279522, -0.03476252779364586, -0.005192132201045752, -0.004930193070322275, -0.01926148310303688, 0.020625000819563866, -0.04041753709316254, -0.012695067562162876, 0.009300626814365387, -0.01518528163433075, -0.032839249819517136, 0.010542144998908043, -0.0011778281768783927, 0.007097468711435795, 0.003539763856679201, 0.005995890125632286, -0.010233559645712376, -0.00496607506647706, -0.02206028252840042, 0.03295407071709633, 0.010456028394401073, 0.041221294552087784, 0.00507013313472271, 0.012537186965346336, -0.0238974429666996, 0.038637787103652954, 0.05290449038147926, 0.021600991487503052, 0.014783402904868126, -0.018472077324986458, -0.004951722454279661, -0.02032359130680561, -0.003292177803814411, 0.012917536310851574, 0.010728731751441956, 0.05204331874847412, 0.024701200425624847, -0.00471848901361227, 0.007406054530292749, -0.01728079281747341, 0.02669624239206314, -0.018012788146734238, -0.00257094856351614, -0.013513178564608097, -0.01467575691640377, -0.00937956664711237, -0.03266701474785805, 0.010929671116173267, -0.016376566141843796, 0.01603209786117077, -0.005604775622487068, 0.010025443509221077, -0.00103788822889328, -0.0033137069549411535, 0.01495563704520464, -0.006498238537460566, -0.03760438412427902, 0.027284707874059677, 0.017252087593078613, -0.0016146920388564467, 0.014898225665092468, 0.0477948859333992, -0.0002336818288313225, 0.00993215013295412, 0.0022533924784511328, -0.0024184498470276594, 8.85838016984053e-05, 0.005586834624409676, 0.004147964529693127, -0.004714901093393564, 0.01851513609290123, 0.007050822023302317, 0.0079801669344306, -0.0333559513092041, 0.0020614236127585173, 0.016060803085565567, 0.013828940689563751, 0.00887004192918539, 0.0024489497300237417, -0.01667797565460205, -0.014352818951010704, -0.0037424974143505096, -0.013384003192186356, 0.025390135124325752, 0.0280741136521101, 0.02481602318584919, -0.02269180677831173, -0.0005871199537068605, 0.03533663973212242, -0.01926148310303688, 0.0020955114159733057, 0.004137199837714434, 0.015845511108636856, 0.01798408105969429, -0.005899008363485336, 0.025117432698607445, 0.018027139827609062, -0.01334812119603157, 0.015730688348412514, 0.00103788822889328, 0.0424843430519104, -0.005202896893024445, -0.010190500877797604, 0.025548016652464867, -0.03499217331409454, -0.03502087667584419, -0.08858559280633926, -0.027026357129216194, 0.011826722882688046, 0.01624738983809948, -0.0064767091535031796, 0.00025610809097997844, -0.0029046516865491867, 0.017998434603214264, 0.011223903857171535, 0.02375391498208046, -0.009989561513066292, -0.007850991562008858, -0.024399790912866592, -0.012271659448742867, 0.0010307118063792586, -0.0013141799718141556, -0.0024489497300237417, -0.008102166466414928, -0.003285001264885068, 0.04162317514419556, -0.017223382368683815, -0.03318371623754501, -0.011604254133999348, 0.004976839758455753, -0.03401618078351021, -0.007022116333246231, -0.045153968036174774, 0.01209224946796894, 0.0093078026548028, 0.007736169267445803, 0.031030792742967606, -0.00907815806567669, 0.022318633273243904, -0.009408272802829742, -0.004126435145735741, 0.0028597991913557053, -0.025921190157532692, -0.002779064467176795, 0.007011351641267538, -0.03154749423265457, 0.04374739155173302, 0.02170146070420742, 0.020768528804183006, -0.04449373856186867, -0.0020201592706143856, -0.005992301739752293, -0.0017546321032568812, 0.04871346428990364, -0.003048179903998971, -0.013800235465168953, 0.00023345756926573813, 0.008145224303007126, -0.012120955623686314, -0.03427452966570854, 0.0538804791867733, -0.0023682150058448315, 0.01894572004675865, 0.030083507299423218, -0.02524660713970661, -0.016620563343167305, -0.0224047489464283, -0.0064767091535031796, -0.02035229653120041, 0.007187173701822758, 0.017567850649356842, 0.00865474995225668, -0.03450417518615723, -0.019204070791602135, 0.032408665865659714, -0.0003702578542288393, -0.010161795653402805, 0.02092640846967697, -0.014740345068275928, -0.007728992961347103, -0.016936326399445534, 0.006950352340936661, -0.00696470495313406, -0.025677192956209183, 0.0003310118627268821, 0.004313021898269653, 0.005662187002599239, -0.038178496062755585, -0.009063804522156715, 0.0011509166797623038, 0.014855166897177696, 0.012149660848081112, -0.009286273270845413, -0.006534120533615351, -0.015457985922694206, -0.04463726654648781, -0.0009293450275436044, -0.009881915524601936, 0.006853471044450998, 0.014596816152334213, -0.018256785348057747, 0.03318371623754501, 0.026882829144597054, 0.007987343706190586, 0.000880007166415453, 0.004546255338937044, -0.026366127654910088, -0.00040322449058294296, -0.07601252943277359, 0.0394989550113678, 0.00523877888917923, 0.016792798414826393, -0.010082854889333248, 0.002386156003922224, 0.007614170201122761, 0.0014532228233292699, 0.0007817801088094711, 0.035910751670598984, -0.012128131464123726, 0.0159316286444664, 0.0013958115596324205, -0.0079801669344306, -0.004851252771914005, -0.02725600264966488, 0.0146183455362916, 0.005332072265446186, 0.025720249861478806, -0.010592379607260227, -0.0018057639244943857, -0.0002475861110724509, -0.009314979426562786, 0.02754305861890316, 0.02170146070420742, 0.021055584773421288, -0.00622194679453969, 0.0020829527638852596, -0.02020876854658127, -0.03146137669682503, 0.02973904088139534, -0.00472566531971097, -0.001310591702349484, 0.024012265726923943, -0.007513700518757105, -0.02131393551826477, 0.017122913151979446, 0.013154358603060246, 0.008783925324678421, -0.006706354673951864, -0.004036730155348778, -0.021112995222210884, -0.002581713255494833, -0.02450026199221611, -0.015314457006752491, -0.01880219206213951, -0.021672755479812622, 0.0069934106431901455, 0.004915840458124876, 0.013462943956255913, 0.014855166897177696, 0.010506263002753258, -0.036025576293468475, -0.02262004278600216, -0.0003816952812485397, -0.02020876854658127, 0.024170147255063057, 0.003961377777159214, 0.013441414572298527, 0.015357515774667263, 0.047909706830978394, 0.0013859440805390477, 0.021041231229901314, -0.014051409438252449, 0.01575939543545246, -0.018084552139043808, -0.01047755777835846, -0.02551931142807007, 0.020337942987680435, -0.01841466687619686, -0.0059564197435975075, -0.02155793271958828, -0.014568110927939415, 0.034676410257816315, 0.0019914535805583, 0.009709681384265423, -0.020309237763285637, 0.010929671116173267, -0.0016999118961393833, 0.016189979389309883, 0.01738126389682293, -0.015845511108636856, -0.011589900590479374, 0.014374347403645515, 0.010190500877797604, 0.009257568046450615, -0.024586377665400505, 0.018027139827609062, 0.00978862214833498, 0.0016263537108898163, -0.029394572600722313, -0.012336247600615025, -0.015730688348412514, -0.012336247600615025, 0.02247651293873787, 0.021974164992570877, -0.014115996658802032, 0.011432019993662834, 0.026351774111390114, -0.0018838074756786227, 0.025375783443450928, 0.0015635602176189423, -0.02913622185587883, -0.024471554905176163, -0.02638048119843006, -0.016864562407135963, -0.020050887018442154, -0.024859081953763962, 0.013211769051849842, -0.011941544711589813, 0.011353079229593277, -0.012824242934584618, 0.0030356210190802813, 0.03548016771674156, -0.008733689785003662, 0.002953092334792018, -0.0026140070986002684, -0.024930845946073532, -0.038465552031993866, 0.034705113619565964, 0.006433650851249695, -0.00010220776312053204, 0.008066284470260143, -0.00030320329824462533, 0.03536534309387207, 0.00015518984582740813, 0.017510438337922096, -0.008999217301607132, 0.020007828250527382, -0.011884133331477642, -0.008138048462569714, -1.1843878382933326e-05, -0.033011481165885925, -0.025117432698607445, -0.022806629538536072, 0.0023664210457354784, -0.006379827857017517, 0.008783925324678421, 0.012293188832700253, 0.09116910398006439, 0.01131002139300108, -0.019548539072275162, -0.018185021355748177, 0.019663361832499504, 0.023409446701407433, 0.016347860917448997, 0.03131784871220589, 0.004072612151503563, -0.04736430197954178, 0.012558716349303722, -0.007362995762377977, 0.0017115735681727529, -0.02152922749519348, -0.0159316286444664, 0.008913100697100163, 0.017323851585388184, 0.011410490609705448, 0.012264483608305454, -0.017725730314850807, 0.003442882327362895, 0.0018891897052526474, 0.00373890926130116, 0.008855689316987991, -0.013836117461323738, -0.019979123026132584, 0.009487212635576725, 0.0008163165766745806, -0.011331549845635891, -0.025677192956209183, 0.00952309463173151, -0.014288230799138546, -0.018357254564762115, -0.007944284938275814, -0.0032150312326848507, -0.017008090391755104, -0.008468163199722767, -0.016649268567562103, 0.00028615930932573974, 0.0039003784768283367, -0.008166753686964512, 0.004732842091470957, -0.02474425919353962, -0.021055584773421288, 0.026064718142151833, -0.011101905256509781, 0.001002006116323173, -0.011740605346858501, -0.03321242332458496], "ffbb83c4-370e-4692-826e-a86bbef48dc1": [-0.004236720502376556, -0.020394649356603622, -0.004448730498552322, -0.011962913908064365, -0.035005949437618256, 0.05800032243132591, -0.02994551695883274, 0.005477499216794968, -0.01766980066895485, -0.021034153178334236, 0.008515148423612118, -0.01184474490582943, 0.005675606895238161, 0.00882099848240614, -0.003015057649463415, -0.009787207469344139, 0.020825618878006935, -0.017224928364157677, 0.0018281502416357398, -0.0297508854418993, -0.007229187060147524, 0.0011478072265163064, -0.023411443457007408, 0.021381711587309837, -0.011073168367147446, -0.0023616503458470106, 0.02599726803600788, -0.012094985693693161, 0.0071527245454490185, 0.002884723711758852, -0.018545644357800484, 0.026247510686516762, -0.034950338304042816, -0.018781984224915504, -0.014666908420622349, -0.0069893728941679, 0.017072003334760666, -0.011872549541294575, 0.030445998534560204, -0.007093639578670263, 0.005077808629721403, -0.018378818407654762, 0.0016708805924281478, -0.013985696248710155, 0.006315112113952637, 0.015209097415208817, -0.008681975305080414, -0.04106734320521355, 0.0027960967272520065, -0.002389454748481512, 0.0006951141403988004, 0.05085454881191254, -0.029361620545387268, 0.005800727289170027, 0.00882794987410307, -0.006819069851189852, 0.028805529698729515, 0.0361737385392189, -0.020380746573209763, -0.0019949774723500013, 0.0238841213285923, -0.01392313651740551, -0.0098358653485775, 0.005884141195565462, -0.017197124660015106, -0.0010122599778696895, -0.009710744954645634, 0.025038011372089386, -0.02585824579000473, -0.009370138868689537, 0.04173465445637703, 0.008841851726174355, -0.018837593495845795, -0.0017377854092046618, 0.006801691837608814, -0.009411845356225967, -0.01775321550667286, 0.022744134068489075, 0.0065062684006989, 0.020547574386000633, 0.018364915624260902, -0.01296387892216444, -0.01200462132692337, 0.019282465800642967, 0.038731761276721954, -0.013457410037517548, -0.0012607632670551538, 0.009669037535786629, -0.008473441004753113, 0.021284395828843117, 0.04932529851794243, 0.028583092615008354, 0.018253697082400322, 0.023133398965001106, 0.008904412388801575, 0.03656300529837608, -0.025343861430883408, 0.0317528136074543, -0.0003940428141504526, -0.03317084535956383, -0.013839722611010075, -0.01607103832066059, -0.0038613590877503157, -0.005404512397944927, -0.009481356479227543, -0.008522099815309048, -0.00796600803732872, 0.00045573420356959105, 0.012421689927577972, -0.02749871462583542, -0.03186403214931488, 0.023328030481934547, -0.0075697931461036205, 0.003458192804828286, 0.010065252892673016, -0.003666727105155587, -0.014145572669804096, -0.015000563114881516, -0.027095548808574677, 0.012150594964623451, -0.004580802284181118, 0.02779066376388073, -0.005314147565513849, -0.016279572620987892, 0.0195327065885067, 0.00403166189789772, 0.015542752109467983, -0.026205802336335182, -0.0030671912245452404, -0.02574702724814415, 0.026845308020710945, 0.02407875470817089, 0.021075861528515816, 0.015139586292207241, -0.013693748973309994, 0.022646818310022354, 0.004608606919646263, 0.007528086192905903, -0.04548826813697815, -0.0432082936167717, 0.00903648417443037, 0.038481518626213074, 9.188539843307808e-05, 0.005001346115022898, -0.02779066376388073, -0.0002541511203162372, -0.003930870443582535, 0.0054566459730267525, 0.022410480305552483, -0.01089939009398222, 0.024634845554828644, 0.00195500859990716, -0.00400733295828104, -0.0076601579785346985, 0.02203511819243431, 0.024912890046834946, -0.004674642812460661, 0.013582530431449413, 0.009126848541200161, -0.010440614074468613, -0.0033921569120138884, 0.0358956940472126, -0.00902953278273344, -0.00034082314232364297, 0.020686596632003784, 0.02559410221874714, 0.014833735302090645, 0.009606477804481983, -0.02175707183778286, -0.01173352636396885, -0.004493913147598505, 0.016502009704709053, -0.021381711587309837, 0.005175124853849411, 0.015222999267280102, 0.03656300529837608, 0.012623272836208344, -0.012185350991785526, -0.008640268817543983, -0.003777945414185524, -0.012199252843856812, 0.024273386225104332, 0.009258920326828957, 0.060391515493392944, 0.006089199800044298, 0.0047406782396137714, 0.0005821580998599529, -0.02356436848640442, 0.008702829480171204, -0.01407606154680252, 0.006297734100371599, 0.028499679639935493, -0.008035519160330296, -0.005293294321745634, -0.6152594089508057, -0.0002932512725237757, 0.004956163931638002, -0.013422654010355473, 0.015542752109467983, 0.0077435714192688465, -0.011698771268129349, 0.006384623236954212, -0.03709128871560097, -0.0007667978061363101, 0.002528477692976594, 0.004931834992021322, 0.013241924345493317, -0.007437721360474825, -0.019407587125897408, -0.02200731448829174, 0.011538894847035408, 0.017419559881091118, 0.009669037535786629, 0.01481983345001936, 0.002544117858633399, -0.015181292779743671, 0.009863669984042645, 0.005689509212970734, 0.0358956940472126, -0.002879510400816798, -0.0035138020757585764, -0.022688524797558784, -0.008681975305080414, 0.014235937967896461, -0.029083576053380966, -0.00043140520574525, 0.009689890779554844, 0.00055826356401667, 0.04437608644366264, -0.001974124228581786, -0.03789762407541275, 0.012081083841621876, 0.00740991672500968, 0.03606251999735832, -0.013784113340079784, -0.01751687563955784, 0.010663051158189774, 0.01476422417908907, -0.012157546356320381, -0.016404693946242332, 0.02189609594643116, 2.8917835152242333e-05, 0.0034286505542695522, -0.02808261103928089, -0.010975852608680725, -0.007938203401863575, 0.005077808629721403, -0.005036102142184973, -0.00045095529640093446, -0.002618842525407672, 0.026400435715913773, 0.013332289643585682, 0.01576518826186657, 0.0031453915871679783, -0.010670001618564129, 0.02164585515856743, -0.0034251748584210873, -0.017461266368627548, -0.010065252892673016, 0.0019723863806575537, 0.025218740105628967, 0.00800771452486515, 0.020895130932331085, -0.012678882107138634, 0.0063463919796049595, 0.02416216768324375, -0.00791039876639843, -0.020617084577679634, 0.002118360251188278, 0.023258518427610397, 0.00700675044208765, 0.01305424328893423, -0.00782003439962864, 0.017350049689412117, 0.011274751275777817, 0.004393121227622032, -0.0011782185174524784, 0.0016491583082824945, 0.006367245689034462, 0.008438685908913612, -0.03191963955760002, 0.008056373335421085, -0.014666908420622349, -0.019338075071573257, 0.035089362412691116, 0.0006994585855863988, -0.009571721777319908, -0.033143043518066406, 0.025371666997671127, -0.004643362481147051, -0.020644890144467354, 0.018378818407654762, -0.002302565611898899, -0.02364778332412243, -0.020561477169394493, -0.006221271585673094, -0.0014215083792805672, 0.030585022643208504, 0.05446914583444595, 0.012720588594675064, -0.0356176495552063, 0.003327858867123723, 0.038564931601285934, -0.0033452368807047606, -0.0030845690052956343, -0.005898043513298035, -0.030362585559487343, 0.007611499633640051, -0.007493330631405115, -0.022285358980298042, 0.04212391749024391, 0.015070074237883091, -0.008466490544378757, 0.003385205753147602, 0.014173377305269241, 0.015139586292207241, 0.017197124660015106, 0.005939750466495752, 0.026469945907592773, 0.012977780774235725, 0.02395363338291645, -0.010593539103865623, 0.012428640387952328, -0.016502009704709053, 7.9938123235479e-05, -0.024982402101159096, 0.046405818313360214, -0.018629059195518494, 0.011399871669709682, -0.013999599032104015, 0.020936837419867516, 0.00325313420034945, 0.02356436848640442, -0.015306413173675537, -0.015348120592534542, -0.017155416309833527, 0.0012529431842267513, -0.004573850892484188, -0.0068538254126906395, -0.042819030582904816, -0.030445998534560204, 0.010245982557535172, -0.03364352509379387, 0.008334418758749962, -0.00030976024572737515, 0.018670765683054924, -0.03731372579932213, 0.011518041603267193, -0.022452186793088913, -0.011205240152776241, 0.0015153487911447883, -0.04732337221503258, -0.018503937870264053, -0.004188062623143196, -0.011879500932991505, 0.016557618975639343, -0.03570106253027916, -0.009717695415019989, 0.01566787250339985, -0.023147301748394966, -0.006502792704850435, 0.01566787250339985, 0.007583695463836193, -0.022521698847413063, 0.008487343788146973, 0.0031332268845289946, -0.02167365886271, -0.029139185324311256, -0.002836065599694848, 0.01082987803965807, -0.0220907274633646, 0.012644126079976559, 0.02763773873448372, 0.0027404874563217163, 0.006759984884411097, 0.013346191495656967, -0.004778909496963024, -0.0010826402576640248, -0.0010617868974804878, 0.018893202766776085, 0.005421890411525965, 0.04793507233262062, -0.03731372579932213, 0.03761957585811615, -0.028124317526817322, 0.009154653176665306, -0.009328431449830532, -0.002992466324940324, 9.025622421177104e-05, 0.009356236085295677, 0.025051914155483246, -0.003916968125849962, -0.008056373335421085, 0.009738548658788204, -0.0015726957935839891, -0.004890128038823605, 0.02193780243396759, 0.00343907717615366, -0.017558583989739418, -0.013985696248710155, 0.0013572103343904018, -0.012352177873253822, 0.005567864049226046, 0.013471311889588833, 0.005828531924635172, -0.007194431498646736, -0.036479588598012924, -0.002679665107280016, -0.004205440636724234, 0.012567663565278053, -0.014639103785157204, 0.009536965750157833, -0.0017447364516556263, 0.0027682920917868614, -0.008417832665145397, 0.006874678656458855, 0.03308743238449097, 0.01789223775267601, -0.020394649356603622, -0.015334217809140682, -0.011740477755665779, 0.005268965382128954, 0.005845909938216209, -0.01814247854053974, -0.023453151807188988, 0.016557618975639343, 0.016891272738575935, 0.0053350008092820644, 0.028471875935792923, -0.014347155578434467, 0.0400385744869709, 0.007222236134111881, 0.008216248825192451, -0.020366843789815903, 0.006815594155341387, 0.02361997775733471, 0.01618225686252117, -0.04179026186466217, -0.0036458736285567284, -0.0009236329351551831, 0.03628495708107948, -0.0010087843984365463, -0.013339240103960037, 0.009606477804481983, -0.007333454210311174, 0.012199252843856812, -0.012630224227905273, -0.017419559881091118, 0.024787770584225655, -0.03144696354866028, 0.002319943392649293, 0.028777725994586945, 0.03228110074996948, 0.02163195237517357, 0.013380947522819042, 0.005206404719501734, 0.009133799932897091, 9.808983350012568e-07, -0.0010174732888117433, 0.01976904645562172, 0.007555890828371048, -0.022827548906207085, 0.0025319531559944153, -0.010308542288839817, -0.008257956244051456, -0.02186829037964344, 0.00269704288803041, -0.01800345629453659, -0.00901562999933958, 0.006693948991596699, -0.004000382032245398, -0.011372067034244537, 0.01981075294315815, 0.00888355914503336, -0.03356011211872101, -0.01608494110405445, 0.04732337221503258, 0.02603897638618946, 0.03411620110273361, -0.008403929881751537, -0.0010235555237159133, 0.022924864664673805, 0.0028308522887527943, 0.01626567170023918, 4.795201311935671e-05, 0.0011747429380193353, -0.008035519160330296, -0.0020836046896874905, -0.006579255219548941, 0.004142880439758301, -0.004073368851095438, -0.0016665362054482102, 0.0035659356508404016, 0.017294440418481827, 0.0032340185716748238, 0.02207682467997074, -0.0437643863260746, 0.01470861490815878, 0.04821311682462692, -0.00062777497805655, 0.017224928364157677, -0.01968563161790371, -0.017099807038903236, -0.022924864664673805, 0.0011295605218037963, 0.008744535967707634, -0.008056373335421085, 0.008174542337656021, -0.005119515582919121, 0.004716349299997091, -0.052856478840112686, -0.007416867651045322, 0.054552558809518814, -0.004897078964859247, -0.0057485937140882015, -0.02598336711525917, -0.022257555276155472, 0.04195708781480789, -0.0007763556204736233, 0.03931565582752228, 0.009905376471579075, 0.0073265028186142445, -0.017322244122624397, 0.018490036949515343, -0.02380070835351944, -0.03742494434118271, 0.008035519160330296, -0.0006316849612630904, -0.02804090455174446, 0.0008428259170614183, 0.02606678009033203, -0.009133799932897091, 0.02189609594643116, 0.009585623629391193, 0.011830843053758144, -0.011142679490149021, -0.036396175622940063, -0.022994374856352806, -0.003015057649463415, -0.011274751275777817, 0.009550868533551693, 0.02163195237517357, 0.024287287145853043, -0.010301591828465462, 0.03169720619916916, -0.0041776360012590885, 0.022438284009695053, -0.012713637202978134, -0.03831469267606735, -0.012254862114787102, 0.03372693806886673, 0.014639103785157204, 0.018448328599333763, -0.0012963878689333797, -0.008327467367053032, -0.021395612508058548, 0.008084177039563656, 0.009648184292018414, -0.005043053068220615, 0.009752451442182064, 0.014694713056087494, 0.009203311055898666, 0.005136893596500158, 0.008299662731587887, -0.013707650825381279, 0.016515912488102913, -0.00020386395044624805, -0.004754580557346344, -0.014194230549037457, -0.0007485510432161391, -0.022855352610349655, -0.014611299149692059, 0.028179926797747612, 0.024787770584225655, -0.0020801289938390255, -0.018434427678585052, -0.015181292779743671, -0.002625793684273958, -0.02598336711525917, -0.029445035383105278, 0.0025667089503258467, -0.01976904645562172, -0.007847839035093784, -0.0071527245454490185, -0.03125233203172684, 0.0008528181351721287, -0.032809387892484665, 0.027095548808574677, -0.00269704288803041, -0.03239231929183006, -0.014388862997293472, 0.015459338203072548, 0.02759603224694729, 0.016237866133451462, 0.008661122061312199, -0.010461468249559402, -0.00395867507904768, 0.020672693848609924, -0.031002091243863106, -0.01407606154680252, 0.0036180689930915833, -0.02963966690003872, -0.006829496473073959, -0.006162187084555626, 0.017169319093227386, 0.013255826197564602, -0.015348120592534542, 0.003666727105155587, -0.0004831043188460171, -0.015737384557724, -0.012234008871018887, 0.002552806632593274, 0.029333816841244698, 0.022466089576482773, 0.028833335265517235, -0.005647802259773016, -0.0011599716963246465, 0.006947665940970182, -0.016696641221642494, 0.03567325696349144, 0.005585242062807083, 0.012018523178994656, 0.005348903127014637, 0.005296769551932812, 0.017447365447878838, -0.011420724913477898, 0.006631388794630766, -0.007521134801208973, -0.010927194729447365, 0.010530979372560978, 0.015501045621931553, -0.0031992627773433924, 0.03503375127911568, -0.012692783959209919, 0.015445436351001263, -0.0036702025681734085, -0.003687580581754446, 0.008772340603172779, -0.01810077205300331, -1.709274874883704e-05, 0.034783512353897095, 0.002917741658166051, -0.01586250402033329, 0.008160639554262161, -0.017238831147551537, 0.005348903127014637, -0.010398907586932182, 0.01612664759159088, -0.007708815857768059, -0.006280356086790562, -0.0006434150272980332, -0.0240926556289196, -0.040705885738134384, -0.0033000544644892216, 0.010197324678301811, 0.013346191495656967, -0.017155416309833527, -0.017224928364157677, -0.01812857761979103, -0.007017177063971758, 0.008612464182078838, -0.016988590359687805, -0.014472275972366333, -0.01947709731757641, -0.018976615741848946, -0.011149630881845951, 0.032559145241975784, 0.033031824976205826, 0.011865598149597645, -0.018462231382727623, 0.0049353102222085, 0.00372928730212152, -0.011149630881845951, -0.011392921209335327, -0.0004040350904688239, -0.01395789161324501, 0.0139787457883358, -0.002879510400816798, 0.04028881713747978, -0.00693376362323761, 0.0034442904870957136, 0.010753415524959564, -0.009613428264856339, -0.0014275906141847372, -0.014291546307504177, -0.0057555451057851315, -0.005797252058982849, -0.009675988927483559, 0.017141515389084816, 0.0025354288518428802, 0.012025474570691586, 0.018670765683054924, -0.007423819042742252, 0.004646838176995516, -0.0038822125643491745, 0.016390791162848473, -0.00875843781977892, -0.044654130935668945, -0.02769334800541401, -0.0031940494664013386, -0.0353396013379097, -0.01760029047727585, -0.01779492199420929, -0.0031088979449123144, -0.008556854911148548, -0.013109852559864521, 0.0007072786102071404, -0.014625201933085918, 0.022507796064019203, -0.012400836683809757, 0.01965782791376114, 0.009231115691363811, 0.008445636369287968, -0.005713838152587414, -0.006329014431685209, 0.0005087366444058716, -0.0061378576792776585, 0.016488106921315193, -0.012692783959209919, 0.015487142838537693, -0.020436355844140053, 0.00645065912976861, -0.018378818407654762, 0.016807859763503075, 0.001080033602192998, -0.02361997775733471, -0.004236720502376556, -0.0072361379861831665, 0.0001361989270662889, -0.044848766177892685, -0.005077808629721403, -0.025510689243674278, 0.009745500050485134, 0.0032670365180820227, 0.006266453769057989, 0.01285961177200079, -0.021367808803915977, -0.03305962681770325, 0.006151759997010231, -0.015501045621931553, 0.050687722861766815, 0.019407587125897408, 0.020881228148937225, 0.020936837419867516, -0.005401036702096462, -0.02167365886271, 0.0012155808508396149, 0.003213165095075965, -0.006867727730423212, 0.022521698847413063, 0.01947709731757641, -0.020950740203261375, -0.01765589974820614, -0.0014310661936178803, -0.019491000100970268, -0.0010209488682448864, -0.013276680372655392, 0.028499679639935493, 0.010447565466165543, 0.018198087811470032, -0.00991927832365036, 0.008522099815309048, -0.03951028734445572, 0.009557818993926048, -0.008188444189727306, 0.009578673169016838, -0.00896697212010622, -0.005084760021418333, -0.024926792830228806, -0.024704355746507645, -0.02171536535024643, 0.005717313848435879, 0.013686797581613064, -0.0022817121353000402, 0.023230714723467827, -0.00902953278273344, -0.026761895045638084, 0.013047292828559875, -0.022285358980298042, 0.016307378187775612, 0.006061395164579153, -0.00797295942902565, 0.00892526563256979, 0.011962913908064365, -0.012769246473908424, -0.005185551475733519, -0.0019984531681984663, 0.028805529698729515, -0.010635246522724628, -0.005376707762479782, -0.0036076423712074757, -0.009682940319180489, 0.00991927832365036, -0.0001126302158809267, -0.0004552997706923634, 0.002822163514792919, -0.030724044889211655, 0.0037814208772033453, 0.006398525554686785, 0.009272822178900242, 0.03153037652373314, 0.013999599032104015, -0.02580263651907444, -0.004556473344564438, 0.01497275847941637, -0.029111379757523537, 0.018615156412124634, -0.004292329773306847, -0.012067181058228016, 0.028749920427799225, -0.006026639603078365, 0.016307378187775612, -0.00277698109857738, 0.011406823061406612, 0.022396577522158623, 0.022271456196904182, -0.012991683557629585, -0.03169720619916916, -0.008640268817543983, -0.023216811940073967, -0.03795323148369789, 0.01285266038030386, -0.01971343718469143, 0.01801735907793045, 0.014486178755760193, -0.011295604519546032, -0.01285961177200079, 0.0035555087961256504, 0.03400498256087303, 0.0029855151660740376, -0.0040872711688280106, -0.02392582781612873, 0.026358727365732193, 0.028583092615008354, 0.014639103785157204, -0.003666727105155587, -0.021145371720194817, 0.010239031165838242, -0.018740277737379074, 0.01992197148501873, 0.022438284009695053, -0.012984732165932655, 0.005633899942040443, -0.008584659546613693, 0.0022973523009568453, -0.008772340603172779, -0.03784201294183731, -0.03597910702228546, 0.004393121227622032, 0.028416266664862633, -0.002127049257978797, -0.013047292828559875, -0.02168756164610386, -0.008334418758749962, -0.013172413222491741, 0.04835214093327522, -0.016543716192245483, 0.0005495746154338121, 0.006329014431685209, 0.0060509685426950455, 0.02576093003153801, 0.007618451025336981, -0.00782003439962864, -0.013686797581613064, -0.022660721093416214, -0.01184474490582943, -0.026539457961916924, -0.016724446788430214, 0.0006768673774786294, 0.001026162295602262, -0.016279572620987892, -0.060780782252550125, -0.031168917194008827, -0.011580601334571838, -0.05572034791111946, -0.021284395828843117, 2.602605127322022e-05, 0.010106959380209446, 0.046795085072517395, 0.004511290695518255, -0.011135728098452091, -0.0054601216688752174, 0.002408570609986782, 0.002783932024613023, -0.03597910702228546, 0.008452587760984898, 0.003286152146756649, 0.0023546991869807243, 0.013902283273637295, -0.03141915798187256, -0.05580376461148262, -0.00781308300793171, -0.004295805469155312, 0.008960021659731865, 0.038620542734861374, 0.003082831157371402, -0.011170484125614166, 0.0034720951225608587, -0.01600152812898159, -0.009265871718525887, -0.03141915798187256, 0.011497187428176403, -0.0013207169249653816, -0.02991771325469017, -0.0038127009756863117, 0.01593201607465744, 0.030974285677075386, -0.008702829480171204, 0.010725610889494419, 0.011406823061406612, -0.03361571952700615, -0.0074446722865104675, -0.003798798890784383, -0.0006955486023798585, 0.0008102424326352775, -0.0195327065885067, 0.030251367017626762, 0.007715766783803701, -0.006269929464906454, 0.024759965017437935, -0.008709779940545559, -0.001855954760685563, -0.012922171503305435, 0.017280537635087967, -0.030362585559487343, -0.02368948981165886, 0.014833735302090645, 0.0012320898240432143, 0.01810077205300331, -0.0021166226360946894, -0.014625201933085918, -0.028777725994586945, -0.013033390045166016, 0.009272822178900242, -0.0011582339648157358, -0.00010736255353549495, -0.02375900186598301, 0.03417181223630905, -0.02605287730693817, -0.020491965115070343, -0.009203311055898666, -0.005623473320156336, 0.00978025607764721, 0.0006764329737052321, -0.03164159506559372, -0.03166940063238144, -0.01009305752813816, 0.013207168318331242, -0.016335181891918182, -0.002163542667403817, 0.009655135683715343, -0.013429605402052402, 0.0007455099257640541, 0.00745857460424304, 0.17817164957523346, -0.0018941860180348158, -0.0018837592797353864, 0.01614055037498474, 0.0034529794938862324, 0.02994551695883274, 0.018517840653657913, 0.002863870235159993, -0.03386596217751503, 0.0022521698847413063, -0.015542752109467983, 0.024871183559298515, 0.023606076836586, 0.001463215216062963, 0.025218740105628967, 0.00034169203718192875, -0.024954598397016525, -0.0031210624147206545, -0.044348280876874924, 0.004646838176995516, -0.0036215446889400482, -0.013325338251888752, -0.017127612605690956, -0.0010887224925681949, 0.032753776758909225, -0.016654934734106064, -0.019171247258782387, 0.0281660258769989, 0.020825618878006935, 0.008209298364818096, -0.016376888379454613, 0.002285187831148505, 0.023369736969470978, 0.0026292691472917795, -0.0017117186216637492, -0.022479990497231483, 0.026275314390659332, 0.01817028410732746, 0.010002692230045795, 0.007284796331077814, 0.002175707370042801, -0.038676150143146515, 0.006912909913808107, -0.004827567841857672, -0.017044199630618095, 0.026233607903122902, -0.005411463789641857, 0.003134964732453227, 0.004208916332572699, -0.004712874069809914, -0.016488106921315193, 0.019393684342503548, 0.028583092615008354, 0.0035468197893351316, 0.017558583989739418, -0.01792004331946373, 0.02405094914138317, -0.013443507254123688, -0.00800771452486515, 0.020491965115070343, -0.016766153275966644, 0.0323089063167572, 0.009662086144089699, 0.0018281502416357398, -0.008779291994869709, 0.007333454210311174, -0.0025145753752440214, -0.00457037566229701, 0.006461085751652718, -0.018573449924588203, 0.013672894798219204, -0.018337111920118332, 0.00591889675706625, 0.011434627696871758, -0.011670966632664204, -0.01397179439663887, -0.001753425458446145, 0.032892800867557526, 0.019310271367430687, 0.03522838279604912, -0.023063886910676956, -0.01947709731757641, -0.00495963916182518, 0.002208725083619356, -0.030835263431072235, -0.026775795966386795, 0.008195395581424236, 0.002528477692976594, -0.02220194600522518, -0.0060474928468465805, -0.013339240103960037, -0.011830843053758144, -0.00159268022980541, -0.006325538735836744, 0.012505103833973408, -0.02206292189657688, 0.005981456954032183, 0.006881630048155785, -0.019226856529712677, 0.006968519184738398, -0.028430167585611343, 0.04587753489613533, -0.021145371720194817, 0.006690473761409521, -0.03166940063238144, -0.00555396219715476, -0.002031471114605665, 0.02820773236453533, 0.018809787929058075, -0.024718258529901505, -0.008542953059077263, -0.015403728932142258, -0.013714602217078209, 0.005977981723845005, 0.007215284742414951, 0.022813646122813225, 0.01975514367222786, -0.017461266368627548, 0.011323409155011177, -0.01978294923901558, 0.01289436686784029, 0.019379781559109688, -3.5841821954818442e-06, 0.012227057479321957, 0.002438112860545516, -0.007868692278862, -0.024440214037895203, -0.019073931500315666, -0.010016595013439655, -0.040817100554704666, 0.023049984127283096, -0.0052759163081645966, 0.021270493045449257, -0.009564770385622978, -0.021117568016052246, 0.006374196615070105, 0.011691819876432419, -0.02955625392496586, 0.004751105327159166, -0.014472275972366333, -0.010857682675123215, -0.006791265215724707, 0.0002786973200272769, -0.003359139198437333, 0.0110453637316823, -0.03817566856741905, 0.016641031950712204, 0.00991927832365036, -0.006384623236954212, -0.029306011274456978, -0.029000161215662956, -0.03572886809706688, 0.007979909889400005, 0.0220907274633646, 0.044598523527383804, -0.013693748973309994, -0.01305424328893423, -0.04932529851794243, 0.00395867507904768, 0.020811717957258224, -0.04217952489852905, 0.008445636369287968, 0.050354067236185074, -0.014958856627345085, -0.021214883774518967, -0.016446400433778763, -0.17772679030895233, 0.014805931597948074, 0.03353230655193329, -0.011462432332336903, 0.00797295942902565, -0.01387447863817215, 0.03250353783369064, -0.030779654160141945, 0.0057520694099366665, 0.008946118876338005, 0.02791578322649002, 0.0029855151660740376, -0.04131758585572243, -0.010294640436768532, 0.010461468249559402, 0.016821762546896935, -0.013102901168167591, -0.006019688677042723, 0.02566361427307129, 0.03186403214931488, 0.028833335265517235, -0.01792004331946373, 0.010850731283426285, 0.021353906020522118, -0.032698169350624084, 0.021284395828843117, -0.005209880415350199, -0.00592584814876318, -0.016571521759033203, -0.022744134068489075, -0.011455480940639973, 0.03186403214931488, 0.016724446788430214, 0.0031088979449123144, 0.004883176647126675, 0.003496424062177539, -0.008855754509568214, -0.009724646806716919, -0.012755344621837139, 0.008744535967707634, 0.0077505228109657764, 0.04181806743144989, 0.004445254802703857, -0.0004396596923470497, -0.0034251748584210873, 0.021145371720194817, 0.05202234163880348, 0.012560712173581123, 0.02214633673429489, -0.010961949825286865, 0.006808643229305744, -0.025524592027068138, 0.01600152812898159, 0.007079737726598978, 0.01583470031619072, 0.01281095389276743, -0.0032270674128085375, -0.0006816462846472859, -0.010676953010261059, 0.021270493045449257, -0.01591811329126358, 0.0047684828750789165, -0.004153307061642408, 0.008452587760984898, 0.004605131223797798, 0.013394849374890327, -0.020575378090143204, 0.0019185150740668178, -0.024732161313295364, 0.00802856869995594, -0.02559410221874714, -0.02210463024675846, -0.002761340932920575, 0.01103146094828844, -0.010155617259442806, -0.0005734691512770951, -0.03222549334168434, 0.0008854016195982695, 0.01764199696481228, 0.014555689878761768, -0.004552997648715973, 0.0480462908744812, -0.027540422976017, 0.020867327228188515, -0.020269528031349182, 0.014062158763408661, -0.00881404709070921, -0.006130906753242016, -0.0015579245518893003, 0.0005056955269537866, 0.028583092615008354, -0.010357201099395752, -0.018934909254312515, 0.0002589300274848938, 0.014597397297620773, 0.010614393278956413, -0.009474406018853188, 0.01972733996808529, -0.02178487740457058, -0.022646818310022354, 0.009787207469344139, 0.00692681223154068, -0.023411443457007408, 0.029000161215662956, 0.031113309785723686, 0.019449293613433838, -0.020380746573209763, 0.019518805667757988, 0.04173465445637703, 0.012247910723090172, -0.03233670815825462, 0.013088999316096306, 0.018364915624260902, 0.026831405237317085, -0.009550868533551693, -0.00046181646757759154, 0.01109402161091566, -0.00882794987410307, -0.008091128431260586, 0.025399470701813698, 0.0357566699385643, 0.006739131640642881, 0.016863469034433365, 0.02159024588763714, -0.013387897983193398, -0.0321698822081089, -0.08146737515926361, -0.008584659546613693, 0.006040541920810938, 0.03125233203172684, -0.02578873373568058, -0.011524992063641548, 0.006770411506295204, 0.011504138819873333, -0.018531743437051773, -0.007086688652634621, -0.014500080607831478, -0.038898587226867676, -0.011462432332336903, -0.012824855744838715, -0.00270920735783875, 0.007555890828371048, 0.005550486501306295, 0.005168173462152481, 0.008424783125519753, 0.01619615964591503, -0.008779291994869709, 0.0014067372540012002, 0.01589030958712101, -0.01374935731291771, -0.013228022493422031, -0.0090781906619668, -0.030334781855344772, 0.021298296749591827, 0.007263942621648312, 0.0012598943430930376, -0.0009601264027878642, -0.0201583094894886, 0.022758036851882935, -0.004723300691694021, -0.01757248491048813, -0.01079512294381857, 0.0010183422127738595, 0.01486153993755579, 0.005216831807047129, -0.01595981977880001, 0.024537529796361923, 0.020478062331676483, 0.01381191797554493, -0.024203874170780182, 0.01975514367222786, -0.03789762407541275, 0.00446610851213336, 0.03742494434118271, -0.0019862886983901262, -0.03191963955760002, -0.02182658389210701, 0.011983768083155155, 0.010162568651139736, -0.04515461623668671, 0.036785438656806946, -0.00100791547447443, 0.02400924265384674, 0.015125683508813381, -0.047212153673172, 0.009634282439947128, -0.008271858096122742, -0.00997488759458065, 0.006492366082966328, 0.010836829431355, 0.02988990768790245, 0.003015057649463415, -0.006276880856603384, -0.036368370056152344, 0.016335181891918182, -0.015306413173675537, -0.009842815808951855, 0.016780056059360504, -0.007076262030750513, 0.0033452368807047606, -0.014159475453197956, 0.007590646389871836, -0.025524592027068138, -0.03130793944001198, 0.01954660937190056, 0.012032425962388515, -0.009787207469344139, -0.022813646122813225, -0.026636773720383644, -0.031002091243863106, 0.02200731448829174, -0.012463396415114403, -0.014131670817732811, 0.01002354547381401, 0.0029976796358823776, -0.02820773236453533, -0.022396577522158623, 0.00785478949546814, 0.015139586292207241, -0.006099626421928406, -0.010259884409606457, 0.030473804101347923, 0.011914256028831005, -0.0031158491037786007, -0.013339240103960037, -0.005220307037234306, -0.05116040259599686, -0.0030185331124812365, -0.06172613427042961, 0.03959370031952858, -0.0018472658703103662, 0.0179478470236063, -0.020478062331676483, -0.004417450167238712, 0.0021357382647693157, 0.0010331133380532265, -0.02159024588763714, 0.0023911925964057446, -0.009349285624921322, 0.030390391126275063, 0.01079512294381857, -0.02955625392496586, -0.030140148475766182, 0.003204476088285446, 0.02221584878861904, 0.015236902050673962, 0.014305449090898037, 0.00649931700900197, 0.005759020801633596, 0.015584458597004414, 0.0010756890987977386, 0.022410480305552483, 0.0070658354088664055, -0.003666727105155587, -0.015000563114881516, -0.008598562330007553, -0.011073168367147446, -0.012574614956974983, 0.027206767350435257, -0.021312199532985687, 0.004970066249370575, 0.046600453555583954, -0.02184048667550087, -0.015362022444605827, -0.015278608538210392, -0.0006494972622022033, -0.002848230302333832, -0.022396577522158623, -0.017377853393554688, -0.023272421211004257, 0.013234972953796387, 0.002742225304245949, -0.008216248825192451, 0.024648748338222504, -0.009627331048250198, -0.0032931033056229353, -0.013415702618658543, 0.01296387892216444, 0.028583092615008354, -0.0016543716192245483, -0.02770724892616272, -0.014361058361828327, 0.020478062331676483, -0.052550628781318665, 0.031224526464939117, 0.005341952200978994, 0.002352961339056492, 0.020450258627533913, 0.0353396013379097, 0.008403929881751537, 0.0356176495552063, -0.02220194600522518, -0.00544274365529418, -0.009147701784968376, 0.015362022444605827, -0.029000161215662956, 0.01094804797321558, -0.04768482968211174, -0.021381711587309837, -0.006012737285345793, -0.007104066666215658, 0.034894730895757675, 0.007124919909983873, 0.03333767503499985, 0.0015796468360349536, 0.005699935834854841, 0.008334418758749962, 0.04184587299823761, 0.024245580658316612, -0.0035833134315907955, 0.0002558888809289783, 0.005734691862016916, 0.010106959380209446, 0.02181268110871315, -0.018670765683054924, 0.008675024844706059, 0.001996715320274234, 0.0034234372433274984, -0.026525555178523064, 0.018378818407654762, -0.012088035233318806, -0.01109402161091566, 0.018754178658127785, -0.007389063481241465, 0.01290826965123415, -0.008202346973121166, -0.0015101354802027345, 0.019157346338033676, 0.03141915798187256, -0.0035624599549919367, -0.02000538446009159, -0.0008797538466751575, -0.019449293613433838, -0.009050386026501656, -0.026483848690986633, -0.024857280775904655, -0.001608320395462215, 0.0019306795438751578, 0.0011591027723625302, -0.0016639294335618615, 0.010968901216983795, 0.007986861281096935, -0.00322880526073277, 0.009606477804481983, 0.008647220209240913, -0.026970429345965385, -0.038620542734861374, 0.03959370031952858, 0.007896496914327145, -0.00880709569901228, 0.03720250725746155, 0.008786242455244064, 0.021020252257585526, 0.00011632300447672606, 0.004340987652540207, -0.010642197914421558, 0.008237103000283241, -0.009189409203827381, 0.007131871301680803, 0.011448529548943043, -0.020936837419867516, -0.018809787929058075, -0.026692382991313934, -0.031141113489866257, 0.006078773178160191, 0.018545644357800484, 0.0070658354088664055, 0.08330247551202774, 0.009349285624921322, -0.028471875935792923, -0.010190373286604881, 0.01625176891684532, 0.026873113587498665, 0.017058100551366806, 0.02991771325469017, -0.004128978122025728, -0.02192389965057373, 0.008195395581424236, 0.005800727289170027, -0.023300226777791977, 0.0003625454555731267, -0.008146737702190876, 0.01281095389276743, 0.006322063039988279, 0.009453552775084972, 0.015111781656742096, 0.01992197148501873, 0.007114493288099766, -0.01812857761979103, -0.0070623597130179405, 0.0181563813239336, -0.010913291946053505, -0.018364915624260902, 0.024773867800831795, -0.007010226137936115, -0.03923224285244942, -0.019671730697155, 0.012595468200743198, -0.03428303077816963, -0.024217776954174042, -0.02963966690003872, 0.00026414336753077805, -0.015222999267280102, -0.013624236918985844, -0.008494295179843903, 0.000672957394272089, -0.02792968600988388, -0.008619415573775768, 0.015250803902745247, -0.01789223775267601, -0.01608494110405445, 0.022799743339419365, -0.0031975251622498035, 0.004233245272189379, -0.01607103832066059, -0.010927194729447365], "57762e71-1462-4735-8d07-d94672b8c357": [-0.020186595618724823, -0.011578860692679882, -0.014123508706688881, -0.00993692222982645, -0.016831640154123306, 0.026370516046881676, -0.013121286407113075, 0.0009418041445314884, -0.017769889906048775, -0.028147505596280098, 0.014237236231565475, -0.0008809422724880278, 0.0002807642740663141, -0.0008147494518198073, -0.013163934461772442, 0.0027561099268496037, 0.01569436676800251, -0.0018836082890629768, 0.0059600211679935455, -0.019475799053907394, -0.01309996284544468, 0.017215469852089882, -0.006116396281868219, 0.014187480323016644, -0.007477569859474897, -0.005608177278190851, 0.010413155891001225, -0.019035106524825096, -0.004215017892420292, 0.0148414121940732, 0.002866283291950822, 0.011230570264160633, -0.028986243531107903, 0.006297648884356022, -0.01913461834192276, -0.012104849331080914, 0.02159396931529045, -0.006919594947248697, 0.036904506385326385, 0.00636872835457325, 0.012225684709846973, -0.0016392723191529512, 0.0019404719350859523, -0.031246574595570564, -0.01457131002098322, 0.02840339206159115, 0.010036434046924114, -0.018011560663580894, -0.0015459804562851787, 0.005167483817785978, 0.02129543572664261, 0.00031275005312636495, -0.02527589164674282, 0.006493117660284042, 0.022844970226287842, -0.0042896512895822525, 0.02523324452340603, 0.02794848196208477, -0.00034318098914809525, -0.005878279451280832, 0.007783211767673492, -0.014237236231565475, -0.003609064733609557, 0.0020222135353833437, -0.025872958824038506, -0.010704581625759602, 0.0016828086227178574, 0.009929814375936985, -0.000532652426045388, -0.0301945973187685, 0.00993692222982645, 0.012531326152384281, -0.0036819211672991514, -0.025844527408480644, 0.006233677268028259, -0.014173264615237713, -0.019191481173038483, -0.013163934461772442, 0.003745892783626914, 0.01715860515832901, 0.02867349423468113, -0.011074195615947247, -0.027123959735035896, 0.028815653175115585, 0.036392733454704285, -0.012332303449511528, 0.015068866312503815, -0.008266552351415157, -0.026427380740642548, 0.005547759588807821, 0.011159490793943405, 0.01533896941691637, 0.013149718753993511, 0.005473126191645861, 0.0034118187613785267, 0.009958246722817421, -0.010207024402916431, 0.02870192565023899, -0.007548649329692125, -0.01767037808895111, -0.008273661136627197, -0.01509729865938425, -0.03155932575464249, -0.0007667707395739853, -0.01212617289274931, 0.007626836653798819, 0.00440693274140358, -0.0019351410446688533, 0.014713468961417675, 0.011458025313913822, -0.028318095952272415, 0.022859185934066772, -0.014336747117340565, -0.008039098232984543, 0.00208440818823874, -0.017826752737164497, -0.004264773800969124, -0.01862284541130066, -0.02253222092986107, -0.024664606899023056, 0.005483787972480059, 0.019561095163226128, -0.0009284767438657582, -0.016988014802336693, 0.00594935892149806, 0.005540651734918356, 0.0030848528258502483, -0.012581082060933113, 0.016049765050411224, -0.020428266376256943, 0.02085474319756031, 0.016803208738565445, 0.021494459360837936, 0.010548206977546215, -0.010626394301652908, 0.024351857602596283, -0.009780547581613064, -0.005149714183062315, -0.02275967411696911, -0.012915155850350857, 0.014656605198979378, 0.03775746375322342, -0.00896313227713108, -0.003292760578915477, -0.028076425194740295, 0.02329988032579422, 0.0034900063183158636, -0.02156553789973259, 0.003438473679125309, -0.0021412717178463936, 0.0010457580210641026, -0.007705024443566799, -0.014983571134507656, -0.028844084590673447, 0.003486452391371131, 0.011557536199688911, -0.013405605219304562, 0.01957531087100506, -0.009361177682876587, -0.03158775717020035, 0.0009595740702934563, 0.0344025082886219, 0.0007463353686034679, -0.0036037336103618145, 0.023882731795310974, 0.03693293780088425, -0.007434921804815531, -0.002919592894613743, -0.005071526393294334, -0.033208370208740234, -0.00044669059570878744, 0.009595740586519241, -0.0210821982473135, 0.010889388620853424, 0.01459974143654108, 0.021920936182141304, 0.005739674437791109, -0.01691693440079689, -0.02428077720105648, -0.023356743156909943, -0.011059979908168316, -0.0001669259072514251, 0.016035549342632294, 0.04708310216665268, -0.012090632691979408, 0.014699253253638744, 0.004147492349147797, -0.02722347155213356, 0.007257223129272461, -0.004101290367543697, 0.022617515176534653, 0.027536220848560333, -0.0012190144043415785, -0.01386762224137783, -0.6145823001861572, -0.013817866332828999, 0.007918262854218483, 0.002669037552550435, -0.014237236231565475, 0.009780547581613064, -0.003415372921153903, -0.0025126624386757612, -0.02652689255774021, 0.04014573618769646, -0.010583746246993542, 0.016760559752583504, -0.004079966805875301, -0.009247451089322567, 0.002885830122977495, 0.003642827505245805, -0.0013078638585284352, -0.021750345826148987, -0.011358513496816158, 0.014528661966323853, -0.011472241021692753, -0.004300313536077738, 0.01620613969862461, -0.0025801879819482565, -0.009474905207753181, -0.027649948373436928, 0.034231916069984436, -0.007378058508038521, -0.00029075981001369655, 0.0063758366741240025, -0.03192893788218498, 0.01152910478413105, 0.030564211308956146, -0.024167049676179886, 0.06164019554853439, -0.0016472687711939216, -0.03647803142666817, 0.02012973092496395, 0.03087696060538292, 0.022191038355231285, -0.0006859177374280989, -0.009346961975097656, 0.019930709153413773, -0.005377168767154217, 0.007648160681128502, -0.007442030124366283, 0.028289664536714554, 0.009858734905719757, 0.00859351921826601, -0.030763233080506325, 0.01092492789030075, -0.006517995614558458, -0.01737184450030327, 0.007086632307618856, 0.0043394071981310844, 0.006724126171320677, 0.03266816586256027, 0.00686628557741642, 0.0010270996717736125, -0.01957531087100506, -0.011266110464930534, 0.007154157850891352, -0.016575753688812256, -0.015054650604724884, -0.03309464454650879, 0.0027809878811240196, -0.0006490452215075493, -0.017485572025179863, 0.006862731650471687, -0.0007472238503396511, 0.03244071081280708, 0.012360735796391964, -0.0004655711236409843, -0.007115063723176718, 0.004513551946729422, 0.01666104793548584, 0.004033764824271202, 0.008273661136627197, -0.024451369419693947, 0.007271438837051392, 0.007406489923596382, 0.0023776113521307707, -0.012808537110686302, -0.0205704253166914, 0.01838117465376854, 0.01176366675645113, -0.02619992569088936, 0.002288761781528592, -0.009965354576706886, -0.016561537981033325, 0.02651267498731613, -0.00993692222982645, -0.005917373113334179, -0.01816793531179428, 0.024337641894817352, 0.008273661136627197, 0.001415371778421104, 0.003866728162392974, -0.00046024014591239393, -0.016092412173748016, -0.011223462410271168, -0.012765889056026936, 0.0015184370568022132, 0.006304756738245487, 0.038354530930519104, 0.0031452705152332783, -0.0250342208892107, -0.031189709901809692, 0.040117304772138596, -0.008650382049381733, 0.011330082081258297, -0.02160818688571453, -0.02062728814780712, -0.02455087937414646, 0.006414930336177349, -0.03036518767476082, 0.047964487224817276, 0.005203023552894592, -0.01239627506583929, 0.01619192399084568, 0.013874730095267296, -0.011813422664999962, 0.010207024402916431, 0.0016543767414987087, 0.00014937813102733344, 0.012701917439699173, 0.025076868012547493, -0.01960374228656292, 0.018352743238210678, -0.004534875974059105, -0.013242121785879135, -0.02275967411696911, 0.03093382529914379, -0.009631280787289143, 0.009368285536766052, -0.02253222092986107, 0.02919948287308216, 0.004552645608782768, 0.02574501559138298, -0.018765004351735115, -0.01934785582125187, -0.0037565547972917557, -0.0028822761960327625, -0.01016437727957964, -0.016234571114182472, -0.02648424357175827, -0.02962595969438553, 0.017442923039197922, -0.012055093422532082, 0.008550871163606644, -0.012133280746638775, -0.0030617520678788424, -0.007726348005235195, 0.022148391231894493, -0.014685036614537239, -0.0029586865566670895, -0.002898269100114703, -0.04949980601668358, -0.0070262146182358265, -0.028389176353812218, -0.0169453676789999, 0.038382962346076965, -0.013362957164645195, -0.002946247812360525, 0.010669042356312275, -0.004787208512425423, 0.007399382069706917, 0.010697473771870136, 0.002246114192530513, -0.016106627881526947, -0.01248867902904749, -0.009723683819174767, -0.015552207827568054, -0.000409595959354192, -0.01985962875187397, 0.01613505929708481, -0.024565095081925392, -0.008550871163606644, 0.007449137978255749, -0.0001972457830561325, 0.0025179933290928602, 0.02840339206159115, -0.001450911513529718, -0.0074207060970366, 0.023370958864688873, -0.0034828984644263983, 0.01509729865938425, 0.02425234578549862, -0.03093382529914379, 0.05100669339299202, -0.025560209527611732, 0.007054646499454975, -0.01836695894598961, 0.011721019633114338, -0.032497573643922806, 0.03161618858575821, -0.023726357147097588, 0.01519680954515934, -0.022972913458943367, 0.016149276867508888, 0.01214038860052824, 0.025346970185637474, 0.023726357147097588, 0.004911597352474928, -0.010704581625759602, -0.021394947543740273, 0.0027987577486783266, -0.041567325592041016, 0.020229242742061615, 0.004847626201808453, 0.015211026184260845, 0.008621950633823872, -0.007768996059894562, 0.00021301655215211213, 0.011600184254348278, 0.004936475306749344, -0.016291435807943344, 0.0188502985984087, -0.020186595618724823, -0.0037778785917907953, -0.012111957184970379, -0.016376730054616928, 0.024820981547236443, 0.000350733200320974, -0.014955139718949795, -0.009872950613498688, 0.01398845762014389, 0.012559758499264717, 0.012403382919728756, 0.004549091681838036, 0.013391388580203056, 0.02479255013167858, 0.012389167211949825, -0.00012139056343585253, 0.02840339206159115, -0.010939144529402256, 0.033720143139362335, 0.012751673348248005, 0.021224357187747955, -0.00575389014557004, -0.005625947378575802, 0.01839539036154747, 0.016746344044804573, -0.007783211767673492, 0.008223905228078365, -0.007456245832145214, 0.017769889906048775, 0.009951137937605381, -0.017713027074933052, 0.021380731835961342, -0.010839632712304592, 0.00287872226908803, -0.01386762224137783, -0.010839632712304592, 0.03536918759346008, -0.012083524838089943, -0.003976901527494192, 0.024877846240997314, 0.040060438215732574, 0.013505116105079651, 0.01251711044460535, 0.005373614840209484, 0.014286991208791733, 0.008259444497525692, 0.021920936182141304, 0.00759840477257967, -0.03511330112814903, -0.021878289058804512, 0.005426924210041761, -0.026143062859773636, 0.003196803154423833, -0.025133732706308365, -0.0009187033283524215, -0.03966239467263222, -0.001771658076904714, 0.0020453142933547497, 0.022432709112763405, 0.014265667647123337, 0.023100856691598892, -0.005451802164316177, -0.047708600759506226, -0.037842757999897, 0.03360641747713089, 0.02111062966287136, 0.012190144509077072, -0.008849404752254486, -0.006105734035372734, 0.02283075451850891, -0.01811107248067856, 0.02625678852200508, -0.007804535795003176, -0.005441140383481979, -0.009730791673064232, -0.013291877694427967, 0.013149718753993511, 0.0067063565365970135, 0.01693115197122097, 0.005803646054118872, 0.012666377238929272, 0.001354954089038074, 0.0070617543533444405, 0.0220346637070179, -0.02988184615969658, 0.008287876844406128, 0.048163510859012604, -0.02432342618703842, -0.008600627072155476, -0.025560209527611732, -0.021480243653059006, -0.0377005971968174, 0.016518888995051384, 0.006080856546759605, -0.02504843659698963, 0.011131059378385544, 0.0006068417569622397, 0.02159396931529045, -0.008913376368582249, -0.016973799094557762, 0.031303439289331436, -0.009219018742442131, -0.014059537090361118, -0.018580196425318718, 0.008920485153794289, 0.030308324843645096, 0.02479255013167858, 0.038866303861141205, 0.017485572025179863, 0.01113816723227501, -0.029014676809310913, 0.0043500689789652824, -0.03949180245399475, -0.04441050812602043, 0.012197252362966537, 0.0035504240076988935, -0.018964026123285294, -0.003059975104406476, 0.00442114844918251, 0.010832524858415127, 0.036193713545799255, 0.005494449753314257, 0.033236801624298096, -0.012069309130311012, 0.005800092127174139, -0.024806765839457512, 0.003390494966879487, -0.004296759609133005, 0.009737899526953697, 0.03434564173221588, 0.02548913098871708, 0.0021092859096825123, 0.04111241549253464, 4.675702439271845e-05, 0.0022549990098923445, -0.012886724434792995, -0.016845855861902237, 0.022603299468755722, 0.023598413914442062, 0.02723768725991249, -0.002125278813764453, 0.02792005054652691, 0.0046024015173316, -0.009318530559539795, 0.0006126169464550912, 0.024380289018154144, 0.0046592652797698975, 0.024209698662161827, 0.010683258064091206, -0.00033651728881523013, 0.009915598668158054, -0.011813422664999962, -0.019234128296375275, 0.0012607737444341183, 0.008757001720368862, -0.0013140833470970392, 0.01964638940989971, 0.010455803014338017, -0.009872950613498688, -0.006230123341083527, 0.018708139657974243, 0.00656775152310729, -0.013455360196530819, -0.023982243612408638, -0.014969355426728725, -0.009851627051830292, -0.03610841557383537, -0.025617074221372604, 0.02601511962711811, -0.00884229689836502, -0.024948924779891968, -0.014727684669196606, -0.031019119545817375, 0.009254558943212032, -0.013306093402206898, 0.03798491507768631, 0.0035450931172817945, -0.014549985527992249, -0.022958697751164436, 0.035170167684555054, 0.0012661046348512173, 0.02425234578549862, 0.012282547540962696, -0.010512666776776314, -0.007776103913784027, 0.033947598189115524, -0.028019562363624573, -0.028545551002025604, 0.011237678118050098, -0.025816095992922783, -0.00502177095040679, -0.01127321831882, 0.00942514929920435, -0.008835189044475555, 0.0010901826899498701, 0.00038671723450534046, -0.009880058467388153, -0.023655276745557785, -0.018466468900442123, -0.0034900063183158636, 0.03707509860396385, 0.005529989954084158, 0.01985962875187397, 0.0235699824988842, -0.009844519197940826, -0.005270549561828375, -0.008714353665709496, -0.012765889056026936, -0.0117494510486722, 0.015168378129601479, -0.009048428386449814, 0.02088317461311817, 0.00013916044554207474, 0.024465585127472878, 0.007619728799909353, -0.01836695894598961, -0.017840970307588577, 0.0006454912363551557, 0.0015139946481212974, -0.007896939292550087, 0.00958152487874031, 0.007232345174998045, 0.0250342208892107, 0.028374960646033287, 0.017457140609622, -0.006322526838630438, 0.00134873460046947, 0.00010545318946242332, 0.017698809504508972, -0.004570415709167719, -0.013448252342641354, 0.018523333594202995, 0.004797870293259621, -0.03391916677355766, -0.00809596199542284, 0.012062201276421547, -0.001806309330277145, 0.00654998142272234, 0.016490457579493523, -0.03684764355421066, -0.03767216578125954, 0.004851180128753185, 0.011742343194782734, 0.018679708242416382, -0.027593085542321205, -0.01983119733631611, -0.015466912649571896, 0.012104849331080914, -0.016106627881526947, -0.03292405232787132, 0.004812086001038551, -0.021139061078429222, -0.00992270652204752, 0.0024842305574566126, 0.0021181709598749876, 0.04333009943366051, 0.005462463945150375, 0.0025801879819482565, -0.0235699824988842, -0.024138618260622025, -0.025091083720326424, -0.020143946632742882, -0.02162240259349346, -0.007506001275032759, 0.0504380539059639, 0.01937628723680973, 0.017826752737164497, 0.005231455434113741, 0.02156553789973259, -0.014812979847192764, 0.0036392733454704285, -0.008728570304811, -0.015012002550065517, -0.015523775480687618, -0.005146160256117582, 0.004261219408363104, 0.009915598668158054, -0.001234118826687336, 0.017485572025179863, 0.025474913418293, -0.008138609118759632, 0.023939596489071846, -0.02890094928443432, 0.0007667707395739853, -0.015580639243125916, -0.05100669339299202, -0.03625057637691498, 0.00930431392043829, -0.003745892783626914, -0.0020310983527451754, -0.049869418144226074, -0.0052492255344986916, 0.010036434046924114, -0.006176813505589962, -0.0070368763990700245, 0.006439808290451765, 0.03940650820732117, -0.01005775760859251, 0.04608798772096634, 0.014685036614537239, 0.00858641043305397, 0.0011052871122956276, -0.018551765009760857, -0.01966060698032379, 0.0012039100984111428, 0.01815371960401535, 0.0046592652797698975, 0.014685036614537239, -0.010235456749796867, 0.0022976468317210674, -0.005444694310426712, 0.012403382919728756, -0.013455360196530819, -0.015068866312503815, -0.008131501264870167, -0.01509729865938425, -0.013533548451960087, -0.036648619920015335, -3.559531251084991e-05, 0.00859351921826601, -0.004872503690421581, 0.000311639450956136, 0.008856513537466526, 0.017329197376966476, -0.030024005100131035, -0.011230570264160633, 0.0033567321952432394, -0.00930431392043829, 0.0500684417784214, 0.025389619171619415, 0.025801880285143852, 0.008799649775028229, -0.0014322531642392278, -0.0021217248868197203, 0.004111952614039183, 0.007626836653798819, -0.013888945803046227, 0.011856070719659328, 0.03457309678196907, -0.014080860652029514, -0.0031630403827875853, -0.0011559313861653209, 0.0010395385324954987, -0.009133723564445972, -0.0117849912494421, 0.05018216744065285, 0.025929823517799377, 0.020712584257125854, -0.02942693792283535, -0.007314086891710758, -0.028374960646033287, -0.004342961125075817, -0.010576638393104076, 0.010946252383291721, 0.01812528818845749, -0.023612629622220993, -0.012339411303400993, 0.02037140168249607, -0.015296321362257004, 0.028972027823328972, 0.016860071569681168, -0.0017565536545589566, -0.0013354072580114007, 0.015410048887133598, -0.007818751968443394, 0.0036890292540192604, -0.009169262833893299, 0.02112484537065029, -0.014784548431634903, 0.006255001295357943, 0.011237678118050098, 0.0066246148198843, -0.014414934441447258, -0.008984456770122051, 0.0001549312291899696, 0.02769259735941887, 0.0015975130954757333, 0.0010306535987183452, 8.579524546803441e-06, -0.042818326503038406, 0.018693923950195312, -0.011131059378385544, 0.011344297789037228, -0.002951578702777624, -0.019916493445634842, -0.006823637522757053, 0.02153710648417473, 0.018281662836670876, 0.011564644053578377, 0.0014349186094477773, -0.006606845185160637, -0.024835197255015373, 0.02619992569088936, -0.018295878544449806, 0.010725905187427998, -0.04170948639512062, -0.016604185104370117, -0.019461583346128464, -0.0013762779999524355, 0.01236784365028143, -0.008238120935857296, -0.0012358957901597023, 0.010690365917980671, 0.019490014761686325, -0.015864957123994827, -0.015808094292879105, -0.019774332642555237, -0.018580196425318718, -0.03977612033486366, 0.016788991168141365, -0.005462463945150375, 8.343518857145682e-06, 0.0052385637536644936, -0.002644159598276019, -0.040344759821891785, -0.0050004469230771065, 0.019433151930570602, 0.009808978997170925, -0.0018320756498724222, 0.02106798067688942, 0.04930078238248825, 0.01396713312715292, 0.005227901507169008, -0.009709468111395836, -0.007861399091780186, 0.01420880388468504, -0.008138609118759632, 0.005117728374898434, 0.008614842779934406, -0.0042789895087480545, 0.0003813862567767501, -0.01373257115483284, 0.014741900376975536, -0.008294984698295593, -0.051831215620040894, -0.03383386880159378, 0.0009649050189182162, 0.021181708201766014, -0.016277218237519264, -0.019049322232604027, -0.02402489073574543, -0.017258116975426674, -0.021224357187747955, 0.02081209421157837, 0.011671263724565506, 0.015154162421822548, 0.005778768099844456, -6.7331225181987975e-06, 0.006667262874543667, 0.025446482002735138, -0.009432257153093815, -0.02774946019053459, -0.03258287161588669, 0.00014715689758304507, -0.021522890776395798, -0.021167492493987083, -0.011678371578454971, 0.0184096060693264, -0.014784548431634903, -0.04347226023674011, -0.029853414744138718, -0.030052438378334045, -0.031189709901809692, -0.026896504685282707, -0.023243015632033348, 0.018239015713334084, 0.07068151235580444, 0.02378321997821331, -0.0059351432137191296, 0.017954695969820023, -0.008380279876291752, 0.01078987680375576, -0.01664683222770691, 0.012936479412019253, 0.010441587306559086, -0.01593603752553463, 0.02716660685837269, -0.032497573643922806, -0.050892964005470276, -0.006059532519429922, 0.016234571114182472, 0.011401161551475525, 0.036620188504457474, 0.018693923950195312, -0.026157278567552567, -0.001047534984536469, -0.00440693274140358, -0.012083524838089943, 0.007171927485615015, -0.00508218863978982, 0.008422927930951118, -0.0382123701274395, 0.0046237255446612835, 0.026896504685282707, 0.016334082931280136, 0.0033265233505517244, 0.009119507856667042, 0.020456697791814804, -0.00478365458548069, 0.010334967635571957, -0.02500578947365284, -0.017514003440737724, 0.007449137978255749, -0.03363484889268875, 0.041538894176483154, 0.013618843629956245, 0.013341633602976799, 0.023356743156909943, -0.013021775521337986, -0.0023296326398849487, -0.01067615021020174, 0.029071539640426636, -0.01361173577606678, -0.024877846240997314, 0.025588640943169594, -0.020030219107866287, -0.0013078638585284352, 0.012630837969481945, -0.0021803653798997402, -0.0059600211679935455, -0.02504843659698963, -0.013434036634862423, -0.016092412173748016, -0.003287429688498378, -0.0014198141871020198, 0.02644159644842148, -0.04043005406856537, -0.026896504685282707, 0.008479791693389416, -0.006493117660284042, 0.009119507856667042, 0.01786940172314644, -0.02571658417582512, 0.00029520230600610375, 0.00131941435392946, -0.0029178159311413765, -0.0132492296397686, -0.02302977815270424, 0.00954598467797041, -0.002402489073574543, -6.896938430145383e-05, 0.010690365917980671, 0.19072067737579346, -0.0117849912494421, -0.0028325205203145742, 0.023740572854876518, -0.008394495584070683, 0.003909375984221697, -0.024223914369940758, 0.009617064148187637, -0.012033769860863686, 0.04068594053387642, 0.017599299550056458, 0.014770332723855972, 0.010406047105789185, -0.01200533751398325, 0.014812979847192764, 0.0034722364507615566, -0.038894735276699066, -0.02747935801744461, -0.0286592785269022, -0.024394504725933075, -0.02747935801744461, -0.02034297026693821, 0.004858287982642651, -0.009247451089322567, 0.028275448828935623, 0.00884229689836502, -0.0001959130313480273, 0.00527765741571784, 0.03042205236852169, 0.015068866312503815, -0.021778777241706848, 0.0020257674623280764, 0.022503789514303207, -0.011692587286233902, 0.007491785567253828, -0.01396713312715292, 0.027038663625717163, -0.007004890590906143, 0.018679708242416382, 0.014095076359808445, -0.00034140399657189846, -0.023100856691598892, 0.03064950555562973, -0.02573079988360405, -0.036705486476421356, -0.004851180128753185, -0.0017689925152808428, -0.012950696051120758, 0.02256065234541893, 0.013163934461772442, -0.010135944932699203, 0.04529189690947533, 0.0291710514575243, 0.029483800753951073, 0.01620613969862461, -0.03278189152479172, -0.0022123511880636215, -0.009723683819174767, -0.02206309512257576, 0.008984456770122051, -0.020741015672683716, 0.017698809504508972, 0.012908047996461391, 0.006581967230886221, -0.031530894339084625, 0.010441587306559086, -0.004570415709167719, -0.01613505929708481, 0.005235009361058474, -0.02034297026693821, 0.02521902695298195, -0.029796551913022995, -0.013682815246284008, 0.021508675068616867, -0.007363842334598303, -0.022518005222082138, 0.007548649329692125, 0.02007286809384823, 0.03801335021853447, 0.034430939704179764, -0.0019155940972268581, 0.008806757628917694, -0.022148391231894493, -0.010498451068997383, -0.038837872445583344, -0.03116127848625183, 0.016504673287272453, -0.00037805442116223276, -0.008671706542372704, -0.011038655415177345, -0.0337485745549202, -0.005633055232465267, -0.016973799094557762, 0.009851627051830292, -0.01127321831882, -0.014997786842286587, 0.015580639243125916, -0.0019351410446688533, 0.000768103520385921, -0.019987571984529495, -0.04298891872167587, 0.0754011943936348, 0.011557536199688911, -0.01029942836612463, -0.03875257447361946, -0.020655719563364983, 0.016476241871714592, 0.019944924861192703, 0.004446026403456926, -0.004065750632435083, -0.006603291258215904, -0.04185164347290993, -0.010498451068997383, -0.015609071590006351, 0.014670820906758308, 0.02162240259349346, 0.025872958824038506, 0.0026192818768322468, -0.0010502005461603403, -0.027067096903920174, 0.004236341919749975, 0.012915155850350857, -0.001988450763747096, 0.004577523563057184, -0.017329197376966476, -0.022219469770789146, 0.0022976468317210674, -0.013640167191624641, -0.0018676153849810362, -0.02993871085345745, 0.01434385497123003, 0.0020879621151834726, 0.017940480262041092, -0.01812528818845749, -0.00508218863978982, 0.01966060698032379, 0.015765447169542313, -0.012218575924634933, -0.0011701472103595734, 0.008302092552185059, -0.01164994016289711, 0.007385166361927986, 0.0169453676789999, -0.0007214575307443738, -0.004200802184641361, -0.024408720433712006, 0.017073310911655426, 0.01285829208791256, -0.015139945782721043, -0.01081120129674673, -0.004691251087933779, -0.012012445367872715, -0.003269659820944071, 0.013505116105079651, 0.03798491507768631, 0.0029906723648309708, -0.014656605198979378, -0.048021350055933, 0.005373614840209484, -0.010953360237181187, -0.03281032294034958, 0.010356292128562927, 0.039861418306827545, -0.004296759609133005, -0.026640618219971657, 0.005494449753314257, -0.18389703333377838, 0.015580639243125916, 0.010640610009431839, -0.016817424446344376, 0.0143296392634511, 0.003642827505245805, -0.014784548431634903, -0.0023012007586658, -0.008806757628917694, -0.007015552371740341, 0.011180814355611801, -0.0038525122217833996, -0.015310537070035934, 0.015253673307597637, 0.01176366675645113, -0.005167483817785978, 0.006581967230886221, 0.0033940488938242197, 0.03283875808119774, 0.017272332683205605, 0.03329366445541382, -0.03343582525849342, -0.002704577287659049, -0.005498004145920277, -0.014969355426728725, 0.017286548390984535, -0.03895159810781479, 0.002910708077251911, 0.01593603752553463, -0.01640516147017479, -0.01695958338677883, 0.01616349257528782, 0.015737013891339302, 0.0028876070864498615, 0.020897390320897102, 0.0016650386387482285, -0.007818751968443394, -0.0034935602452605963, -0.004844071809202433, 0.018267447128891945, 0.013384280726313591, 0.03946337103843689, 0.007363842334598303, 0.015537992119789124, -0.011095519177615643, 0.02132386714220047, 0.062379419803619385, 0.020399833098053932, 0.0017076864605769515, -0.001445580506697297, -0.013931593857705593, -0.028019562363624573, 0.0030581981409341097, 0.006528657395392656, 0.008600627072155476, 0.02010129950940609, 0.016746344044804573, -0.0173860602080822, -0.005434032529592514, -0.009595740586519241, 0.008543763309717178, -0.008294984698295593, -0.003571747802197933, -0.02129543572664261, -0.010150161571800709, -0.008678814396262169, -0.014642389491200447, 0.020016003400087357, -0.011415377259254456, 0.01958952657878399, -0.012225684709846973, 0.029085755348205566, -0.0017796545289456844, 0.009673927910625935, 0.0023225245531648397, 0.00784007553011179, -0.03698980435729027, 0.01958952657878399, 0.013171042315661907, -0.00478010019287467, 0.007861399091780186, 0.03772902861237526, -0.007548649329692125, 0.019760116934776306, 9.623506048228592e-05, -0.0070262146182358265, 0.00833052396774292, 0.009062644094228745, 0.0027259010821580887, -0.0031719254329800606, 0.026612186804413795, -0.013505116105079651, 0.011244785971939564, -0.0096810357645154, 0.02035718597471714, 0.0027241241186857224, 0.0031523783691227436, 0.020769447088241577, 0.009062644094228745, -0.02575923316180706, -0.014379395171999931, 0.005327412858605385, -0.02207731083035469, 0.015267889015376568, 0.03317993879318237, 0.014372287318110466, -0.017229685559868813, -0.008884944953024387, 0.04591739550232887, -0.019191481173038483, 0.009979570284485817, 0.005146160256117582, 0.011415377259254456, 0.012801428325474262, -0.012673485092818737, 0.023100856691598892, 0.011195030994713306, -0.005448248237371445, 0.001434030127711594, 0.0039697932079434395, 0.0514615997672081, -0.012055093422532082, -0.022503789514303207, 0.006937365047633648, -0.021920936182141304, -0.018693923950195312, -0.08478369563817978, -0.0059848991222679615, 0.02624257281422615, 0.008273661136627197, -0.02280232310295105, 0.00355220097117126, 0.008344740606844425, 0.02669748291373253, -0.0060062226839363575, 0.012950696051120758, -0.008849404752254486, -0.03437407687306404, -0.023100856691598892, -0.013412713073194027, 0.006766774225980043, -0.005704134702682495, 0.0015504228649660945, -0.009368285536766052, 0.016746344044804573, 0.027095528319478035, -0.016263002529740334, -0.022674379870295525, 0.009233234450221062, -0.0015433148946613073, -0.03266816586256027, 0.001776988967321813, -0.03238384798169136, 0.012559758499264717, -0.0016037325840443373, 0.010292320512235165, 0.02204887941479683, -0.018310094252228737, 0.0019493568688631058, -0.010868065059185028, -0.00656775152310729, 0.004630833398550749, -0.035198599100112915, 0.007655268535017967, 0.014414934441447258, -0.03946337103843689, 0.023228799924254417, 0.027792107313871384, 0.011742343194782734, -0.04543405398726463, -9.540209430269897e-05, -0.02058464102447033, -0.010477127507328987, 0.04239184781908989, 0.0002774324093479663, -0.028730358928442, -0.013291877694427967, 0.008536655455827713, -0.01042026374489069, -0.025560209527611732, 0.03292405232787132, 0.0033407392911612988, 0.0020399834029376507, 0.024209698662161827, -0.01866549253463745, 0.018807651475071907, -0.014073752798140049, -0.014436258934438229, -0.009346961975097656, -0.005458910018205643, 0.010512666776776314, 0.007825859822332859, -0.02081209421157837, -0.02008708380162716, 0.023143503814935684, -0.0003080854658037424, -0.019219912588596344, 0.011962689459323883, -0.019745901226997375, -0.011984013952314854, -0.0184096060693264, 0.007399382069706917, -0.012211468070745468, -0.039349645376205444, -0.002546425210312009, -0.0024042660370469093, -0.0031808102503418922, -0.024849414825439453, -0.005906711332499981, -0.009908490814268589, 0.016291435807943344, 0.017798321321606636, 0.006958689074963331, 0.0015699698124080896, -0.006997782737016678, -0.039378076791763306, 0.0070368763990700245, 0.0038382962811738253, 0.01311417855322361, -0.0050146630965173244, -0.01639094576239586, 0.030791664496064186, 0.029540665447711945, -0.010704581625759602, -0.004261219408363104, 0.0070830779150128365, -0.03460152819752693, -0.02037140168249607, -0.07528746873140335, 0.03278189152479172, 0.014308315701782703, 0.019703254103660583, -0.00944647379219532, -0.008863621391355991, -0.002715239068493247, -0.0023811652790755033, -0.008543763309717178, 0.034686826169490814, -0.0003218571364413947, 0.024195482954382896, 0.00594935892149806, -0.0042683277279138565, -0.004566861782222986, -0.013227906078100204, 0.021025333553552628, 0.008223905228078365, 0.012886724434792995, -0.020442482084035873, 0.004026656970381737, -0.006347404792904854, 0.010747229680418968, 0.020527776330709457, 0.006720572244375944, 0.004804978147149086, -0.00905553624033928, 0.01859441213309765, -0.019802765920758247, -0.025688152760267258, 0.013206582516431808, -0.016106627881526947, -0.003498891368508339, 0.03181521221995354, -0.01937628723680973, -0.026114629581570625, 0.023143503814935684, 0.01312839426100254, 0.01570858247578144, -0.003227011999115348, -0.00981608685106039, -0.01410218421369791, 0.0077476720325648785, -0.03187207505106926, -0.009062644094228745, -0.009808978997170925, -0.020001787692308426, 0.0067525580525398254, -0.008273661136627197, 0.003138162661343813, 0.023370958864688873, -0.003205688204616308, -0.04136830195784569, -0.035397619009017944, -0.0012385613517835736, -0.029114186763763428, 0.022205254063010216, 0.009901382960379124, 0.01458552572876215, -0.006589075084775686, 0.04804978147149086, -0.00011028438166249543, 0.038354530930519104, -0.014457582496106625, 0.011322974227368832, -0.0011896941578015685, -0.012552650645375252, -0.012211468070745468, 0.006486009806394577, -0.027820538729429245, 0.002077300101518631, -0.026185709983110428, -0.006468239706009626, 0.02870192565023899, -0.0012909824727103114, 0.019546879455447197, -0.004264773800969124, 0.012325195595622063, -0.0021483798045665026, 0.030763233080506325, 0.024877846240997314, -0.00717903533950448, -0.014180372469127178, 0.008358956314623356, -0.003022658172994852, 0.01248157024383545, -0.026882288977503777, 0.016589969396591187, -0.0059351432137191296, 0.0057219043374061584, -0.026853857561945915, 0.0027952035889029503, -0.01176366675645113, -0.002669037552550435, 0.023456254974007607, 0.020982686430215836, -0.005622392985969782, 0.015850741416215897, 0.01818215101957321, 0.013498008251190186, 0.013910269364714622, -0.008067529648542404, -0.023171937093138695, -0.034715257585048676, -0.030507346615195274, -0.016035549342632294, -0.03113284707069397, -0.03852512314915657, 0.002185696503147483, -0.0028271893970668316, -0.00906975194811821, 0.004293205216526985, 0.014009781181812286, 0.020300323143601418, -0.0019955586176365614, 0.0019600188825279474, 0.0164335947483778, -0.007370950188487768, -0.04682721570134163, 0.03849668800830841, 0.004015995189547539, -0.001325633842498064, 0.021394947543740273, 0.007882723584771156, 0.02742249332368374, -0.0024238131009042263, 0.025816095992922783, -0.006208799313753843, 0.005053756758570671, -0.022191038355231285, 0.0042896512895822525, 0.00017769889382179826, -0.013938701711595058, -0.023370958864688873, -0.01396713312715292, -0.01055531483143568, 0.0030848528258502483, 0.022119959816336632, 0.011322974227368832, 0.09047006070613861, 0.013881837949156761, -0.02085474319756031, -0.013512223958969116, -0.0017529996111989021, 0.015566423535346985, 0.019689038395881653, 0.02529010735452175, 0.006887609139084816, -0.03627900779247284, 0.010015109553933144, 0.001721902284771204, -0.012410490773618221, -0.023214584216475487, -0.01262373011559248, 0.006944472901523113, 0.0027543329633772373, 0.018821867182850838, 0.013263446278870106, -0.015267889015376568, 0.01811107248067856, -0.009944030083715916, 0.02081209421157837, 0.0218498557806015, -0.010214133188128471, -0.007953803054988384, 0.01671791262924671, 0.011365621350705624, -0.022489571943879128, -0.020684150978922844, 0.004023103043437004, -0.01396713312715292, -0.01212617289274931, -0.019973356276750565, 0.0053096432238817215, -0.003289206651970744, -0.022631730884313583, -0.008017774671316147, 0.0025393173564225435, 0.009105291217565536, -0.000433585315477103, -0.001458019483834505, -0.031758345663547516, -0.014557093381881714, -0.0016525997780263424, -0.018537549301981926, -0.004122614394873381, -0.018295878544449806, -0.021480243653059006]}, "text_id_to_ref_doc_id": {"03a7050b-f0d8-4a33-b9e8-d4f82439cca0": "d6496709-cfc5-4485-93e6-2c6905c9d395", "33630944-a8b9-4d7e-8d3f-0381d2c4e586": "d6496709-cfc5-4485-93e6-2c6905c9d395", "69adae88-db95-4f48-81df-ac19ca8077e3": "7bc79ea6-68b3-4bf5-8112-31e1aa58d448", "21d0b6b7-28cf-437e-aef6-522813d4e0a1": "7bc79ea6-68b3-4bf5-8112-31e1aa58d448", "792e2728-bdc4-4e54-ad72-55e359056616": "57018674-bf81-4ad7-940b-47bc8f22a82b", "6f1adeda-e4d0-4b96-b2f1-57def8904cb6": "57018674-bf81-4ad7-940b-47bc8f22a82b", "07aa42dc-7b17-4b9f-848a-181c4ec7e77f": "04678987-bdb0-4922-a081-c6066b190cff", "d14ad41a-0e46-4fb9-b979-8973ba836de4": "04678987-bdb0-4922-a081-c6066b190cff", "e5834cdd-0e9d-484d-a7e8-721644c8e119": "130a58d8-6265-4783-b0a6-056344dacdb8", "4cc6e453-d8cb-4316-9f00-1ad8fc6152ad": "130a58d8-6265-4783-b0a6-056344dacdb8", "975881aa-a45e-4b2c-83a8-bd6932e4a819": "bd4335e6-72c5-40f0-ac46-bfd30bc3b26f", "26d56212-a665-414f-803a-387a807bffa0": "0bd2d94e-126a-4644-8989-aa46455d3788", "ca972543-cc22-4e27-a596-6492703c69ce": "0bd2d94e-126a-4644-8989-aa46455d3788", "02048f03-be3c-4ebf-9383-5e85fd3356e1": "d09c18d3-ac4b-4719-a3f1-9ca73015e9c2", "9cf96cfc-0673-4806-b906-e4dab4f6aa0e": "d09c18d3-ac4b-4719-a3f1-9ca73015e9c2", "9b16e0e5-8641-4e16-a4f7-67130cdd3a59": "ce7f46b5-953b-4cb8-b961-183b46bc7645", "7f0dd2c8-c705-447e-b1f0-55556cf61ad4": "ce7f46b5-953b-4cb8-b961-183b46bc7645", "7ce57955-6637-4a9a-85e0-3b8d16306141": "597ca512-6f36-4807-b986-4a1d5acc33ca", "ffdf9f90-fc3a-4461-a76f-81e03fe84ba5": "597ca512-6f36-4807-b986-4a1d5acc33ca", "626bf733-83e0-4372-99f9-1dbf3c28ba09": "1ba7a349-4a28-4423-a013-05d8defe7065", "d5075358-1c6e-4cea-9e52-089839227b0b": "1ba7a349-4a28-4423-a013-05d8defe7065", "c50c0de2-ac18-4cd7-b256-ada4437b2bda": "c48683dc-f64e-4689-bcba-15ef3e12b199", "01024302-ea9b-4c9e-a828-a1993457fb64": "c48683dc-f64e-4689-bcba-15ef3e12b199", "097a8045-83e3-4b75-a50f-f1d632d4b401": "6ca3f6f6-9ccc-4ee4-9af0-15bb8ed19623", "323c8c4a-7364-4ad8-82c9-ed3deb9eca73": "6ca3f6f6-9ccc-4ee4-9af0-15bb8ed19623", "076e6fd8-44dc-4bac-89f1-37a0041f2c11": "2db441ba-005f-47fc-ab87-96ebe48bb427", "6b452ef4-8877-4949-bb83-18edbabbfb58": "468db9da-7f2c-458a-8e4b-a209e0ccb1ad", "7bd9db26-5333-49d3-acfe-b320ad60a235": "468db9da-7f2c-458a-8e4b-a209e0ccb1ad", "279ac7d5-3dfe-4ac0-90e5-1e530831058a": "00e68c43-8f2c-4ed5-b5ec-e0c71b8f3819", "ffbb83c4-370e-4692-826e-a86bbef48dc1": "00e68c43-8f2c-4ed5-b5ec-e0c71b8f3819", "57762e71-1462-4735-8d07-d94672b8c357": "61eb3840-5d98-4260-8e52-318ba943edcf"}} \ No newline at end of file diff --git a/index_v2/RetroApril/docstore.json b/index_v2/RetroApril/docstore.json new file mode 100644 index 0000000000000000000000000000000000000000..7dba7ea43330d620ce8d6f0a8361a38fe40d076f --- /dev/null +++ b/index_v2/RetroApril/docstore.json @@ -0,0 +1 @@ +{"docstore/metadata": {"63d1ea33-de62-4f70-aa17-a7baa26dfda2": {"doc_hash": "c887b232206a41195c5cf60cd00fe1bb0b7eff58ee1962b3612af232fe942f32"}, "ca89df45-3d44-4632-b9a2-7836092e87ba": {"doc_hash": "dd2dfed92adb82b10c64961aaff6ba93858d4971e58388a01664ef9049549d99", "ref_doc_id": "63d1ea33-de62-4f70-aa17-a7baa26dfda2"}, "3a8eb4f1-15ea-4bc5-a162-5bb0f138c7b4": {"doc_hash": "72c17bb47222cdc96b8c82106be0f9b62936b03fb228631a9160736f82aec2ba", "ref_doc_id": "63d1ea33-de62-4f70-aa17-a7baa26dfda2"}, "a4175538-d318-49d4-a475-63a529b105c2": {"doc_hash": "e85e65d8d4567b1edd7c88ac1a3e0219181800ecf72d329ac19aac3849283363", "ref_doc_id": "63d1ea33-de62-4f70-aa17-a7baa26dfda2"}, "c35de880-d504-4213-a0cd-ca365e98ddff": {"doc_hash": "c8514793a62f1021f145bce65c10cc063eb3aeda717970b890d92977fed6e683", "ref_doc_id": "63d1ea33-de62-4f70-aa17-a7baa26dfda2"}}, "docstore/data": {"ca89df45-3d44-4632-b9a2-7836092e87ba": {"__data__": {"text": "Primary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, What went well in this release?, Edit and update sentiment feature - everything was available on time which helped to develop and give it to QA on time.\nPrimary User, What didn't go well in this release?, Nothing as such \nPrimary User, To improve our execution what should we add?, Nothing as such\nPrimary User, To improve our execution what should we DROP?, Nothing as such\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Moderate\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., Automation sprint .\nAutomate some of cust/qa found bugs.\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, What went well in this release?, In this sprint, I worked on the Ask AI modal, and it went really well. \nThanks to @meaghanli for her quick UX review and for highlighting a few UX issues.\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Good\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Hazy, needed to work with PM for clarity\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., Some edge cases needed more definition, as well as what would happen when certain menu options are actioned. We should move towards using Jira to outline clear acceptance criteria for all projects instead of solely relying on Figma.\nPrimary User, What didn't go well in this release?, Several features are only ready for UX review right before the end of the release, or even after the last day of the release. This makes it impossible to ensure product quality in time for the release, especially because UI needs 1 week to action UX review fixes.\nEither:\n1. Release cycles need to be longer\n2. Or we make structural changes so that items are ready for UX review AT LEAST 1\u20132 weeks before the end of the release\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Moderate\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, We could make progress on UX Redesign/Quality issues in 0.9.10. There was pause on this for few releases\nPrimary User, To improve our execution what should we add?, It would be great if we had add backlog of features/POCs to pick from incase if certain feature is deprioritized or we cant start on some feature due to dependencies. We did get UX Quality issues from Meaghan which were helpful in filing the bandwidth for 0.9.10\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, 50-50\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., Since the quarter planning also started when the release started, we had to pick some existing tech debt/spill items.\nPrimary User, What went well in this release?, - Able to pick some tech debts\n- Able to clear and pick items from backlog\nPrimary User, What didn't go well in this release?, - Quarter planning impacted the release planning\nPrimary User, To improve our execution what should we add?, - Plan ahead\n- Have a healthy backlog\nPrimary User, To improve our execution what should we DROP?, - None\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What didn't go well in this release?, nan\nPrimary User, To improve our execution what should we add?, nan\nPrimary User, To improve our execution what should we DROP?, nan\nPrimary User, As a", "doc_id": "ca89df45-3d44-4632-b9a2-7836092e87ba", "embedding": null, "doc_hash": "dd2dfed92adb82b10c64961aaff6ba93858d4971e58388a01664ef9049549d99", "extra_info": null, "node_info": {"start": 0, "end": 4348, "_node_type": "1"}, "relationships": {"1": "63d1ea33-de62-4f70-aa17-a7baa26dfda2", "3": "3a8eb4f1-15ea-4bc5-a162-5bb0f138c7b4"}}, "__type__": "1"}, "3a8eb4f1-15ea-4bc5-a162-5bb0f138c7b4": {"__data__": {"text": "User, To improve our execution what should we DROP?, nan\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Good\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., nan\nPrimary User, What went well in this release?, nan\nPrimary User, What didn't go well in this release?, nan\nPrimary User, To improve our execution what should we add?, nan\nPrimary User, To improve our execution what should we DROP?, nan\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Good\nPrimary User, As a member of the product management team, please explain your choice in the previous response., nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, What went well in this release?, Good pace throughout the release. Dev testing/bug bash went really well, I think it helps to keep accountability high. UX reviews also useful for the same reasons\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Very Good\nPrimary User, As a member of the product management team, please explain your choice in the previous response., This may have been sent to me by mistake as I don't think I am a member of product management(?), but I think we hit the sweet spot between workload and time in order to deliver quality results.\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What didn't go well in this release?, Few hiccups while releasing the new slack integrator service, need to get to the cause.\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Good\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., nan\nPrimary User, What went well in this release?, nan\nPrimary User, What didn't go well in this release?, nan\nPrimary User, To improve our execution what should we add?, nan\nPrimary User, To improve our execution what should we DROP?, nan\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User, As a member of the product management team, please explain your choice in the previous response., nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, Good progress made on splitting the slack service as an independent one. Thanks to Nayan for handling this. \nNice features like Pulse retro were introduced.\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., nan\nPrimary User, What went well in this release?, nan\nPrimary User, What didn't go well in this release?, nan\nPrimary User, To improve our execution what should we add?, nan\nPrimary User, To improve our execution what should we DROP?, nan\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Good\nPrimary User, As a member of the product management team, please explain your choice in the previous response., nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, nan\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Good\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., Very similar to the previous release. There were no blockers. Designs and backend APIs were ready beforehand (thanks to design and data team again). UI integrations were smooth as well.\nPrimary User, What went well in this release?, Team was able", "doc_id": "3a8eb4f1-15ea-4bc5-a162-5bb0f138c7b4", "embedding": null, "doc_hash": "72c17bb47222cdc96b8c82106be0f9b62936b03fb228631a9160736f82aec2ba", "extra_info": null, "node_info": {"start": 4286, "end": 8754, "_node_type": "1"}, "relationships": {"1": "63d1ea33-de62-4f70-aa17-a7baa26dfda2", "2": "ca89df45-3d44-4632-b9a2-7836092e87ba", "3": "a4175538-d318-49d4-a475-63a529b105c2"}}, "__type__": "1"}, "a4175538-d318-49d4-a475-63a529b105c2": {"__data__": {"text": "were smooth as well.\nPrimary User, What went well in this release?, Team was able to improve code structure and optimise some APIs in the apps services. Consistency in MRs getting reviewed by multiple people, this has been good for some time now I think.\nPrimary User, What didn't go well in this release?, Had to spend some extra time on debugging issues related to pulse responses. \nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, Thought towards smart pulse survey designing and reducing AWS cost .\nPrimary User, What didn't go well in this release?, Deployment didn't go smooth this time other than that mostly things are good .\nPrimary User, To improve our execution what should we add?, Can we use chatGPT for company's knowledge base ? Means all confluence/Swagger(API details) on internal chatGPT server .\nPrimary User, To improve our execution what should we DROP?, nan\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User, As a member of the product management team, please explain your choice in the previous response., nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, - chatbot poc for demo purposes\n- progress on long term chatbot design\n- good design reviews \n- SQL Replica Read support\nPrimary User, What didn't go well in this release?, - Debugging / Fixing Unplanned issues - open ai threshold breach , redis task manager issue and bugs raised as part of testing\nPrimary User, To improve our execution what should we add?, - Better alerting around cost when it crosses certain threshold (month on month) and look for optimizations\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Good\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., Requirement is clear. While building proto-type nature features like chat interface there should be more clarity on to-do or not-to-do because there is a lot of back and forth.\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, - SSO deployments in prod Lvsands & Haleon\n- Chat bot integration\n- Addressed/working on some major tech-debt items from platform\n- Ability to leverage read instance of aurora\n- Slack native for retro without passwordless auth: much seamless than passwordless auth\n- parallel unit test execution brought down overall build time for tenancy from ~20 mins to ~11 mins\n- Snowflake POC\nPrimary User, What didn't go well in this release?, - System tests tear down issue blocking from running system tests completely in parallel we need to resolve the interlocks\n- Issues found during branch-cut and deployment\n- aws spring library for read/read-write took some time to resolve issues\n- We need to find ways to execute flows before UI integration, if it is not possible then we can request UI team to prioritise these flows (if we can identify them) early during release cycle. We had a situation where we found that backend doesn't support a specific flow on day of branch cut. This may be an exception but evaluating such flows early might help avoiding last minute changes.\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Good\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, What went well in this release?, - First 3 sprints had better velocity compared to prior releases\n- Faster time to resolving customer issues thanks to Mohith, Sagarika, Anu and Bhavana\n- Closer to standing up slack as an independent service which will in the long", "doc_id": "a4175538-d318-49d4-a475-63a529b105c2", "embedding": null, "doc_hash": "e85e65d8d4567b1edd7c88ac1a3e0219181800ecf72d329ac19aac3849283363", "extra_info": null, "node_info": {"start": 8750, "end": 13048, "_node_type": "1"}, "relationships": {"1": "63d1ea33-de62-4f70-aa17-a7baa26dfda2", "2": "3a8eb4f1-15ea-4bc5-a162-5bb0f138c7b4", "3": "c35de880-d504-4213-a0cd-ca365e98ddff"}}, "__type__": "1"}, "c35de880-d504-4213-a0cd-ca365e98ddff": {"__data__": {"text": "Closer to standing up slack as an independent service which will in the long run help with handling scale\nPrimary User, What didn't go well in this release?, nan\nPrimary User, To improve our execution what should we add?, - Bug backlog needs to be factored in along with features\n- Focus more on unit tests as that seemed to be the prominent RCA for bugs\nPrimary User, To improve our execution what should we DROP?, nan\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, We were able to clear some of the tech backlog which we weren't able to prioritise earlier\nPrimary User, To improve our execution what should we add?, Developers should add more system tests for the new features going in.\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, nan\nPrimary User, To improve our execution what should we add?, - Need to track and close Retro AIs more actively\n- Need to actively address failing system tests\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan", "doc_id": "c35de880-d504-4213-a0cd-ca365e98ddff", "embedding": null, "doc_hash": "c8514793a62f1021f145bce65c10cc063eb3aeda717970b890d92977fed6e683", "extra_info": null, "node_info": {"start": 13039, "end": 14437, "_node_type": "1"}, "relationships": {"1": "63d1ea33-de62-4f70-aa17-a7baa26dfda2", "2": "a4175538-d318-49d4-a475-63a529b105c2"}}, "__type__": "1"}}, "docstore/ref_doc_info": {"63d1ea33-de62-4f70-aa17-a7baa26dfda2": {"doc_ids": ["ca89df45-3d44-4632-b9a2-7836092e87ba", "3a8eb4f1-15ea-4bc5-a162-5bb0f138c7b4", "a4175538-d318-49d4-a475-63a529b105c2", "c35de880-d504-4213-a0cd-ca365e98ddff"], "extra_info": {}}}} \ No newline at end of file diff --git a/index_v2/RetroApril/index_store.json b/index_v2/RetroApril/index_store.json new file mode 100644 index 0000000000000000000000000000000000000000..98165b2064e9d02a0f107242578a8487f6d7f859 --- /dev/null +++ b/index_v2/RetroApril/index_store.json @@ -0,0 +1 @@ +{"index_store/data": {"10ba57c0-60ef-4eb4-ae85-99cc7d2380a6": {"__type__": "vector_store", "__data__": "{\"index_id\": \"10ba57c0-60ef-4eb4-ae85-99cc7d2380a6\", \"summary\": null, \"nodes_dict\": {\"ca89df45-3d44-4632-b9a2-7836092e87ba\": \"ca89df45-3d44-4632-b9a2-7836092e87ba\", \"3a8eb4f1-15ea-4bc5-a162-5bb0f138c7b4\": \"3a8eb4f1-15ea-4bc5-a162-5bb0f138c7b4\", \"a4175538-d318-49d4-a475-63a529b105c2\": \"a4175538-d318-49d4-a475-63a529b105c2\", \"c35de880-d504-4213-a0cd-ca365e98ddff\": \"c35de880-d504-4213-a0cd-ca365e98ddff\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} \ No newline at end of file diff --git a/index_v2/RetroApril/vector_store.json b/index_v2/RetroApril/vector_store.json new file mode 100644 index 0000000000000000000000000000000000000000..f355828ff2f5db2279d6eec424e8a26d72c98b8a --- /dev/null +++ b/index_v2/RetroApril/vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {"ca89df45-3d44-4632-b9a2-7836092e87ba": [0.011531611904501915, 0.000627950590569526, 0.01635592244565487, -0.006762280128896236, -0.022266045212745667, -0.004343253094702959, -0.002690480323508382, -0.00848033931106329, -0.05500537529587746, -0.03724751994013786, 0.01664455607533455, 0.015311341732740402, -0.005992589984089136, -0.008267300203442574, 0.0023090713657438755, -0.005862017162144184, 0.023887893185019493, -0.013895661570131779, -0.011078044772148132, -0.014156806282699108, -0.000497807573992759, 0.0006889416836202145, -0.02254093438386917, 0.02159256488084793, -0.014637862332165241, 0.007270825561136007, 0.018376359716057777, -0.02395661547780037, 0.007325803395360708, 0.005645541939884424, 0.008982012048363686, 0.0030753256287425756, 0.0004655939992517233, 0.021029042080044746, -0.014871519058942795, -0.0011098660761490464, 0.0006777742528356612, 0.00876897294074297, 0.021757498383522034, -0.00019897270249202847, -0.00470748171210289, 0.015874864533543587, 0.013125970959663391, -0.005109507590532303, 0.0008049106691032648, 0.022417234256863594, -0.027076609432697296, 0.023777935653924942, -0.0067244828678667545, 0.009229413233697414, 0.005728008691221476, -0.0010213861241936684, -0.014830285683274269, 0.012170730158686638, -0.00690316129475832, -0.012782358564436436, -0.0027282775845378637, 0.03477351367473602, 0.013469582423567772, -0.008040515705943108, -0.008885800838470459, 0.019833272323012352, -0.0021561640314757824, 0.006920341867953539, 0.007580076344311237, -0.010741304606199265, -0.006803513504564762, -0.013029759749770164, 0.003420655382797122, -0.022362256422638893, 0.007174614351242781, 0.02277459017932415, 0.015641208738088608, 0.025619694963097572, 0.021029042080044746, 0.008858311921358109, 0.0021372654009610415, -0.008817078545689583, -0.004803692921996117, -0.007174614351242781, 0.015256363898515701, 0.009353113360702991, -0.02072666399180889, 0.019214771687984467, -0.0015651517314836383, 0.03930918872356415, 0.01646587811410427, 0.007174614351242781, 0.005143868736922741, -0.017634157091379166, -0.02456137165427208, 0.011882095597684383, 0.030595194548368454, 0.022912034764885902, -0.012651786208152771, 0.018843671306967735, 0.006226245779544115, 0.01632843352854252, -0.005181665997952223, -0.012589936144649982, 0.00016568531282246113, 0.008604039438068867, -0.04791323095560074, -0.008604039438068867, -0.017785346135497093, 0.00729144224897027, -0.018032746389508247, -0.014624117873609066, -0.0001162911212304607, -0.02803872339427471, -0.0006734791095368564, 0.040463726967573166, -0.023736702278256416, -0.018761204555630684, 0.007277697790414095, -0.009277518838644028, 0.0005184243200346828, -0.01609477587044239, 0.002876030746847391, -0.016108520328998566, 0.026183219626545906, -0.0365602970123291, 0.019104816019535065, -0.019860761240124702, 0.010562626644968987, 0.004356997553259134, -0.007360164541751146, 0.00921566877514124, 0.018555037677288055, -0.006191884633153677, 0.016713278368115425, 0.021029042080044746, 0.03419624641537666, -0.007683159783482552, -0.018032746389508247, 0.027117842808365822, -0.03381140157580376, 0.016891956329345703, -0.009717341512441635, -0.018637504428625107, 0.007422015070915222, 0.033646468073129654, 0.01543504185974598, 0.0006554395076818764, 0.011002450250089169, 0.03381140157580376, 0.027708856388926506, -0.017840323969721794, 0.024740049615502357, -0.015503764152526855, 0.007834348827600479, -0.012754869647324085, 0.010919982567429543, 0.008040515705943108, 0.009882275015115738, -0.002738586161285639, -0.007270825561136007, 0.011950818821787834, -0.027200309559702873, -0.01779909059405327, 0.006446157582104206, 0.0034103470388799906, -0.001131341909058392, -0.0070715309120714664, 0.016974423080682755, 0.05387832969427109, 0.01937970519065857, -0.027461454272270203, 0.004054619465023279, -0.00927064660936594, -0.011882095597684383, 0.020575474947690964, -0.015022708103060722, 0.020767897367477417, 0.017867812886834145, -0.007394526153802872, 0.014046850614249706, -0.0211664866656065, -0.022348511964082718, -0.02162005379796028, -0.0026423747185617685, -0.007257081102579832, 0.018664993345737457, 0.019970716908574104, -0.04013385996222496, -0.004848362412303686, 0.034938447177410126, -0.01049390435218811, 0.013627643696963787, 0.0013538304483518004, 0.020657941699028015, 0.0001812552218325436, -0.019819527864456177, -0.014211784116923809, -0.6104744672775269, -0.0028691585175693035, 0.026787975803017616, -0.022128600627183914, 0.010885621421039104, 0.011002450250089169, 0.007270825561136007, 0.02090534195303917, -0.02435520477592945, 0.022444723173975945, -0.004755587317049503, 0.03840205445885658, 0.006525188218802214, -0.0198057834059, -0.027475198730826378, -0.01364826038479805, -0.0013332137605175376, -0.008404744789004326, -0.0073807816952466965, -0.013545176945626736, -0.0257433969527483, 0.024575116112828255, -0.0018520676530897617, -0.004061491694301367, -0.0016484776278957725, -0.02006692998111248, 0.016864467412233353, -0.005164485424757004, -0.008700250647962093, 0.007112764287739992, -0.034855980426073074, 0.025152383372187614, 0.0010901084169745445, -0.002786691766232252, 0.05338352918624878, -0.01764790154993534, -0.01940719410777092, 0.001553125330246985, 0.026760486885905266, 0.03499342501163483, -0.03452611342072487, 0.0008319700718857348, 0.005813911557197571, 0.006246862467378378, 0.005209154915064573, 0.020836619660258293, 0.004222989082336426, 0.0016012309351935983, 0.002011846983805299, 0.01180650107562542, 0.004487569909542799, -0.028134934604167938, -0.013057248666882515, 0.02493247203528881, 0.0002495480584912002, -0.0257433969527483, 0.023709213361144066, 0.00034232327016070485, 0.0009741394314914942, -0.007531970739364624, -0.015407552942633629, -0.006229681894183159, -0.01017778180539608, -0.035433247685432434, -0.03383889049291611, 0.02380542643368244, 0.01788155734539032, -0.03535078093409538, 0.0066351438872516155, -0.01316033210605383, 0.01551750861108303, 0.001992948353290558, -0.01032209862023592, -0.015421297401189804, 0.0053672161884605885, -0.003051272826269269, 0.022582167759537697, -0.018816182389855385, 0.004944573622196913, 0.009992231614887714, -0.007799987681210041, -0.02001195214688778, 0.005508097354322672, -0.00876897294074297, 0.01612226478755474, 0.0033089816570281982, -0.0366702526807785, -0.010335843078792095, -1.0435866215630085e-06, 0.004728098399937153, -0.006294968072324991, 0.013998745009303093, -0.006178140174597502, 0.006624835543334484, -0.005655850283801556, 0.04546671360731125, -0.0065114437602460384, -0.0031646646093577147, 0.016919445246458054, -0.039089277386665344, -0.009023245424032211, -0.004161139018833637, 0.004511622712016106, 0.006573293823748827, 0.04739093780517578, 0.03172224014997482, -0.004477261565625668, -0.0016192706534639, 0.034938447177410126, -0.012198219075798988, 0.008775845170021057, 0.0012077954597771168, -0.017579179257154465, -0.0166170671582222, 0.023283135145902634, -0.025702163577079773, 0.013840683735907078, -0.003087352029979229, 0.005796730984002352, -0.015022708103060722, -6.813177606090903e-05, -0.006525188218802214, 0.02847854606807232, -0.014637862332165241, 0.02508366107940674, 0.0336189791560173, 0.005573383532464504, 0.021084019914269447, 0.012115752324461937, -0.003820963203907013, 0.016479622572660446, -0.030512727797031403, 0.008982012048363686, -0.0027162511833012104, 0.024080315604805946, 0.01940719410777092, 0.0016828387742862105, 0.0004870697157457471, 0.004587217699736357, -0.04615393653512001, -0.006920341867953539, -0.005047657527029514, -0.003180127125233412, -0.020864108577370644, -0.028918368741869926, -0.04535675793886185, -0.015792397782206535, -0.008521572686731815, 0.02145512029528618, -0.0069272140972316265, -0.02185370959341526, -0.01353143248707056, -0.01455539558082819, 0.031804706901311874, -0.003576998831704259, -0.005112943705171347, -0.005068274214863777, -0.044587068259716034, -0.028973346576094627, -0.019860761240124702, -0.012521213851869106, 0.042745307087898254, -0.011119278147816658, -0.010260248556733131, 0.00013110938016325235, -0.00774500984698534, -0.017702879384160042, 0.006861927453428507, -0.004288275260478258, -0.03686267510056496, 0.00243964372202754, -0.002668145578354597, -0.009208796545863152, -0.001864094054326415, -0.0333440899848938, 0.010500776581466198, -0.013627643696963787, -0.006861927453428507, 0.004030566196888685, -0.00285713211633265, 0.011325445026159286, 0.02153758704662323, -0.01052139326930046, -0.002352022798731923, 0.027186565101146698, -0.0004327361239120364, 0.011724034324288368, 0.025702163577079773, -0.01782657951116562, 0.030815105885267258, -0.0009268928552046418, -0.023942871019244194, -0.016823234036564827, 0.011091789230704308, -0.008975139819085598, -0.0181427039206028, -0.02043803036212921, 0.0018623759970068932, -0.025386039167642593, 0.025702163577079773, 0.015311341732740402, 0.012005796656012535, 0.004786512348800898, 0.004088980611413717, 0.016713278368115425, -0.006346509791910648, 0.011703417636454105, -0.01638341136276722, 0.01632843352854252, -0.012500597164034843, 0.01015029288828373, -0.015118919312953949, -0.012644913978874683, -0.03460858017206192, -0.023736702278256416, -0.001587486476637423, 0.012761741876602173, 0.03240946680307388, -0.024149037897586823, 0.007133380975574255, 0.0061815762892365456, 0.012555574998259544, 0.02968806028366089, -0.008322278037667274, 0.007793115451931953, 0.01210888009518385, 0.014280506409704685, 0.019256005063652992, 0.04609895870089531, -0.008851439692080021, -0.0047177900560200214, 0.031309906393289566, 0.027887534350156784, 0.0005489198374561965, 0.036752719432115555, 0.02096031978726387, 0.05574757978320122, -0.012005796656012535, 0.03480100259184837, -0.022211067378520966, 0.01078253798186779, 0.01690570078790188, 0.00174382992554456, -0.0026389386039227247, 0.02761264517903328, -0.03394884616136551, 0.031914662569761276, -0.00806113239377737, -0.031144972890615463, 0.008755228482186794, 0.016713278368115425, -0.008734611794352531, -0.01643838919699192, -0.014802796766161919, 0.006291531957685947, 0.012315046973526478, 0.008301661349833012, 0.011888967826962471, 0.011270467191934586, 0.028286123648285866, 0.006710738409310579, -0.0010102186352014542, 0.028780924156308174, -0.006655760575085878, 0.002479159040376544, 0.018046490848064423, -0.01316033210605383, -0.02695290930569172, -0.018678737804293633, -0.022815823554992676, -0.0016613630577921867, -0.016630811616778374, -0.006339637562632561, 0.005243516061455011, -0.008432233706116676, 0.017290545627474785, -0.010555754415690899, -0.0009475095430389047, -0.00401682173833251, 0.01888490468263626, -0.05231146141886711, -0.012809847481548786, 0.027887534350156784, 0.02856101281940937, -0.008143600076436996, -0.014747818931937218, 0.012198219075798988, -0.0049136485904455185, -0.013668877072632313, 0.02251344546675682, -0.00017749697144608945, -0.006171267945319414, -0.017318034544587135, 0.0020874417386949062, -0.019530894234776497, 0.02343432419002056, 0.04557666927576065, -0.006827566307038069, -0.005082018673419952, -0.0009878838900476694, -0.0074701206758618355, 0.01230817474424839, -0.017702879384160042, -0.014253017492592335, 0.03886936604976654, -0.0003818386176135391, -0.02905581332743168, -0.033728934824466705, -0.008576550520956516, -0.00029164052102714777, 0.015393808484077454, -0.0036251044366508722, -0.021427631378173828, 0.010892493650317192, 0.0034910959657281637, -0.01569618657231331, 0.014514162205159664, -0.007621309719979763, 0.03642285242676735, -0.006264043040573597, -0.03757738694548607, -0.003542637685313821, -0.010631348937749863, 0.017125612124800682, 0.0731755718588829, 0.04142583906650543, 0.009222541004419327, 0.03416875749826431, -0.013957511633634567, 0.01233566366136074, -0.029550615698099136, -0.004697173368185759, 0.03087008371949196, -0.00024589718668721616, -0.014143061824142933, 0.010995578020811081, 0.0009509456576779485, -0.00821919459849596, 0.009545535780489445, 0.00676571624353528, 0.011456017382442951, -0.017180589959025383, -0.020204374566674232, -0.0066007827408611774, 0.016603322699666023, -0.017840323969721794, 0.02637564204633236, 0.013964383862912655, 0.02856101281940937, 0.025386039167642593, 0.034388668835163116, 0.004312328062951565, 0.018115215003490448, -0.018761204555630684, -0.0004900763160549104, 0.039144255220890045, -0.007490737363696098, -0.008700250647962093, -0.025097405537962914, 0.03474602475762367, 0.0106107322499156, -0.00492395693436265, -0.01543504185974598, -0.008610911667346954, 0.010658837854862213, 0.02375044673681259, 0.01790904626250267, -0.01635592244565487, 0.027117842808365822, -0.003278056625276804, 0.005154177080839872, 0.018637504428625107, -0.007992410100996494, -0.01015029288828373, -0.003101096488535404, 0.026251941919326782, -0.01321530994027853, -0.0004892172873951495, -0.0006696134805679321, 0.020053185522556305, 0.0018761204555630684, -0.008466594852507114, -0.006367126479744911, -0.018321381881833076, -0.014624117873609066, 0.0037934742867946625, -0.00011382140655769035, -0.014569140039384365, -0.022994501516222954, -0.005229771602898836, -0.024286482483148575, -0.007325803395360708, -0.02761264517903328, 0.023104457184672356, -0.05024978891015053, -0.0032849288545548916, -0.024341460317373276, 0.01452790666371584, 0.007325803395360708, 0.010383948683738708, 0.0106657100841403, 0.011449145153164864, 0.010569498874247074, 0.002408718690276146, -0.01995697245001793, -0.03444364666938782, 0.01696067862212658, -0.01577865332365036, -0.02527608349919319, -0.002353740856051445, -0.02043803036212921, 0.01190271321684122, -0.015132663771510124, 0.004927393049001694, -0.010370204225182533, 0.00803364347666502, -0.012266941368579865, -0.014431695453822613, 0.014459184370934963, 0.019599616527557373, 0.0018675301689654589, 0.022912034764885902, 0.018678737804293633, -0.02014939673244953, -0.0028347973711788654, -0.014500417746603489, -0.001726649352349341, -0.028093701228499413, 0.0032540038228034973, -0.026884187012910843, -0.0098479138687253, -0.008583422750234604, -0.011943946592509747, -0.02548225037753582, 0.012796103022992611, -0.022417234256863594, -0.012102007865905762, -0.01488526351749897, 0.013222182169556618, -0.0019104816019535065, 0.01751045696437359, 0.036835186183452606, 0.027104098349809647, -0.003405192866921425, -0.003465325105935335, -0.026966653764247894, 0.053740885108709335, 0.016864467412233353, -0.017153101041913033, 0.021757498383522034, 0.00345158064737916, -0.02726903185248375, -0.044092267751693726, 0.015022708103060722, 0.0032007438130676746, 0.01379257719963789, 0.023503046482801437, -0.009854786098003387, -0.011016194708645344, -0.028107445687055588, 0.0023623311426490545, 0.01638341136276722, -0.014830285683274269, -0.0018434773664921522, -0.04692362621426582, 0.022073622792959213, -0.01072756014764309, -0.025056172162294388, -0.003085633972659707, -0.03521333634853363, -0.013593282550573349, 0.015063941478729248, -0.026224453002214432, 0.022183578461408615, -0.02162005379796028, -0.007813732139766216, -0.030017927289009094, -0.00970359705388546, -0.006233118008822203, -0.0212764423340559, 0.0029224182944744825, -0.00018619465117808431, 0.016245966777205467, 0.02392912656068802, 0.03238197788596153, 0.012301302514970303, 0.004058055579662323, 0.013971256092190742, -0.008384128101170063, -0.01386130042374134, 0.0106657100841403, -0.023228157311677933, 2.832112841133494e-05, 0.015572486445307732, 0.014967730268836021, 0.001100416760891676, 0.009078224189579487, -0.005800167098641396, -0.011071172542870045, 0.023599257692694664, -0.017153101041913033, -0.019077327102422714, -0.007511354051530361, -0.024341460317373276, -0.0015574204735457897, 0.013847555965185165, -0.006154087372124195, -0.017029400914907455, -0.02162005379796028, 0.01078253798186779, 0.00927064660936594, 0.002809026511386037, 0.01301601529121399, -0.007854965515434742, 0.029468147084116936, -0.016795745119452477, 0.0027351498138159513, -0.006319020874798298, 0.027117842808365822, -0.005673030856996775, -0.026939164847135544, -0.04991992190480232, 0.00774500984698534, 0.009834169410169125, 0.02985299378633499, 0.022362256422638893, 0.00803364347666502, -0.00578642264008522, 0.003424091497436166, 0.012610552832484245, -0.046951115131378174, -0.0010712097864598036, 0.003401756752282381, -0.017551690340042114, -0.0009749984601512551, -0.004755587317049503, 0.008858311921358109, 0.0016794026596471667, -0.0022403488401323557, 0.00700280861929059, 0.010012848302721977, 0.026911675930023193, -0.010232759639620781, -0.02064419724047184, 0.016575833782553673, -0.016878211870789528, 0.04247041791677475, 0.03229950740933418, 0.02498744986951351, 0.014816541224718094, 0.0106657100841403, -0.038457032293081284, -0.047693319618701935, -0.0007735560648143291, 0.008239811286330223, 0.025963308289647102, 0.027887534350156784, 0.012699891813099384, -0.0033381886314600706, 0.016218477860093117, 0.034388668835163116, -0.020259352400898933, -0.03471853584051132, 0.004655939992517233, 0.015572486445307732, -0.0048964680172502995, -0.011476634070277214, -0.009256902150809765, -0.019860761240124702, 0.01646587811410427, -0.003745368681848049, -0.004972062539309263, 0.018967371433973312, -0.012844209559261799, -0.011366678401827812, 0.04719851538538933, 0.008521572686731815, 0.023200668394565582, 0.010706943459808826, -0.0018675301689654589, 0.00955928023904562, -0.012809847481548786, 0.012486852705478668, 0.00786183774471283, -0.013290904462337494, 0.006329329218715429, -0.005618053022772074, -0.003594179404899478, 0.000993897090665996, 0.02014939673244953, 0.007181486580520868, -0.010129676200449467, 0.001289403298869729, 0.030100394040346146, -0.010954344645142555, -0.006185012403875589, 0.009174435399472713, 0.0002890634350478649, 0.0008139304700307548, -0.015943586826324463, -0.009751702658832073, -0.01583363115787506, -0.011016194708645344, 0.008521572686731815, 0.024052826687693596, 0.004917084705084562, -0.03155730664730072, -0.002721405355259776, -0.0038793771527707577, -0.003291801083832979, 0.028835901990532875, -0.018266404047608376, 0.01111240591853857, -0.034361179918050766, -0.016891956329345703, 0.0033399066887795925, -0.00463532330468297, 0.01426676195114851, -0.02401159331202507, -0.01735926792025566, -0.006538932677358389, 0.017056889832019806, -0.008404744789004326, 0.025344805791974068, 0.0020857236813753843, -0.010115931741893291, -0.05756184831261635, 0.00824668351560831, -0.02640313096344471, -0.0019963844679296017, 0.012390641495585442, -0.026004541665315628, -0.02245846763253212, 0.004817437380552292, 0.010548882186412811, 0.0022059876937419176, -0.024478904902935028, -0.004686865024268627, 0.003820963203907013, 0.027186565101146698, 0.007026861421763897, 0.004508186597377062, -0.02093283087015152, 0.011359806172549725, 0.0024551062379032373, 0.03100752830505371, 0.01370323821902275, 0.016850722953677177, 0.0009707033168524504, -0.017634157091379166, 0.0029069557785987854, -0.004054619465023279, -0.039199233055114746, 0.009373730048537254, -0.001011077780276537, 0.012906059622764587, -0.009105713106691837, 0.00010641227709129453, -0.009669235907495022, -0.019599616527557373, -0.020493008196353912, 0.023709213361144066, -0.014026233926415443, -0.010487032122910023, 0.0027351498138159513, -0.004518494941294193, 0.012239452451467514, 0.011593461968004704, -0.01549001969397068, -0.027777578681707382, -0.01943468302488327, 0.0010617604712024331, -0.030787616968154907, -0.022018644958734512, 0.0008585999603383243, 0.028396079316735268, 0.01632843352854252, -0.01966833882033825, -0.04062866047024727, -0.02916576899588108, -0.03405880182981491, 0.0001173649070551619, -0.02424524910748005, 0.01891239359974861, 0.030237838625907898, -0.025179872289299965, -0.009545535780489445, 0.014472928829491138, -0.004724662285298109, 0.028725946322083473, -0.040381260216236115, -0.0042092446237802505, -0.019860761240124702, -0.017922790721058846, 0.0365602970123291, -0.0012361434055492282, -0.04510935768485069, -0.012115752324461937, -0.005030476953834295, -0.004312328062951565, -0.002252375241369009, -0.0009724213741719723, 0.002008410869166255, 0.011744651012122631, 0.005322546698153019, 0.02072666399180889, 0.006078492850065231, 0.012466236017644405, -0.0006339637911878526, -0.026073263958096504, 0.00048234505811706185, 0.005339727271348238, -0.010789410211145878, 0.0019139177165925503, -0.0055699474178254604, 0.010507648810744286, -0.01052139326930046, -0.006291531957685947, -0.010390820913016796, -0.020341819152235985, -0.004655939992517233, -0.02556471712887287, 0.005717700347304344, 0.014637862332165241, 0.005820783786475658, 0.017139356583356857, -0.008342894725501537, 0.014569140039384365, 0.0011433683102950454, 0.0004262933798599988, 0.012294430285692215, 0.001517046126537025, 0.002595987170934677, -0.00018597989401314408, 0.024657582864165306, -0.009978486225008965, 0.012205091305077076, -0.02850603498518467, -0.026540575549006462, -0.012129496783018112, -0.0046799927949905396, -0.031309906393289566, 0.009160690940916538, -0.004704045597463846, 0.0034790695644915104, 0.008961395360529423, -0.02346181310713291, -0.008171088993549347, 0.011559100821614265, 0.0009174434817396104, 0.006655760575085878, -0.019310982897877693, 0.014101828448474407, -0.008906417526304722, -0.018843671306967735, 0.004071800038218498, 0.003769421484321356, 0.034965936094522476, -0.02185370959341526, 0.03282180055975914, 0.2126544713973999, 0.014665351249277592, 0.008590294979512691, 0.025798374786973, 0.012143241241574287, -0.018390104174613953, 0.024121548980474472, -0.004978934768587351, 0.00578642264008522, 0.00492395693436265, 0.028258634731173515, 0.015668697655200958, -0.019585872069001198, 0.0026801719795912504, -0.0029069557785987854, 0.013758216053247452, -0.03098003938794136, -0.018939882516860962, 0.004934265278279781, 0.011029939167201519, 0.017895301803946495, -0.011998924426734447, 0.003948099445551634, 0.0011459453962743282, 0.0302928164601326, 0.014844030141830444, 0.00010308354103472084, 0.006731355097144842, 0.00894077867269516, 0.0335640013217926, -0.010081570595502853, -0.007318931166082621, 0.02971554920077324, 0.014981474727392197, -0.00036659082979895175, -0.00043402466690167785, -0.0037900381721556187, 0.003257439937442541, 0.0031337395776063204, 0.00714712543413043, -0.004484133794903755, -0.008844567462801933, 0.01134606171399355, -0.02498744986951351, 0.008315405808389187, 0.03194215148687363, -0.00029378809267655015, 0.004494442138820887, 0.0021011861972510815, 0.021262697875499725, -0.012933548539876938, 0.022705867886543274, 0.02801123447716236, 0.009394346736371517, 0.001221539918333292, 0.02490498311817646, -0.0034636070486158133, -0.015613719820976257, -0.00921566877514124, 0.032491933554410934, -0.002790127880871296, 0.017029400914907455, 0.0069821919314563274, 0.0074701206758618355, -0.033673956990242004, -0.011215489357709885, -0.009091968648135662, 0.015531253069639206, 0.01759292371571064, -0.011552228592336178, -0.010432054288685322, -0.018032746389508247, -0.007951176725327969, 9.605023660697043e-05, 0.0039721522480249405, -0.02159256488084793, 0.021207720041275024, 0.03408629074692726, 0.037962231785058975, 0.017867812886834145, -0.018610015511512756, 0.004978934768587351, -0.0212764423340559, -0.03595553711056709, -0.021551331505179405, -0.00654924102127552, 0.03700011968612671, 0.002333124168217182, -0.02798374556005001, -0.02908330224454403, -0.014514162205159664, -0.010535137727856636, -0.01577865332365036, -0.024602605029940605, -0.02401159331202507, -0.0058551449328660965, 0.007614437490701675, 0.0006872236263006926, -0.013820067048072815, -0.028945857658982277, 0.005896378308534622, 0.05302617326378822, 0.017730368301272392, 0.05228397250175476, -0.018761204555630684, -0.01052139326930046, -0.015902353450655937, 0.02556471712887287, -0.021977411583065987, -0.004604398272931576, 0.018527548760175705, -0.010892493650317192, 0.005896378308534622, 0.0038072187453508377, -0.02277459017932415, 0.02056173048913479, -0.015105174854397774, -0.02974303811788559, -0.0005828515277244151, -0.003975588362663984, -7.489663403248414e-05, -0.017771601676940918, -0.005167921539396048, -0.004219552967697382, 0.011524739675223827, -0.02461634948849678, -0.03240946680307388, -0.0028347973711788654, 0.0020685431081801653, -0.018293892964720726, 0.02467132732272148, -0.011339189484715462, 0.030650172382593155, -0.016232222318649292, -0.01324279885739088, -0.022637145593762398, -0.0025564718525856733, 0.006291531957685947, 0.01782657951116562, -0.023832915350794792, -0.003539201570674777, 0.01111240591853857, 0.0019087635446339846, 0.0030255019664764404, 0.0020273097325116396, -0.023214412853121758, 0.0007284570019692183, 0.0016072442522272468, -0.03213457390666008, -0.010823771357536316, -0.0001872684370027855, 0.017455479130148888, -0.002894929377362132, -0.007023425307124853, 0.03389386832714081, 0.00011199597065569833, -0.013146587647497654, -0.005563075188547373, -0.0026647094637155533, 0.013600154779851437, -0.027681367471814156, 0.008294789120554924, 0.038457032293081284, 0.0012086544884368777, -0.023544279858469963, 0.014156806282699108, -0.17449980974197388, 0.04252539575099945, 0.008521572686731815, -0.015008963644504547, -0.010823771357536316, 0.0014216938288882375, 0.004449772648513317, 0.001307442900724709, -0.04123341664671898, -0.014651606790721416, -0.0024877493269741535, -0.002111494541168213, -0.04117843881249428, -0.01614975370466709, -0.008803334087133408, 0.020754152908921242, -0.02001195214688778, 0.028396079316735268, 0.03581809252500534, 0.02456137165427208, 0.0011992051731795073, -0.020754152908921242, -0.001974049722775817, 0.013139715418219566, 0.015971075743436813, 0.01753794588148594, -0.013785704970359802, 0.008899545297026634, -0.0031114048324525356, -0.0303477942943573, -0.03779729828238487, -0.02582586370408535, 0.024368949234485626, 0.008638400584459305, 0.03158479556441307, 0.009744830429553986, -0.01549001969397068, -0.005439374595880508, 0.0166170671582222, 0.02985299378633499, 0.009401218965649605, 0.010734432376921177, 0.004329508636146784, 0.010851260274648666, -0.011868351139128208, -0.00786183774471283, 0.01756543479859829, -0.003259157994762063, -0.027750089764595032, -0.03235448896884918, -0.0034601709339767694, -0.03235448896884918, -0.010212142951786518, -0.0066179633140563965, 0.017441734671592712, 0.007167742121964693, 0.010012848302721977, 0.009607385843992233, 0.027818812057375908, -0.006195320747792721, 0.007318931166082621, -0.0072845700196921825, 0.013888789340853691, 0.02035556361079216, -0.003054708940908313, -0.007786243222653866, -0.0022472210694104433, 0.016424644738435745, -0.009318752214312553, 0.006642016116529703, -0.00941496342420578, -0.012603680603206158, 0.02311820164322853, 0.01906358264386654, 0.013153459876775742, 0.01072756014764309, -0.01333213783800602, 0.005112943705171347, 0.013586410321295261, 0.03444364666938782, -0.005941047798842192, 0.002967087784782052, 0.0017283674096688628, -0.010246504098176956, -0.015709931030869484, 0.0059685371816158295, -0.014211784116923809, 0.013497071340680122, -0.0020668250508606434, -0.014404206536710262, -0.00014270628162194043, -0.02772260084748268, -0.01233566366136074, -0.020575474947690964, 0.017496712505817413, 0.0032694663386791945, 0.007490737363696098, 0.0017498431261628866, 0.009937252849340439, -0.027942512184381485, -0.003607923863455653, 0.010397693142294884, -0.023530535399913788, 0.003085633972659707, 0.004040874540805817, -0.005301930010318756, -0.005583691876381636, 0.00268876226618886, 0.02380542643368244, -0.029248235747218132, -0.03152981773018837, -0.007628181949257851, -0.0004814860294573009, 0.009978486225008965, -0.005325982812792063, 0.033673956990242004, 0.02487749420106411, 0.0016957242041826248, 0.016190988942980766, -0.006298404186964035, 0.05264132842421532, -0.03719254210591316, -0.006061312276870012, 0.02119397558271885, -0.013345882296562195, 0.013634515926241875, -0.11424405127763748, -0.024946216493844986, -0.006913469638675451, 0.024121548980474472, -0.012988526374101639, -0.0057486253790557384, -0.006305276416242123, 0.03716505318880081, -0.0021046223118901253, 0.01779909059405327, 0.004453208763152361, -0.02522110566496849, 0.0019276621751487255, -0.004982370883226395, 0.020891597494482994, -0.030650172382593155, 0.0024533881805837154, 0.0033364705741405487, 0.018238915130496025, 0.040491215884685516, -0.008872056379914284, -0.02853352390229702, 0.008322278037667274, -0.014431695453822613, -0.002666427521035075, 0.0022128599230200052, -0.024451415985822678, 0.00896826758980751, -0.011208617128431797, 0.008899545297026634, -0.011359806172549725, -0.0050442214123904705, 0.027310265228152275, -0.02162005379796028, -0.030650172382593155, 9.443955786991864e-05, -0.025303572416305542, -0.01003346499055624, 0.02243097871541977, -0.040463726967573166, -0.000618930731434375, 0.016369666904211044, 0.002252375241369009, -0.022664634510874748, 0.00848033931106329, 0.013270287774503231, -0.012239452451467514, 0.04302019625902176, 0.010280865244567394, -0.02119397558271885, -0.03708258643746376, -0.0002701647754292935, -0.013627643696963787, -0.03878689929842949, 0.0024843132123351097, -0.017840323969721794, 0.015187641605734825, -0.007868709973990917, -0.018953626975417137, -0.008040515705943108, -0.01603979803621769, -0.021688776090741158, 0.009889147244393826, 0.005934175569564104, 0.019585872069001198, 0.0007924546953290701, 0.009305007755756378, -0.02248595654964447, -0.004820873495191336, -0.015613719820976257, -0.023448068648576736, 0.015957331284880638, -0.01643838919699192, 0.008665889501571655, -0.030402772128582, -0.01940719410777092, -0.006064748391509056, -0.014569140039384365, 0.01380632258951664, -0.010425182059407234, -0.01400561723858118, -0.012514341622591019, 0.014651606790721416, -0.037329986691474915, 0.0167270228266716, 0.02153758704662323, 0.03141986206173897, -0.014211784116923809, 0.006377434823662043, -0.04807816445827484, -0.02314569056034088, 0.01551750861108303, 0.0044429004192352295, -0.02784630097448826, -0.0007980383816175163, 0.03265686705708504, 0.005191974341869354, 0.004003077279776335, 0.013957511633634567, -0.0136207714676857, -0.015558741986751556, -0.030622683465480804, -0.031887173652648926, 0.029660571366548538, -0.01233566366136074, -0.01549001969397068, -0.00867963396012783, 0.018651248887181282, -0.009799808263778687, -0.010267120786011219, -0.00845285039395094, 0.015682442113757133, -0.012438747100532055, 0.02911079116165638, -0.01549001969397068, -0.014198039658367634, -0.0167820006608963, -0.0028691585175693035, 0.011710289865732193, 0.006250298582017422, -0.008129855617880821, 0.0034481442999094725, -0.01874746009707451, -0.006978755816817284, 0.010837515816092491, 0.023021990433335304, 0.006188448518514633, 0.005291621666401625, -0.02314569056034088, 0.020740408450365067, 0.00282105291262269, -0.009985358454287052, 0.022046133875846863, -0.026018286123871803, -0.0060406955890357494, 0.016891956329345703, -0.00973108597099781, -0.017111867666244507, 9.975479770218953e-05, 0.01779909059405327, 0.0166720449924469, 0.01210888009518385, -0.013263415545225143, -0.024080315604805946, -0.005824219901114702, -0.03026532754302025, -0.021386398002505302, -0.0227471012622118, -0.05173419415950775, -0.007731265388429165, 0.02014939673244953, 0.029935460537672043, 0.02539978362619877, 0.0017189179779961705, -0.0016450415132567286, -0.015421297401189804, 0.004305455833673477, -0.00987540278583765, -0.008500955998897552, 0.02850603498518467, 0.01575116440653801, 0.0010789410443976521, 0.040326282382011414, -0.004188627935945988, 0.0027574847918003798, -0.05206406116485596, -0.0009397782851010561, -0.005439374595880508, -0.01946217194199562, 0.003913738299161196, 0.007676287554204464, -0.0181976817548275, -0.023200668394565582, -0.02006692998111248, 0.007779370993375778, 0.03686267510056496, 0.004576909355819225, 0.019709572196006775, 0.0032368232496082783, -0.017427990213036537, -0.008411617018282413, 0.03163977339863777, 0.022238556295633316, -0.006583602167665958, -0.02922074683010578, 0.015998564660549164, 0.0015067377826198936, 0.011146767064929008, -0.0015256364131346345, -0.013036631979048252, -0.013840683735907078, 0.02801123447716236, 0.020795386284589767, 0.00867963396012783, 0.005875761620700359, 0.008789589628577232, 0.0061472151428461075, 0.03958407789468765, -5.946094915998401e-06, 0.0006447016494348645, 0.02845105715095997, 0.016053542494773865, 0.011820245534181595, -0.003054708940908313, 0.016974423080682755, -0.03444364666938782, -0.027832556515932083, 0.01709812320768833, -0.044614557176828384, -0.03265686705708504, 0.014692840166389942, 0.0366702526807785, -0.011799628846347332, -0.009868530556559563, 0.046483803540468216, 0.010012848302721977, -0.02985299378633499, 0.005422194022685289, -0.013277160003781319, -0.008349766954779625, -0.02703537605702877, 0.0334540456533432, -0.001638169283978641, 0.0006167831597849727, 0.021688776090741158, -0.016589578241109848, 0.03642285242676735, 0.012411258183419704, 0.018115215003490448, -0.012940420769155025, 0.005415321793407202, -0.02919325791299343, 0.015283852815628052, -0.001864094054326415, 0.0014345792587846518, -0.00380034651607275, 0.002219732152298093, -0.01935221627354622, -0.025867097079753876, 0.010328970849514008, -0.0048964680172502995, 0.08549061417579651, 0.02208736725151539, -0.014789052307605743, -0.009428707882761955, 0.0032385413069278, 0.010803154669702053, 0.013105354271829128, 0.0009921790333464742, 0.02435520477592945, -0.003594179404899478, 0.034306202083826065, 0.007030297536402941, 0.023489302024245262, -0.04612644761800766, -0.016795745119452477, -0.022637145593762398, 0.02211485616862774, 0.021427631378173828, -0.019901994615793228, -0.008604039438068867, 0.001833168906159699, -0.001377883367240429, 0.01601230911910534, 0.02603203058242798, -0.016163498163223267, -0.020231863483786583, 0.025042427703738213, -0.0017747549572959542, -0.0026939164381474257, -0.05712202563881874, 0.020314330235123634, -0.005432502366602421, -0.03205210715532303, -0.018238915130496025, 0.0017644466133788228, 0.00982042495161295, -0.008487211540341377, -0.01522887498140335, 0.008844567462801933, -0.0071608698926866055, 0.021207720041275024, 0.00526069663465023, -0.01522887498140335, -0.019475916400551796, -0.014789052307605743, -0.006453029811382294, 0.004580345470458269, -0.018019001930952072, -0.0071608698926866055], "3a8eb4f1-15ea-4bc5-a162-5bb0f138c7b4": [0.0037729169707745314, 0.004266699776053429, 0.009820016101002693, -0.00493087200447917, -0.02244972437620163, -0.0013248675968497992, -0.007865749299526215, -0.009006317704916, -0.054802920669317245, -0.042340125888586044, 0.004843938630074263, 0.011329182423651218, -0.00392939755693078, -0.009173230268061161, 0.0031678592786192894, 0.003042674856260419, 0.02527332678437233, -0.013846779242157936, -0.008651629090309143, -0.014674386940896511, -0.0052194916643202305, -0.014535292983055115, -0.02050241269171238, 0.018332550302147865, -0.008755949325859547, 0.006210534367710352, 0.026163527742028236, -0.028764579445123672, 0.0074693323113024235, 0.0033695450983941555, 0.0070798699744045734, 0.010557212866842747, 0.008143937215209007, 0.028959311544895172, -0.013311267830431461, -0.002406321233138442, -0.004544887226074934, 0.009416644461452961, 0.0303780660033226, -0.0035242869053035975, -0.0006737351650372148, 0.01582886464893818, 0.012031606398522854, -0.010452892631292343, 0.0072259181179106236, 0.02147606946527958, -0.023200830444693565, 0.022463634610176086, 0.0019490505801513791, 5.047580270911567e-05, 0.012497570365667343, -0.005337721202522516, -0.01485520787537098, 0.004989986773580313, -0.007253737188875675, -0.0005846282583661377, -0.0010032133432105184, 0.027498826384544373, 0.013040035031735897, -0.014910846017301083, -0.012567116878926754, 0.023729387670755386, -0.0024289239663630724, 0.012330657802522182, -0.004656162112951279, -0.003298259573057294, 0.004287563730031252, -0.0177205391228199, 0.006356582511216402, -0.02151779644191265, 0.009826970286667347, 0.0239519365131855, 0.010285980068147182, 0.02829166129231453, 0.012970488518476486, -0.0014222331810742617, -0.0040024216286838055, -0.009604420512914658, -0.009013272821903229, 0.0007684927550144494, 0.013394724577665329, 0.004861325025558472, -0.015967957675457, 0.008915906772017479, 0.006015803199261427, 0.04367542639374733, 0.010612850077450275, 0.0014300572220236063, 0.010265115648508072, -0.018902834504842758, -0.020001675933599472, 0.011489140801131725, 0.0325201079249382, 0.01733107678592205, -0.005862799938768148, 0.017317166551947594, 0.011607370339334011, 0.018374279141426086, -0.011231817305088043, -0.01738671399652958, -0.005250787362456322, 0.014437926933169365, -0.043063413351774216, -0.005824549123644829, -0.02196289785206318, 0.011753418482840061, -0.026455624029040337, -0.018374279141426086, -0.006297467742115259, -0.022755730897188187, 0.004412747919559479, 0.024577857926487923, -0.025259418413043022, -0.017567535862326622, 0.013332132250070572, -0.007844884879887104, -0.004346678499132395, -0.019793035462498665, 0.0029053199104964733, -0.016037505120038986, 0.03891842067241669, -0.03477342799305916, 0.021156152710318565, -0.026469532400369644, 0.0020377228502184153, 0.01331822294741869, -0.006700839381664991, -0.006700839381664991, 0.024772590026259422, -0.0032426221296191216, 0.0162600539624691, 0.02404930256307125, 0.011899466626346111, -0.00023515531211160123, -0.012330657802522182, 0.02589924819767475, -0.025593243539333344, 0.009402735158801079, -0.01557849533855915, -0.027290185913443565, 0.011996832676231861, 0.03385540843009949, 0.0066312928684055805, 0.006752999499440193, -0.0020933602936565876, 0.05113084986805916, 0.03555235266685486, -0.008999363519251347, 0.016858158633112907, -0.007191144861280918, 0.007302419748157263, -0.01317217480391264, 0.009027182124555111, 0.01205246988683939, 0.008136982098221779, 0.002686247229576111, -0.010647623799741268, 0.0225888192653656, -0.02854202874004841, -0.005494201555848122, 0.007657108828425407, 0.00411369651556015, -0.0072189634665846825, -0.0009936507558450103, 0.011503050103783607, 0.04910007864236832, 0.008039616048336029, -0.028027383610606194, -0.0018203889485448599, -0.0017751834820955992, -0.003164381952956319, 0.019653940573334694, -0.02225499413907528, 0.021392613649368286, 0.015453311614692211, -0.004231926053762436, 0.02478649839758873, -0.019125385209918022, -0.01078671682626009, -0.019389662891626358, 0.0038668052293360233, -0.012247201055288315, 0.013798096217215061, 0.02683117613196373, -0.04476035758852959, 0.005334243644028902, 0.034940339624881744, -0.0067077940329909325, 0.02219935692846775, 0.007420649286359549, 0.009291459806263447, -0.0014413585886359215, -0.022992189973592758, -0.024355309084057808, -0.6057809591293335, -0.010960584506392479, 0.03288175165653229, -0.015981867909431458, 0.013422543182969093, 0.009340142831206322, 0.017219800502061844, 0.029487866908311844, -0.0042701768688857555, 0.026024432852864265, -0.014604839496314526, 0.039224427193403244, 0.013339086435735226, -0.020571960136294365, -0.03443960100412369, -0.009291459806263447, 0.0035381962079554796, -0.008964589796960354, -0.012657527811825275, -0.014131921343505383, -0.0267755389213562, 0.021754255518317223, 0.0030391975305974483, -0.013137401081621647, -0.004301473032683134, -0.012421068735420704, 0.005250787362456322, 0.002828818280249834, -0.017456261441111565, 0.004416225478053093, -0.02667817287147045, 0.03432832658290863, 0.003985034767538309, 0.009319278411567211, 0.048182062804698944, -0.008018752560019493, -0.026191346347332, 0.003713801968842745, 0.025593243539333344, 0.03385540843009949, -0.0455670990049839, -0.001954266568645835, -0.002336774254217744, 0.0061131687834858894, 0.0046248659491539, 0.020516322925686836, 0.005713274236768484, 0.006349627859890461, -0.004343200940638781, 0.005462905392050743, -0.004051104187965393, -0.020711053162813187, -0.007990933954715729, 0.016051413491368294, -0.004910008050501347, -0.02556542493402958, 0.02799956314265728, -0.006878184154629707, 0.009354052133858204, -0.003835509065538645, -0.007323283702135086, -0.0002610180526971817, -0.0128522589802742, -0.03560798987746239, -0.04659639298915863, 0.018429916352033615, 0.013262585736811161, -0.0161626897752285, 0.006523495074361563, -0.015202942304313183, 0.015954049304127693, 0.004687458276748657, 0.0012918328866362572, -0.020683234557509422, -0.0027453622315078974, 0.012226337566971779, 0.03482906520366669, -0.026455624029040337, 0.005417699925601482, 0.02722063846886158, -0.0027853515930473804, -0.02229672111570835, 0.009020227007567883, -0.002298523671925068, 0.01119704358279705, 0.004944781307131052, -0.026622535660862923, -0.017497988417744637, 0.000609838985837996, 0.0007758821011520922, 0.006759954150766134, 0.019806943833827972, -0.005038669798523188, -0.0028444663621485233, 0.0026827699039131403, 0.05065792798995972, -0.00021526924683712423, -0.010578076355159283, 0.01689988560974598, -0.021462159231305122, -0.02215762808918953, -0.005149944685399532, 0.008735084906220436, 0.0013787663774564862, 0.04709713160991669, 0.03004424087703228, -0.005751525051891804, 0.00806048046797514, 0.024577857926487923, -0.014284923672676086, 0.013186084106564522, -0.0019733919762074947, -0.01884719729423523, -0.016858158633112907, 0.026372168213129044, -0.029181860387325287, 0.018638556823134422, -0.008415169082581997, 0.005904527846723795, -0.026233073323965073, -0.006881661247462034, -0.011044040322303772, 0.032798297703266144, -0.011155315674841404, 0.025690607726573944, 0.03418923541903496, 0.002840989036485553, 0.032019373029470444, 0.008533399552106857, -0.003486036090180278, 0.002336774254217744, -0.02439703606069088, 0.018151728436350822, -0.0030878803227096796, 0.023840662091970444, 0.020182497799396515, -0.006029712501913309, -0.010327707976102829, -0.00995911005884409, -0.04823770001530647, -0.0012301099486649036, -0.010668487288057804, -0.007768383715301752, -0.02620525471866131, -0.026803357526659966, -0.052021048963069916, -0.028792398050427437, -0.007399785332381725, 0.0187915600836277, -0.008053526282310486, -0.014994301833212376, -0.02157343365252018, -0.017247620970010757, 0.03393886610865593, -0.0007332846289500594, -0.006533927284181118, -0.0010588509030640125, -0.050852660089731216, -0.01709461770951748, -0.01937575452029705, -0.017219800502061844, 0.03635909780859947, -0.016329601407051086, -0.0047743916511535645, 0.002847943687811494, -0.017650991678237915, -0.005466382950544357, 0.0026966792065650225, 0.013019171543419361, -0.028903672471642494, 0.009374916553497314, -0.004544887226074934, -0.013436452485620975, -0.004492726642638445, -0.03978080302476883, -0.001158824423328042, -0.009764378890395164, -0.0039467839524149895, 0.0011153577361255884, 0.0028948879335075617, 0.008505580015480518, 0.01395109947770834, -0.018096091225743294, 0.004051104187965393, 0.02502295933663845, 0.006735613103955984, 0.010598940774798393, 0.0236598402261734, -0.015272489748895168, 0.031935915350914, 0.0035329803358763456, -0.007691882085055113, -0.020377228036522865, -0.000544204143807292, 6.188583211041987e-05, -0.014563111588358879, -0.0257045179605484, -0.003461694810539484, -0.01811000145971775, 0.015898412093520164, 0.009061954915523529, 0.010814536362886429, 0.003004424273967743, 0.00652697216719389, 0.011718644760549068, -0.005501156207174063, 0.006443516351282597, -0.021503888070583344, 0.01816563867032528, -0.010021701455116272, 0.0003010074724443257, -0.011210952885448933, -0.017956998199224472, -0.03277047723531723, -0.02307564578950405, 0.006798204965889454, -0.0010684136068448424, 0.03457869589328766, -0.02229672111570835, 0.008102208375930786, 0.005118648521602154, 0.0001998385414481163, 0.02971041575074196, 0.0015908842906355858, 0.0036790287122130394, 0.005605476442724466, 0.017859632149338722, 0.01463265810161829, 0.043452873826026917, -0.0072189634665846825, 0.0005720228655263782, 0.02313128486275673, 0.021309155970811844, -0.010779762640595436, 0.02907058596611023, 0.009910427033901215, 0.054274365305900574, -0.017692720517516136, 0.03379977121949196, -0.01651042327284813, 0.0009232345037162304, 0.01176037359982729, 0.0007098126225173473, -0.014660476706922054, 0.024744771420955658, -0.02819429524242878, 0.02050241269171238, 0.0008193489047698677, -0.025913158431649208, 0.0013570330338552594, 0.01541158277541399, -0.00010236427624477074, -0.022616637870669365, -0.027637921273708344, 0.003379977075383067, -0.010772807523608208, 0.008004843257367611, 0.009096728637814522, 0.019653940573334694, 0.011614324524998665, 0.010619805194437504, 0.0028861945029348135, 0.028416845947504044, -0.012887032702565193, 0.009291459806263447, 0.02211589924991131, -0.004864802584052086, -0.02064150758087635, -0.01541158277541399, -0.01943139173090458, 0.0019073225557804108, -0.014980392530560493, 0.00019766519835684448, 0.002467174781486392, -0.018582919612526894, 0.025050777941942215, 0.002736668800935149, -0.002042938955128193, -0.004889144096523523, 0.018527282401919365, -0.050324104726314545, -0.0020707575604319572, 0.02352074719965458, 0.03480124473571777, -0.0051082163117825985, -0.014326652511954308, -0.0010918856132775545, 0.0034217052161693573, -0.013339086435735226, 0.017358895391225815, 0.0068190693855285645, 0.004179765935987234, -0.0177205391228199, 0.004412747919559479, -0.019069747999310493, 0.020029494538903236, 0.05477510392665863, -0.004092832561582327, -0.014994301833212376, -0.002277659485116601, -0.0004233664949424565, 0.0113430917263031, -0.0183047316968441, -0.023020008578896523, 0.040977008640766144, -0.0016621698159724474, -0.025787973776459694, -0.035329803824424744, -0.003939829301089048, 0.0016621698159724474, 0.0038146451115608215, -0.013005262240767479, -0.010598940774798393, -0.0006515671266242862, 0.011788192205131054, -0.007170280907303095, 0.003776394296437502, -0.004555318970233202, 0.032158464193344116, -0.0038737598806619644, -0.027387551963329315, -0.004600524436682463, -0.008992408402264118, 0.027345823124051094, 0.06832282990217209, 0.04846024885773659, 0.004617911297827959, 0.02965477854013443, 4.1646613681223243e-05, 0.009764378890395164, -0.018235186114907265, -0.00791443232446909, 0.027985654771327972, -0.004155424423515797, -0.014827389270067215, 0.014827389270067215, -0.006805159617215395, -0.025829702615737915, 0.007684927433729172, 0.011315273120999336, 0.012344567105174065, -0.025398511439561844, -0.026956360787153244, -0.0019281866261735559, 0.010891037993133068, -0.014521383680403233, 0.0369989275932312, 0.012066379189491272, 0.03724929690361023, 0.0303780660033226, 0.04801514744758606, 0.0011796884937211871, 0.01610705256462097, -0.010960584506392479, 0.004054581746459007, 0.035468894988298416, -0.0015439401613548398, 0.0013248675968497992, -0.03379977121949196, 0.0488775297999382, 0.01534203626215458, -0.00657217763364315, -0.011280500330030918, -0.0010666749440133572, -0.006353105418384075, 0.016037505120038986, 0.01664951629936695, -0.014577020891010761, 0.0422566682100296, -0.007462377659976482, 0.008456897921860218, 0.018582919612526894, -0.013603365048766136, -0.009611375629901886, 0.006165328901261091, 0.016719063743948936, -0.020975330844521523, -0.014479655772447586, -0.004266699776053429, 0.011085769161581993, 0.006419174838811159, -0.0006746044964529574, -0.004565751180052757, -0.018513372167944908, -0.017567535862326622, -0.004054581746459007, 0.0054316092282533646, -0.016969433054327965, -0.03151863440871239, -0.009555737487971783, -0.0210309699177742, -0.012448887340724468, -0.016190508380532265, 0.005765434354543686, -0.04339723661541939, -0.011106632649898529, -0.03160209208726883, 0.021253518760204315, -0.0025541081558912992, 0.009889562614262104, 0.009875653311610222, 0.0005502895219251513, 0.011391774751245975, -0.0013891984708607197, -0.012970488518476486, -0.028987130150198936, 0.026942452415823936, -0.011892512440681458, -0.01680251955986023, -0.002263750182464719, -0.030739709734916687, 0.009291459806263447, -0.02147606946527958, -0.009847834706306458, -0.013186084106564522, -0.0033104303292930126, -0.017901360988616943, 0.00278187426738441, 0.013026125729084015, 0.02459176816046238, 0.008783767931163311, 0.02356247417628765, 0.014549202285706997, -0.022282812744379044, -0.006422651931643486, -0.015300308354198933, 0.004051104187965393, -0.020377228036522865, -0.007351102773100138, -0.02264445647597313, -0.008338668383657932, -0.007712746504694223, -0.011183134280145168, -0.024619586765766144, 0.019361844286322594, -0.03062843531370163, -0.015592404641211033, -0.01434056181460619, 0.013067854568362236, -0.0019594826735556126, 0.018249094486236572, 0.0410882830619812, 0.015244671143591404, -0.0031156991608440876, -0.0023002622183412313, -0.0338832288980484, 0.05797426030039787, 0.011523913592100143, -0.01894456334412098, 0.026010524481534958, 0.00011388297571102157, -0.022908734157681465, -0.03674855828285217, 0.026066161692142487, -0.0017890929011628032, 0.01434056181460619, 0.027957836166024208, -0.017664901912212372, -0.02059977874159813, -0.022407997399568558, 0.0034495240543037653, 0.011113587766885757, -0.01933402568101883, -0.007622335571795702, -0.0516037680208683, 0.021893350407481194, 0.0006359190447255969, -0.029571322724223137, 0.0012892248341813684, -0.03711020201444626, -0.023632021620869637, 0.009583557024598122, -0.012970488518476486, 0.021003149449825287, -0.012177654542028904, -0.01699725165963173, -0.03107353486120701, -0.012789666652679443, -0.005650681909173727, -0.01073803473263979, 0.007455423008650541, -0.0009832186624407768, 0.018763741478323936, 0.022714003920555115, 0.019250569865107536, 0.017692720517516136, 0.012893986888229847, 0.020571960136294365, 0.0008171755471266806, -0.0004955213516950607, 0.023771114647388458, -0.02761010080575943, -0.009729605168104172, 0.0023541611153632402, 0.019848672673106194, 0.013645092956721783, -0.0011918592499569058, 0.006544359028339386, -0.010731079615652561, 0.014090192504227161, -0.02196289785206318, -0.01748408004641533, -4.9470632802695036e-05, -0.02926531620323658, -0.007949206046760082, 0.008700311183929443, -0.016830338165163994, -0.021336974576115608, -0.02498123049736023, 0.006300945300608873, 0.013895461335778236, -0.0017890929011628032, 0.025356782600283623, -0.0115865059196949, 0.029682597145438194, -0.015954049304127693, 0.0011909898603335023, -0.007420649286359549, 0.03541325777769089, 0.002056848257780075, -0.02556542493402958, -0.03691546991467476, 0.003426921321079135, -0.002317648846656084, 0.012594935484230518, 0.026914633810520172, 0.0007537140627391636, -0.005216014105826616, 0.008825495839118958, 0.00910368375480175, -0.0545247346162796, -0.00399198941886425, 0.008776812814176083, -0.01703898049890995, -0.005351630505174398, -0.013930235058069229, -0.002178555354475975, -0.012177654542028904, -0.011064904741942883, 0.02011295035481453, 0.014479655772447586, 0.024355309084057808, -0.018930654972791672, -0.01346427109092474, 0.012247201055288315, -0.009305369108915329, 0.02424403466284275, 0.0303780660033226, 0.02932095341384411, 0.0017664901679381728, 0.0023819797206670046, -0.033187758177518845, -0.042284488677978516, 0.003145256545394659, -0.0009084558114409447, 0.023548565804958344, 0.0252176895737648, 0.010292934253811836, -0.004965645261108875, 0.009277550503611565, 0.021392613649368286, -0.014326652511954308, -0.03029461018741131, 0.020822329446673393, 0.024063212797045708, -0.008665538392961025, -0.003030504332855344, 0.004409270826727152, -0.02219935692846775, 0.01923665963113308, -0.00024276199110317975, -0.004085877910256386, 0.019681759178638458, -0.008220437914133072, -0.013471226207911968, 0.040448449552059174, 0.009458372369408607, 0.010244252160191536, 9.062824392458424e-05, 0.0019003677880391479, 0.004037194885313511, -0.010390300303697586, 0.005699364934116602, 0.0052299234084784985, -0.01865246705710888, 0.006408742628991604, -0.020126860588788986, 0.0008806370315141976, 0.0031539499759674072, 0.017025070264935493, 0.013825914822518826, -0.0040754457004368305, 0.006773863919079304, 0.03424487262964249, -0.008359531871974468, -0.012351521290838718, 0.014208422973752022, -0.018096091225743294, 0.012407159432768822, -0.018610738217830658, -0.01972348801791668, -0.018332550302147865, -0.01933402568101883, 0.003414750564843416, 0.012455841526389122, 0.0012396726524457335, -0.039808619767427444, 0.0010849309619516134, -2.0279971067793667e-05, -0.012448887340724468, 0.02507859654724598, -0.010522439144551754, 0.024563949555158615, -0.0369989275932312, -0.011266591027379036, -0.0015508949290961027, -0.004927394911646843, 0.023604203015565872, -0.013860688544809818, -0.016148779541254044, -0.006523495074361563, 0.01918102242052555, -0.007062483113259077, 0.0123654305934906, -0.00705900602042675, -0.00017527981253806502, -0.05858626961708069, 0.008922861889004707, -0.026789449155330658, -0.004179765935987234, 0.010202523320913315, -0.02965477854013443, -0.0126088447868824, 0.012650572694838047, 0.0063044223934412, 0.0009580079349689186, -0.016969433054327965, -0.007740565109997988, 0.013373860158026218, 0.020391138270497322, 0.004127605818212032, 0.002366331871598959, -0.021823802962899208, 0.019403573125600815, -0.0035051614977419376, 0.03925224393606186, 0.007872704416513443, 0.01166300754994154, -0.018443826586008072, -0.02118397131562233, 0.004054581746459007, -0.018082182854413986, -0.042284488677978516, 0.010216432623565197, -0.007684927433729172, 0.00595321087166667, -0.00669388473033905, -0.002601052401587367, -0.018429916352033615, -0.018221275880932808, -0.017052888870239258, 0.02862548641860485, -0.006367014721035957, -0.0010049520060420036, 0.006554791238158941, -0.005828026682138443, 0.019876491278409958, 0.018541190773248672, -0.02283918671309948, -0.0334937646985054, -0.012859213165938854, -0.012448887340724468, -0.03457869589328766, -0.025746246799826622, 0.007253737188875675, 0.03140735998749733, 0.0084708072245121, -0.02478649839758873, -0.030600616708397865, -0.028444664552807808, -0.041310831904411316, -0.003124392591416836, -0.02624698355793953, 0.01923665963113308, 0.024619586765766144, -0.009166275151073933, -0.009973019361495972, 0.007406739983707666, 0.006926866713911295, 0.032353196293115616, -0.03288175165653229, -0.008742040023207664, -0.009291459806263447, -0.005970597732812166, 0.04423179849982262, -0.003138301894068718, -0.04197848215699196, 0.0020255520939826965, 0.012622754089534283, -0.003313907654955983, -0.005723705980926752, 0.008498625829815865, 0.012122017331421375, 0.002722759498283267, -0.0028201250825077295, 0.02868112362921238, 0.009979973547160625, 0.003905056044459343, -0.005083875264972448, -0.025551514700055122, 0.005789775867015123, 0.0030322428792715073, -0.007351102773100138, 0.011718644760549068, -0.007879658602178097, 0.009270595386624336, 0.000502041366416961, -0.006283558439463377, -0.008533399552106857, -0.014785661362111568, 0.003534718882292509, -0.02297828160226345, 0.0028705464210361242, 0.0108075812458992, 0.005184717942029238, 0.0259966142475605, -0.013881552033126354, 0.015369854867458344, 0.004134560469537973, 0.0009301892132498324, 0.008755949325859547, 0.013436452485620975, 0.0007602340774610639, 0.003877237206324935, 0.015049939975142479, -0.008637719787657261, 0.0070798699744045734, -0.03023897297680378, -0.029877329245209694, -0.0174284428358078, -0.005640250165015459, -0.02920967899262905, 0.006398310884833336, 0.0032269740477204323, 0.008123072795569897, 0.009597466327250004, -0.006530449725687504, -0.010974493809044361, 0.017164163291454315, 0.0161626897752285, 0.008046571165323257, -0.019834762439131737, 0.013791141100227833, 0.0014622226590290666, -0.01952875778079033, 0.00022146326955407858, 0.004572705831378698, 0.030155517160892487, -0.017400622367858887, 0.037026744335889816, 0.20107387006282806, 0.015063849277794361, 0.023993665352463722, 0.02735973335802555, 0.01088408287614584, -0.020488504320383072, 0.020432865247130394, -0.00044857722241431475, 0.004165856633335352, 0.0112944096326828, 0.0336884967982769, 0.015036029741168022, -0.021044878289103508, 0.0036373005714267492, -0.00017180247232317924, 0.008102208375930786, -0.0422566682100296, -0.027860470116138458, 0.016969433054327965, 0.007733610458672047, 0.012400204315781593, -0.014298833906650543, 0.004148469772189856, 0.0017082446720451117, 0.025634970515966415, 0.02589924819767475, 0.009708740748465061, 0.003386931959539652, 0.01012602262198925, 0.04495508596301079, -0.014034555293619633, -0.013888507150113583, 0.023409470915794373, 0.010404209606349468, 0.004186720587313175, 0.0009197571780532598, -0.0008549916674382985, -0.009347097016870975, 0.003974603023380041, -0.007545833941549063, 0.00038381171179935336, -0.003912010695785284, 0.010856264270842075, -0.025342874228954315, 0.003112221835181117, 0.03307648375630379, -0.005243832711130381, 0.005216014105826616, 0.006360060069710016, 0.01972348801791668, -0.011322228237986565, 0.03210282698273659, 0.03324339538812637, 0.01402064599096775, -0.0019594826735556126, 0.02761010080575943, -0.010306843556463718, -0.010425074025988579, -0.015397673472762108, 0.0336884967982769, -0.008832450956106186, 0.0187915600836277, -0.009680922143161297, 0.011871648021042347, -0.025676699355244637, -0.01610705256462097, -0.01923665963113308, 0.007810112088918686, 0.003440830623731017, -0.008874178864061832, -0.009409689344465733, -0.026302620768547058, -0.008742040023207664, 0.002580188447609544, -0.005824549123644829, -0.018875015899538994, 0.023284288123250008, 0.03221410512924194, 0.03321557864546776, 0.009576601907610893, -0.017595354467630386, -0.0019299252890050411, -0.02044677548110485, -0.021629072725772858, -0.020571960136294365, 0.003978080116212368, 0.04161683842539787, -0.00021711658337153494, -0.021559525281190872, -0.0280412919819355, -0.008811586536467075, -0.010299889370799065, -0.01689988560974598, -0.020418956875801086, -0.027109364047646523, -0.0031278699170798063, 0.0018464690074324608, -0.003145256545394659, -0.017470169812440872, -0.018276913091540337, 0.0028792398516088724, 0.056110404431819916, 0.026177436113357544, 0.046429481357336044, -0.021406522020697594, -0.016426967456936836, -0.021072696894407272, 0.02375720627605915, -0.020057313144207, -0.007358057424426079, 0.01125268079340458, -0.011982923373579979, 0.0069581628777086735, -0.0011005790438503027, -0.00886026956140995, 0.01479957066476345, -0.002634087111800909, -0.02059977874159813, -0.005560270976275206, -0.009201048873364925, -0.0076084258034825325, -0.022602727636694908, 0.0023541611153632402, -0.0010284241288900375, 0.012469750829041004, -0.023409470915794373, -0.028222113847732544, -0.002997469389811158, 0.004058058839291334, -0.01299830712378025, 0.03911315277218819, -0.012629709206521511, 0.024327490478754044, -0.002943570725619793, -0.012337611988186836, -0.01655215211212635, -0.0014031077735126019, -0.0007337193237617612, 0.011071859858930111, -0.03315994143486023, -0.006686930079013109, 0.021642981097102165, -0.0016343510942533612, 0.0016769485082477331, 0.006989459041506052, -0.025106415152549744, -0.0046526845544576645, -0.0009388825274072587, -0.02157343365252018, -0.009673967957496643, -0.007497150916606188, 0.010633714497089386, -0.008609900251030922, -0.01733107678592205, 0.028848035261034966, -0.004597047343850136, -0.0049030533991754055, -0.013429497368633747, 0.004099787212908268, 0.006864274851977825, -0.043452873826026917, 0.00859599094837904, 0.04036499559879303, -0.0023332969285547733, -0.015314217656850815, 0.0148969367146492, -0.17703847587108612, 0.03535762056708336, 0.012594935484230518, -0.005720228888094425, -0.010077339597046375, 0.004819597117602825, 0.012087243609130383, 0.0055359299294650555, -0.03560798987746239, -0.020711053162813187, -0.007566697895526886, 0.008074389770627022, -0.04567837342619896, -0.011322228237986565, -0.0055359299294650555, 0.009778288193047047, -0.003407795913517475, 0.02264445647597313, 0.048432428389787674, 0.01728934794664383, 0.000886722409632057, -0.016816429793834686, 0.004193675238639116, 0.012191563844680786, 0.007684927433729172, 0.011217908002436161, -0.020238135010004044, 0.01119704358279705, 0.004106741864234209, -0.02021031640470028, -0.03908533230423927, -0.015453311614692211, 0.033132120966911316, 0.008150891400873661, 0.028736760839819908, 0.006739090196788311, 0.000774143438320607, -0.014757842756807804, 0.019320117309689522, 0.032158464193344116, 0.004482294898480177, 0.016719063743948936, 0.0032008939888328314, 0.016079232096672058, -0.010682396590709686, -0.005118648521602154, 0.017122436314821243, 0.004621388390660286, -0.013589455746114254, -0.023242559283971786, -0.00489262118935585, -0.037277113646268845, -0.017511898651719093, 0.005577657837420702, 0.0056750234216451645, 0.002486300189048052, 0.010077339597046375, 0.024661315605044365, 0.02761010080575943, -0.014577020891010761, 0.011558687314391136, -0.012024651281535625, 0.010856264270842075, 0.012845303863286972, 0.01010515820235014, -0.016093142330646515, -0.011871648021042347, 0.01377723179757595, -0.0078031569719314575, -0.0013118275674059987, -0.010870173573493958, -0.013311267830431461, 0.02313128486275673, 0.019250569865107536, 0.01550894882529974, 0.014952573925256729, -0.0048369839787483215, 0.00956964772194624, 0.018763741478323936, 0.0252176895737648, 0.0007450206903740764, 0.00423540361225605, 0.007497150916606188, 0.00736501207575202, -0.01923665963113308, -0.00736501207575202, -0.013965008780360222, 0.012080288492143154, 0.003051368286833167, -0.018374279141426086, 0.0020933602936565876, -0.023353833705186844, -0.006985981483012438, -0.02546805888414383, 0.013137401081621647, 0.015759317204356194, 0.00815784651786089, -0.004308427684009075, 0.0030061628203839064, -0.007970069535076618, -0.007970069535076618, 0.0082273930311203, -0.018833288922905922, 0.018735922873020172, 0.006839933339506388, 0.008908952586352825, -0.009534873999655247, -0.006669543217867613, 0.0313517227768898, -0.03463433310389519, -0.0305727981030941, 0.0005415961495600641, 0.007900523021817207, 0.0189862921833992, 0.0079839788377285, 0.045316729694604874, 0.018527282401919365, 0.0044579533860087395, 0.0234651081264019, -0.012525388970971107, 0.06526277214288712, -0.03580272197723389, -0.021170062944293022, 0.008748994208872318, -0.0041310833767056465, 0.005435086786746979, -0.11361174285411835, -0.031824640929698944, -0.0013891984708607197, 0.014743933454155922, -0.014055419713258743, -0.01947311870753765, 0.00544204143807292, 0.043897975236177444, 0.0070798699744045734, 0.022101990878582, 0.0042701768688857555, -0.017358895391225815, 0.010988403111696243, 0.0018516849959269166, 0.017358895391225815, -0.02391020953655243, 0.001306611578911543, -0.0045866151340305805, 0.021253518760204315, 0.051687221974134445, -0.008665538392961025, -0.0254124216735363, 0.019695669412612915, -0.013325177133083344, -0.0058141169138252735, 0.0037798716221004725, -0.023785024881362915, 0.012323702685534954, -0.006912957411259413, -0.006968595087528229, 0.002242885995656252, -0.016301782801747322, 0.043258145451545715, -0.027178911492228508, -0.03788912668824196, 0.004364065360277891, -0.022310631349682808, -0.019459210336208344, 0.019055837765336037, -0.0305727981030941, 0.003891146508976817, 0.01918102242052555, 0.004033717792481184, -0.00532033434137702, 0.005834981333464384, 0.0049760774709284306, -0.025732336565852165, 0.04514981806278229, 0.0029279226437211037, -0.016621697694063187, -0.037805669009685516, 0.00022993929451331496, -0.011050995439291, -0.043758880347013474, 0.015745408833026886, -0.021364793181419373, 0.0280412919819355, -0.006318331696093082, -0.01073803473263979, -0.007956160232424736, -0.026566898450255394, -0.01434056181460619, -0.005838458426296711, 0.005695887375622988, 0.017650991678237915, 0.002719281939789653, 0.00047204928705468774, -0.014326652511954308, -0.0024567425716668367, -0.006356582511216402, -0.019793035462498665, 0.019848672673106194, -0.018123909831047058, 0.007149416953325272, -0.024577857926487923, -0.0049691228196024895, -0.007900523021817207, -0.020335501059889793, 0.014966483227908611, -0.011217908002436161, -0.011183134280145168, -0.010598940774798393, 0.005188195500522852, -0.028653305023908615, 0.01602359488606453, 0.034161414951086044, 0.02128133736550808, -0.019069747999310493, 0.011050995439291, -0.045984379947185516, -0.023673750460147858, 0.0041415151208639145, -0.010223387740552425, -0.033521585166454315, -0.004214539658278227, 0.0280412919819355, 0.00493087200447917, -0.0008189142099581659, 0.013735503889620304, -0.01816563867032528, -0.012789666652679443, -0.015856683254241943, -0.028263842687010765, 0.02517596259713173, -0.014271014370024204, -0.002903581131249666, -0.01025120634585619, 0.004398838616907597, -0.005309902597218752, -0.013012216426432133, -0.0022202832624316216, 0.009256686083972454, -0.0011831659357994795, 0.03257574886083603, -0.01728934794664383, -0.012024651281535625, -0.025036867707967758, -0.01151695940643549, -0.0006841672002337873, -0.0023263422772288322, 0.002336774254217744, 0.0036199139431118965, -0.01402064599096775, -0.012177654542028904, 0.011802101507782936, 0.012671437114477158, -0.004517068155109882, 0.005713274236768484, -0.019000200554728508, 0.019125385209918022, 0.005063011310994625, -0.008589036762714386, 0.025579333305358887, -0.02274182252585888, 0.0021942032035440207, 0.009534873999655247, -0.012887032702565193, -0.019389662891626358, 0.00023037396022118628, 0.017790086567401886, 0.02167079970240593, 0.006433084141463041, -0.013888507150113583, -0.024035394191741943, 0.002547153504565358, -0.028069110587239265, -0.024605678394436836, -0.0223940871655941, -0.042534857988357544, -0.016426967456936836, 0.01758144423365593, 0.033716317266225815, 0.030127698555588722, 0.0013474703300744295, -0.010146886110305786, -0.01762317307293415, 0.003279134165495634, -0.0058036851696670055, -0.01246279664337635, 0.022574909031391144, 0.018610738217830658, 0.010473756119608879, 0.036637283861637115, -0.01176037359982729, -0.003414750564843416, -0.03724929690361023, -0.0017047673463821411, -0.011190089397132397, -0.023284288123250008, 0.014437926933169365, 0.012699255719780922, -0.008644673973321915, -0.0136311836540699, -0.017108526080846786, -3.4202927054138854e-05, 0.03068407252430916, -0.0007689274498261511, 0.019640032202005386, 0.0041310833767056465, -0.020140768960118294, -0.008032661862671375, 0.03282611444592476, 0.02044677548110485, -0.004802210256457329, -0.03341031074523926, 0.007198099512606859, -0.005455950740724802, 0.017344985157251358, -0.005421177484095097, -0.011982923373579979, -0.008220437914133072, 0.03685983270406723, 0.003204371314495802, 0.00922886747866869, 0.005598521791398525, 0.01098144892603159, -0.0005485508008860052, 0.03749966621398926, 4.675396121456288e-05, -0.008888088166713715, 0.037416208535432816, 0.010849309153854847, 0.005330766551196575, -0.009792197495698929, 0.015550676733255386, -0.028013473376631737, -0.03207501024007797, 0.014312743209302425, -0.04523327574133873, -0.028736760839819908, 0.012636663392186165, 0.03477342799305916, -0.012358476407825947, -0.015397673472762108, 0.0408935509622097, 0.0161626897752285, -0.021462159231305122, -0.006599996704608202, -0.01088408287614584, -0.011461322195827961, -0.02391020953655243, 0.024772590026259422, 0.005574180278927088, -0.0036929380148649216, 0.0061827152967453, -0.010195569135248661, 0.030906623229384422, 0.00963919423520565, 0.013130445964634418, -0.016246145591139793, 0.009820016101002693, -0.027429278939962387, 0.021740347146987915, -0.010035611689090729, -0.009242776781320572, -0.002533244201913476, 0.0058141169138252735, -0.032408833503723145, -0.0246334969997406, 0.0069651175290346146, 0.00354167353361845, 0.10532175749540329, 0.018096091225743294, -0.023103466257452965, -0.006551313679665327, 0.007170280907303095, 0.013582500629127026, 0.009124547243118286, -0.0031504726503044367, 0.01649651490151882, -0.015105577185750008, 0.040114626288414, 0.009708740748465061, 0.014312743209302425, -0.04573401063680649, -0.024967320263385773, -0.013352996669709682, 0.017734447494149208, 0.02614961750805378, -0.028653305023908615, -0.008109163492918015, -0.004565751180052757, -0.01664951629936695, 0.022616637870669365, 0.01947311870753765, -0.019264478236436844, -0.01947311870753765, 0.03452305868268013, 0.004256267566233873, 0.0018447303446009755, -0.04503854364156723, 0.01385373342782259, 0.00392939755693078, -0.03482906520366669, -0.020043402910232544, -0.014396199025213718, -0.0017282393528148532, -0.008637719787657261, -0.009854789823293686, 0.011982923373579979, -0.007090301718562841, 0.024716952815651894, 0.003447785275056958, -0.01660778932273388, -0.03168554604053497, 0.00014615706459153444, -0.008964589796960354, -0.009548783302307129, -0.027526644989848137, 0.002102053724229336], "a4175538-d318-49d4-a475-63a529b105c2": [0.003177630715072155, 0.011845185421407223, 0.017008835449814796, -0.013540394604206085, -0.01482421439141035, -0.0025729588232934475, 0.012164367362856865, -0.007504315115511417, -0.04499752074480057, -0.041990119963884354, 0.01716488040983677, 0.0010852175764739513, -0.006032533477991819, -0.012852380983531475, 0.004532379563897848, 0.012114716693758965, 0.01635628566145897, -0.015959082171320915, -0.007908612489700317, -0.02034251019358635, 0.0022856954019516706, -0.0005692073027603328, -0.02936471253633499, 0.026484984904527664, -0.010497529990971088, 0.0028105718083679676, 0.011320309713482857, -0.02163342386484146, -0.008100121282041073, 0.011426703073084354, 0.019236015155911446, -0.0001925064279930666, -0.02149156481027603, 0.02376130037009716, -0.01451212540268898, -0.011299030855298042, 0.004074885975569487, 0.004727434832602739, 0.029506569728255272, -0.006865952163934708, -0.0009158740285784006, 0.011887743137776852, 0.009270453825592995, -0.022442016750574112, -0.0046600522473454475, 0.023676184937357903, -0.014937701635062695, 0.009625100530683994, -0.01197285857051611, -0.002145610051229596, 0.005170742981135845, -0.010476251132786274, -0.014682356268167496, 0.02523662894964218, 0.006291424855589867, 0.00048143233289010823, 0.007993726991117, 0.021505750715732574, 0.016895348206162453, 0.003223734674975276, -0.008993829600512981, 0.035549744963645935, -0.006529037840664387, 0.0024984830524772406, -0.008703019469976425, -0.018512535840272903, -0.00042335898615419865, -0.007468850817531347, 0.009646378457546234, -0.024115948006510735, 0.005436727311462164, 0.013008425943553448, 0.005486377980560064, 0.0071709477342665195, 0.021349705755710602, -0.0026811258867383003, -0.0014008528087288141, -0.01683860458433628, -0.0015622169012203813, -0.00028748513432219625, 0.003925934433937073, -0.0012341691181063652, -0.007454664912074804, 0.015377462841570377, -0.0010648254537954926, 0.018058588728308678, 0.015363276936113834, -0.010235091671347618, 0.0010940837673842907, -0.016994649544358253, -0.020271580666303635, 0.013675160706043243, 0.01722162403166294, 0.008199421688914299, -0.0040358747355639935, 0.010071954689919949, 0.0023548512253910303, 0.016384657472372055, -0.008568254299461842, -0.022215042263269424, -0.006284331902861595, -0.006075090728700161, -0.026428241282701492, -0.0056814332492649555, -0.01977507583796978, 0.0033673665020614862, -0.0135616734623909, -0.004933129996061325, 0.0079440763220191, -0.013639695942401886, -0.003819540375843644, 0.024782681837677956, -0.03163444995880127, -0.021605052053928375, -0.0025853714905679226, -0.028797278180718422, 0.007958262227475643, -0.02214411459863186, 0.013292142190039158, -0.03140747547149658, 0.01449084747582674, -0.026825444772839546, 0.01906578429043293, -0.02309456653892994, 0.013845390640199184, -0.0028566757682710886, -0.0086533697322011, 0.0136113241314888, 0.011235194280743599, -8.505969162797555e-05, 0.014767470769584179, 0.010256370529532433, 0.02394571714103222, -0.014483754523098469, -0.005348065868020058, 0.02285340614616871, -0.027719153091311455, -0.0021438368130475283, -0.0038762837648391724, -0.014306430704891682, 0.00443662516772747, 0.03833017125725746, 0.01308644749224186, -0.0023335726000368595, -0.004340870305895805, 0.037677619606256485, 0.031038641929626465, -0.012015416286885738, 0.029847031459212303, -0.004762899596244097, 0.005223939660936594, -0.03191816434264183, -0.010582645423710346, 0.013540394604206085, -0.0015870421193540096, 0.015164675191044807, -0.0023193866945803165, 0.01434898842126131, -0.029534941539168358, -0.015263975597918034, 0.0043160454370081425, 0.009575449861586094, -0.0003007843915838748, -0.004323138389736414, 0.009284639731049538, 0.043891023844480515, 0.014114921912550926, -0.028485190123319626, 0.002640341641381383, -0.010986941866576672, -0.01066775992512703, 0.0036067527253180742, -0.024357106536626816, 0.018626023083925247, 0.01574629545211792, -0.004131629131734371, 0.024172689765691757, -0.019051598384976387, -0.02371874265372753, -0.022399459034204483, 0.012306226417422295, -0.014739099889993668, 0.025165699422359467, 0.023023637011647224, -0.027094975113868713, -0.00011282185005256906, 0.040202703326940536, -0.00588003545999527, 0.00886615738272667, 0.016242800280451775, 0.01621442846953869, 0.004628133960068226, -0.030045632272958755, -0.02323642373085022, -0.5942169427871704, -0.011958672665059566, 0.029676800593733788, -0.017817428335547447, 0.014767470769584179, 0.006688628811389208, 0.006514852400869131, 0.01197285857051611, -0.025577090680599213, 0.026853816583752632, -0.018626023083925247, 0.03634415194392204, 0.00023761301417835057, -0.022796662524342537, -0.021973883733153343, -0.007702917326241732, 0.009426497854292393, -0.01135577354580164, -0.01214308850467205, -0.007050368003547192, -0.028229843825101852, 0.023562699556350708, 0.006596420891582966, -0.015022816136479378, -0.009334290400147438, -0.027804268524050713, 0.01702302135527134, 0.005819745361804962, -0.013469466008245945, 0.004791271407157183, -0.04584867134690285, 0.02315131016075611, 0.008178142830729485, 0.0082490723580122, 0.05648805946111679, -0.012519014067947865, -0.03586183115839958, -0.0016890029655769467, 0.026158709079027176, 0.038528770208358765, -0.05421832203865051, 0.019221829250454903, 0.004521740134805441, 0.007490129675716162, 0.015150489285588264, 0.01939205825328827, 0.022697361186146736, 0.00585521012544632, -0.002611969830468297, -0.0012208698317408562, 0.023264795541763306, -0.009823702275753021, -0.004855107516050339, 0.015405834652483463, 0.0015595570439472795, -0.02574731968343258, 0.03716693073511124, 4.6990633563837036e-05, -0.0003672805614769459, 0.013817018829286098, -0.011150078848004341, 0.00530196214094758, -0.01239843387156725, -0.05126766487956047, -0.0471537709236145, 0.021988069638609886, 0.018569279462099075, -0.018796252086758614, 0.01140542421489954, -0.0054402737878263, 0.010348578914999962, 0.002541040536016226, -0.006837580353021622, -0.01944880187511444, -0.005582132376730442, 0.002074680756777525, 0.031180500984191895, -0.003211322007700801, 0.0020800004713237286, 0.019619032740592957, -0.011582747101783752, -0.013100633397698402, 0.0031811771914362907, -0.000954885093960911, 0.004504007752984762, 0.006518398877233267, -0.04309661686420441, -0.017774872481822968, -0.0028265309520065784, 0.0008914921199902892, -0.0006055585108697414, 0.011653676629066467, -0.002564092632383108, -0.0023034275509417057, 0.007440479006618261, 0.04252918064594269, 0.0019133166642859578, -0.0012917991261929274, 0.004865746945142746, -0.0380464531481266, -0.014980259351432323, 0.004525286611169577, 0.020796457305550575, 0.019505545496940613, 0.04187663272023201, 0.02503802813589573, -0.023647814989089966, -0.007759660482406616, 0.029960518702864647, -0.02522244304418564, 0.0053374264389276505, 0.00912859570235014, -0.014795842580497265, -0.021094361320137978, 0.01584559679031372, -0.028627047315239906, 0.009376848116517067, -0.010781247168779373, -0.004869293421506882, -0.0247968677431345, 0.008121400140225887, -0.014668170362710953, 0.018626023083925247, -0.00443662516772747, 0.024584081023931503, 0.0315777063369751, 0.002895686775445938, 0.008710112422704697, 0.021931326016783714, 0.007660359609872103, 0.017604641616344452, -0.024740124121308327, 0.01888136751949787, -0.013497837819159031, 0.02366199903190136, 0.007153215352445841, 0.020271580666303635, -0.002026803558692336, 0.0006618586485274136, -0.03169119358062744, 0.00665316404774785, -0.010965663008391857, 0.0164981447160244, -0.014384453184902668, -0.009561263956129551, -0.04491240531206131, -0.035209283232688904, -0.008624997921288013, 0.013526209630072117, -0.023066194728016853, -0.014710728079080582, -0.018725324422121048, 0.005035977344959974, 0.030130747705698013, 0.010384042747318745, -1.0099107385030948e-05, 0.003088969038799405, -0.044089626520872116, -0.015405834652483463, -0.023066194728016853, -0.02258387580513954, 0.03705344349145889, -0.020597856491804123, -0.0015329585876315832, -0.011320309713482857, -0.015831410884857178, -0.019902748987078667, 0.0173067394644022, 0.0031864969059824944, -0.03291117399930954, 0.007901519536972046, -0.003865644568577409, -0.006571595557034016, 0.0022129928693175316, -0.019987864419817924, 0.0006791476043872535, -0.02447059378027916, -0.016810234636068344, -0.008093028329312801, 0.00614247377961874, 0.007766753435134888, 0.02590336464345455, -0.0056814332492649555, 0.00659287441521883, 0.033024661242961884, -0.00036506401374936104, 0.033393494784832, 0.02760566584765911, -0.02647079899907112, 0.03475533425807953, -0.002147383289411664, -0.009305918589234352, -0.026343125849962234, 0.0027857464738190174, -0.028655419126152992, -0.017462782561779022, -0.0308684129267931, -0.006922695320099592, -0.0017289005918428302, 0.018810437992215157, 0.01171042025089264, 0.02603103779256344, 0.010405321605503559, 0.009433590807020664, 0.0017262407345697284, -0.002659847028553486, -0.000880852690897882, -0.01688116230070591, 0.01736348122358322, -0.0066141532734036446, 0.0008382951491512358, -0.004060700070112944, -0.004174186848104, -0.018938111141324043, -0.015278161503374577, -0.003344314405694604, 0.009837888181209564, 0.02774752490222454, -0.02451315149664879, 0.008539882488548756, 0.010525901801884174, 0.006695721764117479, 0.030754925683140755, -0.015420020557940006, -0.006663803476840258, 0.012306226417422295, 0.019704148173332214, 0.014810028485953808, 0.03762087598443031, -0.005199114326387644, -0.00761070940643549, 0.03818831220269203, 0.027378693222999573, 0.001821108628064394, 0.04672819375991821, 0.009000922553241253, 0.05407646670937538, -0.02495291270315647, 0.028797278180718422, -0.0073057133704423904, 0.007724196184426546, 0.0007354477420449257, 0.012050881050527096, -0.014072364196181297, 0.03432976081967354, -0.015944896265864372, 0.020853200927376747, -0.01124228723347187, -0.01981763355433941, 0.004223837051540613, 0.008163957856595516, -0.0005630009691230953, -0.020427625626325607, -0.017320923507213593, 0.016157684847712517, -0.005720444489270449, 0.011632397770881653, 0.01249773520976305, 0.014363174326717854, 0.02200225554406643, -0.004042967688292265, 0.015235604718327522, 0.035918574780225754, -0.011121707037091255, 0.00877394899725914, 0.026201266795396805, -0.016384657472372055, -0.01797347329556942, -0.018725324422121048, -0.013512023724615574, 0.009093130938708782, -0.0012049106881022453, -0.013831204734742641, -0.015334905125200748, 0.0004889685660600662, 0.021973883733153343, 0.012178553268313408, 0.004248662386089563, -0.007979541085660458, 0.024740124121308327, -0.039663638919591904, -0.012738894671201706, 0.01327795721590519, 0.022399459034204483, -0.012164367362856865, -0.016157684847712517, 0.005411902442574501, -0.002551679965108633, -0.020470183342695236, 0.02432873472571373, -0.00441179983317852, 0.006482934113591909, -0.01522141881287098, 0.005674340296536684, -0.0022147661074995995, 0.03671298176050186, 0.041905004531145096, -0.007639080751687288, -0.0009655245230533183, -0.005507656838744879, -0.002580051776021719, 0.015320719219744205, -0.014270965941250324, -0.013207027688622475, 0.045791927725076675, -0.00946196261793375, -0.034783706068992615, -0.04011758789420128, -0.01550513505935669, -0.002821211237460375, 0.012433898635208607, -0.011270659044384956, -0.018767882138490677, 0.00020148341718595475, 0.016469772905111313, -0.00423447648063302, 0.008305815979838371, -0.031322360038757324, 0.029818659648299217, -0.010220905765891075, -0.03557811677455902, -0.011802628636360168, -0.0056672478094697, 0.014107828959822655, 0.0700213611125946, 0.04956536367535591, 0.00782349705696106, 0.023137124255299568, -0.007029089145362377, 0.017476968467235565, -0.019037412479519844, -0.00903638731688261, 0.031974907964468, 0.0006627452676184475, -0.015944896265864372, -1.9034530851058662e-05, 0.011114614084362984, -0.01910834200680256, 0.00650775944814086, 0.007412107195705175, 0.021080175414681435, -0.025009656324982643, -0.01910834200680256, -0.0054402737878263, 0.016866976395249367, -0.013788647018373013, 0.029761916026473045, 0.020285766571760178, 0.03362046927213669, 0.04434497281908989, 0.023349910974502563, -0.0029896681662648916, 0.007355364039540291, -0.021803652867674828, 0.004103257320821285, 0.02674032934010029, -0.008703019469976425, -0.004621041007339954, -0.03600369021296501, 0.05538156256079674, 0.007688731420785189, 0.002867315197363496, -0.004333777353167534, 0.0012483549071475863, -0.003030452411621809, 0.018129518255591393, 0.013263771310448647, -0.01878206618130207, 0.0272226482629776, -0.01482421439141035, 0.010447879321873188, 0.005716898012906313, -0.020285766571760178, 0.002973709022626281, 0.0027963859029114246, 0.010263463482260704, -0.010157069191336632, -0.013263771310448647, 0.010958570055663586, 0.01183099951595068, 5.003837213735096e-05, -0.00856116134673357, 0.000521773356013, -0.019647404551506042, -0.009852074086666107, 0.004911851137876511, -0.016668375581502914, -0.01858346536755562, -0.01981763355433941, -0.016767676919698715, -0.022966893389821053, -0.005805559456348419, -0.020498555153608322, 0.01801603101193905, -0.04457194358110428, -0.002461245283484459, -0.038670629262924194, 0.014476661570370197, 0.00792279839515686, 0.008539882488548756, 0.00719577306881547, 0.006025440525263548, 0.012774359434843063, 0.01734929531812668, -0.011114614084362984, -0.032882802188396454, 0.025435231626033783, -0.012930403463542461, -0.018313933163881302, -0.000552361598238349, -0.02821565791964531, 0.015831410884857178, -0.019094156101346016, 0.0030960619915276766, -0.02352014183998108, -0.008759763091802597, -0.025123141705989838, -0.0025889179669320583, 0.011313216760754585, 0.026910560205578804, 0.017108136788010597, 0.036968328058719635, 0.006823394447565079, -0.022697361186146736, -0.002613743068650365, -0.014838400296866894, 0.002301654312759638, -0.02258387580513954, 0.002697085030376911, -0.0015897019766271114, 0.001342336181551218, -0.007490129675716162, -0.02119366265833378, -0.01740603893995285, 0.014795842580497265, -0.022215042263269424, -0.012001230381429195, -0.00546509912237525, 0.014554683119058609, -0.003787622321397066, 0.02058367058634758, 0.0390678346157074, 0.014519218355417252, -0.0112848449498415, -0.0029790287371724844, -0.0219596978276968, 0.05226067453622818, -0.0017359935445711017, -0.026853816583752632, 0.022129928693175316, 0.011362866498529911, -0.0301591195166111, -0.051863472908735275, 0.015164675191044807, -0.007724196184426546, 0.014519218355417252, 0.021548308432102203, -0.012816916219890118, -0.011866464279592037, -0.024967098608613014, -0.008156864903867245, 0.0028549025300890207, -0.013121912255883217, -0.000701313023455441, -0.05112580955028534, 0.0018069228390231729, 0.0014868545113131404, -0.04051478952169418, -0.0013024384388700128, -0.028570303693413734, -0.028343331068754196, 0.000611321534961462, -0.01873951032757759, 0.023974088951945305, -0.014951887540519238, -0.014852586202323437, -0.031946536153554916, -0.009227896109223366, -0.016086755320429802, -0.0249954704195261, -0.001358295208774507, -0.009490334428846836, 0.028442632406949997, 0.0139163201674819, 0.02825821563601494, 0.012987147085368633, 0.013738997280597687, 0.013590045273303986, 0.0033248087856918573, -0.015590250492095947, 0.009164059534668922, -0.033393494784832, -0.0063623543828725815, 0.016100941225886345, 0.015774667263031006, 0.014795842580497265, 0.010206719860434532, 0.008554068394005299, -0.0190232265740633, 0.04023107513785362, -0.015831410884857178, -0.025364302098751068, -0.002659847028553486, -0.037252046167850494, -0.011199729517102242, -0.001133094890974462, -0.005160103552043438, -0.02475431002676487, -0.033393494784832, 0.0056672478094697, 0.028967509046196938, -0.009015108458697796, 0.008759763091802597, -0.002416914328932762, 0.03296791762113571, -0.007887333631515503, -0.0011268885573372245, -0.009958467446267605, 0.025108957663178444, 0.008589533157646656, -0.028726348653435707, -0.04241569712758064, -0.001072805025614798, 0.00903638731688261, 0.02718009054660797, 0.037535764276981354, 0.014994445256888866, 0.0002134527312591672, 0.012001230381429195, 0.003550009336322546, -0.05027465522289276, -0.00886615738272667, 0.012263668701052666, -0.015363276936113834, -0.001849480322562158, -0.00951161328703165, -0.0015285254921764135, -0.006188577506691217, -0.0033939648419618607, 0.021789466962218285, 0.013895041309297085, 0.028002871200442314, -0.031237244606018066, 0.007993726991117, 0.0158881526440382, 0.008504417724907398, 0.038727372884750366, 0.031662821769714355, 0.017633013427257538, -0.007490129675716162, -0.0045784832909703255, -0.025860806927084923, -0.039011090993881226, 0.0037557040341198444, 0.007153215352445841, 0.03072655387222767, 0.027875198051333427, 0.02465500868856907, -0.006968799512833357, 0.003271611873060465, 0.035266026854515076, -0.02465500868856907, -0.04139431565999985, 0.019236015155911446, 0.03242885693907738, -0.018668580800294876, -0.00480191083624959, -0.010795433074235916, -0.0364292673766613, 0.0212504044175148, -0.02143482118844986, 0.0013512023724615574, 0.014951887540519238, -0.023406654596328735, -0.01024218462407589, 0.052289046347141266, 0.007759660482406616, 0.03330837935209274, -0.006514852400869131, 0.0029772554989904165, -0.006028987001627684, -0.004078432451933622, 0.011909021995961666, -0.00530196214094758, -0.003730878932401538, 0.005223939660936594, -0.023505955934524536, -0.008383838459849358, 0.005121092312037945, 0.030244234949350357, 0.006259507033973932, -0.00382308685220778, 0.008320001885294914, 0.04278452694416046, -0.01239843387156725, 0.0017058486118912697, 0.005723990965634584, -0.014455382712185383, 0.012625407427549362, -0.038812488317489624, -0.01631372980773449, -0.009859167039394379, -0.015420020557940006, 0.013958877883851528, 0.027251020073890686, 0.020285766571760178, -0.030471209436655045, -0.005220393184572458, -0.005372891202569008, -0.02329316735267639, 0.01829974725842476, -0.00986625999212265, 0.021023431792855263, -0.033563725650310516, -0.012462270446121693, -0.007224144879728556, -0.016427215188741684, 0.016866976395249367, -0.007745474576950073, -0.01815789006650448, -0.009497427381575108, 0.024314548820257187, 0.00017122765711974353, 0.029761916026473045, -0.009405218996107578, 0.002535720821470022, -0.05350903049111366, 0.0025304011069238186, -0.03600369021296501, -0.007319899275898933, 0.0021367438603192568, -0.01949135959148407, -0.02746380865573883, 0.003883376717567444, 0.02096668817102909, -0.01041241455823183, -0.023775486275553703, 0.003894016146659851, 0.030187491327524185, 0.02542104572057724, -0.005273590330034494, -0.0032326008658856153, -0.012135995551943779, 0.0064545623026788235, -0.004947315435856581, 0.034982308745384216, 0.020895758643746376, 0.009908816777169704, -0.004876386374235153, -0.020697157829999924, 0.010830897837877274, -0.009064759127795696, -0.04116734117269516, 0.00038257468258962035, 0.010348578914999962, 0.015590250492095947, -0.029038436710834503, -0.016157684847712517, -0.014256780967116356, -0.022442016750574112, -0.013370164670050144, 0.006709907669574022, -0.0013990795705467463, -0.0024240072816610336, 0.0010249277111142874, 0.01375318318605423, 0.007702917326241732, 0.014469568617641926, -0.022456202656030655, -0.034783706068992615, -0.032740943133831024, 0.0031368464697152376, -0.02973354421555996, -0.028655419126152992, 0.001462915912270546, 0.029222853481769562, 0.0041954657062888145, -0.028229843825101852, -0.025789877399802208, -0.02959168516099453, -0.035124167799949646, -0.007958262227475643, -0.032797686755657196, 0.027009861543774605, 0.02394571714103222, 0.003429429605603218, -0.005894221365451813, 0.018086960539221764, 0.004798364359885454, 0.0242861770093441, -0.021690167486667633, -0.005606957711279392, -0.005287776235491037, -0.026073595508933067, 0.03404604271054268, -0.009859167039394379, -0.047267258167266846, 0.005000512581318617, 0.015107931569218636, -0.006458108779042959, 0.0016030011465772986, 0.0032272811513394117, 0.008837785571813583, 0.010128697380423546, -0.002778653521090746, 0.014583054929971695, 0.010235091671347618, 0.00567788677290082, 0.003092515515163541, -0.028811464086174965, 0.007951169274747372, 0.010405321605503559, -0.022186672315001488, -0.0005093607469461858, 0.004291220102459192, 0.006947520654648542, 0.011036592535674572, -0.009738586843013763, -0.010391135700047016, -0.022016441449522972, -0.0005758568877354264, -0.032088395208120346, 0.01944880187511444, 0.007639080751687288, 0.003268065396696329, 0.02740706503391266, -0.017377667129039764, 0.01344818715006113, -0.001312191248871386, -0.0013059849152341485, 0.010384042747318745, 0.015377462841570377, 0.01868276670575142, 0.012916217558085918, 0.01522141881287098, -0.01949135959148407, 0.004943768959492445, -0.017420224845409393, -0.05146626755595207, -0.024825239554047585, -0.00769582437351346, -0.025577090680599213, 0.0010222678538411856, -0.012164367362856865, -0.0012971187243238091, -0.00046768979518674314, -0.011228101328015327, -0.004479182418435812, 0.017051393166184425, 0.012412619777023792, 0.004333777353167534, -0.0055892253294587135, 0.001731560449115932, -0.010518808849155903, -0.0036918676923960447, -0.01507955975830555, -0.0028158915229141712, 0.0226689912378788, -0.021420635282993317, 0.032797686755657196, 0.1955377757549286, 0.012902031652629375, 0.011036592535674572, 0.03850040212273598, -0.0019523277878761292, -0.018484164029359818, 0.014001435600221157, -0.002908099442720413, 0.0001976044732145965, 0.022172486409544945, 0.02120784856379032, 0.00609282311052084, -0.008894529193639755, 0.0010098553029820323, 0.005294869188219309, 0.014249688014388084, -0.03101027011871338, -0.02342084050178528, 0.016767676919698715, -0.0047664460726082325, 0.004943768959492445, -0.012001230381429195, 0.006043172441422939, -0.004003956448286772, 0.01149763260036707, 0.026300568133592606, 0.0024523790925741196, 0.002356624463573098, 0.018186261877417564, 0.03787622228264809, -0.016469772905111313, -0.0007452004938386381, 0.03438650444149971, 0.011788442730903625, 0.0045926691964268684, -0.0022129928693175316, 0.010532994754612446, 0.0030056273099035025, 0.00019494463049340993, -0.006497120019048452, 0.0014691222459077835, 0.003346087643876672, 0.019221829250454903, -0.03291117399930954, 0.005326787009835243, 0.027165904641151428, -0.009277546778321266, 0.006192123983055353, 0.0011144758900627494, 0.027477994561195374, -0.013483651913702488, 0.045593325048685074, 0.027052419260144234, 0.013270864263176918, -0.0026297022122889757, 0.018909739330410957, -0.007224144879728556, -0.012015416286885738, -0.00903638731688261, 0.020498555153608322, -0.013292142190039158, -0.0031989095732569695, 0.0006237341440282762, 0.005723990965634584, -0.04031619057059288, -0.004816096276044846, -0.010008118115365505, -0.018895553424954414, 0.0017936235526576638, -0.008071749471127987, -0.012150181457400322, -0.034556735306978226, -0.017037207260727882, 0.008483138866722584, -0.010320207104086876, -0.022612247616052628, 0.02024320885539055, 0.035918574780225754, 0.02522244304418564, 0.019264385104179382, -0.005901314318180084, -0.007174494210630655, -0.01641302928328514, -0.01417875848710537, -0.021378077566623688, -0.005748816300183535, 0.04772120341658592, -0.00012767265434376895, -0.02370455674827099, -0.012362969107925892, -0.009071852080523968, 0.008603719063103199, -0.014739099889993668, -0.018994854763150215, -0.026073595508933067, -0.00611764844506979, -0.0055892253294587135, 0.0007443138747476041, -0.01987437717616558, -0.021349705755710602, -0.003285797778517008, 0.04905467480421066, 0.025009656324982643, 0.035067424178123474, -0.014150386676192284, -0.012632500380277634, -0.008490231819450855, 0.023690370842814445, -0.013512023724615574, -0.002581825014203787, 0.008688833564519882, -0.016952091827988625, 0.0036014330107718706, 0.0009344929712824523, -0.004975687246769667, 0.02343502640724182, -0.004723888356238604, -0.02750636637210846, -0.013760276138782501, -0.009185338392853737, 0.011845185421407223, -0.016753491014242172, -0.0021420635748654604, 0.008029191754758358, -0.009532892145216465, -0.026626842096447945, -0.030187491327524185, 0.0014407505514100194, -0.0049508619122207165, -0.02005879394710064, 0.029393084347248077, -0.013547487556934357, 0.029279597103595734, -0.015916524454951286, -0.016483958810567856, -0.01166786253452301, 0.009575449861586094, 0.012462270446121693, 0.009639285504817963, -0.009532892145216465, 0.0006955499993637204, 0.015547692775726318, -0.002876181388273835, -0.014583054929971695, -0.008717205375432968, -0.02603103779256344, 0.007447571959346533, 0.003131526755169034, -0.03390418365597725, -0.011781349778175354, 0.00199843174777925, 0.022541318088769913, -0.01387376245111227, -0.0055253892205655575, 0.042898014187812805, -0.006011254619807005, -0.01496607344597578, -0.015717923641204834, 0.0063339825719594955, -0.0010267009492963552, -0.04732399806380272, 0.0140156215056777, 0.0435221903026104, -0.010745782405138016, -0.023122938349843025, 0.020654600113630295, -0.18123844265937805, 0.030613066628575325, 0.015164675191044807, -0.017902543768286705, -0.007468850817531347, 0.015051187947392464, 0.01107205729931593, -0.0013175109634175897, -0.030386094003915787, -0.012802730314433575, 0.00027241266798228025, 0.018271377310156822, -0.0247968677431345, -0.013199934735894203, -0.011270659044384956, 0.014143293723464012, -0.009930095635354519, 0.02153412252664566, 0.044316601008176804, 0.015278161503374577, 0.005507656838744879, -0.022016441449522972, 0.0021846210584044456, 0.0027059512212872505, 0.02177528105676174, 0.006028987001627684, -0.022782476618885994, 0.012114716693758965, 0.010809618979692459, -0.027761710807681084, -0.0350106805562973, -0.0023974089417606592, 0.029847031459212303, 0.013625510036945343, 0.03078329749405384, 0.014526311308145523, -0.003954306244850159, -0.006028987001627684, 0.013384350575506687, 0.03620229288935661, 0.01574629545211792, -0.004135175608098507, 0.003597886534407735, 0.01635628566145897, -0.011213915422558784, -0.024541523307561874, 0.008341280743479729, -0.00040496172732673585, -0.012036695145070553, -0.019746705889701843, -0.015675365924835205, -0.04321010410785675, -0.01734929531812668, 0.002221859060227871, 0.010008118115365505, 0.01981763355433941, 0.01149763260036707, 0.010235091671347618, 0.012731801718473434, -0.012079251930117607, 0.017150694504380226, -0.019477173686027527, 0.011107521131634712, 0.010462065227329731, 0.003805354703217745, -0.01740603893995285, -0.0031740842387080193, 0.01550513505935669, -0.015873966738581657, 0.012490642257034779, -0.0082490723580122, -0.0019026773516088724, 0.025931736454367638, 0.010128697380423546, 0.03126561641693115, 0.018512535840272903, -0.015987453982234, 0.01329923514276743, 0.023534327745437622, 0.02807379886507988, -0.008497324772179127, 0.008745577186346054, -0.0007921911310404539, 0.011377052403986454, -0.02100924588739872, 0.0044862753711640835, -0.007497222628444433, 0.003534050192683935, 0.006961706560105085, 0.0033141695894300938, 0.020526926964521408, -0.032173510640859604, 0.0006964366184547544, 0.009256267920136452, 0.023165494203567505, 0.0217610951513052, 0.008128493092954159, -0.004894118756055832, 0.016441401094198227, -0.012171460315585136, -0.0064545623026788235, 0.010589738376438618, -0.004248662386089563, 0.011384145356714725, 0.007475943770259619, 0.00045150905498303473, -0.004181279800832272, -0.009944281540811062, 0.027477994561195374, -0.03693995624780655, -0.03376232460141182, 0.009171152487397194, 0.0032166417222470045, 0.02038506790995598, -0.003441842272877693, 0.047352369874715805, 0.021832024678587914, -0.006511305924504995, 0.03977712616324425, -0.01944880187511444, 0.05296996980905533, -0.02689637430012226, -0.01768975704908371, 0.015973268076777458, -0.00882359966635704, 0.020002050325274467, -0.11513236910104752, -0.03268419951200485, 0.0027094976976513863, 0.020839015021920204, -0.01835649088025093, 0.009185338392853737, -0.008327094838023186, 0.03546462953090668, -0.001654424937441945, 0.02517988532781601, 0.014994445256888866, -0.010135790333151817, 0.008149771951138973, 0.01726418174803257, 0.02167598158121109, -0.03648601099848747, -0.005209753755480051, 0.003551782574504614, 0.011093336157500744, 0.038018081337213516, -0.001042660092934966, -0.019789261743426323, 0.01256866380572319, -0.012653779238462448, -0.007131936959922314, 0.007270248606801033, -0.025874992832541466, 0.002996761118993163, -0.005809105932712555, -0.008568254299461842, 0.012128902599215508, -0.007936983369290829, 0.027378693222999573, -0.014937701635062695, -0.015462578274309635, -0.0002770674182102084, -0.030414465814828873, -0.01059683132916689, 0.023449212312698364, -0.02736450731754303, -0.0005332993459887803, 0.027307763695716858, 0.00846895296126604, -0.029222853481769562, -0.01024218462407589, 0.006674442905932665, -0.007603616453707218, 0.05294159799814224, 0.005135278217494488, -0.013937599025666714, -0.026924746111035347, 0.006231135223060846, -0.020172281190752983, -0.023818043991923332, 0.01706557907164097, -0.029393084347248077, 0.018895553424954414, -0.011064964346587658, -0.008738484233617783, -0.00967475026845932, -0.023818043991923332, -0.024825239554047585, 0.007617802359163761, 0.02242783084511757, 0.010589738376438618, 0.01835649088025093, 0.007312806323170662, -0.005128185264766216, 0.0021828478202223778, -0.0023371190764009953, -0.012249482795596123, 0.0004743394092656672, -0.028102170675992966, 0.013412722386419773, -0.029279597103595734, -0.010681945830583572, -0.008454767055809498, -0.02133551985025406, 0.018200447782874107, -0.018512535840272903, -0.010923105292022228, -0.006245321128517389, 0.009156966581940651, -0.02764822356402874, 0.011036592535674572, 0.027236834168434143, 0.02613033726811409, -0.004961501341313124, 0.0054048094898462296, -0.04181988909840584, -0.001029360806569457, 0.0009034614195115864, -0.004890572279691696, -0.032513972371816635, 0.015405834652483463, 0.0165974460542202, -0.003475533565506339, -0.0041138967499136925, 0.012994240038096905, -0.02220085635781288, -0.02291014976799488, -0.01740603893995285, -0.038301799446344376, 0.03719530254602432, -0.011738792061805725, -0.00375925051048398, 0.00459976214915514, 0.004677784629166126, -0.007596523500978947, -0.02076808549463749, 0.00748303672298789, 0.01645558699965477, -0.002998534357175231, 0.03736553341150284, -0.016483958810567856, -0.013866669498383999, -0.011781349778175354, 0.000246257521212101, 0.017675571143627167, 0.0034382957965135574, 0.007217051927000284, -0.0041954657062888145, -0.005379984155297279, -0.01722162403166294, 0.0052026608027517796, 0.013696439564228058, -0.0004969480796717107, 0.008596626110374928, -0.032230254262685776, 0.01864020898938179, -0.0025126689579337835, -0.0030517312698066235, 0.013143191114068031, -0.03206002339720726, -0.00013387897342909127, 0.004046514164656401, -0.00813558604568243, -0.017008835449814796, 0.0024364199489355087, 0.028868207708001137, 0.018555093556642532, -0.00638008676469326, -0.017604641616344452, -0.027392879128456116, -0.0036173921544104815, -0.031237244606018066, -0.01124228723347187, -0.027563108131289482, -0.04794817790389061, 0.004748713690787554, 0.013157377019524574, 0.025818249210715294, 0.02005879394710064, -0.0067063611932098866, -0.012916217558085918, -0.020640414208173752, -0.009426497854292393, -0.00585521012544632, 0.003401057794690132, 0.021605052053928375, 0.026073595508933067, 0.005461552646011114, 0.04599053040146828, -0.007355364039540291, -0.0009211937431246042, -0.039294809103012085, 0.006195670459419489, -0.012866566888988018, -0.017335109412670135, 0.012625407427549362, 0.008312908932566643, -0.021378077566623688, -0.01124228723347187, -0.02979028783738613, 0.01276017352938652, 0.04618913307785988, -0.01375318318605423, 0.003294663969427347, -0.0004832055710721761, -0.014150386676192284, -0.004947315435856581, 0.026626842096447945, 0.017150694504380226, -0.006238228175789118, -0.030953528359532356, 0.016483958810567856, 0.009582542814314365, 0.024399664252996445, -0.011894836090505123, -0.006504212971776724, 0.004415346309542656, 0.027903569862246513, 0.01612931303679943, 0.001445183646865189, 0.008093028329312801, 0.004826735705137253, 0.0003444502071943134, 0.03991898521780968, 0.0054402737878263, 0.011745885014533997, 0.022172486409544945, 0.010724503546953201, -0.00262615573592484, -0.002177528105676174, 0.00149128760676831, -0.035266026854515076, -0.03617392107844353, 0.010745782405138016, -0.04312498867511749, -0.037308789789676666, 0.012533199973404408, 0.02893913723528385, 0.00036506401374936104, -0.00946196261793375, 0.026484984904527664, 0.017136508598923683, -0.008695926517248154, -0.0019753798842430115, -0.019846005365252495, 0.0037237859796732664, -0.02718009054660797, 0.029393084347248077, 0.0028868208173662424, 0.010731596499681473, 0.015902338549494743, -0.004142268560826778, 0.014568869024515152, 0.011987044475972652, 0.012667965143918991, -0.00019062237697653472, -0.003594340058043599, -0.02485361136496067, 0.0017989432672038674, -0.013738997280597687, -0.008546975441277027, -0.011951579712331295, -0.007071646861732006, -0.020753899589180946, -0.023931531235575676, 0.00998683925718069, -0.012128902599215508, 0.10872036218643188, 0.01550513505935669, -0.014994445256888866, -0.0018299748189747334, -0.0014957207022234797, 0.015859780833125114, 0.0072915274649858475, 0.0003717136278282851, 0.02817310020327568, -0.034925565123558044, 0.024257805198431015, 0.007376642432063818, 0.0016349193174391985, -0.04681330919265747, -0.02708078920841217, -0.01429933775216341, 0.010249277576804161, 0.018711138516664505, -0.01496607344597578, -0.014434103854000568, -0.003030452411621809, 0.0003482183092273772, 0.012554478831589222, 0.006383633241057396, -0.013795739971101284, -0.02177528105676174, 0.03353535383939743, 0.003479080041870475, -0.007369549944996834, -0.041706401854753494, 0.015107931569218636, 0.0029612963553518057, -0.04227383807301521, -0.01906578429043293, -0.0014513898640871048, 0.009497427381575108, -0.003493265947327018, -0.018129518255591393, 0.0006578688626177609, -0.01071741059422493, 0.0140156215056777, -0.009234989061951637, -0.017377667129039764, -0.034783706068992615, 0.013604231178760529, -0.011752977967262268, -0.011894836090505123, -0.029620056971907616, -0.007674545515328646], "c35de880-d504-4213-a0cd-ca365e98ddff": [0.01226370595395565, -0.004300813190639019, 0.016209665685892105, -0.010049425065517426, -0.017572300508618355, -0.013271487317979336, 0.0018434592057019472, 0.0018753960030153394, -0.048231564462184906, -0.016465160995721817, 0.025151951238512993, 0.0090274503454566, -0.0036319163627922535, -0.00884292647242546, 0.006795427296310663, -0.008055154234170914, 0.029126301407814026, -0.01673484779894352, -0.0029222110752016306, -0.014052162878215313, -0.004226294346153736, -0.0074022249318659306, -0.021262766793370247, 0.0154999615624547, 0.002169923624023795, 0.002361543942242861, 0.023633182048797607, -0.020893720909953117, 0.010184269398450851, -0.0053050462156534195, 0.02016982063651085, -0.0015932881506159902, -0.005280206445604563, 0.01073783915489912, -0.01701872982084751, -0.01640838384628296, 0.005830228328704834, 0.0045350161381065845, 0.02387448213994503, -0.0119230467826128, -0.0018115225248038769, 0.01943172886967659, 0.010028134100139141, -0.018636858090758324, -0.001358198351226747, 0.0140024833381176, -0.01416571531444788, 0.014591538347303867, 0.0016092564910650253, 0.00973715540021658, 0.0058160340413451195, -0.0017494233325123787, -0.008140318095684052, 0.019573669880628586, -0.001448685652576387, 0.0059686205349862576, -0.008289356715977192, 0.033214204013347626, 0.014577344059944153, -0.0019144297111779451, -0.03378196805715561, 0.021617619320750237, 0.0010787518694996834, 0.004563404247164726, -0.010553316213190556, 0.003683369839563966, -0.0034952980931848288, -0.026003597304224968, -0.0053724683821201324, -0.02007046341896057, 0.012881149537861347, 0.025080980733036995, 0.02147567830979824, 0.019360758364200592, 0.00903454702347517, 0.0010246369056403637, -0.008374521508812904, -0.002624134998768568, 0.001704179565422237, -0.004691151436418295, 0.01057460717856884, 0.007036726921796799, -0.01741616614162922, 0.014988973736763, 0.0032983548007905483, 0.04232681542634964, 0.010532025247812271, 0.003984994720667601, 0.011561097577214241, -0.017288418486714363, -0.0154999615624547, 0.0020013686735183, 0.025662939995527267, 0.025166146457195282, 0.0010858488967642188, 0.013633436523377895, -0.004588244017213583, 0.015471572987735271, -0.015102526172995567, -0.02525131031870842, -0.004691151436418295, 0.024286111816763878, -0.029892781749367714, -0.01089397445321083, 0.004971484653651714, 0.00104149233084172, -0.012242414057254791, -0.009765543043613434, 0.009822320193052292, -0.0032575468067079782, -0.018849769607186317, 0.025336474180221558, -0.013207613490521908, -0.010950750671327114, 0.009290040470659733, -0.01554254349321127, -0.010624286718666553, -0.006823815405368805, 0.012405646964907646, -0.035967860370874405, 0.04323523864150047, -0.022937672212719917, 0.022639594972133636, -0.02119179628789425, -0.012505005113780499, 0.007565457373857498, -0.007288672029972076, 0.004978581797331572, 0.012703723274171352, -0.005869261920452118, 0.00569893280044198, 0.011738523840904236, 0.02283831313252449, -0.003252224065363407, -0.009375205263495445, 0.005230527371168137, -0.011766912415623665, -0.008445492014288902, -0.020595643669366837, -0.02628747932612896, 0.008019668981432915, 0.030148277059197426, 0.007114794570952654, -0.00416596932336688, 0.010205560363829136, 0.03437811881303787, 0.03730210289359093, -0.007579651195555925, 0.02283831313252449, -0.00016367575153708458, 0.01073074247688055, -0.03040377050638199, 0.0014770738780498505, -0.0018150709802284837, 0.001526753301732242, 0.018991710618138313, -0.013221807777881622, 0.018367169424891472, -0.02628747932612896, -0.01108559500426054, 0.0009918130235746503, 0.018296198919415474, -0.00016944210801739246, 0.003246901324018836, 0.01332826353609562, 0.05021873861551285, 0.011369477026164532, -0.017898764461278915, 0.006898334249854088, 0.002517679240554571, 0.008793246932327747, 0.017870375886559486, -0.01778521202504635, 0.024129975587129593, 0.02834562584757805, 0.00027545433840714395, -0.004318556282669306, -0.02279573120176792, -0.015897396951913834, -0.016649683937430382, 0.01381086278706789, -0.008913896977901459, 0.02150406688451767, 0.03514460101723671, -0.03213544934988022, 0.0010902845533564687, 0.0389770083129406, -0.0004666311724577099, 0.01809748262166977, 0.007771271746605635, 0.006085721775889397, -0.009538437239825726, -0.03775631636381149, -0.011497223749756813, -0.6190900206565857, -0.004733733367174864, 0.018651051446795464, -0.02628747932612896, 0.009304234758019447, -0.0043859779834747314, 0.008920994587242603, 0.01263275183737278, 0.0019729803316295147, 0.02085113897919655, -0.006887688767164946, 0.021049855276942253, 0.015272855758666992, -0.01432894729077816, -0.02553519234061241, -0.008984867483377457, 0.011184954084455967, -0.018835576251149178, -0.007444807328283787, -0.02184472605586052, -0.029807617887854576, 0.032249003648757935, 0.0019818516448140144, -0.008693888783454895, 0.0024413857609033585, -0.03102830983698368, 0.029211465269327164, -0.00016533912275917828, -0.016919370740652084, -0.005486021284013987, -0.026727497577667236, 0.04062352329492569, 0.002221377333626151, 0.0007815628196112812, 0.058195825666189194, -0.0063270218670368195, -0.025847462937235832, 0.006784781347960234, 0.015443184413015842, 0.030829593539237976, -0.04119128733873367, -0.007707398384809494, 0.012661140412092209, 0.009786834940314293, -0.0032078674994409084, 0.007263832725584507, 0.014108939096331596, 0.0005092134815640748, -0.0035751399118453264, -0.017487136647105217, 0.009588116779923439, -0.022327324375510216, 0.0013998934300616384, 0.020226597785949707, 0.0017574074445292354, -0.03006311133503914, 0.020652420818805695, -0.006813169922679663, 0.013122448697686195, 0.0037791801150888205, -0.01514510903507471, -0.0041304840706288815, -0.011660456657409668, -0.03182318061590195, -0.055754438042640686, 0.009247458539903164, 0.007934504188597202, -0.007686106953769922, 0.005549894645810127, -0.015230272896587849, 0.008814538829028606, -0.002420094795525074, -0.014286365360021591, -0.024073200300335884, -0.0018647504039108753, 0.021220184862613678, 0.02112082578241825, -0.013640533201396465, -0.0029576963279396296, 0.01574126072227955, -0.0014229589141905308, -0.028061743825674057, 0.005280206445604563, 0.014293462038040161, 0.029410183429718018, -1.6065396266640164e-05, -0.01977238617837429, -0.019516892731189728, 0.011774009093642235, 0.004939548205584288, 0.009801028296351433, 0.013399234041571617, -0.008097736164927483, -0.010304919444024563, 0.017657464370131493, 0.04437076672911644, -0.00520568760111928, 0.005478924140334129, 0.01486122701317072, -0.04266747459769249, -0.021589232608675957, -0.0064831566996872425, -0.0005265125073492527, -0.0064902538433671, 0.036705952137708664, 0.03346969559788704, -0.00621701730415225, -0.0027962385211139917, 0.030091499909758568, -0.021759560331702232, 0.009417788125574589, 0.003576914081349969, -0.013612145557999611, -0.0012073859106749296, 0.01772843487560749, -0.028544342145323753, 0.01640838384628296, -0.018480723723769188, -0.011383671313524246, -0.015358020551502705, -0.006213468965142965, 0.007395128253847361, 0.028217878192663193, -0.011220439337193966, 0.010084910318255424, 0.019545281305909157, 0.01072364579886198, 0.008069347590208054, -0.0028139811474829912, -0.013314069248735905, 0.008069347590208054, -0.016238054260611534, 0.018665246665477753, -0.009886193089187145, 0.030205052345991135, 0.0239170640707016, 0.005436341743916273, -0.009112614206969738, 0.00011333104339428246, -0.03193673491477966, -0.011255924589931965, -0.009957163594663143, -0.0022036347072571516, -0.007309963461011648, -0.029892781749367714, -0.03554203733801842, -0.01909106969833374, -0.007373836822807789, 0.0303186047822237, 0.013534077443182468, -0.021631814539432526, -0.018892351537942886, -0.020269179716706276, 0.019502699375152588, 0.002689782762899995, 0.0071822162717580795, 0.0007403112249448895, -0.06058043614029884, -0.01838136464357376, -0.02455579861998558, -0.02356221154332161, 0.04388817027211189, -0.017132282257080078, -0.02356221154332161, -0.005141814239323139, -0.005975717678666115, -0.004921805579215288, 0.018892351537942886, 0.0029736647848039865, -0.026429420337080956, -0.0129450224339962, -0.006337667349725962, -0.0034882009495049715, -0.0023154132068157196, -0.017274225130677223, 0.004304361995309591, -0.005294400732964277, 0.0037011124659329653, 0.0016172407194972038, -0.0042830705642700195, 0.02116340771317482, 0.01740197092294693, -0.012455325573682785, -0.00324512692168355, 0.021929889917373657, -0.00031404453329741955, 0.021560844033956528, 0.01467670314013958, -0.01738777756690979, 0.02664233185350895, -0.028047548606991768, -0.01633741334080696, -0.02085113897919655, 0.004407269414514303, -0.005933135282248259, -0.008282259106636047, -0.022355712950229645, -0.010127493180334568, 0.00024861859856173396, 0.017146477475762367, 0.008225482888519764, 0.0239170640707016, 0.022057637572288513, -0.004070159047842026, 0.004134032875299454, 0.0009314880589954555, 0.0070296297781169415, -0.02045370265841484, 0.01876460574567318, -0.014187006279826164, 0.0022231515031307936, -0.006050236523151398, -0.0034686841536313295, -0.037330493330955505, -0.016621295362710953, 0.017132282257080078, -0.008303551003336906, 0.023093806579709053, -0.003818213939666748, 0.012866955250501633, 0.000416064664022997, -0.003818213939666748, 0.01677742972970009, -0.012050794437527657, -0.015556737780570984, -0.0050460039637982845, 0.024456441402435303, 0.022937672212719917, 0.03917572647333145, -0.008346132934093475, -0.004052416421473026, 0.026713302358984947, 0.024073200300335884, -0.0033977136481553316, 0.04877094179391861, -0.0018035382963716984, 0.050332292914390564, -0.014201200567185879, 0.025719715282320976, -0.01980077475309372, 0.007242541294544935, 0.009538437239825726, 0.01127721555531025, -0.006412186194211245, 0.029921170324087143, -0.014875420369207859, 0.028814030811190605, 0.011333991773426533, -0.022057637572288513, 0.00014637669664807618, 0.012150152586400509, 0.001974754733964801, -0.015769649296998978, -0.010610092431306839, 0.01226370595395565, -0.0020439508371055126, 0.006869946140795946, 0.004882771521806717, 0.024669352918863297, 0.018537499010562897, 7.939826900837943e-05, -0.005482472479343414, 0.027863025665283203, -0.027905607596039772, 0.002118469914421439, 0.02288089506328106, -0.006916076876223087, -0.016252249479293823, -0.01432894729077816, -0.005546345841139555, 0.0043114591389894485, -0.010205560363829136, -0.003404810559004545, 0.003740146290510893, -0.018934933468699455, 0.012164346873760223, 0.011064304038882256, 0.01092236302793026, 0.008999061770737171, 0.008431297726929188, -0.048657387495040894, -0.012320482172071934, 0.027423009276390076, 0.022611206397414207, -0.004698248114436865, -0.016493547707796097, 0.0008818086935207248, 0.0048579322174191475, -0.007459001615643501, 0.007551263086497784, -0.005776999983936548, -0.0018682988593354821, -0.020993079990148544, 0.0026063923723995686, -0.009581020101904869, 0.02733784355223179, 0.049679361283779144, -0.01602514274418354, -0.009219069965183735, -0.01870782859623432, -0.003683369839563966, 0.018608469516038895, -0.0065505788661539555, -0.019573669880628586, 0.027380425482988358, 0.002056370722129941, -0.016876788809895515, -0.03403745964169502, 0.00435758987441659, -0.011291409842669964, -0.0026631688233464956, -0.015428991056978703, -0.006962208077311516, 0.006366055458784103, 0.004293716512620449, -0.017870375886559486, 0.004684054292738438, -0.019176233559846878, 0.029977947473526, 0.0119585320353508, -0.02864370122551918, -0.013179224915802479, -0.0064902538433671, 0.022355712950229645, 0.07210604846477509, 0.045846953988075256, -0.00234734988771379, 0.030488934367895126, -0.02488226443529129, -9.924783807946369e-05, -0.009573922492563725, -0.023320913314819336, 0.037018220871686935, 0.0058195823803544044, -0.006167338229715824, 0.0154999615624547, 0.010453957132995129, -0.02286670170724392, 0.004740830510854721, 0.022227967157959938, 0.011703038588166237, -0.030261829495429993, -0.014662508852779865, -0.010915265418589115, 0.014215394854545593, 0.005329885985702276, 0.026727497577667236, 0.03480394184589386, 0.03642207011580467, 0.04766380041837692, 0.03551364690065384, 0.013817960396409035, 0.006461865734308958, -0.029921170324087143, 0.0062915366142988205, 0.016919370740652084, -0.011312700808048248, 0.014137327671051025, -0.025379057973623276, 0.04377461597323418, -0.00015003611042629927, 0.009219069965183735, -0.015812231227755547, 0.013037283904850483, -0.011369477026164532, 0.0069905961863696575, 0.01022685132920742, -0.021660203114151955, 0.04139000549912453, -0.006202823482453823, -0.0075086806900799274, 0.01518769096583128, -0.02218538336455822, -0.013704407028853893, 0.009751349687576294, 0.009091323241591454, -0.024782905355095863, -0.000872937380336225, 0.01869363524019718, 0.006273793987929821, -0.005383113864809275, 0.0034473929554224014, -0.014790256507694721, -0.024811293929815292, -0.036989834159612656, -0.01431475393474102, 0.004975033458322287, -0.026401033625006676, -0.005042455159127712, -0.01571287214756012, -0.022256353870034218, 0.006756393238902092, -0.030488934367895126, 0.011965629644691944, -0.03219222649931908, -0.027749473229050636, -0.02760753221809864, 0.018920740112662315, -0.004747927654534578, 0.009410690516233444, 0.02079436182975769, 0.008154512383043766, -0.002515904838219285, 0.0003927774669136852, -0.008033862337470055, -0.036961447447538376, 0.014279268682003021, -0.02252604253590107, -0.0269829910248518, 0.009325525723397732, -0.018565887585282326, 0.014790256507694721, -0.027124932035803795, -0.005940232425928116, -0.0154999615624547, -0.01041847188025713, -0.012320482172071934, -0.005134717095643282, 0.008906800299882889, 0.014918003231287003, 0.012803081423044205, 0.023647377267479897, 0.010106202214956284, -0.02455579861998558, -0.005077940411865711, -0.006667680107057095, -5.37823470949661e-05, -0.020553061738610268, 0.0025141306687146425, -0.025506803765892982, -0.014506373554468155, -0.01904848776757717, -0.022000860422849655, -0.024868069216609, 0.019999492913484573, -0.036677565425634384, -0.020184015855193138, 0.009531340561807156, 0.007955795153975487, 0.0037188550923019648, 0.03029021807014942, 0.032277390360832214, 0.0164225772023201, -0.0060005574487149715, 0.0008596304105594754, -0.0080054746940732, 0.05118393898010254, 0.014946390874683857, -0.010780422016978264, 0.020709197968244553, 0.008566141128540039, -0.025109369307756424, -0.049622587859630585, 0.0183955579996109, -0.0034828782081604004, 0.023689959198236465, 0.019502699375152588, -0.0036088507622480392, -0.019545281305909157, -0.024711934849619865, 0.007792562711983919, 0.0053014978766441345, -0.010205560363829136, -0.019630445167422295, -0.042866192758083344, 0.003725952235981822, -0.0008653967524878681, -0.02867208980023861, 0.008991965092718601, -0.02658555656671524, -0.024683546274900436, 0.02076597325503826, -0.008580335415899754, 0.02932501770555973, -0.014733479358255863, -0.0235764067620039, -0.022057637572288513, -0.007735786493867636, -0.005138265434652567, -0.014974779449403286, 0.012682431377470493, -0.009211973287165165, 0.02349124103784561, 0.025095175951719284, 0.03139735758304596, 0.011894659139215946, 0.01230628788471222, 0.0041269357316195965, -0.0035041694063693285, -0.008970673196017742, 0.008743568323552608, -0.030517322942614555, 0.005883456207811832, 0.016209665685892105, 0.029608899727463722, 0.020936302840709686, -0.005028261337429285, -0.01025523990392685, -0.015287050046026707, 0.029239853844046593, -0.028501760214567184, -0.03278838098049164, -0.013342457823455334, -0.03920411318540573, -0.008147415705025196, 0.0031315740197896957, -0.022369908168911934, -0.01463412120938301, -0.026755886152386665, 0.003984994720667601, 0.019005903974175453, 0.0011195599799975753, 0.016592906787991524, -0.008949382230639458, 0.038011807948350906, 0.005035358481109142, 0.00035396547173149884, 0.0016882112249732018, 0.027366232126951218, -0.0042795222252607346, -0.023051224648952484, -0.03917572647333145, 0.014364432543516159, 0.013470204547047615, 0.01088687777519226, 0.025975210592150688, 0.0005948216421529651, -0.003465135581791401, -0.015599319711327553, 0.0029470508452504873, -0.03591108322143555, -0.011014624498784542, 0.007941600866615772, -0.013015992939472198, 0.002404126338660717, -0.02735203690826893, 0.0045350161381065845, -0.013363748788833618, 0.0029683420434594154, 0.007679010275751352, 0.011632068082690239, 0.020709197968244553, -0.008459685370326042, -0.012874051928520203, 0.023661570623517036, 0.0017228093929588795, 0.020652420818805695, 0.03434973210096359, 0.021049855276942253, 0.007054469548165798, 0.009439079090952873, -0.03613818809390068, -0.031879957765340805, -0.0014921551337465644, 0.001332471496425569, 0.01980077475309372, 0.035286542028188705, -0.0016988568240776658, -0.011830785311758518, 0.022781535983085632, 0.026046181097626686, -0.02353382483124733, -0.032277390360832214, 0.01565609686076641, 0.02079436182975769, -0.0036407876759767532, -0.010489442385733128, -0.008062250912189484, -0.005741514731198549, 0.014932197518646717, 0.0023242845200002193, -0.003690466983243823, 0.0090274503454566, -0.004659214522689581, -0.004726636689156294, 0.036989834159612656, -0.000979393138550222, 0.015059944242238998, 0.006032493896782398, 0.003413681872189045, 0.0014619927387684584, -0.010233948938548565, 0.02049628645181656, -0.00017809165001381189, -0.01734519563615322, 0.01310825441032648, -0.015556737780570984, -0.001418523257598281, -0.002444934332743287, 0.023746736347675323, 0.013349554501473904, -0.005006969906389713, 0.0008090639021247625, 0.03880668058991432, -0.0224834606051445, -0.0031457683071494102, 0.010787518694996834, -0.019318174570798874, 0.0055286032147705555, -0.00955263152718544, -0.010837198235094547, -0.009850707836449146, -0.010851392522454262, -0.00510632898658514, 0.014250880107283592, 0.007451904471963644, -0.04561984911561012, -0.006238308735191822, 0.00019239663379266858, -0.019885938614606857, 0.0040027373470366, -0.025492610409855843, 0.004783412907272577, -0.03446328267455101, -0.009247458539903164, -0.0024059005081653595, -0.01038298662751913, 0.008807441219687462, -0.012859857641160488, -0.018523305654525757, -0.017302611842751503, 0.008899702690541744, -0.012235317379236221, 0.02110663242638111, -0.0022781535517424345, -0.010602995753288269, -0.03568397834897041, 0.020922109484672546, -0.025478417053818703, 0.0045385644771158695, 0.0174445528537035, -0.025733910501003265, -0.012952120043337345, 0.0021929889917373657, -0.0008272501290775836, -0.007806756999343634, -0.002638329053297639, -0.0024165462236851454, 0.013612145557999611, 0.024428052827715874, 1.1373303095751908e-05, -0.010312016122043133, -0.029239853844046593, 0.01779940538108349, -0.005950877908617258, 0.023434465751051903, 0.02425772324204445, 0.024115782231092453, -0.012455325573682785, -0.027181709185242653, 0.01128431223332882, -0.014108939096331596, -0.03131219372153282, -0.010659771971404552, 0.005070843733847141, 0.01329987496137619, -0.004063062369823456, -0.010092007927596569, -0.009687475860118866, -0.022724760696291924, -0.015216079540550709, 0.022639594972133636, -0.014889614656567574, -0.004031125456094742, -0.0033675511367619038, -0.0038146653678268194, 0.019701415672898293, 0.021617619320750237, -0.012249511666595936, -0.03145413473248482, -0.011298506520688534, -0.0045385644771158695, -0.03185156732797623, -0.02904113568365574, 0.003839505137875676, 0.0303186047822237, 0.013228904455900192, -0.029211465269327164, -0.026046181097626686, -0.02386028878390789, -0.03926089033484459, -0.004222746007144451, -0.020978884771466255, 0.012526296079158783, 0.03710338845849037, -0.004041770938783884, -0.014343141578137875, 0.005471826996654272, -0.0010956074111163616, 0.020907914265990257, -0.03071604110300541, -0.008225482888519764, -0.006433477625250816, -0.008111930452287197, 0.029069524258375168, -0.006731553468853235, -0.037330493330955505, 0.002833497943356633, 0.01677742972970009, 0.018963322043418884, 0.006451220251619816, 0.006539933383464813, 0.009517146274447441, 0.00026503053959459066, 0.00048481734120287, 0.020325956866145134, 0.019261399284005165, 0.0005988137563690543, 0.004478239919990301, -0.014243783429265022, 0.0009368108585476875, 0.02317897044122219, -0.004176614806056023, 0.009502951987087727, -0.0021557295694947243, 0.006756393238902092, 0.010560412891209126, 0.016138695180416107, -0.004510176368057728, -0.02759333699941635, 0.007700301241129637, -0.01400958001613617, 0.0072531867772340775, 0.010439762845635414, 0.005681190174072981, 0.034236177802085876, -0.017543911933898926, 0.011724329553544521, -0.0026986540760844946, -0.0042795222252607346, -0.0012712593888863921, 0.007955795153975487, 0.013221807777881622, -0.019644640386104584, 0.001674017054028809, -0.005606670863926411, 0.007544165942817926, -0.010610092431306839, -0.02868628315627575, -0.014208298176527023, -0.005439890082925558, -0.01667807251214981, 0.0057131266221404076, -0.004116290248930454, -0.015173496678471565, -0.004080804996192455, -0.017998123541474342, -0.009914581663906574, 0.00887841172516346, -0.00014216282579582185, 0.0025070335250347853, -0.0037365977186709642, 0.013739892281591892, -0.006781233008950949, -0.020907914265990257, -0.017671659588813782, 0.0027465589810162783, 0.029410183429718018, 0.0005402630777098238, 0.024144170805811882, 0.21143536269664764, 0.01674904301762581, 0.009048741310834885, 0.022582819685339928, 0.003119154367595911, -0.013519884087145329, 0.01975819282233715, -0.014776062220335007, 0.0080409599468112, 0.014875420369207859, 0.021716978400945663, 0.029750840738415718, -0.011305603198707104, -0.0021450838539749384, -0.013541175052523613, 0.005762806162238121, -0.03926089033484459, -0.025464221835136414, -3.846546860586386e-06, 0.008140318095684052, 0.017160670831799507, -0.0014158618869259953, 0.010744936764240265, 0.00029208805062808096, 0.019673027098178864, 0.006586064118891954, 0.005709578283131123, 0.010986235924065113, 0.024768710136413574, 0.04513724893331528, -0.03205028548836708, -0.003230932867154479, 0.02865789458155632, 0.018580080941319466, -0.00019284020527265966, -0.0020404024980962276, 0.006323473062366247, -0.004155323840677738, -0.005315691698342562, -0.006163789425045252, 0.02421514131128788, -0.008402909152209759, 0.022355712950229645, -0.013732795603573322, 0.002357995370402932, 0.018963322043418884, -0.004325652960687876, 0.001225128537043929, 0.012682431377470493, 0.02729526162147522, -0.013101157732307911, 0.028104325756430626, 0.02797657810151577, 0.011028818786144257, -0.0035609458573162556, 0.020042074844241142, 0.004623729269951582, -0.009808125905692577, 0.0002495057415217161, 0.027735278010368347, -0.004407269414514303, 0.01640838384628296, 0.0067705875262618065, 0.009474564343690872, -0.03991381824016571, 0.0022870248649269342, -0.010070716962218285, 0.01738777756690979, 0.017217447981238365, -0.017955541610717773, -0.00725673558190465, -0.017288418486714363, 0.0017973283538594842, 0.0069905961863696575, -0.008473879657685757, -0.02966567687690258, 0.02966567687690258, 0.038721516728401184, 0.030545711517333984, 0.006657034624367952, -0.014151521027088165, -0.010184269398450851, -0.01977238617837429, -0.03278838098049164, -0.01606772467494011, -0.00666413176804781, 0.023789318278431892, -0.00784224271774292, -0.019999492913484573, -0.036705952137708664, -0.008445492014288902, -0.007778368890285492, -0.01602514274418354, -0.0070615666918456554, -0.01415861863642931, 0.012483714148402214, -0.0005021163960918784, 0.006713810842484236, -0.0026472003664821386, -0.022242160513997078, 0.004464045632630587, 0.05754289776086807, 0.032249003648757935, 0.028842419385910034, -0.02212860807776451, -0.010993333533406258, -0.018963322043418884, 0.02254023589193821, -0.018963322043418884, -0.011007527820765972, 0.009119711816310883, -0.012895342893898487, 0.009183584712445736, -0.0090629355981946, -0.005028261337429285, 0.001658935914747417, -0.009112614206969738, -0.012746305204927921, 0.012888246215879917, -0.022284742444753647, -0.0031670592725276947, -0.01880718767642975, -0.006777684669941664, 0.005407953634858131, -0.00495019368827343, -0.016933565959334373, -0.024797098711133003, -0.0004309241194278002, 0.003216738812625408, -0.024371275678277016, 0.0145134711638093, -0.009183584712445736, 0.020709197968244553, -0.012881149537861347, -0.015074138529598713, -0.01021975465118885, -0.00234734988771379, 0.011206245049834251, 0.003021569922566414, -0.002393480623140931, -0.003087217453867197, 0.020013686269521713, 0.0023721896577626467, -0.007920309901237488, -0.01397409476339817, -0.027508173137903214, 0.01609611324965954, 0.004779864568263292, -0.03434973210096359, -0.00853065587580204, -0.010780422016978264, 0.011511418037116528, -0.01775682345032692, 0.004740830510854721, 0.02286670170724392, 0.002148632425814867, -0.012568878941237926, -0.03065926395356655, 0.012221123091876507, 0.012611460871994495, -0.0526033490896225, -0.0035893339663743973, 0.04096418246626854, 0.0006848655175417662, -0.03988543152809143, 0.011057206429541111, -0.18304716050624847, 0.020666614174842834, 0.015471572987735271, -0.013775377534329891, 0.008700985461473465, 0.0024289661087095737, 0.010673966258764267, 0.0045385644771158695, -0.041787441819906235, -0.022086026147007942, 0.0011621422600001097, 0.011128176935017109, -0.0429229699075222, -0.020595643669366837, 0.005407953634858131, 0.01609611324965954, -0.005212784744799137, 0.02456999383866787, 0.043831393122673035, 0.009112614206969738, 0.013704407028853893, -0.027777861803770065, 0.0046414718963205814, 0.003165285103023052, 0.001225128537043929, 0.010915265418589115, -0.026145538315176964, 0.00416596932336688, -0.005918941460549831, -0.014988973736763, -0.03687627986073494, -0.01974399760365486, 0.025010010227560997, -0.002322510117664933, 0.03142574429512024, 0.010716548189520836, -0.0020084655843675137, 0.004027577117085457, 0.0013023089850321412, 0.035002660006284714, 0.011369477026164532, 0.029466958716511726, 0.015201885253190994, 0.027224291115999222, -0.008289356715977192, -0.0038607961032539606, 0.026684915646910667, 0.00461308378726244, -0.002070564776659012, -0.028544342145323753, -0.007189313415437937, -0.037727925926446915, -0.012363064102828503, -0.0074377101846039295, 0.004755024798214436, 0.003924669697880745, 0.011710135266184807, 0.017983930185437202, 0.024016423150897026, -0.012881149537861347, 0.008019668981432915, -0.004414366092532873, 0.009084226563572884, 0.009730057790875435, -0.0002874305937439203, -0.0134560102596879, 0.005585379898548126, 0.014932197518646717, -0.008495170623064041, 0.0027749473229050636, -0.008800344541668892, -0.006525739096105099, 0.02178794890642166, 0.021731173619627953, 0.009659087285399437, 0.02587585151195526, -0.0181258711963892, 0.013853445649147034, 0.014889614656567574, 0.03514460101723671, 0.010794616304337978, 0.020340150222182274, 0.007650621701031923, 0.0069941445253789425, -0.016876788809895515, -0.0009722961112856865, -0.008381618186831474, 0.005127619951963425, -0.0048579322174191475, -0.018352976068854332, 0.015258661471307278, -0.03440650552511215, -0.007228347472846508, -0.017912959679961205, -0.00294882501475513, 0.016976147890090942, 0.009843611158430576, -0.0003790269256569445, 0.01870782859623432, -0.016791624948382378, -0.011369477026164532, 0.007792562711983919, -0.016138695180416107, 0.008800344541668892, 0.027749473229050636, 0.009921678341925144, -0.0119230467826128, -0.011426253244280815, 0.025322280824184418, -0.029069524258375168, -0.03318581357598305, 0.0057805487886071205, 0.009850707836449146, 0.020581450313329697, -0.007877727970480919, 0.04817478731274605, 0.01329277828335762, -0.002904468448832631, 0.01005652267485857, -0.012909537181258202, 0.06358958780765533, -0.02529389224946499, -0.02049628645181656, 0.014804449863731861, 0.011348186060786247, -0.010489442385733128, -0.11150887608528137, -0.022710565477609634, -0.007629330735653639, 0.01567029021680355, -0.02451321668922901, 0.007459001615643501, 0.002977213356643915, 0.036705952137708664, 0.00024129975645337254, 0.019303981214761734, 0.002137986943125725, -0.02826046012341976, 0.00485083507373929, 0.006678325589746237, 0.021944085136055946, -0.02075177989900112, -0.004229842685163021, -0.002501710783690214, 0.009850707836449146, 0.041077736765146255, 0.011050109751522541, -0.032987095415592194, 0.011511418037116528, -0.018182646483182907, -0.018551694229245186, 0.019701415672898293, -0.026173926889896393, 0.015556737780570984, -0.003053506603464484, 0.006767038721591234, 0.00016079258057288826, -0.0050850375555455685, 0.03639368340373039, -0.025052592158317566, -0.02218538336455822, -0.005844422150403261, -0.0355704240500927, -0.00345094152726233, 0.02797657810151577, -0.03591108322143555, 0.007022532634437084, 0.017501330003142357, 0.0031493166461586952, -0.016621295362710953, -0.008544850163161755, -0.0018824930302798748, -0.014094744808971882, 0.04752185940742493, -0.0010627835290506482, -0.025180339813232422, -0.02728106640279293, -0.008488073945045471, -0.03000633604824543, -0.04297974705696106, 0.009779737330973148, -0.021291155368089676, 0.020283374935388565, 0.00011577065743040293, -0.0013555368641391397, -0.011546903289854527, -0.022682176902890205, -0.003408359130844474, 0.007267381064593792, 0.010184269398450851, 0.005844422150403261, -0.0026099407114088535, 0.011539806611835957, -0.013583756983280182, -5.9604146372294053e-05, 0.0075015840120613575, -0.009148099459707737, -0.0017290192190557718, -0.020624032244086266, 0.013094061054289341, -0.029410183429718018, -9.242801024811342e-05, -0.0194175336509943, -0.03247610852122307, 0.01107849832624197, -0.0171038955450058, -0.015925783663988113, -0.018565887585282326, 0.008026765659451485, -0.029949558898806572, 0.01906268112361431, 0.021702785044908524, 0.021262766793370247, 0.0029683420434594154, 0.0007939827046357095, -0.032901931554079056, -0.01452056784182787, 0.0030428608879446983, 0.009055837988853455, -0.031170250847935677, 0.00546118151396513, 0.025038398802280426, 0.0053050462156534195, -0.014201200567185879, 0.009431981481611729, -0.013406330719590187, -0.034889105707407, -0.021660203114151955, -0.0381537489593029, 0.03855118528008461, -0.0038820873014628887, -0.018963322043418884, -0.03585430607199669, -9.009929158310115e-07, -0.006028945557773113, -0.020993079990148544, -0.01571287214756012, 0.03142574429512024, -0.006926722824573517, 0.03642207011580467, -0.00820419192314148, -0.006908980198204517, -0.011305603198707104, -0.011206245049834251, 0.00836032722145319, -0.002624134998768568, -0.004765670280903578, -0.006089270580559969, -0.011163662187755108, -0.017118088901042938, 0.006557676009833813, 0.021390514448285103, -0.0012481940211728215, 0.010560412891209126, -0.01088687777519226, 0.011206245049834251, 0.012121764943003654, -0.01946011558175087, 0.018835576251149178, -0.029779229313135147, -0.016961954534053802, 0.0075370692647993565, -0.0048579322174191475, -0.011000430211424828, -0.010233948938548565, 0.027877219021320343, 0.017983930185437202, 0.017274225130677223, -0.010808809660375118, -0.02520872838795185, -0.00046707471483387053, -0.032220616936683655, -0.007274478208273649, -0.013470204547047615, -0.0381537489593029, -0.00990748405456543, 0.009077128954231739, 0.03622335195541382, 0.04150355979800224, -5.485660494741751e-06, -0.015244467183947563, -0.02046789787709713, 0.006199274677783251, -0.024797098711133003, 0.003440295811742544, 0.0228241179138422, 0.0050140670500695705, 0.01735938899219036, 0.03639368340373039, -0.0046095349825918674, 0.002565584145486355, -0.029750840738415718, 0.007050921209156513, -0.015457378700375557, 0.0005491343908943236, 0.021291155368089676, 0.013406330719590187, -0.009765543043613434, -0.010092007927596569, -0.02488226443529129, -0.0013395685236901045, 0.010695257224142551, 7.318834832403809e-05, 0.020254986360669136, -0.0040949988178908825, -0.017643271014094353, -0.013306972570717335, 0.02594682201743126, 0.009921678341925144, -0.007309963461011648, -0.016167083755135536, 0.015798037871718407, -0.0029843102674931288, 0.004971484653651714, -0.00867969449609518, -0.007863533683121204, -0.00934681762009859, 0.019587863236665726, -0.007288672029972076, 0.010361695662140846, -0.009921678341925144, 0.012916634790599346, -0.001822168007493019, 0.03386713191866875, 0.0021823435090482235, 0.007047372404485941, 0.02353382483124733, 0.012214026413857937, -0.0008658403530716896, -0.007522874977439642, 0.0029222110752016306, -0.04323523864150047, -0.02451321668922901, 0.01602514274418354, -0.02315058372914791, -0.021347932517528534, 0.004935999400913715, 0.02323574759066105, 0.0017112765926867723, -0.011234632693231106, 0.0369330570101738, 0.00817580334842205, -0.02322155423462391, 0.009815222583711147, -0.026358449831604958, -0.009318429045379162, -0.027692696079611778, 0.026401033625006676, 0.015812231227755547, -0.0015693355817347765, 0.032930321991443634, -0.006525739096105099, 0.02324994094669819, -0.00572377210482955, 0.013867639005184174, -0.022100219503045082, -0.0014930423349142075, -0.019630445167422295, 0.011731427162885666, -0.00715737696737051, -0.016919370740652084, -0.00597216933965683, 0.001459331251680851, -0.018835576251149178, -0.016195472329854965, 0.007771271746605635, -0.0013360200682654977, 0.09578181058168411, 0.035314928740262985, -0.016961954534053802, -0.007150279823690653, -0.01435023918747902, 0.0050850375555455685, 0.016507742926478386, -0.00033045647433027625, 0.01843813993036747, -0.023945452645421028, 0.03480394184589386, 0.018622664734721184, -0.0002852127654477954, -0.04635794088244438, -0.014265074394643307, -0.009730057790875435, 0.012249511666595936, 0.029495347291231155, -0.015287050046026707, -0.00938230287283659, -0.003309000516310334, -0.002077661920338869, 0.02246926538646221, 0.009219069965183735, -0.021234378218650818, -0.012455325573682785, 0.03954477235674858, 0.0034172304440289736, -0.005617316346615553, -0.06273794174194336, 0.014733479358255863, 0.007373836822807789, -0.02797657810151577, -0.003143993904814124, -0.002725268015637994, 0.00495019368827343, -0.014492180198431015, -0.02008465677499771, 0.012057891115546227, -0.012405646964907646, 0.018679440021514893, 0.007707398384809494, -0.025024205446243286, -0.025421639904379845, -0.0139669980853796, -0.0008662838954478502, -0.003092540428042412, -0.024711934849619865, -0.007366739679127932]}, "text_id_to_ref_doc_id": {"ca89df45-3d44-4632-b9a2-7836092e87ba": "63d1ea33-de62-4f70-aa17-a7baa26dfda2", "3a8eb4f1-15ea-4bc5-a162-5bb0f138c7b4": "63d1ea33-de62-4f70-aa17-a7baa26dfda2", "a4175538-d318-49d4-a475-63a529b105c2": "63d1ea33-de62-4f70-aa17-a7baa26dfda2", "c35de880-d504-4213-a0cd-ca365e98ddff": "63d1ea33-de62-4f70-aa17-a7baa26dfda2"}} \ No newline at end of file diff --git a/index_v2/RetroMarch/docstore.json b/index_v2/RetroMarch/docstore.json new file mode 100644 index 0000000000000000000000000000000000000000..4778469ace471c1d31da5c05e1ce1ddbfe2e2c03 --- /dev/null +++ b/index_v2/RetroMarch/docstore.json @@ -0,0 +1 @@ +{"docstore/metadata": {"a15176b0-bf1d-4429-ad75-dccb63d606fc": {"doc_hash": "0c17c6ec2e952e172dfaa5c397e5ef71937584e96c782473ec02d2ae41d8df90"}, "b5b757a6-7337-45f1-8e2d-3a8efaebb5c0": {"doc_hash": "e379cfc319a2667e0e5c181f974832268d1aceafdae18aad8e1f661cdce66d19", "ref_doc_id": "a15176b0-bf1d-4429-ad75-dccb63d606fc"}, "342bc982-3d67-436b-8766-3176f6146ea2": {"doc_hash": "e67dd0df6e880a64b81664c118f08d11c45970d824fe63d95f7bd4846e5b0807", "ref_doc_id": "a15176b0-bf1d-4429-ad75-dccb63d606fc"}, "335e37ed-9cce-4be3-bb4a-9a3c24f436b0": {"doc_hash": "e03e194ee5ddd5a6d4926a8a19dbd5f1f0bc77bffe3b4e5168da7cb0eef6e638", "ref_doc_id": "a15176b0-bf1d-4429-ad75-dccb63d606fc"}, "105ec08a-95d6-4475-ab14-0c1d3089edf2": {"doc_hash": "464d3bcd4692d67c7b018794ef54efc2bf64878262eb295a166b63f42838b180", "ref_doc_id": "a15176b0-bf1d-4429-ad75-dccb63d606fc"}}, "docstore/data": {"b5b757a6-7337-45f1-8e2d-3a8efaebb5c0": {"__data__": {"text": "Primary User, Were the requirements clear at the time you picked up your tasks?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, * Amazing work from data team in topic identification, summary generation for reports\n* Teams retro looks really cool terrific work by ui/ apps and collab team\n* Setting up VPN and updating code to re-route calls - this was a long pending task\n* Research in multi instance deployment\nPrimary User, What didn't go well in this release?, * Couldn't address all pabot related issues due to active changes happening in int \n* Lots of research topic for platform team this time (expected) - we should be closing on some these tasks in upcoming sprints\nPrimary User, To improve our execution what should we add?, * Tracking system tests and alerts in int and stage\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, Design specs really good with fast and clear communications. Ritu was very helpful with resolving any issues I found with APIs quickly.\nPrimary User, What didn't go well in this release?, Difficulty maintaining a proper development environment in parallel with one for dev testing for the teams unified experience meant that I did not have time to finish dev/ux review work satisfactorily before the branch cut. The result was having to work in a compromised way and under time pressure late in the day. I was under the impression that if a feature was not ready we were not going to push for it to be in.\nPrimary User, Were the requirements clear at the time you picked up your tasks?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., The requirements were again very clear for this release, specially for the apps tasks. Already had an overview of the features we were going to implement in this release as these were discussed previously.\nPrimary User, What went well in this release?, I think the inter-team dependencies were handled pretty nicely in this release. The data APIs to be consumed by apps were ready even before the release started (thanks to Seshan) and we were able to deliver the APIs to be consumed by UI before end of Sprint 3.\n\nThe bug bash sessions were again very successful and helped us to catch a lot of bugs and fix them in the dev cycle itself. Also, great idea by Ritu to use Slack Posts feature for creating E2E testing docs for various features which can be edited by everyone.\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, 1. We could completed dev testing for most of the features and fixed most of them fixed also that are being delivered in 0.9.9.\n2. Lesser # of major bugs in dev testing\n3. Two features in iFrame being worked on by 2 devs in Parallel.\n4. zero merge conflicts when merging main to develop in 0.9.9\nPrimary User, To improve our execution what should we add?, One of things we identified this release was slack post which can be edited by multiple people in the team. This is a good way to collaborate/track list of live items which are light weight and don't need jira/wiki. (Thanks Ritu for finding this option).\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, What didn't go well in this release?, Nothing\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, Sentiment-analysis using with chatGPT , copilot .\nPrimary User, What didn't go well in this release?, Nothing\nPrimary User, To improve our execution what should we add?, Nothing as such\nPrimary User, To improve our execution what should we DROP?, Nothing as such\nPrimary User, Were", "doc_id": "b5b757a6-7337-45f1-8e2d-3a8efaebb5c0", "embedding": null, "doc_hash": "e379cfc319a2667e0e5c181f974832268d1aceafdae18aad8e1f661cdce66d19", "extra_info": null, "node_info": {"start": 0, "end": 4321, "_node_type": "1"}, "relationships": {"1": "a15176b0-bf1d-4429-ad75-dccb63d606fc", "3": "342bc982-3d67-436b-8766-3176f6146ea2"}}, "__type__": "1"}, "342bc982-3d67-436b-8766-3176f6146ea2": {"__data__": {"text": "To improve our execution what should we DROP?, Nothing as such\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., Mostly clear for the current release but a bit hazy for the next release. We need to define rough roadmap for the next release also.\nPrimary User, What went well in this release?, This release as usual packed with full of features. Most of the features tested before branch cut. Our UI fit and finish and overall quality improved significantly compared to few old releases.\nPrimary User, What didn't go well in this release?, We started discussing improved error handling for our customer onboarding but only a little progress in overall improvement. We must invest more time in this to enable anyone to do onboarding without going through a very complex wiki page of steps with lots of if conditions.\nPrimary User, To improve our execution what should we add?, Most of the time, we face issues with feature builds deployed in INT. If multiple developers need to work on the same service, that is even more complicated. We need to start planning a better solution to accommodate this internal requirement. Until then, we need to follow the best practices like keep rebasing and changing the builds after testing is done etc.\nPrimary User, To improve our execution what should we DROP?, We must eliminate manual steps as much as possible in all places, specifically deployments and onboarding. For the data team, we need to automate the Druid schema management. Every time there is a schema change, deployment is not going smoothly due to this manual step.\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, We were able to complete the collab changes to support unified teams experience and teams retro surveys. Completed the implementation for the template driven actions and its slack support.\nResolved quite a few tech debt items from collab board.\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., We have a definite template, process and clean designs in place when we plan or start test cycle\nPrimary User, What went well in this release?, - Major features wrapped up early and dev tested before delivering to QA\n- Automated tests for ongoing release features\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., nan\nPrimary User, What went well in this release?, nan\nPrimary User, What didn't go well in this release?, nan\nPrimary User, To improve our execution what should we add?, nan\nPrimary User, To improve our execution what should we DROP?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, Delivered all the planned items with minimum spillover\nPrimary User, What didn't go well in this release?, nan\nPrimary User, To improve our execution what should we add?, we can do a little more dogfooding to uncover issues around usability. e.g actions / brokering between PMs and dev teams\nPrimary User, To improve our execution what should we DROP?, nothing\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., Had some last minute changes for Retro. Nothing major.\nPrimary User, What went well in this release?, Multiple features got implemented (unified exp, retro, addr book, action templates) - good release overall.\n\nTeam meet was good - had a few productive technical discussions\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR", "doc_id": "342bc982-3d67-436b-8766-3176f6146ea2", "embedding": null, "doc_hash": "e67dd0df6e880a64b81664c118f08d11c45970d824fe63d95f7bd4846e5b0807", "extra_info": null, "node_info": {"start": 4253, "end": 8693, "_node_type": "1"}, "relationships": {"1": "a15176b0-bf1d-4429-ad75-dccb63d606fc", "2": "b5b757a6-7337-45f1-8e2d-3a8efaebb5c0", "3": "335e37ed-9cce-4be3-bb4a-9a3c24f436b0"}}, "__type__": "1"}, "335e37ed-9cce-4be3-bb4a-9a3c24f436b0": {"__data__": {"text": "Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., nan\nPrimary User, What went well in this release?, nan\nPrimary User, What didn't go well in this release?, nan\nPrimary User, To improve our execution what should we add?, nan\nPrimary User, To improve our execution what should we DROP?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, What went well in this release?, Tasks related to lambda VPC integration\nPrimary User, What didn't go well in this release?, Lambda testing takes a lot of time right now as we don't have unit tests. Basically you have to wait for two pipelines to pass (libs and lambda function) and then wait for the deployment to happen before you can detect any sort of bug\nPrimary User, To improve our execution what should we add?, Unit tests for lambdas\nPrimary User, Were the requirements clear at the time you picked up your tasks?, nan\nPrimary User, What went well in this release?, Quite a few features were delivered in this release despite the fact that a few engineers were unavailable (on PTO).\nPrimary User, To improve our execution what should we add?, I would perhaps like to see more ownership from each and everyone for the features they are working on and think through the story they are working on even though the spec doesn't have all the details\nPrimary User, To improve our execution what should we DROP?, Nothing\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, UX reviews of Qualitative comments(Topics), very quick response by @meaghan during reviews. \nMerge strategy instead of rebase helped merge HFs and Develop branch real quick. \nTeam Outing :)\nPrimary User, What didn't go well in this release?, nan\nPrimary User, To improve our execution what should we add?, nan\nPrimary User, To improve our execution what should we DROP?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, - Good progress on OpenAI topics and summarization\n- Lots of learnings - Prompt Engineering , llamaindex , langchain\nPrimary User, What didn't go well in this release?, - druid issues like joins , schema refresh - had to add workarounds to bypass the issue\n- missed out on druid spec sync issues between environments during deployment\n-\nPrimary User, To improve our execution what should we DROP?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, nan\nPrimary User, To improve our execution what should we add?, High level progress view is missing I guess now. So EPICs tagging will help here\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, What went well in this release?, Focussed effort on making existing features more robust along with shipping of new features like Retro and Address Book\nPrimary User, What didn't go well in this release?, - Identified a few scale related issues with use cases around pulse delivery and adding users to PVT\n- Identified some bad patterns in the way DB tables are queried without the right constraints\nPrimary User, To improve our execution what should we add?, - Focus on onboarding improvements and error messaging\n- More attention to system test regressions\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, - Good collaboration across teams, user facing channel threads are helpful \n- Getting faster response on UX, thanks & kudos to Meaghan\n- Dev testing is coming as a very helpful exercise. Though we are spending time to come together and test but these are really fruitful sessions to align all the teams on the same page.\nPrimary User, What didn't go well in this release?, - There are few pockets of time in the sprint when apps/ui cannot proceed as we have backend dependency or some pending answers from UX/Product. We need to keep other minor task preplanned for such time period. This falls back to planning better.\nPrimary User, To improve our execution what should we add?, - More detailed decomps\nPrimary", "doc_id": "335e37ed-9cce-4be3-bb4a-9a3c24f436b0", "embedding": null, "doc_hash": "e03e194ee5ddd5a6d4926a8a19dbd5f1f0bc77bffe3b4e5168da7cb0eef6e638", "extra_info": null, "node_info": {"start": 8686, "end": 12972, "_node_type": "1"}, "relationships": {"1": "a15176b0-bf1d-4429-ad75-dccb63d606fc", "2": "342bc982-3d67-436b-8766-3176f6146ea2", "3": "105ec08a-95d6-4475-ab14-0c1d3089edf2"}}, "__type__": "1"}, "105ec08a-95d6-4475-ab14-0c1d3089edf2": {"__data__": {"text": "To improve our execution what should we add?, - More detailed decomps\nPrimary User, To improve our execution what should we DROP?, - None\nPrimary User, Were the requirements clear at the time you picked up your tasks?, nan\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., nan\nPrimary User, What went well in this release?, -\nPrimary User, What didn't go well in this release?, -\nPrimary User, Were the requirements clear at the time you picked up your tasks?, nan", "doc_id": "105ec08a-95d6-4475-ab14-0c1d3089edf2", "embedding": null, "doc_hash": "464d3bcd4692d67c7b018794ef54efc2bf64878262eb295a166b63f42838b180", "extra_info": null, "node_info": {"start": 12972, "end": 13508, "_node_type": "1"}, "relationships": {"1": "a15176b0-bf1d-4429-ad75-dccb63d606fc", "2": "335e37ed-9cce-4be3-bb4a-9a3c24f436b0"}}, "__type__": "1"}}, "docstore/ref_doc_info": {"a15176b0-bf1d-4429-ad75-dccb63d606fc": {"doc_ids": ["b5b757a6-7337-45f1-8e2d-3a8efaebb5c0", "342bc982-3d67-436b-8766-3176f6146ea2", "335e37ed-9cce-4be3-bb4a-9a3c24f436b0", "105ec08a-95d6-4475-ab14-0c1d3089edf2"], "extra_info": {}}}} \ No newline at end of file diff --git a/index_v2/RetroMarch/index_store.json b/index_v2/RetroMarch/index_store.json new file mode 100644 index 0000000000000000000000000000000000000000..8ecae09da3146fda8f6ee60f709b148320c30ffa --- /dev/null +++ b/index_v2/RetroMarch/index_store.json @@ -0,0 +1 @@ +{"index_store/data": {"4c780528-3e74-4868-9275-d3b5a8929cc6": {"__type__": "vector_store", "__data__": "{\"index_id\": \"4c780528-3e74-4868-9275-d3b5a8929cc6\", \"summary\": null, \"nodes_dict\": {\"b5b757a6-7337-45f1-8e2d-3a8efaebb5c0\": \"b5b757a6-7337-45f1-8e2d-3a8efaebb5c0\", \"342bc982-3d67-436b-8766-3176f6146ea2\": \"342bc982-3d67-436b-8766-3176f6146ea2\", \"335e37ed-9cce-4be3-bb4a-9a3c24f436b0\": \"335e37ed-9cce-4be3-bb4a-9a3c24f436b0\", \"105ec08a-95d6-4475-ab14-0c1d3089edf2\": \"105ec08a-95d6-4475-ab14-0c1d3089edf2\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} \ No newline at end of file diff --git a/index_v2/RetroMarch/vector_store.json b/index_v2/RetroMarch/vector_store.json new file mode 100644 index 0000000000000000000000000000000000000000..2c5463141120d8e93100c6854cef5e5553b08003 --- /dev/null +++ b/index_v2/RetroMarch/vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {"b5b757a6-7337-45f1-8e2d-3a8efaebb5c0": [0.013997663743793964, 0.00041654534288682044, 0.014227362349629402, -0.0028625258710235357, -0.014296967536211014, 7.986957825778518e-06, 0.0031583490781486034, -0.011742446571588516, -0.04747094586491585, -0.04374008998274803, 0.011686761863529682, 0.0047958181239664555, -0.009856137447059155, -0.006059158127754927, 0.000683438905980438, 0.006748252082616091, 0.028705304488539696, -0.01240369863808155, -0.013322491198778152, -0.009055674076080322, -0.003803940024226904, 0.003622965654358268, -0.019252877682447433, 0.018487218767404556, -0.02068675123155117, 0.005436189007014036, 0.02491876482963562, -0.024097420275211334, 0.009125280193984509, 0.005126444157212973, 0.011248246766626835, -0.0048271408304572105, -0.004520876798778772, 0.010475626215338707, -0.023025495931506157, -0.007197207771241665, -0.0003595558519009501, 0.0036890909541398287, 0.006786535494029522, -0.0048723844811320305, 0.0029843354132026434, 0.01567515730857849, 0.016552185639739037, -0.014895575121045113, -0.005756373982876539, 0.02710437774658203, -0.018417613580822945, 0.025071898475289345, -0.011923420242965221, 0.011290010064840317, -0.00019402529869694263, 0.0016766221961006522, -0.01532712858170271, 0.012389777228236198, -0.01381669007241726, -0.018598586320877075, 0.006257533561438322, 0.03625053912401199, 0.0014504044083878398, 0.0044060274958610535, -0.010225046426057816, 0.011631077155470848, 0.006751732435077429, 0.007162404712289572, 0.0023509254679083824, -0.014109033159911633, -0.021494176238775253, -0.016468659043312073, 0.007928065024316311, -0.02667282335460186, 0.009501149877905846, 0.014102072454988956, 0.02274707332253456, 0.017916454002261162, 0.01994893327355385, 0.004837581422179937, 0.008443146012723446, -0.0048236604779958725, -0.0021525498013943434, 0.004708811640739441, 0.008324816823005676, 0.004426909144967794, -0.018375849351286888, 0.015633393079042435, 0.008484909310936928, 0.028399040922522545, 0.014324809424579144, 0.003407188691198826, -0.0008404863183386624, -0.015800446271896362, -0.023387445136904716, 0.014505784027278423, 0.024751711636781693, 0.027118299156427383, -0.003344543743878603, 0.024904845282435417, 0.0027407160960137844, 0.016412975266575813, -0.013538267463445663, -0.029958203434944153, -0.009389780461788177, 0.00284338416531682, -0.04755447059869766, -0.008470987901091576, -0.009041753597557545, 0.012187921442091465, -0.01076796930283308, -0.009062634781002998, 0.008679804392158985, -0.016524342820048332, -0.004635725636035204, 0.0305428896099329, -0.025238951668143272, -0.01527144480496645, 0.010259849019348621, 0.002208234276622534, 0.009633399546146393, -0.01412295363843441, 0.0023909485898911953, -0.018668193370103836, 0.025545215234160423, -0.037948913872241974, 0.015591629780828953, -0.019698353484272957, 0.019141510128974915, 0.007419945206493139, -0.005533636547625065, 0.002718094503507018, 0.020171670243144035, -0.014296967536211014, 0.014338730834424496, 0.007642682641744614, 0.02732711471617222, -0.001378188724629581, -0.009264490567147732, 0.02134104259312153, -0.02498837187886238, 0.00931321457028389, 0.0048027788288891315, -0.018473297357559204, 0.004705331288278103, 0.025740109384059906, 0.021382806822657585, 0.004674008581787348, 0.011290010064840317, 0.026227349415421486, 0.0235823392868042, -0.011658919975161552, 0.012563791126012802, -0.01506262831389904, 0.005916466470807791, -0.01797213777899742, 0.007273773662745953, 0.0039466312155127525, 0.011665879748761654, -0.006229691207408905, -0.004103243816643953, 0.014283047057688236, -0.025378162041306496, -0.013301609084010124, 0.013155438005924225, 0.00819952692836523, 0.0034872351679950953, -0.007197207771241665, 0.031907156109809875, 0.051257483661174774, 0.025795795023441315, -0.033271424472332, 0.00573201198130846, -0.00039870894397608936, -0.002690252149477601, 0.009995348751544952, -0.03391179442405701, 0.018306244164705276, 0.02619950659573078, -0.003758696373552084, 0.026895562186837196, -0.01965659111738205, -0.01989324949681759, -0.020477935671806335, 0.0027250549755990505, -0.01687237061560154, 0.012974463403224945, 0.020241277292370796, -0.03524821996688843, -0.0056345644406974316, 0.024570738896727562, -0.00506379920989275, 0.013914137147367, 0.0019106706604361534, 0.025266792625188828, 0.0029025489930063486, -0.015104391612112522, -0.01589789427816868, -0.6089645028114319, 0.0007499991334043443, 0.03558232635259628, -0.022329440340399742, 0.010712284594774246, 0.009654281660914421, 0.0009196625323966146, 0.016900213435292244, -0.023860761895775795, 0.01761018857359886, -0.019754037261009216, 0.023735472932457924, 0.01638513244688511, -0.024222711101174355, -0.030403677374124527, -0.013183279894292355, 0.004541758447885513, 0.0021751716267317533, -0.001151100848801434, -0.009974466636776924, -0.032018523663282394, 0.01687237061560154, -0.0039048679172992706, 0.0013033627765253186, -0.0032314348500221968, -0.018167033791542053, 0.016134552657604218, 0.0014008104335516691, -0.015187918208539486, 0.0066542848944664, -0.03803243860602379, 0.022078862413764, 0.0122505659237504, 0.005648485384881496, 0.05086769163608551, -0.01911366730928421, -0.030876995995640755, 0.012361935339868069, 0.02292804792523384, 0.028928041458129883, -0.031099732965230942, 0.0013372955145314336, -0.0032053329050540924, 0.014352652244269848, 0.01850114017724991, 0.01857074536383152, 0.010705324821174145, 0.0022830599918961525, 0.005136885214596987, 0.021911809220910072, 0.009396741166710854, -0.029178621247410774, -0.015995342284440994, 0.026213428005576134, -0.0014921677066013217, -0.023317839950323105, 0.020032459869980812, -0.003368905745446682, 0.008220408111810684, -0.020185591652989388, -0.016705317422747612, -0.005147325806319714, -0.01947561651468277, -0.03357768803834915, -0.0411229245364666, 0.024584658443927765, 0.010600916109979153, -0.0314616821706295, 0.01772155798971653, -0.016301605850458145, 0.028872357681393623, -0.0012964023044332862, -0.00642458675429225, -0.010879337787628174, 0.008512751199305058, -0.0019176312489435077, 0.022774916142225266, -0.023972131311893463, 0.008631080389022827, 0.01007191464304924, -0.012139197438955307, -0.015438497997820377, 0.002100345678627491, -0.0046879299916327, 0.014617152512073517, 0.0030696021858602762, -0.025726189836859703, -0.012842212803661823, 0.005881663877516985, 0.015257523395121098, 0.006250572856515646, 0.011575393378734589, -0.007656604051589966, -0.0013538268394768238, -0.004030157811939716, 0.049085792154073715, -0.00970996543765068, 0.0029843354132026434, 0.017011580988764763, -0.028412960469722748, -0.01055915281176567, -0.00042916135862469673, 0.00755915604531765, 0.01339905709028244, 0.047276049852371216, 0.022649627178907394, 0.0028955882880836725, -0.0032975601498037577, 0.03611132875084877, -0.010531310923397541, 0.015396734699606895, 0.0069048646837472916, -0.02057538367807865, -0.012473303824663162, 0.019322484731674194, -0.03165657818317413, 0.008505790494382381, -0.010461704805493355, 0.011477945372462273, -0.008561475202441216, 0.011136878281831741, -0.008825976401567459, 0.018598586320877075, -0.0235823392868042, 0.017317846417427063, 0.02104870043694973, 0.015591629780828953, 0.019976776093244553, 0.015522024594247341, -8.700686521478929e-06, 0.008366580121219158, -0.04012060537934303, 0.006636883597820997, -0.005784216336905956, 0.024570738896727562, 0.018278401345014572, -0.0015713439788669348, 0.0041589280590415, 0.003429810516536236, -0.047999944537878036, -0.017443135380744934, -0.0052169314585626125, -0.0014834670582786202, -0.011401379480957985, -0.034691374748945236, -0.047498784959316254, -0.020046381279826164, -0.007259852718561888, 0.013774926774203777, -0.01488165371119976, -0.007656604051589966, -0.007433866150677204, -0.017025502398610115, 0.025809716433286667, -0.0036890909541398287, -0.013064950704574585, -0.00730161601677537, -0.03975865617394447, -0.018348006531596184, -0.022955890744924545, -0.009563794359564781, 0.04198603332042694, -0.01055915281176567, -0.012424579821527004, -0.0020220393780618906, -0.007426905911415815, -0.028051013126969337, 0.015633393079042435, -0.01203478965908289, -0.04198603332042694, 0.009236648678779602, -0.0023335241712629795, -0.00834569800645113, 0.0010362517787143588, -0.039285339415073395, 0.02001853846013546, -0.015313208103179932, -0.006821338087320328, -0.010343375615775585, 0.001446054084226489, 0.00554755749180913, 0.024960529059171677, -0.0047992984764277935, -0.0035777222365140915, 0.029317831620573997, 0.00010212430788669735, 0.01639905385673046, 0.019851485267281532, -0.009208806790411472, 0.03538743034005165, 0.0030347993597388268, -0.016858449205756187, -0.020533619448542595, 0.0022639185190200806, 0.0018045223550871015, -0.015424576587975025, -0.020032459869980812, -0.004183290060609579, -0.02074243687093258, 0.021730834618210793, 0.01548026129603386, 0.009034792892634869, 0.013900216668844223, 0.0005015945644117892, 0.016357289627194405, -0.002209974220022559, 0.009542912244796753, -0.027800433337688446, 0.012647317722439766, -0.020060302689671516, 0.0028155420441180468, -0.020589303225278854, -0.009480267763137817, -0.01989324949681759, -0.013955900445580482, 0.008178644813597202, -0.0010858456371352077, 0.03833870217204094, -0.028593935072422028, 0.0014834670582786202, 0.011199523694813251, 0.0038109004963189363, 0.03797675669193268, -0.012041749432682991, -0.007051036227494478, 0.006254053208976984, 0.027076534926891327, 0.009814374148845673, 0.051925696432590485, -0.006368902511894703, -0.007900223135948181, 0.024208789691329002, 0.023805078119039536, -0.004614843986928463, 0.03780970349907875, 0.007308576256036758, 0.05596281588077545, -0.028621777892112732, 0.02432015910744667, -0.02468210645020008, 0.017317846417427063, 0.02625519037246704, -0.001968095311895013, -0.008798133581876755, 0.025921083986759186, -0.029317831620573997, 0.03165657818317413, -0.011262168176472187, -0.033716898411512375, 0.015939656645059586, 0.005182128865271807, 0.0036334064789116383, -0.024890923872590065, -0.020338723435997963, 0.015006943605840206, 0.014519705437123775, 0.016120631247758865, 0.007061476819217205, 0.007747090887278318, 0.026213428005576134, -0.0003297560033388436, -0.002754637273028493, 0.04223661124706268, -0.00825521070510149, 0.0015922256279736757, 0.018654271960258484, -0.007232010364532471, -0.022051019594073296, -0.02722966857254505, -0.022092781960964203, 0.006236651912331581, -0.02920646406710148, -0.008122961036860943, 0.013788847252726555, -0.009480267763137817, 0.01360787358134985, -0.01802782155573368, -0.003541179234161973, -0.0025962847284972668, 0.01085845660418272, -0.05487696826457977, -0.01864035055041313, 0.019976776093244553, 0.021313201636075974, -0.011721564456820488, -0.014825969003140926, 0.008979108184576035, -0.012863094918429852, -0.014644995331764221, 0.012647317722439766, 0.001674882136285305, -0.014310888946056366, -0.010183283127844334, 0.017749400809407234, -0.021187910810112953, 0.021549860015511513, 0.04429693520069122, -0.007378181908279657, 0.0014382234076038003, -0.005464030895382166, -0.0017427474958822131, 0.012194882147014141, -0.02800924889743328, -0.012974463403224945, 0.040009234100580215, 0.0021107865031808615, -0.02824590727686882, -0.027313195168972015, -0.010037112049758434, 0.004621804691851139, 0.007990710437297821, 0.0022900206968188286, -0.0272157471626997, -0.0023526656441390514, 0.002095125149935484, -0.009250570088624954, 0.013830610550940037, -0.0065115937031805515, 0.04304403439164162, -0.011860775761306286, -0.03246400132775307, -0.007962867617607117, -0.008011591620743275, 0.004346862901002169, 0.07244539260864258, 0.03917396813631058, 0.0072876946069300175, 0.029317831620573997, -0.013294648379087448, -0.0028120616916567087, -0.029373517259955406, -0.011401379480957985, 0.020853804424405098, 0.0009066115017049015, -0.009438504464924335, 0.005585840437561274, 0.004743614234030247, -0.002935611642897129, 0.0029182101134210825, 0.008081197738647461, 0.004117164760828018, -0.012048710137605667, -0.01028073113411665, -0.001574824214912951, 0.013670518063008785, -0.00840834341943264, 0.022997653111815453, 0.008450106717646122, 0.026018531993031502, 0.032993003726005554, 0.04045471176505089, 0.005345701705664396, 0.008603238500654697, -0.017638031393289566, -0.006087000016123056, 0.038366544991731644, -0.007127602118998766, -0.01658002845942974, -0.025921083986759186, 0.027661221101880074, 0.009779571555554867, 0.00025166734121739864, -0.01898837834596634, -0.010057993233203888, 0.0009501149179413915, 0.027368878945708275, 0.014380494132637978, -0.01532712858170271, 0.03602780029177666, -0.010865417309105396, 0.004047559108585119, 0.01820879615843296, -0.016468659043312073, -0.007503471802920103, -0.002281320048496127, 0.03895123302936554, -0.011512747965753078, -0.0025458207819610834, -8.227586658904329e-05, 0.0238886047154665, 0.007468669209629297, -0.01644081622362137, -0.005902545526623726, -0.017638031393289566, -0.011979104951024055, 0.0036682093050330877, -0.004071921110153198, -0.00669952854514122, -0.027870038524270058, -0.012097434140741825, -0.028510408475995064, -0.006522034294903278, -0.035053323954343796, 0.0429326668381691, -0.04329461604356766, -0.0013355553383007646, -0.03193499892950058, 0.021271437406539917, 0.003525518113747239, 0.012097434140741825, 0.009354977868497372, 0.011310892179608345, 0.009146161377429962, 0.002490136306732893, -0.02045009285211563, -0.03421805799007416, 0.027716906741261482, -0.01712295040488243, -0.019141510128974915, -0.005498833954334259, -0.03096052259206772, 0.026157742366194725, -0.01759626716375351, 0.010078875347971916, -0.0019593946635723114, 0.010475626215338707, -0.014255204237997532, -0.012981424108147621, 0.01994893327355385, 0.016064947471022606, 0.006539435591548681, 0.020046381279826164, 0.011192562989890575, -0.02019951306283474, -0.0004637465754058212, -0.015382813289761543, -0.004082362167537212, -0.028538251295685768, 0.0016174576012417674, -0.008749410510063171, -0.008672843687236309, 0.0028990686405450106, -0.018111348152160645, -0.029624097049236298, 0.010064953938126564, -0.025322478264570236, -0.0005729402182623744, -0.010287691839039326, 0.013238964602351189, 0.004590481985360384, 0.015132233500480652, 0.028928041458129883, 0.031127575784921646, -0.015758683905005455, -0.005206490866839886, -0.024515053257346153, 0.055071864277124405, 0.004541758447885513, -0.008714606985449791, 0.008443146012723446, 0.014310888946056366, -0.047498784959316254, -0.037475597113370895, 0.004298138897866011, -0.001157191232778132, 0.004583521746098995, 0.026102058589458466, -0.016078868880867958, -0.016802765429019928, -0.016371211037039757, -0.002716354327276349, 0.012605554424226284, -0.015744762495160103, -0.0005290016997605562, -0.03343847766518593, 0.01819487474858761, -0.01007191464304924, -0.02267746813595295, -0.013552188873291016, -0.03647327795624733, -0.01676100119948387, 0.009549872949719429, -0.015173996798694134, 0.026102058589458466, -0.01869603432714939, -0.01161715667694807, -0.02692340314388275, -0.002970414236187935, -0.013983743265271187, -0.017651952803134918, -0.0030730823054909706, -0.0005520585691556334, 0.007134562823921442, 0.024055657908320427, 0.02649184875190258, 0.008575396612286568, 0.002653709379956126, 0.010392099618911743, -0.004259855952113867, -0.010684442706406116, 0.005377023946493864, -0.02915077842772007, -0.01009975653141737, 0.004788857884705067, 0.012709962204098701, 0.004781897179782391, 0.003174010431393981, -0.010259849019348621, -0.009730847552418709, 0.016969818621873856, -0.010461704805493355, -0.015104391612112522, -0.011150799691677094, -0.03084915317595005, -0.003723893780261278, 0.018250560387969017, -0.003925749566406012, -0.015006943605840206, -0.023331759497523308, -0.0012189660919830203, 0.015619471669197083, -0.0026624100282788277, 0.007259852718561888, -0.003758696373552084, 0.038979075849056244, -0.0006377603276632726, -0.003870065324008465, -0.005519715603441, 0.02032480388879776, -0.007962867617607117, -0.027730828151106834, -0.0465521514415741, 0.010823654010891914, 0.004879344720393419, 0.03533174842596054, 0.03059857338666916, 0.01076796930283308, -0.0073642609640955925, 0.00480625918135047, 0.016051026061177254, -0.032157737761735916, -0.004841061774641275, 0.00840834341943264, -0.023011574521660805, 0.004343382548540831, -0.010406021028757095, 0.004211131948977709, 0.012995344586670399, -0.011610195972025394, -0.002272619167342782, 0.0027650780975818634, 0.029902517795562744, -0.009640360251069069, -0.015828289091587067, 0.014310888946056366, -0.017011580988764763, 0.03761480748653412, 0.03410669043660164, 0.02533639781177044, 0.010343375615775585, 0.008324816823005676, -0.03240831568837166, -0.04989321529865265, -0.010844535194337368, 0.009410662576556206, 0.035415273159742355, 0.026018531993031502, 0.0078584598377347, 0.0008087288006208837, 0.018403692170977592, 0.03967512771487236, -0.02535031922161579, -0.038366544991731644, 0.013656597584486008, 0.02287236414849758, -0.009897900745272636, -0.009675162844359875, -0.009528991766273975, -0.03405100479722023, 0.004078881815075874, -0.013468662276864052, -0.006703008897602558, 0.015257523395121098, -0.009097437374293804, -0.005352662410587072, 0.04020413011312485, -0.008025513030588627, 0.02533639781177044, 0.00735033955425024, -0.0047784168273210526, 0.004691409878432751, -0.0133085697889328, 0.01185381505638361, 0.0011824233224615455, 0.0033549845684319735, 0.006814377382397652, -0.014658915810286999, -0.008338737301528454, 0.00037064924254082143, 0.009744768962264061, -0.002697212854400277, -0.009633399546146393, -0.004520876798778772, 0.03174010291695595, 0.004172849003225565, -0.011136878281831741, 0.011965183541178703, 0.006201849319040775, 0.007419945206493139, -0.015257523395121098, -0.0077749332413077354, -0.016733160242438316, -0.006341060157865286, 0.010197204537689686, 0.026227349415421486, 0.013774926774203777, -0.025781873613595963, -0.005335260648280382, -0.002930391114205122, -0.0017175155226141214, 0.021368885412812233, -0.01953130029141903, 0.015313208103179932, -0.034635692834854126, -0.026756349951028824, 0.003435031045228243, -0.0012546390062198043, 0.009974466636776924, -0.03229694813489914, -0.008721567690372467, 0.0032540566753596067, 0.020937331020832062, -0.022357283160090446, 0.028273750096559525, -0.0011885137064382434, 0.0016992440214380622, -0.046607837080955505, 0.009723886847496033, -0.02412526309490204, -0.005498833954334259, 0.020477935671806335, -0.026993008330464363, -0.021981414407491684, -0.001811482827179134, 0.01602318324148655, -0.0031600892543792725, -0.03132247179746628, -0.003783058375120163, 0.01797213777899742, 0.02045009285211563, 0.004830621182918549, -0.0077540515922009945, -0.026269111782312393, 0.008067276328802109, -0.002798140747472644, 0.03279810771346092, 0.01445009931921959, 0.017693715170025826, 0.011164720170199871, -0.027967486530542374, 0.0057041700929403305, -0.009814374148845673, -0.042793456465005875, 0.011408340185880661, -0.0006086130160838366, 0.014937338419258595, -0.024041736498475075, -0.01112295687198639, -0.003502896288409829, -0.018737798556685448, -0.009389780461788177, 0.005749413277953863, -0.008081197738647461, -0.017401373013854027, 0.004350343253463507, -0.0034663535188883543, 0.001130219199694693, 0.015772603452205658, -0.01048954762518406, -0.025865400210022926, -0.016635712236166, 0.003758696373552084, -0.033354949206113815, -0.021494176238775253, 0.006407185457646847, 0.03533174842596054, 0.021925728768110275, -0.0151183120906353, -0.03165657818317413, -0.033048685640096664, -0.02745240554213524, 0.001814963179640472, -0.008387461304664612, 0.02516934461891651, 0.03755912184715271, -0.02819022350013256, -0.004928068723529577, 0.00411368440836668, -0.012118316255509853, 0.030208783224225044, -0.032742422074079514, 0.0005833810428157449, -0.0101275984197855, -0.018918773159384727, 0.042849138379096985, -0.00598607212305069, -0.051396694034338, -0.008658923208713531, 0.00035564054269343615, -0.007009272929280996, 0.010712284594774246, -0.0021473292727023363, 0.006288856267929077, 0.012542909011244774, 0.0036403671838343143, 0.02104870043694973, -0.0004698370466940105, 0.008651962503790855, 0.001618327689357102, -0.020296961069107056, 0.00594082847237587, 0.018946614116430283, -0.014519705437123775, -0.01115776039659977, -0.002380507765337825, 0.007406024262309074, 0.0007643552962690592, -0.0023509254679083824, -0.015508103184401989, -0.022120624780654907, -0.004183290060609579, -0.027897881343960762, 0.01134569477289915, 0.007607880048453808, 0.006765653844922781, 0.01869603432714939, -0.01656610704958439, 0.018737798556685448, 0.00989094004034996, 0.009278411976993084, 0.0008196046692319214, -0.005766815040260553, 0.009960545226931572, -0.0015295806806534529, 0.012424579821527004, -0.0077749332413077354, 0.005147325806319714, -0.028440803289413452, -0.03126678615808487, -0.014756363816559315, -0.0006055677658878267, -0.016064947471022606, 0.004486073739826679, -0.002357885940000415, 0.00829001422971487, 0.0073364186100661755, -0.014575389213860035, -8.504920697305351e-05, 0.01064964011311531, -0.0026345679070800543, -6.797411333536729e-05, -0.015647314488887787, -0.0016200677491724491, -0.023860761895775795, -0.007614840753376484, 0.0014182118466123939, 0.004117164760828018, 0.029986044391989708, -0.026937324553728104, 0.02722966857254505, 0.21806007623672485, 0.014686758629977703, 0.0044303894974291325, 0.030570730566978455, 0.005846861284226179, -0.025962848216295242, 0.006842219736427069, 0.0013694880763068795, 0.012327132746577263, 0.011993026360869408, 0.02377723529934883, 0.0077331699430942535, -0.006598600652068853, 0.0021281877998262644, -0.0008052485063672066, 0.013969821855425835, -0.025364240631461143, -0.02189788781106472, 0.0036856106016784906, 0.013955900445580482, 0.015285365283489227, -0.015758683905005455, 0.00943154376000166, 0.004809739533811808, 0.035303905606269836, 0.016134552657604218, -0.0007178066298365593, 0.011958222836256027, 0.01312759518623352, 0.018556823953986168, -0.011164720170199871, -0.016524342820048332, 0.020714594051241875, 0.02437584288418293, 0.003455912694334984, -0.005672847386449575, -0.005008114967495203, -0.00916704349219799, 0.00392922991886735, -0.0013660077238455415, -0.009814374148845673, 0.004009276162832975, 0.020589303225278854, -0.035053323954343796, 0.01100462768226862, 0.03405100479722023, -0.006741291843354702, -0.008512751199305058, 0.0038109004963189363, 0.02395820990204811, -0.012382816523313522, 0.026589296758174896, 0.028454724699258804, 0.0014251724351197481, 0.0007878471515141428, 0.021076543256640434, 0.0061252829618752, -0.02057538367807865, -0.005944308824837208, 0.02032480388879776, -0.004190250299870968, 0.008192566223442554, 0.005846861284226179, 0.005885144229978323, -0.03625053912401199, -0.013837571255862713, -0.00568676833063364, 0.014081190340220928, 0.029345674440264702, -0.01388629525899887, 0.0005603241734206676, -0.022705310955643654, -0.011457063257694244, 0.0073364186100661755, -0.0048515028320252895, -0.02383291907608509, 0.013225043192505836, 0.04552198946475983, 0.04513220116496086, 0.015006943605840206, -0.01687237061560154, -0.004583521746098995, -0.01573084108531475, -0.02890019863843918, -0.020283039659261703, -0.009605557657778263, 0.0411229245364666, 0.00308526330627501, -0.0193642470985651, -0.02945704385638237, -0.01639905385673046, -0.0027859597466886044, -0.008533633314073086, -0.011839893646538258, -0.016176315024495125, -0.008770291693508625, 0.005832939874380827, 0.0015487221535295248, -0.013329450972378254, -0.023067260161042213, 0.0010136299533769488, 0.050227321684360504, 0.0250997394323349, 0.04621804505586624, -0.026088137179613113, -0.019308563321828842, 0.0008048134623095393, 0.02546168863773346, -0.016496501863002777, 0.0024222710635513067, 0.01360787358134985, -0.01388629525899887, 0.008324816823005676, 0.005613682791590691, -0.011387458071112633, 0.03368905559182167, -0.021730834618210793, -0.02812061831355095, -0.01321808248758316, 0.00533874100074172, 0.006403705105185509, -0.018974456936120987, 0.0031774905510246754, -0.006382823456078768, 0.013941979967057705, -0.03043152019381523, -0.03140599653124809, -0.00843618530780077, 0.00014758539327885956, -0.016482580453157425, 0.02915077842772007, -0.01584221050143242, 0.02981899119913578, -0.008937344886362553, -0.01880740374326706, -0.027006929740309715, 0.005088161211460829, 0.0022882805205881596, 0.02287236414849758, -0.022037098184227943, -0.0003190976567566395, 0.012501145713031292, 0.0005116003449074924, 0.0004937639459967613, 0.0056763277389109135, -0.029902517795562744, 0.005693729035556316, 0.0057006897404789925, -0.03421805799007416, -0.011624116450548172, 0.008888620883226395, 0.014519705437123775, -0.013211121782660484, -0.0029008088167756796, 0.040426868945360184, -0.0044373502023518085, -0.011846854351460934, 0.002448373008519411, -0.006403705105185509, 0.008770291693508625, -0.020422250032424927, 0.011136878281831741, 0.03647327795624733, 0.004082362167537212, -0.027828274294734, 0.007232010364532471, -0.17763321101665497, 0.03677954152226448, 0.014032467268407345, -0.01705334521830082, 0.0008265651995316148, 0.0008439665543846786, 0.004980272613465786, -2.1330275558284484e-05, -0.03636190667748451, -0.0026606698520481586, 0.005112523213028908, 0.0005537986871786416, -0.04117860645055771, -0.018348006531596184, -0.010955904610455036, 0.020839883014559746, -0.008095118217170238, 0.02026911824941635, 0.04978184774518013, 0.021981414407491684, 0.007461708504706621, -0.028510408475995064, -0.0011458804365247488, -0.004646166693419218, 0.028816672042012215, 0.022482573986053467, -0.01880740374326706, 0.006358461454510689, 0.0044582318514585495, -0.02099301666021347, -0.029345674440264702, -0.004593962337821722, 0.030570730566978455, 0.0035951235331594944, 0.02092340961098671, 0.01381669007241726, -0.01990717090666294, 0.005780735984444618, 0.014464020729064941, 0.03393963724374771, 0.011721564456820488, 0.006389784161001444, 0.009723886847496033, 0.002624127082526684, -0.012800449505448341, -0.005958229769021273, 0.0205614622682333, -0.009452425874769688, -0.020644988864660263, -0.036194853484630585, -0.00744082685559988, -0.0314616821706295, -0.0069744703359901905, -0.017331767827272415, 0.006918785627931356, 0.008234329521656036, 0.009703005664050579, 0.011457063257694244, 0.016190236434340477, 0.0005307418759912252, 0.008067276328802109, -0.011784209869801998, 0.008631080389022827, 0.02008814364671707, 0.006490712054073811, -0.007447787560522556, 0.0006464609759859741, 0.00834569800645113, -0.009055674076080322, 0.00977261085063219, -0.012299289926886559, -0.018779560923576355, 0.0205614622682333, 0.015647314488887787, 0.01801390014588833, 0.015549866482615471, -0.01639905385673046, 0.010503468103706837, 0.030626416206359863, 0.028204144909977913, -0.0064559089951217175, 0.0034472118131816387, 0.0038387428503483534, -0.011129917576909065, -0.017429213970899582, 0.016371211037039757, -0.01176332775503397, 0.0028590455185621977, -0.001901970012113452, -0.02135496400296688, 0.005613682791590691, -0.02594892680644989, -0.01083061471581459, -0.01777724176645279, 0.018041742965579033, 0.0064559089951217175, 0.007761012297123671, -0.0014886874705553055, 0.009480267763137817, -0.037475597113370895, 0.0015391514170914888, 0.013322491198778152, -0.010475626215338707, 0.0060939607210457325, 0.009883979335427284, 0.0006873542442917824, -0.0048480224795639515, -0.0073642609640955925, 0.02224591374397278, -0.023735472932457924, -0.027605537325143814, -0.003019138239324093, 8.37441039038822e-05, 0.004858463071286678, -0.015522024594247341, 0.028593935072422028, 0.022955890744924545, 0.009389780461788177, 0.017429213970899582, -0.016983740031719208, 0.051675114780664444, -0.02535031922161579, -0.013085831888020039, 0.013023187406361103, -0.007844538427889347, 0.008610199205577374, -0.11927596479654312, -0.03803243860602379, -0.00266937050037086, 0.021090462803840637, -0.008443146012723446, -0.0036647289525717497, -0.00968212354928255, 0.02951272763311863, -0.004541758447885513, 0.017568426206707954, 0.0007565246778540313, -0.023805078119039536, -0.0004998544463887811, 0.0037691371981054544, 0.01282133162021637, -0.03182363137602806, 0.012375855818390846, 0.0018984897760674357, 0.002909509465098381, 0.033772584050893784, -0.002117746975272894, -0.01754058338701725, 0.007096279878169298, -0.009605557657778263, -0.008129920810461044, -0.0038631046190857887, -0.030292309820652008, 0.011324813589453697, -0.01442225743085146, 0.017081188037991524, -0.01197214424610138, -0.004151967354118824, 0.02213454619050026, -0.029317831620573997, -0.016064947471022606, -0.005317859351634979, -0.03513685241341591, -0.014658915810286999, 0.023331759497523308, -0.0344964824616909, -0.0031200661323964596, 0.02129928022623062, 0.013329450972378254, -0.023359602317214012, 0.0031426879577338696, 0.005892104934900999, -0.006421106401830912, 0.03313221409916878, -0.0036160051822662354, -0.01609278842806816, -0.030208783224225044, -0.0006569018005393445, -0.011262168176472187, -0.036501120775938034, 0.015173996798694134, -0.018904851749539375, 0.021856123581528664, -0.007503471802920103, -0.01243154052644968, -0.013176319189369678, -0.017693715170025826, -0.029596254229545593, 0.009730847552418709, 0.019573064520955086, 0.012981424108147621, 0.00014018980436958373, 0.007454747799783945, -0.022162389010190964, -0.005394425708800554, -0.0178468469530344, -0.01790253259241581, 0.010670521296560764, -0.02395820990204811, 0.01146402396261692, -0.02166122943162918, -0.010259849019348621, 0.005098602268844843, -0.01048954762518406, 0.021146148443222046, -0.003544659586623311, -0.009438504464924335, -0.011290010064840317, 0.000852667260915041, -0.029596254229545593, 0.010197204537689686, 0.016900213435292244, 0.030208783224225044, -0.005401385948061943, 0.0018984897760674357, -0.048306211829185486, -0.0116449985653162, 0.018236638978123665, 0.001520009944215417, -0.03243615850806236, 0.0069570685736835, 0.03084915317595005, 0.004499995149672031, -0.005136885214596987, 0.011032470501959324, -0.014798127114772797, -0.022816680371761322, -0.02214846760034561, -0.03285378962755203, 0.03249184414744377, -0.01406726986169815, -0.014993022195994854, -0.007044075522571802, 0.017220398411154747, -0.01079581119120121, -0.005544077139347792, -0.01864035055041313, 0.013712281361222267, -0.016245922073721886, 0.030347993597388268, -0.01898837834596634, -0.01777724176645279, -0.026770271360874176, 0.00177319988142699, 0.016552185639739037, -0.002926910761743784, 0.0029199502896517515, 0.00105104292742908, -0.010092795826494694, -0.0064837513491511345, 0.014631073921918869, 0.017707636579871178, 0.006709969136863947, 0.0056276037357747555, -0.025364240631461143, 0.024153105914592743, 0.002317862818017602, -0.014102072454988956, 0.02618558518588543, -0.02824590727686882, 0.005001154262572527, 0.015187918208539486, -0.004879344720393419, -4.570579403662123e-05, -0.0016583508113399148, 0.03591643273830414, 0.020283039659261703, 0.02636655978858471, -0.009758689440786839, -0.022969812154769897, -0.00024427176686003804, -0.02256610058248043, -0.012167039327323437, -0.027020851150155067, -0.0471646785736084, -0.009382819756865501, 0.015772603452205658, 0.029345674440264702, 0.0217725969851017, 0.000825260067358613, -0.008714606985449791, -0.004701850935816765, 0.010628757998347282, -0.011874696239829063, -0.004312060307711363, 0.02043617144227028, 0.01832016557455063, 0.007085838820785284, 0.04385145753622055, -0.008220408111810684, -0.00568676833063364, -0.044129882007837296, 0.002159510273486376, 0.0024013894144445658, -0.027856117114424706, 0.008965186774730682, 0.0089234234765172, -0.019851485267281532, -0.014366572722792625, -0.01947561651468277, 0.0073364186100661755, 0.04167976602911949, -0.004489554092288017, 0.010935022495687008, 0.0006977950106374919, -0.011387458071112633, -0.0034733139909803867, 0.02498837187886238, 0.017429213970899582, -0.003588163061067462, -0.025962848216295242, 0.017693715170025826, 0.0044547514989972115, 0.003800459671765566, -0.0006207939586602151, -0.014658915810286999, -0.016774922609329224, 0.0284268818795681, 0.013830610550940037, 0.007218089420348406, 0.005022035911679268, 0.002906029112637043, 0.0068770223297178745, 0.03911828622221947, -0.004656607285141945, 0.003957072272896767, 0.029317831620573997, 0.0127030024304986, 0.018167033791542053, -0.0093758599832654, 0.01566123589873314, -0.036890909075737, -0.024528974667191505, 0.02171691320836544, -0.05328996479511261, -0.024821318686008453, 0.007976789027452469, 0.030988363549113274, -0.00744082685559988, -0.013712281361222267, 0.039702970534563065, 0.017220398411154747, -0.023387445136904716, -0.0038874666206538677, -0.014505784027278423, -0.016496501863002777, -0.018125269562005997, 0.03343847766518593, 0.00352377793751657, 0.006765653844922781, 0.01972619630396366, -0.010245928540825844, 0.026338716968894005, 0.009563794359564781, 0.02347097173333168, -0.012988384813070297, 0.009528991766273975, -0.023303918540477753, 0.008477948606014252, 0.008484909310936928, 0.002232596045359969, -0.005230852402746677, 0.005116003565490246, -0.0111856022849679, -0.017568426206707954, 0.005836420226842165, -0.006689087487757206, 0.09304861724376678, 0.016733160242438316, -0.01851505972445011, -0.0017470978200435638, 0.005464030895382166, 0.010774930007755756, 0.021633386611938477, -0.0012955322163179517, 0.023679787293076515, -0.001139789936132729, 0.027675142511725426, 0.003208813024684787, 0.015146154910326004, -0.04758231341838837, -0.029679780825972557, -0.020589303225278854, 0.020032459869980812, 0.01470067910850048, -0.01155451126396656, -0.022426888346672058, 0.014408336021006107, 0.004625285044312477, 0.024487212300300598, 0.02722966857254505, -0.006400224752724171, -0.017874689772725105, 0.02182828262448311, -0.0061635663732886314, 0.0013486064272001386, -0.045883938670158386, 0.024041736498475075, -0.00810903962701559, -0.03839438781142235, -0.020338723435997963, 0.007837578654289246, 0.002117746975272894, -0.006100921425968409, -0.01266819890588522, 0.010517389513552189, -0.0030626414809376, 0.02976330742239952, 0.005780735984444618, -0.024904845282435417, -0.0344964824616909, -0.010148480534553528, -0.0044338698498904705, -0.004002315457910299, -0.02129928022623062, -0.014269125647842884], "342bc982-3d67-436b-8766-3176f6146ea2": [-0.0006473223911598325, 0.007492263335734606, 0.011445538140833378, -0.002506783464923501, -0.02210463397204876, 0.003226518165320158, -0.009268779307603836, -0.007885484024882317, -0.04274873435497284, -0.03541797026991844, 0.010820597410202026, 0.00791357085108757, 0.0022522429935634136, -0.011965150944888592, -0.0024137445725500584, 0.014099779538810253, 0.03109254129230976, -0.016992760822176933, 0.00966902170330286, -0.016922542825341225, -0.0026243985630571842, -0.00695509510114789, -0.01141745038330555, 0.009079190902411938, -0.012863941490650177, 0.0030246414244174957, 0.025741927325725555, -0.023803910240530968, 0.005842139478772879, -0.0010392267722636461, 0.027132244780659676, -0.005764899775385857, 0.018312860280275345, 0.010820597410202026, -0.022792769595980644, -0.0033423779532313347, 0.0010286940960213542, 0.017273634672164917, 0.022778727114200592, -0.0023926792200654745, 0.007976767607033253, 0.01211260911077261, 0.006533787120133638, -0.019955962896347046, 0.02046153135597706, 0.03249690309166908, -0.019618915393948555, 0.017835378646850586, -0.008166356012225151, 0.009128343313932419, 0.014886220917105675, 0.007941658608615398, -0.006235360633581877, 0.0008496380760334432, -0.004546617157757282, 0.008096138015389442, 0.007520350161939859, 0.035277534276247025, 0.007639721035957336, -0.004427246283739805, -0.005505092907696962, 0.019464436918497086, -0.0008241840405389667, 0.011628104373812675, -0.009023016318678856, 0.0006170409033074975, -0.006456547416746616, -0.009282822720706463, 0.00855957716703415, -0.022975336760282516, 0.019562741741538048, 0.030615057796239853, -0.005347102414816618, 0.02838212437927723, 0.020054267719388008, -0.006663690321147442, 0.003988383803516626, -0.00010993509204126894, -0.01004117727279663, -0.008180399425327778, 0.010982098989188671, 0.015209224075078964, -0.03392934799194336, 0.009837545454502106, 0.007344805169850588, 0.0351090133190155, 0.00823657400906086, -0.003711022436618805, -0.0007855641306377947, -0.018060075119137764, -0.022483810782432556, 0.007766113616526127, 0.043366651982069016, 0.01893077977001667, -0.002957934280857444, 0.023214079439640045, -0.0015131983673200011, 0.02341068908572197, -0.018326904624700546, -0.016501234844326973, -0.010455464012920856, 0.0013315093237906694, -0.05227029696106911, -0.004002427216619253, -0.0064003728330135345, 0.004908239934593439, -0.022090589627623558, -0.018565645441412926, -0.004269255790859461, -0.023298339918255806, -0.004925794433802366, 0.042467862367630005, -0.011122534982860088, -0.013587187975645065, 0.018565645441412926, -0.003672402584925294, -0.0012718240031972528, -0.01460534892976284, 0.0012533917324617505, -0.007948679849505424, 0.0432543009519577, -0.0366818942129612, 0.023129817098379135, -0.02692159079015255, 0.010799531824886799, 0.015588400885462761, -0.006288024131208658, 0.0007960968650877476, 0.017919639125466347, 0.0004976702621206641, 0.01803198829293251, 0.0136714493855834, 0.019618915393948555, 0.007358849048614502, -0.01129807997494936, 0.015841186046600342, -0.01689445599913597, 0.017006805166602135, -0.013088639825582504, -0.022483810782432556, 0.0008294503786601126, 0.024169044569134712, 0.0003508706868160516, -0.007752069737762213, 0.0012999111786484718, 0.035951629281044006, 0.027356941252946854, -0.023846041411161423, 0.011038273572921753, -0.010989121161401272, -0.004216592293232679, -0.010961033403873444, 0.0120353689417243, -0.0089738629758358, 0.013846994377672672, -0.005241775419563055, 0.007808244321495295, 0.019309956580400467, -0.023382602259516716, 0.001256024930626154, 0.01769494265317917, -0.0020784535445272923, -0.007288631051778793, -0.004135841503739357, 0.01916952058672905, 0.04544510319828987, 0.004722162149846554, -0.022554028779268265, 0.006056304555386305, 0.010876771993935108, 0.0015368970343843102, 0.02692159079015255, -0.01877629943192005, 0.017498331144452095, 0.0077169607393443584, 0.003077304922044277, 0.005224220920354128, -0.0171191543340683, -0.015728836879134178, -0.019801482558250427, 0.0014640458393841982, -0.016908500343561172, 0.016627628356218338, 0.01876225508749485, -0.04387222230434418, -0.0007333394605666399, 0.022568073123693466, -0.0004818711895495653, 0.009493476711213589, 0.018060075119137764, 0.001083990791812539, 0.00848935917019844, -0.01933804340660572, -0.0025173162575811148, -0.6003921627998352, 0.0062774913385510445, 0.029660092666745186, -0.028368081897497177, -0.0033406224101781845, 0.008201465010643005, 0.015770968049764633, 0.01607992686331272, -0.01599566638469696, 0.014464912936091423, -0.0076116337440907955, 0.025896407663822174, 0.015462009236216545, -0.011768540367484093, -0.02602279931306839, -0.014492999762296677, 0.010841662995517254, -0.0037320880219340324, -0.029828617349267006, -0.018172424286603928, -0.024014564231038094, 0.03277777507901192, -0.0005003034020774066, -0.018242642283439636, 0.00458874786272645, -0.01623440720140934, -0.0019801482558250427, 0.002104785293340683, -0.012049413286149502, 0.0028947379905730486, -0.027455247938632965, 0.02741311676800251, 0.005571800284087658, 0.004848554730415344, 0.05589354783296585, -0.014127866365015507, -0.03367656469345093, 0.0071587273851037025, 0.023284297436475754, 0.030783582478761673, -0.03876034915447235, 0.005929911974817514, 0.011803649365901947, 0.01011841744184494, 0.008229552768170834, 0.02234337478876114, -0.002143405145034194, -0.003711022436618805, -0.0008101404528133571, 0.011761519126594067, 0.011487668380141258, -0.02137436717748642, -0.021556932479143143, 0.01130510214716196, -0.007288631051778793, -0.015883317217230797, 0.019043128937482834, -0.004655454773455858, 0.001540407887659967, -0.014317454770207405, -0.010455464012920856, 0.006305578630417585, -0.016866369172930717, -0.020573880523443222, -0.050135668367147446, 0.01342568639665842, 0.019436348229646683, -0.02235741913318634, 0.010504616424441338, -0.01949252374470234, 0.017020849511027336, -0.0034863248001784086, -0.008517445996403694, -0.02310173027217388, 0.0021170733962208033, -0.0038058168720453978, 0.02529253251850605, -0.024674613028764725, 0.0031527893152087927, 0.027750162407755852, 0.0005744711961597204, -0.015321572311222553, -0.005722769070416689, -0.006028217263519764, 0.01631866954267025, 0.006828702986240387, -0.03451918065547943, -0.02423926256597042, -0.00587373785674572, -0.005382211413234472, 0.006863811984658241, 0.013088639825582504, -0.010006068274378777, -0.0036864462308585644, 0.022245069965720177, 0.03766494616866112, -0.0018344458658248186, -0.0012700684601441026, 0.012983312830328941, -0.026612630113959312, -0.013109705410897732, -0.0062002516351640224, 0.0004322797176428139, 0.02008235454559326, 0.044181179255247116, 0.03502475097775459, -0.0029105371795594692, 0.010595900006592274, 0.037412162870168686, -0.016613584011793137, 0.01770898513495922, -0.0013332647504284978, -0.018214555457234383, -0.00223293318413198, 0.023523038253188133, -0.02946348302066326, 0.014338520355522633, -0.014675566926598549, 0.009289844892919064, -0.023846041411161423, 0.0023031511809676886, -0.011930041946470737, 0.026893503963947296, -0.030952105298638344, 0.026570500805974007, 0.023691561073064804, 0.007365870755165815, 0.04008044674992561, 0.009584760293364525, -0.008145290426909924, 0.007520350161939859, -0.03499666228890419, 0.02432352304458618, -0.004911750555038452, 0.016866369172930717, 0.013825928792357445, -0.0028842054307460785, -0.008517445996403694, -0.010497594252228737, -0.04111967608332634, -0.009331975132226944, -0.008264661766588688, 0.002694616559892893, -0.03482814133167267, -0.032833948731422424, -0.05131532996892929, -0.015869272872805595, 0.0006560996407642961, 0.01235134992748499, 0.0033581769093871117, -0.01696467399597168, -0.012028347700834274, -0.017961770296096802, 0.02994096465408802, -0.006470590829849243, 0.0013613519258797169, -0.004027003888040781, -0.04746738448739052, -0.028620867058634758, -0.015925448387861252, -0.016824238002300262, 0.035277534276247025, -0.013243119232356548, -0.0036583589389920235, -0.009465389885008335, -0.018551601096987724, -0.020138530060648918, 0.003746131667867303, 0.005441896617412567, -0.03538988530635834, 0.018383078277111053, -0.010827619582414627, 0.0005204910994507372, 0.008819383569061756, -0.04595067352056503, 0.0014377140905708075, -0.014956438913941383, -0.002194313332438469, 0.010258853435516357, 0.008208487182855606, 0.004543106071650982, 0.00042130815563723445, -0.010546747595071793, -0.010652074590325356, 0.016543366014957428, 0.006983182393014431, 0.017765160650014877, 0.010996142402291298, -0.015967577695846558, 0.031036365777254105, -0.0005139081622473896, -0.01261115726083517, -0.017442157492041588, 0.003198430873453617, 0.010504616424441338, -0.01505474466830492, 0.001133143319748342, 0.005736812483519316, -0.018635863438248634, 0.026893503963947296, 0.015883317217230797, 0.010996142402291298, -0.00019836591673083603, 0.0020907416474074125, 0.01236539427191019, -0.014366607181727886, 0.01497048232704401, -0.02725863642990589, 0.013488882221281528, -0.009114299900829792, -0.0014500021934509277, -0.018242642283439636, -0.006403883919119835, -0.02595258131623268, -0.020419402047991753, 0.018551601096987724, 0.003953274805098772, 0.04592258855700493, -0.022455723956227303, 0.013025443069636822, 0.015841186046600342, 0.001440347172319889, 0.026500282809138298, -0.004750249441713095, 0.011852802708745003, 0.0037320880219340324, 0.019534654915332794, 0.025475099682807922, 0.046063024550676346, -0.012126652523875237, -0.006175674963742495, 0.02805912308394909, 0.020700274035334587, -0.013488882221281528, 0.029351133853197098, 0.00717628188431263, 0.054292574524879456, -0.025671709328889847, 0.025152096524834633, -0.03314290568232536, 0.01497048232704401, 0.023354515433311462, -0.0055647785775363445, -0.005090806633234024, 0.02471674419939518, -0.05100637301802635, 0.02015257254242897, -0.006684755906462669, -0.023312384262681007, 0.012337306514382362, 0.007934636436402798, -0.00044895647442899644, -0.016093971207737923, -0.013285250402987003, 0.01129807997494936, -0.0030632612761110067, 0.0032352954149246216, 0.015462009236216545, 0.013552078977227211, 0.02228720113635063, 0.0017817823681980371, 0.003031663130968809, 0.041063498705625534, -0.021360322833061218, -0.004799401853233576, 0.017077023163437843, -0.0010234276996925473, -0.014591305516660213, -0.010595900006592274, -0.00954965129494667, 0.003488080343231559, -0.02478696219623089, 0.004750249441713095, -0.0011419205693528056, -0.012962247245013714, 0.014647480100393295, 0.0027701009530574083, -0.004149885382503271, -0.007906549610197544, 0.006660179700702429, -0.04957392439246178, -0.006962117273360491, 0.012885007075965405, 0.03244072571396828, -0.005919379182159901, -0.01582714170217514, 0.0018748212605714798, -0.001083113020285964, -0.00211005168966949, 0.02103731967508793, -0.018986953422427177, -0.021247973665595055, -0.014317454770207405, 0.012428590096533298, -0.0075343940407037735, 0.02252594195306301, 0.04724268615245819, -0.0056420182809233665, 0.00018958866712637246, 0.0005907090962864459, 0.006372285541146994, 0.017020849511027336, -0.022539986297488213, -0.011585974134504795, 0.04856278374791145, 0.010279919020831585, -0.00752737233415246, -0.026472194120287895, -0.006421438418328762, -0.005887781269848347, 0.003265138017013669, 0.004297343082726002, -0.012709462083876133, -0.011312123388051987, -0.003963807597756386, -0.008721078746020794, 0.007660786155611277, 0.00164749042596668, 0.03010948933660984, 0.015195180661976337, -0.026654761284589767, -0.01129807997494936, -0.011740453541278839, 0.02977244183421135, 0.06437588483095169, 0.042720645666122437, 0.0004827489028684795, 0.036260586231946945, -0.008657881990075111, 0.010694204829633236, -0.015433921478688717, -0.01105933915823698, 0.027441203594207764, -0.007829309441149235, -0.00836998876184225, 0.00330551341176033, 0.004455333575606346, -0.012885007075965405, 0.0045360843650996685, 0.013903168961405754, 0.015462009236216545, -0.019394218921661377, -0.023930301889777184, -0.014535130932927132, -0.005396255291998386, -0.017568549141287804, 0.034210219979286194, 0.0037671970203518867, 0.03735598921775818, 0.03522136062383652, 0.0383390411734581, -0.0004849432152695954, 0.027286723256111145, -0.007102553267031908, -0.007899527437984943, 0.029407307505607605, -0.007204369176179171, -0.010090329684317112, -0.0334237776696682, 0.03676615655422211, 0.014858134090900421, -0.0009023016318678856, -0.020601967349648476, -0.009697109460830688, 0.005266351625323296, 0.020110441371798515, 0.020658142864704132, -0.017919639125466347, 0.03940635547041893, -0.004174461588263512, -0.005922890268266201, 0.03123297728598118, -0.013566122390329838, -0.022820858284831047, -0.0002982071600854397, 0.03148576244711876, -0.023691561073064804, -7.504551467718557e-05, 0.007709939032793045, 0.02839616872370243, 0.007316717877984047, -0.009493476711213589, 0.0025489141698926687, -0.01942230574786663, -0.0122319795191288, -0.006941051688045263, 0.0019520610803738236, -0.013460795395076275, -0.02423926256597042, -0.00941623654216528, -0.017189372330904007, -0.01615014486014843, -0.019225694239139557, 0.01398743037134409, -0.03564266860485077, 0.0008470049360767007, -0.036429110914468765, 0.01697871834039688, -0.010413332842290401, 0.022694464772939682, 0.012639244087040424, 0.006519743707031012, 0.0077169607393443584, -0.005136448424309492, -0.02203441597521305, -0.03876034915447235, 0.022736595943570137, -0.02503974735736847, -0.024000519886612892, -0.01473174151033163, -0.025812145322561264, 0.02022279053926468, -0.03350804001092911, 0.015504139475524426, -0.02211867831647396, 0.001541285659186542, -0.01567266322672367, -0.009465389885008335, 0.02310173027217388, 0.03286203369498253, 0.007745048031210899, 0.008552554994821548, 0.024983573704957962, -0.018060075119137764, -0.01492835208773613, -0.008426162414252758, -0.010139483027160168, -0.029407307505607605, -0.004065623506903648, -0.02113562449812889, -0.009486454539000988, -0.010553768835961819, -0.0022294223308563232, -0.03050270862877369, 0.02071431651711464, -0.03238455206155777, -0.0017106865998357534, -0.011269993148744106, 0.020208748057484627, 0.0011261214967817068, 0.012955225072801113, 0.03567075729370117, 0.019787438213825226, -0.007787178736180067, 0.0056701055727899075, -0.028901739045977592, 0.0522141233086586, 0.020616011694073677, -0.004873130936175585, 0.008250617422163486, 0.013306315056979656, -0.03449109196662903, -0.03603588789701462, 0.022385505959391594, 0.0016431018011644483, 0.021922066807746887, 0.03645719960331917, -0.007639721035957336, -0.019043128937482834, -0.005891292355954647, 0.01374166738241911, 0.008629795163869858, -0.020012136548757553, -0.0033845086582005024, -0.0366818942129612, 0.025180183351039886, -0.0006192352157086134, -0.027778249233961105, -0.011431493796408176, -0.029491569846868515, -0.0104063106700778, -0.0028280308470129967, -0.014338520355522633, 0.02325620874762535, -0.006512721534818411, -0.009289844892919064, -0.013882103376090527, -0.009528585709631443, 8.941826672526076e-05, -0.01129807997494936, 0.007372892461717129, -0.011607039719820023, 0.013215032406151295, 0.028606822714209557, 0.020742403343319893, 0.006014173850417137, 0.013278228230774403, 0.012505830265581608, -0.006790082901716232, -0.0183409471064806, 0.01317992340773344, -0.015068788081407547, -0.01606588438153267, -0.003963807597756386, 0.02112158201634884, 0.0025805123150348663, -0.003739109728485346, 0.0017019093502312899, -0.014998570084571838, 0.010911880992352962, -0.026317715644836426, -0.010013090446591377, -0.009739239700138569, -0.026823285967111588, -0.018621819093823433, 0.016908500343561172, -0.004525551572442055, -0.006888388190418482, -0.021177755668759346, 0.0030000649858266115, 0.008398075588047504, 0.007583546452224255, 0.015068788081407547, -0.015560314059257507, 0.023593256250023842, -0.0062774913385510445, 0.011930041946470737, -0.00411828700453043, 0.023270253092050552, -0.0035986737348139286, -0.026795197278261185, -0.03906930983066559, -0.0037671970203518867, 0.0017071757465600967, 0.018804386258125305, 0.028368081897497177, -0.0043113864958286285, -0.014219149947166443, 0.0031510337721556425, 0.003440683241933584, -0.034884314984083176, 0.011705344542860985, 0.009107277728617191, -0.02495548501610756, 0.0019783927127718925, -0.014521087519824505, 0.0025752459187060595, 0.0048380219377577305, -0.013938277959823608, 0.009535607881844044, 0.00881236232817173, 0.025348706170916557, -0.0065794289112091064, -0.02690754644572735, 0.019127389416098595, -0.02397243306040764, 0.0408107154071331, 0.03704702854156494, 0.03744025155901909, 0.004012960009276867, -0.0019661046098917723, -0.04668094217777252, -0.03803008049726486, 0.0016597785288468003, -0.002991287736222148, 0.0301937498152256, 0.022329332306981087, -0.0003482375177554786, 0.009928828105330467, 0.0016290581552311778, 0.012772658839821815, -0.021318191662430763, -0.03075549378991127, 0.025685753673315048, 0.03432257100939751, -0.0003923432086594403, -0.006740930490195751, -0.0005512114730663598, -0.016431016847491264, 0.01664167083799839, -0.0025559361092746258, -0.0075343940407037735, 0.017512375488877296, -0.02293320745229721, -0.00471514044329524, 0.0350528359413147, -0.008292748592793941, 0.013067574240267277, 0.0027736120391637087, -0.01137532014399767, 0.0005907090962864459, -0.020138530060648918, 0.02683732844889164, 0.004665987566113472, -0.01811625063419342, 0.010286940261721611, -0.008903644979000092, 0.0036162282340228558, 0.010771444998681545, 0.010027133859694004, -0.0007443110225722194, -0.014563217759132385, 0.003437172155827284, 0.029800528660416603, -0.005835117772221565, -0.01810220628976822, 0.010265874676406384, -0.02383199706673622, 0.01706298068165779, -0.023452820256352425, -0.02088283933699131, -0.016122058033943176, -0.01697871834039688, 0.005568289197981358, 0.01883247308433056, 0.012400503270328045, -0.036906592547893524, 0.0001949647266883403, 0.005891292355954647, -0.004894196055829525, 0.021009232848882675, -0.00943028088659048, 0.023480907082557678, -0.036344848573207855, -0.030446534976363182, 0.0010655585210770369, -0.0005226854118518531, 0.023775823414325714, -0.013734645210206509, -0.022413592785596848, -0.0006016807164996862, 0.02048962004482746, 0.0022522429935634136, 0.02276468276977539, -0.005877248477190733, -0.0019906810484826565, -0.04819765314459801, 0.018706081435084343, -0.024084782227873802, -0.012505830265581608, 0.00991478469222784, -0.039940010756254196, -0.018958866596221924, 0.002485718112438917, 0.009690087288618088, -0.0016896212473511696, -0.027553552761673927, -0.01273052766919136, 0.015447964891791344, 0.02814338356256485, 0.001546551939100027, 0.004448311869055033, -0.028325950726866722, 0.015644576400518417, -0.011010185815393925, 0.0318228080868721, 0.007246499881148338, 0.017919639125466347, -0.008271683007478714, -0.01655741035938263, 0.002663018647581339, -0.008173378184437752, -0.042299337685108185, 0.011494690552353859, -0.0024260326754301786, 0.0009224892710335553, -0.006438992917537689, -0.0050346325151622295, -0.012400503270328045, -0.015447964891791344, -0.009521564468741417, 0.019225694239139557, -0.014563217759132385, -0.00027823890559375286, 0.00999904703348875, 0.0030053313821554184, 0.009844566695392132, 0.023129817098379135, -0.013025443069636822, -0.024829093366861343, -0.019141433760523796, -0.012421567924320698, -0.037889644503593445, -0.02364942990243435, -0.0018432231154292822, 0.0273428987711668, 0.011649169959127903, -0.013229075819253922, -0.03398552164435387, -0.0167399775236845, -0.029884791001677513, -0.0015807832824066281, -0.021753543987870216, 0.010434398427605629, 0.04072645306587219, -0.029407307505607605, -0.002081964397802949, 0.016529323533177376, 0.0028139872010797262, 0.04201846569776535, -0.025798100978136063, -0.003551276633515954, -0.023621343076229095, -0.017989857122302055, 0.03685041889548302, -0.005908846855163574, -0.045388929545879364, -0.0030667721293866634, 0.016950631514191628, -0.0028596289921551943, -0.002404967322945595, 0.00799783319234848, 0.007162238471210003, 0.009816479869186878, -0.006087902467697859, 0.001546551939100027, 0.0008685091743245721, 0.002483962569385767, -0.010216722264885902, -0.038704175502061844, 0.0003251972084399313, 0.010785488411784172, -0.00022305194579530507, 0.0150968749076128, -0.011269993148744106, 0.009233670309185982, -0.002512049861252308, -0.0026612631045281887, -0.018046032637357712, -0.011473624967038631, 0.0008004854898899794, -0.027469290420413017, 0.009402193129062653, 0.014162975363433361, 0.0171331986784935, 0.018888648599386215, -0.0183409471064806, 0.018003901466727257, -0.00530146062374115, -0.007604612037539482, -0.0106029212474823, 0.0033020025584846735, 0.0024944953620433807, 7.734954124316573e-05, 0.00954262912273407, -0.016332712024450302, 0.010546747595071793, -0.031064454466104507, -0.021079450845718384, -0.009851588867604733, 0.014275324530899525, -0.019450392574071884, 0.0025436480063945055, -0.0167118888348341, 0.006066837348043919, 0.010504616424441338, -0.009774348698556423, -0.0017378961201757193, 0.019955962896347046, 0.014507044106721878, 0.011010185815393925, -0.029154524207115173, 0.015307528898119926, -0.0031720991246402264, -0.013453773222863674, -0.000960231467615813, 0.004184994380921125, 0.0285646915435791, -0.012639244087040424, 0.03415404632687569, 0.2179567515850067, 0.01876225508749485, 0.03010948933660984, 0.030699320137500763, 0.006259936839342117, -0.014050626195967197, 0.015377746894955635, -0.010216722264885902, -0.003344133263453841, 0.02258211560547352, 0.02603684365749359, 0.008882580325007439, -0.030249925330281258, 0.0033739760983735323, -0.0025155607145279646, 0.012533917091786861, -0.03575501590967178, -0.028016991913318634, 0.0015693728346377611, 0.009570716880261898, 0.01342568639665842, -0.0001488841517129913, 0.007211390882730484, 0.0037250660825520754, 0.030530797317624092, 0.0224416796118021, 0.01049057301133871, 0.01730172149837017, 0.006923497188836336, 0.026640718802809715, -0.02626154012978077, -0.006923497188836336, 0.013334402814507484, 0.008327857591211796, 0.002292618388310075, -0.004192016087472439, -0.004255212377756834, -0.023565169423818588, 0.002417255425825715, -0.002334749326109886, -0.007829309441149235, -0.007723982445895672, 0.005199644714593887, -0.016501234844326973, 0.0032019419595599174, 0.0212058424949646, -0.006263447925448418, 0.000602997257374227, -0.0024102337192744017, 0.013896146789193153, -0.016852324828505516, 0.02700585126876831, 0.02195015363395214, 0.015939490869641304, 0.011368297971785069, 0.010659095831215382, -0.018228599801659584, -0.006849768105894327, -0.008538511581718922, 0.028929825872182846, -0.014816002920269966, 0.024927398189902306, 0.01105933915823698, 0.008671926334500313, -0.039687227457761765, -0.017751116305589676, -0.019057171419262886, 0.0024137445725500584, 0.005024099722504616, -0.015307528898119926, 0.0004700218851212412, -0.031766634434461594, -0.006073859054595232, 0.0005867593572475016, -0.002696372102946043, -0.031513847410678864, 0.015630532056093216, 0.03839521482586861, 0.04965818673372269, 0.024660570546984673, -0.01647314801812172, -0.00040133990114554763, -0.027862511575222015, -0.03777729719877243, -0.017666853964328766, 0.001641346258111298, 0.035277534276247025, -0.005101339425891638, -0.038788437843322754, -0.02422521822154522, -0.011522777378559113, -0.01480195950716734, -0.010139483027160168, -0.01630462519824505, 0.0015728836879134178, 0.0017150752246379852, 0.0003201503132004291, 0.012077500112354755, -0.015251354314386845, -0.02439374104142189, -0.006526765413582325, 0.065274678170681, 0.024604395031929016, 0.04794486612081528, -0.008756187744438648, -0.01599566638469696, -0.006653157528489828, 0.020054267719388008, -0.009928828105330467, -0.005357635207474232, 0.01852351427078247, -0.027469290420413017, -0.004420224577188492, -0.0004357906000223011, -0.015195180661976337, 0.01198621653020382, -0.003477547550573945, -0.013931255787611008, -0.014191062189638615, -0.0032791816629469395, -0.005831606686115265, -0.013594209216535091, -0.0033248234540224075, 0.003812838578596711, 0.012597113847732544, -0.020742403343319893, -0.030699320137500763, -0.01117870956659317, 0.012892029248178005, -0.019885744899511337, 0.033901263028383255, -0.02870512753725052, 0.0228489451110363, 0.002189046936109662, -0.01867799460887909, -0.01273052766919136, 0.004314897581934929, -0.009409215301275253, 0.013685492798686028, -0.024267349392175674, -0.012716484256088734, 0.01918356493115425, -0.0033634433057159185, 0.004599280655384064, 0.0020679207518696785, -0.014001473784446716, -0.0018010922940447927, -0.010497594252228737, -0.03401361033320427, -0.01762472465634346, -0.0001323170872638002, 0.013875081203877926, 0.0007236844976432621, -0.015405834652483463, 0.029912877827882767, -0.014085735194385052, -0.0017212192760780454, -0.004894196055829525, -0.005385722499340773, 0.019464436918497086, -0.043113864958286285, 0.01056079100817442, 0.025236357003450394, 0.00799783319234848, -0.02537679299712181, 0.005438385996967554, -0.17908404767513275, 0.028494473546743393, 0.0016220363322645426, -0.016192276030778885, 0.011284036561846733, -0.00012781874102074653, 0.0018046032637357712, -0.005487538408488035, -0.030446534976363182, -0.02137436717748642, -0.0021556932479143143, 0.008594686165452003, -0.04072645306587219, -0.016290580853819847, -0.018495427444577217, 0.02251189760863781, -0.010027133859694004, 0.019843613728880882, 0.040586017072200775, 0.02293320745229721, 0.005357635207474232, -0.030474621802568436, 0.0037250660825520754, 0.014521087519824505, 0.0035038792993873358, 0.01561648864299059, -0.008980885148048401, 0.01606588438153267, -0.0035530319437384605, -0.016192276030778885, -0.038872696459293365, -0.010076286271214485, 0.025840232148766518, 0.013362489640712738, 0.015686705708503723, -0.0035635647363960743, -0.004736205562949181, -0.007555459160357714, 0.010876771993935108, 0.03392934799194336, 0.011508733965456486, 0.013032465241849422, 0.010904858820140362, 0.005146981216967106, -0.02095305733382702, 0.005761388689279556, 0.01379081979393959, -0.014226171188056469, -0.02220293879508972, -0.022413592785596848, -0.003398552304133773, -0.025334663689136505, -0.023593256250023842, -0.003956785425543785, 0.006273980252444744, -0.00480993464589119, 0.012224958278238773, 0.014169997535645962, 0.02659858763217926, -0.00905812531709671, 0.00483451085165143, -0.008229552768170834, 0.02054579369723797, 0.00752737233415246, 0.007843352854251862, -0.0091774957254529, -0.005845650564879179, 0.019759351387619972, -0.013516969978809357, 0.0048380219377577305, -0.014141909778118134, -0.011080403812229633, 0.020672185346484184, 0.030727406963706017, 0.0015456742839887738, 0.01982956938445568, -0.013088639825582504, 0.007766113616526127, 0.019857656210660934, 0.021514803171157837, 0.009479433298110962, -0.009732218459248543, -0.0012068722862750292, 0.011887911707162857, -0.010813575237989426, 0.0032897144556045532, 0.0016562676755711436, 0.004328940995037556, 0.005613930989056826, -0.018874604254961014, 0.00986563228070736, -0.02739907242357731, -0.019225694239139557, -0.017568549141287804, -0.0014105045702308416, 0.00855957716703415, 0.009472411125898361, 0.002483962569385767, -0.009437302127480507, -0.009584760293364525, -0.002322461223229766, 0.00742204487323761, -0.01284989807754755, 0.014633435755968094, 0.011817693710327148, 0.01036418043076992, -0.002083719940856099, -0.0009391660569235682, 0.03359230235219002, -0.026458151638507843, -0.02815742790699005, -0.0039322092197835445, 0.010890815407037735, 0.01236539427191019, 0.003277426352724433, 0.03412596136331558, 0.03564266860485077, -0.003147522918879986, 0.018369035795331, -0.016192276030778885, 0.04420926794409752, -0.02798890508711338, -0.018242642283439636, 0.01268137525767088, -0.009472411125898361, 0.0025770014617592096, -0.1149890348315239, -0.03362039104104042, -0.010961033403873444, 0.004448311869055033, -0.013762732967734337, -0.01706298068165779, -0.006744441110640764, 0.04201846569776535, -0.00812422577291727, 0.017765160650014877, 0.0031018811278045177, -0.016360798850655556, -0.004722162149846554, -0.0043113864958286285, 0.011368297971785069, -0.02546105533838272, -0.00038115220377221704, 0.013615274801850319, 0.012309219688177109, 0.05033227801322937, -0.004321919288486242, -0.02301746793091297, 0.009851588867604733, -0.010652074590325356, 0.004939837846904993, 0.00042569678043946624, -0.01681019552052021, 0.007218413054943085, -0.023045554757118225, 0.007590568158775568, -0.011880889534950256, -0.008412119001150131, 0.03567075729370117, -0.01689445599913597, -0.026977764442563057, -0.005048675928264856, -0.015855230391025543, -0.010701227001845837, 0.025587446987628937, -0.03477196395397186, 0.000653027615044266, 0.033002469688653946, 0.010694204829633236, -0.023466862738132477, 0.005884270183742046, 0.0051399595104157925, -0.007436088752001524, 0.03359230235219002, -0.003605695441365242, -0.01730172149837017, -0.035698842257261276, -0.008749165572226048, -0.02821360155940056, -0.031598109751939774, 0.034800052642822266, -0.0045676822774112225, 0.023214079439640045, -0.010139483027160168, -0.016346756368875504, -0.008327857591211796, -0.022624246776103973, -0.024267349392175674, 0.0044869314879179, 0.0059755537658929825, 0.01589735969901085, -0.0022206450812518597, 0.002020523650571704, -0.016852324828505516, -0.014275324530899525, -0.018874604254961014, -0.032187942415475845, 0.022315287962555885, -0.017905596643686295, 0.019113346934318542, -0.024815049022436142, -0.010968055576086044, 0.006684755906462669, -0.01186684612184763, 0.0171191543340683, -0.0076888734474778175, -0.01484408974647522, -0.01460534892976284, 0.021472672000527382, -0.03772112354636192, 0.030249925330281258, 0.029435396194458008, 0.02658454328775406, -0.020166616886854172, 0.00601768447086215, -0.05019184201955795, -0.0261070616543293, 0.01211260911077261, 0.005684148985892534, -0.04845043644309044, -0.0032159853726625443, 0.040277060121297836, 0.011930041946470737, 0.0061195008456707, 0.015321572311222553, -0.004673009272664785, -0.013657405972480774, -0.012133674696087837, -0.0277361199259758, 0.024028608575463295, -0.03581119328737259, -0.005912357475608587, -0.0228489451110363, -0.0032756708096712828, -0.019927874207496643, -0.0008154067909345031, -0.01950656622648239, 0.023621343076229095, -0.01762472465634346, 0.029407307505607605, -0.0038725240156054497, -0.013327380642294884, -0.024927398189902306, -0.010862728580832481, 0.008103160187602043, -0.021922066807746887, -0.0014772117137908936, 0.009388149715960026, -0.0216131079941988, -0.010911880992352962, 0.016136102378368378, 0.016866369172930717, -0.0021750032901763916, -0.00043798491242341697, -0.012260067276656628, 0.02054579369723797, 0.005308482795953751, -0.01630462519824505, 0.024590352550148964, -0.03339569270610809, 0.012505830265581608, 0.011340211145579815, -0.005241775419563055, -0.004890685435384512, 0.014331498183310032, 0.020742403343319893, 0.03494048863649368, 0.01883247308433056, -0.01867799460887909, -0.031766634434461594, 0.007899527437984943, -0.028354037553071976, -0.026795197278261185, -0.026121104136109352, -0.0448552742600441, -0.009893719106912613, 0.008692990988492966, 0.021149668842554092, 0.026219410821795464, 0.006540808826684952, -0.008320835418999195, -0.007738026324659586, 0.004314897581934929, -0.023761779069900513, -0.011536821722984314, 0.01901504024863243, 0.016852324828505516, 0.005315504502505064, 0.025713840499520302, -0.007674830034375191, -0.007892506197094917, -0.04603493586182594, 0.008082094602286816, 0.0016878657042980194, -0.01638888753950596, 0.019043128937482834, -0.0077942004427313805, -0.004192016087472439, -0.018144337460398674, -0.012660309672355652, 0.002650730311870575, 0.04142863303422928, 0.009507520124316216, 0.013032465241849422, 0.002562957815825939, -0.008004854433238506, 0.001413137768395245, 0.035530321300029755, 0.021978242322802544, -0.009647956117987633, -0.02456226386129856, 0.016093971207737923, 0.011944086290895939, -0.005712236277759075, 0.0049468595534563065, -0.005961510352790356, -0.02039131335914135, 0.034884314984083176, 0.005694681778550148, 0.009479433298110962, -0.011614060960710049, 0.012126652523875237, 0.012098565697669983, 0.036906592547893524, -0.0076888734474778175, 0.0025208271108567715, 0.029969053342938423, 0.009942872449755669, 0.008208487182855606, -0.00950049888342619, 0.007372892461717129, -0.03244072571396828, -0.02470269985496998, 0.011269993148744106, -0.039687227457761765, -0.010392267256975174, 0.001590438187122345, 0.03704702854156494, -0.020054267719388008, -0.009240691550076008, 0.039602965116500854, 0.01211963128298521, -0.016501234844326973, 0.005922890268266201, -0.02023683488368988, -0.0273288544267416, -0.012063456699252129, 0.027960816398262978, 0.006231849547475576, 0.005908846855163574, 0.018958866596221924, -0.006912964396178722, 0.04283299297094345, 0.008692990988492966, 0.00929686613380909, -0.006066837348043919, 0.0013692514039576054, -0.01228113193064928, 0.014942395500838757, 0.004388626664876938, -0.005733301863074303, -0.00035152898635715246, 0.002634931355714798, -0.013825928792357445, -0.02553127333521843, 0.012470721267163754, 0.004350006580352783, 0.09886697679758072, 0.013952321372926235, -0.012210913933813572, -0.009676043875515461, 0.010427376255393028, 0.006003641057759523, 0.003544254694133997, 0.009444324299693108, 0.027033939957618713, -0.0010207945015281439, 0.03555840626358986, 0.009556673467159271, 0.018467340618371964, -0.03679424524307251, -0.026500282809138298, -0.01624845154583454, 0.0120353689417243, 0.02211867831647396, -0.009605825878679752, -0.009521564468741417, -0.004251701291650534, -0.003456482198089361, 0.017077023163437843, 0.027539508417248726, -0.015265398658812046, -0.02317194826900959, 0.03336760401725769, -0.0013025443768128753, -0.0063231331296265125, -0.032918211072683334, 0.030137576162815094, 0.008173378184437752, -0.02432352304458618, -0.0244639590382576, -0.00480993464589119, 0.0021767588332295418, -0.0058245849795639515, -0.016768064349889755, 0.009851588867604733, -0.014830046333372593, 0.02203441597521305, 0.0007579157827422023, -0.02098114602267742, -0.036822330206632614, -0.013566122390329838, -0.010048199445009232, -0.0031580557115375996, -0.0289579126983881, 0.00034187399432994425], "335e37ed-9cce-4be3-bb4a-9a3c24f436b0": [0.009301099926233292, 0.00691390922293067, 0.008200378157198429, -0.00941117201000452, -0.011241122148931026, -0.013263698667287827, 0.00010856729204533622, -0.008840172551572323, -0.04980766400694847, -0.030049705877900124, 0.012176735326647758, 0.006005813833326101, -0.00038998230593279004, -0.014997335150837898, 0.013428806327283382, 0.005575844086706638, 0.02977452613413334, -0.020308317616581917, -0.013311854563653469, -0.015327551402151585, 0.006889830809086561, -0.017652826383709908, -0.014268106780946255, 0.020872438326478004, -0.02220706269145012, -0.00023089360911399126, 0.027559323236346245, -0.03596608713269234, -0.004526718519628048, 0.005586163606494665, 0.013593914918601513, -0.0033933192025870085, -0.005393537227064371, 0.01294036116451025, -0.019675403833389282, -0.007588101085275412, 0.001977859530597925, 0.008145341649651527, 0.029664453119039536, -0.011296157725155354, 0.0034156774636358023, 0.010890266858041286, 0.016593381762504578, -0.010339905507862568, -0.005121796391904354, 0.027201589196920395, -0.0207623653113842, 0.01898745261132717, -0.015272515825927258, 0.014901022426784039, 0.008991521783173084, -0.006759120151400566, -0.012087302282452583, 0.013710866682231426, -0.0114543866366148, -0.0027655635494738817, -0.0013380650198087096, 0.034259967505931854, 0.0029925876297056675, -0.013050433248281479, -0.01744644157588482, 0.024931350722908974, 0.0124037591740489, 0.004416646435856819, -0.012059783563017845, -0.01161949522793293, -0.0009261542581953108, 0.005187151953577995, -0.003814689116552472, -0.024903832003474236, 0.008055907674133778, 0.02764187753200531, 0.019152559340000153, 0.02220706269145012, 0.026348529383540154, 0.0005374618340283632, -0.005967976525425911, -0.005919819697737694, -0.005596482660621405, 0.0011480185203254223, 0.005599922500550747, 0.014309383928775787, -0.008564991876482964, 0.014226829633116722, 0.000585188448894769, 0.022963808849453926, 0.01635947823524475, -0.00514243496581912, 0.005262826569378376, -0.022413449361920357, -0.023995736613869667, 0.015079889446496964, 0.03065510280430317, 0.016304442659020424, 4.6866673073964193e-05, 0.02271614782512188, 0.0033038854598999023, 0.023335304111242294, -0.003708056639879942, -0.026279734447598457, -0.008104064501821995, 0.004832856822758913, -0.0370117723941803, 0.001680320710875094, -0.01004408672451973, 0.003439755877479911, -0.006848553661257029, 0.0021292087621986866, 0.0021085701882839203, -0.011000338941812515, 0.0017714742571115494, 0.031975969672203064, -0.02080364339053631, -0.013800300657749176, 0.01813439279794693, -0.015974225476384163, 0.0045163994655013084, -0.02466992847621441, 0.002646892098709941, -0.012362482026219368, 0.025289084762334824, -0.0352231003344059, 0.019647885113954544, -0.01708870753645897, 0.021519111469388008, 0.011729567311704159, -0.01312610786408186, -0.0010792233515530825, 0.013875975273549557, -0.0067350417375564575, 0.030324887484312057, 0.017694104462862015, 0.0230876412242651, -0.010202315635979176, -0.018051838502287865, 0.0168960802257061, -0.018547162413597107, 0.006683445535600185, -0.005892301443964243, -0.01674473099410534, -0.0011351194698363543, 0.022234581410884857, 0.013862215913832188, 0.0004738263669423759, -0.006741921417415142, 0.03877292573451996, 0.027229106053709984, -0.01869851164519787, 0.040946852415800095, -0.006941427011042833, -0.005486410576850176, -0.028673803433775902, 0.001245191553607583, 0.0007954435423016548, 0.00358766526915133, 0.003993556369096041, 0.0013225860893726349, 0.01109665259718895, -0.03324180096387863, -0.005744392052292824, 0.01585039496421814, -0.006876071915030479, -0.006800397299230099, 0.00018370445468463004, 0.026169661432504654, 0.05583411455154419, 0.01743268221616745, -0.02925168350338936, 0.0001058799825841561, -0.0028171599842607975, 0.00029431411530822515, 0.015795359387993813, -0.025977035984396935, 0.017322611063718796, 0.017914248630404472, 0.007932077161967754, 0.030242333188652992, -0.01794176548719406, -0.017900489270687103, -0.021161377429962158, 0.015341310761868954, -0.009493726305663586, 0.02235841192305088, 0.020349595695734024, -0.04749614745378494, -0.001506612985394895, 0.037231918424367905, 0.010904026217758656, 0.0148735037073493, 0.008310450240969658, 0.024931350722908974, 0.00738859549164772, -0.021546630188822746, -0.013077951967716217, -0.6040761470794678, -4.984958650311455e-05, 0.031095393002033234, -0.01974419876933098, 0.0010663243010640144, 0.006105566397309303, 0.002865316579118371, 0.026293493807315826, -0.02673378214240074, 0.02289501391351223, -0.018450850620865822, 0.026486119255423546, 0.012224892154335976, -0.016249407082796097, -0.01399980578571558, -0.027160311117768288, 0.0010491255670785904, -0.010986579582095146, -0.010965941473841667, -0.009080955758690834, -0.022674869745969772, 0.025247806683182716, 0.008523714728653431, -0.00695174653083086, -0.008379245176911354, -0.02446354366838932, 0.01638699695467949, 0.011419989168643951, -0.011681410484015942, 0.0035257497802376747, -0.03362705186009407, 0.027050239965319633, 0.005692795850336552, -0.0033692407887429, 0.052531950175762177, 0.0012899084249511361, -0.012892204336822033, 0.0033984787296503782, 0.029086574912071228, 0.031398091465234756, -0.04378121346235275, 0.013683348894119263, 0.006882951129227877, 0.014845985919237137, 0.0012391720665618777, 0.02533036097884178, 0.014199311845004559, 0.0005176832200959325, -0.004722784738987684, 0.007842643186450005, 0.002560898195952177, -0.01557521428912878, -0.014708396047353745, 0.030737657099962234, -0.008943364955484867, -0.036709073930978775, 0.020872438326478004, -0.012548228725790977, 0.008778256364166737, -0.008736980147659779, -0.0071684508584439754, -0.0035051112063229084, -0.02220706269145012, -0.03957094997167587, -0.0476062186062336, 0.014061721973121166, 0.02446354366838932, -0.029526863247156143, -0.00932173803448677, -0.021175136789679527, 0.0065252166241407394, 0.0018763868138194084, 0.0006277554202824831, -0.02074860781431198, 0.009479966945946217, -0.00738859549164772, 0.0220144372433424, -0.013339373283088207, 0.000962271704338491, 0.017308851704001427, -0.00020294559362810105, -0.02450481988489628, 0.003604864003136754, -0.008702581748366356, 0.021725498139858246, 0.015795359387993813, -0.022055713459849358, -0.024587374180555344, -0.006721282843500376, 0.007973354309797287, -0.0006716123316437006, 0.01934518665075302, -0.012740855105221272, -0.01565776765346527, 0.013394408859312534, 0.03321428224444389, -0.00012071392848156393, 0.01056692935526371, 0.014969817362725735, -0.032691437751054764, -0.012761494144797325, -0.02007441408932209, 0.0007915737805888057, 0.005658398382365704, 0.053935371339321136, 0.022262100130319595, 0.0008474698406644166, 0.0005834685871377587, 0.041827429085969925, -0.0057409522123634815, 0.010800832882523537, 0.005407296121120453, -0.019441500306129456, -0.01653834618628025, 0.02127145044505596, -0.037754759192466736, 0.009108473546802998, -0.006604331079870462, -0.0002766853431239724, -0.025619301944971085, 0.006569933611899614, -0.006704084109514952, 0.01869851164519787, -0.02114761807024479, 0.024780001491308212, 0.024573614820837975, 0.002010537311434746, 0.02497262693941593, -0.009390532970428467, 0.005895741283893585, 0.007023981306701899, -0.0258807223290205, 0.017666585743427277, 0.0004798459412995726, 0.023197712376713753, 0.015905430540442467, 0.0021550070960074663, -0.00783576350659132, -0.004495760891586542, -0.054650839418172836, 8.997111581265926e-05, -0.0029994670767337084, 0.016428273171186447, -0.017707861959934235, -0.027765708044171333, -0.03640637546777725, -0.012692699208855629, -0.0013131267623975873, 0.012899084016680717, -0.002631413284689188, -0.011027856729924679, -0.005087398923933506, -0.0207623653113842, 0.030957801267504692, -0.0050186035223305225, 0.00028936946182511747, 0.011124170385301113, -0.04592761769890785, -0.03483784571290016, -0.022427206858992577, -0.009342377074062824, 0.031040355563163757, -0.004144905600696802, -0.015327551402151585, -0.0063635483384132385, -0.0035205900203436613, -0.018395813181996346, 0.02168422006070614, -0.0010637445375323296, -0.042515382170677185, 0.004925730172544718, -0.010436219163239002, -0.008785136044025421, -0.003993556369096041, -0.031095393002033234, 0.01688232086598873, -0.007567462977021933, -0.020349595695734024, -0.0012967879883944988, 0.00031280278926715255, 0.008620028384029865, 0.016951115801930428, -0.00633946992456913, 0.001924543408676982, 0.024738723412156105, 0.0008564991876482964, 0.02238593064248562, 0.015630250796675682, -0.0016261445125564933, 0.02568809688091278, 0.004175863694399595, -0.019125042483210564, -0.015712805092334747, 0.009232304990291595, -0.0016854803543537855, -0.024078290909528732, -0.014749673195183277, -0.0033142047468572855, -0.01488726306706667, 0.018230706453323364, 0.008193498477339745, 0.01462584175169468, 0.0068141561932861805, 0.003996996209025383, 0.01267893984913826, -0.0010078484192490578, 0.0032213313970714808, -0.01846460998058319, 0.01119296532124281, -0.006704084109514952, -0.0033159246668219566, -0.023335304111242294, -0.010952182114124298, -0.028123443946242332, -0.022220822051167488, 0.009404292330145836, -0.003276367438957095, 0.03789234906435013, -0.02710527554154396, 0.0148735037073493, 0.01390349306166172, -0.0040038758888840675, 0.019950583577156067, -0.00400731572881341, -0.0007240686099976301, -0.003560147248208523, 0.02762811817228794, 0.023294026032090187, 0.04471682384610176, -0.004764061886817217, -0.014295625500380993, 0.03225114941596985, 0.024037012830376625, -0.014694636687636375, 0.042873118072748184, 0.015726562589406967, 0.056962355971336365, -0.01777665875852108, 0.030847730115056038, -0.014474492520093918, 0.017721621319651604, 0.02711903490126133, 0.00917038880288601, -0.006177801638841629, 0.025440433993935585, -0.026293493807315826, 0.027201589196920395, 0.002867036499083042, -0.02162918448448181, 0.0021292087621986866, 0.01622188836336136, 0.008076546713709831, -0.027077756822109222, -0.01725381426513195, 0.006225958000868559, 0.00045533766387961805, -0.005224989261478186, 0.0016184051055461168, 0.023101400583982468, 0.025412915274500847, -0.0014730753609910607, 0.0017430962761864066, 0.03921321779489517, -0.022661110386252403, 0.005785669200122356, 0.018051838502287865, -0.001206494402140379, -0.016813525930047035, -0.023569205775856972, -0.020899957045912743, 0.003948839846998453, -0.022633593529462814, -0.006903589703142643, -0.0004013765137642622, -0.0017886729910969734, 0.024780001491308212, 0.0004164254351053387, -0.005998934153467417, -0.012555108405649662, -0.0003639691567514092, -0.0447443425655365, -0.007918317802250385, 0.0334344245493412, 0.03043495863676071, -0.014818468131124973, -0.01989554800093174, -0.005998934153467417, -0.009369894862174988, -0.020363355055451393, 0.00743675185367465, -0.00612620497122407, -0.011536940932273865, -0.01557521428912878, 0.01251383125782013, -0.015382587909698486, 0.02288125641644001, 0.05514616519212723, -0.012981638312339783, -0.002142967889085412, 0.003071701852604747, 0.0036702193319797516, 0.019647885113954544, -0.00029538903618231416, -0.0036874182987958193, 0.03640637546777725, 0.004330652765929699, -0.015341310761868954, -0.030572550371289253, -0.004072670824825764, -0.011248001828789711, 0.0079114381223917, 0.0005297223688103259, -0.008833292871713638, 0.002046654699370265, 0.0013698827242478728, -0.013071072287857533, 0.00889520812779665, -0.002994307316839695, 0.02482127770781517, -0.003597984556108713, -0.022055713459849358, -0.009961532428860664, -0.002994307316839695, 0.022853737697005272, 0.06741921603679657, 0.03965350612998009, 0.009734508581459522, 0.04122203215956688, -0.018106874078512192, 0.002036335412412882, -0.02834358811378479, -0.009156630374491215, 0.038305118680000305, -0.005235308315604925, -0.014309383928775787, 0.010085363872349262, 0.001960660796612501, -0.005283464677631855, 0.006422024220228195, 0.014391938224434853, 0.0030889008194208145, -0.020280800759792328, -0.031783342361450195, -0.018946174532175064, 0.012974758632481098, -0.012947240844368935, 0.03569090738892555, 0.0036461411509662867, 0.023307785391807556, 0.04069919139146805, 0.02853621356189251, 9.748214324645232e-06, 0.014054842293262482, -0.017143743112683296, -0.0040864297188818455, 0.02731166034936905, 0.004784700460731983, -0.012238651514053345, -0.0297470074146986, 0.025839446112513542, 0.012610144913196564, -0.00015941118181217462, -0.017212538048624992, -0.01408923976123333, -0.0026451721787452698, 0.017707861959934235, 0.01565776765346527, -0.019620366394519806, 0.03833263739943504, -0.0015625091036781669, 0.0009854900417849422, 0.027146553620696068, -0.013298096135258675, -0.001249491237103939, 0.011261760257184505, 0.01919383741915226, -0.026898890733718872, -0.011660772375762463, -0.0061881206929683685, 0.020844919607043266, 0.003276367438957095, -0.018368296325206757, -0.006067729089409113, -0.027325419709086418, -0.014336901716887951, -0.0009502325556240976, -0.006060849875211716, -0.014061721973121166, -0.01435066107660532, -0.00950748473405838, -0.020335836336016655, -0.014295625500380993, -0.02621093951165676, 0.011708928272128105, -0.049229785799980164, -0.011598856188356876, -0.03467273712158203, 0.012727096676826477, 0.005974855739623308, 0.005507049150764942, 0.026651227846741676, 0.0054485732689499855, 0.0023201152216643095, -0.0005366019322536886, -0.029691971838474274, -0.032691437751054764, 0.017033670097589493, -0.0190424881875515, -0.005957657005637884, -0.017680345103144646, -0.02325274981558323, 0.024890072643756866, -0.02938927337527275, 0.00691390922293067, 0.0013707426842302084, 0.005307543091475964, -0.011887796223163605, -9.416331158718094e-05, 0.018038079142570496, 0.018904898315668106, -0.002829199191182852, 0.030242333188652992, 0.01690983958542347, -0.024890072643756866, -0.004640230443328619, -0.012355603277683258, -0.01109665259718895, -0.03439755737781525, -0.010112881660461426, -0.022083232179284096, -0.008736980147659779, -0.013965408317744732, -0.01655210554599762, -0.030407441779971123, 0.020638534799218178, -0.030077224597334862, -0.0018437091493979096, 0.0014971536584198475, 0.008516835048794746, 0.003849086817353964, 0.020349595695734024, 0.020115692168474197, 0.0297470074146986, -0.007828883826732635, -0.005015164148062468, -0.027352938428521156, 0.048156581819057465, 0.011736446991562843, -0.002638292731717229, 0.012823409400880337, 0.021175136789679527, -0.0348653644323349, -0.03401230648159981, 0.018409572541713715, 6.874137034174055e-05, 0.011908434331417084, 0.026816336438059807, -0.009665713645517826, -0.012431277893483639, -0.025633059442043304, 0.006280994042754173, 0.007285402622073889, -0.015699045732617378, -0.005022043362259865, -0.02925168350338936, 0.008695702999830246, -0.0016571023734286427, -0.03503047302365303, -0.004750302527099848, -0.031975969672203064, -0.0065424153581261635, 0.01099345926195383, -0.024353470653295517, 0.017845453694462776, -0.020473426207900047, -0.009184148162603378, -0.02552298828959465, -0.010016568936407566, -0.021065063774585724, -0.015974225476384163, 0.004464802797883749, -0.006167482119053602, 0.019413981586694717, 0.02394070103764534, 0.038635335862636566, 0.004519839305430651, 0.0023545129224658012, 0.011289278976619244, 0.00014393228047993034, -0.014323143288493156, 0.01110353134572506, -0.03203100711107254, -0.017542755231261253, 0.008592509664595127, 0.014708396047353745, 0.0038284482434391975, 0.006047090515494347, -0.007760088890790939, -0.009328617714345455, 0.01541010569781065, -0.010608206503093243, -0.012974758632481098, -0.009493726305663586, -0.026554914191365242, -0.018271982669830322, 0.02567433752119541, -0.006659367121756077, -0.0032006928231567144, -0.021739257499575615, 0.012362482026219368, 0.014502010308206081, 0.005496729630976915, 0.022977568209171295, -0.010271110571920872, 0.037259433418512344, -0.000137697730679065, -0.0030011869966983795, 0.0010018289322033525, 0.03538820892572403, -0.009356135502457619, -0.025770651176571846, -0.04435909166932106, 1.2415368473739363e-05, 0.011612615548074245, 0.03838767483830452, 0.02340409904718399, -0.0003308615123387426, -0.006676565855741501, -0.0004940349026583135, 0.012527590617537498, -0.03728695213794708, 0.004224020056426525, 0.0067178430035710335, -0.021546630188822746, -0.004310014192014933, -0.011282399296760559, 0.0013784820912405849, 0.01258950587362051, 0.0027070879004895687, 0.003257448785007, 0.01126863993704319, 0.02905905619263649, -0.00872322078794241, -0.01564401015639305, 0.00738859549164772, -0.01798304356634617, 0.032856546342372894, 0.02958190068602562, 0.035140544176101685, 0.004784700460731983, 0.0103811826556921, -0.03255384787917137, -0.03913066163659096, -0.0070858970284461975, 0.00515275401994586, 0.032801512628793716, 0.03681914508342743, 0.003941960167139769, 0.012279927730560303, 0.015465142205357552, 0.03483784571290016, -0.02008817344903946, -0.02958190068602562, 0.02517901174724102, 0.015217479318380356, -0.003993556369096041, -0.01126863993704319, -0.008564991876482964, -0.026857612654566765, 0.013401288539171219, -0.011337434872984886, 0.00015134926070459187, 0.008324208669364452, -0.002884235233068466, -0.006256915628910065, 0.039736058562994, -0.00134150474332273, 0.017295092344284058, 0.006693764589726925, -0.007443631533533335, -0.002261639339849353, -0.004819097928702831, 0.015795359387993813, 0.0025196210481226444, -0.007189089432358742, 0.020528461784124374, -0.005919819697737694, 0.00021143749472685158, 0.01692359894514084, 0.018932415172457695, 0.0045507969334721565, -0.013807179406285286, 0.006112446077167988, 0.03172830864787102, -0.0030545031186193228, 0.0012744294945150614, 0.008420522324740887, -0.006483939476311207, 0.024436024948954582, -0.03227866813540459, -0.00969323143362999, -0.011426868848502636, -0.011041616089642048, 0.01724005676805973, 0.0218355692923069, 0.018739789724349976, -0.025068940594792366, -0.009851460345089436, 0.002987427869811654, -0.0010775035480037332, 0.02200067788362503, -0.018739789724349976, 0.030352404341101646, -0.036351338028907776, -0.02043214999139309, 0.005943898111581802, -0.0051940311677753925, 0.01047061663120985, -0.013112349435687065, -0.0105600506067276, -0.012541349977254868, 0.03172830864787102, -0.00268300948664546, 0.020913714542984962, -0.002653771545737982, -0.00811094418168068, -0.05987926945090294, 0.018409572541713715, -0.03783731535077095, -0.014914780855178833, 0.008571871556341648, -0.030077224597334862, -0.018106874078512192, 0.0033675208687782288, 0.00959691870957613, 0.0018488687928766012, -0.028481177985668182, -0.004678067751228809, 0.015891671180725098, 0.021065063774585724, 0.006669686641544104, -0.0058372654020786285, -0.01310546975582838, 0.018230706453323364, -0.0032110121101140976, 0.036186229437589645, 0.014213071204721928, 0.017707861959934235, -0.0009295939817093313, -0.024614892899990082, -0.004220580216497183, -0.008881449699401855, -0.032141078263521194, 0.005269705783575773, 0.0018849861808121204, 0.0034156774636358023, -0.0038525264244526625, -0.005782229360193014, -0.011990988627076149, -0.016263164579868317, -0.01653834618628025, 0.010161038488149643, -0.015506419353187084, -0.002796521410346031, -0.0019641006365418434, 0.0078082457184791565, 0.025055181235074997, 0.013697107322514057, -0.011254880577325821, -0.029994670301675797, -0.0267750583589077, -0.004258417524397373, -0.03805745765566826, -0.018739789724349976, -0.0054485732689499855, 0.03241625800728798, 0.00656305393204093, -0.022083232179284096, -0.031040355563163757, -0.025798168033361435, -0.027683153748512268, -0.007952715270221233, -0.028082165867090225, 0.02850869670510292, 0.031095393002033234, -0.02711903490126133, 2.020856481976807e-05, 0.02233089506626129, -0.0021120100282132626, 0.0359385684132576, -0.0308202113956213, -0.010216074995696545, -0.011351194232702255, -0.018918657675385475, 0.04086429998278618, -0.0037390145007520914, -0.04878949746489525, -0.010415580123662949, 0.014199311845004559, 0.007161571644246578, -0.010738917626440525, 0.01275461446493864, 0.006439222954213619, 0.0024422265123575926, 0.00018090965750161558, 0.010346785187721252, -0.011144808493554592, 0.007533065043389797, -0.010532531887292862, -0.025619301944971085, -0.0023476332426071167, 0.017033670097589493, -0.01232808455824852, -0.0007189089665189385, 0.0018677874468266964, 0.00633946992456913, -0.002349353162571788, 0.005276585463434458, -0.012727096676826477, -0.0177904162555933, -0.004447604063898325, -0.039873648434877396, 0.002044934779405594, 0.009418051689863205, 0.017666585743427277, 0.02622469887137413, -0.006353228818625212, 0.013910372741520405, -0.0027208467945456505, -0.0022839978337287903, -0.010326147079467773, 0.008049028925597668, 0.01462584175169468, 0.004365050233900547, 0.01205290388315916, -0.006294752936810255, -0.011289278976619244, -0.026307253167033195, -0.030545031651854515, -0.012025386095046997, 0.008207256905734539, -0.019689161330461502, 0.003195533063262701, -0.007780727464705706, -0.006480500102043152, 0.0028343587182462215, -0.014543287456035614, -0.0125826271250844, 0.02167046070098877, 0.0074573904275894165, -0.0007765248883515596, -0.015217479318380356, 0.018781065940856934, -0.011750205419957638, -0.013511360622942448, -0.008902087807655334, -0.0016992393648251891, 0.02922416478395462, -0.01295412052422762, 0.03819504752755165, 0.20462419092655182, 0.017143743112683296, 0.015368828549981117, 0.02660995163023472, -0.002333874348551035, -0.01882234402000904, 0.009865219704806805, -0.0033761202357709408, -0.0089846421033144, 0.010167918168008327, 0.026293493807315826, 0.011922193691134453, -0.01974419876933098, 0.004592074081301689, 0.002856717212125659, 0.01531379297375679, -0.04383624717593193, -0.02326650731265545, -0.001967540243640542, 0.02483503706753254, 0.016070539131760597, -0.006040211301296949, 0.006649048067629337, 0.005799428094178438, 0.028756357729434967, 0.011220483109354973, 0.00045447773300111294, 0.024174604564905167, 0.00888832937926054, 0.031810861080884933, -0.01883610337972641, -0.002569497562944889, 0.01883610337972641, 0.02306012250483036, -0.00448200199753046, -0.0033038854598999023, -0.0008642386528663337, -0.006697204429656267, 0.0018798265373334289, 0.0023459135554730892, -0.0125826271250844, 0.006411704700440168, 0.006876071915030479, -0.02343161590397358, 0.01277525257319212, 0.02414708584547043, -0.0033142047468572855, -0.002256479812785983, -0.006855433341115713, 0.022606074810028076, -0.01656586304306984, 0.02779322676360607, 0.020996268838644028, 0.010814592242240906, 0.009727629832923412, 0.017845453694462776, 0.004337531980127096, -0.014460733160376549, -0.0005108037148602307, 0.028783876448869705, -0.016235647723078728, 0.01099345926195383, 0.003377840155735612, 0.019125042483210564, -0.030847730115056038, -0.01390349306166172, -0.02182180993258953, 0.00665248790755868, 0.015300033614039421, -0.011303037405014038, -0.010326147079467773, -0.030600067228078842, 0.001836829585954547, 0.004014194943010807, -0.004120827652513981, -0.02955438196659088, 0.02061101607978344, 0.03797490522265434, 0.04573499411344528, 0.022289616987109184, -0.008626907132565975, -0.00246458500623703, -0.014226829633116722, -0.045679956674575806, -0.015506419353187084, -0.0068932706490159035, 0.04413894563913345, -0.008475557900965214, -0.031590718775987625, -0.03538820892572403, -0.015478900633752346, -0.014818468131124973, -0.021409040316939354, -0.02058349922299385, -0.005421055015176535, 0.01011976134032011, -0.000696550530847162, 0.005871663335710764, -0.015121166594326496, -0.021519111469388008, -0.0011669371742755175, 0.05057816952466965, 0.017886729910969734, 0.04328588768839836, -0.019950583577156067, -0.011234242469072342, -0.012032265774905682, 0.018437091261148453, -0.02132648602128029, 0.010594448074698448, 0.013628312386572361, -0.015189961530268192, 0.004853495396673679, -0.003780291648581624, -0.01653834618628025, 0.024931350722908974, -0.018395813181996346, -0.019689161330461502, -0.004347851499915123, 0.0034861925523728132, -0.011516302824020386, -0.009720750153064728, -0.005871663335710764, -0.007189089432358742, -0.0025024223141372204, -0.027504287660121918, -0.02799961157143116, -0.012630783021450043, 0.008413642644882202, -0.015011094510555267, 0.029664453119039536, -0.013249939307570457, 0.023555448278784752, -0.014199311845004559, -0.012885325588285923, -0.018258223310112953, 0.003083741059526801, 0.0027294461615383625, 0.010697640478610992, -0.014419456012547016, -0.0061709219589829445, 0.0063635483384132385, -0.008881449699401855, 0.005630880128592253, -0.002056973986327648, -0.026114625856280327, 0.007718812208622694, -0.0022255219519138336, -0.036709073930978775, -0.0024078290443867445, 0.004272176884114742, 0.01758403144776821, -0.011309917084872723, -0.013752143830060959, 0.031590718775987625, -0.012286807410418987, -0.009197906590998173, -0.014956058003008366, -0.0044372850097715855, 0.012080422602593899, -0.033516980707645416, 0.008743858896195889, 0.0316457524895668, 0.0029014339670538902, -0.02850869670510292, 0.016772249713540077, -0.1744644194841385, 0.0211201012134552, -0.002562618115916848, -0.02233089506626129, 0.0024267476983368397, 0.007918317802250385, 0.001575408154167235, 0.003814689116552472, -0.03431500494480133, -0.020886197686195374, 0.0073610772378742695, -0.0008573591476306319, -0.039378322660923004, -0.015767840668559074, -0.023651760071516037, 0.016689695417881012, -0.004767501726746559, 0.025426674634218216, 0.038827963173389435, 0.017116224393248558, 0.0052731456235051155, -0.024339711293578148, 0.008585630916059017, 0.018629716709256172, 0.013965408317744732, 0.010312387719750404, -0.022757424041628838, 0.012218012474477291, -0.007381715811789036, -0.013531999662518501, -0.03797490522265434, -0.014901022426784039, 0.030737657099962234, 0.0077119325287640095, 0.019056247547268867, 0.009314858354628086, -0.00506676035001874, -0.0023923502303659916, 0.0008530594641342759, 0.029361754655838013, 0.005496729630976915, 0.0045163994655013084, 0.009431810118258, 0.006645608227699995, -0.016648417338728905, -0.016964875161647797, 0.01831326074898243, -0.009535003453493118, -0.02147783525288105, -0.0359385684132576, -0.012059783563017845, -0.032829027622938156, -0.01557521428912878, -0.013188024051487446, 0.015134925954043865, 0.004836296662688255, 0.011069133877754211, 0.023349061608314514, 0.01901496946811676, -0.01134431455284357, 0.011220483109354973, -0.007092776242643595, 0.011770844459533691, 0.027215348556637764, 0.006762559991329908, -0.01798304356634617, -0.010229833424091339, 0.020996268838644028, -0.01726757362484932, 0.014144276268780231, -0.01205290388315916, -0.019125042483210564, 0.02377559244632721, 0.01829950138926506, 0.00906031671911478, 0.012107940390706062, -0.017831694334745407, 0.011956591159105301, 0.01938646286725998, 0.02550922892987728, -0.006841674447059631, 0.006676565855741501, 0.012857806868851185, 0.004574875347316265, -0.017185019329190254, 0.003161135595291853, -0.015960466116666794, 0.014529528096318245, -0.008764497935771942, -0.005455452483147383, 0.011812121607363224, -0.026843853294849396, -0.005145874805748463, -0.018739789724349976, -0.0003345162549521774, 0.008269173093140125, 0.019771715626120567, -0.0031043796334415674, 0.00950748473405838, -0.023211471736431122, -0.007773848250508308, 0.005637759808450937, -0.020335836336016655, 0.016964875161647797, 0.010938423685729504, 0.00043663399992510676, -0.01602926291525364, -9.862424485618249e-05, 0.035828497260808945, -0.03929577022790909, -0.02996715158224106, -0.005393537227064371, 0.0032247710041701794, -0.0002609914808999747, -0.0061090062372386456, 0.03500295430421829, 0.020033137872815132, 0.0065561747178435326, 0.020666053518652916, -0.014956058003008366, 0.050605688244104385, -0.030875248834490776, -0.009211665950715542, 0.013511360622942448, -0.003849086817353964, 0.014942299574613571, -0.10968693345785141, -0.04350602999329567, -0.0059954943135380745, 0.024325953796505928, -0.014928540214896202, -0.0177904162555933, -0.007251005154103041, 0.04020386561751366, 0.0018093115650117397, 0.03065510280430317, 0.018161911517381668, -0.008750738576054573, -0.000407181098125875, 0.009713870473206043, 0.01488726306706667, -0.031975969672203064, -0.012197374366223812, 0.011289278976619244, 0.009892737492918968, 0.047991473227739334, 0.0018609078833833337, -0.008936485275626183, 0.011440628208220005, -0.015946708619594574, -0.0031473764684051275, 0.005892301443964243, -0.02886643074452877, 0.0177904162555933, -0.00351887010037899, 0.0036083038430660963, -0.017859211191534996, -0.015451382845640182, 0.02608710713684559, -0.02640356495976448, -0.03384719789028168, -0.005132115446031094, -0.021354004740715027, -0.014763431623578072, 0.026981445029377937, -0.029334237799048424, -0.00811094418168068, 0.023899422958493233, 0.024587374180555344, -0.018767308443784714, -0.010078484192490578, 0.01488726306706667, -0.011158567853271961, 0.04036897420883179, -0.0031284578144550323, -0.01953781209886074, -0.02941679209470749, -0.003083741059526801, -0.02625221572816372, -0.02464240975677967, 0.023706797510385513, -0.026885131374001503, 0.027242865413427353, -0.002987427869811654, -0.013759023509919643, -0.018271982669830322, -0.02110634185373783, -0.016937358304858208, 0.0018161910120397806, 0.009184148162603378, 0.018739789724349976, 0.0026365728117525578, 0.009266702458262444, -0.01940022222697735, -0.013669589534401894, -0.008248534053564072, -0.015932949259877205, 0.015465142205357552, -0.014240588992834091, 0.021587908267974854, -0.027930816635489464, -0.020156968384981155, 0.01091778464615345, -0.01110353134572506, 0.012658301740884781, 0.01134431455284357, -0.017322611063718796, -0.013559517450630665, 0.016620900481939316, -0.03324180096387863, 0.026472359895706177, 0.02447730302810669, 0.02025328204035759, -0.016249407082796097, 0.018423331901431084, -0.04543229565024376, -0.03046247735619545, 0.01063572522252798, 0.004623031709343195, -0.036021120846271515, 0.003666779724881053, 0.026114625856280327, -0.0028429580852389336, -0.0124037591740489, 0.009548761881887913, -0.009734508581459522, -0.018175669014453888, -0.01938646286725998, -0.0337921604514122, 0.02919664792716503, -0.018946174532175064, -0.007546824403107166, -0.00896400399506092, 0.008427402004599571, 0.000979470438323915, -0.011027856729924679, -0.0161806121468544, 0.020899957045912743, -0.015162443742156029, 0.025234049186110497, -0.00994777400046587, -0.013098590075969696, -0.01919383741915226, 0.0004052462172694504, 0.01143374852836132, -0.007326679769903421, -0.00492917001247406, 0.0016106656985357404, -0.01276837382465601, -0.0069723851047456264, 0.015093648806214333, 0.01583663560450077, 0.0036633398849517107, -0.0063635483384132385, -0.01214233785867691, 0.003966038580983877, -0.001671721343882382, -0.007677535060793161, 0.030875248834490776, -0.028082165867090225, 0.0019830192904919386, 0.012128578498959541, 0.005379777867347002, -0.010890266858041286, 0.012211132794618607, 0.027683153748512268, 0.024931350722908974, 0.018973693251609802, -0.012107940390706062, -0.038084976375103, 0.0033331234008073807, -0.012561988085508347, -0.023665519431233406, -0.028563732281327248, -0.04364361986517906, -0.00515275401994586, 0.012438156642019749, 0.02977452613413334, 0.025660578161478043, 0.0037596530746668577, -0.01294036116451025, -0.009404292330145836, -0.0005434814374893904, -0.019785474985837936, -0.004451043903827667, 0.016400756314396858, 0.025701854377985, 0.004457923583686352, 0.04978014528751373, -0.0065561747178435326, -0.002681289566680789, -0.04504704102873802, 0.008145341649651527, 0.0005013443878851831, -0.021532870829105377, 0.016799766570329666, 0.00827605277299881, -0.02235841192305088, -0.01722629740834236, -0.02991211600601673, 0.007154691964387894, 0.03767220675945282, -0.00510459765791893, 0.010236713103950024, -0.00036912880023010075, -0.006243156734853983, 0.004640230443328619, 0.021216413006186485, 0.011509423144161701, -0.005596482660621405, -0.013807179406285286, 0.006673126015812159, 0.0031232982873916626, -0.007622499018907547, 0.0025729374028742313, -0.018932415172457695, -0.00863378681242466, 0.026995204389095306, 0.0025918560568243265, 0.004571435507386923, 0.002261639339849353, 0.015327551402151585, 0.006497698836028576, 0.034975435584783554, -0.001384501694701612, -0.0048225377686321735, 0.016964875161647797, 0.006391066126525402, 0.001897025271318853, 0.0027019281405955553, 0.01117920596152544, -0.036021120846271515, -0.02850869670510292, 0.01215609721839428, -0.049037158489227295, -0.02533036097884178, 0.010085363872349262, 0.025467952713370323, -0.013800300657749176, -0.020638534799218178, 0.04017634689807892, 0.007443631533533335, -0.026527397334575653, 0.00630163261666894, -0.02464240975677967, -0.02059725858271122, -0.022771183401346207, 0.029691971838474274, 0.005324741825461388, 0.002428467618301511, 0.0230876412242651, -0.0020844920072704554, 0.03398478776216507, 0.013889733701944351, 0.009005280211567879, 0.004461363423615694, 0.002629693364724517, -0.012431277893483639, 0.010539411567151546, 0.002158446703106165, -0.0017258974257856607, 0.004258417524397373, 0.012534470297396183, -0.009989051148295403, -0.023183954879641533, 0.008558112196624279, -0.00976202730089426, 0.09768906235694885, 0.023197712376713753, -0.023830628022551537, 0.008675063960254192, 0.0028635966591537, 0.018904898315668106, 0.017859211191534996, 0.003126738127321005, 0.033709608018398285, -0.00712717417627573, 0.01776289939880371, 0.005204350687563419, 0.011812121607363224, -0.061365243047475815, -0.03591104969382286, -0.02062477543950081, 0.013896613381803036, 0.025798168033361435, -0.0029151930939406157, -0.001489414251409471, -0.004289375618100166, -0.0012890484649688005, 0.02080364339053631, 0.0330766923725605, -0.023651760071516037, -0.006680005695670843, 0.03734198957681656, 0.004640230443328619, -0.0032230510842055082, -0.037617169320583344, 0.030930284410715103, -0.006225958000868559, -0.02853621356189251, -0.02041839063167572, 0.0013208661694079638, 0.01849212683737278, -0.013194902800023556, -0.01197035051882267, 0.01602926291525364, -0.016772249713540077, 0.028453659266233444, 0.003735574893653393, -0.020542221143841743, -0.03948839753866196, -0.006263795308768749, -0.008117823861539364, -0.0070067825727164745, -0.024573614820837975, -0.009294220246374607], "105ec08a-95d6-4475-ab14-0c1d3089edf2": [-0.005323715973645449, 0.011378616094589233, 0.019707150757312775, -0.01997176930308342, -0.020835261791944504, 0.009261664003133774, -0.020751697942614555, -0.01623924821615219, -0.04559802636504173, -0.030055144801735878, 0.013070784509181976, 0.014386915601789951, 0.006994993891566992, -0.003892684355378151, 0.002320638857781887, -0.0012517173308879137, 0.030305836349725723, -0.010960796847939491, 0.014212824404239655, -0.02426138147711754, 0.0018401463748887181, -0.013070784509181976, -0.00814747903496027, -0.012792238034307957, -0.013363257981836796, 0.008753317408263683, 0.028550995513796806, -0.028550995513796806, 0.008265861310064793, 0.003170205047354102, 0.019094347953796387, -0.005619671195745468, 0.005999190732836723, -0.005786799360066652, -0.027645718306303024, 0.005034724250435829, -0.00039257618482224643, 0.007924641482532024, 0.027603937312960625, 0.010090338997542858, 0.010320140048861504, 0.006082754582166672, 0.013425931334495544, -0.002257965737953782, 0.0035793199203908443, 0.010431558825075626, -0.016406375914812088, 0.008091770112514496, -0.032227806746959686, 0.010243539698421955, 0.008349425159394741, 0.011343797668814659, -0.004683059640228748, 0.009317372925579548, -0.0047318050637841225, 0.008349425159394741, -0.006817420478910208, 0.040779177099466324, -0.011016505770385265, -0.0017896599601954222, -0.0037603748496621847, 0.013718404807150364, 0.00308141834102571, 0.013272730633616447, -0.00949146505445242, -0.0016930392012000084, -0.018175145611166954, -0.012444055639207363, -0.0071725668385624886, -0.02834208495914936, 0.02203301154077053, 0.02775713801383972, 0.0030988275539129972, 0.043425366282463074, 0.03211638703942299, 0.00015592064301017672, 0.009588955901563168, 0.01021568477153778, -0.014651535078883171, -0.0016617027577012777, 0.011343797668814659, 0.00216569728218019, -0.024400655180215836, 0.00970733817666769, 0.004707432352006435, 0.02952590584754944, 0.015055427327752113, -0.004038921091705561, 0.01231174636632204, -0.02162911929190159, -0.012548509985208511, 0.014540116302669048, 0.05197673663496971, 0.02164304628968239, -0.0025869987439364195, 0.029553761705756187, -0.009867502376437187, 0.007680913899093866, -0.0209884624928236, -0.013920350931584835, -0.010361921973526478, 0.00841906201094389, -0.0418933629989624, -0.006681628990918398, -0.003708147443830967, 0.003638510825112462, -0.019191838800907135, -0.005323715973645449, -0.0025417348369956017, -0.016587430611252785, -0.011107033118605614, 0.034456174820661545, -0.010431558825075626, -0.02157340943813324, 0.01735343411564827, -0.007611277513206005, 0.0006746043218299747, -0.013210057280957699, 0.008795099332928658, -0.01740914396941662, 0.03796586021780968, -0.02681007981300354, 0.02785462886095047, -0.03423333913087845, 0.0008769856067374349, 0.0064379009418189526, 0.006180245894938707, -0.005908662918955088, 0.016127830371260643, 0.0011420397786423564, 0.02689364366233349, 0.019567877054214478, 0.02473491057753563, 0.0065945833921432495, -0.0237042885273695, 0.013551277108490467, -0.005783317144960165, 0.005779835395514965, -0.020306024700403214, -0.027088627219200134, 0.0020542789716273546, 0.018091581761837006, -0.000829110445920378, -0.013265767134726048, -0.003408710239455104, 0.02935877814888954, 0.04047277569770813, -0.007430222351104021, 0.006719929166138172, -0.011928744614124298, 0.006034009158611298, -0.01554288249462843, 0.007346658501774073, -0.006065345369279385, 0.015654301270842552, 0.0030013362411409616, 0.001355301821604371, 0.011288088746368885, -0.031475730240345, 0.000438275164924562, 0.012437092140316963, -0.00707855774089694, -0.005062578711658716, -0.005337643437087536, 0.017088815569877625, 0.05108539015054703, 0.006890538614243269, -0.03261777013540268, 0.00722131272777915, 0.01473509892821312, 0.017130596563220024, 0.0091989915817976, -0.014707244001328945, 0.01618354022502899, 0.01940074935555458, -0.003269437002018094, 0.011176669970154762, -0.01523648202419281, -0.009672519750893116, -0.0066015468910336494, 0.011859108693897724, -0.013286657631397247, 0.010389776900410652, 0.020793480798602104, -0.050723280757665634, -0.006876611616462469, 0.02417781762778759, 0.012033199891448021, 0.020918825641274452, 0.005222742911428213, 0.01367662288248539, 0.004132930655032396, -0.00971430167555809, -0.0058877719566226006, -0.6297374367713928, -0.003565392456948757, 0.020347805693745613, -0.033341988921165466, -0.007834114134311676, 0.0037185929249972105, 0.014707244001328945, 0.031308602541685104, -0.014665462076663971, 0.010912050493061543, -0.003781265811994672, 0.01619746722280979, 0.023968908935785294, -0.02207479253411293, -0.010354958474636078, -0.011726798489689827, 0.014790807850658894, -0.007214348763227463, -0.022687595337629318, -0.016434231773018837, -0.03409406542778015, 0.02944234199821949, 0.009909284301102161, -0.014874371699988842, 0.0008138774428516626, -0.006709483917802572, 0.017047032713890076, -0.00866278912872076, -0.014665462076663971, 0.01231174636632204, -0.01885758340358734, 0.030166562646627426, 0.01523648202419281, -0.00475269602611661, 0.05526358261704445, -0.00843995250761509, -0.027952119708061218, 0.001539838733151555, 0.009338264353573322, 0.0289409589022398, -0.0472971610724926, -0.015306118875741959, 0.014832589775323868, 0.004035439342260361, 0.0005235800053924322, 0.04094630479812622, -6.20744758634828e-05, 0.007632168475538492, -0.01261118333786726, 9.058194700628519e-05, 0.020194606855511665, -0.010132120922207832, -0.013196130283176899, 0.02729753591120243, -0.00891348160803318, -0.021392354741692543, 0.018801875412464142, -0.0023380478378385305, 0.011420398019254208, -0.012026236392557621, 0.0026340032927691936, -9.694716572994366e-05, -0.028272448107600212, -0.032812751829624176, -0.05083469673991203, 0.013265767134726048, 0.008537443354725838, 0.0004397984885144979, 0.004592531826347113, -0.020849188789725304, 0.006671183742582798, -0.003245064290240407, -0.008022133260965347, -0.012722602114081383, 0.002966518048197031, 0.0010079893982037902, 0.02371821738779545, -0.029330924153327942, 0.0056510078720748425, 0.010438522323966026, 0.0026392261497676373, -0.01629495806992054, 0.0010724031599238515, -0.007715732324868441, 0.01579357497394085, -0.006396119017153978, -0.02426138147711754, -0.021796246990561485, 0.0035723561886698008, -0.0021500291768461466, 0.008405134081840515, 0.014317279681563377, -0.006124536506831646, -0.004352285992354155, 0.00892740860581398, 0.03991568461060524, -0.004070257768034935, -0.016559576615691185, 0.022283703088760376, -0.020194606855511665, -0.012938475236296654, -0.009825720451772213, 0.00943575520068407, 0.003951875492930412, 0.027534300461411476, 0.016517795622348785, 0.00617328193038702, 0.015918919816613197, 0.028147103264927864, 0.0013396335998550057, 0.017771253362298012, -0.009853575378656387, -0.0037673385813832283, 0.005765908397734165, 0.024038543924689293, -0.03501326963305473, 0.02313326857984066, -0.010194794274866581, 0.0032363596837967634, -0.02250654064118862, -0.005114806350320578, -0.00736754946410656, 0.029776597395539284, -0.03258991613984108, 0.03788229450583458, 0.03105791099369526, 0.01155270729213953, 0.027116481214761734, -0.020208533853292465, 0.0018366646254435182, 0.009637701325118542, -0.004648241214454174, 0.016476012766361237, -0.0014545338926836848, 0.020807407796382904, 0.0034174148458987474, -0.00032402767101302743, -0.013258803635835648, -0.006772156804800034, -0.04375962167978287, -0.004512449726462364, -0.005372461397200823, 0.006423973944038153, -0.017130596563220024, -0.025584476068615913, -0.03791014850139618, -0.0047596595250070095, -0.004794477950781584, 0.007242203690111637, 0.025542695075273514, -0.0075137862004339695, -0.0017844372196123004, -0.04150339588522911, 0.029191650450229645, -0.0056753805838525295, -0.004272203892469406, 0.008231042884290218, -0.039609283208847046, -0.025333784520626068, -0.013495567254722118, -0.0184258371591568, 0.020863117650151253, -0.01288276631385088, -0.005981781519949436, 0.00538987061008811, -0.014359061606228352, -0.008983117528259754, 0.0008016910287551582, 0.002043833490461111, -0.027116481214761734, 0.008802062831819057, -0.007430222351104021, 0.008878663182258606, 0.0062255095690488815, -0.027993902564048767, -0.0036489563062787056, -0.0058877719566226006, -0.00418515782803297, 0.01637852191925049, 0.007256130687892437, 0.018606891855597496, -0.004101593978703022, -0.012506728060543537, -0.003934466280043125, 0.015891065821051598, 0.007666986435651779, 0.014651535078883171, 0.011789471842348576, -0.01312649343162775, 0.021977301687002182, 0.011141851544380188, -0.017478778958320618, -0.018147291615605354, -0.0007468522526323795, 0.020292097702622414, -0.016489939764142036, 0.0014406065456569195, -0.009352191351354122, -0.00722131272777915, 0.01077277772128582, 0.020835261791944504, 0.009575028903782368, 0.015333972871303558, 0.012409237213432789, 0.019247548654675484, 0.005198370199650526, 0.007666986435651779, -0.020389588549733162, 0.014205860905349255, -0.0050939153879880905, -0.008690644055604935, -0.036461710929870605, -0.0006698167999275029, -0.030082998797297478, -0.012283891439437866, 0.017506634816527367, 0.0018488509813323617, 0.04896843805909157, -0.024303164333105087, 0.007409331388771534, 0.01837012730538845, -0.0052401521243155, 0.02575160376727581, -0.006730374880135059, -0.004108557943254709, 0.007318803574889898, 0.01795230805873871, 0.023007923737168312, 0.04777069017291069, -0.01554288249462843, -0.005205333698540926, 0.02161519229412079, 0.023300396278500557, -0.007029811851680279, 0.03453974053263664, -0.004432367626577616, 0.053369469940662384, -0.020709916949272156, 0.015180773101747036, -0.016726704314351082, -0.00012240803334861994, 0.04038921371102333, -0.005146142560988665, -0.00629862817004323, 0.025876950472593307, -0.023397888988256454, 0.02685186266899109, 0.006862684153020382, -0.033453408628702164, 0.024331018328666687, 0.01786874420940876, 0.010139085352420807, -0.00644834665581584, -0.015180773101747036, 0.0067512658424675465, 0.005052133463323116, 0.010529049672186375, 0.02103024534881115, 0.018189072608947754, 0.024818474426865578, 0.010410667397081852, -0.0032328779343515635, 0.04618297517299652, -0.01835620030760765, -0.01685205101966858, 0.011587525717914104, 0.0014249383239075541, -0.01388553250581026, 0.0026844898238778114, -0.017074886709451675, 0.008683680556714535, -0.022771159186959267, 0.007465040311217308, -0.0023345660883933306, -0.005254079587757587, 0.00842602550983429, 0.003875275142490864, -0.005052133463323116, 0.004226939752697945, -0.0030466001480817795, -0.044929515570402145, -0.012381382286548615, 0.029637325555086136, 0.02831423096358776, -0.004811887163668871, -0.011476106941699982, -0.015166845172643661, 0.014289424754679203, -0.007026330102235079, 0.023787852376699448, -0.01338414940983057, -0.012409237213432789, -0.014101405628025532, 0.013572167605161667, -0.008175333961844444, 0.014254606328904629, 0.04790996015071869, 0.007047221064567566, 0.005254079587757587, 0.003429601201787591, 0.0038578661624342203, 0.0236485805362463, -0.01633673906326294, -0.030723655596375465, 0.045960139483213425, 0.006688592955470085, -0.010097303427755833, -0.02952590584754944, 0.014804734848439693, 0.002677526092156768, -0.003105791052803397, 0.006253364030271769, -0.004811887163668871, -0.004279167391359806, -0.006291664205491543, -0.018787946552038193, -0.02059849724173546, -0.006242918781936169, 0.022785086184740067, 0.018495474010705948, -0.011155778542160988, -0.012847947888076305, 0.001242142403498292, 0.0262112058699131, 0.03632243722677231, 0.03930288180708885, -0.0034905332140624523, 0.02689364366233349, -0.009749120101332664, -0.005066060461103916, -0.01834227330982685, 0.00034687717561610043, 0.03192140534520149, -0.010459412820637226, 0.00017811729048844427, 0.0054664709605276585, 0.013314512558281422, -0.01523648202419281, 0.006608510855585337, 0.0071447123773396015, -0.00184188736602664, -0.014003914780914783, -0.032840605825185776, -0.0316707119345665, -0.0045437864027917385, -0.011615380644798279, 0.039219316095113754, 0.0003975813160650432, 0.015097209252417088, 0.040779177099466324, 0.0262251328676939, 0.01133683416992426, 0.0288852509111166, -0.01417800597846508, -0.001033232663758099, 0.027172191068530083, -0.005083469673991203, -0.015125063247978687, -0.03208853304386139, 0.04256187379360199, 0.009902320802211761, 0.009811793453991413, -0.03058438189327717, 0.005978299770504236, -0.0056788623332977295, 0.010410667397081852, 0.016991322860121727, -0.030890783295035362, 0.044901661574840546, -0.007061148528009653, -0.005807690322399139, 0.024943819269537926, -0.005417725536972284, -0.011594489216804504, 0.006274254992604256, 0.005988745018839836, -0.03261777013540268, -0.007597350049763918, 0.0008874310879036784, 0.005724126007407904, -0.00844691600650549, 0.00539335235953331, 0.0032381005585193634, -0.026127642020583153, -0.018091581761837006, 0.008265861310064793, 0.00215873378328979, -0.013453785330057144, -0.020250314846634865, -0.011086142621934414, -0.02161519229412079, -0.016643140465021133, -0.024539928883314133, 0.012827056460082531, -0.036071743816137314, -0.007033293601125479, -0.033926937729120255, 0.021308790892362595, -0.013147384859621525, 0.013732331804931164, 0.02728360891342163, 0.0024094253312796354, 0.014101405628025532, -0.0006293405313044786, -0.02466527372598648, -0.04565373808145523, 0.004839741624891758, -0.01838405430316925, -0.018021944910287857, -0.020835261791944504, -0.03058438189327717, 0.01029924862086773, -0.03465115651488304, 0.008746353909373283, 1.1737570275727194e-05, 0.003565392456948757, -0.012263000011444092, -0.008558334782719612, 0.003175427671521902, 0.011295052245259285, 0.013795005157589912, 0.022799013182520866, 0.01210980024188757, -0.017743399366736412, -0.012395310215651989, -0.015556810423731804, -0.008251933380961418, -0.022743305191397667, -0.004996424075216055, -0.02686578966677189, -0.008203187957406044, -0.007346658501774073, -0.007534677162766457, -0.032840605825185776, 0.027603937312960625, -0.028606703504920006, -0.005630116909742355, 0.002513880142942071, 0.01892722025513649, 0.017757326364517212, 0.0262390598654747, 0.027450736612081528, 0.010577795095741749, 0.00037951930426061153, 0.009519319050014019, -0.015069354325532913, 0.05565354973077774, 0.019804641604423523, -0.0014562747674062848, 0.0031232002656906843, 0.0030082999728620052, -0.0288852509111166, -0.02203301154077053, 0.02261795848608017, -0.008850808255374432, 0.029609469696879387, 0.023996762931346893, -0.013210057280957699, -0.010354958474636078, -0.011712871491909027, 0.012792238034307957, 0.009839647449553013, -0.013418967835605145, -0.021099882200360298, -0.02739502675831318, 0.010097303427755833, -0.007270058151334524, -0.0157517921179533, 0.002346752444282174, -0.0315035842359066, -0.01683812402188778, 0.007743586786091328, -1.980290107894689e-05, 0.016698850318789482, -0.026475824415683746, -0.005410761572420597, -0.013168275356292725, 0.0014614975079894066, -0.017631979659199715, -0.011093106120824814, 0.008105697110295296, 0.005055615212768316, 0.009338264353573322, 0.030918637290596962, 0.03587676212191582, 0.014150151051580906, 0.0035497243516147137, 0.017743399366736412, -0.0017017436912283301, -0.013857677578926086, 0.011169706471264362, -0.0019654922652989626, -0.013850714080035686, 0.012221218086779118, 0.02944234199821949, 0.004568159114569426, -0.008676717057824135, 0.014386915601789951, -0.005967854056507349, 0.004139894153922796, -0.026364406570792198, -0.015055427327752113, -0.006354337092489004, -0.023982835933566093, -0.012012308463454247, 0.006347373593598604, -0.001956787658855319, -0.01259725634008646, -0.025473058223724365, 0.0026131123304367065, 0.018216926604509354, 0.02265974134206772, 0.01127416081726551, -0.022367266938090324, 0.03103005699813366, -0.00161295710131526, 0.002508657518774271, -0.00276109017431736, 0.024331018328666687, 0.005706717260181904, -0.023759998381137848, -0.03479043021798134, 0.016559576615691185, -0.0036419928073883057, 0.012548509985208511, 0.02211657539010048, 0.004536822903901339, -0.02210264839231968, -0.010480304248631, 0.004373176954686642, -0.025097019970417023, 0.007548604626208544, -0.008955263532698154, -0.027186118066310883, -0.01778518036007881, -0.014059623703360558, 0.016991322860121727, 0.012304781936109066, 0.002788944635540247, 0.009575028903782368, -0.004233903717249632, 0.02363465167582035, -0.00446718605235219, -0.0131752397865057, 0.018760092556476593, -0.024943819269537926, 0.021239154040813446, 0.030667945742607117, 0.0316707119345665, 0.0018209964036941528, 0.0004896321333944798, -0.03788229450583458, -0.025069165974855423, 0.002210961189121008, 0.004341840278357267, 0.027186118066310883, 0.04155910760164261, -0.01674063131213188, 0.01153181679546833, 0.016476012766361237, 0.028077466413378716, -0.012506728060543537, -0.016921687871217728, 0.026044078171253204, 0.01881580241024494, 0.015027572400867939, -0.003243323415517807, 0.0003749494208022952, -0.02583516761660576, 0.0057032350450754166, -0.014052660204470158, -0.015333972871303558, 0.009749120101332664, -0.008196224458515644, -0.009254700504243374, 0.016615286469459534, -0.002184847369790077, 0.0037185929249972105, 0.0005714551080018282, -0.004373176954686642, 0.010619577020406723, -0.01389249600470066, 0.02105809934437275, 0.017520561814308167, -0.015292190946638584, 0.01204712688922882, -0.0035549469757825136, -0.003506201319396496, 0.008976154029369354, 0.025403421372175217, -0.004380140453577042, -0.009602882899343967, -0.0052401521243155, 0.031475730240345, -0.002143065445125103, -0.009964993223547935, 0.0077226958237588406, -0.015292190946638584, 0.015584664419293404, -0.003955357242375612, -0.0157657191157341, -0.007799296174198389, -0.015988556668162346, 0.004167748615145683, 0.013989987783133984, 0.006712965667247772, -0.05827188491821289, -0.00736754946410656, 0.004655204713344574, -0.007618241012096405, 0.007458076812326908, -0.019651440903544426, 0.018676528707146645, -0.04428885877132416, -0.03314700722694397, 0.0032398414332419634, 0.004407994914799929, 0.02999943494796753, 0.0033738918136805296, -0.022757232189178467, -0.0015572478296235204, 0.028230667114257812, 0.006131500005722046, 0.03350912034511566, -0.008363352157175541, -0.01675456017255783, -0.041726235300302505, 0.0092129185795784, -0.03509683161973953, -0.017450924962759018, 0.009157209657132626, -0.034344758838415146, -0.012520655989646912, 0.0018471101066097617, 0.0036419928073883057, 0.001011471264064312, -0.017715543508529663, -0.008293715305626392, 0.020278170704841614, 0.020835261791944504, -0.0022649294696748257, 0.004056330304592848, -0.020222460851073265, 0.011942672543227673, -0.010577795095741749, 0.02573767676949501, 0.007778405211865902, 0.008864735253155231, 0.0030274500604718924, -0.020709916949272156, 0.010744922794401646, -0.007576459087431431, -0.022882577031850815, 0.002252743113785982, -0.014010878279805183, -0.0031266820151358843, -0.0025034346617758274, 0.010563868097960949, -0.022840796038508415, -0.017590198665857315, -0.004139894153922796, 0.019345039501786232, -0.014707244001328945, -0.005480398423969746, -0.010515122674405575, 0.012743492610752583, 0.003819565987214446, 0.026420114561915398, -0.013788041658699512, -0.042311180382966995, -0.016434231773018837, -0.030194418504834175, -0.03459544852375984, -0.01552895549684763, -0.0007429351680912077, 0.023773925378918648, 0.009749120101332664, -0.01291758380830288, -0.03409406542778015, -0.019609658047556877, -0.030110854655504227, -0.004669132176786661, -0.016657067462801933, 0.0184258371591568, 0.03275704383850098, -0.02518058381974697, -0.02259010449051857, 0.023801781237125397, -0.001679111854173243, 0.023746071383357048, -0.038690079003572464, -0.004289612639695406, -0.02045922540128231, -0.014916153624653816, 0.02568196691572666, -0.0018575555877760053, -0.03635029122233391, -0.0010898123728111386, 0.011211488395929337, 0.0043557677417993546, -0.015891065821051598, 0.0006889668293297291, 0.0026287806686013937, -0.02204693853855133, -0.0012612923746928573, 0.0058320630341768265, -0.00432094931602478, 0.008760280907154083, -0.004216494504362345, -0.034846141934394836, 0.005915626883506775, 0.016044266521930695, -0.011169706471264362, 0.0092268455773592, -0.0017078369855880737, 0.001750489347614348, -0.004070257768034935, 0.0017226346535608172, -0.008043023757636547, -0.006625920068472624, 0.017590198665857315, -0.033369846642017365, -0.0009061458986252546, 0.014400843530893326, 0.004860632587224245, 0.023439669981598854, -0.018551182001829147, 0.014581898227334023, -0.007193457800894976, -0.00553958909586072, -0.012764384038746357, 0.011308979243040085, 0.007353622000664473, -0.012987220659852028, -0.006712965667247772, -0.024832401424646378, -0.0036802927497774363, -0.02729753591120243, -0.027102554216980934, -0.0032520280219614506, 0.014609753154218197, -0.022910432890057564, 0.003889202605932951, -0.007036775816231966, -0.007680913899093866, -0.0014623680617660284, -0.0037708203308284283, -0.014386915601789951, 0.017060959711670876, 0.009547173976898193, -0.0012734788469970226, -0.025668039917945862, 0.02311934158205986, 0.00816140603274107, -0.01835620030760765, -0.003941429778933525, 0.0028429131489247084, 0.007785368710756302, -0.0008473900379613042, 0.03041725419461727, 0.20623567700386047, 0.023481452837586403, 0.014832589775323868, 0.02777106501162052, 0.007179530803114176, -0.014212824404239655, 0.028133174404501915, -0.011622344143688679, -0.004035439342260361, 0.0063821920193731785, 0.0316150039434433, 0.005414243321865797, -0.04033350199460983, 0.003363446332514286, 0.0034400466829538345, 0.003631547326222062, -0.040779177099466324, -0.034456174820661545, -0.0031127547845244408, 0.020849188789725304, 0.02043136954307556, 0.003979729954153299, 0.009338264353573322, -0.00431746756657958, 0.037074510008096695, 0.021963374689221382, 0.01418496947735548, 0.011225415393710136, 0.009122391231358051, 0.02107202634215355, -0.019247548654675484, -0.015556810423731804, 0.0012377901002764702, 0.013983023352921009, -0.009644664824008942, -0.002715826267376542, 0.001220380887389183, -0.024470292031764984, -0.002896881429478526, 0.007270058151334524, -0.003802156774327159, -0.013279694132506847, -0.009463610127568245, -0.02208872139453888, 0.020319951698184013, 0.031169328838586807, -0.008293715305626392, -0.012694747187197208, -0.026991134509444237, 0.015877138823270798, -0.012186400592327118, 0.009797865524888039, 0.026670807972550392, 0.006636365316808224, 0.014129260554909706, 0.02108595333993435, -0.011510925367474556, -0.01213765423744917, 0.0012412718497216702, 0.02831423096358776, -0.010591723024845123, 0.030222272500395775, 0.0018384055001661181, 0.013154348358511925, -0.020737770944833755, -0.024303164333105087, -0.01233263686299324, -0.006378709804266691, 0.01105132419615984, -0.02419174462556839, 0.005905181169509888, -0.022785086184740067, 0.0009122390765696764, 0.0007342306198552251, -0.00631603691726923, -0.020807407796382904, 0.021698756143450737, 0.030862929299473763, 0.037492331117391586, 0.01682419516146183, -0.019177911803126335, -0.01338414940983057, -0.025863023474812508, -0.029665179550647736, -0.02052886225283146, -0.005153106525540352, 0.03568178042769432, -0.01210980024188757, -0.02414996363222599, -0.03356482833623886, -0.005919108632951975, 0.000646314409095794, -0.010800632648169994, -0.01185214426368475, -0.0027297537308186293, 0.007917677983641624, 0.0035793199203908443, 0.009526283480226994, -0.0016677959356456995, -0.012785274535417557, -0.005616189446300268, 0.06467844545841217, 0.01523648202419281, 0.03632243722677231, -0.011086142621934414, -0.01621139422059059, -0.005953927058726549, 0.020612426102161407, -0.007841077633202076, 0.0023798297625035048, 0.014595825225114822, -0.02831423096358776, -0.001585972961038351, -0.013210057280957699, -0.013572167605161667, 0.0144704794511199, -0.0037673385813832283, -0.004407994914799929, -0.003930984530597925, -0.012527619488537312, -0.001817514537833631, -0.0156960841268301, -0.0020856154151260853, -0.0012804424623027444, 0.008983117528259754, -0.02409425377845764, -0.02941448800265789, -0.018481547012925148, 0.0288852509111166, -0.014317279681563377, 0.03470686823129654, -0.01885758340358734, 0.021211300045251846, 0.007137748878449202, -0.022938286885619164, -0.0029351816046983004, 0.008029096759855747, 0.017186306416988373, 0.014540116302669048, -0.02207479253411293, -0.007277021650224924, 0.009630737826228142, -0.00617328193038702, 0.004272203892469406, 0.012228182516992092, -0.016058193519711494, -0.0004652593343053013, -0.004589050076901913, -0.034484028816223145, -0.013523422181606293, 0.005609225947409868, 0.009519319050014019, 0.0056440443731844425, -0.010703140869736671, 0.017228087410330772, -0.006796529516577721, -0.018202999606728554, -0.020877044647932053, -0.00971430167555809, 0.007290949113667011, -0.039609283208847046, -0.002207479439675808, 0.024372801184654236, 0.011176669970154762, -0.029135942459106445, 0.021684829145669937, -0.1791609674692154, 0.015570737421512604, 0.012471909634768963, -0.017506634816527367, 0.012019271962344646, 0.00447066780179739, 0.010556904599070549, -0.0013248358154669404, -0.032812751829624176, -0.025473058223724365, 0.005727608222514391, 0.0022597068455070257, -0.04459526017308235, -0.022255849093198776, -0.007715732324868441, 0.013523422181606293, -0.0024494663812220097, 0.025528768077492714, 0.04038921371102333, 0.025417348369956017, 0.013996951282024384, -0.007263094652444124, -0.008871699683368206, 0.008669753558933735, 0.003379114670678973, 0.017423070967197418, -0.0051217698492109776, 0.005219261161983013, -0.014303351752460003, -0.016643140465021133, -0.03331413492560387, -0.018300490453839302, 0.029024522751569748, 0.01552895549684763, 0.00431398581713438, 0.0016495162853971124, -0.003843938698992133, -0.009672519750893116, -0.005797244608402252, 0.01994391344487667, -0.0015929365763440728, 0.028578849509358406, 0.013439858332276344, 0.005877326708287001, -0.0017574529629200697, -0.020097114145755768, 0.022715449333190918, -0.01674063131213188, -0.01994391344487667, -0.028690267354249954, -0.007113375701010227, -0.032311368733644485, -0.004961605649441481, -0.014136224053800106, 0.004279167391359806, 0.008056951686739922, 0.023035777732729912, 0.00031205889536067843, 0.027186118066310883, -0.003983211703598499, 0.0010410667164251208, -0.006354337092489004, 0.01184518076479435, 0.01837012730538845, 0.005563962273299694, -0.010187830775976181, -0.002324120607227087, 0.009895357303321362, -0.021740537136793137, 0.0010924236848950386, -0.021893737837672234, -0.025389494374394417, 0.03303559124469757, 0.020877044647932053, -0.0019654922652989626, 0.014428697526454926, -0.015932846814393997, 0.010027666576206684, 0.010508159175515175, 0.03297987952828407, 0.006702519953250885, 0.01126023381948471, -0.0003401311405468732, 0.010424594394862652, -0.008321570232510567, -0.004407994914799929, -0.004282649140805006, 0.006692074704915285, 0.012806165963411331, -0.03412191942334175, 0.016615286469459534, -0.026545461267232895, -0.022339412942528725, -0.019637513905763626, 0.00510436063632369, 0.010946868918836117, 0.01029924862086773, -0.00866278912872076, 0.005034724250435829, -0.011963563039898872, -0.010668322443962097, -0.005626635160297155, -0.016935614868998528, 0.023035777732729912, 0.014832589775323868, 0.014247642830014229, -0.014567971229553223, -0.0062220278196036816, 0.044344570487737656, -0.02736717276275158, -0.033843375742435455, 0.0060723088681697845, 0.003896166104823351, 0.019818568602204323, -0.00843995250761509, 0.03621101751923561, 0.011928744614124298, 0.004979014862328768, 0.012687783688306808, -0.0026531533803790808, 0.044957369565963745, -0.023871416226029396, -0.02520843967795372, 0.010633504949510098, 0.012228182516992092, 0.005421207286417484, -0.10189223289489746, -0.021698756143450737, -0.02103024534881115, 0.0261972788721323, -0.0012856652028858662, -0.0069671389646828175, 0.006075791083276272, 0.029609469696879387, -0.005546553060412407, 0.012207291088998318, 0.0015598592581227422, -0.014122297056019306, 0.003243323415517807, -0.009010972455143929, 0.010912050493061543, -0.0261972788721323, -0.0019237103406339884, 0.00029334405553527176, 0.008572261780500412, 0.048634182661771774, 0.011859108693897724, -0.023356106132268906, 0.02153162844479084, -0.0316985659301281, 0.008300679735839367, 0.01637852191925049, -0.018746165558695793, 0.007924641482532024, 0.0010689214104786515, 0.010334067046642303, -0.005640562158077955, -0.02101631835103035, 0.028523139655590057, -0.020306024700403214, -0.03403835743665695, 0.006124536506831646, -0.031308602541685104, -0.008530479855835438, 0.02474883757531643, -0.0046134227886796, -0.0027750174049288034, 0.017005251720547676, -0.0031458321027457714, -0.00814747903496027, -0.005177479237318039, 0.005633598659187555, -0.014651535078883171, 0.04693504795432091, 0.0004208660393487662, -0.024400655180215836, -0.027645718306303024, 0.0004961605882272124, -0.03584890812635422, -0.03587676212191582, 0.023871416226029396, -0.01185214426368475, 0.030751509591937065, 0.0012029717909172177, -0.016058193519711494, -0.013342367485165596, -0.01837012730538845, -0.021824100986123085, 0.009268627502024174, 0.00616980018094182, 0.02207479253411293, -0.00969341117888689, -0.0011159260757267475, -0.011197560466825962, -0.011030432768166065, -0.008049988187849522, -0.027018990367650986, 0.03256206214427948, -0.012924548238515854, 0.008077842183411121, -0.03375981003046036, -0.01632281206548214, -0.003798675024881959, -0.012562437914311886, 0.019860349595546722, -0.003934466280043125, -0.010320140048861504, -0.016099976375699043, 0.018565110862255096, -0.03378766402602196, 0.011615380644798279, 0.0315035842359066, 0.02779891900718212, -0.008990081027150154, 0.007931605912744999, -0.05111324414610863, -0.020751697942614555, 0.013251840136945248, 0.0033530008513480425, -0.04983193054795265, -0.009602882899343967, 0.02314719744026661, 0.0007002828060649335, -0.009380046278238297, 0.014240679331123829, -0.008356388658285141, -0.018119435757398605, -0.021726610139012337, -0.04562588036060333, 0.016044266521930695, -0.024595636874437332, -0.009171136654913425, -0.017172379419207573, 0.005257561337202787, -0.007263094652444124, -0.006618956103920937, -0.015946775674819946, 0.010730995796620846, -0.013481640256941319, 0.013495567254722118, -0.009024899452924728, -0.003447010414674878, -0.02154555544257164, 0.0023659025318920612, 0.007771441247314215, 0.001035843975841999, 0.00998588465154171, 0.0029438859783113003, -0.018077654764056206, -0.007499858736991882, 0.01127416081726551, 0.018161218613386154, -0.00322591420263052, -0.0036628837697207928, -0.005055615212768316, 0.010640468448400497, -0.0010750145884230733, -0.008509589359164238, 0.03504112362861633, -0.02263188548386097, 0.004192121792584658, 0.011197560466825962, -0.008850808255374432, -0.0024477255064994097, 0.008822953328490257, 0.027603937312960625, 0.04052848368883133, 0.03852295130491257, -0.013739295303821564, -0.04058419540524483, 0.0006950600072741508, -0.028745977208018303, -0.016462085768580437, -0.022868650034070015, -0.03375981003046036, -0.008098733611404896, 0.00017322097846772522, 0.023425742983818054, 0.019540023058652878, 0.009547173976898193, -0.00034448341466486454, -0.012026236392557621, 0.001472813542932272, -0.017102742567658424, -0.012395310215651989, 0.011928744614124298, 0.018579037860035896, -0.010800632648169994, 0.026364406570792198, -0.010710104368627071, -0.006615474354475737, -0.03459544852375984, 0.005337643437087536, 0.00033882545540109277, -0.01001373864710331, 0.02316112443804741, 0.009310409426689148, -0.012987220659852028, -0.015932846814393997, -0.011462179943919182, -0.010097303427755833, 0.0288852509111166, 0.006354337092489004, 0.019191838800907135, 0.010612613521516323, -0.00216395640745759, -0.00354798324406147, 0.011963563039898872, 0.035486798733472824, -0.0011838217033073306, -0.014003914780914783, 0.020347805693745613, 0.013753223232924938, -0.01675456017255783, -0.00864886213093996, -0.004850187338888645, -0.015069354325532913, 0.026030151173472404, -0.004780550487339497, 0.012952402234077454, -0.003525351407006383, -0.0023171568755060434, -0.0004983367398381233, 0.02426138147711754, -0.004303540103137493, -0.008753317408263683, 0.023411815986037254, 0.009463610127568245, 0.011288088746368885, -0.0029090677853673697, 0.012388345785439014, -0.030612237751483917, -0.03765945881605148, 0.013356294482946396, -0.050166185945272446, -0.017645906656980515, 0.008314606733620167, 0.02530593052506447, -0.00940790120512247, -0.00843995250761509, 0.03200496733188629, 0.007792332209646702, -0.01834227330982685, 0.002278856933116913, -0.01892722025513649, -0.03041725419461727, -0.02155948244035244, 0.013843750581145287, -0.0015041499864310026, 0.006608510855585337, 0.028147103264927864, -0.003924021031707525, 0.035960324108600616, 0.008384243585169315, 0.006194172892719507, -0.029024522751569748, 0.005299343261867762, -0.015097209252417088, 0.007277021650224924, -0.0006732986075803638, 0.0030030771158635616, -0.005362016148865223, -0.0025626257993280888, -0.015598592348396778, -0.012980257160961628, 0.003476605750620365, -0.00023067113943398, 0.09849397093057632, 0.021684829145669937, -0.010187830775976181, -0.001011471264064312, 0.011030432768166065, -0.0032032823655754328, 0.009470573626458645, -0.0005710198893211782, 0.01683812402188778, -0.002069947076961398, 0.026420114561915398, 0.012945438735187054, 0.001538968295790255, -0.03515254333615303, -0.03297987952828407, -0.015306118875741959, 0.01029228512197733, 0.03726949170231819, -0.01309863943606615, -0.002116951858624816, 0.004839741624891758, -0.002808094723150134, 0.012235146015882492, 0.010549941100180149, -0.02043136954307556, -0.0025713304057717323, 0.04100201278924942, -0.0010428077075630426, -0.019024711102247238, -0.03573748841881752, 0.021406281739473343, 0.015431464649736881, -0.01949824020266533, -0.01895507425069809, -0.019735004752874374, -0.0002276245504617691, -0.006789566017687321, -0.010417630895972252, 0.016002483665943146, -0.0038613479118794203, 0.020821334794163704, 0.0029177723918110132, -0.0210023894906044, -0.02214442938566208, -0.023495379835367203, -0.0034243783447891474, 0.0010219167452305555, -0.01835620030760765, 0.006121054757386446]}, "text_id_to_ref_doc_id": {"b5b757a6-7337-45f1-8e2d-3a8efaebb5c0": "a15176b0-bf1d-4429-ad75-dccb63d606fc", "342bc982-3d67-436b-8766-3176f6146ea2": "a15176b0-bf1d-4429-ad75-dccb63d606fc", "335e37ed-9cce-4be3-bb4a-9a3c24f436b0": "a15176b0-bf1d-4429-ad75-dccb63d606fc", "105ec08a-95d6-4475-ab14-0c1d3089edf2": "a15176b0-bf1d-4429-ad75-dccb63d606fc"}} \ No newline at end of file diff --git a/index_v2/RetroMay/docstore.json b/index_v2/RetroMay/docstore.json new file mode 100644 index 0000000000000000000000000000000000000000..b01b446e9cb99a3b55c0ace4534117b7340b2736 --- /dev/null +++ b/index_v2/RetroMay/docstore.json @@ -0,0 +1 @@ +{"docstore/metadata": {"7397ea75-ac43-4ee5-a525-4ec8ad5e6c7a": {"doc_hash": "302e8e8204ffdf8a61426965339776ad7ee7aa152dc2a106164aa2222b64b5c4"}, "7a258be2-9b50-4c78-9f8b-755db5434c5e": {"doc_hash": "4cd2d48e9ce402e9e2e820274b33cc01a67428692d42d8bc528a80ed22da7758", "ref_doc_id": "7397ea75-ac43-4ee5-a525-4ec8ad5e6c7a"}, "b2a1caed-1a08-428b-994b-7ecead6aa3fd": {"doc_hash": "3747c661ff14f3da6bfdd9b069672cd8d829dbb7dc5c4438775489106f5c698e", "ref_doc_id": "7397ea75-ac43-4ee5-a525-4ec8ad5e6c7a"}, "5ff101f1-86ec-4e47-ba3a-357c5941110b": {"doc_hash": "2d43b6417c91b86f44c248e26cfe2ef5dbf7a980efdeb263d3ca28f92d060379", "ref_doc_id": "7397ea75-ac43-4ee5-a525-4ec8ad5e6c7a"}, "93a1d2f6-0110-4308-8aa6-18f9893d432d": {"doc_hash": "dbedf7b671a19461f3aae038d9c28485f64192c1ea5b930b7d2ac171e3d69752", "ref_doc_id": "7397ea75-ac43-4ee5-a525-4ec8ad5e6c7a"}}, "docstore/data": {"7a258be2-9b50-4c78-9f8b-755db5434c5e": {"__data__": {"text": "Primary User-10270, To improve our execution what should we add?, * Platform: Identify critical tasks that could impact multiple teams and plan activity to complete early in the release if possible.\n* Cleanup of stale records\nPrimary User-10270, What went well in this release?, * Product attributes and filtering\n* Lots of infra enhancements: CDKv2, Gitlab runner operationalisation, VPN\n* Admin gateway and retool integration\n* 800+ points in lats sprint of 0.9.11\nPrimary User-10270, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User-10270, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User-10270, What didn't go well in this release?, * Deployment issues due to cdkv2: this was kind of expected but it majorly threw us off when synth works fine but deployment fails. \n* DB changelog lock issues occurring twice within a week in integration and impacting stage deployment of pulse-manager\n* DB migration to aurora is not complete yet: partly due to prioritization (snowflake over DB migration) and also due to heavy usage of integration env during last 2 sprints of a release. this task could have been planned better\nPrimary User-10271, What went well in this release?, -Automating few release features in development sprint. \n-Fixing ST tear down and few other issues to run the test cases in parallel .\nPrimary User-10271, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User-10271, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User-10273, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User-10273, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User-10276, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User-10276, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Good\nPrimary User-10278, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User-10278, What went well in this release?, - Increased system test coverage\n- Early test planning and system tests for release features\n- Effective collaboration and communication between the QA team, development team, and other stakeholders throughout the release\n- Low Defect density\nPrimary User-10278, What didn't go well in this release?, Systest failures on int is not attended\nP2 issues triaging of previous releases\nPrimary User-10278, To improve our execution what should we add?, Progress of release should be made available for all. Items included or excluded dynamically should be captured/documented\nPrimary User-10278, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Very Good\nPrimary User-10278, As a member of the product management team, please explain your choice in the previous response., nan\nPrimary User-10278, Can you please suggest any improvements to the structure/agenda of the meetings you typically attend?, Weekly sprint retro->We can have new set of questions on lessons learned, collaboration and new practices followed that proved beneficial to team's productivity\nPrimary User-10284, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User-10284, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User-10284, To improve our execution what should we add?, As discussed on slack, we can try to focus more on reviewing and testing the parts which seem to be a major change before stage/prod deployments.\nPrimary User-10284, What didn't go well in this release?, Database and deployment issues (but was a good learning experience).\nPrimary User-10284, What went well in this release?, Faced some issues with deployments and DB related queries, but on the positive side were a good learning experience. All in all got to know a few new database related", "doc_id": "7a258be2-9b50-4c78-9f8b-755db5434c5e", "embedding": null, "doc_hash": "4cd2d48e9ce402e9e2e820274b33cc01a67428692d42d8bc528a80ed22da7758", "extra_info": null, "node_info": {"start": 0, "end": 4170, "_node_type": "1"}, "relationships": {"1": "7397ea75-ac43-4ee5-a525-4ec8ad5e6c7a", "3": "b2a1caed-1a08-428b-994b-7ecead6aa3fd"}}, "__type__": "1"}, "b2a1caed-1a08-428b-994b-7ecead6aa3fd": {"__data__": {"text": "positive side were a good learning experience. All in all got to know a few new database related things.\nPrimary User-10284, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., The designs were ready beforehand but more importantly were very detailed. Also, thanks to @Anandhi and @Meaghan for replying actively on Figma to any doubts or clarifications (mainly the Pulse List Updates).\nPrimary User-10285, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User-10285, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User-10285, What went well in this release?, Clear requirements, Good feedback from design review\nPrimary User-10286, To improve our execution what should we add?, - Verify DB migration with stage and prod DB data dumps so we do not see surprises during deployment \n- API validations so system tests cannot introduce bad data\n- Review and update alerts proactively , may be a person per release owns this\nPrimary User-10286, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User-10286, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User-10286, What went well in this release?, - Aligned better to the jobs to be done for the quarter in the current release\n- Thanks to Ritu, Guru, Pradeep, Sanjeev and Shivam for helping out with some of the collab areas t ospped up delivery in 0.9.12\nPrimary User-10286, What didn't go well in this release?, - The deployment issues to stage for collab services\n- One of the customer issues not caught by our alerts\nPrimary User-10288, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User-10288, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User-10290, What went well in this release?, nan\nPrimary User-10290, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User-10290, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., nan\nPrimary User-10290, Can you please suggest any improvements to the structure/agenda of the meetings you typically attend?, nan\nPrimary User-10290, As a member of the product management team, please explain your choice in the previous response., nan\nPrimary User-10290, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User-10290, To improve our execution what should we DROP?, nan\nPrimary User-10290, To improve our execution what should we add?, nan\nPrimary User-10290, What didn't go well in this release?, nan\nPrimary User-10291, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User-10291, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User-10291, What went well in this release?, 1. Venkat has joined the UI team and has started contributing to the release. he has helped fixing the issues identified dev testing on teams iframe redesign.\n2. We have started to use LD flag for most of the UI features wherever we can.\nPrimary User-10292, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Very Good\nPrimary User-10292, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User-10292, What went well in this release?, Releasing lambdas and creating a release process for them went well\nPrimary User-10293, Were the requirements clear at the time you picked up your tasks?, nan\nPrimary User-10293, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User-10293, What went well in this release?, Some of the teams were not loaded fully during the early part of the release but as the sprints progressed the teams were loaded better.\nPrimary", "doc_id": "b2a1caed-1a08-428b-994b-7ecead6aa3fd", "embedding": null, "doc_hash": "3747c661ff14f3da6bfdd9b069672cd8d829dbb7dc5c4438775489106f5c698e", "extra_info": null, "node_info": {"start": 4092, "end": 8232, "_node_type": "1"}, "relationships": {"1": "7397ea75-ac43-4ee5-a525-4ec8ad5e6c7a", "2": "7a258be2-9b50-4c78-9f8b-755db5434c5e", "3": "5ff101f1-86ec-4e47-ba3a-357c5941110b"}}, "__type__": "1"}, "5ff101f1-86ec-4e47-ba3a-357c5941110b": {"__data__": {"text": "of the release but as the sprints progressed the teams were loaded better.\nPrimary User-10294, Can you please suggest any improvements to the structure/agenda of the meetings you typically attend?, nan\nPrimary User-10294, What didn't go well in this release?, nan\nPrimary User-10294, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User-10294, As a member of the product management team, please explain your choice in the previous response., nan\nPrimary User-10294, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User-10294, To improve our execution what should we add?, nan\nPrimary User-10294, To improve our execution what should we DROP?, nan\nPrimary User-10299, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User-10299, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User-10300, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User-10300, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., Figma spec for new pulse list was crystal clear. Thanks to meaghan. \nPrimary User-10300, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User-10301, What didn't go well in this release?, Too many parallel changes related to pulsing by multiple developers in similar classes, causing a lot of time to be spent in resolving merge conflicts.\nPrimary User-10301, What went well in this release?, Pulses UX changed, reminders added. \nBackend re-design of pulse scheduling done along with the ongoing changes for user timezone based delivery .\nPrimary User-10301, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User-10301, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Good\nPrimary User-10302, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User-10302, Can you please suggest any improvements to the structure/agenda of the meetings you typically attend?, nan\nPrimary User-10302, As a member of the product management team, please explain your choice in the previous response., nan\nPrimary User-10302, To improve our execution what should we DROP?, Nothing much\nPrimary User-10302, To improve our execution what should we add?, 1. Presence of service owner during the stage or production deployment process, especially in cases where significant changes in service has occurred.\n2. We can add happiness score indicator in retro(Overall happiness - includes everything ).\nPrimary User-10302, What didn't go well in this release?, Context switch between services ate little time .\nPrimary User-10302, What went well in this release?, Got chance to work on collab services .\nPrimary User-10302, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User-10303, What didn't go well in this release?, There is some un-planned work like Imply Polaris, even though it is a small size effort, in a small team it has its impact.\nOur evaluation on vector databases also expanded a little bit due to the new features in OpenSearch, Postgres etc.\nPrimary User-10303, To improve our execution what should we add?, nan\nPrimary User-10303, Can you please suggest any improvements to the structure/agenda of the meetings you typically attend?, For some of the meetings like SOS meetings, we need to make sure we have representation from all teams including PM teams.\nPrimary User-10303, You rated the ${DimensionName} of ${ProductName} poorly, can you please elaborate?, nan\nPrimary User-10303, As a member of the product management team, please explain your choice in the previous response., nan\nPrimary User-10303, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User-10303, To improve our execution what should we DROP?, nan\nPrimary", "doc_id": "5ff101f1-86ec-4e47-ba3a-357c5941110b", "embedding": null, "doc_hash": "2d43b6417c91b86f44c248e26cfe2ef5dbf7a980efdeb263d3ca28f92d060379", "extra_info": null, "node_info": {"start": 8242, "end": 12416, "_node_type": "1"}, "relationships": {"1": "7397ea75-ac43-4ee5-a525-4ec8ad5e6c7a", "2": "b2a1caed-1a08-428b-994b-7ecead6aa3fd", "3": "93a1d2f6-0110-4308-8aa6-18f9893d432d"}}, "__type__": "1"}, "93a1d2f6-0110-4308-8aa6-18f9893d432d": {"__data__": {"text": "User-10303, To improve our execution what should we DROP?, nan\nPrimary User-10303, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User-10303, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., We have very clear goals for the quarter but we are running behind on Q2 plans a little bit because most of the specs are getting ready now to start execution.\nPrimary User-10303, What went well in this release?, In data team most of the cycles we spent on research spikes for the NLP based chat interface. We have overall design to use NLP in various use cases like Chat interface, Pulse question generation and Reports.\nPrimary User-10983, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User-10983, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Good\nPrimary User-12741, To improve our execution what should we add?, We should have execution by squad in the same view as the release plans, so when there is a disconnect is it highlighted and we are able to resolve it autonymously.\nPrimary User-12741, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Moderate\nPrimary User-12741, As a member of the product management team, please explain your choice in the previous response., Some of the Q2 items (smart pulse, onboarding, pulse list update, gamification - in 0.9.12) took more effort than expected and had longer lead times. These are all going to be fairly low impact in the near term. I had expected them to be S/M sized projects that we could crank through in a sprint or two. I would like us to look at doing fewer things but fitting those into releases rather than doing more things. That will also help where the Product team is constrained in some resources (UX, product).\nPrimary User-12741, Can you please suggest any improvements to the structure/agenda of the meetings you typically attend?, We need to bring a view of project dependencies into the release plan. The goal being to optimize for fewer projects that have shorter lead time by being able to resolve dependencies within the same release due to excess capacity. It would also be helpful to have eng drive some product changes so that we are innovating and taking bets so having a way to surface some % of capacity going to true eng-driven product ideas is where we could put excess capacity.\nPrimary User-12741, Were the requirements clear at the time you picked up your tasks?, nan\nPrimary User-12795, Were the requirements clear at the time you picked up your tasks?, 50-50\nPrimary User-12795, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Moderate\nPrimary User-18439, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Good\nPrimary User-18439, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User-18440, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User-18440, Were the requirements clear at the time you picked up your tasks?, nan", "doc_id": "93a1d2f6-0110-4308-8aa6-18f9893d432d", "embedding": null, "doc_hash": "dbedf7b671a19461f3aae038d9c28485f64192c1ea5b930b7d2ac171e3d69752", "extra_info": null, "node_info": {"start": 12416, "end": 15703, "_node_type": "1"}, "relationships": {"1": "7397ea75-ac43-4ee5-a525-4ec8ad5e6c7a", "2": "5ff101f1-86ec-4e47-ba3a-357c5941110b"}}, "__type__": "1"}}, "docstore/ref_doc_info": {"7397ea75-ac43-4ee5-a525-4ec8ad5e6c7a": {"doc_ids": ["7a258be2-9b50-4c78-9f8b-755db5434c5e", "b2a1caed-1a08-428b-994b-7ecead6aa3fd", "5ff101f1-86ec-4e47-ba3a-357c5941110b", "93a1d2f6-0110-4308-8aa6-18f9893d432d"], "extra_info": {}}}} \ No newline at end of file diff --git a/index_v2/RetroMay/index_store.json b/index_v2/RetroMay/index_store.json new file mode 100644 index 0000000000000000000000000000000000000000..1f17079f858801680edbe22d2afdb18086be8187 --- /dev/null +++ b/index_v2/RetroMay/index_store.json @@ -0,0 +1 @@ +{"index_store/data": {"4a465afe-bcbb-4779-9ab1-f593e3e2d5d6": {"__type__": "vector_store", "__data__": "{\"index_id\": \"4a465afe-bcbb-4779-9ab1-f593e3e2d5d6\", \"summary\": null, \"nodes_dict\": {\"7a258be2-9b50-4c78-9f8b-755db5434c5e\": \"7a258be2-9b50-4c78-9f8b-755db5434c5e\", \"b2a1caed-1a08-428b-994b-7ecead6aa3fd\": \"b2a1caed-1a08-428b-994b-7ecead6aa3fd\", \"5ff101f1-86ec-4e47-ba3a-357c5941110b\": \"5ff101f1-86ec-4e47-ba3a-357c5941110b\", \"93a1d2f6-0110-4308-8aa6-18f9893d432d\": \"93a1d2f6-0110-4308-8aa6-18f9893d432d\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} \ No newline at end of file diff --git a/index_v2/RetroMay/vector_store.json b/index_v2/RetroMay/vector_store.json new file mode 100644 index 0000000000000000000000000000000000000000..2d43864cec8402812d71a1c561d55f99646ca987 --- /dev/null +++ b/index_v2/RetroMay/vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {"7a258be2-9b50-4c78-9f8b-755db5434c5e": [0.003039741422981024, -0.0019983972888439894, 0.010999965481460094, -0.013753469102084637, -0.032227229326963425, 0.002312732394784689, -0.019639786332845688, 0.007515940815210342, -0.06304961442947388, -0.035065025091171265, 0.017953967675566673, 0.009869062341749668, -0.007923346944153309, -0.007593207526952028, -0.0028922325000166893, 0.0006150603294372559, 0.022646162658929825, -0.019457155838608742, -0.012025505304336548, -0.020777713507413864, -0.007403552997857332, -0.010171105153858662, -0.008611722849309444, 0.027296211570501328, -0.0107470927760005, 0.009918232448399067, 0.011519759893417358, -0.022744501009583473, 0.009637262672185898, -0.0035665598697960377, 0.009145565330982208, 0.011892044916749, -0.012432911433279514, 0.014596378430724144, -0.013163433410227299, -0.008253486827015877, 0.0032680295407772064, 0.005489446688443422, 0.023545265197753906, 0.00807788036763668, 0.0008389581344090402, 0.036441776901483536, 0.01621195487678051, -0.023123810067772865, 0.007958468049764633, 0.02327834442257881, -0.0167036522179842, 0.003631534054875374, 0.003937088884413242, 0.009756674990057945, -0.0025814096443355083, 0.0013038752367720008, -0.00978477206081152, 0.020328162238001823, -0.004042452201247215, 0.0006128652603365481, -0.0014013366308063269, 0.031215740367770195, 0.014750911854207516, -0.009349268861114979, -0.019850512966513634, 0.004014355130493641, 0.005521055776625872, -0.0020756640005856752, -0.007048828527331352, 0.0026639443822205067, -0.008288607932627201, -0.004302349407225847, 0.00226883077993989, -0.022646162658929825, 0.011969311162829399, 0.026340914890170097, 0.01289651170372963, 0.006715177092701197, 0.030176151543855667, -0.006493913475424051, -0.005032870918512344, -0.0167036522179842, 0.004323421977460384, 0.013591911643743515, 0.012727930210530758, -0.0049556042067706585, -0.01817874237895012, 0.015650015324354172, -0.0038844067603349686, 0.027956491336226463, 0.019148088991642, -0.006367477122694254, -0.00011348543921485543, -0.00752998935058713, -0.00950380228459835, 0.00835885014384985, 0.03705991059541702, 0.01426623947918415, -0.004348007030785084, 0.020426500588655472, -0.004674634430557489, 0.0062445527873933315, -0.016900330781936646, -0.030709994956851006, -0.01045207493007183, 0.0007590573513880372, -0.031131448224186897, -0.006226992234587669, -0.006666007451713085, 0.0017042572144418955, -0.016605312004685402, -0.005577249452471733, 0.009862038306891918, -0.00974262598901987, -0.016956524923443794, 0.018951410427689552, -0.02715572714805603, -0.019274525344371796, -0.00018724000256042928, -0.014160875231027603, 0.001039588125422597, -0.010655777528882027, -0.008492310531437397, -0.026973096653819084, 0.037874720990657806, -0.011021038517355919, 0.01168834138661623, -0.012650663033127785, 0.009215807542204857, 0.004758925177156925, 0.00280794152058661, -0.005724758841097355, 0.012032529339194298, -0.00012687539856415242, 0.0119060929864645, 0.017855627462267876, 0.022772599011659622, -0.008646843954920769, -0.012257305905222893, 0.013577863574028015, -0.00785310473293066, 0.009328195825219154, -0.014807105995714664, -0.030288539826869965, 0.014891397207975388, 0.037930916994810104, 0.01757465861737728, -0.0059600709937512875, -0.00784608069807291, 0.025104647502303123, 0.03231152147054672, -0.01168834138661623, 0.033238720148801804, -0.0069856103509664536, 0.0038422613870352507, -0.002941402141004801, 0.0006888149073347449, 0.012784123420715332, 0.0035946567077189684, 0.0018227912951260805, 0.0014531404012814164, 0.0023654140532016754, -0.023952672258019447, -0.013303917832672596, 0.01052934117615223, 0.0028026732616126537, -0.00403894018381834, 0.0003404563176445663, 0.027886247262358665, 0.03902669996023178, 0.01476496085524559, -0.015565724112093449, -0.0010703192092478275, -0.0006888149073347449, 0.005468373652547598, 0.002783356700092554, -0.021086780354380608, 0.028349848464131355, 0.011196644976735115, 0.001871960936114192, -0.004779997747391462, -0.02053888887166977, -0.014238142408430576, -0.02950182370841503, 0.010894602164626122, -0.0017314761644229293, 0.01757465861737728, 0.03149671107530594, -0.043634600937366486, 0.0025656051002442837, 0.02806887775659561, -0.0006062800530344248, 0.014455894008278847, 0.0027043339796364307, 0.018010161817073822, -0.004783510230481625, -0.030288539826869965, -0.011807753704488277, -0.612289309501648, -0.003684215946123004, 0.019443107768893242, -0.03189006820321083, 0.01261554192751646, 0.005668564699590206, 0.023573363199830055, 0.029333243146538734, -0.016844136640429497, 0.015200464054942131, -0.003420806722715497, 0.02715572714805603, 0.011590002104640007, -0.01812254823744297, -0.03495263680815697, -0.018431615084409714, 0.0030221808701753616, -0.004822143353521824, -0.001391678350046277, -0.012341596186161041, -0.030653800815343857, 0.0072419955395162106, 0.014610427431762218, 0.006026801187545061, -0.0001401556219207123, -0.007119071204215288, 0.035008832812309265, -0.01144249364733696, -0.0014206533087417483, -0.012348620221018791, -0.023067615926265717, 0.041695911437273026, 0.0038527976721525192, 0.0017867920687422156, 0.0477086640894413, -0.007515940815210342, -0.03705991059541702, 0.004291812889277935, 0.016998670995235443, 0.03871763125061989, -0.037959013134241104, -0.004467418882995844, 0.01312128733843565, 0.01455423329025507, 0.008400995284318924, 0.024402223527431488, 0.02809697575867176, 0.006490401457995176, -0.005998704116791487, -0.008597674779593945, 0.003831725101917982, -0.024556756019592285, 0.006321819499135017, 0.011414396576583385, -0.013268796727061272, -0.028757253661751747, 0.01663341000676155, 0.0026762369088828564, 0.007810959126800299, 0.00036987033672630787, -0.015354997478425503, 0.004962628241628408, -0.009005080908536911, -0.03048521839082241, -0.0525694414973259, 0.003610461251810193, 0.010374807752668858, -0.018445665016770363, -0.0013688495382666588, -0.005173355806618929, 0.016914378851652145, -0.01528475433588028, 0.00979882013052702, -0.03000756911933422, 0.023123810067772865, 0.00785310473293066, 0.01868448778986931, -0.02329239249229431, 0.0011326592648401856, 0.011716438457369804, -0.00024343395489268005, -0.011547856964170933, 0.008049783296883106, 0.011203669011592865, 0.002425120212137699, -0.002830770332366228, -0.03897050395607948, -0.019653834402561188, -0.005563200917094946, 0.01116152387112379, 0.005868755746632814, 0.0019316670950502157, -0.003972209990024567, -0.008548504672944546, 0.011800729669630527, 0.051754627376794815, 0.0005922315758652985, 0.0020300063770264387, 0.003412026446312666, -0.043241243809461594, -0.017968015745282173, -0.0066027892753481865, -0.00042716183816082776, 0.0008639820152893662, 0.0619257353246212, 0.0335196927189827, -0.020707471296191216, 0.005257646553218365, 0.033547788858413696, -0.021171070635318756, 0.012264329940080643, 0.009468680247664452, -0.018389470875263214, -0.0045060524716973305, 0.021789204329252243, -0.028476284816861153, 0.006079482845962048, -0.010480172000825405, 0.009117468260228634, -0.02386838011443615, 0.0016779162688180804, 0.004390152636915445, 0.014624475501477718, -0.028406042605638504, 0.02146608941257, 0.03138432279229164, 0.005830122623592615, 0.02385433204472065, 0.02913656271994114, -0.008885668590664864, 0.01767299696803093, -0.020833907648921013, 0.012510178610682487, -0.003666655393317342, 0.023165956139564514, 0.00884352345019579, 0.014427796937525272, 0.0035279265139251947, 0.00037513853749260306, -0.03287346288561821, -0.01851590722799301, -0.01614171266555786, 0.007972517050802708, -0.023095713928341866, -0.01332499086856842, -0.0334073044359684, -0.03416592255234718, -0.013978245668113232, 0.01996290124952793, -0.007965492084622383, -0.010908650234341621, -0.010775189846754074, -0.0076072560623288155, 0.04515184089541435, 0.0011809510178864002, 0.006258601322770119, 0.02010338567197323, -0.06063327193260193, -0.006325331516563892, -0.01622600294649601, -0.015987178310751915, 0.03773423656821251, -0.0262566227465868, -0.0015646503306925297, -0.0050504314713180065, 0.005352473817765713, -0.03290155902504921, 0.01852995529770851, -0.0017929382156580687, -0.03916718438267708, -0.007312237750738859, 0.0025778973940759897, -0.012355645187199116, -0.004664097912609577, -0.009054250083863735, 0.004067037254571915, -0.028743205592036247, -0.014132778160274029, -0.0007827641675248742, 0.00807788036763668, 0.004214546177536249, 0.017054863274097443, -0.026340914890170097, -0.005387594923377037, 0.013865857385098934, 0.002054591430351138, 0.016844136640429497, 0.026944998651742935, -0.0190497487783432, 0.04498325660824776, -0.01954144611954689, -0.013760494068264961, -0.01816469430923462, 0.01612766459584236, -0.01806635595858097, 0.00015914301911834627, -0.019878610968589783, -0.019653834402561188, -0.029277049005031586, 0.01628219708800316, 0.02473938651382923, 0.013570839539170265, 0.010824359953403473, 0.007719643879681826, 0.006283185910433531, -0.009714528918266296, -0.011407371610403061, -0.021803252398967743, 0.020763665437698364, -0.01573430560529232, 0.0013785078190267086, -0.010107886977493763, -0.018361372873187065, -0.022800695151090622, -0.016956524923443794, 0.00630777096375823, -0.003740409854799509, 0.024458417668938637, -0.009250929579138756, 0.007466771174222231, 0.013219626620411873, -0.0011089524487033486, 0.02913656271994114, -0.010620656423270702, -0.004516588989645243, 0.017504416406154633, 0.019681930541992188, 0.013353087939321995, 0.04725911095738411, 0.001022027456201613, -0.007909298874437809, 0.0262285266071558, 0.04248262569308281, -0.0061567495577037334, 0.037959013134241104, 0.00376148265786469, 0.05138936638832092, -0.011821802705526352, 0.038464758545160294, -0.016057420521974564, 0.015565724112093449, 0.0001478383783251047, 0.0009965646313503385, -0.017532512545585632, 0.022716404870152473, -0.022224707528948784, 0.02142394334077835, 0.007305213715881109, -0.03158099949359894, 0.018712585791945457, 0.01382371224462986, -0.0032627612818032503, -0.008281583897769451, -0.018403518944978714, 0.007424625568091869, 0.003989770542830229, 0.019822416827082634, 0.017265591770410538, 0.010157056152820587, 0.033126335591077805, 0.00201947009190917, -0.0025006309151649475, 0.0380152091383934, -0.013760494068264961, 0.005257646553218365, 0.023123810067772865, -0.024135302752256393, -0.03141241893172264, -0.016422681510448456, -0.02243543416261673, 0.0037755309604108334, 0.005355985835194588, -0.00752998935058713, -0.010353735648095608, -0.009440584108233452, 0.017265591770410538, 0.0042426432482898235, 0.0095108263194561, 0.0019861049950122833, 0.030822381377220154, -0.03189006820321083, -0.006212943699210882, 0.03205864876508713, 0.03703181445598602, -0.007677498739212751, -0.00856255367398262, 0.0061567495577037334, 0.01024837139993906, -0.028771303594112396, 0.009047226049005985, -0.006634398363530636, 0.0070558530278503895, -0.02235114388167858, 0.0028975005261600018, -0.010255396366119385, 0.005731782875955105, 0.04666907712817192, -0.018375422805547714, -0.01949930004775524, -0.00031543243676424026, -0.009925256483256817, 0.018248984590172768, -0.015607870183885098, -0.016984621062874794, 0.03784662485122681, 0.014905445277690887, -0.03045712225139141, -0.04231404513120651, -0.005415691994130611, 0.0007428138051182032, 0.01166726928204298, -0.003148617222905159, -0.015832645818591118, 0.005830122623592615, 0.0011721707414835691, -0.008976983837783337, 0.008113001473248005, -0.013697275891900063, 0.028827495872974396, 0.004688682965934277, -0.028335800394415855, -0.012826269492506981, -0.0039581614546477795, 0.02242138609290123, 0.04827060550451279, 0.046416204422712326, 0.008611722849309444, 0.03144051507115364, -0.02233709581196308, 0.0064096227288246155, -0.03200245648622513, -0.010901626199483871, 0.030232345685362816, -0.005910901352763176, -0.008660892955958843, 0.004481467418372631, 0.005082040559500456, -0.03281726688146591, 0.014722814783453941, 0.00304500968195498, 0.020201725885272026, -0.009574044495821, -0.033098235726356506, -0.0016866965452209115, 0.009173662401735783, -0.008969959802925587, 0.024514611810445786, 0.023067615926265717, 0.03144051507115364, 0.03444689139723778, 0.031271934509277344, 0.019850512966513634, 0.013409281149506569, -0.033238720148801804, -0.01360596064478159, 0.037425171583890915, -0.004460394848138094, 0.00572124682366848, -0.025104647502303123, 0.04416844621300697, 0.010304565541446209, 0.0030309611465781927, -0.00442527374252677, 0.007010195404291153, -0.006223480217158794, 0.009918232448399067, 0.017279639840126038, -0.014153851196169853, 0.04340982809662819, -0.01212384458631277, 0.0034278309904038906, 0.02001909539103508, -0.007881201803684235, -0.01772919110953808, 0.007621304597705603, 0.014863300137221813, -0.02339073270559311, -0.018487809225916862, 0.009988474659621716, 0.013851809315383434, 0.016591263934969902, -0.007923346944153309, -0.019878610968589783, -0.029389435425400734, -0.01947120390832424, -0.01261554192751646, -0.005633443593978882, -0.021171070635318756, -0.004618440289050341, 0.0031679340172559023, -0.029333243146538734, -0.0011396835325285792, -0.029867084696888924, 0.025427762418985367, -0.049366384744644165, -0.01996290124952793, -0.02433198131620884, 0.023194052278995514, 0.008330753073096275, 0.011077232658863068, 0.018712585791945457, 0.006989122834056616, -0.0021336141508072615, 0.0046043917536735535, -0.021100828424096107, -0.04017867520451546, 0.022252803668379784, -0.022154465317726135, -0.01625410094857216, -0.0051487707532942295, -0.024907968938350677, 0.015411190688610077, -0.023657653480768204, 0.006616837810724974, -0.015930984169244766, -0.020342210307717323, -0.020665325224399567, -0.010374807752668858, 0.029192756861448288, 0.026495447382330894, 0.023194052278995514, 0.025610392913222313, 0.007895249873399734, -0.022280901670455933, -0.006950489245355129, -0.012320524081587791, 0.004997749347239733, -0.02150823548436165, -0.005514031276106834, -0.016422681510448456, -0.007487843744456768, -0.0131002152338624, -0.01406955998390913, -0.008976983837783337, 0.0034963174257427454, -0.025512054562568665, -0.011758584529161453, -0.006434207316488028, 0.02105868235230446, -0.017420124262571335, 0.030850479379296303, 0.028237460181117058, 0.01166726928204298, -0.006476352922618389, 0.004003819078207016, -0.006560643669217825, 0.059902749955654144, 0.005594810005277395, -0.00884352345019579, 0.01961168833076954, 0.012545299716293812, -0.025090599432587624, -0.03908289223909378, 0.02053888887166977, -0.005043406970798969, 0.011807753704488277, 0.01711105741560459, -0.019892659038305283, -0.01806635595858097, -0.023446926847100258, 0.015818597748875618, 0.008906741626560688, 4.159669333603233e-05, -0.021114876493811607, -0.05113649368286133, 0.024191495031118393, -0.009496777318418026, -0.01763085275888443, -0.0028026732616126537, -0.032199133187532425, -0.0285184308886528, 0.012805196456611156, -0.01046612299978733, 0.02100248821079731, -0.015214512124657631, -0.013739421032369137, -0.022210659459233284, -0.003273297566920519, -0.012144917622208595, -0.011266887187957764, 0.004260203801095486, 0.012475057505071163, 0.03239581361413002, 0.02008933760225773, 0.02486582286655903, 0.008653867989778519, 0.02236519195139408, 0.0013828979572281241, 0.00572827085852623, -0.010494220070540905, 0.0034489037934690714, -0.012018481269478798, 0.004186449106782675, -0.0012626078678295016, 0.010339686647057533, 0.01722344569861889, -3.942905459553003e-05, -0.002247757976874709, -0.008393971249461174, 0.03160909563302994, -0.0333511084318161, -0.02288498729467392, -0.002428632229566574, -0.043185051530599594, -0.01505997870117426, 0.0015611381968483329, -0.030232345685362816, -0.03211484104394913, -0.04060012847185135, 0.007515940815210342, 0.023011423647403717, 0.0005369156133383512, 0.010754117742180824, -0.0013047532411292195, 0.03295775130391121, -0.014139803126454353, -0.008829474449157715, -0.0069856103509664536, 0.017996111884713173, -0.004660585895180702, -0.017911821603775024, -0.03773423656821251, 0.025399666279554367, 0.015383093617856503, 0.015959082171320915, 0.029838988557457924, -0.005464861635118723, -0.008984007872641087, -0.0008701282204128802, 0.01024837139993906, -0.044112250208854675, -0.002416339935734868, 0.01124581415206194, -0.030822381377220154, 0.0064377193339169025, -0.011330105364322662, 0.0012160722399130464, -0.0007397406734526157, 0.008450165390968323, 0.017265591770410538, 0.011765608564019203, 0.020791761577129364, -0.01567811146378517, -0.012144917622208595, 0.017392028123140335, 0.002307464135810733, 0.03714420273900032, 0.03618890419602394, 0.029220854863524437, 0.008871619589626789, 0.020286016166210175, -0.013001875020563602, -0.024233641102910042, 0.012201111763715744, 0.009833941236138344, 0.031271934509277344, 0.018698537722229958, 0.013964196667075157, -0.02628472074866295, 0.01997694931924343, 0.024121252819895744, -0.01909189485013485, -0.01816469430923462, 0.020595083013176918, 0.011590002104640007, 0.0037333855871111155, -0.01434350572526455, -0.005025846417993307, -0.01954144611954689, 0.019752174615859985, -0.00547891017049551, -0.007628328632563353, 0.02958611585199833, -0.019232379272580147, -0.0001370825048070401, 0.03009186126291752, -0.0018930337391793728, 0.02090414986014366, -0.0017718655290082097, -0.014427796937525272, -0.0032065673731267452, -0.007572134956717491, 0.010360759682953358, -0.0019035701407119632, -0.01716725155711174, -0.002001909539103508, -0.005714222323149443, -0.004249667748808861, 0.0019351792288944125, 0.00511013763025403, 0.014153851196169853, 0.007937395945191383, 0.01288246363401413, 0.037902820855379105, -0.008049783296883106, 0.00273594306781888, 0.01194823905825615, -0.012959729880094528, 0.0025287277530878782, -0.018347324803471565, -0.015874791890382767, -0.019766222685575485, -0.0038844067603349686, -0.00012083894398529083, 0.013669178821146488, -0.001095782034099102, -0.03371636942028999, -0.006219967734068632, -0.00878030527383089, -0.021775156259536743, 0.010107886977493763, -0.016816040500998497, 0.023039519786834717, -0.04582616686820984, -0.015987178310751915, -0.005875779781490564, -0.015200464054942131, 0.015102123841643333, -0.016043372452259064, -0.008604698814451694, 0.011842874810099602, 0.024233641102910042, -0.01626814901828766, 0.014146827161312103, -0.00880137737840414, -0.00630074692890048, -0.047933440655469894, 0.017532512545585632, -0.02808292768895626, 0.004137279465794563, 0.011702390387654305, -0.01952739804983139, -0.02582111954689026, 0.0020089338067919016, 0.035008832812309265, -0.009447608143091202, 3.2157866371562704e-05, 0.005974119529128075, 0.03391304984688759, 0.01860019750893116, 0.000651498616207391, -0.004878337495028973, -0.017897773534059525, 0.01360596064478159, -0.0032627612818032503, 0.002869403688237071, 0.022786647081375122, 0.012798172421753407, 0.0006159383920021355, -0.038436662405729294, 0.010318614542484283, 0.0007836422300897539, -0.022814743220806122, 0.0009394926019012928, -0.003174958284944296, 0.007445698603987694, -0.010297541506588459, -0.00928605068475008, -0.012713881209492683, -0.024626998230814934, -0.01664745807647705, 0.023264296352863312, -0.00428127683699131, 0.004228594712913036, 0.021704914048314095, -0.0007037414470687509, 0.011997408233582973, 0.02905227243900299, -0.013528693467378616, -0.03377256542444229, -0.02812507189810276, -0.017476318404078484, -0.028251508250832558, -0.008400995284318924, -0.0047940462827682495, 0.030794285237789154, 0.0009535410790704191, -0.01675984635949135, -0.02669212594628334, -0.03722849115729332, -0.03090667352080345, -0.011105329729616642, -0.014498039148747921, 0.019892659038305283, 0.03189006820321083, 0.0010580266825854778, -0.015621918253600597, 0.00031828603823669255, -0.009391414001584053, 0.026130186393857002, -0.03661035746335983, -0.012032529339194298, -0.009602141566574574, -0.014455894008278847, 0.038801923394203186, -0.010620656423270702, -0.04377508908510208, -0.005570225417613983, -0.0006071580573916435, 0.01572025753557682, 0.01767299696803093, -0.004713267553597689, -1.0845048564078752e-05, 0.005067992024123669, 0.0053138406947255135, 0.01850185915827751, -0.011856923811137676, 0.005162819288671017, 0.0010738312266767025, -0.03394114598631859, -0.007108534686267376, 0.005271695088595152, -0.005777440499514341, 0.02150823548436165, -0.00764237716794014, 0.007185801398009062, -0.00645176786929369, 0.007558086421340704, -0.011983360163867474, -0.02187349461019039, 0.005563200917094946, -0.017012719064950943, 0.00929307471960783, 0.009272001683712006, -0.01261554192751646, 0.024542707949876785, -0.0018947897478938103, 0.009904183447360992, -0.006838101428002119, 0.002493606647476554, -0.0010975381592288613, 0.00465004937723279, 0.008415044285356998, -0.008632795885205269, 0.008457189425826073, -0.0071577043272554874, 0.004449858330190182, -0.006349916569888592, -0.04526422917842865, -0.013767518103122711, 0.0018649367848411202, -0.034615471959114075, -0.00950380228459835, -0.008239437825977802, -0.007410577032715082, -0.003153885481879115, -0.01267173606902361, -0.004853752441704273, 0.01196228712797165, 0.005327888764441013, -0.011547856964170933, 0.0021687352564185858, 0.00021325165289454162, -0.006363965105265379, -0.022660210728645325, -0.007979541085660458, -0.016872234642505646, 0.026888806372880936, -0.01718129962682724, 0.03562696650624275, 0.19004793465137482, 0.02426173910498619, 0.00908234715461731, 0.0191340409219265, 0.012861390598118305, -0.011913117952644825, 0.02812507189810276, 2.9153355285416183e-08, -0.0034805128816515207, 0.02101653814315796, 0.04015057906508446, 0.011393323540687561, -0.009461656212806702, 0.0042180586606264114, 0.008625771850347519, 0.02195778675377369, -0.030372830107808113, -0.013634057715535164, 0.008513383567333221, 0.005830122623592615, 0.028363896533846855, -0.008681965060532093, 0.011561905033886433, -0.002562092849984765, 0.04228594899177551, 0.012566371820867062, 0.0036807036958634853, 0.012580420821905136, 0.01625410094857216, 0.02910846658051014, -0.03045712225139141, 0.0034576840698719025, 0.012369693256914616, 0.011604051105678082, -3.3365158742526546e-05, -0.005204964894801378, 0.011870971880853176, -0.008878644555807114, 0.006964537780731916, -0.01188502088189125, -0.0018368397140875459, -0.003940600901842117, 0.00775476498529315, -0.029951374977827072, 0.00786012876778841, 0.015228561125695705, -0.013634057715535164, -0.006044361740350723, 0.005282231606543064, 0.022182561457157135, -0.00906829908490181, 0.02809697575867176, 0.030316635966300964, -0.004077573772519827, 0.0062445527873933315, 0.016984621062874794, 0.014947591349482536, -0.00978477206081152, -0.011477614752948284, 0.020215773954987526, -0.014111706055700779, 0.020623179152607918, -0.003106471849605441, -0.0004688682674895972, -0.0262566227465868, -0.010178129188716412, -0.02289903536438942, -0.002539264038205147, 0.010290517471730709, -0.02235114388167858, -0.007013707421720028, -0.031103352084755898, -0.00322237191721797, 0.00644474383443594, -0.0009877842385321856, -0.012348620221018791, 0.02153633162379265, 0.015635967254638672, 0.02667807787656784, 0.019892659038305283, -0.011119377799332142, -0.016801990568637848, -0.006370989140123129, -0.03627319633960724, -0.017026767134666443, -0.003264517290517688, 0.03104715794324875, 0.004305861424654722, -0.01855805143713951, -0.015411190688610077, -0.012004433199763298, -0.00500477384775877, -0.02142394334077835, -0.015467384830117226, -0.022533774375915527, -0.0077477409504354, 0.01262958999723196, -0.014961639419198036, -0.01384478434920311, -0.023489071056246758, -0.005714222323149443, 0.07990779727697372, 0.03666655346751213, 0.024598902091383934, -0.019457155838608742, -0.01022027526050806, -0.005317352712154388, 0.033238720148801804, -0.02249162830412388, 0.0011721707414835691, 0.015383093617856503, -0.02150823548436165, -0.006237528752535582, 0.0010729532223194838, -0.0191340409219265, 0.03189006820321083, -0.004801070783287287, -0.009482729248702526, -0.009468680247664452, -0.013978245668113232, 0.00572124682366848, -0.033632081001996994, -0.000986028229817748, -0.002330292947590351, -0.0067011285573244095, -0.03054141253232956, -0.031131448224186897, -0.007206873968243599, 0.005401643458753824, -0.03666655346751213, 0.014849251136183739, -0.012573396787047386, 0.0285605750977993, -0.015425239689648151, -0.012046578340232372, -0.017434172332286835, 0.00644474383443594, 0.008597674779593945, 0.0010466122766956687, -0.0056088585406541824, 0.0033751490991562605, -0.0009280781960114837, -0.003023936878889799, -0.004105670377612114, 0.005032870918512344, -0.02339073270559311, 0.0036420703399926424, 0.01261554192751646, -0.03191816434264183, -0.03177767992019653, 0.002342585241422057, 0.013065093196928501, -0.004987213294953108, 0.004590343218296766, 0.0477648563683033, 0.0014013366308063269, -0.012994850985705853, -0.015411190688610077, -0.00043945424840785563, -0.010669826529920101, -0.04849537834525108, 0.003831725101917982, 0.03725659102201462, 0.0034910491667687893, -0.03756565600633621, 0.02056698687374592, -0.17982064187526703, 0.021761108189821243, 0.0007968126446940005, -0.013943123631179333, -0.005127698183059692, 0.011772632598876953, 0.011568930000066757, -0.001403970760293305, -0.033126335591077805, -0.0056931497529149055, 0.011105329729616642, 0.009826917201280594, -0.04206117242574692, -0.027942441403865814, -0.0020300063770264387, 0.007537013851106167, -0.004850240424275398, 0.024907968938350677, 0.04613523185253143, 0.0167457964271307, 0.014849251136183739, -0.00857660174369812, -0.006578204222023487, 0.02388242818415165, 0.0039546494372189045, 0.008113001473248005, -0.02905227243900299, 0.01764490082859993, 0.011969311162829399, -0.026017799973487854, -0.04043154790997505, -0.00011041232937714085, 0.030344733968377113, 0.008260510861873627, 0.00973560195416212, 0.006644934881478548, -0.009173662401735783, -0.01477900892496109, 0.009328195825219154, 0.018782828003168106, 0.006739762146025896, 0.014238142408430576, 0.011358202435076237, 0.016942476853728294, -0.008927813731133938, -0.01334606297314167, 0.031103352084755898, 0.007726668380200863, -0.022070175036787987, -0.03287346288561821, 0.004225082695484161, -0.024149350821971893, -0.02332049049437046, -0.015930984169244766, 0.006641422398388386, 0.008527431637048721, 0.025090599432587624, -1.4857921996735968e-05, 0.012348620221018791, -0.012959729880094528, 0.008492310531437397, -0.024964163079857826, 0.014469942077994347, 0.005970607046037912, -0.008190268650650978, -0.008422068320214748, -0.0020774200093001127, 0.029445629566907883, -0.021634671837091446, 0.01052934117615223, -0.007761789485812187, -0.01816469430923462, 0.02663593180477619, 0.032227229326963425, 0.017026767134666443, 0.010866505093872547, -0.01404848787933588, 0.019330719485878944, 0.02139584720134735, 0.028420090675354004, 0.0038106522988528013, 0.02340478077530861, 0.011863947845995426, -0.0012880706926807761, -0.030232345685362816, 0.004741364624351263, -0.013809663243591785, 0.01569216139614582, -0.0020335186272859573, -0.015326900407671928, 0.008429092355072498, -0.029417533427476883, -0.023011423647403717, -0.022098271176218987, 0.01812254823744297, 0.006546595133841038, 0.004326933994889259, 0.006455279886722565, 0.020257920026779175, -0.010578511282801628, -0.008330753073096275, 0.007459747139364481, -0.002061615465208888, 0.01383776031434536, 0.02631281688809395, -0.0038387493696063757, -0.006810004357248545, 0.0073473588563501835, 0.021086780354380608, -0.02282879315316677, -0.032704878598451614, 0.0031293006613850594, -0.011491662822663784, 0.011519759893417358, 0.006518498063087463, 0.042904082685709, 0.013051045127213001, 0.0064377193339169025, 0.007305213715881109, 0.00807788036763668, 0.03970102593302727, -0.015930984169244766, -0.0036174855194985867, 0.01816469430923462, -0.0020124458242207766, -0.003248712746426463, -0.10586940497159958, -0.0332949161529541, 0.0024321444798260927, 0.016310295090079308, -0.014413747936487198, 0.0037544583901762962, -0.011273911222815514, 0.029248951002955437, 0.008520407602190971, 0.013296893797814846, 0.0019123504171147943, -0.013282844796776772, 0.004168888553977013, 0.01948525197803974, 0.025947555899620056, -0.017068913206458092, -0.007923346944153309, -0.003364612814038992, 0.007319262251257896, 0.034053534269332886, 0.00837289821356535, -0.024051010608673096, 0.018937360495328903, -0.008091929368674755, -0.013577863574028015, 0.0032065673731267452, -0.02436007745563984, 0.008302656002342701, -0.010557438246905804, -0.006834589410573244, 0.0030186688527464867, -0.005387594923377037, 0.03852095454931259, -0.02771766670048237, -0.024486513808369637, -0.001389044220559299, -0.02905227243900299, -0.013535717502236366, 0.02910846658051014, -0.026523545384407043, 0.0037123127840459347, 0.014483991079032421, 0.018263034522533417, -0.014111706055700779, -0.008948886767029762, 0.0131142633035779, -0.018038257956504822, 0.03925147280097008, 0.01572025753557682, -0.040712516754865646, -0.0380994975566864, -0.007431650068610907, -0.024388175457715988, -0.022646162658929825, -0.001024661585688591, -0.018319228664040565, 0.025006307289004326, -0.0023619020357728004, -0.025905411690473557, -0.020777713507413864, -0.004716779571026564, -0.019302621483802795, 0.011807753704488277, -0.0010755873518064618, 0.002941402141004801, 0.00834480207413435, -0.0008530066115781665, -0.018263034522533417, 0.012938656844198704, -0.002511167200282216, -0.025441810488700867, 0.013985269702970982, -0.023180004209280014, 0.01455423329025507, -0.019906707108020782, 0.0032030551228672266, -0.005809049587696791, -0.01566406339406967, 0.01288948766887188, -0.025498004630208015, -0.024612950161099434, -0.015930984169244766, -0.0011704146163538098, -0.018993554636836052, 0.015832645818591118, 0.027408599853515625, 0.018839022144675255, -0.008393971249461174, 0.010999965481460094, -0.046921949833631516, -0.025933507829904556, 0.009672383777797222, 0.003631534054875374, -0.02905227243900299, 0.0033066628966480494, 0.03630129247903824, 0.010199202224612236, -0.01218003872781992, 0.005060967523604631, -0.012004433199763298, -0.02343287691473961, -0.00813407450914383, -0.053243767470121384, 0.027549084275960922, 0.001391678350046277, 0.0020071775652468204, -0.010409929789602757, 0.000998320640064776, -3.372185892658308e-05, -0.014181948266923428, 0.004158352501690388, 0.01860019750893116, 0.0009711016900837421, 0.03489644452929497, -0.004330446477979422, 0.006904831621795893, -0.017813483253121376, -0.0007033023866824806, 0.010999965481460094, 0.010360759682953358, 0.008955910801887512, -0.008408020250499249, -0.013156408444046974, -0.029248951002955437, 0.013929075561463833, 0.013156408444046974, 0.0034050021786242723, 0.016015276312828064, -0.03290155902504921, 0.0190076045691967, 0.004804582800716162, -0.003032717388123274, 0.027394551783800125, -0.022154465317726135, -0.008906741626560688, 0.005429740529507399, -0.010901626199483871, -0.022294949740171432, -0.002721894532442093, 0.010086813941597939, 0.012257305905222893, 0.017420124262571335, -0.008534456603229046, -0.02573682926595211, -0.01355679053813219, -0.023011423647403717, -0.008113001473248005, -0.01765894889831543, -0.03475596010684967, -0.0007634474895894527, 0.009616189636290073, 0.03287346288561821, 0.024514611810445786, -7.33978595235385e-07, -0.005580761935561895, -0.018389470875263214, 0.007206873968243599, -0.008155147545039654, -0.013296893797814846, 0.022688306868076324, 0.01954144611954689, 0.010838408023118973, 0.046444300562143326, -0.01663341000676155, 0.01805230602622032, -0.033182527869939804, 0.0012257305206730962, -0.006378013640642166, -0.002937889890745282, -0.002188052050769329, 0.00807788036763668, -0.021213216707110405, -0.006648446898907423, -0.02105868235230446, 0.0029220853466540575, 0.025905411690473557, -0.006788931787014008, 0.004344495013356209, 0.00786715280264616, -0.014680669642984867, 0.0006949611124582589, 0.018768779933452606, 0.03495263680815697, 0.0036947522312402725, -0.0332949161529541, 0.007431650068610907, -0.008450165390968323, 0.008457189425826073, -0.005429740529507399, -0.00785310473293066, 0.0005979387788102031, 0.02482367865741253, 0.0001703379093669355, 0.0050574555061757565, 0.006490401457995176, -0.0041443039663136005, -0.00122309650760144, 0.02332049049437046, -0.0022143928799778223, -9.912140740198083e-06, 0.02001909539103508, 0.01808040402829647, -0.004628976806998253, -0.00813407450914383, 0.0027903809677809477, -0.02336263470351696, -0.024079108610749245, 0.01808040402829647, -0.03090667352080345, -0.03571125492453575, 0.002713114256039262, 0.0335196927189827, -0.001756060984916985, 0.01570620946586132, 0.024992259219288826, 0.012074675410985947, -0.025455860421061516, -0.0083518261089921, -0.013036996126174927, -0.003420806722715497, -0.021845398470759392, 0.0262004304677248, 0.00857660174369812, -0.014195997267961502, 0.018839022144675255, -0.013163433410227299, 0.03905479609966278, -0.002725406549870968, 0.02237924002110958, -0.014034438878297806, -0.0021599549800157547, -0.024697240442037582, 0.006079482845962048, -0.00677488325163722, 0.00028162827948108315, 0.0036209977697581053, -0.0035648038610816, -0.012376717291772366, -0.01948525197803974, 0.018220888450741768, 0.004102158360183239, 0.08839308470487595, 0.03972912207245827, -0.02763337455689907, 0.0004715023678727448, 0.0005597444251179695, -0.00034089531982317567, 0.01612766459584236, 0.012004433199763298, 0.005738807376474142, -0.030429024249315262, 0.02773171477019787, 0.0030555459670722485, 0.006279673893004656, -0.02806887775659561, -0.019246427342295647, -0.01858614943921566, 0.018867118284106255, 0.03197435662150383, -0.008548504672944546, -0.014807105995714664, 0.003454171819612384, 0.0038527976721525192, 0.028967982158064842, 0.008632795885205269, -0.03146861121058464, -0.024444367736577988, 0.035486478358507156, 0.0014382139779627323, -0.006009240634739399, -0.06102662906050682, 0.004948579706251621, -0.005837146658450365, -0.020609131082892418, -0.010585535317659378, -0.0009368585306219757, -0.0033927098847925663, -0.004846728406846523, -0.01262958999723196, 0.02332049049437046, -0.006648446898907423, 0.026916902512311935, -0.018192792311310768, -0.027970539405941963, -0.03711610287427902, -0.006378013640642166, -0.014413747936487198, 0.0009869062341749668, -0.03970102593302727, 0.0033891976345330477], "b2a1caed-1a08-428b-994b-7ecead6aa3fd": [0.009177662432193756, -0.00306330737657845, 0.009864235296845436, -0.023693781346082687, -0.011482586152851582, 0.0018442897126078606, -0.0017427048878744245, -0.006462895777076483, -0.04251149296760559, -0.04531383141875267, 0.007363147102296352, 0.013626376166939735, 0.010298597626388073, -0.006109100300818682, 0.002560637891292572, -0.010796013288199902, 0.016926130279898643, -0.019224049523472786, 0.0032962518744170666, -0.011790843680500984, 0.008077743463218212, 0.000754880253225565, -0.0187196284532547, 0.012400352396070957, -0.010817030444741249, -0.003086076583713293, 0.019420213997364044, -0.024086108431220055, -0.0015938306460157037, 0.006634538993239403, 0.012981838546693325, 0.002739286981523037, 0.0030160180758684874, 0.017850903794169426, -0.0078115216456353664, -0.01527275051921606, 0.0012163905194029212, 0.009836211800575256, 0.025347162038087845, 0.004410182125866413, 0.003163140732795, 0.010522785596549511, 0.006420860532671213, -0.01209209579974413, -0.004981158766895533, 0.020793359726667404, -0.010718949139118195, 0.022236565127968788, -0.00395830487832427, 0.015693102031946182, 0.016267580911517143, 0.0029792373534291983, -0.015538972802460194, 0.015595019795000553, 0.003881240263581276, -0.01458617765456438, 0.018845733255147934, 0.04133450984954834, 0.009766153059899807, -0.007832539267838001, -0.010438715107738972, 0.016589850187301636, -0.00155267131049186, -0.011027206666767597, -0.008414024487137794, -0.010767989791929722, -0.0028583863750100136, -0.004784994758665562, 0.007489252369850874, -0.010480750352144241, 0.016295604407787323, 0.02077934890985489, 0.015454903244972229, 0.023791862651705742, 0.023371512070298195, -0.006175655871629715, 0.007517275866121054, -0.014460071921348572, -0.005874404218047857, -0.0022278600372374058, 0.0028338658157736063, -0.003776152618229389, -0.011699767783284187, 0.007769486401230097, -0.0036325326655060053, 0.02667827345430851, -0.0002603110915515572, 0.011377498507499695, -0.002788327867165208, -0.012085089460015297, -0.02813548967242241, 0.01602938212454319, 0.018817709758877754, 0.012218200601637363, -0.006315772887319326, 0.0076223635114729404, 0.01608542911708355, 0.007370152976363897, -0.01160869188606739, -0.017556658014655113, -0.006795673631131649, 0.010473744012415409, -0.04926513135433197, -0.0045502991415560246, -0.010999183170497417, -0.000560905784368515, -0.0158051960170269, -0.02739286981523037, 0.013149978592991829, -0.014796352945268154, -0.005888415966182947, 0.03651448339223862, -0.020933477208018303, -0.015609031543135643, 0.007405182346701622, -0.012463405728340149, 0.0005166813498362899, -0.006074070930480957, 0.009598013013601303, -0.01926608569920063, 0.028780028223991394, -0.02006475068628788, 0.023861922323703766, -0.01196599006652832, 0.016982177272439003, 0.010606855154037476, 0.0008901807013899088, -0.012967826798558235, 0.007951638661324978, -0.004091416019946337, 0.00856114737689495, 0.02802339568734169, 0.02684641256928444, -0.011503604240715504, -0.011146306060254574, 0.028836075216531754, -0.019196026027202606, 0.014964493922889233, -0.006596006918698549, -0.014418037608265877, 0.007496258243918419, 0.032759349793195724, 0.015090598724782467, 0.003543208120390773, 0.0040318663232028484, 0.034020401537418365, 0.012519451789557934, 0.0018863248405978084, 0.02063923142850399, -0.013843557797372341, 0.009233709424734116, -0.017766833305358887, 0.011111276224255562, 0.022418716922402382, 0.019658412784337997, -0.00048208999214693904, -0.005075737833976746, 0.014446061104536057, -0.014340972527861595, -0.011041218414902687, 0.01198000181466341, -0.003142123343423009, -0.011489592492580414, -0.004620357416570187, 0.027098624035716057, 0.05523411184549332, 0.019658412784337997, -0.0371590219438076, -0.005040708463639021, -0.011146306060254574, -0.00616864999756217, 0.026916472241282463, -0.014936470426619053, 0.021676097065210342, 0.024436401203274727, -0.011874914169311523, 0.022292612120509148, -0.02470262348651886, -0.021830225363373756, -0.028373688459396362, 0.01789293810725212, -0.0032980034593492746, 0.014446061104536057, 0.025627395138144493, -0.03469296544790268, -0.003163140732795, 0.03738320991396904, -0.011195346713066101, -0.0030580530874431133, 0.005475070793181658, 0.01978451758623123, 0.004087912850081921, -0.01464222464710474, -0.022488774731755257, -0.6151695847511292, -0.009037544950842857, 0.040774039924144745, -0.03065759502351284, 0.00971711240708828, 2.792761370074004e-05, 9.342956764157861e-05, 0.013213030993938446, -0.0119940135627985, 0.011734796687960625, -0.012855732813477516, 0.027098624035716057, 0.01588926464319229, -0.01465623639523983, -0.03079771250486374, -0.022292612120509148, 0.010487755760550499, -0.005341959651559591, -0.00596898328512907, -0.002711263485252857, -0.03909263759851456, 0.018019042909145355, 0.004788497928529978, -0.0028951670974493027, -0.0020947488956153393, -0.018845733255147934, 0.021718131378293037, -0.0009335294016636908, -0.008911440148949623, 0.0007846551015973091, -0.03309563174843788, 0.0308537594974041, 0.0065749892964959145, -0.01654781587421894, 0.04522976279258728, -0.01122337020933628, -0.025921640917658806, 0.013717452064156532, 0.01800503209233284, 0.02281104400753975, -0.036626577377319336, 0.00898850429803133, -0.0018845733720809221, 0.009969322942197323, -0.003466143738478422, 0.020737312734127045, 0.01688409596681595, 0.017598692327737808, -0.004161474294960499, -0.006144129671156406, 0.008140796795487404, -0.027518974617123604, -0.006406848784536123, 0.015454903244972229, -0.010599849745631218, -0.03435668349266052, 0.026608213782310486, 0.0014896186767145991, 0.013752481900155544, -0.009808188304305077, -0.015819206833839417, -0.007051386870443821, -0.01852346397936344, -0.0416707880795002, -0.025094950571656227, 0.0031981701031327248, 0.014193849638104439, -0.02856985293328762, 0.00463086599484086, -0.00638232845813036, 0.008049720898270607, 0.010564819909632206, -0.00638232845813036, -0.00870126485824585, 0.011230375617742538, 0.004865562077611685, 0.02761705592274666, -0.02003672905266285, 0.008322948589920998, 0.028752004727721214, 0.00039736300823278725, -0.016912119463086128, 0.015623043291270733, -0.0010316112311556935, 0.02327343076467514, 0.006998843047767878, -0.035393550992012024, -0.01266657467931509, -0.0032682286109775305, -0.0018285266123712063, 0.0017514622304588556, 0.0024065091274678707, -0.008049720898270607, -0.002019435865804553, 0.003516936209052801, 0.05069432407617569, 0.008442047983407974, -0.00020404535462148488, 0.01874765194952488, -0.03500122204422951, -0.019854575395584106, -0.004564310424029827, 0.0010456229792907834, 0.004665895365178585, 0.042259279638528824, 0.027687115594744682, -0.009156644344329834, -0.005475070793181658, 0.036766696721315384, -0.012575498782098293, 0.005482076667249203, 0.0018285266123712063, -0.03194667026400566, -0.0292564257979393, 0.021395862102508545, -0.031190039590001106, 0.0074682352133095264, -0.004354135133326054, 0.004175486043095589, -0.012729628011584282, 0.01302387285977602, -0.003135117469355464, 0.022712962701916695, -0.011510609649121761, 0.011174329556524754, 0.0350852906703949, 0.008393007330596447, 0.018187183886766434, 0.016533803194761276, 0.007244047708809376, 0.01342320628464222, -0.010319615714251995, 0.02023289166390896, -0.0024205208756029606, 0.020513126626610756, 0.005471568088978529, 0.0037691467441618443, 0.006263229064643383, 0.009920282289385796, -0.04968548193573952, -0.0016332385130226612, -0.009794176556169987, 0.011524621397256851, -0.02552931383252144, -0.01843939535319805, -0.043268121778964996, -0.022432727739214897, -0.0018653073348104954, 0.017752820625901222, -0.008049720898270607, -0.007587334606796503, -0.013500271365046501, -0.026426061987876892, 0.0332077257335186, -0.0006506682257167995, 0.004035369027405977, 0.0075452993623912334, -0.04133450984954834, -0.02023289166390896, -0.0292564257979393, -0.014922458678483963, 0.03990531712770462, -0.01534280925989151, -0.003033532528206706, -0.0076784105040133, -0.02335750125348568, -0.014151815325021744, 0.010508773848414421, -0.003494167234748602, -0.03968112915754318, 0.001690161065198481, 0.005419024266302586, -0.004802509676665068, 0.00857515912503004, -0.02753298729658127, 0.006291252560913563, -0.007328118197619915, -0.007216024678200483, 0.0031000880990177393, 0.007874574512243271, 0.009913275949656963, 0.019448237493634224, -0.003485409775748849, 0.001187491463497281, 0.019574342295527458, 0.005986498203128576, 0.01940620131790638, 0.019882598891854286, -0.006893755402415991, 0.0233294777572155, -0.01602938212454319, -0.010992176830768585, -0.021549992263317108, 0.002306675771251321, -0.02410012111067772, -0.010368656367063522, -0.018047066405415535, -0.006476907525211573, -0.021662084385752678, 0.020569173619151115, 0.007216024678200483, -0.0015272750752046704, 0.013234049081802368, 0.0038847432006150484, 0.01588926464319229, -0.009640048258006573, 0.00214378978125751, -0.021311793476343155, 0.009934294037520885, 0.0005188707145862281, 0.009829206392168999, -0.01391361653804779, -0.0047114333137869835, -0.029648752883076668, -0.012939803302288055, 0.00694980239495635, 0.011006188578903675, 0.0262439101934433, -0.028443746268749237, 0.007909603416919708, 0.011342469602823257, -0.0027427899185568094, 0.04651883617043495, 0.0020106786396354437, 0.00018718752835411578, -0.0008582164882682264, 0.0277992095798254, 0.015749149024486542, 0.03079771250486374, -0.00896048080176115, 0.002607927192002535, 0.029088284820318222, 0.02604774571955204, -0.001617475412786007, 0.0321708582341671, 0.01674397848546505, 0.05638307332992554, -0.01978451758623123, 0.031414225697517395, -0.011034212075173855, 0.012274247594177723, 0.01720636524260044, 0.016786014661192894, -0.011972996406257153, 0.019728470593690872, -0.01228125300258398, 0.027631068602204323, -0.0033733162563294172, -0.03062957152724266, 0.007030369248241186, 0.017528634518384933, 0.008336960338056087, -0.02684641256928444, -0.01392762828618288, 0.00618266174569726, -0.0033417900558561087, -0.001431820448487997, 0.022236565127968788, 0.016127465292811394, 0.017080260440707207, 0.003702591173350811, -0.0015263993991538882, 0.02819153666496277, -0.011356481350958347, 0.008189837448298931, 0.023511629551649094, -0.011041218414902687, -0.02945258840918541, -0.020933477208018303, -0.024296283721923828, 0.0015631800051778555, -0.006827199831604958, -0.02418419159948826, 0.005405012518167496, -0.012568493373692036, 0.00825989618897438, -0.0004680782731156796, 0.0012925791088491678, -0.00635430496186018, 0.027813220396637917, -0.04175486043095589, -0.011741803027689457, 0.02788327820599079, 0.028149500489234924, -0.010466738604009151, -0.020260915160179138, 0.009226703085005283, -0.0018355324864387512, -0.02149394527077675, 0.01577717252075672, -0.004749965853989124, 0.008357977494597435, -0.006869235076010227, 0.00465888949111104, -0.011426540091633797, 0.02204040065407753, 0.050021760165691376, -0.006448884028941393, -0.01528676226735115, -0.005135287530720234, 0.00830193143337965, 0.01422887947410345, -0.015693102031946182, -0.012771662324666977, 0.035477619618177414, -0.0015596771845594049, -0.010774996131658554, -0.038083795458078384, -0.013948645442724228, 0.004777988884598017, 0.013878586702048779, -0.000718975265044719, -0.014123791828751564, 0.012624540366232395, 0.01467024814337492, -0.031246086582541466, 0.005506597459316254, 8.390598668484017e-05, 0.023259418085217476, -0.011454563587903976, -0.037999726831912994, -0.013612364418804646, 0.0005385746480897069, 0.01457216590642929, 0.06456590443849564, 0.04304393753409386, 0.006350802257657051, 0.02728077583014965, -0.01780886761844158, 0.011349475011229515, -0.03205876424908638, -0.00694980239495635, 0.035113316029310226, 0.006476907525211573, -0.012701604515314102, -0.001712054363451898, 0.0050722346641123295, -0.018103113397955894, 0.0015185177326202393, 0.01460018940269947, 0.022250575944781303, -0.005821860395371914, -0.014172832481563091, -0.014151815325021744, -0.004021357279270887, 0.003940789960324764, 0.03990531712770462, 0.01577717252075672, 0.025949664413928986, 0.029676776379346848, 0.03909263759851456, 0.005033702589571476, 0.00562569685280323, -0.010810025036334991, 0.003084324998781085, 0.02621588669717312, -0.002135032555088401, 0.00788858626037836, -0.024170178920030594, 0.0390365906059742, 0.0052683986723423, -0.007093422114849091, -0.02124173380434513, -0.003079070709645748, 0.009990341030061245, 0.012617534026503563, 0.013227042742073536, -0.01170677412301302, 0.032535161823034286, 0.0024765676353126764, -0.0041859946213662624, 0.013745475560426712, -0.020569173619151115, -0.008498094975948334, 0.018649570643901825, 0.025781523436307907, -0.011167323216795921, -0.020344985648989677, 0.0025483774952590466, 0.007251053582876921, 0.0020667253993451595, -0.025641407817602158, -0.002986243227496743, -0.019336143508553505, -0.01457216590642929, -0.009584001265466213, 0.0061266147531569, -0.00904455129057169, -0.030405385419726372, -0.011097264476120472, -0.018999863415956497, -0.011062235571444035, -0.036626577377319336, 0.019630389288067818, -0.056663308292627335, -0.02261488139629364, -0.023707792162895203, 0.014179838821291924, 0.00732111232355237, -0.004210515413433313, 0.006771152839064598, 0.009548972360789776, 0.01165072713047266, -0.0011918700765818357, -0.02003672905266285, -0.028289617970585823, 0.018971839919686317, -0.02352564036846161, -0.018789686262607574, 0.009443884715437889, -0.022082436829805374, 0.025291115045547485, -0.008981498889625072, -0.005086246412247419, -0.0015999607276171446, -0.012974832206964493, -0.014116785489022732, -0.010193509981036186, 0.022082436829805374, 0.013542305678129196, 0.0033347841817885637, 0.029032237827777863, 0.007398176472634077, -0.025179021060466766, 0.0006581119378097355, -0.004981158766895533, -0.007103930693119764, -0.0180610790848732, 0.0026779856998473406, -0.0056992582976818085, -0.015959324315190315, -0.00938783772289753, -0.01539885625243187, -0.024198202416300774, 0.006252720020711422, -0.035309478640556335, -0.0031368688214570284, 0.006032036151736975, 0.005089749116450548, -0.0007040878408588469, 0.020274927839636803, 0.03558971360325813, 0.027561010792851448, -0.015595019795000553, 0.003543208120390773, -0.0284577589482069, 0.04677104949951172, -0.0026657255366444588, -0.023119302466511726, 0.02014882117509842, 0.01541286800056696, -0.030937829986214638, -0.0437445193529129, 0.019139979034662247, 0.00394429313018918, 0.0115946801379323, 0.027112634852528572, -0.016099441796541214, -0.017052236944437027, -0.02324540726840496, 0.008308936841785908, 0.006704597268253565, -0.022712962701916695, -0.0059479656629264355, -0.04108230024576187, 0.011244387365877628, -0.0021105119958519936, -0.021227722987532616, 0.0036395385395735502, -0.03360005095601082, -0.02865392155945301, 0.019196026027202606, -0.006809685379266739, 0.029116308316588402, -0.028373688459396362, -0.006708100438117981, -0.03861624002456665, -0.006680076941847801, -0.012603522278368473, -0.020933477208018303, -0.003171898191794753, -0.004697421565651894, 0.011797850020229816, 0.02267092652618885, 0.028864098712801933, 0.009619031101465225, 0.011062235571444035, 0.0056817433796823025, -0.010305603966116905, -0.008175825700163841, 0.002695500385016203, -0.02473064698278904, -0.011167323216795921, 0.015735136345028877, 0.0036185209173709154, 0.008624199777841568, -0.0037726496811956167, 0.009268738329410553, -0.0010342384921386838, 0.02415616810321808, -0.006694088689982891, -0.01541286800056696, 0.0013740221038460732, -0.021634060889482498, -0.012715616263449192, 0.020373009145259857, -0.011062235571444035, -0.016814038157463074, -0.015959324315190315, 0.023791862651705742, 0.01729043573141098, -0.0022909126710146666, 0.013668411411345005, -0.015482926741242409, 0.03620622679591179, -0.0077274516224861145, 0.003357553156092763, -0.00291968765668571, 0.02788327820599079, 0.002417017938569188, -0.0293965432792902, -0.03870030865073204, 0.005744796246290207, 0.0038076790515333414, 0.042035095393657684, 0.0233294777572155, 0.007783498149365187, 0.011118282563984394, 0.0029739828314632177, 0.015524961054325104, -0.04413684830069542, -0.01276465691626072, -0.007166983559727669, -0.021423885598778725, 0.0016673920908942819, -0.013591347262263298, -0.003996836952865124, -0.0008428912260569632, -0.003622023854404688, 0.015146645717322826, 0.016099441796541214, 0.022250575944781303, -0.015665078535676003, -0.005012684967368841, 0.0078045157715678215, -0.01923806220293045, 0.03497319668531418, 0.030181197449564934, 0.02275499701499939, 0.016645897179841995, 0.010410691611468792, -0.04144660383462906, -0.040774039924144745, -0.012449393980205059, 0.009815194644033909, 0.025627395138144493, 0.031274110078811646, 0.00045056367525830865, -0.006063562352210283, 0.023021219298243523, 0.029732823371887207, -0.02118568681180477, -0.028247583657503128, 0.014158820733428001, 0.01671595498919487, 0.003565977094694972, -0.017640728503465652, 0.010817030444741249, -0.032619234174489975, 0.00865922961384058, -0.01663188636302948, 0.002874149475246668, 0.0193781778216362, -0.010403686203062534, 0.002975734416395426, 0.03763541951775551, 0.0025746494065970182, 0.025865593925118446, -0.0024818219244480133, -0.011370493099093437, 0.0006441002478823066, -0.00974513590335846, 0.0019301114371046424, 0.00734913581982255, -0.005142293404787779, 0.011559651233255863, -0.006932287476956844, 0.006357808131724596, 0.012029042467474937, 0.02269895002245903, 0.01921003870666027, -0.0032367021776735783, -0.006410351954400539, 0.03360005095601082, -0.006984831299632788, -0.009198679588735104, 0.008792340755462646, 0.013605359010398388, 0.011349475011229515, -0.03472098708152771, -0.015496937558054924, -0.019420213997364044, -0.0064033460803329945, 0.01190994307398796, 0.018845733255147934, -0.0008573407540097833, -0.025599371641874313, -0.006571486592292786, -0.005895421840250492, -0.006701094564050436, 0.02118568681180477, -0.002727026818320155, 0.018453406170010567, -0.046210579574108124, 0.0008223115000873804, 4.893147706752643e-05, -0.011503604240715504, 0.014460071921348572, -0.016561826691031456, -0.012225206941366196, -0.00242927810177207, 0.012099101208150387, -0.018075089901685715, 0.006067065056413412, -0.008077743463218212, 0.0023049244191497564, -0.05632702633738518, 0.007286082953214645, -0.03430063650012016, -0.00414395984262228, 0.023343488574028015, -0.013304106891155243, -0.009184667840600014, 0.012988843955099583, 0.011027206666767597, 0.009892258793115616, -0.01605740562081337, 9.352535016660113e-06, 0.03368412330746651, 0.01674397848546505, 0.01043170876801014, -0.008000679314136505, -0.009654060006141663, 0.012498434633016586, -0.00467290123924613, 0.026860425248742104, 0.00867324136197567, 0.012715616263449192, -0.008820364251732826, -0.031133992597460747, 0.000560905784368515, -0.011538633145391941, -0.04707930609583855, -0.011083252727985382, 0.005005679093301296, 0.008021697402000427, -0.02075132541358471, 0.0003927654179278761, -0.011510609649121761, -0.011874914169311523, -0.02176016755402088, 0.021732144057750702, -0.012106107547879219, -0.007895591668784618, 0.017906950786709785, -0.0017987517639994621, 0.012596516869962215, 0.01467024814337492, -0.017584681510925293, -0.026426061987876892, -0.020373009145259857, -0.0013249812182039022, -0.04806012287735939, -0.01527275051921606, -0.006298258434981108, 0.026972519233822823, 0.0030668103136122227, -0.015174669213593006, -0.02679036743938923, -0.02945258840918541, -0.04691116511821747, 0.005559141281992197, -0.03301155939698219, 0.02948061190545559, 0.031274110078811646, -0.030293291434645653, -0.00971711240708828, 0.006543463096022606, -0.002623690525069833, 0.010515779256820679, -0.02618786320090294, -0.007587334606796503, -0.023175347596406937, -0.012841721065342426, 0.04567813500761986, -0.00113582331687212, -0.05918541178107262, -0.011552644893527031, -0.0011883671395480633, 0.007040878292173147, -0.0030825736466795206, 0.0021472927182912827, -0.003996836952865124, 0.014390014111995697, 0.00048559290007688105, 0.011167323216795921, 0.0009037544950842857, 0.013598352670669556, 0.002804090967401862, -0.02914433181285858, 0.010396679863333702, 0.012897768057882786, -0.01909794472157955, -0.004613351542502642, -0.012715616263449192, 0.006823697127401829, 0.01460018940269947, -0.001991412602365017, -0.012155148200690746, -0.0058638956397771835, 0.005842878017574549, -0.01860753446817398, 0.012939803302288055, 0.012582505121827126, -0.004308597184717655, 0.016393687576055527, 0.005874404218047857, 0.032703302800655365, -0.00012490115477703512, 0.005727281793951988, 0.006298258434981108, 0.005919942632317543, 0.002026441739872098, 0.009710106998682022, 0.028401711955666542, -0.019392190501093864, 0.005650217179208994, -0.02069527842104435, -0.023077266290783882, -0.007559311110526323, -0.004259556066244841, -0.032535161823034286, 0.0004759598814416677, 0.007846551015973091, -0.008189837448298931, 0.001754089491441846, -0.01912596821784973, -0.01461420115083456, 0.0027287781704217196, 0.005362977273762226, -0.012883756309747696, 9.988807869376615e-05, 0.005324445199221373, -0.007972655817866325, -0.02247476391494274, -0.004855053499341011, -0.0025361173320561647, 0.04172683507204056, -0.030125150457024574, 0.02195633016526699, 0.20782150328159332, 0.01468425989151001, 0.017528634518384933, 0.021045571193099022, 0.0012233963934704661, -0.022923137992620468, 0.01043170876801014, -0.0013897853204980493, 0.01614147610962391, 0.020134810358285904, 0.027645079419016838, 0.01734648272395134, -0.01998068206012249, -0.0004148776351939887, 0.00022900369367562234, 0.023763839155435562, -0.04108230024576187, -0.014277920126914978, 0.00031154134194366634, 0.010992176830768585, 0.00793062150478363, -0.011125287972390652, 0.008091755211353302, 0.009443884715437889, 0.029676776379346848, 0.013149978592991829, -0.010333627462387085, 0.017640728503465652, 0.012834715656936169, 0.03830798342823982, -0.016281593590974808, -0.014754317700862885, 0.028836075216531754, 0.021227722987532616, -0.006266731768846512, -0.006736123934388161, 0.014032715931534767, -0.0004702676087617874, 0.006774656008929014, -0.007047884166240692, 0.002077234210446477, -0.011041218414902687, 0.013388177379965782, -0.03186260163784027, 0.010606855154037476, 0.03505726903676987, -0.006056556478142738, 0.0030370354652404785, -0.008624199777841568, 0.021017547696828842, -0.01170677412301302, 0.020947488024830818, 0.03575785458087921, 0.00483053270727396, -0.002359219593927264, 0.01468425989151001, 0.0075452993623912334, -0.019588353112339973, -0.01343721803277731, 0.013990680687129498, -0.015538972802460194, 0.009885253384709358, -0.01663188636302948, 0.00974513590335846, -0.027014553546905518, -0.016211533918976784, -0.0046343691647052765, 0.01926608569920063, 0.008848387748003006, -0.015440891496837139, -0.01192395482212305, -0.031442251056432724, -0.004623860120773315, -0.0026114301290363073, -0.010172492824494839, -0.02404407411813736, 0.011349475011229515, 0.04094218090176582, 0.03570180758833885, 0.02289511449635029, -0.012190177105367184, -0.019938645884394646, -0.029957009479403496, -0.0254452433437109, -0.014074750244617462, -0.0094298729673028, 0.04004543274641037, 0.00503019941970706, -0.022993195801973343, -0.02596367709338665, -0.014172832481563091, 0.0031035910360515118, -0.03060154803097248, -0.023077266290783882, -0.021451909095048904, -0.005657223053276539, 0.006333287339657545, 0.011727791279554367, -0.014347978867590427, -0.017066247761249542, 0.004319105762988329, 0.06479009240865707, 0.026986530050635338, 0.0318906232714653, -0.01995265856385231, -0.0018145148642361164, -0.010782001540064812, 0.03603808581829071, -0.025753501802682877, 0.0025343659799546003, 0.014474083669483662, -0.006431369576603174, 0.0031000880990177393, 0.0010175995994359255, -0.017304446548223495, 0.022334646433591843, -0.01342320628464222, -0.005156304687261581, 0.0015684344107285142, -0.005678240675479174, -0.01010243408381939, -0.01586124300956726, 0.013142973184585571, 0.0006370943738147616, -0.003993333783000708, -0.024716636165976524, -0.01720636524260044, 0.00733512407168746, -0.010901100933551788, -0.024464424699544907, 0.03606611117720604, -0.026636237278580666, 0.03631832078099251, -0.01343721803277731, -0.018397359177470207, -0.02530512586236, 0.0023889944422990084, 0.0018075089901685715, 0.00974513590335846, -0.0119940135627985, -0.004655386786907911, 0.005110766738653183, 0.00032620984711684287, -0.0038567199371755123, -0.00016868770762812346, -0.02358168736100197, 0.00832995492964983, 0.005758807994425297, -0.03051747754216194, -0.010242551565170288, 0.011384504847228527, 0.011181334964931011, 0.0035817401949316263, -0.01525873877108097, 0.02659420296549797, -0.009626036509871483, -0.006592503748834133, -0.018999863415956497, -0.002996751805767417, 0.0037796555552631617, -0.0316103920340538, -0.0015220206696540117, 0.031386204063892365, 0.002049210947006941, -0.01984056457877159, 0.009871241636574268, -0.1795739233493805, 0.035309478640556335, 0.004648380912840366, -0.009114609099924564, -0.0022033394780009985, -0.0038286964409053326, -0.0019055908778682351, 0.00016682677960488945, -0.04290381819009781, -0.011258399114012718, 0.006704597268253565, 0.00021510146325454116, -0.0342445895075798, -0.006988334469497204, -0.0017356991302222013, 0.01852346397936344, -0.01729043573141098, 0.01783689111471176, 0.05223561078310013, 0.031162016093730927, 0.0037306146696209908, -0.01748659834265709, -0.007881579920649529, 0.009843218140304089, 0.018481429666280746, 0.011188341304659843, -0.014838388189673424, 0.02390395663678646, -0.0022891610860824585, -0.016912119463086128, -0.032871443778276443, -0.021479932591319084, 0.0318906232714653, 0.01388559304177761, 0.021914295852184296, 0.007117942441254854, -0.013339136727154255, -0.0031035910360515118, 0.01162270363420248, 0.038055770099163055, 0.006984831299632788, 0.003164892317727208, 0.0010263568256050348, 0.011916949413716793, -0.010936129838228226, 0.005471568088978529, 0.03228295221924782, -0.01165072713047266, -0.020134810358285904, -0.0247866939753294, -0.00467290123924613, -0.039288800209760666, 0.005380492191761732, -0.011433545500040054, 0.011881919577717781, 0.009282750077545643, 0.0006988334353081882, -2.8570728318300098e-05, 0.015454903244972229, -0.0005928699974901974, 0.012813697569072247, -0.018999863415956497, -0.002262889174744487, 0.006217691116034985, 0.0028496291488409042, -0.01266657467931509, -0.01156665664166212, 0.019588353112339973, -0.008266901597380638, -0.0012987093068659306, -0.00252911145798862, -0.02656617946922779, 0.009682083502411842, 0.01825724169611931, 0.015552984550595284, 0.011916949413716793, -0.007615358103066683, 0.018369335681200027, 0.027490951120853424, 0.016267580911517143, -0.006932287476956844, 0.00940184947103262, 0.010810025036334991, 0.0017567166360095143, -0.033824238926172256, 0.0008569029159843922, -0.011111276224255562, 0.01156665664166212, -0.003846211126074195, -0.010081416927278042, 0.015791183337569237, -0.03620622679591179, -0.010235545225441456, -0.009843218140304089, 0.009941299445927143, 0.012533463537693024, 0.004746462684124708, 0.010305603966116905, 0.0018653073348104954, -0.017360493540763855, 0.006939293351024389, 0.006133620627224445, -0.014151815325021744, 0.00890443380922079, -0.0018583014607429504, -0.004746462684124708, -0.0012680586660280824, 0.003343541407957673, 0.028723981231451035, -0.021143652498722076, -0.020625218749046326, -0.0014677253784611821, 0.0010044636437669396, 0.012673581019043922, -0.0018302780808880925, 0.03693483769893646, 0.017556658014655113, 0.0006366565357893705, 0.011615697294473648, -0.003986327908933163, 0.048816755414009094, -0.028373688459396362, -0.007454223465174437, 0.01981254108250141, -0.011216363869607449, 0.005751802120357752, -0.11472778022289276, -0.03830798342823982, -0.0010710192145779729, 0.023175347596406937, -0.01388559304177761, 0.0013819037703797221, -0.007748468779027462, 0.03438470512628555, -0.005341959651559591, 0.01748659834265709, -0.0011691011022776365, -0.02089144103229046, -0.002709512133151293, 0.0072790770791471004, 0.017136307433247566, -0.01310794334858656, 0.001192745752632618, 0.012043054215610027, 0.01235131174325943, 0.048424430191516876, -0.008862398564815521, -0.030153173953294754, 0.00966106541454792, -0.003226193366572261, -0.0023049244191497564, -0.003509930334985256, -0.019392190501093864, 0.018845733255147934, -0.010957147926092148, 0.01123738195747137, 0.007958644069731236, -0.012274247594177723, 0.022881103679537773, -0.008519112132489681, -0.033936332911252975, -0.011370493099093437, -0.036682624369859695, -0.013072914443910122, 0.022026389837265015, -0.03315167874097824, -0.004967147018760443, 0.017108283936977386, 0.010718949139118195, -0.027603045105934143, -0.0055976733565330505, 0.01226724125444889, -0.016561826691031456, 0.033796217292547226, 0.019938645884394646, -0.0269024595618248, -0.03298353776335716, -0.01715031825006008, -0.016127465292811394, -0.035197384655475616, 0.0180610790848732, -0.01343721803277731, 0.024548495188355446, 0.0004628238966688514, -0.02138185128569603, -0.012155148200690746, -0.002854883437976241, -0.016407698392868042, -0.01608542911708355, 0.0006099467282183468, 0.010004352778196335, 0.007342129945755005, 0.002910930197685957, -0.031442251056432724, 0.011517615988850594, -0.011559651233255863, -0.008841381408274174, 0.00867324136197567, -0.02418419159948826, 0.000891494273673743, -0.02934049628674984, -0.01600135862827301, -0.013857569545507431, -0.029648752883076668, 0.016701944172382355, -0.014544142410159111, -0.0019301114371046424, -0.021535979583859444, 0.011615697294473648, -0.025080939754843712, 0.029620729386806488, 0.025515303015708923, 0.014992516487836838, -0.010711942799389362, 0.006469901651144028, -0.04256753996014595, -0.037775538861751556, -3.4810313081834465e-05, 0.0038602228742092848, -0.03432866185903549, 0.0010981668019667268, 0.01465623639523983, 0.00463086599484086, -0.003308512270450592, 0.0024187692906707525, -0.002744541270658374, -0.021479932591319084, -0.016449732705950737, -0.039288800209760666, 0.028121476992964745, -0.0035256934352219105, -0.00168140372261405, -0.002077234210446477, 0.01797700859606266, -0.008042714558541775, -0.004221023991703987, -0.0009291507303714752, 0.007741463370621204, -0.011657732538878918, 0.023343488574028015, -0.021704120561480522, -0.007363147102296352, -0.02813548967242241, -0.021115629002451897, 0.011195346713066101, 0.004441708326339722, 0.002856635022908449, 0.002014181576669216, -0.01943422481417656, -0.011776831932365894, 0.008049720898270607, 0.01431294996291399, 0.006683580111712217, 0.009591007605195045, -0.01649176888167858, 0.010936129838228226, -0.007629369385540485, -0.00227164663374424, 0.02426826022565365, -0.030237244442105293, -0.009450890123844147, 0.01754264533519745, -0.01122337020933628, -0.02453448250889778, -0.017136307433247566, 0.0254452433437109, 0.023021219298243523, -0.002567643765360117, -0.02052713744342327, -0.02782723307609558, -0.013850563205778599, -0.013430212624371052, 0.004175486043095589, -0.02069527842104435, -0.053917013108730316, -0.006680076941847801, 0.008056726306676865, 0.031498298048973083, 0.014263908378779888, -0.0018740645609796047, -0.00300550926476717, -0.02000870555639267, 0.008638211525976658, -0.004935620818287134, -0.008357977494597435, 0.026972519233822823, 0.015048563480377197, -0.002063222462311387, 0.04281974956393242, -0.014347978867590427, 0.0021542985923588276, -0.0316103920340538, -0.004918105900287628, -0.014333967119455338, -0.025375185534358025, 0.018299277871847153, 0.016505779698491096, -0.018593523651361465, -0.016043394804000854, -0.018327301368117332, 0.007846551015973091, 0.050021760165691376, -0.0028723981231451035, 0.013815534301102161, -0.00013322060112841427, -0.015679089352488518, -0.011615697294473648, 0.026398038491606712, 0.020429056137800217, -0.009927287697792053, -0.01995265856385231, 0.011377498507499695, 0.006984831299632788, 0.00432961480692029, -0.004935620818287134, -0.0025834068655967712, -0.012155148200690746, 0.030153173953294754, 0.013016867451369762, 0.009296761825680733, 0.00931777898222208, 0.012155148200690746, 0.0040248604491353035, 0.03278737515211105, 0.005177322309464216, 0.001833781017921865, 0.03337586298584938, 0.013283089734613895, 0.0015342809492722154, 0.007713439874351025, 0.00904455129057169, -0.036682624369859695, -0.03483308106660843, 0.01674397848546505, -0.04284777119755745, -0.03421656787395477, 0.022432727739214897, 0.04183892905712128, -0.005191334057599306, -0.008294925093650818, 0.029060261324048042, 0.02069527842104435, -0.027266765013337135, -0.004809515550732613, -0.012820703908801079, 0.0006103845662437379, -0.020401032641530037, 0.030377361923456192, 0.0015754402847960591, -0.003968813456594944, 0.01866358146071434, -0.01918201521039009, 0.03741123527288437, 0.02058318443596363, 0.026257922872900963, -0.006021527107805014, -0.006648550741374493, -0.016898108646273613, 0.011412528343498707, 0.0004249485209584236, -0.014025709591805935, -0.0063087670132517815, 0.007342129945755005, -0.014137803576886654, -0.021858248859643936, 0.004063392523676157, -0.009436878375709057, 0.08726485818624496, 0.036766696721315384, -0.01918201521039009, 0.0014178087003529072, -0.00042735677561722696, 0.002285658149048686, 0.007286082953214645, 0.006522445473819971, 0.03331981971859932, -0.022390693426132202, 0.035337503999471664, -0.0068342057056725025, 0.015454903244972229, -0.03553366661071777, -0.028247583657503128, -0.01751462183892727, 0.02753298729658127, 0.024926811456680298, -0.016898108646273613, -0.01467024814337492, 0.003142123343423009, -0.005478573963046074, 0.017066247761249542, 0.01688409596681595, -0.017878927290439606, -0.006774656008929014, 0.02445041388273239, 0.000348759931512177, -0.007089919410645962, -0.04307195916771889, 0.01004638709127903, 0.005047714337706566, -0.04234335198998451, -0.015819206833839417, -0.00565372034907341, -0.0002708198444452137, -0.007286082953214645, -0.01869160495698452, 0.012470411136746407, -0.0032752344850450754, 0.03076968900859356, 0.0029722314793616533, -0.02552931383252144, -0.03365609794855118, 0.004042374901473522, -0.011181334964931011, -0.0018933307146653533, -0.014768329448997974, -0.023427559062838554], "5ff101f1-86ec-4e47-ba3a-357c5941110b": [0.008186453022062778, 0.0015485514886677265, 0.009273771196603775, -0.005134947597980499, -0.015853799879550934, -0.00012067915668012574, 0.0013556401245296001, -0.004868379328399897, -0.06072145700454712, -0.03675836697220802, 0.01582573913037777, 0.021086957305669785, -0.0028445643838495016, -0.007765555754303932, 0.008509141393005848, -0.016499174758791924, 0.02965923212468624, -0.014997974969446659, -0.005868010222911835, -0.02046963945031166, 0.016765743494033813, -0.015194393694400787, -0.024818912148475647, 0.024706672877073288, -0.017074402421712875, 0.0038231508806347847, 0.019164858385920525, -0.01752335950732231, -0.006667715031653643, 0.01034705899655819, 0.018140675500035286, 0.009414070285856724, -0.005170022137463093, 0.030108189210295677, -0.011897364631295204, -0.017565447837114334, -0.0018361646216362715, 0.0007637533126398921, 0.03078162483870983, -0.012998712249100208, -0.0058960700407624245, 0.0181687343865633, 0.0127461738884449, -0.021606063470244408, -0.010340044274926186, 0.021507853642106056, -0.013489759527146816, 0.013146026991307735, 0.007807645481079817, 0.0018852693028748035, 0.0075621223077178, -0.003347887424752116, -0.015166333876550198, 0.017032312229275703, 0.0008439868688583374, -0.014745436608791351, -0.00246575684286654, 0.02822818048298359, 0.01630275696516037, -0.0010943330125883222, -0.004977110773324966, 0.016765743494033813, -0.006555475760251284, -0.0013556401245296001, -0.0060083093121647835, -0.008242572657763958, -0.0025832573883235455, -0.009456160478293896, 0.003481171792373061, -0.02459443360567093, 0.014036926440894604, 0.034822240471839905, 0.01640096679329872, 0.015559171326458454, 0.019543666392564774, -0.005675098858773708, 0.005706666503101587, -0.015222453512251377, 0.00016507066902704537, 0.008649440482258797, -0.000914574833586812, -0.0029304977506399155, -0.011574676260352135, 0.01518036425113678, -0.005362933501601219, 0.05227544903755188, 0.018000375479459763, 0.0025569512508809566, 0.000409278814913705, -0.006169653497636318, -0.011118704453110695, 0.00905630737543106, 0.024931151419878006, 0.020876508206129074, -0.004152853507548571, 0.014043941162526608, 0.003935390152037144, 0.010550493374466896, -0.009982281364500523, -0.007976004853844643, -0.003844195744022727, 0.017439179122447968, -0.04638288542628288, -0.0018572094850242138, -0.01456304732710123, -0.006965850945562124, -0.013594984076917171, -0.01748126931488514, 0.0017142797587439418, -0.025786977261304855, -0.010459299199283123, 0.03577627241611481, -0.021129045635461807, -0.013209161348640919, -0.002065904438495636, -0.02260218746960163, 0.01092930044978857, -0.010859151370823383, 0.002611317206174135, -0.029490873217582703, 0.035187017172575, -0.028606988489627838, 0.02142367511987686, -0.024818912148475647, 0.006790476851165295, 0.002479786751791835, -0.0020466132555156946, -0.004019569605588913, 0.012409456074237823, -0.004826289601624012, 0.0167376846075058, 0.03165147826075554, 0.017088431864976883, -0.0129846828058362, -0.009294816292822361, 0.024889063090085983, -0.018351124599575996, 0.0054436055943369865, -0.02960311248898506, -0.029575051739811897, 0.004275615327060223, 0.03628135100007057, 0.010936316102743149, -0.004324720241129398, 0.0037530013360083103, 0.03793688118457794, 0.03622522950172424, -0.0010294447420164943, 0.030024010688066483, -0.0027060192078351974, 0.022040991112589836, -0.003039229428395629, 0.0032531856559216976, 0.021339494735002518, -0.0011250234674662352, -9.820937702897936e-05, -0.010908256284892559, 0.015320663340389729, -0.0327177532017231, -0.007435852661728859, 0.015222453512251377, 0.008431976661086082, 0.0047386023215949535, -0.00033956769038923085, 0.013798417523503304, 0.04211779311299324, 0.019866354763507843, -0.022195318713784218, 0.003598672104999423, -0.009722728282213211, -0.011560646817088127, 0.026811160147190094, -0.019431427121162415, 0.016232607886195183, 0.013251250609755516, -0.002514861524105072, 0.015895890071988106, -0.01518036425113678, -0.018351124599575996, -0.028368480503559113, 0.006962343584746122, -0.01058556791394949, 0.02678309939801693, 0.024496225640177727, -0.03378402441740036, 0.01015765592455864, 0.03894703462719917, -0.018407244235277176, 0.013405580073595047, 0.0033917310647666454, 0.010571538470685482, -0.011700945906341076, -0.022321589291095734, -0.016555294394493103, -0.613724410533905, -0.01352483406662941, 0.03170759975910187, -0.017930226400494576, 0.0116518409922719, 0.005303306505084038, 0.006573013495653868, 0.02068008854985237, -0.009119442664086819, 0.019206948578357697, -0.013342445716261864, 0.035187017172575, 0.0025464289356023073, -0.011104675009846687, -0.02726011723279953, -0.023023083806037903, 0.005524277687072754, -0.011399302631616592, -0.0025551975704729557, -0.018140675500035286, -0.03302641212940216, 0.013503789901733398, 0.015432902611792088, -0.016695594415068626, -0.0059171151369810104, -0.009238696657121181, 0.014633197337388992, 0.008291677571833134, -0.013980806805193424, 0.0008295184816233814, -0.0346258208155632, 0.024299805983901024, -0.0026779593899846077, 0.001182020059786737, 0.045990049839019775, -0.007260479032993317, -0.022489948198199272, 0.005180544685572386, 0.023584280163049698, 0.03420492261648178, -0.03687060624361038, 0.006583535578101873, 0.012262142263352871, 0.006744879763573408, 0.003062028205022216, 0.01593797840178013, 0.015755590051412582, 0.0067133125849068165, 0.001512599759735167, -0.005215619225054979, 0.00799003429710865, -0.018154704943299294, -0.012963637709617615, 0.020399490371346474, -0.00012648841948248446, -0.02881743758916855, 0.02010486274957657, 0.00034351361682638526, -0.001524875988252461, 0.013307370245456696, -0.013875582255423069, 0.009414070285856724, -0.011322137899696827, -0.04411004111170769, -0.029575051739811897, 0.01034705899655819, 0.004051136784255505, -0.014549017883837223, 0.004945543594658375, -0.015026034787297249, -0.005275246687233448, 0.006011817138642073, -0.0023429952561855316, -0.020483670756220818, 0.0107960170134902, 0.0010610120370984077, 0.021086957305669785, -0.003112886566668749, 0.009280785918235779, 0.008972127921879292, -0.005696143954992294, -0.01700425148010254, 0.011188854463398457, -0.00793391466140747, 0.015082154422998428, 0.008565261028707027, -0.03372790664434433, -0.006281892769038677, -0.008509141393005848, 0.01588185876607895, -0.0027796761132776737, 0.01898247003555298, -0.001169743831269443, -0.007548092398792505, 0.0035653512459248304, 0.045513030141592026, -6.280577508732677e-05, -0.0005844334955327213, 0.025043390691280365, -0.03953628987073898, -0.02735832706093788, -0.007660331670194864, 0.018954409286379814, -0.0006843965966254473, 0.03905927389860153, 0.0424264520406723, -0.01908067986369133, -4.415174771565944e-06, 0.027007579803466797, -0.01037511881440878, 0.015741560608148575, -0.0038547180593013763, -0.014506927691400051, -0.019950533285737038, 0.022644275799393654, -0.03406462445855141, 0.016877982765436172, -0.006148608401417732, -0.0003211534349247813, -0.017467239871621132, 0.002325457753613591, 0.00033956769038923085, 0.021409643813967705, -0.014170209877192974, 0.026797130703926086, 0.028564898297190666, 0.010311984457075596, 0.021339494735002518, 0.02352816052734852, -0.012444531545042992, 0.01494185533374548, -0.01822485402226448, 0.022111140191555023, -0.009252726100385189, 0.022868754342198372, 0.012935577891767025, 0.007674361579120159, 0.0001139930245699361, 0.013398565351963043, -0.04472735524177551, -0.007393762934952974, -0.0007045646198093891, 0.005271739326417446, -0.032212674617767334, -0.016527235507965088, -0.04472735524177551, -0.03563597425818443, -0.009610489010810852, 0.014534987509250641, 0.0022360170260071754, -0.02143770456314087, -0.01891232095658779, -0.008887948468327522, 0.03987300768494606, 0.0017449702136218548, 0.005155992228537798, -0.0018379183020442724, -0.057747114449739456, -0.030585207045078278, -0.020132921636104584, -0.012739159166812897, 0.032577455043792725, -0.021998900920152664, -0.008116303943097591, -0.00024486580514349043, -0.017383059486746788, -0.017088431864976883, 0.002092210575938225, 0.0009856012184172869, -0.035579852759838104, 0.0050753201358020306, -0.005026215687394142, -0.010950345546007156, -0.003195312339812517, -0.03299834951758385, 0.013026772066950798, -0.01896844059228897, -0.009421085007488728, -0.0060258470475673676, -0.005724203772842884, 0.011658855713903904, 0.016176488250494003, -0.012479606084525585, 0.008572275750339031, 0.02372458018362522, -0.006565998308360577, 0.020764268934726715, 0.009729743003845215, -0.023542189970612526, 0.02822818048298359, -0.009210636839270592, -0.012423486448824406, -0.023612340912222862, 0.006088981404900551, -0.01699022203683853, -0.008621380664408207, -0.03047296777367592, -0.010789001360535622, -0.01732693985104561, 0.012977668084204197, 0.011855274438858032, 0.012269156984984875, 0.0049946485087275505, 0.004349272232502699, 0.015517082065343857, -0.0033654249273240566, -0.00010127841960638762, -0.01957172527909279, 0.015853799879550934, -0.00209045666269958, -0.0015652119182050228, -0.00042878914973698556, -0.015460962429642677, -0.028200121596455574, -0.025590557605028152, -0.00034570577554404736, 0.01833709329366684, 0.019094709306955338, -0.018673811107873917, 0.01972605474293232, 0.011729005724191666, 0.0008549477206543088, 0.042258091270923615, -0.005019200500100851, 0.0072534638457000256, -0.006797492038458586, 0.026741011068224907, 0.022475916892290115, 0.03720732405781746, -0.0037389714270830154, -0.003595164744183421, 0.03128670156002045, 0.029294453561306, 0.0010750419460237026, 0.03454164043068886, 0.012949608266353607, 0.06453759223222733, -0.011413333006203175, 0.03240909427404404, -0.01957172527909279, 0.010515418834984303, 0.007148239761590958, 0.007288538850843906, -0.0151242446154356, 0.04178107529878616, -0.02084844745695591, 0.025506379082798958, -0.004917483776807785, -0.023598309606313705, 0.0070500303991138935, 0.008460036478936672, 0.0029059452936053276, -0.017565447837114334, -0.017439179122447968, 0.0018186272354796529, -0.013061847537755966, 0.012879458256065845, 0.013889611698687077, 0.008873919025063515, 0.019094709306955338, 0.0005835565971210599, -0.007800630759447813, 0.03675836697220802, -0.010774971917271614, -0.0013345952611416578, 0.011301093734800816, -0.01349677424877882, -0.0224478580057621, -0.015264543704688549, -0.025913245975971222, 0.0030059085693210363, -0.009336905553936958, -0.009743773378431797, -0.0035197539255023003, -0.010213775560259819, 0.013882596977055073, -0.002527137752622366, -0.001623085350729525, 0.0028708705212920904, 0.0329141728579998, -0.04346466436982155, -0.005012185778468847, 0.016807833686470985, 0.022686365991830826, -0.009666608646512032, -0.024818912148475647, 0.004889423958957195, -0.0016204547137022018, -0.019908443093299866, 0.02149382419884205, -0.014450808055698872, 0.017775896936655045, -0.02501533180475235, 0.008179438300430775, -0.008838843554258347, 0.026474442332983017, 0.029322514310479164, -0.02046963945031166, -0.008852873928844929, 0.010697807185351849, -0.001867731916718185, 0.017018282786011696, -0.010178700089454651, -0.011132734827697277, 0.04705632105469704, 0.008705560117959976, -0.01854754239320755, -0.03720732405781746, -0.012507665902376175, 0.006685252767056227, 0.009147502481937408, -0.018533512949943542, -0.010838106274604797, 0.005141962319612503, 0.010087505914270878, -0.016316786408424377, 0.014605137519538403, -0.01309692207723856, 0.02581503614783287, -0.0039739725179970264, -0.022644275799393654, -0.005692636594176292, -0.006587043404579163, 0.020820388570427895, 0.06756804883480072, 0.05937458202242851, 0.017775896936655045, 0.01609230786561966, -0.0033461337443441153, 0.009526309557259083, -0.013433639891445637, -0.008887948468327522, 0.03179178014397621, -0.006741372402757406, -0.01026287954300642, 0.003396992338821292, 0.009442130103707314, -0.028129972517490387, 0.005966219585388899, 0.003784568514674902, 0.014394688419997692, -0.01786007732152939, -0.014303494244813919, -0.002837549429386854, 0.016583355143666267, -0.022097110748291016, 0.02821415103971958, 0.022040991112589836, 0.02623593434691429, 0.02993983030319214, 0.04018166661262512, -0.0004656176606658846, 0.024089356884360313, -0.03288611024618149, 0.0039424048736691475, 0.02811594121158123, -0.0028866541106253862, 0.004805244505405426, -0.03905927389860153, 0.03406462445855141, 0.012935577891767025, 0.001337225898168981, -0.0019256053492426872, 0.003770538605749607, -0.010732881724834442, 0.03501865640282631, 0.006772939581423998, -0.006629133131355047, 0.029210275039076805, -0.00799003429710865, 0.010487359017133713, 0.01130810845643282, -0.01721470057964325, -0.017761867493391037, 0.020231131464242935, 0.013517819344997406, -0.014064986258745193, -0.010487359017133713, 0.0071622696705162525, 0.010817061178386211, -0.005110395140945911, -0.013503789901733398, -0.011827214621007442, -0.015629321336746216, -0.02602548524737358, 0.0007032493012957275, 0.002167621161788702, -0.0164570864289999, -0.021774422377347946, -0.007828690111637115, -0.017018282786011696, -0.012276172637939453, -0.03431716188788414, 0.02849474921822548, -0.038610316812992096, -0.022896815091371536, -0.03100610338151455, 0.021886661648750305, 0.014983945526182652, 0.0037389714270830154, 0.006067936774343252, 0.012514680624008179, 0.005317336414009333, -0.0047596474178135395, -0.011616766452789307, -0.027554744854569435, 0.025001302361488342, -0.018673811107873917, -0.023051144555211067, -0.0023482562974095345, -0.04136017709970474, 0.012177962809801102, -0.01790216565132141, -0.0030900880228728056, -0.018196795135736465, -0.012493635527789593, -0.010620642453432083, 0.003135685110464692, 0.01908067986369133, 0.022012930363416672, 0.014366628602147102, 0.02180248126387596, 0.009961237199604511, -0.021241284906864166, -0.01106959953904152, -0.013377520255744457, -0.005334873683750629, -0.024229656904935837, 0.00015323293337132782, -0.013139011338353157, -0.006993910763412714, -0.009554369375109673, -0.011055570095777512, -0.02918221428990364, 0.013861551880836487, -0.023963088169693947, -0.012970652431249619, -0.007695406209677458, 0.01352483406662941, -0.0020729193929582834, 0.02003471367061138, 0.0297714713960886, 0.020918598398566246, -0.006573013495653868, -0.006278385408222675, -0.024440106004476547, 0.05025514215230942, 0.006972865667194128, -0.01355289388448, 0.016386935487389565, 0.006481818854808807, -0.025801006704568863, -0.04747721925377846, 0.01763559877872467, 0.007197344209998846, 0.003675836604088545, 0.01480155624449253, -0.02271442674100399, -0.022574126720428467, -0.030557146295905113, 0.006790476851165295, -0.005205097142606974, -0.013833492062985897, -0.00932287611067295, -0.0422300323843956, 0.01662544533610344, -0.004542183596640825, -0.01710246130824089, 0.01929112710058689, -0.034990597516298294, -0.03153923898935318, 0.015012005344033241, -0.014149165712296963, 0.024552345275878906, -0.015012005344033241, -0.009610489010810852, -0.025099510326981544, -0.019852323457598686, -0.015671411529183388, -0.014661257155239582, -0.005738233681768179, -0.011518556624650955, 0.021367555484175682, 0.01913679949939251, 0.03313865140080452, 0.008207498118281364, 0.007772570941597223, 0.00940705556422472, -0.003598672104999423, -0.0038897928316146135, 0.0017511083278805017, -0.020764268934726715, 0.0030059085693210363, 0.0202591922134161, 0.010964375920593739, 0.004363302141427994, -0.0012775987852364779, 0.0092246662825346, -0.010725867003202438, 0.030613265931606293, -0.013061847537755966, -0.023640399798750877, 0.0011057324009016156, -0.041668836027383804, -0.012844383716583252, 0.0026919892989099026, -0.017874106764793396, -0.017649628221988678, -0.035944633185863495, 0.0033549023792147636, 0.020343370735645294, 0.007344658486545086, 0.008621380664408207, -0.00906332302838564, 0.029743410646915436, -0.012437515892088413, 0.0027744148392230272, -0.012444531545042992, 0.029378633946180344, -0.0016783281462267041, -0.023598309606313705, -0.0464109443128109, 0.006643163040280342, 0.002941020065918565, 0.018996499478816986, 0.01258483063429594, 0.0003086580545641482, -0.002288629300892353, 0.00980690773576498, 0.015895890071988106, -0.056905318051576614, -0.006422191858291626, 0.007702421396970749, -0.014787525869905949, -0.0026972503401339054, -0.00400904705747962, -0.017298880964517593, -0.008544215932488441, -0.00018140237079933286, 0.016064248979091644, 0.014212300069630146, 0.023822788149118423, -0.025632647797465324, -0.005141962319612503, 0.013244235888123512, -0.012683039531111717, 0.023612340912222862, 0.028663108125329018, 0.01923500746488571, -0.001445080852136016, -0.012142888270318508, -0.039732709527015686, -0.0388067327439785, 0.0015336446231231093, 0.012676024809479713, 0.021746361628174782, 0.007765555754303932, 0.0033285964746028185, -0.010971390642225742, 0.018617691472172737, 0.030697446316480637, -0.019206948578357697, -0.028101911768317223, 0.010115565732121468, 0.019375307485461235, 0.003644269425421953, -0.011574676260352135, -0.013167071156203747, -0.026376232504844666, 0.016597384586930275, -0.0020220610313117504, -0.0001302151067648083, 0.025506379082798958, -0.012269156984984875, -0.01315304171293974, 0.04004136472940445, 0.011841244995594025, 0.033587608486413956, 0.0038512106984853745, -0.012598860077559948, 0.0026306083891540766, -0.0038897928316146135, 0.00940705556422472, 0.0017274328274652362, -0.011932439170777798, 0.011637811549007893, -0.01757947914302349, -0.005994279403239489, -0.0067027900367975235, 0.019305158406496048, 0.016106337308883667, 0.0016949886921793222, 0.00879675429314375, 0.040321964770555496, -0.0043282276019454, -0.0015257528284564614, 0.009126457385718822, -0.01694813184440136, 0.00871257483959198, -0.02233561873435974, -0.01592394895851612, -0.004724572412669659, -0.01076795719563961, 0.008438991382718086, 0.019010528922080994, 0.00822854321449995, -0.024875031784176826, 0.00227810675278306, -0.0026586682070046663, -0.014149165712296963, 0.02752668596804142, -0.012570800259709358, 0.01467528659850359, -0.03757210075855255, -0.010494373738765717, -0.004005539696663618, -0.00530681386590004, 0.01593797840178013, -0.013139011338353157, -0.009680639021098614, -0.013244235888123512, 0.015278573147952557, -0.007120179943740368, 0.005776816047728062, -0.02052575908601284, -0.012647964991629124, -0.057213976979255676, 0.01082407683134079, -0.037010904401540756, -0.002276353072375059, 0.020609939470887184, -0.02393502928316593, -0.02630608342587948, 0.006808014586567879, 0.021620092913508415, 0.015573201701045036, -0.014050955884158611, 0.009792878292500973, 0.024832943454384804, 0.015082154422998428, 0.00018195041047874838, 0.004889423958957195, -0.026334142312407494, 0.021816512569785118, -0.0053208437748253345, 0.023696519434452057, 0.012563785538077354, 7.902785728219897e-05, -0.0026007946580648422, -0.033222828060388565, 0.0037319562397897243, 0.005394500680267811, -0.04164077714085579, 0.003098856657743454, 0.008263617753982544, 0.0039739725179970264, -0.01090124063193798, -0.007983019575476646, -0.008831828832626343, -0.026474442332983017, -0.016555294394493103, 0.020722178742289543, -0.009687653742730618, 0.00336016365326941, -0.0008830075385048985, -0.01020675990730524, 0.0029831097926944494, 0.00897914357483387, -0.01662544533610344, -0.03644970804452896, -0.012893488630652428, -0.00932287611067295, -0.030978044494986534, -0.023163383826613426, 0.0016178240766748786, 0.026684891432523727, 0.017832016572356224, -0.028396539390087128, -0.028929676860570908, -0.02554846741259098, -0.04354884475469589, -0.006502863951027393, -0.008516156114637852, 0.02121322602033615, 0.02667086012661457, -0.01044526882469654, -0.016022158786654472, 0.007849735207855701, -0.005938159767538309, 0.025997424498200417, -0.036590009927749634, -0.013131996616721153, -0.0075200325809419155, -0.02566070668399334, 0.04301570728421211, -0.002914713928475976, -0.04217391461133957, 0.004573751240968704, 0.0021062404848635197, 0.013047817163169384, 0.0031163939274847507, 0.003386469790711999, -0.00138369994238019, 0.01098542008548975, 0.0032672155648469925, 0.023710548877716064, 0.005590919405221939, 0.015138274058699608, 0.0018116122810170054, -0.02522578090429306, -0.00269900425337255, -0.006636147852987051, -0.016386935487389565, -0.006050399038940668, 0.004370317328721285, 0.0059065925888717175, 0.007863765582442284, -0.0008189960499294102, -0.012851398438215256, -0.025786977261304855, -0.0035653512459248304, -0.029098035767674446, 0.012283187359571457, 0.0032794917933642864, -0.005846965592354536, 0.025422198697924614, -0.0012907518539577723, 0.02309323288500309, 0.005583904683589935, 0.00038998769014142454, 0.005345396231859922, 0.0048508415929973125, 0.016372906044125557, 0.003612702013924718, 0.011202883906662464, -0.012241097167134285, 0.014050955884158611, -0.018505452200770378, -0.03572015464305878, -0.005875025410205126, -0.0021448226179927588, -0.037123143672943115, 0.003025199519470334, 0.0018116122810170054, -0.008298692293465137, 0.001345117692835629, -0.02522578090429306, -0.002367547480389476, 0.017200671136379242, 0.004212480969727039, 0.0013012742856517434, -0.008558245375752449, 0.00871257483959198, 0.00018151197582483292, -0.02768101543188095, -0.0067238351330161095, -0.016835892572999, 0.025941304862499237, -0.01961381547152996, 0.02623593434691429, 0.1990002542734146, 0.02122725546360016, 0.012767218984663486, 0.0284386295825243, -0.0011688669910654426, -0.012893488630652428, 0.017733806744217873, -0.006460774224251509, 0.003446097020059824, 0.014036926440894604, 0.02592727541923523, 0.01752335950732231, -0.021143076941370964, 0.00017362015205435455, 0.006215250585228205, 0.012220053002238274, -0.03779657930135727, -0.02208307944238186, 0.00559793459251523, 0.0064677889458835125, 0.0164570864289999, -0.00652040122076869, 0.009589443914592266, 0.0041774059645831585, 0.031230581924319267, 0.017088431864976883, 0.008761679753661156, 0.008382871747016907, 0.01167990081012249, 0.040321964770555496, -0.01470334641635418, 0.0003856033436022699, 0.031342823058366776, 0.01662544533610344, 0.005373456049710512, 0.003558336291462183, 0.007919885218143463, 0.00820048339664936, 0.004268600605428219, 0.0016932348953559995, 0.0009259741054847836, 0.001557320123538375, 0.010038401000201702, -0.03454164043068886, 0.01672365330159664, 0.038133297115564346, 0.0004276930703781545, 0.0015134767163544893, -0.0011109935585409403, 0.020539790391921997, -0.009273771196603775, 0.021718302741646767, 0.0363374687731266, 0.006671222858130932, -0.005868010222911835, 0.029378633946180344, 0.004443974234163761, 0.004510616417974234, -0.011371242813766003, 0.03945210948586464, -0.022475916892290115, 0.013721252791583538, 0.004486063960939646, 0.005099872592836618, -0.024945182725787163, -0.002292136661708355, -0.011336168274283409, 0.013195130974054337, 0.006832566577941179, -0.008986158296465874, -0.013777372427284718, -0.023486070334911346, 0.0007093873573467135, -0.010774971917271614, -0.007428837940096855, -0.025955336168408394, 0.0319601371884346, 0.03344730660319328, 0.018533512949943542, 0.01839321292936802, -0.008852873928844929, -0.013903642073273659, -0.016807833686470985, -0.02115710638463497, -0.0057943533174693584, -0.0077374959364533424, 0.040013305842876434, 0.007856749929487705, -0.01972605474293232, -0.025155629962682724, -0.013854537159204483, 0.0013258266262710094, -0.027652954682707787, -0.017649628221988678, -0.02058187872171402, -0.008642424829304218, 0.005327858962118626, -0.000926851003896445, -0.007372718304395676, -0.016527235507965088, 0.002404375933110714, 0.07278718054294586, 0.024383986368775368, 0.0327177532017231, -0.013503789901733398, -0.018351124599575996, -0.004201958421617746, 0.030501026660203934, -0.013377520255744457, -0.006864134222269058, 0.00024442735593765974, -0.016835892572999, 0.005741741042584181, -0.0027200491167604923, -0.011721991002559662, 0.01277423370629549, -0.009722728282213211, -0.011792140081524849, 0.01306886225938797, -0.01887023076415062, 0.0033057976979762316, -0.028985796496272087, 0.007800630759447813, 0.003896807786077261, -0.001561704440973699, -0.025590557605028152, -0.025099510326981544, 0.008067199029028416, -0.0035530750174075365, -0.01976814493536949, 0.03521507605910301, -0.01264095026999712, 0.025646677240729332, -0.01186229009181261, -0.022995024919509888, -0.027723103761672974, -0.006443236488848925, 0.005910099949687719, 0.013756328262388706, -0.011434377171099186, 0.0007111410959623754, -0.00043733863276429474, 0.002214972162619233, 0.0037389714270830154, -0.01197452936321497, -0.028873557224869728, 0.001512599759735167, 0.0001435873709851876, -0.024945182725787163, -0.01919291913509369, 0.014843645505607128, 0.00804615393280983, -0.009357950650155544, -0.013398565351963043, 0.03325089067220688, -0.014296479523181915, -0.0006892193923704326, -0.018561571836471558, -0.011336168274283409, 0.004801737144589424, -0.04526049271225929, 0.019333217293024063, 0.03597269207239151, -0.003277737880125642, -0.03094998374581337, 0.018140675500035286, -0.17947062849998474, 0.025043390691280365, 0.012844383716583252, 0.0049946485087275505, -0.007954959757626057, -0.0005809260183013976, 0.01620454713702202, 0.00020770845003426075, -0.03555179387331009, -0.006779954768717289, 0.006962343584746122, 0.017467239871621132, -0.038834795355796814, -0.02075023762881756, -0.0037740461993962526, 0.014233345165848732, -0.01694813184440136, 0.03187595680356026, 0.04388556256890297, 0.01689201220870018, -0.006611595395952463, -0.011350197717547417, 0.008887948468327522, 0.00637308694422245, 0.003935390152037144, 0.022363677620887756, -0.015517082065343857, 0.020062772557139397, 0.0019010530086234212, -0.019178887829184532, -0.027189968153834343, -0.025506379082798958, 0.03602881357073784, 0.014001850970089436, 0.013349460437893867, 0.003798598423600197, -0.01473140623420477, -0.01173602044582367, 0.019754115492105484, 0.031146403402090073, 0.016429025679826736, 0.007702421396970749, -0.00246575684286654, 0.0048718866892158985, -0.008593320846557617, -0.015573201701045036, 0.017228730022907257, 0.0008203113684430718, -0.017200671136379242, -0.013293340802192688, -0.003484679153189063, -0.030697446316480637, -0.01496991515159607, -0.013616029173135757, 0.009940192103385925, 0.008551230654120445, 0.01050138846039772, 0.006513386033475399, 0.026755040511488914, -0.0073797330260276794, 0.007639286573976278, -0.01875799149274826, 0.010971390642225742, 0.006709804758429527, -0.0017686457140371203, -0.01494185533374548, 0.001704634167253971, 0.023906968533992767, -0.019094709306955338, 0.006159130949527025, 0.00011826776608359069, -0.013559909537434578, 0.017172610387206078, 0.01029093936085701, 0.030557146295905113, 0.014450808055698872, -0.008137348107993603, 0.008775709196925163, 0.014899765141308308, 0.032745812088251114, -0.0029357587918639183, 0.02453831396996975, 0.00657652085646987, 0.001516984193585813, -0.01496991515159607, -0.0024920629803091288, -0.0033549023792147636, 0.011981544084846973, 0.008551230654120445, -0.015517082065343857, 0.0034899404272437096, -0.02918221428990364, -0.004429944325238466, -0.009568399749696255, 0.027596835047006607, 0.020595910027623177, 0.0022956442553550005, -0.0033934847451746464, 0.013209161348640919, -0.01934724673628807, -0.01485767588019371, -0.0008970374474301934, -0.006587043404579163, 0.015306632965803146, 0.013931701891124249, -0.003893300425261259, 7.409547106362879e-05, -0.0034022533800452948, 0.03254939243197441, -0.03249327465891838, -0.02912609465420246, 0.0002494693617336452, 0.003100610338151455, 0.025674737989902496, -0.001424912828952074, 0.038666434586048126, 0.027484595775604248, 0.005061290226876736, 0.025997424498200417, -0.008537201210856438, 0.05892562493681908, -0.03083774447441101, -0.0073236133903265, 0.012935577891767025, -0.0024061298463493586, -0.0032549393363296986, -0.11863692849874496, -0.03574821352958679, 0.005987264681607485, 0.024412045255303383, -0.012142888270318508, -0.005594427231699228, 0.0030304607935249805, 0.031090283766388893, 0.0017020036466419697, 0.016316786408424377, 0.007828690111637115, -0.01122392900288105, 0.0062327878549695015, 0.01349677424877882, 0.031174462288618088, -0.018631722778081894, 0.0062538329511880875, -0.0006019708816893399, 0.008116303943097591, 0.042510632425546646, -0.008600335568189621, -0.031034164130687714, 0.016667533665895462, 0.0011171316727995872, -0.008235557936131954, 0.007926899939775467, -0.022265469655394554, 0.01092930044978857, -0.0017791681457310915, -0.005120917689055204, 0.011448407545685768, -0.005001663230359554, 0.024075327441096306, -0.026755040511488914, -0.02912609465420246, 0.0014029911253601313, -0.025001302361488342, -0.006741372402757406, 0.02069411799311638, -0.03201625868678093, -0.002941020065918565, 0.013651103712618351, 0.013882596977055073, -0.008305707015097141, 0.0029445276595652103, 0.008810783736407757, -0.02634817361831665, 0.04130405932664871, 0.012935577891767025, -0.02480488270521164, -0.029434753581881523, -0.004685990512371063, -0.01576961949467659, -0.04778587818145752, 0.0023693011607974768, -0.02122725546360016, 0.023387862369418144, -0.010536462999880314, -0.02960311248898506, -0.01945948600769043, -0.013342445716261864, -0.011939453892409801, 0.0016599138034507632, 0.006913238670676947, 0.020511729642748833, -4.0527807868784294e-05, -0.00020189919450785965, -0.015685440972447395, 0.006211743224412203, -0.008242572657763958, -0.024117417633533478, 0.014289464801549911, -0.0206379983574152, 0.00338822347112, -0.024075327441096306, -0.021297404542565346, -0.009049292653799057, -0.016274696215987206, 0.02073620818555355, -0.014450808055698872, -0.018295004963874817, -0.01277423370629549, 0.01352483406662941, -0.025085480883717537, 0.010136610828340054, 0.02855086885392666, 0.024622494354844093, -0.01480155624449253, 0.003147961338981986, -0.04265093058347702, -0.010311984457075596, 0.003612702013924718, 0.0007093873573467135, -0.033671785145998, -0.0015353984199464321, 0.03030460886657238, 0.004254570696502924, -0.0197821743786335, 0.01506812497973442, -0.006674730218946934, -0.015601261518895626, -0.022475916892290115, -0.036000750958919525, 0.03190401941537857, -0.0129846828058362, -0.009505264461040497, -0.01280229352414608, 0.0004849088145419955, -0.0007869903347454965, -0.010648702271282673, 0.007449882570654154, 0.0076112267561256886, -0.0021079941652715206, 0.031202523037791252, -0.010382134467363358, -0.016218576580286026, -0.015264543704688549, -0.008972127921879292, 0.014205285347998142, -0.0013424871722236276, -0.00412830151617527, 0.002386838663369417, -0.007218389306217432, -0.004363302141427994, 0.003023445839062333, 0.02075023762881756, 0.004454496782273054, 0.00989108718931675, -0.01871590130031109, 0.013265280984342098, -0.002879639156162739, -0.0035372914280742407, 0.018182765692472458, -0.030585207045078278, -0.003400499699637294, -0.0032303871121257544, -0.009638548828661442, -0.02619384415447712, -0.007639286573976278, 0.02132546529173851, 0.011181838810443878, 0.009147502481937408, -0.015390812419354916, -0.027933552861213684, -0.012423486448824406, -0.02661474049091339, -0.010213775560259819, -0.010396163910627365, -0.05115305632352829, -0.009926161728799343, 0.013756328262388706, 0.02117113582789898, 0.024622494354844093, 0.005580397322773933, -0.009000187739729881, -0.022097110748291016, 0.010466313920915127, -0.00692376121878624, -0.005492710042744875, 0.03667418658733368, 0.017607538029551506, 0.005889055319130421, 0.042145851999521255, -0.016078278422355652, 0.005271739326417446, -0.03277387097477913, 0.007583166938275099, -0.02822818048298359, -0.02619384415447712, 0.017228730022907257, 0.0020273220725357533, -0.009245711378753185, -0.006951821036636829, -0.02373860962688923, 0.015699470415711403, 0.03790881857275963, -0.002563966205343604, 0.020806357264518738, 0.006565998308360577, -0.0159800685942173, -0.001249538967385888, 0.030557146295905113, 0.024173537269234657, -0.010220790281891823, -0.02655862085521221, 0.0129846828058362, 0.00810227356851101, 0.009484220296144485, -0.007197344209998846, -0.010087505914270878, -0.012086768634617329, 0.020862476900219917, 0.01871590130031109, 0.0072674937546253204, 0.0018028435297310352, -0.0018589631654322147, 0.006899208761751652, 0.035579852759838104, -0.002067658118903637, -0.002264076843857765, 0.02357025071978569, 0.018407244235277176, -0.00370740401558578, -0.0010969636496156454, 0.01467528659850359, -0.028522809967398643, -0.03201625868678093, 0.017116490751504898, -0.035832393914461136, -0.03507477790117264, 0.018407244235277176, 0.022518007084727287, -0.004847334232181311, -0.0009198360494337976, 0.03504671901464462, 0.008894963189959526, -0.03030460886657238, -0.0028094896115362644, -0.012935577891767025, -0.0054436055943369865, -0.030669385567307472, 0.029013855382800102, 0.008109288290143013, -0.005134947597980499, 0.0224478580057621, -0.006057414226233959, 0.03504671901464462, 0.0010706576285883784, 0.01700425148010254, -0.01520842406898737, -0.005755770951509476, -0.024566374719142914, 0.021044867113232613, -0.005285769235342741, -0.009841982275247574, -0.005517262499779463, 0.0023710550740361214, -0.023766668513417244, -0.018140675500035286, 0.015292603522539139, -0.0026007946580648422, 0.0829448327422142, 0.027652954682707787, -0.011392287909984589, -0.0033285964746028185, 0.00262534711509943, 0.015797680243849754, 0.00747092766687274, 0.004815767053514719, 0.015474991872906685, -0.018351124599575996, 0.03479417786002159, 0.0008965990273281932, 0.015685440972447395, -0.05656860023736954, -0.009933177381753922, -0.01672365330159664, 0.011581691913306713, 0.03684254735708237, -0.019683964550495148, -0.014689316973090172, 0.0026428846176713705, -0.0006094242562539876, 0.021872632205486298, 0.009933177381753922, -0.022896815091371536, -0.01271811407059431, 0.0254923477768898, -0.00027774838963523507, -0.005762786138802767, -0.05084439739584923, 0.01473140623420477, 0.005390993319451809, -0.027512656524777412, -0.013616029173135757, -0.006513386033475399, 0.0018870230996981263, 0.0002314935263711959, -0.00906332302838564, 0.017130522057414055, -0.0007558614597655833, 0.017649628221988678, -0.008438991382718086, -0.023387862369418144, -0.025913245975971222, -0.002928743837401271, -0.013019757345318794, -0.010038401000201702, -0.03036072850227356, -0.012900503352284431], "93a1d2f6-0110-4308-8aa6-18f9893d432d": [0.0014052924234420061, 0.0026006584521383047, 0.01791834644973278, -0.006925836205482483, -0.010201381519436836, 0.0073977368883788586, -0.013164640404284, 0.006030612625181675, -0.059015341103076935, -0.036058761179447174, 0.01289399154484272, 0.021082855761051178, 0.0009498735889792442, -0.00811946764588356, 0.0074324351735413074, 0.00798761285841465, 0.03253338485956192, -0.02126328833401203, 0.003436894156038761, -0.025885138660669327, 0.003907059784978628, -0.011679541319608688, -0.014545643702149391, 0.012179200537502766, -0.004243636038154364, 0.004084022715687752, 0.01934792660176754, -0.0198892243206501, -0.0010878003668040037, 0.0028088497929275036, 0.011575445532798767, 0.001099077402614057, 0.0038654215168207884, 0.02047216147184372, -0.01739092729985714, 0.006103479769080877, 0.005409508477896452, 0.004843921400606632, 0.029091287404298782, -0.003681519068777561, 0.00666212709620595, 0.02041664347052574, 0.015253494493663311, -0.015531083568930626, -0.004705127328634262, 0.021721309050917625, -0.02470538765192032, 0.019278530031442642, 0.0077794212847948074, 0.01571151614189148, 0.015489445067942142, 0.012102863751351833, -0.01315770111978054, 0.0018685184186324477, -0.00498618558049202, 0.0003801662824116647, -0.0045004053972661495, 0.036336351186037064, 0.004843921400606632, -0.004420598968863487, -0.0017600853461772203, 0.0152812534943223, -0.002541670808568597, 0.0021235530730336905, -0.009660083800554276, -0.0008440429228357971, -0.010902293026447296, -0.01245678961277008, 0.010583066381514072, -0.025857379660010338, 0.010617764666676521, 0.027342479676008224, 0.013504686765372753, 0.028730422258377075, 0.025912897661328316, 0.0019882284104824066, 0.005059052724391222, 0.0006406225147657096, -0.006388008128851652, -0.003653760300949216, 0.01105496659874916, 0.006453935522586107, -0.032394591718912125, 0.012137562967836857, 0.004836981650441885, 0.047828517854213715, 0.014122321270406246, 0.004993125330656767, 0.00706810038536787, -0.011957129463553429, -0.015031424351036549, 0.0073005808517336845, 0.037169117480516434, 0.010451211594045162, -0.0018997471779584885, 0.016599800437688828, -0.004125660751014948, 0.009354736655950546, -0.015836430713534355, -0.013442229479551315, -0.010485909879207611, 0.008882835507392883, -0.04199915751814842, -0.0047502354718744755, -0.018667835742235184, 0.00227449182420969, -0.02210993319749832, -0.014726076275110245, -0.005128449760377407, -0.02435840107500553, 0.009458832442760468, 0.029202323406934738, -0.01290093082934618, -0.006256153807044029, 0.009444952942430973, -0.005097221117466688, 0.0032772806007415056, -0.007786361034959555, 0.0015900622820481658, -0.0157253947108984, 0.05135389417409897, -0.02184622548520565, 0.019417325034737587, -0.030923372134566307, 0.0009177773608826101, 0.012852353043854237, -0.013393650762736797, -0.006346370093524456, 0.019792068749666214, 0.004167299252003431, 0.016363849863409996, 0.02159639447927475, 0.023664429783821106, 0.009562928229570389, -0.021124493330717087, 0.02356727421283722, -0.01400434598326683, 0.01564211957156658, -0.02015293389558792, -0.023914258927106857, -0.001651652273721993, 0.030479229986667633, 0.02131880633533001, -0.008813438937067986, 0.003192269243299961, 0.03672497346997261, 0.031200960278511047, -0.010874534025788307, 0.01740480586886406, -0.0022137693595141172, 0.007057690527290106, -0.003233907511457801, 0.014601161703467369, 0.019403444603085518, 0.016086259856820107, -0.004236696287989616, 0.007592048961669207, 0.02219321019947529, -0.03730791062116623, -5.188521754462272e-05, 0.010340176522731781, -0.004708596970885992, 0.0019292408833280206, -0.010340176522731781, 0.023150891065597534, 0.05213114246726036, 0.01360184233635664, -0.02771722339093685, 0.007522651460021734, 0.0008514163782820106, -0.005798132158815861, 0.022609593346714973, -0.012949509546160698, 0.018334727734327316, 0.019847586750984192, 0.0009784998837858438, 0.015225735493004322, -0.019472841173410416, -0.011034147813916206, -0.02133268490433693, 0.00728670135140419, -0.007258942350745201, 0.008383176289498806, 0.02247079834342003, -0.044747285544872284, 0.0019778190180659294, 0.02777274139225483, -0.02022233046591282, 0.01258864440023899, 0.006610079202800989, 0.012914810329675674, -0.006030612625181675, -0.011506048031151295, -0.012581704184412956, -0.6351227760314941, -0.00042072025826200843, 0.04044466093182564, -0.021415961906313896, 0.003789084730669856, 0.005284593440592289, 0.0068841977044939995, 0.027592308819293976, 0.005069462116807699, 0.01876499131321907, 0.00046322602429427207, 0.02378934435546398, 0.01151298824697733, -0.021415961906313896, -0.026426436379551888, -0.016349969431757927, -0.002820994472131133, -0.00539215886965394, -0.009382495656609535, -0.01107578631490469, -0.03639186918735504, 0.015919707715511322, 0.012651101686060429, -0.013851672410964966, 0.0009195122984237969, -0.003370966762304306, 0.017807310447096825, -0.006034082733094692, -0.012380452826619148, -0.009771119803190231, -0.022831663489341736, 0.02605169266462326, 0.005385219119489193, 0.0001746856578392908, 0.0459686741232872, -0.01847352273762226, -0.03192269057035446, 0.00813334621489048, 0.012269416823983192, 0.025343840941786766, -0.03916775435209274, 0.0020767098758369684, 0.008577488362789154, 0.001797386328689754, 0.004025035072118044, 0.03139527142047882, 0.006086130626499653, -0.0009099702001549304, -0.00966702401638031, -0.0017453384352847934, -0.004271395038813353, -0.016932906582951546, -0.010055648162961006, 0.006606609094887972, -0.010985570028424263, -0.011228459887206554, 0.023386841639876366, 0.001073920982889831, 0.0026492364704608917, -0.010048707947134972, -0.0006280442466959357, -0.009826636873185635, -0.017807310447096825, -0.028480593115091324, -0.0448305606842041, 0.016183417290449142, 0.005069462116807699, -0.013011966831982136, 0.0011736793676391244, -0.017765671014785767, 0.0033657620660960674, -0.0009047653875313699, 0.004462237004190683, -0.017751792445778847, 0.013005026616156101, 0.00489943940192461, 0.02717592567205429, -0.025940656661987305, 0.0035670138895511627, 0.017557479441165924, -0.0014000876108184457, -0.021110614761710167, 0.008417874574661255, -3.144558650092222e-05, 0.015378409996628761, -0.00029081746470183134, -0.01790446601808071, -0.01879275031387806, -0.0021079385187476873, 0.0007204292342066765, 0.0009099702001549304, 0.016877388581633568, -0.000592911965213716, -0.007446314673870802, 0.0020055777858942747, 0.04743989557027817, -0.0026787302922457457, -0.008723222650587559, 0.02045828104019165, -0.026842819526791573, -0.012658040970563889, -0.012338814325630665, 0.00870240293443203, -0.003966047428548336, 0.05132613703608513, 0.028480593115091324, 0.0016160862287506461, 0.011950190179049969, 0.02692609652876854, -0.0059438664466142654, 0.01794610358774662, -0.0031957391183823347, -0.02440004050731659, -0.011117423884570599, 0.01932016760110855, -0.026218244805932045, 0.018293090164661407, -0.007689204998314381, 0.0052984729409217834, -0.018681714311242104, 0.001885867677628994, 0.0010374875273555517, 0.036586180329322815, -0.02800869196653366, 0.022790025919675827, 0.03389357030391693, 0.0042783347889781, 0.03666945546865463, 0.009056328795850277, -0.012574764899909496, 0.013886370696127415, -0.026495834812521935, 0.022776147350668907, -0.0018320849630981684, 0.01937568560242653, 0.009569867514073849, -0.0008665969944559038, -0.004028504714369774, -0.0071062687784433365, -0.04452521353960037, -0.002756801899522543, -0.004746765363961458, 0.0019136265618726611, -0.02717592567205429, -0.025676947087049484, -0.04438642039895058, -0.02352563664317131, -0.003466387977823615, 0.019681032747030258, -0.002364708110690117, -0.007647566497325897, -0.014476246200501919, -0.008820378221571445, 0.02435840107500553, -0.0035982425324618816, -0.0007143569528125226, -0.010555307380855083, -0.050576645880937576, -0.02048604004085064, -0.025996174663305283, -0.020236210897564888, 0.0348651297390461, -0.0148371122777462, 0.00016156525816768408, 0.005437267012894154, -0.01063858438283205, -0.019750431180000305, 0.01386555191129446, -0.010825956240296364, -0.039945002645254135, 0.015239614993333817, -0.008050070144236088, -0.008098647929728031, -0.006703765131533146, -0.03333839401602745, -0.006027142982929945, -0.010659403167665005, -0.015489445067942142, 0.00782105978578329, -0.006547621451318264, 0.013692058622837067, 0.014059863984584808, -0.011971008963882923, 0.004642669577151537, 0.02159639447927475, -0.002590248826891184, 0.014698317274451256, 0.00993767287582159, -0.015211856923997402, 0.02995181269943714, -0.005065992474555969, -0.00701952213421464, -0.02780050039291382, 0.01416395977139473, 0.004788403864949942, -0.003410870209336281, -0.01305360533297062, -0.013754515908658504, -0.011561566032469273, 0.010763498954474926, 0.025399358943104744, 0.0156559981405735, -0.006394947879016399, 0.016988424584269524, 0.009361675940454006, -0.005090281367301941, 0.013914129696786404, -0.023692188784480095, 0.021124493330717087, 0.0014582077274098992, 0.006224924698472023, -0.00644699577242136, -0.011533807031810284, -0.022554075345396996, -0.02358115278184414, 0.008008431643247604, 0.0110480273142457, 0.032922010868787766, -0.02523280493915081, 0.01990310475230217, 0.027106529101729393, -0.00173406139947474, 0.024760905653238297, -0.0015787852462381124, 0.0035531343892216682, 0.0055899410508573055, 0.030062848702073097, 0.026690145954489708, 0.04630178213119507, -0.010291597805917263, -0.004451827611774206, 0.018570678308606148, 0.027925414964556694, -0.004562863148748875, 0.03314408287405968, 0.008855077438056469, 0.0527973547577858, -0.018306968733668327, 0.026440316811203957, -0.01762687787413597, 0.00552401365712285, 0.018612317740917206, 0.009722541086375713, -0.011367253959178925, 0.017807310447096825, -0.03220028057694435, 0.02324804663658142, -0.002961523598060012, -0.022332005202770233, 0.022207090631127357, 0.007494892925024033, -0.004260985180735588, -0.01151992753148079, -0.02380322478711605, 0.006700295489281416, -0.011395012959837914, 0.008681584149599075, 0.01736316829919815, 0.004663488827645779, 0.022803904488682747, 0.015558842569589615, 0.003497616620734334, 0.03469857946038246, -0.016877388581633568, 0.0038550118915736675, 0.0061104195192456245, -0.007744722533971071, -0.0241224505007267, -0.007536530960351229, -0.024899698793888092, 0.00033787739812396467, -0.013379771262407303, -0.0036225314252078533, -0.0005248159868642688, -0.01497590634971857, 0.01658592000603676, 0.003027450991794467, -0.003204413689672947, 0.0023889970034360886, 0.02689833752810955, -0.04910542815923691, -0.005360930226743221, 0.02720368467271328, 0.030729060992598534, -0.01305360533297062, -0.01598910428583622, 0.002439310075715184, 0.009257580153644085, -0.018709473311901093, 0.011561566032469273, -0.006672536488622427, -0.004483056254684925, -0.023414600640535355, 0.00940331444144249, -0.02438616007566452, 0.025399358943104744, 0.0381406769156456, -0.010090346448123455, -0.020361125469207764, -0.016877388581633568, 0.016072381287813187, 0.01678023301064968, -0.016877388581633568, -0.02043052203953266, 0.028105847537517548, 0.003594772657379508, -0.01511470042169094, -0.037974122911691666, -0.0009889095090329647, -0.0032026786357164383, 0.010180562734603882, -0.0039799269288778305, -0.00089435582049191, 0.006752343382686377, -0.0029962221160531044, -0.006082660518586636, 0.004573272541165352, -0.0034542435314506292, 0.030118364840745926, 0.0031176672782748938, -0.017612997442483902, -0.013955768197774887, -0.002706489060074091, 0.016696956008672714, 0.05243648961186409, 0.04541349783539772, 0.007127088028937578, 0.020541558042168617, 0.0019257711246609688, 0.0008531512576155365, -0.01733540929853916, -0.007536530960351229, 0.035225994884967804, -0.008251321502029896, -0.01623893529176712, 0.005478905513882637, -0.0025711646303534508, -0.0233035646378994, 0.009313098154962063, 0.013685119338333607, 0.013692058622837067, -0.02217933163046837, -0.02219321019947529, -0.0072311838157474995, 0.0034750625491142273, -0.003771735355257988, 0.025343840941786766, 0.020971819758415222, 0.01902870088815689, 0.025982294231653214, 0.04771748557686806, 0.009070208296179771, 0.0266485083848238, -0.02272062934935093, 0.009292279370129108, 0.03525375574827194, 0.0007950311410240829, 0.00155709870159626, -0.02527444437146187, 0.05110406503081322, 0.016738593578338623, -0.015461686067283154, -0.0051700882613658905, -0.0014000876108184457, -0.00561075983569026, 0.01712721772491932, 0.006846029311418533, -0.013275675475597382, 0.04377572610974312, -0.0032009438145905733, -0.001318546012043953, 0.024330642074346542, -0.015100820921361446, -0.021665791049599648, 0.019528359174728394, 0.011374194175004959, -0.03705808147788048, -0.0018338197842240334, -0.0017184470780193806, 0.02495521679520607, 0.003447303781285882, -0.010465091094374657, -0.009715601801872253, -0.02326192706823349, -0.026468075811862946, -0.00750183267518878, -0.0009889095090329647, -0.005700976122170687, -0.023317445069551468, -0.016169536858797073, -0.015933586284518242, -0.005315822083503008, -0.026815060526132584, 0.019264649599790573, -0.03758550062775612, -0.012526186183094978, -0.041083116084337234, 0.017848948016762733, -0.0093755554407835, 0.01303278561681509, 0.01743256486952305, 0.007911276072263718, 0.008917534723877907, -0.009993189945816994, -0.013907190412282944, -0.039945002645254135, 0.02158251591026783, -0.011603204533457756, -0.01564211957156658, -0.007758602034300566, -0.03839050605893135, 0.005017414223402739, -0.019458962604403496, 0.0010643788846209645, -0.010465091094374657, -0.013761456124484539, -0.005940396338701248, -7.503567758249119e-05, 0.0221654511988163, 0.014365211129188538, 0.019181374460458755, 0.013941888697445393, 0.01542004756629467, -0.01596134528517723, -0.016974544152617455, -0.01554496306926012, -0.008862016722559929, -0.029202323406934738, -0.013810033909976482, -0.013268736191093922, -0.000871368043590337, 0.00041681667789816856, -0.012887051329016685, -0.024261245504021645, 0.024302883073687553, -0.022831663489341736, -0.006839089561253786, -0.011304796673357487, 0.022609593346714973, 0.004139540251344442, 0.02440004050731659, 0.036336351186037064, 0.020527679473161697, -0.010465091094374657, 0.0030829685274511576, -0.020250089466571808, 0.05862671881914139, 0.011735059320926666, -0.016669197008013725, 0.013525505550205708, -0.0026041283272206783, -0.022345883771777153, -0.034337714314460754, 0.02136044390499592, 0.0055934106931090355, 0.00897305179387331, 0.02129104733467102, -0.025621429085731506, -0.020083537325263023, -0.029924053698778152, 0.008889775723218918, -0.0013280881103128195, -0.011526867747306824, -0.01289399154484272, -0.033754777163267136, 0.024552714079618454, -0.00842481479048729, -0.017710154876112938, -0.006710704881697893, -0.02859162725508213, -0.01600298471748829, 0.00539215886965394, -0.012526186183094978, 0.023123132064938545, -0.015489445067942142, -0.005152738653123379, -0.02041664347052574, -0.022304246202111244, -0.013421409763395786, -0.015392289496958256, 0.005229075904935598, 0.0029285599011927843, 0.01965327374637127, 0.030673542991280556, 0.02104121819138527, 0.0007789830560795963, 0.012658040970563889, 0.011443590745329857, -0.004812692757695913, -0.013372831977903843, 0.02155475690960884, -0.019528359174728394, -0.0065302723087370396, 0.002713428810238838, 0.016655316576361656, 0.000820621382445097, -0.0011155592510476708, 0.01147828996181488, -0.00419505825266242, 0.013005026616156101, -0.03311632201075554, -0.002892126562073827, -0.010395693592727184, -0.033727016299963, -0.020014138892292976, 0.014767714776098728, -0.007508772425353527, -0.019181374460458755, -0.03217251971364021, 0.004319972824305296, 0.010458151809871197, 0.00547543540596962, 0.01373369712382555, -0.012692740187048912, 0.018973182886838913, -0.0047675846144557, -0.007474073674529791, -0.0008718017488718033, 0.02413633093237877, 0.0026735253632068634, -0.02578798308968544, -0.03805740177631378, 0.009181243367493153, -0.010194442234933376, 0.019542239606380463, 0.022234847769141197, -0.002968463348224759, -0.005537893157452345, 0.005919577553868294, 0.003412605030462146, -0.04855025187134743, -0.005007004830986261, 0.00080587447155267, -0.02635703980922699, -0.006388008128851652, -0.011318676173686981, -0.0026249473448842764, 0.005236015189439058, -0.012401271611452103, 0.016169536858797073, 0.009861336089670658, 0.021471479907631874, -0.013081363402307034, -0.010305477306246758, 0.014656679704785347, -0.002461864147335291, 0.030923372134566307, 0.03133975714445114, 0.044969357550144196, 0.010590005666017532, 0.003017041366547346, -0.03503168374300003, -0.03528151288628578, 0.0002786729601211846, -0.0008054407080635428, 0.02527444437146187, 0.028175245970487595, 0.001719314488582313, -0.004875150043517351, 0.0073283398523926735, 0.02381710335612297, -0.015031424351036549, -0.025135649368166924, 0.01575315371155739, 0.025704706087708473, 0.00028431147802621126, -0.007869637571275234, 0.002404611324891448, -0.031534068286418915, 0.014989785850048065, 0.0023751177359372377, -0.006485164165496826, 0.01457340270280838, -0.0078626973554492, -0.001137245912104845, 0.03170062229037285, 0.007265882100909948, 0.012262477539479733, 0.0038654215168207884, -0.004746765363961458, 0.0029667282942682505, -0.011006388813257217, 0.008584428578615189, 0.004611440934240818, -0.0156559981405735, 0.008341537788510323, -0.010825956240296364, 0.00706810038536787, -0.0036711094435304403, 0.009979311376810074, -0.0004111781599931419, -0.009736420586705208, 0.0018893375527113676, 0.032394591718912125, 0.0013740636641159654, -0.01712721772491932, 0.00843175407499075, -0.019861465319991112, 0.00419852789491415, -0.020916303619742393, -0.023608911782503128, -0.004219347145408392, -0.01162402331829071, 0.005225605797022581, 0.01937568560242653, 0.0066308979876339436, -0.0353647917509079, 0.0006401887512765825, 0.00370927806943655, -0.012047345750033855, 0.016641438007354736, -0.008612186647951603, 0.021402083337306976, -0.04691247642040253, -0.010798197239637375, 0.005024353973567486, -0.0007716096006333828, 0.024164089933037758, -0.010277718305587769, -0.008077829144895077, -0.005544832907617092, 0.013386711478233337, -0.0014651474775746465, 0.012380452826619148, -0.0030222460627555847, -0.005204786546528339, -0.055101342499256134, 0.018015502020716667, -0.02631540223956108, -0.004056263715028763, 0.023220287635922432, -0.03450426459312439, -0.013747576624155045, -0.0002786729601211846, 0.008653825148940086, 0.009451892226934433, -0.013005026616156101, -0.003674579318612814, 0.01762687787413597, 0.021388202905654907, 0.006290852092206478, 0.006259623449295759, -0.022373642772436142, 0.023747706785798073, -0.009084087796509266, 0.03558686003088951, 0.008584428578615189, 0.004666958935558796, 0.005628109443932772, -0.030118364840745926, -0.0004046721733175218, -0.0019465902587398887, -0.03028491884469986, 0.008188864216208458, -0.00414648000150919, 0.003027450991794467, -0.010354056023061275, -0.002852223115041852, -0.015780912712216377, -0.02131880633533001, -0.012942569330334663, 0.020361125469207764, -0.019264649599790573, 0.0015588336391374469, 0.0062110451981425285, 3.063233816646971e-05, 0.011762818321585655, 0.014379090629518032, -0.01991698332130909, -0.03469857946038246, -0.019764309749007225, -0.014129260554909706, -0.04324830695986748, -0.018681714311242104, 0.007474073674529791, 0.025163408368825912, 0.007002172991633415, -0.01909809745848179, -0.02606557123363018, -0.026468075811862946, -0.04013931378722191, -0.009660083800554276, -0.0190703384578228, 0.015808671712875366, 0.039667412638664246, -0.00798761285841465, -0.015461686067283154, 0.01068022195249796, -0.011103545315563679, 0.03478185459971428, -0.04241554066538811, -0.015600480139255524, -0.007890456356108189, -0.026759542524814606, 0.03919551521539688, 0.0011762818321585655, -0.04671816527843475, 0.0015466890763491392, 0.012838473543524742, 0.009257580153644085, -0.006065311376005411, 0.01500366535037756, -0.003173185046762228, -0.007356098387390375, 0.0017106399172917008, 0.016072381287813187, 0.004347731824964285, 0.010083407163619995, -0.014892629347741604, -0.03225579857826233, 0.00561075983569026, -4.845602234127e-06, -0.009340857155621052, 0.008473392575979233, -0.01050672959536314, 0.009347796440124512, -0.0044032493606209755, -0.003185329493135214, -0.018903784453868866, -0.01959775760769844, 0.003478532424196601, -0.006158997770398855, 0.013185459189116955, 0.010798197239637375, -0.0029528490267693996, 0.014094562269747257, -0.006148587912321091, 0.015489445067942142, 0.008681584149599075, -0.006596199702471495, -0.003972987178713083, -0.0017436034977436066, 0.0007481880602426827, -0.0072311838157474995, 0.0035600741393864155, -0.014920388348400593, 0.008868956938385963, -0.023317445069551468, -0.028980251401662827, -0.0030933781526982784, 0.004031974822282791, -0.03900120034813881, 0.0016429777024313807, -0.0027967053465545177, -0.0076545062474906445, 0.015267373993992805, -0.008757920935750008, -0.011235399171710014, 0.01904257945716381, 0.004285274539142847, -0.0006800921401008964, -0.01904257945716381, 0.008508090861141682, 0.0019552649464458227, -0.026565231382846832, -0.0028504880610853434, 0.0019379155710339546, 0.031811654567718506, -0.014268055558204651, 0.039084479212760925, 0.19464513659477234, 0.020111296325922012, 0.019833706319332123, 0.027522912248969078, 0.011138243600726128, -0.015919707715511322, 0.02074974961578846, -0.009153484366834164, -0.0014096297090873122, 0.015309012494981289, 0.03500392660498619, 0.010277718305587769, -0.028924735262989998, 0.0013948827981948853, -0.007061160635203123, 0.008612186647951603, -0.03342166915535927, -0.03553134202957153, -0.0017817720072343946, 0.00882731843739748, 0.018431885167956352, -0.003799494355916977, 0.011832214891910553, 0.0026995493099093437, 0.03400460630655289, 0.02070811204612255, 0.012019587680697441, 0.007945974357426167, -0.002208564430475235, 0.026690145954489708, -0.01683574914932251, 0.0006163335056044161, 0.01655816100537777, 0.005600350443273783, -0.0053956289775669575, -0.002198154805228114, 0.0015362795675173402, -0.009167363867163658, 0.003096848027780652, -0.006568440701812506, 0.0006701162783429027, -0.002579839201644063, 0.005978564731776714, -0.027092648670077324, 0.01403904426842928, 0.026232125237584114, -0.010229140520095825, -0.001407027360983193, -0.015475565567612648, 0.008716282434761524, -0.0085566695779562, 0.024469437077641487, 0.022609593346714973, 0.018626196309924126, 0.005374809727072716, 0.01854291930794716, -0.002111408393830061, -0.008986931294202805, -0.008105588145554066, 0.03228355571627617, -0.012907871045172215, 0.02242916077375412, -0.002444514771923423, 0.01024302002042532, -0.022540196776390076, -0.013969647698104382, -0.014059863984584808, 0.012123683467507362, 0.007321400102227926, -0.006499043665826321, -0.001137245912104845, -0.03003508970141411, -0.0029042710084468126, -0.004517755005508661, -0.005995914340019226, -0.018334727734327316, 0.032699938863515854, 0.02975749969482422, 0.027814380824565887, 0.01317157968878746, -0.01319933868944645, -0.015225735493004322, -0.010756558738648891, -0.025149529799818993, -0.01733540929853916, -0.01315770111978054, 0.02799481339752674, 0.0026249473448842764, -0.015267373993992805, -0.029507670551538467, -0.011339494958519936, -0.01342834997922182, -0.02666238695383072, -0.018570678308606148, -0.013407530263066292, 0.007012582384049892, 0.017710154876112938, 7.774650293868035e-05, -0.00980581808835268, -0.020805267617106438, 0.0011892938055098057, 0.07245063036680222, 0.019750431180000305, 0.036613937467336655, -0.016044622287154198, -0.015794793143868446, -0.004989655688405037, 0.016183417290449142, -0.01568375714123249, 0.0023195999674499035, 0.02070811204612255, -0.023886501789093018, 0.009084087796509266, -0.003820313373580575, -0.01743256486952305, 0.005583001300692558, -0.010576126165688038, -0.01622505486011505, -0.003959107678383589, -0.002765476703643799, -0.006304731592535973, -0.03167286142706871, -0.008730161935091019, 0.0011164267780259252, 0.01416395977139473, -0.03394908830523491, -0.018973182886838913, -0.017543600872159004, 0.0020593605004251003, -0.016988424584269524, 0.031034408137202263, -0.025357721373438835, 0.01937568560242653, -0.005700976122170687, -0.023470118641853333, -0.021110614761710167, -0.007113208528608084, -0.004465707112103701, 0.012706618756055832, -0.02245691977441311, -0.00021437215036712587, 0.0024167560040950775, -0.01122151967138052, 0.008362357504665852, 0.010478970594704151, -0.023150891065597534, -0.002019457286223769, 0.006728054024279118, -0.03733567148447037, -0.007349158637225628, -0.0020073128398507833, -0.007675325497984886, -0.0013194134226068854, -0.008299900218844414, 0.027356358245015144, -0.003938288427889347, -0.01205428596585989, -0.004649609327316284, -0.01740480586886406, 0.01416395977139473, -0.044414181262254715, 0.001953529892489314, 0.022026658058166504, 0.005881409160792828, -0.028480593115091324, 0.009653144516050816, -0.17821189761161804, 0.028216883540153503, 0.011117423884570599, -0.011866913177073002, -0.0007824529311619699, 0.003398725762963295, 0.006453935522586107, -0.0038133736234158278, -0.03306080400943756, -0.0202084518969059, 0.012040406465530396, 0.005680157337337732, -0.04904991015791893, -0.02077750861644745, -0.008882835507392883, 0.011943250894546509, -0.012338814325630665, 0.0233035646378994, 0.04291520267724991, 0.022914940491318703, 0.0012265946716070175, -0.015253494493663311, 0.00414301035925746, 0.008542790077626705, 0.0033657620660960674, 0.013178519904613495, -0.022373642772436142, 0.026551350951194763, 0.002970198169350624, -0.01007646694779396, -0.036336351186037064, -0.01709945872426033, 0.02972974069416523, 0.014670558273792267, 0.01399740669876337, 0.00939637515693903, -0.0054962546564638615, -0.01095087081193924, 0.007696144748479128, 0.02975749969482422, 0.0005686229560524225, 0.019014820456504822, 0.010159743949770927, 0.018959302455186844, -0.015517204068601131, -0.00012025226169498637, 0.024025294929742813, -0.010930052027106285, -0.019833706319332123, -0.027370238676667213, -0.007571229711174965, -0.030701301991939545, -0.012338814325630665, -0.009764179587364197, 0.007047281134873629, 0.006648247595876455, 0.014323572628200054, 0.012706618756055832, 0.019014820456504822, -0.0031523657962679863, 0.008341537788510323, -0.012380452826619148, 0.018653955310583115, 0.009882154874503613, 0.003214823314920068, -0.006710704881697893, -0.011971008963882923, 0.028203003108501434, -0.016738593578338623, 0.004656549077481031, -0.017529722303152084, -0.02470538765192032, 0.025996174663305283, 0.023220287635922432, 0.0006063576438464224, 0.01990310475230217, 0.0024289004504680634, 0.006693355739116669, 0.02244303934276104, 0.026787301525473595, -0.0026717905420809984, 0.017765671014785767, 0.002288371091708541, 0.013643480837345123, -0.008855077438056469, -0.008355417288839817, 0.0029042710084468126, 0.008799559436738491, 0.017724033445119858, -0.025899019092321396, -1.7728803868521936e-05, -0.017599118873476982, -0.009562928229570389, -0.024622110649943352, 0.0110480273142457, 0.006047962233424187, 0.009285339154303074, -0.0036502904258668423, 0.004260985180735588, -0.008660765364766121, -0.014157019555568695, 0.006259623449295759, -0.014615041203796864, 0.02238752320408821, 0.0008908860036171973, 0.010027889162302017, -0.007890456356108189, -0.0015163278440013528, 0.030978890135884285, -0.026537472382187843, -0.024871939793229103, 0.003938288427889347, 0.0016473149880766869, 0.018404126167297363, -0.0016655317740514874, 0.029924053698778152, 0.01600298471748829, 0.0046530794352293015, 0.018043261021375656, -0.008147225715219975, 0.03889016434550285, -0.029646465554833412, -0.0179322250187397, 0.007168726064264774, 0.0013463047798722982, 0.002109673572704196, -0.1139223724603653, -0.04227674752473831, -0.008820378221571445, 0.013934948481619358, -0.006918896455317736, -0.002130492590367794, 0.001763555221259594, 0.04524694383144379, 0.00463226018473506, 0.021957259625196457, 0.006051431875675917, -0.019209133461117744, 0.00981275737285614, 0.006037552375346422, 0.02435840107500553, -0.020361125469207764, 0.008084768429398537, 0.0008626934140920639, 0.012179200537502766, 0.04516366869211197, 0.0019986380357295275, -0.02438616007566452, 0.018598437309265137, -0.0031593055464327335, 0.0050729322247207165, -0.007876576855778694, -0.018029380589723587, 0.013490807265043259, -0.005409508477896452, 0.010034828446805477, -0.004927197936922312, -0.02470538765192032, 0.03242235258221626, -0.02914680540561676, -0.03414339944720268, -0.001274305279366672, -0.027925414964556694, -0.019278530031442642, 0.02019457146525383, -0.032949768006801605, 0.005204786546528339, 0.018612317740917206, 0.013240977190434933, -0.006349839735776186, 0.0016256283270195127, 0.009687842801213264, -0.01904257945716381, 0.033504948019981384, 0.003782144980505109, -0.013497746549546719, -0.03356046602129936, -0.015614359639585018, -0.01473995577543974, -0.039945002645254135, 0.0274673942476511, -0.007897396571934223, 0.036863770335912704, -0.004861270543187857, -0.02245691977441311, -0.021402083337306976, -0.005177028011530638, -0.012859293259680271, 0.0017852418823167682, -0.003757856087759137, 0.01991698332130909, 0.0017349289264529943, -0.009514350444078445, -0.0156559981405735, -0.0012326670112088323, -0.012998087331652641, -0.019556118175387383, 0.024025294929742813, -0.010201381519436836, 0.007578169461339712, -0.027273081243038177, -0.012616402469575405, 0.00046886454219929874, -0.019445082172751427, 0.01078431773930788, -0.012998087331652641, -0.011228459887206554, -0.015836430713534355, 0.013129942119121552, -0.023359082639217377, 0.011270098388195038, 0.0232341680675745, 0.014656679704785347, -0.013379771262407303, 0.003879301017150283, -0.043914519250392914, -0.01497590634971857, 0.015336771495640278, -0.003211353439837694, -0.04033362865447998, -0.0043997797183692455, 0.02438616007566452, 0.009382495656609535, 0.0039313486777246, 0.01573927514255047, -0.007314460352063179, -0.008508090861141682, -0.011825275607407093, -0.038279470056295395, 0.02018069289624691, -0.026523591950535774, -0.004191588144749403, -0.015461686067283154, 0.004583681933581829, 0.000394479458918795, -0.005166618153452873, -0.012866232544183731, 0.01232493482530117, -0.008445633575320244, 0.03214476257562637, -0.01705782115459442, -0.009472711943089962, -0.023483997210860252, -0.00547543540596962, 0.007793300785124302, -0.004607971291989088, 0.016905147582292557, -0.0022710219491273165, -0.016655316576361656, -0.008542790077626705, 0.011408892460167408, 0.00490290904417634, -0.008626066148281097, -0.001343702431768179, -0.014073743484914303, 0.02406693436205387, 0.006738463882356882, -0.006478224415332079, 0.024497196078300476, -0.01826533116400242, 0.007758602034300566, 0.009493530727922916, -0.01707169972360134, -0.02244303934276104, 0.005295002833008766, 0.025010734796524048, 0.018903784453868866, 0.02158251591026783, -0.02124940976500511, -0.03758550062775612, -0.005201316904276609, -0.015614359639585018, -0.021124493330717087, -0.016169536858797073, -0.033227358013391495, -0.017224373295903206, 0.01020832173526287, 0.023650551214814186, 0.022318124771118164, 0.009243701584637165, -0.0059438664466142654, -0.014864870347082615, 0.0030985830817371607, -0.013692058622837067, -0.013525505550205708, 0.025080131366848946, 0.01908421702682972, -0.00015983032062649727, 0.0324501097202301, -0.00980581808835268, 0.010985570028424263, -0.028258521109819412, -0.001012330991216004, -0.005982034839689732, -0.017710154876112938, 0.018570678308606148, 0.00897305179387331, -0.014504005201160908, -0.009021630510687828, -0.024316763505339622, -0.000293202989269048, 0.023678310215473175, 0.0005950806080363691, 0.01248454861342907, 0.007571229711174965, -0.004993125330656767, 0.001383605762384832, 0.02580186165869236, 0.03644738718867302, -0.006162467412650585, -0.02434452250599861, 0.007973733358085155, 0.005249894689768553, 0.010284658521413803, -0.004583681933581829, -0.005451146513223648, -0.016960665583610535, 0.024039175361394882, 0.006072251126170158, 0.0068841977044939995, 0.0037370368372648954, 0.002930294955149293, 0.014906508848071098, 0.0282862801104784, -0.001289052190259099, -0.0031228719744831324, 0.03220028057694435, 0.006377598736435175, 0.0076545062474906445, -0.0023751177359372377, 0.0110480273142457, -0.02631540223956108, -0.023470118641853333, 0.011984888464212418, -0.04152725636959076, -0.022512437775731087, 0.008674644865095615, 0.01909809745848179, -0.015503324568271637, -0.0004157323273830116, 0.04455297440290451, 0.00936861615628004, -0.02527444437146187, 0.006072251126170158, -0.021526997908949852, -0.02602393366396427, -0.028161365538835526, 0.03369925916194916, 0.0019916982855647802, -0.013983527198433876, 0.023456238210201263, -0.007598988711833954, 0.04349813610315323, 0.011159062385559082, 0.02660686895251274, -0.017238253727555275, 0.0075295912101864815, -0.021665791049599648, 0.017279891297221184, -0.0049480171874165535, -0.002919885329902172, -0.0028105848468840122, -0.006856439169496298, -0.03028491884469986, -0.030701301991939545, 0.003164510242640972, 0.0005660205497406423, 0.09132665395736694, 0.025899019092321396, -0.011408892460167408, -0.0036641699261963367, 0.0054962546564638615, 0.006172876805067062, 0.012873172760009766, -0.0022918409667909145, 0.013143821619451046, -0.008771800436079502, 0.027286961674690247, 0.0025260564871132374, 0.01904257945716381, -0.052297696471214294, -0.020902423188090324, -0.014698317274451256, 0.018126536160707474, 0.032366834580898285, -0.0034837371204048395, -0.010263839736580849, -0.0020853844471275806, -0.00406667310744524, 0.005926517304033041, 0.012658040970563889, -0.016447125002741814, -0.018612317740917206, 0.03478185459971428, -0.011110484600067139, -0.002491357969120145, -0.041055358946323395, 0.024885820224881172, 0.010354056023061275, -0.020652594044804573, -0.026717904955148697, -0.015447806566953659, -0.0008253924315795302, -0.00912572629749775, -0.01175587810575962, 0.014864870347082615, -0.002529526362195611, 0.022540196776390076, 0.001014933455735445, -0.021110614761710167, -0.018876025453209877, -0.021235529333353043, -0.009729481302201748, -0.005274184048175812, -0.02495521679520607, -0.008723222650587559]}, "text_id_to_ref_doc_id": {"7a258be2-9b50-4c78-9f8b-755db5434c5e": "7397ea75-ac43-4ee5-a525-4ec8ad5e6c7a", "b2a1caed-1a08-428b-994b-7ecead6aa3fd": "7397ea75-ac43-4ee5-a525-4ec8ad5e6c7a", "5ff101f1-86ec-4e47-ba3a-357c5941110b": "7397ea75-ac43-4ee5-a525-4ec8ad5e6c7a", "93a1d2f6-0110-4308-8aa6-18f9893d432d": "7397ea75-ac43-4ee5-a525-4ec8ad5e6c7a"}} \ No newline at end of file diff --git a/index_v2/Snowflake/docstore.json b/index_v2/Snowflake/docstore.json new file mode 100644 index 0000000000000000000000000000000000000000..251abf9b2636cafa9567788288f1eff1df3fd076 --- /dev/null +++ b/index_v2/Snowflake/docstore.json @@ -0,0 +1 @@ +{"docstore/metadata": {"322fd939-b6d5-473c-891e-24941399e0b9": {"doc_hash": "e1696b7bb6a3b5576c7717c1a3816d5aa119f67e2b2bd98f03abe8f1a0cc9706"}, "45502c38-a88c-4932-9c54-5cbb479f14da": {"doc_hash": "1773cb0c97dbe3421c42867796fb0c739a0d39a77f3161fdf27659878918255a", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "a241bfb6-52df-4223-80ca-dfc6b486a9ae": {"doc_hash": "5e44f1750403508399b4715f50408756ca72866a83c678a51d71365513a82e72", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "b978fe8b-d903-4973-a3b1-d979740a906f": {"doc_hash": "0768434d37e38e8848f54bf44263c1f2029826de10e9803c8ace3d8dfcdd4494", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "2f509e7c-4766-431e-bee6-7c7bd37f6936": {"doc_hash": "4444f9209a2fc617f14b378579e315dc1c73a060a78c6d9219d6f654c7779ef1", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "52307f8e-27e7-4fc9-82ac-553225271c9c": {"doc_hash": "b702fc6db183332d3f5ece82ed12c5e0eeb23669945542309dfa2cc34ad6ab89", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "87138cd6-39bb-4c54-82e7-8a9bcec1f852": {"doc_hash": "46be7dd7de7b27a43ffc69733953f4e56f46240b69dfde32260c72d23c7e16b2", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "cbfa41fc-7c57-4dca-943e-b888a7dba157": {"doc_hash": "ad038780fc4e160334c1e1d196145424bd0dba50321cf73c35c2abf14699311a", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "19eeaf0e-0951-492b-9b7c-e9ed7ccfa7e8": {"doc_hash": "60ebb16d0697dd5e106f7370af84f77d69d6d4dbd8f5b23aacaddb944d022855", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "faed06c2-415c-488c-b88b-fb849d4daad0": {"doc_hash": "11b368c181592d36514589dc7f1a14bf1946377d6c63f382c7d58543d0be4b15", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "5d9a19ed-0f19-42d8-9950-405584501c6f": {"doc_hash": "e89d0b0bb1c2879632772c4cba4eb15744d9f691fa4ea2b1c649faeafdc31c20", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "41ff879f-3e90-4083-823a-4e4fddb34caf": {"doc_hash": "8c0d2f2a67bddb9722d460932571237d64950009c70b4ad22a3fd0575e0dd798", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "28f19db6-e542-4df6-8b44-969d7633e53c": {"doc_hash": "8a82b2354b37517ade91eaf53683764507d07a9ab6daaaf6aa14b10ee55f66c4", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "164a706a-545d-413a-94e2-1435ca0e56f9": {"doc_hash": "26075fc23eec2627e4be5b7fd852820d22f01f258b666cf85744f0579172f557", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "71483569-9d8c-4746-a129-fde439817d02": {"doc_hash": "110aad30e719279388376c52586d78ee10154fd57f3ac9f04e12b69fb8b4a24b", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "6e10e340-5c45-4969-a8fc-f03571701760": {"doc_hash": "c6cfaf5ca1d88e9beecd7b020000d61fb269fb34bcc14ee7370c294d9fdf88ac", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "8a3446a0-48bf-4591-82c5-c01cce6bbb83": {"doc_hash": "b4d35db5743128341c8152abc438b9f4335e0fba9369e05e28b0b165fc56625b", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "cd5ca5e5-1a1f-4db1-8565-edcad71fbb05": {"doc_hash": "4ce52d36d0ea496a51994d5f9a2f4fdbc87080a4a636d3a19c734c596cc193af", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "584df3b5-0387-4172-a121-3f803a865c10": {"doc_hash": "024672b99c940a820ac29f833bb9b723fefeb6d9b1ca3bebc46ec016efcfed0c", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "cf8ca687-4a5d-42df-8c80-d4f5cd78def8": {"doc_hash": "5db951dd3da5c3f286e2cf17559e32c13e28d746d4b771675ca58b4efb7a25c7", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "0130c4bd-52f6-4008-a110-cdc9be8f8c63": {"doc_hash": "585339a66f4dea96c077ccafde915df3828f66f3380b9aa1e6e2b0dd20050698", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "be992b0a-cd60-4f79-bdb0-b1183171e884": {"doc_hash": "1853bfb149f4bc36b473209d1a97026053ba0e363fbc3f6821b35713160b4a83", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "c75b30bc-2118-4e6c-8de0-917d39ced670": {"doc_hash": "5ff569518b4b022d7e21da7fcfe68cd393c561599d2d8247b2974d9a4bb30cde", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "309a2f60-a846-4e49-afe6-37ff48499eee": {"doc_hash": "d36383fe5bba24589c9857d7b82de828c4c0906d0f8616637a24900649cc13db", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "f3396eb0-fefc-4246-92d7-4a0829614572": {"doc_hash": "c20be3f02605bf29f30710b0e90a9f7a44c7fa6191f35277895d5a3ccf35bdfd", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "d0cd6033-d5e0-4175-843b-9add469a23ad": {"doc_hash": "23d03a5d8e6453e5191561152fb814c8c2c9281798b251e97a8b498d9d564525", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "c08507d2-227e-40fc-8009-f22440e228f1": {"doc_hash": "6094073f84bc72fc463d1e4252bed77c17eeb72e695aab59c4c58c5ed12568cf", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "f24fe96e-6dc8-4627-993e-5503105bf170": {"doc_hash": "dc1ed3cadee10db0a2aa6c38fb39ae3fd65ea3d6217b40d18d7ef2e11250d567", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "84316a03-d970-4e54-a15b-cf2c27eb5124": {"doc_hash": "c00fda20d2f554e83c2da57545e7a9f7eb02b70a9163f66a8eb14201f74dfb3c", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "44e2d019-65b4-48d3-a22f-7de620fc4945": {"doc_hash": "a028dc0e24d0b81e764842a80031b270fa7d3844978f809679d7546c1f5b05ca", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "fcbe0373-7a9f-4827-9ad4-21b471fd1e67": {"doc_hash": "7b49a07ce165809ebb62216bea27e9400679f21335a08d1d304a726165bbfa14", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "9d06cdba-898a-4a61-9f63-bbc8004d9834": {"doc_hash": "efe56644137378794c4b95f54f1192997e6b86ed1dedb97d6667f5ef8225ddee", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "6d225ce8-b188-4706-874a-8b84c8c6638f": {"doc_hash": "b64f0c8a453ebb42044ed1a844f6fd727bbaf6fb47aac310db33acc5561e35fb", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "e5912887-a0c4-471c-863c-bc191e7bc1a2": {"doc_hash": "da828936b1a23393bcb5efe2daf32c4099d90d5cac8c61c3a08d8b6034e368ac", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "5ef91afd-2dce-4643-8132-41545dafc688": {"doc_hash": "fbe84558f0c92dc0bb5ebb06e00eb8277d4b9abdcfe513eae1aa117296c1b985", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "0f354ae1-bc6f-4bd1-8e34-b098e7ebf17f": {"doc_hash": "996db08be09e9bda9319b1f0020efbafc99bba77bf13c3f0fa22f28f34902223", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "f6d4019c-8797-4edf-ad20-7b902a227da0": {"doc_hash": "6807991bddcf04d0eedd13717ac51f05eec423fe75e1b156b683b3e5c624b350", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "bb461fd8-c0fa-4ee2-8c1e-cbcfdc5ed8c4": {"doc_hash": "d607d74fb93d5e1da198c13d17c074722cbd6a1c78bf1073b17111a2b2b9fec9", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "9a2a44f9-0f75-4c92-b254-e1c451a10333": {"doc_hash": "054bb1b1f07830ae53eb1c7f00f3952a17f4812438136af2ba2581e8c67ad342", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "3bc3af1a-9324-41ae-b8ec-8cd8d213182f": {"doc_hash": "44bb68a1cd4838b553b1d6437168f3b73f4183066f563fee8b7d7bba2ab4ad4c", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "e0fb395c-0397-41ef-b036-342e7763bca8": {"doc_hash": "8a26869fc4e7ead1a2dce7d78fbd8382e200d099a241aa70dbb53e68b5c68065", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "445dfa30-22e3-48b2-9ee8-8b0dd0768f47": {"doc_hash": "d03d03de0cf04b99f42f70227a8806872d156bce3ea931fb3ab0ced66b9a94c5", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "7301d5e7-c3de-468d-83e2-fd22ec514f61": {"doc_hash": "4c8657b7c17c7d9be588ac4040717c45b70a9bdbf4cb2c87e4dab8844d43b5e4", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "a7251df1-a3f6-4623-9bfa-39610e9ba36b": {"doc_hash": "e19557493260a2242a679784e72b8171b18ff44af295626bd2ff06da2de1ab52", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "e794818e-1855-4544-ba15-1c95b518e955": {"doc_hash": "80e47a701ed0f8219724cc2db1f9cfa4eac5c301399861987a46a8ee6cf576e2", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "276c969e-e630-45da-a5d3-d9abd5380a9f": {"doc_hash": "2228360f21d2e046a9dbd21147254972fd8f1f9ae3865c8a7da942e4dc23cefe", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "af780a43-faa8-451f-b32b-f26539732d05": {"doc_hash": "44fab4baad0b2044b5db84ef406951faac089fdbd3260930c336455a0cb58911", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "76f9cfff-5165-4690-bbda-334c127814aa": {"doc_hash": "2e70434365907aa67ea0ce8f79f5242f0cac2fc4a9eaae7b4a63b79b57de1af1", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "a72e2e96-8525-41f5-b203-183e65f44174": {"doc_hash": "bc22bfcdbda16e97c62b0c7790549323963a20b02045e194982c6dd1b8bf0804", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "d5078883-95d5-4ae3-bd07-49bf4dea0e9a": {"doc_hash": "763f5799d71c2f4af94024d72c9182c5e0fa5ae6aa7cb553ba645f1203afc3d3", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "8d778cbe-44af-4021-8883-57a9b6681098": {"doc_hash": "994eed484d753bfa008dd01b02f8a77ccb78b5733fd56f5979d5f4791e2fb3f1", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "0e02e514-54e6-4a76-af4e-aaeaeb023645": {"doc_hash": "2047857aab21c72d1ab01ed39fb3a96696df2c44f0188009b44d86aa339cc140", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}, "4685d941-5282-4a37-b15f-ae84e61f3ed8": {"doc_hash": "04de8f91804a1f481890f70a5df4c92eaa7f313d726216810e84b9984cba28e7", "ref_doc_id": "322fd939-b6d5-473c-891e-24941399e0b9"}}, "docstore/data": {"45502c38-a88c-4932-9c54-5cbb479f14da": {"__data__": {"text": "G2.COM, \nKatie W., nan, 5.0, Easy-to-use interface to access and analyze data. Easy to to add/export data, Snowsight is a less powerful view than the original console\nG2.COM, \nPrakash T., Architect, 5.0, It's multi domain data platform and milti cluster shared database concepts.snowflake ETL tool provides ease to access source system and dump the structured and semi structured data., So far not much drawbacks observed but better to have some connectors to connect with other commercial products like IBM Watson,IBM infosphere MDM etc\nG2.COM, \nVerified User in Consumer Goods, nan, 4.5, Simple to use UI that is constantly improving. Snowflake provides a scalable platform for our team to continue building our Data Lake and enrich it with data from external database shares & marketplace data, I have no complaints about the platform itself. However, one area I wish was more flexible was around annual billing. If you do not renew at or above the previous year's credits, you lose the ability to rollover any used credits\nG2.COM, \nNitin A., Software Developer, 5.0, The features I liked the most about Snowflake are,\n\n1. It creates a structured table for collecting data backed by a pipeline that pushes data to Snowflake.\n\n2. The queries are simple to write and execute. It also shows the total time taken per a clause in the SQL query which can be used to optimize the queries further.\n\n3. I can download the result from the table in .csv format into my PC.\n\n4. I can create multiple editor windows to save my queries and documents to refer to later.\n\n5. Snowflake provides a developer version where I can test my code locally. In the production version data from the clients are stored., When I accidentally delete an editor window I find it hard to get it back. It would be much better if table results allow downloading results for selected columns. The query results are displayed in a small window, if there had been a separate window for it, it would be amazing\nG2.COM, \nSingh M B., nan, 4.5, The best thing about Snowflake is it's architecture , which provide flexibility like big data . Users can scale up or down as needed and pay for only the resources they use. Storage is billed by terabytes stored per month, and computation is billed on a per-second basis. Snowflake also has the capability to run JSON queries more efficiently., Snowflake support semi-structured and structured data. unstructured data support is not there currently. Snowflake is infinitely scalable , so I thing it should limit sometime , otherwise it lead to heavy bills .\nG2.COM, \nLawton W., Analytics Consultant, 4.5, Snowflake has a very intuitive interface and many useful features, such as the SQL that users can run on it. The statistics for the tables used is incredibly useful. The UI looks great and the organization between Database, Schema, and Table is great as well., It was difficult to add data to an empty table by uploading a csv. Sometimes it can is not easy to switch to another region due to the auto-login. Additionally, the folder organization for worksheets would have been a bit better for my use cases if it functioned more like a file explorer than most recently used and pure folders.\nG2.COM, \nSahil J., NVH Account Manager, 4.5, it's very easy to understand and work on Snowflake the user interface and easy navigation is really helful, some functions are a little difficult to understand\nG2.COM, \nEran E., Engineering manager, 4.0, can manage big data very efficiently and easily, sometime the data transfer can be little slow\nG2.COM, \nSukh K., nan, 4.5, Helpful to get deep insights and simplicity of making a pipeline from various data sources, which helped us create a quicker business market decision for growth. The ability to work on multiple queries is impressive and it has control over the sharing and access capabilities., UI can be improved in terms of data visualization and catalog. Moreover, issue in importing and loading the bulk data\nG2.COM,", "doc_id": "45502c38-a88c-4932-9c54-5cbb479f14da", "embedding": null, "doc_hash": "1773cb0c97dbe3421c42867796fb0c739a0d39a77f3161fdf27659878918255a", "extra_info": null, "node_info": {"start": 0, "end": 3978, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "3": "a241bfb6-52df-4223-80ca-dfc6b486a9ae"}}, "__type__": "1"}, "a241bfb6-52df-4223-80ca-dfc6b486a9ae": {"__data__": {"text": "Moreover, issue in importing and loading the bulk data\nG2.COM, \nYogesh T., Senior Applied Data Scientist, 5.0, Snowflake is a robust and reliable platform for any company, small or large. Since data is stored in one system, integrating and automating pipelines becomes very easy. It is very user-friendly; as an analyst, we can quickly harness the data to find insights and make reports., It becomes hard to troubleshoot errors, and there are not many resources available on the internet for Snowflake. Documentation also sometimes feels outdated for fixing errors.\nG2.COM, \nAshish D., DB2 System Programmer, 4.5, Apart from data storage it provides fast and easily accessible platform. It is way cheaper and reliable than Oracle services as it comes with pause feature for cluster when not in use., Materialized views are limited to table. Needs improvement in Inbuilt data lineage capabilities.\nG2.COM, \nVibhuti J., Associate Consultant- Talent Acquisition, 4.5, user friendly, easy to navigate with excellent cloud computing experience, UI/UX user interface is good but can be surely improved\nG2.COM, \nMadhusudan S., Wordpress Developer, 5.0, Using Snowflake has been a great experience; I appreciate how easy it is to view, analyse, and produce reports that are helpful for the organization's business decision-making. Its cloud-based nature, which eliminates the need to install software and does not affect how quickly our PCs work at all during analysis, is another feature I enjoy., The data that needs to be imported must be structured or semi-structured; as of right now, it does not support loading unstructured data, which may be a hassle for some since it affects the price.\nG2.COM, \nRohit M., Project Manager, 4.0, Snowflake's engineering depends on a cloud-based information distribution center that isolates processing assets from capacity. This considers versatility and flexibility, permitting clients to add or eliminate assets on a case-by-case basis to meet changing information needs. Moreover, Snowflake has inherent help for different information arrangements and information types, including organized and semi-organized information., There are couple of things I could do without about the snowflake is it's doesn't uphold unstructured information stacking it's just help the design and semi structure information. Furthermore, other one is it's just help the mass stacking records so it's hard for a little size documents stacking or including exactly couple of segments it.\nG2.COM, \nJoey M., nan, 5.0, By far the best SQL tool out there. The interface is so incredibly smooth and simple not too much stuff crowding your view like other SQL clients typically have. Does this all while maintaining better features like the ability to look back at historical data using time travel or other big data manipulation functions for flattening or expanding data., Would be cool to have a desktop application rather than being solely web based. Nothing wrong with the web app at all but I suppose just more of a personal preference.\nG2.COM, \nCastro K., Associate Software Developer, 3.0, The best that I like about snowflake is that it is a Data Platform as self managed service. Where I don't need care about updates, installation and other stuffs., We can only use this in the cloud. I feel that it is a limitation atleast for me. Since this is not a packaged software. I can't install it on my local Machine.\nG2.COM, \nParanjothi M., nan, 4.5, It delivers fast, easy-to-use and flexible data storage, processing, and analytics. which helps us to have the output in short time and easy to understand for others, Don't have nothing has of now, they have improved much with every new version releases and It will be much easier if we have beta version released for public like 6 month before.\nG2.COM, \nSuraj J., Lead Engineer, 4.5, User interface is very user friendly and easy to learn for new people. Quick and fast query execution., Everything thing is good except in new ui it looks likm more complicated\nG2.COM, \nJoshua L., BDA, 5.0, I like", "doc_id": "a241bfb6-52df-4223-80ca-dfc6b486a9ae", "embedding": null, "doc_hash": "5e44f1750403508399b4715f50408756ca72866a83c678a51d71365513a82e72", "extra_info": null, "node_info": {"start": 3925, "end": 7987, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "45502c38-a88c-4932-9c54-5cbb479f14da", "3": "b978fe8b-d903-4973-a3b1-d979740a906f"}}, "__type__": "1"}, "b978fe8b-d903-4973-a3b1-d979740a906f": {"__data__": {"text": "\nJoshua L., BDA, 5.0, I like the UI/UX, and ease of use of the application. It's really intuitive and provides great use cases., There's not much to dislike, maybe just add additional funcitionality.\nG2.COM, \nCristian B., Business Development Representative, 4.0, Customer support. One of the reps was/is responsive when helping me upload the data., It could be somewhat easier to use for a person who isn't experienced in such.\nG2.COM, \nSAICHINMAY T., IT intern, 5.0, Snowlight is where it's at for me regarding fast searches and clear visualization.\n\nIt's beneficial to have access to numerous tabs and searches at once. The data point can be queried from a variety of databases that are supported., The default user interface is my go-to. It's much too complicated, the new one. Problems with introducing new features and explaining their purpose often arise. Plenty of different interfaces offer built-in support for SnowFlake or inexpensive or even free supplementary programmes that add support for it.\nG2.COM, \nSarguru R., Test Lead, 4.5, As a daily snowflake user, the best part that I see about the snowflake is user friendly and high performance. It's faster and scalable based on the load. No maintenance required. It works well with JSON based functions and queries., Unstructured data is not supported. Few complex queries are not properly executed. Cost wise it is little higher than other cloud based solutions.\nG2.COM, \nElf C., nan, 4.5, No need to create indices on every table. The way they store data makes it easy to retrieve data quickly., Only have web UI. The web worksheets lack some ability to do multi-tab development. And searching tables when haveing multiple database may be hard.\nG2.COM, \nNamanjeet S., Business Intelligence Engineer, 4.5, Its virtual warehouse architecture allows users to create and manage multiple virtual data warehouses for different workloads, while its automatic scaling feature ensures that resources are allocated as needed to support the workload., Difficulties with complex query optimization or data modeling in Snowflake, which can lead to longer processing times or higher costs\nG2.COM, \nAkhil P., engineer, 4.0, It is very fast to query data. It has lots of integrations., The ability to save worksheets could be better. The syntax is a little confusing.\nG2.COM, \nElie M., nan, 4.5, Consolidated updated tables of data to pull from into Tableau, Not always super user friendly - requires SQL to pull data\nG2.COM, \nKenneth L., nan, 4.5, I stepped into a role where I was not informed I needed to use a database/warehouse. I spent 7+ years writing SQL for Teradata data warehouses so I wasn't new, but suddenly I had to code in a new platform.\n\nI found that the editor remembered my code I had last run, the error messages were helpful, the line-numbering structure was effective. I could quickly edit pre-written SQL pieces, debug them and correct them without any trainings or \"Snowflake specific\" guidance, Snowflake is easily reached via a browser, but that ease can be deceptive. DBA's can lock out sections of the database from users (Which is good) but then individuals jumping on can believe that the data doesn't exist, almost to a militant level. Something about the ease of access makes them feel like they know everything about the database.\n\nIt's not a terrible negative, but having to explain over and over that \"there is more, but you don't have access\" was a difficult challenge.\nG2.COM, \nSydney K., Analyst, 4.5, Snowflake has a lot of features such as data masking and secure sharing., The web interface is not as nice as other software.\nG2.COM, \nHimanshu B., CEO, 5.0, Snowflake's architecture is designed to automatically scale resources up or down based on demand, making it a great choice for businesses that experience fluctuating data volumes., Snowflake can be relatively expensive, particularly for smaller businesses or those with lower data", "doc_id": "b978fe8b-d903-4973-a3b1-d979740a906f", "embedding": null, "doc_hash": "0768434d37e38e8848f54bf44263c1f2029826de10e9803c8ace3d8dfcdd4494", "extra_info": null, "node_info": {"start": 8019, "end": 11947, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "a241bfb6-52df-4223-80ca-dfc6b486a9ae", "3": "2f509e7c-4766-431e-bee6-7c7bd37f6936"}}, "__type__": "1"}, "2f509e7c-4766-431e-bee6-7c7bd37f6936": {"__data__": {"text": "Snowflake can be relatively expensive, particularly for smaller businesses or those with lower data volumes. The pricing model can also be complex, with charges for storage, compute usage, and data transfer\nG2.COM, \nSunny J., Lead Cloud Security Architect, 4.5, Integration with lacework allows me to consume lacework data in a better way. Better than lacework CLI and Lacework LQL, No option to analyse an object or entity. Entity is a json object and the way it is displayed in the output is not helpful\nG2.COM, \nDhruv S., nan, 4.0, Snowflake is a DB , where I can have all the relevant data in the form of tables at one place, and it not only allows me to write SQL in an efficient way to analyze data, but it has additional features like - intelligent suggestion, saving queries as worksheets, which I like the most. On top of that it's easy to integrate tools like salesforce, tableau and clari with it., Though it's one of the best RDBMS out there, but it doesn't allow to have code blocks in single worksheet, and hence if I'm having 2 or more SQL statements in same worksheet, and I've to run one of them, I have to select whole query and press run, if we would have option to have code blocks, it would be more easier.\nG2.COM, \nJenna M., Merchant Experience Partner, 5.0, It pulls information that is not always available in other systems like Mode/Sigma and Tableau. I trust the data from Snowflake more than most, and I like to use it because I know that the information is what I need., Getting the data you are trying to research can take an incredibly long time. I have often given up after 20 minutes of waiting for data to pull and moved on to another system because I don't have all the time in the world.\nG2.COM, \nHenry C., nan, 4.5, It has granular permissions to allow specific users to access their specific data\n\n- It has a complete API to access data using code.\n\n- It has a cool UI, handy and easy to use., Lack of support for unstructured data. Snowflake only supports structured and semi-structured data.\n\n- So far, I havent noticed the lack of another features for my daily use.\nG2.COM, \nDeshmukha S., nan, 4.0, in snowflake i like it's auto resume and auto scale feature, it's data scale feature is also best, data security feature in snow flake is also excellent., ui/ux is not so good, does not support unstructured data, viewing meta data without querying data is not possible\nG2.COM, \nCatherine C., Senior Account Manager, 5.0, The experience using Snowflake has been excellent; I love its ability to store large amounts of data and make it easy to visualize, analyze and generate reports useful for the organization's business decision-making. I also like that it is cloud-based, so there is no need to install programs to use it, and it does not interfere at all with the performance of our computers; its performance during analysis is high-speed. I love that it integrates useful features for safeguarding stored data, such as SecuredEncryption and Data Masking, and it also integrates many updated SQL functions. It is a fantastic tool., The data to be loaded must be structured or semi-structured; for now, it does not support the loading of unstructured data and might be inconvenient for some as it somehow influences its cost.\nG2.COM, Verified User, nan, 3.0, For anyone that has used other tools like Redshift, it is a joy to think more about scaling workloads through different warehouses than by knowing the complete inner workings of Indexing & Sharding.\n\nTheir Data Exchange and Marketplace is top notch as well, giving both easy access to data but also a great ability to share data with others.\n\nUser access and management was quite nice with easy SSO setup., My main disappointment was with their support. We had an issue as soon as we signed a contract and it was about billing which seemed to be pushed off with no urgency and still not completed. Something like this I would have expected to be resolved within days has taken months.\n\nThe", "doc_id": "2f509e7c-4766-431e-bee6-7c7bd37f6936", "embedding": null, "doc_hash": "4444f9209a2fc617f14b378579e315dc1c73a060a78c6d9219d6f654c7779ef1", "extra_info": null, "node_info": {"start": 11885, "end": 15875, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "b978fe8b-d903-4973-a3b1-d979740a906f", "3": "52307f8e-27e7-4fc9-82ac-553225271c9c"}}, "__type__": "1"}, "52307f8e-27e7-4fc9-82ac-553225271c9c": {"__data__": {"text": "like this I would have expected to be resolved within days has taken months.\n\nThe interface is a little clunky and I know there is a new Snowsight interface but to be honest it isn't even as good as the clunky older interface in my opinion.\nG2.COM, \nGayathri E., Consultant, 4.0, Robust and scalable engine, Easy database maintenance, data cache helps to run the reports on top of snowflake objects, built-in function for easy data transformations., Snow-pipe integration some time doesn't work based on the even trigger; The task functionality can be improved by having a dedicated UI on the snowflake page; this help to visualise the scheduling better.\nG2.COM, Verified User, nan, 4.0, Since snowflake is a cloud platform, many of the connection issues I would typically jump through was not an issue. They have a lot of features and SQL commands that make database management easy. I also like the ability to share data without loading the data into my account from another., There isn't anything I dislike, but there is one improvement I would like to see happen. It would be great if they would incorporate inline editing for tables.\nG2.COM, \nAdal M., Data Analyst.\n, 4.5, Secure database.\n\nLarge amount of data being processed on a daily basis.\n\nSQL query.\n\nData points collected through pipeline.\n\nFilter data points through SQL queries.\n\nFlexible disparate computing models., Missing a function to execute multiple queries from a canvas.\n\nThere is no autocompletion support for table names or SQL syntax.\nG2.COM, \nGiovani M., Product Analyst, 5.0, I love snowsight usage for quick queries and visualization and also the quickness and easily scallable data warehouse solutions. It is the best all-round data warehouse I've used and has multiple small features that make the whole better., I think snowsight data visualization tools are a bit limited, and we should have other dataviz options like change colors, stacking bar charts etc. Also better search replace options on notebooks.\nG2.COM, \nSonali A., Senior Data Engineer\n, 5.0, It is very easy to learn and use and integrates easily with different ETL tools, It is not supporting unstructured data as of now\nG2.COM, \nHayden J., Business Development Specialist, 5.0, It is the only database program large enough to show respectable performance; moreover, its user profile can be adjusted to suit the user's specific requirements for data synchronization and general data generation and can even automatically generate an advantage or disadvantage depending on how things are stored. We could build a complete picture of each user by tying the system code to a customer feedback loop., Honestly, I think it's costly; I understand that data is necessary for innovative research, but the cost is sky-high.\nG2.COM, \nHanan A., Lead Data Engineer, 3.5, easy to use, can run query for testing, workspaces, the syntax is different from what I used before\nG2.COM, \nHimanshu S., Data Analyst, 4.5, The thingh I like the most about Snowflake platform is it's easy practises for database administration and data extraction. The application also includes a number of protected access-based requests that keep data secure and away from external threats., The main problem I personally faced while using this platform is it's difficulty to get data onto this platform automatically by configuring data engineering and task configuration. There are also various more data preparation capabilities available through the same interface.\nG2.COM, Verified User , nan, 5.0, Ease of setup and linking to underlying table, Chains can be a bit hard to understand but was an easy setup for our Eng team\nG2.COM, \nCarlos M., Ingeniero de software intermedio, 4.5, The way that Snowflake integrates own algorithms with the recipes used in Data Iku is a great way to obtain value from any data source. Also the processing time is drasticly reduced this helps to save some money by paying for used time only, Having SQL Queries and having to migrate those scripts to Snowflake could be a lot of work; knowing that SQL is one of the most used languages,", "doc_id": "52307f8e-27e7-4fc9-82ac-553225271c9c", "embedding": null, "doc_hash": "b702fc6db183332d3f5ece82ed12c5e0eeb23669945542309dfa2cc34ad6ab89", "extra_info": null, "node_info": {"start": 15894, "end": 19978, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "2f509e7c-4766-431e-bee6-7c7bd37f6936", "3": "87138cd6-39bb-4c54-82e7-8a9bcec1f852"}}, "__type__": "1"}, "87138cd6-39bb-4c54-82e7-8a9bcec1f852": {"__data__": {"text": "could be a lot of work; knowing that SQL is one of the most used languages, there is no way to translate those queries to Snowflake easily\nG2.COM, \nVerified User, nan, 5.0, Has a web Based, intuitive interface that is easy to use if you are familiar with SQL and allows complex queries. SnowFlake is easy to interface with multiple and different types of data sources. Specifically, we needed to upload CSV files automatically. Python integration made it easy for our application, where a lot of data comes from production systems that only generate CSV files that are otherwise hard to make part of big data without complex software integration. There are a lot of interfaces out there that support SnowFlake either native or have cheap/free add-on packages. Also integrated nicely with node-RED., Since the payments are based on \"warehouse usage\" the initial bill can get quite high as during testing, a lot of the uploads and searches are run multiple times to optimize. Cost came down quickly once we were in \"use\" mode.\nG2.COM, \nVerified User, nan, 5.0, The UI(Snowsight) has code completion, and it is easier to share queries with colleagues. It also maintains query history, It doesn't have charts that can easily help assess the integrity of data\nG2.COM, \nVerified User, nan, 5.0, Solid query performance and easy to use and straightforward UI. I like that it has a wide selection of integrations. We use Snowflake with Fivetran and dbt and it works great., I'm still not 100% sold on the updated user interface. I find myself going back to the classic console, but I think that's probably just a personal preference that I will need to get over.\nG2.COM, \nVerified User, nan, 4.5, Ease of use for people with basic sql knowledge, OLTP and OLAP under same roof, auto scaling, Cost, limitations of stored procedure unless JavaScript is chosen as a language\nG2.COM, \nVerified User, nan, 4.5, Columns and rows are very well set up. They are easy to read and understand. The gaps between each column and row are perfect we can say. Cannot think of anything that needs to be made better here, Sometimes the data is not up to date. Would be useful to have the data to be updated instantaneously. Not sure if this is possible but it could be a good target for improvements.\nG2.COM, \nSachin M., Senior Consultant, 5.0, No need to setup the infrastructure, With just 3-4 clicks, you get the account in your Cloud and get $400 credit for next 60 days. This enables all the functionality and we play with any functionality on this trial version.\n\nNative support for loading semistructured data\n\nData is automatically encrypted at rest and in transit\n\nAutomatic partitioning and Clustering and compression\n\nAutomatic versioning, Time Travel, and Fail-Safe\n\nProvides Cross Cloud replication, Snowflake is still in the very early phase of supporting the Delta table functionality. Moreover in Replication, we are supposed to replicate one Database at a time, But what if we have multiple databases in Account we need to replicate each and every Database manually. Account level replication should be there. Also Snowpipe is there but near real-time , waiting for snow pipe streaming.\nG2.COM, \nLeung Jun C., Ingeniero de software, 4.5, It provides us with an analytical database for large data sets.\n\nRow-level data storage and security.\n\nAccess management and governance.\n\nAbility to resize the number of nodes in each cluster for optimal performance.\n\nBuilt-in support for semi-structured data such as JSON.\n\nTime travel feature that allows you to go back to an earlier stage of your data., The pay-per-use model allows an involuntary exponential cost growth.\n\nThere is not much scope and support for unstructured data.\nG2.COM, \nLee S., Software Test Engineer, 4.5, Snowflake gives us the ability to work across multiple tabs and queries.\n\nCloud-based data storage\n\nIt uses standard SQL, which is great because we don't have to learn a new language.\n\nIt provides great ease of access to different levels of users", "doc_id": "87138cd6-39bb-4c54-82e7-8a9bcec1f852", "embedding": null, "doc_hash": "46be7dd7de7b27a43ffc69733953f4e56f46240b69dfde32260c72d23c7e16b2", "extra_info": null, "node_info": {"start": 19987, "end": 23993, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "52307f8e-27e7-4fc9-82ac-553225271c9c", "3": "cbfa41fc-7c57-4dca-943e-b888a7dba157"}}, "__type__": "1"}, "cbfa41fc-7c57-4dca-943e-b888a7dba157": {"__data__": {"text": "learn a new language.\n\nIt provides great ease of access to different levels of users throughout the organization.\n\nEasy to execute certain queries by highlighting certain parts of the code.\n\nData security and governance., Limitation with unstructured data.\n\nComplicated billing.\nG2.COM, \nFranck L., Data Sleek Founder, 5.0, The easy and quick away to change the compute power for your SQL queries. I don't think there is anything like this on the market. Unlimitted storage makes Snowflake THE data lake on the market., The new query interface. I'm not sure what Snowflake was thinking here. I always go back to the original UI. The new one is way too confusing. New features are not always well communicated. I wish there were a page in the account where we can get a summary of new elements and which one is available and active for the current account.\nG2.COM, \nJeyanth K., Associate Software Engineer, 5.0, User-interface and easy to work with an environment, if we have standalone software it could be usefull\nG2.COM, \nPaulson K., Senior Product Manager, 4.5, Snowflake has allowed us to consolidate multiple data sources like application databases, product analytics, decision models etc., into one repository. The fetching of report becomes easy and does not strain our master setup, Nothing in particular. Works like a charm for our use cases\nG2.COM, \nDhaval R., SMTS, 5.0, My organisation consumes Snowflake as the leading service for storing and analysing data points collected from customers and clients. It provides a spotless and straightforward user interface. The ability to work on multiple tabs and queries is wholesome. It also supports different databases users need to select for querying the data point. It also has a separate canvas showing the status of query progress and SQL tree structure of the query with the amount of time each operation takes. Once the query is completed, it provides a download button to save the result. They recently introduced Snowflake Lite, which is also easy to use and valuable., It doesn't include the feature to run multiple queries from a canvas. Sometimes the queries take longer than usual, and waiting is painful without a progress bar. There is no historical version of the canvas where the queries are written, so once it is lost, it is gone forever. There is no autocomplete feature support for table names or SQL syntax.\nG2.COM, Verified User, nan, 5.0, Really strong performance and speed, also easy sharing, The only thing I don't like is that you cannot collaborate with teammates on a query\nG2.COM, Verified User, nan, 4.0, Snowsight, the new snowflake browser UI, is set up well for quickly drafting queries and has some helpful, albeit basic, visualization tools built in. The python connector API is pretty good too., A couple of irregularities in setting up the python connector on M1 macs, and some minor bugs in the snowsight ui (forgiveable since it's still pre-release IIUC)\nG2.COM, Verified User, nan, 4.5, Governance is really straight forward and queries run very fast., Expensive. No transparency on specs of warehouses.\nG2.COM, Verified User, nan, 4.5, Snowflake is very modern cloud data warehouse which reduces the complexity of designing Analytical data solution., Snowflake doesn't allow to share a database from one snowflake account to other account which has different cloud vendor and located at different region.\nG2.COM, \nDavid O., Head of Strategic Finance, 4.0, It has good security and also good integrations with several other tools. We used it with Holistics as an SQL extractor and it works great. Is very good at extracting data and very quick to show results., In my experience but I think is more of a company policy about security. It would be great if Snowflake has its data extractor or a SQL extractor, it would be very useful.\nG2.COM, Verified User, nan, 3.5, Was able to configure and manage via terraform provider, Not all config is available via terraform\nG2.COM, \nDavi H., Data Engineer, 4.5, What I liked the", "doc_id": "cbfa41fc-7c57-4dca-943e-b888a7dba157", "embedding": null, "doc_hash": "ad038780fc4e160334c1e1d196145424bd0dba50321cf73c35c2abf14699311a", "extra_info": null, "node_info": {"start": 23983, "end": 28001, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "87138cd6-39bb-4c54-82e7-8a9bcec1f852", "3": "19eeaf0e-0951-492b-9b7c-e9ed7ccfa7e8"}}, "__type__": "1"}, "19eeaf0e-0951-492b-9b7c-e9ed7ccfa7e8": {"__data__": {"text": "\nDavi H., Data Engineer, 4.5, What I liked the most was the possibility of building a data pipeline within the tool with the TASKS functions and the integrations with other services such as the AWS bucket, On the other hand, the tasks service was difficult to have an overview of the entire scenario, especially in execution logs\nG2.COM, \nPartik A., Technical Project Manager, 5.0, Data sharing, zero-copy cloning, time travel, There is nothing to be disliked about it\nG2.COM, Digambar J., Senior Technical Architect, 5.0, Snowflake is best for unpredictable workloads or sudden spikes in user queries.\n\n1. Since Compute & storage are decoupled, queries don't get queued for resources.\n\n2. Another killing feature is it has Auto Pause & auto suspend modes which stops consuming credits when no queries are running.\n\n3. Snowflake is an apparent winner compared to AWS Redshift when it comes to maintenance. Almost zero admin tasks everything is taken care of for you. You can either change a warehouse\u2019s size or increase the number of clusters with almost zero downtime seamlessly.\n\n4. As already mentioned it is best in the situations where you get temporary high workloads, so you can increase the compute capacity without increasing storage.\n\n5. Built-in support for Semistructured data like JSON is worth mentioning.\n\n6. Lift & shift from On-prem Relational DW to Snowflake is easy compared to other cloud warehouses., Complicated Billing. Snowflake\u2019s On-Demand pricing model can be enticing initially, but it can be very unpredictable in the long run, and its cost increases as you go higher. As compared to Snowflake, Redshift has a simple pricing structure based on redshift clusters. Redshift also offers Reserved Instance Pricing, which allows you to unlock 75 percent savings which was the primary driver for switching from Snowflake to ASW redshift for one of our customers.\nG2.COM, \nShilpa G., Operations Manager, 4.5, Snowflake has enabled the team to achieve new goals when it comes to data warehousing and querying data to draw insights. It has an easy-to-use and accessible interface.\n\nBefore switching to Snowflake, getting connections and data sanity was a challenge. Its pay per use model allows the optimise allocation and budgets and helps plan better.\n\nIt uses standard SQL which is used by most of the team members beforehand and documentation is readily available., While logging in using the single sign-on, sometimes it takes a high loading time to log in. Navigating across the previous ran queries under the history tab is a bit cumbersome. Not that great at managing unstructured data.\nG2.COM, \nYatin G., Product\n, 4.0, Snowflake allows aggregation of hundreds of databases across different clouds and platforms into one single data warehouse which helps provide customers visibility of all their data across all our products.\n\nIt is much more than a database in cloud with massive amounts of features and functionality offered. (high volume data storage and handling, quick response time), Navigating and querying unstructured data in snowflake is bit of a challenge.\n\nSwitching between the data can be made better and we have to save the query snippets for future usage as functionality to create a link for any specific query is not there. Rest everything looks great.\nG2.COM, Verified User , nan, 5.0, Easy to understand through user guide. Nice gui. Fast results. Additional feature snowsight is an amazing add on., Every feature i have used so far is great\nG2.COM, Verified User , nan, 5.0, I enjoy how easy it is to search up different tabs that I'm working on. Another feature I find helpful is Snowflake highlighting the specific syntax or part of the query causing the query to run unsuccessfully., Snowflake's documentation on its syntax and the examples provided can be confusing and hard to follow. I want Snowflake to provide more detailed and broken-down SQL queries with the matching results for more complicated functions.\nG2.COM, \nTony H., Data Visualization & Reporting Analyst, 5.0,", "doc_id": "19eeaf0e-0951-492b-9b7c-e9ed7ccfa7e8", "embedding": null, "doc_hash": "60ebb16d0697dd5e106f7370af84f77d69d6d4dbd8f5b23aacaddb944d022855", "extra_info": null, "node_info": {"start": 28035, "end": 32065, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "cbfa41fc-7c57-4dca-943e-b888a7dba157", "3": "faed06c2-415c-488c-b88b-fb849d4daad0"}}, "__type__": "1"}, "faed06c2-415c-488c-b88b-fb849d4daad0": {"__data__": {"text": "\nTony H., Data Visualization & Reporting Analyst, 5.0, It is seamless to integrate data from multi-cloud and on-premise repositories.\n\nAutomatically prepare, model and visualize data., I am fully satisfied with Snowflake in terms of features coverage and customization.\nG2.COM, \nAkshaykumar J., Senior Software Engineer, 4.5, Snowflake provides connectyto SQL DBs and can be used for real time analysis of the dataset. It also provides the secure environment for databases and data with role management., It does not support to unstructured data. Snowflake does not provide constraints to data. Loading bulk data is challenging in snowflake with use of snowpipes in some cases\nG2.COM, \nArpit J., Salesforce Solution Architect, 4.5, The best part about snowflake is that the same tool could be used for multiple purposes like Data warehousing, processing and analytical capabilities as well. One stop shop., There should be some out of the box integration options available to fetch and push data to the major crm, erp and other data warehousing tools. This will make life easy.\nG2.COM, Verified User , nan, 4.5, Snowflake can be based on any of the three major cloud service providers namely GCP, Azure and AWS. So it is easy for organizations to stick to their preferred CSP and avail Snowflake services., Probably a graphical user interface for developers who want to do data modeling in the Snowflake environment.\nG2.COM, Verified User, nan, 4.5, The flexibility in performance is pretty remarkable. Good third-party support. Good SQL improvements., Can't use native SQL to build a stored procedure, swapping to Javascript is odd coming from a SQL Server background. Costs can be difficult to control at times\nG2.COM, \nRavi L., Tax Operations & Technology Analyst, 3.5, I pretty much like the integration part where you can connect snowflake to different systems and get the desired output stored in snowflake in the form of tables which also gives you the option to read/write the data at a later stage, I dislike the processing time. At times snowflake takes a lot of time to run the queries and the interface could be made more user-friendly when it comes to the Selection of schema, role etc\nG2.COM, \nJetender V., Program Manager, 4.5, 1. Easy setup\n\n2. Self-training Videos\n\n3. Can process structured and nonstructured data easily\n\n4. Analytic Database for large datasets\n\n5. Integration with cloud-based reporting, UI interface needs can be improved a lot. It should embed more features from Oracle database.\nG2.COM, \nLiz G., Senior Data Analyst, 5.0, Built in geospatial functions in Snowflake, easy way to search the db, easy way to see parsed json in one click before querying, and all around intuitive to use., I don't like if you are working and accidentaly swipe to the left it kicks you back to the login screen. Super annoying. Also, when i work in snowsight to share queries when I save it and try to share with someone else it's still blank.\nG2.COM, Verified User, nan, 5.0, - Excellent user interface and navigation features in the web portal.\n\n- Easy to log in via SSO (Single Sign-On)\n\n- Users can create unlimited worksheets and works are auto-saved for future use.\n\n- Easy to run SQL queries just by highlighting the portion to execute.\n\n- On the sidebar, we can find database objects like tables present in the dev/prod database.\n\n- When executing complex queries, you can monitor running performance on each node.\n\n- Another app version called Snowsight is available which also includes all features.B83, - Whenever you want to execute a query you have to select it before running.\n\n- Once a worksheet is deleted it's hard to find it back.\n\n- Not easy for fresh eyes. Requires learning or background knowledge before using it.\n\n- It will be really good to have a one-liner description pop-up when we hover a mouse on any button in UI.D815\nG2.COM, Verified User, nan, 5.0, Simplicity of", "doc_id": "faed06c2-415c-488c-b88b-fb849d4daad0", "embedding": null, "doc_hash": "11b368c181592d36514589dc7f1a14bf1946377d6c63f382c7d58543d0be4b15", "extra_info": null, "node_info": {"start": 32057, "end": 35968, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "19eeaf0e-0951-492b-9b7c-e9ed7ccfa7e8", "3": "5d9a19ed-0f19-42d8-9950-405584501c6f"}}, "__type__": "1"}, "5d9a19ed-0f19-42d8-9950-405584501c6f": {"__data__": {"text": "Verified User, nan, 5.0, Simplicity of use, performance\n\nAlmost compatible with every other tools : legacy or new Data tools, nothing, we haven't find, so fare, any limitation to the datacloud platform\nG2.COM, \nOkan ., Data Engineer, 4.0, Cloud based database system which has a great interface to develop easily and fast, Cost of implementation and very low level or administration abilities\nG2.COM, \nShiv Dutt S., IN Enterprisewide Prg Analyst lvl3, 4.5, Performance of the tool, you can perform complex logic calculations on huge volume of data very quickly. At any point of time, you can add/remove servers to increase the performance. Easy to learn and deployment of code., We have not encountered any drawbacks so far with this tool. The only challenge that we see is direct connectivity with the sources. For example, to pull data from SAP, you need to use a replication tool.\nG2.COM, \nAndrew S., Agile Development Software, 4.5, I like Snowflake makes data storage simple and convenient, as well as the ability to query data sets using SQL.\n\nIt also supports JSON and Avro for structured and semi-structured data.\n\nYou can use the SQL language to write queries., I would like Snowflake to include the following features:\n\nOn the same table, there are many indexes.\n\nPKS or indexed paper.\n\nSnowflake's server and runtime components occasionally malfunction.\nG2.COM, \nManzar A., Software Engineer, 4.5, what I like most about Snowflake is there is no need to optimize and cluster tables it is done automatically in the most efficient way.\n\nAlso, it can be hosted on any database, and there is no need to install any dependent service to run snowflake, Two things that I think must be improved are:\n\n1. Sometimes it's server or execution part is not working properly, generally, the issue likes on the Snowflake side.\n\n2. There is no role of indexing or PKS here.\nG2.COM, \nPeter C., Account Director, 5.0, The features which are utterly unique, like time travel, zero copy cloning and separate costs for storage and compute. Snowflake is especially controllable - I can create data warehouses for specific purposes and groups of users or processes, and determine when they're available - all on the basis that the cost relates to the value., Snowflake is still new. There are some features which would be useful around metadata management for data analysts, and other functions which other databases have. But I'm sure these are on the roadmap and will come in time - probably sooner than I expect!\nG2.COM, \nVerified User, nan, 4.5, I love the data governance and programming language support for python. We can easily create different schemas for different operations and create roles for users with specific access/permissions., It doesn't support primary key constraints, so wherever we want to create a table with unique records we need to build a logic (query) in such a way that will only update the table with unique entries. I personally like the BI (snowsight) it is somewhat unappealing.\nG2.COM, \nVerified User, nan, 4.0, No frills here. Input SQL and get outputs. Easy control of who from the org gets access to what certain databases., Using Snowflake requires some degree of technical expertise that not all members of a business may possess. Best for folks in at data organization.\nG2.COM, \nVerified User, nan, 3.5, We can get the data from AWS, GCP and analyze it on SF., Faced functionality issues in some cases.\nG2.COM, \nKurt H., nan, 4.0, Ease of administration and robust uptime., Cost is quite high compared to competitors.\nG2.COM, \nSharath G., Data Engineer, 4.5, * Storage capacity can run on almost all cloud software\n\n*Scalable everything is in cloud so can add up resources easily\n\n* Performance tuning option\n\n* Security features\n\n* Very good analytical and machine learning option, Snowflake is not supporting unstructured data right now\n\nBulk load is bit", "doc_id": "5d9a19ed-0f19-42d8-9950-405584501c6f", "embedding": null, "doc_hash": "e89d0b0bb1c2879632772c4cba4eb15744d9f691fa4ea2b1c649faeafdc31c20", "extra_info": null, "node_info": {"start": 35983, "end": 39870, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "faed06c2-415c-488c-b88b-fb849d4daad0", "3": "41ff879f-3e90-4083-823a-4e4fddb34caf"}}, "__type__": "1"}, "41ff879f-3e90-4083-823a-4e4fddb34caf": {"__data__": {"text": "Snowflake is not supporting unstructured data right now\n\nBulk load is bit problem\n\nNo usage limit company may see some surprise in pricing if they use nore resources\nG2.COM, Verified User, nan, 5.0, Easy usage for non-data savvy users and readers, The setup is not as straightforward as the usage\nG2.COM, \nRahul B., Software Engineer L2, 5.0, Snowflake is the best data warehousing tool in the market it gets all the features as one connects to any cloud Environment like AWS, Azure or GCP to store its data plus the virtual warehouse is pretty fast and its internal micro partitioning feature is also pretty handy., As it is pretty new to the market there are very few documentation or training to learn this tool also they can add new cloud environment like oracle cloud to the snowflake.\nG2.COM, \nMuskan C., Data Engineer / ETL Developer, 5.0, Everything about it is amazing. It is super fast, computes queries so fast. Can get you more than 6 million rows in less than 5 seconds.\n\nIt has the feature of time traveling which lets you go back to a previous stage of your data and it is very helpful.\n\nSince it has the storage and compute separated, it lets you query in a very fast way and maintains different warehouses.\n\nIs very cost-effective as well.\n\nIt handles so many things together, handles the security of the data also in the best way.\n\nOne should just go for the migration to Cloud and should choose Snowflake, I haven't come across anything till now which I dislike about the product. Although it does not seem to handle unstructured data as of now but seems like it will be included in the future. If that will also be covered, other than semi-structured and structured, it'll be simply awesome!\nG2.COM, Verified User, nan, 4.0, Ease of access, one-stop shop for data sharing problems in a financial sector, Perhaps, cost of owning a space is to be thought aboutPerhaps, cost of owning a space is to be thought about\nG2.COM, \nDavid W., Head of Engineering - Data and Business Intelligence, 5.0, I like the power and capability of Snowflake, as well as its aesthetic user interface. It's not only a database - with SQL and all you'd expect there - but it also provides tremendous functionality for sharing and controlling access. We've made row-access policies, for instance, to even let clients into their data and only their data. I like the concept of roles which allow us to easily specific access levels to specific pieces of data, I like how we can visualise items from a query within the console, and many, many other things. In short, working in Snowflake is quite pleasant and enjoyable with a great user interface., I wish the worksheet editor allowed us to search and replace - it seems a little basic this is missing.\n\nI also wish the product would make warehouse recommendations - for clarity, Snowflake pricing is based on the warehouse you use for your work, with a warehouse essentially being CPU, RAM, etc. So, an extra small warehouse is the lowest amount of compute power and, correspondingly, the lowest price. Yet, it's possible for some newcomers to inadvertently run their work in (say) a large warehouse when this costs more money. Or, conversely, maybe we're too worried about cost and we're causing a complex query to take excessive time to run. It'd be nice if Snowflake itself gave some advice around queries - e.g. you run it, and it says \"hey, if you did this on a small warehouse it would have taken only 0.2ms longer but would have been cheaper\" or \"this query took 25s to run. If you used an XL warehouse it would have completed in under 2s\" or something like that.\n\nIt'd also be nice if Snowflake SQL supported string concatenation with the + symbol like T-SQL.\nG2.COM, \nTodd G., Data Analyst, 5.0, It could churn through data so fast, which is nice in a data warehouse tool. I wasn't the only one either in our company there were probably 20 analysts or more doing simlar things to what I was doing and it rarely missed a", "doc_id": "41ff879f-3e90-4083-823a-4e4fddb34caf", "embedding": null, "doc_hash": "8c0d2f2a67bddb9722d460932571237d64950009c70b4ad22a3fd0575e0dd798", "extra_info": null, "node_info": {"start": 39841, "end": 43812, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "5d9a19ed-0f19-42d8-9950-405584501c6f", "3": "28f19db6-e542-4df6-8b44-969d7633e53c"}}, "__type__": "1"}, "28f19db6-e542-4df6-8b44-969d7633e53c": {"__data__": {"text": "analysts or more doing simlar things to what I was doing and it rarely missed a beat., The thing that I didn't like about it was the fact that the only interface that we had to interact with it with was online. There were other ways but they were build directly from snowflake.\nG2.COM, \nDr Bradley I., Enterprise Architect-Data, 5.0, It turns lots of source data into SSoT and feeds many data consumption tools, and potentially shares data with many other New Zealand Government organizations in a copy-less clone., I am looking forward to unstructured data capability as it is restricted to structured and semi-structured data.\nG2.COM, \nArpan s., System Engineer, 4.5, The best thing i like about the snowflake is its supports both share disk and share nothing architecture.it is a centralised based storing cloud database and its support all the new cloud services like AWS,Azure,GCP., The best thing i like about the snowflake is its supports both share disk and share nothing architecture.it is a centralised based storing cloud database and its support all the new cloud services like AWS,Azure,GCP.\nG2.COM, Srinivas P., Engineering Manager, 4.0, Easy to set up and use\n\n- Easy to scale with virtual warehouses\n\n- Storage and compute resources are separated\n\n- Supports structured and semi-structured data such as JSON and Avro\n\n- Easy to write queries as it follows the SQL dialect, - No support for local development testing, hard to implement unit tests to validate application functionality that integrates with snowflake\n\n- Switching warehouses is confusing\n\n- SQL editor should support auto-complete and highlight features\n\n- Compilation times for complex queries are high; analysts need to have some basic idea of partitioning data.\nG2.COM, \nVerified User, nan, 5.0, The separation of compute and storage and the flexibility in being able to control costs. Snowflake role hierarchy is also a very nice feature that allows for a flexible yet robust privilege hierarchy., It would be nice if Snowflake offered a cost breakdown per user. Having the resource monitors is nice, but having the ability to see who is utilizing compute would make cost management a lot nice.\nG2.COM, \nVerified User, nan, 4.0, Snowflake has a very clean UI, and it is simple to use. After about a week of playing around, I understood how most of the functionality worked in the tool which saved me so much time., The biggest issue I ran into so far is that Snowflake doesn't have the capabilty to automatically refresh data in a maternalized view, so the table I created can't be refreshed unless it is a manual process or set up outside of Snowflake.\nG2.COM, \nJohn H., nan, 2.5, Excess of warehouse data/metrics that can be used internally, Customer service is not the best and can be slow\nG2.COM, \nVerified User, nan, 5.0, Time travelling and fail safe, good ui,IAM service, Can't search text and do operation on it (like edit) in a query available on snowflake.\nG2.COM, \nLarry G., Data Analytics Engineer, 4.5, Very scalable and easy to integrate with my pipelines and visualization tools. Also very robust functions and functionality, User and profile management can be be a pain\nG2.COM, \nVerified User, nan, 4.5, Snowflake is reliable, and pretty fast for most workloads. The best feature is you can save some money by using only the amount of computer that is needed., Occasionally Snowflake takes a poor query optimization path. This is not unique to Snowflake though.\nG2.COM, \nAmit G., nan, 5.0, ease of use, cloud based, quick onboarding, excellent integrations, Cost is an issue, getting skilled resources is a challenge\nG2.COM, Michael S., Director, Business Intelligence and Web Services, 5.0, Snowflake gives you the opportunity to start small and grow quickly, while not overspending up front. It has completely transformed our ability to deliver analysis of large data sets. The product is continuously improving. We are able to use many different tools", "doc_id": "28f19db6-e542-4df6-8b44-969d7633e53c", "embedding": null, "doc_hash": "8a82b2354b37517ade91eaf53683764507d07a9ab6daaaf6aa14b10ee55f66c4", "extra_info": null, "node_info": {"start": 43812, "end": 47766, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "41ff879f-3e90-4083-823a-4e4fddb34caf", "3": "164a706a-545d-413a-94e2-1435ca0e56f9"}}, "__type__": "1"}, "164a706a-545d-413a-94e2-1435ca0e56f9": {"__data__": {"text": "large data sets. The product is continuously improving. We are able to use many different tools to interface with Snowflake and have yet to run into a challenge we could not address., New features are released only in the West Coast region, and it takes a long time before everyone else can use them.\nG2.COM, \nBhagyalakshmi L., Software Engineer, 5.0, Lot of success in storing large amounts of structured data and managing compute for fast queries across the data lake. As of today, we currently have ~50TB of data in Snowflake and hundreds of tables. Snowflake handles storage and compute efficiently. Snowflake can work well with large amounts of data with auto micro partitions of your data and you can also add clustering to improve usage., Large amounts of data might not work well if it\u2019s not partitioned and regularly pruned out. We are considering other options for real-time use cases.\nG2.COM, \nMikayla S., Customer Service Representative, 5.0, I like how detailed oriented and easier it is to be able to look more into customer's information when it comes to verifying information traces of customers using DoorDash., I didn't have access for a while until now. There isn't anything to dislike about snowflake yet, since it's a new program that I'm using.\nG2.COM, Verified User, nan, 5.0, Friendly GUI, Powerful cloud Cababilities, pricing sometimes is high for small cmopanies\nG2.COM, \nSanjana P., Software Development Engineer, 4.5, With snowflakes there's always encryption-on with data in rest and days in transit. It is one of the best platforms to ensure data security while aiding unification of data from data warehouses and data lakes., Higher costs when compared to its competitors. Also, the performance optimization alerts and notifications are way lesser compared to other cloud data warehouses.\nG2.COM, \nGiridhar P., Sr. Data Engineer, 4.5, Snowflake access is an easy process overall. The objects/tables creation DDL is much similar to a SQL server/MySQL syntax. Any number of tables with any number of elements could be created in your snowflake workspace. The analytical queries could be executed on top of the snowflake in a very efficient and smooth fashion with tremendous performance throughput. The flexibility of datatypes and having the string representation of any type of element is the most conducive flexibility of snowflake., Snowflake queries and structure need some training to get acquainted with. The extract process has special syntax that needs separate skill.\n\nSome of the table constructs in snowflake could be complex in nature. Different role exerts different restrictions on the table objects and not every user will have access to all the tables in snowflake.\nG2.COM, Verified User, nan, 4.5, i like snowflake sql syntaxes (10x better than MYSQL) and the query speed. Storage is also super cheap since they charge by compute usage like a utility bill. Its not laggy and i can share my sql sheets easily with others, I do not like the UI experience for users, I end up using pycharm or dbeaver and connect to snowflake to write my sql queries. yes, the new snowsights is better than the classic console, but it also took away some of the things I enjoy about classic console. I like the ability to access the accounts (admin related stuff) / datawarehouses pages on the same sql page\nG2.COM, Verified User, nan, 5.0, Storage and compute power are separated so you can scale and manage performance levels as necessary. Integrates well with Tableau and Matillion ETL to form a robust software stack., Whilst the different user roles help control permissions, it is easy to accidentally run an operation with the wrong one. New features are incrementally rolled out but would be nice to see the time-travel feature work over longer periods.\nG2.COM, Verified User, nan, 4.0, I like that you only pay for what you use and it makes it easier for people starting their own businesses to have a reliable database without having to buy and pay for a server., Not very user-friendly. It's hard to find table names and key words", "doc_id": "164a706a-545d-413a-94e2-1435ca0e56f9", "embedding": null, "doc_hash": "26075fc23eec2627e4be5b7fd852820d22f01f258b666cf85744f0579172f557", "extra_info": null, "node_info": {"start": 47751, "end": 51819, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "28f19db6-e542-4df6-8b44-969d7633e53c", "3": "71483569-9d8c-4746-a129-fde439817d02"}}, "__type__": "1"}, "71483569-9d8c-4746-a129-fde439817d02": {"__data__": {"text": "for a server., Not very user-friendly. It's hard to find table names and key words (like no autocorrect options). I also don't like not being able to use keyboard shortcuts like ctr+e and ctrl+H\nG2.COM, \nDani S., Product Manager, 4.0, Lots of functions, flexible SQL, easy to use interface, I like the new visualization tools. I don't talk to customer service, but teams seem to think They're very responsive. They're becoming our default database in the company. Admin has good access to query history., The Documentation for functions is sometimes worded confusingly and does not provide a lot of examples. Incredibly tough to upload CSV files into tables, have to use SE files through AWS, very few straightforward ways to go about it locally within a snowflake.\n\nSometimes active queries suddenly disappear.\n\nNeed dev/admin permissions to check historical info such as previously run queries.\nG2.COM, Verified User, nan, 4.5, Data pulling and querying is very good and it also can be connected to different other tools like tableau and python for the visualization and the analysis of the data. A very user friendly interface which does not take long to get used to it. I like that it's very fast and efficient., Does not allow the user to use up the whole space for query writing and sql auto formatting is also not available. It would be great if the top menu ribbon can be minimized\nG2.COM, \nDerek P., Business Intelligence Analyst, 5.0, My favorite feature of Snowflake is the ability to scale production with ease. In addition, the query editor (worksheets) is a fantastic tool that enables users to interact with the database., There is nothing to dislike about the product other than the ambiguity involved with the pricing. In addition, host information was slightly tricky to find.\nG2.COM, Verified User, nan, 4.5, The ability to scale warehouses according to business needs.\n\nThe ease with which views and connectors can be built.\n\nGreat community support., Snowflake doesn't have a native offering with cloud providers like Google, aws or azure.\n\nBulk loading is a bit difficult.\n\nThe next generation of data is going to be unstructured and semi structured. Snowflake must look into this domain as it currently does not offer much in this niche\nG2.COM, Verified User, nan, 5.0, Snowflake expedites the process of data querying in the best possible ways. It helps us out by:\n\n- finding compilation errors immediately\n\n- providing great functions\n\n- being insanely fast, I wish it had a dark mode!\n\nThe linking process with Tableau is a little finicky, but on the whole, is a very good system. I do not have huge complaints about this product.\nG2.COM, \nWai Yan H., ICT Presales Engineer, 4.0, I liked its unique architecture, and also about security., I disliked not supporting hybrid. Because our customer only need hybrid.\nG2.COM, \nVerified User, nan, 4.0, The most exciting part for me is to use this new thing and get more experienced on it, For now after reading some articles, there is nothing that i dislike!\n\nBut sure I'll share my thoughts with you after getting deeper.\nG2.COM, \nVerified User, nan, 4.5, I usually use Snowflake with SAS and PowerBI,\n\nIt is Awesome and very smooth with all microsoft products.\n\nConnectivity and refresh timing with PowerBI is phenomenal., I really dont recall and dislike, but still i would recommend that screen size/Terminal size can be increased for writing SQL queries and result view window also can have some features like traversing to next/previous records, Sorting by variables, choosing top N records etc.\nG2.COM, \nFatehi R., Data Engineer, 2.5, I liked the accuracy of the processes and the ease of use, There are some features not powerful need to be enhanced\nG2.COM, \nPriyanshu S., Associate Quality Engineer, 4.0, Using and Working with Snowflake is Like Cake Walk if You have Some Knowledge on Databases and SQL/Oracle.", "doc_id": "71483569-9d8c-4746-a129-fde439817d02", "embedding": null, "doc_hash": "110aad30e719279388376c52586d78ee10154fd57f3ac9f04e12b69fb8b4a24b", "extra_info": null, "node_info": {"start": 51832, "end": 55722, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "164a706a-545d-413a-94e2-1435ca0e56f9", "3": "6e10e340-5c45-4969-a8fc-f03571701760"}}, "__type__": "1"}, "6e10e340-5c45-4969-a8fc-f03571701760": {"__data__": {"text": "is Like Cake Walk if You have Some Knowledge on Databases and SQL/Oracle. Snowflake Provides an Intensive Set of Connector APIs Such as Spark connector, Python connector, etc., and Javascript Language-Based Stored Procedure Support. Snowflake is a Virtual Data Warehouse So You Don't Need to Worry about Managing things Physically or Hectically. Performance of Query Execution is Incredible even for larger Datasets., The Only Thing I Dislike about Snowflake Data Warehouse is Inability of Inferring Schema of Data Files Reading from Stage Area Such as Reading CSV, Json, Parquet, ORC etc from S3.\nG2.COM, \nSanjit P., Software Engineer 1, 5.0, We are using Snowflake for pushing data metrics and storing them in collaboration with AWS infra DB. The table organization and querying on database tables are smooth. It also captures the history of all your query and also provides an SQL auto-completion feature. It has a beautiful syntax color highlighting, which makes things readable. A new interface is now available, which offers full account search, chart visualization, SQL autocomplete, dashboards, and much more features., Nothing I can think of right now. Snowflake works great for my team and me.\nG2.COM, Verified User, nan, 4.0, The way data are stored, and the output is displayed., It is hard to recover and use the deleted data.\nG2.COM, Verified User, nan, 4.0, Easy interface, hassle free data ingestion from cloud storage, better warehouse performance, Query on external data on cloud is slow.\nG2.COM, Verified User, nan, 4.0, Architecture explanation was most helpful., More insights and use cases missing. Customer cases demonstration will be really helpful.\nG2.COM, Verified User, nan, 4.0, Speed of processing data and executing queries, Learning curve is high and can be difficult to learn the structure of how data is stored and accessed\nG2.COM, \nAlmog S., VP Data & Research, 4.5, It is fast, has no maintenance and operation around the tool, and has the ability to spin as much a WH you want in a click, not supporting yet Python UDF, support some time take some time to reply\nG2.COM, \nRahul G., Senior Associate, 5.0, 1. Speed of the query execution and updating the query\n\n2. Data migration\n\n3. Data security\n\n4. Data uploading, Nothing as such I think this is perfect mindpiece.\nG2.COM, \nsonu K., Business Intelligence -Data Quality Analyst, 4.0, No issue with the memory failure and pipeline failure due to the size of the warehouse, Credit limit expiration process..need to be more streamlined\nG2.COM, \nRonak A., Technology Lead, 4.5, Snowflake is very easy to use and scale-out.\n\nI have seen my employer get miraculous insights into its Digital Supply Chain data.\n\nIts seamless and secured integration with ready-to-use adapters with ERP like SAP makes it yet more demanding.\n\nThe dashboard and customizations are very handy and data warehousing becomes a cakewalk with proper implementation on Snowflake., Costing can be a concern for large organizations as other providers like Azure, AWS, or GCP can provide cost-effective platforms with their offerings.\nG2.COM, Verified User, nan, 5.0, The fact storage and processing power are separated is so powerful, the cloning and time travel features are incredibly useful also., The UI could do with improving, however there are tools like DBeaver that sit on top that solve this issue.\nG2.COM, Verified User, nan, 5.0, The content and the flexibility and pricing for this products I like most., I did not see any dislike about snowflake\nG2.COM, Verified User, nan, 4.5, The maintenance of the Data Warehouse is done by snowflake itself, yiu no longer need admins to apply patches and perform upgrades, No primary key and foreign key concept, that could be a real bummer.\nG2.COM, Verified User, nan, 4.0, Integrating snowflake as a data", "doc_id": "6e10e340-5c45-4969-a8fc-f03571701760", "embedding": null, "doc_hash": "c6cfaf5ca1d88e9beecd7b020000d61fb269fb34bcc14ee7370c294d9fdf88ac", "extra_info": null, "node_info": {"start": 55730, "end": 59539, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "71483569-9d8c-4746-a129-fde439817d02", "3": "8a3446a0-48bf-4591-82c5-c01cce6bbb83"}}, "__type__": "1"}, "8a3446a0-48bf-4591-82c5-c01cce6bbb83": {"__data__": {"text": "Verified User, nan, 4.0, Integrating snowflake as a data store in the ingestion step is very simple with multiple services, The cost is the only drawback I've noticed\nG2.COM, Verified User, nan, 3.5, clean interface, easy to navigate databases and find tables, tabbed systems, the process to switch roles/databases/schemas can be a bit cumbersome at times\nG2.COM, Sandeep S., Sr Data Analyst, 5.0, Snowflake is part of the modern BI stack, there are lot of inbuilt functionalities that makes complex data warehousing problems simple, The UI can be little more better compared with other warehousing tools such as Redshift , bigquery\nG2.COM, Verified User, nan, 4.5, well established api with other software and business tools\n\nfast query speed\n\nadvanced analytical functions, worksheet syncing issue when you have two of the same sheets open\n\norganization of worksheet is not great\n\npython and r api has too much dependency\nG2.COM, Verified User, nan, 5.0, The ability to easily query data and go through schemas, I think Snowflake is amazingly fast and easy to use.\nG2.COM, Verified User, nan, 4.0, Snowflake is a growing Data Warehouse Storage and Analytics Technology which will capture a big Data Analytics market soon. Snowflake is a cloud-based technology that has reduced a significant burden from the customer in terms of hardware maintenance, replacing failed components, patch upgrade, 24*7 DBA support, etc.\n\nThe best about Snowflake is its unique architecture. I worked on many DW Tools and found it better, among others with below reasons -\n\n1. No hardware maintenance (it reduces Datacenter maintenance cost)\n\n2. Architecture is simple and easy to understand\n\n3. Cost is directly dependent on the system usage, less load - Payless and vice-versa.\n\nMost of the DBA work automated with its architecture -\n\n1. Statistics collection\n\n2. Query Optimization\n\n3. Taking backup and maintenance\n\n4. Warehouse auto-suspend and auto-resume.\n\nCool features added in Snowflake -\n\n1. Data Sharing\n\n2. Data Marketplace\n\n3. Data Masking\n\n4. Zero-Copy Cloning\n\n5. Time Travel\n\n6. Fail-Safe\n\n7. Structured and Unstructured data Storage and reading capabilities\n\n8. And many more features\n\nI would surely recommend the companies that if you are planning to switch from the current DW env to another platform, do your POC on Snowflake once to know its benefits.\n\nSnowflake provides good customer support., Currently, Snowflake has provided alerts set up only for resource monitoring if they can add the capabilities to generate custom alerts like sending notification on database size threshold increased, etc., through monitoring tool.\nG2.COM, Verified User, nan, 5.0, Snowflake is highly scalable. The interface provided by snowflake is very comfortable to use. The query rofiles give very important insights., There are still some internal errors which frequently come so the environment is not very stable as yet. PLSQL stored procedures are not yet provided.\nG2.COM, Verified User, nan, 4.5, Ease of use, lack of maintenance, infinite scale, Cost management on snowflake isn't trivial.\nG2.COM, Verified User, nan, 4.0, Cloud storage, Performance, Pay as you use model, new updates, events, integration with other tools, SQL Compatible, Visualization tools, marketplace, Stored procedures, functions and other elements still use java syntax, No UI Downloadable Client, No dark mode in UI\nG2.COM, Verified User, nan, 4.5, Snowflake made it so easy to connect with data providers in such a cost-effective way. Besides all other offerings, analytics data processing is the USP of a snowflake. With scalability, snowflake solves the problem of data storage, ODBC connectors need to improve. also, time to time, product updates need to be communicated in a channeled way to keep knowledge up to date\nG2.COM, Verified User, nan,", "doc_id": "8a3446a0-48bf-4591-82c5-c01cce6bbb83", "embedding": null, "doc_hash": "b4d35db5743128341c8152abc438b9f4335e0fba9369e05e28b0b165fc56625b", "extra_info": null, "node_info": {"start": 59553, "end": 63373, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "6e10e340-5c45-4969-a8fc-f03571701760", "3": "cd5ca5e5-1a1f-4db1-8565-edcad71fbb05"}}, "__type__": "1"}, "cd5ca5e5-1a1f-4db1-8565-edcad71fbb05": {"__data__": {"text": "way to keep knowledge up to date\nG2.COM, Verified User, nan, 5.0, Easy to use and easy to learn without even prior knowledge to warehouse, Need to understand how it is configured with other tools\nG2.COM, \nvalentin c., Business Intelligence Developer, 4.5, I really like it's performance and speed. Also the UI is very intuitive. Another strong point is that you don't have to spend time and money on its administration. The storage is not a problem anymore and with snowflake you can load data instantly once it landed in your bucket., I don't like that it do not support multiple cluster keys on hte same table (can not support multiple indexes on the same table).\nG2.COM, \nPranav D., Digital Specialist Engineer, 4.0, The SDKs are very easy to integrate and use., The user interface is not that much user friendly.\nG2.COM, \nPavan Kumar Y., Senior Data Engineer, 4.0, Its features like separation of storage and compute, on the fly scalable compute, data sharing, data cloning, and supports may languages to connect with., Only supports JavaScript for stored procedures\nG2.COM, Priyank S., Data Analyst III - Python Developer, 4.0, Snowflake documentation is straightforward. API is easily accessible with python. The GUI can handle a whole lot of data in multiple sessions.Snowflake can support unlimited concurrency with its unique multi-cluster, shared data architecture. This allows multiple compute clusters to operate simultaneously on the same data without degrading performance. Snowflake can even scale automatically to handle varying concurrency demands with its multi-cluster virtual warehouse feature, transparently adding compute resources during peak load periods and scaling down when loads subside., There is nothing much to dislike about it. There some limitations with concurrent runs, but those are addressed.\nG2.COM, Verified User, nan, 5.0, Powerful and feature rich data platform for industry with compliance needs. Continuous innovations with new features such as Snowsight and Snowpark., Flexibility to select compute type for running data science models in Snowpark such as compute with GPU.\nG2.COM, Verified User, nan, 5.0, This product is great and definitely is something that I would highly recommend to other companies. I feel that their support is great and it is something that has made our company able to manage our data more effectively at this time. I feel that in a pandemic situation we were able to share and analyze our data more efficiently with Snowflake and do this remotely at times which helped us not interrupt the flow of business at this time., Nothing - This product was great and has worked well for us. We have not had any major problems and if we experience any issues support is ready to help us very quickly.\nG2.COM, \nRaj R., SDE 2, 4.5, It is a helpful tool, it's breathtaking for important tasks, despite having cloning and information sharing features, it functions optimally without a good deal of effort, despite an excellent query efficiency, it's quick despite having many combinations, along with a web user interface that is stable., I've no reservations about Snowflake, but it is an outstanding product with many helpful features, many of which do well. I've an excellent result.\nG2.COM, Verified User, nan, 5.0, Snowflake has allowed us to streamline the most important pieces of information from our production databases to organize and visualize them in a way that is accessible to our entire organization. As a manager working cross functionally Snowflake has helped me answer technical questions about our schema without assistance from a tech lead while helping me organize my marketing analytics and insights for both internal and external products. The SQL writer is so easy to use and the ability to connect to so many disparate data sources in one place is an incredible value add to our DaaS and reporting., I've found that it's easier to update account settings using SQL than from the GUI. This has caused confusion for less technical stakeholders on my team (finance, etc.). In general these areas could use some TLC to be more accessible. It would also be helpful to have clearer financial breakdowns of usage.\nG2.COM, \nDominik R., nan,", "doc_id": "cd5ca5e5-1a1f-4db1-8565-edcad71fbb05", "embedding": null, "doc_hash": "4ce52d36d0ea496a51994d5f9a2f4fdbc87080a4a636d3a19c734c596cc193af", "extra_info": null, "node_info": {"start": 63371, "end": 67588, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "8a3446a0-48bf-4591-82c5-c01cce6bbb83", "3": "584df3b5-0387-4172-a121-3f803a865c10"}}, "__type__": "1"}, "584df3b5-0387-4172-a121-3f803a865c10": {"__data__": {"text": "financial breakdowns of usage.\nG2.COM, \nDominik R., nan, 5.0, Performance and scalability. Pay as you go price model doesn't require large upfront invests makes it a great fit even for smaller companies. Feature completeness and still constant innovation with further great features., I thought long about it but couldn't find anything in this category.\nG2.COM, Verified User, nan, 4.5, We are able to store semi-structured (chat messages) data at scale and able to parse them out easily as well on query. At Drift. The data team also looks to store the raw data before we transform and the variant data type in Snowflake is key to ensuring we can parse the data without having to backfill or do major code changes., The Clouds Services cost structure in Snowflake billing is a little less transparent and customers would like to know how we get charged or why charges vary for same workloads on different days.\nG2.COM, \nScott V., nan, 5.0, Separation of storage and compute make it so simple to manage capacity and ensure fast response times for all warehouse workloads. We can have analysts on one warehouse, another warehouse servicing our API, and yet another one to serve up customer dashboards, all working on the same data without affecting the response times of each other., Enterprise account required for clustering, which not only increases the number of credits you will use but also drives up the cost per credit. The community forums are not that active and are a hassle to post to because of needing to have a support account that is different than your regular account. No ability to share data with consumers that have an account in a different region.\nG2.COM, \nTim C., Principal Business Analyst, 5.0, It just works. The advantage of this environment is that there is minimal administrative work required to support rapid developments and users of all types. Disk provisioning , performance concerns are a thing of the past., This is largely a CLI environment. Many activities require writing code.\nG2.COM, \nMark P., Technical Solution Architect, 5.0, Tri-Secret Secure : customer held key ensures that service representatives can not \"see\" our data.\n\nDynamic Compute Sizing : we can resize our compute resources (known as snowflake warehouses) to react to needs of the Business or to minimize cost.\n\nReplication : we can replicate entire databases from one region (or cloud) to another easily and very quickly which is important with financial services data., Account Management : while we can see our consumption (compute and storage) online, we don't have access to see our current credit balance and forecasted usage.\n\nCompute Resource Rationalization : we don't have the insight into whether the sizing of our compute resources are appropriate (too large or too small). Sizing becomes more of an art than a science.\nG2.COM, \nVerified User, nan, 5.0, Separation of storage vs compute and very transparent billing, Performance with visualization tools is not the best\nG2.COM, \nVerified User, nan, 5.0, It is web-based and is intuitive. There are support forums to use also., Nothing as it gives me everything I need to be successful with my position.\nG2.COM, \nVerified User, nan, 5.0, Its ease of use. The solution feels natural for people that have worked with relational databases before because of its implementation of basic SQL. However, combining structured and semistructured data in a query is extremely simple, and the performance is impressive. You can pull millions of rows in an instant by just setting the correct warehouse size., There is little to dislike about Snowflake. Its performance and ease of use are incredible. However, Snowflake can still be considered a newcomer to the market, so the breadth of solutions that integrate and communicate with Snowflake is somewhat reduced compared to other products (SQL Server, Oracle, Redshift, etc.)\nG2.COM, \nVerified User, nan, 5.0, Snowflake is the easiest cloud data mart I\u2019ve used., Snowflake does not allow you to extend the length of table names - you have to know what you\u2019re looking for\nG2.COM, \nAaron G., nan, 5.0, The biggest benefit to using snowflake for", "doc_id": "584df3b5-0387-4172-a121-3f803a865c10", "embedding": null, "doc_hash": "024672b99c940a820ac29f833bb9b723fefeb6d9b1ca3bebc46ec016efcfed0c", "extra_info": null, "node_info": {"start": 67590, "end": 71740, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "cd5ca5e5-1a1f-4db1-8565-edcad71fbb05", "3": "cf8ca687-4a5d-42df-8c80-d4f5cd78def8"}}, "__type__": "1"}, "cf8ca687-4a5d-42df-8c80-d4f5cd78def8": {"__data__": {"text": "\nAaron G., nan, 5.0, The biggest benefit to using snowflake for us has been the ease of use when it comes to data management and tool interaction. When we migrated from Redshift we also saw a huge increase in performance due to the improvement in the way that concurrency impacted our looker instance. I highly recommend!\n\nThe administration tooling/UI in snowflake is amazing. I don't need to have highly trained database admins handling everything. Its easy to understand and work with functionally makes it much more accessible to less technically skilled individuals., The biggest issue we are facing now is implementing snowpipe. Some of the problems has been due to the lack of documentation on how errors are handled.\nG2.COM, \nSvetlana N., nan, 5.0, The Snowflake data warehouse uses a new SQL database engine with a unique architecture designed for the cloud, I like this tool, nothing that i can think about. So far so good\nG2.COM, \nVivek P., Senior data engineer, 4.5, Snowflake is better than snow\n\ndecoupling of data and compute\n\ntime-traveling and data backup\n\nAuto scalability.\n\nSoftware as a service no need to maintain hardware or software\n\nSupports cloud provider like Azure, AWS, google cloud\n\npay as use.\n\nHighly tolerant and scalable.\n\nsupport ODBC JDBC connection\n\nsupport standard SQL.\n\nData Virtualization which makes data retrieval so fast across downstream systems., Not Available for on-premise.\n\nstill growing so not large scale community\n\nData modeling features can be enhanced further.\n\nNo Certification or dedicated training program\nG2.COM, \nAndries v., Data Scientist/Engineer, 3.5, Cloud solution is easy to impliment - We had it up and running in an hour or two.\n\nIDE remembers the tabs and queries you had open.\n\nCheap solution to impliment.\n\nCosting platform is great., Limited functionality in terms of functions, sub queries and some flexible dynamic tricks that SQL can do , that Snowflake can't.\nG2.COM, \nMagda M., HR Advisor, 4.5, The strength of Snowflake is that its SQL is robust and easy to use in a changing environment. Snowflake supports various data sets, both structured and unstructured. That makes climbing much easier, but also more economical., Speed and mobility could be increased. Snowflake is predicated on a non-PMPP database and may delay automation for temporary loads.\nG2.COM, \nVerified User, nan, 5.0, best reliable data warehouse system for modern and robust system, So far i didn't find any negative features on using this application\nG2.COM, \nHemant A., Senior Credit Manager, 4.5, With a genuinely effective database, instead of spending time on retrieval and documentation solutions, you will be able to generate real results with little to no effort in constructing and maintaining your database and little to no time in collecting data. Additionally, when a customer is found, you can now see if they have been ordered, whether they have been ordered, and what procedures are being changed., Snowflake does not support general table expressions. We make the most of encryption, but we think there's space for development. Also, error messages are often confusing, particularly when a configuration table is added, and the new database ends up doing just that.\nG2.COM, \nEdric M., Sales Business Development, 4.5, Snowflake is an amazing system that covers organized and semi-structured information to provide ready-to-use applications including JSON, ORC, XML and other semi-structured information. This allows you to focus on data management instead of functional testing in a database engine that has been developed. Its layout is common to the another SQL frameworks I've been using, and it's relatively simple to use because of the efficient way it looks at the connections between tables., For fairly complex queries, the response time may be very long; SSIS is connected to its ODBC, but it takes a little longer to get information from Snow Brand. In addition, co-related sub-inquiries are not endorsed.\nG2.COM, \nSarah K., Key Account Manager,", "doc_id": "cf8ca687-4a5d-42df-8c80-d4f5cd78def8", "embedding": null, "doc_hash": "5db951dd3da5c3f286e2cf17559e32c13e28d746d4b771675ca58b4efb7a25c7", "extra_info": null, "node_info": {"start": 71738, "end": 75756, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "584df3b5-0387-4172-a121-3f803a865c10", "3": "0130c4bd-52f6-4008-a110-cdc9be8f8c63"}}, "__type__": "1"}, "0130c4bd-52f6-4008-a110-cdc9be8f8c63": {"__data__": {"text": "are not endorsed.\nG2.COM, \nSarah K., Key Account Manager, 4.5, The Snowflake is easy to install and operate. The ability to immediately move clusters from top to bottom provides great adaptability in terms of achievement and profitability. In my opinion, the best feature of the snowflake should be \"time-travel\". Time journey is a thought of capturing data at a certain time and Snowflake also provides a \"share\" capacity that makes it easier to share data internally. The ability of Snowflake to clone has served us well in our experience., There is not much to say, but a cloud storage study has shown that Snowflake is one of the various adjustable and scalable data storage solutions on the market.\nG2.COM, \nMonish K., nan, 4.0, snowflake query analysis , query history metadata & snowflake support, some syntax changes, and the drop downs are some times slow\nG2.COM, \nVerified User, nan, 5.0, Snowflake is a database and a storage warehouse on the cloud. Since it's scalable on demand, retrieving data through Snowflake Warehouses is lighting fast. All the computing power required to run the SQL queries are taken care by the Warehouse size we choose. If a query is taking too long to run a quick switch to a bigger warehouse does wonders. Migrating and loading data into Snowflake is a breeze too via Snowflake Stages and COPY TO commands., Snowflake doesn't enforce constraints, especially primary keys. So, care should be taken while doing INSERTs and UPSERTs to maintain data integrity. This lack of this feature is understandable since it's projected more as a storage warehouse.\nG2.COM, Marcia g., IT Consultant, 5.0, Snowflake has some rugged archive features that make it run easily. It makes reporting questions run on our production environments for a relatively short time. Also, Snowflake comes with a DBA feature that's very helpful for maintenance tasks of a project, such as patches and constant updates. It is easy to customize and it makes operating loads easy to handle from online stores., In Snowflake, questions don't get a limit size, since the computer power grows with the search volume, implying that we have greatly increased the things that we can check into.\nG2.COM, \nBrady A., Information Technology Specialist, 4.5, Snowflake has an interesting architecture that embraces structured and semi-structured data, as it offers ready-to-use applications that include semi-structured data like JSON, ORC, and XML. This will allows you to concentrate more on information management rather than regression testing with the designed-in database engine. The interface is more similar to the other SQL query structures which I have used and is pretty easy to use since there's a way to see connection entre the tables efficiently. It allows us to solves many market issues, from the delivery of our products through to the payment process., In rather complicated queries, the hit times are quite high. Although SSIS is linked to the ODBC, retrieving information from the snowflake can be a bit sluggish. Also, the correlated sub-queries are not supported.\nG2.COM, Eliza R., Information Technology Specialist, 4.0, Snowflake offers a great virtual storage space, providing workload, virtual storage and a great general usability. It allows our team to take the initial MS SQL document query from the OLTP databases, transform it into a Snowflake SQL format and operate in seconds or minutes the same request on Snowflake., In several respects, it is required to use SQL language varies from Redshift, so your team must have some knowledge about it. Also, it often shows some syntax issues and, if you contact the customer support, they are usually pretty slow. Snowflake really needs to improve their technical help for client-identified mistakes.\nG2.COM, Sherri W., Information Technology Specialist, 4.5, When we have all the various data sources in a database warehouse, Snowflake allows us to start looking for connections between both the data sources and the multiple business units. We do this in order to connect all our data quick and effectively. The main cloud architecture provides straightforward integration with many other cloud-centered technology tools, including storage duplication brokers. Also, it comes with very clear", "doc_id": "0130c4bd-52f6-4008-a110-cdc9be8f8c63", "embedding": null, "doc_hash": "585339a66f4dea96c077ccafde915df3828f66f3380b9aa1e6e2b0dd20050698", "extra_info": null, "node_info": {"start": 75760, "end": 80024, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "cf8ca687-4a5d-42df-8c80-d4f5cd78def8", "3": "be992b0a-cd60-4f79-bdb0-b1183171e884"}}, "__type__": "1"}, "be992b0a-cd60-4f79-bdb0-b1183171e884": {"__data__": {"text": "technology tools, including storage duplication brokers. Also, it comes with very clear documents to support., The internet front-end is all very well, but if they could add back-end GUI it will boost the Snowflake service even more. Also, when many applications are concurrently in the performance, the probability of lose data rises.\nG2.COM, Debera R., Information Technology Consultant, 4.5, With a really efficient database system, it allows us to spend little time collecting information regarding our data and providing real results without the criteria to build and manage databases, instead of wasting time handling and preserving the solution. Also, it allows us to see when a client has been identified, if an item has been ordered, when it has been demanded and what are the most efficient processes to enhanced our products., in Snowflake popular table expressions are not supported. We take full advantage of encryption, however we feel there is room for growth here. It is also not often easier to comprehend the error messages, particularly if transient tables are added, all of which is supposed to be done with a new database.\nG2.COM, \nMatt L., Product Manager, 5.0, The auto scaling functionality, and instant flex-ability with 0 down time are amazing. Their query profiler and reliability is also the best we have found. The ability to share data with read only accounts is also very useful to us., A few issues with the .Net ODBC connector around timeouts of long running queries.\nG2.COM, Verified User, nan, 5.0, Being fresher in the SQL it guide us how to use the snowflake , eventually month of time help me inquiring data from DB and quite easy to connect any DB to extract financial details for further working., As of now not identified major dislike , but like to highlight for the improvements , were we start coding it as show pop like google next character or symbol to be used, so it will more helpful for beginner.\nG2.COM, \nRakesh K., Assistant Manager Finance, 5.0, It takes almost no time to provide the result, The results show us Faster than Instant Noodles., Nothing as of now. The user experience is really good that I don't find any negative experience to share with, Hoping this will continue to work like this.\n\nJust wanted to continue with Snowflake until we find any error in it, The Snowflake team, for now, all seems good if there is any requirement when the team contacts them they provide a proper solution within a short period of time that.\n\nMy SQL was so slow if we awere working them prodivicity was going down as uploading in that & Querying was a very bad experience since the team was looking for a better solution after a lot of analyzing the team figure out Snowflake will be the best option for an organization like Swiggy\nG2.COM, Verified User, nan, 4.0, the best thing about snowflake is it uses smaller disk space and easy to implement in work space and it offer better data quality with good structure and it consists schema is in logical model and also it is web support one can access with minimum internet anywhere any time., snowflake is having few dislike as well one is complexity to source query joins,and limitations in data export you can extract up to certain MB,Real time refreshing is required and having single table dimensions.\nG2.COM, \nGeorge F., ETL Developer, 4.5, I want to start talking about the flexibility of the databases in the cloud. I came from a traditional databases which are installed in a server within the organization and actually the new approach to have a database in the cloud it worth every dollar that could cost. We just started a new project this year which consist in migrating a lot of data from our on premises data warehouse to the snowflake data warehouse. Being able to use almost all the SQL that we had in our database was a really good advantage since we migrated a lot of functions and views too. Now we are integrating snowflake and oracle through an export in CSV files. We push the data to an external s3 bucket then we take it from snowflake., The database itself is pretty past to operate and you will use almost all the same functions and syntax that we now in SQL.\nG2.COM, \nOmran A., DBA,", "doc_id": "be992b0a-cd60-4f79-bdb0-b1183171e884", "embedding": null, "doc_hash": "1853bfb149f4bc36b473209d1a97026053ba0e363fbc3f6821b35713160b4a83", "extra_info": null, "node_info": {"start": 79999, "end": 84205, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "0130c4bd-52f6-4008-a110-cdc9be8f8c63", "3": "c75b30bc-2118-4e6c-8de0-917d39ced670"}}, "__type__": "1"}, "c75b30bc-2118-4e6c-8de0-917d39ced670": {"__data__": {"text": "we now in SQL.\nG2.COM, \nOmran A., DBA, 5.0, data sharing and data security is important for us as well as replications, I have not found anything to dislike abut the product so far\nG2.COM, \nShangqing W., Data engineer, 5.0, the performance of the snowflake is pretty good. And the one step setting is super convenient for small business. Let the BI team can focus on the data analysis., the real-time streaming data support is inconvenient before pipeline release.\nG2.COM, \nHyun Grasso G., Director, 5.0, Ease of use and maintenance. excellent engineering, I have not discovered anything that I don't like at this point\nG2.COM, Verified User, nan, 5.0, The performance is fantastic and administration is simple and intuitive. The separation of compute from storage allows great flexibility and customization., The UI is a little slow and some SQL functionality isn't available yet.\nG2.COM, \nNathan S., Principal Engineer - Enterprise Data, 5.0, Quick performance in a data driven world. We needed something that would scale, and snowflake delivered on all of their promises and then some. We were stuck on a more traditional database before and ran into issues of scaling and query performance despite it also being cloud based. Snowflake was able to help us in our realization of putting our customers first and getting insights into data far more quickly., Some features that have been standard on traditional RDBMS systems haven't been implemented yet, but they are coming. Documentation on a number of features seems to be lacking or non-existent. Some of the community forums are hard to search for and find answers, especially with updated content and as new features are rolled out.\nG2.COM, Verified User, nan, 5.0, Snowflake is an easy to use modern cloud data warehouse solution built to optimize cost and storage., There isn't much that I dislike about snowflake. There is a bit of a learning curve.\nG2.COM, Verified User, nan, 4.0, I most appreciate the cloud accessibility and ability to access different data sources, I most dislike the web browser UI. It feels underdeveloped from a user stand point - I was very excited to see the preview of the new version coming soon.\nG2.COM, \nStephen T., Cloud Data Consultant, 5.0, able to scale up and down based on load. Can handle json data easily (using variant data type)., user interface is sometimes buggy (pop ups from left hand panel get \"stuck\")\nG2.COM, Verified User, nan, 4.5, The best feature that I like about Snowflake as a database or data warehouse is the ability to Clone the data at no extra cost, and create Dev, test and Prod environments. the ability to go back in time are few of the best features. Being a develop I'm always fearful of accidentally dropping tables and not actually having backup scares me. but Snowflake eliminates that with features like time travel., Auto correct or auto complete are few of the features that I would be interested in. But with Snowflake acquiring Numeracy, I'm hopeful to have a lot more query edit features.added.\nG2.COM, Verified User, nan, 4.5, Snowflake allows many companies expand their data profile into the cloud easily and with a large performance improvement over traditional data warehouses., The only real thing that annoys me is that F5 refreshes the screen instead of running the query. Simple things.\nG2.COM, \nVerified User, nan, 5.0, Ease of use for non technical users\n\nAccess to load data from anywhere with any tool on the market, Personal issue not good at sql so I will have to learn (again)\nG2.COM, \nVerified User, nan, 5.0, true separation of compute and storage, flexibility of spinning up warehouses, pass through cost of the storage. Easy to spin account up. Like the ability to re-size warehouses on the fly without restarting the underlying process, unique SQL functions (not uncommon to any db provider). Heavy scripting to get data loaded, heavy scripting to build out the user groups, roles, grants, etc. around security.\nG2.COM, Verified User, nan, 4.5, Architecture that provides", "doc_id": "c75b30bc-2118-4e6c-8de0-917d39ced670", "embedding": null, "doc_hash": "5ff569518b4b022d7e21da7fcfe68cd393c561599d2d8247b2974d9a4bb30cde", "extra_info": null, "node_info": {"start": 84250, "end": 88276, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "be992b0a-cd60-4f79-bdb0-b1183171e884", "3": "309a2f60-a846-4e49-afe6-37ff48499eee"}}, "__type__": "1"}, "309a2f60-a846-4e49-afe6-37ff48499eee": {"__data__": {"text": "Verified User, nan, 4.5, Architecture that provides better Performance requires minimum maintenance, It's all good, still exploring it so can''t say anything negative yet\nG2.COM, \nankit g., Mgr. MDM Solutions, 3.5, Essentials session was very informative for me as a beginer, I feel this was the first time and that's why a few things were missing e.g. checkins over limit and am sure it will all be taken care by next time.\n\nLabs can be better.\n\nSolutions demos could have been more technical\nG2.COM, \nCristian C., Software Engineer, 4.0, Data sharing is easily my favorite aspect of Snowflake., I don't like the UI, although it's not the selling point, I wish it looked nicer!\nG2.COM, Verified User, nan, 4.5, The simplicity - store data in one location, but many different users can access this without interfering with one another., Haven't used it enough to find anything that I dislike about it yet\nG2.COM, \nChris D., Manager, Consumer Analytics & Insights, 5.0, Snowflake scales easily to meet our demands - no matter how much data we throw at it, no matter how complicated the query, we can solve the problem quickly and effectively. It's an extremely full-featured SQL dialect, and we can use it to do the heavy lifting on a lot of our data science efforts. And finally, the ability to spin up different compute resources for different tasks and avoid contention is a godsend., The web SQL editor can be a tad flaky at times (no pun intended), though I am excited to see the upcoming version that they just showed off. In general I'd love to get more updates from them about the great work and additions that they are constantly making to the platform; I sometimes discover great new features by accident when I am googling to solve a problem.\nG2.COM, Verified User, nan, 4.0, Before Snowflake, you couldn't have it all. You either sacrificed performance or used flat files, sacrificing the benefits of an RDBMS. Snowflake has really figured out how to give you both in a way that's great., It's almost too open. For an enterprise, the set up for security is very difficult and feels much like a bolted on afterthought.\nG2.COM, Verified User, nan, 4.5, regional failover AND cloud service failover as new features, i.e failover from AWS to Azure. Simple to use, secure, and connect., still missing some standard RMDBS functionality.\nG2.COM, Verified User, nan, 3.5, enjoyed a lot of the topics covered overall. It was a good way to increase exposure to the stack of tools we have access to., signup / capacity warnings. i didnt get into two sessions my first day that i wanted. the food was not particularly allergen friendly. also please create some breaks! some of the breakout sessions were fairly high level, would have enjoyed more technical/analitycal\nG2.COM, Verified User, nan, 5.0, frictionless.. low maintanence... power packed.., utilities.. some of the features that worksheets has are subpar\nG2.COM, \nVinoth1 N., BI Data Engineer, 5.0, Cloning and Time Travel options, easy to Intergate with other cloud products., sometimes error notification are irrlevant\nG2.COM, Verified User, nan, 5.0, The ease of implementation and support that we have received has been absolutely valuable, I found nothing that I dislike so far and have truly enjoyed the experience\nG2.COM, Verified User, nan, 4.0, I like the web-UI front end with the ability to still write SQL code., I had issues with the fact that all column and database names were in upper-case. But one of the experts here helped me out with the issue. It might be good to have an option to use either upper or lower case.\nG2.COM, Verified User, nan, 4.5, Performance, easy to learn. Easy scaling is the one feature which made it really appealing., Nothing as of now. Costing may be more transparent.\nG2.COM, Verified User, nan,", "doc_id": "309a2f60-a846-4e49-afe6-37ff48499eee", "embedding": null, "doc_hash": "d36383fe5bba24589c9857d7b82de828c4c0906d0f8616637a24900649cc13db", "extra_info": null, "node_info": {"start": 88264, "end": 92063, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "c75b30bc-2118-4e6c-8de0-917d39ced670", "3": "f3396eb0-fefc-4246-92d7-4a0829614572"}}, "__type__": "1"}, "f3396eb0-fefc-4246-92d7-4a0829614572": {"__data__": {"text": "Costing may be more transparent.\nG2.COM, Verified User, nan, 5.0, I love that this was developed cloud native., Nothing I dislike at all about snowflake so far. There are many features that are rolling out, It will just take time to get things right. They have tremendous support and will work with you to get things on their roadmap if needed.\nG2.COM, Verified User, nan, 4.0, Snowflake has consistently exceeded expectations in terms of performance and capabilities. Their platform is smooth and intuitive and, above all, fast., The worksheets can use a lot of work. For example, there's no easy way - to my knowledge - to download a script aside from copy/pasting into a text editor. THere's also no way to save or share scripts across teams, which can be annoying\nG2.COM, Verified User, nan, 5.0, I like the pricing model and simplicity of management and many features., Snowflake is lack of schema change management and CI tool integration.\nG2.COM, Verified User, nan, 5.0, Unlimited scalability, ease of management, fast innovation pace. I mean at one point we have thousands of concurrently connected users and it works just fine., There is nothing to be disliked, it is the best SQL data warehouse on the market right now..\nG2.COM, Verified User, nan, 4.5, Simplicity of the software from setup, usage and overall performance, Roles and permission management can get quickly complex\nG2.COM, Verified User, nan, 5.0, Snowflake helps us attract better data talent, and gives us the ability to escape from years of legacy system constraints., I would have said lack of Google cloud option but just heard that's changed...\nG2.COM, Verified User, nan, 5.0, workload isolation, ease of use, zero setup, no strong dislikes, it is a really strong product\n\nG2.COM, \nMiles D., Business Intelligence Manager, 5.0, Snowflake performs faster than you can imagine allowing me to spend more time helping the business and add value., No problem at all, snowflake is great, we love it\nG2.COM, Verified User, nan, 5.0, Snowflake data warehouse as whole. The Snowflake dedication to understand and work closely to make sure Snowflake works according to our need., Snowflake is growing company. There are few features are either yet to support as expected like materialized views or stored procedures (even though it exists, it is not up to the expectation yet)\nG2.COM, Verified User, nan, 4.0, The architecture and how it allows our business get value from our data., Would like to see more consistent performance on live connections with BI tools like Tableau\nG2.COM, \nChris D., nan, 4.5, Snowflake scales easily to meet our demands - no matter how much data we throw at it, no matter how complicated the query, we can solve the problem quickly and effectively. It's an extremely full-featured SQL dialect, and we can use it to do the heavy lifting on a lot of our data science efforts. And finally, the ability to spin up different compute resources for different tasks and avoid contention is a godsend., The web SQL editor can be a tad flaky at times (no pun intended), though I am excited to see the upcoming version that they just showed off. In general I'd love to get more updates from them about the great work and additions that they are constantly making to the platform; I sometimes discover great new features by accident when I am googling to solve a problem.\nG2.COM, Verified User, nan, 4.0, Before Snowflake, you couldn't have it all. You either sacrificed performance or used flat files, sacrificing the benefits of an RDBMS. Snowflake has really figured out how to give you both in a way that's great., t's almost too open. For an enterprise, the set up for security is very difficult and feels much like a bolted on afterthought.\nG2.COM, Verified User, nan, 4.5, regional failover AND cloud service failover as new features, i.e failover from AWS to Azure. Simple to", "doc_id": "f3396eb0-fefc-4246-92d7-4a0829614572", "embedding": null, "doc_hash": "c20be3f02605bf29f30710b0e90a9f7a44c7fa6191f35277895d5a3ccf35bdfd", "extra_info": null, "node_info": {"start": 92056, "end": 95930, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "309a2f60-a846-4e49-afe6-37ff48499eee", "3": "d0cd6033-d5e0-4175-843b-9add469a23ad"}}, "__type__": "1"}, "d0cd6033-d5e0-4175-843b-9add469a23ad": {"__data__": {"text": "failover as new features, i.e failover from AWS to Azure. Simple to use, secure, and connect., still missing some standard RMDBS functionality.\nG2.COM, Verified User , nan, 3.5, enjoyed a lot of the topics covered overall. It was a good way to increase exposure to the stack of tools we have access to., signup / capacity warnings. i didnt get into two sessions my first day that i wanted. the food was not particularly allergen friendly. also please create some breaks! some of the breakout sessions were fairly high level, would have enjoyed more technical/analitycal\nG2.COM, Verified User, nan, 5.0, frictionless.. low maintanence... power packed.., utilities.. some of the features that worksheets has are subpar\nG2.COM, \nFrederic P., Principal Consultant, 5.0, No need to manage, always up, no DB Administrator needed anymore. Snowflake SQL is really easy and fully featured. Cost is fairly easy to project and allocate. Obviously, it scales like a charm. And did I mention that storage is dirt cheap? They basically are just passing S3's cost..., On boarding experience takes longer than it should: I had to wait 3 days to get it activated...\n\nAlso, you can get a vanity address but it requires to talk to their sales teams and is a more convoluted process than it should really be...\nG2.COM, Verified User, nan, 4.0, I like the scalable nature of Snowflakes' warehouse billing. Combined with the flexible nature, the data sharing offers new product opportunities, It's really easy to write poor queries and ramp up warehouse cost.\nG2.COM, Verified User, nan, 5.0, The speed and scalability, easy to use, and also being cloud-based, no stored procedures, there is no AWS region for Brazil customers as well.\nG2.COM, Verified User, nan, 5.0, Snowpipe and the autoscaling are the best features, Price can be a deterrent because it is harder to put under Cap Ex expenses.\nG2.COM, Verified User, nan, 4.5, SQL Concurrency and separation of Storage and Compute, Time Travel, Zero Copy cloning, Materialized Views, Minimal DBA management, More transparency into Service part of architecture (Global Services layer), Release of new features might be better off with notifications to customers\nG2.COM, Verified User, nan, 5.0, More transparency into Service part of architecture (Global Services layer), Release of new features might be better off with notifications to customers, It would be good if you could add feature to manage partitions on top of the base functionality.\nG2.COM, Verified User, nan, 5.0, The ability to separate functional areas of the business to their own warehouse and allow them to work in their own environment without affecting the rest of the business, The integration from Databricks if using okta\nG2.COM, \nMegan B., Account Manager, 4.5, The announcements and new releases are proof of the innovation of its leaders and their drive to put customers first. The fact that Snowflake keeps getting better and better with no downtime is amazing. Can't wait to see more!, Honestly, can't think of one, but for my specific role, I would say it's hard to know who to talk to in the company due to the growth (a good problem to have, I suppose). It constantly changes making partner relationships difficult with Snowflake Sales Directors.\nG2.COM, \nHailey R., Regional Account Manager, 5.0, Snowflake didn't just develop a cutting edge DW and stop there. Instead they ask \"how can I make this better for our customers and partners\" on a daily basis. These innovations show and contribute to the Blizzard that is Snowflake!, With the exceptional growth of the company, it's difficult to determine who is who, what rep is over each area, and who to reach out to to solve a problem. But this is a great problem to have - a massive growth spurt!\nG2.COM, Verified User, nan, 4.5, The SQL standards followed by snowflake matches the ANSI standards and", "doc_id": "d0cd6033-d5e0-4175-843b-9add469a23ad", "embedding": null, "doc_hash": "23d03a5d8e6453e5191561152fb814c8c2c9281798b251e97a8b498d9d564525", "extra_info": null, "node_info": {"start": 95928, "end": 99793, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "f3396eb0-fefc-4246-92d7-4a0829614572", "3": "c08507d2-227e-40fc-8009-f22440e228f1"}}, "__type__": "1"}, "c08507d2-227e-40fc-8009-f22440e228f1": {"__data__": {"text": "The SQL standards followed by snowflake matches the ANSI standards and it's similar to majority of RDBMDS systems in terms of SQL syntax., Connectivity with other computing platforms like Spark or it's Python3 connector which i found major issues.\nG2.COM, Verified User, nan, 4.0, hands on labs and sessions, ask the expert, hands on labs and sessions, ask the expert\nG2.COM, Verified User, nan, 4.5, I love Snowflake for its performance and the many different features that are constantly being added. I thought the tool/technology was very easy to pick up and the snowflake team is very helpful in guiding and assisting when necessary., I am a pretty new user of Snowflake so right now I am still in a bit of a honeymoon phase maybe as I dont have anything I particularly dislike.\nG2.COM, \nAlex S., nan, 5.0, Constant innovation to continue to be the best. They took a brilliant idea to separate compute and storage, and keep improving the scope that it can be used for, and making thins easier to maintain., The current limitations are already being addressed, including integration with streaming data and better multi-cloud support, and replication.\nG2.COM, Verified User, nan, 5.0, Snowflake is exactly as described in all their literature. There is no smoke and mirrors here, its all in the platform and it just works!, Nothing I can think of right now. Wishing more organizations will wake up and try the platform. Data Sharing would be better if more orgs were on the platform.\nG2.COM, Verified User, nan, 4.5, The fact that its so easy to set up an allows our customers to utilize their data in a fraction of the time., Would like to have more tutorials and KT\nG2.COM, \nSue D., Senior Director Application Development, 5.0, I have been able to get some good technical advice on incorporating Snowflake. Since I started looking at Snowflake less than 2 months ago and launched our first app on it yesterday, need all the help I can get. What I love about Snowflake is its speed and flexible sizing for concurrency., Too new for me to complain. I will need to get more experience.\nG2.COM, Verified User, nan, 3.0, Separate compute and storage layer. History view. Auto scale up and auto resume for warehouse has been amazing. Time travel feature is the best of all. Love it., Hope that snowflake provide the monitor credit usage view.\nG2.COM, \nVerified User, nan, 4.5, Data Sharing is very unique to Snowflake. Other differentiation is the storage and compute separation,\n\nNumerics, i dont see any major feature that i wont like\nG2.COM, \nVerified User, nan, 4.0, The workflow has been very seamless. Does a lot of heavy lifting for us. The various ways to connect including the UI , snowsql is phenomenal., The documentation and tutorials could be expanded more covering a lot of things that are hidden or not as visible.\nG2.COM, \nVerified User, nan, 4.5, the vibe was great everyone is excited also the sessions are informational, sessions should be registration based as we are not able to get in\nG2.COM, \nKenneth D., Technology Manager, 5.0, We were on Redshift and we could not scale. We had an engineer dedicated to keeping the lights on. It was not sustainable. Moving to Snowflake allowed us to lift and shift our data warehouse and expand to the data storage and compute that we needed to run the business with a push of a button. That headcount was moved to building features to deliver the company value., Snowflake is a great data lake, however I think there could be growth there in order to support schemas as well as better querying.\nG2.COM, \nVishal S., Solutions & Deployment Architect, 5.0, The Snowflake Product is way ahead of its time. It is one of a kind Datwarehouse which provides enhanced performance with appropriate billing and increases productivity, Would like to see more Monitoring and Analysis options made available\nG2.COM, \nVerified User, nan, 5.0, Snowflake is really good at", "doc_id": "c08507d2-227e-40fc-8009-f22440e228f1", "embedding": null, "doc_hash": "6094073f84bc72fc463d1e4252bed77c17eeb72e695aab59c4c58c5ed12568cf", "extra_info": null, "node_info": {"start": 99790, "end": 103706, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "d0cd6033-d5e0-4175-843b-9add469a23ad", "3": "f24fe96e-6dc8-4627-993e-5503105bf170"}}, "__type__": "1"}, "f24fe96e-6dc8-4627-993e-5503105bf170": {"__data__": {"text": "\nVerified User, nan, 5.0, Snowflake is really good at isolating compute and Storage, which let us use this technology in innovative ways not possible before. We are in process of making Snowflake core technology as center of new data strategy platform., Documentation can be a lot better as new product rollouts.\nG2.COM, \nVerified User, nan, 4.0, I like the events and the multiple talks given. Its still early in the conference so I cannot give a full review until after the conference. The mobile app also helps a lot!, I wish there was more labs as well as little more organized on how the rooms are laid out and how to get from place to place.\nG2.COM, \nVerified User, nan, 5.0, Unlimited Concurrency is a feature of Snowflake that can not be imitated by any other DWH., There is no nasty part as many function will be developed or complemented by the partner ecosystem.\nG2.COM, \nVerified User, nan, 5.0, I like how Snowflake continuously improves it's product and no additional costs. We get new and exciting features that make our data-warehousing easier that we can start using immediately without any upgrades., I'm sure if I thought about it long enough, I'd find something I dislike. I can't right now though.\nG2.COM, \nVerified User, nan, 4.0, learning how other companies are using snowflake for faster data decision making analytics, not being able to be in multiple lessons at once\nG2.COM, \nVerified User, nan, 4.5, Snowflake provides the flexibility to scale and optimise performance through via seperating compute and storage, As we are early on the journey thereis not a lot to dislike but currently has the ability to meet our strategic needs\nG2.COM, \nVerified User, nan, 4.5, Great core product, robust, easy to use UI, multiple solutions for data pipelining; sql sharing; etc., migration components complexity for developers; query benchmarking variations\nG2.COM, \nVerified User, nan, 5.0, Very easy to use yet very powerful. A true cloud solution for managing data., As a new user, more readily available tutorials wold be helpful.\nG2.COM, \nVerified User, nan, 4.0, new features unfold in the summit. the data exchange and the new user interface were very amazing, lab organisation - i was registered on the app, it didnt show up, had to talk around, later realizing someone else saw my name in the list. The help offered when i had an issue was not timely\nG2.COM, \nVerified User, nan, 4.0, The variety of stalls, sessions and keynotes, The costs can be a bit restricting for small companies\nG2.COM, \nVerified User, nan, 4.5, Uptime, data sharing, query performance. As a db user, i never have to worry about when i run my query or if it will run., The worksheet sql editor. It is buggy and a little slow being in the browser.\nG2.COM, \nVerified User, nan, 4.0, The best attribute off Snowflake to date is speed!, What is being fixed, primarily hosted on AWS\nG2.COM, \nNate W., Solution Architect, 4.5, The most scaleable performant and cost effective Database out there., The most scaleable performant and cost effective Database out there.\nG2.COM, \nLee H., Senior Manager, 5.0, Speed, scalability, ease, standard sql, minimal Adminstration, price, flexibility, No on premise version. I know...it doesn\u2019t make sense as it was built for cloud....but it would be nice to have a local version\nG2.COM, \nAaron D., Sr. Director Data & Intelligence, 5.0, Speed of query layer (minutes/hours to seconds)\n\nON demand utilization of compute and storage in AWS\n\nCross-cloud support\n\nData sharing capabilities, none\nG2.COM, \nMatt S., Senior Manager, Enterprise Data Management, 4.5, Separation of storage from compute, and robust permissioning architecture, Lack of query complete in worksheets, lack of native connectivity to", "doc_id": "f24fe96e-6dc8-4627-993e-5503105bf170", "embedding": null, "doc_hash": "dc1ed3cadee10db0a2aa6c38fb39ae3fd65ea3d6217b40d18d7ef2e11250d567", "extra_info": null, "node_info": {"start": 103722, "end": 107453, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "c08507d2-227e-40fc-8009-f22440e228f1", "3": "84316a03-d970-4e54-a15b-cf2c27eb5124"}}, "__type__": "1"}, "84316a03-d970-4e54-a15b-cf2c27eb5124": {"__data__": {"text": "Lack of query complete in worksheets, lack of native connectivity to Alteryx\nG2.COM, \nErich H., VP, Business Development, 5.0, Snowflake shares make it easy for business units to consume, share and leverage out data as well as that of our business partners - securely., Hard to think of something, features are being added all the time. They are extremely customer centric.\nG2.COM, \nSreeni A., DBA, 5.0, Learned a lot about Snowflake Technology and it is really wonderful., Time travel should be more efficient with time series\nG2.COM, \nJesse B., Could Data Consultant\n, 4.0, How easy the UI makes it to write sql statements to the database, How hard it is to differentiate between warehouses and databases\nG2.COM, \nBryan C., Director of Data & Analytics, 5.0, The ability to scale compute and pay for only what you use helps control costs and have high performing queries for your company., There really isn't a downside to Snowflake as you can leverage multiple storage technologies and they are continuing to making the product better\nG2.COM, Verified User , nan, 5.0, The ability to do datawarehousing easily on the cloud from the web browser., I don't find anything that I didn't like so far. But the documentations can be improved.\nG2.COM, Verified User , nan, 5.0, The title of the review says it all. Have been doing Data Management stuff for 26 years now, and Databases are at the heart of it. Nothing is like Snowflake!!!, Nothing so far. Still in implementation phase and POC has completed. The experience so far has been great.\nG2.COM, Verified User , nan, 4.5, We've been using snowflake for about 2 years not. Great product, very fast, and very cheap. Very useful with JSON processing., THE user interface. Looks like once numeracy comes in, that;ll improve it tremendously.\nG2.COM, Verified User , nan, 4.0, simple, powerful and easy to integrate with others, nothing really. The price could be lower I guess\nG2.COM, Verified User , nan, 3.5, Snowflake has great performance, feature rich and has a good road map for where it wants to go., It would be nice if there were some on prem offerings in addition to cloud. Additionally, a focus on real time data is a must.\nG2.COM, Verified User , nan, 4.0, I appreciate the visual interface combined with the ability to use SQL. Easy way to create a data warehouse., It would be good to build out the visual interface a bit more.\nG2.COM, Verified User , nan, 3.5, I enjoyed hearing about the future enhancements as well as how Snowflake can integrate with so many different platforms, The training was a bit of a mess. Too many problems with permissions on the training accounts and it was incredibly slow - I would consider having multiple training sessions for various levels of data warehouse knowledge\nG2.COM, Verified User , nan, 4.5, Flexibility, elasticity, control, security, no maintenance, no downtime!!!, Pricing! We have to pay for every second we use. I would say one of the things I dislike the most is that we even have to pay for querying the Snowflake usage database. We shouldn't be billed for that.\nG2.COM, Verified User , nan, 4.0, Snowflake is all about speed and flexibility. It's easy to expand when necessary., Not all of the database features exist yet. Simple things like constraints and stored procedures would be helpful.\nG2.COM, \nZackary N., Analytics Engineer, 5.0, We've only been using Snowflake for a couple of months, but have been extremely pleased with the performance and usability of the system. We migrated from Redshift and immediately began to see benefits to both performance and cost - the same queries were running in less time on less resources., As of right now, the main problem with Snowflake has been the ramp to get started. There's not that many resources available for how to properly move over from Redshift/Tableau to using Snowflake and Tableau together. There were some hiccups related to the way in which Tableau reads the", "doc_id": "84316a03-d970-4e54-a15b-cf2c27eb5124", "embedding": null, "doc_hash": "c00fda20d2f554e83c2da57545e7a9f7eb02b70a9163f66a8eb14201f74dfb3c", "extra_info": null, "node_info": {"start": 107441, "end": 111379, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "f24fe96e-6dc8-4627-993e-5503105bf170", "3": "44e2d019-65b4-48d3-a22f-7de620fc4945"}}, "__type__": "1"}, "44e2d019-65b4-48d3-a22f-7de620fc4945": {"__data__": {"text": "Tableau together. There were some hiccups related to the way in which Tableau reads the column names which come out of Snowflake versus how the column names are read out of Redshift.\nG2.COM, Verified User , nan, 4.0, Performance hands down! It does things 10x faster than oracle dw, no constraints so its hard to prevent duplicates. This makes it hard\nG2.COM, Verified User , nan, 5.0, Cutting edge DW with ability to handle unstructured data. Splitting compute vs. storage is genius., Sometimes being on the cutting edge has some drawbacks in terms of bugs, but that's part of the fun.\nG2.COM, \nStephen P., nan, 5.0, It just works, seriously. We love the support, have had almost issues with it. The SQL dialect is pretty standard, few small quirks, but it's worth taking the time to convert your existing queries to it., That it didn't come out sooner. The one thing is that UI is a little buggy sometimes but honestly we use various SQL IDE's like Datagrip so it's not an issue for us.\nG2.COM, \nDavid K., VP Technology - Business Intellignence and Data, 5.0, Ease of use of the platform and the lack of need for maintenance, There is really nothing that I dislike\nG2.COM, \nchristopher m., Senior Solution Architect, 5.0, Snowflakes proprietary 3 tiered architecture is enabling analytics and data science at a scale previously difficult to accomplish. My clients need instant data, real-time reporting and the flexibility to blow things up into enterprise solutions without the legacy monolithic burdens that come from traditional alternative technology stacks. Looking forward to the evolution of this already fantastic solution!, I'd like to see more product development on the wed based client for end user local file data upload. A lot of clients today aren't necessarily as technical as others and are certainly not DBAs with the skills necessary to fully exploit the power of the platform. The best client relationships come from working within an organization in the small business units that have to self-service independent from enterprise resources, we need to further enable them to succeed!\nG2.COM, Verified User , nan, 3.5, Simple UI, easiness of usage, detailed billing, UI latency in the query history table, slow switching between roles\nG2.COM, \nZackary N., Analytics Engineer, 5.0, We've only been using Snowflake for a couple of months, but have been extremely pleased with the performance and usability of the system. We migrated from Redshift and immediately began to see benefits to both performance and cost - the same queries were running in less time on less resources., As of right now, the main problem with Snowflake has been the ramp to get started. There's not that many resources available for how to properly move over from Redshift/Tableau to using Snowflake and Tableau together. There were some hiccups related to the way in which Tableau reads the column names which come out of Snowflake versus how the column names are read out of Redshift.\nG2.COM, \nVerified User, nan, 4.0, Performance hands down! It does things 10x faster than oracle dw, no constraints so its hard to prevent duplicates. This makes it hard\nG2.COM, \nVerified User, nan, 5.0, Cutting edge DW with ability to handle unstructured data. Splitting compute vs. storage is genius., Sometimes being on the cutting edge has some drawbacks in terms of bugs, but that's part of the fun.\nG2.COM, \nStephen P., nan, 5.0, It just works, seriously. We love the support, have had almost issues with it. The SQL dialect is pretty standard, few small quirks, but it's worth taking the time to convert your existing queries to it., That it didn't come out sooner. The one thing is that UI is a little buggy sometimes but honestly we use various SQL IDE's like Datagrip so it's not an issue for us.\nG2.COM, \nDavid K., VP Technology - Business Intellignence and Data, 5.0, Ease of use of the platform and the lack of need for maintenance, There is really nothing that I", "doc_id": "44e2d019-65b4-48d3-a22f-7de620fc4945", "embedding": null, "doc_hash": "a028dc0e24d0b81e764842a80031b270fa7d3844978f809679d7546c1f5b05ca", "extra_info": null, "node_info": {"start": 111365, "end": 115321, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "84316a03-d970-4e54-a15b-cf2c27eb5124", "3": "fcbe0373-7a9f-4827-9ad4-21b471fd1e67"}}, "__type__": "1"}, "fcbe0373-7a9f-4827-9ad4-21b471fd1e67": {"__data__": {"text": "use of the platform and the lack of need for maintenance, There is really nothing that I dislike\nG2.COM, \nchristopher m., Senior Solution Architect, 5.0, Snowflakes proprietary 3 tiered architecture is enabling analytics and data science at a scale previously difficult to accomplish. My clients need instant data, real-time reporting and the flexibility to blow things up into enterprise solutions without the legacy monolithic burdens that come from traditional alternative technology stacks. Looking forward to the evolution of this already fantastic solution!, I'd like to see more product development on the wed based client for end user local file data upload. A lot of clients today aren't necessarily as technical as others and are certainly not DBAs with the skills necessary to fully exploit the power of the platform. The best client relationships come from working within an organization in the small business units that have to self-service independent from enterprise resources, we need to further enable them to succeed!\nG2.COM, Verified User, nan, 3.5, Simple UI, easiness of usage, detailed billing, UI latency in the query history table, slow switching between roles\nG2.COM, Verified User , nan, 4.0, Performance is a beast. Coming from an enterprise DWH's experience; Snowflake performance is day & night for us., administrative features are not readily available. On site support was iffy at times.\nG2.COM, \nmichael l., Analyst, 4.5, The performance gain experienced by our team was phenomenal for our deliverables. Very much looking forward to the plethora of tools we can use on side with Snowflake, not much! But if theres one thing, it would be being able to run loops in your query!\nG2.COM, Verified User, nan, 4.0, Super fast query without much efforts to optimizing the database, Injecting and pulling data could be easier\nG2.COM, Verified User, nan, 5.0, The ability to take several approaches in our data warehouse modernization journey - ease of lift and shift vs total refactoring. We can enable our customers at the speed of our data without the worry of replatforming to newer on prem infrastructure, Need a stronger set of capabilities to enable migration of large data sets.\nG2.COM, \nJacob M., Data Modeler, 5.0, Our organization does not have a constant load on the database. With most solutions, this means that we normally need under powered hardware to save money, or over-sized servers to meet our peak load times. Snowflake's auto scaling and multi-cluster support have been extremely helpful., The federated login and duo support is buggy at best. We've enforced duo login for our ACCOUNTADMIN roles, but that makes dealing with most IDEs and Tableau a nightmare since they don't support the option to use private keys.\n\nAdditionally, the role based security is very hard to manage. We have 80 permission levels spread across 7 data domains. Since a user isn't able to utilize more than one role at a time, we have to then create user specific roles that inherit just their permissions. I would much rather simply assign roles to users and skip the role setting during login.\nG2.COM, Verified User, nan, 5.0, The separation of storage and compute can not be understated. It is exceptionally easy to get started and the browser based UI make development easy., I have yet to find a hard dislike. The IDE in browser could provide better autocomplete features.\nG2.COM, Verified User, nan, 5.0, Easy to use platform that allows for separation of compute and storage enables the most effective database solution in it's technology generation. Additionally, the ability to scale up, scale down, and be able to manage without a team of DBA's allows for the highest value possible., Not applicable, it's been a great platform that enables the organiation.\nG2.COM, Verified User, nan, 4.0, The ability to stand up an environment without a huge upfront investment., The ability to not seamlessly support SQL stored procedures. Python wrappers and/or C#/Java Script code seems inefficient\nG2.COM, Verified User, nan, 5.0, Clear split between CPU and Storage.", "doc_id": "fcbe0373-7a9f-4827-9ad4-21b471fd1e67", "embedding": null, "doc_hash": "7b49a07ce165809ebb62216bea27e9400679f21335a08d1d304a726165bbfa14", "extra_info": null, "node_info": {"start": 115323, "end": 119412, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "44e2d019-65b4-48d3-a22f-7de620fc4945", "3": "9d06cdba-898a-4a61-9f63-bbc8004d9834"}}, "__type__": "1"}, "9d06cdba-898a-4a61-9f63-bbc8004d9834": {"__data__": {"text": "Verified User, nan, 5.0, Clear split between CPU and Storage. Pay as you go option works best. Best part is the no admin overhead like column compression, Primary keys etc. Cloning and Data sharing features are stand out and makes them stand out from other options., Snowflake is a blackbox and sometimes its hard to figure out why some queries take lot of time. Is it because they are supposed to or if something is wrong. Please work on that\nG2.COM, \nTodd R., Technical Architect\n, 4.5, Ease to market, ease of used - Love the integration tool including zeio copy clone - and Data sharing for external vendors, GUI interface needs improve ent - Sales overload\nG2.COM, \nRakesh Kumar V., Data Engineer, 4.0, compute and storage are separate, connectors are available for different tools like spark, Rstudio, python and storge format, dont have option to convert xml and json files to tables.\nG2.COM, \nSameer M., Principal Engineer, 3.5, Starting support is great and helpful....but the next steps need a little bit of learning on my part as well as support from snowflake., Nothing in particular, just during learning of snowflake if the sales guys disappear documentation is not updated. If you get stuck, the documentation only gets cleared with snowmen.\nG2.COM, \nMika H., Data Architect, 5.0, As a former Oracle DBA, I really like the setup that I do not need to worry about adding more tablespaces and worrying about the compute., Lack of AD integration, as I still need to create users manually.\nG2.COM, Verified User, nan, 5.0, Each snowflake is unique, and every employee i have come in contact with so far are all extremely knowledge and professional. highly recommend!!, so far i have not found anything that i dislike in regards to snowflake\nG2.COM, Verified User, nan, 5.0, Snowflake is the answer to all those data warehousing pains from those on-prem solutions. Scalability, cloning, time-travel, etc... The list just goes on and on, Nothing. Like I said best platform out there\nG2.COM, Verified User, nan, 4.0, Performance and ease of use., So far nothing but still in the early stages\nG2.COM, Verified User, nan, 4.0, Almost all the tech leaders are under same roof., Less time for networking\nG2.COM, Verified User, nan, 5.0, great performance with minimal setup, easy to integrate with othe rplatforms, convincing DBAs to switch platforms, not much else to dislike\nG2.COM, Verified User, nan, 4.5, Scalable and massively parallel Architecture, The pricing model is complex and difficult to predict without buidling your expertise on the software.\nG2.COM, Verified User, nan, 5.0, Snowflake's next generation features with familiar SQL features makes it the smarted choice in data Warehousing., Not possible! Snowflake is revolutionary in data warehousing.\nG2.COM, Verified User, nan, 5.0, Virtual data warehouses separate out compute workloads and provide isolation, Lack of intellisense Integration with PowerBI is not as tight as it needs to be.\nG2.COM, Verified User, nan, 5.0, This software is so easy to use and integrate into my existing infrastructure., At this current time i have no dislikes of the solution\nG2.COM, \nMack D., Business Analyst, 4.5, Snowflake is fast, I really enjoy being able to execute complex queries in seconds as opposed to waiting for an extended period of time., Sometimes the web UI is a little bit quirky. There's no find and replace in the query workspaces. Nothing major sticks out though.\nG2.COM, \nGavin W., Business Analyst, 4.5, I love the freedom that the web UI gives me. I need to work remotely at least once a week and the web UI is much more reliable than any other that I have used. Snowflake is also more stable than previous software I've used., The editor in the web UI is a little feature poor. Things like find and replace and auto-prediction are", "doc_id": "9d06cdba-898a-4a61-9f63-bbc8004d9834", "embedding": null, "doc_hash": "efe56644137378794c4b95f54f1192997e6b86ed1dedb97d6667f5ef8225ddee", "extra_info": null, "node_info": {"start": 119433, "end": 123246, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "fcbe0373-7a9f-4827-9ad4-21b471fd1e67", "3": "6d225ce8-b188-4706-874a-8b84c8c6638f"}}, "__type__": "1"}, "6d225ce8-b188-4706-874a-8b84c8c6638f": {"__data__": {"text": "the web UI is a little feature poor. Things like find and replace and auto-prediction are missing.\nG2.COM, \nVerified User, nan, 5.0, Snowflake is convenient, with a web UI that saves your worksheets in the cloud. It is incredibly powerful, letting you do queries that execute faster than Oracle SQL by orders of magnitude., The web UI is a little underdeveloped. It has some powerful features like cloud syncing and best-of-class support for multiple cursors, but it also has some glaring omissions such as Find & Replace.\nG2.COM, \nMark L., Data Analyst, 5.0, I like that Snowflake has decoupled our compute and storage requirements and can scale up or down as our needs change. They also have some of the best documentation in the industry., I'm not sure that there's anything I can think of as a negative.\nG2.COM, \nVerified User, nan, 5.0, Time saver, ease of use, sharing data with a click of button and cost platform is built for every business structure. Tool with a lot of power and yet built in simplicity!@, Usually the basics of common training materials. It's easy to use once setup, but getting through the setup is sometimes a little more than the regular business customers would like to deal with. Still rate a 10/10 for most liked!\nG2.COM, \nVerified User, nan, 5.0, The part of Snowflake I like best is the performance and seamlessness of querying against the cloud., There is a lot to be learned for best practices for choosing data warehouse size\nG2.COM, \nBrandon N., Data Engineer, 4.5, The ability to easily scale querys to meet demand., Ability to effectively determine cost of queries..\nG2.COM, \nVerified User, nan, 4.0, True cloud warehouse which makes the compute and storage go without limit., Relatively new. It's hard to get all the metadata information\nG2.COM, \nAlex S., Data Architect, 5.0, Having the ability to spin up/down compute on demand is very useful. Traditional ETL patterns no longer need to be followed to get good results. Native JSON support makes dealing with APIs simple and easy., Cumbersome security model is a pain to use but in reality much better for the data warehouse.\nG2.COM, \nrusdi s., Sr Data Architect\n, 5.0, Snowflake can be up and running in no time. No learning curve if you are regular rdbms user or developer. no dba experience required. You can optimized the cost by monitoring the usage, The company still young so there is a lot changes happen\nG2.COM, \nVerified User, nan, 5.0, Great computational power, back ups, ability to change size on demand., The online interface is pretty good, but could use some improvement. I have experienced issues with complex queries that involve multiple joins and have a lot of partitions\nG2.COM, Akshay S., Software Development Engineer, 3.5, 1. Elastic storage,\n\n2. Vertical scaling of compute power.\n\n3. Support of user defined functions.\n\n4. Wide range of analytics functions.\n\n5. Fail safe.\n\nTime travel.\n\nUndrop, Frequent production issues.\n\nLack of proper support\n\nNo backup of data provided.\nG2.COM, Verified User, nan, 4.5, The computing speed for the queries has been greatly increased. You an make it even more scalable by increasing the size of VM instance. Ideal for warehouse which follows star schema ., Doesn't support stored procedures/ functions. Date operations are pretty complicated and lengthy. The import from CSV doesn't work as well. It requires long process where you have to stage a file to AWS Storage and then only you are allowed to import.\nG2.COM, Verified User, nan, 5.0, There are few things I liked Snowflake -\n\n-Ease of management\n\n-Complete elastic architecture\n\n-Complete separation of compute and storage\n\n-Compute clusters can be managed by end users\n\n-Simple pricing model\n\n-Dynamic scaling on the fly, I mostly liked Snowflake compared to other cloud databases and some aspects needs improvements", "doc_id": "6d225ce8-b188-4706-874a-8b84c8c6638f", "embedding": null, "doc_hash": "b64f0c8a453ebb42044ed1a844f6fd727bbaf6fb47aac310db33acc5561e35fb", "extra_info": null, "node_info": {"start": 123225, "end": 127059, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "9d06cdba-898a-4a61-9f63-bbc8004d9834", "3": "e5912887-a0c4-471c-863c-bc191e7bc1a2"}}, "__type__": "1"}, "e5912887-a0c4-471c-863c-bc191e7bc1a2": {"__data__": {"text": "I mostly liked Snowflake compared to other cloud databases and some aspects needs improvements incl. Geospatial functions and additional libraries.\nG2.COM, \nMike N., nan, 4.5, We needed to migrate from RedShift quickly, and moving to Snowflake was easy. The think I like most is Snowflake's separation of compute and storage, which gives me a huge amount of flexibility when assigning different workloads. I also appreciate the query caching that Snowflake does to decrease my cost and increase the performance., The only thing I don't really like about Snowflake is that there is one Identity Provider per account. This means I have to have more accounts than I would normally create, and the accounts cannot share a pool of compute, thus eliminating some of my economy of scale.\nG2.COM, \nVerified User, nan, 5.0, Snowflake seamlessly blends into our BI stack, is invisible when we need it be, and is available and transparent when required., The language is a little specific, and just different enough from regular SQL/similar.\nG2.COM, \nPiyush C., Director - Analytics, 4.5, Query time is consistent and provides good analyst experience, UI needs to improve a bit with better ability to visualize data schema\nG2.COM, \nRajan P., Founder, 5.0, Snowflake lets me load a lot of formats of data and play around with them. It reads anywhere from .gz to .csv and let's me copy specific coloumns' data out.\n\nI actually use it as a replacement for Ms Excel on my Mac. I had taken a python course and instead of using Pandas, I used Snowflake to good effect., Snowflake could bring in the support of a procedural SQL like PL/SQL. That would really make it unmatched.\nG2.COM, Verified User, nan, 4.0, it is good dwh and working well in our env\n, nothing its all good in dwh in our organization\nG2.COM, Verified User, nan, 5.0, JSON parsing feature of Snowflake is the best compare to Redshift. I am currently using snowflake as our main data warehouse where multiple application has JSON data and snowflake does it really well., Support response is slow in case of emergency need. I had need last year and response was very slow.\nG2.COM, \nSonny R., Direct of Data & Analytics, 5.0, The performance has been great. We have seen 3 to 8 times improvement on query performance.\n\nThere has been very low maintenance work such as tuning hardware or system configuration or query plan optimization.\n\nThe auto resume and auto shutdown is great for cost savings.\n\nAlso, we are using processing semi-structure data like JSON as well., More improvements in on the Stored Proc front.\nG2.COM, \nKenneth Y., VP of Data\nInternet, 5.0, -independent, on-demand scaling of compute and storage\n\n- no maintenance / ops (don't have to worry about vacuum, adding nodes, sort / dist keys, weekly maintenance, etc), Because it's a new comer, the ecosystem is not as well established as Redshift (which has been around for over 6 years)\nG2.COM, Verified User, nan, 5.0, Scalability - you can add as many compute nodes as you need to in order to meet your demand. You can also shut them down as needed to save on the cost., Cost and perceived savings of auto shut off. While the concept is awesome, being able to auto shut off is the only way to make Snowflake come even close in terms of cost to Azure data warehouse and AWS redshift.\nG2.COM, \nAlexandre T., Software Engineer, 5.0, The Snowflake capacity to deal with a really large amount of data, usually faster but if not you can always bump the warehouse size and get results faster, and this all is done within a few clicks and smooth. Very well documented as well and quick support answers when needed., Lack of UI features for operations and debug. Not able to give hints to the compiler. Some updates that cause unexpected issues sometimes.\nG2.COM, Verified User, nan, 5.0, Performance and costs are configurable easily to your needs. Snowflake is also easily", "doc_id": "e5912887-a0c4-471c-863c-bc191e7bc1a2", "embedding": null, "doc_hash": "da828936b1a23393bcb5efe2daf32c4099d90d5cac8c61c3a08d8b6034e368ac", "extra_info": null, "node_info": {"start": 127053, "end": 130936, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "6d225ce8-b188-4706-874a-8b84c8c6638f", "3": "5ef91afd-2dce-4643-8132-41545dafc688"}}, "__type__": "1"}, "5ef91afd-2dce-4643-8132-41545dafc688": {"__data__": {"text": "Performance and costs are configurable easily to your needs. Snowflake is also easily integrated with leading BI and ETL/ELT tools. Built-in tuning and optimization is very useful, Admin panel could be a bit more comprehensive (user/role/group management), usage metrics\nG2.COM, Verified User, nan, 1.0, Relatively quick for being in-browser, snappy design, Bad UI, unintuitive, can't process info quickly, wish I could do more with the data for analyst use-cases\nG2.COM, \nAnkit A., BI Analyst, 4.5, Snowflake is way faster than other DBs I have worked on for daily uses.\n\nIf table is clustered (optimized) then joins on huge table can be also be very fast.\n\nBest of all, snowflake gives you capability to assign different warehouses for ETL , adhoc usage etc. Hence adhoc users dont have to kill their queries for ETL to run and finish.\n\nYou can see the query plan in the snowflake UI itself.\n\nWith their latest feature - AUTO CLUSTERING, now users dont have to worry about cluster and recluster as well.\n\nSnowflake has a UI as well. Less savvy users can use snowflake's UI instead of buying any other product from the market. UI has some pretty standard features but its not the best UI I have worked with., Snowflake UI goes does very frequently, partition pruning might not work if cluster keyed filters are part of CASE WHEN.\n\nSo in nutshell, snowflake support is good but could be better in updating ETAs on their tickets.\nG2.COM, \nDaniel N., Data Engineer, 4.0, Separate compute and storage for easy workload management. Don't have to think about distribution strategies or indexes. It's fast. For such a young database, I'm impressed by the feature support., Hands down not being able to load json into a regular table. I HATE how you need to insert json into a one column type variant table then flatten out. This should be natively supported imo.\nG2.COM, \nRicardo L., nan, 4.5, Snowflake provides lots of features as auto-starting and auto-pausing virtual warehouses that turn the administration of the data warehouse much easier and cost efficient. The pricing model separating compute and storage is very useful in some cases and enables great cost allocation between departments with the concept of multiple virtual warehouses. Queries in Snowflake also run fast compared to other products like AWS Redshift., Even having JDBC and ODBC drivers, the ecosystem with native integration is still small compared to other more established products.\nG2.COM, Verified User, nan, 4.0, Its pretty fast. Mush faster than contemporaries, UI is not responsive and goes down quite a bit\nG2.COM, Verified User, nan, 4.5, * Ability to easily and quickly scale storage and compute independently. Lots of scaling options.\n\n* Flexible data structure support (cluster keys, materialized views)\n\n* Snowpipe feature makes it incredibly easy to ingest data from S3 automatically\n\n* Excellent JSON support; can handle nested structures\n\n* Integrates well with our Business Intelligence tooling. Lots of native integration support.\n\n* Excellent community. Lots of events and resources for learning how to effectively use the product.\n\n* Flexible role-based permissions model\n\n* Slack support is responsive, Not much to write about here -- this is a great service! :)\n\nThere are still a few technologies we've looked at that are in the early days of building a native integration with Snowflake.\n\nIn the past, I've needed to refresh schema role grants when adding new tables; it'd be convenient to express that I want those automatically included in the grant.\nG2.COM, Verified User, nan, 3.0, it is Fast and Robust and handles large amount of Data at ease, its compatibility with other interfaces, it cannot be used with .Net Framework\nG2.COM, \nRobert B., VP of Engineering, 5.0, The feature that stands out most to us is the fact that we can send raw JSON into snowflake and each property is automatically", "doc_id": "5ef91afd-2dce-4643-8132-41545dafc688", "embedding": null, "doc_hash": "fbe84558f0c92dc0bb5ebb06e00eb8277d4b9abdcfe513eae1aa117296c1b985", "extra_info": null, "node_info": {"start": 130945, "end": 134839, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "e5912887-a0c4-471c-863c-bc191e7bc1a2", "3": "0f354ae1-bc6f-4bd1-8e34-b098e7ebf17f"}}, "__type__": "1"}, "0f354ae1-bc6f-4bd1-8e34-b098e7ebf17f": {"__data__": {"text": "is the fact that we can send raw JSON into snowflake and each property is automatically indexed. This gives us the ability to operationalize our use of semi-structured data with minimal engineering overhead., Currently the only headache we're having is that it does not work to seamlessly integrate Azure Append Blobs into Snowflake. It still feels a bit like Microsoft Azure is a bit of a second class citizen.\nG2.COM, Verified User, nan, 4.5, Scalable, great user interface, familiar SQL language, Nothing that I can think of that I dislike\nG2.COM, \nKumar B., Financial Methodology Product Designer, 5.0, Snowflake is easy to set up and use. It provides a lot of flexibility in terms of performance and cost efficiency by its ability to scale clusters up and down in an instant. Snowflake's best feature though, in my opinion, has to be \"time travel\". Time travel is a concept of deriving data from any given point in time. Snowflake also has a \"share\" functionality, which allows us to share data across the company with ease. Snowflake's capability to clone has also helped us in our testing efforts., There's not much to be said here. Snowflake was one of the most flexible and scalable warehouse options we found in the market when researching for a cloud-based data warehouse.\nG2.COM, \nVerified User, nan, 5.0, I love that t he CX team is so prompt and efficient, Its a little complicated to use. I would love a video tutorial\nG2.COM, \nVerified User, nan, 4.0, The parallel processing of queries and throughput of the query, Not support dynamic query executions in snowflake\nG2.COM, \nVerified User, nan, 4.5, Ability to add additional compute power (warehouses) to run SQL's. Also, each warehouse shows costs associated with running tasks., show commands. Lack of filtering and ordering results in a non-standard order.\nG2.COM, \nVerified User, nan, 4.5, computation and storage are decoupled so we can keeping on adding storage without adding unnecessary computing power, AD group are not fully supported. We have to manually manage user groups locally\nG2.COM, \nMatt W., Application Architect, 4.5, Our model is to share access to various portions of an analytics warehouse in a multi-tenant, multi-cloud environment. Snowflake has been tremendously easy to implement and configure to support our model. Customer provisioning is straightforward and cost per customer metrics are easy to collect. Managing the per-tenant shares is a piece of cake., One current snag in the customer onboarding model for us is that there is a manual finalization step on Snowflake's side for setting up a new customer reader link to our primary account. This is a one-time step per customer that can be performed ahead of time, so it's not a crisis, but having this be fully automated would be a huge win for us.\nG2.COM, \nMartin H., Senior Data Analyst, 5.0, Snowflake perfectly suits our needs - it turns on and scales up automatically, and is invisible, and free, when not in use. Couldn't ask for more., Nothing\nG2.COM, Verified User, nan, 3.5, Really great customer services. they answered my queries in a quick and professional manner. And its great that you only pay for what you query., All the problems that we have had with snowflake have always been addressed appropriately.\nG2.COM, Verified User, nan, 3.0, I like the fact that the interface is simply SQL, you don't need to learn something else. The web interface is nice and gives a lot of details about what's going on. Also support is usually responsive., Intuitions based on using SQL with a relational database no longer apply. Also execution times vary by a lot.\nG2.COM, Verified User, nan, 5.0, The query time is significantly better than qubole, There are no stored procedures and no scheduler\nG2.COM, Verified User, nan, 5.0, Having data and compute decoupled has been amazing. We save lots of money by suspending the warehouse when it's not in use., I", "doc_id": "0f354ae1-bc6f-4bd1-8e34-b098e7ebf17f", "embedding": null, "doc_hash": "996db08be09e9bda9319b1f0020efbafc99bba77bf13c3f0fa22f28f34902223", "extra_info": null, "node_info": {"start": 134841, "end": 138752, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "5ef91afd-2dce-4643-8132-41545dafc688", "3": "f6d4019c-8797-4edf-ad20-7b902a227da0"}}, "__type__": "1"}, "f6d4019c-8797-4edf-ad20-7b902a227da0": {"__data__": {"text": "We save lots of money by suspending the warehouse when it's not in use., I only just learned about the cluster key feature. I'd like more proactivity towards what tuning I can do.\nG2.COM, Verified User, nan, 5.0, Snowflake has the best balance between price and computing power. Redshift tiers are expensive on either storage or computing, snowflake provides best of both worlds, The ecosystem is somewhat immature - you have to figure out the best ETL/data infrastructure around Snowflake\nG2.COM, \nEric F., Senior Product Manager - Data Solutions, 5.0, It is wicked fast! Queries run faster than out 128 GM memory Oracle DB even when just running the small compute size. Also, everything is simple and they regularly improve the product., The worksheet functionality could be improved. Would be nice to save worksheets externally. Had issues with them not saving properly and all SQL scripts I had saved were lost.\nG2.COM, \nVerified User, nan, 3.5, the product flexibility to scale, no maintenance and support both structured and semi-structured data, the support of this product is not that weel\nG2.COM, \nYury B., Senior Developer, 5.0, That's the fastest and the most agile DB I ever worked with. I also deeply appreciate scale-ability as you can always throw in more computational power if you need so without any hassle, Some queries are not optimized as you'd expect them to be, that leads to you writing some workarounds which work \"kind of\" the way you wanted them to be. Sometimes support team resolves problems, but sometimes they reply something like \"it's the way it works, deal with it\". I also wish the query details\\profile screen was easier accessible from worksheets: the UI is sort of slow in switching from worksheet to query details and if you do that as one off - it's not a biggie, but as you do it more often - that becomes a hassle as UI getting laggy and works slow.\nG2.COM, Verified User , nan, 4.0, sql console allows to keep previous commands, also the easy to see the schemma, lack of suggestions as you type it should show or sugest what commands to use.\n\nwarning that query will take long time.\nG2.COM, \nDouglas D., Head of Data Science, 4.0, Very clear UI.\n\nEasy to resize resources to get the job done\n\nPython connector works great, Pretty inefficient with very wide tables and with INSERT statements\n\nNot 100% stable; things hang or shut down periodically\nG2.COM, \nRussell L., Software Engineer, 5.0, I like the speed at which you can accomplish a task that is assigned to you by using the variety of tools provided by Snowflake., I only dislike the fact that tables with constraints are not enforced particularly with a primary key.\nG2.COM, Verified User , nan, 4.5, easy usage, SQL oriented, excellent sales team, nothing, at this point nothing is of concern for our team\nG2.COM, Verified User, nan, 5.0, I like that Snowflake uses a mix of novel solutions and tried and true foundations to deliver a product that they say they deliver. The main thing is the ease of use, and the speed of use., I guess my only critique would be that I didn't fully understand how it worked when we first started using it and therefore was not able to use it to it's full power. Maybe I wasn't privy to those convos?\nG2.COM, Verified User, nan, 4.0, Usability of Snowflake is great. Best in class, Not much .. may be its flexibility is an issue\nG2.COM, Verified User, nan, 4.0, Provides very fast update and query performance for a reasonable cost. Cloud-based deployment keeps database management to an absolute minimum., Still not as mature as some other RDBMS products but is rapidly developing functionality.\nG2.COM, Verified User, nan, 4.0, 1) Speed (single execution) - everything is ridiculously fast. I'm no longer restrained by what I can do because of speed constraints found on other systems.\n\n2) Storage - super", "doc_id": "f6d4019c-8797-4edf-ad20-7b902a227da0", "embedding": null, "doc_hash": "6807991bddcf04d0eedd13717ac51f05eec423fe75e1b156b683b3e5c624b350", "extra_info": null, "node_info": {"start": 138765, "end": 142607, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "0f354ae1-bc6f-4bd1-8e34-b098e7ebf17f", "3": "bb461fd8-c0fa-4ee2-8c1e-cbcfdc5ed8c4"}}, "__type__": "1"}, "bb461fd8-c0fa-4ee2-8c1e-cbcfdc5ed8c4": {"__data__": {"text": "do because of speed constraints found on other systems.\n\n2) Storage - super cheap storage is huge for me as a developer. My job is so much easier when I can log and save more data., 1) latency between executions. We execute a lot of statements at once, but the throughput of those statements is slow. It would help if we could submit multiple statements in a batch.\n\n2) Need real stored procedures... the current development preview of procedures is disappointing. I would not call them \"procedures\". I would call them \"internal APIs\". Looping in the current procedure just submits SQL statements that have the same latency problems as item 1. Makes them pretty much unusable for row by row processing of many rows in a loop (which is the only REAL reason you should ever have to use looping in a SQL language). We have two situations for looping at speed row by row for thousands of rows... row by row processing of data where some rows could have an error, while others do not. The other is just super complicated calculations that just are more maintainable in a loop (lead and lag functions might make it possible, but more difficult to maintain).\n\n3) support has gone down hill since the early days... we are now getting responses from front line support with responses that are not helpful at all. We always have to get to 2nd tier support before we are helped at all. Front line support just responds with stuff that we already know that doesn't help us at all.\nG2.COM, Verified User, nan, 5.0, fastness of queries. Easy to understand interface., when you update a table from a view without a piece of code in it you have to regrant access\nG2.COM, Verified User, nan, 5.0, It's faster and easier to go to production with snowflake than any other data warehouse. Performance and scalability are superior without needing to spend time on design., Support for stored procedures is a good to have for ETL.\nG2.COM, Verified User, nan, 5.0, Beats Redshift in performance and cost. The in-time snapshot to roll back data to a previous state is also pretty incredible. The data storage costs is very low in comparison to Redshift and the computational speed far exceeds what Redshift can handle. DUO push as a two step authentication is a bonus., Extra fees for security and vpc. Not really a big fan of paying roughly 30-50% more for AWS VPC routing.\n\nAlso there might be a need for more support hours since databases can be used 24/7 downtime can occur anytime. During a regional, but not national Holiday, most of the company was out and there wasn't any method to contact support team besides leaving a phone number and waiting it out.\nG2.COM, \nTanner N., Sr. DevOps Engineer - Systems and Security, 3.5, It's fast and allows us to pay more efficiently for our needs., Nothing! It works great and meets all our needs\nG2.COM, \nPing C., Goldengate Architect/designer, 5.0, integrated to AWS and low maintenance from client side.\n\nperformance, when I search on google, not much information I can get from snowflake questions\nG2.COM, \nVerified User, nan, 3.5, programmatic interface, and generic sql ability, lack of indexing as in traditional RDBMS systems\nG2.COM, \nVerified User, nan, 4.5, Ease of use, speed and customer service - overall excellent, There is nothing I can think of that I dislike about the platform.\nG2.COM, \nVerified User, nan, 4.5, Snowflake is easy to use, and abstracts away a lot of the annoying problems of database management I had to deal with when running my own., There's poor visibility into query optimization, but that's not so bad because it runs so fast. I also don't know how optimally I use all of my warehouses.\nG2.COM, \nVerified User, nan, 4.0, Snowflake provides the flexibility to use the data warehouse by multiple analysts at the same time., I think you can add more features to the web interface.\n\nThe way I see it, it eventually should have most", "doc_id": "bb461fd8-c0fa-4ee2-8c1e-cbcfdc5ed8c4", "embedding": null, "doc_hash": "d607d74fb93d5e1da198c13d17c074722cbd6a1c78bf1073b17111a2b2b9fec9", "extra_info": null, "node_info": {"start": 142604, "end": 146493, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "f6d4019c-8797-4edf-ad20-7b902a227da0", "3": "9a2a44f9-0f75-4c92-b254-e1c451a10333"}}, "__type__": "1"}, "9a2a44f9-0f75-4c92-b254-e1c451a10333": {"__data__": {"text": "features to the web interface.\n\nThe way I see it, it eventually should have most of the features a modern IDE has, in terms of syntax highlighting, autocomplete, refactoring.\n\nOne simple example: it could be great if I could collapse a query. It happens a lot that you run multiple queries from the same worksheet.\nG2.COM, \nVerified User, nan, 4.0, Ease of use, nice docs, full ansi SQL support, docs are not as usable as they used to be.\nG2.COM, \nVerified User, nan, 4.5, JSON support is amazing. While other engines support JSON format for data types, snowflake does it with performance. It is a breeze to query data stored as JSON because of underlying columnar storage that JSON gets converted to. We also like how easy it is to add additional compute nodes when needed. This was a pain point with some other vendors. With a push of a button (or a simple script) you can add additional compute power. When the demand subsides, you can turnd those off., Cost. It's on the pricier end of things. Between Azure Data Warehouse and AWS Redshift, Snowflake was significantly more expensive even with auto shut off feature enabled. But it seems that some of those costs can be written off due to simplicity of set up and maintenance that would typically go to DBA resource.\nG2.COM, \nSonny R., Director of Data and Analytics, 5.0, We have taken over all of the DBA management for our warehouse(s) without additional resources. This is because we don't have very many maintenance or configuration tasks (or issues)., Have a more robust stored procedure features will be great.\nG2.COM, \ndaniel c., sr mgr dw/bi, 5.0, Snowflake's flexibility in the data warehouse space is amazing. The scalability and price can't be beat! Plus, I have an amazing Account Exec, Chris Li, that is always passionate about providing the best value., I would love to see smart text when drafting SQL.\nG2.COM, \nStuart H., Head of Data & Analytics, 5.0, Snowflake just works! No crazy complexity required to fine tune the system, no complex spreading of data across nodes, partitioning, indexing, configuation etc. Need a separate 'box' for heavy duty BI queries? Spin one up instantly! Need a bigger resource for a big ETL job, again spin one up instantaneously and shut it down when it's done - per second billing means you don't pay for resources you don't need. You can really tell a lot of thought has gone into a complete redesign - it hasn't been 'stretched' for the cloud, but 'built' for the cloud, Nothing really! The organisation is growing rapidly, so they don't necessarily have the customer suppot teams outside of Europe. Some functions are WIP e.g. additional windowing functions, recursion.\nG2.COM, \nCarlos F., Director of Business Intelligence, 4.5, Big data capabilities with the familiarity of SQL. No need to learn a new language.\n\nAuto-scaling of computing resources and data sharing functionality., Compilation times on somewhat complex queries is high. We use materialized views to address this problem and take advantage of caching, but we believe there is room for improvement here.\nG2.COM, \nScott S., Director, 5.0, We got to modernise our ailing, ageing data infrastructure without it costing the earth. Our data staff, all conversant in SQL were able to transfer their skills overnight, and our analytics staff all got access to cloud scalability to support their heavy analytical workloads (no Hadoop in sight). VERY, VERY cost effective way to modernise!, Nothing - it's brilliant! Would really love there to be a built-in environment for scheduling SQL scripts, but there are plenty of ETL tools for this already.\nG2.COM, \nAvinash H., Head of Analytics, 4.5, Snowflake is a zero maintenance true cloud data warehouse. We can control the cost, scale up and down the resources needed to make it fast. It is compatible with ANSI SQL which makes querying data very easy. Also in built support for JSON handling", "doc_id": "9a2a44f9-0f75-4c92-b254-e1c451a10333", "embedding": null, "doc_hash": "054bb1b1f07830ae53eb1c7f00f3952a17f4812438136af2ba2581e8c67ad342", "extra_info": null, "node_info": {"start": 146491, "end": 150399, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "bb461fd8-c0fa-4ee2-8c1e-cbcfdc5ed8c4", "3": "3bc3af1a-9324-41ae-b8ec-8cd8d213182f"}}, "__type__": "1"}, "3bc3af1a-9324-41ae-b8ec-8cd8d213182f": {"__data__": {"text": "with ANSI SQL which makes querying data very easy. Also in built support for JSON handling that data easier. Strong security come out of the box with roles and schema level controls., I would want more ways to load data into Snowflake. Also handling of more character types would make some tasks easier. Some of the error messages are not intuitive. Also native integration with traditional databases would make it easier to manage ETL jobs. Some kind of inbuilt scheduling capability would also make it easier to use Snowflake.\nG2.COM, \nVerified User, nan, 4.5, storage and computing powers are independent. easy integration with s3 and other tools such as looker., some small caveat differences between snowflakeSQL and regular SQL/mysql have cause some rewriting in legacy codes\nG2.COM, \nVerified User, nan, 5.0, The database is incredibly fast even when using many joins and even with text joins. The functions ROLLUP and CUBE are critical to the way we use Snowflake and those have been unavailable in other systems. Our sales rep Sarah at Snowflake has been wonderful to work with., Support has been working a bug where queries return incorrect results for a while now. This does affect our customers, but the incorrect results cause rows to be shown many times so it's more annoying than it is misinformative. Snowflakes ABSOLUTE REFUSAL to shutdown while overloading it is awesome, but it has caused service interruption on our side due to a bad query hogging all of the resources. Instead of quitting and restarting all processes, Snowflake dutifully worked on churning the data. Good? Bad? I don't know. The query was never going to happen, so we ended up manually having to kill it so all other backed up queries could run. That being said, we are still working on developing our skills with using all of the database tools.\nG2.COM, \nVerified User, nan, 4.5, The separation of compute and storage is pure genius. Such a simple concept, but has such a tremendous impact in terms of how you manage your database performance /workloads etc. Almost nothing to tune performance - no indexes / partitions to deal with. Time travel functionality is something the business likes as well. Support for semi-structured data has allowed us to transform complex business data into easy analysis points for the business., Support is a bit spotty and difficult to get hold of. The new lodge is a great start, but will take some time to build up fully. The error messages in Snowflake are a bit cryptic at times, making it harder to troubleshoot complex issues at hand.\nG2.COM, \nVerified User, nan, 5.0, The technology works exactly as described and has been a game changer for us. All of the people that we work with are very customer focused and want to make things work exceptionally well, There have been a few outages and we've also encountered some bugs. All of this is par for the course, but of course, we would like to try to minimize and avoid this whereever possible.\nG2.COM, \nVerified User, nan, 5.0, The easy to increase performance power, the separation of database and warehouse., The setup process of snowpipe because it is not easy and confusion. I like copy command setting up process, it is straightforward and easy to maintain\nG2.COM, \nVerified User, nan, 5.0, No maintenance required, good query performance, good SQL support and features, super easy to scale, reliable so far. Data cloning and sharing is unique and awesome and fits our use case perfectly., Some bugs in the Python connector, some query errors for complex queries, can get pricy if high concurrency is required. Permission management differs from MySQL. We only had a single service outage so far.\nG2.COM, \nPaolo F., Big Data Platform Architect, 5.0, The performance, its support for semi-structured data and the Acid back-bone. It is like having Hadoop with Transactions and fine role-base security. Data Sharing is also new to the database world. We can now share any data with our Clients without additional burden., It would be nice to be able to self-manage the fail-safe. For instance tables from the fail-safe should be removed", "doc_id": "3bc3af1a-9324-41ae-b8ec-8cd8d213182f", "embedding": null, "doc_hash": "44bb68a1cd4838b553b1d6437168f3b73f4183066f563fee8b7d7bba2ab4ad4c", "extra_info": null, "node_info": {"start": 150392, "end": 154510, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "9a2a44f9-0f75-4c92-b254-e1c451a10333", "3": "e0fb395c-0397-41ef-b036-342e7763bca8"}}, "__type__": "1"}, "e0fb395c-0397-41ef-b036-342e7763bca8": {"__data__": {"text": "the fail-safe. For instance tables from the fail-safe should be removed explicitely so no storage is vasted.\nG2.COM, \nTim H., Director of Data, 4.0, Speed of query and ease of use of the web UI. Dialect similar to Redshift so easy to adopt., Tough to organise and share queries between users - some SQL commands are non-intuitive\nG2.COM, \nDonovan M., Director of Engineering, Data Services, 5.0, The snapshot capabilities. The ability to take snapshots quickly so that we can work with a copy of the data, The security model can be a bit tedious.\nG2.COM, \nVerified User, nan, 4.0, The ease of scaling, access to support, how the service is always getting better, Unexpected downtime, was tough to get status updates on these downtimes - that has been getting better generally\nG2.COM, \nVerified User, nan, 5.0, first: the fast compute and unlimited storage . second: the connection to AWS S3. third the snow piple., Query GUI, it will be nice to have all the features like the generic query analyzer , example: DB VISUAL\nG2.COM, \nMatt K., SR Business Intelligence Engineer, 5.0, Probably my favorite thing is how we can spin up the size of Snowflake for our ETL loads and derived tables builds throughout the day., I think what we struggle the most with is applying security roles to all schemas, databases and tables. Snowflake does have robust security but it does take some time to set up.\nG2.COM, Verified User, nan, 5.0, Very fast onboarding - very proactive Sales/Technical account assistance, Somewhat lack of technical tools to load data in Snowflake. Community is still somewhat young\nG2.COM, \nAaron S., Data Engineer, 5.0, It is super easy for my work as a Data Engineer to connect to Snowflake via Spark and streamline our ETL pipeline. It is ANSI SQL-compliant, so it is not much new to learn for anyone who has a SQL background., I wish it supported Dynamic SQL. And, while it is convenient that UDFs can be written in JavaScript, I would love to see the addition of more languages.\nG2.COM, Verified User, nan, 5.0, Ease of use, scalability and excellent support, Nothing I really dislike about it, great platform\nG2.COM, \nEric A., President & Chief Architect, 5.0, Snowflake completely changes the data warehousing paradigm. All of the implicit weaknesses that are baked into the core architecture of every major DW vendor in the last 30 years are gone. Endless CPU, endless storage, endless RAM. You will never get a spool space or tempdb error. You can store XML, JSON, and flat files natively and join them into your relational table queries. Snowflake automatically scales horizontally as necessary to complete the workload as quickly as possible.\n\nIt has oustanding NoSQL support, but it's also the fastest and most flexible relational database you can get at any price from any vendor. Including the ones that cost 7-8 figures per year., Partner support (ETL tools, BI tools) isn't as broad as more established databases. However, this is changing quickly. Most of the modern players already have connectors.\nG2.COM, \nBenjamin Chase W., Business Analyst, 5.0, Ease of use and simple platform really make data analysis a breeze, Limited usage with only sql, and no ability to use python in line with sql in the snowflake environment\nG2.COM, Verified User, nan, 5.0, Ability to dynamically provision cpu for the largest workloads and draw back down when unneeded for cost efficiency., Costs are sometimes a bit unpredictable...need to keep a watch on it.\nG2.COM, Verified User, nan, 5.0, Web browser is great to use and easy to pull up, downloading data from web ui could be easier\nG2.COM, \nWhitney W., Cloud Database Administrator, 4.5, Snowflake is managed in a way that your queries perform optimally without much effort on your part. The database user management and roles is familiar (think PostgreSQL style)", "doc_id": "e0fb395c-0397-41ef-b036-342e7763bca8", "embedding": null, "doc_hash": "8a26869fc4e7ead1a2dce7d78fbd8382e200d099a241aa70dbb53e68b5c68065", "extra_info": null, "node_info": {"start": 154525, "end": 158355, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "3bc3af1a-9324-41ae-b8ec-8cd8d213182f", "3": "445dfa30-22e3-48b2-9ee8-8b0dd0768f47"}}, "__type__": "1"}, "445dfa30-22e3-48b2-9ee8-8b0dd0768f47": {"__data__": {"text": "on your part. The database user management and roles is familiar (think PostgreSQL style) and can be done through a user interface or via SQL--both business users and experienced DBA's will be comfortable., I can't honestly think of much. The AWS region limitations are slightly problematic for East coast users, but overall this hasn't affected us hardly at all.\nG2.COM, \nMark P., VP of Architecture, 5.0, Snowflake is super easy to get up and running. The auto-suspend functionality is saving us thousands of dollars per month over our previous data warehouse solution., It would be nice if Snowflake offered service in the us-east-2 (ohio)region where the rest of our app is located.\nG2.COM, Verified User, nan, 5.0, It's remarkably fast to traverse billions of rows of data sitting in storage with multiple users through their provisioned warehouses., There's no GeoJSON support yet, which makes working with location data harder than it needs to be.\nG2.COM, \nWicks J., Senior Data Engineer, 4.0, I like the fact that we have got many disparate data sources into 1 place. The queries issued against the data are quite fast and the data is stored optimally, taking up less space than they use in the source systems., Scheduling is needed within snowflake itself. A full fledged client would be preferred to the web interface. More features within the SQL code itself is needed, like correlated sub queries in the select, instead of only in the where clause.\nG2.COM, Verified User, nan, 5.0, The speed of queries processing. We were able to speed up some queries from 15 minutes to 15 seconds. We didn't believe how fast it was when we started. It literally saved the business., Outages. Also pretty rigid schema with 50 threads per warehouse. So long running queries and maintenance queries are capable of putting it in waiting mode quite a bit.\nG2.COM, Verified User, nan, 3.5, There is no need of maintenance on indexes. snowflake will take care automatically.cloud computing is one great feature., UI with internet explorer.one more point want to cover is if any feature is going to release means it should support all possible scenarios.if we take stored procedures, it won't support transactions. introduction of Stored procedures is great feature, but without transactions management, it won't be that much powerful.\nG2.COM, Verified User, nan, 5.0, The ability to spin up larger computes (or as they call warehouses) is amazing for the large ETL tasks. The semi-structured data support with JSON columns and querying directly into them is a true godsend., Dislike the need to keep shutting down the servers and not being able to have it up 24/7 with reasonable costs. This means a lot of conscious effort needs to go into batching up loads to Snowflake and prevents the data warehouse from having any quick intraday usability.\nG2.COM, Verified User, nan, 4.5, Love that the platform integrates with many different cloud based services. Along with the ease of use, The service is great, when a ticket is submitted, they're really good at replying to your issues. When there are service interruptions, they make sure we're the first ones to know., No stored procedures or event handling. Some services require us to pay a little extra even (such as reclustering) as it should already be included in the price. Sometimes the UI lags, but made huge improvements to the new UI.\nG2.COM, Verified User, nan, 4.0, We love the fact that we can spin up additional warehouses on demand. We like the fact that most admin work is done by the provider, Security is not enterprise grade yet. Hard to administer and query security tables. No way to authenticate against multiple SAML providers\nG2.COM, Verified User, nan, 4.5, Extremely easy to get started. Snowflake supports the most common SQL operations as well as a large library of useful analytic functions. It includes excellent documentation and with performance tuning handled by Snowflake, it's easy for analysts to focus on writing SQL., No complaints so far. It's", "doc_id": "445dfa30-22e3-48b2-9ee8-8b0dd0768f47", "embedding": null, "doc_hash": "d03d03de0cf04b99f42f70227a8806872d156bce3ea931fb3ab0ced66b9a94c5", "extra_info": null, "node_info": {"start": 158341, "end": 162361, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "e0fb395c-0397-41ef-b036-342e7763bca8", "3": "7301d5e7-c3de-468d-83e2-fd22ec514f61"}}, "__type__": "1"}, "7301d5e7-c3de-468d-83e2-fd22ec514f61": {"__data__": {"text": "it's easy for analysts to focus on writing SQL., No complaints so far. It's by far the best database engine I've used.\nG2.COM, Verified User, nan, 5.0, I like the vast amount of connectors and also their support is very fast., I have not found anything I dislike at this moment.\nG2.COM, Verified User, nan, 4.0, snowflake is great and it is a very popular tool for data warehouse building in the cloud it lets you import tons of data instantly, it is a little bit expensive and it takes awhile to set up\nG2.COM, Verified User, nan, 5.0, It is easy to set up and it is very flexible with data. You can store anything., Sometimes refresh failes, although there are ways to control it.\nG2.COM, Verified User, nan, 4.0, I like that compute and storage are separate and i can scale up my compute. That writes do not block reads., The architecture is not good for web speed apps. There is too much latency per call.\nG2.COM, Verified User, nan, 4.0, Snowflake can handle the extremely large data -- on the order of thousands of TB -- that we have, and provide us with rapid results., Poor documentation -- although clustering is Snowflake's killer feature, figuring out why, after calling 'alter table recluster' on a table, that table is only .001% more clustered than before is painful. It's not clear why you wouldn't just sort the table on insert instead of calling recluster, since recluster on a static dataset incurs the penalty of insertion twice. Not much documentation about how data will be loaded, just vague statements from their tech team that \"if your data is naturally clustered, Snowflake will recognize that.\" Well..... explain what you mean, please.\nG2.COM, Verified User, nan, 4.0, Compute vs store split, UI interface is generally good with some small issues, Query history interface, query history limitations, notifications about service disruptions/changes could be clearer\nG2.COM, \nJonathan A., Business Analyst // Operations Lead, 5.0, Snowflake is extremely agile in pulling down data from large data sets. The UI is simply and well designed. Quick queries allow beginners to try writing SQL and make quick adjustments until the correct result is achieved., The proprietary technology can turn some away with its secrets.\nG2.COM, \nTorrey V., Senior Business Intelligence Developer, 5.0, The performance is incredible. Queries that took hours to run on MySQL run in seconds., The online interface is clunky. Having a desktop app would be ideal.\nG2.COM, \nAvinash D., nan, 5.0, Snowflake has ease of implementation, with no maintenance and has massive scalability. The storage cost is minimal. Horizontal and vertical scalability without any downtime. Elasticity of usage. The only database on the market that is truely built for cloud. Native support of Semi structured data, MFA needs to be supported through any tool.Operational dashboard is needed.\nG2.COM, Verified User, nan, 5.0, Low maintenance. No more downtimes! No rebalances. Full control over compute resources., My biggest gripe is privileges are not rules based. You have to re-grant permissions on objects you recreate. Not a big deal once you're steady state, but annoying in a collaboration development phase.\nG2.COM, \nPadmanesh N., Big Data Solution Architect and Spatial Data Specialist, 4.0, This feature is helpful for user to increase the node size and config depending on their need. There is no need to wait for hardware to be in place whenever we increase the dataset. Snowflake provides the option to increase the node or cluster size whenever required., Of course, every product has pluses and minuses. From that perspective, Snowflake has to improve there spatial parts. I mean it doesn't have much stuff in geo-spatial queries.\nG2.COM, Verified User, nan, 5.0, It is built for the cloud and is flexible in increasing and decreasing the size., I can't think of anything at this time..\nG2.COM, \nKristina", "doc_id": "7301d5e7-c3de-468d-83e2-fd22ec514f61", "embedding": null, "doc_hash": "4c8657b7c17c7d9be588ac4040717c45b70a9bdbf4cb2c87e4dab8844d43b5e4", "extra_info": null, "node_info": {"start": 162376, "end": 166273, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "445dfa30-22e3-48b2-9ee8-8b0dd0768f47", "3": "a7251df1-a3f6-4623-9bfa-39610e9ba36b"}}, "__type__": "1"}, "a7251df1-a3f6-4623-9bfa-39610e9ba36b": {"__data__": {"text": "I can't think of anything at this time..\nG2.COM, \nKristina C., Integration Manager, 4.0, We have a large amount of data which the warehouse handles without issue. It also updates frequently., If something goes wrong, sometimes it's difficult to get an answer as to why.\nG2.COM, Verified User, nan, 5.0, The best parts about Snowflake are the ease of implementation, the no maintenance scalability and integration partner availability. From a storage perspective, it is extremely efficient. You can create a complete clone of a 5TB database (like a pointer) without using additional storage, only using enough storage to track changes. You can choose whether to persist the changes or create a real physical clone. This allows you to have staging copies to real-world test updates on live data before you commit them. Additionally...un-dropping dropped tables and point in time historical queries are nice too. Built in 2 factor auth is scalable., There are small admin usability features with the UI that could be improved, but it seems like with the latest release, they have addressed some of them. Easier 2 factor enrollment would be a nice to have. Honestly, you should not be able to enroll a user without 2 factor authentication enabled.\nG2.COM, \nvidhey t., Student, 4.0, Snowflake computing is best for concurrent user data access, easy scaling of storage from few gigabytes to petabytes. Analytics on big data seems to be easy and fast., The pricing of the features is not the best compared to other products in the market.\nG2.COM, Verified User, nan, 4.5, That all our data is stored in the cloud. being 2018 this is where we need to be, that it was hard at first to get our owners to commit to the cloud\nG2.COM, Verified User, nan, 4.5, Snowflake is a user friendly product that adapts to any company needs and provides technical support whenever needed., I do not have any negative comments at this time.\nG2.COM, \nJustin E., Business Development Executive, 4.0, I like software. I think this is a good fit with our company because it aligns with the best interest of the customers. It allowed us create software solutions that were based on customer needs and create value and ROI with a financial spin for a software solution, I would like the functionalities of adding/deleting to be navigated easier.\nG2.COM, Verified User, nan, 5.0, The fact that compute is actually separated from the storage. This makes scaling so much easier but it also makes it much more cost effective. Now that they got the pricing model down to one minute increments this platform is extremely accessible no matter what size the organization and\\or data., Loading data into the environment can be clumsy. But once you get the hang of it, it is fairly straightforward to automate with standard ETL tools.\nG2.COM, Verified User, nan, 5.0, UI, Querying speed, Quality of Support, Technology Events, query concurrency and the massive scalability they support!, hey have confusing terminologies that aren't very intuitive such as Warehousing, Databases. Also, they need to make data loading a lot more intuitive and easy. It should not take me more than 5 mins of time to get this done, even when I am new to Snowflake!\n\nAlso they need to make computing more affordable or give huge enterprise discounts.\nG2.COM, Verified User, nan, 4.5, The UI is modern and the interface is intuitive. The tool is highly customizable and sits on top of Amazon S3 for seamless data access., The interface for running SQL-like queries is clunky.\nG2.COM, Verified User, nan, 5.0, Easy to deploy and give great flexibility as Snowflake automatically scale up and scale down.\n\nGreat thing about Snowflake is having fundamentally solid SQL with lots of elasticity and easily works on dynamic environment.Snowflake support diverse set of data which include both structured and non structured data. Snowflake have very good customer support and answer the user queries very quickly., Speed and agility can be improved. Snowflake, is based on a non MPP database design which can delay automation and can take time for adhoc workload.\nG2.COM, Verified User, nan, 4.0, FAST,", "doc_id": "a7251df1-a3f6-4623-9bfa-39610e9ba36b", "embedding": null, "doc_hash": "e19557493260a2242a679784e72b8171b18ff44af295626bd2ff06da2de1ab52", "extra_info": null, "node_info": {"start": 166286, "end": 170419, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "7301d5e7-c3de-468d-83e2-fd22ec514f61", "3": "e794818e-1855-4544-ba15-1c95b518e955"}}, "__type__": "1"}, "e794818e-1855-4544-ba15-1c95b518e955": {"__data__": {"text": "Verified User, nan, 4.0, FAST, CLOUD BASED, GOOD UI, CHEAPER THAN AMAZON REDSHIFT, MULTIPLE QUERIES CAUSES PROBLEMS RUNNING AT THE SAME TIME, MORE AGGREGATE FUNCTIONS COULD BE SUPPORTED\nG2.COM, \nJoseph B., Senior Manager, Data Platform, 4.5, JSON / XML parsing from s3 to nice relational tables. Stupendously easy to set up and get data in.\n\nCheap storage, plus standalone compute cost.\n\nProvides a data layer where the policy can simply be, \"Is it data? Then dump it into snowflake\", which increases velocity in analytics, BI, diagnostics, and testing., Black-boxed indexes / projections.\n\nIt's both a blessing and a curse - new architecture gets built quickly, and query performance is generally solid, but some brain-dead obvious indexing doesn't persist in some cases, which can cause certain operations to be needlessly slow.\nCapterra, Daniel K, EVP Operations IT, 5.0, Snowflake is super fast, requires virtually no maintenance (no logs, indexes, tuning, etc.) and the pay per use price model scales perfectly with cyclical workloads which are common in data warehouse applications., It does not natively support any real constraints such as uniqueness or referential integrity which requires the user to explicitly check all these things via stored procedures. The SQL worksheet GUI still has remove to improve but they have been rapidly enhancing it. It's not too uncommon to have brief outages but they are usually resolved within a few hours.\nCapterra, David W, Head of Engineering - Data and BI, 5.0, The concept of Snowflake is so clever - mass amounts of micro-partitions of data, with the storage and compute separated. It is a smart product that enables so much functionality and capability. It is more than simply a database in the cloud, it is truly a feature-rich platform that offers a huge amount of functionality. I also very much like that role-based access is a fundamental part of it. Its data sharing features are terrific too., Some things are a little tricky to figure out, like row-level policies the first time you do it, or data masking. There are no triggers. Scheduled tasks are a little limited. Stored procedures are not as simple as I'd like\nCapterra, No name, nan, 5.0, The I/O operation within the database are handled well . Repeated same query results are being cached to avoid I/O operations, which is great!, The Task functionality can have a separate UI to manage the scheduled tasks . The Web workbook could have been improved with more features.\nCapterra, No name, nan, 3.0, The best thing is snowflake is a cloud based Warehouse system.and it's completely based on shares nothing architecture so its gives faster performance during analysis.one more thing i like about this warehouse that the amount of time that you use the main warehouse here for that specific period of time you have to pay other than the warehouse is off for normal queries.particularly in dml statement mainly its uses the warehouse.so its manage automatically weather to use warehouse or not so it is very much good for saving money That's why now big giants company are shifting towards snowflake for cost effective purposes and the smarter and faster performance it gives.and it also provides a feature call time travel where you can back up your all deleted data in a period of 90 days., There are two things I don't like about the snowflake is it's doesn't support unstructured data loading it's only support the structure and semi structure data. And other one is it's only support the bulk loading files so it's difficult for a small size files loading or adding some few columns on it.\nCapterra, Anoop K, Senior analyst, 4.0, For us Snowflakes has been critical to process and store the data day in and day out. Integration with various data sources and tools, including ETL/ELT tools, BI tools, and data science platforms has been critical for our organization and the teams. Snowflake's ability to handle large amounts of data and process it", "doc_id": "e794818e-1855-4544-ba15-1c95b518e955", "embedding": null, "doc_hash": "80e47a701ed0f8219724cc2db1f9cfa4eac5c301399861987a46a8ee6cf576e2", "extra_info": null, "node_info": {"start": 170444, "end": 174412, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "a7251df1-a3f6-4623-9bfa-39610e9ba36b", "3": "276c969e-e630-45da-a5d3-d9abd5380a9f"}}, "__type__": "1"}, "276c969e-e630-45da-a5d3-d9abd5380a9f": {"__data__": {"text": "and the teams. Snowflake's ability to handle large amounts of data and process it quickly is impressive. The platform is adaptable and provides us with numerous options for data management. Snowflake's distinct architecture enables us to easily manage and process data. The user interface is simple, and the platform is dependable., Lately the new user interface is not comfortable and is confusing. The older user interface was much more easier. At times query performance issues are observed and timeout happens. Also cost per query is concern and expensive. Cost should be priced reasonable.\nCapterra, Aleksandr H., Sr. Software Engineer, 5.0, If you know SQL this is an easy product to use. I love that it can search on JSON and it allows us to create very custom User Defined Functions that can use multiple languages such as JS and Python as well as SQL., Setting up the permissions can be confusing and complicated.\nCapterra, Suru s, Bog data engineer, 4.0, Using Snowflake has been a great experience; I appreciate how easy it is to view, analyse, and produce reports that are helpful for the organization's business. Its cloud nature, eliminates the need to install software and does not affect how our machines work at all during analysis, is another feature I thoroughly appreciate. I adore how it offers many modernised SQL capabilities as well as practical tools for protecting data which can be sensitive in nature., The capability to launch numerous queries is absent. The searches occasionally take longer than usual, and with no estimated time as to how long it takes is agonising. There could be a history tab for instance to see all the previous queries written or executed so it can be easy to refer and take part of the previous query instead of writing it again from scratch. There is no straightforward way to convert the SQL queries to Snowflake.\nCapterra, No name, nan, 5.0, Performance is outstanding. No explicit maintenance is needed. High availability. No need to worry about SQL processing speed, easy scalability., Quit expensive while comparing to other database.\nCapterra, Jonathan T., SCADA Systems Engineer, 5.0, It is through Snowflake that we eradicated the need for data scientists since it offers self-service data modeling tools that help model and visualize data., I haven't used Snowflake for quite long, but I have never had any challenge for the entire duration I have turned to it.\nCapterra, Mansi M., Software engineer, 5.0, I like best that they have unified all the data-relevant features on one platform, so be it a single database or end-to-end data management, all can be done using snowflake. I was able to store structured, semi-structured, and unstructured data, all in one place., Their support team was a little slow in addressing my queries. I belive they can improve their onboarding process.\nCapterra, No name, nan, 5.0, Snowflake is exteremely stable and easy to setup. I was able to turn it on and have a reliable Data Warehouse that didn't require me having a lot of cloud knowledge to administrate. The database administration through the UI is intuitive and the Roles dynamic helps with implementing good data governance and compliance pratics inside the company. Snowflake also offers user security options out of the box, which was a huge improvement for us. The doccumentation is very well written and SnowSQL offest a lot of useful functions. The main improvement on this front was how Snowflake treats JSON, which helped us a lot., If your revenue is not on US dollars, Snowflake is an expensive product, there is no way around that. It is indeed a very good service that charges accordingly. We are using the smallest cluster possible and it was necessary to do some convincing inside the company to approve it for our budget. That being said, the smallest cluster we are using is more than enough for our needs and will be for a long time, so it will take a long time for this cost to increase again, but it was a pretty big budget increase initially.\nCapterra, Todd G., Business Intelligence Developer, 5.0, The thing that I like most about this software is really if you can think it you can do it with Snowflake. I mean as long as it deals with data. I", "doc_id": "276c969e-e630-45da-a5d3-d9abd5380a9f", "embedding": null, "doc_hash": "2228360f21d2e046a9dbd21147254972fd8f1f9ae3865c8a7da942e4dc23cefe", "extra_info": null, "node_info": {"start": 174371, "end": 178597, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "e794818e-1855-4544-ba15-1c95b518e955", "3": "af780a43-faa8-451f-b32b-f26539732d05"}}, "__type__": "1"}, "af780a43-faa8-451f-b32b-f26539732d05": {"__data__": {"text": "it you can do it with Snowflake. I mean as long as it deals with data. I first started at my company using oracle and I didn't stick with that for long because we adopted snowflake. When we started using snowflake my knowledge of SQL just jumped sky high. Instead of just selecting from tables, I was using cte's and partitions and all of that fun stuff. Snowflake made it super easy to understand and learn. The ability it has to handle the amount of columns that it does is amazing., There is a little bit of a learning curve to get the hang of it. But on the surface it is just like any other sql language and you just have to figure out the different quirks that it has. I wish it could give data instantaneously and read my mind on what I want but that is pretty much impossible so I'm going to stick with what I have.\nCapterra, MANAS M., Sr software engineer, 5.0, This is a fully managed cloud data-warehousing solution , or database as a service, the advantage of this with the traditional server based database is the performance boost, here the warehouse or the computing power and data storage is fully decoupled, this means , you can pay for what you need, your warehouse can be in sleep when its not in use so you save money, you can modify the size of warehouse so you get your performance as you want, and it supports the advance queries like 'copy' into local files and s3 etc .., coming to the operations, the snowflake has query history well maintained with importance performance metrics , and they have a good support team who responds quick, they have a web workbench which stores our query on different tabs with different configurations, they have role based authentication for each elements on database, they have good documentations and community for an help regarding the queries etc.., we use to have some outages in the past, which was resolved quick, now a days i don't see those that's a good thing, if you are trying to migrate from a psql to snowflake then some query syntaxes will be different\nCapterra, Mahesh K., Lead analyst, 5.0, This is a cloud database and warehousing service, the syntax of snowflake is like psql, they have a good community support and good documentations for all the queries, they are faster than traditional databases, and the are charged separately for compute power and the storage space , which makes it usable in a flexible cost effective manor, good support team, always respond and try to resolve the issues if any was reported, and also helped us identify any cost saving scope, The System esoterically shows outage, these type of outages are informed to use by the support team, and they resolve it quickly, a minute potion of the syntax of sql is slightly different from psql, which makes it hard to migrate the application from different psql service providers\nCapterra, Robert G., Developer, 4.0, Exceptionally easy to scale up or out based on needs, and some nice cost-saving features like auto-suspend/resume for compute stuff. It supports ANSI SQL so it's not the end of the world to port over code from legacy SQL platforms. It also has a ton of integrations with your cloud provider of choice (as long as it's GCP, AWS, or Azure). According to their roadmap it will support Python eventually as well as their current SQL and JavaScript syntax for stored procs. Just a ton of functionality out of the box., Pricing isn't the MOST transparent at first glance, but is fairly intuitive/controllable once you understand it . The current WebUI is absolute garbage. Luckily that's being deprecated for \"Snowsight\". Role inheritance and object ownership also has a decent learning curve compared to SQL Server, for example. This isn't a knock against Snowflake, but users should not expect this to have the same sort of OLTP-type performance and a typical relational DBMS. Just know the limits.\nCapterra, Mithun G., PM, 5.0, Snowflake is very easy to use and can easily connect to different cloud platforms like AWS, GCP and Azure. The fact that it can be hosted on any of these platforms makes it portable and easy to use. The access and security is very flexible and scalable. The fact that storage and compute are separate makes it ideal", "doc_id": "af780a43-faa8-451f-b32b-f26539732d05", "embedding": null, "doc_hash": "44fab4baad0b2044b5db84ef406951faac089fdbd3260930c336455a0cb58911", "extra_info": null, "node_info": {"start": 178610, "end": 182819, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "276c969e-e630-45da-a5d3-d9abd5380a9f", "3": "76f9cfff-5165-4690-bbda-334c127814aa"}}, "__type__": "1"}, "76f9cfff-5165-4690-bbda-334c127814aa": {"__data__": {"text": "and scalable. The fact that storage and compute are separate makes it ideal for use with big data warehouses where usage can be monitored easily and can be charged back ti the appropriate business unit. More and more features are getting added to it which makes it a flexible, scalable data warehouse in cloud., The warehouse currently does not support procedural languages and some of the datatypes do not align with some other popular databases which makes it difficult for migration to Snowflake. The cost is little bit on the higher side.\nCapterra, Vishal V., Snowflake Architect, 5.0, Snowflake is easy to onboard and adopt, implement, easy to use., Limited monitoring capability and data analytics features.\nCapterra, Matthew C, Director, Professional Services, 5.0, The \"Time Travel\" aspect of Snowflake, being able to pick a point in time and see the state/contents of nearly any table is astonishing. Very useful and impressive feature. What is equally as impressive is the overall performance of the platform. I've worked with Oracle, DB2, MySQL, Vertica, Teradata, ParAccel, and others. Maybe not always in the most optimal configurations, but Snowflake's performance has been overall the best in my experience., As a newer platform, there are certain convenience elements that Snowflake lacks. - No auto-complete of object names. - No \"easy\" import wizard to import data. - Some bugs with the browser-based interface (worksheets did not properly save). - Limited customizations to filter out the tables or objects you don't work with regularly. Always shows full list, oftentimes very large.\nCapterra, Andrew K., Senior Program Manager, Data Operations, 5.0, Snowflake's Worksheets interface is easy for SQL novices to figure out because it's simple and straightforward, which is exactly the opposite of many competitors. On other platforms, novices are easily intimidated because of the complexity, but Snowflake does a great job of keeping it simple and clean. Their documentation is also good, but it's not as novice-friendly as I would like., Script error messages could be more specific and helpful with identifying errors and troubleshooting. For example, linking directly to the relevant section of their documentation, based on the type of error. Again, this is something that advanced users probably wouldn't mind too much, but for novice or even intermediate users, this can be the difference between spending a few minutes troubleshooting versus hours of head-scratching.\nCapterra, No name, nan, 4.0, The computation power and storage capacity in decoupled (pay for what you want) it provides a good query history and query analysis feature, and also query metadata help's us in understanding the performance issues if any the support team responds quick and good, they have a good web UI workbench to work on and it auto stores our work, the provide a snowflake outage dashboard which can show the down time of snowflake if any, some syntax's are different from psql, could have been the same so that the migrations wold have been easier the web UI workbench is bit slow in initial page load time, some times we face some issues not frequently , but the support team tries to resolve it immediately, and the support team notifies us if there are any known outages that are about to happen\nCapterra, Emmet M, Staff Software Engineer, 5.0, We switched from Redshift to Snowflake for two primary reasons: 1. Snowflake's virtual warehouses allow scaling reliably, whereas Redshift becomes unstable; 2. First-class JSON support. Having switched to Snowflake, data warehouse administration has gone from nightmare to almost nothing. We continue to scale our data and analytics, and Snowflake handles it easily., Snowflake's approach to sales and support is a blend of on-demand cloud offering and enterprise tool. They could improve certain aspects, such as simplifying the set up of Snowpipe to stream data from AWS. But these are minor features involved in initial setup.\nCapterra, Nathan Patrick T.\n, Chief Information Officer, 4.0, The ability to load data in using tools like Alteryx is a major plus. Snowflake also integrated well with our data science platform. The management of users and access was very simple to use and", "doc_id": "76f9cfff-5165-4690-bbda-334c127814aa", "embedding": null, "doc_hash": "2e70434365907aa67ea0ce8f79f5242f0cac2fc4a9eaae7b4a63b79b57de1af1", "extra_info": null, "node_info": {"start": 182813, "end": 187061, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "af780a43-faa8-451f-b32b-f26539732d05", "3": "a72e2e96-8525-41f5-b203-183e65f44174"}}, "__type__": "1"}, "a72e2e96-8525-41f5-b203-183e65f44174": {"__data__": {"text": "well with our data science platform. The management of users and access was very simple to use and understand., Building out incremental loading was difficult and did not save us time in comparison to our incumbent solution. The pricing structure for usage was nebulous. We did not fully understand the pricing model until that renewal period at the end of the year which included fees that were not mentioned during the sales process.\nCapterra, Kristin G, Business Systems Manager, 5.0, Snowflake is an industry leader and has ample connectors to all data sources. They integrate flawlessly with our BI platform and allow for management by a 3rd party. Compute power is FAST and easily scalable., Snowflake, like most, has its own dialect for SQL - not necessarily a bad thing but something to adjust to. There is no data cap, so data usage can get expensive.\nCapterra, No name, nan, 5.0, The three features of many great features that stand out are: -The REAL separation of compute and storage gives the ultimate flexibility. You can match workloads to the proper level of compute without having one workload collide with another. You can optimize what you spend by only using what you need with the ability to change the size of your compute multiple times a day and the ability to stop and resume compute nodes easily. -No other database I have ever used can handle concurrency like Snowflake. Additional clusters are automatically spun up if a query is queued -There is no tuning that needs to be done as this is a data warehouse as a service. No other database comes close to the Snowflake performance without additional tuning. I can put in some time and tune my Oracle, Teradata or HANA database to get similar or slightly better performance but the level of DBA needed to do this is costly. This is especially helpful when the query patterns to be run against the database are unknown., One of the positives above can also be a negative. Snowflake is a service and not software that you can run in your own data center or your own cloud VPC. This CON can be overcome with end to end encryption where you own the key and other Snowflake features.\nCapterra, Ryan M., Senior Research Analyst, 5.0, I like that it has a really good interface that is easily accessible. We were using AWS before this and it was really hard to get the connections right. Keeping track of the drivers and everything was really complicated and I never got it to work as seamlessly as Snowflake, I like that it has a really good interface that is easily accessible. We were using AWS before this and it was really hard to get the connections right. Keeping track of the drivers and everything was really complicated and I never got it to work as seamlessly as Snowflake\nCapterra, Shreyansh S., Freelancer, 5.0, This is a cloud-based application that gives me a safe stage to the simple sharing of information with my customers. I feel sure to associate with my various colleagues as a result of its high level security and successful programming. Through this instrument, I am equipped for incorporating, dissecting, and the whole information in an exact structure and with investigation also, because of which I generally have a straightforward thought regarding the information extraction and its exchange from numerous mists., Security jobs and access are difficult to comprehend and oversee Rollout of new components appears to intensely support US West coast, every other person needs to pause Visual interface doesn't permit you to oversee custom capacities and schedules. For those, it is code as it were. The board of tables and perspectives is visual\nCapterra, Vandit D., Business analyst, 5.0, Processing is very fast, as someone who switched over from Microsoft Sql server this works very fast and has the same documentation. The documentation library is also very helpful and the forums are always readily available to compare commands from SSMS vs Snowflake, It doesn't let you customize column order after the results have been generated. It also downloads a csv everytime you want see the output which just creates more work.\nCapterra, Pinki D, Manage Data in Snowflake Data Warehouse, 4.0, Its very fast and easy to use. Execution of query is very fast and manage caching for improving performance. For getting data from different different databases its easy to get the data", "doc_id": "a72e2e96-8525-41f5-b203-183e65f44174", "embedding": null, "doc_hash": "bc22bfcdbda16e97c62b0c7790549323963a20b02045e194982c6dd1b8bf0804", "extra_info": null, "node_info": {"start": 187044, "end": 191420, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "76f9cfff-5165-4690-bbda-334c127814aa", "3": "d5078883-95d5-4ae3-bd07-49bf4dea0e9a"}}, "__type__": "1"}, "d5078883-95d5-4ae3-bd07-49bf4dea0e9a": {"__data__": {"text": "for improving performance. For getting data from different different databases its easy to get the data with snowflakes., As I have used Sql server so some times it's difficult to find syntax. Finding error if you have long query and showing ambiguous error then its very difficult to resolve as not suggest any line number. Tabs are not movable which I don't like.\nCapterra, Ajay s, Analytics Analyst, 5.0, query response time is way quicker compared to any other product., I don't see any cons in the product, I like the way it works and gets me the results\nCapterra, Theresa A., Sr Data engineer, 5.0, The convenience of a single data lake that can be sectioned off in any way needed paired with a pricing model that encourages a high volume of data storage and ease of use make Snowflake an enjoyable tool to navigate. They've developed a solid community for knowledge sharing and have experienced, competent staff., It can take a minute to remember which admin account needs to be used for performing specific actions. Sometimes pressure may be felt to save multiple queries and run them close together rather than sporadically to minimize computation costs, although after the first minute these are billed by the second and the pressure lessens.\nCapterra, No name, nan, 5.0, Snowflake is a database and a storage warehouse on the cloud. Since it's scalable on demand, retrieving data through Snowflake Warehouses is lighting fast. All the computing power required to run the SQL queries are taken care by the Warehouse size we choose. If a query is taking too long to run a quick switch to a bigger warehouse does wonders. Migrating and loading data into Snowflake is a breeze too via Snowflake Stages and COPY TO commands., Snowflake doesn't enforce constraints, especially primary keys. So, care should be taken while doing INSERTs and UPSERTs to maintain data integrity. This lack of this feature is understandable since it's projected more as a storage warehouse.\nCapterra, Vipul C., Data engineer, 5.0, very easy to integrate with all our other tools, Honestly having a tough time coming up with what I like lease. Maybe some of the UI\nCapterra, Billy s, Data analyst, 4.0, It is able to hold and process extremely large amounts of data in a timely manner. It also allows you to organize the data and limit access which roles have access to which data., There are two features that could use improvement. First is the inability to move tabs with different code around. This makes it impossible to organize tabs that go along with certain projects which is frustrating. It also saves every tab you ever created even when you delete the tab. While I understand this can be helpful if you accidently delete something, it would be nice to have the option to delete the cached tabs if I wanted to.\nCapterra, Subramanian S., Senior Consultant, 5.0, High PerformanceSecuredEncryption and Data Masking FeaturesMany new SQL Functions, Client Tool to Query Data needs to be improved\nCapterra, Nitin P, Product Analyst, 5.0, Snowflake is being utilized as a data warehousing system based on cans. We're utilizing Snowflake and additional tools like HVR and Dell Boomi to create a data lake. Currently, different business teams are using different systems for reporting and analytics purposes. We're now working on a centralized solution for the entire company., Snowflake has its limitation when dealing with unstructured data\nCapterra, Uddipan M, Sr Data Engineer, 5.0, Snowflake is very easy to use and scale. It provides helpful features like merge, JSON flattening which are very handy options. Snowflake cloud SQL editor is very fast and helps easy developments., It can be a costly solution if optimizations are not planned accordingly.\nCapterra, No name, nan, 4.0, We use Snowflake to capture some of our larger third party data exports that won't fit into Google Sheets. The process of uploading data is straightforward and keeps our business reporting streamlined despite lean engineering resources on our end. There is a SQL interface to make modifications to data before final exports and data viz., The UI is clunky and not the most intuitive. The error", "doc_id": "d5078883-95d5-4ae3-bd07-49bf4dea0e9a", "embedding": null, "doc_hash": "763f5799d71c2f4af94024d72c9182c5e0fa5ae6aa7cb553ba645f1203afc3d3", "extra_info": null, "node_info": {"start": 191414, "end": 195584, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "a72e2e96-8525-41f5-b203-183e65f44174", "3": "8d778cbe-44af-4021-8883-57a9b6681098"}}, "__type__": "1"}, "8d778cbe-44af-4021-8883-57a9b6681098": {"__data__": {"text": "exports and data viz., The UI is clunky and not the most intuitive. The error messages could be more detailed and expanded. The support for Mac seems to be more limited. Encountered issues with data produced via Mac and support took months to fully resolve.\nCapterra, Pawan M, Software Engineer, 5.0, The feature I like the most in snowflake is it's ease of use and excellent support., Sometimes the response time of portal increases which anyone hates. Understanding the data-structures is not always easy.\nCapterra, Dan S., SA, 4.0, Web UI Virtual Warehouses Secure Product Auto-Scaling S3 integration Public Cloud Hosting Forward thinking vendor, Would be good if there was a RESTful API interface with ability to query tables returning JSON format\nCapterra, Alex Z., Senior Manager, Strategy and Insights, 5.0, I really like the speed and the quality of the Snowflake UI. It is the easiest database tool I have ever used in my career., It is costly to use Snowflake so as a company you always have to fight for the value it brings to the company as a whole.\nCapterra, No name, nan, 5.0, We can schedule the data synchronization timelines, and store the data for analytical and reporting purposes., I don't find any thing to dislike, it serves the purpose of data warehousing for reporting.\nCapterra, No name, nan, 5.0, Snowflake Marketplace is well thought out and the data connector fabric is easy to understand and implement, Initial upfront documentation was a little difficult to navigate but once we got a hang of it, setting up everything else was relatively simple\nCapterra, Edwin Q., BI Lead, 4.0, Fast and reliable data warehouse. It cost effective and scalable that fits in our business model, The visualisation feature. Maybe it is still in early stage and still lots of room for improvement\nCapterra, No name, nan, 5.0, Big Data with Simple SQL - it is amazing how easy this product is to use but still as the horsepower to process billions of rows of data without a sweat. The separation of storage-compute and cloud provider agnostic environment support is the best., Snowflake is expensive if used \"incorrectly\". Users need to be extremely skilled to be able to reduce cost on the platform and use virtual WHs appropriately.\nCapterra, No name, nan, 4.0, Configuring the Warehouses can give you endless possibilities, There are some implicit casts in data types sometimes that seem to be the default behavior\nCapterra, No name, nan, 5.0, Snowflake is a FAST alternative to a software like microsoft sql server. The data is well organized in the cloud, which allows you to pull from it quickly. SQL queries that used to take 20 minutes now only take 10 seconds. The interface is user-friendly and looks great., There are a couple of nuances that you need to know when you start using Snowflake. If you have someone to help you learn the few things that are unique about writing code with snowflake, you won't have a problem.\nCapterra, No name, nan, 4.0, Snowflake is incredibly flexible and versatile. There are numerous ways to get data into Snowflake, even if there is not already an API built out for the source. The tool has many pre-built integrations as well., Though it is very flexible, one thing that Snowflake does not handle is unstructured data. This can be a problem if your sources heavily rely on this type of data. They say they are going to support it in the future, but as of right now, they do not.\nCapterra, No name, nan, 4.0, It's fast. It's simple. It's scalable. And best of all, we saved forty percent from switching off of redshift., You can't connect easily from a sql editor outside of their browser or the command line. That makes it less convenient.\nCapterra, Tanusree P., Software developer, 5.0, snowflake has been a key business partner for major companies BI solutions and I have great experience learning and using it, Snowflake had been an integral part of BI solutions and self service BI analytics for the mega clients projects I have worked with.It is seamlessly integrated with other warehouse databases. Storage and", "doc_id": "8d778cbe-44af-4021-8883-57a9b6681098", "embedding": null, "doc_hash": "994eed484d753bfa008dd01b02f8a77ccb78b5733fd56f5979d5f4791e2fb3f1", "extra_info": null, "node_info": {"start": 195610, "end": 199685, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "d5078883-95d5-4ae3-bd07-49bf4dea0e9a", "3": "0e02e514-54e6-4a76-af4e-aaeaeb023645"}}, "__type__": "1"}, "0e02e514-54e6-4a76-af4e-aaeaeb023645": {"__data__": {"text": "have worked with.It is seamlessly integrated with other warehouse databases. Storage and compute modules can be separately managed and help users to tune as per requirement\nCapterra, Ju L, Regional Director Solutions Engineering, 5.0, They just added visualization and it is amazing. Super fast to run queries and extremely easy to use and share., Easy to spend way too much money. The compute credits go out fast if you don't monitor them closely.\nCapterra, Catherine H., Analyst, 4.0, The interface is very attractive, it is extremely fast to query huge datasets, and there is a strong online community of users to learn from., I think it has the possibility to be a great software for querying huge databases, but some of the basic uses of that data are hard to come by - it is difficult to interface with Microsoft products.\nCapterra, Tanya B., Head of Marketing, 4.0, We used Snowflake after multiple attempts with other clouds and to say it was powerful is the least. It connects all data sources and allows to create a solid data warehouse essential for all BI reporting etc., Complicated Billing (on purpose?), sometimes waiting for query load can be long and bothersome, could still use UI improvements\nCapterra, Martin S., Student, 5.0, A very innovative platform. Very secure. Great interface. Doing great things with Amazon, Google, etc., Takes some times to get used to but not a huge deal in the end.\nCapterra, Darren O., Associate Strategist, 5.0, Product is easy to use to go along with a Udemy course I am taking. If making an error in how I input the SQL, it will point out to me where my error was, making it easy to correct., So far I don't have any, as I'm still in the learning phase and wouldn't know if any limitations are based on the software, or based on my limited knowledge.\nCapterra, Dinesh S., Technical Consultant, 4.0, I almost used all the OLAP databases but this is what I loved a lot, less in price Great Performance & User Friendly., Few features still in queue like explain plan, stored procedures\nCapterra, No name, nan, 5.0, Easy setup and configuration. The Ability to scale up and scale down at needed. Pay as you go and only for what you use., Limited to AWS currently with planned expansion to Azure and GCP. On-Premise is not an option, but VPC is.\nCapterra, Jeet v., Program manager, 5.0, 1. Cloud based 2. Costing based in usage 3. Good performance 4. Access management an governance, License cost but does the job as per expectation\nCapterra, Kyle A, Data engineer, 5.0, Very powerful and fast. Easy to integrate with AWS pipelines. Snowpipes and tasks are great., Permissions can be difficult to use sometimes.\nCapterra, John L., Data Analyst, 5.0, With Snowflake, developing and deploying a cloud based relational database infrastructure has never been simpler., Support for unstructured data could be better.\nCapterra, No name, nan, 4.0, My favorite feature in Snowflake is the ease of use provided by SnowSQL. You can create variables in SQL that you reference throughout your queries. It additionally performs super fast and reduces many management needs., Snowflake lacks the ability to create stored procedures, this would add a lot of value and ease of use to the software. While the lack of management is great, I find that it may not always be worth the cost for it. In addition to this, it does not perform well (or at all) as an ETL Tool.\nCapterra, Himanshu P., Solution Director, 4.0, User friendly and easy setup for the AZure based setup, Cost is very high and not transparent for production grade systems\nCapterra, Christopher M., Sales Engineer, 4.0, Easy to get started if you are familiar with traditional data warehousing, It gets expensive as soon as you use the additional functionality\nCapterra, Nick C., IT Security Specialist, 5.0, Snowflake is amazingly fast, which for all your queries on the data means less time to get business changing data. Snowflake is able to handle mixed data., It is quite the process to get", "doc_id": "0e02e514-54e6-4a76-af4e-aaeaeb023645", "embedding": null, "doc_hash": "2047857aab21c72d1ab01ed39fb3a96696df2c44f0188009b44d86aa339cc140", "extra_info": null, "node_info": {"start": 199672, "end": 203665, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "8d778cbe-44af-4021-8883-57a9b6681098", "3": "4685d941-5282-4a37-b15f-ae84e61f3ed8"}}, "__type__": "1"}, "4685d941-5282-4a37-b15f-ae84e61f3ed8": {"__data__": {"text": "data. Snowflake is able to handle mixed data., It is quite the process to get all the data sources linked to Snowflake. It wasn't to hard to get them connected but if this is your first experience like it was for me than there is going to be a learning curve.\nCapterra, Nick K., Head of Security, 5.0, Fantastic performance without worrying about tuning or data set size., None! Really fantastic experience for our data teams.\nCapterra, Joel R., Product, 4.0, Snowflake is a no fluff software that gets you data results FAST. There isn't much you have to worry about or learn to simply start using it. Since it's cloud based you session is alway saved and you can pick up right where you last started. Love that about it., It's very basic, compared to other tools. So if that is what you are looking for then it isn't an issue.\nCapterra, Tanika S., Data Analyst, 3.0, 1 - I like the way it stores the big data. 2 - Convenient to connect with tableau for visualizations., 1 - Costly if data is too big 2 - You can't own the data, you have to depend on the Data Engineering team.\nCapterra, Nathan B, Product Manager, 3.0, I love how straightforward and performant the solution was, Data visualisation was a little lacking, meaning you had to tether to a system like Google Data Studio or Sigma/Tableau to make sense of the data\nCapterra, Ajay c, SSE, 5.0, The way snowflake supports integration with multiple data sources has made data migration very easy. The time travel feature lets you move to the previous stage of the data it has helped me a lot in many situations. Most importantly the service is very cost-effective and runs very fast in any browser., There are no negatives I have noted till now all the features are top-notch up to the industry mark.\nCapterra, Siddharth , Software Analyst, 5.0, Snowflake db is a cloud based db the most interesting part of this software is that it is cload based and is giving competition to major vandors., It's really costlier to buy and one should be specially trained in it", "doc_id": "4685d941-5282-4a37-b15f-ae84e61f3ed8", "embedding": null, "doc_hash": "04de8f91804a1f481890f70a5df4c92eaa7f313d726216810e84b9984cba28e7", "extra_info": null, "node_info": {"start": 203664, "end": 205685, "_node_type": "1"}, "relationships": {"1": "322fd939-b6d5-473c-891e-24941399e0b9", "2": "0e02e514-54e6-4a76-af4e-aaeaeb023645"}}, "__type__": "1"}}, "docstore/ref_doc_info": {"322fd939-b6d5-473c-891e-24941399e0b9": {"doc_ids": ["45502c38-a88c-4932-9c54-5cbb479f14da", "a241bfb6-52df-4223-80ca-dfc6b486a9ae", "b978fe8b-d903-4973-a3b1-d979740a906f", "2f509e7c-4766-431e-bee6-7c7bd37f6936", "52307f8e-27e7-4fc9-82ac-553225271c9c", "87138cd6-39bb-4c54-82e7-8a9bcec1f852", "cbfa41fc-7c57-4dca-943e-b888a7dba157", "19eeaf0e-0951-492b-9b7c-e9ed7ccfa7e8", "faed06c2-415c-488c-b88b-fb849d4daad0", "5d9a19ed-0f19-42d8-9950-405584501c6f", "41ff879f-3e90-4083-823a-4e4fddb34caf", "28f19db6-e542-4df6-8b44-969d7633e53c", "164a706a-545d-413a-94e2-1435ca0e56f9", "71483569-9d8c-4746-a129-fde439817d02", "6e10e340-5c45-4969-a8fc-f03571701760", "8a3446a0-48bf-4591-82c5-c01cce6bbb83", "cd5ca5e5-1a1f-4db1-8565-edcad71fbb05", "584df3b5-0387-4172-a121-3f803a865c10", "cf8ca687-4a5d-42df-8c80-d4f5cd78def8", "0130c4bd-52f6-4008-a110-cdc9be8f8c63", "be992b0a-cd60-4f79-bdb0-b1183171e884", "c75b30bc-2118-4e6c-8de0-917d39ced670", "309a2f60-a846-4e49-afe6-37ff48499eee", "f3396eb0-fefc-4246-92d7-4a0829614572", "d0cd6033-d5e0-4175-843b-9add469a23ad", "c08507d2-227e-40fc-8009-f22440e228f1", "f24fe96e-6dc8-4627-993e-5503105bf170", "84316a03-d970-4e54-a15b-cf2c27eb5124", "44e2d019-65b4-48d3-a22f-7de620fc4945", "fcbe0373-7a9f-4827-9ad4-21b471fd1e67", "9d06cdba-898a-4a61-9f63-bbc8004d9834", "6d225ce8-b188-4706-874a-8b84c8c6638f", "e5912887-a0c4-471c-863c-bc191e7bc1a2", "5ef91afd-2dce-4643-8132-41545dafc688", "0f354ae1-bc6f-4bd1-8e34-b098e7ebf17f", "f6d4019c-8797-4edf-ad20-7b902a227da0", "bb461fd8-c0fa-4ee2-8c1e-cbcfdc5ed8c4", "9a2a44f9-0f75-4c92-b254-e1c451a10333", "3bc3af1a-9324-41ae-b8ec-8cd8d213182f", "e0fb395c-0397-41ef-b036-342e7763bca8", "445dfa30-22e3-48b2-9ee8-8b0dd0768f47", "7301d5e7-c3de-468d-83e2-fd22ec514f61", "a7251df1-a3f6-4623-9bfa-39610e9ba36b", "e794818e-1855-4544-ba15-1c95b518e955", "276c969e-e630-45da-a5d3-d9abd5380a9f", "af780a43-faa8-451f-b32b-f26539732d05", "76f9cfff-5165-4690-bbda-334c127814aa", "a72e2e96-8525-41f5-b203-183e65f44174", "d5078883-95d5-4ae3-bd07-49bf4dea0e9a", "8d778cbe-44af-4021-8883-57a9b6681098", "0e02e514-54e6-4a76-af4e-aaeaeb023645", "4685d941-5282-4a37-b15f-ae84e61f3ed8"], "extra_info": {}}}} \ No newline at end of file diff --git a/index_v2/Snowflake/index_store.json b/index_v2/Snowflake/index_store.json new file mode 100644 index 0000000000000000000000000000000000000000..6f6cfe490fe8b3ebe537e255fe45884f2468dff0 --- /dev/null +++ b/index_v2/Snowflake/index_store.json @@ -0,0 +1 @@ +{"index_store/data": {"1f13b9e8-6c4c-4704-a29e-b2ec76c1d151": {"__type__": "vector_store", "__data__": "{\"index_id\": \"1f13b9e8-6c4c-4704-a29e-b2ec76c1d151\", \"summary\": null, \"nodes_dict\": {\"45502c38-a88c-4932-9c54-5cbb479f14da\": \"45502c38-a88c-4932-9c54-5cbb479f14da\", \"a241bfb6-52df-4223-80ca-dfc6b486a9ae\": \"a241bfb6-52df-4223-80ca-dfc6b486a9ae\", \"b978fe8b-d903-4973-a3b1-d979740a906f\": \"b978fe8b-d903-4973-a3b1-d979740a906f\", \"2f509e7c-4766-431e-bee6-7c7bd37f6936\": \"2f509e7c-4766-431e-bee6-7c7bd37f6936\", \"52307f8e-27e7-4fc9-82ac-553225271c9c\": \"52307f8e-27e7-4fc9-82ac-553225271c9c\", \"87138cd6-39bb-4c54-82e7-8a9bcec1f852\": \"87138cd6-39bb-4c54-82e7-8a9bcec1f852\", \"cbfa41fc-7c57-4dca-943e-b888a7dba157\": \"cbfa41fc-7c57-4dca-943e-b888a7dba157\", \"19eeaf0e-0951-492b-9b7c-e9ed7ccfa7e8\": \"19eeaf0e-0951-492b-9b7c-e9ed7ccfa7e8\", \"faed06c2-415c-488c-b88b-fb849d4daad0\": \"faed06c2-415c-488c-b88b-fb849d4daad0\", \"5d9a19ed-0f19-42d8-9950-405584501c6f\": \"5d9a19ed-0f19-42d8-9950-405584501c6f\", \"41ff879f-3e90-4083-823a-4e4fddb34caf\": \"41ff879f-3e90-4083-823a-4e4fddb34caf\", \"28f19db6-e542-4df6-8b44-969d7633e53c\": \"28f19db6-e542-4df6-8b44-969d7633e53c\", \"164a706a-545d-413a-94e2-1435ca0e56f9\": \"164a706a-545d-413a-94e2-1435ca0e56f9\", \"71483569-9d8c-4746-a129-fde439817d02\": \"71483569-9d8c-4746-a129-fde439817d02\", \"6e10e340-5c45-4969-a8fc-f03571701760\": \"6e10e340-5c45-4969-a8fc-f03571701760\", \"8a3446a0-48bf-4591-82c5-c01cce6bbb83\": \"8a3446a0-48bf-4591-82c5-c01cce6bbb83\", \"cd5ca5e5-1a1f-4db1-8565-edcad71fbb05\": \"cd5ca5e5-1a1f-4db1-8565-edcad71fbb05\", \"584df3b5-0387-4172-a121-3f803a865c10\": \"584df3b5-0387-4172-a121-3f803a865c10\", \"cf8ca687-4a5d-42df-8c80-d4f5cd78def8\": \"cf8ca687-4a5d-42df-8c80-d4f5cd78def8\", \"0130c4bd-52f6-4008-a110-cdc9be8f8c63\": \"0130c4bd-52f6-4008-a110-cdc9be8f8c63\", \"be992b0a-cd60-4f79-bdb0-b1183171e884\": \"be992b0a-cd60-4f79-bdb0-b1183171e884\", \"c75b30bc-2118-4e6c-8de0-917d39ced670\": \"c75b30bc-2118-4e6c-8de0-917d39ced670\", \"309a2f60-a846-4e49-afe6-37ff48499eee\": \"309a2f60-a846-4e49-afe6-37ff48499eee\", \"f3396eb0-fefc-4246-92d7-4a0829614572\": \"f3396eb0-fefc-4246-92d7-4a0829614572\", \"d0cd6033-d5e0-4175-843b-9add469a23ad\": \"d0cd6033-d5e0-4175-843b-9add469a23ad\", \"c08507d2-227e-40fc-8009-f22440e228f1\": \"c08507d2-227e-40fc-8009-f22440e228f1\", \"f24fe96e-6dc8-4627-993e-5503105bf170\": \"f24fe96e-6dc8-4627-993e-5503105bf170\", \"84316a03-d970-4e54-a15b-cf2c27eb5124\": \"84316a03-d970-4e54-a15b-cf2c27eb5124\", \"44e2d019-65b4-48d3-a22f-7de620fc4945\": \"44e2d019-65b4-48d3-a22f-7de620fc4945\", \"fcbe0373-7a9f-4827-9ad4-21b471fd1e67\": \"fcbe0373-7a9f-4827-9ad4-21b471fd1e67\", \"9d06cdba-898a-4a61-9f63-bbc8004d9834\": \"9d06cdba-898a-4a61-9f63-bbc8004d9834\", \"6d225ce8-b188-4706-874a-8b84c8c6638f\": \"6d225ce8-b188-4706-874a-8b84c8c6638f\", \"e5912887-a0c4-471c-863c-bc191e7bc1a2\": \"e5912887-a0c4-471c-863c-bc191e7bc1a2\", \"5ef91afd-2dce-4643-8132-41545dafc688\": \"5ef91afd-2dce-4643-8132-41545dafc688\", \"0f354ae1-bc6f-4bd1-8e34-b098e7ebf17f\": \"0f354ae1-bc6f-4bd1-8e34-b098e7ebf17f\", \"f6d4019c-8797-4edf-ad20-7b902a227da0\": \"f6d4019c-8797-4edf-ad20-7b902a227da0\", \"bb461fd8-c0fa-4ee2-8c1e-cbcfdc5ed8c4\": \"bb461fd8-c0fa-4ee2-8c1e-cbcfdc5ed8c4\", \"9a2a44f9-0f75-4c92-b254-e1c451a10333\": \"9a2a44f9-0f75-4c92-b254-e1c451a10333\", \"3bc3af1a-9324-41ae-b8ec-8cd8d213182f\": \"3bc3af1a-9324-41ae-b8ec-8cd8d213182f\", \"e0fb395c-0397-41ef-b036-342e7763bca8\": \"e0fb395c-0397-41ef-b036-342e7763bca8\", \"445dfa30-22e3-48b2-9ee8-8b0dd0768f47\": \"445dfa30-22e3-48b2-9ee8-8b0dd0768f47\", \"7301d5e7-c3de-468d-83e2-fd22ec514f61\": \"7301d5e7-c3de-468d-83e2-fd22ec514f61\", \"a7251df1-a3f6-4623-9bfa-39610e9ba36b\": \"a7251df1-a3f6-4623-9bfa-39610e9ba36b\", \"e794818e-1855-4544-ba15-1c95b518e955\": \"e794818e-1855-4544-ba15-1c95b518e955\", \"276c969e-e630-45da-a5d3-d9abd5380a9f\": \"276c969e-e630-45da-a5d3-d9abd5380a9f\", \"af780a43-faa8-451f-b32b-f26539732d05\": \"af780a43-faa8-451f-b32b-f26539732d05\", \"76f9cfff-5165-4690-bbda-334c127814aa\": \"76f9cfff-5165-4690-bbda-334c127814aa\", \"a72e2e96-8525-41f5-b203-183e65f44174\": \"a72e2e96-8525-41f5-b203-183e65f44174\", \"d5078883-95d5-4ae3-bd07-49bf4dea0e9a\": \"d5078883-95d5-4ae3-bd07-49bf4dea0e9a\", \"8d778cbe-44af-4021-8883-57a9b6681098\": \"8d778cbe-44af-4021-8883-57a9b6681098\", \"0e02e514-54e6-4a76-af4e-aaeaeb023645\": \"0e02e514-54e6-4a76-af4e-aaeaeb023645\", \"4685d941-5282-4a37-b15f-ae84e61f3ed8\": \"4685d941-5282-4a37-b15f-ae84e61f3ed8\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} \ No newline at end of file diff --git a/index_v2/Snowflake/vector_store.json b/index_v2/Snowflake/vector_store.json new file mode 100644 index 0000000000000000000000000000000000000000..09d25bbb119c13929ae8fef9519d738489e30fbc --- /dev/null +++ b/index_v2/Snowflake/vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {"45502c38-a88c-4932-9c54-5cbb479f14da": [-0.01110376138240099, -0.014924781396985054, 0.014399650506675243, -0.030153587460517883, 0.002750029321759939, 0.017854461446404457, -0.016127055510878563, -0.03988233208656311, -0.025178659707307816, -0.05837247893214226, 0.021074345335364342, 0.010592449456453323, 0.011850000359117985, -0.017633352428674698, 0.008947959169745445, 0.015505190007388592, 0.017412245273590088, -0.010979387909173965, 0.004349606577306986, -0.013701778836548328, -0.016417259350419044, -0.0002651567046996206, -0.022318076342344284, 0.00533077260479331, -0.02810833975672722, 0.010903382673859596, 0.023147230967879295, -0.012540962547063828, -0.01567102037370205, 0.007635131478309631, 0.008070437237620354, -0.025841983035206795, -0.017536617815494537, -0.02227661944925785, -0.014109446667134762, 0.005102755036205053, 0.006526137236505747, 0.008982507511973381, 0.00287094758823514, -0.005848994478583336, 0.01408871728926897, -0.0047227260656654835, -0.001996880630031228, 0.005617522168904543, -0.005437871906906366, 0.02382437326014042, 0.012306035496294498, -0.011718717403709888, -0.006239388138055801, 0.0006659147329628468, -0.01777154579758644, 0.01875271275639534, -0.0022819023579359055, 0.0016306706238538027, -0.01627906784415245, -0.006484679412096739, 0.001716177212074399, 0.002729300409555435, 0.002157529117539525, 0.00771804666146636, 0.010336793027818203, 0.010392069816589355, -0.019029097631573677, -0.0035135424695909023, -0.01303845550864935, -0.03711848333477974, -0.015173528343439102, -0.0172602329403162, -0.020645948126912117, -0.015132070519030094, 0.016666006296873093, 0.04292256757616997, -0.005348046775907278, -0.006284300237894058, -0.00431505823507905, -0.01605795882642269, -0.0017619533464312553, -0.010737551376223564, 0.0047745481133461, -0.008540291339159012, 0.02039720118045807, -0.0006603006622754037, -0.012920991517603397, -0.01062699779868126, 0.020411020144820213, 0.061412714421749115, -0.0016824927879497409, -0.0009155247826129198, -0.012464956380426884, -0.0033528937492519617, 0.0002727141254581511, 0.022414810955524445, 0.015850670635700226, 0.029766647145152092, -0.014067988842725754, 0.017757726833224297, 0.010737551376223564, -0.0003623232478275895, 0.004594898317009211, -0.02176530659198761, -0.019181108102202415, 0.00025716747040860355, -0.0008814085740596056, -0.016928572207689285, -0.03001539409160614, 0.006329212803393602, 0.017951196059584618, -0.003993761260062456, -0.007358746603131294, 0.02274647355079651, -0.013466851785779, 0.022663557901978493, 0.003993761260062456, 0.0037691984325647354, -0.017757726833224297, -0.001458793762139976, 0.02208315022289753, -0.030595801770687103, -0.0034738120157271624, -0.029075685888528824, 0.007199825253337622, 0.00624975236132741, 0.028232712298631668, -0.03266868740320206, 0.013211195357143879, -5.4413267207564786e-05, -0.003411625511944294, -0.018642157316207886, 0.018600700423121452, -0.00574189517647028, 0.03250285983085632, 0.0173846073448658, 0.004301239270716906, 0.006329212803393602, -0.03852804750204086, 0.013639592565596104, -0.01777154579758644, 0.015712479129433632, -0.003890116699039936, -0.01366032101213932, 0.017564257606863976, 0.01929166167974472, 0.007110000122338533, -0.02433568611741066, 0.015532828867435455, 0.02960081771016121, -0.01960950531065464, 0.02709953486919403, 0.013591225259006023, -0.012043469585478306, 0.013763965107500553, -0.01500769704580307, -0.012603148818016052, 0.02296758070588112, 0.010958659462630749, 0.00203142873942852, 0.004688178189098835, 0.033304374665021896, -0.02132309041917324, 0.0017913193441927433, -0.007524577435106039, 0.018545422703027725, -0.006356851663440466, -0.015159708447754383, -0.001005349913612008, 0.033055629581213, 0.001998608000576496, -0.04272909834980965, -0.009272711351513863, -0.016417259350419044, 0.002433913992717862, 0.026228921487927437, -0.02849527820944786, 0.023520350456237793, 0.023589447140693665, 0.009493819437921047, 0.01292790099978447, -0.004819460678845644, -0.007856239564716816, -0.027113353833556175, 0.026933703571558, -0.00044912536395713687, 0.0019830612000077963, 0.01084810495376587, -0.0277904961258173, -0.027293004095554352, 0.025275394320487976, 0.005997551139444113, 0.004391064401715994, -0.007040903903543949, 0.018711254000663757, 0.0005540652200579643, -0.026933703571558, 0.0034807217307388783, -0.6177754402160645, -0.0044705248437821865, 0.027362100780010223, -0.024791721254587173, -0.010544082149863243, 0.01292790099978447, 0.025206297636032104, -0.003986851312220097, -0.012782799080014229, 0.01995498687028885, 0.009666560217738152, 0.007614402566105127, -0.0010476713068783283, -0.012395860627293587, -0.024708805605769157, -0.03496268391609192, 0.006170291919261217, 0.0033062538132071495, 0.0003424581082072109, 0.011110670864582062, -0.026215102523565292, 0.025814345106482506, 0.004073221702128649, -0.0005216763820499182, 0.011034664697945118, -0.020162275061011314, 0.029628455638885498, -0.014385831542313099, -0.015726298093795776, 0.02081177942454815, -0.04071148857474327, 0.024197492748498917, 0.024294227361679077, -0.006305029150098562, 0.03617877513170242, -0.008388279937207699, -0.005334227345883846, 0.023865832015872, 0.02528921328485012, 0.035874754190444946, -0.03424408286809921, -0.002209351398050785, 0.015975045040249825, 0.026574403047561646, -0.0032388849649578333, -0.0039453934878110886, -0.0071721868589520454, 0.009673469699919224, -0.022829389199614525, -0.004435976967215538, -0.007317288778722286, -0.024321867153048515, -0.0005419733934104443, 0.008291545324027538, 0.003903935896232724, 0.011780903674662113, 0.026726415380835533, 0.009148338809609413, 0.011704898439347744, 0.009141428396105766, 0.021088164299726486, 0.013598134741187096, -0.01694239117205143, -0.05505586043000221, -0.03446519002318382, 0.010640816763043404, -0.02791486866772175, -0.017522798851132393, 0.006660874933004379, 0.005486239213496447, 0.0003944961936213076, -0.007144548464566469, 0.00424250727519393, 0.010495714843273163, -0.009714927524328232, 0.03065107949078083, 0.033304374665021896, -0.011179766617715359, -0.004650175105780363, 0.013377026654779911, 0.0005229719681665301, -0.005534606520086527, 0.0023233601823449135, -0.02580052614212036, 0.03753306344151497, 0.0014777951873838902, -0.01814466528594494, -0.005890451837331057, -7.417046435875818e-05, -0.010392069816589355, 0.004038673359900713, 0.009383265860378742, -0.0072136446833610535, -0.02110198326408863, 0.025579417124390602, 0.037837084382772446, -0.005517332348972559, -0.002684387844055891, 0.003903935896232724, -0.02744501456618309, -0.0310932956635952, -0.03195009008049965, 0.017633352428674698, 0.001182408886961639, 0.02661585994064808, 0.022041691467165947, -0.034603383392095566, -0.010350612923502922, 0.020507754758000374, -0.011138309724628925, 0.00016529110143892467, -0.00820172019302845, -0.021682390943169594, -0.015090612694621086, -0.0018707799026742578, -0.0257037915289402, 0.021585656329989433, -0.0005968185141682625, -0.007939154282212257, -0.006045918446034193, -0.013466851785779, 0.013010816648602486, -0.0027690306305885315, -0.011490699835121632, 0.002141982549801469, 0.0359853059053421, 0.0074693006463348866, 0.012002011761069298, -0.005327317863702774, -0.014233819209039211, 0.007973702624440193, -0.005973367486149073, 0.0034720846451818943, -0.013625772669911385, 0.028882216662168503, 0.00239936588332057, 0.006660874933004379, -0.009770204313099384, 0.010696093551814556, -0.031148571521043777, 0.005012930370867252, 0.0005510422633960843, 0.012409679591655731, -0.013605044223368168, 0.005227128509432077, -0.0008503152639605105, -0.01875271275639534, 0.016804197803139687, -0.006135743577033281, -0.006916530895978212, -0.0325581356883049, -0.02030046656727791, 0.0028882217593491077, 0.02960081771016121, -0.005914635956287384, 0.00772495660930872, 0.005392959341406822, -0.026325656101107597, -0.01681801863014698, -0.02296758070588112, -0.011905277147889137, 0.011034664697945118, -0.015823032706975937, -0.010198600590229034, -0.008084257133305073, 0.0005557926488108933, -0.036980293691158295, 0.012886443175375462, -0.0068992567248642445, -0.017426064237952232, -0.004111224785447121, -0.012941720895469189, 0.00970801804214716, 0.02795632742345333, -0.015076793730258942, 0.021585656329989433, 0.005921545438468456, -0.006664329674094915, -0.007462390698492527, -0.01091720163822174, 0.028688747435808182, 0.017246413975954056, -0.014233819209039211, -0.008146443404257298, 0.021143440157175064, 0.009307259693741798, 0.020521575585007668, 0.01757807657122612, -0.029960118234157562, -0.00675760954618454, 0.010426618158817291, 0.02169620990753174, -0.011117580346763134, -0.00858174916356802, -0.0190981924533844, -0.014841866679489613, -0.030540525913238525, -0.014980059117078781, -0.013542857952415943, 0.0357365608215332, 0.014883323572576046, 0.011000117287039757, -0.03250285983085632, -0.002473644446581602, 0.01840723119676113, -0.038058195263147354, 0.005265131127089262, -0.014095626771450043, 0.018158484250307083, -0.0004823779163416475, 0.0026135642547160387, -0.023852013051509857, -0.009065423160791397, -0.03131440281867981, -0.006743790116161108, 0.013826152309775352, -0.009714927524328232, 0.007358746603131294, -0.0074693006463348866, 0.0022905394434928894, 0.0016436261357739568, 0.005728075746446848, 0.022027872502803802, 0.01351521909236908, 0.010668454691767693, 0.01427527703344822, -0.010260787792503834, 0.0025928353425115347, 0.009293440729379654, -0.028799301013350487, -0.004439431708306074, 0.019029097631573677, 0.0024131853133440018, -0.0040041254833340645, 0.015657201409339905, 0.011621982790529728, 0.04925177991390228, -0.009942945092916489, 0.030789272859692574, -0.0034859038423746824, -0.0017636808333918452, 0.008512653410434723, 0.035653647035360336, -0.033083267509937286, 0.018255218863487244, 0.0035722742322832346, 0.02357562817633152, -0.005980276968330145, -0.030955102294683456, 0.025081925094127655, -0.00772495660930872, 0.016707463189959526, -0.018006471917033195, -0.02122635580599308, 0.026574403047561646, -0.0008334730518981814, -0.002938316436484456, 0.01325956266373396, 0.022193703800439835, 0.01723259501159191, -0.01567102037370205, 0.0076005831360816956, -0.007351837120950222, -0.0016393075929954648, 0.018047930672764778, -0.012699883431196213, 0.004104314837604761, -0.028633469715714455, -0.013031545095145702, -0.014074898324906826, -2.4952909370767884e-05, -0.024377143010497093, -0.005627886392176151, 0.001450156792998314, -0.00733801769092679, -0.004909285809844732, -0.0005575200775638223, 0.00713763851672411, 0.011988192796707153, 0.020259009674191475, -0.019402217119932175, -0.03449282795190811, 0.022566823288798332, 0.006146108265966177, -0.0022369897924363613, -0.0008278589812107384, -0.010046589188277721, -0.02030046656727791, 0.005679708439856768, 0.005538061261177063, -0.009480000473558903, -0.012485685758292675, -0.014524023979902267, 0.014178542420268059, -0.014206181280314922, 0.010502624325454235, 0.034188807010650635, -0.015947405248880386, -0.011228134855628014, 0.020867055281996727, 0.016030320897698402, 0.002632565563544631, -0.01188454870134592, -0.017965015023946762, 0.03416116535663605, -0.010253877379000187, -0.014993878081440926, -0.0020815234165638685, 0.008512653410434723, -0.01799265295267105, 0.0013344206381589174, -0.022041691467165947, -0.025897260755300522, -0.01620997115969658, -0.02604927122592926, -0.012858805246651173, -0.003435809165239334, -0.007842419669032097, 0.026325656101107597, 0.00535495625808835, -0.0165278147906065, -0.02271883375942707, -0.00874067097902298, 0.01323192473500967, 0.05207090452313423, 0.0023233601823449135, -0.012554781511425972, 0.025081925094127655, -0.020963789895176888, -0.008954868651926517, -0.023313062265515327, -0.026090729981660843, 0.025303032249212265, -0.007980612106621265, -0.011525248177349567, 0.008429737761616707, 0.03145259618759155, -0.0004342265019658953, 0.011525248177349567, 0.014081807807087898, -0.00424250727519393, -0.009348717518150806, -0.024266589432954788, 0.013079913333058357, -0.013722507283091545, -0.009915306232869625, 0.033995337784290314, 0.022566823288798332, 0.029545539990067482, 0.03145259618759155, 0.037450145930051804, 0.0137086883187294, 0.0071929157711565495, -0.03087218664586544, -0.012872624211013317, 0.011939825490117073, -0.005938819609582424, 0.010550991632044315, -0.01120049599558115, 0.027707580476999283, 0.013301020488142967, -0.02874402329325676, -0.024957552552223206, 0.007179096341133118, -0.012561690993607044, 0.009846210479736328, 0.006080466788262129, -0.012195480987429619, 0.018821807578206062, -0.024100758135318756, 0.007358746603131294, 0.03446519002318382, -0.01890472322702408, -0.009099971503019333, 0.005009475164115429, 0.011621982790529728, -0.0027569388039410114, 0.028412362560629845, -0.015463732182979584, 0.008222449570894241, -0.015159708447754383, -0.0060113705694675446, -0.0188494473695755, -0.03338728845119476, -0.035874754190444946, -0.010419708676636219, -0.008229359053075314, -0.022152245044708252, -0.023741457611322403, -0.016030320897698402, -0.00579026248306036, -0.00144756562076509, -0.032060641795396805, 0.005600247997790575, 0.0047641838900744915, -0.0482291541993618, -0.038887348026037216, -0.0013335568364709616, 0.0313420407474041, 0.01789591833949089, 0.011020845733582973, 0.008941049687564373, -0.006163381971418858, 0.008975598029792309, -0.0022801749873906374, -0.03125912696123123, 0.005935364402830601, -0.014620758593082428, -0.009182886220514774, -0.03449282795190811, -0.017025306820869446, 0.0022991765290498734, -0.012686064466834068, 0.010018950328230858, 0.019789155572652817, -0.02027282863855362, -0.012520233169198036, 0.0026222013402730227, 0.005323863122612238, 0.039550673216581345, 0.021558018401265144, 0.016873294487595558, 0.02005172148346901, -0.04013108089566231, 0.022981399670243263, -0.03084454871714115, -0.007552215829491615, -0.021046705543994904, 0.015477551147341728, -0.0011098579270765185, -0.00479873176664114, -0.011020845733582973, -0.0028450365643948317, -0.01992734707891941, -0.006577959284186363, -0.011311049573123455, -0.0068543441593647, -0.012603148818016052, 0.003955758176743984, 0.007296559866517782, 0.004546530544757843, 0.02773522026836872, -0.010834285989403725, -0.018255218863487244, 0.012658425606787205, -0.028467638418078423, 0.03540489822626114, -0.0008075619698502123, -0.004435976967215538, 0.025178659707307816, 0.007635131478309631, -0.02732064202427864, -0.024791721254587173, 0.011815452016890049, 0.00683016050606966, 0.005109664984047413, -0.010405889712274075, -0.011794723570346832, -0.006443221587687731, -0.022580642253160477, -0.016320524737238884, -0.0007864012732170522, -0.0006335258949548006, 0.008443556725978851, -0.005731530953198671, 0.012236938811838627, 0.017052944749593735, 0.006018280051648617, -0.009148338809609413, -0.02830180898308754, -0.02810833975672722, -0.006598688196390867, 0.003112784354016185, 0.02960081771016121, -0.016790378838777542, -0.01703912578523159, -0.023644722998142242, -0.016583090648055077, 0.005679708439856768, -0.018794169649481773, -0.01723259501159191, 0.011808542534708977, 0.056050848215818405, 0.02624274045228958, 0.0359853059053421, 0.01985825039446354, 0.026063090190291405, 0.008160262368619442, -0.020963789895176888, -0.007317288778722286, -0.01521498616784811, -0.02186204120516777, -0.008554111234843731, 0.007016720250248909, -0.010240058414638042, -0.002884766785427928, -0.010889562778174877, 0.011000117287039757, -0.011545976623892784, 0.001699766842648387, 0.0037519242614507675, -0.009106880985200405, -0.02918623946607113, -0.052678950130939484, 0.0030695991590619087, 0.028882216662168503, -0.0034979956690222025, 0.0027983966283500195, -0.03045761026442051, 0.0009448907221667469, 0.02874402329325676, -0.01627906784415245, 0.023326881229877472, 0.01089647226035595, 0.042977843433618546, 0.0016341253649443388, 0.0025047375820577145, 0.0023613630328327417, 0.01564338244497776, -0.023520350456237793, -0.015574285760521889, -0.03885971009731293, -0.01205728854984045, 0.0077733239158988, 0.009970583021640778, 0.01386761013418436, 0.002960772719234228, 0.005855903960764408, 0.0049749272875487804, 0.011545976623892784, -0.027652304619550705, 0.003845204133540392, 0.016348164528608322, -0.03175661712884903, 0.0037311953492462635, -0.024100758135318756, -0.004017944913357496, -0.0015252989251166582, 0.00840900931507349, 0.003669008845463395, 0.0052893152460455894, 0.020203731954097748, -0.03581947460770607, -0.01929166167974472, 0.02700280025601387, -0.037007931619882584, 0.03327673673629761, 0.03172897920012474, 0.041457727551460266, 0.006204839795827866, 0.010378250852227211, -0.025012828409671783, -0.011559796519577503, 0.005576064344495535, -0.020632129162549973, 0.007206734735518694, 0.03261341154575348, -0.017951196059584618, -0.006954533513635397, 0.0011547704925760627, -0.003382259514182806, 0.005092390812933445, -0.030568163841962814, 0.003138695377856493, 0.016002682968974113, 0.004280510358512402, -0.037698894739151, -0.016140874475240707, -0.006560685113072395, 0.01713586039841175, -0.00853338185697794, -0.01186381932348013, 0.0016548542771488428, 0.0032647959887981415, 0.01302463561296463, 0.031203849241137505, -0.007738775573670864, 0.00538604985922575, 0.0005639978335238993, 0.005810991395264864, 0.027403557673096657, -0.00926580186933279, -0.010074228048324585, -0.010419708676636219, -0.003406443167477846, 0.03449282795190811, -0.02548268251121044, 1.1234882549615577e-05, 0.008063527755439281, 0.01325956266373396, -0.014302915893495083, -0.0030644170474261045, -0.034409914165735245, 0.03546017408370972, -0.0032509767916053534, -0.012513323687016964, 0.011276502162218094, 0.03150787204504013, 0.015519008971750736, -0.012651516124606133, -0.01992734707891941, -0.012437318451702595, -0.006864708848297596, 0.0007794916164129972, 0.01633434370160103, -0.01916728913784027, -0.02703043818473816, -0.006761064287275076, -0.0005929318722337484, -0.011262682266533375, -0.008650845848023891, -0.0003852113732136786, 0.019775336608290672, -0.03927428647875786, -0.0010079409694299102, 0.006039008963853121, -0.012603148818016052, 0.004187230486422777, 0.0068577989004552364, -0.01544991321861744, 0.011179766617715359, 0.025745248422026634, -0.014178542420268059, 0.013114460743963718, 0.03286215662956238, 0.01361195370554924, -0.04131953418254852, 0.015947405248880386, -0.015947405248880386, -0.0073656560853123665, 0.005555335432291031, -0.00472618080675602, -0.029269155114889145, -0.02563469484448433, 0.03253049775958061, 0.002862310502678156, 0.009811662137508392, -0.007483119610697031, 0.030070671811699867, 0.024694986641407013, -0.004771093372255564, -0.020922333002090454, 0.01985825039446354, 0.009445452131330967, -0.003675918560475111, 0.013667230494320393, 0.011076122522354126, -0.008284635841846466, 0.02271883375942707, 0.007476210128515959, -0.008706122636795044, 0.007897697389125824, -0.026353295892477036, -0.026408571749925613, -0.008236268535256386, 0.009431633166968822, 0.030761633068323135, 0.01983061246573925, -0.0007060769130475819, -0.014938601292669773, -0.014289096929132938, 0.02186204120516777, -0.038472771644592285, -0.000955255120061338, 0.014565481804311275, -0.014993878081440926, 0.001920874696224928, 0.02690606564283371, -0.023299243301153183, -0.03642752394080162, -0.02668495662510395, -0.021171079948544502, -0.042342159897089005, -0.010143323801457882, 0.021461283788084984, 0.04366880655288696, 0.001469158218242228, -0.023907288908958435, -0.037229038774967194, -0.01500769704580307, -0.042121049016714096, -0.024487696588039398, -0.023644722998142242, 0.022926123812794685, 0.02709953486919403, 0.03026414103806019, 0.0030695991590619087, 0.029545539990067482, -0.01894618198275566, -0.0022248979657888412, -0.05378448963165283, -0.010385160334408283, -0.02081177942454815, -0.022995218634605408, 0.03714612498879433, -0.024929912760853767, -0.04795277118682861, -0.003380532143637538, -0.011711807921528816, -0.021309271454811096, -0.0015313448384404182, -0.0005899089155718684, 0.01115212868899107, -0.013079913333058357, -0.00287094758823514, 0.015035335905849934, 0.01608559861779213, 0.02732064202427864, 0.010606268420815468, -0.026574403047561646, 0.010405889712274075, 0.020797960460186005, -0.0058662681840360165, -0.008291545324027538, 0.008858134038746357, 0.005486239213496447, -0.020963789895176888, -0.005558790173381567, 0.003658644389361143, -0.016735102981328964, -0.021212536841630936, 0.008028979413211346, -0.002908950438722968, 0.02078413963317871, 0.011877639219164848, 0.036980293691158295, -0.017398426309227943, -0.013453032821416855, -0.010205510072410107, 0.008333003148436546, 0.01750897988677025, 0.008326093666255474, 0.038472771644592285, -0.021267814561724663, 0.0023354520089924335, -0.006588323973119259, 0.007766414433717728, -0.007009810768067837, -0.012458046898245811, -0.012817347422242165, -0.01211947575211525, -0.016223790124058723, -0.013128280639648438, 0.016361983492970467, -0.012907172553241253, -0.0016013047425076365, 0.007676589302718639, -0.007980612106621265, 0.01328029204159975, 0.001237685908563435, 0.020742682740092278, -0.027140991762280464, -0.02401784248650074, 0.002171348547562957, 0.014703674241900444, -0.024764081463217735, -0.00027897596010006964, 0.034603383392095566, 0.011069213040173054, 0.0042563267052173615, 0.210052490234375, 0.0005221082246862352, 0.018476327881217003, 0.05616139993071556, 0.017274053767323494, -0.012299126014113426, 0.027071895077824593, 0.010931020602583885, -0.005220219027251005, 0.009189796634018421, -0.007071997504681349, 0.004415248055011034, -0.006906166207045317, 0.0016056231688708067, 0.015781573951244354, -0.014510204084217548, -0.02671259641647339, -0.005040568765252829, -0.011587434448301792, 0.01589212939143181, 0.002677478129044175, -0.012955539859831333, -0.014316734857857227, -0.005030204076319933, 0.02269119583070278, 0.007379475515335798, -0.012527143582701683, -0.0007682635332457721, 0.02034192532300949, 0.007351837120950222, -0.008167171850800514, 0.015076793730258942, 0.012098746374249458, -0.007952974177896976, -0.02443242073059082, -0.011649621650576591, 0.018421050161123276, -0.009797843173146248, -0.009086151607334614, 0.03537726029753685, 0.0011694533750414848, -0.01178781408816576, -0.007566035259515047, -0.009507638402283192, 0.023755278438329697, -0.018669797107577324, -0.013584314845502377, 0.007842419669032097, -0.02465352788567543, 0.020867055281996727, -0.0037795628886669874, 0.00990148726850748, 0.009010146372020245, 0.025012828409671783, -0.011373236775398254, 0.0010874016443267465, -0.004263236187398434, -0.009790932759642601, -0.01760571449995041, -0.023865832015872, -0.028909854590892792, 0.0152426240965724, -0.014648396521806717, 0.016002682968974113, -0.024446239694952965, 0.013287201523780823, -0.015062973834574223, 0.027804315090179443, 0.0051476676017045975, 0.002473644446581602, -0.00576607882976532, 0.00791842583566904, -0.030568163841962814, 0.0023717274889349937, -0.030291778966784477, -0.011856909841299057, 0.010931020602583885, 0.01457930076867342, 0.024377143010497093, 0.020106997340917587, -0.01067536510527134, 0.0003690169542096555, -0.024598252028226852, -0.007110000122338533, 0.00988075789064169, -0.026063090190291405, 0.03703556954860687, -0.01659690961241722, -0.01115212868899107, -0.029960118234157562, -0.003102419897913933, 0.01394361536949873, 0.0001600009127287194, -0.005496603436768055, -0.000122321886010468, -0.006349941715598106, 0.000984621001407504, 0.020480116829276085, -0.012078017927706242, -0.018711254000663757, -0.015532828867435455, 0.052457842975854874, 0.017122041434049606, 0.029739009216427803, -0.016873294487595558, 0.004287419840693474, 0.006194475572556257, 0.030568163841962814, -0.0032337026204913855, 0.002373454859480262, 0.0003845636092592031, -0.041264258325099945, 0.022152245044708252, -0.0033528937492519617, 0.0020763410720974207, 0.013777785003185272, 0.012147113680839539, -0.017813002690672874, 0.0076213120482862, -0.018600700423121452, 0.013998892158269882, 0.00627393601462245, 0.02039720118045807, 0.02335451915860176, -0.05052315071225166, -0.033746588975191116, 0.004304694011807442, 0.02357562817633152, -0.03714612498879433, -0.021779125556349754, 0.010827376507222652, -0.01865597628057003, 0.026256561279296875, -0.006128834094852209, -0.005669344216585159, 0.0020158819388598204, 0.026698775589466095, 0.009355627000331879, -0.010454257018864155, -0.02002408169209957, 0.00695798872038722, 0.007614402566105127, 0.011331778950989246, 0.012236938811838627, -0.004657084587961435, -0.005607157479971647, 0.0063948542810976505, -0.00535495625808835, -0.0030747815035283566, -0.033304374665021896, 0.005911180749535561, -0.0066885133273899555, 0.021115802228450775, -0.005299679469317198, 0.04223160445690155, 0.002881312044337392, -0.026477668434381485, -0.01205728854984045, 0.01713586039841175, 0.016928572207689285, -0.03413352742791176, -0.001932966522872448, 0.03902554139494896, 0.01148379035294056, -0.021143440157175064, 0.000502243114169687, -0.17666520178318024, 0.009839300997555256, -0.0011305867228657007, -0.008256996981799603, 0.022677376866340637, 0.011801633052527905, 0.004892011638730764, 0.005931909661740065, 0.005513877607882023, -0.0020366108510643244, 0.02024519070982933, 0.0062635717913508415, -0.008609388023614883, -0.004546530544757843, 0.010246967896819115, -0.0033218003809452057, -0.018130846321582794, 0.028605831786990166, 0.0570458322763443, -0.0027552114333957434, 0.014897143468260765, -0.021599475294351578, -0.01659690961241722, 0.013211195357143879, 0.03341492637991905, 0.017743907868862152, -0.005178761202841997, 0.02744501456618309, -0.0030229592230170965, -0.03515615314245224, -0.0015840306878089905, -0.014717493206262589, 0.018614519387483597, -0.005382595118135214, 0.018725072965025902, -0.005030204076319933, -0.010986297391355038, -0.0005933637148700655, -0.007628221996128559, 0.009618192911148071, 0.018711254000663757, 0.004864373244345188, 0.025966355577111244, 0.002750029321759939, 0.009030874818563461, 0.01995498687028885, 0.00543441716581583, -0.00297113717533648, 0.007745685521513224, -0.019941166043281555, 0.034631021320819855, -0.01630670577287674, 0.014565481804311275, -0.006063192617148161, 0.017329329624772072, -0.0006875073304399848, 0.013874519616365433, 0.021972594782710075, 0.005106210242956877, -0.013294111005961895, 0.002687842585146427, -0.006767973769456148, 0.018255218863487244, -0.0028312173672020435, -0.008706122636795044, -0.03062344156205654, -0.0015745299169793725, 0.008851224556565285, 0.007103090640157461, 0.0001913101295940578, 0.0062013850547373295, -0.007780233398079872, 0.0007984930998645723, 0.008561020717024803, 0.020328106358647346, 0.0200793594121933, -0.03369131311774254, 8.18493208498694e-06, 0.03344256803393364, 0.004546530544757843, 0.006691968068480492, 0.014261458069086075, -0.004484344273805618, -0.00393502926453948, -0.009397084824740887, 0.016762740910053253, -0.01115212868899107, 0.015947405248880386, -0.015394636429846287, 0.010143323801457882, 0.017398426309227943, -0.014358192682266235, 0.005303134210407734, -0.004387609660625458, 0.023630904033780098, -0.008775219321250916, 0.03300034999847412, -0.00038305213092826307, 0.01728787273168564, -0.01681801863014698, 0.01674892194569111, 0.012983177788555622, -0.022442448884248734, 0.01211947575211525, 0.03775417059659958, 0.021710028871893883, 0.008339912630617619, 0.000488423858769238, 0.029103323817253113, -0.010523352771997452, -0.020314285531640053, 0.001668673474341631, 0.011062303557991982, 0.006916530895978212, -0.015062973834574223, 0.032060641795396805, -0.012679154984652996, -0.017757726833224297, -0.0056555247865617275, -0.022511545568704605, 0.04071148857474327, -0.030181225389242172, -0.019333120435476303, 0.017122041434049606, -0.0038866619579494, 0.0030765088740736246, -0.10275988280773163, -0.025593236088752747, 0.021627115085721016, 0.019692420959472656, -0.008851224556565285, 0.01332865934818983, 0.006888892501592636, 0.04366880655288696, -0.01706676371395588, 0.03266868740320206, -0.029628455638885498, -0.012202391400933266, 0.0006810295162722468, -0.003568819258362055, 0.0068577989004552364, -0.00728965038433671, -0.005030204076319933, -0.014510204084217548, -0.011165947653353214, 0.03626169264316559, 0.01094483956694603, -0.006429402623325586, 0.016071779653429985, -0.019968805834650993, -0.021931137889623642, -0.017951196059584618, -0.02871638536453247, 0.011159038171172142, 0.017633352428674698, 0.021820584312081337, 0.021240174770355225, -0.022926123812794685, 0.03775417059659958, -0.026380933821201324, -0.031867172569036484, -0.011041575111448765, -0.01274134125560522, -0.026892244815826416, 0.015560466796159744, -0.040849681943655014, -0.009977493435144424, -0.0009137974120676517, -0.01855924166738987, -0.022857027128338814, 0.0010925838723778725, -0.0030592347029596567, -0.013618863187730312, 0.034631021320819855, 0.014952420257031918, -0.013881429098546505, -0.010129504837095737, -0.01750897988677025, -0.0021057070698589087, -0.02389346994459629, 0.015422274358570576, 0.008402098901569843, 0.027279185131192207, 0.005095845554023981, -0.022166064009070396, -0.006505408324301243, 0.011421604081988335, -0.008782128803431988, -0.014468747191131115, 0.029490264132618904, 0.0028087610844522715, 0.012299126014113426, 0.014192362315952778, -0.00926580186933279, -0.010212420485913754, 0.0033425292931497097, -0.01328029204159975, 0.016707463189959526, -0.021875860169529915, 0.00867848377674818, -0.007766414433717728, -0.010668454691767693, -0.012188571505248547, -0.016997668892145157, 0.012112566269934177, 0.006795612629503012, -0.012534053064882755, -0.013978163711726665, 0.00446707010269165, -0.025206297636032104, 0.018379593268036842, -0.012354402802884579, -0.003095510182902217, -0.007379475515335798, 0.04466379061341286, -0.03087218664586544, 0.02173766866326332, 0.003183607943356037, 0.023534169420599937, -0.007199825253337622, -0.0011089942418038845, 0.0071721868589520454, -0.03322145715355873, 0.0055035133846104145, 0.019056735560297966, 0.0074071139097213745, -0.025330672040581703, -0.012430408969521523, -0.06456349790096283, 0.017301691696047783, 0.008042799308896065, 0.009998221881687641, 0.0009146610973402858, -0.012485685758292675, 0.0021091618109494448, -0.004363426007330418, 0.004121589008718729, 0.010412799194455147, -0.02791486866772175, 0.008146443404257298, -0.02217988483607769, -0.006812886334955692, -0.028771663084626198, -0.004594898317009211, 0.005935364402830601, 0.0015615744050592184, 0.015519008971750736, 0.0074071139097213745, -0.009010146372020245, -0.013093732297420502, 0.026477668434381485, 0.033774226903915405, -0.004211414139717817, 0.01960950531065464, -0.021461283788084984, 0.023755278438329697, -0.01099320687353611, -0.009086151607334614, 0.021654753014445305, 0.010599358938634396, -0.005994096398353577, 0.02367236278951168, -0.013653411529958248, -0.054972946643829346, 0.014772769995033741, -0.0004629446193575859, 0.02233189530670643, 0.004605262540280819, -0.021060524508357048, 0.0016168513102456927, 0.02624274045228958, 0.0035411808639764786, -0.016790378838777542, 0.004850554279983044, -0.021544199436903, -0.01543609332293272, 0.013591225259006023, 0.01361195370554924, 0.04568641632795334, 0.005430962424725294, -0.0018448688788339496, -0.030347056686878204, -0.0003441855078563094, 0.0005484512075781822, 0.013342478312551975, 0.021917318925261497, 0.00942472368478775, -0.004933469463139772, 0.04071148857474327, 0.019250204786658287, 0.016804197803139687, -0.011324869468808174, 0.0006719606462866068, -0.012437318451702595, -0.04800804704427719, -0.014012712053954601, -0.0056347958743572235, -0.04759347066283226, 0.010108775459229946, -0.019996443763375282, 0.03128676488995552, 0.03020886331796646, 0.019899709150195122, 0.0015520736342296004, -0.0074485717341303825, -0.02237335406243801, -0.014116356149315834, 0.034603383392095566, 0.021682390943169594, -0.011317959055304527, -0.028025424107909203, 0.014993878081440926, 0.02188967913389206, 0.006387944798916578, -0.02271883375942707, 0.017854461446404457, 0.0155466478317976, 0.0035100874956697226, 0.004708906635642052, -0.003883207216858864, -0.00637758057564497, 0.017426064237952232, 0.020106997340917587, 0.04377935826778412, -0.02065976709127426, 0.008899591863155365, 0.02830180898308754, 0.03407825157046318, 0.00045430759200826287, 0.02208315022289753, 0.002188622485846281, -0.0015287536662071943, -0.020949970930814743, 0.012416589073836803, -0.03968886286020279, -0.012637697160243988, 0.020576851442456245, 0.023741457611322403, -0.004546530544757843, -0.011732536368072033, -0.008650845848023891, 0.012817347422242165, -0.017094403505325317, -0.0032596138771623373, -0.014551661908626556, -0.01777154579758644, -0.02173766866326332, -0.009832390584051609, -0.00393502926453948, 0.007586764171719551, 0.016099417582154274, -0.020411020144820213, 0.006463950499892235, 0.012174752540886402, 0.007704227697104216, -0.01713586039841175, 0.015062973834574223, -0.033359650522470474, 0.007842419669032097, 0.011235044337809086, 0.013404665514826775, -0.012941720895469189, -0.006284300237894058, -0.020853236317634583, -0.017743907868862152, 0.027085715904831886, -0.00713763851672411, 0.09308641403913498, 0.02747265435755253, -0.03067871741950512, 0.006989081855863333, -0.021074345335364342, -0.0027828498277813196, 0.02318868786096573, -0.008588659577071667, 0.0011193585814908147, -0.025938717648386955, 0.008602478541433811, -0.00662978133186698, -0.02734827995300293, -0.01066154520958662, -0.014399650506675243, -0.00771804666146636, 0.013059183955192566, 0.011518338695168495, -0.022193703800439835, 0.01926402375102043, 0.04350297525525093, -0.01985825039446354, 0.03200536593794823, 0.0005791126168332994, -0.028357084840536118, -0.006875073071569204, 0.051352303475141525, 0.016997668892145157, 0.0068785278126597404, -0.024860817939043045, 0.007116909604519606, -0.009079242125153542, -0.01150451973080635, 0.0008386552799493074, -0.015919767320156097, -0.007351837120950222, 0.0015296173514798284, -0.02379673533141613, -0.003665554104372859, 0.008491924032568932, 0.002200714312493801, 0.019346939399838448, -0.021944956853985786, -0.013149009086191654, 0.009984402917325497, -0.005731530953198671, 0.019968805834650993, -0.019816793501377106, -0.01094483956694603], "a241bfb6-52df-4223-80ca-dfc6b486a9ae": [-0.01532246358692646, -0.013930764980614185, -0.005966390948742628, -0.029900850728154182, -0.0014769573463127017, 0.013331369496881962, -0.00603528693318367, -0.029928408563137054, -0.02134397067129612, -0.05109325051307678, 0.029955966398119926, 0.0040924204513430595, 0.01839522272348404, -0.014716179110109806, 0.011223153211176395, 0.01796806789934635, 0.02303881198167801, 0.00288329622708261, 0.021426646038889885, -0.01857435330748558, -0.018767261877655983, -0.0017654591938480735, -0.019373545423150063, 0.015584267675876617, -0.026731636375188828, 0.01683817431330681, 0.046325650066137314, -0.013317590579390526, -0.0015303516993299127, 0.02334195375442505, 0.011629639193415642, -0.021536879241466522, -0.00990724004805088, -0.004037303850054741, -0.017692483961582184, -0.006989495828747749, 0.00852243136614561, -0.005983614828437567, 0.0016870900290086865, -0.017733821645379066, 0.02890874817967415, -0.002667996333912015, -0.009032261557877064, 0.002736892318353057, 0.0022856236901134253, 0.020324310287833214, 0.009941687807440758, -0.03284959867596626, -0.003427574411034584, -0.012194585986435413, -0.0022718445397913456, 0.015088217332959175, -0.016328344121575356, 0.010637537576258183, -0.016204331070184708, 0.002404469298198819, -0.006255753803998232, -0.0017930176109075546, 0.010175934061408043, 0.005993949249386787, 0.018588131293654442, 0.012980000115931034, -0.017210213467478752, 0.0034826912451535463, -0.03127877041697502, -0.028826072812080383, -0.014137452468276024, -0.01780271902680397, -0.005632245447486639, -0.013820530846714973, 0.018753482028841972, 0.031637027859687805, -0.02104082889854908, 0.0055220117792487144, 0.000151678774273023, -0.014109894633293152, -0.00022305069433059543, -0.0032071073073893785, -0.003077927278354764, -0.014743736945092678, 0.017720043659210205, -0.00835019163787365, -0.01037573255598545, -0.018216094002127647, 0.010244830511510372, 0.05765214562416077, -0.00707561569288373, -0.003961517941206694, -0.0016655600629746914, -0.0038168365135788918, 0.0071789599023759365, 0.01997983083128929, 0.012594182975590229, 0.03295983001589775, -0.0015742728719487786, 0.006975716911256313, 0.009879682213068008, 0.00773701723664999, 0.003899511881172657, -0.014674841426312923, -0.021412866190075874, 0.004795159213244915, -0.0054393368773162365, -0.011374724097549915, -0.03221575543284416, 0.002308015013113618, 0.019221974536776543, -0.0018412447534501553, 0.0029573594219982624, 0.018629468977451324, 0.01315912976861, 0.01671416126191616, -0.016300786286592484, -0.00874978769570589, -0.024334056302905083, 0.003009031293913722, 0.022777007892727852, -0.02601511776447296, -0.02879851497709751, -0.022804565727710724, 0.013703407719731331, 0.016603928059339523, 0.02784775011241436, -0.02770995907485485, 0.01261485181748867, -0.022377410903573036, -0.004361114930361509, -0.019235754385590553, 0.03001108393073082, -0.0013779193395748734, 0.02350730448961258, 0.02257031947374344, -0.005442781373858452, -0.007757686078548431, -0.04037303850054741, 0.007895478047430515, -0.010961348190903664, 0.007158291060477495, -0.0016586703713983297, -0.025188365951180458, 0.01298689004033804, 0.015887409448623657, -0.01484019123017788, -0.02288724109530449, 0.010651316493749619, 0.0281508918851614, -0.007130732759833336, 0.03756208345293999, 0.004908837843686342, -0.015267346054315567, 0.008667112328112125, -0.021481763571500778, -0.01446815300732851, 0.0056150215677917, 0.0017585696186870337, -7.680823910050094e-05, 0.005952611565589905, 0.03560543805360794, -0.01182943768799305, -0.021412866190075874, -0.002392412396147847, 0.025587962940335274, -0.0053773303516209126, -0.009790116921067238, -0.008570658043026924, 0.02968038246035576, -0.006514113862067461, -0.041695840656757355, -0.01704486273229122, -0.006159299518913031, 0.004354225005954504, 0.02940479852259159, -0.02722768671810627, 0.029900850728154182, 0.015088217332959175, 0.0037927229423075914, 0.02073768712580204, -0.010107038542628288, -0.01579095609486103, -0.032436221837997437, 0.031664587557315826, -0.007447653915733099, 0.009383630938827991, 0.008543100208044052, -0.018601911142468452, -0.012745753861963749, 0.018932612612843513, 0.0015622160863131285, 0.013358928263187408, -0.013241805136203766, 0.011416061781346798, 0.004440345335751772, -0.019718026742339134, -0.013641401194036007, -0.6146622896194458, -0.0025198699440807104, 0.024086030200123787, -0.027930425480008125, -0.01168475579470396, 0.013854979537427425, 0.02476121112704277, 0.00018063661991618574, -0.00104463507886976, 0.011774321086704731, 0.010878673754632473, 0.006128296256065369, -0.018918832764029503, -0.012780201621353626, -0.012470169924199581, -0.021550659090280533, 0.03262913227081299, -0.012256592512130737, -0.014454374089837074, 0.01627322845160961, -0.019607791677117348, 0.02488522417843342, 0.0029022425878793, 0.004002855625003576, 0.012311709113419056, -0.015542929992079735, 0.029046539217233658, -0.012435722164809704, -0.010492855682969093, 0.034585777670145035, -0.04067618027329445, 0.022184502333402634, 0.015570488758385181, -0.009252728894352913, 0.036873120814561844, 0.0006790558691136539, -0.01609409786760807, 0.023589979857206345, 0.024526964873075485, 0.02799932099878788, -0.015970084816217422, -0.011560743674635887, 0.022694332525134087, 0.018767261877655983, 0.0021340525709092617, -0.001422701752744615, 0.002392412396147847, 0.0041544269770383835, -0.012098131701350212, 0.0030641481280326843, 0.0014976260717958212, -0.02645605243742466, -0.004230212420225143, -0.0068517038598656654, 0.008460424840450287, 0.015818513929843903, 0.032105520367622375, 0.01052730344235897, -0.003995966166257858, -0.002702444326132536, 0.011967229656875134, 0.024182485416531563, -0.012208365835249424, -0.049301955848932266, -0.03849906846880913, 0.005249872803688049, -0.02166089229285717, -0.02414114773273468, 0.02849537320435047, 0.00125735136680305, -0.0064107696525752544, -0.005814819596707821, 0.0009300955571234226, 0.00325188972055912, -0.014881528913974762, 0.028385138139128685, 0.02689698524773121, -0.006686353590339422, -0.0020186519250273705, 0.02059989422559738, 0.007426985539495945, -0.0008642137981951237, 0.013600064441561699, -0.03169214352965355, 0.02443050965666771, 0.019566453993320465, -0.01657637022435665, -0.0071720704436302185, -0.01368273887783289, -0.023893121629953384, 0.002576709259301424, 0.009204501286149025, 0.005329103209078312, -0.028385138139128685, 0.03524717688560486, 0.01807830110192299, 0.00011109474871773273, -0.002411358989775181, 0.00795748457312584, -0.0071031744591891766, -0.032711803913116455, -0.0281508918851614, 0.006679464131593704, 0.018588131293654442, 0.016741720959544182, 0.025188365951180458, -0.026070233434438705, -0.00795748457312584, 0.017292888835072517, -0.012663078494369984, 0.010341284796595573, 0.001370168523862958, -0.016603928059339523, -0.015143333934247494, 0.004057972691953182, -0.022404968738555908, 0.02086169831454754, -0.006858593784272671, -0.010802887380123138, -0.01044462900608778, -0.007330530788749456, 0.008508652448654175, 0.005904384423047304, -0.0053704408928751945, -0.007537218742072582, 0.038747090846300125, 0.01749957539141178, 0.000578726117964834, 0.00476415641605854, -0.011519405990839005, 0.0036135935224592686, -0.014867749996483326, 0.008295074105262756, -0.011960339732468128, 0.028026878833770752, -0.006042176391929388, 0.012607961893081665, -0.004585026763379574, 0.010231051594018936, -0.035798344761133194, 0.007523439824581146, -0.006431438494473696, 0.02276322804391384, -0.011863885447382927, 0.007282303646206856, -0.006424549035727978, -0.015570488758385181, 0.016659045591950417, -0.001422701752744615, -0.01029994711279869, -0.03648730367422104, -0.03557787835597992, -0.007991932332515717, 0.0249265618622303, -0.013317590579390526, 0.002898797858506441, -0.003324230434373021, -0.0355503186583519, 0.0030038643162697554, -0.017375562340021133, -0.008949586190283298, 0.012552845291793346, -0.013751635327935219, -0.004137203097343445, 0.010844225063920021, -0.01160208135843277, -0.04177851602435112, 0.01323491521179676, -0.019111741334199905, -0.011112920008599758, -0.0035825902596116066, -0.019580233842134476, 0.017981847748160362, 0.03811325132846832, -0.014495711773633957, 0.006789697799831629, -0.010155265219509602, 0.011808768846094608, -0.011595191434025764, -0.004767600912600756, 0.02521592378616333, 0.021288855001330376, -0.00913560576736927, -0.014881528913974762, 0.0218262430280447, -0.000559779757168144, 0.0040924204513430595, 0.012580404058098793, -0.04566424712538719, 0.003089984180405736, 0.001979036722332239, 0.021288855001330376, -0.007041167933493853, -0.004433455411344767, -0.026042675599455833, -0.023865563794970512, -0.022859681397676468, -0.0036239279434084892, -0.008081496693193913, 0.029955966398119926, 0.021164841949939728, 0.006152410060167313, -0.004660812206566334, -0.002724835416302085, 0.01807830110192299, -0.028247347101569176, 0.011092251166701317, -0.00656923046335578, 0.010802887380123138, 0.011278269812464714, -0.01438547857105732, -0.0036273726727813482, -0.0010239663533866405, -0.015418917872011662, 0.013655181042850018, 0.004698704928159714, -0.00766123179346323, 0.016052760183811188, -0.0017999071860685945, 0.0022287846077233553, -0.007847250439226627, 0.005890605039894581, 0.02430649660527706, 0.0081297243013978, 0.006827590521425009, 0.015584267675876617, -0.002948747482150793, 0.007123843301087618, 0.013724076561629772, -0.029597707092761993, -0.007454543840140104, 0.028068216517567635, -0.001958367880433798, 0.00614896509796381, 0.010665095411241055, 0.017540913075208664, 0.0554199181497097, -0.020489661023020744, 0.03323541581630707, -0.025491507723927498, -0.0066622402518987656, -0.00564257986843586, 0.03679044544696808, -0.019897155463695526, 0.01446815300732851, 0.010878673754632473, 0.022956136614084244, -0.0080332700163126, -0.025284821167588234, 0.026042675599455833, -0.008081496693193913, 0.0025095355231314898, -0.0025060907937586308, -0.014247686602175236, 0.02863316424190998, 0.003992521204054356, 0.010892452672123909, 0.011278269812464714, 0.028385138139128685, 0.016603928059339523, -0.004984623286873102, 0.01714131608605385, -0.001817131182178855, 0.012063683941960335, 0.022322293370962143, 0.0020806582178920507, 0.0027351698372513056, -0.026180468499660492, -0.009314734488725662, -0.011181815527379513, 0.0012323766713961959, -0.019373545423150063, 0.0031674921046942472, -0.008026380091905594, -0.009762559086084366, 0.006996385753154755, 0.0066932435147464275, 0.016631485894322395, -0.009645435959100723, 0.021564437076449394, -0.022377410903573036, -0.045250870287418365, 0.002361409366130829, 0.014771295711398125, -0.0014631780795753002, -8.54740574141033e-05, -0.0019652575720101595, -0.007730127777904272, 0.013166019693017006, 0.01198100857436657, -0.013179798610508442, -0.0024681980721652508, -0.0072409664280712605, 0.013551836833357811, 0.0004753821704071015, 0.03320785611867905, 0.0349164754152298, -0.01222214475274086, -0.0017723487690091133, 0.0072616348043084145, 0.010031253099441528, 0.0076130046509206295, -0.020489661023020744, -0.011057802475988865, 0.051589298993349075, -0.018477898091077805, -0.017086200416088104, 0.015515372157096863, 0.022652994841337204, -0.017113758251070976, 0.015887409448623657, -0.015556709840893745, -0.031774818897247314, -0.005236093420535326, -0.02135775052011013, -0.006889596581459045, 0.00881868414580822, -0.00641765957698226, 0.03486135974526405, -0.0011410894803702831, -0.0014278689632192254, -0.028357580304145813, -0.013110903091728687, 0.011850106529891491, 0.07043923437595367, -0.0009929630905389786, -0.006676019169390202, 0.01246328093111515, -0.019897155463695526, 0.002774785039946437, -0.019235754385590553, -0.035495202988386154, 0.01978692226111889, -0.008556879125535488, 0.001157452235929668, -0.00043705879943445325, 0.018519235774874687, -0.006345318630337715, 0.0028230121824890375, 0.0025060907937586308, 0.019580233842134476, -0.003043479286134243, -0.016314566135406494, 0.009238949045538902, -0.01654881238937378, 0.003288059961050749, 0.03235354647040367, 0.028826072812080383, 0.042136773467063904, 0.03158191218972206, 0.03615660220384598, 0.011657197959721088, 0.006545117124915123, -0.027930425480008125, -0.02631825953722, 0.00022606489073950797, -0.01337959710508585, 0.014302803203463554, -0.0017654591938480735, 0.025339936837553978, 0.0013899761252105236, -0.024017134681344032, -0.0439005121588707, 0.017540913075208664, -0.0013563893735408783, 0.01608031801879406, 0.0009473195532336831, -0.019842037931084633, 0.014247686602175236, -0.025147028267383575, -0.011884554289281368, 0.03648730367422104, -0.01283531915396452, -0.0021719452925026417, -9.661583317210898e-05, 0.00031347665935754776, -0.005838933400809765, 0.02086169831454754, -0.0037858334835618734, -0.02009006403386593, -0.006583009846508503, -0.009349183179438114, -0.01698974519968033, -0.03913290798664093, -0.034723568707704544, -0.01902906596660614, -0.014220127835869789, -0.020613674074411392, -0.028385138139128685, -0.020944373682141304, -0.015859851613640785, 0.007433874998241663, -0.028247347101569176, 0.009376741014420986, 0.014109894633293152, -0.048337411135435104, -0.051589298993349075, 0.0007763714529573917, 0.019221974536776543, 0.01902906596660614, 0.006434883456677198, 0.01484019123017788, -0.006524448283016682, -0.0036273726727813482, 0.0045264651998877525, -0.035991255193948746, 0.01856057345867157, -0.021550659090280533, -0.010086369700729847, -0.030837835744023323, -0.016038982197642326, -0.009535201825201511, -0.019249534234404564, 0.018284989520907402, 0.009535201825201511, -0.02117861993610859, -0.025284821167588234, -0.008722229860723019, 0.01700352504849434, 0.04792403429746628, 0.027641061693429947, 0.007206518203020096, 0.028853630647063255, -0.04869566857814789, 0.013469161465764046, -0.010920010507106781, -0.011836327612400055, -0.023011254146695137, 0.01671416126191616, 0.011374724097549915, 0.004288773983716965, -0.009838344529271126, 0.010864893905818462, -0.024967899546027184, 0.0019308094633743167, -0.023286838084459305, -0.004653922747820616, -0.014371698722243309, -0.0022839014418423176, 0.0038202814757823944, 0.0044954619370400906, 0.021853800863027573, -1.8677266780287027e-05, -0.02149554155766964, 0.01205679401755333, -0.04762089252471924, 0.03756208345293999, 0.0059629459865391254, 0.0014175345422700047, 0.019842037931084633, 0.012043015100061893, -0.023245500400662422, -0.026373377069830894, 0.0041854302398860455, 0.007929925806820393, 0.015708280727267265, -0.004326666705310345, 0.0019239198882132769, -0.02349352464079857, -0.01993849314749241, 0.0014700677711516619, 0.0140754459425807, -0.007399426773190498, 0.01130582857877016, -0.007578556425869465, 0.006117961835116148, 0.028578046709299088, -0.014592166058719158, -0.009039150550961494, -0.03362123295664787, -0.02164711244404316, -0.010637537576258183, 0.015501593239605427, 0.022790785878896713, -0.00882557313889265, -0.012235923670232296, -0.01576339825987816, -0.0198007021099329, 0.011567632667720318, -0.00788858812302351, -0.0025060907937586308, -0.0010170767782256007, 0.04999091476202011, 0.020186519250273705, 0.04869566857814789, 0.017981847748160362, 0.02415492571890354, 0.005532346200197935, -0.021633334457874298, -0.01904284581542015, -0.02073768712580204, -0.03144412115216255, -0.0067139118909835815, 0.009865902364253998, 0.011250711977481842, 0.003243277780711651, -0.012780201621353626, 0.01964912936091423, 0.009927908889949322, 0.014371698722243309, 0.0022098382469266653, -0.007523439824581146, -0.03431019186973572, -0.0423847995698452, -0.005218869540840387, 0.035963695496320724, 0.0021340525709092617, -0.005639134906232357, -0.036294396966695786, -0.004040748346596956, 0.03439286723732948, -0.016962187364697456, 0.020145181566476822, 0.013744745403528214, 0.03301494941115379, 0.010396401397883892, -0.0059250532649457455, -0.0022150054574012756, 0.007054947316646576, -0.02923944965004921, -0.003765164641663432, -0.037176262587308884, -0.016796836629509926, 0.003093428909778595, 0.009721221402287483, 0.006875817663967609, -0.003362123155966401, -0.0013271085917949677, 0.00788169912993908, 0.009101157076656818, -0.020158959552645683, -0.0024974788539111614, 0.02150932140648365, -0.03260157257318497, 0.0054910085164010525, -0.03422751650214195, 0.0026766082737594843, 3.6143472243566066e-05, -0.014178790152072906, 0.004071751609444618, -0.00371004780754447, 0.021123504266142845, -0.032711803913116455, -0.007130732759833336, 0.02524348348379135, -0.03182993829250336, 0.0417509563267231, 0.035026710480451584, 0.031499236822128296, 0.0054393368773162365, 0.00966610386967659, -0.016920849680900574, -0.00857754796743393, 0.00912182591855526, -0.01825743168592453, -0.008639554493129253, 0.02398957684636116, -0.004361114930361509, -0.006944713648408651, -0.006159299518913031, -0.028054438531398773, -0.0025095355231314898, -0.024058472365140915, 0.008060827851295471, 0.0017740711336955428, -0.004347335547208786, -0.030534692108631134, -0.009927908889949322, -0.010320615954697132, 0.004529909696429968, -0.004343890585005283, 0.016011422500014305, -0.003565366379916668, 0.0018739703809842467, 0.012332377955317497, 0.02584976702928543, -0.006703577470034361, 0.010609978809952736, 0.004881279543042183, -0.0032570569310337305, -0.005587462801486254, -0.018202314153313637, -0.015666943043470383, -0.012242813594639301, -0.0006665684632025659, 0.02678675204515457, -0.01207746285945177, -0.018092080950737, 0.025312379002571106, 0.01668660342693329, -0.009356072172522545, -0.006638126447796822, -0.032270871102809906, 0.027875307947397232, -0.010010584257543087, -0.0095834294334054, 0.013221136294305325, 0.01748579740524292, 0.009011592715978622, -0.02396201714873314, -0.01657637022435665, 0.005949166603386402, -0.001960090361535549, 0.00482960743829608, 0.004337001126259565, -0.010485966689884663, -0.02644227258861065, 0.0012676857877522707, -0.002680053235962987, -0.0261253509670496, 0.010141486302018166, 0.008322632871568203, 0.005504787899553776, -0.03825104236602783, 0.006142075639218092, 0.004082086030393839, -0.019070403650403023, 0.000784983451012522, -0.011974119581282139, -0.00398907670751214, -0.000931817980017513, 0.0224600862711668, -0.011650308035314083, 0.016011422500014305, 0.03794790059328079, 0.019883375614881516, -0.04549889639019966, 0.013896316289901733, -0.017857834696769714, -0.009672993794083595, 0.005063853692263365, 0.009555870667099953, -0.03279447928071022, -0.017113758251070976, 0.01624566875398159, 0.0020875479094684124, -0.003961517941206694, -0.007030833512544632, 0.017761381343007088, 0.024623418226838112, -0.003741051070392132, -0.011856996454298496, 0.004843386355787516, 0.011168036609888077, 0.003493025666102767, 0.003834060626104474, 0.003058980917558074, -0.020324310287833214, 0.02044832333922386, 0.009790116921067238, 0.002771340310573578, 0.004368004389107227, -0.03882976621389389, -0.03494403511285782, -0.020930595695972443, 0.005563349463045597, 0.013675849884748459, 0.0156256053596735, 0.00788858812302351, -0.025780871510505676, -0.01656259037554264, 0.02210182696580887, -0.02890874817967415, 0.0038065023254603148, 0.030810276046395302, -0.004233657382428646, 0.02535371668636799, 0.019855817779898643, -0.03047957643866539, -0.03014887496829033, -0.024830106645822525, -0.018753482028841972, -0.040455713868141174, -0.008715339936316013, 0.006145520135760307, 0.046022508293390274, -0.004443789832293987, -0.0222671777009964, -0.047097284346818924, -0.006441772915422916, -0.038306158035993576, -0.020007388666272163, -0.02059989422559738, 0.0140754459425807, 0.025091910734772682, 0.03064492717385292, 0.001407200121320784, 0.018905052915215492, -0.0035481422673910856, 0.004547134041786194, -0.02926700748503208, -0.0013529445277526975, -0.021867580711841583, -0.01609409786760807, 0.0337865836918354, -0.030121317133307457, -0.05045940726995468, 0.00330356159247458, 0.0002308014954905957, -0.008067717775702477, 0.006748360116034746, 0.0054152230732142925, 0.020971933379769325, 0.01580473594367504, -0.0018791374750435352, 0.004423120990395546, 0.020365647971630096, 0.019442442804574966, 0.018533015623688698, -0.022969916462898254, -0.008198619820177555, 0.025629300624132156, -0.0011867330176755786, -0.00044394840369932353, 0.00037612891173921525, 0.00456091295927763, -0.018133418634533882, -0.0066932435147464275, -0.004412786569446325, -0.00719273928552866, -0.005704585928469896, 0.017416900023818016, 0.013916985131800175, 0.029156774282455444, -0.00919761136174202, 0.03431019186973572, -0.027020998299121857, -0.009397409856319427, -0.0016939796041697264, 0.022777007892727852, 0.020475881174206734, 0.008935807272791862, 0.02689698524773121, -0.019249534234404564, -0.00440934207290411, -0.0024130812380462885, 0.020158959552645683, -0.009500754065811634, -0.012284151278436184, -0.017885392531752586, -0.0066622402518987656, -0.008625775575637817, 0.0021133837290108204, -0.0010584143456071615, -0.005776926875114441, 0.010038142092525959, -0.0058561572805047035, 0.0058630467392504215, 0.011808768846094608, 0.0037754990626126528, 0.0015424084849655628, -0.018009405583143234, -0.012594182975590229, 0.0031761040445417166, 0.004364559426903725, -0.0501011461019516, -0.010603089816868305, 0.03094806894659996, 0.016617707908153534, -0.0071789599023759365, 0.2020580917596817, 0.014178790152072906, 0.015873631462454796, 0.05167197436094284, 0.012249703519046307, -0.012408163398504257, 0.030121317133307457, -0.0008904804126359522, -0.0198007021099329, 0.01948378048837185, 0.004860610701143742, 0.003906401339918375, -0.006286757066845894, -0.001307300990447402, 0.010417070239782333, -0.009672993794083595, -0.02460964024066925, -0.013751635327935219, -0.021619554609060287, -8.77347065397771e-06, -0.003975297324359417, -0.010609978809952736, -0.015970084816217422, -0.001166925416328013, 0.010816667228937149, -0.0011738151079043746, -0.00797815341502428, 0.0024716428015381098, 0.020958153530955315, 0.015598047524690628, -0.0009860735153779387, 0.0014330361736938357, 0.008563769049942493, -0.018312547355890274, -0.02167467214167118, -0.006204081699252129, 0.01748579740524292, -0.00998302549123764, -0.009721221402287483, 0.024168705567717552, -0.0016018312890082598, -0.03246378153562546, -0.002986640203744173, -0.016631485894322395, 0.01810586079955101, -0.013035116717219353, -0.021908918395638466, 0.018905052915215492, -0.02334195375442505, 0.018973950296640396, -0.011016465723514557, 0.00882557313889265, 0.013503610156476498, 0.019304649904370308, 0.013916985131800175, 0.002680053235962987, -0.002964249113574624, -0.00951453298330307, -0.020214077085256577, -0.02261165715754032, -0.020145181566476822, 0.007716348394751549, -0.012084352783858776, 0.008784235455095768, -0.023879341781139374, 0.00842597708106041, -0.026828089728951454, 0.021095944568514824, 0.002469920553267002, -0.0029659713618457317, -0.0049295066855847836, 0.012807760387659073, -0.02539505437016487, 0.008487983606755733, -0.02801310084760189, -0.020930595695972443, -0.006317760329693556, 0.023300616070628166, 0.01153318490833044, 0.01952511817216873, -0.006627792026847601, 0.014454374089837074, -0.02879851497709751, -0.02117861993610859, 0.008515541441738605, -0.021082166582345963, 0.02276322804391384, -0.02243252657353878, -0.012180807068943977, -0.03386925905942917, -1.4044954923519981e-06, 0.01153318490833044, 0.006283312104642391, -0.019718026742339134, 0.0009077043505385518, -0.021385308355093002, 0.0008573242230340838, 0.01933220773935318, -0.01153318490833044, -0.02586354687809944, -0.0205585565418005, 0.04842008650302887, 0.0027455042582005262, 0.020834140479564667, -0.012304820120334625, 0.000597241916693747, 0.004798604175448418, 0.027751296758651733, 0.0077025690115988255, 0.0096798837184906, -0.008853131905198097, -0.0334007665514946, 0.020530998706817627, -0.003830615896731615, 0.00646588671952486, 0.009376741014420986, 0.02210182696580887, -0.011044023558497429, 0.007861030288040638, -0.023424629122018814, 0.02367265522480011, 0.0049432856030762196, 0.022501423954963684, 0.013241805136203766, -0.04128246381878853, -0.037837665528059006, -0.0031864384654909372, 0.03648730367422104, -0.05409711226820946, -0.02860560640692711, 0.02117861993610859, -0.017416900023818016, 0.023452186957001686, -0.009156273677945137, -0.010196602903306484, 0.016755498945713043, 0.012415053322911263, 0.0024630308616906404, -0.020062506198883057, -0.028247347101569176, 0.005363550968468189, 0.013104013167321682, 0.018643248826265335, 0.0007466600509360433, 0.009941687807440758, -0.00660712318494916, 0.00243891729041934, -0.002759283408522606, -0.008791125379502773, -0.03885732591152191, 0.004588471259921789, -0.004585026763379574, 0.00499151274561882, 0.00369626865722239, 0.03254645690321922, -0.00014188262866809964, -0.02088925801217556, -0.024857664480805397, 0.010210382752120495, 0.012594182975590229, -0.042467474937438965, -0.00990724004805088, 0.04560913145542145, 0.002445806749165058, -0.013517389073967934, -0.014027219265699387, -0.17527134716510773, 0.00614896509796381, 0.0041854302398860455, -0.009542091749608517, 0.027737516909837723, 0.00330356159247458, 0.014605944976210594, 0.0013116069603711367, 0.009128715842962265, -0.01067198533564806, 0.009108047001063824, 0.005580573342740536, -0.01269063726067543, -0.0054531157948076725, 0.0006187719409354031, -0.005146528594195843, -0.030121317133307457, 0.021219957619905472, 0.0590851828455925, 0.0027162234764546156, 0.01167786680161953, -0.02397579699754715, -0.0201176218688488, 0.0019308094633743167, 0.023562420159578323, 0.013868758454918861, 0.005122415255755186, 0.02567063830792904, 0.001979036722332239, -0.030672485008835793, -0.01353116799145937, -0.0026077122893184423, 0.028206009417772293, -0.0050052921287715435, 0.02613913081586361, 0.013889427296817303, 0.0018033519154414535, 0.010851114988327026, -0.013489830307662487, 0.007929925806820393, 0.03698335587978363, 0.009893461130559444, 0.020214077085256577, 0.018491677939891815, 0.014716179110109806, 0.027875307947397232, 0.013179798610508442, -0.01777515932917595, 0.013503610156476498, -0.015432696789503098, 0.0353022925555706, -0.019414883106946945, 0.017430679872632027, 0.005556460004299879, -0.00019140161748509854, -0.00859821680933237, 0.013827420771121979, 0.021881358698010445, -0.010231051594018936, -0.016121655702590942, -0.0006415937095880508, -0.0032053848262876272, 0.02243252657353878, -0.005360106471925974, -0.03453065827488899, -0.025891104713082314, 0.005763147491961718, 0.007571666967123747, 0.004061417188495398, -0.0049673994071781635, -0.0027196684386581182, 0.008212399668991566, -0.0045264651998877525, 0.01920819655060768, 0.0071720704436302185, 0.010072590783238411, -0.033510997891426086, 0.01130582857877016, 0.023851783946156502, -0.009073599241673946, 0.0031916056759655476, 0.007426985539495945, -0.007909256964921951, 0.0005843239487148821, -0.002721390686929226, 0.026704076677560806, 0.0038547294680029154, -0.0009731555473990738, -0.01901528798043728, 0.013152239844202995, 0.014454374089837074, -0.009893461130559444, -0.0005330825806595385, -0.0028850187081843615, 0.007771464996039867, -0.01732044667005539, 0.024402951821684837, 0.006038731429725885, 0.008474203757941723, 0.005911273881793022, 0.01576339825987816, 0.024857664480805397, -0.037176262587308884, 0.01076155062764883, 0.026414714753627777, 0.01749957539141178, 0.018477898091077805, 0.0009688495774753392, 0.041558049619197845, -0.012284151278436184, -0.017072420567274094, 0.013806751929223537, 0.013965212740004063, 0.006572675425559282, -0.006755249574780464, 0.03182993829250336, -0.0037134927697479725, -0.011540074832737446, 0.011967229656875134, -0.027916645631194115, 0.04563668742775917, -0.03229843080043793, -0.019387325271964073, 0.023410849273204803, 0.0009559315512888134, -0.002139219781383872, -0.11254845559597015, -0.009576539508998394, 0.025463949888944626, 0.011478068307042122, -0.009232060052454472, 0.006173078902065754, -0.004688370507210493, 0.054538048803806305, -0.028274904936552048, 0.03152679651975632, -0.020999491214752197, -0.029018981382250786, 0.008570658043026924, -0.006248864345252514, 0.013276252895593643, -0.012084352783858776, -0.009445637464523315, 0.0025887659285217524, -0.014977983199059963, 0.025767091661691666, 0.00208927015773952, -0.017251551151275635, 0.014757516793906689, -0.016052760183811188, -0.014771295711398125, -0.016603928059339523, -0.022652994841337204, 0.009762559086084366, 0.01856057345867157, 0.012208365835249424, 0.023011254146695137, -0.009859013371169567, 0.02383800409734249, -0.015074437484145164, -0.023934459313750267, -0.002104771789163351, -0.024830106645822525, -0.023865563794970512, 0.011912113055586815, -0.03108585998415947, -0.012036125175654888, 0.0059629459865391254, -0.012291040271520615, -0.030562251806259155, -0.012132580392062664, -0.007578556425869465, -0.003112375270575285, 0.02907409891486168, 0.024402951821684837, -0.019001508131623268, -0.012752643786370754, -0.013193577527999878, -0.01781649701297283, -0.03169214352965355, 0.018960170447826385, 0.01160208135843277, 0.01901528798043728, 0.005311879329383373, -0.014220127835869789, -0.0023596868850290775, 0.00805393885821104, -0.007785244379192591, -0.010554862208664417, 0.0331527404487133, 0.012793981470167637, 0.018533015623688698, 0.004419676493853331, -0.017086200416088104, -0.01653503254055977, -0.015391359105706215, -0.023286838084459305, 0.02629070170223713, -0.023851783946156502, -0.0006863760645501316, -0.009273397736251354, 0.007165180519223213, -0.02631825953722, -0.015708280727267265, 0.013042006641626358, 0.012118800543248653, -0.005294654984027147, -0.009004702791571617, 0.00121945864520967, -0.029983526095747948, 0.015226009301841259, -0.008005711250007153, 0.006217861082404852, -0.019731804728507996, 0.03786522522568703, -0.035522762686014175, 0.01515711285173893, 0.01153318490833044, 0.020158959552645683, -0.014261465519666672, 0.008915138430893421, 0.03014887496829033, -0.03014887496829033, 0.016617707908153534, 0.02336951158940792, 0.00828129518777132, -0.024678535759449005, 0.0015363800339400768, -0.05241605266928673, 0.015460255555808544, 0.00475382199510932, 0.011843216605484486, 0.004323222208768129, -0.016948407515883446, -0.0007927342085167766, -0.010361953638494015, 0.005759702995419502, 0.006062845233827829, -0.017361784353852272, 0.0076956795528531075, -0.014220127835869789, -0.018781041726469994, -0.013193577527999878, -0.01963535137474537, 0.007578556425869465, -0.0004878695763181895, 0.010947569273412228, -0.002910854760557413, -0.005821709521114826, -0.012483949773013592, 0.017733821645379066, 0.03775499016046524, -0.0162594486027956, 0.012683747336268425, -0.026524947956204414, 0.039684075862169266, -0.017292888835072517, -0.01748579740524292, 0.02059989422559738, -0.0031072080601006746, -0.004164761397987604, 0.01609409786760807, -0.009790116921067238, -0.043872952461242676, 0.016052760183811188, -0.0006144659128040075, 0.02379666641354561, 0.00719273928552866, -0.02678675204515457, -0.0050362953916192055, 0.02923944965004921, -0.013166019693017006, -0.021536879241466522, -0.010906231589615345, -0.02382422611117363, -0.01608031801879406, 0.02708989381790161, 0.005838933400809765, 0.04737286642193794, 0.0025939331389963627, 0.0011531462660059333, -0.036569979041814804, -0.004233657382428646, -0.00576659245416522, 0.013861868530511856, 0.024981677532196045, -0.006142075639218092, -0.0055151223205029964, 0.032243311405181885, -0.00014521977573167533, 0.016631485894322395, -0.003120987443253398, 0.0156256053596735, -0.012676858343183994, -0.039821870625019073, -0.017513355240225792, -0.0008461286197416484, -0.03742428869009018, 0.012098131701350212, -0.01920819655060768, 0.02319038286805153, 0.031499236822128296, 0.011450509540736675, 0.011705424636602402, -0.0027885641902685165, -0.02319038286805153, -0.011739873327314854, 0.03298738971352577, 0.02382422611117363, -0.018064523115754128, -0.020930595695972443, 0.010458407923579216, 0.02833002246916294, 0.008295074105262756, -0.017251551151275635, 0.020765244960784912, 0.009466306306421757, -0.003568811109289527, 0.007716348394751549, 0.004109644331037998, -0.0016276672249659896, 0.01948378048837185, 0.021151062101125717, 0.0387195348739624, -0.0055220117792487144, 0.01931842975318432, 0.01795428991317749, 0.04012501239776611, 0.0067380256950855255, 0.014137452468276024, -0.0031502682249993086, -0.0019204751588404179, -0.009418078698217869, 0.004891613498330116, -0.04133757948875427, -0.005553015042096376, 0.009101157076656818, 0.03373146429657936, 0.0013279698323458433, -0.003606703830882907, -0.007351199630647898, 0.006448662374168634, -0.006486555561423302, 0.0015467144548892975, -0.010182823985815048, -0.023397071287035942, -0.02134397067129612, -0.0013520834036171436, 0.0003048646613024175, 0.006183413323014975, 0.004984623286873102, -0.00928717665374279, 0.02024163492023945, 0.010795998387038708, 0.01138161402195692, -0.008012601174414158, 0.015832293778657913, -0.025574183091521263, 0.02024163492023945, 0.01269063726067543, 0.016121655702590942, -0.011168036609888077, -0.013104013167321682, -0.028715839609503746, -0.016479915007948875, 0.032739363610744476, -0.010010584257543087, 0.07788000255823135, 0.024361614137887955, -0.026662738993763924, 0.010141486302018166, -0.018767261877655983, -0.012029236182570457, 0.01704486273229122, 0.0071031744591891766, 0.007213407661765814, -0.035192061215639114, 0.029129214584827423, -0.009672993794083595, -0.024788768962025642, -0.005418668035417795, -0.019290871918201447, 0.004023524466902018, 0.004002855625003576, 0.008736008778214455, -0.018174756318330765, 0.01167786680161953, 0.04409341886639595, -0.013476051390171051, 0.03064492717385292, -0.004013190045952797, -0.03447554260492325, -0.0096798837184906, 0.04067618027329445, 0.018436560407280922, -0.0036480415146797895, -0.018781041726469994, 0.016355901956558228, -0.003834060626104474, -0.020227856934070587, 0.00278339721262455, -0.019235754385590553, -0.012849098071455956, 0.0014795409515500069, -0.036597538739442825, -0.012945552356541157, 0.021247517317533493, -0.005749368574470282, 0.017361784353852272, -0.01714131608605385, -0.019731804728507996, 0.016176773235201836, 0.003992521204054356, 0.006352208089083433, -0.02970794215798378, -0.022501423954963684], "b978fe8b-d903-4973-a3b1-d979740a906f": [-0.01685328222811222, -0.01177939772605896, 0.004054976627230644, -0.026243753731250763, 0.0005950798513367772, 0.01814756914973259, -0.00418578227981925, -0.028474334627389908, -0.030759992077946663, -0.05496593192219734, 0.013445449061691761, 0.002082564402371645, 0.0034181594382971525, -0.006526515819132328, 0.01755550131201744, 0.011180444620549679, 0.01531115174293518, -7.465390808647498e-05, 0.02607852593064308, -0.015614069998264313, -0.025279922410845757, -0.00016038758622016758, -0.021383289247751236, 0.0053595914505422115, -0.02128690667450428, 0.00453000795096159, 0.029383091256022453, -0.01214427687227726, -0.008268296718597412, 0.008550561964511871, 0.022980496287345886, -0.004147917497903109, -0.015572763048112392, -0.002991319866850972, -0.013514294289052486, 1.4696815924253315e-05, 0.008185682818293571, -0.003259815741330385, -0.0024440011475235224, -0.008199452422559261, 0.011001448146998882, 0.0022684461437165737, -0.019359244033694267, 0.014065055176615715, -0.01218558382242918, 0.017032278701663017, 0.009769120253622532, -0.020157847553491592, -0.00977600459009409, 0.002326964633539319, -0.003893190762028098, 0.02818518690764904, 0.004499027505517006, 0.01078114379197359, -0.004395760130137205, 0.004258069675415754, 0.011607284657657146, 0.002893215510994196, 0.002900100080296397, 0.007772612385451794, 0.006770916283130646, 0.011910202912986279, -0.016894588246941566, -0.002261561807245016, -0.013865403831005096, -0.03756188973784447, 4.0634746255818754e-05, -0.006430132780224085, -0.003328660735860467, -0.0033234974835067987, 0.014388627372682095, 0.03780973330140114, -0.0009165004594251513, -0.013232029043138027, 0.011517786420881748, -0.0021359194070100784, -0.0023906463757157326, -0.0002783923991955817, 0.007380195427685976, -0.02145213447511196, 0.01444370299577713, -0.00552481971681118, -0.0023286857176572084, -0.007986032404005527, 0.015545224770903587, 0.05314842239022255, -0.014223398640751839, -0.00167551776394248, -0.019028786569833755, -0.01873963698744774, -0.014595162123441696, 0.017734499648213387, 0.031365830451250076, 0.02409578673541546, -0.008206336759030819, -0.010202844627201557, 0.01806495524942875, 0.002595460508018732, 0.005029134918004274, -0.013707060366868973, -0.020942680537700653, 0.0012650288408622146, -0.014333550818264484, -0.013452333398163319, -0.02874971553683281, -0.003896632930263877, 0.019703468307852745, -0.01946939527988434, -0.005879371892660856, 0.020832529291510582, -0.02139705792069435, 0.04081137850880623, -0.010980794206261635, 0.013748367317020893, -0.019111400470137596, -0.015242306515574455, 0.022374659776687622, -0.03018169477581978, -0.00507732667028904, -0.01957954838871956, 0.014815466478466988, 0.026959743350744247, 0.023627640679478645, -0.03177890181541443, 0.015614069998264313, 0.0023441759403795004, 0.004647044464945793, -0.0218514371663332, 0.01901501789689064, -0.007421502377837896, 0.05816034600138664, 0.025059618055820465, 0.007572961505502462, -8.22914153104648e-05, -0.04213320463895798, 0.018436718732118607, -0.017762036994099617, 0.013851635158061981, -0.0028157648630440235, -0.01750042662024498, 0.019841158762574196, 0.029961390420794487, 0.00570725928992033, -0.024192169308662415, 0.023985635489225388, 0.029328014701604843, -0.004505912307649851, 0.021107908338308334, 0.0080066854134202, -0.030925221741199493, -0.013734598644077778, -0.017225045710802078, -0.004987827967852354, 0.01952447183430195, 0.007628037594258785, -3.635882239905186e-05, -0.001399276778101921, 0.024894390255212784, -0.015435072593390942, -0.017651885747909546, 0.002722823992371559, 0.0039448244497179985, -0.005824295803904533, -0.019441857933998108, 0.004309703595936298, 0.02328341454267502, 0.004860464483499527, -0.03618498891592026, -0.011290596798062325, -0.013238913379609585, -0.0015266402624547482, 0.024357398971915245, -0.02047453448176384, 0.02532123029232025, 0.010774258524179459, -0.0006716700736433268, 0.03059476427733898, -0.011985932476818562, -0.008901672437787056, -0.004402644466608763, 0.032632578164339066, -0.00201199809089303, 0.01668805256485939, 0.021727515384554863, -0.019221553578972816, -0.022484811022877693, 0.03037445992231369, 0.009011824615299702, 0.004054976627230644, -0.007710651960223913, 0.013335296884179115, 0.004258069675415754, -0.01887732744216919, -0.0006647855625487864, -0.6137678623199463, -0.005652183201164007, 0.01389982644468546, -0.006695186253637075, -0.008646945469081402, 0.011600400321185589, 0.015200999565422535, 0.0003616519388742745, -0.005476627964526415, 0.019276630133390427, 0.013108108192682266, 0.005779546685516834, -0.006068695802241564, -0.004499027505517006, -0.017734499648213387, -0.03012661822140217, 0.01452631689608097, -0.006247693207114935, -0.01001007854938507, 0.005184036213904619, -0.037286508828401566, 0.02602344937622547, -0.0010473061120137572, -0.01823018305003643, 0.016619209200143814, -0.01286026556044817, 0.018409181386232376, -0.0072149671614170074, -0.00658503407612443, 0.023063110187649727, -0.027868498116731644, 0.025348767638206482, 0.03351379558444023, -0.005817411467432976, 0.04298688471317291, -0.0017073586350306869, -0.013011724688112736, 0.01660543866455555, 0.025651685893535614, 0.02515600062906742, -0.033954404294490814, -0.0058759297244250774, 0.01963462308049202, 0.006739935837686062, -0.0066401101648807526, 0.01584814302623272, 0.003252931172028184, 0.008350911550223827, -0.009300973266363144, -0.008137491531670094, 0.006729608867317438, -0.019441857933998108, 0.0015576204750686884, -0.0034112748689949512, 0.013417910784482956, -0.008199452422559261, 0.028198955580592155, -0.0033389877062290907, 0.0008394800242967904, 0.01137321162968874, 0.01739027351140976, 0.019262859597802162, -0.016316289082169533, -0.02804749645292759, -0.02877725474536419, 0.01620613783597946, -0.013459217734634876, -0.017858419567346573, 0.016894588246941566, -0.0029362437780946493, 0.006523073650896549, 0.0017426416743546724, -0.0029207535553723574, 0.010326765477657318, -0.009170168079435825, 0.015476379543542862, 0.0405084602534771, -0.003937940113246441, -0.007689998019486666, 0.025927066802978516, 0.012006586417555809, -0.00859875325113535, 0.011524670757353306, -0.02899755910038948, 0.044639166444540024, 0.007813919335603714, -0.027744578197598457, -0.008846595883369446, -0.020942680537700653, -0.017748268321156502, 0.010732951574027538, 0.00956258550286293, -0.005390571895986795, -0.03238473832607269, 0.02296672761440277, 0.03447762876749039, 0.003376852488145232, -0.003989574033766985, 0.00574856624007225, -0.019813621416687965, -0.028336646035313606, -0.028309106826782227, 0.0030842607375234365, 0.01371394470334053, 0.02785472944378853, 0.024082018062472343, -0.023324722424149513, -0.017266351729631424, 0.024742931127548218, -0.023710254579782486, 0.0002562328882049769, -0.009438663721084595, -0.024866851046681404, -0.015999602153897285, 0.014760390855371952, -0.032522428780794144, 0.013176953420042992, -0.005924121476709843, -0.0001695310784270987, -0.021025294438004494, -0.0171975065022707, 0.007724420633167028, 0.0020739587489515543, -0.01515969168394804, -0.001360551337711513, 0.03948955237865448, 0.013238913379609585, 0.007786381524056196, 0.014099477790296078, 0.0035351961851119995, 0.011035870760679245, -0.011937741190195084, 0.01668805256485939, -0.018450487405061722, 0.040150463581085205, 0.01887732744216919, 0.010856873355805874, 0.008812173269689083, 0.03334856778383255, -0.03034692257642746, 0.005786431021988392, -0.0061788479797542095, 0.006870741490274668, -0.01882225088775158, -0.005683163646608591, -0.0005869045271538198, -0.003034347901120782, 0.022388428449630737, -0.0016987529816105962, -0.019386781379580498, -0.03783727064728737, -0.02866710163652897, 0.0016126965638250113, 0.044639166444540024, -0.00046642558299936354, -0.0049740588292479515, 0.003531753784045577, -0.0171975065022707, -0.004447393584996462, -0.01823018305003643, -0.007710651960223913, 0.01054706983268261, -0.022760191932320595, 0.006264904513955116, -0.008846595883369446, -0.006467997562140226, -0.02523861639201641, 0.015724221244454384, -0.0040274388156831264, -0.021465903148055077, -0.006110003218054771, -0.014622700400650501, 0.011483363807201385, 0.014168323017656803, -0.02109413966536522, 0.011923972517251968, -0.00865382980555296, 0.0016385135240852833, -0.009459317661821842, 0.0016694938531145453, 0.02366894669830799, 0.031117986887693405, -0.009521277621388435, -0.0060032932087779045, 0.022512350231409073, 0.0184780266135931, 0.0019534798339009285, 0.0267807450145483, -0.025555303320288658, -0.0072149671614170074, -0.004777850117534399, 0.0160133708268404, -0.011235521174967289, -0.00469179404899478, -0.02074991539120674, -0.004709005355834961, -0.012729460373520851, -0.011469594202935696, -0.018464257940649986, 0.03221951052546501, 0.003309728344902396, -0.0005567847983911633, -0.006123771890997887, -0.00534238014370203, 0.022980496287345886, -0.03183397650718689, 0.024605240672826767, -0.013280220329761505, 0.00792407151311636, -0.003931055311113596, 0.000278822670225054, -0.003085981821641326, 0.001261586556211114, -0.03188905119895935, 0.003318333998322487, 0.00782768800854683, -0.0037623848766088486, 0.02737281285226345, 0.000990508939139545, 0.006454228423535824, 0.007972262799739838, 0.029988927766680717, 0.014980695210397243, 0.011001448146998882, 0.005917236674576998, 0.012192468158900738, -0.005996408872306347, -0.006440459750592709, 0.006540284957736731, -0.014911849983036518, -0.0058449492789804935, 0.016426442191004753, 0.009555700235068798, -0.001355387968942523, 0.001415627426467836, 0.016536593437194824, 0.043234724551439285, -0.02101152576506138, 0.02813011035323143, -0.02002015709877014, 0.01752796396613121, 0.0016238839598372579, 0.023600101470947266, -0.02866710163652897, 0.024495087563991547, 0.006182290613651276, 0.02047453448176384, -0.006137541029602289, -0.020075231790542603, 0.02142459712922573, 0.002154851797968149, -0.004416413605213165, -0.003710751188918948, -0.017238814383745193, 0.019386781379580498, -0.005414667539298534, 3.496040517347865e-05, 0.016164829954504967, 0.03029184602200985, 0.015407534316182137, -0.007572961505502462, 0.020736144855618477, 0.003714193357154727, 0.0028260916005820036, 0.026064757257699966, -0.008640061132609844, -0.00869513675570488, -0.03855326026678085, -0.011744975112378597, -0.015448841266334057, -0.007572961505502462, -0.028254030272364616, -0.0010851710103452206, -0.012653729878365993, -0.0020963335409760475, 0.008536793291568756, 0.00688451062887907, 0.01761057786643505, -0.006406037136912346, 0.013004840351641178, -0.007903418503701687, -0.03131075203418732, 0.014250936917960644, 0.006839761044830084, -7.621368422405794e-05, 0.005772661883383989, 0.0020705165807157755, -0.006278673652559519, 0.009514393284916878, 0.024467550218105316, -0.020846297964453697, 0.0010602145921438932, -0.005679721012711525, 0.012839612551033497, -0.0022030433174222708, 0.028198955580592155, 0.05006416141986847, -0.020061463117599487, -0.022677578032016754, 0.015641607344150543, 0.0160133708268404, 0.012887803837656975, -0.010540185496211052, -0.02880479209125042, 0.04067368805408478, -0.020928911864757538, -0.020350612699985504, -0.00507732667028904, 0.007104814983904362, -0.03519361838698387, 0.002265003975480795, -0.025596609339118004, -0.02605098858475685, -0.003409553784877062, -0.027785884216427803, -0.004450836218893528, 0.0007981729577295482, -0.017762036994099617, 0.032605040818452835, 0.014058170840144157, -0.02712497115135193, -0.016330059617757797, -0.003937940113246441, 0.018725868314504623, 0.0736367255449295, 0.024687854573130608, -0.010863757692277431, 0.021699978038668633, -0.022787729278206825, 0.01214427687227726, -0.02863956429064274, -0.028419259935617447, 0.024274783208966255, -0.007221851497888565, -0.020323075354099274, 0.00274175638332963, 0.013053031638264656, -0.0008020454552024603, 0.006137541029602289, 0.0030223000794649124, 0.02025423012673855, -0.00804799236357212, -0.014705314300954342, 0.017183737829327583, -0.0040033427067101, 0.004832926206290722, 0.04122444987297058, 0.027386583387851715, 0.041747670620679855, 0.044914547353982925, 0.020598456263542175, -0.002228860277682543, 0.015448841266334057, -0.03213689476251602, -0.006664206273853779, 0.007696882821619511, -0.015435072593390942, 0.017486656084656715, -0.017844650894403458, 0.032687656581401825, 0.0016479797195643187, -0.034450091421604156, -0.017142431810498238, 0.0034783990122377872, 0.01298418641090393, 0.008495486341416836, 0.007166775409132242, -0.017885958775877953, 0.016288751736283302, -0.03158613294363022, -0.0050497883930802345, 0.037011127918958664, -0.008571215905249119, -0.0017340361373499036, 0.0029173113871365786, 0.010106461122632027, -0.0011643428588286042, 0.0211216788738966, 0.0025507111568003893, -0.0009208032861351967, -0.01590321958065033, -0.010168422013521194, -0.013858519494533539, -0.03450516611337662, -0.02588575892150402, -0.011972163803875446, -0.007025642786175013, -0.022980496287345886, -0.0314759835600853, -0.019455626606941223, -0.009362934157252312, 0.004798503592610359, -0.028501873835921288, 0.004323472734540701, 0.004829484038054943, -0.035799454897642136, -0.02501831203699112, 0.004578199703246355, 0.02680828422307968, 0.004877675790339708, 0.011152907274663448, 0.005562684498727322, 0.018918635323643684, 0.017486656084656715, 0.003893190762028098, -0.03596468269824982, 0.014099477790296078, -0.014705314300954342, -0.005211574491113424, -0.021686207503080368, -0.009397356770932674, -0.011579746380448341, -0.016743129119277, 0.011194214224815369, -0.0030618859454989433, -0.020763684064149857, -0.011304366402328014, 0.0017159642884507775, 0.01736273616552353, 0.0398750863969326, 0.005514492746442556, 0.02061222493648529, 0.02680828422307968, -0.047668348997831345, 0.024467550218105316, -0.018863558769226074, -0.004760638810694218, -0.01263307686895132, 0.01218558382242918, 0.0038690948858857155, -0.004464604891836643, -0.024756699800491333, 0.005128960125148296, -0.013053031638264656, -0.010030731558799744, -0.0105608394369483, -0.004967174492776394, -0.011999702081084251, 0.020915143191814423, 0.0021668996196240187, 0.018133800476789474, 0.02790980599820614, 0.012123622931540012, -0.016619209200143814, 0.014140784740447998, -0.03629513829946518, 0.04210566729307175, 0.008192567154765129, 0.0053079575300216675, 0.010168422013521194, 0.02047453448176384, -0.02720758505165577, -0.015407534316182137, 0.004320030566304922, 0.0013769021024927497, 0.0011798329651355743, -0.010849989019334316, 0.0011892991606146097, -0.020323075354099274, -0.029548319056630135, -0.017142431810498238, 0.014567623846232891, -0.0237240232527256, 0.014168323017656803, -0.026037218049168587, 0.007455924991518259, 0.019359244033694267, 0.0035592918284237385, -0.007724420633167028, -0.029906313866376877, -0.03155859559774399, -0.008584984578192234, 0.010567723773419857, 0.0196621622890234, -0.04210566729307175, -0.018601946532726288, -0.01882225088775158, -0.010980794206261635, 0.011992817744612694, -0.005211574491113424, 0.003831230103969574, 0.003091145306825638, 0.05212951451539993, 0.020047694444656372, 0.040370769798755646, 0.025500226765871048, 0.021755052730441093, 0.0018157896120101213, -0.008571215905249119, -0.009252781979739666, -0.012061662040650845, -0.020089002326130867, -0.002108381362631917, 0.0182026457041502, 0.01253669336438179, 0.014581393450498581, -0.007263158448040485, 0.004777850117534399, -0.006161636672914028, -0.0010834498098120093, -0.004464604891836643, -0.003456024220213294, -0.031255677342414856, -0.032577503472566605, -0.0078001501969993114, 0.011910202912986279, -0.01096702553331852, -0.017046047374606133, -0.03387179225683212, 0.017156200483441353, 0.03632267564535141, -0.004220204893499613, 0.026037218049168587, 0.013411026448011398, 0.03051215037703514, -0.005948217120021582, 0.017651885747909546, 0.013975556008517742, 0.01660543866455555, -0.019262859597802162, -0.02249857969582081, -0.03384425491094589, -0.01226819772273302, 0.02109413966536522, 0.020915143191814423, 0.020047694444656372, 0.009948117658495903, 0.005108306650072336, 0.009245897643268108, -0.0006776939844712615, -0.01901501789689064, -0.014113246463239193, 0.011944625526666641, -0.014003094285726547, 0.009486855939030647, -0.03191659227013588, -0.014705314300954342, -0.0032374411821365356, 0.012419656850397587, 0.010898180305957794, 0.0001041282230289653, 0.018574409186840057, -0.02863956429064274, 0.0010206287261098623, 0.010381842032074928, -0.014567623846232891, 0.025789376348257065, 0.04406086727976799, 0.03059476427733898, 0.023379797115921974, 0.012178699485957623, -0.03241227567195892, -0.024660317227244377, -0.010299228131771088, -0.01955200918018818, 0.003917286638170481, 0.038718488067388535, -0.013452333398163319, -0.00515994057059288, 0.0015851585194468498, -0.014374857768416405, -0.00023471878375858068, -0.025348767638206482, -0.0034129961859434843, 0.011786282062530518, 0.007373310625553131, -0.03384425491094589, -0.02512846328318119, -0.02355879545211792, 0.019304167479276657, -0.011125368997454643, 0.017817113548517227, -0.005094537977129221, -0.005721028428524733, 0.014719083905220032, 0.02718004770576954, -0.0011979048140347004, 0.010980794206261635, 0.015669146552681923, 0.009535047225654125, 0.02274642325937748, -0.014994463883340359, -0.0053595914505422115, 0.00047761292080394924, 0.003531753784045577, 0.034202247858047485, -0.011173560284078121, 0.007875880226492882, 0.010416264645755291, 0.01876717619597912, -0.0039000750984996557, 0.0013416189467534423, -0.025293691083788872, 0.02731773816049099, -0.017128661274909973, 0.0023906463757157326, 0.00396203575655818, 0.011063408106565475, 0.010540185496211052, -0.01436108909547329, -0.031007835641503334, -0.00956258550286293, -0.012667499482631683, -0.002452606800943613, 0.00869513675570488, -0.0234486423432827, -0.019538240507245064, -0.00040554068982601166, -0.0024543278850615025, -0.013720829039812088, 0.005053230561316013, 0.007634921930730343, 0.013810328207910061, -0.03164121136069298, 0.025513995438814163, -0.007986032404005527, -0.01317006815224886, -0.004351010546088219, 0.009218359366059303, -0.030842607840895653, 0.013583139516413212, 0.021920280531048775, -0.01873963698744774, 0.019538240507245064, 0.040122926235198975, 0.018161337822675705, -0.05488331615924835, 0.0179272647947073, -0.01907009445130825, -0.01598583348095417, 0.009431779384613037, 0.0022977052722126245, -0.020089002326130867, -0.026216216385364532, 0.023903019726276398, -0.002519730944186449, 0.001235769595950842, -0.0031135198660194874, 0.008461063727736473, 0.012626192532479763, 0.007414618041366339, -0.009658968076109886, 0.005624644923955202, 0.011772513389587402, 0.0036625596694648266, 0.009982540272176266, 0.02179636061191559, -0.0070841615088284016, 0.01657790131866932, 0.012529809027910233, 0.003986131399869919, -0.013707060366868973, -0.0498163178563118, -0.027276430279016495, -0.017817113548517227, 0.00883282721042633, 0.01798234134912491, 0.014113246463239193, -0.006598803214728832, -0.009452433325350285, -0.022250737994909286, 0.019441857933998108, -0.027056125923991203, 0.005731354933232069, 0.026147371158003807, -0.024384936317801476, 0.0011901597026735544, 0.03803003579378128, -0.01655036397278309, -0.03478054702281952, -0.031283214688301086, -0.013865403831005096, -0.04273904114961624, -0.015200999565422535, 0.013603792525827885, 0.044831931591033936, -0.0014732852578163147, -0.02515600062906742, -0.02742788940668106, -0.017858419567346573, -0.053671643137931824, -0.022319583222270012, -0.0378648079931736, 0.020515840500593185, 0.007634921930730343, -0.001266749924980104, 0.005576453637331724, 0.021135447546839714, -0.002418184420093894, 0.0012340485118329525, -0.03761696442961693, -0.013500524684786797, -0.0275105033069849, -0.009404241107404232, 0.02888740599155426, -0.0267807450145483, -0.05372672155499458, -0.011841357685625553, -0.009865503758192062, -0.020515840500593185, 0.0029207535553723574, -0.0055179353803396225, 0.0004952544695697725, -0.0026987281162291765, 0.002595460508018732, 0.000655319367069751, 0.007435271516442299, 0.019028786569833755, 0.01245407946407795, -0.029465705156326294, 0.004461162723600864, 0.01839541271328926, -0.017114892601966858, -0.0003474526456557214, 0.004110052715986967, 0.010877526365220547, -0.02028176747262478, -0.011042755097150803, -0.004450836218893528, -0.00782768800854683, -0.009865503758192062, -0.0020481417886912823, 0.006006735377013683, 0.01573799178004265, 0.01699097268283367, 0.03020923212170601, -0.019758544862270355, -0.004657371435314417, -0.012440310791134834, 0.008275181986391544, 0.02128690667450428, 0.012433425523340702, 0.038718488067388535, -0.013108108192682266, 0.004058418795466423, 0.005142729263752699, 0.021672438830137253, 0.0023648294154554605, -0.01593075692653656, -0.00991369504481554, -0.022705115377902985, -0.018973711878061295, -0.013211376033723354, 0.015421303920447826, -0.009066900238394737, -0.00013586151180788875, -0.005263208411633968, -0.009941233322024345, 0.010202844627201557, -0.002970666391775012, 0.027785884216427803, -0.028391720727086067, -0.016192369163036346, -0.002246071584522724, 0.010402495041489601, -0.03326595574617386, 0.014127015136182308, 0.026464058086276054, 0.012853381223976612, 0.01317006815224886, 0.20444242656230927, -0.0005404340918175876, 0.01663297787308693, 0.038718488067388535, 0.01127682812511921, 0.002340733539313078, 0.030016465112566948, -0.004216762725263834, -0.013218260370194912, 0.0012297456851229072, 0.008075530640780926, 0.00450935447588563, -0.011139137670397758, 0.0025317787658423185, 0.01904255524277687, -0.012777651660144329, -0.02412332408130169, -0.011889549903571606, -0.013087454251945019, 0.0050497883930802345, 0.010478224605321884, -0.007235620636492968, -0.016536593437194824, -0.00810306891798973, 0.02810257114470005, 0.012364581227302551, -0.026147371158003807, 0.015448841266334057, 0.01652282476425171, 0.015435072593390942, -0.002254677237942815, -0.0025662013795226812, 0.01100833248347044, -0.008674482814967632, -0.016412673518061638, -0.025390075519680977, 0.013080569915473461, -0.011965279467403889, -0.019194014370441437, 0.029906313866376877, -0.009287204593420029, -0.009941233322024345, -0.0032821903005242348, -0.028171416372060776, 0.017858419567346573, -0.004251185338944197, -0.016343828290700912, 0.010127115063369274, -0.012096084654331207, 0.017459118738770485, -0.005631529726088047, -0.0049224249087274075, 0.02229204587638378, 0.028529411181807518, -0.007421502377837896, 0.0023940885439515114, 0.004264954477548599, 0.0005296770250424743, -0.01814756914973259, -0.02131444402039051, -0.02910771034657955, 0.008013570681214333, -0.006870741490274668, 0.007483462803065777, -0.043041959404945374, 0.00219443766400218, -0.016509056091308594, 0.030815068632364273, 0.005122075788676739, 0.0022822152823209763, -0.011758743785321712, -0.007469694130122662, -0.03692851588129997, 0.0026333252899348736, -0.029300477355718613, -0.018133800476789474, 0.0004810551763512194, 0.011125368997454643, 0.009948117658495903, 0.028556950390338898, -0.010691644623875618, 0.013101223856210709, -0.016963433474302292, -0.009948117658495903, 0.026408981531858444, -0.0393243245780468, 0.03018169477581978, -0.025224845856428146, 0.004536892287433147, -0.028116341680288315, -0.013011724688112736, 0.005862160585820675, 0.014250936917960644, -0.006554054096341133, 0.01334906555712223, -0.012639961205422878, 0.006216712761670351, 0.030071541666984558, -0.016426442191004753, -0.014051285572350025, 0.0029173113871365786, 0.04876987263560295, 0.011510901153087616, 0.029383091256022453, -0.011669245548546314, 0.0055420310236513615, -0.008392218500375748, 0.02220943011343479, 0.00900493934750557, -0.004320030566304922, 0.0037382892332971096, -0.03436747565865517, 0.00859875325113535, -0.0005821714294143021, -0.004533450119197369, 0.02025423012673855, 0.007930955849587917, -0.0017968572210520506, 0.004767523612827063, -0.018354104831814766, 0.014374857768416405, 0.007104814983904362, 0.014650238677859306, 0.025362536311149597, -0.036900974810123444, -0.02908017300069332, -0.012054777704179287, 0.026849590241909027, -0.0241784006357193, -0.025899529457092285, 0.037231434136629105, -0.009948117658495903, 0.019414318725466728, -0.024329859763383865, -0.012639961205422878, 0.003273584647104144, 0.006244251038879156, -0.009452433325350285, -0.021135447546839714, -0.02526615373790264, 0.005356149282306433, 0.01290157251060009, 0.020543379709124565, 0.004151359666138887, -0.00981731154024601, -0.008977402001619339, 0.015751760452985764, -0.008261412382125854, -0.019813621416687965, -0.025114694610238075, 0.015806837007403374, 0.002801995724439621, 0.012199352495372295, -0.005659067537635565, 0.04530007764697075, 0.0004844974318984896, -0.029713546857237816, -0.02058468572795391, 0.014691545628011227, -0.0017271515680477023, -0.03706620633602142, 0.006430132780224085, 0.03915909677743912, 0.012082315981388092, -0.018615717068314552, -0.013913596048951149, -0.17558255791664124, 0.013975556008517742, 0.015724221244454384, -0.014278475195169449, 0.019703468307852745, 0.011662361212074757, 0.011504016816616058, 0.0050256927497684956, -0.0019121727673336864, 0.0033613622654229403, 0.021162984892725945, -0.0020997757092118263, -0.007999801076948643, -0.0038140187971293926, -0.006636667996644974, -0.008757097646594048, -0.0150770777836442, 0.026519134640693665, 0.0687900260090828, 0.005879371892660856, 0.005848391447216272, -0.028254030272364616, -0.01281895861029625, 0.01584814302623272, 0.03670820966362953, 0.016481518745422363, 0.011393864639103413, 0.011889549903571606, -0.0015980669995769858, -0.0364052914083004, -0.005008481442928314, -0.016564132645726204, 0.012302620336413383, -0.0044887010008096695, 0.02888740599155426, 0.00548351276665926, -0.001003417419269681, -0.00039671992999501526, -0.006560938432812691, 0.02095644921064377, 0.019262859597802162, -0.0017159642884507775, 0.01825772225856781, 0.011104715056717396, 0.008619407191872597, 0.020075231790542603, 0.007903418503701687, -0.010299228131771088, 0.0009414568194188178, -0.016219906508922577, 0.030842607840895653, -0.02672567032277584, 0.01431978214532137, -0.006171963643282652, 0.011490248143672943, -0.00574856624007225, -0.0028037168085575104, 0.03524869307875633, -0.0029878774657845497, -0.017238814383745193, 0.0014707035152241588, -0.008165029808878899, 0.024756699800491333, 0.00030033677467145026, 0.003249489003792405, -0.030677378177642822, 0.019194014370441437, 0.020130308344960213, 0.007841457612812519, -0.0042546275071799755, 0.002573085715994239, 0.0024457224644720554, -0.0003642336232587695, 0.0171975065022707, 0.01579306647181511, 0.01974477618932724, -0.029493242502212524, 0.0043682218529284, 0.014636469073593616, 0.002863956382498145, 0.0035042157396674156, -0.006368172354996204, -0.00438887532800436, -0.001965527655556798, -0.03235720098018646, 0.018078723922371864, -0.004891444928944111, 0.005634971894323826, -0.021892743185162544, 0.014292243868112564, 0.014567623846232891, -0.006554054096341133, -0.005765777546912432, 0.015324920415878296, 0.020033925771713257, -0.00518059404566884, 0.03745173662900925, -0.011634822934865952, 0.003096308559179306, -0.0036522329319268465, 0.005690047983080149, 0.010512647219002247, -0.035551611334085464, 0.005153056234121323, 0.030677378177642822, 0.014416164718568325, 0.0009388751350343227, -0.0025369420181959867, 0.020006388425827026, -0.02347618155181408, -0.0234486423432827, 0.006419806275516748, 0.017941033467650414, 0.0004746009362861514, -0.015476379543542862, 0.034119635820388794, 0.0005998129490762949, -0.021975357085466385, 0.007999801076948643, -0.015944525599479675, 0.04703497514128685, -0.02266380935907364, -0.014140784740447998, 0.005204690154641867, -0.011634822934865952, 0.007039411924779415, -0.1004587784409523, -0.010381842032074928, 0.025569071993231773, 0.008874134160578251, -0.013775905594229698, 0.016867050901055336, 0.0032907959539443254, 0.04554792121052742, -0.02880479209125042, 0.03337610512971878, -0.0249081589281559, -0.022815268486738205, -0.016316289082169533, 0.010244151577353477, 0.0003868234343826771, -0.00029388253460638225, -0.0041031683795154095, 0.00275208312086761, -0.01064345333725214, 0.022732654586434364, -0.005452532321214676, -0.021052833646535873, 0.011586631648242474, -0.021355751901865005, -0.0038071342278271914, -0.01909763179719448, -0.02331095188856125, 0.005366475787013769, 0.0020756798330694437, 0.005235670134425163, 0.020061463117599487, -0.009438663721084595, 0.029438167810440063, -0.02288411371409893, -0.02561037987470627, -0.01573799178004265, -0.015696683898568153, -0.025569071993231773, 0.029328014701604843, -0.046126220375299454, -0.01452631689608097, 0.00044577204971574247, -0.018243953585624695, -0.026822052896022797, -0.012688152492046356, 0.0125917699187994, 0.0023545026779174805, 0.037424199283123016, 0.03208182007074356, -0.02523861639201641, -0.0065643806010484695, -0.018546871840953827, -0.011490248143672943, -0.021218061447143555, 0.019896235316991806, -0.0129566490650177, 0.02656044065952301, 0.004399202298372984, -0.02594083547592163, -0.0008304440998472273, 0.01979985274374485, -0.01690835691988468, -0.017968572676181793, 0.021975357085466385, 0.003993016202002764, 0.022870343178510666, 0.01582060568034649, -0.012846496887505054, -0.012330158613622189, -0.013411026448011398, -0.0026694689877331257, 0.006781242787837982, -0.027868498116731644, 0.019138939678668976, -0.010574608109891415, -0.010044501163065434, -0.023806637153029442, -0.017858419567346573, 0.021741284057497978, -0.005008481442928314, -0.019786084070801735, -0.010567723773419857, -0.0013295711250975728, -0.02229204587638378, 0.022278275340795517, -0.015490148216485977, -0.005965428426861763, -0.008357795886695385, 0.03761696442961693, -0.03836049139499664, 0.019414318725466728, -0.007201198022812605, 0.027758346870541573, -0.011985932476818562, -0.01031988114118576, 0.0016256050439551473, -0.025059618055820465, 0.012729460373520851, 0.02899755910038948, -0.012584885582327843, -0.020928911864757538, -0.014677776023745537, -0.05491085723042488, 0.031338293105363846, -0.005614318419247866, 0.006832876708358526, -0.00724938977509737, -0.018891096115112305, -0.00017006891721393913, -0.0002996913390234113, 0.00276240985840559, -0.0069051641039550304, -0.012013470754027367, 0.01286026556044817, -0.02645028941333294, -0.02731773816049099, -0.03191659227013588, -0.02412332408130169, 0.010354303754866123, -0.002948291599750519, 0.009982540272176266, 0.006406037136912346, -0.018891096115112305, -0.019496934488415718, -0.005972312763333321, 0.026216216385364532, -0.00314794247969985, 0.006189174950122833, -0.04403332993388176, 0.020460765808820724, -0.01988246664404869, -0.023765331134200096, 0.02504584938287735, -0.0024560492020100355, -0.007235620636492968, 0.020488303154706955, -0.018973711878061295, -0.050972916185855865, 0.023971864953637123, -0.005579895805567503, 0.01769319176673889, -0.012275082059204578, -0.010691644623875618, -0.022443505004048347, 0.01907009445130825, -0.012137391604483128, -0.014898080378770828, -0.0053595914505422115, -0.03288042172789574, -0.007607384119182825, 0.01985492743551731, 0.02377909980714321, 0.038718488067388535, 0.011607284657657146, -0.01758304052054882, -0.03450516611337662, 0.007018758449703455, -0.0196621622890234, 0.019441857933998108, 0.010127115063369274, 0.007662460207939148, 0.009948117658495903, 0.04072876274585724, 0.0031238466035574675, 0.006715840194374323, -0.021576056256890297, 0.015490148216485977, -0.010677875950932503, -0.05116568133234978, 0.003882864024490118, -0.0001411324628861621, -0.03456024453043938, 0.005015365779399872, -0.020681070163846016, 0.02377909980714321, 0.023021802306175232, 0.03029184602200985, 0.004110052715986967, -0.017486656084656715, -0.017734499648213387, -0.02342110499739647, 0.03362394869327545, 0.03332103043794632, -0.023159492760896683, -0.01131813507527113, -0.0029620607383549213, 0.010732951574027538, -0.002351060276851058, -0.027414120733737946, 0.019001249223947525, 0.018078723922371864, 0.013638215139508247, 0.0004281305009499192, -0.004220204893499613, -0.010113346390426159, 0.021603593602776527, 0.013128761202096939, 0.028419259935617447, -0.02426101453602314, 0.0018777502700686455, 0.013080569915473461, 0.032522428780794144, -0.006922375410795212, 0.02041945792734623, 0.007421502377837896, 0.004371664021164179, -0.01809249445796013, 0.01671559177339077, -0.02729019895195961, -0.01454008650034666, 0.026464058086276054, 0.02558284066617489, -0.0010309554636478424, -0.004333799239248037, -0.006196059286594391, 0.017293890938162804, -0.007696882821619511, -0.01693589612841606, -0.009294088929891586, -0.005369918420910835, -0.01176562812179327, -0.0010670991614460945, -0.008984286338090897, 0.013293989934027195, 0.017679423093795776, -0.024577703326940536, 0.02304934151470661, 0.012529809027910233, 0.004085957072675228, -0.015834374353289604, 0.017968572676181793, -0.02095644921064377, 0.023434873670339584, 0.0020705165807157755, -0.004168570972979069, -0.02596837282180786, 0.00530107319355011, -0.02128690667450428, -0.013376603834331036, 0.021273138001561165, -0.0037623848766088486, 0.09401487559080124, 0.014677776023745537, -0.03367902711033821, -0.0033630833495408297, -0.0143473194912076, 0.0024594913702458143, 0.02136952057480812, -0.011448941193521023, 0.01253669336438179, -0.025761839002370834, 0.014732852578163147, 0.0025214520283043385, -0.031200600787997246, -0.028446797281503677, -0.02552776411175728, -0.00875021331012249, 0.006006735377013683, 0.011166675947606564, -0.017293890938162804, 0.028198955580592155, 0.01571045257151127, 0.0006174545269459486, 0.017459118738770485, -0.004502469673752785, -0.027785884216427803, -0.011442056857049465, 0.03142090514302254, 0.0047399853356182575, -0.012963533401489258, -0.03045707382261753, 0.02333849109709263, 0.0005309678963385522, -0.013376603834331036, 0.0026006237603724003, 0.003151384647935629, -0.030897682532668114, -0.014966925606131554, -0.027648193761706352, -0.016027141362428665, 0.008130607195198536, -0.011476479470729828, 0.014168323017656803, -0.018354104831814766, -0.0055936649441719055, 0.03533130884170532, -0.006860414519906044, -0.0028450239915400743, -0.0184780266135931, -0.026711901649832726], "2f509e7c-4766-431e-bee6-7c7bd37f6936": [-0.010749218985438347, -0.018194124102592468, 0.00634346716105938, -0.031166616827249527, -0.002192677464336157, 0.00175754155497998, -0.022450298070907593, -0.024748360738158226, -0.020451391115784645, -0.055914975702762604, 0.004076000303030014, 0.010545249097049236, 0.009974133223295212, -0.007961628958582878, 0.017106283456087112, 0.021049704402685165, 0.01936355233192444, 0.00436495803296566, 0.020641764625906944, -0.03796561434864998, -0.021457644179463387, -0.0030119570437818766, -0.03717693313956261, 0.006258479319512844, -0.03062269650399685, 0.005323616787791252, 0.02866458334028721, -0.009838152676820755, -0.00404880428686738, 0.00621428620070219, 0.014073929749429226, -0.010905596427619457, -0.013509612530469894, -0.020600970834493637, -0.025673024356365204, -0.00334170856513083, 0.00920584611594677, 0.004959870595484972, 0.006428454536944628, -0.011456315405666828, 0.02871897630393505, 0.003413097932934761, -0.01186425518244505, 0.007281729020178318, -0.0019173179753124714, 0.01989387348294258, 0.007927633821964264, -0.016562363132834435, -0.011796264909207821, -0.017568616196513176, -0.012109018862247467, 0.033287905156612396, 0.0031411380041390657, 0.008376368321478367, -0.023021414875984192, -0.002823284827172756, 0.002381349680945277, -0.0007895338931120932, 0.02546905353665352, 0.005911730695515871, 0.012285793200135231, 0.004851086530834436, -0.010572444647550583, -0.00568736344575882, -0.022926228120923042, -0.0204921867698431, 0.003132639219984412, -0.014876211993396282, -0.022640669718384743, -0.00402500806376338, -0.005738356150686741, 0.03546358272433281, 0.0057179587893188, -0.004817091394215822, -0.008974679745733738, -0.017704596742987633, 0.011680682189762592, 0.00906306691467762, 0.0010249492479488254, -0.014345889911055565, 0.006125899031758308, 0.001189825008623302, -0.002666907850652933, -0.009654579684138298, 0.01920037530362606, 0.04881681874394417, -0.022572679445147514, -0.004820491187274456, -0.001188125228509307, 0.005388207267969847, -0.006982572842389345, 0.0035218819975852966, 0.0053304159082472324, 0.011837058700621128, -0.0015442228177562356, 0.0007593632908537984, 0.026325728744268417, 0.020043451339006424, 0.0040556034073233604, -0.014604251831769943, -0.022545484825968742, 0.012340185232460499, -0.034239765256643295, -0.012367380782961845, -0.030921852216124535, 0.010198500007390976, 0.027875900268554688, -0.011517506092786789, 0.0011498808162286878, 0.018289310857653618, -0.002469736849889159, 0.028773367404937744, -0.0012433670926839113, -0.008451157249510288, -0.012292591854929924, -0.012170209549367428, 0.029589248821139336, -0.0419362336397171, -0.0031105424277484417, -0.027563145384192467, 0.016399187967181206, 0.021593624725937843, 0.025156300514936447, -0.027291186153888702, 0.01657596230506897, -0.008852298371493816, -0.00651684170588851, -0.01638559065759182, 0.021498437970876694, 0.0042051817290484905, 0.019921069964766502, 0.03396780416369438, -0.0005626172642223537, -0.001209372072480619, -0.028827760368585587, 0.0037462490145117044, -0.02812066487967968, 0.0157872773706913, 0.006676618009805679, -0.015501719899475574, 0.0012569651007652283, 0.025795405730605125, -0.014373086392879486, -0.012353782542049885, 0.005779149942100048, 0.02223272994160652, -0.02325258031487465, 0.030105972662568092, 0.01767740026116371, -0.027345577254891396, 0.01259174756705761, -0.005323616787791252, -0.011497109197080135, 0.017160676419734955, 0.006958776619285345, 0.013672788627445698, -0.01144951581954956, 0.036361053586006165, -0.013686386868357658, -0.01951313018798828, 0.0060035171918570995, 0.024381214752793312, -0.007540090940892696, 0.001827231259085238, 0.005371210165321827, 0.020832136273384094, -0.004181385040283203, -0.03342388570308685, -0.006479446776211262, -0.00555818248540163, 0.0007946331170387566, 0.030785871669650078, -0.013183261267840862, 0.02347014844417572, 0.023021414875984192, 0.009110660292208195, 0.02518349513411522, -0.0147402323782444, -0.015025789849460125, -0.03948859125375748, 0.028800563886761665, -0.005265825428068638, 0.005021061282604933, 0.0015467725461348891, -0.015991248190402985, -0.02780790999531746, 0.015093780122697353, 0.0024969326332211494, 0.008430760353803635, -0.0075128949247300625, 0.00029129465110599995, 0.012693732976913452, -0.015800876542925835, -0.017731791362166405, -0.6322526335716248, -0.01559690572321415, 0.02246389538049698, -0.029045328497886658, -0.013754377141594887, 0.006129298359155655, 0.012754923664033413, 0.006108901463449001, -0.013264848850667477, 0.018765240907669067, 0.011599093675613403, 0.012231401167809963, -0.010416068136692047, -0.005174038931727409, -0.022219132632017136, -0.01714707724750042, 0.015746483579277992, 7.606381404912099e-05, -0.0114359175786376, 0.004062402527779341, -0.011483510956168175, 0.03162894770503044, -0.0033077134285122156, -0.008219990879297256, 0.010586042888462543, -0.002432342153042555, 0.02638011984527111, -0.0067106131464242935, -0.0033502073492854834, 0.009647781029343605, -0.02480275183916092, 0.021144889295101166, 0.015365740284323692, -0.0023983472492545843, 0.04185464233160019, -0.02113129198551178, -0.001340252929367125, 0.02559143677353859, 0.03668740391731262, 0.021947171539068222, -0.03154736012220383, -0.006217685528099537, 0.0032227260526269674, 0.015964051708579063, -0.002321858424693346, 0.0010130510199815035, -0.0074177091009914875, 0.00484088808298111, -0.02170240879058838, 0.016562363132834435, 0.004613121505826712, -0.01104157604277134, 0.011769069358706474, -0.005646569654345512, 0.007553689181804657, -0.0023915483616292477, 0.02657049149274826, -0.006741208489984274, 0.0069009847939014435, 0.01774539053440094, 0.013597999699413776, -0.005459596868604422, -0.009708971716463566, -0.03682338446378708, -0.01638559065759182, 0.0024017468094825745, -0.011918647214770317, -0.021648015826940536, 0.014794624410569668, -0.002622714266180992, 0.024557987228035927, 0.005564981605857611, -0.003132639219984412, -0.0018714247271418571, -0.011626290157437325, 0.029398875311017036, 0.037340108305215836, -0.009878947399556637, -0.006574633065611124, 0.015678493306040764, 0.002804587595164776, -0.01153110433369875, -0.011816661804914474, -0.01951313018798828, 0.024721164256334305, 0.004949672147631645, -0.009559393860399723, -0.016331197693943977, 0.0006212586304172873, -0.01698390208184719, 0.005473195109516382, 0.01784057542681694, -0.0030289546120911837, -0.04985026642680168, 0.021879181265830994, 0.029344484210014343, 0.003062949515879154, -0.006815997418016195, -0.016086433082818985, -0.028637388721108437, -0.02909971959888935, -0.02356533333659172, 0.008818303234875202, 0.012238199822604656, 0.017160676419734955, 0.011490309610962868, -0.01790856570005417, -0.011653485707938671, 0.028963739052414894, -0.017038293182849884, -0.004456744529306889, -0.003821037942543626, -0.01260534580796957, -0.02647530660033226, 0.0035184824373573065, -0.028011880815029144, 0.026080964133143425, -0.011340731754899025, -0.005228430964052677, -0.01979868859052658, -0.012945296242833138, 0.011857455596327782, 0.004660714417695999, -0.007397312205284834, -0.0069383797235786915, 0.018112536519765854, -0.0005443449481390417, 0.0013045581290498376, 0.015746483579277992, 0.0021739802323281765, 0.016847921535372734, -0.013373632915318012, 0.018139731138944626, -0.021865583956241608, 0.028419820591807365, -0.008213192224502563, 0.0231573935598135, 0.0069893719628453255, 0.017772585153579712, -0.04125633090734482, 0.0029541654512286186, -0.00351168354973197, 0.010320882312953472, -0.009110660292208195, -0.003340008668601513, -0.009165052324533463, -0.01695670560002327, 0.011973039247095585, -0.008546343073248863, 0.0005961873102933168, -0.019499532878398895, -0.02742716670036316, 0.0019190177554264665, 0.026244139298796654, -0.02068255841732025, 0.0051910365000367165, 0.012727728113532066, -0.04166427254676819, -0.008559941314160824, -0.029208503663539886, -0.008219990879297256, 0.02480275183916092, -0.02189278043806553, 0.022382307797670364, -0.006968975067138672, -0.007356517948210239, -0.010939590632915497, 0.00029044479015283287, 0.0011303337523713708, -0.008750312961637974, -0.006537238601595163, -0.01951313018798828, 0.019186777994036674, 0.027209598571062088, -0.0056941625662148, 0.028773367404937744, -0.012238199822604656, 0.012278993614017963, -0.0016045640222728252, -0.005344014149159193, 0.010790012776851654, 0.03644264116883278, -0.012047828175127506, 0.007064160890877247, 0.014332291670143604, 0.01803094707429409, 0.014101126231253147, 0.026910442858934402, -0.013564004562795162, -0.005140043795108795, 0.009042670018970966, 0.019907472655177116, -0.016426384449005127, -0.003239723388105631, -0.015284151770174503, -0.01784057542681694, -0.03317911922931671, -0.021144889295101166, -0.01426430232822895, 0.02394607849419117, 0.0012017232365906239, 0.006476047448813915, -0.004412550944834948, 0.008464754559099674, 0.020519381389021873, -0.041609879583120346, 0.014400281943380833, -0.008614333346486092, 0.020478587597608566, 0.011109566316008568, 0.011143561452627182, -0.0073701161891222, -0.010212098248302937, -0.03100343979895115, 0.016616756096482277, 0.021430447697639465, -0.012822913937270641, 0.019662708044052124, -0.0013292045332491398, 0.007954830303788185, 0.009301031939685345, 0.005004064179956913, 0.027128009125590324, 0.009246639907360077, 0.00015117150906007737, 0.009192247875034809, -0.02239590510725975, 0.006408057641237974, 0.006445452105253935, -0.0237285103648901, -0.0006866990006528795, 0.020002657547593117, -0.005741755478084087, 0.004752500914037228, 0.013074477203190327, 0.020478587597608566, 0.03146577253937721, -0.019839482381939888, 0.019445139914751053, -0.02027461864054203, -0.004375156480818987, 0.0033774031326174736, 0.03470209613442421, -0.012204204685986042, 0.01974429562687874, 0.019757894799113274, 0.017500625923275948, 0.010001328773796558, -0.02113129198551178, 0.02521069161593914, -0.005887934006750584, 0.020478587597608566, -0.0011804763926193118, -0.013271648436784744, 0.026080964133143425, 0.0007682869909331203, -0.0034946859814226627, 0.017514223232865334, 0.02530587837100029, 0.011653485707938671, -0.013332839123904705, 0.017854174599051476, -0.0003206153342034668, 0.011252344585955143, 0.028610192239284515, -0.024476399645209312, -0.013380431570112705, -0.03668740391731262, -0.008838700130581856, 0.012149812653660774, -0.002553024562075734, -0.01561050396412611, -0.018452486023306847, -0.00722053786739707, -0.017038293182849884, 0.015896061435341835, -0.0035626760218292475, 0.03122100792825222, 0.01355720590800047, 0.023130197077989578, -0.02103610523045063, -0.019186777994036674, 0.0035422788932919502, 0.004045404959470034, -0.005996718071401119, -0.015039388090372086, -0.012843310832977295, 0.005592177622020245, 0.009593388997018337, 0.020016256719827652, -0.0036646609660238028, -0.003940020687878132, -0.008546343073248863, 0.012149812653660774, -0.006737809162586927, 0.02568662166595459, 0.04348640516400337, -0.01396514568477869, -0.016535168513655663, -0.0002842831891030073, 0.021947171539068222, 0.011279541067779064, -0.012190607376396656, -0.017092686146497726, 0.047185059636831284, -0.016344796866178513, -0.013550407253205776, 0.004956470802426338, 0.029534855857491493, -0.029208503663539886, 0.0003080796741414815, -0.024557987228035927, -0.02673366852104664, -0.0064386529847979546, -0.012007034383714199, -0.004592724610120058, -0.0005303220241330564, -0.007410909980535507, 0.03913504257798195, 0.015311348251998425, -0.003987613599747419, -0.020206628367304802, -0.025931386277079582, 0.010524852201342583, 0.06940419226884842, 0.024245234206318855, -0.021267272531986237, 0.021838387474417686, -0.02733197994530201, -0.016086433082818985, -0.007016567979007959, -0.02185198664665222, 0.02255908213555813, -0.013530010357499123, -0.010987184010446072, 0.003346807789057493, 0.015773680061101913, 0.004137191455811262, 0.005639770533889532, 0.018085340037941933, 0.008736714720726013, -0.018425289541482925, -0.01309487409889698, 0.002252168720588088, -0.006414856296032667, -0.015052986331284046, 0.025577837601304054, 0.022314317524433136, 0.03141137957572937, 0.02888215146958828, 0.032118476927280426, 0.011823461391031742, 0.006581432186067104, -0.020587371662259102, -0.01295209489762783, 0.009790560230612755, -0.016943108290433884, 0.0037632465828210115, -0.018520476296544075, 0.023429354652762413, 0.005568380933254957, -0.02451719343662262, -0.016562363132834435, 0.006513441912829876, 0.004188184160739183, 0.009369022212922573, 0.00839676521718502, -0.015270553529262543, 0.004800093825906515, -0.030949048697948456, 0.005884534679353237, 0.02983401156961918, -0.006074906326830387, -0.004320764448493719, 0.001444787485525012, 0.008913489058613777, -0.012217802926898003, 0.023211786523461342, 0.0070777591317892075, -0.006693615578114986, 0.0018612262792885303, 0.005116247572004795, -0.001232318696565926, -0.03587152436375618, -0.048000939190387726, -0.004932674579322338, -0.0008239538292400539, -0.016915911808609962, -0.02299421839416027, -0.013842764310538769, 0.005401805508881807, 0.035164427012205124, -0.04016849026083946, -0.00521143339574337, 0.009471006691455841, -0.023810097947716713, -0.04636918008327484, 0.0026108159217983484, 0.02251828834414482, 0.019349953159689903, 0.01055204775184393, 0.008702719584107399, 0.0037360505666583776, 0.021648015826940536, 0.00027535948902368546, -0.031737733632326126, 0.010939590632915497, -0.025741014629602432, -0.041582684963941574, -0.029398875311017036, -0.017582213506102562, -0.004820491187274456, -0.018207721412181854, 0.0008779208874329925, -0.0026142154820263386, -0.010463660582900047, -0.01193904411047697, 0.01023249514400959, -0.004993865266442299, 0.05798187106847763, 0.009226243011653423, 0.018710847944021225, 0.023170992732048035, -0.043323226273059845, 0.01374757755547762, -0.00039051755447871983, 0.0012637641048058867, -0.019839482381939888, 0.00637406250461936, -0.008111206814646721, 0.0007283428567461669, -0.020070647820830345, 0.02451719343662262, -0.021280869841575623, -0.0026720070745795965, -0.01396514568477869, -0.014808221720159054, -0.010613239370286465, 0.007730463054031134, -0.008736714720726013, -0.004742302466183901, 0.013733980245888233, -1.2708286703855265e-05, -0.015039388090372086, 0.007016567979007959, -0.03815598785877228, 0.048164114356040955, 0.013122069649398327, -0.002435741713270545, 0.01571928709745407, 0.021770397201180458, -0.017881369218230247, -0.03002438321709633, 0.012088621966540813, 0.012884104624390602, 0.01377477403730154, -0.006462449673563242, -0.00866872537881136, -0.014073929749429226, -0.016412785276770592, 0.007533291820436716, 0.006299273576587439, -0.01274812500923872, 0.0008141802391037345, -0.014713035896420479, 0.006860191002488136, 0.009858549572527409, -0.009301031939685345, 0.0030255550518631935, -0.03505564481019974, -0.031520165503025055, -0.01242857240140438, 0.012775320559740067, 0.0304323248565197, -0.020261019468307495, -0.013665989972651005, -0.02869177982211113, -0.029126916080713272, 0.019812285900115967, -0.0060273134149611, 0.01329884398728609, -0.002819885266944766, 0.04851766303181648, 0.003953618463128805, 0.029507659375667572, 0.020927321165800095, 0.013278447091579437, 0.013591201044619083, -0.019757894799113274, -0.014685840345919132, -0.0013215555809438229, -0.02508831024169922, 0.006996171083301306, -0.0046233199536800385, 0.0032363240607082844, 0.0204921867698431, -0.01254415512084961, -0.0009935038397088647, 0.006125899031758308, 0.02153923176229, -0.0002471011539455503, -0.010450063273310661, -0.033668648451566696, -0.03766645863652229, -0.007723663933575153, 0.026271335780620575, 0.008009222336113453, -0.00809760857373476, -0.016752736642956734, 0.01363199483603239, 0.03355986252427101, -0.009464208036661148, 0.03296155110001564, 0.008165598846971989, 0.04751141369342804, 0.008614333346486092, 0.010042122565209866, -0.0059593236073851585, 0.007336121052503586, -0.028800563886761665, -0.010042122565209866, -0.016236012801527977, -0.00756728695705533, 0.010674430057406425, 0.011422320269048214, 0.02521069161593914, -0.00014851565356366336, 0.003651062957942486, 0.00024327672144863755, 0.005367810372263193, -0.02597218006849289, 0.0034691898617893457, 0.009627384133636951, -0.03339668735861778, -0.006618826650083065, -0.030976243317127228, -0.0159776508808136, -0.01860206387937069, -0.005609175190329552, 0.014019537717103958, 0.005296420771628618, 0.017595812678337097, -0.025482652708888054, -0.007648875005543232, 0.026624884456396103, -0.023864490911364555, 0.02745436131954193, 0.029018132016062737, 0.04473742097616196, -0.0004440596967469901, 0.0006684266845695674, -0.023524539545178413, -0.02081853710114956, -0.0005770651041530073, -0.028827760368585587, 0.0004474591987673193, 0.029562052339315414, -0.007064160890877247, 0.008641528896987438, 0.006775203626602888, -0.036714598536491394, 0.01075601764023304, -0.043323226273059845, 0.004215380176901817, 0.008940684609115124, -0.006442052312195301, -0.03372304141521454, -0.021865583956241608, -0.005524187348783016, 0.02084573358297348, -0.015651298686861992, 0.00806361436843872, 0.011728274635970592, -0.01246256660670042, 0.02261347323656082, 0.01341442670673132, 0.0007236685487441719, 0.021403251215815544, 0.005972921382635832, -0.002476535737514496, 0.014495467767119408, -0.0025564238894730806, -0.012802517041563988, -0.007832447998225689, 0.014332291670143604, 0.024911535903811455, -0.02217833884060383, -0.004922476131469011, 0.013679588213562965, 0.022191936150193214, -0.00436495803296566, 0.004589324817061424, -0.022858237847685814, 0.03260800242424011, -0.01736464537680149, -0.010722023434937, 0.0010555447079241276, 0.02072335220873356, -0.005806345958262682, -0.01425070408731699, -0.011463114060461521, -0.006809198297560215, 0.0073701161891222, -0.0030969444196671247, 0.02017943188548088, -0.036170680075883865, -0.016439981758594513, -0.0050516570918262005, 0.0029575650114566088, -0.026026571169495583, 0.006669818889349699, 0.005106049124151468, 0.02027461864054203, -0.037884026765823364, -0.0020176032558083534, 0.013754377141594887, -0.01062683667987585, -0.007104955147951841, -0.010545249097049236, -0.02385089173913002, -0.011741872876882553, 0.026216944679617882, -0.03192810341715813, 0.019336355850100517, 0.03353266790509224, 0.008961082436144352, -0.04125633090734482, 0.023334167897701263, -0.018955612555146217, 0.003810839494690299, 0.004664114210754633, -0.005296420771628618, -0.039053454995155334, -0.024653173983097076, 0.023306971415877342, 0.0021433846559375525, -0.01796295866370201, -0.0024017468094825745, 0.015991248190402985, 0.00989934429526329, -0.0010206998558714986, -0.011585496366024017, 0.0036612614057958126, 0.003919623326510191, -0.00337230390869081, -0.0033689045812934637, 0.00470490800216794, -0.018044546246528625, -0.00030043080914765596, -0.00017804880917537957, 0.01581447385251522, -0.017106283456087112, -0.02790309675037861, -0.025006722658872604, -0.0014277900336310267, 0.023170992732048035, 0.006911183707416058, 0.01650797203183174, 0.01561050396412611, -0.018642857670783997, -0.010688028298318386, 0.020261019468307495, -0.03451172262430191, 0.00024667620891705155, 0.03296155110001564, 0.006020514294505119, 0.024666771292686462, 0.027984684333205223, -0.02084573358297348, -0.03475648909807205, -0.03320631757378578, -0.022137543186545372, -0.05159081146121025, -0.01891481876373291, 0.015501719899475574, 0.05014942213892937, -0.005388207267969847, -0.03807440027594566, -0.028338231146335602, -0.013645593076944351, -0.04601563140749931, -0.007322522811591625, -0.05295061320066452, 0.018874023109674454, 0.02828384004533291, 0.026869647204875946, -0.0012510160449892282, 0.022436700761318207, -0.005473195109516382, 0.016943108290433884, -0.034430135041475296, -0.001815333031117916, -0.016249610111117363, -0.023211786523461342, 0.0323360450565815, -0.02015223540365696, -0.05039418861269951, -0.0021212880965322256, -0.006982572842389345, -0.006741208489984274, 0.0016844522906467319, -0.0033774031326174736, 0.005741755478084087, 0.02015223540365696, -0.00853954441845417, 0.008838700130581856, 0.014536261558532715, 0.016467178240418434, 0.01926836557686329, -0.03394060954451561, -0.004545131698250771, 0.025577837601304054, 0.0040114098228514194, -0.010606439784169197, 0.00301365670748055, 0.010796812362968922, -0.030513912439346313, 0.001798335462808609, -0.003698656102642417, 0.010327680967748165, 0.00023923981643747538, -0.0003584347723517567, 0.0005443449481390417, 0.016725540161132812, 0.01824851520359516, 0.05289622023701668, -0.02385089173913002, -0.018180526793003082, 0.006071506999433041, -0.0014906807336956263, 0.02034260891377926, 0.01070842519402504, 0.02461238019168377, -0.008118006400763988, 0.007948030717670918, 0.0041677867993712425, 0.0014320394257083535, 0.014073929749429226, -0.010286887176334858, -0.012346983887255192, -0.009185449220240116, -0.011211550794541836, -6.421867874450982e-05, -0.003414797829464078, -0.002462937729433179, 0.004959870595484972, -0.010783214122056961, -0.010871601291000843, 0.025577837601304054, 0.005544584710150957, 0.01834370195865631, -0.020995311439037323, -0.02242310158908367, -0.0023133596405386925, -0.005289622116833925, -0.04038605839014053, 8.185358456103131e-05, 0.021770397201180458, 0.021770397201180458, -0.009321428835391998, 0.18874023854732513, 0.008974679745733738, 0.0040997969917953014, 0.04337761923670769, 0.020587371662259102, -0.02429962530732155, 0.021770397201180458, 0.01056564599275589, -0.017391841858625412, 0.005830142647027969, -0.0004009285185020417, 0.009035871364176273, -0.015760082751512527, -0.0006340067484416068, 0.019526727497577667, -0.01872444525361061, -0.028392624109983444, -0.01198663655668497, -0.0060545094311237335, 0.006132698152214289, -0.008913489058613777, -0.0055751800537109375, -0.01571928709745407, -0.01227219495922327, 0.02027461864054203, -0.00437175715342164, -0.010817209258675575, 0.003329810220748186, 0.010640434920787811, 0.013604799285531044, -0.006425055209547281, -0.005133245140314102, 0.004001211374998093, -0.008811503648757935, -0.00988574605435133, -0.009987730532884598, 0.002211374696344137, -0.007166145835071802, -0.0009204146335832775, 0.035953111946582794, 0.0053304159082472324, -0.026937637478113174, 0.019145984202623367, -0.029752423986792564, 0.014373086392879486, -0.004375156480818987, -0.019472336396574974, 0.007478899788111448, -0.018901219591498375, 0.008702719584107399, -0.01404673419892788, 0.009178649634122849, 0.015528916381299496, 0.019880276173353195, 0.006346866488456726, 0.007859643548727036, -0.011204752139747143, 0.018874023109674454, -0.021933574229478836, -0.01695670560002327, -0.012143013998866081, 0.0037088545504957438, -0.011347531341016293, -0.0019207175355404615, -0.027195999398827553, -0.0031513364519923925, -0.019757894799113274, 0.02983401156961918, 0.008403563871979713, 0.0026516099460422993, -0.010341279208660126, 0.0005443449481390417, -0.031302597373723984, 0.0008005822310224175, -0.026203345507383347, -0.018289310857653618, 0.028392624109983444, 0.015651298686861992, 0.013604799285531044, 0.024489998817443848, -0.00687378877773881, 0.013992342166602612, -0.02255908213555813, 0.0021773797925561666, 0.01831650547683239, -0.016521569341421127, 0.03957017883658409, -0.0228718351572752, -0.020410597324371338, -0.008593936450779438, -6.878675776533782e-05, 0.0044839405454695225, -0.00402500806376338, -0.019635511562228203, -0.0015306249260902405, -0.018547672778367996, 0.021267272531986237, 0.013169663026928902, -0.022055955603718758, -0.03796561434864998, -0.018751641735434532, 0.05993998423218727, 0.01581447385251522, 0.02043779380619526, -0.02232791669666767, 0.01796295866370201, -0.008077211678028107, 0.020804939791560173, -0.011707877740263939, -0.01159229502081871, 0.0012119218008592725, -0.03948859125375748, 0.01371358335018158, -0.005000664386898279, 0.0023456551134586334, 0.00568736344575882, 0.02017943188548088, -0.015556111931800842, 0.011497109197080135, -0.010742420330643654, 0.003923023119568825, -0.0013496015453711152, 0.016915911808609962, 0.012088621966540813, -0.03535480052232742, -0.03932541608810425, -0.0001315181580139324, 0.029534855857491493, -0.03007877618074417, -0.024313224479556084, 0.0228718351572752, -0.015392935834825039, 0.009525398723781109, -0.004392154049128294, 0.0017201469745486975, 0.016059238463640213, 0.020397000014781952, -0.006353665608912706, 0.000496327003929764, -0.02198796533048153, 0.0003915799024980515, 0.010790012776851654, 0.011408722028136253, 0.011320334859192371, -0.0007682869909331203, 0.007064160890877247, 0.002410245593637228, -0.016834324225783348, -0.005476594436913729, -0.039651766419410706, -0.008750312961637974, 0.00604091165587306, 5.726032759412192e-05, -0.007009768858551979, 0.026420913636684418, -0.001628360478207469, -0.018710847944021225, -0.02616255171597004, 0.006146295927464962, 0.019377149641513824, -0.05104689300060272, 0.0068941861391067505, 0.02502031996846199, 0.011673882603645325, -0.005248827859759331, -0.027590341866016388, -0.17274899780750275, 0.015964051708579063, -0.010810409672558308, -0.00980415754020214, 0.012578150257468224, 0.008580338209867477, -0.014577056281268597, 0.00819279532879591, -0.003610268933698535, 0.00484768720343709, 0.005738356150686741, 0.00044873400474898517, 0.0009331627516075969, -0.0008511497871950269, 0.009708971716463566, 0.0004827289958484471, -0.015583308413624763, 0.02540106326341629, 0.048789624124765396, 0.00874351430684328, 0.032472025603055954, -0.032662395387887955, -0.012265396304428577, 0.007499297149479389, 0.03837355598807335, -0.004905478563159704, 0.002236871048808098, 0.02027461864054203, -0.0038006410468369722, -0.029779620468616486, 0.00021416849631350487, -0.013400829397141933, 0.009362222626805305, 0.003215926932170987, 0.024530792608857155, -0.0018238316988572478, 0.012190607376396656, 0.009491403587162495, -0.010987184010446072, 0.024503596127033234, 0.01055204775184393, 0.007812051102519035, 0.007744060829281807, 0.02084573358297348, 0.01841169223189354, 0.020600970834493637, 0.01040926855057478, -0.0023711512330919504, 0.006955376826226711, -0.005768951494246721, 0.03418537229299545, -0.014087527990341187, 0.016616756096482277, 0.00572475790977478, 0.0052080340683460236, 0.008532744832336903, 0.011204752139747143, 0.021240076050162315, -0.008940684609115124, -0.036959365010261536, 0.007091356907039881, -0.011918647214770317, 0.005792748183012009, -0.006680017337203026, -0.014019537717103958, -0.00722053786739707, 0.023619726300239563, 0.012625742703676224, 0.00016094508464448154, -0.00702336709946394, 0.01955392397940159, 0.0157872773706913, -0.006452251225709915, 0.02511550672352314, 0.0043513597920536995, 0.005089051555842161, -0.03875429928302765, 0.0069383797235786915, 0.03135698661208153, 0.0065338388085365295, 0.007689668796956539, 0.0033553065732121468, -0.00486468430608511, 0.0004716806288342923, -0.011660285294055939, 0.012584948912262917, 0.0025173297617584467, 0.010796812362968922, -0.00940981600433588, 0.011809863150119781, 0.010239293798804283, -0.008702719584107399, 0.007274929899722338, -0.005031260196119547, 0.017011098563671112, -0.015515318140387535, 0.03277118131518364, -0.006350265815854073, 0.0057179587893188, 0.010388871654868126, 0.00920584611594677, 0.00904946867376566, -0.023429354652762413, 0.0076692719012498856, 0.02461238019168377, 0.03407658636569977, 0.011313536204397678, 0.008308378048241138, 0.03141137957572937, -0.022926228120923042, -0.033233512192964554, 0.011585496366024017, 0.021457644179463387, 0.021049704402685165, -0.014604251831769943, 0.03524601459503174, 0.006329868920147419, -0.02492513321340084, 0.016371991485357285, -0.026407316327095032, 0.04405751824378967, -0.03660581633448601, -0.020546577870845795, 0.02425883151590824, 0.007723663933575153, -0.0005961873102933168, -0.10367114841938019, -0.004616520833224058, 0.015828071162104607, 0.014196312054991722, -0.004106596112251282, -0.011027977801859379, -0.015256956219673157, 0.06369303166866302, -0.008056814782321453, 0.028256643563508987, -0.02754954807460308, -0.012380979023873806, -0.0009816056117415428, -0.004749101586639881, 0.0050516570918262005, -0.016630353406071663, 0.002235171152278781, -0.0017915364587679505, -0.0025428261142224073, 0.041201941668987274, -0.0002872577460948378, -0.005041458643972874, 0.014223507605493069, -0.025768209248781204, -0.014862613752484322, -0.010606439784169197, -0.021376056596636772, 0.011728274635970592, 0.01095998752862215, 0.00620748708024621, 0.014549859799444675, -0.0065542361699044704, 0.01996186375617981, -0.022123945876955986, -0.012312988750636578, -0.0076964679174125195, -0.025931386277079582, -0.024435605853796005, 0.01815333031117916, -0.03780243918299675, 0.0013419525930657983, 0.0035320804454386234, -0.020451391115784645, -0.015433729626238346, -0.009321428835391998, 0.004463543649762869, -0.029725227504968643, 0.03859112411737442, 0.017405439168214798, -0.005116247572004795, -0.0013572503812611103, -0.023143796250224113, -0.001493230345658958, -0.0211584884673357, 0.024557987228035927, 0.0030051579233258963, 0.012584948912262917, 0.01290450245141983, -0.026516100391745567, -0.0031224407721310854, 0.008988277986645699, 0.002255568280816078, -0.014713035896420479, 0.031520165503025055, -0.012530556879937649, 0.01581447385251522, -0.009953736327588558, -0.010286887176334858, -0.018969209864735603, 0.006051110103726387, -0.018112536519765854, 0.006584831513464451, -0.029589248821139336, 0.011367928236722946, -0.00586073799058795, -0.011490309610962868, -0.013591201044619083, -0.020886527374386787, 0.021049704402685165, 0.0015195765299722552, -0.008152000606060028, -0.013326039537787437, -0.012850110419094563, -0.03796561434864998, 0.02223272994160652, 0.01024609338492155, 0.019689904525876045, -0.011775868013501167, 0.029562052339315414, -0.031166616827249527, 0.015855267643928528, 0.018520476296544075, 0.019635511562228203, -0.010966787114739418, 0.0068499925546348095, 0.01426430232822895, -0.04511816427111626, 0.015732886269688606, 0.01714707724750042, 0.003487887093797326, -0.016970304772257805, -0.00603411253541708, -0.03981494531035423, 0.016657549887895584, 0.006115700583904982, 0.006595029961317778, 0.013346437364816666, -0.007444905117154121, -0.01619521714746952, -0.010082917287945747, -0.006350265815854073, 0.01815333031117916, -0.026040170341730118, 0.007574086077511311, -0.02454438991844654, -0.013937950134277344, -0.021335262805223465, -0.018561270087957382, 0.0022028759121894836, -0.00987214781343937, 0.011027977801859379, 0.007900438271462917, -0.0025836199056357145, 0.004412550944834948, -0.0029813614673912525, 0.03274398297071457, -0.004990465939044952, -0.008029619231820107, -0.017119882628321648, 0.027535950765013695, -0.008519146591424942, -0.023619726300239563, 0.010905596427619457, -0.009056268259882927, -0.011918647214770317, 0.020736949518322945, -0.026080964133143425, -0.03336949273943901, 0.009199046529829502, -0.007689668796956539, 0.01657596230506897, -0.0047796969301998615, -0.022477494552731514, -0.02423163689672947, 0.029181307181715965, -0.00022819143487140536, -0.030133167281746864, -0.022953424602746964, -0.014332291670143604, -0.015433729626238346, 0.02561863139271736, 0.013720382004976273, 0.05754673480987549, 0.014427478425204754, -0.017758987843990326, -0.03826477378606796, -0.0204921867698431, -0.00857353862375021, 0.01910519041121006, 0.019254768267273903, 0.00419158348813653, -0.005779149942100048, 0.05966802313923836, 0.00620068795979023, 0.003443693509325385, -0.016902314499020576, -0.008022819645702839, -0.019159581512212753, -0.053005002439022064, -0.0007198441307991743, 0.0009544095955789089, -0.040250081568956375, -0.00555138336494565, -0.023837294429540634, 0.028963739052414894, 0.018955612555146217, 0.003487887093797326, 0.010320882312953472, 0.009382620453834534, -0.01293849665671587, -0.0066664195619523525, 0.03646983578801155, 0.026012973859906197, -0.014005940407514572, -0.011605893261730671, -0.002493533305823803, 0.010198500007390976, 0.016331197693943977, -0.016589559614658356, 0.011769069358706474, 0.007818849757313728, 0.005425602197647095, 0.0032057284843176603, -0.010368474759161472, -0.01178266666829586, 0.015284151770174503, 0.020587371662259102, 0.027399970218539238, -0.016412785276770592, 0.020981714129447937, 0.01939074881374836, 0.029344484210014343, 0.012965693138539791, 0.007614879868924618, 0.015664895996451378, 0.007478899788111448, -0.02230072021484375, 0.000655678566545248, -0.030677087604999542, -0.024965928867459297, 0.022477494552731514, 0.016847921535372734, -0.004266372416168451, -0.0163583941757679, -0.004885081667453051, 0.008988277986645699, -0.01743263565003872, 0.002235171152278781, -0.01860206387937069, -0.02172960340976715, -0.012979291379451752, 0.0037428494542837143, -0.0063706631772220135, 0.01654876582324505, 0.007744060829281807, -0.0051468429155647755, 0.01767740026116371, 0.01936355233192444, -0.012387777678668499, -0.020832136273384094, 0.009606987237930298, -0.027345577254891396, 0.015311348251998425, 0.014073929749429226, 0.018846828490495682, -0.009375820867717266, -0.009199046529829502, -0.013400829397141933, -0.02704642154276371, 0.011599093675613403, -0.012598547153174877, 0.06385620683431625, 0.028256643563508987, -0.0334782749414444, 0.003895827103406191, -0.010388871654868126, 0.006877188570797443, 0.025700220838189125, -0.006431853864341974, 0.0033502073492854834, -0.017106283456087112, 0.031710535287857056, 0.0013377032009884715, -0.03181932121515274, -0.00975656509399414, -0.0019343155436217785, -0.007472101133316755, 0.012625742703676224, 0.012000234797596931, -0.014889810234308243, 0.011503907851874828, 0.036741796880960464, -0.004783096723258495, 0.024435605853796005, -0.008104408159852028, -0.023075805976986885, -0.010293685831129551, 0.026516100391745567, 0.00969537440687418, 0.012278993614017963, -0.023116599768400192, 0.018969209864735603, -0.003455591853708029, -0.01800375245511532, -0.008852298371493816, -0.005615973845124245, -0.016426384449005127, 0.0026720070745795965, -0.020329009741544724, -0.01144951581954956, -0.001056394656188786, 0.0010436464799568057, 0.002874277299270034, -0.015066583640873432, -0.021008910611271858, 0.019404346123337746, 0.0014345890376716852, 0.008757111616432667, -0.01612722873687744, -0.018302908167243004], "52307f8e-27e7-4fc9-82ac-553225271c9c": [-0.02794189192354679, -0.021501142531633377, -0.012593721970915794, -0.0268044825643301, 0.0033574122935533524, 0.00858538318425417, -0.0059576937928795815, -0.022761885076761246, -0.024282997474074364, -0.04678451269865036, 0.017074840143322945, -0.0009472699020989239, 0.014375206083059311, -0.004460562020540237, 0.01717076636850834, 0.01563594862818718, 0.022967441007494926, 0.004998433403670788, 0.013169278390705585, -0.02273447811603546, -0.0181848406791687, -0.0021891698706895113, -0.02773633599281311, 0.010373719036579132, -0.030586710199713707, 0.00942816212773323, 0.03513634577393532, -0.006485287100076675, -0.010599830187857151, 0.01477261446416378, 0.0032100973185151815, -0.019472992047667503, -0.0201718807220459, -0.013929834589362144, -0.02004854753613472, -0.008126308210194111, 0.01677335798740387, -0.0022662533447146416, -0.004885377362370491, -0.007811122573912144, 0.02954522892832756, 0.003427643794566393, -0.013710575178265572, 0.006252323742955923, -0.013929834589362144, 0.03401264175772667, 0.00851686391979456, -0.022145217284560204, -0.016417060047388077, -0.002141206758096814, -0.004799729213118553, 0.023556699976325035, -0.01526594813913107, -0.008050937205553055, 0.0009575476869940758, 0.0020195862744003534, -0.008880012668669224, 0.004453710280358791, -0.004659266211092472, 0.01584150455892086, 0.008544271811842918, 0.00220629945397377, -0.004621580708771944, -0.011497423984110355, -0.026078185066580772, -0.022570032626390457, -0.008400382474064827, -0.019267436116933823, -0.009599458426237106, -0.004381765611469746, 0.017211876809597015, 0.028024114668369293, -0.005769267678260803, -0.0018996787257492542, 0.0018722711829468608, -0.021665586158633232, 0.006838158238679171, -0.004090561531484127, 0.002613985212519765, -0.017431136220693588, 0.023817071691155434, -0.009208901785314083, -0.010860200971364975, 0.0014037751825526357, 0.01604706048965454, 0.05865193530917168, 0.0005186002817936242, -0.0045016733929514885, -0.01630743034183979, -0.0030610691756010056, -0.008379827253520489, 0.01992521435022354, 0.005224544554948807, 0.02218632772564888, -0.002483799820765853, -0.00034195074113085866, 0.015690764412283897, -0.001760928425937891, 0.004546210169792175, -0.01903447136282921, -0.029353376477956772, 0.002903476357460022, -0.005214266944676638, -0.004152228124439716, -0.034451160579919815, 0.011168534867465496, 0.02085706777870655, -0.001952780643478036, -0.005388989113271236, 0.011682424694299698, -0.013827056623995304, 0.036177828907966614, 0.0072287144139409065, 0.008407234214246273, -0.011716683395206928, -0.01751335896551609, 0.030833378434181213, -0.025900037959218025, 0.00221315142698586, -0.032450418919324875, 0.003586949547752738, 0.010949275456368923, 0.028777819126844406, -0.025160036981105804, 0.017691507935523987, -0.01303224079310894, -0.010709459893405437, -0.01299798209220171, 0.015183725394308567, 0.0037205610424280167, 0.03203930705785751, 0.025146333500742912, 0.0012590296100825071, 0.006420194637030363, -0.03727412968873978, 0.014197058044373989, -0.02191225439310074, 0.011545387096703053, -0.006029638461768627, -0.015115207061171532, 0.006803898606449366, 0.029819302260875702, -0.0034910235553979874, -0.013491315767168999, 0.014895947650074959, 0.02466670237481594, -0.006403064820915461, 0.021418919786810875, -0.0021566234063357115, -0.033108197152614594, 0.010942423716187477, -0.01110001653432846, -0.013272056356072426, 0.007358899340033531, 0.008414085954427719, -0.0016153263859450817, -0.009065013378858566, 0.01891113817691803, -0.024694109335541725, -0.013052796944975853, -0.0016427338123321533, 0.008708716370165348, 0.0018928268691524863, 0.006430472247302532, 0.009023902006447315, 0.026900408789515495, -0.0017146783648058772, -0.046483028680086136, -0.014484835788607597, -0.009277421049773693, -0.001164816552773118, 0.03253263980150223, -0.01571817137300968, 0.024680405855178833, 0.024831147864460945, 0.0007755450787954032, 0.015814097598195076, -0.014025760814547539, -0.014443724416196346, -0.03406745567917824, 0.024351516738533974, -0.0038541723042726517, -0.001421761349774897, 0.016156690195202827, -0.030696339905261993, -0.039521537721157074, 0.015005577355623245, 0.0032957454677671194, 0.0036897275131195784, -0.01136723905801773, 0.012114091776311398, 0.0038610240444540977, -0.027585595846176147, -0.0007224431610666215, -0.6218201518058777, 0.002086391905322671, 0.020761141553521156, -0.01958262175321579, -0.0019390769302845001, 0.00996260717511177, 0.010216126218438148, 0.007955011911690235, -0.012908907607197762, 0.024077441543340683, 0.009147235192358494, 0.01110001653432846, 0.004059728235006332, -0.004494821187108755, -0.019966324791312218, -0.026160407811403275, 0.021830031648278236, -0.007468529511243105, -0.0126279816031456, 0.014758910052478313, -0.012580018490552902, 0.017897063866257668, 0.007310936693102121, 0.011442609131336212, 0.017390025779604912, -0.016965210437774658, 0.02559855580329895, -0.009709088131785393, -0.016088170930743217, 0.02632485330104828, -0.024008924141526222, 0.016266319900751114, 0.01649928279221058, -0.0024820868857204914, 0.04061783850193024, -0.010682052932679653, -0.013025389052927494, 0.018815211951732635, 0.02118595689535141, 0.020418548956513405, -0.03340967744588852, 0.007146491669118404, 0.008742976002395153, 0.021473735570907593, -0.0022268551401793957, -0.0030456525273621082, -0.01136038638651371, 0.006122138351202011, -0.012689648196101189, -0.01856854557991028, 0.011435757391154766, -0.021679291501641273, 0.0004762043827213347, 0.01156594231724739, 0.0054335263557732105, 0.00342421792447567, 0.029819302260875702, 0.005317044910043478, 0.009188346564769745, 0.006427046377211809, 0.012641685083508492, 0.02139151282608509, -0.003312875283882022, -0.05138896405696869, -0.03201190009713173, 0.010702608153223991, -0.02440633252263069, -0.023474479094147682, 0.0074959369376301765, 0.019884102046489716, 0.0109903858974576, 0.0023159293923527002, 0.0020538456737995148, -0.000960117147769779, -0.011250756680965424, 0.008804642595350742, 0.030120784416794777, 0.0034053754061460495, -0.004840840119868517, 0.014745206572115421, 0.004296117462217808, -0.0015862060245126486, -0.0038644501473754644, -0.02332373708486557, 0.041275616735219955, 0.0066600097343325615, -0.023967811837792397, -0.0166363213211298, -0.012114091776311398, -0.005711026955395937, 0.004810006823390722, 0.008859457448124886, -0.015567430295050144, -0.03414968028664589, 0.034643013030290604, 0.0351637564599514, 0.004854544065892696, -0.008119456470012665, 0.013991502113640308, -0.026434483006596565, -0.0258589256554842, -0.03028522990643978, 0.013326871208846569, 0.009585754945874214, 0.03428671509027481, 0.026777075603604317, -0.03467041999101639, -0.013929834589362144, 0.02739374339580536, -0.002900050487369299, 0.01610187441110611, -0.00728352926671505, -0.022364476695656776, -0.017431136220693588, -0.012874647974967957, -0.032368194311857224, 0.012100388295948505, -0.009482976980507374, -0.015334466472268105, -0.010503903962671757, -0.02184373512864113, 0.01510150358080864, 0.00564935989677906, -0.022679662331938744, 0.0022045865189284086, 0.043468210846185684, 0.011524831876158714, -0.0021429196931421757, 0.011607053689658642, 0.0031946806702762842, 0.008653901517391205, -0.015348169952630997, -0.0013421084731817245, -0.0067970468662679195, 0.018828915432095528, -0.011771498247981071, 0.010983534157276154, 0.004936766345053911, 0.007680937182158232, -0.04379710182547569, 0.011147978715598583, -0.0009746773284859955, 0.0148685397580266, -0.005985101219266653, 0.012114091776311398, 0.004141950514167547, -0.014786317944526672, 0.017006320878863335, 0.00576584180817008, -0.016417060047388077, -0.03502671793103218, -0.027092261239886284, 0.0034516253508627415, 0.02899707853794098, -0.006214638706296682, 0.004292691592127085, 0.010730015113949776, -0.03513634577393532, -0.011106868274509907, -0.024899665266275406, -0.0006295148050412536, 0.017321506515145302, -0.003833616618067026, -0.009003346785902977, -0.007598714902997017, -0.012902055867016315, -0.04335858300328255, -0.0001961345406016335, -0.011257609352469444, -0.016430765390396118, -0.002288521733134985, -0.020624104887247086, 0.009085568599402905, 0.034040048718452454, -0.02553003653883934, 0.008016678504645824, -0.006701120641082525, -0.0026156981475651264, -0.012305944226682186, -0.0030062543228268623, 0.02373484894633293, 0.026653742417693138, -0.009003346785902977, -0.006046767812222242, 0.036917831748723984, 0.0005254521383903921, 0.01703372783958912, 0.015293355099856853, -0.030504489317536354, 0.009750199504196644, -0.008119456470012665, -0.005909730680286884, -0.01570446789264679, 0.001783197047188878, -0.0193085465580225, -0.00598167534917593, -0.020062251016497612, -0.012634833343327045, -0.014155946671962738, 0.034643013030290604, 0.025571148842573166, -0.001370372367091477, -0.015444096177816391, 0.003088476601988077, 0.00490935891866684, -0.032834120094776154, 0.017006320878863335, -0.01858224906027317, 0.017225580289959908, -0.00855797529220581, -0.0010620385874062777, -0.011141126975417137, 0.0017849099822342396, -0.030230414122343063, -0.00011937227827729657, 0.016074467450380325, -0.0038815797306597233, 0.015868911519646645, -0.008311307989060879, 0.005872045643627644, 0.00447769183665514, 0.007482232991605997, 0.03941190987825394, 0.008208530023694038, -0.0005682762712240219, 0.012004462070763111, 0.0044639878906309605, 0.020884474739432335, 0.027284113690257072, -0.028723005205392838, -0.018157433718442917, 0.01656780205667019, -0.012134646996855736, 0.009620013646781445, 0.016745951026678085, 0.026557816192507744, 0.040535613894462585, -0.009976310655474663, 0.03214893490076065, -0.011141126975417137, 0.012223721481859684, 0.005275933537632227, 0.030312636867165565, -0.025749295949935913, 0.027777448296546936, 0.00962686538696289, 0.028394116088747978, -0.004775747656822205, -0.03080597147345543, 0.03182004764676094, -0.00905816163867712, 0.010915015824139118, -0.008325012400746346, -0.02487225830554962, 0.02773633599281311, -0.009085568599402905, 0.010709459893405437, 0.013491315767168999, 0.023625219240784645, 0.026119297370314598, -0.017390025779604912, 0.00981871783733368, -0.0016427338123321533, -0.0101270517334342, 0.01885632425546646, -0.0010783117031678557, -0.008057789877057076, -0.027229297906160355, -0.011168534867465496, -0.015992244705557823, -0.0011528257746249437, -0.03593116253614426, -0.008742976002395153, -0.02759929932653904, -0.0030833377968519926, -0.01510150358080864, 0.002619124250486493, 0.020007437095046043, 0.0020915307104587555, 0.014991873875260353, -0.018404100090265274, -0.032368194311857224, 0.015170021913945675, 0.008092048577964306, -0.008167419582605362, 0.0011588211636990309, -0.00019228037854190916, 0.00223884591832757, 0.010599830187857151, 0.007276677060872316, -0.014128538779914379, 0.002194308675825596, 0.0012033581733703613, 0.02640707604587078, -0.01239501778036356, 0.01910299062728882, 0.04577043652534485, -0.011154831387102604, -0.013806501403450966, 0.011771498247981071, 0.010435385629534721, 0.006433898117393255, -0.009414457716047764, -0.017855951562523842, 0.04538673162460327, -0.01523854024708271, -0.009236309677362442, -0.02177521586418152, 0.013244648464024067, -0.021487439051270485, 0.0005408688448369503, -0.023844478651881218, -0.020075954496860504, -0.013189833611249924, -0.03669857233762741, -0.004840840119868517, -0.008078345097601414, -0.004981303587555885, 0.03203930705785751, -0.004169357940554619, -0.010147606953978539, -0.021706698462367058, -0.005005285143852234, 0.012257981114089489, 0.0725749209523201, 0.008838901296257973, -0.010846497491002083, 0.01744483970105648, -0.017814841121435165, 0.0021669012494385242, -0.028421523049473763, -0.04176894947886467, 0.028860041871666908, -0.009174643084406853, -0.01596483774483204, 0.006269453559070826, 0.02199447713792324, 0.0016264606965705752, 0.01885632425546646, 0.009784458205103874, 0.013977797701954842, -0.013950390741229057, -0.026914112269878387, 0.008975938893854618, -0.019020767882466316, 0.010401125997304916, 0.033848196268081665, 0.005073803476989269, 0.0309430081397295, 0.02799670770764351, 0.03195708245038986, 0.003761672182008624, 0.006050194147974253, -0.03316301107406616, -0.02078854851424694, 0.00915408693253994, -0.009455569088459015, 0.014841132797300816, -0.020555585622787476, 0.03924746438860893, 0.00753704784438014, -0.0297370795160532, -0.02553003653883934, 0.012004462070763111, -0.014909651130437851, 0.016787061467766762, 0.008489456959068775, -0.010860200971364975, 0.019801881164312363, -0.021802624687552452, -0.004717506933957338, 0.03804153576493263, -0.016965210437774658, -0.009832421317696571, 0.00026079898816533387, 0.008277049288153648, -0.008660753257572651, 0.02946300618350506, -0.005858341697603464, 0.015087800100445747, -0.01560854073613882, -0.006639454048126936, -0.01156594231724739, -0.022145217284560204, -0.039932649582624435, -0.021021511405706406, -0.011271312832832336, -0.011237053200602531, -0.010216126218438148, -0.0124977957457304, -0.012175758369266987, 0.007420566398650408, -0.020665215328335762, 0.011819461360573769, 0.00037128524854779243, -0.043331172317266464, -0.025954851880669594, -0.005991952959448099, 0.022775588557124138, 0.009743347764015198, 0.008277049288153648, 0.012902055867016315, 0.0006813320214860141, 0.010092792101204395, -0.014827429316937923, -0.042070429772138596, 0.012312795966863632, -0.011435757391154766, -0.012778722681105137, -0.029901525005698204, -0.010709459893405437, 0.00024088576901704073, -0.012682796455919743, 0.023762255907058716, 0.025379296392202377, -0.012511499226093292, -0.023501886054873466, -0.006803898606449366, 0.0020744011271744967, 0.03763042390346527, 0.020555585622787476, 0.013861316256225109, 0.02799670770764351, -0.0315459705889225, 0.012840389274060726, -0.005810378585010767, -0.012278536334633827, -0.03360152989625931, 0.002108660526573658, 0.015855208039283752, 0.004015190992504358, -0.012723906897008419, 0.008071493357419968, -0.028174854815006256, 0.0021035214886069298, -0.014635576866567135, -0.017595581710338593, -0.00598167534917593, 0.017020024359226227, -0.0021018085535615683, 0.009106124751269817, 0.02613300085067749, 0.008599086664617062, -0.010832793079316616, 0.016718542203307152, -0.03066893294453621, 0.044811174273490906, -0.0074548255652189255, -0.010120199993252754, 0.0060913050547242165, 0.006118712481111288, -0.029188930988311768, -0.03927487134933472, 0.009236309677362442, 0.013107611797749996, 0.009873532690107822, 0.006845009978860617, -0.004453710280358791, -0.0201718807220459, -0.0258589256554842, -0.014012057334184647, -0.005460933782160282, -0.005221118684858084, 0.012374462559819221, -0.0063619534485042095, 0.007221862208098173, 0.020473362877964973, -0.005854915827512741, -0.001978475134819746, -0.027434853836894035, -0.024981888011097908, -0.008434642106294632, 0.014854836277663708, 0.027777448296546936, -0.020226696506142616, -0.016430765390396118, -0.02954522892832756, -0.02159706875681877, 0.01584150455892086, -0.01316242665052414, -0.012141498737037182, -0.0008551980135962367, 0.045140065252780914, 0.028147447854280472, 0.03214893490076065, 0.015800394117832184, 0.018664471805095673, 0.0009575476869940758, -0.013381686061620712, -0.01470409519970417, -0.010730015113949776, -0.028366707265377045, -0.00598167534917593, 0.018390396609902382, 0.006536676082760096, 0.0014859975781291723, -0.006310564931482077, 0.0022302810102701187, -0.007872789166867733, 0.001676136744208634, 0.0031158842612057924, -0.0038850056007504463, -0.03140893578529358, -0.049415625631809235, -0.004148802254348993, 0.024625591933727264, 0.0008290752884931862, -0.007502788677811623, -0.02613300085067749, 0.0022045865189284086, 0.025557445362210274, -0.013409093953669071, 0.024817442521452904, 0.010901312343776226, 0.04492080584168434, 0.007338344119489193, 0.008215382695198059, -0.001005510683171451, 0.006307138595730066, -0.022844107821583748, -0.024036331102252007, -0.03974079713225365, -0.014827429316937923, 0.006879269145429134, 0.0037582460790872574, 0.023227810859680176, -0.0018277341732755303, -0.004936766345053911, 0.006550380028784275, 0.011661868542432785, -0.029572635889053345, -0.0021326420828700066, 0.015512615442276001, -0.03006596863269806, 0.005587693303823471, -0.03256004676222801, -0.004138524644076824, 0.008530568331480026, -0.0043098209425807, 0.007023158483207226, 0.006896398961544037, 0.017348913475871086, -0.025447813794016838, -0.018760398030281067, 0.02291262522339821, -0.028969671577215195, 0.0320667140185833, 0.028229670599102974, 0.028174854815006256, 0.022570032626390457, 0.0060947309248149395, -0.020281510427594185, -0.017020024359226227, 0.006906676571816206, 0.001973336096853018, 0.015416689217090607, 0.03595856949687004, -0.01623891294002533, -0.006156397983431816, -0.001647016266360879, -0.013128167018294334, -0.007201306521892548, -0.03908301889896393, 0.011977054178714752, 0.01008594036102295, 0.0022731050848960876, -0.03804153576493263, -0.017061136662960052, -0.015183725394308567, 0.017622988671064377, -0.014416317455470562, 0.008037233725190163, 0.002922319108620286, -0.0011639599688351154, 0.01153168361634016, 0.02373484894633293, -0.0009618300828151405, 0.007235566154122353, 0.008626493625342846, 0.0003522285260260105, 0.005478063598275185, -0.008996494114398956, -0.006341398227959871, -0.007119084242731333, 0.02466670237481594, 0.03754820302128792, -0.02794189192354679, -0.002622550120577216, 0.005673341453075409, 0.012045573443174362, -0.0096953846514225, -0.004762043710798025, -0.02513262815773487, 0.03132671117782593, -0.00802353024482727, -0.015457800589501858, -0.00037770887138321996, 0.024173367768526077, 0.007893344387412071, -0.01710224710404873, -0.021268179640173912, -0.018198544159531593, 0.0010988673893734813, -0.0011528257746249437, 0.022940034046769142, -0.0172392837703228, -0.020733734592795372, 0.0065229726023972034, 0.002661948325112462, -0.02480373904109001, 0.014238168485462666, 0.008626493625342846, 0.01963743567466736, -0.0223233662545681, 0.010736867785453796, 0.0033385695423930883, -0.020034844055771828, -0.005570563487708569, -0.0020281511824578047, -0.01863706484436989, 0.015156318433582783, 0.02732522413134575, -0.018623359501361847, 0.010962978936731815, 0.021268179640173912, 0.011154831387102604, -0.04450969398021698, 0.029956338927149773, -0.03532819822430611, -0.0008599086431786418, 0.0026499575469642878, -0.00307305995374918, -0.028695596382021904, -0.00738630723208189, 0.03461560606956482, -0.0023313460405915976, 0.00016016226436477154, -0.0023381977807730436, 0.025173740461468697, 0.015745578333735466, 0.005255377851426601, -0.01190168410539627, -0.0008577674743719399, 0.007406862452626228, -0.004186487756669521, 0.00458046980202198, 0.010312052443623543, -0.006642879918217659, 0.014238168485462666, 0.012717055156826973, -0.006451027933508158, -0.00399120943620801, -0.03804153576493263, -0.020541882142424583, -0.012943167239427567, 0.0026739391032606363, 0.00781797431409359, 0.005704174749553204, 0.0019904659129679203, -0.016211504116654396, -0.017664099112153053, 0.025776704773306847, -0.03554745763540268, 0.0010406265500932932, 0.02946300618350506, -0.00377537589520216, 0.005416396539658308, 0.030175600200891495, -0.022268550470471382, -0.030257821083068848, -0.02045965939760208, -0.020034844055771828, -0.04330376535654068, -0.018486322835087776, 0.00255745742470026, 0.04185117036104202, 0.011840017512440681, -0.015334466472268105, -0.03143634274601936, -0.021268179640173912, -0.042810432612895966, -0.018815211951732635, -0.03195708245038986, 0.017417432740330696, 0.03480745851993561, 0.016362246125936508, -0.005118340719491243, 0.019692251458764076, -0.01804780401289463, -0.001945928786881268, -0.04163191094994545, -0.007728900294750929, -0.017855951562523842, -0.011970202438533306, 0.026365963742136955, -0.020884474739432335, -0.042070429772138596, 0.0041076913475990295, -0.005995378829538822, -0.006807324476540089, 0.003492736490443349, -0.012840389274060726, 1.7062741335394094e-06, 0.006612046621739864, 0.006344824098050594, 0.005365007556974888, 0.024776332080364227, 0.03028522990643978, 0.0070642693899571896, -0.02894226461648941, 0.0074342698790133, 0.025420406833291054, -0.006697694770991802, -0.012908907607197762, 0.0077220480889081955, 0.003765098052099347, -0.027845965698361397, -0.006553805898874998, -0.012257981114089489, -0.016691135242581367, -0.017527062445878983, -0.0014800021890550852, 0.00895538367331028, 0.01765039563179016, 0.013785946182906628, 0.026585223153233528, -0.014484835788607597, -0.004494821187108755, -0.00415908033028245, 0.016293726861476898, 0.012031869031488895, -0.0037445423658937216, 0.027832262217998505, -0.014114835299551487, 0.007955011911690235, -0.0026550963521003723, 0.021624475717544556, -0.006276305299252272, -0.022570032626390457, -0.015800394117832184, -0.00959260668605566, -0.00019838281150441617, -0.006029638461768627, 0.005488341208547354, 0.0013206963194534183, 0.0033762548118829727, -0.001551946741528809, -0.007852233946323395, 0.012107240036129951, -0.006272879429161549, 0.013580390252172947, -0.03047708049416542, -0.02132299356162548, -0.0016461597988381982, 0.02084336429834366, -0.0475793294608593, 0.0024392628110945225, 0.02406373806297779, 0.006231768522411585, 0.013916131108999252, 0.20610399544239044, 0.005341026466339827, 0.013943539001047611, 0.043468210846185684, 0.02091188170015812, -0.005861767567694187, 0.023556699976325035, 0.006995751056820154, -0.014621873386204243, 0.00898964237421751, -0.01079168263822794, -0.003062782110646367, -0.010668348520994186, -0.002588290721178055, 0.02479003556072712, -0.022227440029382706, -0.02239188365638256, -0.0017437988426536322, -0.02037743665277958, 0.011339831165969372, 0.0030028284527361393, -0.002853800542652607, -0.01944558322429657, -0.005334174260497093, 0.030970415100455284, -0.003600653260946274, -0.01711595058441162, 0.009133531711995602, 0.01136038638651371, 0.014690391719341278, -0.00829075276851654, 0.007365751545876265, 0.014717798680067062, -0.005628804676234722, -0.01591002382338047, -0.016595209017395973, 0.00909242033958435, -0.0202541034668684, -0.013374834321439266, 0.032505232840776443, 0.0022045865189284086, -0.018349286168813705, 0.013820204883813858, -0.022556329146027565, 0.02011706680059433, -0.005365007556974888, -0.012264832854270935, 0.014320391230285168, -0.019472992047667503, 0.014964465983211994, -0.009455569088459015, 0.0027972725220024586, 0.029106708243489265, 0.029161524027585983, 0.0008376400801353157, -0.005519174505025148, -0.005553434137254953, -0.018157433718442917, -0.010435385629534721, -0.028448930010199547, -0.022295957431197166, 0.007941307500004768, -0.01146316435188055, 0.011216497980058193, -0.03160078823566437, 0.015279651619493961, -0.007886492647230625, 0.027297817170619965, -0.010435385629534721, 0.013004833832383156, -0.013073352165520191, -0.01329946331679821, -0.024077441543340683, 0.0013840760802850127, -0.02833930030465126, -0.006242046132683754, 0.010572422295808792, 0.01830817386507988, 0.019335953518748283, 0.01918521337211132, -0.010545015335083008, 0.0014328955439850688, -0.028147447854280472, -0.013792797923088074, 0.007523344364017248, -0.02479003556072712, 0.030970415100455284, -0.020199287682771683, -0.015293355099856853, -0.020665215328335762, -0.018130026757717133, 0.0028675042558461428, -0.005669915582984686, -0.016225209459662437, 0.00457704346626997, 0.0009772467892616987, 0.0083181606605649, 0.029435597360134125, -0.008736123330891132, -0.02118595689535141, -0.005512322764843702, 0.045688215643167496, 0.015224836766719818, 0.027174483984708786, -0.022268550470471382, 0.012223721481859684, -0.0048648216761648655, 0.023419663310050964, -0.0014954188372939825, -0.004446858074516058, -0.0018277341732755303, -0.04593488201498985, 0.013463908806443214, -0.006704546976834536, -0.003062782110646367, 0.012806129641830921, 0.018088914453983307, -0.018952250480651855, 0.003580097807571292, -0.014292983338236809, 0.02799670770764351, 0.011887980625033379, 0.009345939382910728, 0.02065151184797287, -0.044016361236572266, -0.032724492251873016, -0.00018949680088553578, 0.020692622289061546, -0.03911042585968971, -0.02932596765458584, 0.01825335994362831, -0.018815211951732635, 0.013484464026987553, -0.014375206083059311, -0.013224093243479729, 0.0043372283689677715, 0.010730015113949776, 0.006697694770991802, -0.026434483006596565, -0.022953737527132034, 0.0019664843566715717, 0.012552610598504543, 0.02359781228005886, 0.01276501826941967, 0.01771891489624977, -0.007680937182158232, 0.008345567621290684, -0.0027544484473764896, -0.017321506515145302, -0.016266319900751114, 0.006430472247302532, 0.007352047599852085, 0.020336326211690903, -0.0006226629484444857, 0.04324895143508911, -0.004398895427584648, -0.024488553404808044, -0.03467041999101639, 0.013683168217539787, 0.016471875831484795, -0.02880522608757019, 0.007125936448574066, 0.04873044043779373, 0.0014465993735939264, -0.020637808367609978, -0.007112232502549887, -0.17453062534332275, 0.014950762502849102, 1.2325322131800931e-05, -0.004820284899324179, 0.023419663310050964, 0.006495565176010132, 0.014635576866567135, 0.004155653994530439, 0.00010786329221446067, -0.0057350085116922855, 0.010545015335083008, 0.004453710280358791, -0.00938705075532198, 0.007865937426686287, 0.009620013646781445, -0.002333058975636959, -0.04530451074242592, 0.019952621310949326, 0.05695267394185066, 0.0021497716661542654, 0.02306336723268032, -0.03521857038140297, -0.00781797431409359, 0.0031946806702762842, 0.027023741975426674, 0.00733149191364646, -0.0033694030717015266, 0.020350029692053795, -0.00517658144235611, -0.027777448296546936, -0.010168163105845451, -0.004655839875340462, 0.026242630556225777, -0.014073723927140236, 0.01992521435022354, 0.003095328575000167, -0.00467982143163681, -0.001884261961095035, -0.006838158238679171, 0.011237053200602531, 0.02045965939760208, 0.002554031554609537, 0.027380039915442467, 0.010901312343776226, -0.004683247301727533, 0.01216890662908554, 0.02125447615981102, -0.009277421049773693, 0.01229223981499672, -0.010031125508248806, 0.03867190703749657, -0.01510150358080864, 0.0034875976853072643, -0.0032392176799476147, 0.00928427278995514, 0.002708198269829154, 0.012881499715149403, 0.022871514782309532, -0.006307138595730066, -0.01449853926897049, 0.0038062091916799545, 0.0029822727665305138, 0.02632485330104828, 0.000972964393440634, -0.006379083264619112, -0.028257077559828758, 0.01076427474617958, -0.000907871697563678, 0.00544723030179739, 0.008695012889802456, 0.010181866586208344, 0.012545758858323097, -0.013710575178265572, 0.010147606953978539, 0.017760025337338448, 0.007310936693102121, -0.043331172317266464, -0.010942423716187477, 0.040864504873752594, 0.009674828499555588, 0.023022254928946495, 0.00879093911498785, -0.0038096350617706776, -0.007132788188755512, -0.01320353802293539, 0.01903447136282921, 0.0063927872106432915, 0.017664099112153053, -0.018362989649176598, 0.009894088841974735, 0.021761512383818626, -0.013361130841076374, 0.005580841563642025, 0.000618380552623421, 0.0262015201151371, -0.0074548255652189255, 0.04138524457812309, -0.01095612719655037, 0.02847633697092533, -0.016951506957411766, 0.015128910541534424, 0.019075583666563034, -0.030175600200891495, 0.01470409519970417, 0.009400754235684872, 0.02265225537121296, 0.008695012889802456, 0.005642508156597614, 0.021679291501641273, -0.01825335994362831, -0.011470017023384571, 0.017828544601798058, 0.022748181596398354, 0.007571307476609945, -0.015594837255775928, 0.037657830864191055, 0.0030113933607935905, -0.026681149378418922, 0.012210018001496792, -0.006707972846925259, 0.045085251331329346, -0.02932596765458584, -0.01704743131995201, 0.00948982872068882, 0.0035424125380814075, 0.0027715780306607485, -0.10880756378173828, -0.022953737527132034, 0.033437084406614304, 0.009613161906599998, -0.007961863651871681, 0.015553725883364677, 0.007249269634485245, 0.03675338625907898, -0.01863706484436989, 0.021761512383818626, -0.016485579311847687, -0.022693365812301636, -0.003987783566117287, -0.009667976759374142, 0.00878408644348383, -0.008174271322786808, -0.007256121840327978, -0.008366122841835022, -0.01039427425712347, 0.028394116088747978, 0.007400010712444782, -0.009935199283063412, 0.018828915432095528, -0.013176130130887032, -0.01771891489624977, -0.024159664288163185, -0.023008551448583603, 0.007012880407273769, 0.013943539001047611, 0.026708556339144707, 0.028860041871666908, -0.010538163594901562, 0.022268550470471382, -0.012641685083508492, -0.03330004960298538, -0.012011313810944557, -0.021939661353826523, -0.01730780303478241, 0.020199287682771683, -0.05700749158859253, -0.005974823608994484, -0.0020230121444910765, -0.0025951426941901445, -0.025913741439580917, -0.009332235902547836, 0.00792075227946043, -0.003504727268591523, 0.036780793219804764, 0.021624475717544556, -0.02011706680059433, -0.008859457448124886, -0.024420036002993584, -0.006862139794975519, -0.029435597360134125, 0.028558559715747833, 0.005553434137254953, 0.015937430784106255, 0.009482976980507374, -0.011401497758924961, -0.0067525096237659454, 0.005899453070014715, -0.007030010223388672, -0.008016678504645824, 0.034177087247371674, -0.0008068067254498601, 0.01095612719655037, 0.010599830187857151, -0.011627609841525555, -0.007160195615142584, -0.0008115173550322652, -0.00996260717511177, 0.004871673882007599, -0.03014819137752056, 0.010853349231183529, -0.009373347274959087, -0.0046318587847054005, -0.011346682906150818, -0.028887448832392693, 0.01971965841948986, 0.004148802254348993, -0.006742232013493776, -0.016732245683670044, 0.010901312343776226, -0.02311818115413189, 0.027517076581716537, -0.014279279857873917, -0.002148058731108904, -0.01547150406986475, 0.03541042283177376, -0.03140893578529358, 0.016293726861476898, -0.009332235902547836, 0.01884262077510357, -0.01924002729356289, 0.01665002480149269, 0.01911669410765171, -0.028394116088747978, 0.007674084976315498, 0.01956891641020775, -0.0013943539233878255, -0.035574864596128464, -0.0022217161022126675, -0.045140065252780914, 0.02425559051334858, -0.005015562754124403, 0.007502788677811623, 0.0011022932594642043, -0.017691507935523987, 0.008140011690557003, -0.00885260570794344, -0.002668800065293908, 0.0024032904766499996, -0.022145217284560204, -0.000629943038802594, -0.014306687749922276, -0.023830775171518326, -0.024913368746638298, -0.00576584180817008, 0.007050565909594297, 0.0063139908015728, 0.02306336723268032, 0.0017326645320281386, -0.005090933293104172, -0.003919264767318964, 0.009407605975866318, 0.04316673055291176, -0.010921867564320564, 0.009935199283063412, -0.02520114742219448, 0.026749668642878532, -0.01985669508576393, -0.017472246661782265, 0.01825335994362831, 0.01169612817466259, 0.003393384627997875, 0.015060392208397388, -0.012011313810944557, -0.05144377797842026, 0.029791895300149918, 0.00726982532069087, 0.022679662331938744, 0.009846125729382038, -0.014895947650074959, -0.009010198526084423, 0.01956891641020775, -0.002766439225524664, -0.012422425672411919, -0.00845519732683897, -0.019404472783207893, -0.006615472491830587, 0.015581133775413036, 0.01473150309175253, 0.034040048718452454, 0.014375206083059311, -0.01796558126807213, -0.027297817170619965, 0.006142694037407637, -0.0017883359687402844, 0.026420779526233673, 0.014320391230285168, 0.0023827350232750177, -0.010277792811393738, 0.04522228613495827, 0.015786688774824142, 0.013991502113640308, -0.014320391230285168, 0.020733734592795372, -0.02152854949235916, -0.055966008454561234, -0.007797418627887964, 3.52763818227686e-05, -0.03256004676222801, 0.009373347274959087, -0.024447442963719368, 0.020473362877964973, 0.046208955347537994, 0.02125447615981102, 0.015951134264469147, -0.0023381977807730436, -0.013491315767168999, -0.003168986178934574, 0.0309430081397295, 0.02639337070286274, -0.01564965210855007, -0.02587263099849224, 0.0025437537115067244, 0.019760768860578537, 0.004844266455620527, -0.019431879743933678, 0.019281139597296715, 0.010675200261175632, 0.004919636528939009, 0.0035389866679906845, -0.007996122352778912, -0.014265576377511024, 0.017252987250685692, 0.02072002924978733, 0.04478376731276512, -0.01507409568876028, 0.018431508913636208, 0.01825335994362831, 0.028914857655763626, -0.007667233236134052, 0.021706698462367058, -0.007770011201500893, -0.006454453803598881, -0.015498911030590534, 0.01507409568876028, -0.03173782303929329, -0.021144844591617584, 0.00753704784438014, 0.027887078002095222, -0.006012508645653725, -0.0070985290221869946, -0.0054369522258639336, 0.012552610598504543, -0.012216869741678238, -0.008927975781261921, -0.02599596418440342, -0.019747065380215645, -0.019815584644675255, -0.004409173037856817, -0.002990837674587965, 0.009373347274959087, 0.01116168312728405, -0.010976682417094707, 0.01885632425546646, 0.017198173329234123, -0.00144146045204252, -0.01623891294002533, 0.016828171908855438, -0.019418176263570786, 0.013539278879761696, 0.012251128442585468, 0.024474849924445152, -0.013320019468665123, 0.007290381006896496, -0.01863706484436989, -0.017417432740330696, 0.010517607443034649, -0.0006179522606544197, 0.06665491312742233, 0.021199660375714302, -0.029901525005698204, 0.01039427425712347, -0.019870398566126823, 0.0016221782425418496, 0.018815211951732635, 0.008009826764464378, 0.009620013646781445, -0.024091146886348724, 0.014416317455470562, -0.004645562265068293, -0.024954481050372124, -0.021816328167915344, -0.011456312611699104, -0.011072608642280102, -0.008996494114398956, 0.005854915827512741, -0.015375577844679356, 0.028969671577215195, 0.028120040893554688, -0.004648988135159016, 0.029024487361311913, -0.004015190992504358, -0.02747596614062786, -0.017335209995508194, 0.04231709986925125, 0.022830404341220856, 0.0031244489364326, -0.02766781859099865, 0.020267806947231293, 0.00019281567074358463, -0.01153168361634016, -0.00916093960404396, -0.005358155816793442, -0.02151484601199627, 0.0039398204535245895, -0.019897807389497757, -0.01503298431634903, 0.01897965744137764, -0.0040700058452785015, 0.010250384919345379, -0.03132671117782593, -0.0074959369376301765, -0.0017240997403860092, 0.0007871076231822371, 0.013943539001047611, -0.013128167018294334, -0.009914644062519073], "87138cd6-39bb-4c54-82e7-8a9bcec1f852": [-0.010115236975252628, -0.024295538663864136, -0.005335398018360138, -0.024593643844127655, -0.006371989846229553, 0.006287300959229469, -0.01672096736729145, -0.01544724777340889, -0.020501479506492615, -0.05493257939815521, 0.002086733467876911, 0.009613879024982452, 0.010216863825917244, 0.0009146396769210696, 0.023347023874521255, 0.00477983895689249, 0.01897030510008335, 0.0013872034614905715, 0.021666796877980232, -0.02113833837211132, -0.014430981129407883, 0.004041352309286594, -0.030515089631080627, -0.004803551826626062, -0.03246632218360901, 0.015664050355553627, 0.046206239610910416, -0.015623400919139385, -0.01944456249475479, -0.0009010894573293626, 0.011070527136325836, -0.012378123588860035, -0.007086763624101877, -0.01672096736729145, -0.01911935582756996, -0.008706014603376389, 0.008204656653106213, -0.0037737356033176184, -0.011836114339530468, -0.006839472334831953, 0.02959367446601391, 0.002887889975681901, -0.00871956441551447, 0.007513595279306173, 0.0017903224797919393, 0.03306252881884575, 0.009302224032580853, -0.026192570105195045, -0.007696523331105709, 0.0019207432633265853, -0.0019478437025099993, 0.026558425277471542, -0.016504164785146713, 0.00509149394929409, -0.025799613445997238, 0.0064397407695651054, 0.005894344300031662, 0.008638263680040836, 0.017859186977148056, 0.005694478750228882, 0.02336057461798191, 0.004769676364958286, -0.008238531649112701, 0.010237189009785652, -0.020501479506492615, -0.013699269853532314, -0.004363169893622398, -0.02176164835691452, -0.016300911083817482, -0.013096285052597523, 0.011978392489254475, 0.027655992656946182, -0.01185644045472145, -0.002977660158649087, 0.005606402177363634, -0.015040741302073002, 0.03059639036655426, -0.015040741302073002, -0.016856471076607704, -0.002828607801347971, 0.01126700546592474, -0.011869990266859531, -0.005653828382492065, 0.002352656563743949, 0.024268439039587975, 0.045664232224226, -0.018509596586227417, 0.00930899940431118, -0.013123385608196259, 0.0098577830940485, -0.009031219407916069, 0.031355202198028564, 0.014620684087276459, 0.025000151246786118, -0.0012525481870397925, 0.012601702474057674, 0.022805016487836838, 0.008929593488574028, 0.0038516493514180183, -0.02075893245637417, -0.033577438443899155, 0.014580033719539642, -0.008895717561244965, -0.012594927102327347, -0.03092159517109394, 0.0008087785681709647, 0.02653132565319538, -0.0033231908455491066, -0.004901790991425514, 0.023170871660113335, -0.010724997147917747, 0.04880788177251816, -0.007059663068503141, 0.005548813845962286, -0.015813102945685387, -0.015189793892204762, 0.032954126596450806, -0.03024408407509327, -0.002122302772477269, -0.0321953147649765, 0.011185704730451107, 0.01302853412926197, 0.02395678497850895, -0.02298116870224476, 0.014701985754072666, 0.0055217137560248375, 0.0034722432028502226, -0.00469176284968853, 0.005660603288561106, -0.007052888162434101, 0.03566417098045349, 0.020081421360373497, -0.006453291047364473, -0.00481710210442543, -0.0479135699570179, 0.01918710768222809, -0.02051502838730812, 0.004139591474086046, -0.0057249669916927814, -0.013333413749933243, 0.006456678733229637, 0.019525863230228424, -0.008516311645507812, -0.03376714140176773, 0.01071822177618742, 0.026639727875590324, -0.015393046662211418, 0.021368691697716713, 0.016599016264081, -0.025637011975049973, 0.007181615103036165, -0.010887599550187588, -0.0006406712345778942, 0.005691091064363718, 0.01699197292327881, 0.004173466935753822, 0.012486524879932404, 0.03785930573940277, -0.0082995081320405, -0.004762901458889246, -0.0020968960598111153, 0.01546079758554697, -0.008150455541908741, -0.014566483907401562, -0.009336099959909916, 0.023916132748126984, -0.00023204747412819415, -0.030460888519883156, 0.0016421169275417924, -0.009742606431245804, 0.0037567976396530867, 0.03395684435963631, -0.008028503507375717, 0.02710043452680111, 0.024796897545456886, -0.01046754326671362, 0.014701985754072666, -0.01737137883901596, -0.009878108277916908, -0.02241205982863903, 0.03149070590734482, -0.002034226432442665, -0.0038956874050199986, 0.023170871660113335, -0.028211552649736404, -0.03146360442042351, 0.006040009204298258, 0.009004119783639908, 0.006073884665966034, -0.006205999292433262, 0.01002038549631834, 0.015013640746474266, -0.021815849468111992, -0.004712088033556938, -0.6252612471580505, 0.007418743800371885, 0.02128739096224308, -0.02962077409029007, 0.006825922057032585, 0.016300911083817482, 0.0104810930788517, 0.007608447223901749, -0.002489852486178279, 0.02330637350678444, 0.011687062680721283, 0.0033740040380507708, -0.0062127746641635895, -0.006199224386364222, -0.00987133290618658, -0.023265723139047623, 0.018672199919819832, -0.007073213346302509, -0.010250739753246307, 0.018387645483016968, -0.018929652869701385, 0.03029828518629074, -0.003265602281317115, 0.01018298789858818, 0.012832055799663067, -0.005172795616090298, 0.0010933331213891506, -0.00414975406602025, -0.005067781079560518, 0.012120669707655907, -0.03498665988445282, 0.014336129650473595, 0.026490675285458565, -0.0033231908455491066, 0.04647724702954292, -0.00035950419260188937, -0.007777824532240629, 0.03628748282790184, 0.019349711015820503, 0.03178881108760834, -0.019607163965702057, -0.01088082417845726, 0.010196538642048836, 0.013258887454867363, -0.0017970976186916232, 0.0005470900214277208, -0.014417431317269802, 0.0010467543033882976, -0.022249456495046616, -0.0030843683052808046, -0.0006766639999113977, -0.018157290294766426, 0.01063014566898346, -0.005430249497294426, 0.010440442711114883, 0.013631518930196762, 0.030840294435620308, -0.002074877033010125, 0.002212072955444455, 0.004552872851490974, 0.008130130358040333, 0.014593583531677723, -0.00011009551235474646, -0.03899752348661423, -0.03086739405989647, 0.017330728471279144, -0.022777915000915527, -0.03395684435963631, 0.01746623031795025, 0.005694478750228882, 0.009254798293113708, -0.005494613200426102, -0.0015735189663246274, -0.0036450084298849106, -0.0086111631244421, 0.021178988739848137, 0.04536612704396248, 0.004227667581290007, -0.002239173511043191, 0.011680287308990955, 0.003097918350249529, -0.0008075082441791892, -0.014336129650473595, -0.019173556938767433, 0.03523056581616402, 0.015176243148744106, -0.01903805509209633, -0.017750784754753113, 0.0034315926022827625, -0.004437696188688278, -0.0013482465874403715, 0.010996001772582531, -0.005680928472429514, -0.04699215292930603, 0.026070617139339447, 0.025067901238799095, -0.006846247240900993, -0.0046477243304252625, 0.0034756306558847427, -0.02585381455719471, -0.020352426916360855, -0.021029938012361526, 0.015758901834487915, 0.005911282263696194, 0.030433788895606995, 0.006958036683499813, -0.02196490205824375, -0.006815759465098381, 0.00876021571457386, -0.015230444259941578, 0.010203314013779163, -0.011321206577122211, -0.011585435830056667, -0.022452710196375847, -0.002328943694010377, -0.02959367446601391, 0.01746623031795025, -0.003319803159683943, -0.014783287420868874, -0.022750815376639366, -0.01039301697164774, 0.020406628027558327, -0.002892971271649003, -0.012804955244064331, -0.01298788283020258, 0.03189720958471298, 0.004969542380422354, -0.007439069449901581, 0.009187047369778156, 0.01466133538633585, 0.013827996328473091, -0.016233161091804504, 0.0037263098638504744, -0.010196538642048836, 0.011443158611655235, 0.004447858780622482, 0.023252172395586967, 0.017899837344884872, 0.007452619727700949, -0.03715469688177109, 0.01669386774301529, -0.0015277869533747435, 0.023170871660113335, -0.004878078121691942, 0.011937741190195084, -0.0035162814892828465, -0.022628862410783768, 0.008590837940573692, 0.007960752584040165, -0.014322579838335514, -0.03241211920976639, -0.0334419347345829, -0.010521743446588516, 0.025772513821721077, -0.008401134982705116, 0.01743912883102894, 0.011226355098187923, -0.023048918694257736, -0.01046754326671362, -0.03506796061992645, -0.009688405320048332, 0.013929623179137707, -0.020406628027558327, 0.003114856081083417, -0.01056916918605566, -0.011084077879786491, -0.026815880089998245, 0.012764304876327515, 0.00027079263236373663, -0.018753500655293465, -0.01841474510729313, -0.020880885422229767, 0.01924130879342556, 0.03365873917937279, -0.01612475886940956, 0.01953941397368908, -0.005409924313426018, 0.01769658364355564, -0.004783226642757654, -0.0014049881137907505, 0.008929593488574028, 0.02261531352996826, -0.012893031351268291, -0.007344217970967293, 0.02872646041214466, 0.029105866327881813, 0.007527145557105541, 0.03501376137137413, -0.026937831193208694, -0.002074877033010125, 0.0012627108953893185, 0.002455976791679859, -0.0070461127907037735, 0.006991912145167589, -0.018604448065161705, -0.00442414591088891, -0.025366006419062614, -0.005806268192827702, -0.008672138676047325, 0.0311926007270813, 0.009485152550041676, 0.009512252174317837, -0.01924130879342556, 0.01071822177618742, 0.014322579838335514, -0.033604539930820465, 0.015935055911540985, -0.014566483907401562, 0.014065125957131386, -0.005372661165893078, -0.004952604416757822, -0.008177556097507477, 0.008218206465244293, -0.04330649599432945, 0.0034502241760492325, 0.015325295738875866, -0.009241248480975628, 0.009248022921383381, 0.00014873480540700257, 0.002369594294577837, 0.005264259409159422, 0.0008515464724041522, 0.019024504348635674, 0.01731717772781849, -0.009905208833515644, 0.012093569152057171, -0.014078675769269466, 0.003936338238418102, 0.009437725879251957, -0.036693986505270004, -0.00414297915995121, 0.007893001660704613, 0.0015379496617242694, 0.00426154350861907, 0.021178988739848137, 0.019010955467820168, 0.042086973786354065, -0.02223590575158596, 0.02430908940732479, -0.009600329212844372, 0.0040752277709543705, 0.011910640634596348, 0.035826776176691055, -0.03284572809934616, 0.022818565368652344, 0.017777884379029274, 0.028184451162815094, -0.0016903895884752274, -0.02834705449640751, 0.02508145198225975, -0.009424176067113876, 0.02063698135316372, -0.013231786899268627, -0.021449994295835495, 0.029512373730540276, -0.007337442599236965, 0.0037466350477188826, 0.01080629788339138, 0.03341483697295189, 0.014471632428467274, -0.021815849468111992, 0.01859089732170105, -0.007662647869437933, 0.002388225868344307, 0.01911935582756996, -0.0035704821348190308, -0.00970873050391674, -0.019485212862491608, -0.016964871436357498, -0.008252082392573357, -0.017452679574489594, -0.04081325605511665, -0.025338906794786453, -0.02605706825852394, -0.0037534101866185665, 0.0005373508320190012, -0.012371348217129707, 0.029891779646277428, -0.006209386978298426, 0.008001402951776981, -0.020921535789966583, -0.01651771552860737, 0.011687062680721283, -0.0032198703847825527, -0.017764335498213768, -0.008401134982705116, -0.015582749620079994, -0.006537979934364557, 0.01498654019087553, 0.007601671852171421, -0.010664020664989948, 0.0038821373600512743, -0.009363200515508652, 0.021992003545165062, -0.018604448065161705, 0.0234554260969162, 0.04000024124979973, -0.01126700546592474, -0.01420062780380249, 0.002764244331046939, 0.002086733467876911, 0.005216833669692278, -0.014593583531677723, -0.020420176908373833, 0.05512228235602379, -0.006460065953433514, -0.002776100765913725, -0.014810387045145035, 0.028482556343078613, -0.01926840841770172, 0.004979704972356558, -0.005941770039498806, -0.022100403904914856, -0.01275075413286686, -0.016666768118739128, -0.007581346668303013, -0.007926876656711102, 0.0031063873320817947, 0.032303716987371445, -0.01341471541672945, -0.011863214895129204, -0.02674812823534012, -0.003055573906749487, 0.024038085713982582, 0.05447187274694443, 0.005450574681162834, -0.01181578915566206, 0.017954038456082344, -0.03127390146255493, -0.014010924845933914, -0.01388897281140089, -0.03192431107163429, 0.019552962854504585, -0.013956723734736443, -0.007147739641368389, -0.0029048279393464327, 0.006670094560831785, -0.003170750802382827, 0.01737137883901596, 0.01856379769742489, 0.008584062568843365, -0.01388897281140089, -0.027940547093749046, 0.0007926877005957067, -0.005491225514560938, 0.0005462431581690907, 0.0346885547041893, 0.016178959980607033, 0.045284826308488846, 0.02241205982863903, 0.04371299967169762, -0.0018191166454926133, 0.013204686343669891, -0.018496045842766762, -0.017452679574489594, 0.00813690572977066, -0.00782525073736906, 0.0086111631244421, -0.00017827004194259644, 0.036992091685533524, 0.010928249917924404, -0.020027220249176025, -0.016978422179818153, 0.0046477243304252625, -0.00492211664095521, 0.00394988851621747, 0.008055604062974453, -0.015067841857671738, 0.011673511937260628, -0.04563713073730469, 0.008441785350441933, 0.03460725396871567, -0.016680316999554634, -0.01514914259314537, -0.0004878078179899603, 0.004722250625491142, -0.01894320361316204, 0.016775168478488922, 0.007838800549507141, 0.004800164606422186, 0.008001402951776981, -0.002818445209413767, -0.011517684906721115, -0.03639588505029678, -0.032601822167634964, -0.01348924171179533, -0.006883510388433933, -0.004485121928155422, -0.010745322331786156, -0.018157290294766426, -0.0012313759652897716, 0.007791374810039997, -0.03406524658203125, 0.016002805903553963, 0.01189031545072794, -0.039864737540483475, -0.04818457365036011, 0.002444120356813073, 0.02695138193666935, 0.016287360340356827, 0.014756186865270138, 0.012832055799663067, -0.007886226288974285, 0.00044715715921483934, -0.017005521804094315, -0.04951249435544014, 0.00461723655462265, -0.012418773956596851, -0.023347023874521255, -0.02149064466357231, -0.010785972699522972, 0.005491225514560938, -0.006785271223634481, 0.01326566282659769, 0.02203265391290188, -0.026897180825471878, -0.01956651359796524, -0.00821143202483654, 0.0092344731092453, 0.04132816195487976, 0.021029938012361526, 0.020501479506492615, 0.02443104237318039, -0.033550336956977844, 0.013184361159801483, -0.012974333018064499, -0.00555897643789649, -0.029431071132421494, 0.01802178844809532, -0.002223929390311241, 0.016761619597673416, -0.01604345813393593, 0.01306240912526846, -0.030027281492948532, -0.0004297959676478058, -0.01627381145954132, -0.002977660158649087, -0.012019042856991291, 0.015907954424619675, -0.0010179600212723017, -0.009756156243383884, 0.03907882794737816, 0.00026825195527635515, -0.026097718626260757, 0.03089449554681778, -0.043089691549539566, 0.04073195159435272, 0.014607134275138378, -0.002298455685377121, 0.0017632220406085253, 0.022845666855573654, -0.01669386774301529, -0.027439190074801445, 0.009573228657245636, 0.017981138080358505, 0.016260260716080666, -0.0037805105093866587, -9.882131416816264e-05, -0.013367289677262306, -0.015813102945685387, -0.0017530593322589993, 0.007947202771902084, -0.02300826832652092, 0.014281928539276123, -0.007472944911569357, -0.0037466350477188826, 0.011958066374063492, -0.004319131840020418, 0.0019512312719598413, -0.030487988144159317, -0.026490675285458565, -0.011443158611655235, 0.01264235284179449, 0.02813025191426277, -0.013943173922598362, -0.022574661299586296, -0.02573186345398426, -0.025162752717733383, 0.016328012570738792, 0.008001402951776981, -0.008401134982705116, 0.002593172714114189, 0.04861817881464958, 0.0111044030636549, 0.0349324606359005, 0.02502725087106228, 0.017100373283028603, 0.010128787718713284, -0.022805016487836838, -0.005619952455163002, -0.01451228279620409, -0.008482435718178749, 0.0012195195304229856, 0.0055928523652255535, 0.012283272109925747, 0.013157260604202747, -0.007520370651036501, 0.020230473950505257, -0.009105745702981949, 0.008055604062974453, -0.0011864908738061786, 0.0040040891617536545, -0.037398599088191986, -0.0419243723154068, -0.013983824290335178, 0.02962077409029007, 0.006514267064630985, -0.012208745814859867, -0.033333536237478256, -0.0016937771579250693, 0.02428198978304863, -0.03761540353298187, 0.024417491629719734, 0.017452679574489594, 0.0369378924369812, -0.0018817863892763853, 0.0009408931946381927, 0.00019446678925305605, 0.014742636121809483, -0.04346909746527672, -0.0016776862321421504, -0.02875356189906597, -0.006659931968897581, -0.0005437024519778788, 0.011809014715254307, 0.022276557981967926, -0.0028980528004467487, 0.01018298789858818, -5.4941898270044476e-05, 0.006273750681430101, -0.034200746566057205, -0.0005352335865609348, 0.012567826546728611, -0.030108582228422165, -0.00038829841651022434, -0.03902462497353554, 0.002251029945909977, -9.10934541025199e-05, -0.007411968894302845, 0.009268349036574364, 0.011084077879786491, 0.02123318985104561, -0.023794181644916534, -0.016057007014751434, 0.01829279400408268, -0.026395823806524277, 0.04482411965727806, 0.02668037824332714, 0.03666688874363899, 0.011138278990983963, 0.01701907254755497, -0.03149070590734482, -0.028455456718802452, 0.007581346668303013, -0.030135683715343475, 0.011348307132720947, 0.03837421536445618, -0.011355082504451275, -0.01644996367394924, 0.006134860683232546, -0.007926876656711102, -0.011294106021523476, -0.02867225930094719, 0.02487819828093052, 0.004247993230819702, -0.0007825250504538417, -0.04008154198527336, -0.013042083941400051, 0.0021510969381779432, 0.02967497520148754, -0.015989257022738457, -0.004705313127487898, 0.008949918672442436, -0.006815759465098381, 0.010271064937114716, 0.025758963078260422, 0.0015108492225408554, 0.0016827676445245743, 0.004024414345622063, 0.005145695060491562, 0.018550246953964233, -0.011612536385655403, -0.007154514547437429, -0.008970243856310844, 0.007323892321437597, 0.03411944583058357, -0.022344307973980904, -0.0009544434142298996, 0.01906515657901764, 0.02048792876303196, -0.012500075623393059, 0.010271064937114716, -0.012425549328327179, 0.03094869665801525, -0.007642322685569525, 0.0009569841204211116, 0.012743979692459106, 0.02615191973745823, 0.011531234718859196, -0.014078675769269466, -0.019024504348635674, -0.0018648486584424973, -0.006060334853827953, 0.016490614041686058, 0.017398478463292122, -0.03089449554681778, -0.024241339415311813, 0.005806268192827702, 0.002303536981344223, -0.02416003681719303, 0.004976317286491394, 0.014539383351802826, 0.032927028834819794, -0.03281862661242485, 0.0018529922235757113, 0.011510909534990788, 0.0004937360645271838, -0.003026779741048813, -0.004583361092954874, -0.0057351295836269855, 0.004447858780622482, 0.026436474174261093, -0.017723683267831802, 0.02630097232758999, 0.03173460811376572, 0.008475661277770996, -0.033550336956977844, 0.024918848648667336, -0.02368577942252159, -0.004874690435826778, 0.0016107821138575673, -0.006964811589568853, -0.02410583570599556, -0.01802178844809532, 0.019729116931557655, -0.0013855097349733114, -0.0032012388110160828, 0.0006779343239031732, 0.026043517515063286, 0.029105866327881813, 0.0014066819567233324, -0.008658588863909245, 0.011043427512049675, -0.010514969006180763, -0.006849634926766157, 0.008495986461639404, 0.011666737496852875, -0.025596359744668007, -0.016206059604883194, -0.0056775412522256374, -0.0029166843742132187, -0.02004077099263668, -0.03626038134098053, -0.030758993700146675, -0.007283241953700781, 0.011483808979392052, 0.013584093190729618, 0.007696523331105709, -0.002914990531280637, -0.01624670997262001, -0.014905239455401897, 0.01609765738248825, -0.041192661970853806, 0.009939084760844707, 0.01941746100783348, 0.005948545411229134, 0.032005611807107925, 0.027466289699077606, -0.020528579130768776, -0.028861962258815765, -0.03252052143216133, -0.017181675881147385, -0.04753416031599045, -0.008021729066967964, -0.0019088868284597993, 0.037696704268455505, -0.0059146699495613575, -0.03566417098045349, -0.027520490810275078, -0.01403802540153265, -0.04352329671382904, -0.005318460054695606, -0.018685748800635338, 0.01560985017567873, 0.03495956212282181, 0.03756120055913925, 0.005741904489696026, 0.029132967814803123, 0.004942441824823618, 0.004041352309286594, -0.04360459744930267, 0.010372690856456757, -0.01255427673459053, -0.015569199807941914, 0.022574661299586296, -0.011829339899122715, -0.04989190027117729, -0.0022815177217125893, 0.0098577830940485, -0.02140934392809868, 0.008462110534310341, -0.00454271025955677, -0.0003927445795852691, -0.0019071931019425392, 0.0007494963938370347, -0.0007283241720870137, 0.002068101894110441, 0.014390330761671066, 0.021951351314783096, -0.03311673179268837, 0.0037534101866185665, 0.027019133791327477, -0.00015445130702573806, -0.002223929390311241, 0.0016886958619579673, 0.0008180943550541997, -0.01856379769742489, -0.005335398018360138, -0.01025751419365406, -0.016937771812081337, -0.0031131624709814787, 0.008624712936580181, 0.013523116707801819, 0.025515059009194374, 0.009878108277916908, 0.03563707321882248, -0.01766948401927948, -0.00914639700204134, 0.007350992877036333, 0.008157230913639069, 0.008617938496172428, 0.0055454266257584095, 0.021246740594506264, -0.01829279400408268, -0.002881114836782217, 0.0013753470266237855, 0.014227728359401226, 0.002146015642210841, -0.01707327365875244, -0.023916132748126984, -0.005823205690830946, 0.0011576967081055045, 0.0016192509792745113, 0.00543363718315959, -0.013719595037400723, 0.0066294437274336815, -0.0004920422798022628, -0.01594860479235649, 0.008082704618573189, -0.01734427735209465, 0.002289986703544855, -0.022723713889718056, -0.006399089936167002, 0.002899746410548687, 0.015379496850073338, -0.033577438443899155, -0.003966826014220715, 0.025216953828930855, 0.016639666631817818, 0.009004119783639908, 0.2073725312948227, 0.011070527136325836, 0.013367289677262306, 0.03531186655163765, 0.019105806946754456, 0.00019160854571964592, 0.02867225930094719, 0.015054291114211082, -0.019620714709162712, 0.0056877038441598415, -0.019349711015820503, -0.008529861457645893, -0.003253745846450329, -0.004458021372556686, 0.01528464537113905, -0.011212804354727268, -0.03032538667321205, -0.019336160272359848, -0.016910670325160027, 0.0092344731092453, -0.009437725879251957, 0.002574541373178363, -0.022940518334507942, -0.01055561937391758, 0.017913388088345528, 0.009342874400317669, 0.00011771751451306045, -0.0017784660449251533, 0.00970873050391674, 0.002262886380776763, -0.016382211819291115, 0.014932339079678059, 0.01544724777340889, -0.0007846422959119081, -0.01373992022126913, -0.010894374921917915, 0.018075989559292793, -0.01306240912526846, -0.005948545411229134, 0.032330818474292755, 0.002532196929678321, -0.01876705139875412, 0.005050843581557274, -0.03650428354740143, 0.012005492113530636, -0.010548844002187252, -0.02647712454199791, 0.015853753313422203, -0.012073243968188763, 0.012249396182596684, -0.003091143211349845, 0.0011204335605725646, 0.013441815972328186, 0.028482556343078613, 0.0030047607142478228, -0.00012639812484849244, -0.0040515149012207985, 0.005474287550896406, -0.009139621630311012, -0.014701985754072666, -0.01574535295367241, 0.013225012458860874, -0.014742636121809483, 0.013678944669663906, -0.026734579354524612, 0.012296821922063828, -0.022141054272651672, 0.0203388761729002, 0.0014261603355407715, -0.012893031351268291, -0.01466133538633585, -0.010426891967654228, -0.02692428231239319, 0.0012796486262232065, -0.013143710792064667, -0.008658588863909245, 0.008699239231646061, 0.002666005166247487, 0.014119326137006283, 0.026992032304406166, -0.00871956441551447, -0.007527145557105541, -0.03054218925535679, -0.0034959560725837946, 0.0017395091708749533, -0.024566544219851494, 0.04127396270632744, -0.032981228083372116, -0.019702015444636345, -0.02425488829612732, -0.0018343606498092413, 0.00550816347822547, 0.002920071827247739, -0.013218237087130547, -0.0010950269643217325, 0.0010111849987879395, 0.0061517986468970776, 0.015514998696744442, -0.02368577942252159, -0.0311926007270813, -0.02772374451160431, 0.044336311519145966, -0.0012940457090735435, 0.01704617403447628, -0.017628831788897514, 0.01817084103822708, 0.006849634926766157, 0.023618029430508614, -0.012859156355261803, 0.007378093432635069, 0.007452619727700949, -0.03753410279750824, 0.024566544219851494, -0.014715535566210747, 0.0021748098079115152, 0.016178959980607033, 0.004905178677290678, -0.01903805509209633, 0.0011822564993053675, -0.011111178435385227, 0.014254828914999962, -0.005979033187031746, 0.006758170668035746, 0.002516952808946371, -0.03875362128019333, -0.038292914628982544, -0.005399761721491814, 0.02934977039694786, -0.04073195159435272, -0.025894464924931526, 0.016802269965410233, -0.024119386449456215, 0.02475624717772007, -0.008814415894448757, -0.0035840324126183987, 0.023225072771310806, 0.017032623291015625, 0.006578630302101374, -0.005260871723294258, -0.019024504348635674, 0.010731772519648075, 0.008658588863909245, 0.008367259055376053, 0.009451276622712612, 0.011131503619253635, -0.006565080489963293, 0.0067005823366343975, -0.012628802098333836, 0.007059663068503141, -0.02490529976785183, 0.008346933871507645, 0.0016336480621248484, 0.0033689227420836687, -0.004163304343819618, 0.040515150874853134, -0.006073884665966034, -0.025772513821721077, -0.02674812823534012, 0.012764304876327515, 0.021693898364901543, -0.049675095826387405, -0.004813714884221554, 0.023563828319311142, -0.0033502911683171988, -0.019105806946754456, -0.01707327365875244, -0.17203356325626373, 0.010894374921917915, 0.002943784696981311, -0.00555220153182745, 0.03804900869727135, 0.02692428231239319, -0.00469176284968853, 0.0038651993963867426, -0.0012804955476894975, -0.004932279232889414, 0.006680257152765989, 0.002091814763844013, -0.009430951438844204, 0.0042175049893558025, 0.00877376552671194, -0.01577245257794857, -0.026436474174261093, 0.024891749024391174, 0.039268530905246735, 0.0042073423974215984, 0.02048792876303196, -0.039593733847141266, -0.020975736901164055, -0.009126070886850357, 0.030352486297488213, -0.014322579838335514, 0.006239875219762325, 0.004546097945421934, -0.008651813492178917, -0.025000151246786118, 0.00488485349342227, 0.0013770408695563674, 0.008699239231646061, -0.01002038549631834, 0.02261531352996826, 0.0011737875174731016, 0.006327951326966286, -0.004939054138958454, -0.010582719929516315, 0.012655902653932571, 0.018455395475029945, 0.01298788283020258, 0.011998717673122883, 0.00501019274815917, -0.0035670946817845106, 0.012215521186590195, 0.023970333859324455, -0.02348252572119236, 0.015257544815540314, -0.0001908675185404718, 0.029891779646277428, -0.012574601918458939, -0.0057114167138934135, 0.005684316158294678, 0.007215490564703941, -0.006134860683232546, 0.011463483795523643, 0.016761619597673416, 0.0010992613388225436, -0.026341622695326805, 0.002308618277311325, -0.011538010090589523, 0.009762931615114212, 0.002249336102977395, -0.008319833315908909, -0.0240787360817194, 0.013956723734736443, 0.016639666631817818, 0.003152119228616357, 0.005311685148626566, 0.002865870948880911, 0.010122012346982956, -0.007486495189368725, 0.028265753760933876, 0.009369974955916405, 0.011314431205391884, -0.041192661970853806, 0.009952634572982788, 0.04046094790101051, 0.01039301697164774, 0.011910640634596348, 0.005382823757827282, -0.009756156243383884, -0.006314401049166918, -0.0006927548674866557, 0.017181675881147385, 0.00029831650317646563, 0.00884829182177782, -0.01879415102303028, 0.0014219259610399604, 0.028455456718802452, -0.0037466350477188826, 0.0010103380773216486, 0.0007486495305784047, 0.021951351314783096, -0.015989257022738457, 0.03336063399910927, -0.01334018912166357, 0.014309029094874859, -0.012893031351268291, 0.017357828095555305, 0.00915994681417942, -0.02448524348437786, 0.01102987676858902, 0.03173460811376572, 0.03374003991484642, 0.001980025554075837, -0.009979735128581524, 0.0356912724673748, -0.011348307132720947, -0.017886286601424217, 0.00430558156222105, 0.015108492225408554, 0.012378123588860035, -0.012655902653932571, 0.03688369318842888, 0.0042073423974215984, -0.028645159676671028, 0.020894434303045273, -0.019674915820360184, 0.044959619641304016, -0.021531295031309128, -0.006422802805900574, 0.018712850287556648, 0.006453291047364473, 0.0042547681368887424, -0.10092201828956604, -0.005274422001093626, 0.022181706503033638, 0.013773796148598194, -0.011673511937260628, 0.01560985017567873, -0.00793365202844143, 0.0476696640253067, -0.017059722915291786, 0.015257544815540314, -0.02149064466357231, -0.024661395698785782, -0.00022844818886369467, -0.005054231267422438, 0.00034807121846824884, -0.012262946926057339, 0.0015828347532078624, 0.0019224371062591672, -0.01609765738248825, 0.04130106046795845, 0.00908542051911354, -0.0031063873320817947, 0.020528579130768776, -0.022466260939836502, -0.030027281492948532, -0.010122012346982956, -0.03655848652124405, 0.010040710680186749, 0.0043733324855566025, 0.007357767783105373, 0.023441875353455544, -0.017113924026489258, 0.019498761743307114, -0.009478377178311348, -0.017303626984357834, -0.012838831171393394, -0.025840263813734055, -0.030379587784409523, 0.016883570700883865, -0.031029997393488884, 0.006595568265765905, 0.00586385652422905, -0.012723653577268124, -0.02238495834171772, 0.008238531649112701, -0.0034536116290837526, -0.013319863937795162, 0.011219579726457596, 0.009864558465778828, -0.021517744287848473, -0.00469853775575757, -0.0203388761729002, -0.0031893823761492968, -0.02321152202785015, 0.013699269853532314, 0.011348307132720947, 0.01654481515288353, 0.015189793892204762, -0.019010955467820168, 0.007743949070572853, 0.006717520300298929, -0.00871956441551447, -0.015758901834487915, 0.022181706503033638, 0.0002037825615843758, 0.008414684794843197, 0.003187688533216715, -0.020203374326229095, -0.0020376138854771852, -0.0010967206908389926, -0.023089570924639702, 0.007134189363569021, -0.027141084894537926, 0.006626056041568518, -0.010338815860450268, -0.0101694380864501, -0.015704702585935593, -0.015325295738875866, 0.0222088061273098, 0.016233161091804504, -0.023794181644916534, -0.0032486645504832268, 6.812159699620679e-05, -0.045284826308488846, 0.021043486893177032, 0.0058672442100942135, 0.012818505987524986, -0.011829339899122715, 0.02597576566040516, -0.030731892213225365, 0.018726401031017303, 0.0038787496741861105, 0.0060095214284956455, -0.014905239455401897, 0.0007071519503369927, 0.013997374102473259, -0.02937687188386917, 0.022805016487836838, 0.019823968410491943, 0.0038584242574870586, -0.021328041329979897, -0.01796758733689785, -0.04170756787061691, 0.01544724777340889, 0.0005775780300609767, 0.0017344277584925294, -0.0009281898965127766, -0.024051636457443237, -0.013394389301538467, 0.0010755484690889716, -0.008895717561244965, 6.685126572847366e-05, -0.033306434750556946, -0.008712789975106716, -0.010108462534844875, -0.017262976616621017, -0.020325325429439545, 0.0002680402249097824, 0.004136203788220882, 0.005613177549093962, 0.027357889339327812, 0.0033587601501494646, -0.007391643710434437, -0.0157182514667511, 0.0014744329964742064, 0.026612626388669014, -0.006399089936167002, 0.014092225581407547, -0.019254859536886215, 0.027330787852406502, -0.016233161091804504, -0.009972959756851196, 0.008130130358040333, -0.002379756886512041, -0.0038618119433522224, 0.02113833837211132, -0.010264289565384388, -0.04856397956609726, 0.017181675881147385, -0.013902522623538971, 0.03729019686579704, 0.006270362995564938, -0.016653217375278473, -0.012019042856991291, 0.026260321959853172, -0.00938352569937706, -0.005138919688761234, 0.00046367148752324283, -0.005697866436094046, -0.01224262174218893, 0.01482393778860569, 0.01317758671939373, 0.035122163593769073, 0.01157866045832634, -0.00908542051911354, -0.037046294659376144, 0.0042784810066223145, -0.009112521074712276, 0.015311745926737785, 0.016924221068620682, 0.010298165492713451, -0.002295067999511957, 0.04230377823114395, 0.018455395475029945, 0.012561051174998283, -0.008895717561244965, 0.014390330761671066, -0.01529819518327713, -0.04604363813996315, -0.023699330165982246, 0.006798821501433849, -0.040189944207668304, 0.004407207947224379, -0.025162752717733383, 0.020271124318242073, 0.02448524348437786, 0.015501448884606361, 0.005000030156224966, -0.00484759034588933, -0.016883570700883865, -0.011917416006326675, 0.02772374451160431, 0.03311673179268837, -0.017926936969161034, -0.019458111375570297, 0.004613848868757486, 0.024363290518522263, 0.021504195407032967, -0.018225042149424553, 0.01796758733689785, 0.010196538642048836, 0.00550816347822547, 0.00422428036108613, -0.015514998696744442, -0.019674915820360184, 0.024525893852114677, 0.026883631944656372, 0.030704792588949203, -0.02695138193666935, 0.01251362543553114, 0.015569199807941914, 0.031057098880410194, 0.002584703965112567, 0.007628772407770157, 0.00031525426311418414, 0.005071168765425682, -0.028509657829999924, 0.011720937676727772, -0.033875543624162674, -0.013645068742334843, 0.00038194673834368587, 0.022764364257454872, -0.01607055775821209, -1.6606954886810854e-05, 0.002962416270747781, 0.006663319189101458, -0.007323892321437597, 0.00649394141510129, -0.027913447469472885, -0.007411968894302845, -0.019905269145965576, 0.004410595633089542, 0.0016328011406585574, 0.022452710196375847, 0.009336099959909916, 0.0006360133411362767, 0.030704792588949203, 0.010264289565384388, -0.007716848514974117, -0.01594860479235649, 0.0262061208486557, -0.023916132748126984, 0.012100343592464924, 0.002393307164311409, 0.012466199696063995, -0.009424176067113876, -0.014390330761671066, -0.020257575437426567, -0.01080629788339138, 0.01657191663980484, -0.006131473463028669, 0.07794085144996643, 0.028889063745737076, -0.03116549924015999, -0.00500341784209013, -0.015704702585935593, 0.005023743025958538, 0.015162693336606026, -0.009918758645653725, 0.013645068742334843, -0.022818565368652344, 0.023875482380390167, 0.0016260261181741953, -0.035772573202848434, -0.021978452801704407, -0.01579955406486988, -0.00976970698684454, 0.008319833315908909, -0.004593523684889078, -0.025962216779589653, 0.017506880685687065, 0.021477093920111656, -0.009200597181916237, 0.030108582228422165, -0.0034417551942169666, -0.031680408865213394, -0.018956754356622696, 0.05197863280773163, 0.014701985754072666, 0.0039092376828193665, -0.03279152512550354, 0.023197971284389496, -0.009342874400317669, -0.024851098656654358, -0.006405865307897329, -0.0016192509792745113, 0.00033452099887654185, 0.0012330698082223535, -0.025664111599326134, -0.005538651254028082, 0.018225042149424553, 0.008977019228041172, 0.009315774776041508, -0.027805045247077942, -0.016558365896344185, 0.004806939512491226, 0.0005394680192694068, 0.004481734242290258, -0.019105806946754456, -0.018726401031017303], "cbfa41fc-7c57-4dca-943e-b888a7dba157": [-0.00991744827479124, -0.013236953876912594, 0.0016683079302310944, -0.029649680480360985, -0.0002846817660611123, 0.020533019676804543, -0.02047826535999775, -0.026898255571722984, -0.021696558222174644, -0.06581517308950424, 0.01835652068257332, -0.0042606014758348465, 0.017343558371067047, -0.015851492062211037, 0.015728292986750603, 0.016330596059560776, 0.01597468927502632, -0.01374343503266573, 0.007583528757095337, -0.00902083981782198, -0.017973236739635468, 0.005119566339999437, -0.009705274365842342, 0.0052153873257339, -0.027760643512010574, -9.865474567050114e-05, 0.02644653059542179, -0.015591406263411045, -0.0173161793500185, 0.016316907480359077, 0.022066151723265648, -0.009623141959309578, -0.020656218752264977, -0.003914962522685528, -0.016727566719055176, 0.0006215516477823257, 0.01039655227214098, -0.00458913017064333, 0.007255000527948141, -0.013483350165188313, 0.02314755879342556, 0.01165591087192297, -0.0053454297594726086, 0.010950944386422634, -0.002994398819282651, 0.027856463566422462, 0.00890448596328497, -0.022504189983010292, -0.009417812339961529, -0.009007151238620281, -0.0034170367289334536, 0.042407531291246414, -0.022777963429689407, 0.012217147275805473, -0.025378812104463577, 0.005537071265280247, 0.009937982074916363, -0.001652908162213862, 0.011840708553791046, 0.012990557588636875, 0.017357246950268745, -0.0021765001583844423, -0.013982987031340599, -0.0029156887903809547, -0.00893870834261179, -0.022490501403808594, -0.023914124816656113, -0.018616605550050735, -0.01350388303399086, -0.017343558371067047, 0.014660576358437538, 0.03643926605582237, -0.0060161747969686985, -0.005290674977004528, 0.007220778614282608, -0.014729020185768604, 0.010362330824136734, -0.014551066793501377, 0.005862177349627018, -0.013052156195044518, 0.016727566719055176, -0.005650002509355545, -0.012107637710869312, -0.004647307097911835, 0.020519331097602844, 0.04306458681821823, -0.004274290520697832, 0.0005223086918704212, -0.018247010186314583, -0.0004953591269440949, -0.0053351628594100475, 0.005266719497740269, 0.0069914935156702995, 0.02589898183941841, -0.010150155983865261, 0.01843865215778351, 0.02227148227393627, -0.006680076010525227, 0.0030012431088835, -0.01858922839164734, -0.025214549154043198, 0.011005698703229427, -0.004732861183583736, -0.009465722367167473, -0.03534417226910591, 0.001805194653570652, 0.016809698194265366, -0.0052016982808709145, 0.0004705483734142035, 0.02134065143764019, -0.015700915828347206, 0.04268130287528038, 0.00901399552822113, -0.019109398126602173, 0.0019335260149091482, -0.020847858861088753, 0.014441557228565216, -0.027185719460248947, -0.00929461419582367, -0.02157335914671421, 0.013873477466404438, 0.01156693510711193, 0.02432478405535221, -0.03340037912130356, 0.010143311694264412, -0.007364510092884302, 0.014660576358437538, -0.01030757650732994, 0.0005663691554218531, -0.009267236106097698, 0.032332662492990494, 0.01351072732359171, 0.005564448423683643, -0.006149639375507832, -0.04927924647927284, 0.025105038657784462, -0.016809698194265366, 0.0056465803645551205, 0.001379134482704103, -0.01912308670580387, 0.018055368214845657, 0.022394681349396706, 0.006994915660470724, -0.022641077637672424, 0.021901888772845268, 0.022955916821956635, -0.013900854624807835, 0.025159794837236404, 0.010800368152558804, -0.021915577352046967, -0.00434957817196846, -0.011382137425243855, -0.008404849097132683, 0.008877108804881573, 0.019191529601812363, 0.0023253646213561296, 0.0127920713275671, 0.03438596427440643, -0.015057547949254513, -0.014715330675244331, -0.0036001228727400303, 0.0006574844010174274, -0.015536651946604252, -0.009458878077566624, 0.0025786051992326975, 0.027911217883229256, -0.004856059327721596, -0.03118281252682209, -0.006810118444263935, 0.0007293499656952918, -0.0005971686914563179, 0.0361928716301918, -0.012415632605552673, 0.04210637882351875, 0.01660436950623989, 0.014811151660978794, 0.02047826535999775, -0.005475472193211317, -0.009924293495714664, -0.02266845479607582, 0.034769248217344284, 0.01349703874439001, 0.0013936787145212293, 0.013339619152247906, -0.031511340290308, -0.00936990138143301, 0.006433679722249508, 0.010711392387747765, 0.004503575619310141, -0.007124958094209433, 0.01583780348300934, 0.0157419815659523, -0.03268856927752495, -0.004253757186233997, -0.6189473867416382, 0.004089493304491043, 0.01683707721531391, -0.014345736242830753, 0.002523850416764617, 0.01385978888720274, 0.02261369861662388, 0.0057321349158883095, -0.0058074225671589375, 0.03643926605582237, 0.00878128781914711, 0.010054335929453373, -0.010328109376132488, -0.015933623537421227, -0.015290255658328533, -0.018055368214845657, 0.03008771874010563, -0.015755670145154, -0.013072689063847065, 0.002573471749201417, -0.014140406623482704, 0.03564532473683357, 9.742490510689095e-05, 0.0011780820786952972, 0.01270993985235691, 0.004698639269918203, 0.00582453329116106, 0.004123714752495289, -0.00960260909050703, 0.019889652729034424, -0.026556039229035378, 0.018863001838326454, 0.03000558726489544, -0.0026846923865377903, 0.043584756553173065, -0.001239681034348905, -0.009623141959309578, 0.018055368214845657, 0.024913398548960686, 0.02566627599298954, -0.019492680206894875, -0.005454938858747482, 0.004253757186233997, 0.029649680480360985, 0.005427561700344086, 0.0010283620795235038, 0.002975576790049672, 0.015577717684209347, -0.0084664486348629, -0.02229885943233967, 0.005194853991270065, -0.01882193423807621, 0.0032373727299273014, 0.0003236089542042464, 0.013996675610542297, 0.014906972646713257, 0.02661079354584217, -0.0021576781291514635, 0.008623868227005005, 0.00720709003508091, 0.014441557228565216, 0.015495586208999157, -0.011601156555116177, -0.05010056868195534, -0.04065537825226784, 0.018876690417528152, -0.01075245812535286, -0.0180964358150959, 0.011806486174464226, 0.0038567855954170227, 0.007768325973302126, 0.00043889330117963254, 0.009937982074916363, -0.005766356363892555, -0.0049176583997905254, 0.019410548731684685, 0.04029947519302368, -0.004284556955099106, -0.00675194151699543, 0.01983489654958248, 0.0033041052520275116, -0.009164571762084961, -0.012299278751015663, -0.02119007706642151, 0.03591909632086754, 0.007651972118765116, -0.02101212367415428, -0.006320748012512922, 0.0017461623065173626, -0.0008337261970154941, 0.022928539663553238, 0.01268256176263094, -0.006033285520970821, -0.03416694700717926, 0.0196843221783638, 0.035563189536333084, 0.009677897207438946, -0.00750139681622386, 0.0016092754667624831, -0.022545255720615387, -0.033811040222644806, -0.024393226951360703, 0.01075245812535286, 0.009931137785315514, 0.020683595910668373, 0.02802072837948799, -0.018370209261775017, -0.02023186907172203, 0.02567996457219124, -0.03474187105894089, -0.000953929906245321, 0.008254273794591427, -0.014113029465079308, -0.019109398126602173, 0.0067314086481928825, -0.019903341308236122, 0.01409934088587761, 0.0037917643785476685, -0.021326962858438492, -0.030060341581702232, -0.016659123823046684, 0.010670325718820095, 0.005239342339336872, -0.004469354171305895, 0.007857302203774452, 0.0393686443567276, -0.006389191374182701, 0.008315873332321644, 0.011628533713519573, 0.008220052346587181, 0.012976869009435177, -0.009910603985190392, 0.013948764652013779, -0.01283998228609562, 0.027514247223734856, 0.001201181672513485, 0.012312967330217361, 0.004010783042758703, 0.010684015229344368, -0.0307173989713192, 0.010677170008420944, -0.019410548731684685, 0.025378812104463577, -0.014852218329906464, 0.003969717305153608, -0.008952396921813488, -0.015372388064861298, 0.0038396748714149, -0.011286316439509392, -0.025296680629253387, -0.03140183165669441, -0.022244105115532875, -0.012730472721159458, 0.028445078060030937, 0.0073781986720860004, 0.005191431846469641, 0.008972929790616035, -0.036658287048339844, -0.0127920713275671, -0.017124539241194725, -0.018548160791397095, 0.012265057303011417, -0.008137919940054417, 0.014113029465079308, -0.010553971864283085, -0.01188861858099699, -0.02394150197505951, 0.0036754105240106583, -0.01542714238166809, -0.016522236168384552, -0.006550033576786518, -0.021600736305117607, 0.02654235064983368, 0.030826907604932785, -0.0049005476757884026, 0.013613392598927021, -0.007412420120090246, 0.013120600022375584, -0.0037233210168778896, -0.005242764484137297, 0.013052156195044518, 0.024625934660434723, -0.0012662028893828392, -0.007480863481760025, 0.024078387767076492, 0.01487959548830986, 0.006337858736515045, 0.02101212367415428, -0.030772153288125992, -0.00750139681622386, 0.01134107168763876, 0.01708347350358963, -0.010807212442159653, 0.003699365770444274, -0.027103586122393608, -0.001697396277450025, -0.014578443951904774, -0.027897529304027557, -0.02937590703368187, 0.035015642642974854, 0.019506368786096573, -0.006936738733202219, -0.011519024148583412, 0.0030542868189513683, 0.014674264937639236, -0.02528299205005169, 0.0135791702196002, -0.01086196769028902, 0.013538104481995106, -0.005759512074291706, 0.00565342465415597, -0.018507095053792, 0.010369175113737583, -0.03882109746336937, 0.0019232595805078745, 0.016645435243844986, -0.015454519540071487, 0.012223991565406322, -0.004257179331034422, 0.0012217146577313542, 0.013100067153573036, 0.01370236836373806, 0.01117680687457323, 0.011252094991505146, -0.0009171415586024523, -0.00020105249132029712, -0.014811151660978794, 0.0029533326160162687, 0.007809392176568508, -0.03824617341160774, -0.004503575619310141, 0.01270993985235691, 0.009773717261850834, 0.003962873015552759, 0.01511230319738388, 0.025392500683665276, 0.03986143693327904, -0.023599283769726753, 0.020136049017310143, -0.016878142952919006, 0.00651923380792141, 0.0021474116947501898, 0.0255978312343359, -0.029156887903809547, 0.022545255720615387, 0.026665547862648964, 0.006953849457204342, -0.0034358587581664324, -0.03249692544341087, 0.03411218896508217, -0.0028917337767779827, 0.015577717684209347, -0.005509693641215563, -0.01756257563829422, 0.021997708827257156, -0.001366301323287189, 0.0035830119159072638, 0.024543803185224533, 0.02331182174384594, 0.005721868481487036, -0.0035830119159072638, 0.021053189411759377, -0.017672086134552956, 0.0003011509543284774, 0.01654961332678795, -0.009883226826786995, -0.00823374092578888, -0.03479662537574768, -0.0036890993360430002, -0.01500279363244772, -0.0032579058315604925, -0.03684992715716362, -0.0018462607404217124, -0.00936990138143301, -0.003877318697050214, -0.003966295160353184, 0.006556877866387367, 0.014010364189743996, 0.0010309286881238222, 0.02543356828391552, -0.004339311737567186, -0.03197675570845604, 0.017603643238544464, 0.005526804365217686, -0.00929461419582367, -0.014578443951904774, -0.023339198902249336, -0.011313694529235363, 0.015919934958219528, 0.008788133040070534, -0.011375293135643005, -0.012463543564081192, -0.01464688777923584, -0.0001846902450779453, -0.012258213013410568, 0.02276427485048771, 0.043502625077962875, -0.007282377686351538, 0.00011004415136994794, 0.006861451081931591, 0.008911331184208393, -0.0012756139039993286, -0.026665547862648964, -0.016330596059560776, 0.05360487103462219, -0.00708389189094305, -0.008788133040070534, 0.0029208220075815916, 0.020286623388528824, -0.037205833941698074, 0.00803525559604168, -0.007802547421306372, -0.016166331246495247, -0.025871604681015015, -0.008144764229655266, -0.004031316377222538, 0.016727566719055176, -0.004192158114165068, 0.04103866219520569, 0.0026487596333026886, -0.005283830687403679, -0.02639177441596985, 0.008055788464844227, 0.016987651586532593, 0.06603419035673141, 0.007104424759745598, -0.019793830811977386, 0.019862275570631027, -0.029567549005150795, -0.009445189498364925, -0.020053915679454803, -0.038218796253204346, 0.013086378574371338, -0.01075245812535286, -0.01164906658232212, 0.0032698833383619785, 0.03178511559963226, -0.010266509838402271, 0.01169697754085064, 0.005882710218429565, 0.006426835432648659, -0.012518297880887985, -0.023571906611323357, 0.014811151660978794, 0.0052872528322041035, 0.0019420814933255315, 0.034632358700037, 0.019547434523701668, 0.05338585376739502, 0.017439378425478935, 0.027035143226385117, -0.0032082844991236925, 0.0047568161971867085, -0.03717845678329468, -0.017370935529470444, 0.007296066265553236, 0.009109816513955593, 0.014797463081777096, -0.011703821830451488, 0.034632358700037, 0.00104290631134063, -0.034604981541633606, -0.02016342617571354, 0.008090009912848473, 0.006656120531260967, 0.021765001118183136, 0.0063275923021137714, -0.006474745459854603, 0.010102245956659317, -0.022107217460870743, -0.011402670294046402, 0.044296570122241974, -0.0035761676263064146, -0.014564755372703075, 0.00025580721558071673, 0.0027172029949724674, -0.006611632648855448, 0.030361492186784744, 0.0051606325432658195, 0.010218599811196327, -0.0057800449430942535, 0.0016426416113972664, -0.01097832154482603, -0.035563189536333084, -0.03928651288151741, -0.01787741668522358, -0.009082439355552197, -0.02197033166885376, -0.020450888201594353, -0.013195887207984924, -0.00024404350551776588, 0.013175354339182377, -0.030361492186784744, 0.014729020185768604, 0.013168510049581528, -0.04952564463019371, -0.04522739723324776, 0.016754943877458572, 0.029266398400068283, 0.020136049017310143, 0.010540283285081387, 0.016399038955569267, -0.008836043067276478, 0.003069686470553279, -0.007124958094209433, -0.04377640038728714, 0.008042099885642529, -0.027623755857348442, -0.01256620790809393, -0.04369426518678665, -0.01279891561716795, -0.0008260263130068779, -0.00996535923331976, 0.011587467975914478, 0.009349368512630463, -0.024667002260684967, -0.014687953516840935, 0.00028895947616547346, 0.0014663998736068606, 0.042872946709394455, 0.022422058507800102, 0.015331321395933628, 0.025625208392739296, -0.042790815234184265, -0.000978740630671382, -0.01748044416308403, -0.020177114754915237, -0.019561123102903366, 0.024187898263335228, 0.011265783570706844, 0.02101212367415428, -0.014865906909108162, 0.02056039683520794, -0.02109425514936447, -0.0009701852104626596, -0.020450888201594353, 0.0026230933144688606, -0.013079533353447914, 0.0036377666983753443, -0.009328835643827915, -2.9436008844641037e-05, 0.02574840746819973, -0.006498700939118862, -0.03101854957640171, 0.015961000695824623, -0.040901776403188705, 0.03920438140630722, 0.005359118338674307, 0.004243490751832724, 0.017425689846277237, 0.024530114606022835, -0.025406189262866974, -0.026104312390089035, 0.00881551019847393, 0.00399367231875658, 0.010122778825461864, -0.012258213013410568, -0.006594521459192038, -0.009664207696914673, -0.01039655227214098, 0.0001828722161008045, 0.007604061625897884, -0.029786568135023117, 0.010834590531885624, -0.010020113550126553, -0.0057321349158883095, 0.013948764652013779, -0.008801821619272232, 0.0009402412106283009, -0.032962340861558914, -0.03575483337044716, -0.009315147064626217, 0.016659123823046684, 0.03345513343811035, -0.019807519391179085, -0.011984439566731453, -0.017603643238544464, -0.03282545506954193, 0.014564755372703075, -0.0008405704866163433, -0.0028814671095460653, -6.539552850881591e-05, 0.062475137412548065, 0.025378812104463577, 0.035234663635492325, 0.02457118034362793, 0.021203765645623207, 0.008185830898582935, -0.010903033427894115, -0.016316907480359077, -0.011799641884863377, -0.014455245807766914, 0.003555634757503867, -0.004418021533638239, 0.008302184753119946, -0.0010086846305057406, -0.016645435243844986, 0.012867359444499016, 0.006652698386460543, 0.01487959548830986, -0.0041100261732935905, -0.008103698492050171, -0.03537154942750931, -0.05048385262489319, -0.011245250701904297, 0.029348529875278473, -0.0005723579088225961, -0.011840708553791046, -0.02819868177175522, 0.008480137214064598, 0.01826069876551628, -0.02117638848721981, 0.01867135986685753, 0.008808665908873081, 0.035700079053640366, 0.0021012122742831707, 0.004568596836179495, 0.011258939281105995, 0.0090550621971488, -0.02591267228126526, -0.010266509838402271, -0.02355821803212166, -0.014619510620832443, 0.013661302626132965, 0.014044585637748241, 0.01511230319738388, 0.003603545017540455, -0.00022736041864845902, -0.0036959436256438494, 0.011115208268165588, -0.02135434001684189, -0.00018126807117369026, 0.008589646779000759, -0.027897529304027557, 0.0071660238318145275, -0.036165494471788406, -0.0007199390092864633, 0.006372080650180578, -0.009274080395698547, 0.007829925045371056, -0.004986101761460304, 0.022819029167294502, -0.027103586122393608, -0.01764470897614956, 0.01741200126707554, -0.02150491625070572, 0.04355737939476967, 0.02921164408326149, 0.025105038657784462, 0.0031552407890558243, 0.01764470897614956, -0.025857916101813316, -0.02692563459277153, 0.006122262217104435, -0.029649680480360985, 0.005010056775063276, 0.02347608655691147, -0.027842774987220764, -1.4784844097448513e-05, 0.0052153873257339, -0.006344703026115894, 0.0012439588317647576, -0.04424181580543518, 0.007077047601342201, 0.006532922387123108, 0.003037175862118602, -0.03416694700717926, -0.020286623388528824, -0.005003212485462427, 0.011669599451124668, -0.01134107168763876, 0.0067895851098001, 0.0030080873984843493, -0.008733377791941166, 0.015249189920723438, 0.029567549005150795, -0.0023681416641920805, 0.0031552407890558243, -0.005937465000897646, -0.002961888210847974, 0.012326656840741634, -0.016754943877458572, -0.0037027879152446985, -0.017767906188964844, 0.0005330029525794089, 0.036329757422208786, -0.013353307731449604, -0.0020618573762476444, 0.01865767128765583, 0.009910603985190392, -0.004113448318094015, 0.009671052917838097, -0.01999916136264801, 0.02896524779498577, -0.01598837785422802, -0.017425689846277237, 0.004845792893320322, 0.023202313110232353, 9.881515870802104e-05, -0.014715330675244331, -0.021710246801376343, -0.014263604767620564, 0.0026384929660707712, 0.010136467404663563, 0.006416568998247385, -0.02038244530558586, -0.03173036128282547, 0.0008161875302903354, 0.004359844606369734, -0.013763967901468277, 0.011258939281105995, 0.009643674828112125, 0.022641077637672424, -0.0295401718467474, -0.0050169010646641254, 0.010807212442159653, -0.012812604196369648, -0.005365962628275156, 0.006594521459192038, -0.018643982708454132, -0.0031244412530213594, 0.03244217112660408, -0.01661805808544159, 0.021997708827257156, 0.02251787856221199, 0.009924293495714664, -0.029102133587002754, 0.01676863245666027, -0.019656945019960403, 0.0057800449430942535, 0.015755670145154, -0.005557604134082794, -0.014660576358437538, -0.020409822463989258, 0.009616297669708729, 0.0008700867183506489, 0.0025597831699997187, 0.002949910471215844, 0.024776510894298553, 0.011053608730435371, -0.0022928540129214525, -0.008740222081542015, 0.0045822858810424805, 0.002549516735598445, -0.00755615159869194, 0.02031400054693222, 0.007802547421306372, -0.020053915679454803, 0.01118365116417408, -0.001971169840544462, 0.005047700833529234, -0.01483852881938219, -0.04520002007484436, -0.02733629383146763, -0.02251787856221199, 0.004572018980979919, 0.016672812402248383, 0.02149122767150402, -0.0032390840351581573, -0.018685048446059227, -0.019561123102903366, 0.017685774713754654, -0.024379538372159004, 0.007788858842104673, 0.0251871719956398, -0.004459087736904621, 0.02054670825600624, 0.030772153288125992, -0.022928539663553238, -0.02583053894340992, -0.025488322600722313, -0.005951153580099344, -0.043968040496110916, -0.007939434610307217, 0.003148396499454975, 0.044378701597452164, -0.010362330824136734, -0.04706168174743652, -0.025091350078582764, -0.004801304545253515, -0.045172642916440964, 0.005167476832866669, -0.032086264342069626, 0.0200949814170599, 0.05220862478017807, 0.034769248217344284, -0.004955301992595196, 0.029896076768636703, 0.002111478941515088, 0.00503743439912796, -0.051852721720933914, 0.002238099230453372, -0.02031400054693222, -0.03101854957640171, 0.025611519813537598, -0.015769358724355698, -0.04514526575803757, -0.006372080650180578, 0.0001410575641784817, -0.024749133735895157, 0.009547854773700237, 0.0050750779919326305, 0.0034273031633347273, -0.005157210398465395, -0.005263297352939844, 0.01008171308785677, 0.015919934958219528, 0.018561849370598793, 0.004144248086959124, -0.02221672795712948, 0.008630712516605854, 0.02180606685578823, -0.011039920151233673, -0.018301764503121376, 0.014222539030015469, -0.005092189181596041, -0.014783774502575397, -0.0039526065811514854, 0.0041853138245642185, 0.003668566234409809, 0.003196306759491563, 0.007549306843429804, 0.0036719883792102337, 0.017535198479890823, 0.01326433103531599, 0.03630238026380539, -0.021847132593393326, -0.012997401878237724, -0.01676863245666027, 0.0013218132080510259, 0.010540283285081387, 0.008794977329671383, 0.0314839631319046, -0.01661805808544159, 0.0051503656432032585, -0.019013576209545135, 0.01613895408809185, -0.004821837414056063, -0.022736897692084312, -0.014701642096042633, -0.0013765678741037846, -0.005968264304101467, -0.008753910660743713, -0.0008730811532586813, -0.01015700027346611, -0.010909877717494965, -0.006402879953384399, -0.008767599239945412, 0.006998337805271149, -0.014359425753355026, 0.004722594749182463, -0.02921164408326149, -0.011477958410978317, 0.006187283433973789, 0.018561849370598793, -0.03550843521952629, -0.0021525449119508266, 0.015618784353137016, 0.018698737025260925, 0.002766824560239911, 0.21639065444469452, -0.0044214436784386635, -0.00010785182530526072, 0.045720189809799194, 0.018452340736985207, -0.006953849457204342, 0.014633199200034142, 0.005913509987294674, -0.028089171275496483, 0.0004555763734970242, -0.01827438734471798, -0.006443946156650782, -0.019889652729034424, -0.001659752451814711, 0.01898619905114174, -0.019629567861557007, -0.02739104814827442, -0.006416568998247385, -0.020218180492520332, 0.006926472298800945, -0.004660995677113533, 0.014332047663629055, -0.01772684045135975, -0.0021730780135840178, 0.009705274365842342, 0.004253757186233997, -0.009102972224354744, 0.013455972075462341, 0.010649792850017548, 0.007884679362177849, -0.004407755099236965, 0.016399038955569267, 0.007446642033755779, -0.011991283856332302, -0.0147700859233737, -0.006248882506042719, 0.021381719037890434, -0.01508492510765791, -0.008329561911523342, 0.027035143226385117, 0.011614845134317875, -0.021860821172595024, -0.002727469429373741, -0.016563303768634796, 0.024270029738545418, -0.0016956852050498128, -0.016207396984100342, 0.021368030458688736, -0.020190803334116936, 0.01145742554217577, -0.003648033132776618, 0.008829198777675629, 0.018548160791397095, 0.016344284638762474, 0.0027616911102086306, 0.0011430047452449799, -0.006577410735189915, 0.01613895408809185, -0.017275113612413406, -0.021984020248055458, -0.0283355675637722, 0.008473292924463749, -0.016412727534770966, 0.01787741668522358, -0.030744776129722595, 0.010122778825461864, -0.023571906611323357, 0.020026538521051407, -0.005047700833529234, 0.009301458485424519, -0.0013320796424522996, -0.0012371144257485867, -0.032880209386348724, 0.01122471783310175, -0.02702145464718342, -0.007309755310416222, 0.013750279322266579, 0.0043119341135025024, 0.020656218752264977, 0.021381719037890434, -0.010759302414953709, -0.010451307520270348, -0.028171302750706673, -0.014783774502575397, 0.011464269831776619, -0.027308916673064232, 0.02747318148612976, -0.03252430260181427, -0.024516426026821136, -0.024009944871068, -0.004927924834191799, 0.0018291499000042677, -0.004103181883692741, -0.009075595065951347, 0.004072382114827633, -0.007809392176568508, 0.0011395826004445553, 0.015345009975135326, -0.029868699610233307, -0.036494020372629166, -0.005937465000897646, 0.04687004163861275, 0.008083165623247623, 0.03197675570845604, -0.016727566719055176, 0.015345009975135326, -0.0035179906990379095, 0.019656945019960403, -0.0068306513130664825, -0.0017915059579536319, 0.003198017831891775, -0.037534359842538834, 0.020355068147182465, -0.005146943498402834, -0.004660995677113533, 0.015071236528456211, 0.006187283433973789, -0.0017136515816673636, 0.0005137532716616988, -0.013832410797476768, 0.006919627543538809, -0.004014205653220415, 0.01051290612667799, -0.0026744259521365166, -0.036959435790777206, -0.030607888475060463, -0.0012576475273817778, 0.024899708107113838, -0.043037209659814835, -0.03063526563346386, 0.01283313799649477, -0.02487233094871044, 0.020806793123483658, -0.016275839880108833, -0.0014484334969893098, 0.02056039683520794, 0.011690132319927216, 0.004431710112839937, -0.004787615966051817, -0.018479717895388603, -0.00028831782401539385, 0.011163118295371532, 0.018151190131902695, 0.004363266751170158, 0.008261118084192276, -0.014400491490960121, -0.0037164767272770405, -0.014373114332556725, -0.0015964423073455691, -0.014564755372703075, 0.008500670082867146, -0.0035385238006711006, 0.002364719519391656, -0.006854606326669455, 0.040272098034620285, 0.0046062408946454525, -0.025556765496730804, -0.0208752378821373, 0.021518604829907417, 0.02828081324696541, -0.033509887754917145, 0.0012858803384006023, 0.05056598410010338, 0.005122988484799862, -0.008192675188183784, -0.016522236168384552, -0.1741200089454651, 0.019944407045841217, 0.002392096910625696, -0.013948764652013779, 0.02425634115934372, 0.01928734965622425, 0.006799852009862661, -0.0025803162716329098, -0.014893284067511559, 0.0005479749524965882, 0.004195580258965492, 0.0035590569023042917, -0.012093949131667614, 0.009931137785315514, -0.008267962373793125, 0.0009710407466627657, -0.019095709547400475, 0.022490501403808594, 0.053577493876218796, 0.006775896530598402, 0.0196843221783638, -0.03482400253415108, -0.02266845479607582, -0.003097063861787319, 0.023339198902249336, -0.012265057303011417, -0.007494552526623011, 0.017918482422828674, -0.016590680927038193, -0.027527935802936554, -0.005225653760135174, 0.0012422477593645453, 0.023585595190525055, -0.012141859158873558, 0.02054670825600624, 0.009924293495714664, 0.010376019403338432, -0.0034871911630034447, -0.02440691739320755, 0.01748044416308403, 0.027035143226385117, 0.023749860003590584, 0.016576992347836494, 0.004154514521360397, 0.004493309184908867, 0.014126718044281006, 0.017028717324137688, -0.023024359717965126, 0.011868085712194443, -0.01597468927502632, 0.035398926585912704, -0.029403284192085266, 0.004428287968039513, 0.004746549762785435, 0.007884679362177849, -0.005957997869700193, 0.006190705578774214, 0.016494859009981155, 0.00823374092578888, -0.013674991205334663, 0.005331740714609623, -0.0042606014758348465, 0.019780142232775688, 0.0076382835395634174, -0.007727259770035744, -0.02541987970471382, 0.010054335929453373, 0.017589954659342766, 0.0012884470634162426, 0.0016109865391626954, 0.005526804365217686, 0.015057547949254513, 0.002034479985013604, 0.014578443951904774, 0.008001033216714859, 0.02140909619629383, -0.019150463864207268, -0.0002694958820939064, 0.03214102238416672, 0.008986618369817734, 0.001265347353182733, -0.005085344426333904, -0.014030897058546543, -0.004113448318094015, -0.01700134016573429, 0.01890406757593155, -0.005222231615334749, 0.003966295160353184, -0.014756397344172001, 0.0042708683758974075, 0.034769248217344284, -0.014277293346822262, 0.00377807579934597, 0.006495278794318438, 0.026980388909578323, -0.003261327976360917, 0.03416694700717926, -0.01291526947170496, 0.011758576147258282, -0.0057047572918236256, 0.014701642096042633, 0.019711699336767197, -0.026350708678364754, 0.0031740625854581594, 0.03849256783723831, 0.01943792589008808, 0.005892976652830839, -0.0015664983075112104, 0.032633814960718155, -0.01935579441487789, -0.024215275421738625, 0.018479717895388603, 0.014071962796151638, -0.000527441967278719, -0.017740529030561447, 0.03340037912130356, 0.0001467255351599306, -0.022955916821956635, 0.01555034052580595, -0.008911331184208393, 0.03756173700094223, -0.026884566992521286, -0.00434957817196846, 0.007631439249962568, 0.004880014341324568, 0.015153368934988976, -0.10901664942502975, -0.026090623810887337, 0.026514973491430283, 0.011149429716169834, -0.010820901952683926, 0.020902615040540695, -0.001875349204055965, 0.04347524791955948, -0.017603643238544464, 0.028773605823516846, -0.022709520533680916, -0.0005291530396789312, -0.004722594749182463, 0.006197549868375063, 0.010622415691614151, -0.009937982074916363, 0.0031809071078896523, -0.005389917641878128, -0.021901888772845268, 0.021285897120833397, 0.017466755583882332, 0.0024314518086612225, 0.014468934386968613, -0.020834170281887054, -0.013278019614517689, -0.01794585958123207, -0.023489775136113167, 0.013996675610542297, 0.012408788315951824, 5.689357567462139e-05, 0.014373114332556725, -0.017850039526820183, 0.013052156195044518, -0.01452368963509798, -0.009287768974900246, -0.012306123040616512, -0.001652908162213862, -0.01638535037636757, 0.009397278539836407, -0.03038886934518814, -0.0028078905306756496, -0.0006775896763429046, 0.0033982149325311184, -0.02732260525226593, 0.00021024956367909908, -0.011505335569381714, -0.014729020185768604, 0.021765001118183136, 0.009903759695589542, -0.013805033639073372, -0.019711699336767197, -0.017192982137203217, -0.008911331184208393, -0.021614424884319305, 0.016166331246495247, 0.007474019192159176, 0.02707620896399021, -0.0020755461882799864, -0.009301458485424519, 0.00399367231875658, 0.02253156714141369, -0.014756397344172001, -0.013688679784536362, 0.015139680355787277, 0.003127863397821784, 0.01772684045135975, 0.004229802172631025, -0.016973963007330894, -0.010444463230669498, 0.005485738627612591, -0.013161665759980679, 0.02551569975912571, -0.02338026463985443, 0.0054617831483483315, -0.013414906337857246, -0.011409514583647251, -0.019985472783446312, -0.01921890676021576, 0.017206670716404915, 0.0017187849152833223, -0.023571906611323357, -0.005855333060026169, -0.008486981503665447, -0.04730807989835739, 0.029950831085443497, -0.001347479410469532, 0.010478684678673744, -0.016440104693174362, 0.03403005748987198, -0.020259246230125427, 0.02425634115934372, 0.008651245385408401, 0.01153271272778511, -0.013291708193719387, 0.00021570365061052144, 0.02488601952791214, -0.026870878413319588, 0.0011070719920098782, 0.02803441695868969, -0.002161100273951888, -0.018945133313536644, -0.012648340314626694, -0.04166834056377411, 0.016440104693174362, -0.012997401878237724, 0.0068819839507341385, 0.013558637350797653, -0.028226058930158615, -0.0029276665300130844, 0.0020310578402131796, -0.002142278477549553, 0.0058313775807619095, -0.030498379841446877, 0.009999580681324005, -0.02488601952791214, -0.02275058627128601, -0.01385294459760189, -0.018794557079672813, 0.01283313799649477, 0.00023997967946343124, 0.016878142952919006, 0.006443946156650782, 0.0015587984817102551, -0.014359425753355026, 0.008486981503665447, 0.0267750583589077, -0.00047782048932276666, 0.006365236360579729, -0.04002569988369942, 0.02708989754319191, -0.005119566339999437, -0.015331321395933628, 0.010704548098146915, 0.018685048446059227, -0.004021049942821264, 0.023517152294516563, -0.025022907182574272, -0.052400268614292145, 0.013360152021050453, -0.0009453744860365987, 0.019574811682105064, 0.0059408871456980705, -0.02329813316464424, -0.019164152443408966, 0.034632358700037, -0.007754637394100428, -0.017466755583882332, -0.003877318697050214, -0.015208123251795769, -0.009705274365842342, 0.022079840302467346, 0.0010702837025746703, 0.04142194613814354, 0.002530694706365466, -0.009712118655443192, -0.028992624953389168, 0.013216421008110046, 0.0019437925657257438, 0.0200812928378582, 0.01865767128765583, 0.0014415890909731388, 0.002530694706365466, 0.03810928389430046, 0.01763102039694786, 0.009588920511305332, -0.008986618369817734, 0.020533019676804543, -0.03016985021531582, -0.05338585376739502, -0.0181101243942976, 0.007316599600017071, -0.04246228560805321, 0.004585708025842905, -0.015331321395933628, 0.025789473205804825, 0.024393226951360703, 0.017370935529470444, -0.0018582383636385202, -0.0030046652536839247, -0.02135434001684189, -0.011868085712194443, 0.040354229509830475, 0.02109425514936447, -0.016207396984100342, -0.01496172696352005, 0.012634651735424995, 0.014701642096042633, 0.011662755161523819, -0.012333501130342484, 0.007200245745480061, 0.010909877717494965, 0.001849682885222137, 0.008124231360852718, 0.00570817943662405, -0.012634651735424995, 0.021696558222174644, 0.011361604556441307, 0.02306542545557022, -0.0224494356662035, 0.00834325049072504, 0.010601882822811604, 0.016440104693174362, 0.009260391816496849, 0.003331482410430908, 0.004955301992595196, -0.002238099230453372, -0.024461671710014343, 0.00685118418186903, -0.025556765496730804, -0.021696558222174644, 0.01708347350358963, 0.034687116742134094, 0.004120292607694864, 0.002758268965408206, 0.00611884007230401, 0.008972929790616035, -0.019656945019960403, 0.0005445528076961637, -0.018000613898038864, -0.03186724707484245, -0.022093528881669044, -0.015646161511540413, -0.000934252399019897, 0.024995530024170876, 0.020806793123483658, -0.013223265297710896, 0.02172393538057804, 0.009547854773700237, 0.01314797718077898, -0.013996675610542297, 0.011012542992830276, -0.02771957777440548, 0.01279891561716795, 0.025611519813537598, 0.0024126297794282436, -0.015208123251795769, -0.012285590171813965, -0.01952005736529827, -0.012744161300361156, 0.010622415691614151, -0.007583528757095337, 0.08317241817712784, 0.031922001391649246, -0.03323611617088318, 0.0025084505323320627, -0.010629259981215, -0.0008414260810241103, 0.013674991205334663, -0.0055199600756168365, 0.0019044376676902175, -0.019711699336767197, 0.02392781339585781, -0.0016298084519803524, -0.029321152716875076, -0.008363783359527588, -0.015919934958219528, 0.0005954575608484447, 0.005167476832866669, 0.01880824565887451, -0.02693932317197323, 0.019027264788746834, 0.032086264342069626, -0.005040856543928385, 0.02095736935734749, -0.008418538607656956, -0.028800982981920242, -0.0042126914486289024, 0.037205833941698074, 0.015536651946604252, -0.007446642033755779, -0.028800982981920242, 0.008569113910198212, -0.0014193450333550572, -0.025296680629253387, -0.011943372897803783, -0.0034033481497317553, -0.013093222863972187, 0.0015348432352766395, -0.02377723716199398, -0.01405827421694994, 0.01597468927502632, -1.3020287042309064e-05, 0.010930410586297512, -0.02828081324696541, -0.02937590703368187, 0.01613895408809185, -0.00011228995572309941, 0.00960260909050703, -0.01661805808544159, -0.01875349134206772], "19eeaf0e-0951-492b-9b7c-e9ed7ccfa7e8": [-0.02663235552608967, -0.01734517514705658, -0.0008147622575052083, -0.033379219472408295, 0.0002481845149304718, 0.011089985258877277, -0.007586806546896696, -0.02588118612766266, -0.016006728634238243, -0.05162579566240311, 0.016935445368289948, 0.008775019086897373, 0.013213745318353176, -0.002847613301128149, 0.023463787510991096, 0.01151337195187807, 0.02663235552608967, -0.003218076191842556, 0.0110558420419693, -0.02489783801138401, -0.02980092167854309, -0.00751168979331851, -0.011342651210725307, 0.01959868147969246, -0.034389883279800415, 0.01182066835463047, 0.03228660672903061, -0.016006728634238243, 0.0013393001863732934, 0.009287180379033089, 0.021524405106902122, -0.02273993380367756, -0.01821926236152649, -0.016949104145169258, -0.020773237571120262, -0.003131008939817548, 0.0012488184729591012, -0.012483062222599983, -0.0008258590823970735, -0.020650317892432213, 0.027328893542289734, 0.002431055996567011, -0.012517206370830536, -0.006910754833370447, -0.013657617382705212, 0.0316583588719368, 0.007388771045953035, -0.029882866889238358, -0.014640966430306435, -0.00872721802443266, -0.0050601474940776825, 0.03326995670795441, -0.012756215408444405, 0.006521512288600206, -0.01395808532834053, 0.00281517650000751, 0.0008019582601264119, -0.0012616224121302366, 0.007620950695127249, -0.007299996912479401, 0.010734887793660164, 0.0034878142178058624, -0.013056682422757149, -0.005821559578180313, -0.01634816825389862, -0.03228660672903061, -0.008433579467236996, 0.00436360901221633, -0.007955562323331833, -0.009341810829937458, 0.01771393045783043, 0.03493618592619896, 0.00999737624078989, -0.00036470108898356557, 0.0029978470411151648, -0.01884751208126545, 0.008945739828050137, 0.008863793686032295, -0.00467773387208581, -0.009505702182650566, 0.015132640488445759, 0.006364449858665466, -0.0060844686813652515, -0.0016184276901185513, 0.023299895226955414, 0.04162842035293579, -0.007614121772348881, 0.005923991557210684, -0.017126653343439102, 0.0017823191592469811, -0.006627358961850405, 0.006620530039072037, 0.02060934528708458, 0.02390083111822605, 0.002390083158388734, 0.006623944733291864, 0.02687819115817547, 0.013186429627239704, -0.0018386568408459425, -0.031986139714717865, -0.02600410394370556, 0.0032761211041361094, -0.01483217254281044, -0.014955091290175915, -0.03018333576619625, 0.005483533721417189, 0.009942745789885521, -0.012059676460921764, 0.014217579737305641, 0.014818515628576279, -0.008645271882414818, 0.029964813962578773, -0.00969007983803749, -0.0006687964778393507, -0.01749540865421295, -0.006108369678258896, 0.030456487089395523, -0.028435159474611282, -0.0044660409912467, -0.027875198051333427, 0.034744977951049805, 0.02653675153851509, 0.02917267195880413, -0.03217734768986702, 0.008693073876202106, -0.0017268350347876549, -0.002260335721075535, -0.003943637013435364, 0.0364658385515213, -0.01723591424524784, 0.012483062222599983, 0.024173984304070473, 0.0048757693730294704, -0.012865476310253143, -0.03845985233783722, -7.330299558816478e-05, -0.0189704317599535, -0.002753717126324773, 0.005664497148245573, -0.02252141200006008, 0.012592324055731297, 0.022275574505329132, -0.007170249242335558, -0.032122716307640076, 0.002668356988579035, 0.01055733859539032, -0.002760546049103141, 0.02865368127822876, 0.000577034370508045, -0.01552871149033308, 0.003677313681691885, -0.006299576256424189, -0.017659299075603485, 0.0177412461489439, 0.012448919005692005, -0.011759208515286446, -0.0033546523191034794, 0.01973525807261467, -0.015747234225273132, -0.008392605930566788, 0.009102802723646164, 0.01871093548834324, 0.0020896154455840588, -0.0003414404345676303, 0.020513741299510002, 0.029227301478385925, 0.01619793474674225, -0.03810475394129753, -0.00867258757352829, -0.01125387754291296, 0.01658034883439541, 0.029336562380194664, -0.04072701558470726, 0.03305143490433693, 0.015515053644776344, 0.006268846802413464, 0.013043024577200413, -0.012257711961865425, -0.017659299075603485, -0.020582029595971107, 0.031139368191361427, -0.0061800722032785416, 0.010434419848024845, 0.02025424689054489, -0.017946109175682068, -0.026127023622393608, 0.0152145866304636, 0.016375483945012093, 0.015883808955550194, -0.008153597824275494, 0.006132270209491253, 0.0029995543882250786, -0.025976788252592087, -0.02513001672923565, -0.6096760630607605, -0.0036226832307875156, 0.020554713904857635, -0.025621691718697548, -0.002847613301128149, 0.01414929237216711, 0.005797658581286669, 0.011991388164460659, 0.004298735409975052, 0.010427591390907764, 0.01984451897442341, 0.006470296531915665, -0.006559071131050587, -0.014531705528497696, -0.023668652400374413, -0.026331886649131775, 0.013862482272088528, -0.005019174423068762, -0.02349110320210457, 0.01049587968736887, -0.014067346230149269, 0.03988024219870567, -0.00741608627140522, -0.00842675007879734, 0.0183558389544487, -0.01974891498684883, 0.028107376769185066, -0.0034161116927862167, -0.012804016470909119, 0.00685270968824625, -0.03635657951235771, 0.016279879957437515, 0.026823561638593674, 0.006163000129163265, 0.044551149010658264, -0.013152286410331726, -0.0004455797898117453, 0.039907559752464294, 0.012653782963752747, 0.03242318332195282, -0.030347226187586784, -0.006350792478770018, 0.017536381259560585, 0.01432684063911438, 0.006258603185415268, 0.0076414369978010654, -0.006060567684471607, 0.01055733859539032, -0.0013742977753281593, -0.013186429627239704, -0.013773707672953606, -0.015351162292063236, 0.006005937233567238, 0.01069391518831253, 0.021019073203206062, 0.0004169841413386166, 0.020076697692275047, 0.0008920131367631257, -0.0013034489238634706, 0.008337975479662418, 0.017044706270098686, 0.009205234237015247, -0.017877820879220963, -0.04886695742607117, -0.042065463960170746, 0.024173984304070473, -0.006381521932780743, -0.02376425452530384, 0.011335822753608227, 0.005886433180421591, 0.013807851821184158, -0.0011643118923529983, -0.008249200880527496, 0.0017421998782083392, -0.0036192687693983316, 0.01711299456655979, 0.04020802676677704, 0.00022556410112883896, 0.015774548053741455, 0.007149762939661741, 0.02137417159974575, -0.008010192774236202, -0.01257866621017456, -0.034144043922424316, 0.030347226187586784, 0.011390453204512596, -0.02440616302192211, -0.00968325138092041, -0.005206966772675514, -0.012592324055731297, 0.016935445368289948, -0.0004660662089008838, -0.012571836821734905, -0.04564375802874565, 0.01783684827387333, 0.03280559927225113, 0.011335822753608227, -0.010728058405220509, -0.014422444626688957, -0.0211283341050148, -0.02941850945353508, -0.025703636929392815, 0.0009474972612224519, 0.010980724357068539, 0.02865368127822876, 0.008385777473449707, -0.013111312873661518, -0.020691290497779846, 0.027957143262028694, -0.026113364845514297, -0.003013212000951171, -0.010072492994368076, -0.02075957879424095, -0.01873825117945671, 0.00979934073984623, -0.03152178227901459, 0.0242695864289999, -0.00563035300001502, 0.005114777944982052, -0.01659400574862957, -0.015009721741080284, 0.010591482743620872, -0.00042295936145819724, -0.010209069587290287, -0.00644639553502202, 0.04526134580373764, 0.007573149167001247, 0.0029141942504793406, 0.01925724186003208, 0.004138258285820484, -0.017304202541708946, -0.023654993623495102, 0.015146298334002495, -0.01757735386490822, 0.012790358625352383, -0.003936808556318283, -0.0007328165811486542, 0.007361455820500851, 0.010953409597277641, -0.03433525189757347, -0.002758838701993227, -0.009881286881864071, 0.022453123703598976, -0.012209909968078136, -0.016621321439743042, -0.005708884447813034, -0.019571365788578987, 0.022657988592982292, 0.009218892082571983, -0.013787365518510342, -0.024706630036234856, -0.02753375843167305, 0.006005937233567238, 0.03469035029411316, -0.00918474793434143, -0.009150603786110878, -0.0008318342734128237, -0.029964813962578773, 0.002876635640859604, -0.023723281919956207, -0.004937228746712208, 0.01632085256278515, -0.01722225546836853, 0.006709304638206959, -0.01795976795256138, -0.012285027652978897, -0.016798870638012886, -0.0012138207675889134, -0.011390453204512596, -0.025744609534740448, -0.010577824898064137, -0.02313600480556488, 0.011458741500973701, 0.01685350015759468, -0.02263067290186882, 0.016498401761054993, -0.007190736010670662, 0.007682410068809986, -0.003009797539561987, -0.006641016807407141, 0.011165102943778038, 0.018137317150831223, -0.012681097723543644, -0.010263700038194656, 0.03785891830921173, 0.02952777035534382, 0.015760891139507294, 0.013309348374605179, -0.030456487089395523, 0.0035612238571047783, 0.0038582771085202694, 0.0005164286703802645, -0.0019564537797123194, -0.0016423285705968738, -0.01507801003754139, 0.002524952171370387, -0.010277356952428818, -0.019803546369075775, -0.02338184230029583, 0.029473138973116875, 0.016402799636125565, 0.0038548626471310854, -0.003011504653841257, 0.014285868033766747, -0.0016730581410229206, -0.03081158548593521, 0.020022068172693253, -0.018396811559796333, 0.004469455219805241, -0.0010900485794991255, -0.006063982378691435, -0.020937127992510796, -0.005739613901823759, -0.029254617169499397, 0.002224484458565712, 0.026441147550940514, -0.03886958211660385, 0.017072021961212158, -0.015993069857358932, 0.006562485359609127, 0.014422444626688957, 0.02338184230029583, 0.0159520972520113, 0.014531705528497696, -0.0020896154455840588, -0.0007110497099347413, 0.011417768895626068, 0.0030268696136772633, 0.018902143463492393, -0.013582500629127026, 0.0024173983838409185, 0.026441147550940514, -0.0033273370936512947, -0.011588488705456257, 0.0272879209369421, 0.015460423193871975, 0.019940121099352837, -0.01573357544839382, 0.03679362311959267, -0.0267962459474802, 0.008235543966293335, 0.006719547789543867, 0.031849563121795654, -0.036138057708740234, 0.007996534928679466, 0.005049904342740774, 0.026359202340245247, 0.007074646186083555, -0.0192162673920393, 0.015665287151932716, -0.0092393783852458, 0.004503599368035793, 0.004988444969058037, -0.007928247563540936, 0.005572307854890823, -0.007586806546896696, -0.001854021567851305, 0.016170619055628777, 0.03657510131597519, 0.015938440337777138, -0.008583812974393368, 0.013425438664853573, 0.012291856110095978, 0.0004421653866302222, 0.024447135627269745, -0.013521041721105576, -0.01748174987733364, -0.030620379373431206, -0.017795875668525696, -0.023204293102025986, -0.0014229530934244394, -0.01998109556734562, -0.019912807270884514, -0.025048071518540382, -0.028325898572802544, 0.020076697692275047, -0.00013486896932590753, 0.022057052701711655, -0.01585649512708187, 0.026236284524202347, -0.0068390523083508015, -0.024692973122000694, 0.024938810616731644, -0.004769923165440559, -0.006251774728298187, -0.00022129608260001987, 0.005985450930893421, 0.006975628435611725, 0.007853129878640175, 0.02025424689054489, -0.01745443604886532, 0.0018625576049089432, -0.009157433174550533, 0.023409156128764153, -0.011574830859899521, 0.017918795347213745, 0.056870318949222565, -0.020090356469154358, 0.001983769005164504, -0.020144985988736153, 0.0020059626549482346, -0.004667490720748901, -0.012428431771695614, -0.026331886649131775, 0.03209540247917175, -0.015883808955550194, -0.014695596881210804, -0.007887274026870728, 0.010741716250777245, -0.02160635218024254, -0.004124600440263748, -0.021196622401475906, -0.013964913785457611, 0.0017037878278642893, -0.023040400817990303, -0.007941904477775097, 0.0011805302929133177, -0.02349110320210457, 0.03662973269820213, 0.02198876440525055, -0.023723281919956207, -0.022903824225068092, -0.0006611140561290085, 0.01821926236152649, 0.07839472591876984, 0.028134692460298538, -0.0017140309792011976, 0.025198305025696754, -0.03381626307964325, -0.004428482614457607, -0.012046018615365028, -0.02237117849290371, 0.030019443482160568, -0.0018198775360360742, -0.004705049563199282, -0.013637131080031395, 0.02827126905322075, -0.008966226130723953, -0.004162158817052841, 0.002972239162772894, 0.006634187884628773, -0.014750227332115173, -0.012018703855574131, -0.007197564467787743, -0.016279879957437515, -0.004961129743605852, 0.01924358308315277, 0.02691916562616825, 0.04313075542449951, 0.043431226164102554, 0.019830860197544098, 0.0068185655400156975, 0.01470925472676754, -0.020677633583545685, -0.017290543764829636, 0.0035748814698308706, -0.003540737321600318, 0.015433108434081078, -0.002769082086160779, 0.034253306686878204, 0.014053688384592533, -0.03269633650779724, -0.00930083729326725, 0.0012693048920482397, -0.010639284737408161, 0.014586335979402065, 0.00660004373639822, -0.00878867693245411, 0.0032453914172947407, -0.0253758542239666, 0.005654253996908665, 0.051106806844472885, -0.04069970175623894, -0.002186926081776619, 0.01496874913573265, 0.015378477983176708, -0.024952467530965805, 0.009792512282729149, 0.006712719332426786, 0.010919265449047089, -0.00031007060897536576, -0.014381472021341324, -0.018000740557909012, -0.02816200815141201, -0.02767033316195011, -0.004602617118507624, -0.012366972863674164, -0.003137837629765272, -0.009956403635442257, -0.013008881360292435, -0.012565008364617825, 0.005323056597262621, -0.014668281190097332, 0.008194570429623127, 0.0051933093927800655, -0.029882866889238358, -0.0565425381064415, 0.004691391717642546, 0.039006154984235764, 0.02463834173977375, 0.0036192687693983316, 0.009362297132611275, -0.006999528966844082, 0.0030166262295097113, -0.0009329860331490636, -0.036138057708740234, 0.0014186850748956203, -0.016115989536046982, -0.02289016731083393, -0.03619268536567688, -0.0192162673920393, -0.010844148695468903, -0.010325158946216106, 0.02551243081688881, 0.0035168365575373173, -0.0137054193764925, -0.014190264977514744, 0.0025061729829758406, 0.016170619055628777, 0.05430268868803978, 0.01244208961725235, 0.015651630237698555, 0.0319041945040226, -0.04026265814900398, 0.012319170869886875, -0.01269475556910038, -0.013596158474683762, -0.015105325728654861, 0.022821879014372826, 0.006924412213265896, 0.012524035759270191, -0.0032931931782513857, 0.009649107232689857, -0.03996219113469124, -0.010721229948103428, -0.023914488032460213, -0.009655935689806938, -0.023982776328921318, 0.02050008438527584, -0.0017174454405903816, -0.004291906487196684, 0.011540686711668968, -0.006760520860552788, -0.006589800585061312, 0.012544522061944008, -0.023791570216417313, 0.03780428692698479, 0.020663976669311523, -0.003185639390721917, 0.002682014601305127, 0.026482120156288147, -0.035509806126356125, -0.029855553060770035, 0.009027685038745403, 0.011349480599164963, 0.007129276636987925, -0.012558179907500744, -0.006518098060041666, -0.013725905679166317, -0.002897122176364064, 0.009772025980055332, 0.0017148846527561545, -0.006985871586948633, 0.012209909968078136, -0.006333720404654741, 0.0018284135730937123, 0.005452803801745176, -0.005961550399661064, -0.0184787567704916, -0.022958455607295036, -0.02629091404378414, 0.0026051905006170273, 0.004404581617563963, 0.02402374893426895, -0.007894103415310383, -0.016662294045090675, -0.021073704585433006, -0.017140310257673264, 0.011595317162573338, -0.012476233765482903, 0.00028552956064231694, 0.0018796296790242195, 0.05241793766617775, 0.03133057430386543, 0.032860226929187775, 0.020704949274659157, 0.01634816825389862, 0.014955091290175915, -0.011492885649204254, -0.018191946670413017, 0.003967538010329008, -0.028626367449760437, -0.017304202541708946, 0.0012300391681492329, 0.02452908083796501, 0.00013967047561891377, -0.021811215206980705, 0.0077233826741576195, 0.004168987739831209, 0.013671275228261948, 0.0007460473570972681, -0.010065664537250996, -0.022712618112564087, -0.03504544869065285, -0.0005612427485175431, 0.026837218552827835, -0.007839472964406013, -0.009027685038745403, -0.03171299025416374, 0.010543680749833584, 0.04501551017165184, -0.002635920187458396, 0.03255975991487503, 0.015200928784906864, 0.0311666838824749, 0.009573990479111671, 0.007798499893397093, -0.0032283193431794643, 0.020718606188893318, -0.034772295504808426, -0.0042304471135139465, -0.03310606628656387, -0.013275204226374626, 0.01308399811387062, 0.009785682894289494, 0.02099175937473774, 0.004039240535348654, -0.00694831321015954, -1.452455671824282e-05, 0.011342651210725307, -0.024952467530965805, 0.002808347577229142, 0.020008409395813942, -0.032259292900562286, -0.005285498220473528, -0.03163104131817818, -0.007375113666057587, -0.0018249992281198502, 0.0007524493848904967, -0.0035543949343264103, -0.018424127250909805, 0.02151074819266796, -0.03485424071550369, 0.0017976840026676655, 0.010427591390907764, -0.014299525879323483, 0.04228398576378822, 0.039033472537994385, 0.025922158733010292, 0.01308399811387062, 0.011363138444721699, -0.016621321439743042, -0.027315234765410423, -0.013043024577200413, -0.01570625975728035, -0.00031156439217738807, 0.038268644362688065, 0.009833484888076782, -0.018888484686613083, -0.0029466310515999794, -0.021319542080163956, 0.005572307854890823, -0.03168567270040512, 0.012011874467134476, -0.0009987133089452982, 0.01647108793258667, -0.032368555665016174, 0.0013128385180607438, 0.0039026644080877304, 0.006801493465900421, -0.01607501693069935, 0.014927776530385017, 0.008201399818062782, -0.007757526822388172, 0.012571836821734905, 0.011185589246451855, -0.0042304471135139465, 0.014750227332115173, -0.011083156801760197, -0.012059676460921764, 0.0076072933152318, -0.0003845473111141473, -0.018069028854370117, 0.005500605795532465, 0.0110558420419693, 0.024105696007609367, -0.037531133741140366, 0.019585024565458298, 0.029828237369656563, -0.003264170605689287, -0.0030763784889131784, 0.0013725905446335673, -0.03053843416273594, 0.03004675917327404, -0.016675950959324837, -0.02249409630894661, -0.010024691931903362, 0.02111467719078064, 0.01081683300435543, -0.03182224929332733, -0.022316547110676765, -0.012285027652978897, 0.0004203985445201397, 0.004974787123501301, 0.02701476775109768, -0.02275359071791172, -0.010331988334655762, -0.011267534457147121, 0.010468563996255398, -0.02238483540713787, 0.014436102472245693, 0.005118192173540592, 0.017386147752404213, -0.04261176660656929, 0.004138258285820484, 0.0013981986558064818, -0.006784421857446432, -0.013206916861236095, 0.012257711961865425, -0.0123806307092309, -0.005398173350840807, 0.02917267195880413, -0.011868470348417759, 0.011636290699243546, 0.027711305767297745, 0.013575672172009945, -0.0369575135409832, 0.02189316228032112, -0.02955508418381214, -0.0069141690619289875, 0.012059676460921764, -0.0035578093957155943, -0.025348538532853127, -0.019202610477805138, 0.021715613082051277, 0.01912066526710987, -0.005749857053160667, 0.00594106363132596, 0.02387351542711258, 0.002606897847726941, 0.010092979297041893, 0.00477675162255764, 0.005425488576292992, -0.0007793378317728639, -0.0022022908087819815, 0.010270528495311737, 0.022903824225068092, -0.006316648330539465, -0.0015151419211179018, -0.002610312309116125, 0.009253036230802536, -0.016498401761054993, -0.034253306686878204, -0.02854442037642002, -0.011690921150147915, -0.010680257342755795, -0.012250883504748344, 0.021319542080163956, 0.025594376027584076, -0.013316177763044834, -0.021032731980085373, 0.027506442740559578, -0.005463046953082085, -0.0032078330405056477, 0.034116730093955994, -0.0009765196591615677, 0.023818885907530785, 0.029828237369656563, -0.02073226310312748, -0.03103010728955269, -0.023422814905643463, -0.0032283193431794643, -0.048457227647304535, -0.010338816791772842, 0.01131533645093441, 0.034389883279800415, 0.02086883969604969, -0.01636182703077793, -0.02715134434401989, -0.009396441280841827, -0.04277566075325012, -0.01924358308315277, -0.04640858620405197, 0.0123806307092309, 0.037203349173069, 0.012250883504748344, 0.0010439541656523943, 0.030237965285778046, -0.001196748809888959, 0.003264170605689287, -0.03291485831141472, -0.0068253944627940655, -0.025703636929392815, -0.016812527552247047, 0.031849563121795654, -0.03895152732729912, -0.04039923474192619, -0.0006850148783996701, -0.0035373230930417776, -0.018041713163256645, 0.01645742915570736, -0.007750697899609804, -0.011383624747395515, 0.01552871149033308, -0.00029214497772045434, 0.012175766751170158, 0.009676421992480755, 0.03272365406155586, 0.018396811559796333, -0.03998950496315956, 0.001690983772277832, 0.023040400817990303, -0.005254768300801516, -0.007238537538796663, -0.00751168979331851, -0.00044771376997232437, -0.016061358153820038, -0.007306825369596481, 0.0009389612241648138, -0.011977731250226498, -0.009410099126398563, -0.012319170869886875, 0.0011335823219269514, 0.01858801767230034, 0.0011250462848693132, 0.046709053218364716, -0.011670434847474098, -0.011793352663516998, -0.009601305238902569, 0.0041177719831466675, -0.0007486082031391561, -0.005459632724523544, 0.01961233839392662, -0.00897988397628069, 0.017167625948786736, 0.002181804506108165, -0.003303436329588294, 0.00496795866638422, -0.02238483540713787, -0.01156117394566536, 0.00128125527407974, -0.01946210488677025, -0.002932973438873887, -0.010516365990042686, 0.012503549456596375, 0.005510848946869373, -0.008938910439610481, -0.0019735258538275957, 0.012838160619139671, -0.017631985247135162, 0.021401487290859222, -0.02034985087811947, -0.0285171065479517, 0.003054184839129448, 0.006060567684471607, -0.04171036556363106, -0.006972213741391897, 0.024556396529078484, 0.006111783906817436, 0.010919265449047089, 0.20355314016342163, 0.008440407924354076, 0.01031150110065937, 0.019516736268997192, 0.013978571631014347, -0.0003604330704547465, 0.022576041519641876, 0.0041041141375899315, -0.013070340268313885, 0.010741716250777245, 0.0078121572732925415, -0.0031258873641490936, -0.00974471028894186, 0.0011395574547350407, 0.03717603534460068, -0.02840784564614296, -0.01470925472676754, -0.004411410540342331, 0.002275700680911541, -0.0058318027295172215, -0.004295320715755224, 0.002762253163382411, -0.01745443604886532, -0.009901773184537888, 0.006060567684471607, 0.009055000729858875, -0.004906499292701483, -0.0041348435916006565, 0.004858697764575481, 0.013609816320240498, -0.017058365046977997, 0.00238837581127882, 0.013104484416544437, -0.011759208515286446, -0.013568843714892864, -0.015760891139507294, 0.012476233765482903, -0.014504389837384224, 0.009000370278954506, 0.007306825369596481, -0.004510428290814161, -0.012394288554787636, 0.011356309056282043, -0.022535068914294243, 0.0038207184989005327, 0.014900460839271545, -0.012401117011904716, 0.016498401761054993, -0.013541528023779392, 0.016143303364515305, -0.011281192302703857, 0.002803226001560688, 0.024979783222079277, 0.02350476011633873, 0.018437784165143967, 0.002362767932936549, 0.011506542563438416, 0.000742632953915745, -0.012844990007579327, -0.013234231621026993, -0.02350476011633873, 0.007552662864327431, -0.02024058997631073, 0.00230813748203218, -0.02399643510580063, 0.0030166262295097113, -0.0266733281314373, 0.023805227130651474, 0.0158291794359684, 0.013302519917488098, -0.0076072933152318, -0.02513001672923565, -0.037531133741140366, -0.011274363845586777, -0.02764301933348179, -0.010953409597277641, 0.023040400817990303, 0.014722911641001701, 0.01660766266286373, 0.01760466955602169, -0.01685350015759468, -0.003306850790977478, -0.03316069766879082, -0.012530864216387272, 0.007504860870540142, -0.03455377370119095, 0.03698482736945152, -0.029500454664230347, -0.016238907352089882, -0.020308878272771835, -0.01483217254281044, -0.005357200745493174, -0.014845830388367176, -0.013186429627239704, 0.015651630237698555, -0.0029159013647586107, 0.012899620458483696, 0.044059474021196365, -0.0152145866304636, -0.029855553060770035, -0.01924358308315277, 0.048211392015218735, 0.018287550657987595, 0.02364133670926094, -0.013295690529048443, 0.009812998585402966, 0.007347798440605402, 0.023928146809339523, 0.009696908295154572, -0.00512502109631896, 0.008290174417197704, -0.05692495033144951, 0.006378107704222202, -0.0068766106851398945, 0.008529182523488998, 0.03040185756981373, -0.0023695966228842735, -0.017918795347213745, -0.006268846802413464, -0.021770242601633072, 0.004739193245768547, -0.007170249242335558, 0.025075387209653854, 0.00370804313570261, -0.03040185756981373, -0.0266733281314373, -0.022589700296521187, 0.024201298132538795, -0.029118040576577187, -0.02048642747104168, 0.03255975991487503, -0.009389611892402172, 0.01477754209190607, -0.011786524206399918, -0.03706677630543709, 0.016662294045090675, 0.007463888265192509, 0.0017046413850039244, 7.127569551812485e-05, -0.01634816825389862, 0.0013350321678444743, 0.021701954305171967, 0.016170619055628777, 0.02892683446407318, -0.005070390645414591, -0.010973895899951458, 0.020404480397701263, -0.016921788454055786, -0.025840213522315025, -0.03993487358093262, -0.0033256299793720245, 0.020568372681736946, 0.006569314282387495, -0.004182645585387945, 0.03332458809018135, -0.007620950695127249, -0.015760891139507294, -0.024078380316495895, 0.0033683099318295717, -0.00017413462046533823, -0.028189323842525482, -0.005285498220473528, 0.03272365406155586, 0.00937595497816801, -0.021947791799902916, -0.01018858328461647, -0.17328785359859467, 0.02063666097819805, 0.0038070608861744404, -0.013363978825509548, 0.026686985045671463, 0.001237721648067236, 0.012121135368943214, 0.011049012653529644, -0.004459212068468332, -0.01608867384493351, 0.01735883206129074, 0.013678104616701603, -0.0008100674604065716, -0.005439146421849728, -0.003667070297524333, 0.0014716082951053977, -0.0009995668660849333, 0.02439250610768795, 0.049713727086782455, 0.016512060537934303, 0.024447135627269745, -0.022453123703598976, -0.019912807270884514, 0.0025283663999289274, 0.03228660672903061, 0.004404581617563963, -0.00899354089051485, 0.020158644765615463, 0.013841995969414711, -0.021401487290859222, -0.01871093548834324, 0.007771184667944908, 0.019830860197544098, -0.0023030159063637257, 0.024337874725461006, -0.001486973138526082, 0.009724223986268044, -0.0024703217204660177, -0.01325471792370081, 0.023928146809339523, 0.02462468482553959, -0.007573149167001247, 0.004595788195729256, 0.0022176557686179876, 0.008877451531589031, 0.010331988334655762, 0.01132216490805149, -0.006644431035965681, 0.003095157677307725, -0.029008779674768448, 0.037913545966148376, -0.01959868147969246, 0.002263750182464719, -0.009314495138823986, -0.009601305238902569, 0.0010140781523659825, 0.0178641639649868, 0.02966434508562088, -0.003270999528467655, -0.03518202528357506, 0.01289279107004404, -0.01339129451662302, 0.005295741371810436, 0.0029432165902107954, -0.007498032413423061, -0.021565377712249756, 0.01873825117945671, 0.007491203490644693, 0.001195895136334002, -0.004534329287707806, 0.008324317634105682, 0.0058898478746414185, -0.02289016731083393, 0.03370700031518936, -0.0015731868334114552, 0.010338816791772842, -0.0475558266043663, 0.01824657805263996, 0.019940121099352837, -0.006104954984039068, 0.015200928784906864, 0.0042441049590706825, -0.008693073876202106, -0.01634816825389862, -0.005893262103199959, 0.00279468996450305, -0.011957244016230106, -0.002524952171370387, -0.017044706270098686, 0.004558229818940163, 0.015610657632350922, 0.005548407323658466, 0.00238837581127882, 0.004954300820827484, -0.0033939180430024862, -0.006227873731404543, 0.03988024219870567, -0.00980616919696331, 0.01846509985625744, -0.010570996440947056, 0.008809163235127926, 0.018506072461605072, -0.03378894552588463, 0.009259864687919617, 0.02689184993505478, 0.04097285494208336, 0.011697749607264996, 0.0032419769559055567, 0.037121403962373734, -0.011677263304591179, -0.013152286410331726, 0.008576983585953712, 0.02200242318212986, 0.002603483386337757, -0.005299155600368977, 0.04056312516331673, 0.006979042664170265, -0.02086883969604969, 0.010168096050620079, -0.006019595079123974, 0.04575302079319954, -0.030347226187586784, -0.023231608793139458, 0.01912066526710987, 0.004831382073462009, -0.01873825117945671, -0.09713298082351685, -0.009976889938116074, 0.010707572102546692, 0.021947791799902916, 0.0020418139174580574, -0.0011472399346530437, -0.008105795830488205, 0.03545517474412918, -0.008378948085010052, 0.015241901390254498, -0.007907760329544544, -0.022057052701711655, -0.01573357544839382, 0.004442139994353056, -0.0011062670964747667, -0.01425855327397585, 0.006767349783331156, -0.010789518244564533, -0.0035646383184939623, 0.03567369654774666, 0.01558334194123745, 0.008051165379583836, 0.024460794404149055, -0.004722121171653271, -0.012701584957540035, -0.007716554217040539, -0.021292226389050484, 0.01075537409633398, 0.021401487290859222, 0.005753271281719208, 0.006979042664170265, 0.0010550509905442595, 0.025580717250704765, -0.010448077693581581, -0.01470925472676754, -0.009621791541576385, -0.011294850148260593, -0.04059043899178505, 0.020336192101240158, -0.023286238312721252, -0.008959397673606873, 0.017891479656100273, -0.006152756977826357, -0.012810845859348774, 0.004660662263631821, -0.002062300220131874, -0.01619793474674225, 0.03419867530465126, 0.0037421872839331627, -0.015665287151932716, -0.0021596108563244343, -0.001816463191062212, -0.01621159166097641, -0.011424597352743149, 0.02701476775109768, -0.004766508471220732, 0.022453123703598976, -0.004739193245768547, -0.007962390780448914, 0.006726376712322235, -0.0035987822338938713, -0.009512530639767647, -0.0015006307512521744, 0.03630194813013077, 0.0003023881872650236, 0.0032351482659578323, -0.006337134633213282, -0.0028407846111804247, -0.02224825881421566, -0.007320483215153217, -0.02010401338338852, 0.01350738387554884, -0.035400547087192535, 0.007880445569753647, -0.003136130515486002, -0.018164630979299545, -0.017782218754291534, -0.013562014326453209, 0.020882498472929, 0.017536381259560585, -0.019393816590309143, 0.003834376111626625, 0.0049782018177211285, -0.04512476921081543, 0.03430793434381485, 0.000949204433709383, -0.0013555185869336128, -0.02187950350344181, 0.04162842035293579, -0.03687556833028793, 0.018669962882995605, 0.01671692356467247, 0.012032361701130867, -0.008440407924354076, 0.005483533721417189, 0.015282873995602131, -0.02616799622774124, 0.010079322382807732, 0.008023850619792938, -0.0010840734466910362, -0.024365190416574478, -0.0020110842306166887, -0.05118875205516815, 0.02463834173977375, -0.006941484287381172, 0.024051064625382423, -0.006227873731404543, -0.005763514898717403, 0.0012701584491878748, 0.0008096406818367541, 0.0002481845149304718, 0.005715712904930115, -0.01984451897442341, -0.0015185563825070858, -0.020199617370963097, -0.038022808730602264, -0.03406209871172905, -0.006244945805519819, -0.009191576391458511, -0.0021322956308722496, 0.017509065568447113, 0.001657693414017558, -0.018314866349101067, -0.0060912976041436195, -0.00279468996450305, 0.016512060537934303, 0.0032334409188479185, -0.010741716250777245, -0.023586705327033997, 0.022043395787477493, -0.015760891139507294, -0.0211283341050148, 0.018888484686613083, 0.004404581617563963, -0.0019052376737818122, 0.020185958594083786, -0.02037716656923294, -0.03381626307964325, 0.011342651210725307, -0.007067817263305187, 0.020718606188893318, 0.001154922298155725, -0.02664601244032383, -0.030019443482160568, 0.019448447972536087, -0.01243526116013527, -0.014381472021341324, -0.01699007675051689, -0.010229555889964104, -0.005743028130382299, 0.01156800240278244, 0.018697278574109077, 0.03805012255907059, 0.010584653355181217, -0.00430897856131196, -0.03228660672903061, 0.002555681625381112, -0.015296531841158867, 0.021524405106902122, 0.01985817588865757, -0.011902613565325737, -0.008037508465349674, 0.044469203799963, -0.0024020334240049124, 0.010523194447159767, -0.01912066526710987, -0.003912907559424639, -0.031139368191361427, -0.035018131136894226, -0.0030302838422358036, 0.0023337453603744507, -0.03908810392022133, -0.001731103053316474, -0.01783684827387333, 0.028353214263916016, 0.04504282400012016, 0.02738352306187153, -0.021210281178355217, -0.01597941294312477, -0.0013264961307868361, -0.02198876440525055, 0.022657988592982292, 0.03354310989379883, -0.007231708616018295, -0.010468563996255398, 0.018205605447292328, 0.023791570216417313, 0.003303436329588294, -0.02840784564614296, 0.010420762002468109, 0.011690921150147915, 0.012291856110095978, -0.007484374567866325, -0.013097655028104782, -0.007491203490644693, 0.023450130596756935, 0.022780906409025192, 0.039306625723838806, -0.008781848475337029, -0.008836478926241398, 0.02930924855172634, 0.03660241514444351, 0.011335822753608227, 0.007620950695127249, 0.0008736607269383967, 0.0016696437960490584, -0.0006990993279032409, 0.013602986931800842, -0.017754903063178062, -0.00918474793434143, 0.02224825881421566, 0.01420392282307148, 0.007614121772348881, -0.004756265319883823, -0.007894103415310383, 0.008815992623567581, -0.0041792308911681175, 0.000638920406345278, -0.02252141200006008, -0.01610233075916767, -0.02350476011633873, 0.012988394126296043, -0.004544572439044714, 0.013104484416544437, 0.019885491579771042, 0.0020093771163374186, 0.035018131136894226, 0.017823191359639168, 0.004674319643527269, -0.01581552065908909, 0.017413463443517685, -0.02364133670926094, 0.03168567270040512, 0.022084368392825127, 0.01884751208126545, -0.007900931872427464, 0.009314495138823986, -0.013514213263988495, -0.00904817134141922, 0.021579036489129066, -0.016648635268211365, 0.09390977770090103, 0.02653675153851509, -0.02941850945353508, 0.0186016745865345, -0.010215898044407368, 0.0034485484939068556, 0.02478857710957527, -0.005988865625113249, 0.010591482743620872, -0.009867629036307335, 0.021210281178355217, 0.00980616919696331, -0.03635657951235771, -0.010352474637329578, -0.025689980015158653, -0.015255559235811234, 0.006664917338639498, 0.013725905679166317, -0.020213274285197258, 0.006197144277393818, 0.015501395799219608, -0.004674319643527269, 0.04023534059524536, -0.007996534928679466, -0.02966434508562088, -0.020063040778040886, 0.04621737822890282, 0.015255559235811234, 0.00594106363132596, -0.043813638389110565, 0.01645742915570736, 0.00029065116541460156, -0.027629360556602478, -0.010516365990042686, -0.004069969989359379, -0.024556396529078484, -0.008768190629780293, -0.03403478488326073, -0.0040597268380224705, -0.0036226832307875156, 0.0032283193431794643, 0.019202610477805138, -0.029828237369656563, -0.020718606188893318, 0.025949474424123764, -0.0059649646282196045, 0.003762673819437623, -0.02361402101814747, -0.010639284737408161], "faed06c2-415c-488c-b88b-fb849d4daad0": [-0.02268899604678154, -0.011114084161818027, -0.0005701050977222621, -0.0213607270270586, -0.004530344624072313, 0.007230931427329779, -0.01435343362390995, -0.032339274883270264, -0.02197064645588398, -0.05665472149848938, 0.022323044016957283, 0.0036019119434058666, 0.005933159030973911, -0.01435343362390995, 0.013336900621652603, 0.0029310008976608515, 0.023868173360824585, -0.0012367806630209088, 0.009907799772918224, -0.042667239904403687, -0.022404367104172707, -0.009331764653325081, -0.022051969543099403, -0.0001494090392952785, -0.03320671617984772, 0.014868476428091526, 0.027324382215738297, -0.014651616103947163, -0.010843008756637573, 0.009521516971290112, 0.006373656447976828, -0.011954417452216148, -0.013167479075491428, -0.019436093047261238, -0.014001035131514072, -0.004093235824257135, -0.0011063257697969675, -0.011330944485962391, 0.007136055268347263, 0.006370267830789089, 0.024342555552721024, -0.007400353439152241, -0.013906159438192844, 0.017267491668462753, -0.008803168311715126, 0.019558077678084373, 0.006221176590770483, -0.021211637184023857, -0.019436093047261238, -0.015383519232273102, 0.01462450809776783, 0.018812621012330055, -0.00381877226755023, 0.0035781930200755596, -0.006766715086996555, -0.002312610624358058, -0.007298700511455536, 0.005899274721741676, 0.0006620165077038109, -0.010653256438672543, 0.016820218414068222, 0.0022346763871610165, -0.027392150834202766, -0.005414727609604597, -0.02412569522857666, -0.0345078743994236, -0.010233089327812195, -0.006556631997227669, -0.0054757194593548775, -0.009982345625758171, 0.01923278719186783, 0.038872186094522476, -0.015803685411810875, -0.0026429833378642797, 0.0015434345696121454, -0.01653558947145939, 0.0029259182047098875, 0.002986910054460168, -0.014814261347055435, -0.01156813558191061, 0.021848663687705994, -0.007962835021317005, 0.00835589412599802, -0.007102170959115028, 0.01862286776304245, 0.05730530247092247, -0.008227133192121983, -0.0001779990125214681, -0.017470797523856163, -0.003200381761416793, -0.003081786446273327, 0.010287304408848286, 0.0048353043384850025, 0.010246643796563148, 0.0018771959003061056, 0.012530452571809292, 0.02832736074924469, 0.011263175867497921, 0.005462165921926498, -0.02309560962021351, -0.018704190850257874, 0.001557835377752781, -0.01568170264363289, -0.012279707938432693, -0.02296007238328457, 0.013194586150348186, 0.014814261347055435, -0.006146630737930536, 0.006837872322648764, 0.013303016312420368, -0.010721025057137012, 0.037706565111875534, -0.011168299242854118, -0.011005653999745846, -0.008755729533731937, 0.0005713757709600031, 0.03789631649851799, -0.042423274368047714, -0.023759743198752403, -0.02729727514088154, 0.013499545864760876, 0.009955237619578838, 0.013228471390902996, -0.022607672959566116, 0.029818274080753326, 0.011405490338802338, -0.00010578287037787959, -0.024654291570186615, 0.018717743456363678, 0.004086459055542946, 0.029303232207894325, 0.02436966262757778, 0.0028954222798347473, -0.00654307845979929, -0.03919747844338417, 0.009006474167108536, -0.02965562976896763, 0.014882029965519905, 0.003822160651907325, -0.021577587351202965, 0.013831613585352898, 0.01242202240973711, -0.0072377086617052555, -0.032447703182697296, -0.004069516900926828, 0.010429618880152702, -0.00849143136292696, 0.018392454832792282, -0.008213579654693604, -0.03109232895076275, 0.013946820050477982, -0.01606120727956295, -0.011845987290143967, 0.006661673542112112, 0.002780215349048376, -0.006468532606959343, -0.001523951068520546, 0.022716103121638298, -0.006824318785220385, -0.007773082237690687, -0.0001496208133175969, 0.006532913073897362, -0.0008776060421951115, -0.010619372129440308, 0.0007535043987445533, 0.026741571724414825, 0.005157206207513809, -0.045703284442424774, -0.017755426466464996, -0.005140264052897692, 0.023326022550463676, 0.03602589666843414, -0.025996113196015358, 0.02138783596456051, 0.016820218414068222, 0.002112692454829812, 0.031526047736406326, -0.018324684351682663, -0.010822677984833717, -0.030767038464546204, 0.029953813180327415, 0.002107609761878848, 0.004018690437078476, 0.01902948133647442, -0.02030353434383869, -0.024559415876865387, 0.017606336623430252, -0.008518539369106293, 0.007400353439152241, -0.011710450053215027, 0.012340699322521687, 0.006587128154933453, -0.02470850758254528, -0.011534251272678375, -0.6085096597671509, -0.011303836479783058, 0.016833771020174026, -0.023285361006855965, 0.010002675466239452, -0.009521516971290112, 0.009162342175841331, 0.006112746428698301, 0.0008106843451969326, 0.00799671933054924, 0.005926382262259722, 0.016887987032532692, -0.009507963433861732, -0.013879051432013512, -0.018582206219434738, -0.012909957207739353, 0.013065826147794724, -0.006648120004683733, -0.008742175996303558, 0.009230111725628376, -0.017918072640895844, 0.030387531965970993, 0.0030174062121659517, 0.0004260963760316372, 0.009419864043593407, -0.016250960528850555, 0.03529399260878563, -0.007793412543833256, -0.0158850084990263, 0.010043337009847164, -0.03735416755080223, 0.027636120095849037, 0.027243060991168022, -0.014665169641375542, 0.03776077926158905, -0.012930287979543209, -0.006427871063351631, 0.03982095047831535, 0.03255613520741463, 0.024274786934256554, -0.02415280230343342, -0.0034070766996592283, -0.0033443905413150787, 0.03120075911283493, 0.009033582173287868, 0.0006819235859438777, -0.0054282816126942635, -0.018162040039896965, 0.0011596936965361238, -0.0037814993411302567, -0.011879871599376202, -0.029709843918681145, 0.0007293617818504572, 0.003371498081833124, 0.022661888971924782, -0.008078041486442089, 0.024586522951722145, 0.008118703030049801, 0.006448201835155487, 0.010307635180652142, 0.011784994974732399, 0.011385159566998482, -0.00014919726527296007, -0.03407415747642517, -0.04011913388967514, 0.023732636123895645, -0.00927754957228899, -0.029276125133037567, 0.013370785862207413, -0.00013109028805047274, 0.01801294833421707, -0.00509282574057579, 0.008979367092251778, 0.002441371325403452, -0.008376224897801876, 0.0292219091206789, 0.04171847552061081, 0.0031055056024342775, 0.011303836479783058, 0.011954417452216148, -0.0025176112540066242, -0.010449949651956558, -0.0020110392943024635, -0.036920446902513504, 0.03580903634428978, 0.02309560962021351, -0.02843579091131687, -0.016006991267204285, 0.003734061261638999, -0.00685142632573843, 0.008477877825498581, 0.0020923619158566, 0.002072031144052744, -0.05012181028723717, 0.02228238433599472, 0.03420969471335411, -0.00014199683209881186, 0.0006954773562029004, -0.010361850261688232, -0.018162040039896965, -0.03182423114776611, -0.023190485313534737, 0.0070479558780789375, 0.024356108158826828, 0.025169335305690765, 0.009596062824130058, -0.021130314096808434, -0.03380307927727699, 0.033125393092632294, -0.01801294833421707, 0.008030603639781475, -0.019761383533477783, -0.023841066285967827, -0.018609313294291496, 0.0138383898884058, -0.02522354945540428, 0.016833771020174026, -0.013960374519228935, 0.0031241420656442642, -0.016942201182246208, -0.007976388558745384, 0.017104847356677055, 0.010599041357636452, -0.0042050546035170555, -0.0045981137081980705, 0.041257649660110474, 0.015166658908128738, 0.006356713827699423, 0.013262355700135231, -0.006136465352028608, 0.014312772080302238, -0.009982345625758171, 0.01592567004263401, -0.016156082972884178, 0.02805628627538681, -0.0018721133237704635, 0.0005798468482680619, 0.012855742126703262, 0.0062957219779491425, -0.033369358628988266, -0.0017704600468277931, 0.006953079719096422, 0.027839425951242447, -0.00031533671426586807, -0.0030292656738311052, -0.012957395985722542, -0.021686017513275146, 0.017782535403966904, 0.01230003871023655, -0.02637561969459057, -0.03269167244434357, -0.0305772852152586, 0.0013841778272762895, 0.02679578587412834, 0.00199917983263731, -0.001451946678571403, -0.00023973215138539672, -0.03437233716249466, -0.00497084204107523, -0.009250442497432232, -0.021401388570666313, 0.030495962128043175, -0.003132613142952323, 0.007834074087440968, -0.006356713827699423, -0.003703565336763859, -0.030197780579328537, 0.00460489047691226, 0.0068582030944526196, -0.022323044016957283, -0.0001267488405574113, -0.020723700523376465, 0.02111675962805748, 0.03673069179058075, -0.030604392290115356, 0.02008667401969433, -0.016318729147315025, -0.0002909823087975383, -0.0036662924103438854, -0.02466784603893757, 0.016725340858101845, 0.02275676466524601, -0.020479733124375343, -0.011906979605555534, 0.03491448983550072, 0.006116134580224752, 0.01951741613447666, 0.019259894266724586, -0.032068200409412384, 0.009846807457506657, -0.0011969665065407753, 0.007203823886811733, -0.01182565651834011, 0.0016849020030349493, -0.024491647258400917, -0.0029276125133037567, -0.029547199606895447, -0.014448309317231178, -0.018256915733218193, 0.03130918741226196, 0.023963049054145813, 0.023353131487965584, -0.018771959468722343, -0.0018873612862080336, 0.01671178825199604, -0.02327180840075016, 0.017104847356677055, -0.015735916793346405, 0.012774419970810413, -0.005401174072176218, 0.0037103421054780483, -0.005512992385774851, 0.0036324081011116505, -0.0242612324655056, -0.014001035131514072, 0.0167388953268528, -0.008484654128551483, 0.01585790142416954, -0.016549142077565193, -0.00849143136292696, 0.008837052620947361, -0.002361743012443185, 0.0314447246491909, 0.011066646315157413, 0.003107199678197503, 0.015912115573883057, -0.012049294076859951, 0.011981524527072906, 0.0034511263947933912, -0.02805628627538681, 0.007305477280169725, 0.030116457492113113, -0.002854760969057679, -0.004323649685829878, 0.003395217237994075, 0.033775974065065384, 0.032312165945768356, -0.02251279726624489, 0.02371908165514469, -0.02235015295445919, 0.0007662110729143023, 0.0010394040727987885, 0.03971252217888832, -0.01902948133647442, 0.018338238820433617, 0.012150947004556656, 0.02610454335808754, -0.006085638888180256, -0.026050329208374023, 0.013418223708868027, -0.009067466482520103, 0.00230244523845613, -0.004753981716930866, -0.00992813054472208, 0.026402726769447327, -0.00939953327178955, -0.00060653081163764, 0.022133292630314827, 0.03461630642414093, 0.026646694168448448, -0.00898614339530468, 0.030468855053186417, -0.005113156512379646, 0.0004267317126505077, 0.021414943039417267, -0.01520732045173645, -0.014882029965519905, -0.03700176998972893, -0.020154442638158798, -0.009020027704536915, 0.00039644751814194024, -0.03000802733004093, -0.00485224649310112, -0.023976603522896767, -0.01715906150639057, -0.0001221956335939467, 0.008965812623500824, 0.01817559450864792, 0.0037611688021570444, 0.008037380874156952, -0.02272965759038925, -0.029872490093111992, 0.019354771822690964, 0.005604480393230915, -0.0037306728772819042, -0.012137393467128277, -0.005983985494822264, -0.0052283634431660175, 0.016562696546316147, 0.005848447792232037, -0.0010131436865776777, 0.006017869804054499, 0.003872987348586321, 0.010002675466239452, -0.013709629885852337, 0.0242612324655056, 0.05649207532405853, 0.003920425660908222, -0.002953025745227933, 0.0058450596407055855, 0.015302196145057678, 0.01389260496944189, -0.019842706620693207, -0.025806361809372902, 0.040851037949323654, -0.02237726002931595, -0.011215737089514732, -0.008952259086072445, 0.0021042213775217533, -0.024234125390648842, 0.010077221319079399, -0.015383519232273102, -0.017958734184503555, -0.010666809976100922, -0.02911347895860672, 0.006695557851344347, 0.0015087031060829759, -0.0010368627263233066, 0.04835981875658035, 0.005079272203147411, -0.0144347557798028, -0.025088012218475342, -0.013296240009367466, 0.03130918741226196, 0.07714800536632538, 0.016034100204706192, -0.017104847356677055, 0.022878749296069145, -0.03274588659405708, -0.0037577804177999496, -0.025481071323156357, -0.027663227170705795, 0.019802045077085495, -0.010111105628311634, -0.015383519232273102, 0.007529114373028278, 0.012150947004556656, 0.0007674817461520433, 0.005357123911380768, 0.010029783472418785, 0.010775240138173103, -0.021021883934736252, -0.020723700523376465, 0.005916216876357794, -0.021170975640416145, -0.00018064622418023646, 0.030739931389689445, 0.025535285472869873, 0.04627254232764244, 0.0348602756857872, 0.03838425129652023, 0.010456726886332035, 0.014638062566518784, -0.030387531965970993, -0.006041589193046093, 0.0021397999953478575, -0.004831915721297264, 0.01467872317880392, -0.018473776057362556, 0.027148183435201645, 0.013621530495584011, -0.021645355969667435, -0.019422540441155434, 0.010734578594565392, -0.007495230063796043, 0.026782231405377388, 0.005221586674451828, -0.02529131807386875, 0.009114904329180717, -0.024898258969187737, -0.007956057786941528, 0.031038112938404083, -0.022051969543099403, 0.003974640276283026, -0.007129278499633074, 0.007366469129920006, -0.017985841259360313, 0.016616910696029663, -0.007352915592491627, -0.0018721133237704635, -0.008322009816765785, -0.014732938259840012, -0.00030559496372006834, -0.04104078933596611, -0.05074528232216835, 0.0007162315887399018, -0.014760046266019344, -0.012584667652845383, -0.02327180840075016, -0.005157206207513809, -0.009352095425128937, 0.008410109207034111, -0.017579227685928345, 0.01105309184640646, 0.018162040039896965, -0.033098284155130386, -0.04524245485663414, 0.008240686729550362, 0.028164716437458992, 0.009697715751826763, 0.01035507395863533, 0.011967970989644527, 0.0031597206834703684, 0.0028378188144415617, -0.00306314998306334, -0.03854689747095108, 0.021753786131739616, -0.014732938259840012, -0.022634781897068024, -0.038357146084308624, -0.02033064141869545, 0.0006535454303957522, -0.02529131807386875, 0.010673587210476398, 0.0007234319928102195, -0.01633228175342083, -0.009094573557376862, -0.006807376630604267, 0.008172918111085892, 0.03748970478773117, 0.01722683012485504, 0.01429921854287386, 0.025196442380547523, -0.03434523195028305, 0.015966331586241722, -0.014339879155158997, -0.017281046137213707, -0.016698233783245087, 0.016725340858101845, -0.0066311778500676155, -0.00030855985824018717, -0.013147148303687572, -0.0089725898578763, -0.029059264808893204, -0.0010292388033121824, -0.013147148303687572, -0.00855919998139143, -0.012672767043113708, 0.016169637441635132, 0.014177233912050724, 0.0030207945965230465, 0.021577587351202965, -0.010544826276600361, -0.02436966262757778, 0.026633141562342644, -0.025413302704691887, 0.029953813180327415, 0.003247820073738694, 0.003808606881648302, 0.019842706620693207, 0.028652651235461235, -0.020249320194125175, -0.027459919452667236, 0.025887684896588326, 0.0118730952963233, 0.012266154401004314, -0.010273750871419907, -0.02142849564552307, -0.01579013094305992, -0.018121378496289253, -0.007007294800132513, -0.0018534768605604768, -0.011981524527072906, 0.013526653870940208, -0.0041847238317132, 0.01194086391478777, 0.0338301882147789, -0.007915396243333817, -0.003896706271916628, -0.02900504879653454, -0.017931625247001648, -0.011493589729070663, 0.0021957093849778175, 0.023637760430574417, -0.0052724131383001804, -0.007298700511455536, -0.013309793546795845, -0.012476237490773201, 0.00854564644396305, 0.00430670753121376, -0.004343980457633734, -0.007088616956025362, 0.058552250266075134, 0.022607672959566116, 0.03182423114776611, 0.03477895259857178, 0.022783873602747917, 0.010124660097062588, -0.018948158249258995, 0.0031258361414074898, -0.0074613457545638084, -0.03304407000541687, -0.005069106817245483, 0.0048115854151546955, 0.010470280423760414, 0.00479125464335084, -0.015695255249738693, 0.006370267830789089, 0.010978546924889088, 0.009358871728181839, -0.0029614968225359917, -0.007007294800132513, -0.027310829609632492, -0.044917166233062744, -0.00199917983263731, 0.028517113998532295, 0.00037421088200062513, -0.0014951493358239532, -0.036405403167009354, 0.004079682286828756, 0.022810980677604675, -0.019707169383764267, 0.025996113196015358, 0.013194586150348186, 0.04196244478225708, 0.005079272203147411, 0.003271539229899645, 0.005499438848346472, 0.011798549443483353, -0.03502291813492775, -0.007359692361205816, -0.025982560589909554, -0.012842188589274883, 0.020764362066984177, 0.023448007181286812, 0.021035438403487206, 0.006143242120742798, 0.002768355654552579, 0.004747204948216677, 0.025006689131259918, -0.020750807598233223, -0.005472331307828426, 0.022661888971924782, -0.02125229686498642, 0.008084818720817566, -0.04494427144527435, -0.003930590581148863, 0.0072715929709374905, -0.009745154529809952, -0.00067472318187356, 0.0003739990934263915, 0.0288695115596056, -0.017308153212070465, -0.007861181162297726, 0.015613933093845844, -0.018541544675827026, 0.03431812301278114, 0.04147450998425484, 0.037571027874946594, 0.017403028905391693, 0.016291620209813118, -0.0070479558780789375, -0.023217592388391495, -0.0010758298449218273, -0.023529330268502235, -0.004974230192601681, 0.024925366044044495, 0.0030800921376794577, -0.009081020019948483, -0.016223851591348648, -0.020208658650517464, 0.007562998682260513, -0.03122786618769169, 0.02702620066702366, 0.007468122523277998, -0.005208032671362162, -0.024654291570186615, -0.009236888028681278, -0.020723700523376465, 0.020886346697807312, -0.0106803635135293, -0.0014400871004909277, 0.004191500600427389, -0.0033528616186231375, 0.011744334362447262, 0.04114921763539314, 0.00048539406270720065, 0.000837791885714978, 0.006932748947292566, 0.00015258570783771574, 0.002829347737133503, -0.0005607868661172688, -0.021997755393385887, -0.02019510418176651, 0.007183493580669165, 0.047031551599502563, -0.017809642478823662, 9.397627763974015e-06, 0.025941899046301842, 0.012442353181540966, -0.0029462487436830997, 0.00673283077776432, -0.02808339335024357, 0.03301696106791496, -0.004587948322296143, -0.02607743628323078, 0.010741355828940868, 0.0216995719820261, 0.01630517467856407, -0.02965562976896763, -0.02538619562983513, -0.01084978599101305, -0.005963654723018408, -0.0015925669576972723, 0.017443690448999405, -0.029818274080753326, -0.018527992069721222, -0.010721025057137012, 0.005794232711195946, -0.019639400765299797, 0.01797228679060936, 0.010239866562187672, 0.02071014791727066, -0.046624939888715744, -0.012943842448294163, 0.0054655540734529495, -0.005889109335839748, 0.00424571568146348, 0.0060822502709925175, -0.010036559775471687, -0.0035307547077536583, 0.02764967270195484, -0.010036559775471687, 0.010768462903797626, 0.028002070263028145, 0.011073422618210316, -0.04429369047284126, 0.019259894266724586, -0.0288695115596056, -0.011724003590643406, 0.004032243974506855, 0.006136465352028608, -0.0406612828373909, -0.013492769561707973, 0.018189147114753723, 0.007481676060706377, -0.013736736960709095, -0.01736236736178398, -0.001341822324320674, 0.014312772080302238, 0.0027158348821103573, -0.019368324428796768, 0.010870116762816906, 0.0008602403104305267, -0.0098264766857028, 0.004984395578503609, 0.004676047712564468, -0.015844346955418587, 0.010023006238043308, 0.013452108018100262, 0.013099710457026958, -0.010124660097062588, -0.04732973501086235, -0.03030621074140072, -0.015505502931773663, 0.005265636369585991, 0.006787045858800411, 0.008315232582390308, 0.006682004313915968, -0.0254539642482996, -0.01370285265147686, 0.02529131807386875, -0.03488738089799881, -0.0013274215161800385, 0.038628220558166504, -0.0022685606963932514, 0.018202701583504677, 0.03174290806055069, -0.025345534086227417, -0.03201398253440857, -0.01207640115171671, -0.0050826603546738625, -0.04695022851228714, -0.013303016312420368, 0.023963049054145813, 0.04811585322022438, 0.014895583502948284, -0.02392238937318325, -0.0263078510761261, -0.013025164604187012, -0.03838425129652023, -0.020100228488445282, -0.04234195128083229, 0.016494927927851677, 0.02286519482731819, -0.0018653364386409521, 0.001557835377752781, 0.018663529306650162, 0.0013223388232290745, 0.0006010245997458696, -0.04082392901182175, -0.0011986608151346445, -0.021536925807595253, -0.0172539371997118, 0.02361065149307251, -0.028490006923675537, -0.04573038965463638, -0.0098264766857028, -0.006346548907458782, -0.019666507840156555, 0.008261017501354218, 0.0031885222997516394, 0.007454568520188332, 0.00631266413256526, -0.004584559705108404, 0.009318211115896702, 0.0032444316893815994, 0.010382181033492088, 0.014543185941874981, -0.02484404481947422, -0.009460525587201118, 0.022133292630314827, 0.003645961871370673, -0.020899899303913116, 0.004540510009974241, 0.003490093629807234, -0.009731600992381573, -0.009385979734361172, -0.008769283071160316, -0.0072851465083658695, -0.0086269685998559, 0.001899220747873187, -0.0015756248030811548, 0.011791772209107876, 0.018067164346575737, 0.04670626297593117, -0.01873129792511463, -0.010700694285333157, -0.0002600628067739308, 0.005584149621427059, 0.008511762134730816, 0.002390544628724456, 0.01783674955368042, -0.008335563354194164, 0.01435343362390995, 0.002297362545505166, 0.0054655540734529495, 0.015505502931773663, -0.028137607499957085, -0.013906159438192844, -0.011757887899875641, -0.01626451313495636, -0.00539778545498848, -0.0026633141096681356, -0.013865497894585133, 0.004984395578503609, -0.007020848337560892, -0.017674105241894722, 0.012069624848663807, -0.0017026913119480014, 0.013831613585352898, -0.015383519232273102, -0.017606336623430252, 0.003954309970140457, 0.006150019355118275, -0.036784909665584564, -0.0006344854482449591, 0.021536925807595253, 0.015735916793346405, 0.008511762134730816, 0.1842227280139923, -0.0008547340403310955, 0.0023041393142193556, 0.011459705419838428, 0.012056070379912853, -0.0018856669776141644, 0.0030648442916572094, 0.018067164346575737, -0.0083694476634264, 0.004794643260538578, -0.007366469129920006, -0.005021668504923582, 0.001143598579801619, 0.00017492823826614767, 0.022336598485708237, -0.019151464104652405, -0.015898561105132103, -0.015803685411810875, -0.025752145797014236, -0.0033647213131189346, -0.0026633141096681356, -0.005269024521112442, -0.017646996304392815, -0.0008208496728911996, 0.018134932965040207, 0.023082055151462555, -0.004648940172046423, -0.0029106701258569956, 0.01637294329702854, 0.004279599990695715, -0.010402511805295944, -0.00043287326116114855, 0.0013172561302781105, -0.018568653613328934, -0.005140264052897692, -0.011073422618210316, 0.006909030023962259, -0.005933159030973911, 0.0005993304075673223, 0.014258556999266148, -0.00269889272749424, -0.022431474179029465, 0.021143866702914238, -0.03082125261425972, 0.022160399705171585, -0.013120041228830814, -0.009948460385203362, 0.02747347392141819, -0.01630517467856407, 0.023353131487965584, -0.004008525051176548, -0.0002575214602984488, 0.03439944609999657, 0.024179909378290176, -0.004157616291195154, -0.0012003550073131919, 0.013872274197638035, 0.005651918239891529, -0.016359390690922737, -0.013330124318599701, -0.011757887899875641, 0.014529632404446602, -0.0019415762508288026, 0.003822160651907325, -0.030523071065545082, 0.0019619069062173367, -0.014732938259840012, 0.026714462786912918, 0.008294901810586452, 0.008945482783019543, -0.0008809944847598672, -0.00939953327178955, -0.03881797194480896, -0.011093753390014172, -0.023393791168928146, -0.01619674451649189, 0.015871454030275345, 0.01657624915242195, 0.01547839492559433, 0.021604696288704872, 0.00022787261696066707, 0.008288124576210976, -0.03944144397974014, -0.00721060112118721, 0.013797729276120663, -0.012293261475861073, 0.03659515455365181, -0.026606032624840736, 0.0004136014904361218, -0.03380307927727699, 0.0008081429987214506, 0.006288945209234953, -0.001346905017271638, -0.01920568011701107, -0.008552423678338528, -0.012340699322521687, 0.006512582302093506, 0.03109232895076275, -0.023366684094071388, -0.018677083775401115, -0.01072780229151249, 0.05622100085020065, 0.006576962769031525, 0.0028920338954776525, -0.026294296607375145, -0.009738377295434475, 0.019354771822690964, 0.009392756968736649, -0.0026175701059401035, -0.0017704600468277931, 0.007346138823777437, -0.04423947632312775, 4.8444107960676774e-05, -0.00624489551410079, 0.009230111725628376, 0.018338238820433617, 0.012293261475861073, -0.03003513440489769, -0.0038865411188453436, -0.013499545864760876, 0.01467872317880392, 0.0004341439052950591, 0.01705063134431839, 0.023420900106430054, -0.041637156158685684, -0.02668735571205616, -0.005533323157578707, 0.0251151192933321, -0.033098284155130386, -0.010904001072049141, 0.025779254734516144, -0.004940345883369446, 0.0086269685998559, -0.008328786119818687, -0.01907014288008213, 0.016223851591348648, 0.008206802420318127, -0.0031088939867913723, -0.012957395985722542, -0.014109465293586254, 0.0035781930200755596, 0.0015400460688397288, 0.013851944357156754, 0.021577587351202965, -0.0031021172180771828, -0.0029055876657366753, 0.00563836470246315, -0.010632925666868687, -0.0037950531113892794, -0.024288339540362358, 0.007820520550012589, 0.006607458461076021, -0.0016315339598804712, -0.002914058743044734, 0.04507980868220329, -0.0008178848074749112, -0.011866318061947823, -0.03393861651420593, 0.004828527569770813, 0.02385461889207363, -0.04982362687587738, -0.004167781677097082, 0.03307117894291878, 0.015803685411810875, -0.01049061119556427, -0.0069191949442029, -0.17099425196647644, 0.01030085887759924, 0.011690119281411171, -0.017064185813069344, 0.008999697864055634, 0.013336900621652603, 0.012137393467128277, 0.006143242120742798, 0.00029627676121890545, -0.005960266571491957, 0.01308615691959858, 0.01356731541454792, -0.0017738485476002097, 0.004577782936394215, 0.004337203688919544, 0.008308455348014832, -0.026538264006376266, 0.025738593190908432, 0.04993205517530441, -0.003207158762961626, 0.01572236232459545, -0.04337203502655029, -0.0007327502244152129, 0.001125809270888567, 0.03361332789063454, 0.003595135174691677, -0.0014765128726139665, 0.021618248894810677, 0.012022186070680618, -0.026904216036200523, -0.006966633256524801, 0.0033122003078460693, 0.0187990665435791, -0.012523675337433815, 0.01763344369828701, 0.003376580774784088, 0.015573271550238132, -0.006759938318282366, -9.614699229132384e-05, 0.024098588153719902, 0.029438769444823265, -0.010531272739171982, 0.025304872542619705, -0.0046455515548586845, 0.006607458461076021, 0.00714960927143693, 0.005245305597782135, 0.001958518521860242, 0.011798549443483353, -0.008687960915267467, 0.04312806949019432, -0.025941899046301842, 0.0013816364808008075, 0.006356713827699423, -0.005102991126477718, -0.0056451414711773396, 0.00721060112118721, 0.02487115189433098, 0.0005315615562722087, -0.021103207021951675, 0.0035917467903345823, 0.009792592376470566, 0.0052046445198357105, -0.0068548149429261684, -0.01745724491775036, -0.03225795179605484, 0.014814261347055435, 0.0062381187453866005, 0.005922993645071983, -0.00473365094512701, 0.0008606638293713331, 0.01242202240973711, -0.021957093849778175, 0.01664401963353157, 0.0012062847381457686, 0.011608796194195747, -0.0358903594315052, 0.014245003461837769, 0.041772693395614624, -0.004093235824257135, 0.008003495633602142, 0.009358871728181839, -0.004164393059909344, -0.006770103704184294, -0.01722683012485504, 0.013147148303687572, -0.006143242120742798, -0.004018690437078476, -0.022770319133996964, 0.013845167122781277, 0.022661888971924782, -0.00649225153028965, -0.027175290510058403, -0.0006586280651390553, 0.0144347557798028, -0.021550480276346207, 0.042016658931970596, -0.01565459370613098, 0.02610454335808754, -0.008979367092251778, 0.008261017501354218, 0.021021883934736252, -0.01900237239897251, 0.010619372129440308, 0.016237406060099602, 0.022336598485708237, 0.011859540827572346, -0.007190270349383354, 0.021848663687705994, -0.0152886426076293, -0.02037130296230316, 0.0018788902088999748, 0.025643715634942055, 0.00230244523845613, -0.005780679173767567, 0.045323777943849564, -0.003964475356042385, -0.020615270361304283, 0.007183493580669165, -0.021482711657881737, 0.05676315352320671, -0.028408683836460114, -0.01018565148115158, 0.01841956190764904, -0.008227133192121983, 0.002565049333497882, -0.10609884560108185, -0.007413907442241907, 0.0328001007437706, 0.01356731541454792, -0.010510941967368126, -0.002981827361509204, -0.009548624977469444, 0.03477895259857178, -0.021442050114274025, 0.014787153340876102, -0.027039753273129463, -0.016156082972884178, 0.007380023133009672, -0.013641860336065292, 0.007590106222778559, -0.009311433881521225, -0.0009216557373292744, -0.0044185263104736805, -0.02159114181995392, 0.030495962128043175, -0.0010012841084972024, -0.008606638759374619, 0.013018387369811535, -0.0175927821546793, -0.012801527045667171, -0.004106789827346802, -0.02965562976896763, 0.004391418769955635, 0.0036764577962458134, 0.02104899100959301, 0.023637760430574417, -0.01515310537070036, 0.01553261000663042, -0.01862286776304245, -0.019083695486187935, 3.586981620173901e-05, -0.021306512877345085, -0.01630517467856407, 0.012096731923520565, -0.04380575567483902, -0.0009589286055415869, 0.010090774856507778, -0.0032833986915647984, -0.02320403978228569, -0.007088616956025362, -0.007847627624869347, -0.018053609877824783, 0.03106522001326084, 0.004150839522480965, -0.021550480276346207, -0.007454568520188332, -0.02142849564552307, -0.0071157244965434074, -0.016183190047740936, 0.03751680999994278, 0.015356411226093769, 0.013350455090403557, 0.005472331307828426, -0.03266456350684166, 0.0029513314366340637, 0.0018805844010785222, -0.012523675337433815, -0.008755729533731937, 0.04863089695572853, 0.009433417581021786, 0.02309560962021351, 0.003052984829992056, -0.00820002518594265, 0.0008170376531779766, -0.004221996758133173, -0.015559718012809753, 0.0008564282907173038, -0.032068200409412384, 0.01677955687046051, -0.019761383533477783, -0.006373656447976828, -0.028679758310317993, -0.03458919748663902, 0.01766055077314377, -0.0004913238226436079, -0.01182565651834011, -0.009026804938912392, 0.00854564644396305, -0.03003513440489769, 0.021333619952201843, -0.011025984771549702, -0.000607801484875381, -0.00496406527236104, 0.03645961731672287, -0.0287068672478199, 0.023380238562822342, 0.01783674955368042, 0.023041393607854843, 0.00898614339530468, 0.005269024521112442, 0.016589803621172905, -0.020032459869980812, 0.013526653870940208, 0.01907014288008213, -0.006590516306459904, -0.02679578587412834, 0.001883972785435617, -0.04564906656742096, 0.023841066285967827, -0.006336383521556854, 0.021103207021951675, 0.007854404859244823, -0.01821625605225563, -0.013214916922152042, -0.012117062695324421, 0.0026531487237662077, 0.009385979734361172, -0.024139249697327614, 0.009460525587201118, -0.026944877579808235, -0.010239866562187672, -0.022905856370925903, -0.0164000503718853, 0.004062740132212639, -0.007319031283259392, 0.017416583374142647, 0.005743406247347593, -0.026131652295589447, -0.011913755908608437, 0.0030326540581882, 0.03120075911283493, -0.005350347142666578, 0.0036764577962458134, -0.020791469141840935, 0.02132006734609604, -0.008911598473787308, -0.013757067732512951, 0.024356108158826828, 0.0089725898578763, -0.005960266571491957, 0.016901539638638496, -0.01646782085299492, -0.04722130298614502, 0.028246037662029266, -0.01156813558191061, 0.028517113998532295, -0.0050724949687719345, -0.020994776859879494, -0.017579227685928345, 0.02857132814824581, -0.009609616361558437, -0.007786635775119066, -0.011019207537174225, -0.016006991267204285, -0.021550480276346207, 0.02012733556330204, 0.019287001341581345, 0.03106522001326084, 0.009297880344092846, -0.005916216876357794, -0.030333317816257477, -0.005282578524202108, -0.009589286521077156, 0.03542953357100487, 0.02515578083693981, 0.005377454683184624, -0.012510121800005436, 0.050176024436950684, 0.017023524269461632, 0.00944697204977274, -0.01267954334616661, -0.007373245898634195, -0.01163590420037508, -0.050284452736377716, -0.010775240138173103, -0.016887987032532692, -0.03410126268863678, 0.0036324081011116505, -0.02634851261973381, 0.02316337823867798, 0.031282082200050354, 0.030523071065545082, 0.013594422489404678, -0.0005984832532703876, -0.0017230218509212136, -0.0152886426076293, 0.035863250494003296, 0.03594457358121872, -0.0167388953268528, -0.013269132003188133, 0.011690119281411171, 0.02057460881769657, 0.017172615975141525, -0.026904216036200523, 0.009419864043593407, 0.009975568391382694, 0.001899220747873187, -0.0029225298203527927, -0.011093753390014172, -0.008274571038782597, 0.019463201984763145, 0.01882617361843586, 0.047546595335006714, -0.009934906847774982, 0.007739197462797165, 0.023841066285967827, 0.03654094040393829, 0.00047522876411676407, 0.0052724131383001804, 0.0048353043384850025, -0.0032749276142567396, -0.020899899303913116, 0.012740535661578178, -0.02935744635760784, -0.025440409779548645, 0.016101868823170662, 0.02060171775519848, -0.002914058743044734, -0.010036559775471687, -0.009623170830309391, 0.00527918990701437, -0.01262532826513052, 0.0030174062121659517, -0.018541544675827026, -0.016210298985242844, -0.024030819535255432, -0.005041999276727438, 0.0030055465176701546, 0.012747312895953655, 0.033260930329561234, -0.007434238214045763, 0.020289979875087738, 0.025331979617476463, -0.0015180212212726474, -0.022295936942100525, 0.018067164346575737, -0.031797122210264206, 0.031553156673908234, 0.011337721720337868, 0.008118703030049801, -0.01448897086083889, -0.004974230192601681, -0.020940560847520828, -0.017674105241894722, 0.035619284957647324, -0.0013511405559256673, 0.08126835525035858, 0.031417619436979294, -0.027215952053666115, 0.0020245930645614862, -0.01745724491775036, 0.0104228425770998, 0.019530970603227615, -0.01315392553806305, 0.012733758427202702, -0.012239046394824982, 0.017863856628537178, -0.006549855228513479, -0.028408683836460114, -0.020899899303913116, -0.0056315879337489605, -0.0005747642135247588, 0.02572503872215748, 0.0046218326315283775, -0.02938455529510975, 0.025738593190908432, 0.04036309942603111, -0.004740428179502487, 0.02408503368496895, 0.0034070766996592283, -0.029303232207894325, -0.004520179238170385, 0.05313074588775635, 0.03014356456696987, 0.006366879213601351, -0.03372175619006157, 0.018514437600970268, -0.020411964505910873, -0.03168869391083717, -0.0035476970952004194, -0.0036086889449507, -0.007603660225868225, -0.007542667910456657, -0.021509818732738495, -0.008538869209587574, 0.014014589600265026, -0.005916216876357794, 0.028381576761603355, -0.025196442380547523, -0.005448611918836832, 0.02747347392141819, -0.0024684788659214973, 0.009867138229310513, -0.02470850758254528, -0.0042389389127492905], "5d9a19ed-0f19-42d8-9950-405584501c6f": [-0.019170893356204033, -0.012928241863846779, -0.0012820967240259051, -0.028763260692358017, 0.003110944526270032, 0.02339264191687107, -0.022562135010957718, -0.03549037501215935, -0.020901119336485863, -0.05747115612030029, 0.013474992476403713, 0.013156631030142307, 0.024153942242264748, -0.011765530332922935, 0.015115246176719666, 0.031365521252155304, 0.025870325043797493, -0.003455259371548891, 0.016153380274772644, -0.007197736296802759, -0.019586147740483284, 0.0052875676192343235, -0.02383558079600334, -0.004996889736503363, -0.028154222294688225, 0.010616661049425602, 0.034216929227113724, -0.018824849277734756, -0.012035445310175419, 0.014104794710874557, 0.01468615047633648, -0.026811568066477776, -0.008159741759300232, -0.0074330465868115425, -0.025164393708109856, -0.009073300287127495, -0.002853141166269779, 0.001404942711815238, 0.009357056580483913, -0.0075991484336555, 0.02962145209312439, 0.012921320274472237, -0.005349855870008469, 0.007744487375020981, -0.008900277316570282, 0.015336714684963226, 0.018852531909942627, -0.02119179628789425, -0.010893496684730053, 0.001001800294034183, -0.015682760626077652, 0.023973997682332993, -0.013322732411324978, 0.010360587388277054, -0.013613410294055939, -0.0019603450782597065, 0.0023288829252123833, 0.000177888767211698, 0.004360167309641838, 0.013737986795604229, 0.00041806563967838883, 0.004823867231607437, -0.017094623297452927, -0.004713132977485657, -0.02481834776699543, -0.031725406646728516, -0.014229370281100273, -0.02009829320013523, -0.024693772196769714, -0.008069769479334354, 0.016347166150808334, 0.03582257777452469, -0.0007003085920587182, -0.0031628513243049383, 0.006211508065462112, -0.017745187506079674, 0.003886085469275713, -0.002808155259117484, -0.005273725837469101, -0.022492924705147743, 0.013724145479500294, -0.009973017498850822, 0.003341064555570483, -0.008138978853821754, 0.027462132275104523, 0.04880618676543236, -0.008803385309875011, 0.001816736301407218, -0.009509316645562649, -0.0026368629187345505, 0.009876124560832977, 0.024666087701916695, 0.0244307778775692, 0.025925692170858383, 0.005370618309825659, 0.014187845401465893, 0.01943388767540455, 0.0023271527606993914, -0.007163131609559059, -0.012333043850958347, -0.030811848118901253, 0.0004053052107337862, 0.001920549781061709, -0.01589038595557213, -0.030894897878170013, -0.013073580339550972, 0.026673149317502975, -0.015530499629676342, -0.007917509414255619, 0.031946875154972076, -0.011973157525062561, 0.02964913658797741, 0.00204166560433805, -0.011267225258052349, -0.012374569661915302, 0.001741471467539668, 0.025635013356804848, -0.032002244144678116, 0.00019951658032368869, -0.025842640548944473, 0.023973997682332993, 0.011045756749808788, 0.037815798074007034, -0.025413544848561287, 0.00904561672359705, -0.014644624665379524, -0.004335944075137377, -0.02294970490038395, 0.014699991792440414, -0.0023115805815905333, 0.031642355024814606, 0.023711003363132477, 0.002133367583155632, 0.003529659006744623, -0.037594329565763474, 0.014644624665379524, -0.02034744620323181, 0.01613953895866871, -0.005529799032956362, -0.02915083058178425, 0.01413939893245697, 0.021980779245495796, -0.003567724023014307, -0.031808458268642426, 0.019890667870640755, 0.029067780822515488, -0.00933629460632801, 0.034521449357271194, 0.014436997473239899, -0.017565244808793068, 0.008907198905944824, -0.010796604678034782, -0.015807336196303368, 0.008630362339317799, 0.009114825166761875, -0.007495334837585688, -0.0051629915833473206, 0.034825969487428665, -0.013620331883430481, -0.007197736296802759, -0.013163551688194275, 0.027489814907312393, -0.014257054775953293, -0.01683162897825241, 0.006945123430341482, 0.02509518340229988, 0.006893216632306576, -0.03980901837348938, -0.013551122508943081, -0.005166451912373304, 0.007446888368576765, 0.028541792184114456, -0.027406765148043633, 0.03297116979956627, 0.012416094541549683, 0.001853071036748588, 0.022008461877703667, 0.004574715159833431, -0.0027043416630476713, -0.02629942074418068, 0.017399143427610397, -0.0015494165709242225, 0.003920690156519413, 0.02015366218984127, -0.03333105519413948, -0.018880216404795647, 0.014520048163831234, 0.012907478958368301, 0.01636100746691227, -0.0018374989740550518, 0.017772872000932693, 0.0038134159985929728, -0.01814660057425499, -0.003425845643505454, -0.6161262392997742, -0.0007457269821316004, 0.016181064769625664, -0.027323713526129723, -0.0028237272053956985, 0.02108106203377247, 0.026922302320599556, -0.0033877806272357702, -0.006917439866811037, 0.016430217772722244, 0.007080080918967724, 0.013066659681499004, -0.0006596482708118856, -0.022271456196904182, -0.019724564626812935, -0.041027095168828964, 0.012762139551341534, -0.0007444293005391955, -0.005993499420583248, 0.0002893801429308951, -0.021454790607094765, 0.0295660849660635, -0.0008395917247980833, 0.0005086861783638597, 0.0053809997625648975, -0.015544341877102852, 0.014769201166927814, -0.006789403036236763, -0.007772170938551426, 0.024776821956038475, -0.029316933825612068, 0.025662697851657867, 0.02621636912226677, -0.001873833709396422, 0.03917229548096657, -0.019018633291125298, -0.006713273003697395, 0.02034744620323181, 0.02378021366894245, 0.02992597222328186, -0.022520609200000763, -0.011786293238401413, 0.025164393708109856, 0.026174845173954964, -7.391304825432599e-05, -0.0008248848025687039, -0.010485163889825344, 0.005585166625678539, -0.024098575115203857, -0.0067755612544715405, -0.002536509884521365, -0.021122587844729424, 0.0005627556820400059, -0.0067686401307582855, 0.0021212559659034014, 0.0002913266362156719, 0.038646306842565536, -0.000777736131567508, 0.0014724214561283588, 0.011225700378417969, 0.014769201166927814, 0.00460585905238986, -0.011204937472939491, -0.054813530296087265, -0.04371240362524986, 0.004536650143563747, -0.031033316627144814, -0.010049146600067616, 0.012353806756436825, -0.004166381899267435, -0.005855081602931023, -0.0046577658504247665, 0.00698664877563715, 0.005955434404313564, -0.01803586632013321, 0.02964913658797741, 0.04008585214614868, -0.007135448046028614, -0.007889825850725174, 0.0226728692650795, 0.0012621991336345673, 0.005903528071939945, 0.001039865193888545, -0.02196693792939186, 0.03316495195031166, 0.009896887466311455, -0.024361569434404373, -0.011308751069009304, -0.000360319361789152, -0.00689667696133256, 0.023849422112107277, 0.01067894883453846, -0.015392081812024117, -0.024749139323830605, 0.027572866529226303, 0.03537964075803757, -0.004948443733155727, -0.007529939524829388, 0.01767597906291485, -0.010810445994138718, -0.031725406646728516, -0.030950265005230904, 0.015461291186511517, 0.004996889736503363, 0.018686430528759956, 0.013765670359134674, -0.0337739922106266, -0.0023652175441384315, 0.027337554842233658, -0.004851550795137882, 0.0004159028467256576, -0.012263835407793522, -0.024140099063515663, -0.0063983723521232605, -0.001403212547302246, -0.024749139323830605, 0.03011975809931755, 0.000313819560687989, 0.0038341786712408066, -0.026783883571624756, -0.03582257777452469, 0.007170052733272314, -0.0011679019080474973, -0.008000561036169529, -0.010367508046329021, 0.03189150616526604, 0.006429516244679689, 0.00833276379853487, 0.010443638078868389, -0.007460730150341988, 0.004633542615920305, -0.016928521916270256, 0.01479688473045826, -0.012208468280732632, 0.04218980669975281, 0.0038549413438886404, 0.014824568293988705, 0.004626621957868338, 0.021039536222815514, -0.031586989760398865, 0.0036749979481101036, 0.004149079788476229, 0.016845470294356346, -0.011523298919200897, 0.005675137974321842, -0.018603378906846046, -0.011537140235304832, 0.01630564033985138, 0.005778951570391655, -0.018631063401699066, -0.025510437786579132, -0.024223150685429573, -0.004920760169625282, 0.027877386659383774, -0.014423156157135963, -0.002366947941482067, 0.007723724469542503, -0.04030732437968254, -0.004796183668076992, -0.017260724678635597, -0.004498585127294064, 0.00021735952759627253, -0.014990669675171375, 0.002301199361681938, 0.00023985245206858963, -0.007024713791906834, -0.03692992404103279, 0.006450279150158167, 0.0002684011706151068, -0.014450839720666409, -0.0030227031093090773, -0.02119179628789425, 0.0279465951025486, 0.03687455505132675, -0.02141326479613781, -5.607010461972095e-05, -0.01231228094547987, 0.009363978169858456, -0.0010761999292299151, 0.002584956120699644, 0.025814957916736603, 0.020555073395371437, -0.018215809017419815, 0.0008971216739155352, 0.03263896703720093, 0.007959035225212574, 0.021897727623581886, 0.024998292326927185, -0.026728516444563866, -0.005218358710408211, -0.005837779492139816, 0.025025974959135056, -0.013391941785812378, -0.0007708152406848967, -0.018741797655820847, -0.015738127753138542, -0.02121948078274727, -0.02303275652229786, -0.011730926111340523, 0.037954214960336685, 0.01630564033985138, 0.0024102034512907267, -0.01647174172103405, -0.0035608031321316957, 0.018381910398602486, -0.028735578060150146, 0.015779651701450348, -0.005252963397651911, 0.014450839720666409, -0.00012803665595129132, -0.014187845401465893, -0.011855501681566238, 0.003493324387818575, -0.026257894933223724, 0.004671607632189989, 0.02207767218351364, -0.009952254593372345, 0.015059879049658775, 0.00015269235882442445, 0.0008594893151894212, 0.009599288925528526, 0.01822965033352375, 0.025579646229743958, 0.007266945205628872, 0.004650844726711512, 0.020762700587511063, -0.012651405297219753, 0.01133643463253975, 0.021316371858119965, -0.03632088378071785, -0.013661856763064861, 0.01014603953808546, -0.00625303341075778, -0.009730786085128784, 0.017371458932757378, 0.0295660849660635, 0.04313104972243309, -0.01594575308263302, 0.0242923591285944, -0.011876264587044716, 0.006661366205662489, 0.00367153761908412, 0.030562695115804672, -0.030618062242865562, 0.02629942074418068, 0.012955925427377224, 0.01644405908882618, -0.012727535329759121, -0.028984729200601578, 0.02157936617732048, 0.004374009091407061, 0.008741096593439579, -0.01143332663923502, -0.015295189805328846, 0.034493766725063324, 0.002424045233055949, 0.0026801186613738537, 0.007014332339167595, 0.008021323010325432, 0.01260295882821083, -0.008035165257751942, 0.012007761746644974, -0.0018201967468485236, -0.0016341975424438715, 0.018741797655820847, -0.011509456671774387, -0.0004299609281588346, -0.031227100640535355, -0.01514292974025011, -0.0029984801076352596, 0.0012388410978019238, -0.022174563258886337, -0.005855081602931023, -0.0052287401631474495, -0.00249152397736907, 0.0016255463706329465, 0.0013746637850999832, 0.012949003838002682, 0.002825457602739334, 0.013779512606561184, -0.020721174776554108, -0.03643161803483963, 0.016707053408026695, 0.00183576880954206, -0.008741096593439579, -0.0043705482967197895, -0.015350556932389736, -0.012478383257985115, 0.013253523968160152, 0.012083891779184341, -0.014616941101849079, -0.004612780176103115, -0.013571885414421558, 0.00904561672359705, 0.0006401832797564566, 0.02685309201478958, 0.037954214960336685, -0.017537560313940048, -0.015101403929293156, 0.011523298919200897, 0.013758749701082706, 0.007612990215420723, -0.009945333935320377, -0.023600269109010696, 0.0364593006670475, -0.020735016092658043, -0.019530780613422394, -0.0006890621152706444, 0.023046597838401794, -0.021676259115338326, 0.012824428267776966, -0.017745187506079674, -0.0187833234667778, -0.00997993815690279, -0.015613550320267677, 0.007612990215420723, 0.0008093127398751676, -0.0015312491450458765, 0.015488974750041962, 0.000898851896636188, -0.007730645593255758, -0.021870044991374016, -0.0034310363698750734, 0.015973437577486038, 0.04894460737705231, -0.004865393042564392, -0.0066163805313408375, 0.01625027321279049, -0.022852811962366104, -0.007204656954854727, -0.024181624874472618, -0.021288689225912094, 0.034438397735357285, -0.01239533256739378, -0.0064641209319233894, -0.0025884166825562716, 0.024029364809393883, -0.01014603953808546, 0.00831892155110836, 0.005844700150191784, 0.00024763846886344254, -0.011108044534921646, -0.028707893565297127, 0.011758609674870968, -0.014298579655587673, 0.009952254593372345, 0.038258735090494156, 0.022188406437635422, 0.04207907244563103, 0.01786976493895054, 0.020873434841632843, 0.012000841088593006, 0.007294628769159317, -0.021371738985180855, -0.006772100925445557, 0.0058412398211658, -0.00968926027417183, 0.018243493512272835, -0.00834660604596138, 0.028043488040566444, 0.006848230492323637, -0.0163333248347044, -0.025316651910543442, 0.008519628085196018, -0.016430217772722244, 0.008644204586744308, 0.00750917661935091, -0.012333043850958347, 0.014056348241865635, -0.028071170672774315, -0.005882765166461468, 0.04221748933196068, -0.0058585419319570065, -0.0009299959638155997, 0.009107904508709908, 0.008429656736552715, -0.0033652877900749445, 0.025081342086195946, -0.006405293010175228, -0.0011921250261366367, -0.014132478274405003, -0.0036300120409578085, -0.0198491420596838, -0.031116366386413574, -0.03975364938378334, -0.012374569661915302, -0.008561153896152973, -0.02526128478348255, -0.027766650542616844, -0.0204028133302927, -0.006287637632340193, 0.0025243982672691345, -0.027005352079868317, -0.005066099110990763, 0.0019672659691423178, -0.03931071236729622, -0.0340508297085762, 0.011467931792140007, 0.02325422503054142, 0.024195466190576553, 0.009516237303614616, 0.009059458039700985, -0.0011454089544713497, 0.008028244599699974, -0.0008261824841611087, -0.03247286379337311, 0.011225700378417969, -0.020804226398468018, -0.0052218190394341946, -0.02989828959107399, -0.029206199571490288, -0.007163131609559059, -0.013108184561133385, 0.011371038854122162, 0.004737356211990118, -0.02992597222328186, -0.020831909030675888, 0.0005757323815487325, 0.007689120247960091, 0.03543500974774361, 0.026147160679101944, 0.008955644443631172, 0.01803586632013321, -0.04207907244563103, 0.018824849277734756, -0.015295189805328846, -0.008734175935387611, -0.024001682177186012, 0.011765530332922935, 0.011585586704313755, -0.0021229861304163933, -0.016374850645661354, 0.0012319202069193125, -0.03258359804749489, -0.0019689961336553097, -0.019946034997701645, -0.0017925131833180785, -0.018658746033906937, 0.005609389394521713, 0.003427575808018446, 0.00446052011102438, 0.028763260692358017, -0.005304870195686817, -0.023738687857985497, 0.01658247597515583, -0.028929362073540688, 0.038203369826078415, 0.0017172483494505286, -0.007536860182881355, 0.013585726730525494, 0.015682760626077652, -0.022382190451025963, -0.03011975809931755, 0.012775981798768044, 0.0037372861988842487, 0.012942083179950714, -0.010083751752972603, 0.007239261642098427, -0.008125136606395245, -0.01594575308263302, -0.004367087967693806, 0.005460590124130249, -0.000609039212577045, 0.018215809017419815, -0.02479066513478756, 0.003379129571840167, 0.019336994737386703, -0.006394911557435989, -0.013378100469708443, -0.028984729200601578, -0.0326666496694088, -0.009502395987510681, 0.005657835863530636, 0.0251228678971529, -0.018409594893455505, -0.011080360971391201, -0.03286043554544449, -0.01814660057425499, 0.005149149801582098, -0.00663022231310606, -0.014935302548110485, 0.005232200492173433, 0.044432178139686584, 0.023918630555272102, 0.027296030893921852, 0.016125697642564774, 0.03305421769618988, 0.007232340518385172, -0.010166802443563938, -0.007758329156786203, -0.005810095462948084, -0.02361411228775978, -0.001629006932489574, 0.0063326237723231316, -0.009419345296919346, 0.016457900404930115, -0.031808458268642426, 0.01402866467833519, 0.0072738658636808395, 0.003661156166344881, 0.0013028595130890608, -0.009523158892989159, -0.03261128067970276, -0.044847432523965836, 0.008000561036169529, 0.012789823114871979, 0.008664966560900211, -0.009543920867145061, -0.027683600783348083, 0.006626761984080076, 0.03222371265292168, -0.009543920867145061, 0.02616100199520588, 0.011938552372157574, 0.04407229274511337, 0.012485303916037083, 0.006602538749575615, 0.0034206549171358347, 0.011198016814887524, -0.03568416088819504, -0.01792513206601143, -0.03435534983873367, -0.018977107480168343, 0.007336154114454985, 0.003848020453006029, 0.017246883362531662, -0.00415946077555418, 0.007792933378368616, 0.010955785401165485, 0.009218638762831688, -0.03374630957841873, 0.0002543430891819298, 0.01661016047000885, -0.03435534983873367, 0.0010061258217319846, -0.035241223871707916, -0.006336084101349115, -0.009606209583580494, -0.012914399616420269, 0.013032055459916592, 0.004803104791790247, 0.021759310737252235, -0.027572866529226303, -0.018354227766394615, 0.03360789269208908, -0.023378800600767136, 0.027462132275104523, 0.03205760940909386, 0.03366325795650482, 0.0074676512740552425, 0.019184734672307968, -0.021925412118434906, -0.01496298611164093, 0.003868783125653863, -0.026811568066477776, 0.01472767535597086, 0.03867398947477341, -0.018492644652724266, -0.0035919472575187683, 0.010907338932156563, -0.021565524861216545, -0.009419345296919346, -0.025870325043797493, 0.00663022231310606, 0.004726974759250879, 0.00507301976904273, -0.03302653506398201, -0.027171453461050987, -0.017634453251957893, 0.008305080235004425, -0.015793494880199432, -0.005412144120782614, -0.0050695594400167465, -0.013198156841099262, 0.011973157525062561, 0.019018633291125298, -0.005882765166461468, 0.0007197736413218081, -0.0006760854157619178, -0.004771960433572531, 0.02213303931057453, -0.010464400984346867, -0.00353831029497087, -0.011191095225512981, -0.003803034545853734, 0.03250054642558098, -0.01940620318055153, -0.010395191609859467, 0.016540952026844025, 0.014201686717569828, -0.020859593525528908, 0.018575696274638176, -0.025455070659518242, 0.031227100640535355, -0.005010731518268585, -0.014879935421049595, 0.00046759331598877907, 0.011813976801931858, 0.0022977387998253107, -0.008104373700916767, -0.021510157734155655, -0.02141326479613781, 0.005104163661599159, 0.006038485560566187, 0.015558183193206787, -0.015516658313572407, -0.02029207907617092, -0.011765530332922935, 0.003062498290091753, -0.025911850854754448, 0.0066752079874277115, -0.0002314175944775343, 0.031808458268642426, -0.038037266582250595, -0.0006150950212031603, 0.011357197538018227, -0.02495676651597023, 0.011689400300383568, -0.00337047828361392, -0.009370898827910423, 0.004256353713572025, 0.02358642779290676, -0.020914960652589798, 0.022409874945878983, 0.041636135429143906, 0.009502395987510681, -0.04077794402837753, 0.017205357551574707, -0.019710723310709, -0.007585306651890278, 0.006578315515071154, 0.006131917703896761, -0.019835300743579865, -0.027877386659383774, 0.01713614910840988, -0.0064918044954538345, 0.0003155497834086418, -0.00243615685030818, 0.023074280470609665, 0.024070890620350838, -0.009779231622815132, -0.0187833234667778, 0.008623441681265831, 0.00020957351080141962, 0.00013712033978663385, 0.003661156166344881, 0.001180013525299728, -0.01987682469189167, 0.016430217772722244, 0.008761859498918056, -0.00469583086669445, -0.0025884166825562716, -0.024361569434404373, -0.023946315050125122, -0.006734035909175873, 0.004744276870042086, 0.015779651701450348, 0.0216070506721735, -0.012180784717202187, -0.01143332663923502, -0.011384881101548672, 0.01649942621588707, -0.015627393499016762, -0.0015329794259741902, 0.014879935421049595, -0.01677626185119152, 0.0039933593943715096, 0.026728516444563866, -0.014270896092057228, -0.03236212953925133, -0.02099801041185856, -0.02602258510887623, -0.0388677753508091, -0.0024275057949125767, 0.014603099785745144, 0.04235590994358063, -0.004899997264146805, -0.018990950658917427, -0.02964913658797741, -0.01069279108196497, -0.034825969487428665, -0.017579086124897003, -0.03385704383254051, 0.028846312314271927, 0.019212419167160988, 0.03316495195031166, 0.007253103423863649, 0.023932471871376038, -0.0005186349735595286, 0.015516658313572407, -0.04960901290178299, 0.0011756878811866045, -0.028624843806028366, -0.017662137746810913, 0.03601636365056038, -0.01861722208559513, -0.05868923291563988, 0.00893488246947527, -0.0010632233461365104, -0.01644405908882618, -0.00018134921265300363, -0.005834318697452545, 0.011198016814887524, 0.0017656947020441294, -0.0008997170371003449, 0.009848440997302532, 0.019918350502848625, 0.018907899037003517, -0.0038237974513322115, -0.030507327988743782, 0.0038757040165364742, 0.019973717629909515, -0.015751969069242477, -0.0013158360961824656, 0.002462110249325633, 0.003754588309675455, -0.027157612144947052, -0.0031611211597919464, 0.002939652418717742, -0.0076614366844296455, -0.0034985151141881943, -0.0016350626247003675, -0.004384390078485012, 0.024583037942647934, 0.009184034541249275, 0.03568416088819504, -0.02593953348696232, -0.002941382583230734, -0.003363557392731309, 0.008519628085196018, 0.022008461877703667, 0.02144094929099083, 0.03704065829515457, -0.008872593753039837, -0.0014196496922522783, -0.00505225732922554, 0.009661576710641384, -0.00539484154433012, -0.014450839720666409, -0.013592648319900036, -0.02383558079600334, -0.01959998905658722, 2.331748510187026e-05, 0.009239401668310165, -0.0093224523589015, 0.012111575342714787, 0.0037026815116405487, -0.008561153896152973, 0.015931911766529083, -0.010782762430608273, 0.010955785401165485, -0.015101403929293156, -0.025773432105779648, -0.0040487265214324, 0.007059318013489246, -0.04199602082371712, -0.0011765530798584223, 0.028984729200601578, 0.014464681036770344, -0.0007574060000479221, 0.2033083587884903, 0.0081666624173522, 0.013599568977952003, 0.047947995364665985, 0.022880496457219124, -0.01677626185119152, 0.02548275515437126, 0.005211438052356243, -0.01349575538188219, 0.008574995212256908, -0.004540110472589731, -0.0016497696051374078, -0.015613550320267677, 9.294552728533745e-05, 0.017412984743714333, -0.007391521241515875, -0.030562695115804672, -0.015585866756737232, -0.011924711056053638, 0.014575415290892124, 0.0045643337070941925, -0.006336084101349115, -0.02526128478348255, -0.005297949071973562, 0.027212979272007942, 0.014187845401465893, -0.004612780176103115, -0.002095302566885948, 0.017316091805696487, 0.016125697642564774, -0.00926708523184061, 0.008741096593439579, 0.009820757433772087, -0.005875844042748213, -0.024029364809393883, -0.0033306831028312445, 0.0326666496694088, -0.0249844491481781, -0.013945613987743855, 0.030673429369926453, 0.0011644414626061916, -0.021510157734155655, -0.0007349131046794355, -0.006152680143713951, 0.02144094929099083, -0.005772030912339687, -0.019336994737386703, 0.018160441890358925, -0.022520609200000763, 0.02155168354511261, -0.004678528290241957, -0.00037718904786743224, 0.002479412592947483, 0.023295750841498375, 0.001367742894217372, 0.004453599452972412, -0.00228562718257308, 0.0001258738775504753, -0.019157052040100098, -0.01836806908249855, -0.022119196131825447, 0.006453739479184151, -0.01658247597515583, 0.003976057283580303, -0.037594329565763474, 0.009488553740084171, -0.02632710337638855, 0.02484603226184845, 0.0005450209137052298, 0.005650915205478668, -0.00745380949229002, -0.005526338703930378, -0.031559303402900696, -0.0017622342566028237, -0.02959376946091652, -0.018105074763298035, 0.005567864049226046, 0.01636100746691227, 0.021842360496520996, 0.006875914521515369, -0.011523298919200897, 0.005246042273938656, -0.01822965033352375, -0.013551122508943081, 0.021067220717668533, -0.027005352079868317, 0.028486425057053566, -0.029067780822515488, -0.006758259143680334, -0.03366325795650482, -0.0023081202525645494, 0.013530359603464603, 0.0013521708315238357, -0.015156771056354046, 0.0019672659691423178, -0.013184314593672752, 0.008381210267543793, 0.023752529174089432, -0.0031040236353874207, -0.02191157080233097, -0.020388972014188766, 0.054509010165929794, 0.00012327852891758084, 0.02995365671813488, -0.016125697642564774, 0.008602678775787354, -0.011578666046261787, 0.023627953603863716, 0.0006094717537052929, -0.0005701091722585261, 0.00252612866461277, -0.03676382079720497, 0.01789744757115841, -0.0015035655815154314, 0.013911009766161442, 0.023240381851792336, 0.02693614363670349, -0.005612850189208984, 0.0027043416630476713, -0.03407851234078407, 0.015309031121432781, 0.004823867231607437, 0.010817366652190685, 0.01395945530384779, -0.03546269237995148, -0.0426604300737381, -0.001591806998476386, 0.026285579428076744, -0.04612087830901146, -0.022340666502714157, 0.02286665327847004, -0.011855501681566238, 0.02939998358488083, 0.001713787904009223, -9.429726196685806e-05, 0.007336154114454985, 0.022216089069843292, 0.0018046246841549873, -0.016347166150808334, -0.028846312314271927, 0.004315181169658899, 0.0067444173619151115, 0.015544341877102852, 0.00612845690920949, 0.0020347447134554386, 9.516238060314208e-05, -0.0011021533282473683, 0.0019880286417901516, 0.0020555073861032724, -0.030756480991840363, 0.014450839720666409, -0.0008123406441882253, 0.012291518971323967, -0.007536860182881355, 0.03897850960493088, -0.0053879208862781525, -0.024043207988142967, -0.03216834366321564, 0.012803665362298489, 0.005668217316269875, -0.035241223871707916, -0.003927610814571381, 0.03017512522637844, 0.01627795770764351, -0.023101964965462685, -0.00428403727710247, -0.17695356905460358, 0.00660945987328887, 0.011211858130991459, 5.5421271099476144e-05, 0.017703663557767868, 0.00849886517971754, 0.006121536251157522, 0.002648974535986781, 0.011184174567461014, -0.01146101113408804, 0.015793494880199432, -0.008395051583647728, -0.0033843200653791428, -0.007612990215420723, 0.01172400452196598, -0.002398091834038496, -0.024264676496386528, 0.04105478152632713, 0.057415787130594254, 0.006761719472706318, 0.013648015446960926, -0.01937852054834366, -0.021537842229008675, 0.0036403934936970472, 0.018990950658917427, 0.0029465733096003532, -0.00616306159645319, 0.026617782190442085, -0.00908714160323143, -0.03856325522065163, -0.013592648319900036, -0.001367742894217372, 0.020638125017285347, -0.0034016224090009928, 0.010319062508642673, 0.0015719094080850482, 0.010360587388277054, 0.004041805863380432, -0.01674857921898365, 0.017205357551574707, 0.011301830410957336, 0.019060159102082253, 0.0168869961053133, 0.007578385528177023, 0.004066028632223606, 0.026036426424980164, 0.02185620181262493, -0.005834318697452545, 0.01254759170114994, -0.01867258921265602, 0.0405287928879261, -0.006920900195837021, 0.01811891607940197, -0.0034846733324229717, 0.004041805863380432, -0.007093922700732946, 0.002924080239608884, 0.01778671331703663, 0.005855081602931023, -0.016291799023747444, 0.0093224523589015, -0.0170254148542881, 0.006090392358601093, -0.008173583075404167, -0.0038618622347712517, -0.028901679441332817, 0.004360167309641838, 0.022396033629775047, -0.004041805863380432, -0.004951904062181711, 0.004488203674554825, 0.007834458723664284, 0.007965955883264542, 0.012734455987811089, 0.008554232306778431, 0.011758609674870968, -0.03734517842531204, 0.004519348032772541, 0.03626551851630211, -0.0026766580995172262, 0.010893496684730053, 0.010132198221981525, -0.0026558954268693924, -0.001901517272926867, -0.005727044772356749, 0.01683162897825241, 0.0006137973396107554, 0.008180503733456135, -0.01638869196176529, 0.018548011779785156, 0.028486425057053566, -0.004834248684346676, 0.00028159411158412695, 0.009668497368693352, 0.02004292607307434, -0.00012392736971378326, 0.03252822905778885, -0.0069693466648459435, 0.013295048847794533, -0.0038791645783931017, 0.014257054775953293, 0.024333884939551353, -0.024804506450891495, 0.0015701792435720563, 0.03537964075803757, 0.03374630957841873, 0.008540390990674496, -0.003996819723397493, 0.03205760940909386, -0.005536720156669617, -0.015447448939085007, 0.0066163805313408375, 0.025136709213256836, 0.006751338019967079, -0.009184034541249275, 0.04905534163117409, -0.0031040236353874207, -0.02992597222328186, 0.0074399677105247974, -0.015447448939085007, 0.04385082423686981, -0.031642355024814606, -0.02808501198887825, 0.01496298611164093, -0.00625303341075778, 0.0017276296857744455, -0.09501011669635773, -0.010312140919268131, 0.021371738985180855, 0.017412984743714333, -0.01652710884809494, 0.014284738339483738, 0.0006055787671357393, 0.03712370991706848, -0.019586147740483284, 0.03297116979956627, -0.031753089278936386, -0.01713614910840988, 0.004778881557285786, 0.004394771531224251, 0.00748841417953372, -0.0076614366844296455, -0.0022216090001165867, -0.021953094750642776, -0.013405784033238888, 0.038120318204164505, 0.013281207531690598, -0.006505646277219057, 0.01786976493895054, -0.02163473330438137, -0.017496036365628242, -0.012056208215653896, -0.028652526438236237, 0.0006847365875728428, 0.013668777421116829, 0.00578587269410491, 0.02166241779923439, -0.021288689225912094, 0.02501213364303112, -0.0134403882548213, -0.02467993088066578, -0.010367508046329021, -0.017288409173488617, -0.04019658640027046, 0.016707053408026695, -0.03006439097225666, -0.014824568293988705, 0.00185480120126158, -0.026036426424980164, -0.017482193186879158, 0.00856807455420494, -0.007675278466194868, -0.003389510791748762, 0.02479066513478756, 0.019309312105178833, -0.007862142287194729, -0.013827958144247532, -0.021261004731059074, -0.012796744704246521, -0.024416936561465263, 0.023074280470609665, -0.0018236571922898293, 0.03178077191114426, 0.020458180457353592, -0.009633893147110939, 0.006481423042714596, -0.0011687669903039932, -0.0043117208406329155, -0.011717083863914013, 0.02130253054201603, 0.005474431905895472, 0.018977107480168343, 0.00908714160323143, 0.002394631505012512, -0.01468615047633648, 0.0029136990197002888, -0.01314971037209034, 0.009149430319666862, -0.023877104744315147, -0.006415674462914467, -0.00974462740123272, -0.008775701746344566, -0.022935863584280014, -0.0170254148542881, 0.009550842456519604, 0.008076690137386322, -0.008235870860517025, -0.012111575342714787, 0.001253548078238964, -0.038618624210357666, 0.018437277525663376, -0.006758259143680334, 0.002211227547377348, -0.0072738658636808395, 0.03989206999540329, -0.03662540391087532, 0.018409594893455505, 0.002005330752581358, 0.026645464822649956, -0.008664966560900211, -0.0026264816988259554, 0.02506750077009201, -0.028209589421749115, 0.018935583531856537, 0.02185620181262493, -0.004384390078485012, -0.020222870633006096, -0.013897167518734932, -0.05951974168419838, 0.014270896092057228, 0.013232761062681675, 0.00507301976904273, -0.0058862254954874516, -0.01713614910840988, -0.0038826249074190855, -0.0017215738771483302, 0.0003194427990820259, 0.00036377980723045766, -0.0251228678971529, 0.010353666730225086, -0.03676382079720497, -0.009440108202397823, -0.03335873782634735, -0.02481834776699543, -0.003495054552331567, 0.003100563306361437, 0.018077392131090164, -0.000824019662104547, -0.00915635097771883, -0.00922556035220623, 0.021067220717668533, 0.03017512522637844, -0.010236010886728764, 0.017011573538184166, -0.02613331936299801, 0.03385704383254051, -0.013398862443864346, -0.006830928381532431, 0.013571885414421558, 0.004612780176103115, -0.010291378945112228, 0.019503096118569374, -0.010346746072173119, -0.04282652959227562, 0.01630564033985138, 0.004256353713572025, 0.02704687789082527, 0.0022250693291425705, -0.015793494880199432, -0.00844349805265665, 0.02018134482204914, -0.007668357342481613, -0.020029084756970406, -0.007260024081915617, -0.015295189805328846, -0.016817787662148476, 0.026451680809259415, 0.020776541903614998, 0.03308190405368805, 0.0044709015637636185, 8.672753028804436e-05, -0.03579489514231682, 0.008367368020117283, -0.006526408717036247, 0.02328190766274929, 0.018132759258151054, 0.010242932476103306, -0.005671677645295858, 0.04708980396389961, 0.015225980430841446, 0.017482193186879158, -0.011094203218817711, 0.014921460300683975, -0.012173863127827644, -0.05229432135820389, 0.0008910659234970808, -0.0067444173619151115, -0.04332483559846878, 0.009986858814954758, -0.024638405069708824, 0.027379080653190613, 0.03717907518148422, 0.003941452596336603, -0.003979517612606287, -0.0012985338689759374, -0.01055437233299017, -0.014755358919501305, 0.04338020086288452, 0.025621172040700912, -0.01814660057425499, -0.029067780822515488, 0.00537407910451293, 0.01820196770131588, 0.0047165933065116405, -0.020001402124762535, 0.025496596470475197, 0.017191516235470772, -0.00134871038608253, -0.0007383735501207411, -0.0068101659417152405, -0.014755358919501305, 0.012160021811723709, 0.016928521916270256, 0.026285579428076744, -0.02937230095267296, 0.008644204586744308, 0.028597159311175346, 0.024555353447794914, 0.006567934062331915, 0.01767597906291485, -0.0006427785847336054, 0.001394561375491321, -0.020444339141249657, 0.01467230822890997, -0.04227285832166672, -0.005214898381382227, 0.01834038458764553, 0.025676539167761803, 0.006886295508593321, -0.004072949755936861, -0.008325843140482903, 0.015475132502615452, -0.010928100906312466, 0.00331511115655303, -0.015572025440633297, -0.012478383257985115, -0.02311580628156662, -0.007578385528177023, 0.005360237322747707, 0.012796744704246521, 0.019198577851057053, -0.020499706268310547, 0.01073431596159935, 0.012713694013655186, 0.006180363707244396, -0.009177113883197308, 0.019212419167160988, -0.02690845914185047, 0.0179528146982193, 0.01778671331703663, 0.008609599433839321, -0.009772310964763165, -0.007709882687777281, -0.01685931347310543, -0.017357617616653442, 0.010685869492590427, -0.00811129529029131, 0.09268469363451004, 0.03529658913612366, -0.03189150616526604, 0.0017855922924354672, -0.015641234815120697, -0.006792863365262747, 0.015765810385346413, -0.009564683772623539, -0.0009594098082743585, -0.02328190766274929, 0.016762420535087585, -0.009177113883197308, -0.026645464822649956, -0.0017752108396962285, -0.01508756261318922, 0.007959035225212574, -0.0007379410089924932, 0.00047364909551106393, -0.028735578060150146, 0.018603378906846046, 0.02978755347430706, -0.011412564665079117, 0.031946875154972076, -0.014547731727361679, -0.028043488040566444, -0.01485225185751915, 0.04697906970977783, 0.011910868808627129, 0.005010731518268585, -0.03554574400186539, 0.018963266164064407, 0.002572844736278057, -0.01630564033985138, -0.007481493055820465, -0.017537560313940048, -0.006516027729958296, -0.006844770163297653, -0.03017512522637844, -0.007128527387976646, 0.007765249814838171, -0.004796183668076992, 0.012139258906245232, -0.03305421769618988, -0.012374569661915302, 0.024278517812490463, -0.0006150950212031603, 0.013468071818351746, -0.024776821956038475, -0.007571464870125055], "41ff879f-3e90-4083-823a-4e4fddb34caf": [-0.03459356725215912, -0.013467567972838879, 0.0008193801622837782, -0.020857887342572212, -0.009239617735147476, -7.019728946033865e-05, -0.02686638943850994, -0.031073713675141335, -0.031046215444803238, -0.05480523407459259, 0.01898796483874321, 0.01083455141633749, 0.013240702450275421, -0.014601895585656166, 0.014684392139315605, 0.004523562733083963, 0.010470191948115826, 0.006190681364387274, 0.016636811196804047, -0.03486855700612068, -0.009913340210914612, 0.013852551579475403, -0.030771227553486824, -0.0022703749127686024, -0.02457023411989212, 0.0028478510212153196, 0.03495105355978012, -0.008318405598402023, 0.0014393936144188046, 0.009005877189338207, 0.016155581921339035, -0.009177745319902897, -0.007747804280370474, -0.011886383406817913, -0.026838889345526695, -0.0110476678237319, 0.009782720357179642, -0.00873776338994503, 0.01709054224193096, -0.014409404247999191, 0.026220165193080902, 0.0025247393641620874, -0.002976751886308193, 0.010456442832946777, -0.006926275789737701, 0.02975376881659031, 0.0015356396324932575, -0.010717681609094143, 0.004516688175499439, -0.004351695068180561, 0.00669253570958972, 0.024776475504040718, -0.005455086939036846, 0.015811845660209656, -0.010648934170603752, -0.0028031652327626944, 0.0005272047710604966, -0.005816009361296892, 0.00866901595145464, 0.008861508220434189, 0.011748888529837132, 0.013371322304010391, -0.020899135619401932, -0.0010776116978377104, -0.030551236122846603, -0.02686638943850994, -0.019359199330210686, -0.029231291264295578, -0.0051251002587378025, -0.018025504425168037, -0.00767905730754137, 0.02846132218837738, -0.009720847941935062, 0.0012099499581381679, 0.013859426602721214, -0.022164084017276764, 0.01027082558721304, 0.00430357176810503, -0.011460150592029095, -0.018479235470294952, 0.012621978297829628, -0.0015957934083417058, -0.0023734956048429012, -0.017283035442233086, 0.01967543549835682, 0.0449056439101696, 0.009830843657255173, 0.0036539114080369473, -0.0201979149132967, 0.005389777012169361, 0.004489189479500055, -0.003753594821318984, 0.014285659417510033, 0.010827677324414253, 0.006706285290420055, 0.006273177918046713, 0.017709268257021904, 0.024721477180719376, -0.005131975281983614, -0.017668019980192184, -0.03382360190153122, 0.007658433169126511, -0.020005421712994576, -0.010112706571817398, -0.04185326769948006, 0.011487649753689766, 0.016073085367679596, -0.01699429750442505, -0.007768428418785334, 0.016678059473633766, -0.007280323654413223, 0.02898380160331726, 0.00023116231022868305, 0.000603256281465292, -0.003942649345844984, -0.004032020922750235, 0.032503657042980194, -0.04735304042696953, -0.015165622346103191, -0.03682097792625427, 0.015344365499913692, 0.01431315764784813, 0.01777801476418972, -0.02124287188053131, 0.008428401313722134, -0.019785432144999504, -0.004915421828627586, -0.009356487542390823, 0.02028041146695614, 0.0046713692136108875, 0.02914879471063614, 0.03440107777714729, 9.356058581033722e-05, -0.0019524192903190851, -0.04138578847050667, 0.017324283719062805, -0.022672811523079872, 0.009390861727297306, 0.00442387955263257, -0.014684392139315605, 0.010367071256041527, 0.021421613171696663, -0.026192666962742805, -0.022672811523079872, 0.011590770445764065, 0.027306370437145233, -0.007644683588296175, 0.021174123510718346, 0.016843052580952644, -0.015564355999231339, 0.0058022597804665565, -0.01453314907848835, -0.010587061755359173, 0.009658975526690483, 0.003698596963658929, 0.0065103555098176, -0.010367071256041527, 0.026880137622356415, -0.014058792963624, -0.022892802953720093, 0.012498232536017895, 0.015770597383379936, 0.006864403374493122, -0.0012546356301754713, -0.0019403884653002024, 0.027787599712610245, -0.004636995494365692, -0.036133505403995514, -0.009762096218764782, -0.009273990988731384, 0.004547624383121729, 0.026838889345526695, -0.025202708318829536, 0.031046215444803238, 0.02525770477950573, 0.005479148123413324, 0.03855340555310249, -0.005496335215866566, -0.013144455850124359, -0.021091626957058907, 0.03407109156250954, -0.0012597916647791862, 0.004798551555722952, 0.014643143862485886, -0.024363992735743523, -0.02660514973104, 0.00860714353621006, -0.000236318344832398, 0.012312615290284157, -0.011583895422518253, 0.0035404786467552185, 0.005963815841823816, -0.010580187663435936, -0.019840428605675697, -0.6071748733520508, -0.009782720357179642, 0.003691722173243761, -0.02037665620446205, -0.009438984096050262, 0.01570185087621212, 0.014017544686794281, 0.007569062057882547, -0.010593936778604984, 0.0332186259329319, 0.006627225782722235, 0.010105831548571587, -0.015811845660209656, -0.009432110004127026, -0.017076794058084488, -0.010112706571817398, 0.02050040103495121, 0.0085865193977952, -0.005444774869829416, 0.013295699842274189, -0.01014020573347807, 0.04204576089978218, -0.011040793731808662, -0.0012666663387790322, 0.00551352184265852, -0.002822070848196745, 0.022851554676890373, 0.0014265035279095173, -0.01217512134462595, 0.011088916100561619, -0.028488822281360626, 0.029863765463232994, 0.01781926304101944, -0.011439526453614235, 0.053485289216041565, -0.005688827019184828, -0.01634807325899601, 0.020857887342572212, 0.03478606045246124, 0.01864422857761383, -0.01989542692899704, -0.03027624823153019, 0.013955672271549702, 0.01967543549835682, -4.93448806082597e-06, -0.005403526592999697, -0.006242241710424423, 0.01535811461508274, -0.010215827263891697, -0.005262594670057297, -0.008614018559455872, -0.02608267031610012, -0.006077248603105545, -0.015193121507763863, 0.010552688501775265, 0.00046791034401394427, 0.023690270259976387, -0.0044204420410096645, 0.01341257058084011, 0.0085865193977952, 0.01834174059331417, -0.0006561056943610311, -0.0009942557662725449, -0.04295322299003601, -0.049470454454422, 0.005709451157599688, -0.01622432842850685, -0.024405241012573242, 0.02149036154150963, 0.016100583598017693, 0.013247576542198658, 0.0052007222548127174, 0.004176389891654253, 0.0054413373582065105, -0.02102288044989109, 0.029726270586252213, 0.0324486568570137, -0.0021088190842419863, -0.009425234980881214, 0.027003882452845573, 0.0016000900650396943, -0.004640433005988598, -0.01618308015167713, -0.01449190080165863, 0.02314029261469841, -0.0014325188240036368, -0.018575482070446014, -0.010635185055434704, -0.010305198840796947, -0.005589143838733435, 0.015028128400444984, 0.010470191948115826, 0.0015605604276061058, -0.04166077822446823, 0.014588146470487118, 0.023374032229185104, 0.008772137574851513, -0.001995386090129614, 0.0017805513925850391, -0.014739390462636948, -0.02525770477950573, -0.03126620501279831, 0.004014833830296993, 0.02525770477950573, 0.019482944160699844, 0.009961462579667568, -0.014216911979019642, -0.02677014283835888, 0.020789140835404396, -0.01027082558721304, 0.011707640253007412, -0.0018441424472257495, -0.016664311289787292, -0.02301654778420925, -0.005310717970132828, -0.024817723780870438, 0.021641604602336884, -0.024968966841697693, -0.016719307750463486, -0.010525189340114594, -0.022164084017276764, 0.01533061545342207, 0.0020985070150345564, -0.003863590070977807, -0.0024061505682766438, 0.021476611495018005, 0.01079330313950777, 0.0045613739639520645, 0.014120666310191154, -0.0063041141256690025, 0.0041695148684084415, -0.023195290938019753, 0.03071622923016548, -0.01582559570670128, 0.021944092586636543, 0.003763906890526414, 0.030138753354549408, 0.01124703511595726, 0.021050378680229187, -0.030166251584887505, 0.003942649345844984, 0.0007209858158603311, 0.021999089047312737, -0.019799180328845978, 0.00020076318469364196, -0.01864422857761383, -0.017420528456568718, 0.01699429750442505, -0.008985253050923347, -0.011673266999423504, -0.03844340890645981, -0.02677014283835888, 0.0035043861716985703, 0.020142916589975357, -0.015096875838935375, 0.0026072359178215265, 0.002993938745930791, -0.045263126492500305, -0.004767615348100662, -0.02408900298178196, -0.02041790448129177, 0.018479235470294952, -0.013797554187476635, 0.03035874478518963, -0.00549289770424366, -0.0032122109550982714, -0.02953377738595009, 0.0011291720438748598, -0.008339029736816883, -0.01795675791800022, -0.011322656646370888, -0.025202708318829536, 0.025202708318829536, 0.029258789494633675, -0.026027673855423927, 0.013728806748986244, -0.017846761271357536, 0.018355490639805794, 0.0004687696637120098, 0.009590228088200092, 0.014003795571625233, 0.03170618787407875, -0.011700766161084175, -0.01113703940063715, 0.011480774730443954, 0.01898796483874321, -0.0020125729497522116, 0.02495521679520607, -0.033631108701229095, 0.006273177918046713, 0.003360017202794552, 0.014945631846785545, -0.015468110330402851, 0.015811845660209656, -0.002323653781786561, -0.006159745156764984, -0.019317951053380966, -0.013776930049061775, -0.015468110330402851, 0.03134870156645775, 0.010428943671286106, 0.01330257486552, -0.021077878773212433, 0.00888900738209486, 0.023429030552506447, -0.035143546760082245, 0.012470734305679798, -0.0010251919738948345, 0.01115766353905201, 0.0004013115249108523, -0.007156578823924065, -0.004664494656026363, 0.0077340551652014256, -0.02378651686012745, -0.000995974405668676, 0.024034006521105766, -0.0222740788012743, 0.008834009990096092, -0.006809405982494354, -0.010085207410156727, -0.0002758479677140713, 0.002213658532127738, 0.024020256474614143, 0.014065667986869812, 0.004307009279727936, 0.015220620669424534, -0.010298323817551136, 0.015096875838935375, 0.030853724107146263, -0.024515235796570778, 0.003258615266531706, 0.019262952730059624, 0.0012374487705528736, 0.0010449567344039679, 0.007046583574265242, 0.018630478531122208, 0.044438160955905914, -0.025835180655121803, 0.03638099506497383, -0.01550935860723257, -0.015206870622932911, 0.002318497747182846, 0.03913088142871857, -0.020362908020615578, 0.027842598035931587, 0.013653185218572617, 0.024597732350230217, 0.006953774951398373, -0.024900220334529877, 0.019001713022589684, 0.0029440969228744507, 0.00300596933811903, -0.005228221416473389, -0.011508273892104626, 0.019785432144999504, -0.011198911815881729, 0.005059790797531605, 0.006097872741520405, 0.025958925485610962, 0.013522565364837646, -0.0070397090166807175, 0.005919130053371191, 0.0086896400898695, 0.0049222963862121105, 0.024941468611359596, -0.006262865848839283, -0.00869651511311531, -0.02015666663646698, -0.017283035442233086, 0.014629394747316837, -0.009555854834616184, -0.034841056913137436, -0.00879963580518961, -0.0226590633392334, -0.00804341770708561, 0.0027980091981589794, -0.00010489312262507156, 0.03662848472595215, 0.007266574539244175, 0.011377654038369656, -0.017200538888573647, -0.01946919411420822, 0.005369152873754501, 0.014505649916827679, -0.011130164377391338, -0.015413112007081509, -0.017764264717698097, -0.002065852051600814, 0.001015739282593131, 0.016100583598017693, -0.009322114288806915, -0.006984711159020662, -0.006108184810727835, 0.016554314643144608, -0.012030752375721931, 0.016416821628808975, 0.052055347710847855, -0.004506376106292009, -0.009212118573486805, -0.001790863461792469, 0.008036542683839798, 0.01111641526222229, -0.014175663702189922, -0.01868547685444355, 0.04611559212207794, -0.008572770282626152, -0.02003292180597782, 0.00856589525938034, 0.01929045282304287, -0.015674350783228874, -0.004640433005988598, -0.026577649638056755, -0.01951044239103794, -1.2359718311927281e-05, -0.02253531850874424, 0.007115330547094345, 0.002378651639446616, 0.0015605604276061058, 0.04655557498335838, 0.021504109725356102, 0.011577021330595016, -0.028956301510334015, -0.03382360190153122, 0.019304201006889343, 0.07386194169521332, 0.014244411140680313, -0.012532606720924377, 0.01682930439710617, -0.025010215118527412, -0.000992537010461092, -0.01955169066786766, -0.033191125839948654, 0.030221249908208847, -0.017585523426532745, -0.019757932052016258, -0.0031245581340044737, 0.023594023659825325, -0.00602225074544549, 0.009913340210914612, 0.010690182447433472, 0.017530525103211403, -0.020857887342572212, -0.02664639800786972, 0.0006664177635684609, -0.008057166822254658, -0.0024113066028803587, 0.02378651686012745, 0.031046215444803238, 0.03283364325761795, 0.02703138254582882, 0.031733687967061996, -0.0007966076955199242, 0.0065378546714782715, -0.0205828994512558, -0.012202620506286621, 0.00427263556048274, 0.002144911326467991, 0.013220078311860561, -0.0064897313714027405, 0.017461776733398438, 0.012360738590359688, -0.024336492642760277, -0.011845135129988194, 0.02257656678557396, -0.01647181808948517, 0.01323382742702961, -0.003012844128534198, -0.016636811196804047, 0.004709179978817701, -0.037343453615903854, 0.0016782899620011449, 0.027581358328461647, -0.0041695148684084415, -0.0004563092370517552, 0.014519399031996727, -0.0005581409786827862, -0.0014703298220410943, 0.03154119476675987, 0.007314697373658419, -0.005778198596090078, -0.010373946279287338, 0.0029440969228744507, -0.026192666962742805, -0.04974544048309326, -0.04328320920467377, 0.003506104927510023, -0.009074624627828598, -0.021517859771847725, -0.020005421712994576, -0.010449567809700966, -0.014931882731616497, 0.016595562919974327, -0.03932337462902069, -0.0038051551673561335, 0.020775390788912773, -0.03165119141340256, -0.04149578511714935, 0.019620439037680626, 0.023841513320803642, 0.004396380856633186, 0.006297239568084478, 0.009872091934084892, 0.0002552238292992115, 0.023085294291377068, -0.0026278600562363863, -0.04529062658548355, 0.011563271284103394, -0.020404156297445297, -0.02703138254582882, -0.04006584361195564, -0.03192617744207382, -0.005506647285073996, -0.01880922168493271, 0.010126455686986446, -0.00973459705710411, -0.017461776733398438, -0.004946358036249876, -0.0006238804198801517, -0.002748167607933283, 0.043970681726932526, 0.018190497532486916, 0.018314242362976074, 0.028186334297060966, -0.052357833832502365, 0.017668019980192184, 0.0022944363299757242, -0.005915693007409573, -0.00985834188759327, 0.0006939166341908276, -0.009177745319902897, 0.0009040251024998724, -0.021270370110869408, 0.020266661420464516, -0.013680684380233288, 0.005348528735339642, -0.020569149404764175, -0.016540566459298134, -0.008476524613797665, 0.017241787165403366, 0.001962731359526515, 0.00895775482058525, 0.03599601238965988, 0.004368881694972515, -0.015880592167377472, 0.0034700126852840185, -0.047078050673007965, 0.029478780925273895, 0.009335863403975964, 0.0039151506498456, 0.027691354975104332, 0.014601895585656166, -0.030908720567822456, -0.026481404900550842, 0.007844050414860249, -0.006689098197966814, 0.016664311289787292, 0.005819446872919798, 0.00016241516277659684, -0.013866301625967026, -0.022136583924293518, 0.01089642383158207, 0.013522565364837646, -0.029258789494633675, 0.016774306073784828, -0.016196830198168755, 0.006579102948307991, 0.011673266999423504, -0.009349613450467587, -0.000529782788362354, -0.028708811849355698, -0.01890546828508377, -0.01709054224193096, 0.013660060241818428, 0.0154818594455719, -0.00904025137424469, -0.015110624954104424, -0.02509271167218685, -0.027278872206807137, 0.012360738590359688, -0.006984711159020662, 0.009047125466167927, 0.009693348780274391, 0.055300213396549225, 0.010030210018157959, 0.042540740221738815, 0.013632561080157757, 0.007390319369733334, 0.008304656483232975, -0.014918132685124874, -0.012319490313529968, -0.01985417865216732, -0.030441241338849068, 0.0011472181649878621, -0.0011833104072138667, 0.015344365499913692, 0.010105831548571587, 0.0004717773699667305, 0.004038895480334759, 0.009335863403975964, 0.017530525103211403, 0.002328809816390276, 0.009995836764574051, -0.030743727460503578, -0.02898380160331726, -0.012271367013454437, 0.019785432144999504, -0.004777927417308092, -0.013605061918497086, -0.0328611396253109, 0.004630120936781168, 0.030221249908208847, -0.010752054862678051, 0.03671098127961159, 0.012745723128318787, 0.042623236775398254, 0.014601895585656166, 0.0033582986798137426, -0.0010466754902154207, 0.00034330610651522875, -0.04350319877266884, -0.0013904112856835127, -0.027237623929977417, -0.013110082596540451, 0.008290907368063927, 0.011948255822062492, 0.01781926304101944, -0.0054241507314145565, 0.006534417159855366, 0.006981273647397757, -0.00020258927543181926, -0.03585851565003395, 0.00767905730754137, 0.01449190080165863, -0.034456074237823486, -0.01695304922759533, -0.03555602952837944, -0.002198190428316593, -0.010752054862678051, -0.012202620506286621, 0.006720034405589104, 0.0007209858158603311, 0.01781926304101944, -0.030413741245865822, -0.013873175717890263, 0.02028041146695614, -0.026068922132253647, 0.03478606045246124, 0.033713605254888535, 0.02694888599216938, 0.008559021167457104, 0.018176747485995293, -0.02366277202963829, -0.03071622923016548, 0.009940838441252708, -0.02560144104063511, 0.010318947955965996, 0.010401444509625435, -0.006754408124834299, 0.00020215960103087127, -0.004430754110217094, -0.03294363617897034, -0.005671640392392874, -0.049415454268455505, 0.0005942332209087908, -0.009899590164422989, -0.009555854834616184, -0.030083755031228065, -0.011907007545232773, -0.033246126025915146, 0.018836719915270805, -0.011020168662071228, 0.009995836764574051, 0.0002788556448649615, -0.012876342050731182, 0.013288824819028378, 0.02140786498785019, -0.0025539568159729242, 0.019840428605675697, 0.014478150755167007, -0.0005181817105039954, 0.006451920606195927, -0.0070397090166807175, -0.010545813478529453, -0.011453276500105858, 0.01665056124329567, 0.02300279773771763, -0.016031837090849876, -0.0076515586115419865, 0.028791308403015137, 0.02382776513695717, -0.014986880123615265, -0.001888828119263053, -0.03134870156645775, 0.027663854882121086, -0.01091704796999693, -0.018108000978827477, 0.00979646947234869, -0.00017670168017502874, 0.008373403921723366, -0.028117585927248, -0.030468739569187164, -0.019661687314510345, -0.0006410672212950885, -0.00197819946333766, 0.023387782275676727, -0.01656806468963623, -0.012491358444094658, -0.007947171106934547, 0.007520938757807016, -0.016678059473633766, 0.015454360283911228, -0.011198911815881729, 0.014931882731616497, -0.04207326099276543, -0.0015992306871339679, 0.014072543010115623, -0.006108184810727835, -0.00393577478826046, -0.014945631846785545, -0.001809768844395876, -0.01091704796999693, 0.026151418685913086, -0.017063044011592865, 0.019922925159335136, 0.030386243015527725, 0.004781364928930998, -0.03770093992352486, 0.016801804304122925, -0.012408861890435219, -0.004162640310823917, 0.002992219990119338, -0.007974670268595219, -0.03404359146952629, -0.016444319859147072, 0.014601895585656166, -0.0030454990919679403, -0.021311618387699127, -0.0011429215082898736, 0.013721932657063007, 0.03327362239360809, 0.010318947955965996, -0.016664311289787292, 0.01083455141633749, 0.011281408369541168, -0.002079601399600506, 0.005310717970132828, 0.01582559570670128, -0.013261326588690281, 0.018190497532486916, 0.014093167148530483, 0.028873804956674576, -0.0028512883000075817, -0.041110798716545105, -0.010422068648040295, 0.00025995017495006323, 0.009370237588882446, 0.011955130845308304, 0.014024419710040092, 0.006252553779631853, -0.021765349432826042, -0.01973043382167816, 0.02305779606103897, -0.02422649785876274, -0.004032020922750235, 0.04410817474126816, -0.0023769328836351633, 0.014986880123615265, 0.017929257825016975, -0.02890130504965782, -0.027540110051631927, -0.021655354648828506, -0.008153412491083145, -0.04014834016561508, -0.009624602273106575, 0.0001775610144250095, 0.034538570791482925, -0.01100641954690218, -0.03530853986740112, -0.02154535800218582, -0.009411485865712166, -0.03783843293786049, -0.02080288901925087, -0.023951509967446327, 0.01967543549835682, 0.03368610516190529, 0.02136661671102047, -0.005939754191786051, 0.031761184334754944, -0.006180369295179844, 0.012718223966658115, -0.019922925159335136, -0.0010999544756487012, -0.017159290611743927, -0.012470734305679798, 0.0305787343531847, -0.023250287398695946, -0.04408067464828491, 0.0012537762522697449, -0.0012073719408363104, -0.00566476583480835, 0.011150788515806198, 0.006977836135774851, 0.010387695394456387, 0.009418359957635403, -0.015220620669424534, 0.0032345536164939404, 0.01808050274848938, 0.023071546107530594, 0.026591399684548378, -0.03616100549697876, -0.0016980547225102782, 0.02716887556016445, -0.0062216175720095634, -0.007362820208072662, 0.015426862053573132, 0.004145453684031963, -0.031046215444803238, 0.004427317064255476, 0.002301311120390892, -0.0004124829429201782, -0.016843052580952644, -0.008139663375914097, 0.005750699434429407, 0.018795471638441086, 0.02128412015736103, 0.03863590210676193, -0.01747552677989006, -0.01799800619482994, -0.002457710914313793, 0.007053458131849766, 0.001723834895528853, 0.014161914587020874, 0.02513395994901657, -0.01234698947519064, -0.00882713496685028, 0.01330257486552, 0.014698142185807228, 0.014285659417510033, -0.015261868946254253, -0.015138124115765095, 0.006654724944382906, -0.01777801476418972, -0.0064622326754033566, -0.008531522005796432, -0.009390861727297306, 0.003763906890526414, 0.0022789682261645794, 0.001962731359526515, 0.022989049553871155, -0.010642060078680515, 0.01880922168493271, -0.03698597103357315, -0.016499318182468414, -0.004568248521536589, 0.007610310334712267, -0.04182577133178711, 0.004018271341919899, 0.012725098989903927, 0.022164084017276764, 0.007795927580446005, 0.21152125298976898, 0.0039014010690152645, 0.017571773380041122, 0.04369569197297096, 0.0268113911151886, -0.02003292180597782, 0.025161460041999817, 0.008112164214253426, -0.020555399358272552, 0.003959835972636938, -0.0035679773427546024, 0.005334779154509306, -0.016458069905638695, -0.006097872741520405, 0.021380364894866943, -0.012676975689828396, -0.040670815855264664, -0.028186334297060966, -0.009768971242010593, 0.011852010153234005, -0.001501266029663384, -0.0038292165845632553, -0.030386243015527725, -0.0012795564252883196, 0.01733803190290928, -0.004004521761089563, -0.005111351143568754, 0.011570146307349205, 0.014409404247999191, 0.006627225782722235, -0.004437629133462906, -0.008531522005796432, 0.012340114451944828, -0.01630682498216629, -0.009067749604582787, 0.0010621435940265656, 0.013144455850124359, 0.000685752893332392, -0.006345362402498722, 0.020390406250953674, 0.0070397090166807175, -0.03170618787407875, 0.0009487107745371759, -0.007036271505057812, 0.00656191585585475, 0.0017753953579813242, -0.022892802953720093, 0.020390406250953674, -0.020857887342572212, 0.015619354322552681, -0.001750474446453154, -0.007321571931242943, 0.015028128400444984, 0.03360360860824585, -0.0004318180726841092, 0.0054241507314145565, -0.009603978134691715, 0.0053760274313390255, -0.032641150057315826, -0.02015666663646698, -0.017145540565252304, 0.007245950400829315, -0.01087579969316721, 0.017764264717698097, -0.029093796387314796, 0.004688555840402842, -0.028956301510334015, 0.026921385899186134, -0.0012976025464013219, 0.007376569788902998, -0.01876797340810299, 0.005420713219791651, -0.021036630496382713, -0.004777927417308092, -0.01118516270071268, -0.014931882731616497, 0.00992708932608366, 0.009115872904658318, -0.0008305515511892736, 0.01882297173142433, -0.004760740790516138, 0.008641517721116543, -0.023951509967446327, -0.017365531995892525, 0.002663952298462391, -0.019840428605675697, 0.01816299930214882, -0.01090329885482788, -0.005296968389302492, -0.03162369132041931, 0.0019971048459410667, 0.003170962678268552, -0.003083309857174754, -0.032091174274683, 0.0011618268908932805, -0.014203162863850594, 0.009892716072499752, 0.01109579112380743, -0.018176747485995293, -0.047078050673007965, -0.020129166543483734, 0.044355664402246475, 0.0018200809136033058, 0.007029396481812, -0.018327992409467697, 0.013460692949593067, 0.005362278316169977, 0.02495521679520607, -0.001890546758659184, -0.022425321862101555, 0.0015253275632858276, -0.035831019282341, 0.006187243852764368, 0.0015846219612285495, 0.003980460111051798, 0.0100095858797431, 0.02378651686012745, -0.022686561569571495, 0.010160829871892929, -0.027278872206807137, 0.021682852879166603, -0.005293530877679586, 0.006757845636457205, -0.002413025125861168, -0.025230206549167633, -0.029038798063993454, -0.0009349613101221621, 0.02733386866748333, -0.031733687967061996, -0.025683937594294548, 0.012663226574659348, -0.01524811889976263, 0.005671640392392874, -0.018314242362976074, -0.014244411140680313, 0.014093167148530483, 0.00560289341956377, -0.002397557022050023, -0.007637809030711651, -0.026412656530737877, 0.00669253570958972, -0.0019885115325450897, 0.011281408369541168, 0.008318405598402023, 0.017104292288422585, 0.010607685893774033, 0.018740475177764893, -0.012649476528167725, -0.00877901166677475, -0.03481356054544449, 0.002741292817518115, -0.003757032100111246, 0.014918132685124874, 0.008882132358849049, 0.030853724107146263, -0.012477608397603035, -0.027086379006505013, -0.038085926324129105, 0.012443235144019127, 0.024212747812271118, -0.0415232814848423, 0.0030592484399676323, 0.04740804061293602, 0.006104747299104929, -0.016169331967830658, -0.013144455850124359, -0.1743427813053131, 0.007355945650488138, 0.0034648566506803036, -0.01126765925437212, 0.017076794058084488, 0.016196830198168755, -0.0035370411351323128, 0.025711435824632645, -0.006891902536153793, -0.0024370867758989334, 0.009748347103595734, -0.002211939776316285, 0.0005160333239473403, 0.001887109479866922, 0.007287198677659035, 0.005341654177755117, -0.021435363218188286, 0.02638515830039978, 0.04600559547543526, -0.0014325188240036368, 0.011508273892104626, -0.03698597103357315, -0.004729804117232561, -0.000510447658598423, 0.028268830850720406, -0.009198369458317757, 0.004365444183349609, 0.03049623779952526, -0.009961462579667568, -0.041935764253139496, 0.0012219806667417288, -0.0031365889590233564, 0.011336405761539936, -0.01100641954690218, 0.02837882563471794, 0.006616913713514805, 0.014072543010115623, -0.001680008601397276, -0.015756847336888313, 0.00996833760291338, 0.030386243015527725, 0.013859426602721214, 0.013240702450275421, 0.002999094780534506, 0.013646310195326805, 0.01729678362607956, 0.0006887605413794518, -0.013996920548379421, 0.005021979566663504, -0.018217995762825012, 0.019785432144999504, -0.0201979149132967, 0.012773221358656883, 3.705901326611638e-05, -0.002062414772808552, -0.008229034952819347, 0.0032912699971348047, 0.02547769621014595, -9.098256123252213e-05, -0.025931427255272865, 0.0008473087218590081, -0.00774092972278595, 0.003227679058909416, -0.0007819989114068449, -0.031293705105781555, -0.021050378680229187, 0.007321571931242943, 0.007445317227393389, 0.0037467200309038162, -0.015220620669424534, -0.0005405244883149862, 0.01890546828508377, -0.002894255332648754, 0.027402617037296295, 0.008139663375914097, -0.00022149474534671754, -0.03684847429394722, 0.011391404084861279, 0.025120211765170097, 0.008992128074169159, 0.0005199003499001265, 0.01544061116874218, -0.007294073235243559, 0.006836904678493738, -0.007617184892296791, 0.027306370437145233, -0.009652100503444672, -0.0006582540227100253, -0.017723016440868378, 0.010153954848647118, 0.024034006521105766, 0.0024302119854837656, -0.01876797340810299, -0.004207326099276543, 0.017489276826381683, -0.00500479293987155, 0.025683937594294548, -0.004750428255647421, 0.004726367071270943, -0.011920756660401821, 0.00431388383731246, 0.03497855365276337, -0.024034006521105766, 0.007046583574265242, 0.038910891860723495, 0.03258615359663963, 0.002815196057781577, -0.0024542734026908875, 0.04611559212207794, -0.014120666310191154, -0.018286744132637978, 0.0054688360542058945, 0.020225413143634796, 0.006427858956158161, -0.0035043861716985703, 0.030303746461868286, -0.008510897867381573, -0.028736311942338943, 0.01864422857761383, -0.0220953356474638, 0.030386243015527725, -0.03349361568689346, -0.024803973734378815, 0.015990588814020157, 0.005606330465525389, 0.017365531995892525, -0.10862050950527191, -0.021999089047312737, 0.01678805612027645, 0.012628852389752865, -0.018410488963127136, 0.011549522168934345, -0.014299408532679081, 0.04861798882484436, -0.01687055267393589, 0.02975376881659031, -0.014918132685124874, -0.02358027547597885, 0.0024302119854837656, -0.013075709342956543, 0.014244411140680313, -0.0013904112856835127, 0.002402713056653738, 0.005829758942127228, -0.019097959622740746, 0.02798009291291237, -0.00032912701135501266, -0.018025504425168037, 0.02271405979990959, -0.02798009291291237, -0.008985253050923347, -0.004867298528552055, -0.027705103158950806, 0.007837175391614437, 0.013034461066126823, -0.009163996204733849, 0.01230574119836092, -0.022769058123230934, 0.020775390788912773, -0.018011754378676414, -0.0059431917034089565, -0.007610310334712267, -0.028433823958039284, -0.022040337324142456, 0.01349506713449955, -0.04328320920467377, -0.0055341459810733795, 0.010332698002457619, -0.027155127376317978, -0.017420528456568718, -0.012773221358656883, -0.005448211915791035, -0.01773676648736, 0.036051008850336075, 0.021476611495018005, -0.013295699842274189, -0.013481317088007927, -0.013247576542198658, -0.017351781949400902, -0.023814015090465546, 0.02003292180597782, 0.00879963580518961, 0.02400650642812252, 0.015468110330402851, -0.007768428418785334, -0.004265761002898216, 0.005355403292924166, 0.0014918133383616805, -0.006548166740685701, 0.03992834687232971, 0.0034511073026806116, 0.030083755031228065, 0.009418359957635403, -0.011061417870223522, -0.02292030118405819, -0.0012864312157034874, -0.023374032229185104, 0.014945631846785545, -0.015193121507763863, 0.01695304922759533, -0.0007987560238689184, 0.0008675031713210046, -0.025752684101462364, -0.014216911979019642, 0.026522653177380562, 0.01310320757329464, -0.013096333481371403, -0.007479690480977297, -0.0012159653706476092, -0.029258789494633675, 0.036875974386930466, 0.0012537762522697449, 0.009253366850316525, -0.0018149248789995909, 0.03995584696531296, -0.027911344543099403, 0.025615191087126732, 0.021297868341207504, 0.018149249255657196, -0.005929442122578621, 7.589041342725977e-05, 0.020871637389063835, -0.027870096266269684, 0.009535230696201324, 0.032118670642375946, -0.00546196149662137, -0.010958296246826649, -0.0032912699971348047, -0.04509813338518143, 0.020651645958423615, 0.006139121018350124, 0.017104292288422585, -0.010229576379060745, -0.006668474059551954, -0.009177745319902897, 0.0032036174088716507, 0.0011704203207045794, 0.018149249255657196, -0.021916592493653297, 0.010538939386606216, -0.016031837090849876, -0.019565440714359283, -0.01559185516089201, -0.027196375653147697, 0.0034579818602651358, 0.003179555991664529, 0.022397823631763458, 0.004551061894744635, 0.002822070848196745, -0.00998896174132824, 0.0043860687874257565, 0.03489605709910393, -0.004190139006823301, 0.01091704796999693, -0.03459356725215912, 0.04034082964062691, 0.0015115780988708138, -0.011934506706893444, 0.01816299930214882, -0.009872091934084892, -0.011687016114592552, 0.0113295316696167, -0.0038017176557332277, -0.04597809910774231, 0.024680228903889656, -0.008593394421041012, 0.031816184520721436, -0.003760469378903508, -0.016760556027293205, -0.010710806585848331, 0.022741559892892838, -0.0006372001953423023, -0.02767760492861271, 0.00019131044973619282, -0.007665307726711035, -0.018781723454594612, 0.03035874478518963, 0.015564355999231339, 0.053182799369096756, 0.010580187663435936, 0.004066394176334143, -0.05076289921998978, -0.011143914423882961, -0.0010191765613853931, 0.006262865848839283, 0.009768971242010593, 0.006974399089813232, 0.008675890974700451, 0.04815050959587097, 0.019097959622740746, 0.014973131008446217, -0.0006152870482765138, 0.005939754191786051, -0.01118516270071268, -0.0377284400165081, -0.0011300314217805862, -0.007919671945273876, -0.04331070929765701, 0.010800178162753582, -0.025463946163654327, 0.026151418685913086, 0.014739390462636948, 0.00988584104925394, 0.020266661420464516, 0.003091903403401375, -0.016238078474998474, -0.011755763553082943, 0.03676597774028778, 0.022329077124595642, -0.013880050741136074, -0.01967543549835682, -0.0006281771347858012, 0.020101668313145638, 0.011611394584178925, -0.012518856674432755, 0.016554314643144608, 0.0034751687198877335, -0.006176931783556938, -0.007080957293510437, -0.006090998183935881, -0.020596647635102272, 0.02015666663646698, 0.023607773706316948, 0.026288911700248718, -0.0305787343531847, 0.01989542692899704, 0.026673896238207817, 0.041248295456171036, 0.01790175959467888, 0.019620439037680626, 0.015165622346103191, 0.0024473988451063633, -0.03291613981127739, 0.010820802301168442, -0.03530853986740112, -0.005681952461600304, 0.016238078474998474, 0.024157751351594925, 0.003004250815138221, -0.013921299017965794, -0.009851467795670033, 0.004533874802291393, -0.022260328754782677, 0.013735681772232056, -0.012319490313529968, -0.02340153232216835, -0.012271367013454437, -0.01310320757329464, -0.002495521679520607, 0.02110537700355053, 0.02751261182129383, -0.014835636131465435, 0.020307909697294235, 0.012807595543563366, -0.002230845158919692, -0.01317195501178503, 0.02007417008280754, -0.031596191227436066, 0.022989049553871155, 0.013646310195326805, 0.011082042008638382, -0.023112794384360313, -0.003418452339246869, -0.013178830035030842, -0.023731518536806107, 0.014058792963624, -0.00361610040999949, 0.0648973137140274, 0.018616730347275734, -0.02076164074242115, -0.008366528898477554, -0.021517859771847725, 0.014821887016296387, 0.025023965165019035, -0.0089715039357543, 0.018149249255657196, -0.015894342213869095, 0.029038798063993454, -0.007273449096828699, -0.02054165117442608, -0.014945631846785545, 0.007080957293510437, 0.00039400713285431266, 0.005327904596924782, 0.010820802301168442, -0.006403797771781683, 0.014698142185807228, 0.030386243015527725, -0.011673266999423504, 0.036573488265275955, 0.0005864991690032184, -0.026398908346891403, -0.009562729857861996, 0.03110121376812458, 0.02072039246559143, -0.0028959738556295633, -0.04199076443910599, 0.007933421991765499, -0.0023030296433717012, -0.007672182749956846, 0.004643870517611504, -0.0033582986798137426, -0.005152599420398474, -0.0016404789639636874, -0.014546898193657398, 0.005864132195711136, -0.0011128445621579885, -0.006885027512907982, 0.021119127050042152, -0.02356652542948723, -0.010318947955965996, 0.01703554578125477, -0.002052102703601122, -0.0008056307560764253, -0.016375573351979256, -0.009349613450467587], "28f19db6-e542-4df6-8b44-969d7633e53c": [-0.02194356545805931, -0.00946221873164177, -0.00018236986943520606, -0.031920406967401505, -0.009935673326253891, 0.011493268422782421, -0.014546703547239304, -0.03301827237010002, -0.01128055714070797, -0.05535981431603432, 0.025895876809954643, 0.009798440150916576, 0.02398833818733692, -0.020269321277737617, 0.002617720514535904, 0.013771336525678635, 0.02772107720375061, 0.006384767591953278, 0.013702720403671265, -0.02315121702849865, -0.012934215366840363, 0.0019795869011431932, -0.027364270761609077, 0.0035989368334412575, -0.02398833818733692, 0.010711039416491985, 0.024784289300441742, -0.014093834906816483, -0.012515654787421227, 0.01340766903012991, 0.01657775230705738, -0.020475171506404877, -0.016605200245976448, -0.008522172458469868, -0.024386312812566757, -0.00010807102808030322, 0.009105413220822811, -0.003425680100917816, -0.0023655546829104424, -0.014697659760713577, 0.01257740892469883, -0.004576722159981728, -0.007149842102080584, 0.008000686764717102, -0.0056917411275208, 0.031261689960956573, 0.011815765872597694, -0.013332190923392773, -0.01928124390542507, -0.0035063044633716345, 0.0043434263207018375, 0.01875975914299488, -0.0181010402739048, 0.00772622087970376, -0.01619349978864193, 0.00906424317508936, -0.001673385500907898, -0.012934215366840363, 0.013956601731479168, 0.007781113963574171, 0.0065563092939555645, 0.007211597170680761, -0.013942878693342209, -0.005461875349283218, -0.02560768835246563, -0.03422592207789421, -0.009180891327559948, -0.016344456002116203, -0.0166463702917099, -0.006374475546181202, 0.0169894527643919, 0.03716270998120308, -0.007245905231684446, -0.0016639507375657558, 0.005640278570353985, -0.017181579023599625, 0.009434772655367851, -0.012172572314739227, -0.010964920744299889, -0.022025905549526215, 0.018951885402202606, 0.003146067727357149, -0.005873574875295162, -0.008501587435603142, 0.01819710247218609, 0.03565314784646034, 0.0012170856352895498, -0.0006986020016483963, -0.0019401323515921831, 0.0051668244414031506, -0.00035980792017653584, 0.01571318507194519, 0.0181010402739048, 0.020886870101094246, 0.003024273319169879, 0.009901365265250206, 0.018210826441645622, 0.004930097609758377, 0.011973584070801735, -0.017908914014697075, -0.022959090769290924, -0.005410413257777691, -0.01623466983437538, -0.010717901401221752, -0.03266146779060364, 0.005499614402651787, 0.02166909910738468, -0.02044772543013096, 0.004058667458593845, 0.02339823544025421, -0.019679220393300056, 0.037629302591085434, 0.00849472638219595, -0.0012393860379233956, -0.012714642100036144, -0.015219145454466343, 0.026636935770511627, -0.03598250821232796, -0.00460416916757822, -0.022849302738904953, 0.008940733037889004, 0.01723647117614746, 0.029752125963568687, -0.026842785999178886, 0.01819710247218609, -0.004803156945854425, -0.007383138407021761, -0.02692512422800064, 0.020722191780805588, 0.007211597170680761, 0.017277641221880913, 0.02124367654323578, 0.007527233101427555, 0.006693542003631592, -0.04136204347014427, -0.001391200115904212, -0.021820055320858955, 0.014478087425231934, 0.0032438463531434536, -0.032030194997787476, 0.01307830959558487, 0.02242388017475605, -0.003310747444629669, -0.020406555384397507, 0.0070606404915452, 0.02515481784939766, -0.0035955060739070177, 0.030438290908932686, 0.013551764190196991, -0.020049748942255974, 0.004974698182195425, -0.02087314799427986, -0.012591132894158363, 0.012954800389707088, 0.015205422416329384, 0.003633245127275586, -0.006384767591953278, 0.020461447536945343, -0.02608800306916237, -0.005815250799059868, 0.007273351773619652, 0.011534438468515873, -0.007986963726580143, -0.005005575716495514, 0.004830603487789631, 0.034555282443761826, 0.004034651909023523, -0.021188784390687943, -0.010086629539728165, -0.012803844176232815, -0.006501415744423866, 0.022410158067941666, -0.029669785872101784, 0.014299684204161167, 0.021655375137925148, 0.0053623816929757595, 0.018334336578845978, -0.0026537440717220306, -0.008089888840913773, -0.03370443731546402, 0.03579038009047508, -0.015095636248588562, 0.016207223758101463, 0.011699117720127106, -0.01753838360309601, -0.012399006634950638, 0.014944679103791714, 0.010910027660429478, 0.0027257914189249277, 0.005540784448385239, 0.008172228001058102, 0.006477400194853544, -0.030191272497177124, -0.011637362651526928, -0.6187564134597778, -0.001921262708492577, 0.021463248878717422, -0.026033110916614532, 0.0033399094827473164, 0.014917233027517796, 0.010189554654061794, -0.008748606778681278, -0.018004976212978363, 0.014930956065654755, 0.0015198560431599617, 0.004683077801018953, 0.007925208657979965, -0.012090232223272324, -0.009839610196650028, -0.01637190394103527, 0.021847501397132874, -0.007328244857490063, -0.007650742772966623, 0.005935329478234053, -0.027844587340950966, 0.04600051790475845, -0.010944335721433163, -0.013277297839522362, 0.005314350128173828, -0.019391030073165894, 0.014045802876353264, -0.015534781850874424, -0.012330389581620693, 0.02010464295744896, -0.024111848324537277, 0.022396434098482132, 0.025909600779414177, 0.00699888588860631, 0.043722450733184814, -0.02540183812379837, -0.01545244175940752, 0.02692512422800064, 0.036558885127305984, 0.03049318492412567, -0.03235955536365509, -0.0005793807795271277, 0.02187494933605194, 0.025484178215265274, -0.005907882936298847, 0.010752209462225437, -0.016673816367983818, 0.011829488910734653, -0.013071448542177677, -0.015479888767004013, -0.006364183034747839, -0.024002060294151306, -0.003199245547875762, 0.002811562269926071, 0.016591476276516914, 0.001132172648794949, 0.032030194997787476, -0.005060468800365925, 0.002979672746732831, 0.022025905549526215, 0.010861996561288834, 0.006034823600202799, -0.013181234709918499, -0.04460074380040169, -0.045286908745765686, 0.016275839880108833, -0.01545244175940752, -0.0245647169649601, 0.0014375161845237017, -0.009956258349120617, 0.020886870101094246, 0.008206536993384361, -0.008021271787583828, 0.0031546447426080704, -0.002995111281052232, 0.022616006433963776, 0.03233210742473602, -0.010635561309754848, 0.0071704271249473095, 0.009887641295790672, 0.002377562690526247, -0.002482202835381031, -0.014711383730173111, -0.01848529279232025, 0.0368882454931736, 0.0013517455663532019, -0.0242216344922781, -0.013105756603181362, -0.007945793680846691, -0.01605626754462719, 0.01399777177721262, 0.008981903083622456, -0.009125998243689537, -0.0405660904943943, 0.02945021353662014, 0.03263401985168457, 0.013915431685745716, -0.010594392195343971, 0.0017394289607182145, -0.031645942479372025, -0.021271122619509697, -0.016769878566265106, 0.016248393803834915, 0.019130287691950798, 0.024647057056427002, 0.014862339943647385, -0.025388114154338837, -0.008069303818047047, 0.026568319648504257, -0.030712757259607315, 0.0030002575367689133, -0.009867056272923946, -0.018499014899134636, -0.009956258349120617, 0.004511536564677954, -0.01965177245438099, 0.010594392195343971, -0.014779999852180481, -0.01382623054087162, -0.015150529332458973, -0.008899563923478127, 0.010354233905673027, -0.013592934235930443, -0.004350287839770317, -0.002792692743241787, 0.031069563701748848, 0.0013431685511022806, -0.009297539480030537, 0.009263231419026852, -0.009091690182685852, 0.012803844176232815, -0.01602882146835327, 0.01160991657525301, -0.01892443746328354, 0.02349429950118065, -0.0005236298893578351, 0.010745348408818245, -0.003055150853469968, 0.010827687568962574, -0.038013555109500885, -0.012316666543483734, -0.010772794485092163, 0.02090059407055378, -0.024111848324537277, 0.0009940819581970572, -0.005763788241893053, -0.009798440150916576, 0.010443435050547123, 0.004357149358838797, -0.019500816240906715, -0.034692514687776566, -0.019075393676757812, 0.012049062177538872, 0.029011067003011703, -0.011060983873903751, 0.003170083509758115, 0.015040742233395576, -0.036284420639276505, -0.01010721456259489, -0.022190583869814873, -0.01585041731595993, 0.014848615974187851, -0.005901021417230368, 0.01010721456259489, -0.016179777681827545, 0.0011356035247445107, -0.0307676512748003, 0.0014683937188237906, 0.0006677245837636292, -0.01644052006304264, 0.003384510288015008, -0.012851875275373459, 0.029093407094478607, 0.03104211762547493, -0.022163137793540955, 0.028736600652337074, -0.008481002412736416, 0.0029333564452826977, -0.001236812910065055, -0.003643537638708949, 0.01978900656104088, 0.02920319326221943, -0.006463676691055298, -0.013592934235930443, 0.029559999704360962, 0.009585728868842125, 0.018114762380719185, 0.020859424024820328, -0.03606484830379486, -0.004339995328336954, 0.008597650565207005, 0.010580668225884438, -0.0055716619826853275, -0.004381165374070406, -0.006302427966147661, -0.0005678017623722553, -0.025209711864590645, -0.013606657274067402, -0.014629043638706207, 0.03167339041829109, 0.016481690108776093, 0.004761986900120974, -0.01930868998169899, -0.0030723048839718103, 0.010772794485092163, -0.03565314784646034, 0.0130096934735775, -0.01055322214961052, 0.01012093760073185, -0.003396518062800169, 0.0005167681956663728, -0.008467279374599457, 0.007211597170680761, -0.03529633954167366, -0.0009795009391382337, 0.026760445907711983, -0.019953686743974686, 0.02315121702849865, -0.0007200446561910212, -0.0023827089462429285, 0.0033519172575324774, 0.015562227927148342, 0.017881466075778008, 0.011829488910734653, 0.011589331552386284, 0.015479888767004013, -0.006353890523314476, 0.008000686764717102, 0.02003602497279644, -0.032441895455121994, 0.0003924007760360837, 0.021682823076844215, 0.001777168014086783, -0.003990050870925188, 0.028297455981373787, 0.026417363435029984, 0.0434754304587841, -0.01143837533891201, 0.03010893240571022, -0.01778540387749672, -0.005787804257124662, -0.0020087487064301968, 0.03392400965094566, -0.02349429950118065, 0.021339740604162216, 0.009002488106489182, 0.024688227102160454, -0.00994939636439085, -0.028626814484596252, 0.031097009778022766, -0.0007453470025211573, 0.008570204488933086, -0.01937730796635151, -0.019610604271292686, 0.035762932151556015, 0.006868514232337475, 0.0010035167215391994, 0.014930956065654755, 0.020804530009627342, 0.014299684204161167, -0.009585728868842125, 0.013380222953855991, -0.0029659494757652283, 0.0009125997894443572, 0.018224550411105156, -0.008865254931151867, -0.009798440150916576, -0.02917574718594551, -0.012817567214369774, -0.00010110216680914164, 0.0033604945056140423, -0.01830688863992691, -0.012543100863695145, -0.012447037734091282, -0.018334336578845978, 0.0013740459689870477, 0.013270435854792595, 0.018457844853401184, 0.008151642978191376, 0.006690111476927996, -0.01055322214961052, -0.013229266740381718, 0.011287418194115162, 0.005492752883583307, -0.006353890523314476, -0.01816965639591217, -0.007671327795833349, -0.005098207853734493, 0.016673816367983818, 0.024770565330982208, -0.011891243979334831, -0.0020190412178635597, -0.013881123624742031, 0.013359637930989265, -0.015932757407426834, 0.02065357379615307, 0.04932155832648277, -0.02055751159787178, -0.01329102087765932, 0.008913286961615086, 0.010580668225884438, 0.0032352693378925323, -0.002151128137484193, -0.012879322282969952, 0.04311862587928772, -0.01580924727022648, -0.018910715356469154, -0.013517456129193306, 0.007787975948303938, -0.020530065521597862, 0.00846041738986969, -0.02103782631456852, -0.021888671442866325, -0.01051891315728426, -0.028873834758996964, -0.0024890645872801542, 0.001289132982492447, -0.0036675534211099148, 0.02890128083527088, 0.018993055447936058, -0.00193155521992594, -0.01472510676831007, -0.0173325352370739, 0.02370014786720276, 0.06867142021656036, 0.011802042834460735, -0.014766276814043522, 0.01637190394103527, -0.025580240413546562, -0.006696972995996475, -0.01630328595638275, -0.028571922332048416, 0.03546101972460747, -0.016275839880108833, -0.008076164871454239, 0.0043880268931388855, 0.027117250487208366, -0.011829488910734653, 0.0017823142698034644, 0.009324985556304455, 0.009668068960309029, -0.017016898840665817, -0.021065274253487587, 0.008007548749446869, -0.008076164871454239, 0.0018251995788887143, 0.027281930670142174, 0.023658977821469307, 0.03622952476143837, 0.027940649539232254, 0.04020928591489792, 0.011726564727723598, 0.016797326505184174, -0.03205764293670654, -0.020186983048915863, 0.005935329478234053, -0.008927009999752045, 0.009626898914575577, -0.015205422416329384, 0.019638050347566605, 0.0009469080832786858, -0.023645255714654922, -0.009400464594364166, 0.007630157750099897, -0.0024461792781949043, 0.010752209462225437, 0.020022302865982056, -0.014944679103791714, 0.010669870302081108, -0.0339789055287838, -0.00011804186942754313, 0.03104211762547493, -0.015342655591666698, -0.021916119381785393, -0.006312720477581024, 0.0005171970697119832, -0.02131229266524315, 0.01564456894993782, -0.00048160224105231464, -0.0002791834995150566, -0.02540183812379837, -0.016701262444257736, -0.013531179167330265, -0.018595078960061073, -0.04869028925895691, -0.010807102546095848, -0.007177288644015789, -0.016413073986768723, -0.0184441227465868, -0.012584270909428596, -0.009496527723968029, 0.011362897232174873, -0.02903851494193077, 0.0040174974128603935, -0.0005750922719016671, -0.01889699138700962, -0.04674157872796059, -0.0090505201369524, 0.025346944108605385, 0.00937987957149744, 0.006741573568433523, 0.004652200732380152, -0.005856420379132032, 0.016701262444257736, -0.0010867142118513584, -0.034033797681331635, -0.0024650488048791885, -0.017483491450548172, -0.021408356726169586, -0.012899907305836678, -0.027350546792149544, -0.008309461176395416, -0.021408356726169586, 0.01022386271506548, 0.0038459564093500376, -0.021573036909103394, -0.006772451102733612, -0.0013440261827781796, 0.018704865127801895, 0.04792178049683571, 0.014532980509102345, 0.020886870101094246, 0.03359465301036835, -0.05557938665151596, 0.007643881253898144, -0.008192813023924828, -0.012632302939891815, -0.019294967874884605, 0.020090918987989426, -0.0002570975630078465, -0.003633245127275586, -0.021710269153118134, 0.01598765142261982, -0.03592761233448982, 0.00039711815770715475, -0.013531179167330265, -0.011884381994605064, -0.026458533480763435, 0.01513680536299944, -0.007856592535972595, 0.0006561455084010959, 0.025168541818857193, 0.007067502476274967, -0.024907799437642097, 0.02128484658896923, -0.023645255714654922, 0.03172828257083893, 0.0029762417543679476, -0.006456815171986818, 0.01819710247218609, 0.024578439071774483, -0.022163137793540955, -0.033512312918901443, 0.010285617783665657, -0.0005429282900877297, 0.005835835821926594, -0.005557938478887081, -0.012467622756958008, -0.013188096694648266, -0.0020190412178635597, -0.004010635893791914, -0.005430998280644417, -0.0019915946759283543, 0.008179089985787868, -0.014491810463368893, -0.00035594822838902473, 0.013846815563738346, -0.003285016166046262, -0.006075993645936251, -0.030328504741191864, -0.02083197794854641, -0.01228235848248005, -0.001506132772192359, 0.036805905401706696, -0.01816965639591217, -0.015548504889011383, -0.008693713694810867, -0.01356548722833395, 0.01630328595638275, -0.017456043511629105, -0.0021940134465694427, 0.009860195219516754, 0.06093147397041321, 0.034033797681331635, 0.03491208702325821, 0.013853676617145538, 0.02560768835246563, 0.01928124390542507, -0.01917145773768425, -0.017291365191340446, -0.011342312209308147, -0.02037910930812359, 5.2239691285649315e-05, 0.007897762581706047, 0.0017668756190687418, 0.00029333564452826977, -0.02142207883298397, 0.016358179971575737, -0.0038082171231508255, 0.016275839880108833, 0.0015738916117697954, -0.016454244032502174, -0.025031309574842453, -0.03782143071293831, -0.0013628957094624639, 0.03227721527218819, 0.012769535183906555, -0.011410928331315517, -0.025690028443932533, 0.019075393676757812, 0.03990737348794937, -0.011287418194115162, 0.0426245853304863, 0.02201218158006668, 0.037492070347070694, 0.00899562705308199, 6.186209066072479e-05, -0.0001564242411404848, 0.013764475472271442, -0.02626640722155571, -0.01012093760073185, -0.03633931279182434, -0.01571318507194519, 0.015356378629803658, 0.014752552844583988, 0.02803671360015869, 0.007417446468025446, -0.0020396262407302856, 0.008968180045485497, 0.009537696838378906, -0.030163824558258057, 0.017277641221880913, 0.017565831542015076, -0.03617463260889053, 0.005629986058920622, -0.027775969356298447, -0.0067998976446688175, 0.00989450328052044, -0.014176174066960812, 0.014779999852180481, 0.0017531522316858172, 0.018951885402202606, -0.017634447664022446, -0.011946137063205242, 0.029642339795827866, -0.020475171506404877, 0.0419384203851223, 0.032826147973537445, 0.023055152967572212, 0.0009709238656796515, 0.006772451102733612, -0.02273951657116413, -0.02035166136920452, 0.006559739820659161, -0.023864828050136566, 0.00873488374054432, 0.016742432489991188, -0.00989450328052044, -0.0022900765761733055, 0.0014872632455080748, -0.02574492059648037, -0.007280213292688131, -0.03966035321354866, 0.006137748248875141, 0.0067861746065318584, -0.00773308239877224, -0.034966982901096344, -0.018004976212978363, -0.018567632883787155, 0.018704865127801895, -0.018773481249809265, -0.0010103783570230007, 0.007815422490239143, -0.016687538474798203, 0.017359981313347816, 0.030548077076673508, 0.0024273095186799765, 0.02048889547586441, -0.013448839075863361, 0.009736685082316399, 0.019994856789708138, -0.013654688373208046, 0.009613174945116043, -0.004875204060226679, 0.01257740892469883, 0.030026592314243317, -0.03233210742473602, 0.0008324042428284883, 0.01719530113041401, 0.023247279226779938, -0.01605626754462719, -0.008007548749446869, -0.03411613777279854, 0.02876404859125614, -0.016934558749198914, -0.019404754042625427, 0.00756840268149972, 0.01896560750901699, 0.003770478069782257, -0.021133890375494957, -0.019363583996891975, -0.008535895496606827, 0.0008371216244995594, -0.002998542273417115, 0.019006777554750443, -0.023343343287706375, -0.01546616479754448, -0.0069405618123710155, 0.0072321817278862, -0.02488035336136818, 0.016413073986768723, 0.009709238074719906, 0.01406638789921999, -0.04473797604441643, -0.010642423294484615, -0.001068702433258295, -0.01045029703527689, -0.00024380309332627803, 0.00799382571130991, -0.0238785520195961, -0.011308003216981888, 0.0210103802382946, -0.008830946870148182, 0.017277641221880913, 0.031097009778022766, 0.0030054037924855947, -0.03738228231668472, 0.024166740477085114, -0.021161336451768875, -0.00361266010440886, 0.012748951092362404, -0.0007367699290625751, -0.0361197404563427, -0.026636935770511627, 0.03461017459630966, 0.0040174974128603935, 0.002887040376663208, 0.004401750396937132, 0.02380993403494358, 0.02578609064221382, -0.0048271724954247475, -0.011712840758264065, 0.007108672056347132, -0.006110301706939936, -0.005513337906450033, 0.01110901590436697, 0.01602882146835327, -0.010217000730335712, 0.007094949018210173, 0.008597650565207005, -0.0040037743747234344, -0.003653830150142312, -0.04418904334306717, -0.025552794337272644, -0.018732311204075813, 0.021984735503792763, 0.003357063513249159, 0.011657947674393654, 0.00019201905524823815, -0.006384767591953278, -0.010443435050547123, 0.013071448542177677, -0.020090918987989426, 0.00180804543197155, 0.03219487518072128, -0.011157047003507614, 0.00031520717311650515, 0.034829750657081604, -0.022396434098482132, -0.03153615444898605, -0.025484178215265274, -0.021984735503792763, -0.04827858880162239, -0.007016039919108152, 0.008679990656673908, 0.034692514687776566, 0.001567029976285994, -0.0317557267844677, -0.032716359943151474, -0.015507334843277931, -0.04136204347014427, -0.008185951970517635, -0.033347632735967636, 0.017497213557362556, 0.027775969356298447, 0.018004976212978363, 0.0026811908464878798, 0.029807019978761673, -0.012659749016165733, -0.011657947674393654, -0.02983446605503559, -0.003873402951285243, -0.019665496423840523, -0.020434001460671425, 0.03134403005242348, -0.022465050220489502, -0.04366755858063698, 0.004916374105960131, -0.0032781546469777822, -0.01864997111260891, 0.005636847577989101, -0.0036503991577774286, 0.012796982191503048, 0.016605200245976448, -0.001267690327949822, 0.01001801248639822, 0.021298570558428764, 0.026417363435029984, 0.020804530009627342, -0.030410844832658768, 0.0055716619826853275, 0.01978900656104088, -0.004020928405225277, -0.008769191801548004, 0.005990222562104464, 0.007781113963574171, -0.015027019195258617, 0.0006428511114791036, 0.0009065958438441157, -0.01140406634658575, -0.005242302548140287, 0.0020173259545117617, -0.007094949018210173, 0.01406638789921999, 0.013483147136867046, 0.03529633954167366, -0.025113649666309357, -0.004847757518291473, -0.005990222562104464, 0.002669182838872075, 0.01941847614943981, 0.018677419051527977, 0.02332961931824684, -0.025003861635923386, 0.000825542607344687, -0.002190582687035203, 0.009757270105183125, 0.004333133809268475, -0.021257400512695312, -0.013579210266470909, -0.005218286998569965, -0.008014410734176636, -0.007156703621149063, -0.007376276422291994, 0.004182177130132914, 0.006106870714575052, -0.014093834906816483, -0.0010747063206508756, 0.011774595826864243, -0.011445236392319202, 0.01546616479754448, -0.03858993574976921, -0.03170083463191986, -0.003986620344221592, 0.0071704271249473095, -0.04523201286792755, -0.002854447579011321, 0.021257400512695312, 0.006110301706939936, 0.013798783533275127, 0.2092529535293579, 0.01372330542653799, 0.01892443746328354, 0.032441895455121994, 0.011973584070801735, -0.021380910649895668, 0.01090316567569971, 0.015191699378192425, -0.021847501397132874, 0.017044344916939735, -0.003520027734339237, -0.0004254224768374115, -0.01193927600979805, -0.0035989368334412575, 0.024798013269901276, -0.02339823544025421, -0.024386312812566757, 0.00023758472525514662, -0.011211940087378025, 0.011287418194115162, 0.00756154116243124, -0.006878806743770838, -0.011253110133111477, -0.003446265123784542, 0.03318295255303383, 0.0024084399919956923, -0.018155932426452637, -0.004058667458593845, 0.01545244175940752, 0.01764816977083683, -0.011225664056837559, 0.0031409214716404676, 0.022231753915548325, -0.020722191780805588, -0.014670213684439659, -0.014601596631109715, 0.008467279374599457, -0.006456815171986818, -0.006827344186604023, 0.027391716837882996, 0.0028510165866464376, -0.022231753915548325, 0.013242989778518677, -0.02492152340710163, 0.02287675067782402, 0.008515311405062675, -0.01389484666287899, 0.007918347604572773, -0.013188096694648266, 0.01639935001730919, -0.008872116915881634, 0.0027360839303582907, 0.018389228731393814, 0.025099925696849823, 0.005228579510003328, 0.002230037236586213, -0.010724763385951519, -0.00033343344694003463, -0.018567632883787155, -0.0037773398216813803, -0.018142210319638252, 0.011301142163574696, -0.008137919940054417, -0.0069851623848080635, -0.017016898840665817, 0.013929154723882675, -0.013949739746749401, 0.02772107720375061, 0.001548160333186388, -0.001621065428480506, -0.005883867386728525, -0.009668068960309029, -0.029120853170752525, 0.0007324814214371145, -0.023851104080677032, -0.01432713121175766, 0.020118365064263344, 0.020406555384397507, 0.02665065973997116, 0.012591132894158363, -0.012309804558753967, -0.00042392147588543594, -0.033512312918901443, -0.01885582134127617, 0.009668068960309029, -0.037629302591085434, 0.0278171394020319, -0.02564885839819908, -0.009523973800241947, -0.03010893240571022, -0.007197873666882515, 0.006113732699304819, -0.007602711208164692, -0.01703062281012535, 0.011026675812900066, -0.020886870101094246, 0.013531179167330265, 0.01796380616724491, -0.013709582388401031, -0.03738228231668472, -0.017456043511629105, 0.04589073359966278, 0.0033364787232130766, 0.029614893719553947, -0.0093936026096344, 0.0242216344922781, 0.0037944938521832228, 0.02854447439312935, -0.012399006634950638, -0.004621323198080063, 0.006244103889912367, -0.0485256090760231, 0.008865254931151867, -0.0022626300342381, 0.006614633370190859, 0.012055924162268639, 0.010999228805303574, -0.01323612779378891, 0.017703063786029816, -0.02014581300318241, 0.01578180119395256, 0.008192813023924828, 0.02536066807806492, 0.023782487958669662, -0.04029162600636482, -0.026801615953445435, -0.002243760507553816, 0.03167339041829109, -0.032853592187166214, -0.01685221865773201, 0.0024015784729272127, -0.008028133772313595, 0.015836695209145546, -0.006552878301590681, -0.012721504084765911, 0.007767390925437212, 0.024962691590189934, -0.010148384608328342, -0.013702720403671265, -0.015287762507796288, -0.0025988509878516197, 0.0202418752014637, 0.029807019978761673, 0.008199675008654594, -0.007136118598282337, 0.0009091689717024565, 0.004219916183501482, -0.009297539480030537, -0.012131402269005775, -0.023727595806121826, -0.0014289391692727804, 0.015768077224493027, 0.013311605900526047, -0.00020509908790700138, 0.03565314784646034, -0.01764816977083683, -0.01962432637810707, -0.029642339795827866, 0.008899563923478127, 0.01778540387749672, -0.04235012084245682, 0.0038185096345841885, 0.0355159156024456, 0.01567201502621174, -0.014299684204161167, -0.002804700518026948, -0.1746702343225479, 0.010004289448261261, 0.01619349978864193, -0.012049062177538872, 0.02221803180873394, 0.011952999047935009, 0.004374303389340639, -0.002523372881114483, 0.0015241445507854223, -0.009942534379661083, 0.013702720403671265, 0.011445236392319202, -0.0009340424439869821, -0.008295738138258457, 0.0019092548172920942, 0.0026743290945887566, -0.03235955536365509, 0.03194785490632057, 0.04855305328965187, 0.0067896051332354546, 0.014587873592972755, -0.030602971091866493, -0.022121967747807503, 0.007801698986440897, 0.039056528359651566, 0.0144643634557724, 0.0019041085615754128, 0.031124455854296684, 0.005105069372802973, -0.0369705855846405, -0.004868342541158199, -0.006079424172639847, 0.016550306230783463, -0.0113834822550416, 0.03186551481485367, -0.0019178319489583373, -0.007184150163084269, -0.009263231419026852, -0.013359637930989265, 0.0073694149032235146, 0.026019386947155, 0.007849730551242828, 0.0169894527643919, 0.0010927182156592607, 0.007259628735482693, 0.01841667667031288, 0.014299684204161167, -0.0038699721917510033, 0.0032987394370138645, -0.018663695082068443, 0.02630757726728916, -0.0220396276563406, -0.0017908914014697075, -0.004120422527194023, 0.010024874471127987, -0.0031031824182718992, 0.015795525163412094, 0.034171029925346375, 0.008357493206858635, -0.007513509597629309, 0.0004661635321099311, -0.00030813110060989857, 0.014409470371901989, -0.0014666782226413488, -0.00906424317508936, -0.023933444172143936, 0.02986191213130951, 0.0072321817278862, 0.004768848419189453, 0.0017197016859427094, -0.009469080716371536, 0.017497213557362556, -0.0037773398216813803, 0.02242388017475605, 0.009592590853571892, 0.014368300326168537, -0.03982503339648247, 0.004875204060226679, 0.03378677740693092, -0.0005034737405367196, 0.018155932426452637, 0.000529204960912466, -0.009331847541034222, -0.003715584985911846, -0.0012196587631478906, 0.020406555384397507, -0.005355519708245993, 0.012597993947565556, -0.01029247883707285, 0.017044344916939735, 0.028434688225388527, -0.011102153919637203, -0.008707437664270401, 0.005880436394363642, 0.012097093276679516, -0.005904451943933964, 0.03013637848198414, -0.006648941431194544, 0.010237585753202438, -0.008501587435603142, 0.008625097572803497, 0.010759071446955204, -0.01639935001730919, 0.004141007550060749, 0.019198903813958168, 0.029916806146502495, 0.0010832834523171186, 0.006902822759002447, 0.03340252488851547, -0.020777083933353424, -0.016111159697175026, -0.0014529549516737461, 0.022368988022208214, -0.0012479630531743169, -0.013977186754345894, 0.03458273038268089, 0.004058667458593845, -0.03878206014633179, 0.01438202429562807, -0.03167339041829109, 0.042926497757434845, -0.02083197794854641, -0.02370014786720276, 0.01609743759036064, -0.0012093662517145276, 0.007101810537278652, -0.11242131888866425, -0.0346650704741478, 0.027007464319467545, 0.0043880268931388855, -0.011369758285582066, 0.006144609767943621, -0.011822627857327461, 0.042130548506975174, -0.031206795945763588, 0.028818940743803978, -0.03891929239034653, -0.026348745450377464, 0.010409126989543438, -0.011685394681990147, 0.0037670473102480173, -0.013860538601875305, -0.013984047807753086, 0.004374303389340639, -0.00790462363511324, 0.0355159156024456, -0.000988077954389155, -0.0019967409316450357, 0.020118365064263344, -0.020598681643605232, -0.006930269300937653, -0.0187872052192688, -0.023933444172143936, 0.011575608514249325, 0.004981559701263905, 0.0069405618123710155, 0.01978900656104088, -0.02048889547586441, 0.028818940743803978, -0.007966378703713417, -0.007293936796486378, -0.018677419051527977, -0.010642423294484615, -0.019610604271292686, 0.003209538059309125, -0.028489582240581512, -0.012151987291872501, 0.011465821415185928, -0.014354577288031578, -0.018704865127801895, 0.010470882058143616, 0.0005913886707276106, -0.016413073986768723, 0.031097009778022766, 0.01029247883707285, -0.013050863519310951, -0.013215542770922184, 0.0005776653997600079, -0.0198987927287817, -0.018471568822860718, 0.04081311076879501, 0.008357493206858635, 0.01609743759036064, 0.007088087033480406, -0.0108482725918293, 0.009324985556304455, 0.01685221865773201, -0.008927009999752045, 0.0002245046925963834, 0.0355159156024456, -0.007657604292035103, 0.018320612609386444, -0.0022060212213546038, -0.004147869069129229, -0.014025217853486538, -0.004669354762881994, -0.0077742524445056915, 0.011081568896770477, -0.029559999704360962, 0.003633245127275586, -2.176430461986456e-05, -0.02069474384188652, -0.02065357379615307, -0.016701262444257736, 0.01871858909726143, -0.004425765946507454, -0.02419418655335903, -0.013119479641318321, 0.004288532771170139, -0.03966035321354866, 0.026005662977695465, 0.0010138092329725623, 0.013634104281663895, -0.009853333234786987, 0.028187669813632965, -0.03290848806500435, 0.018732311204075813, 0.02595077082514763, 0.01740115135908127, -0.017140408977866173, -0.0030294195748865604, 0.018910715356469154, -0.02267090044915676, 0.014917233027517796, 0.018361782655119896, -0.0007848015520721674, -0.016742432489991188, -0.0018543616170063615, -0.04259714111685753, 0.026362469419836998, -0.004902651067823172, 0.010978644713759422, 0.0019281244603917003, -0.012543100863695145, -0.004868342541158199, -0.0005939617985859513, -0.005564800463616848, 0.0036057985853403807, -0.023343343287706375, 0.013050863519310951, -0.02335706539452076, -0.016179777681827545, -0.024715673178434372, -0.03307316452264786, -0.002502787858247757, 0.0007993825129233301, 0.01889699138700962, -0.0002869028539862484, 0.003928296267986298, -0.0034514113795012236, 0.00896131806075573, 0.026074280962347984, -0.0027995542623102665, -0.0024804873391985893, -0.03181062266230583, 0.03200274705886841, -0.008412386290729046, -0.0169894527643919, 0.0001869800325948745, -0.0012548246886581182, -0.0035955060739070177, 0.014807446859776974, -0.020996656268835068, -0.03985247761011124, 0.020186983048915863, -0.0007745090406388044, 0.016220947727560997, 0.017154131084680557, -0.022547390311956406, -0.0018389229662716389, 0.02917574718594551, 0.00402435939759016, -0.014313407242298126, -0.0005605112528428435, -0.028297455981373787, -0.018663695082068443, 0.011500129476189613, 0.014519257470965385, 0.03414358198642731, 0.004044944420456886, -0.0033879410475492477, -0.052587706595659256, -0.009935673326253891, 0.0019435631111264229, 0.026568319648504257, 0.02667810581624508, -0.007074363995343447, -0.013229266740381718, 0.05437173694372177, 0.005266318563371897, 0.012831290252506733, -0.02155931293964386, 0.004703662823885679, -0.014656489714980125, -0.04034651815891266, 0.0019590018782764673, -0.00022600567899644375, -0.031371474266052246, 0.006467107683420181, -0.030465736985206604, 0.0332927405834198, 0.04284415766596794, 0.02035166136920452, 0.0009100266615860164, -0.0069851623848080635, -0.009935673326253891, -0.004092975985258818, 0.030355950817465782, 0.027309376746416092, -0.014656489714980125, -0.010299340821802616, 0.014189898036420345, 0.017799127846956253, 0.002367270179092884, -0.017936360090970993, 0.017112961038947105, 0.009572005830705166, 0.004315979313105345, -0.0009443349554203451, -0.005828973837196827, -0.016879664734005928, 0.010024874471127987, 0.006782743614166975, 0.03727249801158905, -0.020571235567331314, 0.013771336525678635, 0.02301398292183876, 0.038397807627916336, 0.004154730588197708, 0.0181010402739048, 0.010443435050547123, 0.004267947748303413, -0.02415301650762558, 0.006041685119271278, -0.03471996262669563, -0.01140406634658575, 0.010512052103877068, 0.015630844980478287, 0.0026245820336043835, 0.0007449181866832078, -0.011623639613389969, 0.006312720477581024, -0.013503732159733772, 0.010134660638868809, -0.014752552844583988, -0.014519257470965385, -0.02055751159787178, -0.014107557944953442, 0.0003668839926831424, 0.01709923893213272, 0.015699461102485657, -0.011012952774763107, 0.00789090059697628, 0.022190583869814873, 0.009496527723968029, -0.021778885275125504, 0.003935157787054777, -0.021545588970184326, 0.022396434098482132, 0.014917233027517796, 0.015699461102485657, -0.017812849953770638, -0.006045116111636162, -0.025799814611673355, -0.014697659760713577, 0.024441206827759743, -0.011458960361778736, 0.06757355481386185, 0.027460334822535515, -0.017950084060430527, -0.003127198200672865, -0.007808560971170664, 0.004408611916005611, 0.02339823544025421, -0.002640020800754428, 0.004851188510656357, -0.01928124390542507, 0.02529205195605755, -0.007966378703713417, -0.017222749069333076, -0.005712325684726238, -0.016660092398524284, 0.007973240688443184, -0.004641908220946789, 0.005842697340995073, -0.006062270142138004, 0.014821169897913933, 0.0235354695469141, 0.003911142237484455, 0.023384511470794678, -0.004175315611064434, -0.021710269153118134, -0.00576035724952817, 0.03869972005486488, 0.008590789511799812, -0.005286903586238623, -0.032963380217552185, 0.01100609079003334, -0.014313407242298126, -0.04114247113466263, -0.015973927453160286, -0.0023003690876066685, -0.00109014508780092, -0.00243074051104486, -0.02785830944776535, 0.007191012147814035, 0.009750408120453358, 0.0008002402610145509, 0.012419591657817364, -0.01910284161567688, -0.016083713620901108, 0.027350546792149544, -0.009153444319963455, 0.026211513206362724, -0.01875975914299488, -0.012261773459613323], "164a706a-545d-413a-94e2-1435ca0e56f9": [-0.01158013753592968, -0.01850632019340992, 0.01486528292298317, -0.03780654817819595, -0.011032613925635815, 0.01615196466445923, -0.0232560932636261, -0.012093441560864449, -0.024186883121728897, -0.05617598816752434, 0.01348962914198637, 0.009020461700856686, 0.007206787820905447, -0.010156574659049511, 0.00467106606811285, 0.008247083984315395, 0.014304070733487606, -0.00455471733585, 0.022202108055353165, -0.032687198370695114, -0.009985473938286304, 0.0014218520373106003, -0.025035547092556953, 0.00713150342926383, -0.03520580753684044, 0.006666107568889856, 0.03000432811677456, -0.01084782462567091, -0.00021451829525176436, 0.008952021598815918, 0.015221173875033855, -0.018451567739248276, -0.026199035346508026, -0.015905579552054405, -0.018985403701663017, -0.009971785359084606, 0.012442488223314285, -0.003966128919273615, 0.003387806238606572, -0.01642572693526745, 0.02662336640059948, 0.0025425658095628023, -0.01030714437365532, 0.016576295718550682, 0.005358893424272537, 0.03148264437913895, 0.00415091821923852, -0.01412612572312355, -0.006406033877283335, 0.00025322995497845113, 0.002612717216834426, 0.02733514830470085, -0.008753543719649315, 0.007631119340658188, -0.009725399315357208, 0.006046720780432224, -0.010813604108989239, -0.006145959720015526, 0.007733779959380627, 0.0019967525731772184, 0.015399119816720486, 0.017904043197631836, -0.009451637044548988, 0.00011624196486081928, -0.027581533417105675, -0.032769326120615005, -0.013051609508693218, -0.026021089404821396, -0.002094280207529664, -0.00989650096744299, 0.00961589440703392, 0.03397388011217117, -0.0034203154500573874, -0.0018102520843967795, -0.007206787820905447, -0.01913597248494625, 0.010156574659049511, -0.0012182414066046476, -0.002672602655366063, -0.004766882862895727, 0.004482854623347521, -0.00815811101347208, -0.0021746978163719177, -0.0034767789766192436, 0.015741322189569473, 0.04678594693541527, -0.014180878177285194, -0.0021421886049211025, -0.014933723956346512, 0.01867057755589485, -0.001588675775565207, 0.001916334847919643, 0.005293875001370907, 0.015796074643731117, 0.006313639227300882, 0.007316292729228735, 0.020737480372190475, 0.005646343808621168, 0.0031944618094712496, -0.005393113940954208, -0.03608184680342674, 0.00856875441968441, -0.024214260280132294, -0.016453104093670845, -0.027211954817175865, 0.00792541354894638, 0.027225643396377563, -0.015289614908397198, 0.0005282753263600171, 0.026404356583952904, -0.017917731776833534, 0.029018785804510117, 0.013831831514835358, 0.003918220289051533, -0.01977931335568428, -0.013886583968997002, 0.01545387227088213, -0.03690313547849655, -0.002585340989753604, -0.024008939042687416, 0.02198309823870659, 0.006080941297113895, 0.021832529455423355, -0.015248550102114677, 0.002818038919940591, -0.010012850165367126, 0.010861512273550034, -0.021900970488786697, 0.030497100204229355, 0.00023227004567161202, 0.018711641430854797, 0.026034777984023094, -0.004181716591119766, -0.01704169251024723, -0.027691038325428963, 0.006033032666891813, -0.026281163096427917, 0.0026383823715150356, -0.0010163418482989073, -0.013017388992011547, 0.005482086446136236, 0.03118150681257248, -0.014933723956346512, -0.02040896564722061, 0.0006317916559055448, 0.020655352622270584, -0.008117047138512135, 0.03487729653716087, 0.014728402718901634, -0.0237077996134758, 0.008671415038406849, -0.020107828080654144, -0.018068300560116768, 0.020367901772260666, 0.0019779312424361706, -0.0010497065959498286, -0.011970249004662037, 0.02314658835530281, -0.017794538289308548, -0.02233899012207985, 0.013421188108623028, 0.023269779980182648, 0.0006172480643726885, 0.007665339391678572, 0.008650883100926876, 0.02359829470515251, -9.544245585857425e-06, -0.04448634386062622, -0.0022157621569931507, -0.008541378192603588, 0.00415091821923852, 0.026595991104841232, -0.02169564925134182, 0.019272852689027786, 0.013017388992011547, 0.0015878203557804227, 0.03690313547849655, -0.012716250494122505, -0.013523848727345467, -0.027417276054620743, 0.04330916702747345, -0.005228856578469276, 0.00938319694250822, 0.016179341822862625, -0.04032516106963158, -0.03107200190424919, 0.019916195422410965, 0.0066866399720311165, 0.02034052647650242, -0.0016228960594162345, 0.008527690544724464, -0.0048866537399590015, -0.03991451859474182, -0.02316027507185936, -0.6250537037849426, -0.012374048121273518, 0.02817012183368206, -0.024775471538305283, -0.0026708918157964945, 0.00921209529042244, 0.008958865888416767, 0.00217640888877213, -0.009355820715427399, 0.013688106089830399, 0.01545387227088213, 0.015823449939489365, 0.0019060687627643347, -0.012476708739995956, -0.012113974429666996, -0.010765695944428444, 0.02945680543780327, -0.00290530058555305, -0.005519728641957045, 0.004513652995228767, -0.016891123726963997, 0.03512367978692055, -0.002936098724603653, 0.00264180451631546, 0.012018157169222832, -0.012148194015026093, 0.030223337933421135, -0.0016887701349332929, -0.015631817281246185, 0.016001395881175995, -0.014947411604225636, 0.008760388009250164, 0.023132899776101112, 0.0064539420418441296, 0.04213199019432068, -0.008664571680128574, -0.010245547629892826, 0.019382357597351074, 0.044075701385736465, 0.03972288593649864, -0.015248550102114677, -0.01769872196018696, 0.014057684689760208, 0.026828687638044357, 0.0014834485482424498, 0.003925064578652382, -0.006984356325119734, 0.0034049164969474077, -0.016562609001994133, -0.008075982332229614, -0.0030267825350165367, -0.023310845717787743, 0.00938319694250822, -0.017164885997772217, 0.013838675804436207, 0.01453676912933588, 0.023639358580112457, 0.013229554519057274, 0.006255464628338814, 0.013065297156572342, 0.01531699113547802, 0.006029610987752676, -0.010067601688206196, -0.045992035418748856, -0.053274109959602356, 0.008678259328007698, -0.011107898317277431, -0.0355616994202137, 0.022311612963676453, 0.011867588385939598, 0.005749004427343607, 0.003777917241677642, 0.0036033939104527235, -0.006970668211579323, -0.0012687162961810827, 0.024310076609253883, 0.04547188803553581, -0.0050372229889035225, -0.006289684679359198, 0.019478175789117813, 0.007911724969744682, 0.0008940044208429754, -0.014317759312689304, -0.014605209231376648, 0.033590611070394516, 0.010786227881908417, -0.007528458256274462, -0.0024878133554011583, -0.00026306830113753676, -0.008226552046835423, 0.01604245975613594, 0.009431105107069016, 0.013571756891906261, -0.04213199019432068, 0.02472071908414364, 0.02515873871743679, 0.014304070733487606, 0.0018701375229284167, -0.016179341822862625, -0.01586451567709446, -0.022640127688646317, -0.028197498992085457, 0.0013149137375876307, 0.014605209231376648, 0.03575333207845688, 0.00394217437133193, -0.02233899012207985, -0.005314407404512167, 0.009807527996599674, 0.00026713195256888866, 0.011819679290056229, -0.00614938186481595, -0.016836371272802353, -0.01426300685852766, -0.0024980793241411448, -0.028033241629600525, 0.02050478383898735, -0.013701794669032097, -0.026924505829811096, -0.013407500460743904, 0.002349221147596836, 0.013920804485678673, 0.0013534114696085453, -0.01281206775456667, -0.01632991060614586, 0.03821719437837601, 0.010423492640256882, -0.0015287903370335698, 0.01439988799393177, -0.004304909612983465, 0.011573294177651405, -0.024008939042687416, 0.016370974481105804, -0.021107058972120285, 0.014618897810578346, 0.0009367797756567597, 0.020805921405553818, 0.012777847237884998, 0.012558837421238422, -0.0373411551117897, -0.006320483051240444, -0.005755848716944456, 0.01886221021413803, -0.013701794669032097, -0.0005137317348271608, 0.010895732790231705, -0.01913597248494625, 0.014961100183427334, -0.007555834483355284, -0.014961100183427334, -0.03890159726142883, -0.020217332988977432, 0.003129443386569619, 0.01997094787657261, -0.00046325684525072575, 0.007453173864632845, 0.01778084971010685, -0.04328179359436035, -0.002426216844469309, -0.02879977598786354, -0.018383126705884933, 0.014331446960568428, -0.008856204338371754, 0.004400725942105055, -0.0045752497389912605, -0.01107367780059576, -0.024679655209183693, -0.002682868856936693, -0.0057387384586036205, -0.014646274037659168, -0.0027427542954683304, -0.02452908642590046, 0.024392206221818924, 0.0346309095621109, -0.01316795777529478, 0.019177036359906197, -0.010621970519423485, 0.012285075150430202, -0.005817444995045662, -0.004219358786940575, 0.02945680543780327, 0.022831760346889496, -0.001220808015204966, 0.005242544692009687, 0.02817012183368206, 0.02161351963877678, 0.003425448667258024, 0.011682799085974693, -0.025843145325779915, 0.00738473329693079, -0.0006313638878054917, 0.012326139956712723, -0.004777149297297001, -0.0030935120303183794, -0.015467559918761253, -0.02205153927206993, -0.017712408676743507, -0.02863551862537861, -0.0018598714377731085, 0.034411899745464325, -0.003565751714631915, -0.006269152741879225, -0.018259933218359947, 0.0011318352771922946, 0.020313149318099022, -0.033946502953767776, 0.014701026491820812, -0.009677491150796413, 0.012093441560864449, -0.003103777999058366, -0.0020651931408792734, -0.00651896046474576, -0.0007027987157925963, -0.030497100204229355, 0.004695020616054535, 0.03274194896221161, -0.019382357597351074, 0.019368670880794525, 0.007644807454198599, 0.005068021360784769, 0.0033176548313349485, 0.006440253928303719, 0.033508483320474625, 0.006306794937700033, -0.0019317340338602662, 0.0019197568763047457, -0.006850897334516048, 0.002220895141363144, 0.010450868867337704, -0.02198309823870659, 0.0010283190058544278, 0.0056839860044419765, 0.0027581534814089537, 0.005122773814946413, 0.00911627896130085, 0.017069067806005478, 0.0428437739610672, -0.021832529455423355, 0.025870520621538162, -0.013359591364860535, 0.0024108176585286856, 0.0010052203433588147, 0.03912060707807541, -0.022845448926091194, 0.012654653750360012, 0.018547384068369865, 0.012285075150430202, 0.0007494238088838756, -0.03438452258706093, 0.02817012183368206, -0.0025596758350729942, 0.01631622202694416, -0.006122005637735128, -0.01642572693526745, 0.02634960412979126, -0.014235630631446838, -0.004260423127561808, 0.012326139956712723, 0.019738249480724335, 0.01121740322560072, -0.004616313613951206, 0.02432376518845558, -0.01039611641317606, -0.0028129059355705976, 0.03326209634542465, -0.015056916512548923, -0.00567372003570199, -0.029319923371076584, -0.011053145863115788, -0.0023372441064566374, -0.01399608887732029, -0.02589789777994156, -0.004332285840064287, -0.01467365026473999, -0.019546614959836006, 0.0029942733235657215, -0.0039147986099123955, 0.022174732759594917, 0.0011694775894284248, 0.023091835901141167, -0.01678161881864071, -0.03430239483714104, 0.017808226868510246, -0.008780919946730137, -0.00857559870928526, -0.011025769636034966, -0.02060060016810894, -0.006998044438660145, 0.008753543719649315, 0.01226454321295023, -0.006258886773139238, 0.009684335440397263, -0.014523080550134182, 0.013831831514835358, -0.011915496550500393, 0.02133975736796856, 0.04393881931900978, -0.014030308462679386, -0.000919669633731246, 0.009301068261265755, 0.007069906685501337, 0.009718555025756359, -0.013366435654461384, -0.018383126705884933, 0.040434665977954865, -0.02451539784669876, -0.011087366379797459, -0.007548990659415722, 0.004109853878617287, -0.024282701313495636, 0.017274390906095505, -0.026678118854761124, -0.026869753375649452, 0.007254696451127529, -0.028690271079540253, -0.0025665198918431997, 0.0011617779964581132, 0.008247083984315395, 0.04065367579460144, 0.013530693016946316, -0.008034918457269669, -0.018807457759976387, -0.009013618342578411, 0.0214218869805336, 0.07156141847372055, 0.020586911588907242, -0.017274390906095505, 0.008726167492568493, -0.027663663029670715, -0.004708708729594946, -0.01649416796863079, -0.03181115910410881, 0.023488789796829224, -0.013838675804436207, -0.007904881611466408, 0.0013816432328894734, 0.019984634593129158, 0.0030267825350165367, -0.0038497799541801214, 0.014878971502184868, 0.012818911112844944, -0.019382357597351074, -0.03025071509182453, 0.008726167492568493, -0.004438368603587151, -0.0005415357300080359, 0.04169397056102753, 0.026226410642266273, 0.05029010400176048, 0.030305467545986176, 0.03654724359512329, 0.011190026998519897, 0.013879739679396152, -0.028580766171216965, -0.01303792092949152, -0.0024159506428986788, -0.0011951427441090345, 0.021723024547100067, -0.0037163207307457924, 0.027937425300478935, 0.004154340364038944, -0.035041552037000656, -0.015015852637588978, 0.013941336423158646, -0.00037043436896055937, 0.003468223847448826, 0.010245547629892826, -0.014851595275104046, 0.00021505297627300024, -0.025911584496498108, 0.011511697433888912, 0.030497100204229355, -0.026664430275559425, -0.008089670911431313, 0.005338361486792564, 0.005598435644060373, -0.010656191036105156, 0.022626439109444618, 0.007083594799041748, 0.003437425708398223, -0.02032683789730072, -0.01815042831003666, -0.017274390906095505, -0.04257000982761383, -0.04347342625260353, -0.008445561863481998, -0.016193030402064323, -0.013120049610733986, -0.008602974936366081, -0.007295760791748762, -0.011655422858893871, 0.02844388410449028, -0.025473564863204956, 0.014208254404366016, 0.012818911112844944, -0.041173823177814484, -0.04897604510188103, 0.004404148086905479, 0.037231650203466415, 0.012586213648319244, 0.009766464121639729, 0.007555834483355284, -0.006970668211579323, 0.019834065809845924, 0.001497992081567645, -0.04582777991890907, 0.006378657650202513, -0.021079683676362038, -0.036054473370313644, -0.01778084971010685, 0.0035897057969123125, -0.009786996059119701, -0.011504853144288063, 0.00738473329693079, 0.009458481334149837, -0.023105522617697716, -0.01463258545845747, 0.0018632934661582112, 0.0051193516701459885, 0.03238606080412865, 0.018821146339178085, 0.014988476410508156, 0.018451567739248276, -0.052562326192855835, -0.002025839639827609, -0.003979817032814026, 0.0002703400969039649, -0.024310076609253883, 0.0033039667177945375, -0.002116523450240493, 0.004797681234776974, -0.021476639434695244, 0.012059221975505352, -0.02489866502583027, -0.016453104093670845, -0.010218171402812004, -0.005769536830484867, -0.029128290712833405, 0.00519805820658803, 0.003278301330283284, 0.014482016675174236, 0.026281163096427917, -0.007569522596895695, -0.007234164047986269, 0.0168637465685606, -0.03928486630320549, 0.037970807403326035, 0.0015826872549951077, -0.0043083312921226025, 0.023584606125950813, 0.025021858513355255, -0.023488789796829224, -0.03638298809528351, 0.019081220030784607, 0.0020651931408792734, 0.006625043228268623, -0.005564215127378702, 0.0011780326021835208, -0.03137313947081566, -0.015152733772993088, 0.009882812388241291, 0.004472588654607534, -0.023584606125950813, 0.022462181746959686, -0.018123053014278412, -0.004630001727491617, 0.011128430254757404, -0.004024303052574396, -0.012250854633748531, -0.029128290712833405, -0.021175500005483627, -0.011819679290056229, 0.011737551540136337, 0.03205754607915878, -0.008363433182239532, -0.02352985553443432, -0.022653816267848015, -0.02024470828473568, 0.010683567263185978, -0.004072211682796478, 0.007069906685501337, 0.008904113434255123, 0.051823168992996216, 0.01435882318764925, 0.032960958778858185, 0.01216872688382864, 0.01668580062687397, 0.00594748230651021, -0.0168637465685606, -0.010348208248615265, -0.007569522596895695, -0.0287176463752985, -0.0014911480247974396, 0.004345973953604698, 0.0005945771117694676, 0.003090089885517955, -0.013421188108623028, 0.0033398978412151337, 0.001861582393757999, 0.014345135539770126, 0.0019248899770900607, 0.002308156806975603, -0.035151056945323944, -0.03082561492919922, -0.005707940086722374, 0.02161351963877678, 0.006840630900114775, -0.00462658004835248, -0.02762259915471077, 0.011744394898414612, 0.03427501767873764, -0.01030714437365532, 0.02470703236758709, 0.015919268131256104, 0.04785361886024475, 0.011805991642177105, -0.006505272351205349, 0.012086598202586174, 0.00687827356159687, -0.03361798822879791, -0.0034853341057896614, -0.035151056945323944, -0.012757315300405025, 0.013913960196077824, 0.015467559918761253, 0.024022625759243965, 0.00040593789890408516, -0.004345973953604698, -0.004739506635814905, 0.0022380053997039795, -0.03197541460394859, -0.00033749736030586064, 0.011901807971298695, -0.04037991166114807, 0.00013399372983258218, -0.023269779980182648, -0.008411341346800327, -0.010656191036105156, -0.01585082709789276, -0.0024912352673709393, 0.0013996089110150933, 0.02114812470972538, -0.0364651158452034, -0.007460017688572407, 0.02424163557589054, -0.016535231843590736, 0.03813506290316582, 0.03799818456172943, 0.02671918272972107, 0.009917032904922962, 0.016973251476883888, -0.01103945728391409, -0.02652755007147789, -0.0004465744714252651, -0.025364059954881668, 0.004616313613951206, 0.025117674842476845, -0.009725399315357208, -0.0059303720481693745, 0.0007601176621392369, -0.02232530154287815, 0.007234164047986269, -0.048538025468587875, -0.002020706655457616, 0.0021011242642998695, 0.004746350925415754, -0.049633074551820755, -0.008342900313436985, -0.00467106606811285, 0.021586144343018532, -0.003437425708398223, 0.01263412181288004, 0.00599196832627058, -0.01554968860000372, 0.010019693523645401, 0.018013548105955124, 0.0012575947912409902, 0.015166421420872211, -0.004332285840064287, 0.011142118833959103, 0.015563377179205418, 0.0029788741376250982, -0.025227179750800133, -0.024364829063415527, -0.006895383354276419, 0.02989482320845127, -0.02451539784669876, 0.0012464731698855758, 0.018437879160046577, 0.032769326120615005, -0.009492701850831509, -0.014208254404366016, -0.03016858547925949, 0.027321459725499153, -0.021818840876221657, -0.02435114048421383, 0.01426300685852766, 0.0282522514462471, -0.000937635253649205, -0.018656888976693153, -0.019847754389047623, -0.003692366648465395, 0.01463258545845747, 0.01578238606452942, 0.012990012764930725, -0.020189955830574036, -0.015221173875033855, -0.01713750883936882, 0.007548990659415722, -0.03547957167029381, 0.010498777031898499, 8.212863758672029e-05, 0.013414343819022179, -0.04095481336116791, 0.0011643444886431098, 0.006392345763742924, -0.00815811101347208, -0.006019344553351402, -0.000587305286899209, -0.010491933673620224, -0.012428800575435162, 0.018437879160046577, -0.025021858513355255, 0.02216104418039322, 0.027964800596237183, 0.005030379164963961, -0.03693050891160965, 0.029210418462753296, -0.026883440092206, 0.004510230850428343, 0.01052615325897932, 0.007514770142734051, -0.02762259915471077, -0.008910956792533398, 0.020189955830574036, -0.0018222291255369782, -0.008459249511361122, -0.005242544692009687, 0.0232560932636261, 0.01867057755589485, 0.010971017181873322, -0.010813604108989239, 0.005482086446136236, 0.008602974936366081, -0.015193797647953033, 0.006183601915836334, 0.009068370796740055, -0.017452334985136986, 0.011997625231742859, 0.007104127202183008, 0.00560870161280036, -0.012079753912985325, -0.02652755007147789, -0.029046161100268364, -0.017274390906095505, -0.0029241216834634542, -0.007590055000036955, 0.02168196067214012, -0.006556602660566568, -0.0027478872798383236, -0.013763390481472015, 0.01669948920607567, -0.023557230830192566, 0.009171031415462494, 0.01951923966407776, 0.0036033939104527235, 0.018821146339178085, 0.01894433982670307, -0.020463718101382256, -0.025938961654901505, -0.015891890972852707, -0.026308540254831314, -0.036246106028556824, -0.006009078584611416, 0.02061428874731064, 0.033782247453927994, -0.007473705802112818, -0.02808799408376217, -0.01354438066482544, -0.012880507856607437, -0.04801787808537483, -0.025281932204961777, -0.019751938059926033, 0.0287176463752985, 0.03164689987897873, 0.024926042184233665, -0.0013422899646684527, 0.0287176463752985, -0.009800683706998825, 0.011881276033818722, -0.029840070754289627, 0.0011498009553179145, -0.018109364435076714, -0.02287282608449459, 0.02751309424638748, -0.024186883121728897, -0.05590222403407097, -0.0037676512729376554, 0.0025836301501840353, -0.011333752423524857, 0.013325371779501438, -0.009718555025756359, 0.008500314317643642, 9.918530122376978e-05, 0.004345973953604698, 0.015234862454235554, 0.012682029977440834, 0.030962496995925903, 0.01216188259422779, -0.04084530845284462, 0.008034918457269669, 0.029648438096046448, -0.010423492640256882, 0.0028796354308724403, 0.0008426740532740951, 0.009006774052977562, -0.013824987225234509, 0.009294223971664906, 0.002441616030409932, -0.010772539302706718, -0.01435882318764925, -0.0019146238919347525, 0.004003771115094423, 0.0182325579226017, 0.015289614908397198, 0.036793630570173264, -0.010471400804817677, -0.013236398808658123, -0.007870661094784737, 0.0015424784505739808, 0.016617361456155777, 0.015577064827084541, 0.016179341822862625, -0.023653047159314156, 0.00394217437133193, 0.006525804754346609, 0.009328444488346577, 0.0016947586555033922, -0.011929184198379517, -0.018889587372541428, -0.007548990659415722, -0.012599902227520943, -0.0009863991290330887, 0.009061526507139206, -0.0005847387947142124, -0.0041851382702589035, 0.003201305866241455, -0.01321586687117815, 0.017069067806005478, -0.0025340106803923845, 0.015166421420872211, -0.02751309424638748, -0.018437879160046577, 0.008226552046835423, 0.004263845272362232, -0.03991451859474182, -0.0020959912799298763, 0.022777007892727852, 0.02744465321302414, -0.0016400062013417482, 0.19710873067378998, -0.0005898718372918665, 0.007316292729228735, 0.04131070524454117, 0.007822752930223942, -0.00022350110521074384, 0.014591521583497524, 0.009574830532073975, -0.014783155173063278, -0.0010993260657414794, -0.010957328602671623, 0.0008610674412921071, -0.004055101424455643, -0.004109853878617287, 0.01950555108487606, -0.021572455763816833, -0.031017249450087547, -0.009088902734220028, -0.00063264713389799, 0.006262308452278376, -0.006296528968960047, -0.022188419476151466, -0.023776240646839142, -0.00614938186481595, 0.031126754358410835, -0.001979642314836383, -0.007576366886496544, 0.003555485513061285, 0.015358055010437965, 0.01632991060614586, -0.007856972515583038, 0.006022766698151827, 0.01030714437365532, -0.007288916502147913, -0.022188419476151466, -0.007158879656344652, 0.009588518179953098, -0.007083594799041748, -0.005054333247244358, 0.024050002917647362, -0.0011848766589537263, -0.01125162374228239, 0.01950555108487606, -0.028553389012813568, 0.015891890972852707, -0.0004910607822239399, -0.015932954847812653, 0.023187652230262756, -0.023475103080272675, 0.00542049016803503, -0.0011780326021835208, 0.010334520600736141, 0.008000697940587997, 0.028936656191945076, -0.0020189955830574036, -0.0029514979105442762, -0.002236294327303767, 0.0013944758102297783, -0.024378517642617226, -0.013647042214870453, -0.017726097255945206, 0.006388923618942499, -0.006395767442882061, 0.006409455556422472, -0.025583069771528244, 0.011456944979727268, -0.013558069244027138, 0.03506892919540405, 0.011539073660969734, 0.0067550805397331715, -0.0020275507122278214, -0.005109085701406002, -0.027184579521417618, -0.01267518661916256, -0.020395278930664062, -0.014933723956346512, 0.02634960412979126, 0.006214400287717581, 0.010553529486060143, 0.024227948859333992, 6.705033592879772e-05, -0.01613827794790268, -0.023748863488435745, -0.009287379682064056, 0.003764229128137231, -0.018739016726613045, 0.03862783685326576, -0.03129101172089577, -0.014974787831306458, -0.016193030402064323, -0.007610586937516928, 0.010519309900701046, -0.0029309657402336597, -0.018081989139318466, -0.00017174295498989522, -0.018848521634936333, 0.013653885573148727, 0.02014889195561409, -0.015015852637588978, -0.031400516629219055, -0.018916962668299675, 0.04440421611070633, 0.011532229371368885, 0.015344367362558842, -0.021394509822130203, 0.011970249004662037, 0.003972972743213177, 0.025829456746578217, -0.002234583254903555, -0.006115161348134279, 0.0036855225916951895, -0.0510566346347332, 0.01463258545845747, -0.017534464597702026, 0.00560870161280036, 0.025843145325779915, 0.021545078605413437, -0.013140581548213959, 0.008418185636401176, -0.02069641649723053, 0.018342062830924988, -0.012873663567006588, 0.02771841548383236, 0.008876737207174301, -0.03183853626251221, -0.04002402350306511, -0.011778615415096283, 0.03181115910410881, -0.03427501767873764, -0.026116907596588135, 0.012442488223314285, -0.020176269114017487, 0.01742495968937874, -0.014413575641810894, -0.005485508590936661, 0.011662266217172146, 0.021586144343018532, 0.004441790282726288, -0.017548151314258575, -0.01749339886009693, 0.008383965119719505, 0.007959634065628052, 0.016288846731185913, 0.008808296173810959, 0.010971017181873322, 0.005814023315906525, -0.006648997776210308, -0.009266847744584084, 0.00802122987806797, -0.037970807403326035, 0.003182484768331051, -0.005006425082683563, -5.0261016440344974e-05, -0.004866121802479029, 0.028060616925358772, 0.0005979991401545703, -0.021764088422060013, -0.030195962637662888, 0.005728472489863634, 0.012627278454601765, -0.03780654817819595, -0.0017726097721606493, 0.04136545583605766, 0.010485089384019375, -0.009287379682064056, -0.009314755909144878, -0.17378419637680054, 0.005112507846206427, -0.007993853650987148, -0.009698023088276386, 0.03435714542865753, 0.017438648268580437, -0.00023269779921974987, 0.001452650292776525, -0.003788183443248272, -0.00025237444788217545, 0.03175640478730202, 0.005704518407583237, -0.0043220194056630135, 0.004027725197374821, 0.013537537306547165, 0.000870050280354917, -0.014742090366780758, 0.01585082709789276, 0.04807262867689133, 0.012305607087910175, 0.02040896564722061, -0.04065367579460144, -0.012421956285834312, 0.002441616030409932, 0.02224317193031311, 0.012230322696268559, 0.003593127941712737, 0.018013548105955124, -0.00446916650980711, -0.032331306487321854, 0.0009248026763089001, -0.013407500460743904, 0.02496710605919361, -0.00553683890029788, 0.02023102156817913, 0.011840212158858776, 0.003480201121419668, -0.01039611641317606, -0.013010544702410698, 0.004985892679542303, 0.01575501076877117, 0.014249318279325962, 0.015467559918761253, 0.003733430989086628, 0.01587820239365101, 0.014057684689760208, 0.01545387227088213, -0.010094977915287018, -0.004551295191049576, -0.008349744603037834, 0.03255031630396843, -0.029949575662612915, 0.006847475189715624, -0.00040101874037645757, 0.00816495530307293, -0.0032218380365520716, 0.0010685278102755547, 0.019478175789117813, 0.007035686634480953, -0.01016341894865036, 0.018656888976693153, 0.0013688106555491686, 0.015426496043801308, 0.008863048627972603, -0.006173335947096348, -0.020915426313877106, 0.029128290712833405, 0.0059440601617097855, 0.010546686127781868, 0.0031106220558285713, 0.012449332512915134, 0.013927647843956947, 7.416173320962116e-05, 0.020436342805624008, 0.005068021360784769, 0.00979384034872055, -0.04604678973555565, -6.999113975325599e-05, 0.022749632596969604, -0.0008662004838697612, -0.0014877259964123368, 0.010546686127781868, -0.008123891428112984, -0.006826942786574364, -0.0016357286367565393, 0.0027324880938977003, -0.009054682217538357, 0.004592359531670809, -0.009417417459189892, 0.01408506091684103, 0.028115369379520416, -0.004695020616054535, -0.002682868856936693, 0.008055450394749641, 0.024269012734293938, -0.0064676301553845406, 0.026199035346508026, -0.007336825132369995, 0.02061428874731064, 0.0006818387773819268, 0.009650114923715591, 0.020025700330734253, -0.03345373272895813, 0.011963404715061188, 0.023119211196899414, 0.03208491951227188, 0.008993085473775864, 0.00442468049004674, 0.03547957167029381, -0.016453104093670845, -0.008466093800961971, 0.006132271606475115, 0.02660967782139778, -0.004109853878617287, -0.003774495329707861, 0.023913120850920677, -0.001866715494543314, -0.028580766171216965, 0.018369438126683235, -0.022092603147029877, 0.042515259236097336, -0.03791605308651924, -0.018177805468440056, 0.028307003900408745, 0.0066455756314098835, 0.005601857323199511, -0.11322801560163498, -0.027006633579730988, 0.015481248497962952, 0.01216872688382864, -0.017520776018500328, 0.006642153486609459, -0.0021781199611723423, 0.04675856977701187, -0.025733640417456627, 0.013653885573148727, -0.015645505860447884, -0.026568613946437836, -0.0006390634807758033, -0.009691178798675537, 0.003675256622955203, -0.017534464597702026, -0.0027564424090087414, -0.00815811101347208, -0.010676722973585129, 0.030688734725117683, 0.001015486428514123, -0.018437879160046577, 0.015823449939489365, -0.02934730052947998, -0.015221173875033855, -0.018287310376763344, -0.017260702326893806, 0.0038121375255286694, 0.003788183443248272, 0.007138347253203392, 0.013120049610733986, -0.01357860118150711, 0.021490326151251793, -0.018068300560116768, -0.005071443505585194, -0.015371743589639664, -0.023365598171949387, -0.013120049610733986, 0.007261540275067091, -0.044541098177433014, -0.002872791374102235, 0.011518541723489761, -0.02224317193031311, -0.017561839893460274, -0.003846357809379697, -0.004582093562930822, -0.02024470828473568, 0.026226410642266273, 0.020641664043068886, -0.015577064827084541, -0.012873663567006588, -0.01694587618112564, -0.021079683676362038, -0.016001395881175995, 0.016562609001994133, 0.009266847744584084, 0.027691038325428963, 0.017452334985136986, -0.01760290376842022, 0.014331446960568428, 0.0035725957714021206, 0.0051741041243076324, -0.0019060687627643347, 0.028224874287843704, -0.007336825132369995, 0.0195876806974411, -0.006139115430414677, -0.013907115906476974, -0.009786996059119701, -0.009136810898780823, -0.007548990659415722, 0.009944409132003784, -0.028279626742005348, 0.0014492282643914223, 0.002285913797095418, -0.0024843912106007338, -0.030113833025097847, -0.02287282608449459, 0.02034052647650242, 0.005772958975285292, -0.018342062830924988, -0.005533416755497456, -0.00574558274820447, -0.03244081139564514, 0.041420210152864456, 0.0043904599733650684, 0.010875200852751732, -0.017069067806005478, 0.02744465321302414, -0.02561044692993164, 0.009718555025756359, 0.013359591364860535, 0.008055450394749641, -0.00975277554243803, -0.003103777999058366, 0.023488789796829224, -0.028115369379520416, 0.006139115430414677, 0.022927578538656235, 0.0033210767433047295, -0.022749632596969604, -0.016808994114398956, -0.0364651158452034, 0.018437879160046577, 0.009280536323785782, 0.011874431744217873, 0.007754312362521887, -0.015330678783357143, -0.012415111996233463, -0.0084318732842803, -0.00765849556773901, 0.006282840855419636, -0.019806690514087677, 0.012859975919127464, -0.02398156188428402, -0.02050478383898735, -0.027376212179660797, -0.012962636537849903, 0.0010531286243349314, 0.005300719290971756, 0.0163983516395092, 0.009629582986235619, -0.01257252600044012, -0.004931140225380659, 0.010375584475696087, 0.021640896797180176, 0.006553180981427431, 0.008520846255123615, -0.02654123865067959, 0.04202248528599739, -0.0038942662067711353, -0.013386967591941357, 0.012551993131637573, 0.002568230964243412, -0.006122005637735128, 0.028772398829460144, -0.012606745585799217, -0.03183853626251221, 0.015426496043801308, -0.008602974936366081, 0.0237077996134758, 0.00181196304038167, -0.0168637465685606, -0.011388503946363926, 0.0223526768386364, -0.004866121802479029, -0.010834136046469212, -0.005540261045098305, -0.009465325623750687, -0.020751168951392174, 0.020450031384825706, 0.013386967591941357, 0.03599971905350685, 0.015987707301974297, 0.002468992257490754, -0.04218674451112747, -0.01658998429775238, 0.009937564842402935, 0.01587820239365101, 0.018355749547481537, -0.0009718555375002325, -0.012682029977440834, 0.034138135612010956, 0.012545149773359299, 0.01913597248494625, -0.007234164047986269, -0.003565751714631915, -0.013263775035738945, -0.026281163096427917, -0.012045533396303654, -0.00230302382260561, -0.03383699804544449, 0.011456944979727268, -0.022859137505292892, 0.024214260280132294, 0.024460645392537117, 0.014440951868891716, 0.0006258031353354454, -0.010697254911065102, -0.021818840876221657, -0.01554968860000372, 0.03389175236225128, 0.01669948920607567, -0.010129198431968689, -0.019573992118239403, 0.007692715618759394, 0.029949575662612915, 0.006262308452278376, -0.01622040569782257, 0.021462950855493546, 0.003678678534924984, -0.00174865557346493, -0.007425797637552023, -0.010457713156938553, -0.0186842642724514, 0.016631048172712326, 0.016562609001994133, 0.046539559960365295, -0.013777079060673714, 0.020997554063796997, 0.019108597189188004, 0.03416551277041435, 0.005485508590936661, -0.002455304143950343, 0.0018547383369877934, 0.01463258545845747, -0.030935119837522507, 0.0005744727095589042, -0.017643969506025314, -0.004708708729594946, 0.008821984753012657, 0.03271457552909851, 0.017178572714328766, -0.0017016027122735977, 0.007850129157304764, -0.0024570149835199118, -0.015741322189569473, 0.00687827356159687, -0.009451637044548988, -0.01860213652253151, -0.018807457759976387, -2.5197343347826973e-05, -0.003552063601091504, 0.0004807947261724621, 0.023475103080272675, -0.018068300560116768, 0.019368670880794525, 0.012025001458823681, 0.009650114923715591, -0.011320063844323158, 0.0066318875178694725, -0.021189188584685326, 0.01705538108944893, 0.008185487240552902, 0.014468328095972538, -0.015645505860447884, -0.01263412181288004, -0.020381590351462364, -0.0250629223883152, 0.0023919965606182814, -0.006696905940771103, 0.06822152435779572, 0.028019553050398827, -0.02606215514242649, 0.009266847744584084, -0.009362665005028248, -0.0010591172613203526, 0.03435714542865753, -0.006597667001187801, 0.00526307662948966, -0.024378517642617226, 0.020641664043068886, 0.0023663314059376717, -0.02890928089618683, -0.019368670880794525, -0.006816676817834377, 0.0029121446423232555, 0.012524616904556751, 0.0168774351477623, -0.024830223992466927, 0.012387735769152641, 0.03471303731203079, -0.00947901327162981, 0.03164689987897873, -0.006210978142917156, -0.03610922396183014, -0.01613827794790268, 0.05371212959289551, 0.021312382072210312, -0.006625043228268623, -0.035041552037000656, 0.018027236685156822, -0.0148105314001441, -0.029949575662612915, 0.00032445089891552925, -0.012887352146208286, 0.003273168345913291, -0.0028899013996124268, -0.029648438096046448, -0.011792303062975407, -0.0006360691622830927, -0.011190026998519897, 0.001803408027626574, -0.02132606878876686, -0.008452405221760273, 0.026815000921487808, -0.004513652995228767, 0.014933723956346512, -0.022202108055353165, -0.00893833301961422], "71483569-9d8c-4746-a129-fde439817d02": [-0.017602913081645966, -0.003983066417276859, -0.009093480184674263, -0.026635270565748215, -0.005018731579184532, 0.01216991525143385, -0.018295619636774063, -0.03137556090950966, -0.022777842357754707, -0.059111014008522034, 0.023905189707875252, 0.003494096687063575, 0.0019949288107454777, -0.004468640778213739, 0.0056571089662611485, 0.01807829923927784, 0.02072688564658165, 0.00804083701223135, 0.015035821124911308, -0.01828203722834587, -0.018947578966617584, -0.002787807025015354, -0.017643660306930542, 0.006057792343199253, -0.03430937975645065, 0.007137600798159838, 0.028387412428855896, -0.01704603061079979, -0.0098473085090518, 0.014927160926163197, 0.01691020466387272, -0.008414355106651783, -0.017453504726290703, -0.01304598618298769, -0.017779484391212463, 0.009147809818387032, 0.014682676643133163, 0.0028353456873446703, -0.011769231408834457, -0.00988126453012228, 0.020170003175735474, 0.00765373557806015, -0.005949132610112429, 0.012129167094826698, 0.0013684362638741732, 0.0331956148147583, 0.009820143692195415, -0.013473833911120892, -0.0018726864363998175, 0.009826934896409512, -0.0055314707569777966, 0.02435341291129589, -0.012264992110431194, 0.0014983188593760133, -0.015810023993253708, 0.0020203960593789816, 0.006027231924235821, 0.009215722791850567, 0.012760753743350506, 0.016054507344961166, 0.009867682121694088, 0.007273425813764334, -0.015660615637898445, 0.0008098562248051167, -0.015416131354868412, -0.031810201704502106, -0.015742110088467598, -0.023144571110606194, -0.013575702905654907, -0.0033888323232531548, 0.006224177777767181, 0.03341293707489967, -0.0014550246996805072, -0.004370167385786772, -0.008753917180001736, -0.016027342528104782, -0.0020305828657001257, -0.00845510233193636, -0.004359980579465628, -0.015239558182656765, 0.013575702905654907, -0.00739566795527935, -0.014899996109306812, -0.008740334771573544, 0.013494208455085754, 0.04615331441164017, 0.005983088631182909, -0.0019049447728320956, -0.018051134422421455, -0.011198766529560089, -0.0020832151640206575, 0.016747215762734413, 0.021012118086218834, 0.02117510885000229, 0.0017334658186882734, 0.004380354192107916, 0.022696347907185555, 0.008122331462800503, 0.010417773388326168, -0.0071851396933197975, -0.016489148139953613, -0.002480502938851714, -0.004536553286015987, -0.014927160926163197, -0.036971550434827805, 0.002555206650868058, 0.019653869792819023, -0.008264947682619095, 0.003507679095491767, 0.014804918318986893, -0.005894802510738373, 0.02836024761199951, -0.008013671264052391, -0.001237704767845571, -0.01912415213882923, -0.012298948131501675, 0.03142989054322243, -0.03042478673160076, -0.0033175242133438587, -0.03341293707489967, 0.015117316506803036, 0.0033175242133438587, 0.03979671001434326, -0.032054685056209564, 0.00044610004988498986, -0.008794665336608887, -0.0053854589350521564, -0.003626525867730379, 0.01439744420349598, -0.009697901085019112, 0.040774647146463394, 0.020903458818793297, 0.013616450130939484, -0.003324315417557955, -0.036401085555553436, 0.014574016444385052, -0.027463803067803383, 0.01062830165028572, -0.003497492289170623, -0.023280395194888115, 0.017399175092577934, 0.028957877308130264, -0.0006927071954123676, -0.026200631633400917, 0.008421146310865879, 0.02091704122722149, -0.016815127804875374, 0.03235350176692009, 0.017086777836084366, -0.018648764118552208, 0.012020507827401161, -0.011035776697099209, -0.012638511136174202, 0.011551911011338234, 0.022356785833835602, -0.010641884058713913, -0.013602867722511292, 0.028251588344573975, -0.013127480633556843, -0.014832084067165852, -0.0008514525834470987, 0.01730409823358059, -0.0006349816103465855, -0.011198766529560089, 0.01957237347960472, 0.030506283044815063, 0.004220759961754084, -0.03295113146305084, -0.01265888474881649, -0.011253096163272858, 0.00489309336990118, 0.03229917213320732, -0.017086777836084366, 0.014329531230032444, 0.01576927676796913, -0.0035925698466598988, 0.028197258710861206, -0.01595943048596382, -0.009582449682056904, -0.016543477773666382, 0.027273649349808693, 0.00044058216735720634, 0.005775955505669117, 0.04139944165945053, -0.02855040319263935, -0.031484220176935196, 0.02299516275525093, 0.004050978925079107, 0.009174974635243416, -0.006553553510457277, 0.01964028738439083, 0.011762440204620361, -0.026309290900826454, -0.0006180034833960235, -0.6197963953018188, 0.0001397511368850246, 0.029881486669182777, -0.031620047986507416, 0.008346443064510822, 0.009507746435701847, 0.011626615189015865, 0.008129122667014599, -0.007952550426125526, 0.026173466816544533, 0.0008922000997699797, 0.012903369963169098, -0.014071464538574219, -0.007368503138422966, -0.026390787214040756, -0.03403773158788681, 0.019341472536325455, 0.008027253672480583, -0.009385503828525543, 0.015796441584825516, -0.005840472411364317, 0.019355054944753647, 0.008095166645944118, -0.00430904608219862, 0.012427981942892075, -0.01191184762865305, 0.018648764118552208, -0.006376981269568205, -0.010845622047781944, 0.03224484249949455, -0.03398340195417404, 0.009113853797316551, 0.005837076809257269, -0.00666560884565115, 0.04446908459067345, -0.004733499139547348, -0.018499357625842094, 0.010112167336046696, 0.014750588685274124, 0.038981758058071136, -0.020713303238153458, -0.010030671954154968, 0.01731768064200878, 0.012251409702003002, -0.004991566762328148, 0.0005097679677419364, -0.012590971775352955, 0.012081628665328026, -0.010370234027504921, -0.014777753502130508, -0.003332804422825575, -0.021867815405130386, 0.006159661337733269, 0.003908362705260515, 0.018390696495771408, 0.00723267812281847, 0.033086955547332764, -0.003327711019665003, 0.006057792343199253, 0.009765813127160072, 0.01878459006547928, 0.02925669215619564, -0.020441653206944466, -0.05394966900348663, -0.05109734460711479, 0.018933996558189392, -0.036265261471271515, -0.0276947058737278, 0.017602913081645966, 0.005073061678558588, -0.0019558791536837816, -0.0043463981710374355, -0.00443807989358902, -0.0019847420044243336, -0.01697811856865883, 0.023715034127235413, 0.038519952446222305, 0.0031800013966858387, -0.001220726640895009, 0.02220737747848034, 0.00502212718129158, 0.003361667273566127, 0.005857450887560844, -0.025154778733849525, 0.050336722284555435, 0.003731790231540799, -0.034010566771030426, -0.01168773602694273, -0.011110479943454266, -0.009541702456772327, 0.01216991525143385, 0.0051172045059502125, -0.005205491092056036, -0.027205735445022583, 0.024570731446146965, 0.02990865334868431, 0.014750588685274124, -0.004529761616140604, 0.010703005827963352, -0.020686138421297073, -0.029039373621344566, -0.04305650666356087, 0.00521567789837718, 0.02409534528851509, 0.021066447719931602, 0.014438191428780556, -0.03466252610087395, -0.010879578068852425, 0.021270185708999634, -0.007083270698785782, 0.0002924480941146612, -0.006305673159658909, -0.024489236995577812, -0.0093311732634902, 0.004057770129293203, -0.02719215303659439, 0.022560523822903633, 0.001241949270479381, -0.005212282296270132, -0.015592703595757484, -0.024896711111068726, 0.00878787413239479, 0.0015356707153841853, -0.01743992231786251, -0.0019626703578978777, 0.024041015654802322, 0.00820382684469223, 0.010988238267600536, 0.004787829238921404, 0.011151228100061417, 0.0153074711561203, -0.008149496279656887, 0.01439744420349598, -0.003653690917417407, 0.013901682570576668, -0.003830263391137123, 0.022125883027911186, -0.0019355054246261716, 0.022574106231331825, -0.028251588344573975, 0.0153074711561203, -0.006590905133634806, 0.007171556819230318, -0.0226148534566164, 0.001277603325434029, -0.00489309336990118, -0.015171646140515804, 0.019939102232456207, -0.00804083701223135, -0.0155655387789011, -0.031674377620220184, -0.02893071249127388, 0.009534911252558231, 0.03382040932774544, -0.009969551116228104, -0.005874428898096085, -0.003850637236610055, -0.023864442482590675, -0.00043379090493544936, -0.021039282903075218, -0.008230991661548615, 0.01007821038365364, -0.01826845481991768, 0.00204076967202127, -0.008142705075442791, -0.004675773438066244, -0.029664168134331703, 0.016000177711248398, -0.008387190289795399, -0.014451773837208748, -0.006801433861255646, -0.01481850165873766, 0.01210879348218441, 0.034771185368299484, -0.02203080616891384, 0.011925430037081242, -0.015375383198261261, 0.009487371891736984, 0.0010959375649690628, -8.457224612357095e-05, 0.02480163425207138, 0.023918772116303444, -0.002298837061971426, -0.009779395535588264, 0.031239736825227737, 0.01114443689584732, 0.011443251743912697, 0.015714945271611214, -0.046071819961071014, -0.0055925920605659485, -3.289510277681984e-05, 0.0020034178160130978, -0.023538462817668915, -0.00862488429993391, -0.02033299393951893, 0.0026689600199460983, -0.010254783555865288, -0.004560322500765324, -0.010703005827963352, 0.026173466816544533, 0.021786320954561234, 0.011090106330811977, -0.023158153519034386, -0.009446624666452408, 0.02040090598165989, -0.026947667822241783, 0.004553531296551228, -0.010832039639353752, 0.01821412518620491, 0.0005496665835380554, -0.0048591373488307, -0.010750544257462025, -0.00018357590306550264, -0.020183585584163666, -0.0042105731554329395, 0.008774291723966599, -0.009602823294699192, 0.012068046256899834, -0.002555206650868058, 0.006387168075889349, 0.009419459849596024, 0.012176706455647945, 0.016489148139953613, 0.02246544510126114, 0.016027342528104782, 0.01563345082104206, -0.008556971326470375, 0.002568789292126894, 0.010648675262928009, -0.030506283044815063, -0.013304052874445915, 0.013854144141077995, 0.0014762473292648792, -0.010499267838895321, 0.016624972224235535, 0.02898504212498665, 0.05378667637705803, -0.01632615737617016, 0.03634675592184067, -0.01017328817397356, 0.0027283835224807262, 0.004268298856914043, 0.02151467092335224, -0.030777931213378906, 0.031103912740945816, -0.003745372872799635, 0.01737201027572155, -0.006234365049749613, -0.019450131803750992, 0.029229527339339256, 0.00715118320658803, 0.01316822785884142, -0.00878787413239479, -0.008468684740364552, 0.030180301517248154, -0.010438147000968456, 0.006461871787905693, 0.004241134040057659, 0.024706557393074036, 0.02041448839008808, -0.020061343908309937, 0.009860890917479992, -0.00221903994679451, 0.006937258876860142, 0.008169869892299175, -0.0147913359105587, -0.0058642420917749405, -0.024041015654802322, -0.015973012894392014, -0.008686005137860775, -0.0014966210583224893, -0.03047911636531353, 0.005137578584253788, -0.013657198287546635, -0.009983133524656296, -0.004020418506115675, 0.00221055094152689, 0.008427937515079975, -0.015239558182656765, 0.0235656276345253, -0.007796351797878742, -0.03493417426943779, 0.02550792507827282, 0.009120645001530647, -0.002784411422908306, 0.006030627526342869, -0.0065773227252066135, -0.006349815987050533, 0.01249589491635561, 0.0238236952573061, -0.012163124047219753, 0.007253051735460758, -0.009772604331374168, 0.015674198046326637, -0.004200386349111795, 0.0071851396933197975, 0.033548761159181595, -0.017154689878225327, -0.0018591039115563035, 0.006125704851001501, -0.0003783997963182628, 0.0009388899197801948, -0.01852652244269848, -0.02306307479739189, 0.03566763177514076, -0.009616405703127384, -0.017344845458865166, -0.018716678023338318, 0.013195393607020378, -0.020971370860934258, 0.010865995660424232, -0.027749035507440567, -0.01962670497596264, -0.018105464056134224, -0.028387412428855896, -0.0008947468013502657, 0.00515116099268198, -0.014315948821604252, 0.024326248094439507, 0.010696214623749256, -0.01879817247390747, -0.016760798171162605, 0.006961028091609478, 0.02266918309032917, 0.05949132516980171, 0.006869346369057894, -0.021745573729276657, 0.020835546776652336, -0.022316038608551025, 0.002179990289732814, -0.03803098574280739, -0.029718497768044472, 0.019653869792819023, -0.003606152255088091, -0.013949221931397915, -0.0027063118759542704, 0.019463714212179184, -0.0008034894126467407, 0.013100315816700459, -0.0015568934613838792, 0.016584224998950958, -0.01329726167023182, -0.02170482650399208, 0.007449998054653406, -0.020971370860934258, 0.0007644397555850446, 0.030832262709736824, 0.003431277582421899, 0.04158959910273552, 0.03517866134643555, 0.027287231758236885, -0.003711416618898511, 0.016937369480729103, -0.018648764118552208, -0.013989969156682491, 0.001234309165738523, -0.005270007997751236, 0.010404190979897976, -0.003599361050873995, 0.03550463914871216, 0.015864353626966476, -0.022519774734973907, -0.03194602578878403, 0.01298486441373825, 0.008556971326470375, 0.019599540159106255, 0.005303964018821716, -0.012536642141640186, 0.008509432896971703, -0.0373246930539608, -0.0032496117055416107, 0.03460819646716118, -0.005585800856351852, 0.0005747092654928565, -0.007721648085862398, 0.019545208662748337, 0.006872741971164942, 0.02383727766573429, -0.0032394248992204666, -0.0017037541838362813, -0.014193706214427948, -0.013575702905654907, -0.013480625115334988, -0.034200720489025116, -0.02564374916255474, -0.011572285555303097, -0.003908362705260515, -0.013025611639022827, -0.0227914247661829, -0.027463803067803383, -0.015022238716483116, 0.009147809818387032, -0.017860980704426765, 0.010186870582401752, 0.010370234027504921, -0.0435183122754097, -0.03170154243707657, -0.0035925698466598988, 0.028333082795143127, 0.01587793603539467, 0.005826890002936125, 0.00942625105381012, -0.0008879555389285088, 0.011049359105527401, -0.00978618673980236, -0.03485267981886864, 0.008835412561893463, -0.020618226379156113, -0.006285299081355333, -0.030125971883535385, -0.013229349628090858, 0.006091748829931021, -0.012923743575811386, 0.021324515342712402, -0.0014422910753637552, -0.030832262709736824, -0.014574016444385052, -0.010329486802220345, 0.0056672957725822926, 0.020821964368224144, 0.012054463848471642, 0.0101053761318326, 0.02428549900650978, -0.033168449997901917, 0.008285321295261383, -0.017670825123786926, -0.006105331238359213, -0.03520582616329193, 0.020129255950450897, 0.014682676643133163, 0.0046825651079416275, -0.008781082928180695, 0.00913422740995884, -0.028441743925213814, -0.016652138903737068, -0.006237760651856661, -0.01353495568037033, -0.019355054944753647, 0.01514448132365942, -0.006896511651575565, 0.014071464538574219, 0.03338577225804329, 0.0101053761318326, -0.02311740443110466, 0.009922011755406857, -0.02706991136074066, 0.04150810092687607, -0.0033463870640844107, 0.0020288850646466017, 0.014696259051561356, 0.00673012575134635, -0.03669989854097366, -0.04308367148041725, -0.003911758307367563, 0.005127391777932644, -0.00217829248867929, -0.007646944373846054, -0.0019864398054778576, -0.02194930985569954, -0.026105554774403572, 0.008258156478404999, 0.010390608571469784, -0.004668982233852148, 0.006363398395478725, -0.03178303688764572, 0.004740290343761444, 0.008339651860296726, -0.0008064606226980686, -0.02660810574889183, -0.026771096512675285, -0.0257116612046957, -0.02395951934158802, 0.009215722791850567, 0.024652227759361267, -0.006081562023609877, -0.013290470466017723, -0.03721603378653526, -0.023524880409240723, 0.0008276832522824407, -0.014275201596319675, -0.006078166421502829, 0.009324382059276104, 0.04876115545630455, 0.017290515825152397, 0.02544001117348671, 0.02079479955136776, 0.03015313670039177, 0.004336211364716291, -0.008115540258586407, 0.002709707710891962, -0.003840450197458267, -0.0321633480489254, -0.011545119807124138, 0.011585867963731289, -0.0017063008854165673, 0.004064561333507299, -0.006363398395478725, 0.007823516614735126, -0.004224155563861132, 0.002855719532817602, 0.00010812938853632659, -0.00258406950160861, -0.023158153519034386, -0.036455415189266205, 0.0015900006983429193, 0.012638511136174202, -0.00739566795527935, -0.013276888057589531, -0.025494342669844627, 0.006472058594226837, 0.028007103130221367, -0.02654019370675087, 0.0235656276345253, 0.018703093752264977, 0.03297829627990723, 0.014003551565110683, 0.004424497485160828, 0.004417706280946732, 0.01859443448483944, -0.02272351272404194, -0.006818412337452173, -0.03708020970225334, -0.024068180471658707, 0.006448289379477501, 0.018675928935408592, 0.02416325733065605, -0.00920893158763647, -0.0017657242715358734, 0.012733587995171547, -0.00251955259591341, -0.024842381477355957, -0.003514470299705863, 0.0006689378642477095, -0.020889876410365105, 0.008964446373283863, -0.02822442352771759, 0.005942341405898333, 0.008509432896971703, -0.004431288689374924, 0.006733521353453398, 0.0009898243006318808, 0.012414399534463882, -0.030207468196749687, -0.012781127355992794, 0.017602913081645966, -0.032706644386053085, 0.04158959910273552, 0.03221767768263817, 0.006475454196333885, 0.014343113638460636, 0.012597763910889626, -0.018132630735635757, -0.023715034127235413, -0.005419415421783924, -0.01685587503015995, 0.023008745163679123, 0.03262514993548393, -0.006784455850720406, -0.01114443689584732, 0.00679464265704155, -0.01938221976161003, -0.01814621314406395, -0.04034000635147095, -0.0019270164193585515, 0.007035732269287109, -0.0010280250571668148, -0.03789515793323517, -0.008828621357679367, -0.02144675888121128, 0.009799770079553127, -0.007667317986488342, 0.015728527680039406, -0.0030509678181260824, -0.008278530091047287, 0.007558658253401518, 0.020428070798516273, -0.003534844145178795, 0.015660615637898445, 0.01514448132365942, -0.0030288961715996265, 0.0017844001995399594, -0.017154689878225327, 0.005120600573718548, 0.0043430025689303875, 0.010023880749940872, 0.028387412428855896, -0.01782023161649704, -0.0009388899197801948, 0.023402636870741844, 0.01216991525143385, -0.011986550875008106, -0.0043430025689303875, -0.020686138421297073, 0.030017312616109848, -0.012020507827401161, -0.012353278696537018, 0.008129122667014599, 0.012224244885146618, 0.011110479943454266, -0.02144675888121128, -0.028496073558926582, -0.01363003347069025, -0.001207144232466817, 0.01350099965929985, 0.00487611535936594, -0.0059321545995771885, -0.0225333571434021, -0.0006978006567806005, -0.00550770154222846, -0.012815083377063274, -0.0019389010267332196, 0.002555206650868058, 0.010085001587867737, -0.030696436762809753, 0.010356651619076729, -0.010784500278532505, -0.011171601712703705, -0.005263216327875853, -0.002334491116926074, -0.009833726100623608, 0.015592703595757484, 0.03221767768263817, -0.013731901533901691, 0.01081166509538889, 0.03623809292912483, 0.015973012894392014, -0.04047583416104317, 0.022003641352057457, -0.021080031991004944, 0.001258927397429943, 0.0030730392318218946, -0.004251320846378803, -0.017344845458865166, -0.02416325733065605, 0.017018865793943405, 0.007090061902999878, 0.007300590630620718, -0.0030221049673855305, 0.022492609918117523, 0.026064805686473846, 0.01081166509538889, -0.011932221241295338, 0.0034210907761007547, -0.001280999043956399, -0.006129100453108549, 0.011137645691633224, 0.0029592858627438545, -0.007993297651410103, 0.009670736268162727, 0.0002661320031620562, 0.007225886918604374, -0.01285583060234785, -0.05283590406179428, -0.01285583060234785, -0.02093062363564968, 0.014329531230032444, 0.018635181710124016, 0.01964028738439083, -0.0049236542545259, -0.02040090598165989, -0.030533447861671448, 0.029745662584900856, -0.01807829923927784, -0.0031681167893111706, 0.033494431525468826, -0.007293799426406622, 0.009922011755406857, 0.03080509789288044, -0.0196946170181036, -0.02789844386279583, -0.02563016675412655, -0.013426295481622219, -0.037161704152822495, 0.003782724728807807, 0.01575569249689579, 0.04482223093509674, -0.005270007997751236, -0.02409534528851509, -0.051504816859960556, -0.009500954300165176, -0.04707692563533783, -0.008230991661548615, -0.03191886097192764, 0.026621688157320023, 0.035993609577417374, 0.02531776949763298, -0.009222513996064663, 0.021528253331780434, -0.012930534780025482, 0.0008972935029305518, -0.043952953070402145, -0.0002659197780303657, -0.018893249332904816, 0.0006901604938320816, 0.025100449100136757, -0.0311310775578022, -0.051939457654953, -0.0031884906347841024, -0.0028693019412457943, -0.009888055734336376, -0.0021188692189753056, -0.0009117249283008277, 0.015388965606689453, 0.010057836771011353, -0.0006426217732951045, 0.003891384694725275, 0.02609197236597538, 0.025304187089204788, 0.012991655617952347, -0.035423144698143005, 0.0028387412894517183, 0.023022327572107315, -0.013324426487088203, -0.002857417333871126, 0.018295619636774063, 0.01756216585636139, -0.02950117737054825, 0.0008854088373482227, 0.008183453232049942, -0.015416131354868412, -0.00862488429993391, 0.00765373557806015, 0.007178348023444414, 0.012835456989705563, 0.001147720729932189, 0.03281530737876892, -0.00710364431142807, -0.008224200457334518, -0.002488992176949978, 0.01291695237159729, 0.013568911701440811, 0.013405921868979931, 0.031103912740945816, -0.022098718211054802, -0.0007580729434266686, -0.0047946204431355, 0.012244618497788906, -0.0031969796400517225, -0.022125883027911186, -0.009568867273628712, -0.016842292621731758, -0.01672005094587803, -0.01801038719713688, 0.014411026611924171, -0.007511119358241558, 0.00874712597578764, -0.004363376181572676, -0.01278791856020689, 0.010383816435933113, -0.019613122567534447, 0.009629988111555576, -0.022628435865044594, -0.024883128702640533, 0.0028777909465134144, 0.015225975774228573, -0.03324994444847107, 0.0034465580247342587, 0.018961161375045776, 0.010003507137298584, 0.013446669094264507, 0.20286813378334045, 0.018105464056134224, 0.009670736268162727, 0.03770500421524048, 0.009854099713265896, 0.0010254783555865288, 0.0184042789041996, 0.006383772473782301, -0.004855741746723652, 0.0006774269277229905, -0.0009304008563049138, -0.0029711707029491663, -0.006879533175379038, -0.002112077781930566, 0.019015492871403694, -0.020645391196012497, -0.02241111546754837, -0.014030716381967068, -0.017018865793943405, 0.0020577479153871536, 0.004166430328041315, -0.0016876249574124813, -0.020305829122662544, 0.0010517943883314729, 0.02383727766573429, 0.001207993132993579, -0.02939251810312271, 0.006054396741092205, 0.027042746543884277, 0.007579031866043806, -0.01613600365817547, 0.006587509531527758, 0.02299516275525093, -0.008543388918042183, -0.02357921004295349, -0.00952132884413004, 0.021012118086218834, -0.006699565332382917, -0.016353322193026543, 0.03151138499379158, 0.00017858858336694539, -0.019164899364113808, -0.0006506863865070045, -0.025942564010620117, 0.015619868412613869, -0.006376981269568205, -0.013236140832304955, 0.016040924936532974, -0.02442132495343685, 0.012129167094826698, -0.007565449457615614, -0.0027674331795424223, 0.014343113638460636, 0.03564046323299408, 0.00027271101134829223, 0.003400716930627823, -0.005035709589719772, -0.014152958989143372, -0.02213946543633938, -0.017589330673217773, -0.010356651619076729, 0.009888055734336376, -0.008122331462800503, 0.015266723930835724, -0.035423144698143005, 0.011884682811796665, -0.023212483152747154, 0.026784678921103477, 0.0017139409901574254, 0.010410982184112072, -0.006495827808976173, 0.001354853855445981, -0.048462338745594025, -0.00422755116596818, -0.017860980704426765, -0.014234454371035099, 0.022560523822903633, 0.015198810957372189, 0.01794247515499592, 0.013263305649161339, -0.0039389231242239475, 0.002078121528029442, -0.02808859758079052, -0.02241111546754837, 0.011191975325345993, -0.028142929077148438, 0.02841457724571228, -0.018363531678915024, 0.004716521129012108, -0.034390874207019806, 0.0002582796150818467, 0.01521239336580038, -0.00988126453012228, -0.011742066591978073, 0.015429713763296604, 0.0008404168183915317, 0.001305617275647819, 0.02712424099445343, -0.016366906464099884, -0.024557149037718773, -0.018879666924476624, 0.057318124920129776, -0.0020713303238153458, 0.016638554632663727, -0.012679258361458778, 0.023076657205820084, -0.0028489280957728624, 0.03297829627990723, 0.003404112532734871, 0.006230969447642565, -0.004254716448485851, -0.0276947058737278, 0.016258245334029198, -0.004118891432881355, 0.014152958989143372, 0.013412713073194027, 0.014451773837208748, -0.016068091616034508, 0.0005717381136491895, -0.024000266566872597, 0.024054598063230515, 0.010275157168507576, 0.01594584807753563, 0.01659780740737915, -0.045691512525081635, -0.02977282740175724, -0.020767632871866226, 0.03403773158788681, -0.04664228484034538, -0.04216006398200989, 0.022709930315613747, -0.012421190738677979, 0.023226065561175346, -0.0189204141497612, -0.009643570519983768, 0.0009745439747348428, 0.01697811856865883, -0.001088297343812883, -0.016611389815807343, -0.012394025921821594, 0.015008656308054924, 0.005422811023890972, 0.01007821038365364, 0.0019134338945150375, -0.0017827023984864354, -0.010635092854499817, 0.0020662369206547737, -0.0058031207881867886, -0.009854099713265896, -0.034526702016592026, 0.01420728862285614, 0.0027759221848100424, 0.00710364431142807, -0.0067029609344899654, 0.04520254209637642, -0.0029185384046286345, -0.02732797898352146, -0.01931430771946907, 0.01379302330315113, 0.018933996558189392, -0.029609836637973785, -0.012020507827401161, 0.04829934984445572, 0.004193595144897699, -0.024068180471658707, -0.01898832619190216, -0.17244334518909454, 0.01742633990943432, 0.00242107966914773, -0.008339651860296726, 0.016964536160230637, 0.009962759912014008, 0.00794575922191143, 0.009928802959620953, 0.00494063226506114, -0.004193595144897699, 0.012047672644257545, -0.01026836596429348, -0.013229349628090858, 0.0007703821174800396, 0.012882995419204235, -0.010927116498351097, -0.015619868412613869, 0.019993431866168976, 0.06046926602721214, 5.952952415100299e-05, 0.016108838841319084, -0.02531776949763298, -0.007558658253401518, 0.01439744420349598, 0.015728527680039406, 0.011205557733774185, 0.0028693019412457943, 0.02351129800081253, -0.009358339011669159, -0.030723601579666138, -0.0010416075820103288, -0.015348218381404877, 0.01691020466387272, -0.00016978118219412863, 0.01964028738439083, 0.009704692289233208, 0.006899907253682613, 0.003670669160783291, -0.002516156993806362, 0.012828665785491467, 0.023742200806736946, 0.00706968829035759, 0.007422833237797022, 0.01262492872774601, 0.001228366862051189, 0.018567269667983055, 0.011402503587305546, -0.004974588751792908, 0.004828576929867268, -0.020699720829725266, 0.03846562281250954, -0.019219228997826576, 0.010288739576935768, -0.001263172016479075, 0.020509567111730576, -0.007843890227377415, -0.00015715369954705238, 0.015416131354868412, -0.012081628665328026, -0.01633973978459835, 0.0014261618489399552, -0.0057929339818656445, 0.011205557733774185, 0.0052598207257688046, -0.007959341630339622, -0.02836024761199951, 0.01262492872774601, -0.001337875728495419, 0.01834994927048683, 0.004658795427531004, 0.011456834152340889, 0.011714901775121689, 0.004916863050311804, 0.0147913359105587, 0.018961161375045776, 0.0032716833520680666, -0.04389861971139908, -0.007382085546851158, 0.02473372220993042, 0.006455080583691597, 0.01659780740737915, 0.012808292172849178, 0.0010229316540062428, -0.002404101425781846, -0.015484043397009373, 0.012869413010776043, -0.006791247054934502, 0.004061165731400251, -0.009983133524656296, 0.018499357625842094, 0.015796441584825516, -0.009772604331374168, 0.002110379980877042, 0.0071851396933197975, 0.025277022272348404, 0.012305740267038345, 0.0404215045273304, 0.0016689490294083953, 0.004285276867449284, -0.006882928777486086, 0.014057881198823452, 0.011341382749378681, -0.035749126225709915, 0.004217364359647036, 0.036075104027986526, 0.03449953719973564, -0.002414288464933634, 0.0005976297543384135, 0.03794948756694794, -0.0067810602486133575, -0.01828203722834587, 0.018580852076411247, 0.022940833121538162, 0.015375383198261261, -0.00251106359064579, 0.03382040932774544, -0.005263216327875853, -0.031484220176935196, -0.001287790248170495, 0.001166396657936275, 0.04338248819112778, -0.03468969091773033, -0.014180123805999756, 0.008054419420659542, 2.1249175915727392e-05, 0.006967819761484861, -0.10404190421104431, -0.020876294001936913, 0.03365742042660713, 0.030587777495384216, -0.01256380695849657, 0.014913578517735004, -0.001201201812364161, 0.03873727470636368, -0.015239558182656765, 0.0238236952573061, -0.014248036779463291, -0.013922056183218956, 0.0006392261129803956, 0.003989857621490955, 0.0017063008854165673, 0.009215722791850567, -0.009025567211210728, -0.009018776006996632, -0.0005815005279146135, 0.02906653843820095, 0.012842248193919659, -0.013202184811234474, 0.014804918318986893, -0.022370368242263794, -0.027287231758236885, -0.019137734547257423, -0.020971370860934258, 0.007599405478686094, 0.010648675262928009, -0.0009932199027389288, 0.011531537398695946, -0.015416131354868412, 0.02841457724571228, -0.006495827808976173, -0.024747304618358612, -0.006669004913419485, -0.006451684981584549, -0.026200631633400917, 0.012604555115103722, -0.04444191977381706, -0.007382085546851158, 0.004020418506115675, -0.01285583060234785, -0.04036717116832733, 0.00523265590891242, -0.0008047627634368837, -0.007884638383984566, 0.033304277807474136, 0.021012118086218834, -0.012577389366924763, -0.0027725265827029943, -0.016869457438588142, -0.021664079278707504, -0.03520582616329193, 0.027925608679652214, 0.010879578068852425, 0.0257116612046957, 0.012027299031615257, -0.007796351797878742, 0.011246304959058762, 0.0006842181319370866, -0.011755649000406265, -0.0018658951157703996, 0.021650495007634163, 0.004726707935333252, 0.017670825123786926, 0.0042037819512188435, -0.006804829463362694, -0.006920280866324902, -0.0002741966163739562, -0.0017589330673217773, 0.010444938205182552, -0.03357592597603798, 0.012577389366924763, -0.0021731990855187178, -0.0050458963960409164, -0.010492476634681225, -0.024136092513799667, 0.01841786317527294, 0.010166496969759464, -0.022044388577342033, -0.006343024782836437, 0.0027691309805959463, -0.03259798511862755, 0.030207468196749687, -0.006679191719740629, -0.004149451851844788, -0.006129100453108549, 0.04004119336605072, -0.04359980672597885, 0.023144571110606194, -0.0015416131354868412, 0.021039282903075218, -0.005246238317340612, 0.006821807939559221, 0.015905100852251053, -0.018580852076411247, 0.014927160926163197, 0.03564046323299408, -0.014737006276845932, -0.027205735445022583, -0.012427981942892075, -0.055633895099163055, 0.014261619187891483, 0.0016740424325689673, -0.0030696436297148466, -0.003857428440824151, -0.005018731579184532, -0.010193661786615849, -0.0032767767552286386, -0.014899996109306812, 0.001298826071433723, -0.023538462817668915, 0.008604509755969048, -0.022574106231331825, -0.027355143800377846, -0.022234542295336723, -0.01243477314710617, 0.007633361965417862, -0.007348129525780678, 0.018377114087343216, 0.001257229596376419, -0.017983222380280495, -0.005691064987331629, 0.01030232198536396, 0.026893338188529015, 0.005585800856351852, 0.02105286531150341, -0.033086955547332764, 0.018485775217413902, -0.007422833237797022, -0.020007014274597168, 0.018757425248622894, -0.0031171825248748064, -0.008991611190140247, 0.012686049565672874, -0.009480580687522888, -0.048408009111881256, 0.016611389815807343, 0.012679258361458778, 0.018227707594633102, 0.007626570761203766, -0.01692378707230091, -0.004312442149966955, 0.017670825123786926, 0.004899885039776564, -0.009575658477842808, -0.0010288739576935768, -0.03224484249949455, -0.011402503587305546, 0.014234454371035099, 0.018377114087343216, 0.032516490668058395, 0.0015424620360136032, -0.005847263615578413, -0.041806917637586594, 0.005551844369620085, -0.007477163337171078, 0.008427937515079975, 0.022519774734973907, 0.015728527680039406, -0.008794665336608887, 0.03273381292819977, 0.01375227514654398, 0.024190422147512436, -0.021990058943629265, 0.015810023993253708, -0.023782948032021523, -0.0522926039993763, -0.014641928486526012, 0.0057827471755445, -0.05009223893284798, 0.004020418506115675, -0.025154778733849525, 0.029039373621344566, 0.0316472128033638, 0.018132630735635757, 0.013725110329687595, -0.012842248193919659, -0.013962804339826107, -0.004461849573999643, 0.03694438561797142, 0.034526702016592026, -0.026513028889894485, -0.02454356662929058, 0.0049236542545259, 0.011341382749378681, 0.011776022613048553, -0.01594584807753563, 0.013385548256337643, 0.006360002793371677, -0.0028642085380852222, 0.001258927397429943, -0.007096853107213974, -0.011253096163272858, 0.029039373621344566, 0.016842292621731758, 0.03360309079289436, -0.035993609577417374, 0.01672005094587803, 0.01938221976161003, 0.03650974482297897, -0.007857472635805607, 0.023022327572107315, -0.00442110188305378, 0.003775933524593711, -0.01905624009668827, 0.011090106330811977, -0.03588495030999184, -0.011789605021476746, 0.02440774254500866, 0.03292396664619446, 0.009365130215883255, -0.002748757367953658, -0.00760619668290019, 0.018811754882335663, -0.010798082686960697, -0.0018743842374533415, -0.02467939257621765, -0.013677571900188923, -0.027110658586025238, -0.0018098673317581415, -0.0006842181319370866, 0.008944072760641575, 0.022383950650691986, -0.011871100403368473, 0.028170093894004822, 0.0138473529368639, 0.0184042789041996, -0.016964536160230637, 0.013650407083332539, -0.03210901468992233, 0.0094602070748806, 0.014356696046888828, 0.011877891607582569, -0.016176750883460045, 0.003326013218611479, -0.02421758696436882, -0.010546807199716568, 0.00728021701797843, -0.003799702739343047, 0.08464610576629639, 0.02163691259920597, -0.02963700331747532, 0.006112122442573309, -0.006831994745880365, 0.005619756877422333, 0.026309290900826454, -0.003796307137235999, 0.00211377558298409, -0.01304598618298769, 0.03132123127579689, -0.002792900428175926, -0.022954415529966354, -0.01620391570031643, -0.029664168134331703, -0.006879533175379038, 0.008183453232049942, 0.005650317762047052, -0.00451957480981946, 0.014030716381967068, 0.019463714212179184, 0.0018574061105027795, 0.02808859758079052, -0.01178281381726265, -0.03515149652957916, -0.01794247515499592, 0.034581031650304794, 0.01594584807753563, -0.005066270474344492, -0.03449953719973564, 0.017032448202371597, -0.01039739977568388, -0.017915310338139534, 0.005144369788467884, -0.013439877890050411, -0.016774380579590797, -0.0013523070374503732, -0.029474012553691864, -0.007327755447477102, 0.0048591373488307, 0.012842248193919659, 0.016040924936532974, -0.023945936933159828, -0.008740334771573544, 0.006258134264498949, -0.012149540707468987, 0.011972968466579914, -0.024312665686011314, -0.011667362414300442], "6e10e340-5c45-4969-a8fc-f03571701760": [-0.011853252537548542, -0.01081082969903946, -0.004335377365350723, -0.01434540469199419, -0.01984056457877159, 0.009229935705661774, -0.02155262418091297, -0.03172833472490311, -0.017355315387248993, -0.0515550933778286, 0.010997222736477852, 0.0030099116265773773, 0.010507076978683472, -0.002908085472881794, 0.0026423020754009485, 0.007497165352106094, 0.01093509141355753, -0.009595818817615509, 0.012460757978260517, -0.020986540243029594, -0.022519109770655632, 0.007124377880245447, -0.028387056663632393, 0.006896563805639744, -0.02381696179509163, 0.008277256973087788, 0.018225153908133507, -0.015049558132886887, -0.014014038257300854, 0.01335130538791418, 0.020489489659667015, -0.02082085609436035, -0.012819738127291203, -0.016872074455022812, -0.005940433591604233, -0.00722793024033308, 0.006188958417624235, -0.012163909152150154, -0.004753036890178919, -0.02285047620534897, 0.019743915647268295, 0.005256989970803261, -0.02008908987045288, -0.009153997525572777, 0.009022831916809082, 0.028152339160442352, -0.0007343562901951373, -0.033495623618364334, -0.009119479916989803, 0.0002985749451909214, 0.003306760685518384, 0.01938493549823761, -0.007655945140868425, 0.011473562568426132, -0.006451290100812912, 0.0022626114077866077, -0.0008474005735479295, -0.008981410413980484, 0.0037623895332217216, -0.002462812000885606, 0.012992325238883495, 0.03112082928419113, -0.013682671822607517, -0.0153395039960742, -0.01590558886528015, -0.009754599072039127, -0.015077171847224236, -0.009326583705842495, -0.015035751275718212, -0.011991322040557861, 0.022422460839152336, 0.04396127909421921, -0.01363434735685587, 0.018487485125660896, -0.0006692048627883196, -0.019081182777881622, 0.024590149521827698, 0.002814888721331954, -0.0007037221803329885, -0.020779436454176903, 0.004432025831192732, -0.011687570251524448, -0.0116737624630332, -0.00159470085054636, 0.017120597884058952, 0.04542481526732445, -0.020517103374004364, 0.010141192935407162, -0.009623433463275433, 0.007607620675116777, 0.0006489258958026767, 0.008912376128137112, 0.016747811809182167, 0.02011670358479023, 0.00811157375574112, 0.015518994070589542, 0.025142427533864975, -0.00131942518055439, 0.009292067028582096, -0.016526900231838226, -0.023968838155269623, 0.012288171797990799, -0.02033761329948902, -0.014193528331816196, -0.03286050260066986, -0.01138381753116846, 0.0009820181876420975, 0.005840333178639412, 0.0092161288484931, 0.019536811858415604, -0.005864495411515236, 0.033771760761737823, -0.0007140773814171553, -0.004362991079688072, -0.017244860529899597, -0.02359605021774769, 0.01739673689007759, -0.021676886826753616, -0.014317790977656841, -0.04020579159259796, 0.019992440938949585, 0.02454872988164425, 0.0184460636228323, -0.03534575179219246, 0.011508079245686531, -0.005626325495541096, -0.0022263680584728718, -0.0010217131348326802, 0.011722086928784847, -0.014649157412350178, 0.03159026429057121, 0.013441050425171852, -0.0016913494328036904, -0.011107678525149822, -0.020558524876832962, 0.007065698504447937, -0.03205970302224159, 0.017976628616452217, -0.011715183965861797, -0.01571229100227356, 0.02008908987045288, 0.01640263758599758, -0.021704500541090965, -0.03871464356780052, 0.002543927635997534, 0.01437301840633154, -0.01275760680437088, 0.02061375230550766, 0.01941254921257496, -0.02940876968204975, 0.019495390355587006, -0.00224017514847219, -0.002580170752480626, 0.00539505947381258, 0.017810944467782974, -0.0013504907255992293, -0.012509082444012165, 0.01790759339928627, -0.003113463753834367, -0.016775425523519516, -7.529094000346959e-05, 0.0053225732408463955, -0.011846349574625492, 1.6854167839142065e-08, 0.001436784048564732, 0.024355432018637657, -0.010458752512931824, -0.025639476254582405, -0.014870068058371544, -0.012301978655159473, 0.009940993040800095, 0.02286428213119507, -0.029132630676031113, 0.024479694664478302, 0.023016158491373062, -0.003565640654414892, 0.03147980943322182, -0.014897681772708893, -0.018501291051506996, -0.01717582531273365, 0.02377554029226303, -0.006651490461081266, 0.008539589121937752, 0.011791122145950794, -0.03219776973128319, -0.020296193659305573, 0.0051879556849598885, 0.008767403662204742, 0.002937425160780549, 0.004228373523801565, 0.004487253725528717, 0.0036312236916273832, -0.044044118374586105, -0.02428639680147171, -0.6247361302375793, -0.0036312236916273832, 0.01616792008280754, -0.024921515956521034, 0.023375140503048897, 0.011204327456653118, 0.003425845643505454, 0.025446180254220963, 0.0004422533675096929, 0.011052451096475124, 0.01130097545683384, 0.021235065534710884, -0.003147980896756053, -0.010272359475493431, -0.009899571537971497, -0.009906475432217121, 0.019012147560715675, -0.019509198144078255, -0.0073729027062654495, 0.002939151134341955, -0.004991206806153059, 0.03562188893556595, -0.01619553379714489, -0.008442940190434456, 0.024838674813508987, 0.01372409239411354, 0.021442169323563576, -0.008774306625127792, -0.010120483115315437, 0.02187018282711506, -0.028525125235319138, 0.0171482115983963, 0.032252997159957886, -0.009009024128317833, 0.046474140137434006, -0.005602163728326559, -0.014414438977837563, 0.02595703676342964, 0.03882509842514992, 0.0368092879652977, -0.01986817829310894, -0.002385147847235203, -0.0027165142819285393, 0.03653314709663391, 0.004763392265886068, -0.006986308842897415, -0.015063364990055561, 0.009671756997704506, -0.013523892499506474, -0.012433144263923168, -0.012440048158168793, -0.025860387831926346, -0.01056230440735817, 0.0013358208816498518, 0.022450074553489685, 0.009457750245928764, 0.03540097922086716, 0.004076497163623571, 0.01960584707558155, 0.023941224440932274, 0.02627459540963173, 0.011011029593646526, 0.007510972209274769, -0.05205214023590088, -0.0319492444396019, 0.008394615724682808, -0.018777430057525635, -0.032308224588632584, 0.028276601806282997, -0.00048065389273688197, 0.012398626655340195, 0.000659712590277195, 0.0035794477444142103, -0.0029771202243864536, -0.006620424799621105, 0.01868078112602234, 0.0393497608602047, -0.007959697395563126, -0.0018328705336898565, 0.017741911113262177, 0.01092818845063448, 0.0021883989684283733, -0.03277766332030296, -0.026868293061852455, 0.029022175818681717, 0.01127336174249649, -0.028276601806282997, -0.018004242330789566, -0.005129275843501091, -0.00885024480521679, 0.023471787571907043, 0.008470553904771805, -0.010734891518950462, -0.04608754813671112, 0.026412665843963623, 0.020682787522673607, -0.005943885073065758, -0.018031856045126915, -0.02062756009399891, -0.01985437050461769, -0.01326156035065651, -0.01326846331357956, -0.020185736939311028, 0.004297408275306225, 0.031037988141179085, -0.0015273920726031065, -0.02258814498782158, -0.013254656456410885, 0.033440396189689636, -0.031507425010204315, -0.0003952234983444214, -0.018087083473801613, -0.007069150451570749, -0.0064305798150599, 0.0030340738594532013, -0.0184460636228323, 0.03142458200454712, -0.005988757591694593, -0.003990204073488712, -0.019081182777881622, -0.01400023140013218, 0.03136935457587242, -0.0004608064191415906, -0.009851248003542423, -0.01643025130033493, 0.027531025931239128, 0.0033240194898098707, 0.006019823253154755, 0.003101382637396455, 0.001108869444578886, 0.027682902291417122, -0.01215700525790453, 0.003693354781717062, -0.008774306625127792, 0.015215241350233555, -0.007338385563343763, 0.007552392780780792, 0.011998225934803486, 0.011370010673999786, -0.03092753328382969, -0.011093871667981148, -0.013192526064813137, -0.0007934672757983208, -0.01767287589609623, 0.00022759867715649307, -0.0044768983498215675, -0.025321917608380318, 0.0053225732408463955, -0.007010470610111952, -0.010921284556388855, -0.027116818353533745, -0.029878204688429832, -0.005160341504961252, 0.0319216325879097, -0.010893670842051506, 0.00032748322701081634, 0.019992440938949585, -0.027185853570699692, -0.012564309872686863, -0.0282351803034544, -0.012398626655340195, 0.016595935449004173, -0.018542712554335594, 0.010375911369919777, -0.013109683990478516, -0.016526900231838226, -0.0030927532352507114, 0.0029926530551165342, -0.0038555862847715616, -0.02162165939807892, -0.0029702167958021164, -0.022242970764636993, 0.02475583367049694, 0.034462109208106995, -0.012819738127291203, 0.004148983862251043, -0.02206348069012165, 0.008014925755560398, 0.008056346327066422, 0.004594257567077875, 0.024672990664839745, 0.032032087445259094, -0.015864167362451553, -0.0004884203081019223, 0.024838674813508987, 0.025570442900061607, 0.013406532816588879, 0.026937328279018402, -0.02523907646536827, -0.005105114076286554, 0.00039414482307620347, 0.006748138926923275, -0.00044656803947873414, -0.003441378241404891, -0.011349299922585487, 0.0035276717972010374, -0.035704731941223145, -0.01375170610845089, -0.026868293061852455, 0.0342964231967926, 0.009009024128317833, 0.011204327456653118, -0.015518994070589542, -0.0017672876128926873, 0.02282286249101162, -0.04186262562870979, 0.01909499056637287, -0.015436151996254921, 0.02406548708677292, 0.0013712011277675629, 0.003914265893399715, 0.0014980523847043514, -0.014704384841024876, -0.026343630626797676, -0.011459755711257458, 0.018956920132040977, -0.015988430008292198, 0.02160785160958767, -0.0010631339391693473, -4.578940206556581e-05, -0.002990927081555128, -0.002856309525668621, 0.028138531371951103, 0.01863936148583889, -0.0008090000483207405, 0.0030599618330597878, -0.013710285536944866, 0.017576226964592934, 0.014303984120488167, -0.03821759298443794, -0.0005233691190369427, 0.019012147560715675, -0.0014704384375363588, -0.014897681772708893, 0.017755717039108276, 0.028828877955675125, 0.03661599010229111, -0.032225385308265686, 0.020668979734182358, -0.02062756009399891, 0.002763112774118781, 0.011977515183389187, 0.03559427708387375, -0.02719965949654579, -0.0059853061102330685, 0.010748698376119137, 0.01819753833115101, 0.013420339673757553, -0.02772432379424572, 0.02402406558394432, 0.01411068718880415, 0.001600741408765316, -0.010997222736477852, -0.003876296803355217, 0.031866405159235, -0.009747695177793503, -0.009437039494514465, 0.02037903480231762, 0.015518994070589542, 0.016775425523519516, -0.017507191747426987, 0.020489489659667015, -0.001202929182909429, -0.00022242107661440969, 0.030844690278172493, -0.012239847332239151, -0.009713178500533104, -0.025832774117588997, -0.014731998555362225, 0.003056510118767619, -0.007918276824057102, -0.023471787571907043, -0.023927416652441025, -0.012509082444012165, -0.016637355089187622, 0.004925624001771212, 0.00930587388575077, 0.033274710178375244, -0.009381812065839767, 0.01573990471661091, -0.0029805719386786222, -0.0318387895822525, 0.003921169321984053, 0.006264896597713232, 0.0021262678783386946, -0.01297851838171482, -0.010976512916386127, 0.010203324258327484, 0.00013979521463625133, 0.018542712554335594, -0.016140306368470192, 0.015836553648114204, 0.0021780438255518675, 0.012992325238883495, -0.01692730188369751, 0.014179721474647522, 0.04293956607580185, -0.006085406057536602, -0.009623433463275433, 0.003301583230495453, 0.003907362464815378, 0.017244860529899597, -0.011963708326220512, -0.026605961844325066, 0.05094758793711662, -0.03584280237555504, -0.006934532895684242, -0.011473562568426132, 0.009747695177793503, -0.012944000773131847, 0.014317790977656841, -0.017769524827599525, -0.021732114255428314, -0.010092868469655514, -0.0306790079921484, 0.0029892013408243656, -0.019467776641249657, -0.0028355990070849657, 0.016029851511120796, 0.006275251507759094, -0.008608623407781124, -0.018528904765844345, -0.004556288477033377, 0.019081182777881622, 0.07058104872703552, 0.010513979941606522, -0.01916402392089367, 0.02204967476427555, -0.028635581955313683, -0.01909499056637287, -0.01761764846742153, -0.0232922974973917, 0.03272243216633797, -0.007655945140868425, -0.0013504907255992293, -0.002961587393656373, 0.030320027843117714, -0.002438649768009782, -0.00392807275056839, 0.011936094611883163, 0.00340168341062963, -0.01249527558684349, -0.017520999535918236, 0.0005233691190369427, -0.019288286566734314, -0.012143198400735855, 0.02871842309832573, 0.02626078948378563, 0.04713687300682068, 0.04020579159259796, 0.02946399711072445, 0.01764526218175888, 0.007400516886264086, -0.03070662170648575, -0.004304311703890562, -0.01212248858064413, -0.00340168341062963, 0.003941879607737064, -0.005788557231426239, 0.043823208659887314, 0.012067260220646858, -0.01297851838171482, -0.005502063315361738, -0.0015308437868952751, 0.009402521885931492, 0.004922172054648399, 0.008008021861314774, -0.022381041198968887, 0.004697809461504221, -0.02921547181904316, 0.0004377229488454759, 0.03976397216320038, -0.020945118740200996, 0.0034034093841910362, 0.0009172981954179704, 0.005671198014169931, -0.011659955605864525, 0.0027337728533893824, 0.01139072049409151, 0.005360542330890894, 1.1191167686774861e-05, 0.0006502203177660704, -0.004138628486543894, -0.036947354674339294, -0.03310902789235115, -0.0025076845195144415, -0.016098884865641594, -0.0141175901517272, -0.024907710030674934, -0.010258551687002182, -0.009802923537790775, 0.0208898913115263, -0.02528049610555172, 0.009533688426017761, 0.008498167619109154, -0.022477688267827034, -0.050643835216760635, 0.004079949110746384, 0.04349184408783913, 0.0030513324309140444, 0.020779436454176903, -0.010431138798594475, -0.0024766188580542803, 0.00039781228406354785, -0.0024421014823019505, -0.028552740812301636, 0.003084123833104968, -0.015781326219439507, -0.02696494199335575, -0.01738293096423149, -0.020931312814354897, -0.004276697989553213, -0.013344401493668556, 0.007593813817948103, -0.010154999792575836, -0.020779436454176903, -0.011183616705238819, 0.002873568097129464, 0.02283666841685772, 0.046032316982746124, 0.02283666841685772, 0.014870068058371544, 0.01819753833115101, -0.03954305872321129, 0.00820131879299879, -0.00748335849493742, -0.0014100332045927644, -0.008332484401762486, 0.013965713791549206, 0.0006411594804376364, 0.010859154164791107, -0.01763145439326763, 0.027185853570699692, -0.01986817829310894, 0.0038314242847263813, -0.02478344738483429, 0.013779320754110813, -0.015864167362451553, 0.023402754217386246, 0.009865054860711098, 0.005177600309252739, 0.027061590924859047, -0.010576111264526844, -0.001601604395546019, 0.019785337150096893, -0.03896316885948181, 0.039874427020549774, 0.00834629125893116, -0.007365999277681112, 0.010058351792395115, 0.01573990471661091, -0.010341393761336803, -0.03523529693484306, 0.01166685950011015, 0.014883874915540218, 0.022394847124814987, -0.00819441583007574, -0.008663850836455822, -0.02649550698697567, -9.087767466553487e-06, 0.009809826500713825, 0.01079011894762516, -0.019743915647268295, 0.01007215864956379, -0.008629334159195423, -0.0011036917567253113, 0.03556666150689125, -0.01596081629395485, 0.002245352603495121, -0.03288811817765236, -0.02968490868806839, -0.013047552667558193, 0.008898569270968437, 0.013730996288359165, -0.00970627460628748, -0.017755717039108276, -0.014055458828806877, -0.007635234389454126, 0.021152222529053688, 0.005833429750055075, 0.00718650920316577, -0.0007110571023076773, 0.0540403388440609, 0.022670986130833626, 0.025832774117588997, 0.014994330704212189, 0.028828877955675125, 0.007145088631659746, -0.015049558132886887, -0.02302996627986431, -0.021704500541090965, -0.022615758702158928, -0.00908496230840683, 0.01967488043010235, 0.009844344109296799, 0.0005272523267194629, -0.020530911162495613, 0.01482864748686552, 0.006851691287010908, 0.02456253580749035, -0.004245632328093052, -0.019233059138059616, -0.02896694839000702, -0.04752346873283386, -0.0011710006510838866, 0.026854487136006355, 0.014290177263319492, -0.009250645525753498, -0.024907710030674934, 0.016112692654132843, 0.031507425010204315, -0.02133171260356903, 0.020903699100017548, -0.00185358093585819, 0.028607968240976334, 0.004142080433666706, 0.004670195281505585, -0.0059128194116055965, 0.0208898913115263, -0.04490014910697937, -0.0049532377161085606, -0.020668979734182358, -0.007552392780780792, 0.005943885073065758, -0.0015377473318949342, 0.02869080938398838, -0.00039781228406354785, -0.001407444360665977, -0.00587830226868391, 0.009091866202652454, -0.025377145037055016, 0.014442053623497486, 0.01622314751148224, -0.03167310729622841, -0.00896760355681181, -0.045038219541311264, -0.010755601339042187, -0.025073392316699028, -0.004362991079688072, 0.010976512916386127, -0.00097942934371531, 0.02769671007990837, -0.018321800976991653, -0.014676771126687527, 0.018805043771862984, -0.016568321734666824, 0.046032316982746124, 0.020917505025863647, 0.027172045782208443, 0.009506073780357838, 0.015215241350233555, -0.01669258251786232, -0.009043541736900806, 0.01716201938688755, -0.030071502551436424, 0.0031031083781272173, 0.03705780953168869, -0.018515098839998245, -0.013800030574202538, -0.011956805363297462, -0.01622314751148224, -0.002538749948143959, -0.03824520856142044, 0.021221257746219635, 0.009595818817615509, 0.0007088997517712414, -0.03236345201730728, -0.0055918083526194096, -0.016885880380868912, 0.02180114947259426, -0.0140968794003129, 0.006444386672228575, -0.0015567318769171834, -0.013399629853665829, 0.008180608041584492, 0.01741054467856884, 0.00613373052328825, 0.007607620675116777, 0.007165798917412758, 0.002849406097084284, 0.0037313238717615604, -0.002117638476192951, -0.019812950864434242, -0.0013858709717169404, 0.0007058795308694243, 0.04263581335544586, -0.026150332763791084, 0.008643141016364098, 0.03291573002934456, 0.029491610825061798, -0.004632226191461086, 0.001353942439891398, -0.017741911113262177, 0.03393744304776192, -0.00969937164336443, -0.015104785561561584, 0.0047944579273462296, 0.02401025779545307, 0.0072348336689174175, -0.009899571537971497, -0.017797138541936874, 0.006523776333779097, 0.0011477014049887657, -0.010893670842051506, 0.018791237846016884, -0.03661599010229111, -0.0015222145011648536, -0.005971499253064394, -0.004442381206899881, -0.016016043722629547, 0.02869080938398838, -0.0009026283514685929, 0.015615643002092838, -0.04338138550519943, -0.013082070276141167, 0.0020244417246431112, -0.012695476412773132, -0.014303984120488167, 0.015808939933776855, -0.011487369425594807, -0.0012098326114937663, 0.030347641557455063, -0.011052451096475124, 0.014552508480846882, 0.03479347378015518, 0.005087855271995068, -0.037913840264081955, 0.015408538281917572, -0.029822977259755135, -0.008242739364504814, 0.0208898913115263, 0.0029702167958021164, -0.026108913123607635, -0.025639476254582405, 0.022035866975784302, 0.002650931477546692, -0.009865054860711098, -0.005578001495450735, 0.013164911419153214, 0.012957807630300522, 0.00979601964354515, 0.0013530795695260167, 0.014801033772528172, 0.003945331554859877, -0.0032705175690352917, -0.006068147718906403, 0.011853252537548542, -0.025874193757772446, -0.008304870687425137, 0.01572609879076481, -0.013088973239064217, -0.008505071513354778, -0.046225614845752716, -0.03335755318403244, -0.022270584478974342, 0.015256661921739578, -0.0024351980537176132, 0.005087855271995068, 0.005740232765674591, -0.006969050038605928, -0.027185853570699692, 0.023168034851551056, -0.029022175818681717, -0.011811831966042519, 0.039874427020549774, 0.021953025832772255, 0.018528904765844345, 0.02674403227865696, -0.03407551348209381, -0.015284276567399502, -0.016747811809182167, -0.027669096365571022, -0.0515274778008461, 0.0008629334042780101, -0.004549384582787752, 0.03600848466157913, -0.0011425238335505128, -0.014248755760490894, -0.026661189272999763, -0.00933348760008812, -0.025901809334754944, -0.008587912656366825, -0.02971252240240574, -0.004973948001861572, 0.03418596833944321, 0.01638883166015148, 0.01720344088971615, 0.03120367042720318, 0.013289174064993858, 0.010279262438416481, -0.04393366351723671, -0.004780651070177555, -0.01565706357359886, -0.01836322247982025, 0.03139697015285492, -0.027862392365932465, -0.03832804784178734, 0.006043985486030579, -0.0033757954370230436, -0.004614967852830887, 0.010596822015941143, 0.004507964011281729, 0.00514998659491539, -0.0009751147008500993, -0.011459755711257458, 0.008353195153176785, 0.014552508480846882, 0.016347410157322884, 0.018018048256635666, -0.04561810940504074, -0.009623433463275433, 0.024949129670858383, -0.008056346327066422, 0.012902580201625824, 0.008180608041584492, 0.0022488043177872896, -0.01743815839290619, 0.012854255735874176, 0.0011278539896011353, -0.01363434735685587, 0.0005613381508737803, 0.0065513900481164455, 0.01739673689007759, 0.0281799528747797, 0.01738293096423149, 0.047440625727176666, -0.027586255222558975, -0.007124377880245447, -0.004255987238138914, -0.009588915854692459, 0.007165798917412758, 0.02548759989440441, 0.023002352565526962, -0.011839445680379868, -0.0006484944606199861, 0.004991206806153059, 0.010583015158772469, 0.012992325238883495, -0.014939102344214916, -0.02254672348499298, -0.005957691930234432, -0.019467776641249657, 0.015491380356252193, -0.011397624388337135, 0.002837324980646372, 0.0012408981565386057, 0.008808824233710766, -0.018736010417342186, 0.010886767879128456, -0.006717073265463114, 0.015560414642095566, -0.02229819819331169, -0.01618172600865364, 0.009243742562830448, -0.015132400207221508, -0.033744148910045624, -0.007724979892373085, 0.014152107760310173, 0.0068689496256411076, 0.0024593600537627935, 0.1890997737646103, 0.01818373240530491, 0.0032739692833274603, 0.017810944467782974, 0.019743915647268295, -0.009002121165394783, 0.023099001497030258, 0.003517316421493888, -0.03625700995326042, -0.004777199123054743, -7.755613478366286e-05, -0.009671756997704506, -0.006934532895684242, -0.0059645953588187695, 0.022947125136852264, -0.007676655426621437, -0.016043657436966896, -0.013889775611460209, -0.013510084711015224, -0.011860156431794167, -0.007379806134849787, -0.001863936078734696, -0.016347410157322884, -0.008125380612909794, 0.013924293220043182, 0.010734891518950462, -0.010652049444615841, -0.0016809942899271846, 0.017355315387248993, 0.011687570251524448, -0.00020138708350714296, 0.011728990823030472, 0.004259439185261726, 0.0003889672225341201, -0.015021944418549538, -0.02181495539844036, 0.019523004069924355, -0.006962146610021591, -0.008014925755560398, 0.02359605021774769, 0.0018225152743980289, -0.032225385308265686, 0.001624040654860437, -0.02153881825506687, 0.007024277932941914, 0.0008029594901017845, -0.00922303181141615, 0.01445586048066616, -0.005415769759565592, 0.013579119928181171, -0.0085672028362751, 0.0023143873549997807, 0.028801264241337776, 0.02159404568374157, 0.014593929052352905, 0.0008728571119718254, 0.003945331554859877, 0.007731883320957422, -0.019509198144078255, -0.014842454344034195, -0.02478344738483429, 0.01471819169819355, -0.007504068780690432, 0.009623433463275433, -0.02155262418091297, -0.005443383939564228, -0.024866288527846336, 0.022753827273845673, -0.009036638773977757, 0.007138185203075409, -0.01638883166015148, -0.01572609879076481, -0.02896694839000702, -0.0070760538801550865, -0.030099116265773773, -0.012329592369496822, 0.011956805363297462, 0.008615527302026749, -0.0005889520398341119, 0.011176712810993195, -0.01892930641770363, -0.01458012219518423, -0.021787341684103012, 0.007345288991928101, 0.0004521771043073386, -0.022891897708177567, 0.04953927919268608, -0.024645376950502396, -0.015877975150942802, -0.017465772107243538, -0.00956130214035511, 0.008587912656366825, -0.00039392910548485816, -0.02474202588200569, -0.0015256662154570222, -0.013019938953220844, -0.008263450115919113, 0.020958926528692245, -0.020738014951348305, -0.027903813868761063, -0.019012147560715675, 0.04191785305738449, 0.005212117452174425, 0.021304098889231682, -0.030071502551436424, 0.01862555369734764, 0.019288286566734314, 0.029850590974092484, 0.0031652397010475397, -0.013620540499687195, -0.003182498272508383, -0.04070284217596054, 0.007065698504447937, -0.0038038103375583887, 0.012647151947021484, 0.01423494890332222, 0.005919722840189934, -0.006741235498338938, -0.003184224246069789, -0.016830652952194214, 0.01916402392089367, -0.013793127611279488, 0.012094873934984207, 0.02106938138604164, -0.029850590974092484, -0.029629681259393692, -0.0027337728533893824, 0.040371473878622055, -0.03609132766723633, -0.023223264142870903, 0.01818373240530491, -0.026661189272999763, 0.007925179786980152, -0.008159898221492767, -0.0006674789474345744, 0.013613637536764145, 0.02743437886238098, -0.009913378395140171, -0.011860156431794167, -0.02330610528588295, 0.0012063808972015977, 0.013938100077211857, 0.01362744439393282, 0.010665856301784515, -0.009692467749118805, 0.0011520161060616374, 0.0056194220669567585, -0.013689574785530567, 0.007131281308829784, -0.019757723435759544, -0.020171931013464928, -0.004742681980133057, 0.006451290100812912, 0.0027424022555351257, 0.041337959468364716, -0.0048186201602220535, -0.007945890538394451, -0.0368368998169899, 0.008981410413980484, 0.011432141065597534, -0.03650553524494171, -0.002951232250779867, 0.025929423049092293, 0.0051154689863324165, -0.008801920339465141, -0.02131790667772293, -0.176728755235672, 0.013475568033754826, 0.006772301159799099, -0.012226040475070477, 0.04310524836182594, 0.018501291051506996, 0.01237791683524847, 0.014621543698012829, 0.002291951095685363, 0.00032381576602347195, -0.000378396303858608, 0.007034632842987776, 0.0012650603894144297, 0.003676096210256219, 0.005294959060847759, -0.006579004228115082, -0.016761617735028267, 0.01643025130033493, 0.05243873596191406, 0.0054848045110702515, 0.02013050951063633, -0.039625901728868484, -0.007932083681225777, -0.00782853178679943, 0.03827282041311264, 0.002217738889157772, -0.014076169580221176, 0.008215125650167465, 0.004166242200881243, -0.03647791966795921, 0.004128273110836744, 0.0049566891975700855, 0.012771413661539555, -0.007352192420512438, 0.023140421137213707, -0.0003786120214499533, -0.0026630123611539602, 0.0017845463007688522, 0.0019485035445541143, 0.02033761329948902, 0.019688688218593597, 0.003023718483746052, 0.018542712554335594, 0.0030219927430152893, 0.00576094351708889, 0.019039763137698174, 0.003475895617157221, -0.005419221706688404, 0.009630336426198483, -0.020503297448158264, 0.038852714002132416, -0.02011670358479023, 0.009809826500713825, 0.013827644288539886, -0.0005358816124498844, -0.0048462338745594025, 0.006289058364927769, 0.027627674862742424, -0.0022712405771017075, -0.025404758751392365, 0.02013050951063633, -0.009878861717879772, 0.008187511935830116, -0.0033050349447876215, -0.006171699613332748, -0.01665116287767887, 0.017824752256274223, 0.016043657436966896, -0.0034741698764264584, -0.011632341891527176, 0.006523776333779097, 0.016982529312372208, -0.005954240448772907, 0.03548382222652435, -0.003191127674654126, 0.002990927081555128, -0.02896694839000702, 0.009713178500533104, 0.027282502502202988, -0.0013927745167165995, 0.002771741943433881, 0.003582899458706379, -0.019523004069924355, -0.013171815313398838, 0.0014031296595931053, 0.0195920392870903, 0.010313780046999454, 0.0030616875737905502, -0.017258668318390846, 0.013040649704635143, 0.02548759989440441, -0.01264024805277586, -0.008725982159376144, -0.001770739327184856, 0.014317790977656841, -0.014428245835006237, 0.028414670377969742, 0.008629334159195423, 0.012364109978079796, -0.005232828203588724, 0.013088973239064217, 0.009416328743100166, -0.00882263109087944, 0.019799143075942993, 0.009871957823634148, 0.03120367042720318, 0.009940993040800095, 0.006589359138160944, 0.029270701110363007, -0.005757491569966078, -0.0064374832436442375, 0.005722974427044392, 0.02874603681266308, 0.008587912656366825, -0.01695491559803486, 0.03973635658621788, -0.00012728267756756395, -0.03291573002934456, 0.024355432018637657, -0.004428574349731207, 0.03611893951892853, -0.010638242587447166, -0.022242970764636993, 0.015546607784926891, 0.008560298942029476, 0.013661961071193218, -0.08394616097211838, -0.01620934158563614, 0.01768668182194233, 0.0140968794003129, -0.011977515183389187, 0.0034396525006741285, 0.011936094611883163, 0.0490146167576313, -0.017783330753445625, 0.022657178342342377, -0.007925179786980152, -0.02256053127348423, 0.025832774117588997, 0.017576226964592934, 0.005702263675630093, -0.010893670842051506, -0.015146207064390182, 0.004763392265886068, -0.008518878370523453, 0.036754060536623, 0.0058368812315166, 6.002780355629511e-05, 0.007365999277681112, -0.024369237944483757, -0.019964827224612236, -0.00391771737486124, -0.025680897757411003, 0.01743815839290619, 0.0020900247618556023, -0.007469551172107458, 0.022988544777035713, -0.011238844133913517, 0.014939102344214916, -0.018073277547955513, -0.01818373240530491, -0.006720525212585926, -0.024452080950140953, -0.017548613250255585, 0.016761617735028267, -0.03490392863750458, 0.0025715415831655264, 0.0030754946637898684, -0.006223475560545921, -0.00934039056301117, 0.0041558872908353806, -0.00882953405380249, -0.020434262230992317, 0.03263959288597107, 0.01866697520017624, -0.024369237944483757, -0.0018242411315441132, -0.012329592369496822, -0.015367117710411549, -0.01862555369734764, 0.03319187089800835, -0.014704384841024876, 0.010714180767536163, 0.0023489047307521105, -0.010852250270545483, 0.019191637635231018, 0.008256546221673489, 0.0008888213778845966, 0.0010570933809503913, 0.02844228409230709, -0.0020796693861484528, 0.02283666841685772, 0.002756209345534444, -0.013510084711015224, -0.013413436710834503, -0.005605615209788084, -0.015242855064570904, 0.0003859469434246421, -0.03313664346933365, 0.004942882340401411, 0.001759521197527647, -0.009112576954066753, -0.017065370455384254, -0.030043888837099075, 0.014814840629696846, 0.014041651971638203, -0.030071502551436424, -0.006761946249753237, -0.0031928534153848886, -0.035456206649541855, 0.038162365555763245, -0.0017405366525053978, -0.0004944608081132174, 0.003106560092419386, 0.03156265243887901, -0.02599845640361309, 0.014787226915359497, 0.01596081629395485, 0.022270584478974342, -0.010465656407177448, -0.00465638842433691, 0.0017362219514325261, -0.01916402392089367, 0.012025839649140835, 0.01984056457877159, -0.0019968277774751186, -0.03092753328382969, -0.012343399226665497, -0.05495159700512886, 0.0116392457857728, -0.001120087574236095, 0.001278004376217723, -0.002645753789693117, -0.016319796442985535, -0.02993343397974968, 0.010472559370100498, 0.006081954576075077, 0.004269794560968876, -0.04735778272151947, 0.010410428047180176, -0.022712407633662224, -0.01300613209605217, -0.012605731375515461, -0.01665116287767887, 0.003979848697781563, 0.007082957308739424, 0.016761617735028267, 0.0067826565355062485, -0.02182876318693161, -0.011169809848070145, 0.009920282289385796, 0.019688688218593597, -0.0073936134576797485, 0.010866057127714157, -0.018984533846378326, 0.03973635658621788, -0.023609858006238937, -0.009374908171594143, 0.015546607784926891, -0.013558409176766872, 0.004304311703890562, 0.023195648565888405, -0.016305988654494286, -0.03882509842514992, 0.022215357050299644, -0.011535693891346455, 0.024438273161649704, 0.003876296803355217, -0.018252767622470856, -0.03332993760704994, 0.01937112957239151, -0.0016576950438320637, -0.008166801184415817, -0.00993408914655447, -0.009512977674603462, -0.007918276824057102, 0.00620276527479291, 0.010921284556388855, 0.03043048270046711, 0.015394731424748898, -0.011949901469051838, -0.030347641557455063, -0.01565706357359886, -0.007635234389454126, 0.033274710178375244, 0.011093871667981148, -0.00025176082272082567, -0.016803039237856865, 0.04302240535616875, 0.012819738127291203, 0.016305988654494286, -0.012923290021717548, 0.001976117491722107, -0.02257433719933033, -0.04293956607580185, -0.0014807936968281865, 0.011397624388337135, -0.02794523537158966, -0.0070518916472792625, -0.010990319773554802, 0.03534575179219246, 0.02798665501177311, 0.0001446492096874863, -0.009809826500713825, -0.004104111343622208, -0.0005384704563766718, -0.01967488043010235, 0.024424467235803604, 0.03286050260066986, 0.0031531585846096277, -0.02675783820450306, 0.016071271151304245, 0.021649273112416267, 0.011867060326039791, -0.01720344088971615, 0.008525782264769077, 0.020793242380023003, 0.0027596610598266125, -0.002193576656281948, -0.02061375230550766, -0.01763145439326763, 0.021138416603207588, 0.023968838155269623, 0.028552740812301636, -0.021290292963385582, 0.007566200103610754, 0.02037903480231762, 0.030982760712504387, 0.003482799045741558, 0.0075800069607794285, -0.00331711582839489, 0.008291063830256462, -0.03404789790511131, 0.0009811553172767162, -0.01938493549823761, -0.005574549548327923, 0.013475568033754826, 0.02181495539844036, 0.007662848569452763, -0.008394615724682808, 0.005422673188149929, 0.0017759168986231089, -0.002678545191884041, 0.009236838668584824, -0.0208484698086977, -0.02674403227865696, -0.015118593350052834, -0.002866664668545127, -0.004190404433757067, 0.003983300644904375, 0.027848586440086365, -0.019191637635231018, 0.013592926785349846, 0.026371244341135025, -0.004466543439775705, -0.01647167280316353, 0.025404758751392365, -0.026398858055472374, 0.030596166849136353, 0.007662848569452763, 0.01203964650630951, -0.010030738078057766, -0.019951019436120987, -0.0195920392870903, -0.01739673689007759, 0.009395618923008442, -0.009153997525572777, 0.08477457612752914, 0.03526290878653526, -0.026564542204141617, 0.012336495332419872, -0.011887770146131516, -0.0032981315162032843, 0.014704384841024876, -0.019647266715765, 0.013931196182966232, -0.015380924567580223, 0.036146555095911026, -0.00032575734076090157, -0.026578348129987717, -0.02260195091366768, -0.003325745230540633, -0.008318677544593811, 0.0008879584493115544, 0.008332484401762486, -0.009996220469474792, 0.010003123432397842, 0.012115584686398506, 0.0025007808580994606, 0.02946399711072445, 9.152487473329529e-05, -0.027282502502202988, -0.01743815839290619, 0.0417521707713604, 0.022091094404459, 0.006240734364837408, -0.04437548667192459, 0.011093871667981148, -0.00893998984247446, -0.02254672348499298, -0.012322688475251198, -0.0010536416666582227, -0.0022125612013041973, -0.0003684725670609623, -0.027890007942914963, -0.013227042742073536, 0.007082957308739424, 0.0005984443123452365, 0.006513421423733234, -0.031258899718523026, -0.027089204639196396, 0.011922287754714489, -0.008367002010345459, 0.011376913636922836, -0.024631571024656296, -0.027089204639196396], "8a3446a0-48bf-4591-82c5-c01cce6bbb83": [-0.015818696469068527, -0.02266332507133484, -0.0014873238978907466, -0.01897137425839901, -0.005869787652045488, 0.000857739127241075, -0.022151706740260124, -0.03868943452835083, -0.01999461092054844, -0.04908774048089981, 0.009831375442445278, 0.005340884439647198, 0.021446501836180687, -0.009900513105094433, 0.01342653390020132, 0.01718762330710888, 0.018722478300333023, -0.008040710352361202, 0.02757209911942482, -0.01135240402072668, -0.034624140709638596, 0.0007034757290966809, -0.030005745589733124, 0.005721141584217548, -0.026175517588853836, -0.0010759548749774694, 0.028844231739640236, -0.018791615962982178, 0.0001255280658369884, 0.012161314487457275, 0.003233914030715823, -0.03127787634730339, -0.022953703999519348, -0.008656035177409649, -0.0155559740960598, -0.01252774428576231, 0.008448622189462185, -0.007653539068996906, 0.022939875721931458, -0.010709423571825027, 0.01628883369266987, 0.002675627591088414, -0.01482311449944973, 0.01394506637006998, -0.008448622189462185, 0.022414429113268852, -0.0012271935120224953, -0.024502387270331383, -0.01370999775826931, -0.003353176638484001, 0.009527170099318027, 0.004825808573514223, -0.003093910403549671, 0.021584777161478996, -0.024972522631287575, -0.005994235165417194, -0.005835218820720911, -0.0005919912364333868, -0.006761663127690554, 0.004763585049659014, -0.00559323700144887, 0.005942381918430328, -0.013212206773459911, 0.004051466938108206, -0.027655065059661865, -0.01924792490899563, -0.0023212970700114965, -0.02029881812632084, -0.01630266010761261, -0.009458032436668873, 0.018141722306609154, 0.03423697128891945, 0.002860570792108774, -0.003159590996801853, -0.005524099338799715, -0.01504435483366251, 0.008476276881992817, 0.004324560519307852, 0.0012505274498835206, -0.016275005415081978, 0.008386398665606976, -0.012486261315643787, 0.011386972852051258, -0.005828304681926966, 0.033849798142910004, 0.05348489433526993, -0.020865745842456818, 0.006063372828066349, 0.00860072486102581, 0.0025425374042242765, 0.004753214307129383, 0.01970423385500908, 0.008275778032839298, 0.031084291636943817, 0.002566735725849867, 0.013696170412003994, 0.022303810343146324, 0.002959091914817691, 0.005506814923137426, -0.00955482479184866, -0.026299966499209404, 0.01216822862625122, 0.0021138840820640326, -0.01866716891527176, -0.030475880950689316, -0.0040825787000358105, 0.018432101234793663, -0.010882267728447914, -0.006122139748185873, 0.025760691612958908, -0.015887834131717682, 0.040542323142290115, -0.011449196375906467, -0.004611481912434101, -0.005251005291938782, 0.0004614938807208091, 0.03155442699790001, -0.01928940787911415, 0.003330706851556897, -0.0323287695646286, 0.02133588306605816, 0.013025535270571709, 0.027903959155082703, -0.019787197932600975, 0.010847698897123337, -0.0003530341782607138, 0.005174953956156969, -0.017270587384700775, 0.017519483342766762, -0.007155748084187508, 0.029895124956965446, 0.017408862709999084, 0.002841557841747999, 0.0006153251742944121, -0.029618574306368828, 0.013149983249604702, -0.02180601842701435, 0.012942570261657238, -0.0015089294174686074, -0.025885140523314476, 0.009506428614258766, 0.02491721324622631, -0.00881505198776722, -0.038744743913412094, 0.00807527918368578, 0.022801600396633148, -0.015901662409305573, 0.0317203588783741, 0.020423265174031258, -0.025871312245726585, 0.013613205403089523, -0.012437865138053894, -0.01717379502952099, 0.010170149616897106, 0.0021864785812795162, 0.0074530397541821, -0.006284613162279129, 0.012410210445523262, -0.01675896905362606, -0.021377364173531532, -0.008621466346085072, 0.01133166253566742, -0.009146912954747677, -0.015749558806419373, 0.0032321857288479805, 0.020810436457395554, -0.004901860374957323, -0.0376661978662014, -0.024530041962862015, -0.014422115869820118, 0.013654688373208046, 0.036394063383340836, -0.029424987733364105, 0.033573247492313385, 0.030863052234053612, -0.005589779932051897, 0.024073733016848564, -0.007190316915512085, -0.005143842194229364, -0.03409869596362114, 0.024806592613458633, -0.015293250791728497, -0.003437870182096958, 0.0179204810410738, -0.02607872523367405, -0.021902810782194138, 0.018169376999139786, 0.002767234807834029, 0.009326670318841934, -0.012659105472266674, 0.007439212407916784, -0.003169961739331484, -0.021916639059782028, 0.0003560589684639126, -0.6119512915611267, -0.005748796742409468, 0.014117910526692867, -0.016344143077731133, -0.0044904910027980804, 0.014546563848853111, 0.010107926093041897, 0.003045513993129134, -0.0019168416038155556, 0.01926175318658352, 0.006118683144450188, 0.016496246680617332, 0.0004519874637480825, -0.010951405391097069, -0.016676003113389015, -0.019773371517658234, 0.0154038704931736, 0.002597847720608115, 0.0016956011531874537, 0.007784900721162558, -0.0314161516726017, 0.042035698890686035, 0.00044766635983251035, -0.0047566709108650684, 0.02076895348727703, -0.010218546725809574, 0.021460330113768578, -0.013371223583817482, -0.012652192264795303, 0.00883579347282648, -0.03534317389130592, 0.03481772541999817, 0.029231403023004532, 0.0017578250262886286, 0.043667346239089966, -0.013958893716335297, -0.0032719396986067295, 0.0385788157582283, 0.01584635116159916, 0.02296753041446209, -0.024364111945033073, -0.004680619575083256, 0.02314728870987892, 0.03606220334768295, 0.0009601492783986032, -0.0012090448290109634, -0.009727668948471546, -0.007294023409485817, -0.018169376999139786, 0.0006948335212655365, -0.0015210285782814026, -0.020699815824627876, 0.00361589970998466, -0.0009437290718778968, 0.005199152044951916, -0.0013213935308158398, 0.019953129813075066, 0.0039201052859425545, 0.018736306577920914, 0.01763010397553444, 0.0026842697989195585, -0.008109848015010357, -0.007439212407916784, -0.05533778294920921, -0.03868943452835083, 0.019676579162478447, -0.017989618703722954, -0.012769726105034351, 0.018335307016968727, 0.009015550836920738, 0.015307078137993813, 0.00340675818733871, 0.0006274242768995464, -0.0035951584577560425, -0.008213554508984089, 0.02772420272231102, 0.0471242293715477, -0.009305928833782673, -0.007065868936479092, 0.014643356204032898, 0.003163048066198826, -0.005247548688203096, 0.001236699870787561, -0.02063067816197872, 0.021322054788470268, 0.011967728845775127, -0.00925753265619278, -0.016980210319161415, -0.004279621411114931, -0.013578636571764946, 0.02016054280102253, 0.010183977894484997, -0.005945838987827301, -0.04347376152873039, 0.01761627569794655, 0.030614156275987625, -0.00425887992605567, -0.007736504077911377, -0.006004605907946825, -0.01855654828250408, -0.044082172214984894, -0.02028498984873295, 0.009789892472326756, 0.004041096195578575, 0.029839813709259033, -0.00034093510475941, -0.02758592739701271, -0.019787197932600975, 0.014767804183065891, -0.010038788430392742, -0.00199980684556067, -0.017104657366871834, -0.030033400282263756, -0.007446126081049442, -0.011988470330834389, -0.020990194752812386, 0.0240184236317873, -0.0006987224915064871, -0.011718833819031715, -0.01747800037264824, -0.01482311449944973, 0.012036866508424282, 0.00925753265619278, 0.015777213498950005, -0.013979635201394558, 0.025677727535367012, 0.00018051410734187812, 0.011089680716395378, -0.002367964945733547, -0.009202222339808941, 0.0032460130751132965, -0.016952553763985634, 0.011960815638303757, -0.013571722432971, 0.034624140709638596, 0.005399651359766722, 0.007176489103585482, 0.011836367659270763, 0.017975792288780212, -0.028097545728087425, 0.0010362006723880768, 0.0030904533341526985, 0.011995384469628334, -0.010584975592792034, -0.00294872117228806, -0.01776837930083275, -0.023907802999019623, 0.03288187086582184, 0.006502396892756224, -0.006239674054086208, -0.03362855687737465, -0.03039291501045227, -0.014560391195118427, 0.03622813522815704, -0.005171496886759996, 0.0040549240075051785, 0.008621466346085072, -0.043058935552835464, -0.00303687178529799, -0.022013431414961815, -0.0006982903578318655, 0.022483566775918007, -0.008642207831144333, 0.00023074694036040455, -0.00611176947131753, -0.013682343065738678, -0.025594761595129967, 0.0031284792348742485, -0.005904356483370066, -0.02594044990837574, 0.009001723490655422, -0.020699815824627876, 0.018183205276727676, 0.02769654616713524, -0.021017849445343018, 0.016053764149546623, -0.01157364435493946, 0.002663528313860297, 0.004487034399062395, -0.00013449435937218368, 0.027668891474604607, 0.015251767821609974, -0.0189852025359869, 0.003830226371064782, 0.02430880255997181, 0.015514491125941277, 0.017837516963481903, 0.02311963401734829, -0.015804870054125786, 0.009941996075212955, 0.0067858612164855, 0.017602449283003807, 0.0008391583687625825, -0.0017526396550238132, -0.011884763836860657, -0.022746291011571884, -0.03509427607059479, -0.02537352219223976, -0.021446501836180687, 0.03487303480505943, 0.003871709108352661, 0.01613673008978367, -0.013654688373208046, 0.0014346064999699593, 0.0137238260358572, -0.02625848352909088, 0.010854613035917282, -0.0041206046007573605, 0.01598462648689747, -0.002910695504397154, -0.015168802812695503, -0.006806602701544762, -0.0007393408450298011, -0.04134432226419449, -0.00361589970998466, 0.020824262872338295, -0.02551179751753807, 0.00963778980076313, -0.0005911270272918046, 0.0010362006723880768, 0.006498940289020538, 0.02014671452343464, 0.025249073281884193, 0.008192813023924828, -0.007349333260208368, 0.011663523502647877, -0.00889801699668169, 0.010349907912313938, 0.016634522005915642, -0.026507379487156868, 0.00362972728908062, 0.022289982065558434, -0.003577874042093754, 0.0008918758248910308, 0.0232579093426466, 0.016122901812195778, 0.03100132755935192, -0.03008870966732502, 0.022289982065558434, -0.012479348108172417, -0.003826769534498453, 0.002940078964456916, 0.0376661978662014, -0.026756275445222855, 0.003055884735658765, 0.01810023933649063, 0.023465322330594063, -0.002207219833508134, -0.015141148120164871, 0.016205867752432823, 0.0021951207891106606, 0.011380058713257313, -0.020049922168254852, -0.02179219014942646, 0.034900691360235214, -0.012762811966240406, 0.0005574224051088095, 0.013246775604784489, 0.01192624680697918, 0.013004793785512447, -0.011953901499509811, 0.0231058057397604, -0.0019565958064049482, -0.007556746248155832, 0.02578834816813469, -0.024695971980690956, -0.006578448228538036, -0.022760117426514626, -0.01675896905362606, -0.013309000059962273, -0.0022538877092301846, -0.022898392751812935, -0.01761627569794655, -0.0020948711317032576, -0.016800452023744583, 0.007618970237672329, 0.004753214307129383, 0.02166774310171604, -0.004521603230386972, 0.00488803256303072, -0.013177637942135334, -0.023824838921427727, 0.02267715334892273, -0.003095638705417514, -0.011138076893985271, -0.018916064873337746, -0.023202599957585335, -6.95157577865757e-05, 0.0091123441234231, 0.010080271400511265, -0.006737465038895607, -0.005371996201574802, -0.016233522444963455, 0.014297667890787125, -0.009700014255940914, 0.016869589686393738, 0.04930897802114487, -0.013951979577541351, -0.021557122468948364, 0.0035312059335410595, 0.010052615776658058, 0.01192624680697918, -0.01765775866806507, -0.027502961456775665, 0.036698270589113235, -0.028844231739640236, -0.006218932569026947, 0.0038544246926903725, 0.027005169540643692, -0.0323287695646286, 0.013094672933220863, -0.027032826095819473, -0.02639675885438919, -0.008476276881992817, -0.017878999933600426, 0.001588437706232071, -0.017284415662288666, -0.017754551023244858, 0.036532338708639145, 0.008614552207291126, -0.01133166253566742, -0.022621842101216316, -0.010121753439307213, 0.025000177323818207, 0.05868404731154442, 0.01326751708984375, -0.01304627675563097, 0.025138452649116516, -0.022760117426514626, -0.015224113129079342, -0.012154401279985905, -0.020119059830904007, 0.03957439586520195, -0.012935656122863293, -0.004715188406407833, -0.003633184125646949, 0.033849798142910004, -0.00105521350633353, 0.0033912023063749075, 0.012188970111310482, -0.001662760740146041, -0.018127894029021263, -0.016703659668564796, 0.0025356237310916185, -0.0129633117467165, -0.002132896799594164, 0.0352325513958931, 0.024557696655392647, 0.04433107003569603, 0.029701538383960724, 0.03738964721560478, 0.006187820807099342, 0.009582479484379292, -0.026064898818731308, -0.00985211692750454, 0.008994809351861477, -0.01767158694565296, 0.018860753625631332, -0.001718935091048479, 0.02444707788527012, 0.0009247162379324436, -0.021529467776417732, -0.0149060795083642, 0.01178797148168087, -0.01075090654194355, 0.002641058759763837, 0.001374111045151949, -0.014297667890787125, 0.003564046462997794, -0.02772420272231102, 0.011082767508924007, 0.03805336728692055, -0.022359119728207588, -0.0011658337898552418, 0.009430376812815666, 0.0016835019923746586, -0.01282503642141819, 0.00775033188983798, 0.0024129042867571115, -0.001818320481106639, -0.009582479484379292, -0.004521603230386972, -0.023631252348423004, -0.04106777161359787, -0.05293179303407669, -0.004576913081109524, -0.008980982005596161, -0.025885140523314476, -0.02223467268049717, -0.01913730427622795, -0.005655460525304079, 0.01059188973158598, -0.019801026210188866, 0.010958319529891014, 0.018003446981310844, -0.030144020915031433, -0.036670614033937454, 0.016814278438687325, 0.03113960288465023, 0.01897137425839901, 0.015542145818471909, 0.005938925314694643, -0.008275778032839298, 0.012541571632027626, 0.008531587198376656, -0.030171675607562065, 0.008904931135475636, -0.016814278438687325, -0.015362388454377651, -0.024848075583577156, -0.024391766637563705, 0.0012755898060277104, -0.026438241824507713, -0.0017474544001743197, 0.011843281798064709, -0.032411735504865646, -0.003303051693364978, 0.012513916939496994, 0.010716337710618973, 0.0433078296482563, 0.019496820867061615, 0.00737007474526763, 0.02329939231276512, -0.03752792254090309, 0.014311496168375015, -0.0013084302190691233, 0.007093524094671011, -0.01584635116159916, 0.0021190692204982042, -0.01348875742405653, 0.005057420115917921, -0.014408288523554802, -0.003458611434325576, -0.036808889359235764, -0.012244279496371746, -0.011960815638303757, 0.0007756381528452039, -0.019635096192359924, -0.0018978287698701024, 0.00889801699668169, 0.003182060783728957, 0.02936967834830284, -0.009582479484379292, -0.023907802999019623, 0.008255036547780037, -0.03589627519249916, 0.04065294563770294, 0.008552328683435917, 0.002307469490915537, 0.01910964958369732, 0.023479150608181953, -0.01007335726171732, -0.03437524661421776, 0.01984250918030739, 0.01451890915632248, 0.022511223331093788, 0.002760321134701371, -0.007805641740560532, -0.007867866195738316, -0.019828680902719498, -0.0017197993583977222, 0.00041914707981050014, -0.018293825909495354, -0.005461875349283218, -0.014767804183065891, -0.0026134036015719175, 0.027627408504486084, 0.0014605331234633923, -0.0040307254530489445, -0.02566389925777912, -0.027751857414841652, -0.005289031192660332, 0.01512731984257698, 0.019068166613578796, -0.02000843919813633, -0.024778937920928, -0.02625848352909088, -0.013820618391036987, 0.003462068270891905, 0.0010699053527787328, 0.0044766636565327644, 0.007812555879354477, 0.05890528857707977, 0.02506931498646736, 0.029424987733364105, 0.022428257390856743, 0.020824262872338295, 0.01090992335230112, -0.02076895348727703, -0.0116289546713233, -0.004659878555685282, -0.027475306764245033, 3.821476275334135e-05, 0.005655460525304079, 0.011698092333972454, -7.582186754007125e-06, -0.0241705272346735, 0.022497395053505898, -0.001500287209637463, 0.006768576800823212, 0.002240060130134225, -0.004718645475804806, -0.035370826721191406, -0.04358438029885292, -0.010502010583877563, 0.01825234293937683, 0.007020929362624884, -0.0017733810236677527, -0.023769527673721313, 0.000262074958300218, 0.03349028155207634, -0.0149060795083642, 0.03382214531302452, 0.003016130533069372, 0.03849584981799126, 0.007238713093101978, -0.0007527362904511392, -0.0044974046759307384, 0.01541769877076149, -0.040984805673360825, -0.014394461177289486, -0.03456883132457733, -0.010619544424116611, -0.004331474658101797, 0.0042104837484657764, 0.024557696655392647, -0.0034136720933020115, 0.010723250918090343, 0.002312654862180352, 0.015569801442325115, -0.028788922354578972, -0.018307652324438095, 0.014809287153184414, -0.03703013062477112, -0.00837948452681303, -0.032992493361234665, -0.014214702881872654, -0.020063748583197594, -0.021736880764365196, 0.013896670192480087, -0.0016990579897537827, 0.023188771679997444, -0.023783355951309204, -0.007957744412124157, 0.027364686131477356, -0.0238663200289011, 0.02565007284283638, 0.036698270589113235, 0.03915956988930702, 0.002915880875661969, 0.008559242822229862, -0.025871312245726585, -0.02018819749355316, 0.005192238371819258, -0.03066946566104889, -0.0041862851940095425, 0.04007218778133392, -0.02639675885438919, -0.015334732830524445, 0.00041093697655014694, -0.023658907040953636, -0.002449201652780175, -0.032688286155462265, 0.02222084440290928, 0.019068166613578796, -0.00024565475177951157, -0.032079875469207764, -0.019635096192359924, -0.00883579347282648, 0.023797182366251945, -0.007007102016359568, 0.0003735594218596816, -0.0006654500029981136, -0.001304109115153551, 0.013696170412003994, 0.027088135480880737, 0.006834257859736681, 0.012603795155882835, -0.010578062385320663, 0.00581447733566165, 0.01717379502952099, 0.002371421782299876, -0.0012462063459679484, -0.010785475373268127, -0.010190891101956367, 0.03678123652935028, -0.023340875282883644, -0.011525248177349567, 0.018279997631907463, 0.010916836559772491, -0.004013441037386656, 0.0123134171590209, -0.017865171656012535, 0.031665049493312836, -0.009706927463412285, -0.014200875535607338, 0.013779135420918465, 0.04048701375722885, 0.011843281798064709, -0.008994809351861477, -0.012043780647218227, -0.004137889016419649, 0.0002953474468085915, 0.006256958469748497, 0.014615701511502266, -0.034762416034936905, -0.019662750884890556, -0.00957556627690792, 0.004065294284373522, -0.011124249547719955, 0.015320905484259129, -0.007895520888268948, 0.023838665336370468, -0.041593216359615326, -0.003619356546550989, 0.014947562478482723, -0.012901087291538715, -0.00035649107303470373, 0.0005271746776998043, -0.0036020721308887005, -0.008856534026563168, 0.022276153787970543, -0.029563263058662415, 0.014712493866682053, 0.041150737553834915, 0.0098728584125638, -0.03393276408314705, 0.009810633957386017, -0.025677727535367012, -0.004746300633996725, 0.0129633117467165, 0.004466292914003134, -0.03036526031792164, -0.006993274204432964, 0.01216822862625122, 0.0015530047239735723, 0.002737851347774267, -0.0043211039155721664, 0.01761627569794655, 0.011144991032779217, 0.008386398665606976, -0.014698666520416737, 0.012617623433470726, 0.0017837516497820616, -0.007992313243448734, 0.015348561108112335, 0.007390815764665604, -0.008172071538865566, 0.000386090629035607, -0.00011234870180487633, -0.0035536757204681635, -0.020271161571145058, -0.03514958545565605, -0.030724776908755302, -0.011746488511562347, 0.005126557778567076, 0.006626844871789217, 0.01090992335230112, 0.008808137848973274, -0.007992313243448734, -0.022303810343146324, 0.02270480804145336, -0.040846530348062515, 0.000485259952256456, 0.0234100129455328, -0.002055116929113865, 0.010661027394235134, 0.018750132992863655, -0.013094672933220863, -0.038910675793886185, -0.016786623746156693, -0.025249073281884193, -0.04729016125202179, -0.007307850755751133, 0.004625309724360704, 0.043224867433309555, -0.0021190692204982042, -0.017547138035297394, -0.016344143077731133, -0.018017275258898735, -0.031499117612838745, -0.019925473257899284, -0.039961569011211395, 0.01059188973158598, 0.009409635327756405, 0.02179219014942646, 0.018929891288280487, 0.019040511921048164, -0.006516224704682827, 0.00571422791108489, -0.034319933503866196, 0.00045501222484745085, -0.013087758794426918, -0.01973188854753971, 0.0367535799741745, -0.014394461177289486, -0.0545910969376564, 0.006336466409265995, -0.004583826754242182, -0.013246775604784489, 0.015832524746656418, -0.0007570573943667114, 0.003188974689692259, -0.0034430555533617735, -0.010854613035917282, 0.018418272957205772, 0.008510845713317394, 0.017574792727828026, 0.017699241638183594, -0.020962538197636604, 0.005752253346145153, 0.011532162316143513, -0.00422085402533412, -0.00822046771645546, 0.010308424942195415, 0.00645400071516633, -0.015486836433410645, 0.000364053004886955, -0.0009782979032024741, -0.012742070481181145, -0.0015832524513825774, 0.004552714992314577, -0.0011424998519942164, 0.029590919613838196, 0.020395610481500626, 0.05157669633626938, -0.038910675793886185, -0.007515263743698597, -0.005212979856878519, 0.006281156558543444, 0.0012064521433785558, 0.015141148120164871, 0.03113960288465023, -0.013288258574903011, 0.002459572395309806, -0.00567620201036334, -0.006011519581079483, 0.005662374664098024, -0.017132312059402466, -0.014394461177289486, -0.002200306160375476, -0.01119338721036911, 0.006149794906377792, -0.0045492579229176044, -0.0016765883192420006, 0.002900324994698167, 0.0007043399382382631, -0.007148833945393562, 0.025470314547419548, -0.005206065718084574, 0.0155559740960598, -0.013246775604784489, -0.025746865198016167, 0.003425771137699485, 0.01061263121664524, -0.035647377371788025, 0.0046460507437586784, 0.029673883691430092, 0.020934883505105972, 0.0027689633425325155, 0.19557662308216095, 0.007128092925995588, 0.01386210136115551, 0.02522141858935356, 0.017906654626131058, 0.008932585828006268, 0.029535608366131783, 0.006025347393006086, -0.020934883505105972, 0.010405218228697777, 0.004929515067487955, 0.002381792524829507, -0.011725747026503086, 0.00015512762183789164, 0.014117910526692867, -0.018293825909495354, -0.026894550770521164, -0.015832524746656418, -0.014546563848853111, 0.013744566589593887, 0.0018252342706546187, -0.01573573239147663, -0.015445353463292122, -0.0010016318410634995, 0.02162626013159752, 0.010432872921228409, -0.00220894836820662, 0.003685037372633815, 0.028083717450499535, 0.02372804470360279, -0.009222963824868202, 0.00504704937338829, 0.016841934993863106, -0.006647585891187191, -0.01674514077603817, -0.00500902347266674, 0.015777213498950005, -0.0044974046759307384, -0.003418857231736183, 0.02017436921596527, 0.00043535121949389577, -0.020049922168254852, 0.006955248769372702, -0.02162626013159752, 0.010944492183625698, -0.004213940352201462, -0.01570807583630085, 0.0194415096193552, -0.006744378712028265, 0.027088135480880737, -0.006523138377815485, 0.002786247758194804, 0.0005673609557561576, 0.01348184421658516, 0.0005124828894622624, 0.008683689869940281, -0.005949295591562986, 0.005351255182176828, -0.013281344436109066, -0.024073733016848564, -0.018335307016968727, 0.0013913954608142376, -0.00723179941996932, -0.008386398665606976, -0.03487303480505943, 0.005078161135315895, -0.025857485830783844, 0.03368386998772621, -0.006547336466610432, -0.0041586305014789104, -0.0022694438230246305, 0.003567503299564123, -0.03155442699790001, -0.0040825787000358105, -0.03083539754152298, -0.01703551970422268, 0.014643356204032898, 0.007895520888268948, 0.014795459806919098, 0.013371223583817482, -0.012375641614198685, 7.000187906669453e-05, -0.03160974010825157, -0.012555398978292942, 0.008372570388019085, -0.016662176698446274, 0.03097367286682129, -0.0266871377825737, -0.00756365992128849, -0.028650647029280663, 0.000929901550989598, 0.02046474814414978, -0.004659878555685282, -0.02046474814414978, -0.0017474544001743197, -0.015680421143770218, 0.012624536640942097, 0.018017275258898735, -0.015141148120164871, -0.02624465525150299, -0.012216624803841114, 0.05351255089044571, 0.009824461303651333, 0.024986350908875465, -0.026051070541143417, 0.023755701258778572, 0.005492987111210823, 0.02889954298734665, -0.007439212407916784, -0.013454188592731953, 0.0023472236935049295, -0.03985094651579857, 0.011960815638303757, -0.016095247119665146, 0.0035312059335410595, 0.026452068239450455, 0.023340875282883644, -0.01657921075820923, 0.013938152231276035, -0.020575368776917458, 0.013917410746216774, 0.002685998100787401, 0.01761627569794655, 0.011843281798064709, -0.03514958545565605, -0.03777681663632393, 0.005862873513251543, 0.02696368843317032, -0.036089859902858734, -0.02000843919813633, 0.010598803870379925, -0.015943145379424095, 0.016676003113389015, -0.011767229996621609, -0.018031101673841476, 0.017588621005415916, 0.03304780274629593, -0.0012142302002757788, -0.005766081158071756, -0.022580360993742943, -0.002044746419414878, 0.013080845586955547, 0.019482992589473724, 0.004103320185095072, -0.0020758581813424826, 0.007294023409485817, 0.012928742915391922, -0.004352215677499771, 0.003078354289755225, -0.02741999551653862, 0.0014760891208425164, 0.007162661757320166, 0.005572495516389608, -0.0022020344622433186, 0.035675033926963806, -0.007217971608042717, -0.026272311806678772, -0.03279890492558479, 0.0034465123899281025, 0.01793430931866169, -0.03573034331202507, 0.002611675066873431, 0.03528786078095436, 0.010107926093041897, -0.0232579093426466, 0.008227381855249405, -0.1759968250989914, 0.007618970237672329, 0.002685998100787401, -0.004345302004367113, 0.03407103940844536, 0.00860072486102581, -0.003944303374737501, 0.005226807203143835, 0.0003279717930126935, 0.001181389787234366, 0.018017275258898735, 0.008102933876216412, -0.017422690987586975, -0.0041206046007573605, 0.023009013384580612, 0.004345302004367113, -0.01422853022813797, 0.031775668263435364, 0.04875588044524193, 0.005662374664098024, 0.026120208203792572, -0.040542323142290115, -0.008697518147528172, 0.00029232268570922315, 0.02964622899889946, -0.0008629244402982295, -0.00881505198776722, 0.01274898461997509, -0.0021674656309187412, -0.028374096378684044, -0.0031803324818611145, -0.006291527301073074, 0.012769726105034351, 0.004597654566168785, 0.02269097976386547, -0.001885729725472629, 0.016966382041573524, -0.008946413174271584, -0.002032647142186761, 0.012728243134915829, 0.019953129813075066, 0.02267715334892273, 0.0161643847823143, 0.0019635094795376062, 0.005683115683495998, 0.01436680555343628, 0.01392432488501072, -0.011622040532529354, 0.008642207831144333, -0.018307652324438095, 0.033711522817611694, -0.021252917125821114, 0.0019237553933635354, 0.006274242885410786, 0.006706353276968002, 0.006761663127690554, 0.007522177416831255, 0.024364111945033073, 0.009962736628949642, -0.028844231739640236, 0.01895754598081112, 0.0009601492783986032, 0.014615701511502266, -0.02003609389066696, -0.005247548688203096, -0.03315842151641846, 0.012417123652994633, 0.011068939231336117, 0.00618436373770237, -0.011062026023864746, 0.012548485770821571, 0.0007644032593816519, -0.00262895948253572, 0.021764535456895828, 0.009312842972576618, 0.017602449283003807, -0.02711579017341137, 0.009264446794986725, 0.030199330300092697, -0.010349907912313938, 0.003892450360581279, 0.009243705309927464, -0.018598031252622604, -3.961912079830654e-05, -0.006436716299504042, 0.006848085206001997, -0.002959091914817691, 0.0022798143327236176, -0.025442659854888916, 0.011338576674461365, 0.022718636319041252, -0.012161314487457275, 0.0010820043971762061, 0.001155463163740933, 0.018418272957205772, -0.010626458562910557, 0.04388858750462532, -0.010405218228697777, 0.01662069372832775, -0.008842706680297852, 0.006837714463472366, 0.014117910526692867, -0.02266332507133484, 0.012984052300453186, 0.032992493361234665, 0.032522354274988174, 0.003716149367392063, -0.003778373124077916, 0.04123369976878166, -0.0155559740960598, -0.01504435483366251, 0.009319757111370564, 0.02625848352909088, 0.012188970111310482, -0.002627231180667877, 0.04466293007135391, -0.01572190411388874, -0.021266745403409004, 0.00822046771645546, -0.020547712221741676, 0.047096576541662216, -0.032660629600286484, -0.03600689396262169, 0.02370039001107216, 0.004348759073764086, -0.011089680716395378, -0.09994540363550186, -0.005762624088674784, 0.017837516963481903, 0.01662069372832775, -0.014560391195118427, 0.0024059906136244535, -0.00010959399514831603, 0.04731781408190727, -0.013751480728387833, 0.02712961845099926, -0.024861901998519897, -0.031526774168014526, -0.007321678102016449, -0.002485499018803239, 0.005949295591562986, -0.008310346864163876, -0.006422888487577438, -0.011456110514700413, -0.007418470922857523, 0.03968501836061478, 0.016067592427134514, -0.008116761222481728, 0.023824838921427727, -0.016814278438687325, -0.019911646842956543, -0.018570376560091972, -0.03169270232319832, 0.020796608179807663, 0.009008637629449368, 0.01356480922549963, 0.016482418403029442, -0.014062600210309029, 0.024087561294436455, -0.022566532716155052, -0.03066946566104889, -0.012299589812755585, -0.01895754598081112, -0.02892719767987728, 0.008351829834282398, -0.0317203588783741, 0.007729590404778719, -0.0004105048719793558, -0.02566389925777912, -0.020243506878614426, -0.006485112477093935, -0.003747261129319668, -0.010301511734724045, 0.029867470264434814, 0.003285767277702689, -0.014574218541383743, -0.00020482031686697155, -0.012956397607922554, -0.001678316737525165, -0.0272955484688282, 0.02045091986656189, -0.002385249361395836, 0.018349135294556618, 0.013640860095620155, -0.012583054602146149, -0.0040238117799162865, 0.007314764428883791, 0.007321678102016449, -0.022621842101216316, 0.02595427818596363, -0.01496138982474804, 0.03155442699790001, 0.0023264822084456682, -0.010495097376406193, -0.01409025490283966, 0.003733433783054352, -0.01601228304207325, -0.0033237929455935955, -0.02122526243329048, -0.0008663813350722194, -0.003029958112165332, -0.007086610421538353, -0.016980210319161415, -0.02372804470360279, 0.018750132992863655, 0.004718645475804806, -0.011386972852051258, -0.009651617147028446, 0.005472246091812849, -0.038744743913412094, 0.017312070354819298, 0.012914914637804031, 0.008213554508984089, 0.004642594140022993, 0.03589627519249916, -0.02740616910159588, 0.025027833878993988, 0.01659303903579712, 0.01749182865023613, -0.023949285969138145, -0.0033168792724609375, 0.012375641614198685, -0.0292037483304739, 0.01194698829203844, 0.02535969391465187, -0.004397155251353979, -0.02151563949882984, -0.010253115557134151, -0.06034335121512413, 0.028650647029280663, 0.004020355176180601, 0.013716911897063255, -0.0031578626949340105, -0.014698666520416737, -0.005859416909515858, -0.007031300105154514, 0.0027430367190390825, 0.01370999775826931, -0.020381782203912735, 0.014588046818971634, -0.026341449469327927, -0.02491721324622631, -0.026313792914152145, -0.016994036734104156, 0.0026687136851251125, -0.002981561701744795, 0.023036668077111244, 0.008987896144390106, -0.014124823734164238, 0.009948909282684326, 0.008745914325118065, 0.0298121590167284, -0.0020983279682695866, 0.0002897300000768155, -0.018404444679617882, 0.019040511921048164, -0.006761663127690554, -0.006087570916861296, 0.014892252162098885, 0.0016618964727967978, -0.013391965068876743, 0.026134036481380463, -0.0128872599452734, -0.04214631766080856, 0.008994809351861477, -0.009181481786072254, 0.02177836373448372, -0.00296254875138402, -0.01586017943918705, -0.016205867752432823, 0.037749163806438446, 0.0008473684429191053, -0.011338576674461365, -0.001637698384001851, -0.008711345493793488, -0.021764535456895828, 0.020091405138373375, 0.01051583793014288, 0.04286535084247589, 0.007964658550918102, -0.004410982597619295, -0.032854218035936356, -0.0016100432258099318, 0.004072208423167467, 0.024931039661169052, 0.01688341610133648, 0.0012280576629564166, -0.018266169354319572, 0.052406348288059235, 0.004207026679068804, 0.020063748583197594, -0.007169575430452824, 0.0028916827868670225, -0.02089340053498745, -0.06017741933465004, 0.004511232487857342, 0.0014864597469568253, -0.044082172214984894, 0.0014389276038855314, -0.015652766451239586, 0.030586501583456993, 0.023672735318541527, 0.01408334169536829, 0.002812174381688237, -0.00934049766510725, -0.015528318472206593, -0.023645080626010895, 0.03279890492558479, 0.029563263058662415, -0.005534469615668058, -0.026797756552696228, 0.005299401935189962, 0.02876126766204834, 0.013011707924306393, -0.010190891101956367, 0.020976366475224495, 0.025705382227897644, -0.005918183829635382, -0.01230650395154953, -0.010965232737362385, -0.014152479358017445, 0.005766081158071756, 0.02995043434202671, 0.033269044011831284, -0.013716911897063255, 0.023216426372528076, 0.027986925095319748, 0.03133318945765495, 0.00696216244250536, 0.017851343378424644, 0.003581330878660083, 0.0012920100707560778, -0.02654886245727539, 0.017823688685894012, -0.027101963758468628, -0.022455912083387375, 0.018003446981310844, 0.023824838921427727, -0.004569999407976866, -0.0032166296150535345, -0.005022851284593344, 0.009969650767743587, -0.009126171469688416, -0.004863834474235773, -0.005254462361335754, -0.02206874080002308, -0.02166774310171604, -0.01088918186724186, 0.0007661317358724773, 0.02534586563706398, 0.02414287067949772, -0.010495097376406193, 0.020257335156202316, 0.01852889358997345, -0.00529594486579299, -0.006381405983120203, 0.02342383936047554, -0.03440289944410324, 0.02726789377629757, -0.0013386779464781284, 0.010059529915452003, -0.0008119354024529457, -0.019621267914772034, -0.013281344436109066, -0.019676579162478447, 0.015224113129079342, 0.0005708177923224866, 0.0873900055885315, 0.036698270589113235, -0.034181658178567886, 0.006699439138174057, -0.027599753811955452, 0.003968501929193735, 0.01851506531238556, -0.021086987107992172, 0.005752253346145153, -0.020437093451619148, 0.01023928727954626, -0.0004511232255026698, -0.030116364359855652, -0.01706317439675331, -0.0195936132222414, -0.004870748147368431, 0.01156673114746809, 0.007100437767803669, -0.03191394358873367, 0.01779603399336338, 0.021916639059782028, -0.025470314547419548, 0.03927019238471985, -0.008102933876216412, -0.02581600286066532, -0.005983864422887564, 0.04427575692534447, 0.01550066377967596, -0.00047877829638309777, -0.03633875399827957, 0.012507002800703049, -0.0033393490593880415, -0.019206441938877106, -0.004203569609671831, -0.010923750698566437, -0.007086610421538353, -0.012928742915391922, -0.019386200234293938, -0.0005829168949276209, 0.0197457168251276, -0.005869787652045488, 0.023009013384580612, -0.027516789734363556, -0.011684264987707138, 0.015652766451239586, -0.0006969940732233226, 0.010045702569186687, -0.022179361432790756, -0.0025650071911513805], "cd5ca5e5-1a1f-4db1-8565-edcad71fbb05": [-0.018711978569626808, -0.007004872430115938, 0.005699466448277235, -0.034293752163648605, -0.0007691336213611066, 0.018490370362997055, -0.009487568400800228, -0.03102504089474678, -0.02409980818629265, -0.0565652996301651, 0.01682831533253193, -0.005515947472304106, 0.009875381365418434, -0.013116390444338322, 0.001713129342533648, 0.01957070641219616, 0.02328263223171234, 0.006921770051121712, 0.016689810901880264, -0.013677334412932396, -0.022534705698490143, -0.007520802319049835, -0.025304799899458885, -0.010484801605343819, -0.02883666753768921, 0.0005574811948463321, 0.0469253771007061, -0.01778399758040905, -0.01045017596334219, 0.013829689472913742, 0.011038820259273052, -0.013538829050958157, -0.0135803809389472, -0.025401752442121506, -0.0119183249771595, -0.007053349167108536, 0.011883699335157871, -0.002576186554506421, 0.0011305442312732339, -0.016592856496572495, 0.012964035384356976, 0.011412783525884151, -0.004671069327741861, -0.0004051261057611555, -0.00044840879854746163, 0.025595659390091896, 0.007036036346107721, -0.01741003431379795, -0.009542969986796379, 0.003663447918370366, -0.014542988501489162, 0.028504256159067154, -0.016288146376609802, 0.00785321369767189, -0.025124743580818176, -0.0028064504731446505, 0.010283970274031162, 0.013469576835632324, 0.007223017513751984, 0.00406857393682003, 0.01238924078643322, 0.0038538919761776924, -0.0104986522346735, -0.002439413219690323, -0.01616349257528782, -0.03950152546167374, -0.02138511836528778, -0.017451586201786995, -0.013691185042262077, -0.013559604994952679, 0.023005621507763863, 0.04121898487210274, -0.01376043725758791, -0.0024671140126883984, -0.004875363782048225, -0.007153765298426151, 0.0044182981364429, -0.006675924174487591, -0.012590073049068451, -0.012839380651712418, 0.015747979283332825, 0.0023753547575324774, -0.00032375461887568235, -0.010817212983965874, 0.01656515523791313, 0.0508866086602211, -0.0022264623548835516, -0.003763863816857338, -0.003580345306545496, -0.0003239710349589586, 0.010997269302606583, 0.019736912101507187, 0.016897566616535187, 0.03290870413184166, -0.0007648053579032421, 0.018795080482959747, 0.023421136662364006, 0.0017884413246065378, 0.004089349880814552, -0.023047173395752907, -0.03595580533146858, 0.005436307284981012, 0.0002237715816590935, -0.02146822027862072, -0.041856106370687485, -0.007389223203063011, 0.024626126512885094, -0.006755564361810684, -0.0012448105262592435, 0.02091420255601406, -0.0044182981364429, 0.027479322627186775, 0.001790172653272748, -0.0027822121046483517, -0.015097007155418396, -0.007195316720753908, 0.009432166814804077, -0.03889210522174835, 0.010076213628053665, -0.02268706075847149, 0.008047119714319706, 0.005654452368617058, 0.03152365982532501, -0.02468152903020382, 0.0059730131179094315, -0.0021675978787243366, 0.0004096707853022963, -0.017354631796479225, 0.0166621096432209, -0.010069288313388824, 0.03263169527053833, 0.02516629546880722, -0.004130901303142309, 0.013303371146321297, -0.03867049887776375, 0.01480614673346281, -0.01693911850452423, 0.009162082336843014, -0.001645608339458704, -0.014501436613500118, 0.02252085693180561, 0.03365663066506386, 0.006087279412895441, -0.033241115510463715, 0.005512485280632973, 0.02412750944495201, -0.017368482425808907, 0.02458457462489605, 0.01545711886137724, -0.02164827659726143, 0.005509022623300552, -0.016288146376609802, -0.02268706075847149, 0.023241080343723297, 0.020498687401413918, 0.0006933889235369861, 0.011551287956535816, 0.025886518880724907, -0.01797790266573429, 0.0014655523700639606, -0.003916218876838684, 0.013988969847559929, -0.0007384028867818415, -0.008019419386982918, -0.0008881610701791942, 0.03113584592938423, 0.0009323094272986054, -0.041385188698768616, -0.013005586341023445, -0.010609456337988377, 0.01710532419383526, 0.03368433192372322, -0.024362968280911446, 0.022839415818452835, 0.00813714787364006, 0.012839380651712418, 0.02515244483947754, -0.007659307215362787, -0.011752119287848473, -0.02344883792102337, 0.030997341498732567, 0.003021132666617632, -0.003112891921773553, 0.02090035192668438, -0.028421154245734215, -0.029113678261637688, 0.022714762017130852, 0.007763185538351536, 0.015166259370744228, 0.0009582790662534535, 0.01523551158607006, 0.005626751575618982, -0.015872633084654808, -0.0121607081964612, -0.6160686612129211, -0.0010361878667026758, 0.025955772027373314, -0.028642762452363968, -0.0025034714490175247, 0.01835186593234539, 0.018892034888267517, 0.0043836720287799835, -0.021717529743909836, 0.030664930120110512, 0.0150000536814332, 0.00418284023180604, -0.005505559965968132, -0.0019182893447577953, -0.02101115509867668, -0.0345984622836113, 0.01645435206592083, 0.0003514555573929101, -0.00418284023180604, 0.007271494250744581, -0.01547096949070692, 0.02894747257232666, -0.002550216857343912, 0.006558195222169161, 0.011073446832597256, -0.01257622241973877, 0.019736912101507187, -0.017853248864412308, -0.0195014551281929, 0.02138511836528778, -0.03639902174472809, 0.023892052471637726, 0.032354686409235, -0.0036011207848787308, 0.03698074072599411, -0.010470951907336712, -0.016966819763183594, 0.02686990238726139, 0.012465418316423893, 0.04060956463217735, -0.020955752581357956, -0.011482035741209984, 0.015332465060055256, 0.019182894378900528, 0.0005354070453904569, -0.0032635158859193325, -0.01306098885834217, 0.01739618368446827, -0.01329644676297903, -0.008213325403630733, -0.006170382257550955, -0.029002873227000237, 0.003857354400679469, -0.007105288561433554, 0.008185625076293945, 0.009916933253407478, 0.032493188977241516, 0.010651007294654846, 0.008594213053584099, 0.011572063900530338, 0.0076523819006979465, 0.010290895588696003, -0.008545736782252789, -0.04567883163690567, -0.0422162190079689, 0.015110856853425503, -0.026911454275250435, -0.014134399592876434, 0.004598354455083609, 0.003992396406829357, 0.014529137872159481, -0.008400307036936283, 0.001375524327158928, -0.004619129933416843, -0.00930751208215952, 0.031080443412065506, 0.039030611515045166, -0.006409302819520235, -0.003923144191503525, 0.01921059563755989, -0.008774269372224808, -0.0035076302010565996, 0.00666553620249033, -0.033739734441041946, 0.031052742153406143, 0.0102562690153718, -0.022077640518546104, -0.010983418673276901, -0.012943259440362453, -0.0005925401928834617, 0.00930751208215952, 0.013504203408956528, -0.004529102239757776, -0.026980705559253693, 0.031163545325398445, 0.03983393684029579, 0.004439074080437422, -0.0009080711170099676, 0.000877773214597255, -0.014321381226181984, -0.03717464953660965, -0.0422162190079689, 0.003936994820833206, 0.015138558112084866, 0.036648329347372055, 0.01144740916788578, -0.03279790282249451, -0.00013623230915982276, 0.021606724709272385, -0.010145465843379498, 0.004626055248081684, -0.013732735998928547, -0.028642762452363968, -0.009203634224832058, -0.00025017402367666364, -0.025041639804840088, 0.02648208849132061, 0.0013625394785776734, -0.009951558895409107, -0.008767344057559967, -0.023670444265007973, 0.01626044511795044, -0.003978546243160963, -0.002506934106349945, -0.0067486390471458435, 0.026883753016591072, 0.01470919419080019, 0.020124725997447968, -0.0018247987609356642, -0.008421082980930805, 0.006596283987164497, -0.003961232956498861, 0.003698074258863926, -0.008864297531545162, 0.03842119127511978, -0.008587288670241833, 0.009058204479515553, -0.005626751575618982, 0.012957110069692135, -0.03620511665940285, 0.006513181142508984, -0.0048892139457166195, 0.023213379085063934, -0.020277081057429314, 0.009819979779422283, -0.011184250004589558, -0.017756296321749687, 0.02364274300634861, -0.0029605368617922068, -0.028254948556423187, -0.020651042461395264, -0.02544330433011055, 0.00048346779658459127, 0.017008371651172638, -0.0035907330457121134, 0.006388526875525713, 0.0007864467334002256, -0.031357452273368835, -0.012167633511126041, -0.026551341637969017, -0.011295054107904434, 0.004220928996801376, -0.008337980136275291, 0.006094204727560282, -0.015069305896759033, -0.005418994463980198, -0.03592810779809952, 0.012285361997783184, -0.0064889430068433285, -0.015249362215399742, -0.01527706254273653, -0.0165513064712286, 0.011516661383211613, 0.028892070055007935, -0.011669016443192959, 0.005124671850353479, -0.01400282047688961, 0.00761083047837019, -0.0022610884625464678, 0.0022835955023765564, 0.022548556327819824, 0.021537473425269127, -0.017645493149757385, -0.009141307324171066, 0.025498706847429276, 0.013033287599682808, 0.01919674500823021, 0.023795098066329956, -0.022728612646460533, -0.012361539527773857, 0.00477841030806303, 0.02364274300634861, -0.011468185111880302, 0.00690445676445961, -0.020692594349384308, -0.013497278094291687, -0.022174594923853874, -0.020941903814673424, -0.020360182970762253, 0.03916911408305168, 0.014972352422773838, 0.002583111636340618, -0.015637174248695374, -0.0012223034864291549, 0.012139932252466679, -0.03252089023590088, 0.012423867359757423, -0.00950141903012991, 0.012250736355781555, -0.010671783238649368, -0.005491709336638451, -0.008573438040912151, -0.0107410354539752, -0.03340732306241989, -0.0015521177556365728, 0.016108090057969093, -0.01551252044737339, 0.01338647399097681, -0.014141324907541275, 0.0023355346638709307, 0.004982704762369394, 0.014889249578118324, 0.026315882802009583, 0.01835186593234539, -0.0011417977511882782, 0.01291555818170309, -0.009487568400800228, 0.0010560979135334492, 0.015207810327410698, -0.03581730276346207, -0.01927984692156315, 0.01645435206592083, 0.0013036750024184585, -0.0017953665228560567, 0.009065128862857819, 0.018753530457615852, 0.04409988224506378, -0.020581791177392006, 0.024058258160948753, -0.004130901303142309, 0.0008587288320995867, -0.001377255655825138, 0.034487657248973846, -0.033712033182382584, 0.024639977142214775, 0.017354631796479225, 0.01523551158607006, -0.008060970343649387, -0.03238238766789436, 0.033822834491729736, -0.004130901303142309, 0.02346268855035305, -0.007583129685372114, -0.015720278024673462, 0.03487547114491463, -0.0074584754183888435, 0.006772877182811499, 0.014432184398174286, 0.013469576835632324, 0.01883663237094879, -0.0035491816233843565, 0.01551252044737339, -0.012423867359757423, -0.00453948974609375, 0.009058204479515553, -0.008829670958220959, 0.0005167954950593412, -0.031163545325398445, -0.011350455693900585, -0.0042417049407958984, 0.00024216673045884818, -0.03024941496551037, -0.0003410677018109709, -0.006651685573160648, 0.0017970978515222669, -0.00572370458394289, 0.007486176211386919, 0.006894068792462349, 0.002321684267371893, 0.023836649954319, -0.02317182719707489, -0.029750797897577286, 0.017991753295063972, 0.009286737069487572, -0.004993092734366655, 0.0027389293536543846, -0.012209184467792511, -0.0015928035136312246, 0.016675960272550583, 0.013649633154273033, -0.007811662275344133, -0.002744123339653015, -0.021786781027913094, 0.011578988283872604, -0.0014404483372345567, 0.009889231994748116, 0.04321344941854477, -0.01457068882882595, -0.006883681286126375, 0.014639941044151783, 0.009875381365418434, 0.016218895092606544, -0.009058204479515553, -0.027036108076572418, 0.02836575172841549, 0.0014170757494866848, -0.006326199974864721, -0.004120513331145048, 0.019889267161488533, -0.023116426542401314, 0.00997233483940363, -0.027839435264468193, -0.028061041608452797, -0.027853285893797874, -0.031440556049346924, -0.0012863619485870004, -0.00374655076302588, -0.013005586341023445, 0.01770089380443096, -0.001467283582314849, -0.0009340407559648156, -0.017368482425808907, 0.0032081138342618942, 0.013635782524943352, 0.05049879476428032, 0.007326895836740732, -0.013213343918323517, 0.01977846398949623, -0.02894747257232666, 0.0005665705539286137, -0.024418368935585022, -0.021025005728006363, 0.021800631657242775, -0.010990343987941742, -0.01022164337337017, 0.0015685651451349258, 0.02033248171210289, -0.011419707909226418, 0.013268745504319668, 0.0030869224574416876, 0.005938387010246515, -0.008995876647531986, -0.02659289352595806, 0.009099755436182022, -0.004930765368044376, 0.009729951620101929, 0.03432145342230797, 0.023434987291693687, 0.04127438738942146, 0.027977939695119858, 0.029861602932214737, 0.009667624719440937, 0.004923840519040823, -0.02933528460562229, -0.009169007651507854, 0.003377782180905342, -0.006696699652820826, 0.011066521517932415, -0.00974380224943161, 0.0261912290006876, 0.007004872430115938, -0.03639902174472809, -0.024667678400874138, 0.002787406090646982, -0.007409998681396246, 0.009619147516787052, 0.009771502576768398, -0.009231334552168846, 0.005335891619324684, -0.01968151144683361, 0.01768704317510128, 0.038809001445770264, -0.01475074514746666, -0.0037015366833657026, 0.00030795641941949725, 0.0024792333133518696, 0.003687686286866665, 0.03130204975605011, 0.002489621052518487, -0.0007699992856942117, -0.014833847992122173, -0.010837988927960396, -0.02070644497871399, -0.03204997628927231, -0.0345984622836113, -0.017645493149757385, -0.010138540528714657, -0.021634425967931747, -0.022437753155827522, -0.02601117268204689, -0.011946026235818863, 0.002666214480996132, -0.023310331627726555, 0.0032617845572531223, 0.004709158092737198, -0.04246552661061287, -0.03313031047582626, -0.006374676711857319, 0.03443225473165512, 0.018116408959031105, 0.01026319433003664, 0.00560597563162446, -0.01304713822901249, 0.008268727920949459, -0.010159316472709179, -0.03811648115515709, 0.009065128862857819, -0.02362889237701893, 0.004754172172397375, -0.02203609049320221, -0.022188445553183556, 0.0002001825050683692, -0.013968193903565407, 0.013254894874989986, 0.014418333768844604, -0.026980705559253693, -0.019515305757522583, 0.00021792840561829507, 0.01645435206592083, 0.03673143312335014, 0.020180126652121544, 0.011765969917178154, 0.021897584199905396, -0.03775636851787567, 0.01447373628616333, -0.019058240577578545, -0.010623306967318058, -0.024182911962270737, 0.016883715987205505, 0.007936316542327404, -0.00019033568969462067, -0.013587306253612041, 0.007229942828416824, -0.017063772305846214, -0.0030003569554537535, -2.4928131097112782e-05, -0.01263162400573492, -0.025013940408825874, -0.00047394560533575714, -0.004051261115819216, 0.005270102061331272, 0.022105341777205467, 0.0035041675437241793, -0.01729923114180565, 0.012049904093146324, -0.027977939695119858, 0.04144059121608734, 0.007250718306750059, -0.00430403184145689, 0.006939082872122526, 0.013123315759003162, -0.016606707125902176, -0.031191246584057808, 0.011108072474598885, 0.0003430154174566269, 0.005730629898607731, -0.0046606813557446, -0.007465400733053684, -0.011703643016517162, -0.022354651242494583, -0.005301265511661768, 0.0038954431656748056, -0.010941867716610432, 0.004719546064734459, -0.011939100921154022, 6.151554407551885e-05, 0.015914184972643852, -0.0013512859586626291, -0.010609456337988377, -0.026911454275250435, -0.0353463850915432, -0.013268745504319668, 0.014819997362792492, 0.030526425689458847, -0.010775662027299404, -0.01844881847500801, -0.03509707748889923, -0.022299248725175858, 0.00908590480685234, -0.0035335998982191086, 0.0008617585990577936, 0.01258314773440361, 0.05578967183828354, 0.02119121141731739, 0.03642672300338745, 0.014175950549542904, 0.02326878160238266, -0.0012058560969308019, -0.015193959698081017, -0.009362914599478245, -0.010948792099952698, -0.017991753295063972, -0.013365698978304863, 0.012527745217084885, -0.0031786817125976086, 0.005038106814026833, -0.0145152872428298, 0.019335249438881874, 0.012534670531749725, 0.007278419565409422, -0.0013097345363348722, -0.0072576436214149, -0.030664930120110512, -0.05667610093951225, 0.0041239759884774685, 0.02193913608789444, -0.006890606135129929, 0.0006418824777938426, -0.03894750773906708, 0.002238581422716379, 0.031080443412065506, -0.006267335265874863, 0.026080425828695297, 0.020069323480129242, 0.04415528103709221, -0.0026575580704957247, 0.002886090660467744, 0.003164831316098571, 0.02328263223171234, -0.03346272185444832, -0.0145152872428298, -0.03941842168569565, -0.013476502150297165, 0.008781194686889648, 0.005560961551964283, 0.012243811041116714, 0.0036946116015315056, -0.00701872305944562, 0.004452924709767103, 0.009459867142140865, -0.03155135735869408, -0.004130901303142309, 0.0077701108530163765, -0.03662062808871269, 0.005699466448277235, -0.03024941496551037, 0.008594213053584099, 0.0039508449845016, -0.009120531380176544, 0.014972352422773838, 0.013518054038286209, 0.02308872528374195, -0.02506934106349945, -0.015595623292028904, 0.029529191553592682, -0.027756331488490105, 0.042714834213256836, 0.04155139625072479, 0.02081724815070629, 0.006156531628221273, 0.015401717275381088, -0.015346314758062363, -0.01692526787519455, -0.003483391832560301, -0.0161773432046175, 0.011502810753881931, 0.03642672300338745, -0.0165513064712286, -0.006700162310153246, 0.012202260084450245, -0.01976461336016655, -0.0023840111680328846, -0.04246552661061287, 0.013892016373574734, 0.006533956620842218, 0.0020723757334053516, -0.03689763695001602, -0.020844949409365654, -0.007569279056042433, 0.008483409881591797, -0.01570642739534378, 0.007811662275344133, -0.0033639317844063044, -0.011973726563155651, 0.008531886152923107, 0.01817180961370468, -0.015304763801395893, 0.009806129150092602, -0.0026783335488289595, -0.003957770299166441, 0.011385082267224789, 0.0012551983818411827, -0.005186999216675758, 0.00010945113172056153, 0.0017970978515222669, 0.02855965867638588, -0.02439066953957081, -0.012444642372429371, 0.015941884368658066, 0.009279811754822731, -0.017853248864412308, -0.00012086694914614782, -0.026551341637969017, 0.028725864365696907, -0.022091491147875786, -0.01994466967880726, 0.006135756149888039, 0.01570642739534378, 0.005786031950265169, -0.00930751208215952, -0.02325493097305298, -0.007970942184329033, -0.009494493715465069, 0.013601156882941723, -0.0030419083777815104, -0.009529120288789272, -0.02639898657798767, -0.0023164902813732624, 0.0025554108433425426, -0.012416942045092583, -0.00011459095549071208, 0.009536044672131538, 0.0190166886895895, -0.0333242192864418, -0.0009487568750046194, -0.0002510396880097687, -0.017368482425808907, 0.0019944668747484684, 0.007001410238444805, -0.006059578619897366, 0.00025363665190525353, 0.020498687401413918, -0.016288146376609802, 0.01663440838456154, 0.03650982677936554, 0.010166240856051445, -0.05199464410543442, 0.012874007225036621, -0.016301997005939484, -0.00788783933967352, 0.010754886083304882, -0.004175915382802486, -0.02479233220219612, -0.020664893090724945, 0.018878184258937836, -0.005051956977695227, 0.00489267660304904, -0.017936352640390396, 0.021537473425269127, 0.02318567782640457, 0.000895086326636374, -0.023199528455734253, 0.01596958562731743, 0.004532564431428909, -0.009764578193426132, 0.009605297818779945, 0.009182858280837536, -0.02289481833577156, 0.010290895588696003, 0.003840041346848011, -0.0013660021359100938, -0.003526674583554268, -0.03673143312335014, -0.029667695984244347, -0.011011119931936264, 0.0037881021853536367, 0.020318632945418358, 0.016482053324580193, -0.0017685312777757645, -0.02041558548808098, -0.023407286033034325, 0.01551252044737339, -0.030055509880185127, 0.0029553428757935762, 0.0242106132209301, -0.015401717275381088, 0.007631606422364712, 0.022742463275790215, -0.020554089918732643, -0.028808966279029846, -0.027299266308546066, -0.03027711622416973, -0.045457225292921066, 0.005162760615348816, 0.015013904310762882, 0.03941842168569565, -0.006087279412895441, -0.033351920545101166, -0.03642672300338745, -0.014819997362792492, -0.038725901395082474, -0.021703679114580154, -0.019695362076163292, 0.011295054107904434, 0.025180146098136902, 0.03614971414208412, -0.00016663840506225824, 0.0214820709079504, 0.0037881021853536367, -0.0023493850603699684, -0.04559573158621788, 0.0009556820732541382, -0.019127491861581802, -0.023213379085063934, 0.03584500402212143, -0.010512502864003181, -0.045263320207595825, -0.001021471805870533, -0.0038365786895155907, -0.004033947829157114, 0.0023788174148648977, -0.0038261909503489733, 0.013344923034310341, -0.00851111114025116, 0.004677994642406702, 0.0218560341745615, 0.02385050058364868, 0.016966819763183594, 0.011412783525884151, -0.023130277171730995, 0.0011599764693528414, 0.01646820269525051, -0.0064266156405210495, -0.00394738232716918, 0.0077701108530163765, 0.009813054464757442, -0.015761829912662506, -0.0008050582837313414, 0.004781872965395451, -0.004314419813454151, -0.012673175893723965, 0.0158033799380064, -9.711556776892394e-05, 0.027922537177801132, 0.013393399305641651, 0.027977939695119858, -0.014362932182848454, -0.012943259440362453, -0.005820658057928085, 0.009349063970148563, 0.00968840066343546, 0.01937680132687092, 0.043074946850538254, -0.016523605212569237, -0.0027960625011473894, -0.0012725114356726408, 0.008074820972979069, -0.010242418386042118, -0.018504220992326736, -0.0061773075722157955, -0.007368447259068489, -0.021731380373239517, -0.01144048385322094, 0.005045031663030386, -0.003722312394529581, 0.0032098451629281044, -0.00607342878356576, -0.008587288670241833, 0.010096988640725613, -0.009923858568072319, 0.0190166886895895, -0.018296463415026665, -0.03506937623023987, 0.007957092486321926, 0.014210577122867107, -0.028864368796348572, -0.006340050138533115, 0.035789601504802704, 0.011842147447168827, 0.005734092555940151, 0.2097514420747757, 0.0009435629472136497, 0.019321398809552193, 0.045734234154224396, 0.018047155812382698, -0.016205044463276863, 0.026509789749979973, 0.008670391514897346, -0.012880932539701462, 0.0053497422486543655, -0.004698770120739937, -0.008254877291619778, -0.009106680750846863, -0.001038784859701991, 0.008864297531545162, -0.022479305043816566, -0.04141288995742798, -0.018670426681637764, -0.021883735433220863, 0.023573491722345352, 0.01522166095674038, -0.006828279234468937, -0.01427982933819294, -0.0060388026759028435, 0.03360122814774513, 0.005619826260954142, -0.018296463415026665, 0.009196708910167217, 0.022839415818452835, 0.017243828624486923, -0.008898924104869366, 0.010761811397969723, 0.009279811754822731, -0.008919699117541313, -0.02696685492992401, -0.00761775579303503, 0.020304782316088676, -0.015332465060055256, -0.012790904380381107, 0.03313031047582626, 2.2628737497143447e-05, -0.02288096770644188, -0.006319274660199881, -0.015720278024673462, 0.017077622935175896, -0.005758330691605806, -0.027673229575157166, 0.011731344275176525, -0.025097042322158813, 0.006364288739860058, -0.00772855943068862, 0.013116390444338322, 0.006831741891801357, 0.024362968280911446, -0.013317221775650978, 0.00832412950694561, -0.009335213340818882, -0.007340746466070414, -0.01862887479364872, -0.022285398095846176, -0.023573491722345352, 0.006094204727560282, -0.011087297461926937, 0.0018698127241805196, -0.029113678261637688, 0.007548503577709198, -0.011177325621247292, 0.025775715708732605, -0.002711228560656309, -0.0017165919998660684, 0.0010907241376116872, -5.532070645131171e-05, -0.025969622656702995, -0.0005319444462656975, -0.011648241430521011, -0.004570653662085533, -1.2125919965910725e-05, 0.008732718415558338, 0.026925303041934967, 0.013718885369598866, -0.008684241212904453, 0.00021955151169095188, -0.01380891352891922, -0.01616349257528782, 0.011973726563155651, -0.021495921537280083, 0.03686993941664696, -0.02062334306538105, -0.0038261909503489733, -0.023019472137093544, -0.006984096951782703, 0.030969640240073204, -0.009889231994748116, -0.013545754365622997, 0.0025398291181772947, -0.007707783952355385, 0.00016663840506225824, 0.03243779018521309, -0.0072022415697574615, -0.020457137376070023, -0.01578952930867672, 0.04853202775120735, 0.008026344701647758, 0.02961229346692562, -0.0133379977196455, 0.012091455981135368, 0.0011192907113581896, 0.024141360074281693, -0.008753493428230286, 0.008940475061535835, -5.039729876443744e-05, -0.04313034936785698, 0.026052724570035934, -0.00809559691697359, -0.006378138903528452, 0.017631642520427704, 0.023531939834356308, -0.00954989530146122, 0.01854577288031578, -0.02997240610420704, 0.015374016016721725, -0.001494984608143568, 0.016786763444542885, 0.012271512299776077, -0.03736855462193489, -0.042410124093294144, -0.002996894298121333, 0.0261912290006876, -0.04385057091712952, -0.023711996152997017, 0.025471005588769913, -0.00678672781214118, 0.03091423772275448, -0.005121209193021059, -0.005090045742690563, 0.0031959947664290667, 0.026537491008639336, 0.0022576258052140474, -0.02429371513426304, -0.027410069480538368, 0.00973687693476677, 0.003543987637385726, 0.029362985864281654, 0.005754868034273386, 0.003292948007583618, 0.006267335265874863, 0.01900283806025982, -0.007361521944403648, 0.006343512795865536, -0.03130204975605011, 0.012139932252466679, 0.0036080460995435715, 0.002931104740127921, -0.003123279893770814, 0.03714694827795029, -0.0023615043610334396, -0.031634461134672165, -0.02732696756720543, 0.010651007294654846, 0.009162082336843014, -0.019155193120241165, -0.0025606045965105295, 0.03451535850763321, 0.004504863638430834, -0.017354631796479225, 0.0011694986606016755, -0.17662112414836884, 0.011198100633919239, 0.013157941401004791, -0.007721634116023779, 0.020304782316088676, 0.016620557755231857, 0.005242400802671909, 0.009369839914143085, 0.0004735127731692046, -0.011516661383211613, 0.009875381365418434, -0.002295714570209384, -0.007977867498993874, -0.0027302729431539774, 0.017160726711153984, -0.0007557159988209605, -0.014847698621451855, 0.027077658101916313, 0.05005558207631111, 0.008414157666265965, 0.015124707482755184, -0.029861602932214737, -0.004286719020456076, -0.004826887045055628, 0.019072089344263077, -0.000198234774870798, -0.009376765228807926, 0.01702222228050232, -0.009764578193426132, -0.0270499587059021, -0.002979581244289875, -0.016759062185883522, 0.02157902531325817, -0.00974380224943161, 0.02385050058364868, 0.0034453030675649643, 0.0059106857515871525, 0.00430403184145689, -0.008337980136275291, 0.014210577122867107, 0.01139893289655447, 0.007790886331349611, 0.02677294798195362, 0.004428686108440161, 0.006326199974864721, 0.018282614648342133, 0.01049172692000866, -0.002238581422716379, 0.013905867002904415, -0.009065128862857819, 0.03044332191348076, -0.013698109425604343, 0.014764595776796341, -0.010290895588696003, 0.013836614787578583, -0.0007531190058216453, 0.003421064931899309, 0.01663440838456154, 0.004366359207779169, -0.0176731925457716, 0.007867064327001572, -0.003483391832560301, 0.0021070020738989115, -0.004355971235781908, -0.008393381722271442, -0.026897603645920753, 0.0076523819006979465, 0.007403073366731405, 0.008199475705623627, -0.001932139857672155, 0.007074125111103058, -0.003919681534171104, 0.0006591955898329616, 0.01777014695107937, 0.019820015877485275, 0.009425241500139236, -0.03047102317214012, -4.8206111387116835e-05, 0.038725901395082474, -0.0030315204057842493, 0.007659307215362787, 0.00884352158755064, -0.013164866715669632, -0.0045014009810984135, -0.011004194617271423, 0.006447391584515572, -0.009044353850185871, 0.007991718128323555, -0.006201545707881451, 0.014792297035455704, 0.029723098501563072, -0.01357345562428236, -0.00023827128461562097, 0.006513181142508984, 0.029085977002978325, -0.0029865065589547157, 0.03659292683005333, -0.00903742853552103, 0.02412750944495201, -0.015374016016721725, 0.001662921393290162, 0.031163545325398445, -0.03451535850763321, 0.001350420294329524, 0.043462760746479034, 0.0333242192864418, 0.01191139966249466, 0.002313027624040842, 0.029058275744318962, -0.011585913598537445, -0.007243792992085218, 0.012610848061740398, 0.010671783238649368, 0.0027804807759821415, -0.013940492644906044, 0.035429488867521286, -0.008594213053584099, -0.02242390252649784, 0.00244806963019073, -0.011274278163909912, 0.033074911683797836, -0.04016634821891785, -0.026218930259346962, 0.0166621096432209, -0.007105288561433554, 0.0006089876405894756, -0.1084214374423027, -0.0218560341745615, 0.024418368935585022, 0.03199457377195358, -0.014120548963546753, 0.018975136801600456, -0.00012238183990120888, 0.04077576845884323, -0.018213361501693726, 0.023490387946367264, -0.028421154245734215, -0.009806129150092602, 0.006149606313556433, -7.412162813125178e-05, -0.0027337356004863977, -0.013628857210278511, -0.002060256665572524, -0.002844539238139987, -0.018864333629608154, 0.027451621368527412, 0.012333839200437069, -0.009252110496163368, 0.015734128654003143, -0.021731380373239517, -0.015124707482755184, -0.02060949243605137, -0.021315865218639374, 0.011752119287848473, 0.007756260223686695, 0.008067895658314228, 0.012278437614440918, -0.025983471423387527, 0.030304817482829094, -0.02279786579310894, -0.020858800038695335, -0.009196708910167217, -0.011495886370539665, -0.026537491008639336, 0.010470951907336712, -0.03725774958729744, -0.0185319222509861, 0.008545736782252789, -0.019833866506814957, -0.031052742153406143, 0.010872614569962025, 0.0005579140270128846, -0.011108072474598885, 0.025138594210147858, 0.018490370362997055, -0.01968151144683361, -0.011135773733258247, -0.01684216596186161, -0.009646848775446415, -0.02591422013938427, 0.016232745721936226, 0.006849054712802172, 0.02354579046368599, 0.00975072756409645, -0.011412783525884151, 0.008400307036936283, 0.012569297105073929, -0.002042943611741066, -0.010789512656629086, 0.025498706847429276, 0.0007405670476146042, 0.015554072335362434, 0.01770089380443096, -0.010360147804021835, -0.0119183249771595, 0.0016308922786265612, -0.011897549033164978, 0.012444642372429371, -0.027742480859160423, 0.007811662275344133, -0.006236171815544367, -0.012742428109049797, -0.016426650807261467, -0.01527706254273653, 0.02354579046368599, 0.012687025591731071, -0.017160726711153984, -0.004830349702388048, -0.005332428961992264, -0.034958574920892715, 0.026980705559253693, -0.005571349523961544, 0.0007444624789059162, -0.010997269302606583, 0.03263169527053833, -0.030858835205435753, 0.016011137515306473, 0.0024359505623579025, 0.01844881847500801, -0.013178717344999313, -0.003545718966051936, 0.009162082336843014, -0.022853266447782516, 0.006412765476852655, 0.028421154245734215, 0.011225801892578602, -0.022354651242494583, -0.009674550034105778, -0.05210544914007187, 0.025221696123480797, 0.006094204727560282, 0.0028376139234751463, 0.002699109259992838, -0.019335249438881874, -0.007046423852443695, -0.0056509897112846375, 0.009051279164850712, 0.007340746466070414, -0.01976461336016655, 0.018795080482959747, -0.03204997628927231, -0.022853266447782516, -0.023434987291693687, -0.016412800177931786, 0.005806807428598404, -0.0017529494361951947, 0.019335249438881874, -0.001341763767413795, -0.008573438040912151, 0.00406857393682003, 0.01673136092722416, 0.025567958131432533, -0.004619129933416843, 0.012950184755027294, -0.02591422013938427, 0.0397508330643177, -0.00713991466909647, -0.001037053531035781, 0.018088707700371742, 0.00024995760759338737, -0.005315116140991449, 0.022063789889216423, -0.011371231637895107, -0.04077576845884323, 0.017991753295063972, -0.003138861618936062, 0.02336573414504528, 0.004709158092737198, -0.02477848157286644, -0.006561657879501581, 0.02090035192668438, -0.0014127474278211594, -0.01578952930867672, 0.00855958741158247, -0.01498620305210352, -0.013434951193630695, 0.021634425967931747, 0.01768704317510128, 0.03988933935761452, 0.007160690613090992, -0.009404465556144714, -0.04817191883921623, 0.0027216162998229265, -0.004525639582425356, 0.025387901812791824, 0.026080425828695297, 0.011301979422569275, -0.014598390087485313, 0.044875506311655045, 0.00926596112549305, 0.021232763305306435, -0.005592125002294779, 0.010006960481405258, -0.01817180961370468, -0.05002788081765175, -0.007160690613090992, 0.006575508043169975, -0.04681457206606865, 0.009951558895409107, -0.025304799899458885, 0.02781173400580883, 0.02204994112253189, 0.01162746548652649, -0.0029259107541292906, 0.0053393542766571045, -0.016994521021842957, -0.01518011000007391, 0.0422162190079689, 0.023836649954319, -0.019404500722885132, -0.020498687401413918, 0.004092812538146973, 0.02166212722659111, 0.011987577192485332, -0.013663483783602715, 0.012444642372429371, 0.025193994864821434, 0.0009643386001698673, 0.0025138594210147858, -0.0005475261714309454, -0.013123315759003162, 0.01646820269525051, 0.016883715987205505, 0.03988933935761452, -0.02033248171210289, 0.01844881847500801, 0.02109425887465477, 0.023061024025082588, 0.006925232708454132, 0.013988969847559929, 0.0035249432548880577, -0.003486854489892721, -0.029279882088303566, 0.003999321721494198, -0.04398907721042633, -0.003258321899920702, 0.009175932966172695, 0.03916911408305168, 0.011468185111880302, -0.0054155318066477776, -0.010138540528714657, 0.004106662701815367, -0.0028220321983098984, -0.0004246033204253763, -0.0051454477943480015, -0.014182875864207745, -0.026800649240612984, -0.004310957156121731, 0.0014863279648125172, -0.003763863816857338, 0.012617773376405239, -0.009923858568072319, 0.01663440838456154, 0.020387884229421616, 0.017229977995157242, -0.02034633234143257, 0.021025005728006363, -0.022285398095846176, 0.0161773432046175, 0.0037188497371971607, 0.01732693240046501, -0.013275670818984509, -0.011267352849245071, -0.027742480859160423, -0.014459885656833649, 0.024182911962270737, -0.008988951332867146, 0.09024962782859802, 0.022631660103797913, -0.03337962180376053, 0.009196708910167217, -0.0135803809389472, -0.012880932539701462, 0.02599732205271721, -0.011225801892578602, -0.006024952046573162, -0.016038838773965836, 0.005997251253575087, -0.0022662822157144547, -0.021218912675976753, -0.006714012939482927, -0.015083156526088715, 0.0013616738142445683, 0.015110856853425503, 0.0022922519128769636, -0.01732693240046501, 0.017617791891098022, 0.02779788337647915, -0.017825547605752945, 0.031191246584057808, 0.005491709336638451, -0.032964106649160385, -0.01844881847500801, 0.05052649602293968, 0.01741003431379795, 0.006911382079124451, -0.029002873227000237, 0.009951558895409107, -0.00773548474535346, -0.019930819049477577, -0.009169007651507854, -0.026274332776665688, -0.015069305896759033, 0.002143359510228038, -0.02281171642243862, -0.009259035810828209, 0.0028306888416409492, 0.006651685573160648, 0.01909979060292244, -0.028448855504393578, -0.008358755148947239, 0.020595641806721687, -0.0010560979135334492, 0.01975076273083687, -0.01948760449886322, -0.0019892731215804815], "584df3b5-0387-4172-a121-3f803a865c10": [0.006194454617798328, -0.013155234046280384, 0.009529384784400463, -0.018008621409535408, -0.006162524688988924, 0.019952815026044846, -0.018902666866779327, -0.032384298741817474, -0.015440016053617, -0.06005711853504181, 0.022663332521915436, 0.022663332521915436, 0.016376635059714317, -0.009593244642019272, 0.014035088010132313, 0.009983502328395844, 0.02345803752541542, 0.000539708707947284, 0.007343941368162632, -0.019243255257606506, -0.02147127129137516, -0.012644351460039616, -0.03800400719046593, 0.002029340248554945, -0.023316126316785812, 0.006598903797566891, 0.04595107585191727, -0.008507618680596352, -0.02054884470999241, 0.02182605117559433, 0.004622780252248049, -0.02324517071247101, -0.01038085576146841, -0.015766413882374763, -0.016092810779809952, -0.0020843311212956905, 0.012303762137889862, -0.006336366757750511, 0.016305677592754364, -0.02257818542420864, 0.011679350398480892, 0.0034147552214562893, -0.012566299177706242, 0.005435226019471884, -0.0021889912895858288, 0.012594682164490223, 0.019441930577158928, -4.68143007310573e-05, -0.005580685567110777, -0.012481152079999447, -0.0071452646516263485, 0.023926347494125366, -0.018335018306970596, 0.013559683226048946, -0.03136253356933594, 0.0005091089988127351, 0.005619711708277464, -0.004846291616559029, 0.013176520355045795, 0.007996736094355583, -0.004966916982084513, 0.01127490121871233, -0.008543096482753754, -0.0008900537504814565, -0.03502386063337326, -0.0298015009611845, -0.020236637443304062, -0.01878913678228855, -0.030567824840545654, -0.02923385240137577, 0.005619711708277464, 0.03596047684550285, -0.007812250405550003, -0.005208167247474194, -0.0007986979326233268, -0.02254980243742466, 0.010246039368212223, -0.012197328731417656, -0.007407801691442728, -0.00894044991582632, 0.012743689119815826, -0.0028808116912841797, 0.0010874000145122409, -0.011054937727749348, 0.021925389766693115, 0.04637681320309639, -0.011267805472016335, 0.0033810511231422424, -0.001933549763634801, 0.01711457595229149, 0.01894523948431015, 0.022677522152662277, 0.008465045131742954, 0.029091941192746162, 0.019441930577158928, 0.017284870147705078, 0.011154276318848133, -0.0017313252901658416, -0.0009126709774136543, -0.006978517863899469, -0.03476841747760773, 0.018689798191189766, -0.009501001797616482, -0.013850602321326733, -0.03953665867447853, -0.0071630035527050495, 0.020052151754498482, -0.013680308125913143, 0.004473772831261158, 0.024394657462835312, -0.011239423416554928, 0.019342593848705292, 0.0019761233124881983, -0.013772550970315933, -0.004778883419930935, -0.004225427284836769, 0.03513738885521889, -0.023968921974301338, 0.006141237914562225, -0.03102194331586361, 0.016518546268343925, 0.0005499086691997945, 0.027899881824851036, -0.01859045960009098, 0.008401185274124146, -0.00910364929586649, -0.01353839598596096, -0.01470207329839468, 0.019754137843847275, -0.013850602321326733, 0.01749773882329464, 0.031334150582551956, -0.004417008254677057, -0.0013038156321272254, -0.03034076653420925, 0.0009268621215596795, -0.02019406482577324, 0.01680237054824829, -0.005790005903691053, -0.024054069072008133, 0.002029340248554945, 0.029347382485866547, -0.001069660997018218, -0.029744736850261688, 0.00820960383862257, 0.027303850278258324, -0.0029996628873050213, 0.02940414659678936, 0.021598992869257927, -0.024224363267421722, 0.005325244273990393, -0.006723076570779085, -0.00957195833325386, 0.021868625655770302, 0.025189364328980446, -0.0006080038147047162, -0.0004055576282553375, 0.03703900799155235, -0.007989640347659588, -0.006208646111190319, 0.001492735929787159, 0.03190179541707039, -0.009529384784400463, 0.0012585811782628298, 0.0059283701702952385, 0.02667943947017193, 0.002073687734082341, -0.03502386063337326, -0.012396004982292652, -0.00903269276022911, 0.0017712380504235625, 0.025004878640174866, -0.02940414659678936, 0.02636723220348358, 0.020293403416872025, 0.007812250405550003, 0.022805243730545044, -0.006790484767407179, -0.010622106492519379, -0.0332641527056694, 0.03735121339559555, 0.000659446872305125, 0.0029783761128783226, 0.00963581819087267, -0.006911110132932663, -0.019058769568800926, 0.02543061412870884, 0.015269720926880836, 0.013957035727798939, -0.003354442771524191, 0.003262199927121401, 0.0029003245290368795, -0.017909282818436623, -0.0018395330989733338, -0.6062476634979248, -0.0023717028088867664, 0.026026643812656403, -0.022081492468714714, -0.009359090588986874, 0.02564348094165325, 0.012644351460039616, 0.0009809660259634256, -0.010054458864033222, 0.020619800314307213, 0.011253613978624344, -0.001372997765429318, -0.014858176931738853, -0.019087152555584908, -0.015965089201927185, -0.03479680046439171, 0.0182498712092638, -0.002329129260033369, 0.0027247085236012936, 0.00473276199772954, -0.026438187807798386, 0.02655171789228916, -0.007421992719173431, -0.00033083214657381177, 0.00937328115105629, -0.006091568619012833, 0.02182605117559433, -0.006751459091901779, -0.01490075048059225, 0.02452237717807293, -0.03686871379613876, 0.018533695489168167, 0.023599950596690178, 0.0019033934222534299, 0.04362371936440468, -0.009316517040133476, -0.00802511814981699, 0.0169442817568779, 0.017738988623023033, 0.03272488713264465, -0.03899739310145378, -0.007042378652840853, 0.017994429916143417, 0.020662372931838036, -0.002424919744953513, -0.003941603470593691, -0.005680024158209562, 0.00937328115105629, -0.018193107098340988, 0.004214783664792776, -0.004711475223302841, -0.0180228129029274, -0.011211040429770947, -0.001867915503680706, 0.014858176931738853, -0.006531495600938797, 0.029546059668064117, -0.008450854569673538, 0.004544728901237249, 0.02091781608760357, 0.007812250405550003, -0.012963652610778809, 0.0014315363951027393, -0.058581236749887466, -0.040530040860176086, 0.01894523948431015, -0.030056942254304886, -0.00016430737741757184, 0.0332641527056694, 0.012913983315229416, 0.0055487556383013725, 0.0011086867889389396, 0.006513756699860096, -0.004399269353598356, -0.009266847744584084, 0.0332641527056694, 0.042119454592466354, -0.01878913678228855, -0.00401965482160449, 0.025203555822372437, 0.007393610198050737, -0.006467635277658701, -0.007620669435709715, -0.030454294756054878, 0.026182746514678, 0.0065456866286695, -0.008337324485182762, -0.009813208132982254, -0.007641956210136414, -0.005960300099104643, 0.01289979275316, 0.01680237054824829, -0.0029766021762043238, -0.03371826931834221, 0.026055026799440384, 0.03261135518550873, -0.004324765410274267, -0.007241054903715849, -0.00819541234523058, -0.02455076016485691, -0.02743157185614109, -0.03536444902420044, 0.01587994210422039, 0.01805119402706623, 0.02906355820596218, 0.011948982253670692, -0.019739946350455284, -0.02541642263531685, 0.025004878640174866, -0.01460273563861847, 0.017043620347976685, -0.02401149459183216, -0.019441930577158928, -0.008606957271695137, 0.008834016509354115, -0.022649141028523445, 0.03737959638237953, -0.004310574382543564, -0.006595355924218893, 0.000101777448435314, -0.02148546278476715, 0.005836127325892448, 0.00020721355394925922, -0.01606442779302597, -0.0046369717456400394, 0.021726712584495544, 0.005711954087018967, 0.010529863648116589, 0.004580206703394651, -0.006882727611809969, 0.01572383940219879, -0.010799496434628963, 0.012708211317658424, -0.019924432039260864, 0.04325474798679352, 0.006478278432041407, 0.008181221783161163, -0.0019708017352968454, 0.015567736700177193, -0.04109768941998482, 0.00103773083537817, -0.0017073776107281446, 0.017554502934217453, -0.012857219204306602, -0.009869973175227642, -0.0059461090713739395, -0.004619232378900051, 0.010011885315179825, -0.0012399553088471293, -0.01038085576146841, -0.020846858620643616, -0.02523193694651127, -0.001530874753370881, 0.01453177910298109, -0.016149574890732765, 0.001708264579065144, 0.007407801691442728, -0.048079755157232285, -0.00721622072160244, -0.01951288804411888, -0.0075497133657336235, 0.0023238074500113726, -0.014588544145226479, 0.016674648970365524, -0.0015424051089212298, -0.01209799014031887, -0.0298015009611845, 0.012012843042612076, 0.004867578390985727, -0.01928582787513733, -0.007634860463440418, -0.017440972849726677, 0.023188406601548195, 0.03774856775999069, -0.02794245444238186, 0.010118318721652031, -0.003817430231720209, 0.010125414468348026, -0.005108828656375408, -0.0015477268025279045, 0.012012843042612076, 0.021769287064671516, -0.01644759066402912, 0.004158019088208675, 0.0275734830647707, 0.01380093302577734, 0.02308906801044941, 0.025317084044218063, -0.027318041771650314, -0.005527468863874674, -0.0004705266619566828, 0.015979280695319176, -0.012090894393622875, 0.010976886376738548, -0.011395526118576527, -0.02923385240137577, -0.025870541110634804, -0.023500612005591393, -0.03246944397687912, 0.0274173803627491, 0.005921274423599243, 0.005332340020686388, -0.016561118885874748, 0.0015459528658539057, 0.010629202239215374, -0.02560090832412243, 0.019044578075408936, -0.011544534005224705, 0.011154276318848133, 0.009061075747013092, 0.0027974385302513838, -0.008450854569673538, -0.010636297054588795, -0.03661327064037323, -0.005648093763738871, 0.020690755918622017, -0.011970269493758678, 0.023160023614764214, -0.0009091231622733176, 0.006595355924218893, 0.0157096479088068, 0.0194845050573349, 0.03122062049806118, 0.016844943165779114, -0.007141716778278351, 0.00036941442522220314, -0.0034112075809389353, -0.0012674507452175021, 0.013829315081238747, -0.02758767455816269, -0.004512798506766558, 0.028070176020264626, 0.0020541748963296413, -0.0055026342160999775, 0.019356783479452133, 0.0019743493758141994, 0.046092987060546875, -0.016561118885874748, 0.01749773882329464, -0.021939581260085106, 0.0034147552214562893, 0.009181700646877289, 0.03431430086493492, -0.022989729419350624, 0.007414896972477436, 0.01505685318261385, 0.014929132536053658, -0.0015033793170005083, -0.026580100879073143, 0.02003796212375164, -0.010089936666190624, 0.021783478558063507, -0.004711475223302841, -0.02738899737596512, 0.04257357120513916, -0.0009286360582336783, 0.0005295088049024343, 0.015212956815958023, 0.015738030895590782, 0.010969790630042553, -0.007670338731259108, 0.014212477952241898, -0.005598424933850765, -0.010714349336922169, 0.02763024903833866, -0.017753180116415024, 0.0015539353480562568, -0.015993472188711166, -0.01623472198843956, 0.0033508948981761932, 0.0020009579602628946, -0.01895943097770214, -0.015823177993297577, -0.0017694641137495637, -0.011310379020869732, 0.01680237054824829, -0.006251219660043716, 0.0016399695305153728, 0.0071630035527050495, 0.01624891348183155, -0.01839178241789341, -0.0324978269636631, 0.014687882736325264, -0.0014315363951027393, -0.011778688058257103, -0.004739857744425535, -0.003017402021214366, -0.012552108615636826, 0.01000478956848383, 0.014616926200687885, -0.011998651549220085, -0.0004909264971502125, -0.011956078000366688, 0.01806538552045822, -0.018122151494026184, 0.017625458538532257, 0.03772018477320671, -0.008741773664951324, -0.02308906801044941, 0.00992673821747303, 0.01237471867352724, 0.0016355346888303757, -0.016901709139347076, -0.0157096479088068, 0.050776079297065735, -0.013361006043851376, -0.019002003595232964, -0.008585670031607151, 0.021002963185310364, -0.019881857559084892, 0.00921717844903469, -0.030766502022743225, -0.03476841747760773, -0.02253561094403267, -0.02324517071247101, 0.0011273127747699618, 0.011658063158392906, -0.02401149459183216, 0.0448157824575901, 0.01620633900165558, 0.005211714655160904, -0.01443244144320488, -0.011296187527477741, 0.014162808656692505, 0.0623844750225544, 0.017568694427609444, -0.0032852606382220984, 0.021598992869257927, -0.0298015009611845, -0.0054671564139425755, 0.00014446188288275152, -0.01915810815989971, 0.0364997424185276, -0.007840633392333984, 0.0005991343641653657, -0.0002727369428612292, 0.017043620347976685, 0.003849360393360257, 0.004480868577957153, -0.004466677084565163, 0.00034879284794442356, -0.007961258292198181, -0.017001045867800713, 0.016717223450541496, -0.006478278432041407, -0.005382009316235781, 0.028921646997332573, 0.03825945034623146, 0.04748372361063957, 0.031845033168792725, 0.03283841535449028, 0.012069608084857464, 0.00848633237183094, -0.0205630362033844, -0.018193107098340988, -0.0071984813548624516, -0.014524683356285095, 0.016490163281559944, -0.0029588632751256227, 0.026452379301190376, 0.014389867894351482, -0.029517676681280136, -0.020435314625501633, 0.0038103347178548574, -0.020307594910264015, 0.003216078504920006, 0.006169620435684919, -0.02166994847357273, 0.00810316950082779, -0.028410764411091805, 0.007386514917016029, 0.02672201208770275, -0.0012639029882848263, -0.0018643677467480302, 0.01271530706435442, 0.0047646923922002316, -0.008862398564815521, 0.02091781608760357, 0.0033952423837035894, -0.0013064765371382236, -0.01569545641541481, 0.006464087404310703, -0.013758359476923943, -0.04135312885046005, -0.045184750109910965, -0.020690755918622017, -0.0018342114053666592, -0.02345803752541542, -0.020804286003112793, -0.014858176931738853, 0.007471662014722824, 0.022762669250369072, -0.02599826082587242, -0.0018714632606133819, 0.0035194153897464275, -0.032923564314842224, -0.04007592424750328, 0.011047841981053352, 0.026111790910363197, 0.016348252072930336, 0.009806113317608833, 0.014744646847248077, -0.0063612014055252075, 0.00495627336204052, 0.00631862785667181, -0.03411562368273735, 0.0006363862194120884, -0.02057722583413124, -0.00401965482160449, -0.016887517645955086, -0.031135473400354385, -0.006790484767407179, -0.011686445213854313, -0.003052879823371768, -0.0014510492328554392, -0.01507104467600584, -0.013573873788118362, -0.004126088693737984, 0.012850123457610607, 0.046064604073762894, 0.005346531048417091, 0.013424866832792759, 0.025217745453119278, -0.042318131774663925, 0.019981196150183678, -0.0071452646516263485, -0.0077980593778193, -0.01352420449256897, 0.012857219204306602, -0.0015929611399769783, 0.011125893332064152, -0.013637734577059746, 0.006382488179951906, -0.044361662119627, 0.008081883192062378, -0.01876075379550457, -0.012516629882156849, -0.011934791691601276, -0.005158497951924801, 0.004094158764928579, -0.0014616926200687885, 0.010054458864033222, 0.002027566311880946, -0.026480762287974358, 0.018462739884853363, -0.0328100323677063, 0.0349670946598053, 0.013964131474494934, -0.012843027710914612, 0.01947031356394291, 0.023358700796961784, -0.022805243730545044, -0.03468326851725578, 0.00991254672408104, -0.006364749278873205, 0.013935749419033527, -0.0025011973921209574, -0.00937328115105629, -0.008699200116097927, -0.02257818542420864, -0.003938055597245693, 0.006496017798781395, 0.00043305306462571025, 0.010061554610729218, -0.02344384789466858, 0.011736114509403706, 0.012310857884585857, 0.001796072581782937, 0.002107391832396388, -0.03340606391429901, -0.026409806683659554, -0.015198765322566032, 0.008883685804903507, 0.02652333490550518, -0.024423038586974144, -0.009642913937568665, -0.03283841535449028, -0.02655171789228916, 0.017724797129631042, -0.015142000280320644, 0.00663792947307229, -0.009472619742155075, 0.052791230380535126, 0.024323701858520508, 0.03193017840385437, 0.04172210022807121, 0.02020825631916523, 0.021542226895689964, -0.022649141028523445, -0.0091249356046319, -0.004949177615344524, -0.01541163306683302, -0.003469746094197035, -0.0009854008676484227, 0.0005902648554183543, 0.016830751672387123, -0.0298015009611845, 0.01172901876270771, 0.010437620803713799, 0.014326007105410099, 0.011778688058257103, -0.006205098237842321, -0.04342504218220711, -0.042516808956861496, -0.0005725258379243314, 0.01524133887141943, -0.00039668811950832605, -0.012197328731417656, -0.030369147658348083, -0.0042573572136461735, 0.030880032107234, -0.00966420117765665, 0.03323576971888542, 0.010437620803713799, 0.048079755157232285, 0.009068170562386513, 0.005623259581625462, -0.0028045340441167355, 0.011764497496187687, -0.03363312408328056, -0.025827966630458832, -0.03048267774283886, -0.021059727296233177, 0.0004408138629514724, 0.0050520640797913074, 0.031476061791181564, 0.008954641409218311, 0.004108349792659283, 0.00036542315501719713, 0.005193975754082203, -0.036556508392095566, -0.014574352651834488, 0.017994429916143417, -0.02745995484292507, -0.009884164668619633, -0.021939581260085106, -0.01370869018137455, -0.007202029228210449, -0.017270678654313087, 0.016376635059714317, -0.005768719129264355, 0.021329360082745552, -0.026849733665585518, -0.009969311766326427, 0.02709098346531391, -0.02960282377898693, 0.02091781608760357, 0.027303850278258324, 0.040473274886608124, -0.0001339293667115271, 0.006190907210111618, -0.027105174958705902, -0.021598992869257927, -0.003320738673210144, -0.017980238422751427, 0.008493428118526936, 0.034541357308626175, -0.015624500811100006, -0.002093200571835041, 0.004814361687749624, -0.021428698673844337, -0.012204424478113651, -0.04524151608347893, 0.006272506434470415, 0.011147180572152138, 0.0030262714717537165, -0.0338885635137558, -0.03343444690108299, -0.013999609276652336, 0.02415340766310692, -0.018306635320186615, 0.007226863875985146, 0.0031522181816399097, -0.01695847325026989, 0.003416529158130288, 0.019626416265964508, -0.006542138755321503, 0.026423998177051544, -0.0063328188844025135, 0.001534422510303557, 0.012736593373119831, -0.000999592011794448, -0.00975644402205944, 0.0012816418893635273, 0.00428219186142087, 0.033462826162576675, -0.03263973817229271, -0.005999325774610043, 0.018107960000634193, 0.02219502255320549, -0.007790963631123304, 0.005754528101533651, -0.0311922375112772, 0.031674738973379135, -0.005314601119607687, -0.02000957913696766, 0.012183137238025665, 0.012772072106599808, 0.0015220051864162087, -0.01569545641541481, -0.01765384152531624, 0.0007796285208314657, -0.011494864709675312, 0.007315558847039938, 0.027119366452097893, -0.023770244792103767, -0.02384120039641857, -0.007790963631123304, 0.009614531882107258, -0.02270590513944626, 0.0029766021762043238, -0.0021322264801710844, 0.02128678560256958, -0.026267893612384796, -0.004438295029103756, 0.013368101790547371, -0.002825820818543434, 0.010246039368212223, -0.02201053686439991, -0.01561031024903059, -0.0066840508952736855, 0.02324517071247101, -0.017015237361192703, 0.026267893612384796, 0.033831797540187836, -0.004392173606902361, -0.04617813602089882, 0.02054884470999241, -0.01623472198843956, -0.0075142355635762215, 0.0054281302727758884, -0.018817519769072533, -0.02649495378136635, -0.030170472338795662, 0.017086192965507507, -0.0021783479023724794, 0.00302094966173172, 0.009323612786829472, 0.012225710786879063, 0.023032302036881447, -0.0042218794114887714, -0.012630159966647625, 0.00311319250613451, 0.0006971422699280083, 0.007233959622681141, 0.004477320704609156, 0.008386993780732155, -0.012055416591465473, 0.006180263590067625, 0.0027708299458026886, 0.007748390082269907, -0.007812250405550003, -0.018122151494026184, -0.02721870318055153, -0.008968832902610302, 0.009827399626374245, 0.008330228738486767, 0.015780603513121605, 0.0007641069241799414, -0.015198765322566032, -0.0068224151618778706, 0.028779735788702965, -0.033292531967163086, 0.009522289037704468, 0.010976886376738548, -0.023685097694396973, 0.006485374178737402, 0.022791052237153053, -0.01661788485944271, -0.032753270119428635, -0.012694019824266434, -0.022124066948890686, -0.037067390978336334, -0.003930959850549698, 0.008699200116097927, 0.03984886407852173, 0.0018129246309399605, -0.03394532948732376, -0.025671863928437233, -0.0023699288722127676, -0.045383427292108536, -0.01748354732990265, -0.029915031045675278, 0.024763628840446472, 0.020790094509720802, 0.0346548892557621, -0.004363791085779667, 0.030170472338795662, 0.002300746738910675, 0.0010191048495471478, -0.037975627928972244, 0.003450233256444335, -0.009422950446605682, -0.022138258442282677, 0.03641459718346596, -0.02290458232164383, -0.04839196056127548, 0.005044968333095312, 0.010387951508164406, -0.01931421086192131, 0.019612226635217667, -0.004711475223302841, 0.018093768507242203, 0.009252656251192093, 0.0036861617118120193, 0.021868625655770302, 0.02145707979798317, 0.03178826719522476, 0.013644830323755741, -0.03153282776474953, -0.004253809340298176, 0.01643339917063713, -0.005587781313806772, -0.017043620347976685, 0.011423908174037933, 0.0035726323258131742, -0.016362443566322327, -0.0070991432294249535, 0.005846770480275154, -0.00937328115105629, -0.013190711848437786, -0.007414896972477436, -0.007649051956832409, 0.032015327364206314, 0.012779166921973228, 0.033661503344774246, -0.02763024903833866, -0.018987813964486122, 0.003560215001925826, 0.012793358415365219, 0.005208167247474194, 0.02561509981751442, 0.03630106523633003, -0.013552587479352951, -0.0008346193935722113, -0.00121955550275743, 0.002903872402384877, 0.002089652931317687, -0.01606442779302597, -0.021556418389081955, -0.009210082702338696, -0.0026235964614897966, -0.004952725488692522, -0.0028506554663181305, -0.017795752733945847, 0.016859134659171104, -0.008032213896512985, -0.004445390310138464, 0.011842548847198486, -0.004030297975987196, 0.00753552233800292, -0.015936708077788353, -0.0078548239544034, 0.007045926060527563, 0.002011601347476244, -0.028070176020264626, 0.009245560504496098, 0.01985347643494606, 0.01714295893907547, -0.007393610198050737, 0.204239621758461, 0.0144395362585783, 0.004668901674449444, 0.05216681584715843, 0.024635907262563705, -0.017469355836510658, 0.020988771691918373, 0.0018856545211747289, -0.01966899074614048, 0.011005268432199955, -0.008443758822977543, 0.023202596232295036, -0.019385166466236115, -0.008897876366972923, 0.018264062702655792, -0.026310468092560768, -0.03774856775999069, -0.004069324117153883, -0.019058769568800926, 0.015738030895590782, 0.005768719129264355, 0.0020665922202169895, -0.015482589602470398, -0.005335887894034386, 0.012310857884585857, -0.01200574729591608, -0.014773029834032059, -0.0037606656551361084, 0.01056534145027399, 0.023330317810177803, 0.001526439911685884, -0.005076898727566004, 0.015752222388982773, 0.0015202313661575317, -0.01254501286894083, -0.009600340388715267, 0.011211040429770947, -0.016475971788167953, 0.0002461284748278558, 0.03175988420844078, 0.0004066663095727563, -0.012800454162061214, 0.017710605636239052, -0.012424387969076633, 0.01912972517311573, -0.00012882940063718706, -0.021513845771551132, 0.008060595951974392, -0.014843985438346863, 0.01037376094609499, -0.014106043614447117, 0.004512798506766558, 0.013133946806192398, 0.010991076938807964, -0.010891739279031754, 0.022961346432566643, -0.013055895455181599, -0.0021340004168450832, -0.021400315687060356, -0.008401185274124146, -0.016901709139347076, 0.003867099527269602, -0.011161371134221554, 0.007663242984563112, -0.019981196150183678, 0.00770581653341651, -0.024792009964585304, 0.010927217081189156, 0.012665637768805027, 0.006137690041214228, -0.007876111194491386, 0.003125609830021858, -0.02649495378136635, -0.0021286786068230867, -0.028808116912841797, -0.01568126678466797, 0.014673691242933273, 0.018491121008992195, 0.021201638504862785, 0.016092810779809952, -0.010203465819358826, 0.007776772603392601, -0.02384120039641857, -0.009344899095594883, 0.019229063764214516, -0.01643339917063713, 0.033093858510255814, -0.01243857853114605, -0.010082840919494629, -0.03630106523633003, 0.00014690100215375423, 0.007869015447795391, -0.014475014992058277, -0.007265889551490545, 0.006017064675688744, -0.01681656204164028, 0.0074858530424535275, 0.021343551576137543, -0.0193284023553133, -0.03266812115907669, -0.023557376116514206, 0.05971653014421463, 0.003781952429562807, 0.02704840898513794, -0.019527077674865723, 0.009841591119766235, 0.00143064942676574, 0.0368119478225708, -0.013850602321326733, -0.0075426180846989155, 0.00037030139355920255, -0.03786209598183632, 0.019924432039260864, -0.0076064784079790115, 0.006804675795137882, 0.01751193031668663, 0.015014279633760452, -0.014524683356285095, 0.018008621409535408, -0.023174215108156204, 0.008628243580460548, 0.0010403916239738464, 0.02775796875357628, 0.009082362055778503, -0.03144767880439758, -0.03519415482878685, -0.010863356292247772, 0.025203555822372437, -0.031674738973379135, -0.021911198273301125, 0.014758838340640068, -0.011125893332064152, 0.01660369336605072, -0.016859134659171104, -0.007748390082269907, 0.01769641414284706, 0.024309510365128517, 0.0003008976054843515, -0.0182498712092638, -0.03158959001302719, -0.0008953754440881312, 0.021215829998254776, 0.011899313889443874, 0.0054848953150212765, 0.002252851612865925, 0.005080446135252714, 0.006233480758965015, -0.0157096479088068, -0.003274617251008749, -0.044106222689151764, 0.0015113617992028594, -0.00313270534388721, 0.002731804270297289, -0.0009623400983400643, 0.030425913631916046, -0.00420414051041007, -0.028055984526872635, -0.032214004546403885, 0.01768222451210022, 0.022478846833109856, -0.0360456258058548, -0.004597945604473352, 0.02920547127723694, 0.0115516297519207, -0.017625458538532257, -0.00983449537307024, -0.18198783695697784, 0.014574352651834488, 0.010650488547980785, 0.009316517040133476, 0.017455164343118668, 0.00822379533201456, 0.0026271441020071507, 0.002400085097178817, -0.0023379987105727196, -0.01788089983165264, 0.015212956815958023, -0.008415375836193562, 0.0025437709409743547, -0.006105759646743536, 0.009763538837432861, 0.004480868577957153, -0.030766502022743225, 0.028737161308526993, 0.03860003873705864, 0.0032710693776607513, 0.02812694013118744, -0.029290618374943733, -0.01661788485944271, 0.007776772603392601, 0.024806201457977295, 0.002024018671363592, -0.006904014386236668, 0.02866620570421219, -0.017228106036782265, -0.03703900799155235, -0.006964326836168766, -0.01983928494155407, 0.02633885107934475, -0.004399269353598356, 0.020790094509720802, 0.006705337669700384, 0.0013614674098789692, 0.0051620458252727985, -0.004424103535711765, 0.012835931964218616, 0.017100384458899498, 0.007507139816880226, 0.0042112357914447784, -0.00532879214733839, 0.010224753059446812, 0.01335391029715538, 0.017909282818436623, -0.0071168821305036545, 0.00762776518240571, -0.020704947412014008, 0.02469267137348652, -0.011381334625184536, 0.008713391609489918, 0.012417292222380638, -0.00409770617261529, -0.00018991804972756654, 0.0035850496497005224, 0.02236531674861908, 0.004253809340298176, -0.026438187807798386, -0.0013472761493176222, -0.008074787445366383, 0.00929522980004549, -0.0009051318629644811, -0.0013579195365309715, -0.01752611994743347, 0.015283912420272827, 0.009713870473206043, -0.007272985298186541, -0.007407801691442728, 0.0008448193548247218, -0.0051407590508461, 0.005562946666032076, 0.01453177910298109, 0.014758838340640068, 0.01639082469046116, -0.04981108009815216, 0.0046901884488761425, 0.0360456258058548, 0.00856438372284174, 0.006602451670914888, 0.022294361144304276, -0.010955599136650562, -0.010316995903849602, -0.006825962569564581, 0.009990598075091839, -0.0037606656551361084, 0.014744646847248077, 0.002041757572442293, 0.015113618224859238, 0.02293296344578266, -0.0046263281255960464, 0.00770581653341651, 0.011409717611968517, 0.022947154939174652, 0.00033171908580698073, 0.026792967692017555, -0.017994429916143417, 0.015340677462518215, 0.001099817338399589, -0.0050130379386246204, 0.027488335967063904, -0.030936796218156815, 0.00753552233800292, 0.03439944609999657, 0.034200768917798996, 0.024990687146782875, 0.01011122390627861, 0.03272488713264465, -0.018689798191189766, -0.019527077674865723, 0.010246039368212223, 0.023259362205863, 0.005601972807198763, -0.004108349792659283, 0.03825945034623146, -0.0027584126219153404, -0.026636864989995956, 0.013573873788118362, -0.01983928494155407, 0.04507122188806534, -0.036925479769706726, -0.0272612776607275, 0.004392173606902361, -0.002330903196707368, 0.0035034501925110817, -0.10768275707960129, -0.010622106492519379, 0.0077200080268085, 0.016660457476973534, -0.007897397503256798, 0.010160892270505428, -0.0022404342889785767, 0.04972593113780022, -0.020435314625501633, 0.031135473400354385, -0.035449594259262085, -0.0070991432294249535, 0.008386993780732155, -0.001422666828148067, -0.0013357457937672734, -0.017753180116415024, -0.002428467618301511, -0.01985347643494606, -0.007954162545502186, 0.03428591787815094, 0.004335408564656973, -0.0059354654513299465, 0.00546006066724658, -0.030454294756054878, -0.014162808656692505, -0.007812250405550003, -0.01915810815989971, 0.00309367966838181, 0.00802511814981699, 0.010253135114908218, 0.0274173803627491, -0.01307008694857359, 0.02561509981751442, -0.02162737399339676, -0.006467635277658701, -0.01897362247109413, -0.009948024526238441, -0.02957444079220295, 0.013176520355045795, -0.022124066948890686, -0.009351994842290878, -0.0010918347397819161, -0.024437230080366135, -0.02220921404659748, -0.008770155720412731, -0.0026555266231298447, -0.01658950187265873, 0.029262235388159752, 0.010877547785639763, -0.01660369336605072, -0.005956752225756645, -0.02002377063035965, -0.013559683226048946, -0.04351019114255905, 0.02814113162457943, -0.010466002859175205, 0.025203555822372437, 0.017270678654313087, -0.010948503389954567, -0.003086583921685815, 0.0019743493758141994, 0.007734199054539204, -0.0037784045562148094, 0.036698419600725174, 0.0031025491189211607, 0.010217657312750816, -0.006428609602153301, -0.00957195833325386, -0.019399357959628105, -0.011601298116147518, -0.010011885315179825, 0.01895943097770214, -0.01660369336605072, 0.00450570322573185, -0.003852908266708255, -0.01894523948431015, -0.02704840898513794, -0.012275380082428455, 0.02379862777888775, 0.013204903341829777, -0.010444716550409794, -0.01246696151793003, -0.0043318611569702625, -0.03854327276349068, 0.027871498838067055, 0.0004687527834903449, 0.013424866832792759, -0.017980238422751427, 0.027843115851283073, -0.041381511837244034, 0.023358700796961784, 0.017909282818436623, 0.01335391029715538, -0.014049278572201729, -0.004487964324653149, 0.014489205554127693, -0.03212885558605194, 0.0002940237463917583, 0.010891739279031754, 0.0032675217371433973, -0.01860465109348297, -0.011062033474445343, -0.044361662119627, 0.026792967692017555, 0.01110460702329874, 0.008493428118526936, -0.0025136147160083055, -0.002747769234701991, -0.005137211177498102, -0.010948503389954567, -0.007741294801235199, 0.013396483846008778, -0.02362833358347416, 0.009323612786829472, -0.026026643812656403, -0.02652333490550518, -0.0335763581097126, -0.02781473472714424, -0.010976886376738548, -0.01299203559756279, 0.017753180116415024, 0.0005459173698909581, -0.006566973403096199, 0.006364749278873205, 0.0068224151618778706, 0.020520461723208427, -0.0022085041273385286, 0.010331186465919018, -0.034342680126428604, 0.03082326613366604, 0.0025207102298736572, -0.008997214958071709, 0.020279211923480034, -0.004424103535711765, -0.0055948770605027676, 0.008614053018391132, -0.01622053049504757, -0.02347222901880741, 0.010331186465919018, -0.010863356292247772, 0.01381512451916933, 0.002678587334230542, -0.014957515522837639, -0.009238464757800102, 0.027374807745218277, -0.00491724768653512, -0.022805243730545044, -0.013091373257339, -0.014829793944954872, -0.021343551576137543, 0.01983928494155407, 0.026821350678801537, 0.040161069482564926, 0.0063789403066039085, -0.01874656230211258, -0.03332091495394707, -0.00487822201102972, -0.0006567860255017877, 0.03621592000126839, 0.021400315687060356, 0.01488655898720026, -0.006737268064171076, 0.047341812402009964, 0.009919642470777035, 0.0220247283577919, -0.02344384789466858, 0.0019619320519268513, -0.014574352651834488, -0.04802298918366432, 0.00029956718208268285, 0.00016630301252007484, -0.0486757829785347, 0.012892697006464005, -0.021073918789625168, 0.028410764411091805, 0.02745995484292507, 0.014787220396101475, -0.002779699396342039, 0.0019033934222534299, -0.041409894824028015, -0.008443758822977543, 0.05091799423098564, 0.028538484126329422, -0.007585191633552313, -0.017923474311828613, 0.013204903341829777, 0.024437230080366135, 0.013247476890683174, -0.015000089071691036, 0.027161939069628716, 0.00903269276022911, -0.004186401143670082, 0.005346531048417091, -0.009061075747013092, -0.014113139361143112, 0.0017872031312435865, 0.0275734830647707, 0.023741861805319786, -0.012736593373119831, 0.017440972849726677, 0.024493996053934097, 0.02274847961962223, 0.017738988623023033, 0.012168945744633675, 0.001101591158658266, 0.0051159244030714035, -0.015794795006513596, 0.010863356292247772, -0.03936636447906494, -0.011480673216283321, 0.015383251011371613, 0.03289518132805824, 0.0017951856134459376, -0.011431003920733929, 0.001741968677379191, 0.008273464627563953, -0.005506182089447975, 0.013268763199448586, -0.008436663076281548, -0.026267893612384796, -0.023202596232295036, -0.0039061252027750015, 0.00591063080355525, 0.0027513171080499887, 0.019782520830631256, -0.006453444249927998, 0.014574352651834488, 0.0011237649014219642, -0.001917584682814777, -0.005715501960366964, 0.009657105430960655, -0.024635907262563705, 0.01951288804411888, 0.008167030289769173, 0.013949940912425518, -0.021613184362649918, -0.005382009316235781, -0.021428698673844337, -0.014262146316468716, 0.028581058606505394, -0.0071346210315823555, 0.08577156066894531, 0.031135473400354385, -0.035449594259262085, -0.002586344489827752, -0.014290529303252697, 0.0039274119772017, 0.010551149956882, -0.004587302450090647, 0.0018049420323222876, -0.010685966350138187, 0.020875241607427597, -0.0070991432294249535, -0.023557376116514206, -0.0051407590508461, -0.015780603513121605, -0.0003683057439047843, 0.013850602321326733, -0.0032497826032340527, -0.010061554610729218, 0.00546006066724658, 0.03513738885521889, -0.026253702118992805, 0.03252620995044708, -0.0023876677732914686, -0.018661415204405785, -0.017440972849726677, 0.028226278722286224, 0.009501001797616482, 0.016135383397340775, -0.025345467031002045, 0.018349209800362587, -0.012459865771234035, -0.022493038326501846, -0.006570521276444197, -0.009004310704767704, -0.011409717611968517, -0.008521810173988342, -0.020293403416872025, -0.009529384784400463, 0.006119951140135527, -0.005335887894034386, 0.012069608084857464, -0.01768222451210022, -0.010983982123434544, 0.019243255257606506, 0.006091568619012833, 0.01505685318261385, -0.017824135720729828, -0.020236637443304062], "cf8ca687-4a5d-42df-8c80-d4f5cd78def8": [-0.02396038919687271, -0.008658071048557758, -0.003217665245756507, -0.03616662323474884, 0.011048629879951477, 0.01476803794503212, -0.0073703196831047535, -0.019179271534085274, -0.0182340070605278, -0.04498909041285515, 0.015877695754170418, -0.00010584988194750622, 0.026604387909173965, -0.005164703819900751, 0.015261219814419746, 0.019001176580786705, 0.019329965114593506, 0.0034950796980410814, 0.021384887397289276, -0.018288804218173027, -0.020590316504240036, -0.003726258408278227, -0.030851226300001144, 0.004904413595795631, -0.024700161069631577, 0.0077059571631252766, 0.03570084273815155, -0.022165756672620773, -0.007801853120326996, 0.00022925222583580762, 0.02071361243724823, -0.017987415194511414, -0.012500775046646595, -0.01516532339155674, -0.031399205327034, -0.013137800619006157, 0.0050414083525538445, -0.026412595063447952, 0.0019607378635555506, -0.00717852683737874, 0.03356372192502022, -0.012973406352102757, -0.012562422081828117, 0.0052503254264593124, -0.002159380353987217, 0.027097569778561592, -0.0012475088005885482, -0.02298772521317005, -0.008890962228178978, -0.002577214501798153, 0.004291361663490534, 0.015192721970379353, 0.001709866221062839, 0.012925458140671253, -0.011802101507782936, 0.005363346077501774, -0.010884236544370651, 0.0036063878796994686, -0.0007680270355194807, -0.0020172481890767813, 0.009747179225087166, 0.013630981557071209, -0.012850111350417137, 0.013932370580732822, -0.024768657982349396, -0.02467276155948639, 0.0010223236167803407, -0.014384453184902668, -0.021604077890515327, -0.001775795011781156, 0.029316885396838188, 0.041509419679641724, -0.009247148409485817, -0.001768945250660181, -0.014507748186588287, -0.02215205691754818, 0.004031071905046701, 0.011322619393467903, -0.0002172651729779318, -0.019795747473835945, 0.015302318148314953, 0.004462605342268944, 0.00662712287157774, -0.013548784889280796, 0.01706955023109913, 0.043536946177482605, -0.019905343651771545, 0.00526059977710247, -0.0034077453892678022, 0.009000557474792004, 0.0015771525213494897, 0.017740825191140175, 0.027385259047150612, 0.00920605007559061, 0.010226661339402199, 0.007356620393693447, 0.033947307616472244, 0.007336071226745844, -0.0044865794479846954, -0.018918979912996292, -0.025275539606809616, -0.0026337248273193836, -0.002142256125807762, -0.012514473870396614, -0.02442617155611515, 0.0022569892462342978, 0.0056647346355021, -0.017535332590341568, 0.00017702295735944062, 0.004990035202354193, -0.010959583334624767, 0.04613984376192093, -0.009843075647950172, -0.0025892015546560287, -0.012870660983026028, -0.0034574060700833797, 0.028467517346143723, -0.020741011947393417, 0.00412354338914156, -0.02316581830382347, 0.03257736191153526, 0.014384453184902668, 0.0226589385420084, -0.030714232474565506, 0.013233697041869164, -0.0030361469835042953, -0.003688584780320525, -0.012158287689089775, 0.028659310191869736, -0.007760754786431789, 0.033947307616472244, 0.03296094760298729, 0.0020480721723288298, -0.015357116237282753, -0.0347144789993763, 0.01671336404979229, -0.024398772045969963, 0.013850172981619835, -0.002263838890939951, -0.022289052605628967, 0.004924962762743235, 0.012076091021299362, -0.010370505973696709, -0.036906395107507706, 0.001573727698996663, 0.019905343651771545, -0.017425736412405968, 0.02215205691754818, 0.023659000173211098, -0.03076902963221073, 0.013288494199514389, -0.010651345364749432, -0.019864244386553764, 0.013487136922776699, 0.02071361243724823, 0.006267511751502752, -0.020412223413586617, 0.023220617324113846, -0.010651345364749432, -0.0019795747939497232, 0.002532691229134798, 0.009863625280559063, -0.01084313727915287, 0.00047990988241508603, 0.0037159835919737816, 0.02237124927341938, 0.0029727870132774115, -0.03131701052188873, -0.010589697398245335, -0.003517341334372759, 0.016261281445622444, 0.0261934045702219, -0.014384453184902668, 0.020699912682175636, 0.021138295531272888, 0.0006824053125455976, 0.017603831365704536, -0.01808331161737442, -0.0061784652061760426, -0.030960822477936745, 0.033262334764003754, -0.0030258724000304937, 0.008384081535041332, 0.010569147765636444, -0.015411914326250553, -0.020699912682175636, 0.009891023859381676, 0.01898747868835926, 0.008788215927779675, -0.003275887807831168, 0.007993645966053009, 0.011048629879951477, -0.016370877623558044, -0.0193436648696661, -0.6124215126037598, -0.0035481650847941637, 0.008664920926094055, -0.010151313617825508, -0.0030772455502301455, 0.007212775759398937, 0.0080141955986619, 0.011788401752710342, -0.00120641035027802, 0.007342920638620853, 0.0030310098081827164, 0.008747117593884468, -0.0017826446564868093, -0.019686151295900345, -0.014398152008652687, -0.012761064805090427, 0.018973778933286667, -8.655822966829874e-06, -0.010815738700330257, 0.006997008807957172, -0.03219377622008324, 0.03597483038902283, 0.0019436136353760958, -0.012308982200920582, 0.021083498373627663, 0.0036440615076571703, 0.020686212927103043, -0.00025429658126085997, -0.01441185176372528, 0.013637831434607506, -0.037591371685266495, 0.02190546691417694, 0.02622080221772194, -0.01657637022435665, 0.04635903611779213, -0.008425179868936539, -0.0032741755712777376, 0.015685902908444405, 0.01956285536289215, 0.02572762221097946, -0.018672389909625053, -0.011425365693867207, 0.015863995999097824, 0.032467763870954514, 0.018357301130890846, 0.009425241500139236, -0.007144278381019831, 0.00270222220569849, -0.02089170552790165, -0.00945264007896185, -0.004534527659416199, -0.01316519919782877, 0.004459180403500795, -0.0012963132467120886, 0.012500775046646595, -0.007658008951693773, 0.02874150685966015, -0.004246838390827179, 0.009555386379361153, 0.011500712484121323, 0.016836659982800484, 0.002441932214424014, -0.006675071083009243, -0.04668782278895378, -0.03972848877310753, 0.005774330347776413, -0.010466402396559715, -0.01883678324520588, 0.012685718014836311, 0.012535023503005505, 0.023028824478387833, 0.00025322631699964404, -0.0007491902797482908, -0.002863191068172455, -0.012254184111952782, 0.02533033676445484, 0.04452330619096756, -0.006274361163377762, -0.009870474226772785, 0.02352200634777546, 0.005986672360450029, -0.004233139101415873, -0.008596423082053661, -0.016672266647219658, 0.03320753574371338, 0.015151623636484146, -0.024946751073002815, -0.010096516460180283, -0.00743881706148386, -0.013295344077050686, 0.019206669181585312, 0.0015651654684916139, 0.000731209700461477, -0.04849615693092346, 0.022028762847185135, 0.02471386082470417, 0.004308486357331276, -0.01649417355656624, -0.01435705367475748, -0.01130891963839531, -0.03057723678648472, -0.030358046293258667, 0.007247024215757847, 0.011637707240879536, 0.018247706815600395, 0.01193909626454115, -0.004483154509216547, -0.009733479470014572, 0.03372811898589134, -0.009212899953126907, 0.009034806862473488, -0.01841210015118122, -0.013747427612543106, -0.020905405282974243, -0.005267449654638767, -0.023946689441800117, 0.006671646144241095, -0.00792514905333519, -0.016165385022759438, -0.012911759316921234, -0.0072607239708304405, 0.014507748186588287, -0.011911696754395962, -0.0010026305681094527, 0.0037742063868790865, 0.016343478113412857, 0.012596670538187027, 0.010562297888100147, -0.0008228249498642981, -0.0036063878796994686, -0.00012886073091067374, -0.0062606618739664555, 0.010199261829257011, -0.019932741299271584, 0.018384700641036034, 0.000652437680400908, 0.02161777764558792, 0.00934989470988512, -0.003582413773983717, -0.018028514459729195, -0.00373310805298388, 0.002950525376945734, 0.024700161069631577, -0.009075905196368694, -0.009069055318832397, -0.01711064949631691, -0.017425736412405968, 0.02352200634777546, -0.0025806394405663013, -0.007712806575000286, -0.028357921168208122, -0.027001673355698586, -0.016727063804864883, 0.0329335480928421, -0.002726196311414242, 0.00752786360681057, 0.010151313617825508, -0.04803037270903587, -0.008164889179170132, -0.015603706240653992, -0.002145680831745267, 0.026850979775190353, -0.011891148053109646, 0.008589573204517365, -0.014494048431515694, -0.008185438811779022, -0.03112521581351757, 0.014014567248523235, -0.014151562005281448, -0.017412038519978523, -0.007795003708451986, -0.019357364624738693, 0.024809757247567177, 0.014220058917999268, -0.02712496928870678, 0.013576183468103409, -0.024864554405212402, 0.012096639722585678, 0.005144154187291861, 0.010274609550833702, 0.02367269992828369, 0.026289300993084908, -0.014178960584104061, -0.0013982030795887113, 0.03008405677974224, 0.029947061091661453, -0.0007778735598549247, 0.03219377622008324, -0.04167381674051285, 0.00781555287539959, -0.0147543391212821, 0.014795437455177307, -0.013733727857470512, -0.005246900487691164, -0.015521509572863579, -0.020727312192320824, -0.03709818795323372, -0.029152492061257362, -0.013925520703196526, 0.0351528637111187, 0.008980008773505688, -0.004613299388438463, -0.004692071583122015, -0.0005723813665099442, 0.016343478113412857, -0.02637149766087532, 0.009459489956498146, -0.013459738343954086, 0.006058594677597284, -0.014466649852693081, 0.004260538145899773, 0.0065689003095030785, -0.004579050932079554, -0.029727868735790253, -0.008281335234642029, 0.0147543391212821, -0.026755083352327347, 0.01804221421480179, -0.003596113296225667, 0.008589573204517365, -0.0012218223419040442, 0.010706142522394657, 0.02356310375034809, 0.0056955586187541485, -0.004397532902657986, 0.006822340656071901, -0.01286381110548973, 0.010699293576180935, 0.01772712543606758, -0.025439932942390442, 0.0017809323035180569, 0.015466711483895779, 0.00752786360681057, -0.0011310632107779384, 0.016302380710840225, 0.024768657982349396, 0.04529047757387161, -0.026631787419319153, 0.03137180581688881, -0.028303124010562897, 0.007692257408052683, -0.0008155471296049654, 0.030933422967791557, -0.024412471801042557, 0.012946007773280144, 0.013994017615914345, 0.024617964401841164, 0.00025215602363459766, -0.010528049431741238, 0.015795499086380005, -0.0027775694616138935, 0.008493676781654358, -0.0034574060700833797, 0.0008729136898182333, 0.018329903483390808, -0.007075781002640724, -0.014055665582418442, 0.008877262473106384, 0.02986486442387104, 0.021590378135442734, -0.00037138431798666716, 0.02385079301893711, 0.0058325533755123615, -0.005767480470240116, 0.020001240074634552, -0.004383833147585392, -0.008418329991400242, -0.018110711127519608, -0.00947318971157074, -0.004318760707974434, -0.008075842633843422, -0.03274175524711609, -0.00981567706912756, -0.01980944722890854, -0.021521881222724915, 0.0028700409457087517, -0.010630795732140541, 0.03528985753655434, -0.0012937445426359773, 0.012576121836900711, -0.002474468434229493, -0.017014753073453903, 0.013500836677849293, -0.004911263007670641, -0.00653807632625103, -0.004198890179395676, -0.013035054318606853, 0.006099693011492491, -0.005774330347776413, 0.010343106463551521, -0.01275421492755413, 0.012596670538187027, -0.005281148944050074, 0.0224397461861372, -0.015877695754170418, 0.020686212927103043, 0.05345536768436432, -0.01754903234541416, -0.002265551360324025, 0.009808827191591263, 0.0006601436180062592, 0.008884112350642681, -0.019179271534085274, -0.019973840564489365, 0.0457562617957592, -0.02648109383881092, 0.004260538145899773, -0.01545301266014576, 0.013946069404482841, -0.017658628523349762, 0.008178588934242725, -0.02298772521317005, -0.020549219101667404, -0.010473251342773438, -0.02907029539346695, 0.002667973516508937, -0.015411914326250553, -0.011336319148540497, 0.040577858686447144, 0.005305123049765825, -0.015494110994040966, -0.02756335213780403, -0.010411604307591915, 0.027946937829256058, 0.06625068187713623, 0.008548474870622158, -0.011904846876859665, 0.01837100088596344, -0.03068683296442032, -0.004287936724722385, -0.0191244725137949, -0.035317257046699524, 0.03528985753655434, -0.010274609550833702, -0.002597763668745756, 0.007274423260241747, 0.027714045718312263, -0.010623945854604244, 0.0032587635796517134, 0.018357301130890846, 0.01080888882279396, -0.02327541448175907, -0.0324951633810997, -0.001370804151520133, -0.010418454185128212, 0.011856898665428162, 0.03959149494767189, 0.03145400434732437, 0.04646863415837288, 0.03318013995885849, 0.04208479821681976, 0.007897749543190002, 0.010014318861067295, -0.029481278732419014, -0.010075966827571392, 0.010439002886414528, 0.004781118128448725, 0.020741011947393417, -0.007760754786431789, 0.0182340070605278, 0.0017175722168758512, -0.021521881222724915, -0.01120617426931858, 0.012562422081828117, -0.004599600099027157, 0.000772736209910363, 0.009575936011970043, -0.025042647495865822, 0.010993831790983677, -0.02791953831911087, 0.015699602663517, 0.038166750222444534, -0.018960079178214073, 0.0011456189677119255, -0.001989849377423525, 0.0005475510261021554, -0.014713240787386894, 0.01989164389669895, 0.019247768446803093, -0.006524377036839724, -0.008836164139211178, 0.0005385607946664095, -0.011637707240879536, -0.02813873067498207, -0.042523182928562164, -0.003400895744562149, -0.010466402396559715, -0.014425551518797874, -0.01534341648221016, -0.0013605295680463314, -0.0035447401460260153, 0.006764117628335953, -0.016329778358340263, 0.002864903537556529, 0.011815800331532955, -0.041016239672899246, -0.04397532716393471, 0.010130764916539192, 0.040687453001737595, 0.013480287045240402, 0.01775452494621277, 0.012089789845049381, -0.008034744299948215, 0.008384081535041332, -0.00781555287539959, -0.03123481199145317, 0.012973406352102757, -0.012630919925868511, -0.02590571530163288, -0.02791953831911087, -0.018069613724946976, -0.012569271959364414, -0.008281335234642029, 0.0036714603193104267, 0.008315583691000938, -0.030193651095032692, 0.0016927418764680624, 0.00026371495914645493, 0.003394045867025852, 0.03778316453099251, 0.0024367948062717915, 0.01848059706389904, 0.03298834711313248, -0.042879369109869, 0.012110339477658272, 0.00013613856572192162, 0.0007230756455101073, -0.0177956223487854, 0.003137180581688881, -0.0018785410793498158, -0.0008232530672103167, -0.022494545206427574, 0.01266516838222742, -0.0422217957675457, -0.010384204797446728, -0.022576741874217987, -0.007747055497020483, -0.023837093263864517, 0.014836535789072514, 0.002178217051550746, 0.007212775759398937, 0.023905590176582336, -0.003459118539467454, -0.021083498373627663, 0.0029762117192149162, -0.035810437053442, 0.051099058240652084, 0.014206360094249249, 0.005853102542459965, 0.016795560717582703, 0.02723456360399723, -0.017425736412405968, -0.03378291428089142, 0.0192340686917305, 0.0047982423566281796, 0.01689145714044571, -0.016411975026130676, -0.003294724738225341, -0.023795995861291885, -0.025700222700834274, -0.004126967862248421, 0.004154366906732321, -0.02226165309548378, 0.005267449654638767, -0.0088978111743927, -0.007596360985189676, 0.023713797330856323, -0.005455817561596632, 0.004606449976563454, -0.02164517715573311, -0.033015742897987366, 0.0002046359732048586, 0.026344098150730133, 0.010418454185128212, -0.02593311294913292, -0.01952175796031952, -0.020412223413586617, -0.01750793494284153, 0.02409738302230835, 0.0003309280436951667, -0.005651034880429506, 0.008425179868936539, 0.049509916454553604, 0.013446038588881493, 0.04545487090945244, 0.012767914682626724, 0.016521571204066277, 0.02046702243387699, -0.019069675356149673, -0.01330904383212328, -0.017535332590341568, -0.026412595063447952, -0.016000991687178612, 0.007281273137778044, 0.0066065737046301365, 0.007774454541504383, -0.021741073578596115, 0.006846314761787653, 0.006219563540071249, 0.00444890558719635, 0.002128556603565812, 0.009863625280559063, -0.030358046293258667, -0.03498847037553787, -0.004918112885206938, 0.017672328278422356, -0.005880501586943865, -0.0029402507934719324, -0.025563227012753487, -0.009945821948349476, 0.035865236073732376, -0.01161715853959322, 0.03767356649041176, 0.006202439311891794, 0.03923530876636505, 0.025563227012753487, 0.005877076648175716, -0.0008733418071642518, 0.017343539744615555, -0.03570084273815155, -0.014137862250208855, -0.031508803367614746, -0.03260476142168045, 0.010199261829257011, 0.013891271315515041, 0.0258646160364151, 0.0026183128356933594, 0.00787035096436739, 0.007356620393693447, 0.009247148409485817, -0.021768473088741302, 0.004161216784268618, 0.017713425680994987, -0.029837464913725853, 0.0014367328258231282, -0.04027646780014038, -0.002517279237508774, -0.012130889110267162, -0.005305123049765825, 0.013822774402797222, -0.004212589934468269, 0.014014567248523235, -0.023220617324113846, -0.013788525946438313, 0.022343849763274193, -0.018069613724946976, 0.033015742897987366, 0.04326295480132103, 0.03411170095205307, 0.008342982269823551, 0.005986672360450029, -0.02539883367717266, -0.023905590176582336, 0.0006781241972930729, -0.026864677667617798, -0.0011379129718989134, 0.02179587073624134, 0.0014564258744940162, -0.010514350607991219, -0.007226475048810244, -0.022563042119145393, -0.0026457118801772594, -0.0420026034116745, 0.028522314503788948, -0.0037296831142157316, 0.0076169101521372795, -0.03065943345427513, -0.023206917569041252, -0.012007593177258968, 0.028248324990272522, -0.005325672682374716, 0.009123853407800198, 0.00857587344944477, -0.003510491456836462, 0.012493925169110298, 0.006740143522620201, 0.0012055541155859828, 0.017521632835268974, -0.015768099576234818, 0.001469269162043929, 0.008678619749844074, -0.0014966680901125073, -0.013247395865619183, -0.011815800331532955, -0.008116940967738628, 0.031536199152469635, -0.01152811199426651, -0.0035789888352155685, 0.012178836390376091, 0.02279593236744404, -0.00945264007896185, 0.0012894634855911136, -0.028768906369805336, 0.02986486442387104, -0.018466897308826447, -0.007836101576685905, -0.0007320659351535141, 0.03424869850277901, 0.013898121193051338, -0.010322557762265205, -0.029097693040966988, -0.01330904383212328, -0.0034882298205047846, 0.00880876462906599, 0.018069613724946976, -0.0260838083922863, -0.020741011947393417, -0.009891023859381676, 0.00950743816792965, -0.022275352850556374, 0.021604077890515327, 0.0010077679762616754, 0.022467145696282387, -0.04953731596469879, 0.0004790536477230489, 0.011774701997637749, -0.00999377015978098, -0.004349584691226482, -0.004353009629994631, -0.021562980487942696, 0.0007967103156261146, 0.02279593236744404, -0.028330523520708084, 0.025659123435616493, 0.030166253447532654, 0.009192350320518017, -0.04359174147248268, 0.023864492774009705, -0.01841210015118122, -0.0037159835919737816, 0.003726258408278227, 0.001298881834372878, -0.019508058205246925, -0.01998754031956196, 0.01996014080941677, 0.01165140699595213, -0.0051407297141849995, -0.0003683875547721982, 0.02827572450041771, 0.012219935655593872, 0.00949373934417963, -0.027042770758271217, 0.011322619393467903, 0.009336194954812527, -0.01761752925813198, 0.010726692155003548, 0.005181828048080206, -0.00479139294475317, 0.0011772989528253675, 0.006839464884251356, 0.0030036107636988163, -0.023028824478387833, -0.04293416813015938, -0.040577858686447144, -0.011144526302814484, -0.0010462977224960923, 0.002154243178665638, 0.004222864285111427, -0.000303529086522758, -0.02146708406507969, -0.020919105038046837, 0.023028824478387833, -0.028988096863031387, 0.002532691229134798, 0.021891767159104347, 0.002537828404456377, 0.016302380710840225, 0.024700161069631577, -0.021960264071822166, -0.025371436029672623, -0.0189052801579237, -0.021151995286345482, -0.04564666375517845, -0.011356867849826813, 0.008877262473106384, 0.03676940128207207, 0.0004332460230216384, -0.021658876910805702, -0.01309670228511095, -0.008274485357105732, -0.04701661318540573, -0.030714232474565506, -0.031974583864212036, 0.02139858715236187, 0.027508553117513657, 0.006907962262630463, 0.019686151295900345, 0.014959830790758133, -0.006044894922524691, 0.002298087580129504, -0.04334515333175659, -0.02150818146765232, -0.014370753429830074, -0.013726877979934216, 0.034385692328214645, -0.025426233187317848, -0.055784277617931366, 0.0014898183289915323, 0.006356558296829462, -0.016548970714211464, 0.009712930768728256, -0.0036200874019414186, -0.0001136628634412773, 0.009343044832348824, -0.004236564040184021, 0.006216138601303101, 0.008534775115549564, 0.01609688811004162, 0.010829438455402851, -0.03408430516719818, 0.0017184284515678883, 0.02816612832248211, -0.01120617426931858, -0.00023845655960030854, 0.0024761809036135674, 0.007048381958156824, -0.01735723949968815, -0.0014898183289915323, 0.004164641723036766, -0.005264024715870619, -0.000985506223514676, 0.017768224701285362, -0.0027107843197882175, 0.03101561963558197, 0.018603892996907234, 0.047208406031131744, -0.02907029539346695, 0.0017338403267785907, 0.00013228559691924602, 0.002161092823371291, 0.019357364624738693, 0.016302380710840225, 0.024946751073002815, 0.002544678281992674, -0.0006729869055561721, -0.004746869672089815, 0.011911696754395962, 0.013658380135893822, -0.01646677404642105, -0.007274423260241747, -0.009021107107400894, -0.019768347963690758, -0.011137676425278187, -0.008781366050243378, -0.00729497242718935, 0.01052119955420494, 0.0021628052927553654, 0.0021199944894760847, 0.019713550806045532, -0.008658071048557758, 0.02813873067498207, -0.03126221150159836, -0.0353720560669899, 0.019686151295900345, 0.007993645966053009, -0.04249578341841698, 0.009541687555611134, 0.024330275133252144, 0.02013823390007019, -0.00039771301089785993, 0.18444979190826416, 0.011603458784520626, 0.015699602663517, 0.03364592045545578, 0.006911387201398611, -0.008021044544875622, 0.026316698640584946, 0.004976335912942886, -0.02546733058989048, -0.0032313645351678133, -0.004363283980637789, 0.009829375892877579, 0.0004456611641217023, -0.0032741755712777376, 0.02305622398853302, -0.023535704240202904, -0.03191978484392166, -0.013685779646039009, -0.007116879336535931, 0.01266516838222742, 0.0015060864388942719, -0.007877200841903687, -0.03011145442724228, -0.0014059090754017234, 0.00924029853194952, 0.007308672182261944, -0.020220430567860603, -0.0005668159574270248, 0.021713674068450928, 0.012295282445847988, -0.009788277558982372, -0.0033358230721205473, 0.01066504418849945, -0.008596423082053661, -0.0114390654489398, -0.01136371772736311, 0.008644371293485165, -0.0045859008096158504, -0.006736718583852053, 0.01660376787185669, 0.00034419941948726773, -0.026987973600625992, 0.0026731109246611595, -0.010363656096160412, 0.011555510573089123, -0.0016079763881862164, -0.025412533432245255, 0.012500775046646595, -0.019179271534085274, 0.011767852120101452, -0.0010548598365858197, 0.0013100126525387168, 0.014206360094249249, 0.017480535432696342, 0.0024504943285137415, -0.010178713127970695, -0.006072293967008591, 6.428319920814829e-06, -0.00023631601652596146, -0.016014691442251205, -0.01147331390529871, 0.010541749186813831, -0.004216014873236418, 0.006048319861292839, -0.039180509746074677, 0.00918550044298172, -0.022864431142807007, 0.029727868735790253, -0.004472879692912102, -0.0021354062482714653, -0.013473437167704105, -0.007760754786431789, -0.021549280732870102, -0.00037523728678934276, -0.030851226300001144, -0.013617281801998615, 0.016507871448993683, 0.02117939479649067, 0.006767542567104101, 0.020124534144997597, 0.00734977051615715, -0.0009041656157933176, -0.029727868735790253, -0.010432153008878231, 0.010555448941886425, -0.007445666939020157, 0.027823641896247864, -0.017247643321752548, 0.0027381833642721176, -0.031755391508340836, 0.002637149766087532, 0.00932934507727623, -0.0008266779477708042, -0.026316698640584946, 0.0026183128356933594, -0.012767914682626724, -0.0013673792127519846, 0.029810067266225815, -0.01996014080941677, -0.01660376787185669, -0.02496045082807541, 0.05962013453245163, 0.010329407639801502, 0.0076169101521372795, -0.028905900195240974, 0.02013823390007019, 0.001716715982183814, 0.025700222700834274, -0.010760940611362457, -0.00787035096436739, -0.00228267558850348, -0.050770267844200134, 0.00950743816792965, -0.00569898309186101, 0.007568961940705776, 0.027001673355698586, 0.027083870023489, -0.02648109383881092, -0.0010034868028014898, -0.02507004700601101, 0.01435705367475748, -0.010781490243971348, 0.01819290779531002, 0.011336319148540497, -0.031426604837179184, -0.02316581830382347, -0.007253874093294144, 0.022494545206427574, -0.029892263934016228, -0.021371187642216682, 0.02424807846546173, -0.0014444388216361403, 0.0070620812475681305, -0.012856961227953434, -0.010802038945257664, 0.0024179581087082624, 0.024576865136623383, -0.009486889466643333, -0.008541624993085861, -0.023645300418138504, -0.004216014873236418, 0.009685531258583069, 0.021823270246386528, 0.0030515589751303196, -0.0027655824087560177, -0.0013040191261097789, 0.012637769803404808, -0.015083126723766327, -0.001448719878681004, -0.02643999457359314, 0.0014649879885837436, 0.008541624993085861, -1.7224687098860159e-07, 0.0011892860056832433, 0.03698859363794327, -0.007425117772072554, -0.011952795088291168, -0.03893391788005829, 0.0019008027156814933, 0.022001363337039948, -0.043098561465740204, 0.0027364708948880434, 0.03079642914235592, -0.0001967159623745829, -0.008877262473106384, -0.013384390622377396, -0.17327101528644562, 0.0035481650847941637, 0.009740329347550869, -0.015480411238968372, 0.0293990820646286, 0.007829252630472183, 0.014726939611136913, 0.010603397153317928, -0.0017509646713733673, -0.015768099576234818, 0.02323431707918644, 0.009034806862473488, 0.014562546275556087, 0.009075905196368694, 0.0090622054412961, -0.007219625636935234, -0.020412223413586617, 0.018275104463100433, 0.0694289579987526, 0.006007221527397633, 0.019206669181585312, -0.03361852094531059, -0.01504202838987112, -0.011315769515931606, 0.02146708406507969, -0.001715859747491777, -0.0012149725807830691, 0.007308672182261944, -0.010432153008878231, -0.03181019052863121, -0.010158163495361805, -0.0024710434954613447, 0.026892077177762985, -0.01316519919782877, 0.02197396382689476, 0.000789432495366782, 0.0035310406237840652, -0.0032656132243573666, -0.0058325533755123615, 0.01534341648221016, 0.021316388621926308, 0.006726444233208895, 0.00653807632625103, 0.008055293932557106, 0.010541749186813831, 0.02305622398853302, 0.009925272315740585, -0.0021182820200920105, 0.022521942853927612, -0.0022090410348027945, 0.0378105603158474, -0.022247953340411186, 0.007240174803882837, 0.016453074291348457, -0.004945511929690838, -0.005907900165766478, 0.0041680666618049145, 0.03520766273140907, 0.002070333808660507, -0.026892077177762985, 0.006127092055976391, -0.0026148881297558546, 0.006616848520934582, 0.002897439757362008, 0.004507128614932299, -0.022535642609000206, 0.016110587865114212, 0.01374057773500681, 0.0013382678152993321, -0.002681673038750887, 0.005500340834259987, 0.010973283089697361, -0.017453135922551155, 0.027618149295449257, -0.0033974708057940006, 0.0019864244386553764, -0.04693441465497017, 0.02067251317203045, 0.025919415056705475, -0.004603025037795305, -5.9025489463238046e-05, 0.0002861906832549721, -0.004246838390827179, 0.006455879658460617, -0.014740639366209507, 0.01786412112414837, -0.02215205691754818, -0.008411480113863945, -0.029563475400209427, 0.008562174625694752, 0.032111577689647675, -0.00231007463298738, -0.013713178224861622, 0.00941839162260294, 0.01289805956184864, -0.015302318148314953, 0.03739957883954048, 0.00217992952093482, 0.020001240074634552, 0.009432091377675533, 0.008315583691000938, 0.023097321391105652, -0.02838532067835331, 0.013315893709659576, 0.03616662323474884, 0.02637149766087532, 0.006147641222923994, 0.001911077299155295, 0.0424409843981266, -0.006473003886640072, -0.03079642914235592, 0.006750418338924646, 0.02367269992828369, 0.005976397544145584, -0.01671336404979229, 0.036659806966781616, -0.0008343838853761554, -0.02049442008137703, 0.011137676425278187, -0.010849987156689167, 0.04633163660764694, -0.013857022859156132, -0.0192340686917305, 0.011897997930645943, 0.00772650633007288, -0.005212651565670967, -0.11387006938457489, -0.018494296818971634, 0.015877695754170418, 0.019576555117964745, -0.0025720770936459303, 0.0012877510162070394, 0.007747055497020483, 0.04945511743426323, -0.02885110303759575, 0.0257550198584795, -0.01589139550924301, -0.02496045082807541, 0.00970608089119196, 0.019001176580786705, 0.004698921460658312, -0.009801977314054966, -0.014110463671386242, -0.002755307825282216, -0.02020673081278801, 0.03865993022918701, 5.057034286437556e-06, -0.010391054674983025, 0.018275104463100433, -0.012185686267912388, -5.150683136889711e-05, -0.011740453541278839, -0.01909707300364971, 0.012062391266226768, 0.01653527095913887, 0.013959769159555435, 0.02172737382352352, -0.018686089664697647, 0.03145400434732437, -0.029207289218902588, -0.025878315791487694, -0.014726939611136913, -0.012603520415723324, -0.02215205691754818, 0.02367269992828369, -0.034851472824811935, -0.0011969920014962554, 0.008459428325295448, -0.017699727788567543, -0.017918918281793594, 0.0016824672929942608, 0.0005860808305442333, -0.01241172756999731, 0.03570084273815155, 0.005654459819197655, -0.00936359353363514, -0.017713425680994987, -0.004270812496542931, -0.006281211040914059, -0.01938476227223873, 0.017699727788567543, 0.0013930657878518105, 0.02385079301893711, 0.0042434134520590305, -0.02493305131793022, -0.0029145642183721066, 0.01075409073382616, -0.006380532402545214, -0.012178836390376091, 0.03819414600729942, -0.009938972070813179, 0.01441185176372528, 0.017233945429325104, -0.015863995999097824, -0.022220555692911148, -0.011343169026076794, -0.021371187642216682, 0.0024179581087082624, -0.028303124010562897, 0.023686399683356285, -0.0056647346355021, -0.005921599920839071, -0.020631415769457817, -0.021987663581967354, 0.016946256160736084, 0.01956285536289215, -0.005168128293007612, -0.00804844405502081, -0.0007380594033747911, -0.0327143557369709, 0.01909707300364971, 0.013446038588881493, 0.010192411951720715, -0.0068154907785356045, 0.031180014833807945, -0.03687899932265282, 0.0026594114024192095, 0.007336071226745844, -0.0041064186953008175, -0.015124225057661533, -0.0007753049139864743, 0.013658380135893822, -0.020836908370256424, 0.013898121193051338, 0.03194718435406685, -0.006890838034451008, -0.029125092551112175, -0.013356992043554783, -0.04956471547484398, 0.022823331877589226, 0.00936359353363514, 0.02013823390007019, 0.001109657809138298, -0.02345350757241249, 0.004671522416174412, -0.012589821591973305, 0.003798180492594838, -0.0032022532541304827, -0.04164641723036766, 0.008479977957904339, -0.017453135922551155, -0.031180014833807945, -0.030358046293258667, -0.015905095264315605, 0.004644123371690512, 0.013726877979934216, 0.009199200198054314, 0.010192411951720715, -0.02002863772213459, 0.0025241291150450706, 0.006038045510649681, 0.02179587073624134, -0.005818853620439768, 0.006699045188724995, -0.03411170095205307, 0.02420697920024395, -0.013535085134208202, -0.0067778173834085464, 0.007157977670431137, -0.00272962125018239, -0.012171987444162369, 0.023316513746976852, -0.01930256560444832, -0.04241358861327171, 0.024083683267235756, -0.016548970714211464, 0.024412471801042557, 0.0029128517489880323, -0.019151872023940086, -0.024302875623106956, 0.029316885396838188, -0.01264461874961853, -0.022165756672620773, -0.0011772989528253675, -0.0015471848892048001, -0.011404816061258316, 0.025741321966052055, 0.022974025458097458, 0.024343974888324738, 0.010165013372898102, -0.019371062517166138, -0.03627622127532959, -1.4234615264285821e-05, -0.00915125198662281, 0.014124162495136261, 0.012192536145448685, -0.0005180115695111454, -0.016453074291348457, 0.045016489923000336, 0.008342982269823551, 0.004178341012448072, -0.015494110994040966, 0.014384453184902668, -0.018507996574044228, -0.04255058243870735, -0.0044146571308374405, 0.004041346255689859, -0.0324951633810997, -0.001578864990733564, -0.026494791731238365, 0.022234253585338593, 0.024864554405212402, 0.014480349607765675, -0.0023905590642243624, -0.005123605020344257, -0.007137428503483534, -0.006055169738829136, 0.027316760271787643, 0.019645052030682564, -0.016959955915808678, -0.01916557177901268, 0.0037433826364576817, 0.020480720326304436, 0.008986858651041985, -0.024152182042598724, 0.007993645966053009, 0.010466402396559715, 0.010541749186813831, -0.009699231013655663, -0.008548474870622158, -0.01289805956184864, 0.016507871448993683, 0.022206855937838554, 0.031536199152469635, -0.005428418517112732, 0.018466897308826447, 0.01869978941977024, 0.040331266820430756, 0.004630424082279205, 0.00270222220569849, 0.006740143522620201, 0.002375147072598338, -0.031207412481307983, 0.024042585864663124, -0.02557692676782608, -0.027220865711569786, 0.015124225057661533, 0.021206794306635857, 0.003989973105490208, -0.009658132679760456, -0.006699045188724995, 0.02013823390007019, -0.006216138601303101, -0.0016345190815627575, -0.014562546275556087, -0.015096825547516346, -0.02316581830382347, -0.007020982913672924, 0.0022604139521718025, 0.009178650565445423, 0.023645300418138504, -0.010370505973696709, 0.013850172981619835, 0.010103365406394005, 0.0016824672929942608, -0.020398523658514023, 0.020795809105038643, -0.028796304017305374, 0.020056037232279778, 0.002191916573792696, 0.012021292932331562, -0.00740456860512495, -0.004178341012448072, -0.010788340121507645, -0.010178713127970695, 0.01963135413825512, -0.008445728570222855, 0.08088172227144241, 0.01865869015455246, -0.024001486599445343, 0.015548909083008766, -0.022426046431064606, 0.014494048431515694, 0.031097818166017532, -0.01585029810667038, 0.017412038519978523, -0.021850669756531715, 0.02813873067498207, 0.0004032784199807793, -0.029125092551112175, -0.017494235187768936, -0.01938476227223873, -0.012206235900521278, 0.012815862894058228, 0.010062267072498798, -0.023001424968242645, 0.012082940898835659, 0.021549280732870102, -0.014220058917999268, 0.03972848877310753, -0.001083115115761757, -0.03065943345427513, -0.013178898952901363, 0.05627746134996414, 0.014973530545830727, 0.019069675356149673, -0.028905900195240974, 0.020343726500868797, -0.003551590023562312, -0.02367269992828369, 0.0020737587474286556, -0.005565413273870945, -0.0177956223487854, -0.01916557177901268, -0.02485085465013981, -0.0007757329731248319, 0.005472941789776087, 0.0015086551429703832, 0.02208356000483036, -0.025439932942390442, -0.012295282445847988, 0.043317753821611404, -0.016055788844823837, 0.011713054962456226, -0.015466711483895779, -0.03044024296104908], "0130c4bd-52f6-4008-a110-cdc9be8f8c63": [-0.01729331910610199, -0.014169011265039444, -0.006454162765294313, -0.034011110663414, -0.004580263048410416, 0.013381082564592361, -0.01647113263607025, -0.035216983407735825, -0.02128092385828495, -0.04738533869385719, 0.016676679253578186, 0.0036484519951045513, 0.008667214773595333, -0.00338809285312891, 0.0011347885010764003, 0.007858730852603912, 0.015498212538659573, -0.003960197791457176, 0.01007178332656622, -0.03181861340999603, -0.010647313669323921, -0.005775859113782644, -0.019417300820350647, 0.0039259400218725204, -0.02454226277768612, 0.00011636934505077079, 0.038122039288282394, -0.005172922275960445, -0.007769661024212837, 0.011414687149226665, 0.010208813473582268, -0.012092990800738335, -0.0193213801831007, -0.018156616017222404, -0.026885494589805603, -0.009948454797267914, 0.004676185082644224, -0.02055465802550316, -0.0012058733263984323, -0.019883206114172935, 0.03565547987818718, -0.001477366080507636, -0.017800334841012955, 0.0118874441832304, -0.002156526315957308, 0.020308002829551697, 0.006484994664788246, -0.02489854395389557, -0.0035491043236106634, -0.002093149349093437, -0.008804245851933956, 0.03168158233165741, -0.011805226095020771, 0.020664284005761147, -0.018759552389383316, -0.00885220617055893, -0.00906460452824831, -0.010784344747662544, 0.002264438197016716, -0.0027748788706958294, 0.016320399940013885, 0.009016643278300762, -0.01581338420510292, -0.0037272449117153883, -0.024350419640541077, -0.015909306704998016, -0.002666966989636421, -0.017279617488384247, -0.010092337615787983, -0.010715829208493233, 0.021897563710808754, 0.04417881369590759, 0.0038848305121064186, 0.009503103792667389, -0.01980098895728588, -0.030640145763754845, 0.020897235721349716, 0.00927700288593769, -0.00200579222291708, -0.014662323519587517, 0.010304735973477364, -0.0010054653976112604, -0.00398075208067894, -0.015169338323175907, 0.019225457683205605, 0.053469520062208176, -0.011373577639460564, -0.0021034267265349627, -0.02776249311864376, 0.02015726827085018, -0.005731324199587107, 0.015772275626659393, 0.011270804330706596, 0.012524639256298542, -0.005995108745992184, 0.017731819301843643, 0.04171225428581238, 0.011195437982678413, -0.0033024484291672707, -0.012531490065157413, -0.026762165129184723, 0.010263626463711262, 0.005662808660417795, -0.01752627268433571, -0.029735740274190903, -0.003761502681300044, 0.015621541067957878, -0.02085612714290619, 0.00575187848880887, 0.0151830418035388, -0.01640261709690094, 0.043000347912311554, 0.001627243822440505, -0.0005768151022493839, -0.014100495725870132, -0.013079614378511906, 0.02817358635365963, -0.04535727947950363, -0.0011108079925179482, -0.019061019644141197, 0.023911919444799423, 0.015648946166038513, 0.01530636940151453, -0.031297892332077026, 0.004378142300993204, -0.020719096064567566, -0.009174229577183723, -0.003696412779390812, 0.015018603764474392, -0.0011921701952815056, 0.02537815272808075, 0.03477848321199417, 0.0009078307775780559, -0.004566560033708811, -0.04031453654170036, 0.001443964778445661, -0.02133573591709137, 0.018293647095561028, 0.00013778044376522303, -0.008386300876736641, 0.0050461688078939915, 0.01592300832271576, -0.014264932833611965, -0.032531172037124634, 0.011729858815670013, 0.01843067817389965, -0.008598699234426022, 0.041575223207473755, 0.005926593206822872, -0.028063960373401642, 0.021376844495534897, -0.010455469600856304, -0.009167377837002277, 0.01111321896314621, 0.017909958958625793, -0.003091763239353895, -0.004213705193251371, 0.015785977244377136, -0.022500500082969666, -0.02181534469127655, 0.007351716514676809, 0.023089732974767685, -0.011997069232165813, -0.0009917622664943337, 0.0012683937093243003, 0.029982395470142365, -0.005995108745992184, -0.03291486203670502, -0.008591847494244576, -0.0033195773139595985, 0.005967702716588974, 0.02918761596083641, -0.025186309590935707, 0.03310670331120491, 0.026542916893959045, 0.008153348229825497, 0.022075703367590904, -0.01633410155773163, -0.0178962554782629, -0.031133456155657768, 0.028365429490804672, -0.0012204329250380397, 0.011243398301303387, 0.003895107889547944, -0.027200665324926376, -0.0280502587556839, 0.0020177823025733232, 0.006474717520177364, -0.0012469826033338904, -0.004004732705652714, 0.004734423011541367, 0.013360528275370598, -0.008790542371571064, 0.004539154004305601, -0.6209151148796082, -0.0032870324794203043, 0.01752627268433571, -0.032010454684495926, -0.00010609201854094863, 0.009461994282901287, 0.02276085875928402, 0.006848127115517855, -0.013579778373241425, 0.017265914008021355, 0.0003151714336127043, 0.014251230284571648, -0.022061999887228012, -0.011702452786266804, -0.020938346162438393, -0.03321632742881775, 0.020294299349188805, -0.0053202309645712376, -0.007523005362600088, 0.007242091465741396, -0.017307022586464882, 0.03025645762681961, -0.0054469844326376915, 0.009400330483913422, 0.01610114984214306, -0.010304735973477364, 0.018101802095770836, -0.009386627934873104, -0.02948908321559429, 0.011147476732730865, -0.03168158233165741, 0.021171297878026962, 0.01955433189868927, 0.0006551797268912196, 0.0343673899769783, -0.008112238720059395, -0.018101802095770836, 0.022514203563332558, 0.03321632742881775, 0.044617313891649246, -0.016060039401054382, -0.01907472312450409, 0.011332469061017036, 0.026775868609547615, 0.007098208647221327, -0.0022404578048735857, -0.0057655819691717625, -0.001240131095983088, -0.024775216355919838, -0.003396657295525074, 0.002797146560624242, -0.03631323203444481, -0.010003267787396908, -0.00124441331718117, 0.0032955969218164682, -0.00025800379808060825, 0.031051237136125565, 0.009105714038014412, 0.0012623986694961786, 0.004083525389432907, 0.017307022586464882, 0.021897563710808754, -0.006563787814229727, -0.04522024840116501, -0.04705646634101868, 0.021801641210913658, -0.007886137813329697, -0.024295607581734657, 0.03368223458528519, -0.0039019593968987465, 0.020075051113963127, 0.00790669210255146, 0.002480262191966176, -0.01048972737044096, -0.005124961491674185, 0.027310289442539215, 0.02592627704143524, -0.01176411658525467, 0.008598699234426022, 0.02484373189508915, 0.008358894847333431, -0.013737363740801811, -0.0044672125950455666, -0.02566591650247574, 0.028694303706288338, 0.01944470778107643, -0.018279943615198135, -0.002368924440816045, 0.0014225536724552512, -0.017265914008021355, 0.01007863413542509, -0.009879939258098602, -0.014648620039224625, -0.04154781624674797, 0.022719750180840492, 0.02792692929506302, 0.0038128893356770277, -0.0071804276667535305, -0.00990049447864294, -0.02459707483649254, -0.023377498611807823, -0.036587294191122055, -0.013100169599056244, 0.021486470475792885, 0.02069168910384178, -0.0006316275103017688, -0.013470153324306011, -0.005347636993974447, 0.02739250846207142, -0.015141932293772697, 0.01051713339984417, -0.008119090460240841, -0.011428390629589558, -0.024048950523138046, 0.0013214932987466455, -0.027433618903160095, 0.03875238448381424, -0.014648620039224625, -0.010654164478182793, -0.02817358635365963, -0.016142258420586586, 0.011654491536319256, -0.0009472271776758134, -0.01611485332250595, -0.0006984301726333797, 0.026488102972507477, 0.01610114984214306, 0.001414845697581768, 0.008872761391103268, -0.018403271213173866, 0.018389567732810974, -0.024953356012701988, 0.011037851683795452, -0.001918434863910079, 0.031654175370931625, 0.0008080550469458103, 0.005995108745992184, 0.0016914771404117346, 0.015087119303643703, -0.032311923801898956, 0.007810770533978939, -0.002684095874428749, 0.014977495186030865, -0.013237200677394867, -0.0035662332084029913, -0.010318438522517681, -0.014141605235636234, 0.012449271976947784, -0.012846661731600761, -0.028803927823901176, -0.03031126968562603, -0.030749769881367683, -0.008845354430377483, 0.032120078802108765, -0.007570966146886349, 0.005282547324895859, -0.0012075862614437938, -0.04286331683397293, -0.0022627252619713545, -0.024446340277791023, -0.003268190659582615, 0.021596094593405724, -0.012531490065157413, 0.019047318026423454, -0.008831651881337166, -0.019992832094430923, -0.03960197791457176, -0.008468519896268845, -0.007790215779095888, -0.01825253665447235, -0.01479935459792614, -0.018458083271980286, 0.020225783810019493, 0.02247309312224388, -0.017142586410045624, 0.013339973986148834, -0.015073416754603386, 0.00944829173386097, 0.006954326294362545, 0.0023654985707253218, 0.024692997336387634, 0.02224014140665531, -0.004981079138815403, -0.0047515518963336945, 0.018211428076028824, 0.023267874494194984, 0.01431974582374096, 0.02051354944705963, -0.02847505360841751, -0.0005172922392375767, -0.003816314972937107, 0.026967711746692657, -0.006669986993074417, -0.001173328491859138, -0.011421538889408112, -0.019595442339777946, -0.026597728952765465, -0.01848549023270607, -0.011579124256968498, 0.035162169486284256, 0.018458083271980286, -0.011955959722399712, -0.018348459154367447, 0.004152040928602219, 0.018046990036964417, -0.04047897458076477, 0.008331488817930222, -0.01352496538311243, 0.013107020407915115, -0.00583752291277051, 0.0019287121249362826, -0.007940949872136116, 0.006310280412435532, -0.03894422575831413, 0.006851552985608578, 0.027118446305394173, -0.01342904381453991, 0.021883860230445862, -0.004052693489938974, 0.0014867869904264808, 0.004117783159017563, 0.012757591903209686, 0.03581991791725159, 0.012579451315104961, -0.0011836057528853416, 0.012319092638790607, 9.105071512749419e-05, -0.002687521744519472, 0.013970316387712955, -0.02228124998509884, 0.009050901047885418, 0.019540628418326378, 0.008632957004010677, -0.001569005660712719, 0.027296587824821472, 0.019184349104762077, 0.02990017645061016, -0.02276085875928402, 0.020225783810019493, -0.022788265720009804, -0.0016829126980155706, 0.006930345669388771, 0.03581991791725159, -0.026762165129184723, 0.008180754259228706, 0.016978148370981216, 0.017142586410045624, -0.004772106651216745, -0.015169338323175907, 0.015895603224635124, -0.0004761829331982881, 0.005433281417936087, 0.005820394027978182, -0.002466559177264571, 0.027844712138175964, -0.00012493378017097712, -0.005885484162718058, 0.004285646602511406, 0.019047318026423454, 0.014977495186030865, -0.009468846023082733, 0.020349111407995224, 0.0006663135136477649, 0.0003873268433380872, 0.017019256949424744, -0.009441439993679523, -0.001331770559772849, -0.023432310670614243, -0.008112238720059395, -0.009338666684925556, 0.0032185169402509928, -0.024158576503396034, -0.009407182224094868, -0.008482222445309162, -0.026775868609547615, -0.003850572742521763, -0.003936217166483402, 0.03946494683623314, -0.005950573831796646, 0.018923988565802574, -0.008776838891208172, -0.022007187828421593, 0.0021873582154512405, 0.0009104001219384372, -0.011414687149226665, -0.004124634899199009, -0.013531817123293877, 0.003877979004755616, 0.0037820572033524513, 0.018266240134835243, -0.005830671638250351, -0.006296577397733927, -0.024213388562202454, 0.014881572686135769, -0.003304161364212632, 0.020760204643011093, 0.044315844774246216, -0.010119743645191193, -0.007166724186390638, 0.009126268327236176, -0.0006025084294378757, 0.010962484404444695, -0.015059713274240494, -0.016868524253368378, 0.043712906539440155, -0.013381082564592361, 0.0008984098676592112, -0.004573411773890257, 0.0173618346452713, -0.01574486866593361, 0.013997722417116165, -0.028858741745352745, -0.03532660752534866, -0.012784997932612896, -0.02681697905063629, 0.005984831601381302, -0.004902285989373922, -0.017855146899819374, 0.042287785559892654, 0.009831978939473629, -0.007536708377301693, -0.013230348937213421, -0.017279617488384247, 0.015470806509256363, 0.060896601527929306, 0.0134016377851367, -0.02224014140665531, 0.03025645762681961, -0.025282230228185654, -0.00683442410081625, -0.013209793716669083, -0.036231011152267456, 0.0266251340508461, -0.010948781855404377, -0.01441566739231348, 0.006930345669388771, 0.024281904101371765, -0.0021411103662103415, -0.015210447832942009, 0.019389895722270012, 0.009845681488513947, -0.007721700239926577, -0.022897889837622643, 0.0016906206728890538, -0.007358567789196968, -0.010893968865275383, 0.025830354541540146, 0.022870484739542007, 0.026652541011571884, 0.030749769881367683, 0.04083525389432907, 0.0038402953650802374, 0.010140297934412956, -0.024884840473532677, -0.019335081800818443, 0.014552698470652103, -7.675880624447018e-05, 0.01122969575226307, 0.0015578718157485127, 0.025898870080709457, 0.005460687913000584, -0.03148973733186722, -0.0216372050344944, 0.0022952703293412924, -0.0087699880823493, 0.0045973919332027435, 0.02585776150226593, -0.016197070479393005, 0.0027166407089680433, -0.013586629182100296, 0.021075377240777016, 0.03965678811073303, -0.013929206877946854, -0.005597718991339207, 0.003268190659582615, -0.005381894763559103, -0.015443400479853153, 0.024090060964226723, -0.002211338607594371, 0.0077148484997451305, -0.014538994990289211, 0.004021861590445042, -0.011997069232165813, -0.03571029379963875, -0.05152367800474167, -0.00537846889346838, -0.01075693778693676, -0.00508385244756937, -0.01569005660712719, -0.01712888292968273, -0.007194130681455135, 0.011538014747202396, -0.031297892332077026, -0.014182714745402336, 0.008804245851933956, -0.023678967729210854, -0.0397116020321846, 0.006526104174554348, 0.03055792674422264, 0.02115759626030922, 0.0021411103662103415, 0.008968682959675789, -0.010380102321505547, 0.01907472312450409, -0.0027046506293118, -0.034860700368881226, 0.007012564688920975, -0.01843067817389965, -0.03910866379737854, -0.024227092042565346, -0.014511588960886002, -0.006097882054746151, -0.007262646220624447, -0.0022524481173604727, 0.010736383497714996, -0.013860691338777542, -0.015785977244377136, 0.011099515482783318, 0.01604633778333664, 0.0500437431037426, 0.027365103363990784, 0.016320399940013885, 0.024761512875556946, -0.04302775114774704, 0.002413459587842226, -0.002750898478552699, -0.007344864774495363, -0.01057879813015461, 0.0034240635577589273, -0.010743235237896442, 0.0024340141098946333, -0.011092664673924446, 0.00885220617055893, -0.026282556354999542, 0.012353350408375263, -0.012839809991419315, -0.014936385676264763, -0.0268032755702734, -0.0012298537185415626, 0.0013377657160162926, 0.0035079950466752052, 0.027008822187781334, -0.005546332336962223, -0.0068823848851025105, 0.00723523972555995, -0.03335335850715637, 0.04927637055516243, 0.019540628418326378, -0.0028142754454165697, 0.019472112879157066, 0.018622521311044693, -0.012092990800738335, -0.03603916987776756, 0.00763948168605566, 0.008447964675724506, 0.012716482393443584, 0.0018516321433708072, -0.00025607680436223745, -0.016320399940013885, -0.01747146062552929, 0.00747504411265254, 0.013901800848543644, -0.01229853741824627, 0.019472112879157066, -0.004247962962836027, 0.008900167420506477, 0.023199358955025673, -0.004943395499140024, -0.0057655819691717625, -0.02352823317050934, -0.025172606110572815, -0.0042000021785497665, 0.015703760087490082, 0.01191485021263361, -0.01962284743785858, -0.013038504868745804, -0.02513149566948414, -0.028749115765094757, 0.02103426679968834, -0.007262646220624447, 0.0038711274974048138, -0.003531975671648979, 0.049248963594436646, 0.020582064986228943, 0.027721382677555084, 0.022377172484993935, 0.02281567081809044, 0.02026689425110817, -0.01663557067513466, -0.009818275459110737, -0.007632629945874214, -0.02443263866007328, 0.006916642654687166, 0.002850246150046587, 0.005440133158117533, -0.005419578403234482, -0.011818928644061089, 0.011798374354839325, 6.144986400613561e-05, 0.02281567081809044, 0.006478143390268087, 0.0029598709661513567, -0.027789898216724396, -0.042644064873456955, -0.0037854830734431744, 0.01949951983988285, 0.005460687913000584, 0.0013377657160162926, -0.02008875273168087, 0.019568035379052162, 0.022541608661413193, -0.01748516410589218, 0.02935205213725567, 0.010064931586384773, 0.05212661623954773, 0.008516480214893818, 0.001664927345700562, -0.011448944918811321, 0.00853018369525671, -0.03647766634821892, -0.0012898048153147101, -0.03214748576283455, -0.00564910564571619, 0.01633410155773163, 0.0024408658500760794, 0.01396346464753151, -0.0038882563821971416, -0.004984505008906126, 0.010421211831271648, 0.00100289611145854, -0.019115833565592766, 0.012373904697597027, 0.01533377543091774, -0.019951721653342247, -0.004563134163618088, -0.028858741745352745, -0.007673739455640316, -0.007276349235326052, -0.0011202289024367929, 0.015964118763804436, 0.0017471460159868002, 0.022801969200372696, -0.027063634246587753, -0.00041987173608504236, 0.03387407958507538, -0.027008822187781334, 0.0347236692905426, 0.037765759974718094, 0.039437539875507355, -0.002917048754170537, 0.009605877101421356, -0.015580431558191776, -0.02526852674782276, -0.01007178332656622, -0.017759224399924278, 0.002762888791039586, 0.038834601640701294, -0.0116202337667346, -0.0057450272142887115, -0.0030061188153922558, -0.03847832232713699, 0.011072109453380108, -0.033325955271720886, 0.0087699880823493, 0.008475370705127716, -0.0023654985707253218, -0.025761839002370834, -0.018581410869956017, 0.0029530192259699106, 0.024706700816750526, -0.017457757145166397, 0.002238744869828224, 0.006512401159852743, -0.011387281119823456, 0.01019511092454195, 0.01943100430071354, -0.008105386979877949, 0.014566401951014996, -0.00025757556431926787, -0.013394786044955254, 0.0063000028021633625, -0.00634796405211091, -0.008447964675724506, -0.006132139824330807, -0.004724145866930485, 0.037053197622299194, -0.02703622728586197, -0.001880751340650022, 0.024871136993169785, 0.016608163714408875, -0.012682224623858929, -0.0016075456514954567, -0.02852986566722393, 0.030092021450400352, -0.011688749305903912, -0.01795106939971447, 0.0012940870365127921, 0.028803927823901176, 0.0026155803352594376, -0.024103762581944466, -0.01191485021263361, -0.005042742937803268, 0.0008478796808049083, 0.0007352572865784168, 0.02566591650247574, -0.023733779788017273, -0.01652594655752182, -0.016553351655602455, 0.012120396830141544, -0.016553351655602455, 0.015415994450449944, -0.0015912732342258096, 0.015210447832942009, -0.042698878794908524, -0.006306854542344809, 0.00971550215035677, -0.017389241605997086, -0.013764769770205021, -0.008735730312764645, -0.02281567081809044, 0.0036758582573384047, 0.02514519914984703, -0.02055465802550316, 0.0076052239164710045, 0.025871463119983673, 0.0009395192028023303, -0.03639544919133186, 0.022061999887228012, -0.013970316387712955, -0.0071530211716890335, 0.014730839058756828, 0.006697393022477627, -0.01782773993909359, -0.007338013034313917, 0.019842097535729408, 0.006101307924836874, -0.006265745032578707, -0.004426103085279465, 0.016854820773005486, 0.024871136993169785, 0.011428390629589558, -0.0003963195194955915, 0.0004125919658690691, 0.00023830558347981423, -0.0051866257563233376, -0.003792334580793977, 0.023583045229315758, -0.01818402111530304, 0.012065584771335125, -0.00022545891988556832, 0.004792661406099796, -0.000503589166328311, -0.04423362761735916, -0.038368698209524155, -0.004525450523942709, 0.01301795057952404, 0.006529530044645071, 0.011078961193561554, 0.01747146062552929, -0.025282230228185654, -0.014011425897479057, 0.019896909594535828, -0.026734760031104088, 0.00024044669407885522, 0.02174682915210724, -0.0029941287357360125, 0.007495598867535591, 0.027145853266119957, -0.024090060964226723, -0.014100495725870132, -0.019869504496455193, -0.01901991106569767, -0.05177033320069313, -0.009201635606586933, 0.0017591362120583653, 0.035381417721509933, -0.012045030482113361, -0.02651550993323326, -0.024775216355919838, -0.010476024821400642, -0.03305189311504364, -0.011791522614657879, -0.03091420792043209, 0.005967702716588974, 0.04247962683439255, 0.019992832094430923, -0.003475450212135911, 0.010530836880207062, 0.00998271256685257, 0.0018756126519292593, -0.03398370370268822, 0.01203132700175047, -0.017978474497795105, -0.021322032436728477, 0.03433998301625252, -0.02234976552426815, -0.03784797713160515, -0.0058786324225366116, -0.013874394819140434, -0.012415014207363129, 0.0024579947348684072, 0.0006204937817528844, 0.003429202362895012, -0.00680701807141304, 0.004203427582979202, 0.011757264845073223, 0.0280502587556839, 0.02674846351146698, 0.017279617488384247, -0.03847832232713699, -0.0031243080738931894, 0.019362488761544228, -0.0028536717873066664, -0.006532955914735794, 0.01129821129143238, 0.002110278233885765, -0.01034584455192089, 0.003341845003888011, -0.00398075208067894, -0.009098862297832966, -0.005268844310194254, 0.010887118056416512, 0.011935405433177948, 0.015347478911280632, 0.02288418635725975, 0.031106051057577133, -0.02532334066927433, -0.021829048171639442, 0.006721373647451401, -0.011442093178629875, -0.00441240007057786, 0.02110278233885765, 0.015059713274240494, -0.02473410591483116, 0.0035354013089090586, -0.0004569129378069192, -0.002576183993369341, 0.006721373647451401, -0.021897563710808754, -0.003716967534273863, -0.012826107442378998, -0.0031893979758024216, 0.009646986611187458, -0.00906460452824831, 0.002348369685932994, 0.005512074567377567, -0.0007913543959148228, -0.0191432386636734, 0.023733779788017273, 0.002697798889130354, 0.02300751395523548, -0.013415340334177017, -0.008653511293232441, -0.003716967534273863, 0.004741274751722813, -0.03310670331120491, 0.0005357058253139257, 0.020883534103631973, 0.021322032436728477, 0.0074681928381323814, 0.20094235241413116, 0.018828067928552628, 0.0045973919332027435, 0.033490389585494995, 0.025241121649742126, -0.018677333369851112, 0.0244874507188797, 0.016361508518457413, -0.022253844887018204, 0.004388419445604086, 0.009489401243627071, 0.005090703722089529, -8.055927173700184e-05, -0.0008889890159480274, 0.017690708860754967, -0.025953682139515877, -0.016430024057626724, -0.01289462298154831, -0.009235893376171589, 0.004128060769289732, -0.000855159480124712, -0.012346498668193817, -0.015032307244837284, 0.0021496748086065054, 0.01581338420510292, 0.0050221881829202175, -0.010983039624989033, 0.0032938839867711067, 0.028749115765094757, 0.018293647095561028, -0.007392825558781624, 0.00152703991625458, 0.01477194856852293, -0.008550737984478474, -0.02174682915210724, -0.011935405433177948, 0.00968809612095356, -0.018732145428657532, -0.01099674217402935, 0.021664610132575035, 0.0025933128781616688, -0.015648946166038513, 0.013065911829471588, -0.005717621184885502, 0.01747146062552929, 0.0007215541554614902, -0.0168274138122797, 0.02788582071661949, -0.017855146899819374, 0.0034154991153627634, 0.0013754492392763495, -0.01283295825123787, 0.006443885620683432, 0.02044503390789032, -0.007276349235326052, 0.009386627934873104, -0.00011069540050812066, 0.0040595452301204205, -0.02211681380867958, -0.017690708860754967, -0.014073089696466923, 0.013333122245967388, -0.018828067928552628, -0.001877325470559299, -0.019006207585334778, 0.006961178034543991, -0.026474401354789734, 0.013470153324306011, 0.004635075572878122, 0.006923494394868612, -0.003679283894598484, 0.00048431914183311164, -0.026131823658943176, 0.00020522542763501406, -0.008619253523647785, -0.01316183339804411, 0.022431984543800354, 0.0030283865053206682, 0.021267220377922058, 0.0209246426820755, -0.011051555164158344, 0.00024430069606751204, -0.02959870919585228, -0.006217784248292446, 0.0168274138122797, -0.023377498611807823, 0.04110931605100632, -0.015100822784006596, -0.0239530298858881, -0.017964771017432213, -0.009530509822070599, 0.0016203923150897026, -0.0010559955844655633, -0.028392834588885307, 0.0023500826209783554, -0.0237748883664608, 0.019239161163568497, 0.036751728504896164, -0.02051354944705963, -0.04316478222608566, -0.011476350948214531, 0.04985189810395241, 0.004247962962836027, 0.011668195016682148, -0.02509038709104061, 0.012654818594455719, 0.00906460452824831, 0.02210311032831669, -0.005991682875901461, -0.006687115877866745, 0.006258893758058548, -0.05026299133896828, 0.007372270803898573, -0.012764443643391132, 0.0011878879740834236, 0.015402290970087051, 0.026186635717749596, -0.027652867138385773, 0.007228388451039791, -0.007899840362370014, 0.022418281063437462, 0.005659382790327072, 0.030996425077319145, 0.015210447832942009, -0.03357261046767235, -0.03447701409459114, -0.012874067761003971, 0.04226037859916687, -0.03571029379963875, -0.016868524253368378, 0.020787611603736877, -0.011270804330706596, 0.016210773959755898, -0.008297231048345566, -0.014744541607797146, 0.012579451315104961, 0.02282937429845333, -0.016306696459650993, -0.00918108131736517, -0.02948908321559429, -0.002630996285006404, 0.019513223320245743, 0.025419261306524277, 0.02240457758307457, -0.0010106040863320231, -0.010386954061686993, 0.0008294661529362202, -0.023802295327186584, -0.016841117292642593, -0.03708060458302498, 0.0016015504952520132, 0.009537361562252045, 0.012209467589855194, -0.0009018356795422733, 0.02402154542505741, 0.007029693573713303, -0.01825253665447235, -0.0280502587556839, 0.009002940729260445, 0.026118120178580284, -0.04733052849769592, 0.006550084799528122, 0.015210447832942009, 0.013483855873346329, -0.015224150381982327, -0.01431974582374096, -0.17386500537395477, 0.010722680017352104, 0.007242091465741396, -0.00613556569442153, 0.02758435159921646, 0.0037238190416246653, 0.008509628474712372, 0.00043678650399670005, -0.006094456184655428, 0.001356607535853982, 0.0025573421735316515, 0.014182714745402336, -0.0023072604089975357, -0.0012795275542885065, 0.008934425190091133, -0.0036587293725460768, -0.026049604639410973, 0.02234976552426815, 0.037656135857105255, 0.0041931504383683205, 0.015676353126764297, -0.035628076642751694, -0.009249596856534481, 0.00524486368522048, 0.02049984596669674, 0.003970474936068058, 0.0005207180511206388, 0.010092337615787983, 0.002785156248137355, -0.03625841811299324, -0.006197229493409395, -0.010887118056416512, 0.025241121649742126, -0.0012221457436680794, 0.02473410591483116, 0.00340350903570652, -0.0003102468908764422, 0.002910197013989091, -0.0011639075819402933, 0.011072109453380108, 0.01569005660712719, 0.01429233979433775, 0.016073742881417274, 0.009468846023082733, 0.017622193321585655, 0.016978148370981216, 0.006495272275060415, -0.014936385676264763, 0.006138991564512253, -0.015731165185570717, 0.019650254398584366, -0.02158239111304283, 0.015224150381982327, -0.006399350240826607, 0.001448246999643743, -0.003266477957367897, 0.010770641267299652, 0.023322686553001404, 0.005498371087014675, -0.02598108910024166, 0.002759462920948863, -0.007194130681455135, 0.013223497197031975, -0.001336052780970931, -0.006759056821465492, -0.02877652272582054, 0.02632366679608822, 0.018992504104971886, 0.0017985326703637838, 0.002833117265254259, 0.002156526315957308, 0.004138337913900614, -0.015827087685465813, 0.02657032199203968, 0.0013840136816725135, 0.009914197027683258, -0.0354362316429615, 0.012045030482113361, 0.023391202092170715, -0.006687115877866745, 0.003204813925549388, 0.013367380015552044, -0.014155308715999126, -0.002896493999287486, 0.0024785492569208145, 0.0027611758559942245, -0.007262646220624447, 0.001186175155453384, -0.0064336080104112625, 0.01001011859625578, 0.018033286556601524, -0.010332142002880573, -0.004080099985003471, 0.014278636313974857, 0.017786631360650063, -0.011010445654392242, 0.024048950523138046, -0.012449271976947784, 0.006735076662153006, 0.0065946197137236595, 0.005508648697286844, 0.0057347496040165424, -0.01659446209669113, 0.013579778373241425, 0.0365050733089447, 0.033024486154317856, 0.012860365211963654, 0.009975860826671124, 0.03919088467955589, -0.01658075861632824, -0.013408489525318146, 0.010332142002880573, 0.0336548276245594, 0.010181407444179058, -0.014045683667063713, 0.03732725977897644, -0.004724145866930485, -0.022185329347848892, 0.009235893376171589, -0.01980098895728588, 0.042589254677295685, -0.03957457095384598, -0.021363142877817154, 0.0116202337667346, -0.002322676358744502, 0.006666561122983694, -0.11324246972799301, -0.02086983062326908, 0.022377172484993935, 0.019033614546060562, -0.01848549023270607, 0.013394786044955254, 0.0006350533221848309, 0.03751910477876663, -0.030119426548480988, 0.023322686553001404, -0.020815018564462662, -0.02842024154961109, 0.013086466118693352, -0.009174229577183723, -0.001706893090158701, -0.008276675827801228, -0.004504896234720945, -0.0009575045551173389, -0.009653838351368904, 0.03132529929280281, 0.011311913840472698, -0.0044672125950455666, 0.01150375697761774, -0.023788591846823692, -0.010099189355969429, -0.01919805072247982, -0.022719750180840492, 0.004340458661317825, 0.004107506014406681, 0.010455469600856304, 0.026652541011571884, -0.0036313231103122234, 0.012928880751132965, -0.008276675827801228, -0.026721056550741196, -0.0090371984988451, -0.013497559353709221, -0.020828720182180405, 0.013984019868075848, -0.04069822281599045, -0.012791849672794342, -0.004357587546110153, -0.014374557882547379, -0.025035575032234192, 0.004528876394033432, -0.00543670728802681, -0.025761839002370834, 0.02842024154961109, 0.006878959015011787, -0.011544866487383842, -0.016375211998820305, -0.01848549023270607, -0.019869504496455193, -0.024158576503396034, 0.03606657311320305, 0.0022695770021528006, 0.013846988789737225, 0.011839483864605427, -0.012771294452250004, -0.008893315680325031, 0.011599679477512836, 7.884638762334362e-05, -0.004830345045775175, 0.03897163271903992, -0.006738502532243729, 0.02133573591709137, 0.0001928069832501933, -0.012935731559991837, -0.01718369498848915, -0.004241111222654581, -0.019746175035834312, 0.02158239111304283, -0.030777176842093468, 0.007920395582914352, 0.006954326294362545, -0.0020794463343918324, -0.02121240831911564, -0.02222643792629242, 0.021500173956155777, 0.007324310019612312, -0.016197070479393005, -0.009784017689526081, -0.006810443475842476, -0.06199285015463829, 0.03264079988002777, 0.013977168127894402, 0.013381082564592361, -0.020403925329446793, 0.029215021058917046, -0.029050584882497787, 0.022061999887228012, 0.013778473250567913, 0.006916642654687166, -6.444742029998451e-05, -0.010907672345638275, 0.01290147379040718, -0.02015726827085018, 0.015772275626659393, 0.02520001120865345, 0.00600196048617363, -0.023459717631340027, -0.007858730852603912, -0.04034194350242615, 0.028666896745562553, -0.008694620802998543, 0.008783690631389618, -0.004895434714853764, -0.007755958009511232, -0.013716809451580048, 0.004994782153517008, 0.0050221881829202175, 0.008461668156087399, -0.025748135522007942, 0.005806691013276577, -0.020417626947164536, -0.02459707483649254, -0.019526926800608635, -0.02293899841606617, 0.008132793009281158, -0.010626758448779583, 0.0113530233502388, 0.009201635606586933, -0.02817358635365963, -0.007913543842732906, 0.017307022586464882, 0.026488102972507477, -0.012305389158427715, 0.009667540900409222, -0.008249269798398018, 0.03743688389658928, -0.007029693573713303, -0.006902939639985561, 0.010674719698727131, -0.001165620400570333, -0.014936385676264763, 0.02863949164748192, -0.020225783810019493, -0.03749169781804085, 0.02418598160147667, -0.00805057492107153, 0.011579124256968498, 0.013333122245967388, -0.01675889827311039, -0.008653511293232441, 0.03809463605284691, -0.000969494751188904, -0.011490054428577423, 0.01289462298154831, -0.01096933614462614, -0.009434588253498077, 0.01764960028231144, 0.008989237248897552, 0.043301813304424286, 0.01477194856852293, 0.0013626025756821036, -0.04494618624448776, -0.009085158817470074, 0.000836745894048363, 0.03031126968562603, 0.02240457758307457, 0.002118842676281929, -0.021253516897559166, 0.046097248792648315, 0.011750413104891777, 0.008660363033413887, -0.011366726830601692, -0.004090377129614353, -0.01800588145852089, -0.03225710988044739, -0.008180754259228706, -0.0018944543553516269, -0.043767720460891724, 4.7639703552704304e-05, -0.015141932293772697, 0.02300751395523548, 0.01622447744011879, 0.01766330376267433, 0.00814649648964405, -0.003754650941118598, -0.018581410869956017, -0.01245612371712923, 0.026008494198322296, 0.03055792674422264, -0.019773581996560097, -0.016772601753473282, 0.003042089520022273, 0.034614045172929764, 0.012305389158427715, -0.02263753116130829, 0.029324647039175034, -0.002617293270304799, 0.004939969629049301, -0.007899840362370014, -0.008249269798398018, -0.013531817123293877, 0.015662649646401405, 0.01438826136291027, 0.032476361840963364, -0.02788582071661949, 0.016128554940223694, 0.025816651061177254, 0.03688875958323479, 0.000566109549254179, 0.015772275626659393, 0.012620560824871063, 0.0043267556466162205, -0.025337042286992073, 0.01536118146032095, -0.016854820773005486, -0.01444307342171669, 0.002745759906247258, 0.031188268214464188, -0.0061938040889799595, 0.009085158817470074, -0.00100289611145854, 0.0037340964190661907, -0.018677333369851112, -0.0022370319347828627, -0.023487122729420662, -0.014908979646861553, -0.022089406847953796, -0.01610114984214306, -0.005508648697286844, 0.00796150416135788, 0.01563524454832077, -0.012791849672794342, 0.009434588253498077, 0.015772275626659393, 0.006529530044645071, -0.02817358635365963, 0.008571293205022812, -0.015224150381982327, 0.03809463605284691, 0.02591257356107235, 0.025008168071508408, -0.014278636313974857, -0.006896087899804115, -0.01604633778333664, -0.01533377543091774, 0.02372007630765438, -0.020075051113963127, 0.07043396681547165, 0.026488102972507477, -0.031955644488334656, 0.0005541193531826138, -0.02062317356467247, 0.007523005362600088, 0.029269834980368614, -0.011688749305903912, 0.006985158193856478, -0.016731493175029755, 0.03494292125105858, 0.010914524085819721, -0.02086983062326908, -0.013059060089290142, -0.010051228106021881, -0.0008435974596068263, 0.008098535239696503, -0.006824146956205368, -0.011544866487383842, 0.009790869429707527, 0.034011110663414, -0.014689729548990726, 0.030941613018512726, 0.0016006940277293324, -0.01664927415549755, -0.013874394819140434, 0.04012269526720047, 0.006512401159852743, 0.003033525077626109, -0.027091041207313538, 0.01997912861406803, -0.0017454330809414387, -0.03513476252555847, -0.004987930413335562, -0.00909201055765152, -0.00720783369615674, -0.00036141942837275565, -0.019293973222374916, -0.004422677215188742, 0.012058733031153679, 0.002958158031105995, 0.01138042937964201, -0.01022251695394516, -0.00793409813195467, 0.01316183339804411, -0.006354815326631069, 0.01633410155773163, -0.03239414095878601, -0.0101060401648283], "be992b0a-cd60-4f79-bdb0-b1183171e884": [-0.020474093034863472, -0.014076809398829937, -0.00018826426821760833, -0.03314322233200073, -0.009233551099896431, 0.010906043462455273, -0.020474093034863472, -0.030662357807159424, -0.0118398517370224, -0.04761027917265892, 0.020529842004179955, 0.0035366243682801723, 0.021979335695505142, 0.001760472310706973, 0.008446086198091507, 0.018076853826642036, 0.022718019783496857, -0.0027282529044896364, 0.014592494815587997, -0.0272894985973835, -0.011345072649419308, 0.0016994960606098175, -0.0206970926374197, -0.00037173755117692053, -0.017519356682896614, 0.008313680067658424, 0.031414978206157684, -0.014453120529651642, -0.0008449570159427822, 0.01612561196088791, 0.009365956299006939, -0.012341598980128765, -0.018843412399291992, -0.015205741859972477, -0.014899118803441525, -0.011414759792387486, -0.000289855117443949, -0.008369429968297482, -0.005310162901878357, -0.00837639905512333, 0.03952656686306, 0.011505353264510632, -0.012975752353668213, 0.0033658905886113644, 0.002393754431977868, 0.02114308997988701, 0.01718485727906227, -0.009212644770741463, -0.006839796435087919, -0.010606388561427593, 0.004101090598851442, 0.013784123584628105, -0.014815493486821651, -0.006951295770704746, -0.006885093171149492, 0.010418233461678028, -0.0066237663850188255, -0.0009007067419588566, 0.008369429968297482, 0.0031446339562535286, 0.017296357080340385, 0.016390424221754074, -0.014355558902025223, -0.00839033629745245, -0.024069951847195625, -0.016515860334038734, -0.0008819783688522875, -0.02370757795870304, -0.009644705802202225, -0.022160522639751434, 0.02781912125647068, 0.03963806480169296, 0.005491349380463362, -0.004693431314080954, -0.012327661737799644, -0.0279166828840971, 0.01806291565299034, -0.0001241302816197276, -0.005414693616330624, -0.015665678307414055, 0.006982655264437199, -0.009240520186722279, -0.005236991215497255, -0.004275308456271887, 0.014996680431067944, 0.033979468047618866, -0.008383367210626602, -0.0027282529044896364, -0.01696185953915119, 0.0047073690220713615, 0.006188221275806427, 0.029212864115834236, 0.016418298706412315, 0.0225786454975605, -0.0018728428985923529, 0.01680854707956314, 0.024571698158979416, 0.017421795055270195, -0.014578557573258877, -0.015986237674951553, -0.014857306145131588, -0.0039408099837601185, -0.012627316638827324, -0.008480929769575596, -0.029909737408161163, 0.0002571892400737852, 0.019846908748149872, -0.010021016001701355, 0.00015603394422214478, 0.011407790705561638, -0.019777221605181694, 0.03082960657775402, -0.0018414836376905441, -0.003909450490027666, -0.019303347915410995, -0.015623865649104118, 0.031108355149626732, -0.03908056765794754, 0.0014312004204839468, -0.021338213235139847, 0.012083756737411022, 0.02330339141190052, 0.022495020180940628, -0.0230525191873312, 0.002883306937292218, -0.008550616912543774, 0.0009277105564251542, -0.002325809560716152, 0.024251136928796768, -0.0023345204535871744, 0.0326135978102684, 0.024725010618567467, -0.00839033629745245, -0.000995655544102192, -0.03774257376790047, 0.011818945407867432, -0.021380025893449783, 0.000658108270727098, 0.001195135060697794, -0.01608380116522312, 0.01296878419816494, 0.016599485650658607, -0.013414781540632248, -0.023623952642083168, -0.0009233551099896431, 0.015595990233123302, -0.022341709583997726, 0.026871375739574432, 0.027373123914003372, -0.018174415454268456, 0.010439138859510422, -0.01988871954381466, -0.018494976684451103, 0.004829321522265673, 0.013965310528874397, 0.008209149353206158, 0.001958209788426757, 0.021867835894227028, -0.014592494815587997, -0.016836421564221382, 0.010223109275102615, 0.0001443831279175356, -0.013442656956613064, -0.007609840016812086, 0.006338048726320267, 0.03364497050642967, -0.0141116539016366, -0.023846952244639397, 0.00664118817076087, -0.01270397286862135, 0.005728286225348711, 0.018954912200570107, -0.016041988506913185, 0.016348611563444138, 0.02107340283691883, 0.002083646599203348, 0.01988871954381466, -0.009358988143503666, -0.0051220073364675045, -0.04153355956077576, 0.04050218686461449, -0.001878069480881095, 0.013108158484101295, 0.012285849079489708, -0.03540108725428581, -0.018244102597236633, 0.004874618258327246, -0.007331090979278088, 0.009156894870102406, 0.0008649920928291976, 0.010216140188276768, 0.006808437407016754, -0.019498473033308983, 0.0010357256978750229, -0.6168151497840881, -0.004125481005758047, 0.02628600411117077, -0.030941106379032135, -0.008892083540558815, 0.01775629259645939, 0.01390956062823534, 0.006024456582963467, -0.009665611200034618, 0.014327683486044407, -0.0007539281505160034, 0.007275341544300318, 5.9234102081973106e-05, -0.0027404483407735825, -0.0018275462789461017, -0.02182602323591709, 0.026453252881765366, 0.008683022111654282, -0.012850315310060978, 0.004041856154799461, -0.013052408583462238, 0.03060660883784294, -0.004825836978852749, -0.006449548061937094, 0.014940930530428886, -6.086739449528977e-05, 0.017101233825087547, -0.013212689198553562, -0.02245320938527584, 0.016069862991571426, -0.038160696625709534, 0.012181318365037441, 0.013519312255084515, -0.011512321420013905, 0.04055793583393097, -0.02066921629011631, -0.01675279811024666, 0.02107340283691883, 0.016460111364722252, 0.03130348026752472, -0.02177027426660061, -0.00782587006688118, 0.014926993288099766, 0.022913144901394844, 0.003360664239153266, 0.0018920068396255374, 0.0025749411433935165, 0.00711157638579607, -0.01643223688006401, -0.010174327529966831, 0.009163863956928253, -0.033198971301317215, -0.0014433956239372492, -0.01163775846362114, 0.01301756501197815, 0.014411307871341705, 0.04354054853320122, -0.0013728373451158404, 0.01009767223149538, 0.019721470773220062, 0.015721427276730537, 0.018899163231253624, -0.008919958956539631, -0.04855802655220032, -0.04864164814352989, 0.001242173952050507, -0.018982786685228348, -0.02465532347559929, 0.024042075499892235, 0.02029290609061718, 0.012641253881156445, 0.011268416419625282, 0.0015348601154983044, 0.004770087078213692, -0.009442612528800964, 0.03183310106396675, 0.034676339477300644, 0.00033798281219787896, 0.004878102336078882, 0.028961991891264915, 0.002949509769678116, -0.002325809560716152, -0.0025697145611047745, -0.02578425593674183, 0.041199058294296265, 0.008912989869713783, -0.023289455100893974, -0.018550727516412735, -0.004574963357299566, -0.023596078157424927, 0.022355645895004272, 0.007219591643661261, -0.019359098747372627, -0.023693639785051346, 0.031944602727890015, 0.01928941160440445, 0.006470454391092062, -0.012076787650585175, 0.004212589934468269, -0.010418233461678028, -0.022913144901394844, -0.04030706360936165, 0.004519213456660509, 0.011365978978574276, 0.0288504920899868, 0.01365868654102087, -0.031442854553461075, -0.0007103736861608922, 0.027261624112725258, -0.014083778485655785, 0.004993086215108633, -0.004822352901101112, -0.014940930530428886, -0.013407813385128975, 0.005216085352003574, -0.02001415751874447, 0.025644881650805473, -0.0052265385165810585, -0.022411396726965904, -0.015372991561889648, -0.017017608508467674, 0.011031480506062508, -0.009184770286083221, -0.014411307871341705, -0.0022177945356816053, 0.027512498199939728, 0.00375613896176219, -0.010926949791610241, 0.015345116145908833, -0.007595902308821678, 0.007421684451401234, -0.016320737078785896, 0.01046004518866539, -0.011770164594054222, 0.03264147415757179, -0.012195255607366562, 0.01966572180390358, 0.000658979348372668, 0.02207689732313156, -0.03863457217812538, -0.0020940997637808323, -0.00032099656527861953, 0.012738816440105438, -0.014926993288099766, 0.0007944338140077889, -0.006411220412701368, -0.01574930176138878, 0.017003672197461128, -0.010223109275102615, -0.010801512748003006, -0.027150124311447144, -0.025017697364091873, 0.000578839099034667, 0.03428609296679497, -0.007338059600442648, 0.0038920289371162653, 0.0037003890611231327, -0.03905269503593445, -0.009435643441975117, -0.024418387562036514, -0.005899019539356232, 0.015944426879286766, -0.012474005110561848, 0.005759645253419876, -0.013317219913005829, -0.012432192452251911, -0.024920133873820305, 0.010655169375240803, -0.006951295770704746, -0.015568115748465061, -0.009686517529189587, -0.0238330140709877, 0.027080437168478966, 0.029491612687706947, -0.018481040373444557, 0.014062872156500816, -0.01075970008969307, 0.012362505309283733, 0.010690012946724892, -0.005094132851809263, 0.025672756135463715, 0.017338169738650322, -0.011791069991886616, -0.013784123584628105, 0.026230253279209137, 0.004651619121432304, 0.019874783232808113, 0.014857306145131588, -0.032223351299762726, -0.0008872048929333687, -0.009059333242475986, 0.012425223365426064, -0.010989667847752571, 0.005899019539356232, -0.016362549737095833, -0.012299787253141403, -0.02533825859427452, -0.017170920968055725, -0.0050558047369122505, 0.03618158400058746, 0.023596078157424927, -0.007170810364186764, -0.009505330584943295, -0.0010514053283259273, 0.009393831714987755, -0.026704126968979836, 0.010982698760926723, -0.009484425187110901, 0.00906630139797926, 0.002554035047069192, -0.002123716752976179, 0.00013730551290791482, 0.0013902592472732067, -0.03584708273410797, -0.0018240618519484997, 0.02255077101290226, -0.023038581013679504, 0.028111808001995087, 0.0008919958490878344, 0.001966920681297779, -0.00014699638995807618, -0.00027548213256523013, 0.03966594114899635, 0.010014047846198082, -0.0034895853605121374, 0.0067039066925644875, -0.010857262648642063, 0.014913056045770645, 0.021366087719798088, -0.035178087651729584, 0.0016550704604014754, 0.0025331289507448673, 0.008669084869325161, -0.006066268775612116, 0.02365182712674141, 0.0285438671708107, 0.038216449320316315, -0.027707621455192566, 0.04053006321191788, -0.013721405528485775, 0.000999139854684472, 0.005885082297027111, 0.05034201592206955, -0.023261580616235733, 0.018048979341983795, 0.010717888362705708, 0.016864296048879623, -0.004766603000462055, -0.028404492884874344, 0.018216228112578392, 0.002120232442393899, 0.020306844264268875, -0.004714337643235922, -0.007770120166242123, 0.03487146273255348, -0.0035192023497074842, 0.008327617309987545, 0.011115104891359806, 0.0174078568816185, 0.01941484771668911, -0.0017474059714004397, 0.019498473033308983, 0.008578491397202015, -0.005623755045235157, 0.02019534446299076, -0.0021411385387182236, -0.007860713638365269, -0.01103844866156578, 0.0045052762143313885, -0.009310207329690456, -0.0029059553053230047, -0.026104817166924477, -0.01009767223149538, -0.016460111364722252, -0.027010750025510788, 0.004839774686843157, -0.00167423440143466, 0.03690632805228233, -0.0019460144685581326, 0.012724878266453743, -0.011059354990720749, -0.031136231496930122, 0.004738728050142527, -0.01894097402691841, -0.010557607747614384, -0.011791069991886616, -0.009038426913321018, 0.012083756737411022, 0.007937369868159294, 0.017575105652213097, -0.007630745880305767, -0.0003399427514523268, -0.0011759711196646094, 0.017003672197461128, -0.0014895633794367313, 0.005459990352392197, 0.03392371907830238, -0.014439183287322521, -0.006338048726320267, 0.012076787650585175, 0.007066279649734497, 0.012543692253530025, -0.02804212085902691, -0.017198795452713966, 0.050202641636133194, -0.0180350411683321, -0.0050244457088410854, -0.010000109672546387, 0.015888676047325134, -0.02932436391711235, 0.006745718885213137, -0.027623998001217842, -0.029129240661859512, -0.020850403234362602, -0.020934028550982475, 0.004372870549559593, -0.008620304055511951, -0.006160346325486898, 0.018550727516412735, 0.016041988506913185, -0.014564620330929756, -0.016599485650658607, -0.015331178903579712, 0.021240651607513428, 0.06065572053194046, 0.005672536324709654, -0.0127806281670928, 0.028683241456747055, -0.026049066334962845, -0.010216140188276768, -0.011721382848918438, -0.050007518380880356, 0.026732001453638077, -0.016794608905911446, 0.009024489670991898, 0.011149948462843895, 0.022690145298838615, -0.008543647825717926, -0.0034895853605121374, 0.00757499597966671, 0.011944382451474667, -0.019205786287784576, -0.020613467320799828, 0.005822363775223494, -0.020306844264268875, 0.011122073978185654, 0.0186622254550457, 0.017240608111023903, 0.03882969543337822, 0.03266935050487518, 0.03676695376634598, 0.011512321420013905, 0.008759678341448307, -0.016641298308968544, -0.018146540969610214, 0.004846743308007717, 0.004247433505952358, 0.013784123584628105, -0.00870392844080925, 0.02446020022034645, -0.002588878618553281, -0.022285958752036095, -0.022759832441806793, 0.018550727516412735, -0.0004048389382660389, 0.00756802735850215, 0.015261491760611534, -0.017951417714357376, 0.006432126276195049, -0.027526434510946274, -0.005038382951170206, 0.03774257376790047, -0.011763195507228374, -0.010390358045697212, -0.0014320715563371778, 0.0017325974768027663, -0.02202114835381508, 0.021728461608290672, 0.007066279649734497, 0.005592396017163992, -0.00933111272752285, -0.0005766613758169115, -0.01637648604810238, -0.03055085800588131, -0.04853015020489693, -0.009233551099896431, -0.002759612165391445, -0.009477456100285053, -0.005940831732004881, -0.01478761900216341, -0.000718649011105299, 0.023247642442584038, -0.012090724892914295, 0.0016298089176416397, 0.014662181958556175, -0.0313592292368412, -0.045157290995121, 0.006738750264048576, 0.028934115543961525, 0.01665523461997509, 0.007428653072565794, 0.0012430449714884162, -0.0006489618681371212, 0.011456572450697422, 0.005756160710006952, -0.035233836621046066, 0.013623842969536781, -0.027651872485876083, -0.02370757795870304, -0.022007210180163383, -0.02440444938838482, -0.010836356319487095, -0.021101277321577072, 0.010543669573962688, -0.005257897544652224, -0.027554310858249664, -0.01790960505604744, -0.012034975923597813, 0.01577717624604702, 0.04365204647183418, 0.021184902638196945, 0.0038920289371162653, 0.030634483322501183, -0.046997033059597015, 0.01154019683599472, -0.014899118803441525, -0.004860680550336838, -0.03239060193300247, 0.009414738044142723, 0.005543615203350782, -0.005236991215497255, -0.02427901327610016, 0.019331222400069237, -0.01743573136627674, -0.0035644990857690573, -0.004435589071363211, -0.01245309878140688, -0.0260351300239563, 0.0004266161995474249, 0.008216118440032005, 0.008069775067269802, 0.0313592292368412, 0.0048990086652338505, -0.005480896681547165, 0.022258084267377853, -0.03891332074999809, 0.04066943749785423, -0.009059333242475986, 0.012244037352502346, 0.01712910830974579, 0.021226713433861732, -0.030439360067248344, -0.03004911169409752, 0.01132416632026434, 0.008397304452955723, 0.00788858812302351, -0.002745674690231681, -0.004808415193110704, -0.016167424619197845, -0.02465532347559929, -0.010027985088527203, 0.0012987947557121515, -0.01160291489213705, 0.0018310305895283818, -0.011345072649419308, -0.0025714568328112364, 0.02882261574268341, 0.0033798280637711287, 0.0009677806519903243, -0.024920133873820305, -0.014508870430290699, -0.0061707994900643826, 0.011644727550446987, 0.02151940017938614, -0.023735452443361282, -0.014676119200885296, -0.021407900378108025, -0.015623865649104118, 0.022885268554091454, -0.011094198562204838, -0.001961694099009037, -0.011693508364260197, 0.04563116282224655, 0.02013959363102913, 0.027888808399438858, 0.0015923520550131798, 0.03239060193300247, 0.0032090945169329643, -0.015874739736318588, -0.01765873096883297, -0.020153531804680824, -0.024167513474822044, -0.004874618258327246, 0.0011437408393248916, 0.0069722020998597145, 0.005871144589036703, -0.020850403234362602, 0.00840427353978157, 0.0043798391707241535, 0.01364474929869175, -0.0002913795178756118, -0.0038885443937033415, -0.035679835826158524, -0.04036281257867813, 0.0026637923438102007, 0.02465532347559929, 0.0030923685990273952, -0.0018275462789461017, -0.03735232725739479, 0.008480929769575596, 0.0501747690141201, -0.014341620728373528, 0.03105260618031025, 0.00033798281219787896, 0.04730365425348282, 0.008787552826106548, 0.002203857060521841, 0.0005932120839133859, 0.010076765902340412, -0.03609795868396759, -0.008543647825717926, -0.035456836223602295, -0.02302464284002781, 0.015665678307414055, 0.00983286090195179, 0.015456615947186947, 0.005442568566650152, -0.009198707528412342, 0.010237046517431736, 0.0055749742314219475, -0.02847418002784252, 0.0024634418077766895, -0.0004712595255114138, -0.021031590178608894, -0.0031394073739647865, -0.03657183051109314, 1.4686028407595586e-05, -0.0025313866790384054, 0.007240497972816229, 0.023484578356146812, 0.0006685613770969212, 0.023247642442584038, -0.019233660772442818, -0.014397370629012585, 0.021031590178608894, -0.018271977081894875, 0.03634883090853691, 0.032697223126888275, 0.022634394466876984, 0.006731781177222729, -0.0007317153504118323, -0.015554177574813366, -0.029881861060857773, 0.00464116595685482, -0.02117096446454525, 0.009561080485582352, 0.0357634611427784, -0.0029721581377089024, -0.0007020983030088246, 0.00664815679192543, -0.03264147415757179, 0.004968695808202028, -0.04011194035410881, 0.0016019339673221111, 0.00926839467138052, 0.008292773738503456, -0.03484359011054039, -0.016794608905911446, -0.007630745880305767, 0.023986326530575752, -0.018871286883950233, 0.007784057874232531, -0.0018414836376905441, -0.02982611209154129, 0.004243948962539434, 0.014411307871341705, -0.004717821720987558, 0.010271890088915825, -0.001080151298083365, 0.0020609982311725616, 0.010752731934189796, -0.010188265703618526, -0.00033667616662569344, -0.006372892297804356, -0.004393776413053274, 0.03035573475062847, -0.019247598946094513, 0.0012578535825014114, 0.009386862628161907, 0.02358213998377323, -0.01763085648417473, -0.007226560264825821, -0.02032078057527542, 0.028251182287931442, -0.026481127366423607, -0.012118600308895111, 0.006041878368705511, 0.020529842004179955, 0.017421795055270195, -0.02202114835381508, -0.016487985849380493, -0.001796187018044293, -0.0005400756490416825, 0.0019303348381072283, 0.015763239935040474, -0.011498384177684784, -0.02907348982989788, 0.0010017531458288431, 0.012571566738188267, -0.02565881796181202, 0.014251028187572956, 0.015080304816365242, 0.00903145782649517, -0.03161010518670082, -0.010425201617181301, -0.0023798171896487474, -0.010453077033162117, -0.001121092471294105, -0.004456494934856892, -0.016920046880841255, -0.009338081814348698, 0.023623952642083168, -0.01427193358540535, 0.010014047846198082, 0.01863435097038746, -0.00041485647670924664, -0.02420932613313198, 0.02114308997988701, -0.012752753682434559, -0.00680495286360383, 0.01195135060697794, -0.008216118440032005, -0.018146540969610214, -0.02508738450706005, 0.01728242076933384, -0.0020609982311725616, -0.0027874871157109737, 0.006571501027792692, 0.02345670387148857, 0.014703994616866112, 0.010836356319487095, -0.013456594198942184, 0.006111565511673689, 0.016460111364722252, -0.0013789350632578135, 0.0019059443147853017, 0.01386077981442213, -0.014453120529651642, 0.004770087078213692, 0.014216184616088867, 0.0017700543394312263, -0.008745741099119186, -0.044962167739868164, -0.03163797780871391, -0.021310338750481606, 0.01354718767106533, 0.003304914338514209, 0.011547164991497993, 0.0003841505676973611, -0.010745762847363949, -0.014083778485655785, 0.01417437195777893, -0.018968850374221802, 0.019930532202124596, 0.01643223688006401, -0.002444277750328183, 0.013170876540243626, 0.024418387562036514, -0.01693398505449295, -0.027233749628067017, -0.03685057908296585, -0.019498473033308983, -0.047498781234025955, -0.005411209538578987, 0.004240464884787798, 0.0320003516972065, -0.011163885705173016, -0.036711204797029495, -0.019484534859657288, -0.007014014292508364, -0.03278084844350815, -0.007763151545077562, -0.022885268554091454, 0.022467145696282387, 0.02907348982989788, 0.023623952642083168, 0.00870392844080925, 0.013498405925929546, 0.0007064537494443357, 0.016111675649881363, -0.03958231583237648, 0.00818824302405119, -0.026146629825234413, -0.02784699574112892, 0.04064156115055084, -0.013791092671453953, -0.04866952449083328, -0.0014677861472591758, -0.004324089270085096, -0.012439161539077759, 3.062424624999949e-08, 0.0024198873434215784, 0.01841135323047638, -0.014021060429513454, 0.002923377091065049, 0.0029355722945183516, 0.028529930859804153, 0.018857350572943687, 0.01680854707956314, -0.037993449717760086, -0.004236980341374874, 0.033979468047618866, -0.008933896198868752, 0.008627272211015224, 0.0027630964759737253, 0.01583292707800865, -0.01721273362636566, -0.0006624637171626091, -0.0077283079735934734, -0.005327584687620401, 0.0022265054285526276, 0.01941484771668911, 0.006331080105155706, 0.023986326530575752, 0.009993141517043114, 0.038216449320316315, -0.021129151806235313, 0.00406276248395443, -0.0008946091402322054, 0.005623755045235157, 0.008271868340671062, 0.01818835362792015, 0.0382721982896328, -0.02377726510167122, -0.002247411524876952, 0.0028885335195809603, 0.016474049538373947, -0.004404229577630758, -0.01652979850769043, -0.00726140383630991, -0.004867649171501398, -0.007351997308433056, -0.0012325919233262539, 0.007916463539004326, -0.008662115782499313, -0.0035888897255063057, -0.0032143210992217064, -0.013324188068509102, 0.003510491456836462, 0.0027421903796494007, 0.011142979376018047, -0.017965354025363922, -0.022968893870711327, 3.092368569923565e-05, 0.012850315310060978, -0.04058581218123436, 0.001397227868437767, 0.024641385301947594, 0.02954736351966858, 0.008529710583388805, 0.20683154463768005, 0.005986128468066454, 0.00751924654468894, 0.03503871336579323, 0.02092009037733078, 0.004407714121043682, 0.020223218947649002, 0.0054948339238762856, -0.015958363190293312, 0.0081533994525671, -0.011770164594054222, 0.005219569429755211, -0.008383367210626602, -0.003968684934079647, 0.01725454442203045, -0.016724921762943268, -0.03358921781182289, -0.011184792034327984, -0.012759721837937832, 0.019609970971941948, -0.003205610206350684, -0.009930422529578209, -0.008787552826106548, -0.0050976169295609, 0.02709437534213066, 0.0015723169781267643, -0.018341664224863052, 0.003804920008406043, 0.019582096487283707, 0.01675279811024666, -0.006449548061937094, 0.003972169011831284, 0.014494933187961578, -0.003000033088028431, -0.01806291565299034, -0.006717843934893608, 0.01750541850924492, -0.018494976684451103, -0.017101233825087547, 0.01951240934431553, 0.004184714984148741, -0.032418474555015564, 0.007672558072954416, -0.025700630620121956, 0.021714525297284126, 0.003482616739347577, -0.02731737308204174, 0.017463605850934982, -0.02179814875125885, 0.0014721415936946869, -0.004972179885953665, 0.00664118817076087, 0.010341577231884003, 0.022843455895781517, -0.0033345315605401993, 0.008529710583388805, -0.017366044223308563, 0.004344995599240065, -0.013170876540243626, -0.02907348982989788, -0.00989557895809412, 0.013533249497413635, -0.01901066116988659, 0.014041965827345848, -0.028139682486653328, 0.009393831714987755, -0.02082252874970436, 0.0288504920899868, 0.0033676328603178263, -0.006411220412701368, -0.007338059600442648, -0.001755245728418231, -0.03197247534990311, 0.005428631324321032, -0.01737998239696026, -0.020376531407237053, 0.008996614255011082, 0.004637681879103184, 0.024641385301947594, 0.021909648552536964, -0.007338059600442648, 0.008257930167019367, -0.028432369232177734, -0.008599397726356983, -0.0033415001817047596, -0.022606519982218742, 0.024850446730852127, -0.019582096487283707, -0.006041878368705511, -0.017170920968055725, -0.005602849181741476, 0.00876664649695158, -0.0156796146184206, -0.025853943079710007, -0.002277028514072299, -0.020460154861211777, 0.007965244352817535, 0.021463651210069656, -0.01502455584704876, -0.03163797780871391, -0.017602980136871338, 0.06979867815971375, 0.005794488824903965, 0.015442678704857826, -0.009825891815125942, 0.012759721837937832, 0.009874672628939152, 0.015540240332484245, 0.007881619967520237, -0.005588911473751068, 0.007951307110488415, -0.058258481323719025, 0.025798192247748375, -0.015456615947186947, -0.005240475758910179, 0.01675279811024666, 0.03158222883939743, -0.009811954572796822, -0.007170810364186764, -0.025045571848750114, 0.027623998001217842, -0.0028989866841584444, 0.03283659741282463, 0.01800716668367386, -0.0388854444026947, -0.02731737308204174, -0.002182950731366873, 0.027986370027065277, -0.042955175042152405, -0.020055970177054405, 0.018104728311300278, -0.015665678307414055, 0.019400909543037415, -0.0075819650664925575, 0.006557563319802284, 0.008515773341059685, 0.03361709415912628, -0.0029059553053230047, -0.018244102597236633, -0.013170876540243626, 5.3163694246904925e-05, 0.009198707528412342, 0.016209237277507782, 0.010836356319487095, 0.0046829781495034695, -5.553196842811303e-06, 0.005299709737300873, -0.01976328343153, -0.002670760964974761, -0.021937523037195206, -0.007456528022885323, 0.009686517529189587, 0.0010853777639567852, -0.007275341544300318, 0.0302721094340086, -2.2294452719506808e-05, -0.020460154861211777, -0.033979468047618866, 0.016864296048879623, 0.012132537551224232, -0.0423419289290905, -0.006554079242050648, 0.01881553791463375, 0.002162044635042548, -0.009052364155650139, -0.005773582495748997, -0.1781761795282364, 0.0028972444124519825, -0.004010497126728296, -0.021366087719798088, 0.019609970971941948, 0.009024489670991898, 0.008132494054734707, 0.005073226522654295, -0.0003758752136491239, -0.006933873984962702, 0.010390358045697212, 0.00958198681473732, -0.006149893626570702, 0.00012968348164577037, 0.018425289541482925, 0.00029704158077947795, -0.02079465426504612, 0.02051590569317341, 0.050258390605449677, 0.013108158484101295, 0.010000109672546387, -0.044209543615579605, 0.0002380252699367702, -0.013777155429124832, 0.015735365450382233, 0.0040976060554385185, -6.0329766711220145e-06, 0.017589043825864792, -0.016920046880841255, -0.03615370765328407, -0.00040549226105213165, 0.004083668813109398, 0.02119883894920349, 0.0007748343050479889, 0.02671806327998638, -0.0064878761768341064, 9.641874203225598e-05, 0.006836311891674995, -0.004390292335301638, 0.013352063484489918, 0.01593048870563507, 0.011582008562982082, 0.013588999398052692, 0.011707445606589317, 0.010731825605034828, 0.015874739736318588, 0.011672602035105228, -0.016014114022254944, -0.0005762258660979569, -0.0014294582651928067, 0.034927211701869965, -0.02308039367198944, 0.008829365484416485, -0.0005753547884523869, 0.005881597753614187, -0.001676847692579031, -0.0027700653299689293, 0.02214658446609974, 0.0016271956264972687, -0.006571501027792692, 0.016850359737873077, -0.008710897527635098, 0.016669172793626785, 0.0032526489812880754, 0.0038258261047303677, -0.03264147415757179, 0.02289920672774315, 0.00963076762855053, 0.002825814997777343, -9.674540342530236e-05, -0.0037770450580865145, 0.015247554518282413, -0.006010518874973059, 0.024069951847195625, 0.013749280013144016, 0.013338126242160797, -0.04055793583393097, 0.03138710558414459, 0.015442678704857826, -0.012083756737411022, 0.022369584068655968, -0.0028676274232566357, -0.012550660409033298, 6.756389484507963e-05, -0.0035401086788624525, 0.0016672657802700996, -0.013372969813644886, 0.0031237276270985603, -0.007637714501470327, 0.0078398073092103, 0.026982875540852547, -0.015386928804218769, 0.002965189516544342, 0.01213950663805008, 0.019024599343538284, -0.0044460417702794075, 0.03506658598780632, -0.0015357311349362135, 0.014508870430290699, 0.0186622254550457, 0.004000043962150812, 0.02151940017938614, -0.012334630824625492, 0.003797951154410839, 0.030160609632730484, 0.023972388356924057, 0.008160368539392948, 0.008801490068435669, 0.03556833416223526, -0.01768660545349121, -0.008919958956539631, 0.011874695308506489, 0.016669172793626785, 0.013303281739354134, -0.014926993288099766, 0.03434184193611145, 0.002076677978038788, -0.029630986973643303, 0.0068467650562524796, -0.01941484771668911, 0.03216760233044624, -0.030968980863690376, -0.02151940017938614, 0.018773725256323814, -0.006111565511673689, 0.00019185751443728805, -0.11774345487356186, -0.025742443278431892, 0.028488118201494217, 0.020724967122077942, -0.004407714121043682, 0.01422315277159214, -0.00551225570961833, 0.04593778774142265, -0.029519489035010338, 0.029212864115834236, -0.0326135978102684, -0.029184989631175995, -0.007125514093786478, -0.008055837824940681, 0.00840427353978157, -0.00839033629745245, -0.004390292335301638, -0.0004930367576889694, -0.016599485650658607, 0.03464846312999725, 0.0064216735772788525, -0.002949509769678116, -0.00046124201617203653, -0.022495020180940628, -0.027387060225009918, -0.017867792397737503, -0.020083844661712646, 0.009588955901563168, 0.00019240194524172693, 0.005432115402072668, 0.03657183051109314, -0.010278858244419098, 0.023763326928019524, -0.011791069991886616, -0.021003715693950653, -0.02405601367354393, -0.021184902638196945, -0.02879474125802517, 0.008167337626218796, -0.045965664088726044, -0.007763151545077562, 0.0026306910440325737, -0.01705942116677761, -0.01954028382897377, -0.004574963357299566, -0.009379894472658634, -0.011379916220903397, 0.022160522639751434, 0.024571698158979416, -0.013484468683600426, -0.025672756135463715, -0.012975752353668213, -0.014508870430290699, -0.03002123534679413, 0.02879474125802517, 0.0062509397976100445, 0.021616961807012558, 0.015233617275953293, -0.012069819495081902, 0.003794466843828559, 0.011198729276657104, -0.0016716212267056108, 0.0037700762040913105, 0.027805183082818985, -0.014467057771980762, 0.013366000726819038, 0.0013719663256779313, -0.007867682725191116, -0.014982743188738823, -0.017115170136094093, -0.0156796146184206, -0.0018310305895283818, -0.03609795868396759, 0.00438332324847579, -0.00951926875859499, -0.013226626440882683, -0.0236797034740448, -0.022188397124409676, 0.02114308997988701, 0.0174078568816185, -0.013825936242938042, -0.012710941024124622, 0.006090659182518721, -0.035428959876298904, 0.043010927736759186, 0.006299721077084541, 0.021157026290893555, -0.012055881321430206, 0.028209369629621506, -0.025575194507837296, 0.011728351935744286, 0.008007057011127472, 0.010885137133300304, -0.02355426549911499, -0.006829343270510435, 0.0302721094340086, -0.016446173191070557, 0.019721470773220062, 0.02834874391555786, -0.0023449736181646585, -0.02308039367198944, -0.013561124913394451, -0.04992389306426048, 0.014676119200885296, 0.00606975331902504, -0.000390030414564535, 0.004282277077436447, -0.020613467320799828, -0.013136032968759537, -0.008919958956539631, 0.006784046534448862, 0.019623909145593643, -0.036237332969903946, 0.011212666518986225, -0.015205741859972477, -0.024097826331853867, -0.02458563633263111, -0.015177867375314236, 0.0044251359067857265, 0.002385043539106846, 0.017644792795181274, -0.0032578755635768175, -0.015944426879286766, 0.005930379033088684, 0.0026237221900373697, 0.025101320818066597, -0.015317241661250591, 0.0049896021373569965, -0.018857350572943687, 0.035679835826158524, -0.009958297945559025, -0.01875978894531727, -0.008355492725968361, -6.304511771304533e-05, -0.0035035228356719017, 0.019874783232808113, -0.025226758792996407, -0.03487146273255348, 0.02565881796181202, 0.0067701092921197414, 0.02342882938683033, 0.011958319693803787, -0.02960311248898506, -0.021101277321577072, 0.03478783741593361, -0.00921961385756731, -0.004637681879103184, 0.008320649154484272, -0.015484490431845188, -0.009505330584943295, 0.017087295651435852, 0.018146540969610214, 0.035178087651729584, 0.0015714458422735333, -0.016487985849380493, -0.044488295912742615, -0.0014486222062259912, 0.0036550925578922033, 0.025672756135463715, 0.02179814875125885, 0.0013388649094849825, -0.012836378067731857, 0.0432896763086319, 0.018731912598013878, 0.010766669176518917, -0.010919980704784393, 0.016292862594127655, -0.008836334571242332, -0.03654395416378975, -0.012209193781018257, 0.011170854791998863, -0.035178087651729584, -0.010027985088527203, -0.026327814906835556, 0.03423034027218819, 0.028961991891264915, 0.016920046880841255, 0.008223086595535278, -0.011045417748391628, -0.016697047278285027, -0.002074935706332326, 0.03213972598314285, 0.019094286486506462, -0.022871332243084908, -0.017296357080340385, 0.0020714513957500458, 0.034174591302871704, 0.006749202962964773, -0.019582096487283707, 0.017101233825087547, 0.014634307473897934, 0.0001229325425811112, -0.009345050901174545, -0.0027700653299689293, -0.02082252874970436, 0.01625104993581772, 0.006428642198443413, 0.030244234949350357, -0.024934072047472, 0.019094286486506462, 0.03303172066807747, 0.0260351300239563, 0.006122018676251173, 0.012390379793941975, 0.012508848682045937, 0.0026568237226456404, -0.030383609235286713, 0.014843368902802467, -0.02954736351966858, -0.014885181561112404, 0.0076028709299862385, 0.03526171296834946, -0.007324122358113527, 0.009129020385444164, -0.0003264408733230084, 0.01273184735327959, -0.013832904398441315, 0.0006515751010738313, -0.026425378397107124, -0.024752885103225708, -0.02565881796181202, -0.014411307871341705, 0.007902526296675205, 0.009477456100285053, 0.0038641539867967367, -0.025700630620121956, 0.01453674491494894, 0.016446173191070557, 0.013512344099581242, -0.02342882938683033, -0.0027630964759737253, -0.020529842004179955, 0.02634175308048725, 0.010578513145446777, 0.02628600411117077, -0.02079465426504612, -0.015791114419698715, -0.02041834220290184, -0.013066345825791359, 0.014899118803441525, 0.0025348709896206856, 0.07280915975570679, 0.03082960657775402, -0.01728242076933384, 0.016320737078785896, -0.016697047278285027, -0.007937369868159294, 0.018927037715911865, 0.001719531137496233, 0.004017465747892857, -0.026327814906835556, 0.03375646844506264, 0.005446053110063076, -0.01422315277159214, -0.018118666484951973, -0.013575062155723572, 0.00664118817076087, 0.01270397286862135, 0.006223064847290516, -0.027024688199162483, 0.011094198562204838, 0.027387060225009918, 0.0029373145662248135, 0.032418474555015564, -0.014181341044604778, -0.03353346884250641, -0.011379916220903397, 0.03266935050487518, 0.014676119200885296, 0.0006402509170584381, -0.020209280773997307, 0.011247510090470314, -0.004338026978075504, -0.02985398657619953, -0.004000043962150812, 0.00023737194715067744, 0.000719520088750869, 0.002564488211646676, -0.026871375739574432, -0.013721405528485775, 0.015944426879286766, -0.01875978894531727, 0.01157504040747881, -0.02985398657619953, -0.007686495780944824, 0.018676163628697395, -0.012885158881545067, 0.006355470512062311, -0.016724921762943268, -0.009540174156427383], "c75b30bc-2118-4e6c-8de0-917d39ced670": [-0.011685371398925781, -0.01570933498442173, 0.0016893057618290186, -0.03636062517762184, -0.0014166701585054398, 0.016413357108831406, -0.01627531461417675, -0.026228241622447968, -0.021327700465917587, -0.05941386893391609, 0.012561947107315063, 0.006557060405611992, 0.019712593406438828, -0.0054975771345198154, 0.014825858175754547, 0.029348021373152733, 0.020513245835900307, 0.006194696296006441, 0.013624881394207478, -0.014687814749777317, -0.008199776522815228, -0.005835783667862415, -0.0230394396930933, -0.0036029319744557142, -0.028630195185542107, 2.217591281805653e-05, 0.04033627361059189, -0.013576565310359001, -0.007233472540974617, 0.016151074320077896, 0.015571292489767075, -0.028823455795645714, -0.016648029908537865, -0.00717825535684824, -0.016385748982429504, -0.008241189643740654, 0.0022863433696329594, 0.0021690065041184425, 0.004348366055637598, -0.012209936045110226, 0.013404011726379395, 0.005670131649821997, -0.004966110456734896, 0.015543683432042599, 0.004548529163002968, 0.01818031258881092, 0.011326459236443043, -0.015115749090909958, -0.010622437112033367, -0.012486022897064686, -0.0071161356754601, 0.024295633658766747, -0.010732872411608696, 0.0015098494477570057, -0.013507544063031673, 0.010380861349403858, 0.007537167984992266, -0.0030093456152826548, 0.0039307852275669575, 0.0038859208580106497, 0.006591571029275656, 0.015930205583572388, -0.019892049953341484, -0.005576952360570431, -0.03271627798676491, -0.023950524628162384, -0.016082052141427994, -0.0217280276119709, -0.0036719536874443293, -0.00948357954621315, 0.024199003353714943, 0.029624108225107193, -0.02056846208870411, -0.011975262314081192, 0.004838420078158379, -0.01342471782118082, 0.0101530896499753, -0.006291326601058245, -0.013252164237201214, -0.026656175032258034, 0.016192488372325897, -0.002027512062340975, -0.009097058326005936, -0.014439336955547333, 0.02740160934627056, 0.04930909350514412, -0.006136028096079826, 0.0004555431369226426, -0.002565881237387657, -0.0011164257302880287, 0.01434270665049553, 0.021327700465917587, 0.02194889634847641, 0.02711171843111515, 0.003813448129221797, 0.008814069442451, 0.012417001649737358, -0.002027512062340975, 0.003178448649123311, -0.013597272336483002, -0.027277370914816856, -0.005652876105159521, 0.0018187214154750109, -0.011844121851027012, -0.027801934629678726, -0.009200590662658215, 0.015419445000588894, -0.00717825535684824, 0.005159371066838503, 0.02308085188269615, -0.010518904775381088, 0.03191562741994858, -0.006488038692623377, -0.009290318936109543, -0.021810853853821754, -0.008116950280964375, 0.02682182751595974, -0.024544112384319305, 0.003176723141223192, -0.03382062539458275, 0.008883090689778328, 0.011112491600215435, 0.027015088126063347, -0.029071934521198273, 0.006577766966074705, -0.00893140584230423, -0.007029858883470297, -0.008613906800746918, 0.026656175032258034, 0.0036926602479070425, 0.024047154933214188, 0.03310279920697212, 0.009946024976670742, 0.002629726193845272, -0.047293659299612045, 0.013831946067512035, -0.023425960913300514, 0.007406027056276798, -0.008172167465090752, -0.03174997493624687, 0.012009773403406143, 0.017559116706252098, -0.0041723609901964664, -0.023094655945897102, 0.015474662184715271, 0.035339102149009705, -0.019160419702529907, 0.021272484213113785, 0.013279772363603115, -0.025303350761532784, 0.007916787639260292, -0.01677227020263672, -0.006118772551417351, 0.019684985280036926, 0.02007150650024414, -0.006346544250845909, -0.006412114482372999, 0.038072362542152405, -0.010933035053312778, -0.019905854016542435, 0.00010585122799966484, 0.013052000664174557, -0.008655319921672344, -0.0034131223801523447, -0.003640894079580903, 0.027235956862568855, -3.542753620422445e-05, -0.029679324477910995, -0.012451511807739735, -0.013852652162313461, -0.0043966812081635, 0.022280201315879822, -0.026959870010614395, 0.020803136751055717, 0.009518090635538101, 0.006122223567217588, 0.0203061792999506, -0.0076545048505067825, -0.021272484213113785, -0.0189395509660244, 0.030176281929016113, -0.002790201688185334, 0.01031184010207653, 0.028630195185542107, -0.023356938734650612, -0.02088596299290657, 0.025082480162382126, 0.00814455933868885, 0.003547714790329337, -0.0047038281336426735, 0.02360541746020317, 0.012002871371805668, -0.020678896456956863, -0.0009447343181818724, -0.6126917004585266, -0.007054016459733248, 0.012955370359122753, -0.020154332742094994, -0.005048936232924461, 0.013776728883385658, 0.025261936709284782, -0.003502850653603673, -0.00494885491207242, 0.025027263909578323, 0.016758466139435768, 0.009449068456888199, -0.014853467233479023, -0.008814069442451, -0.016661835834383965, -0.028119435533881187, 0.0149086844176054, 0.0021552022080868483, -0.012037382461130619, 0.011492110788822174, -0.026407698169350624, 0.025137698277831078, 0.0018911942606791854, -0.003302687779068947, 0.014729227870702744, -0.0059496695175766945, 0.01434270665049553, -0.009103960357606411, -0.019464116543531418, 0.022583896294236183, -0.03393106162548065, 0.017779987305402756, 0.030535195022821426, -0.010118579491972923, 0.03856931999325752, -0.00906944926828146, -0.008648416958749294, 0.01657900959253311, 0.024281829595565796, 0.0352286696434021, -0.027705304324626923, -0.010084068402647972, 0.014315097592771053, 0.024571720510721207, -0.0022828923538327217, 0.004638257436454296, -0.0006570001714862883, 0.019077593460679054, -0.008289504796266556, -0.007150646764785051, 0.001295019406825304, -0.019436506554484367, 0.004731436725705862, -0.00991151388734579, 0.013749119825661182, 0.0014779268531128764, 0.03605692833662033, 0.00487293116748333, 0.009794177487492561, 0.01568172685801983, 0.01220303401350975, 0.019988680258393288, -0.007882276549935341, -0.04933670163154602, -0.03851410001516342, 0.010601731017231941, -0.02141052670776844, -0.01844259537756443, 0.024820199236273766, 0.006691652350127697, 0.013328087516129017, -0.0039169806987047195, -0.0019826479256153107, -0.00345626100897789, -0.012237545102834702, 0.03660910204052925, 0.03906627371907234, -0.009835590608417988, 0.003744426416233182, 0.016316726803779602, 0.004013611003756523, 0.005048936232924461, 0.0039031764026731253, -0.024820199236273766, 0.02793997898697853, 0.015778357163071632, -0.031032150611281395, -0.011844121851027012, -0.005290512461215258, -0.006463881116360426, 0.020195744931697845, 0.013735315762460232, -0.002800554968416691, -0.028851065784692764, 0.038596928119659424, 0.03572562336921692, 0.0032526468858122826, -0.010125481523573399, -0.007833961397409439, -0.019408898428082466, -0.028630195185542107, -0.03611214458942413, 0.0031818996649235487, 0.00549067510291934, 0.02301182970404625, 0.02221117913722992, -0.02951367385685444, -0.01341091375797987, 0.01411493495106697, -0.020485635846853256, 0.0004775437992066145, -0.007261081598699093, -0.024999655783176422, -0.010650046169757843, 0.007716624531894922, -0.027967587113380432, 0.01546085812151432, -0.002274264581501484, -0.009890807792544365, -0.01653759554028511, -0.023412156850099564, 0.008979720994830132, -0.01084330677986145, -0.0006082536419853568, -0.00375823094509542, 0.032881930470466614, 0.017490094527602196, 0.010739774443209171, 0.008655319921672344, 0.0013209024909883738, 0.02029237523674965, -0.012430805712938309, 0.008924503810703754, -0.012389392592012882, 0.03092171624302864, -0.002876478713005781, 0.010084068402647972, -0.0010335997212678194, 0.021631397306919098, -0.03390345349907875, 0.0029420494101941586, -0.015447053126990795, 0.008607004769146442, -0.024544112384319305, 0.010732872411608696, -0.008593199774622917, -0.012644773349165916, 0.012913957238197327, -0.003913529682904482, -0.01953313685953617, -0.02795378305017948, -0.023218896239995956, -0.00037875649286434054, 0.025551827624440193, -0.013376402668654919, 0.011174610815942287, 0.003861763281747699, -0.04149583727121353, -0.015253792516887188, -0.02055465802550316, -0.008075537160038948, 0.0021258678752928972, -0.00649839174002409, 0.00362018751911819, -0.007633798755705357, -0.020927375182509422, -0.0326058454811573, 0.003356179455295205, -0.00988390576094389, -0.012748305685818195, -0.015585096552968025, -0.02170041762292385, 0.026904653757810593, 0.027304979041218758, -0.023660633713006973, 0.009317927993834019, -0.010767383500933647, 0.010663850232958794, 0.005318121053278446, 0.003162918845191598, 0.030424758791923523, 0.01519857533276081, -0.01954694092273712, -0.006049750838428736, 0.032909538596868515, 0.011160806752741337, 0.013196946121752262, 0.015902597457170486, -0.02954128198325634, -0.007771841716021299, -0.009242003783583641, 0.018235528841614723, -0.0036305407993495464, -0.00036063831066712737, -0.014950097538530827, -0.014522163197398186, -0.017117377370595932, -0.01732444390654564, -0.005725348833948374, 0.03387584537267685, 0.015019118785858154, -0.005318121053278446, -0.013127924874424934, 0.004938501864671707, 0.013334989547729492, -0.028851065784692764, 0.01461879350244999, -0.008627710863947868, 0.009870100766420364, -0.004210323095321655, -0.007785646244883537, -0.011685371398925781, -0.009801079519093037, -0.03881779685616493, 0.006367250811308622, 0.0257865022867918, -0.017421074211597443, 0.028630195185542107, -0.0017911128234118223, 0.0002149378415197134, 0.015019118785858154, 0.019974876195192337, 0.016717052087187767, 0.01731063984334469, -0.0010845032520592213, 0.009290318936109543, -0.004817713517695665, 0.00867602601647377, 0.020154332742094994, -0.01980922371149063, -0.013141728937625885, 0.013949282467365265, 0.005538990255445242, -0.0074267336167395115, 0.011816512793302536, 0.021024005487561226, 0.04906061664223671, -0.01838737726211548, 0.03006584756076336, -0.00828260276466608, 0.012037382461130619, -0.00717825535684824, 0.03710605949163437, -0.03268866986036301, 0.018870528787374496, 0.008406841196119785, 0.00989770982414484, -0.009235101751983166, -0.019298464059829712, 0.03489736467599869, -0.0029817367903888226, 0.010594828985631466, -0.005873745307326317, -0.011547327972948551, 0.03663671016693115, -0.010477491654455662, -0.010884719900786877, 0.006004886701703072, 0.019933464005589485, 0.011954556219279766, -0.0022863433696329594, 0.0108295027166605, -0.002747063059359789, 0.0037133668083697557, 0.019588354974985123, -0.009359341114759445, -0.0009818334365263581, -0.027415413409471512, -0.009159177541732788, -0.004300050903111696, 0.00964232999831438, -0.03978409990668297, 0.0006065280758775771, -0.009711351245641708, -0.0026659625582396984, 0.0018549577798694372, -0.0011716431472450495, 0.006194696296006441, 0.0005237020668573678, 0.016993138939142227, -0.009421460330486298, -0.027732914313673973, 0.009835590608417988, 0.014577380381524563, -0.006067006383091211, 5.090349441161379e-05, -0.005273256916552782, -0.0054285554215312, 0.017241617664694786, 0.01178890373557806, -0.010125481523573399, 0.0022328514605760574, -0.0024157590232789516, 0.014004500582814217, -0.008876188658177853, 0.02276335284113884, 0.04715561494231224, -0.009103960357606411, -0.02083074487745762, 0.005117957945913076, 0.010118579491972923, 0.007095429580658674, -0.017710965126752853, -0.029458455741405487, 0.03277149796485901, -0.016123466193675995, -0.005421653389930725, -0.010194502770900726, 0.01274140365421772, -0.029430847615003586, 0.009614720940589905, -0.027263566851615906, -0.02686323970556259, -0.008234287612140179, -0.03061801940202713, -0.01165086030960083, 0.003633991815149784, -0.016095858067274094, 0.02874062955379486, 0.005466517526656389, -0.006736516486853361, -0.021838461980223656, 0.0006863343878649175, 0.016344334930181503, 0.04958517849445343, 0.004441545344889164, -0.016606617718935013, 0.020692702382802963, -0.021010201424360275, 0.0013761199079453945, -0.01790422573685646, -0.032329756766557693, 0.02274954877793789, -0.0016418533632531762, -0.010373959317803383, 0.010408470407128334, 0.027760522440075874, -0.0030196988955140114, 0.013169337995350361, 0.00023208542552310973, 0.02085835300385952, -0.023232700303196907, -0.02901671640574932, 0.01072597038000822, -0.020513245835900307, -0.00020641798619180918, 0.03547714650630951, 0.01950552873313427, 0.037796273827552795, 0.0434008352458477, 0.035173449665308, 0.00800651591271162, 0.004710730165243149, -0.024254221469163895, -0.008448254317045212, -0.00023812481958884746, -0.014729227870702744, 0.009311025962233543, 0.0034631630405783653, 0.03732692822813988, 0.0037616819608956575, -0.029927803203463554, -0.02818845771253109, 0.014729227870702744, -0.0007816706201992929, 0.023978134617209435, 0.009987438097596169, -0.01757292076945305, 0.016095858067274094, -0.028574978932738304, -0.004351817537099123, 0.031529106199741364, -0.007689015939831734, -0.00036365800769999623, 0.0014805152313783765, 0.0007769253570586443, 0.0013001960469409823, 0.02360541746020317, -0.0006790008628740907, -0.00568048469722271, -0.023467373102903366, -0.010332546196877956, -0.012154718860983849, -0.0324401929974556, -0.036719538271427155, -0.01921563781797886, -0.0017039729282259941, -0.012361784465610981, -0.01866346411406994, -0.02084454894065857, -0.014729227870702744, 0.006522549316287041, -0.016868900507688522, 0.0002801849041134119, -0.002952402690425515, -0.04207561910152435, -0.03393106162548065, -0.0008998702396638691, 0.022542482241988182, 0.011112491600215435, 0.013127924874424934, 0.012458414770662785, -0.007330103311687708, 0.008910699747502804, -0.003278530202805996, -0.041578665375709534, 0.009200590662658215, -0.01677227020263672, -0.012037382461130619, -0.02417139522731304, -0.018856724724173546, 0.0025469001848250628, -0.015778357163071632, 0.0047832028940320015, 0.01163705624639988, -0.02056846208870411, -0.01518477126955986, 0.0006949621019884944, 0.010063362307846546, 0.03975649178028107, 0.01546085812151432, 0.014950097538530827, 0.019933464005589485, -0.04177192598581314, 0.005687387194484472, -0.009435264393687248, -0.00906944926828146, -0.02056846208870411, 0.01477064099162817, 0.004786653909832239, -0.01013928558677435, -0.007771841716021299, 0.010684557259082794, -0.03227454051375389, 0.0007523364038206637, -0.00866222195327282, -0.008185972459614277, -0.020720310509204865, 0.009697547182440758, 0.004199969582259655, 0.008310210891067982, 0.026669979095458984, 0.004652061499655247, -0.01682748645544052, 0.019091399386525154, -0.0243370458483696, 0.04663105309009552, 0.0016470300033688545, 0.00400325795635581, 0.018566833809018135, 0.01205118652433157, -0.018484007567167282, -0.035642798990011215, 0.011540425941348076, 0.011733686551451683, 0.01315553393214941, 0.0007182569243013859, -0.0008843403775244951, -0.014591184444725513, -0.022570092231035233, 0.0073577119037508965, 0.0047832028940320015, -0.011989067308604717, 0.008751950226724148, -0.02821606583893299, -0.00500062108039856, 0.01461879350244999, -0.0031922529451549053, -0.005645974073559046, -0.030479976907372475, -0.03503540903329849, -0.011147002689540386, 0.007330103311687708, 0.022873787209391594, -0.02411617711186409, -0.02412998117506504, -0.034842148423194885, -0.021479548886418343, 0.011892437003552914, -0.007330103311687708, 0.0018359768437221646, -0.003092171624302864, 0.04820474609732628, 0.019615963101387024, 0.041081707924604416, 0.02330172061920166, 0.026117805391550064, 0.017503900453448296, -0.005359534174203873, -0.009083254262804985, -0.003765132976695895, -0.019408898428082466, -0.003768583992496133, 0.011975262314081192, 0.0038859208580106497, 0.004558882210403681, -0.015792161226272583, 0.029679324477910995, 0.002867851173505187, 0.020250963047146797, 0.009490481577813625, -0.005846136715263128, -0.023715851828455925, -0.03812757879495621, 0.005925511941313744, 0.011754393577575684, -0.0026280006859451532, -0.003502850653603673, -0.029403237625956535, 0.0043207574635744095, 0.03500780090689659, -0.009821785613894463, 0.03061801940202713, -0.00220351736061275, 0.038652144372463226, 0.010774285532534122, 0.003371709492057562, 0.008034124039113522, 0.02385389432311058, -0.027015088126063347, -0.012361784465610981, -0.04116453230381012, -0.021079223603010178, 0.013790532946586609, 0.009524992667138577, 0.020761722698807716, -0.0006479410803876817, -0.007095429580658674, 0.009400753304362297, 0.0064086634665727615, -0.026739001274108887, 0.0022863433696329594, 0.0008843403775244951, -0.024806393310427666, 0.006077359430491924, -0.025054872035980225, 3.693738835863769e-05, -0.005694289226084948, -0.010712165385484695, 0.010401568375527859, 0.002753965323790908, 0.026449110358953476, -0.031225411221385002, -0.011402382515370846, 0.02274954877793789, -0.01366629358381033, 0.030176281929016113, 0.03230214864015579, 0.027222152799367905, 0.017214009538292885, 0.010097872465848923, -0.029900195077061653, -0.025855524465441704, -0.0012113306438550353, -0.02385389432311058, 0.011954556219279766, 0.04834279045462608, -0.018249334767460823, -0.008669123984873295, 0.001403728500008583, -0.02682182751595974, -0.006349995266646147, -0.046189311891794205, 0.003765132976695895, 0.013265968300402164, 0.002522742608562112, -0.03470410406589508, -0.015350422821938992, -0.010939937084913254, 0.007633798755705357, -0.014025206677615643, 0.0027125522028654814, -0.007744233123958111, -0.01506053190678358, 0.01139548048377037, 0.020223354920744896, -0.009400753304362297, 0.012030480429530144, -0.009159177541732788, -0.01790422573685646, 0.017407270148396492, -0.00853798259049654, -0.013769826851785183, 0.0028109082486480474, 0.0057874685153365135, 0.036194972693920135, -0.016744662076234818, -0.0094697754830122, 0.016082052141427994, 0.013680098578333855, -0.017241617664694786, 0.0007031584391370416, -0.025593241676688194, 0.02898910827934742, -0.009248905815184116, -0.011450697667896748, 4.969022120349109e-05, 0.019367484375834465, 0.01626150868833065, -0.017200203612446785, -0.022694330662488937, -0.012154718860983849, -0.005400946829468012, -0.0006048025097697973, 0.004044670611619949, -0.009683742187917233, -0.02194889634847641, 0.003311315318569541, 0.002136221155524254, -0.026987479999661446, 0.022294005379080772, 0.0019498626934364438, 0.01655139960348606, -0.03821040689945221, 0.007902983576059341, 0.0029420494101941586, -0.01602683588862419, 0.004006708972156048, 0.003520105965435505, -0.021355310454964638, 0.009552601724863052, 0.019947268068790436, -0.016951726749539375, 0.0189395509660244, 0.03470410406589508, 0.004779751878231764, -0.03867975249886513, 0.01368700060993433, -0.014549771323800087, -0.0030093456152826548, 0.006384505890309811, -0.0009119490277953446, -0.015115749090909958, -0.031529106199741364, 0.018829116597771645, 0.004738338757306337, 0.0008588886121287942, -0.010594828985631466, 0.028823455795645714, 0.022307809442281723, 0.00047366131911985576, -0.012368686497211456, 0.012106403708457947, -0.0007743370370008051, -0.007067820522934198, 0.009766568429768085, 0.0005262903869152069, -0.008834775537252426, 0.01838737726211548, 0.013590370304882526, -0.0005534676602110267, -0.01029113307595253, -0.04654822498559952, -0.03034193255007267, -0.02200411446392536, 0.005242197308689356, -0.0003977374581154436, 0.016661835834383965, -0.009455971419811249, -0.009994340129196644, -0.019353680312633514, 0.020140528678894043, -0.03034193255007267, -0.002947225933894515, 0.02465454675257206, -0.012796620838344097, 0.008710537105798721, 0.033434104174375534, -0.011333361268043518, -0.03219171613454819, -0.015888791531324387, -0.016068248078227043, -0.04795626923441887, -0.005863392259925604, 0.008814069442451, 0.04444996640086174, -0.002552076941356063, -0.01873248629271984, -0.03713366761803627, -0.015129554085433483, -0.04848083108663559, -0.012120207771658897, -0.026200631633400917, 0.022915199398994446, 0.029900195077061653, 0.011319556273519993, -0.004638257436454296, 0.0311978030949831, 0.005145566537976265, -0.004358719568699598, -0.03180519491434097, 0.009324830025434494, -0.03191562741994858, -0.0352838858962059, 0.031032150611281395, -0.017973247915506363, -0.05441669747233391, 0.001996452221646905, -0.007309396751224995, -0.016137270256876945, 0.0038928231224417686, -0.004731436725705862, 0.015212379395961761, 0.01710357330739498, -0.0024243867956101894, -0.002457172144204378, 0.02252867817878723, 0.02308085188269615, 0.013935478404164314, -0.030783671885728836, 0.005124860443174839, 0.022846179082989693, -0.012161620892584324, -0.005155920051038265, 0.007088527083396912, 0.0074129290878772736, -0.02083074487745762, -0.003954942803829908, 0.001532281399704516, -0.01125743705779314, -0.0035321847535669804, 0.003316492075100541, 0.00644662557169795, 0.03166715055704117, 0.008027222007513046, 0.034842148423194885, -0.022335417568683624, -0.0010974447941407561, -0.007896080613136292, 0.005732250865548849, 0.014535967260599136, 0.020803136751055717, 0.02679421938955784, -0.012175425887107849, 0.0002545174793340266, -0.013521348126232624, 0.002900636289268732, 0.0007618268718943, -0.015805967152118683, -0.006843500304967165, -0.017724769189953804, -0.008199776522815228, -0.007143744733184576, 0.006622630637139082, -0.016109662130475044, 0.006453527603298426, -0.013762923888862133, -0.01678607426583767, 0.01194765418767929, -0.0033993180841207504, 0.006695103831589222, -0.0271255224943161, -0.029458455741405487, 0.003796192817389965, 0.004272442311048508, -0.03144628182053566, -0.003906627651304007, 0.02277715690433979, 0.026697589084506035, 0.00044432710274122655, 0.21998591721057892, 0.007226570509374142, 0.010056459344923496, 0.04367692396044731, 0.024751177057623863, -0.01519857533276081, 0.020375201478600502, 0.007578581105917692, -0.011029665358364582, 0.011402382515370846, -0.004293148871511221, -0.003433828940615058, -0.01787661761045456, 0.0024623486679047346, 0.022901395335793495, -0.015902597457170486, -0.030728455632925034, -0.009980536065995693, -0.022984221577644348, 0.008213580586016178, 0.002843693597242236, -0.006387956906110048, -0.020941179245710373, -0.010774285532534122, 0.027001284062862396, 0.011982164345681667, -0.0108571108430624, 0.0128725441172719, 0.018042268231511116, 0.012361784465610981, -0.009925318881869316, 0.0004689160850830376, 0.026435306295752525, -0.006567413453012705, -0.023094655945897102, -0.016689443960785866, 0.024806393310427666, -0.01475683692842722, -0.018511615693569183, 0.0284645427018404, 0.002652158262208104, -0.00975966639816761, 0.002676315838471055, -0.009400753304362297, 0.01421846728771925, 0.007695917971432209, -0.021741831675171852, 0.027291174978017807, -0.026186827570199966, 0.017559116706252098, -0.011643958278000355, 0.0018998219165951014, 0.007695917971432209, 0.030259108170866966, -0.0016064797528088093, 0.00022626171994488686, -0.0020068055018782616, -0.0016841291217133403, -0.025593241676688194, -0.017227813601493835, -0.019174223765730858, 0.011471404694020748, -0.011692273430526257, 0.005145566537976265, -0.035090625286102295, 0.013162435963749886, -0.01811129041016102, 0.02523432858288288, 0.003564970102161169, -0.011685371398925781, -0.0081100482493639, -0.009704449214041233, -0.0325782373547554, -0.007233472540974617, -0.01816650852560997, -0.010360155254602432, 0.00550102861598134, 0.02083074487745762, 0.019077593460679054, 0.020816940814256668, -0.005532088223844767, 0.005376789253205061, -0.026435306295752525, -0.012561947107315063, 0.012196131981909275, -0.02519291639328003, 0.037216491997241974, -0.016164878383278847, -0.008441352285444736, -0.023743459954857826, 0.006798636168241501, 0.02001628838479519, -0.004762496333569288, -0.019395094364881516, 0.007523363921791315, -0.014011402614414692, 0.009097058326005936, 0.01842878945171833, -0.0046313549391925335, -0.0270565003156662, -0.008199776522815228, 0.05389213189482689, 0.00459684431552887, 0.015502271242439747, -0.01685509644448757, 0.010125481523573399, -0.005397495813667774, 0.02976215071976185, 0.005746055394411087, 0.003247470362111926, 0.0062499139457941055, -0.033434104174375534, 0.011209121905267239, -0.0037237200886011124, 0.007709722500294447, 0.01042917650192976, 0.023646829649806023, -0.004082632716745138, 0.003382062539458275, -0.03337888792157173, 0.012278958223760128, 0.000610841903835535, 0.013811239041388035, 0.01595781370997429, -0.035642798990011215, -0.022901395335793495, -0.00039816886419430375, 0.02818845771253109, -0.037547796964645386, -0.028050413355231285, 0.031832803040742874, -0.011526621878147125, 0.016592813655734062, -0.018566833809018135, 0.0016332257073372602, 0.00623265840113163, 0.02464074268937111, 0.00328715774230659, -0.024585524573922157, -0.020485635846853256, -0.00024977221619337797, 0.013445424847304821, 0.01847020350396633, -0.0021690065041184425, 0.003138761268928647, -0.007792548276484013, 0.0013985519763082266, -0.0121685229241848, -0.00948357954621315, -0.0324954092502594, -0.003333747386932373, 0.01072597038000822, 0.009414558298885822, 0.0020292375702410936, 0.04141301289200783, -0.012354881502687931, -0.029430847615003586, -0.03470410406589508, 0.003948040306568146, 0.01532281469553709, -0.039728883653879166, -0.007226570509374142, 0.03387584537267685, 0.011064176447689533, -0.020126724615693092, 0.0004171498294454068, -0.1761433482170105, 0.010663850232958794, 0.00964232999831438, -0.0018566834041848779, 0.027774326503276825, 0.008586297743022442, 0.010401568375527859, 0.0043104044161736965, 0.0002985188039019704, -0.009186786599457264, 0.01506053190678358, -0.0031991552095860243, -0.010663850232958794, -0.01098135020583868, 0.013514446094632149, -0.0002361835795454681, -0.027263566851615906, 0.02740160934627056, 0.05386452376842499, 0.004324208479374647, 0.022031722590327263, -0.025110090151429176, -0.016468575224280357, 0.004883284214884043, 0.021051613613963127, 0.010346351191401482, -0.0008364565437659621, 0.02684943564236164, -0.009952927008271217, -0.03230214864015579, -0.008303308859467506, -0.014729227870702744, 0.019395094364881516, -0.002676315838471055, 0.027249762788414955, 0.0027487885672599077, 0.0001824760838644579, 0.0037099155597388744, -0.010953742079436779, 0.004572686739265919, 0.014839662238955498, 0.01978161558508873, 0.01786281168460846, 0.012175425887107849, 0.0035753233823925257, 0.02359161339700222, 0.01956074684858322, -0.005759859923273325, 0.012285860255360603, -0.014204663224518299, 0.02248726598918438, -0.01949172466993332, 0.013114120811223984, -0.003596029942855239, -0.0012130561517551541, -0.00739222252741456, 0.004531273618340492, 0.030203890055418015, -0.0028109082486480474, -0.01649618335068226, 0.010270426981151104, -0.005511381663382053, 0.02326030842959881, -0.002574509009718895, -0.004041219595819712, -0.022307809442281723, 0.010353253223001957, 0.008234287612140179, -0.004427741281688213, -0.0015935382107272744, -0.008607004769146442, 0.0029972668271511793, -0.000584096007514745, 0.012361784465610981, 0.01947792060673237, 0.01475683692842722, -0.039149101823568344, 0.007557874545454979, 0.04439475014805794, -0.008510373532772064, 0.009711351245641708, 0.0031042504124343395, -0.010042655281722546, 0.005991082172840834, -0.013065805658698082, 0.02197650447487831, -0.007067820522934198, 0.006073908414691687, -0.010332546196877956, 0.014853467233479023, 0.03362736478447914, -0.0068814619444310665, 0.002529644872993231, 0.018263138830661774, 0.02143813669681549, -0.0015849104383960366, 0.034013886004686356, -0.007937493734061718, 0.012334175407886505, -0.004324208479374647, 0.010719068348407745, 0.01708976924419403, -0.033737801015377045, 0.007820157334208488, 0.03550475463271141, 0.0203199852257967, 0.009373145177960396, 0.006387956906110048, 0.04193757846951485, -0.029099542647600174, -0.006063555367290974, 0.013756021857261658, 0.017241617664694786, 0.0012268604477867484, -0.004127496853470802, 0.03812757879495621, -0.005300865508615971, -0.0325230173766613, 0.00798580888658762, -0.015019118785858154, 0.027995195239782333, -0.02488921955227852, -0.02192128822207451, 0.011871729977428913, 0.005991082172840834, -0.0012674106983467937, -0.10452644526958466, -0.020927375182509422, 0.024074764922261238, 0.019395094364881516, -0.010988252237439156, 0.0217142216861248, 0.0013381579192355275, 0.05016496032476425, -0.035339102149009705, 0.03197084367275238, -0.019132811576128006, -0.024281829595565796, 0.005973827093839645, 0.005587305407971144, 0.005573501344770193, -0.0017496997024863958, -0.009428362362086773, -0.004303502384573221, -0.0061912452802062035, 0.03003823757171631, 0.002360541606321931, -0.009821785613894463, 0.02495824173092842, -0.022114548832178116, -0.0060877129435539246, -0.02932041324675083, -0.011464501731097698, -0.0002236733998870477, 0.0006017828127369285, 0.013383304700255394, 0.0298173688352108, -0.022583896294236183, 0.025896936655044556, -0.012665479443967342, -0.027484435588121414, -0.013576565310359001, -0.026380088180303574, -0.018884332850575447, 0.01684129238128662, -0.03555997461080551, -0.00751646189019084, 0.011071078479290009, -0.019988680258393288, -0.023149874061346054, -0.003428652184084058, -0.0030093456152826548, -0.008503471501171589, 0.03194323554635048, 0.02113443985581398, -0.004103339277207851, -0.012706892564892769, -0.018649660050868988, -0.008855482563376427, -0.02932041324675083, 0.020375201478600502, -0.007067820522934198, 0.028119435533881187, 0.010346351191401482, -0.015170966275036335, 0.01272069662809372, 0.007571679074317217, -0.009214394725859165, -0.008634612895548344, 0.0243370458483696, -0.0009136745939031243, 0.008765754289925098, 0.013583468273282051, -0.0006522549665533006, -0.008137657307088375, -0.004179263021796942, -0.012044284492731094, 0.01704835705459118, -0.023922916501760483, -0.0021465744357556105, -0.01178890373557806, -0.013645587489008904, -0.018000856041908264, -0.028657805174589157, 0.02523432858288288, 0.009124667383730412, -0.013769826851785183, -0.010739774443209171, 0.006888364441692829, -0.043511271476745605, 0.03409671410918236, -0.0006548432284034789, 0.005445810966193676, -0.011995969340205193, 0.026352480053901672, -0.03881779685616493, -0.001685854746028781, -0.004113692324608564, 0.0149086844176054, -0.025551827624440193, -5.510275968845235e-07, 0.02164520137012005, -0.02816084772348404, 0.008234287612140179, 0.02791237086057663, -0.007261081598699093, -0.018911942839622498, -0.008151461370289326, -0.04939191788434982, 0.012078795582056046, 0.0003254803887102753, 2.6894193069892935e-05, -0.00420687161386013, -0.0068711088970303535, -0.0023795226588845253, -0.009000428020954132, 0.0009309300221502781, 0.009442166425287724, -0.020941179245710373, 0.015612705610692501, -0.028298892080783844, -0.02597976289689541, -0.03202606365084648, -0.01816650852560997, -0.0031680953688919544, 0.01685509644448757, 0.014604988507926464, 0.00018711347365751863, -0.019298464059829712, 0.0013140003429725766, 0.0029834622982889414, 0.02000248432159424, -0.0022846178617328405, 0.012368686497211456, -0.03172236680984497, 0.03409671410918236, -0.014073521830141544, -0.01122292596846819, 0.011581839062273502, 0.0020309630781412125, -0.009014232084155083, 0.01657900959253311, -0.01729683391749859, -0.04041909798979759, 0.017421074211597443, -0.0018135447753593326, 0.02577269822359085, 0.010677655227482319, -0.03216410428285599, -0.012347979471087456, 0.025910740718245506, -0.004583039786666632, -0.011995969340205193, 0.0030352286994457245, -0.031860411167144775, -0.012044284492731094, 0.020485635846853256, 0.017434878274798393, 0.04552670568227768, 0.006891815457493067, -0.006488038692623377, -0.043732140213251114, -0.0019826479256153107, 0.0014839662471786141, 0.03216410428285599, 0.025317154824733734, 0.009421460330486298, -0.015861183404922485, 0.048618875443935394, 0.011920045129954815, 0.016882704570889473, -0.019698789343237877, 0.01434270665049553, -0.013921674340963364, -0.04933670163154602, -0.013376402668654919, 0.0008921052794903517, -0.03277149796485901, 0.009297220967710018, -0.020402811467647552, 0.02494443766772747, 0.035339102149009705, 0.010028851218521595, 0.004848773591220379, -0.0075854831375181675, -0.021479548886418343, -0.007337005343288183, 0.03569801524281502, 0.03440040722489357, -0.01841498538851738, -0.019353680312633514, 0.0034890463575720787, 0.01649618335068226, 0.011954556219279766, -0.016040639951825142, 0.015391835942864418, 0.00882787350565195, 0.0066536907106637955, 0.000705315382219851, -0.006926326081156731, -0.009766568429768085, 0.024060960859060287, 0.009807981550693512, 0.0379343181848526, -0.019326072186231613, 0.01421846728771925, 0.021479548886418343, 0.027967587113380432, 0.003564970102161169, 0.02680802345275879, -0.007057467475533485, 0.003137035761028528, -0.022294005379080772, 0.014936292544007301, -0.037299320101737976, -0.011209121905267239, 0.013894065283238888, 0.032909538596868515, -0.011678469367325306, -0.004265540279448032, -0.01111939363181591, 0.013003685511648655, -0.01042917650192976, -0.0028557723853737116, -0.024350851774215698, -0.010656948201358318, -0.023246504366397858, -0.0008843403775244951, -0.006905619520694017, 0.0046900236047804356, 0.0051076048985123634, -0.016316726803779602, 0.010712165385484695, 0.01623390056192875, 0.01489488035440445, -0.010477491654455662, 0.005293963477015495, -0.02795378305017948, 0.02631106786429882, 0.011602545157074928, 0.02361922152340412, -0.018649660050868988, -0.01434270665049553, -0.021741831675171852, -0.022031722590327263, 0.01974020153284073, -0.011692273430526257, 0.07780124247074127, 0.028547368943691254, -0.019367484375834465, 0.0072058639489114285, -0.012506729923188686, -0.014177054166793823, 0.023771068081259727, 0.0015711061423644423, -0.005563147831708193, -0.028078021481633186, 0.03089410625398159, -2.5236053261323832e-05, -0.022266395390033722, -0.0033958670683205128, -0.025910740718245506, -0.004617550875991583, -0.0003438142884988338, 0.009255807846784592, -0.019643571227788925, 0.03086649812757969, 0.02060987614095211, -0.008379233069717884, 0.02818845771253109, -0.014812054112553596, -0.03547714650630951, -0.02055465802550316, 0.039977360516786575, 0.016951726749539375, -0.004275893326848745, -0.02733258716762066, 0.00909015629440546, -0.007578581105917692, -0.020968789234757423, 0.002334658522158861, -0.010491296648979187, -0.014397923834621906, 0.0023501883260905743, -0.028326500207185745, 0.001472750212997198, 0.012016675435006618, -0.002653883770108223, 0.012009773403406143, -0.02408856898546219, -0.007875374518334866, 0.02549661137163639, -0.009097058326005936, 0.010532709769904613, -0.014687814749777317, 0.000663039565552026], "309a2f60-a846-4e49-afe6-37ff48499eee": [-0.013039281591773033, -0.005010849330574274, 0.006125140469521284, -0.029372990131378174, 0.003924242686480284, 0.015309390611946583, -0.019849607720971107, -0.03784437105059624, -0.022881032899022102, -0.06024092808365822, 0.0060386271215975285, -0.0007275767275132239, 0.015281706117093563, -0.019282080233097076, 0.012485597282648087, 0.014644968323409557, 0.020749345421791077, -0.005401889327913523, 0.016458285972476006, -0.018326973542571068, -0.018313132226467133, -0.0011134259402751923, -0.028224093839526176, -0.0026075104251503944, -0.01858997344970703, 6.488496001111344e-05, 0.03745679184794426, -0.01751028746366501, -0.003733913181349635, 0.014631126075983047, 0.01706734113395214, -0.01856228895485401, -0.022784138098359108, -0.011468200944364071, -0.010976805351674557, -0.006277403794229031, -8.61888547660783e-05, 0.009495697915554047, 0.018714552745223045, -0.005609521176666021, 0.015240179374814034, 0.0022199307568371296, -0.009890198707580566, 0.002379115205258131, 0.004270295612514019, 0.015946127474308014, 0.004235690459609032, -0.014838757924735546, -0.01439580973237753, -0.003536663018167019, -0.004851664882153273, 0.008976617828011513, -0.010983726009726524, 0.005519547499716282, -0.02454208768904209, -0.0021334176417440176, -0.006270482670515776, 0.008222222328186035, 0.001559834461659193, 0.012104938738048077, -0.0011982090072706342, 0.012478675693273544, -0.013066966086626053, 0.005813692696392536, -0.028002619743347168, -0.0348544716835022, -0.010969883762300014, 0.00018816639203578234, -0.014866442419588566, -0.011454358696937561, 0.002097081858664751, 0.0276980921626091, 0.0006203002412803471, -0.009426487609744072, 0.004657875280827284, -0.01565544307231903, -0.007890011183917522, -0.006457351613789797, -0.00029176604584790766, -0.021704452112317085, 0.018991395831108093, -0.001728535396978259, 0.010741489008069038, -0.009294986724853516, 0.024348298087716103, 0.056171342730522156, 0.0033273007720708847, -0.015973811969161034, 0.0024327535647898912, -0.0036024129949510098, 0.009357276372611523, 0.02008492313325405, 0.026715300977230072, 0.030563412234187126, -0.004761691205203533, 0.00963411945849657, 0.013627571985125542, -0.011426674202084541, -0.0017120979027822614, -0.004090347792953253, -0.031975310295820236, 0.0027303590904921293, 0.003522820770740509, -0.010326225310564041, -0.03394089266657829, -0.007280957885086536, 0.015392443165183067, -0.007370931562036276, 0.0025815563276410103, 0.021427609026432037, -0.013343808241188526, 0.02264571748673916, -0.0034778339322656393, -0.013080808334052563, -0.02245192788541317, -0.00016123913519550115, 0.022825663909316063, -0.022548822686076164, 0.007177141960710287, -0.02117845229804516, 0.014105125330388546, 0.013295360840857029, 0.04166479781270027, -0.027684250846505165, 0.01052001491189003, -0.005775626748800278, -0.01579386554658413, -0.013447624631226063, 0.02008492313325405, -0.004747848957777023, 0.04172016680240631, 0.02220276929438114, 0.004218387417495251, 0.008215301670134068, -0.032307520508766174, 0.013253835029900074, -0.026383090764284134, 0.01593228615820408, -0.003650860395282507, -0.031117096543312073, 0.010644594207406044, 0.027628881856799126, 0.004197624512016773, -0.021538347005844116, 0.018603816628456116, 0.02690909057855606, -0.013316124677658081, 0.02767040766775608, 0.016873549669981003, -0.02699214406311512, 0.0022285820450633764, -0.012561728246510029, -0.008755143731832504, 0.0225626640021801, 0.020347924903035164, 0.004924335982650518, 0.001934436964802444, 0.0300374124199152, -0.019891133531928062, -0.01201496459543705, -0.010243172757327557, 0.017634866759181023, -0.018437711521983147, -0.02400224469602108, -0.004059202969074249, 0.02775346115231514, 0.0065957726910710335, -0.03263973072171211, -0.014617283828556538, -0.01584923267364502, 0.003882716177031398, 0.029372990131378174, -0.026521511375904083, 0.02721361815929413, 0.024805087596178055, 0.008644407615065575, 0.012547885999083519, -0.009128881618380547, -0.00748166861012578, -0.022604189813137054, 0.025857089087367058, -0.0032442479860037565, 0.0024327535647898912, 0.015350916422903538, -0.026244670152664185, -0.00887280236929655, 0.02783651277422905, 0.008948934264481068, 0.0028289842884987593, -0.00796614307910204, 0.012644781731069088, -0.0019725027959793806, -0.022659558802843094, 0.003451880067586899, -0.6236708164215088, -0.0024587074294686317, 0.018977554515004158, -0.012997755780816078, -0.010097830556333065, 0.018520763143897057, 0.011731200851500034, -0.0021489898208528757, -0.004256453365087509, 0.025026561692357063, 0.0055437711998820305, 0.006592311896383762, 0.0023272072430700064, -0.016070706769824028, -0.021704452112317085, -0.03715226426720619, 0.017607184126973152, -0.005862140096724033, -0.0013876730808988214, 6.147850217530504e-05, -0.028957726433873177, 0.028113355860114098, -0.0062843249179422855, -0.014769547618925571, 0.005322297103703022, -0.015184811316430569, 0.017607184126973152, -0.01057538390159607, -0.01856228895485401, 0.02050018683075905, -0.03175383433699608, 0.01737186685204506, 0.033913206309080124, -0.006869154516607523, 0.0433812215924263, -0.0073363264091312885, -0.015087916515767574, 0.017524130642414093, 0.013682940974831581, 0.031117096543312073, -0.03000972792506218, 0.0046751778572797775, 0.02625851146876812, 0.03250131011009216, -0.00434988783672452, 0.0018669565906748176, -0.0068414704874157906, 0.01802244782447815, -0.014741863124072552, -0.0005138888955116272, 0.003008931875228882, -0.015918444842100143, 0.0019327066838741302, 0.009170408360660076, 0.0016065516974776983, -0.008824354968965054, 0.030258886516094208, 0.009121960029006004, 0.006934904493391514, 0.015101758763194084, 0.0018098579021170735, 0.0065957726910710335, -0.017482604831457138, -0.054787132889032364, -0.033691734075546265, 0.016458285972476006, -0.02177366241812706, -0.005927890073508024, 0.013205387629568577, 0.002422371879220009, 0.007253273390233517, -0.00044424569932743907, -0.014312757179141045, 0.006976431235671043, -0.01272091269493103, 0.033691734075546265, 0.035435840487480164, -0.02169061079621315, -0.0029847081750631332, 0.01243714988231659, 0.004381032660603523, -0.008471380919218063, 0.016485970467329025, -0.023586980998516083, 0.026659933850169182, 0.0023462402168661356, -0.0313662551343441, -0.008983539417386055, -0.008436774834990501, -0.009481855668127537, 0.021953610703349113, -0.00017129629850387573, -0.002484661526978016, -0.02369771897792816, 0.0392562672495842, 0.03568499907851219, 0.002894734498113394, 0.003252899507060647, 0.0006051604286767542, -0.02527572028338909, -0.03424541652202606, -0.02639693208038807, 0.014755705371499062, 0.010423120111227036, 0.025178825482726097, 0.010976805351674557, -0.020444819703698158, -0.011696595698595047, 0.01259633433073759, -0.005529928952455521, 0.0012033997336402535, -0.019254395738244057, -0.03183688968420029, -0.00601440342143178, -0.003365366719663143, -0.027878040447831154, 0.008942012675106525, -0.0019932659342885017, -0.015115601010620594, -0.01782865636050701, -0.015530864708125591, 0.009682566858828068, -0.0009403993608430028, 0.0031490835826843977, -0.010250093415379524, 0.026355406269431114, 0.007606247905641794, 0.014354283921420574, 0.011765806004405022, -0.006896839011460543, 0.012983913533389568, 0.00815301202237606, 0.0038446502294391394, -0.014561915770173073, 0.03765058144927025, -0.0023894968908280134, 0.012824729084968567, -0.0020451738964766264, 0.024099139496684074, -0.03421773388981819, 0.01052001491189003, -0.015461653470993042, 0.0011454358464106917, -0.01892218552529812, 0.006398522295057774, -0.02411298267543316, -0.018714552745223045, 0.01715039275586605, 0.0029051159508526325, -0.015046389773488045, -0.02868088334798813, -0.012679386883974075, -0.009592592716217041, 0.03288888931274414, -0.012617097236216068, -0.0004849069518968463, 0.005488402675837278, -0.042965956032276154, -0.007931537926197052, -0.020887766033411026, -0.01345454528927803, 0.003078142646700144, -0.0015511831734329462, 0.009018144570291042, -0.0036889263428747654, -0.0027926487382501364, -0.04058511182665825, 0.013094650581479073, -0.00653694337233901, -0.018991395831108093, -0.006592311896383762, -0.02267340011894703, 0.019157500937581062, 0.02196745201945305, -0.019808081910014153, 0.0039277030155062675, -0.004083427134901285, 0.00831911712884903, -0.006661522667855024, 0.001610012142919004, 0.027490461245179176, 0.030978675931692123, -0.005041994154453278, -0.0012890478828921914, 0.02987130545079708, 0.018631501123309135, 0.018396183848381042, 0.02005723863840103, -0.02465282566845417, 0.0007180602406151593, 0.0013522026129066944, 0.017219603061676025, -0.022936401888728142, -0.0018358118832111359, -0.01677665486931801, -0.018147025257349014, -0.027988776564598083, -0.025746352970600128, -0.006523101590573788, 0.03208604454994202, 0.009149644523859024, 0.004706322681158781, -0.012873176485300064, 0.007218668237328529, 0.01604302227497101, -0.026300037279725075, 0.010997568257153034, -0.003188879694789648, 0.009661803022027016, -0.0011030443711206317, -0.012160306796431541, -0.008651328273117542, -0.0027130565140396357, -0.03770595043897629, -0.0009689487633295357, 0.005737560801208019, -0.009765619412064552, 0.0254971943795681, -0.004509072285145521, 0.004851664882153273, 0.0069695101119577885, 0.029096147045493126, 0.021136924624443054, 0.007370931562036276, -0.00653694337233901, 0.01630602404475212, -0.0004009890544693917, 0.008450617082417011, 0.025109615176916122, -0.023448560386896133, -0.011786569841206074, 0.01818855293095112, 0.009744856506586075, -0.008374486118555069, 0.025898616760969162, 0.00851982831954956, 0.0507175475358963, -0.02149682119488716, 0.023877665400505066, -0.007543958257883787, 0.008948934264481068, -0.004792836029082537, 0.030369622632861137, -0.03183688968420029, 0.019877292215824127, 0.01012551411986351, 0.013828283175826073, -0.0012509820517152548, -0.02840404026210308, 0.02636924758553505, 0.007744668982923031, 0.011585858650505543, -0.009156566113233566, -0.02008492313325405, 0.03502057492733002, -0.00282379356212914, -0.002766694873571396, 0.009281144477427006, 0.02112308330833912, 0.016915077343583107, -0.009336513467133045, 0.019849607720971107, 0.007190984208136797, -0.010609989054501057, 0.01875608041882515, -0.007523194886744022, -0.004135334864258766, -0.032307520508766174, -0.00017973134526982903, -0.013502992689609528, -0.003000280587002635, -0.022465769201517105, -0.005356902256608009, -0.005066217854619026, -0.014741863124072552, 0.007190984208136797, -0.006637298967689276, 0.007696221582591534, 0.0142850736156106, 0.02481893077492714, -0.017759446054697037, -0.029511410742998123, 0.019697343930602074, 0.002533108927309513, -0.0027217078022658825, 0.0010000935290008783, -0.008104564622044563, -0.02397456020116806, 0.012575570493936539, 0.012686307542026043, -0.0017977460520341992, -0.0037027685903012753, -0.016402918845415115, 0.0061597456224262714, -0.003273662645369768, 0.018769921734929085, 0.04664796218276024, -0.015406285412609577, -0.017247287556529045, 0.011717358604073524, 0.014091283082962036, -0.0017562196590006351, -0.0057271793484687805, -0.028874672949314117, 0.030369622632861137, -0.008575196377933025, -0.012575570493936539, -0.010201646015048027, 0.02193976752460003, -0.02620314247906208, 0.011814253404736519, -0.009807145223021507, -0.01886681653559208, -0.01200112234801054, -0.02628619596362114, -0.01074841059744358, -0.006640759762376547, -0.019199026748538017, 0.031144781038165092, 0.0010450804838910699, -0.012866254895925522, -0.015433969907462597, -0.004889730829745531, 0.01935129053890705, 0.063286192715168, 0.004875888582319021, -0.008416011929512024, 0.022825663909316063, -0.017496446147561073, 0.0006938365404494107, -0.020860083401203156, -0.022327348589897156, 0.03158773109316826, -0.015918444842100143, -0.007370931562036276, 0.010990647599101067, 0.015392443165183067, -0.013939020223915577, 0.014548073522746563, -0.0014378507621586323, 0.01579386554658413, -0.004235690459609032, -0.02620314247906208, 0.01422970462590456, -0.013108492828905582, 0.0013193275080993772, 0.03471605107188225, 0.02242424339056015, 0.039560794830322266, 0.03017583303153515, 0.029511410742998123, -0.00674803601577878, 0.001974233193323016, -0.029206883162260056, -0.007094088941812515, 0.00415263744071126, -0.010789936408400536, 0.010374672710895538, -0.008824354968965054, 0.033442575484514236, 0.007225589361041784, -0.03186457231640816, -0.025026561692357063, -0.003071221522986889, -0.013066966086626053, 0.009744856506586075, 0.0054122707806527615, -0.010042461566627026, 0.01641676016151905, -0.02451440319418907, 0.004609427880495787, 0.042855218052864075, -0.006820707116276026, -0.007696221582591534, 0.0037927422672510147, 0.008263749070465565, -0.0017475682543590665, 0.021842872723937035, -0.010686120949685574, -0.004266835283488035, -0.012990834191441536, -0.009225776419043541, -0.017274972051382065, -0.030646465718746185, -0.04315974563360214, -0.02533108927309513, -0.0034207352437078953, -0.012956229038536549, -0.03895173966884613, -0.023365506902337074, -0.004384492989629507, 0.0059624952264130116, -0.022894874215126038, 0.0043083615601062775, -0.00319060985930264, -0.029594464227557182, -0.029511410742998123, 0.011682753451168537, 0.022105874493718147, 0.010859147645533085, 0.0031092874705791473, -0.0015520482556894422, -0.008312196470797062, 0.010346988216042519, -0.0018444631714373827, -0.03474373370409012, 0.007910774089396, -0.012153386138379574, -0.0005407080170698464, -0.023517770692706108, -0.026646090671420097, -0.0016221239930018783, -0.02101234532892704, 0.00537420529872179, 0.009495697915554047, -0.030314253643155098, -0.008907407522201538, -0.005540310405194759, 0.013682940974831581, 0.03471605107188225, 0.012008043937385082, 0.017621025443077087, 0.02704751305282116, -0.044184062629938126, 0.012077254243195057, -0.009218855760991573, -0.0003233433817513287, -0.023310137912631035, 0.0031040965113788843, -0.0011549523333087564, -0.0054226526990532875, -0.011883464641869068, -0.003619715804234147, -0.04003142565488815, -0.009904040955007076, -0.012271043844521046, -0.007723905611783266, -0.01805013045668602, -0.00500738900154829, -0.0030037411488592625, 0.016056865453720093, 0.02307482250034809, 0.0023739244788885117, -0.03258436173200607, 0.009378040209412575, -0.024279087781906128, 0.038231950253248215, -0.003536663018167019, -0.0009620276978239417, 0.016430603340268135, 0.011731200851500034, -0.021247662603855133, -0.02693677507340908, 0.019129816442728043, -0.005363823380321264, 0.011980359442532063, -0.006149364169687033, -0.008201459422707558, -0.006810325663536787, -0.03330415487289429, -0.00618396932259202, 0.0021905163303017616, -0.00296221487224102, -0.00061424431623891, -0.03178152069449425, 0.004086887463927269, 0.020126450806856155, -0.0023670033551752567, -0.008173774927854538, -0.030729517340660095, -0.028957726433873177, -0.008222222328186035, 0.0030504583846777678, 0.030314253643155098, -0.026161616668105125, -0.00871361792087555, -0.030867939814925194, -0.015918444842100143, 0.0031854191329330206, -0.0059797982685267925, 0.007765432354062796, 0.009412645362317562, 0.05719565972685814, 0.024292929098010063, 0.03396857529878616, 0.012755518779158592, 0.025760194286704063, 0.010907595045864582, -0.011800412088632584, -0.01015319861471653, -0.0024016087409108877, -0.020832398906350136, -0.008146090433001518, 0.013952862471342087, 0.00040855896077118814, 0.0014551534550264478, -0.017108866944909096, 0.025081930682063103, 0.006789562292397022, 0.00902506522834301, 0.008499064482748508, -0.009378040209412575, -0.02978825382888317, -0.04208005964756012, -0.0019863450434058905, 0.011461279354989529, -0.0016039562178775668, 0.0022701085545122623, -0.020126450806856155, -0.00016361824236810207, 0.029539095237851143, -0.004426019731909037, 0.02468050830066204, 0.002244154457002878, 0.045872803777456284, 0.003062570234760642, 0.00347264320589602, -0.012084174901247025, 0.012610175646841526, -0.026050878688693047, -0.02038945071399212, -0.03873026743531227, -0.01236793864518404, -0.003592031542211771, 0.013011598028242588, 0.02978825382888317, -0.004211466759443283, 0.01052001491189003, 3.263172766310163e-05, 0.011274411343038082, -0.03623868525028229, -0.01658286526799202, 0.0031525439117103815, -0.03125551715493202, 0.01494949497282505, -0.02465282566845417, -0.0017250748351216316, -0.005325757432729006, -0.011627385392785072, 0.012983913533389568, -0.001475916593335569, 0.02231350541114807, -0.03421773388981819, -0.01875608041882515, 0.017468761652708054, -0.024611297994852066, 0.020721660926938057, 0.0300374124199152, 0.030840255320072174, 0.005567994900047779, 0.013551440089941025, -0.03266741707921028, -0.008367564529180527, 0.0002893869241233915, -0.020403292030096054, 0.008201459422707558, 0.036986157298088074, -0.02084624022245407, -0.0014629395445808768, 0.013004676438868046, -0.014728020876646042, 0.003955387044698, -0.03189225494861603, 0.008499064482748508, 0.016056865453720093, 0.0049797045066952705, -0.03468836471438408, -0.022064346820116043, -0.025137299671769142, 0.014644968323409557, 0.00022861134493723512, -0.006782641168683767, 0.007315563037991524, -0.00813916977494955, 0.008236064575612545, 0.029428357258439064, 0.002605780027806759, 0.005529928952455521, 0.0033982417080551386, -0.004720164462924004, 0.01167583279311657, -0.006256640423089266, 0.007301720790565014, -0.0055887578055262566, 0.0019707726314663887, 0.04080658406019211, -0.022050505504012108, -0.0015693509485572577, 0.006419285666197538, 0.005526468623429537, -0.012416386045515537, 0.006408903747797012, -0.027476618066430092, 0.030369622632861137, -0.006318930070847273, -0.02264571748673916, 0.008748223073780537, 0.024375982582569122, 0.013772914186120033, -0.009959409013390541, -0.020181817933917046, -0.009689487516880035, 0.0020503648556768894, 0.010083988308906555, 0.003713150043040514, -0.015060232020914555, -0.023711560294032097, -0.004862046334892511, -0.0017709268722683191, -0.024971194565296173, 0.013253835029900074, -0.0017752525163814425, 0.01638907566666603, -0.04039132222533226, 0.007869248278439045, 0.0005761784850619733, -0.01277628168463707, 0.014769547618925571, -0.0044813877902925014, -0.018769921734929085, 3.4902703191619366e-05, 0.018493078649044037, -0.018991395831108093, 0.01926823891699314, 0.035518892109394073, 0.007703142706304789, -0.03767826408147812, 0.015863075852394104, -0.020652450621128082, -0.010845305398106575, 0.002097081858664751, 0.001934436964802444, -0.016721287742257118, -0.04152637720108032, 0.02239655889570713, 0.0038515713531523943, 0.007917695678770542, -0.012949308380484581, 0.025344930589199066, 0.01780097372829914, 0.0021351478062570095, -0.006934904493391514, 0.0026767209637910128, 0.01935129053890705, -0.002097081858664751, 0.010063225403428078, 0.011793490499258041, 0.0011895576026290655, 0.01420202013105154, 0.01035390980541706, -0.0020019174553453922, -0.011412831954658031, -0.027421249076724052, -0.021676767617464066, -0.015821548178792, 0.016859708353877068, 0.005640666000545025, -0.00039644711068831384, -0.005394968204200268, -0.016098391264677048, -0.01853460632264614, 0.025953983888030052, -0.03784437105059624, 0.0052842311561107635, 0.029262252151966095, -0.022631874307990074, 0.0033290311694145203, 0.03324878588318825, -0.01312925573438406, -0.032030679285526276, -0.014077440835535526, -0.025372615084052086, -0.0477830171585083, -0.008159932680428028, 0.011814253404736519, 0.039754584431648254, 0.0022701085545122623, -0.016195286065340042, -0.03139394149184227, -0.013288440182805061, -0.04673101380467415, -0.012084174901247025, -0.03327646851539612, 0.02533108927309513, 0.027241302654147148, 0.012990834191441536, -0.001566755585372448, 0.015074074268341064, -0.008602880872786045, 0.0009239618666470051, -0.04811522737145424, -0.008312196470797062, -0.021219978109002113, -0.020430976524949074, 0.04299364238977432, -0.020126450806856155, -0.045706696808338165, 0.0037581368815153837, -0.0028393659740686417, -0.009260381571948528, -3.886338788561261e-07, -0.009544145315885544, 0.011419753544032574, 0.002674990799278021, 0.0025798261631280184, 0.01259633433073759, 0.03128320351243019, 0.029705200344324112, 0.016832023859024048, -0.020666291937232018, 0.00793845858424902, 0.01420202013105154, -0.009481855668127537, -0.0027424709405750036, 0.01056154165416956, 0.015350916422903538, -0.016458285972476006, -0.00867209117859602, 0.007841563783586025, -0.015835391357541084, 0.0005913182976655662, 0.0059175086207687855, -0.0036335578188300133, 0.028071830049157143, -0.0031733072828501463, 0.0319199413061142, -0.030480358749628067, 0.004277216736227274, -0.0018479237332940102, 0.012949308380484581, 0.007412457838654518, 0.01663823425769806, 0.033719416707754135, -0.00941956602036953, -0.0033861298579722643, -0.003245978383347392, 0.011551253497600555, 0.0015139824245125055, -0.019586607813835144, -0.008568275719881058, -0.011288252659142017, -0.013586046174168587, -0.00712869456037879, 0.0059694163501262665, -0.00618396932259202, 0.018230078741908073, -0.004218387417495251, -0.003989992663264275, 0.016818182542920113, 0.00249677337706089, 0.017925551161170006, -0.01584923267364502, -0.026133932173252106, 0.008768985979259014, 0.007094088941812515, -0.03421773388981819, -0.0020572857465595007, 0.02383613958954811, 0.009793303906917572, 0.009218855760991573, 0.2119506150484085, 0.0017492985352873802, 0.008111485280096531, 0.04448859021067619, 0.026383090764284134, -0.014035915024578571, 0.017925551161170006, 0.013994388282299042, -0.012838571332395077, 0.010658436454832554, 0.006024784874171019, -0.0025002339389175177, -0.016139917075634003, -0.0008621048764325678, 0.016056865453720093, -0.01932360604405403, -0.03731837123632431, -0.00797998532652855, -0.020292555913329124, 0.0025573326274752617, 0.0020365226082503796, -0.015170969069004059, -0.009537224657833576, -0.0018323513213545084, 0.03468836471438408, 0.0048655071295797825, -0.007758511230349541, 0.005495323799550533, 0.015198653563857079, 0.018520763143897057, -0.0009369388571940362, -0.0010744949104264379, 0.014631126075983047, -0.0034830246586352587, -0.014769547618925571, -0.008623643778264523, 0.022521138191223145, -0.01565544307231903, -0.016915077343583107, 0.03557426109910011, -0.007682379335165024, -0.016901234164834023, -0.008021511137485504, -0.01422970462590456, 0.016056865453720093, 0.005952113773673773, -0.01818855293095112, 0.022244295105338097, -0.027379723265767097, 0.014561915770173073, -0.0057271793484687805, 0.011835017241537571, 0.018576132133603096, 0.013682940974831581, -0.0039346241392195225, 0.009121960029006004, -0.009876356460154057, -0.007049102336168289, -0.02250729501247406, -0.016347549855709076, -0.019448185339570045, 0.005858679302036762, -0.011447437107563019, 0.013544519431889057, -0.03554657846689224, 0.008443696424365044, -0.014451178722083569, 0.024126823991537094, 0.0008763795485720038, -0.005561073776334524, 0.004955480806529522, 0.00015842744323890656, -0.032141413539648056, 0.012077254243195057, -0.024445192888379097, -0.0043602692894637585, 0.004962401930242777, 0.025400299578905106, 0.02104002982378006, 0.01584923267364502, -0.007959222421050072, -0.0005463314009830356, -0.021247662603855133, -0.02422371879220009, 0.020970819517970085, -0.024694351479411125, 0.029068462550640106, -0.011052937246859074, -0.005363823380321264, -0.02789188176393509, -0.00451945373788476, 0.011565095745027065, -0.011994201689958572, -0.013392255641520023, 0.004903572611510754, -0.011405911296606064, 0.01200112234801054, 0.029456041753292084, -0.006737654563039541, -0.02223045378923416, -0.011814253404736519, 0.050496071577072144, 0.004214927088469267, 0.033857837319374084, -0.017053497955203056, 0.01728881523013115, 0.004432940389961004, 0.03277815133333206, -0.004474467132240534, 0.0020918911322951317, -0.003245978383347392, -0.028763936832547188, 0.007806958630681038, 0.005938271526247263, -0.004163019359111786, 0.019337449222803116, 0.01273475494235754, -0.007280957885086536, 0.011821174994111061, -0.03020351752638817, 0.022604189813137054, 0.00944725051522255, 0.016153760254383087, 0.011336700059473515, -0.035242050886154175, -0.035380471497774124, -0.002773615764454007, 0.022770296782255173, -0.03917321562767029, -0.03175383433699608, 0.027241302654147148, -0.021164609119296074, 0.02234118990600109, -0.014298914931714535, -0.008007669821381569, -0.006024784874171019, 0.028279460966587067, 0.00254176021553576, -0.016167601570487022, -0.02313019149005413, 0.002986438572406769, 0.012319491244852543, 0.020887766033411026, -6.050522642908618e-05, -0.0027926487382501364, -0.010319304652512074, 0.004173400811851025, 0.0006825897726230323, -0.008402169682085514, -0.025649458169937134, 0.013336887583136559, 0.0009014683892019093, 0.0029881687369197607, -0.007993827573955059, 0.04894575476646423, -0.0048032174818217754, -0.03582341969013214, -0.023905349895358086, 0.002223391318693757, 0.018063973635435104, -0.029179200530052185, -0.0009637579787522554, 0.035242050886154175, 0.004034979268908501, -0.026133932173252106, -0.007474747486412525, -0.17740067839622498, 0.02185671590268612, 0.011059857904911041, -0.00473054638132453, 0.017953235656023026, 0.013295360840857029, 0.007890011183917522, 0.001842732890509069, -0.0020728581584990025, -0.0010606528958305717, 0.017648709937930107, -0.006087074521929026, -0.008187617175281048, -0.006332772318273783, 0.014409651979804039, -0.0003968796809203923, -0.015087916515767574, 0.02772577665746212, 0.0653901994228363, -0.00046630657743662596, 0.0177456047385931, -0.023033296689391136, -0.008512906730175018, 0.0009516461286693811, 0.020444819703698158, 0.005886363796889782, 0.0019257856765761971, 0.027241302654147148, -0.00299335946328938, -0.025995511561632156, -0.013945940881967545, -0.008768985979259014, 0.02234118990600109, -5.2367569878697395e-05, 0.01163430605083704, 0.008028432726860046, -0.0008850308950059116, -0.003965768963098526, -0.007474747486412525, 0.011890385299921036, 0.013502992689609528, 0.0030383465345948935, 0.01818855293095112, -0.0034847550559788942, -0.004194163717329502, 0.016707444563508034, 0.015323232859373093, -0.007280957885086536, 0.013378414325416088, -0.010976805351674557, 0.021482978016138077, -0.013433782383799553, 0.0030764122493565083, -0.003972690086811781, 0.01389057282358408, -0.0005208099610172212, 0.0020278713200241327, 0.019918818026781082, -0.006668443791568279, -0.018410027027130127, 0.010796857997775078, -0.005073138978332281, 0.014049757272005081, 0.0024638983886688948, 0.006609614938497543, -0.03419004753232002, 0.0034882156178355217, -0.0008884913986548781, 0.006741114892065525, -0.007620089687407017, -0.0014465020503848791, -0.016541339457035065, 0.005758324172347784, 0.009571829810738564, 0.029289936646819115, 0.011558174155652523, -0.03621099889278412, 0.003692386904731393, 0.0357680507004261, -0.0024535167030990124, 0.015074074268341064, 0.0019032922573387623, -0.006699588615447283, 0.007820800878107548, -0.012534044682979584, 0.018063973635435104, -0.011869622394442558, 0.011059857904911041, -0.01661054976284504, 0.013731388375163078, 0.024445192888379097, -0.014824915677309036, -0.007225589361041784, 0.0017873643664643168, 0.025248035788536072, -0.005211560055613518, 0.024583613499999046, -0.009502618573606014, 0.0008573466329835355, -0.011599700897932053, 0.0031802281737327576, 0.013246913440525532, -0.03571268171072006, 0.008817433379590511, 0.03427310287952423, 0.029539095237851143, 0.011572016403079033, 0.016513654962182045, 0.03294425830245018, -0.01666591875255108, -0.010907595045864582, 0.012589412741363049, 0.02682603895664215, 0.01726113073527813, -0.007523194886744022, 0.03280583769083023, -0.00890048686414957, -0.023905349895358086, 0.0004035844758618623, -0.02321324311196804, 0.04183090105652809, -0.031034044921398163, -0.026618406176567078, 0.011565095745027065, 0.0014715909492224455, -0.006568088196218014, -0.1022656187415123, -0.022825663909316063, 0.01573849655687809, 0.01720576174557209, -0.00712869456037879, 0.008069958537817001, 0.0019725027959793806, 0.04224616661667824, -0.03269509971141815, 0.028168724849820137, -0.023766929283738136, -0.020721660926938057, 0.008948934264481068, 0.0017198841087520123, 0.0018444631714373827, -0.0025019641034305096, -0.006329311523586512, -0.002605780027806759, -0.006512719672173262, 0.03712457790970802, 0.00868593342602253, -0.016887392848730087, 0.019102131947875023, -0.011738122440874577, -0.002697484102100134, -0.03158773109316826, -0.018686868250370026, 0.008582117967307568, 0.007557800505310297, 0.01712270826101303, 0.012554807588458061, -0.013586046174168587, 0.03241825848817825, -0.01666591875255108, -0.024389823898673058, -0.021386083215475082, -0.019420500844717026, -0.025178825482726097, 0.011170594953000546, -0.02272876910865307, -0.019835764542222023, 0.0015416666865348816, -0.01644444465637207, -0.03634941950440407, 0.002003647619858384, 0.007723905611783266, -0.014838757924735546, 0.03432847186923027, 0.017897868528962135, -0.017704078927636147, -0.0016420220490545034, -0.013966704718768597, -0.008554433472454548, -0.03407931327819824, 0.0210953988134861, -0.0043706512078642845, 0.030508043244481087, 0.011703516356647015, -0.00815301202237606, 0.0029206883627921343, 0.007398616056889296, -0.0050489152781665325, -0.004007295239716768, 0.026383090764284134, 0.007024878636002541, 0.015364758670330048, 0.02270108461380005, -0.006356996018439531, -0.01110138464719057, -0.005983258597552776, 0.002957023913040757, 0.018396183848381042, -0.022936401888728142, -0.00231336522847414, -0.004778993781656027, -0.009274223819375038, -0.028930041939020157, -0.01957276463508606, 0.01352375652641058, 0.010672278702259064, -0.013281519524753094, -0.012741676531732082, 0.007523194886744022, -0.027684250846505165, 0.023116348311305046, -0.002986438572406769, 0.017662551254034042, -0.006959128193557262, 0.0325566790997982, -0.03302730992436409, 0.015558548271656036, 0.004190703388303518, 0.017980920150876045, -0.020860083401203156, -0.01016704086214304, 0.022797979414463043, -0.009177329018712044, -0.0009205013047903776, 0.02470819279551506, -0.010443883016705513, -0.017537971958518028, -0.010893752798438072, -0.0595211386680603, 0.017731761559844017, 0.0017977460520341992, 0.0010416199220344424, -0.006408903747797012, -0.011059857904911041, -0.0029552937485277653, -0.007654695305973291, 0.0003501625033095479, 0.0019309764029458165, -0.019988028332591057, 0.0014093014178797603, -0.027296671643853188, -0.012125701643526554, -0.02783651277422905, -0.012181069701910019, -0.002278759842738509, 0.0013850776012986898, 0.01590460166335106, 0.00939188152551651, -0.004367190413177013, -0.0010909325210377574, 0.0003819561388809234, 0.02984362095594406, -0.006491956766694784, 0.016513654962182045, -0.023960718885064125, 0.01875608041882515, -0.009246539324522018, -0.01352375652641058, 0.011807332746684551, 0.007488589733839035, 0.0019638515077531338, 0.029594464227557182, -0.022825663909316063, -0.038121212273836136, 0.00903890747576952, -0.003140432061627507, 0.027172092348337173, 0.012181069701910019, -0.02250729501247406, -0.011142910458147526, 0.02473587729036808, -0.0030677609611302614, -0.016264496371150017, -0.004010755568742752, -0.03302730992436409, -0.016153760254383087, 0.020541714504361153, 0.023503929376602173, 0.04094500467181206, 0.005806771572679281, -0.014312757179141045, -0.04385185241699219, 0.003220024285838008, -0.004785914905369282, 0.01965581811964512, 0.03009277954697609, 0.005125046707689762, -0.009398803114891052, 0.05558997392654419, 0.013350729830563068, 0.018382342532277107, -0.01818855293095112, 0.0177456047385931, -0.014852600172162056, -0.04518069699406624, 0.004093808587640524, -0.003514169482514262, -0.03646015748381615, 0.01649981364607811, -0.02106771431863308, 0.0300374124199152, 0.04052974283695221, 0.016056865453720093, 0.007523194886744022, 0.0016056864988058805, -0.021704452112317085, -0.021732136607170105, 0.043049007654190063, 0.029511410742998123, -0.015226338058710098, -0.026867564767599106, 0.00028181701782159507, 0.01641676016151905, 0.004069584887474775, -0.01644444465637207, 0.005903666373342276, 0.018396183848381042, 0.014686495065689087, -0.00027922162553295493, -0.004017676692456007, -0.013565282337367535, 0.012637860141694546, 0.01647212915122509, 0.02834867313504219, -0.016818182542920113, 0.008416011929512024, 0.02755967155098915, 0.028071830049157143, 0.008083800785243511, 0.025649458169937134, -0.0024102600291371346, 0.00319060985930264, -0.014589600265026093, 0.015087916515767574, -0.03776131570339203, -0.0159599706530571, 0.02628619596362114, 0.029345305636525154, -0.0035678078420460224, -0.0014594790991395712, -0.011108305305242538, 0.01160662155598402, -0.016915077343583107, -0.009343434125185013, -0.010222409851849079, -0.019337449222803116, -0.025940142571926117, -0.0011947484454140067, -0.010236251167953014, 0.004823980387300253, 0.021953610703349113, -0.007862326689064503, 0.01604302227497101, 0.025317246094346046, 0.014465020969510078, -0.004432940389961004, 0.010077066719532013, -0.023116348311305046, 0.018396183848381042, 0.004592124838382006, 0.010658436454832554, -0.01492181047797203, -0.00908043421804905, -0.02324092760682106, -0.021053873002529144, 0.030840255320072174, -0.005927890073508024, 0.08770370483398438, 0.02592630125582218, -0.03000972792506218, -0.003564347280189395, -0.009121960029006004, -0.007613169029355049, 0.018659185618162155, 4.1147879528580233e-05, 0.0029033857863396406, -0.03006509505212307, 0.021372241899371147, -0.00517695490270853, -0.021510662510991096, -0.01352375652641058, -0.031089413911104202, 0.0021057333797216415, 0.006246258970350027, 0.006277403794229031, -0.008229142986238003, 0.010630751959979534, 0.022161241620779037, -0.01604302227497101, 0.025594089180231094, -0.003882716177031398, -0.03405162692070007, -0.010270857252180576, 0.04008679464459419, 0.020292555913329124, 0.003239057259634137, -0.027296671643853188, 0.012672465294599533, -0.0030521885491907597, -0.03178152069449425, -0.0027649644762277603, -0.013184623792767525, -0.020527871325612068, -0.0030227741226553917, -0.03189225494861603, 0.00406266376376152, 0.011468200944364071, 0.006242798641324043, 0.01818855293095112, -0.019019080325961113, -0.012388701550662518, 0.025109615176916122, -0.006661522667855024, 0.0023375889286398888, -0.013440703973174095, -0.009654882363975048], "f3396eb0-fefc-4246-92d7-4a0829614572": [-0.010497219860553741, -0.01602349802851677, 0.0010827374644577503, -0.016118312254548073, -0.004882900509983301, 0.007822122424840927, -0.02088608220219612, -0.03234498202800751, -0.021576866507530212, -0.05466681346297264, 0.015888050198554993, 0.01140472199767828, 0.010923881083726883, -0.012217409908771515, 0.006433779839426279, 0.02350022830069065, 0.02704896591603756, -0.0014399815117940307, 0.018556376919150352, -0.018312569707632065, -0.02599247172474861, -0.004029578063637018, -0.03518939018249512, -0.0029290630482137203, -0.030855054035782814, -0.003093293635174632, 0.038792308419942856, -0.007788260001689196, -0.0005481411353684962, 0.02240309864282608, 0.012820153497159481, -0.018028128892183304, -0.005753153935074806, -0.010368544608354568, -0.022606272250413895, -0.005411147605627775, 0.005455168429762125, -0.003667254699394107, -0.0010395634453743696, -0.009454270824790001, 0.015075362287461758, 0.0021045233588665724, -0.008424866013228893, 0.01736443303525448, -0.005062369164079428, 0.021685225889086723, 0.008655127137899399, -0.004476556554436684, -0.006840124260634184, -0.01401886809617281, 6.312088225968182e-05, 0.0172289852052927, -0.0027699116617441177, 0.007476729806512594, -0.015860961750149727, -0.0019047375535592437, -0.00608161510899663, 0.004869355820119381, 0.01294205617159605, 0.004730521235615015, -0.0010979754151776433, 0.009305277839303017, -0.017716597765684128, 0.007375143468379974, -0.03220953419804573, -0.019829588010907173, -0.005698974709957838, -0.010598805733025074, -0.0208454467356205, -0.001292681903578341, 0.012583118863403797, 0.0314510241150856, -0.006129022222012281, -0.006491345353424549, -5.071363557362929e-05, -0.016754917800426483, 0.005648181773722172, -0.00671822065487504, -0.0005481411353684962, -0.014560660347342491, 0.019179437309503555, -0.004168412182480097, -0.0017591308569535613, -0.014560660347342491, 0.026019560173153877, 0.06268533319234848, -0.0007911009597592056, 0.002797001274302602, -0.010592034086585045, 0.005475485231727362, 0.016497567296028137, 0.017269620671868324, 0.010890019126236439, 0.030557069927453995, 0.01503472775220871, 0.0008008363074623048, 0.01800103858113289, 0.0035690548829734325, 0.0043851290829479694, -0.015332713723182678, -0.020980894565582275, 0.008878616616129875, -0.015224355272948742, -0.01168916281312704, -0.0348101370036602, -0.000797026848886162, 0.02931094728410244, -0.012454443611204624, -0.0010785047197714448, 0.005238451529294252, -0.019951490685343742, 0.026832249015569687, -0.0019115098984912038, -0.007463184650987387, -0.006423621438443661, -0.0009853842202574015, 0.027306316420435905, -0.02895878255367279, -0.0030018663965165615, -0.011790748685598373, 0.018312569707632065, 0.011540169827640057, 0.04060731083154678, -0.02798355743288994, 0.008932795375585556, -0.007991432212293148, 0.005505961365997791, -0.010429495945572853, 0.034512151032686234, -0.0038331784307956696, 0.04090529680252075, 0.027008332312107086, 0.012759202159941196, 0.003748523537069559, -0.04748807102441788, 0.020384924486279488, -0.031125951558351517, 0.015197265893220901, -0.005932622589170933, -0.02118406817317009, 0.009129195474088192, 0.028254453092813492, -0.007767942734062672, -0.02337832562625408, 0.017337344586849213, 0.022822987288236618, -0.010382088832557201, 0.035026852041482925, 0.0314510241150856, -0.02270108461380005, 0.0046086180955171585, -0.011086419224739075, -0.005526278633624315, 0.0194367878139019, 0.00732773682102561, 0.005289244465529919, 6.0528323956532404e-05, 0.032642967998981476, -0.010314364917576313, -0.015305624343454838, 0.008011749014258385, 0.019477423280477524, -0.009427180513739586, -0.0027783771511167288, -0.0017591308569535613, 0.025559037923812866, -0.007849211804568768, -0.03600207716226578, -0.010592034086585045, -0.01021277904510498, 0.0016313018277287483, 0.03941536694765091, -0.021319516003131866, 0.01867827959358692, 0.016903910785913467, 0.01140472199767828, 0.021346604451537132, -0.009880932047963142, -0.015942228958010674, -0.031369756907224655, 0.028985872864723206, -0.008479044772684574, 0.004507032223045826, 0.01747279241681099, -0.023026160895824432, -0.02616855315864086, 0.02820027433335781, 0.007639267481863499, -0.0035792135167866945, 0.001941985683515668, 0.011844927445054054, 0.006630179472267628, -0.023716945201158524, 0.004882900509983301, -0.6193765997886658, -0.013456759043037891, 0.015495250932872295, -0.03245333954691887, 0.008059156127274036, 0.011851700022816658, 0.014492936432361603, -0.003694344311952591, -0.014411667361855507, 0.01926070638000965, 0.0009676066692918539, 0.008323279209434986, -0.006173042580485344, -0.014763832092285156, -0.011634983122348785, -0.032236624509096146, 0.016443386673927307, -0.007591860368847847, -0.01357866171747446, 0.002856259699910879, -0.021563321352005005, 0.024069109931588173, -0.002600601641461253, -0.0133822625502944, 0.007192288991063833, -0.0057463813573122025, 0.012664387933909893, -0.005546595435589552, -0.010490447282791138, 0.008953113108873367, -0.04017387703061104, 0.022552091628313065, 0.025870569050312042, -0.00403296435251832, 0.04201596975326538, -0.00966421514749527, -0.013754744082689285, 0.017933314666152, 0.028931692242622375, 0.015373348258435726, -0.029961097985506058, -0.010348226875066757, 0.008966657333076, 0.023066794499754906, -0.003982171416282654, -0.0035521239042282104, -0.02152268774807453, 0.01004346925765276, -0.017459247261285782, 0.006061297841370106, 0.003369268961250782, -0.025084970518946648, 0.006416848860681057, -0.008343596942722797, 0.014804466627538204, 0.002053730422630906, 0.027414675801992416, -0.005709133110940456, 0.0020655819680541754, 0.012413809075951576, 0.0065793865360319614, 0.006840124260634184, -0.003707889001816511, -0.05867607519030571, -0.0443456768989563, 0.008140425197780132, -0.024353550747036934, -0.006863827351480722, 0.019883766770362854, 0.009616808034479618, 0.016673648729920387, 0.0050115762278437614, -0.006569228135049343, -0.007266785483807325, -0.007971114479005337, 0.0325075201690197, 0.037112753838300705, -0.01462838426232338, 0.005638022907078266, 0.011005150154232979, -0.00618320144712925, -0.0010996684432029724, -0.00734128151088953, -0.023175153881311417, 0.0392257422208786, 0.00042221680632792413, -0.020046304911375046, -0.018095852807164192, -0.007916935719549656, -0.002008016686886549, 0.015441072173416615, 0.010598805733025074, -0.0014044264098629355, -0.039036113768815994, 0.02925676852464676, 0.03261587768793106, 0.010984833352267742, -0.007740853354334831, -0.002187485108152032, -0.024394184350967407, -0.035433195531368256, -0.021861307322978973, 0.018082307651638985, 0.013124911114573479, 0.012806608341634274, 0.014005322940647602, -0.027252137660980225, -0.015982864424586296, 0.028173184022307396, -0.018082307651638985, -0.001413738471455872, -0.007849211804568768, -0.03397035971283913, -0.004886286798864603, -0.0036232341080904007, -0.024299371987581253, 0.018556376919150352, -0.005864898674190044, -0.006098546087741852, -0.015075362287461758, -0.026127919554710388, 0.01596931926906109, 0.004202274139970541, 0.006420235149562359, 0.001236809534020722, 0.0218206737190485, 0.012867559678852558, 0.0029358353931456804, 0.003894130000844598, 0.0009777653031051159, 0.020926715806126595, -0.01827193610370159, 0.00870253425091505, -0.011851700022816658, 0.020100483670830727, 0.002791921840980649, 0.0010370237287133932, 0.002571818884462118, 0.022132202982902527, -0.035324838012456894, 0.0016372277168557048, 0.0015060125151649117, 0.009488132782280445, -0.0157255120575428, -0.002551501616835594, -0.01666010357439518, -0.019870221614837646, 0.016700739040970802, -0.005356968380510807, -0.009569400921463966, -0.027360497042536736, -0.024990156292915344, 0.005621091928333044, 0.01465547364205122, 0.0027986944187432528, 0.011276045814156532, 0.0013138456270098686, -0.037112753838300705, -0.013341628015041351, -0.02971729077398777, -0.002764832228422165, 0.01027373131364584, -0.00039385739364661276, 0.0052147479727864265, -0.006741924211382866, -0.010395633988082409, -0.03296804428100586, 0.005902146454900503, -0.007097475230693817, -0.015603609383106232, -0.016930999234318733, -0.020980894565582275, 0.03226371482014656, 0.031721923500299454, -0.02895878255367279, -0.0007932173321023583, -0.0017286550719290972, 0.005323106423020363, -0.007036523427814245, -8.661265019327402e-05, 0.024814072996377945, 0.032236624509096146, -0.01874600350856781, -0.004977714270353317, 0.028173184022307396, 0.013795378617942333, 0.017906226217746735, 0.017852047458291054, -0.03052997961640358, 0.001671089674346149, -3.507891597109847e-05, 0.01683618687093258, -0.0016583914402872324, -0.00403296435251832, -0.007402233313769102, -0.021603956818580627, -0.03651678189635277, -0.027482399716973305, -0.006802876014262438, 0.0304758008569479, -0.0009557549492456019, 0.005333264824002981, -0.02263336069881916, 0.003944923169910908, 0.01653820089995861, -0.03280550613999367, 0.020235931500792503, 0.0021129888482391834, 0.01178397610783577, 0.008844754658639431, -0.008621265180408955, -0.004954010713845491, -0.01044304110109806, -0.03743782639503479, -0.008296189829707146, 0.016673648729920387, -0.021631045266985893, 0.019341975450515747, 0.006477800663560629, 0.007503819186240435, 0.00867544487118721, 0.022904256358742714, 0.021901940926909447, 0.006806261837482452, -0.006071456708014011, 0.005502575077116489, -0.010138282552361488, 0.00922400876879692, 0.02206447906792164, -0.025396499782800674, -0.012616981752216816, 0.008736396208405495, -0.012061644345521927, -0.00047195161459967494, 0.025870569050312042, 0.018935630097985268, 0.0392257422208786, -0.018028128892183304, 0.03359110280871391, -0.00946104247123003, 0.009014064446091652, -0.006189973559230566, 0.035433195531368256, -0.02175294980406761, 0.011648528277873993, 0.014547115191817284, 0.0321553573012352, -0.0068604410625994205, -0.03126139938831329, 0.03326603025197983, -0.011452128179371357, 0.013747972436249256, -0.009745483286678791, -0.02194257639348507, 0.039604995399713516, -0.003169483272358775, 0.004276770632714033, 0.017079992219805717, 0.021048618480563164, 0.01625376008450985, -0.018827272579073906, 0.013605752028524876, -0.008648354560136795, -0.006362669635564089, 0.026547808200120926, -0.00992833822965622, -0.009908021427690983, -0.026913518086075783, -0.02165813557803631, -0.01103223953396082, -0.011411493644118309, -0.019111713394522667, -0.005445009563118219, -0.008431637659668922, -0.010659758001565933, 0.0026937220245599747, -0.008729623630642891, 0.016348574310541153, 0.006342352833598852, 0.02291780151426792, -0.012021009810268879, -0.01641629822552204, 0.01619958132505417, 0.0049709416925907135, -0.01641629822552204, -0.0077340807765722275, -0.0058039468713104725, -0.014479391276836395, 0.0240284763276577, 0.02118406817317009, -0.011228639632463455, -0.0037925441283732653, -0.01573905721306801, 0.025640306994318962, -0.020628729835152626, 0.018028128892183304, 0.048544563353061676, -0.008079472929239273, -0.016958089545369148, 0.0038873576559126377, -0.0014856952475383878, 0.004483328666538, -0.01858346536755562, -0.026209188625216484, 0.04496873542666435, -0.009847070090472698, -0.003403130918741226, -0.010307593271136284, 0.01666010357439518, -0.03448506072163582, 0.01319940760731697, -0.020574551075696945, -0.023026160895824432, -0.01401886809617281, -0.028335722163319588, -0.0047271354123950005, 0.0037248199805617332, -0.010862929746508598, 0.021319516003131866, 0.007727308664470911, -0.008235238492488861, -0.014181405305862427, -0.002509174169972539, 0.019423242658376694, 0.06772399693727493, 0.012413809075951576, 0.005831036251038313, 0.0275636687874794, -0.026276912540197372, -0.00689091719686985, -0.015684878453612328, -0.02425873652100563, 0.03196572884917259, -0.019138801842927933, -0.012156457640230656, -0.00572945037856698, 0.02229474112391472, -0.0038433370646089315, 0.0015288692666217685, 0.01265084370970726, 0.016619469970464706, -0.011411493644118309, -0.010686847381293774, 0.016524655744433403, -0.008621265180408955, 0.000386661704396829, 0.04648575559258461, 0.02049328200519085, 0.04201596975326538, 0.03638133406639099, 0.028227362781763077, 0.014384577982127666, 0.0002713192661758512, -0.01938260905444622, -0.009047926403582096, 0.004987872671335936, -0.01105932891368866, 0.020466193556785583, -0.015468161553144455, 0.026601986959576607, 0.000991310109384358, -0.03353692591190338, -0.021861307322978973, 0.009847070090472698, -0.010978060774505138, 0.008946340531110764, 0.007551225833594799, -0.016958089545369148, 0.01134376972913742, -0.042747389525175095, 0.006829965393990278, 0.03494558483362198, -0.0066742002964019775, -0.007368371356278658, -0.0011927889427170157, 0.005191044416278601, -0.011662072502076626, 0.028335722163319588, 0.0035385789815336466, -0.00101162726059556, -0.01068007480353117, -0.009163057431578636, -0.004280156921595335, -0.027089599519968033, -0.056454725563526154, -0.013565117493271828, 0.004446080420166254, -0.013456759043037891, -0.017459247261285782, -0.028064826503396034, -0.011282818391919136, 0.011506307870149612, -0.027319861575961113, 0.004859196953475475, 0.013280676677823067, -0.03348274528980255, -0.03478304669260979, 0.0032710691448301077, 0.036245886236429214, 0.011750114150345325, 0.0030475801322609186, 0.017689509317278862, -0.011662072502076626, 0.011181232519447803, 0.004219205118715763, -0.02890460379421711, 0.01529207918792963, -0.021373694762587547, -0.01168916281312704, -0.023405414074659348, -0.02761784754693508, -0.0013722575968131423, -0.01401886809617281, 0.016443386673927307, 0.0020367992110550404, -0.023581497371196747, -0.013300993479788303, 0.000849936215672642, 0.004737293813377619, 0.030259083956480026, 0.008221693336963654, 0.01759469509124756, 0.024583812803030014, -0.034918494522571564, 0.008634810335934162, -0.012217409908771515, -0.006427007727324963, -0.031667742878198624, 0.010165372863411903, -0.0038704266771674156, 0.006085001397877932, -0.014032413251698017, 0.00348101370036602, -0.03611043840646744, -0.006525207310914993, -0.011621438898146152, -0.0074699572287499905, -0.024814072996377945, 0.0052147479727864265, 0.0010361771564930677, 0.002253516111522913, 0.014289763756096363, 0.006772399879992008, -0.018881451338529587, 0.016646558418869972, -0.02622273378074169, 0.03906320407986641, 0.01076811645179987, 0.0017489723395556211, 0.007090702652931213, 0.030557069927453995, -0.01630793884396553, -0.024827618151903152, 0.0186376441270113, 0.012339312583208084, 0.012908194214105606, -0.00280038733035326, 0.01178397610783577, -0.004551053047180176, -0.025437135249376297, 0.009819979779422283, 0.0021079094149172306, -0.018353203311562538, 0.014154315926134586, -0.023148063570261, 0.012264816090464592, 0.015657788142561913, 0.008248783648014069, 0.0035758272279053926, -0.03478304669260979, -0.025572583079338074, -0.028633708134293556, 0.0071855164133012295, 0.029934007674455643, -0.01862410083413124, -0.013836013153195381, -0.03927991911768913, -0.0208454467356205, 0.02477343939244747, 0.0009108877857215703, 0.005072527565062046, -0.00024486458278261125, 0.04450821131467819, 0.012711795046925545, 0.026656165719032288, 0.032588787376880646, 0.028742065653204918, 0.025721576064825058, -0.013206180185079575, -0.0172289852052927, -0.015915140509605408, -0.027482399716973305, 0.0030137179419398308, 0.02019529789686203, 0.00916983000934124, 0.010409179143607616, -0.01399177871644497, 0.008214921690523624, 0.010659758001565933, 0.008438410237431526, 0.006853668950498104, -0.002509174169972539, -0.034214165061712265, -0.037004392594099045, -0.005025120917707682, 0.012542485259473324, -0.0013544800458475947, -0.003306624246761203, -0.012109051458537579, 0.011506307870149612, 0.0160776786506176, -0.00931882206350565, 0.03518939018249512, 0.001662624184973538, 0.04128454998135567, 0.017445702105760574, 0.0006340659456327558, -0.00818783137947321, 0.016240214928984642, -0.04009260982275009, -0.01641629822552204, -0.035324838012456894, -0.018502196297049522, 0.008634810335934162, 0.0027191187255084515, 0.030286172404885292, 0.006085001397877932, -0.0011623131576925516, -0.0010421030456200242, 0.003132235025987029, -0.0385214127600193, -0.007991432212293148, 0.0013553266180679202, -0.025816388428211212, 0.003626620164141059, -0.038169246166944504, -0.002289071213454008, 0.000565495400223881, -0.014723197557032108, 0.015630699694156647, 0.005140251480042934, 0.016158945858478546, -0.026737434789538383, -0.013212952762842178, 0.02717086859047413, -0.016578834503889084, 0.02112988755106926, 0.0310988612473011, 0.0325075201690197, 0.013761516660451889, 0.0024245192762464285, -0.020980894565582275, -0.01955869048833847, -0.0058411951176822186, -0.012312223203480244, 0.009156284853816032, 0.029446395114064217, -0.003369268961250782, 0.0013731041690334678, -0.0066572693176567554, -0.02960893325507641, -0.015061818063259125, -0.03562282398343086, 0.0038501094095408916, 0.01705290377140045, -0.00286472518928349, -0.028064826503396034, -0.018177121877670288, -0.0211163442581892, 0.023554407060146332, -0.010957743041217327, 0.0013121524825692177, 0.010592034086585045, -0.015115996822714806, 0.011269273236393929, 0.027292773127555847, -0.0016583914402872324, 0.01076811645179987, 0.0021282266825437546, -0.0077137635089457035, 0.0024414502549916506, -0.0015093986876308918, 0.00030306490953080356, 0.0010548012796789408, 0.002903666580095887, 0.033211849629879, -0.022376010194420815, 0.004645866341888905, 0.01945033296942711, 0.006995889358222485, -0.0122783612459898, -0.00012624176451936364, -0.022497912868857384, 0.03361819311976433, -0.014980548992753029, -0.012129368260502815, 0.007226150948554277, 0.021563321352005005, 0.003883971367031336, -0.015413982793688774, -0.021441418677568436, -0.012745657004415989, -0.011655300855636597, 0.008391004055738449, 0.01404595747590065, -0.022389555349946022, -0.029446395114064217, -0.008736396208405495, 0.010476903058588505, -0.015346258878707886, 0.013111366890370846, -0.005099617410451174, 0.011472445912659168, -0.0236763097345829, 0.0052147479727864265, 0.01300300844013691, -0.00608161510899663, 0.011702707037329674, -0.0027800702955573797, -0.018881451338529587, 0.001423897105269134, 0.021346604451537132, -0.013131683692336082, 0.017039358615875244, 0.029554754495620728, 0.0032981587573885918, -0.043207913637161255, 0.020818358287215233, -0.019978580996394157, -0.009075015783309937, 0.0038771990220993757, -0.0037417509593069553, -0.02558612823486328, -0.02268753945827484, 0.015183720737695694, -0.004276770632714033, -0.01143181137740612, -0.0080388393253088, 0.00792370829731226, 0.0328596867620945, 0.0074293226934969425, -0.014140771701931953, 0.0004626395821105689, -0.0014941607369109988, 0.004236136097460985, 0.015251444652676582, 0.020046304911375046, -0.008932795375585556, 0.005766698624938726, 0.019978580996394157, 0.001447600545361638, -0.009163057431578636, -0.027360497042536736, -0.020533917471766472, -0.011093190871179104, 0.013043642975389957, 0.009020837023854256, 0.00868221651762724, 0.005668499041348696, -0.01573905721306801, -0.014452301897108555, 0.023486683145165443, -0.03963208571076393, 0.0007127951248548925, 0.024705715477466583, -0.007855984382331371, 0.011242183856666088, 0.03418707475066185, -0.011540169827640057, -0.028525348752737045, -0.015129541978240013, -0.031830281019210815, -0.044887468218803406, -0.007266785483807325, 0.004801631439477205, 0.04044477269053459, 0.007842439226806164, -0.017432156950235367, -0.02420455776154995, -0.020384924486279488, -0.04369552433490753, -0.01729670912027359, -0.03546028584241867, 0.023960750550031662, 0.028010645881295204, 0.027536578476428986, -0.006484573241323233, 0.02798355743288994, -0.011587576940655708, 0.003149166004732251, -0.03394326940178871, -0.005936008878052235, -0.017608240246772766, -0.022552091628313065, 0.03226371482014656, -0.0115740317851305, -0.054937709122896194, 0.006816420704126358, 0.0014264367055147886, -0.014235584996640682, 0.01758114993572235, -0.02065582014620304, 0.004615390673279762, 0.0076934462413191795, 0.0007140649249777198, 0.009149512276053429, 0.0196128711104393, 0.023473137989640236, 0.02165813557803631, -0.022768808528780937, 0.004351267125457525, 0.029148409143090248, -0.0014848486753180623, 0.0023686469066888094, 0.008790574967861176, 0.008363913744688034, -0.026046650484204292, 0.0039313780143857, -0.010551399551331997, -0.007557998411357403, -0.007083930540829897, 0.014086592011153698, 0.004432535730302334, 0.02721150405704975, 0.011018695309758186, 0.03800670802593231, -0.02217283844947815, -0.00285118049941957, 0.008079472929239273, -0.0007610484608449042, 0.01500763837248087, 0.014330398291349411, 0.0372752882540226, -0.022497912868857384, 0.008438410237431526, 0.00022137282940093428, -0.0003752332995645702, -0.0024228261318057775, -0.016280850395560265, -0.017621785402297974, -0.009582946076989174, -0.008858298882842064, -0.00969130452722311, 0.0015364883001893759, -0.02268753945827484, 0.013510937802493572, -0.014438756741583347, -0.003132235025987029, 0.012684705667197704, -0.007307419553399086, 0.016782008111476898, -0.003680799389258027, -0.023703400045633316, 0.004395287483930588, 0.007043296005576849, -0.039848800748586655, -0.0016372277168557048, 0.025667395442724228, 0.013179090805351734, 0.00780857726931572, 0.2137911319732666, 0.0016939465422183275, 0.02228119596838951, 0.0355144664645195, 0.025396499782800674, -0.018935630097985268, 0.026832249015569687, 0.005851353518664837, -0.013741199858486652, 0.012400264851748943, 0.002289071213454008, -0.004551053047180176, -0.005942780990153551, -0.0002514253428671509, 0.016064133495092392, -0.02351377345621586, -0.02971729077398777, -0.006491345353424549, -0.017567606642842293, 0.0018894996028393507, 0.009393318556249142, -0.0019132030429318547, -0.01577969267964363, -0.006393145769834518, 0.022890713065862656, 0.007293874863535166, -0.0148857356980443, 0.009786117821931839, 0.02030365541577339, 0.014100137166678905, -0.00789661891758442, -0.0018319342052564025, 0.014005322940647602, -0.005888601765036583, -0.02217283844947815, -0.013829240575432777, 0.006741924211382866, -0.018068762496113777, -0.012820153497159481, 0.03275132551789284, 0.00507930014282465, -0.010002834722399712, 0.00783566664904356, -0.01805521920323372, 0.021278880536556244, -0.0038771990220993757, -0.02432646043598652, 0.026493629440665245, -0.014208495616912842, 0.01991085708141327, -0.0060274358838796616, 0.004710204433649778, 0.01763533055782318, 0.02275526337325573, 4.111058296984993e-05, 0.008262327872216702, -0.011336998082697392, 0.0036503237206488848, -0.019599325954914093, -0.019748318940401077, -0.011858472600579262, 0.007117792498320341, -0.013355173170566559, 0.003609689185395837, -0.041826341301202774, 0.005820877850055695, -0.034918494522571564, 0.03307640179991722, -0.0010581874521449208, 0.007910163141787052, -0.020615186542272568, -0.012136140838265419, -0.029148409143090248, -0.0027445151936262846, -0.010260186158120632, -0.011228639632463455, 0.01717480644583702, 0.009908021427690983, 0.016321483999490738, 0.019748318940401077, -0.003718047635629773, 0.0004078254569321871, -0.032642967998981476, -0.015210810117423534, 0.014059502631425858, -0.030259083956480026, 0.023716945201158524, -0.01032791007310152, -0.015982864424586296, -0.026087285950779915, -0.000841470726300031, 0.008993747644126415, 0.003630006453022361, -0.016091221943497658, 0.005952939856797457, -0.010029924102127552, 0.014208495616912842, 0.020588096231222153, -0.013747972436249256, -0.026100829243659973, -0.00919691938906908, 0.05374576523900032, 0.0037925441283732653, 0.02007339335978031, -0.016335029155015945, 0.011763659305870533, 0.0029832422733306885, 0.026263367384672165, -0.010605578310787678, -0.01279306411743164, 0.0011149063939228654, -0.02860661782324314, 0.017797866836190224, -0.005885215476155281, 0.008628037758171558, 0.015915140509605408, 0.005966484546661377, -0.015630699694156647, 0.01798749528825283, -0.031207218766212463, 0.013212952762842178, 0.007138109765946865, 0.0159015953540802, 0.008113334886729717, -0.027414675801992416, -0.02722504734992981, -0.0030238765757530928, 0.029500573873519897, -0.030042367056012154, -0.028742065653204918, 0.011445356532931328, -0.016985179856419563, 0.0148857356980443, -0.014547115191817284, -0.013768289238214493, 0.005224906839430332, 0.029229678213596344, 0.008546768687665462, -0.011723024770617485, -0.024407729506492615, 0.0040600537322461605, 0.006582772824913263, 0.011411493644118309, 0.006213677115738392, -0.006203518249094486, -0.0013163852272555232, 0.009941883385181427, -0.006796103436499834, -0.007700218819081783, -0.03307640179991722, 0.003728206269443035, 0.0037146613467484713, 0.006481186952441931, 0.0014145850436761975, 0.041122011840343475, -0.011973603628575802, -0.031153040006756783, -0.024516088888049126, 0.022416643798351288, 0.0280919149518013, -0.038385964930057526, 0.005282471887767315, 0.03505394235253334, 0.0040024882182478905, -0.012644071131944656, -0.013714110478758812, -0.17142298817634583, 0.013761516660451889, -0.005736222956329584, -0.0020571164786815643, 0.027035420760512352, 0.0066742002964019775, -0.003728206269443035, 0.0026378498878329992, -0.010510765016078949, -0.0046492526307702065, 0.00510638952255249, -0.0019064305815845728, -0.007043296005576849, 0.003188107395544648, 0.010829067789018154, 0.0007161812973208725, -0.0258841123431921, 0.02971729077398777, 0.0425848513841629, 0.0004414758295752108, 0.02263336069881916, -0.02687288261950016, -0.005445009563118219, 0.004473170265555382, 0.020696453750133514, 0.0039313780143857, 0.006640338338911533, 0.0304758008569479, -0.005959711968898773, -0.02960893325507641, -0.00410407455638051, -0.016700739040970802, 0.01584741659462452, -0.0013485541567206383, 0.015373348258435726, 0.001035330700688064, 0.002768218517303467, -0.0016922535141929984, -0.003958467859774828, 0.009142739698290825, 0.007740853354334831, 0.008133652620017529, 0.018827272579073906, 0.008648354560136795, 0.001984313130378723, 0.01758114993572235, 0.012623753398656845, -0.0007843285566195846, 0.004229363985359669, -0.015278534963726997, 0.03760036453604698, -0.021915486082434654, -0.009542311541736126, 0.004307246301323175, 0.0005650721141137183, -0.005719291977584362, 0.01430330891162157, 0.01770305447280407, -0.0020689682569354773, -0.02107570879161358, 0.0068807583302259445, -0.002014789031818509, 0.00522152055054903, -0.002629384398460388, -0.007063613273203373, -0.023148063570261, 0.020818358287215233, 0.013043642975389957, 0.004446080420166254, -0.009623580612242222, 0.0023297055158764124, 2.689118991838768e-05, 0.00023893873731140047, 0.01573905721306801, 0.012969146482646465, 0.010727481916546822, -0.04155544564127922, -0.0015822019195184112, 0.03434961289167404, 8.439045632258058e-05, 0.01805521920323372, 0.008255555294454098, -0.004828721284866333, -0.00893956795334816, -0.00940686371177435, 0.025816388428211212, -0.017689509317278862, 0.009156284853816032, -0.017486337572336197, 0.019084623083472252, 0.015928685665130615, 0.0010810443200170994, -0.0010691926581785083, 0.00507930014282465, 0.013226496987044811, -0.010551399551331997, 0.034159984439611435, -0.012203864753246307, 0.009569400921463966, -0.0027055738028138876, 0.016118312254548073, 0.013179090805351734, -0.024651536718010902, 0.0018200825434178114, 0.03489140421152115, 0.03383491188287735, 0.020168207585811615, 0.0065590692684054375, 0.032182443886995316, -0.012874332256615162, -0.01701226830482483, 0.00314070051535964, 0.01922007091343403, 0.0034742411226034164, -0.00567188486456871, 0.0450500063598156, -0.003169483272358775, -0.02210511453449726, 0.0024566880892962217, -0.014641928486526012, 0.04301828518509865, -0.023635676130652428, -0.02519332803785801, 0.014005322940647602, 0.005820877850055695, -0.01155371405184269, -0.10825004428625107, -0.015535885468125343, 0.006829965393990278, 0.017445702105760574, -0.017107082530856133, 0.0032778417225927114, -0.008905705995857716, 0.048436205834150314, -0.028633708134293556, 0.029906919226050377, -0.021631045266985893, -0.03023199364542961, 0.012528940103948116, 0.0027191187255084515, -0.002883349312469363, -0.00022094955784268677, -0.01653820089995861, -0.0009549084352329373, -0.011743341572582722, 0.030719606205821037, 0.013483848422765732, -0.01618603616952896, 0.019396154209971428, -0.03524357080459595, -0.011113508604466915, -0.01279306411743164, -0.025911202654242516, 0.006664041429758072, 0.008343596942722797, 0.01619958132505417, 0.018488653004169464, -0.005512733478099108, 0.021319516003131866, -0.024272281676530838, -0.027766840532422066, -0.013043642975389957, -0.029094230383634567, -0.02820027433335781, -0.0026429290883243084, -0.04114910215139389, -0.008898933418095112, 0.0027495943941175938, -0.024096200242638588, -0.02257918193936348, -0.004246294964104891, -0.0016922535141929984, -0.02448899857699871, 0.022768808528780937, 0.008661899715662003, -0.016551746055483818, -0.0051199342124164104, -0.023960750550031662, -0.007720536086708307, -0.039198651909828186, 0.01920652575790882, 0.0014967004535719752, 0.013673475943505764, 0.014330398291349411, -0.011452128179371357, 0.013646386563777924, 0.0057836296036839485, 0.0027462083380669355, -0.013246814720332623, 0.035541556775569916, -0.0007191442418843508, 0.032182443886995316, 0.016754917800426483, -0.005495802499353886, -0.006017277482897043, -0.0009345912258140743, -0.01984313130378723, 0.005299402866512537, -0.02339186891913414, 0.013063959777355194, -0.004557825159281492, 0.00251763965934515, -0.030800875276327133, -0.027387585490942, 0.026859339326620102, 0.00853322446346283, -0.011797521263360977, -0.015332713723182678, 0.0016389208612963557, -0.04020096734166145, 0.025450678542256355, 0.004330949857831001, 0.011011922731995583, -0.008248783648014069, 0.040769848972558975, -0.03546028584241867, 0.006809648126363754, 0.018326114863157272, 0.01430330891162157, -0.016917455941438675, 0.007625722326338291, 0.02007339335978031, -0.024705715477466583, 0.010084103792905807, 0.017716597765684128, -0.005736222956329584, -0.012549256905913353, -0.013869875110685825, -0.04114910215139389, 0.016727827489376068, 0.006393145769834518, 0.00046729561290703714, -0.005895374342799187, -0.009345912374556065, -0.00409052986651659, -0.017675964161753654, 0.003431913675740361, 0.0006785098230466247, -0.02844407968223095, 0.005695588421076536, -0.023256421089172363, -0.02784810960292816, -0.033293116837739944, -0.030367441475391388, -0.01206841692328453, 0.005343423690646887, 0.006745310500264168, 0.010808750055730343, -0.013077504932880402, -0.0011817838530987501, 0.00516395503655076, 0.022132202982902527, -0.0030137179419398308, 0.018082307651638985, -0.028281543403863907, 0.03895484656095505, -0.010490447282791138, -0.018190667033195496, 0.01729670912027359, -0.003630006453022361, 0.007375143468379974, 0.015183720737695694, -0.01041595172137022, -0.034268345683813095, 0.010639440268278122, -0.005739609245210886, 0.03359110280871391, 0.002747901249676943, -0.012427354231476784, -0.008004976436495781, 0.027008332312107086, 0.0032151970081031322, -0.016389207914471626, -0.005174113437533379, -0.027130234986543655, -0.021861307322978973, 0.026493629440665245, 0.020059848204255104, 0.042693208903074265, 0.0018437858670949936, -0.003050966188311577, -0.04868001118302345, 0.0038433370646089315, -0.00916983000934124, 0.028687886893749237, 0.015061818063259125, 0.008343596942722797, -0.020709998905658722, 0.049655236303806305, 0.01991085708141327, 0.00908178836107254, -0.018407383933663368, 0.010747798718512058, -0.012170002795755863, -0.05038665607571602, 0.004730521235615015, -0.0035588962491601706, -0.04120328277349472, 0.011519852094352245, -0.018786637112498283, 0.022904256358742714, 0.03399745002388954, 0.007666356861591339, 0.00929173268377781, 0.0019318271661177278, -0.020533917471766472, -0.011479218490421772, 0.03483722731471062, 0.024976611137390137, -0.0148857356980443, -0.026331091299653053, 0.0055973888374865055, 0.010429495945572853, 0.01084938459098339, -0.01706644892692566, 0.0090546989813447, 0.009786117821931839, 0.006301718298345804, -0.015928685665130615, -0.01955869048833847, -0.01764887385070324, 0.007727308664470911, 0.018244845792651176, 0.0379796177148819, -0.023960750550031662, 0.02582993358373642, 0.027143780142068863, 0.023703400045633316, -0.0065760002471506596, 0.028227362781763077, -0.0023804986849427223, 0.008424866013228893, -0.0290671419352293, 0.010409179143607616, -0.036706406623125076, -0.01666010357439518, 0.01869182474911213, 0.03323893994092941, 0.0013874954311177135, -0.010625896044075489, -0.001992778619751334, 0.004882900509983301, -0.022904256358742714, -1.2618886103155091e-05, -0.01741861365735531, -0.011587576940655708, -0.027604302391409874, -0.0012444285675883293, -0.006569228135049343, 0.017201896756887436, 0.016971634700894356, -0.005238451529294252, 0.017540516331791878, 0.017039358615875244, -0.0010209393221884966, -0.011513080447912216, 0.013673475943505764, -0.019992124289274216, 0.012826926074922085, 0.016321483999490738, 0.02043910324573517, -0.01407304685562849, -0.0032016520854085684, -0.016402753069996834, -0.01867827959358692, 0.01984313130378723, -0.018773093819618225, 0.06301040947437286, 0.025233963504433632, -0.03291386365890503, 0.004659411031752825, -0.02106216363608837, 0.0030374214984476566, 0.020533917471766472, -0.0026276912540197372, 0.0074496399611234665, -0.015156631357967854, 0.025802845135331154, 0.0033117036800831556, -0.022673996165394783, -0.013964689336717129, -0.014763832092285156, -0.002502401825040579, 0.013605752028524876, 0.012258044444024563, -0.015183720737695694, 0.016348574310541153, 0.02595183625817299, 0.0002935412048827857, 0.03424125537276268, -0.0018810341134667397, -0.021685225889086723, -0.016809096559882164, 0.032019905745983124, 0.01453357096761465, 0.014005322940647602, -0.033293116837739944, 0.011844927445054054, -0.00403296435251832, -0.02007339335978031, -0.003122076392173767, -0.011397949419915676, -0.0024143606424331665, -0.004567984025925398, -0.024299371987581253, -0.011005150154232979, 0.010029924102127552, 0.0038027025293558836, 0.024163924157619476, -0.0196128711104393, -0.015170176513493061, 0.019287794828414917, 0.005414533894509077, 0.010348226875066757, -0.01503472775220871, -0.00663356576114893], "d0cd6033-d5e0-4175-843b-9add469a23ad": [-0.015207943506538868, -0.011076104827225208, -0.003355816937983036, -0.020957795903086662, -0.008916438557207584, 0.017096783965826035, -0.01884673908352852, -0.031915850937366486, -0.014777399599552155, -0.05263753980398178, 0.01337465737015009, 0.010638616047799587, 0.022582754492759705, -0.006919961888343096, 0.00927059631794691, 0.008534504100680351, 0.023652171716094017, 0.01097194105386734, 0.01718011498451233, -0.02187443897128105, -0.01868007704615593, -0.009624753147363663, -0.023485509678721428, 0.006833158433437347, -0.020916130393743515, 0.003815874457359314, 0.03313804045319557, -0.002013837220147252, 0.0017794682644307613, 0.021763332188129425, 0.015499603003263474, -0.017888430505990982, -0.015694042667746544, -0.012909391894936562, -0.0013489237753674388, -0.0008845259435474873, 0.0013341672020033002, 0.0008675993303768337, 0.010145573876798153, -0.016041256487369537, 0.02648543380200863, -0.006173452828079462, -0.011971916072070599, 0.004503356758505106, -0.020971685647964478, 0.016735682263970375, 0.0016310346545651555, -0.014131582342088223, -0.016319027170538902, -0.00035849775304086506, -0.0018055093241855502, 0.0038089302834123373, -0.019082844257354736, 0.00849283766001463, -0.015569046139717102, 0.008465060964226723, -0.018916182219982147, -0.00040363549487665296, 0.00472557358443737, -0.0035190070047974586, 0.004999871831387281, 0.009138654917478561, -0.01534682884812355, 0.006711633875966072, -0.02295774593949318, -0.030443664640188217, -0.010492786765098572, -0.023693837225437164, -0.023818833753466606, -0.023235516622662544, 0.009298373013734818, 0.028360385447740555, 0.004340166691690683, -0.008360897190868855, 0.00982613768428564, -0.011666367761790752, 0.0006275880732573569, -0.010180294513702393, -0.0019999488722532988, -0.024443818256258965, 0.009333094581961632, 0.006531082559376955, 0.0006818401743657887, -0.0008359160856343806, 0.0241660475730896, 0.0513320192694664, -0.01299966685473919, -0.002121473429724574, -0.01036779023706913, 0.013513542711734772, 0.0021683473605662584, 0.028193721547722816, 0.009555310942232609, 0.016930121928453445, -0.01035390142351389, 0.02361050620675087, 0.0208605770021677, -0.005354029592126608, 0.006666495930403471, -0.014020474627614021, -0.013971864245831966, 0.008062293753027916, 0.005669993814080954, -0.01203441433608532, -0.03424912318587303, -0.01004140917211771, 0.025360461324453354, -0.0072150928899645805, 0.005808879155665636, 0.015957925468683243, -0.018874516710639, 0.025541013106703758, 0.004204753320664167, -0.01524960994720459, -0.01979115977883339, -0.0041700322180986404, 0.00904837902635336, -0.024832697585225105, 0.003895733505487442, -0.041582267731428146, 0.01288161426782608, 0.011076104827225208, 0.027415964752435684, -0.01841619424521923, -0.004708212800323963, -0.032443612813949585, -0.009583087638020515, -0.0017829404678195715, 0.027652069926261902, -0.0012543081538751721, 0.027540961280465126, 0.02165222354233265, -0.006058872677385807, -0.01636069267988205, -0.03138808533549309, 0.0064165024086833, -0.026429878547787666, 0.003753376193344593, -0.010645560920238495, -0.025318795815110207, 0.007735913153737783, 0.030999206006526947, -0.0077081359922885895, -0.02445770613849163, 0.013589929789304733, 0.027193747460842133, 0.0008237636066041887, 0.03163807839155197, 0.017249558120965958, -0.020916130393743515, -0.0016770403599366546, -0.028527047485113144, -0.01870785467326641, 0.008333119563758373, 0.01214552205055952, 0.017346778884530067, -0.004301973152905703, 0.03944343328475952, -0.027415964752435684, -0.009312261827290058, -0.004295028746128082, 0.02501324750483036, -0.01022196002304554, -0.011263600550591946, -0.003645739983767271, 0.027513183653354645, -0.008381729945540428, -0.023596618324518204, -0.00394434342160821, -0.012416348792612553, 0.009708085097372532, 0.0203744787722826, -0.027290968224406242, 0.036943498998880386, 0.028721487149596214, -0.0077081359922885895, 0.022179987281560898, -0.012610788457095623, -0.022929968312382698, -0.024318821728229523, 0.03752681612968445, 0.0028263165149837732, 0.005951236467808485, 0.022318873554468155, -0.030999206006526947, -0.007031070068478584, 0.02279108390212059, 0.00849283766001463, 0.009138654917478561, -0.0008233296102844179, -0.0017812043661251664, 0.011784420348703861, -0.030082562938332558, 0.0018541192403063178, -0.6155397891998291, 0.0002877530350815505, 0.016402358189225197, -0.023916054517030716, 0.0003263805410824716, 0.016444023698568344, 0.012958001345396042, -0.009360871277749538, -0.01023584883660078, 0.029721461236476898, -0.0010077867191284895, 0.013138552196323872, -0.005211672279983759, -0.01854119263589382, -0.009874747134745121, -0.02769373543560505, 0.01831897534430027, -0.0038922615349292755, 0.00435058306902647, 0.006180397234857082, -0.016305137425661087, 0.03605463355779648, -0.010603895410895348, -0.0034165792167186737, 0.005663049407303333, 0.0024738949723541737, 0.016930121928453445, -0.008444228209555149, -0.012312185019254684, 0.012055247090756893, -0.04535995051264763, 0.028665931895375252, 0.040110085159540176, -0.007631748914718628, 0.045637719333171844, -0.002121473429724574, -0.021735554561018944, 0.01711067371070385, 0.01824953220784664, 0.03297137841582298, -0.013576040975749493, -0.0072081489488482475, 0.021638335660099983, 0.0347491092979908, 0.014027418568730354, -0.007923408411443233, -0.005058898124843836, 0.018457859754562378, -0.019055068492889404, -0.018360640853643417, 0.006246367935091257, -0.01995782181620598, 0.001775996177457273, -0.007666470482945442, 0.02201332524418831, 0.0098122488707304, 0.029082588851451874, -0.0034374119713902473, 0.01959672011435032, 0.013680205680429935, 0.0048019601963460445, 0.011235822923481464, -0.012923279777169228, -0.04599882289767265, -0.050109829753637314, 0.012985778972506523, -0.01643013395369053, -0.007909519597887993, 0.034832440316677094, 0.005524164065718651, 0.012221909128129482, 0.010881666094064713, -0.004048507660627365, -0.006704689469188452, 0.0010485842358320951, 0.02298552170395851, 0.014020474627614021, -0.004121422301977873, 0.0009583088103681803, 0.03141586109995842, 0.011131659150123596, 0.005756796803325415, 0.0007308840868063271, -0.016110697761178017, 0.03141586109995842, 0.002781178802251816, -0.027110416442155838, -0.02455492690205574, -0.012221909128129482, -0.010694170370697975, 0.01945783570408821, 0.00452418951317668, -0.020193926990032196, -0.03683238849043846, 0.034276898950338364, 0.03499910235404968, 0.01244412548840046, 0.015332940965890884, 0.009360871277749538, -0.02742985263466835, -0.03013811632990837, -0.03491577133536339, 0.004621409345418215, 0.015888482332229614, 0.023429956287145615, 0.015916259959340096, -0.022624420002102852, -0.018166201189160347, 0.01979115977883339, -0.01041639968752861, 0.003777681151404977, -0.022360539063811302, -0.01940228044986725, -0.011096938513219357, -0.0014756566379219294, -0.027318743988871574, 0.019582832232117653, -0.004534605890512466, -0.015569046139717102, -0.0246521458029747, -0.015846816822886467, 0.01227746345102787, -0.0008984144660644233, -0.0012742729159072042, -0.007687303237617016, 0.03288804739713669, 0.006215118803083897, 0.010270570404827595, 0.013527431525290012, -0.017680102959275246, 0.010520563460886478, -0.01284689363092184, 0.010576117783784866, -0.011645535007119179, 0.03455467149615288, -0.005548469256609678, 0.01134693156927824, -0.0011761852074414492, 0.02141611836850643, -0.02955479919910431, -0.006916489452123642, -0.009131710976362228, 0.011735810898244381, -0.021610558032989502, 0.002242998220026493, -0.009263651445508003, -0.015916259959340096, 0.023110520094633102, 0.0018367585726082325, -0.018360640853643417, -0.019777271896600723, -0.024013273417949677, -0.012006636708974838, 0.02413826994597912, -0.019541166722774506, 0.005270698573440313, 0.009666419588029385, -0.035249099135398865, 0.003529423614963889, -0.013902422040700912, -0.004784599877893925, 0.009374760091304779, -0.009916412644088268, 0.0077081359922885895, -0.005614439491182566, -0.009173376485705376, -0.03869345411658287, 0.012333017773926258, 0.011353875510394573, -0.01523572113364935, -0.02242998033761978, -0.01570793054997921, 0.013110775500535965, 0.016027366742491722, -0.021249456331133842, 0.01570793054997921, -0.013624651357531548, 0.01720789261162281, -0.0038714285474270582, 0.001642319024540484, 0.030915874987840652, 0.025193799287080765, -0.02027725800871849, -0.00678454851731658, 0.024207713082432747, 0.004017258062958717, 0.01991615630686283, -0.001078965375199914, -0.04124894365668297, 0.002597155747935176, -0.0060102627612650394, 0.014596848748624325, -0.0032499167136847973, -0.0020867520943284035, -0.007985906675457954, -0.021068904548883438, -0.04272112995386124, -0.02861037850379944, -0.002131889807060361, 0.03794347122311592, 0.01648568920791149, -0.010395566932857037, -0.009103933349251747, 0.015388495288789272, 0.013937142677605152, -0.028040949255228043, 0.0028974951710551977, -0.003433939768001437, 0.024346599355340004, -0.0004047205438837409, -0.018430083990097046, -0.018235644325613976, 0.007638693321496248, -0.0407489575445652, -0.0050797308795154095, 0.02583267167210579, -0.009249763563275337, 0.026888201013207436, -0.013166329823434353, -0.002928744535893202, 0.007972017861902714, 0.018916182219982147, 0.016235696151852608, 0.025124356150627136, -0.006614414043724537, 0.007895630784332752, -0.0024738949723541737, -0.0042776684276759624, 0.021624445915222168, -0.013020499609410763, -0.0031336003448814154, 0.02317996136844158, 0.006683856714516878, 0.0007000688929110765, 0.0181245356798172, -0.002439173636958003, 0.03216584399342537, -0.016666239127516747, 0.030582550913095474, -0.011520538479089737, 0.022582754492759705, -0.0008207255159504712, 0.04058229550719261, -0.008395618759095669, 0.02629099413752556, 0.016582908108830452, 0.012624676339328289, 0.0050797308795154095, -0.019013401120901108, 0.02674931474030018, 0.00340789882466197, 0.01072889193892479, 0.0015251345466822386, -0.020332813262939453, 0.039498988538980484, -0.009326149709522724, 0.0023766751401126385, -0.001757767517119646, 0.01648568920791149, 0.012159410864114761, -0.012714952230453491, 0.03311026468873024, 0.009409481659531593, -0.009478923864662647, 0.02073558047413826, -0.0014765247469767928, -0.00398253696039319, -0.016930121928453445, -0.0009730653837323189, -0.013770480640232563, 0.006097066216170788, -0.022124433889985085, -0.0023263292387127876, -0.008242844603955746, -0.019999487325549126, 0.0009982383344322443, -0.009138654917478561, 0.005729020107537508, -0.005055426154285669, 0.014145471155643463, -0.014971839264035225, -0.03866567835211754, 0.013721871189773083, -0.0046075209975242615, -0.0208605770021677, -0.004975567106157541, -0.017555106431245804, -0.007972017861902714, 0.01345104444772005, 0.011680256575345993, 0.0015789526514708996, 0.0016605478012934327, -0.028027059510350227, 0.010881666094064713, -0.008909493684768677, 0.020096708089113235, 0.043804433196783066, -0.012756617739796638, -0.01648568920791149, 0.004850570112466812, 0.006124843377619982, -0.004229058511555195, -0.018471749499440193, -0.023527175188064575, 0.03736015409231186, -0.007687303237617016, -0.013173273764550686, -0.0033089430071413517, 0.007534529082477093, -0.012346905656158924, 0.012944112531840801, -0.01904117874801159, -0.016207918524742126, -0.022277208045125008, -0.014444074593484402, -0.0028124279342591763, -0.0046422421000897884, -0.015652377158403397, 0.025985445827245712, 0.0020468225702643394, -0.008694222196936607, -0.019707828760147095, -0.00035893177846446633, 0.00938864890486002, 0.056831877678632736, 0.00471168477088213, -0.0023506341967731714, 0.029443690553307533, -0.009728917852044106, -0.0139579763635993, -0.013728815130889416, -0.025360461324453354, 0.02974923886358738, -0.007222037296742201, -0.007749801501631737, 0.004951261915266514, 0.022068878635764122, -0.0038610121700912714, 0.00849283766001463, 0.005558885633945465, 0.015180166810750961, -0.018693964928388596, -0.026415990665555, 0.006267200689762831, -0.018749520182609558, -0.007590083405375481, 0.03441578522324562, 0.021471671760082245, 0.043054454028606415, 0.03991564363241196, 0.024791032075881958, 0.0008684673230163753, 0.009777527302503586, -0.02093002013862133, -0.006218590773642063, -0.0038124024868011475, -0.0023575786035507917, 0.015513491816818714, -0.00188189628534019, 0.028888149186968803, -0.002095432486385107, -0.01940228044986725, -0.02815205603837967, 0.0017794682644307613, -0.010305291973054409, 0.006079705432057381, 0.00511098001152277, -0.013270493596792221, 0.01400658581405878, -0.03494355082511902, 0.005822767503559589, 0.035721305757761, -0.005225560627877712, -0.006086649838835001, 0.006347059737890959, 0.007072735577821732, -0.014089916832745075, 0.015263497829437256, -0.0033106792252510786, -0.0018020372372120619, -0.016124587506055832, 0.0009721973328851163, -0.007367867045104504, -0.03697127476334572, -0.04660991579294205, -0.010437232442200184, 0.006208174396306276, -0.015319052152335644, -0.03147141635417938, -0.020555028691887856, -0.01296494621783495, 0.017555106431245804, -0.02322162687778473, -0.0006896524573676288, -0.00493042916059494, -0.02936035953462124, -0.03344358876347542, 0.014763510785996914, 0.03458244726061821, 0.02762429229915142, 0.00030033953953534365, 0.01000668853521347, -0.013562153093516827, 0.010708059184253216, 0.011520538479089737, -0.02847149223089218, 0.015624599531292915, -0.018985625356435776, -0.016694016754627228, -0.01822175644338131, -0.02312440797686577, -0.000818989472463727, -0.02083279937505722, 0.01802731677889824, 0.011187213473021984, -0.018860628828406334, 0.0014192344387993217, -0.002555490005761385, 0.0012178507167845964, 0.03419356793165207, 0.016277361661195755, 0.01824953220784664, 0.013124664314091206, -0.03183251991868019, 0.014360743574798107, -0.01265245396643877, -0.010409455746412277, -0.02955479919910431, 0.004149199463427067, 0.00037542442441917956, -0.0029356887098401785, -0.01418713666498661, -0.001026883372105658, -0.04058229550719261, -0.008409506641328335, -0.019193952903151512, -0.00945114716887474, -0.014652402140200138, -0.009312261827290058, 0.0016735682729631662, 0.015652377158403397, 0.016610685735940933, -0.007291479967534542, -0.01704123057425022, 0.034887995570898056, -0.035249099135398865, 0.037276823073625565, -0.010471954010426998, -0.014444074593484402, 0.025166021659970284, 0.020166149362921715, -0.02165222354233265, -0.040610071271657944, 0.01766621507704258, 0.006774132139980793, 0.013756591826677322, 0.008138680830597878, -0.003947815392166376, -0.009145598858594894, -0.023013299331068993, 0.00697898818179965, 0.006388725247234106, -0.003847123822197318, 0.006333170924335718, -0.03144364058971405, -0.003300262615084648, 0.026402100920677185, -0.010520563460886478, -0.005104036070406437, -0.02276330627501011, -0.027374299243092537, -0.009090045467019081, 0.00886782817542553, 0.02991590090095997, -0.02501324750483036, -0.021985547617077827, -0.04049896448850632, -0.02129112184047699, 0.008034516125917435, -0.012888559140264988, 0.011555260047316551, -0.0006349663599394262, 0.04574882984161377, 0.014444074593484402, 0.027082640677690506, 0.03761014714837074, 0.018013427034020424, 0.02419382520020008, -0.013464933261275291, -0.011763587594032288, -0.011062216944992542, -0.011194157414138317, 0.0015650640707463026, 0.012388572096824646, 0.0047221011482179165, 0.012180243618786335, -0.02136056497693062, 0.008548391982913017, 0.01206913497298956, 0.021707776933908463, 0.011680256575345993, -0.019832825288176537, -0.03366580605506897, -0.05405417084693909, -0.003378385677933693, 0.00604845630005002, 0.005360973998904228, -0.004520717542618513, -0.023291070014238358, 0.005919987335801125, 0.016874568536877632, -0.013909365981817245, 0.030388111248612404, 0.0011449359590187669, 0.05247087776660919, 0.00626025628298521, -0.002770762424916029, -0.002678750781342387, 0.00956919975578785, -0.032276950776576996, -0.020318923518061638, -0.031721409410238266, -0.010666393674910069, 0.017805099487304688, 0.007673414424061775, 0.031138092279434204, 0.00396864814683795, 0.0051595899276435375, 0.00697204377502203, 0.001019071089103818, -0.03808235749602318, -0.017485663294792175, 0.015916259959340096, -0.032999154180288315, 0.0002415302733425051, -0.033554695546627045, 0.001895784749649465, -0.0020086290314793587, -0.0008372181328013539, -0.002619724487885833, -0.00790257565677166, 0.026040999218821526, -0.0246521458029747, -0.014888507314026356, 0.022541088983416557, -0.02687431126832962, 0.028040949255228043, 0.03622129559516907, 0.01534682884812355, -0.006406086031347513, 0.0015746124554425478, -0.020818911492824554, -0.0074859196320176125, -0.014069084078073502, -0.023471621796488762, 0.005534580443054438, 0.04241558164358139, -0.02220776490867138, -0.01597181335091591, -0.008840051479637623, -0.026346547529101372, -0.0032568611204624176, -0.023013299331068993, 0.007166482973843813, 0.022027213126420975, 0.0027481934521347284, -0.023013299331068993, -0.025152133777737617, -0.0086872773244977, 0.01759677194058895, -0.011756643652915955, -0.007541473489254713, 0.0017395387403666973, -0.0051248688250780106, 0.0002339349885005504, 0.013707982376217842, -0.008590057492256165, 0.007374810986220837, -0.004697796422988176, -0.011569147929549217, 0.0015433632070198655, -0.003034644527360797, 0.006458167918026447, -0.012381627224385738, 0.0014244427438825369, 0.03980453684926033, -0.015332940965890884, 0.006079705432057381, 0.016930121928453445, 0.015444048680365086, -0.01805509254336357, 0.0012560442555695772, -0.022916080430150032, 0.032249175012111664, -0.012152466922998428, -0.006781076546758413, 0.00582971191033721, 0.02305496484041214, 0.007298424374312162, -0.014707956463098526, -0.010110852308571339, -0.001360208261758089, -0.004187393002212048, 0.0069650993682444096, 0.011485816910862923, -0.0021926520857959986, -0.026540987193584442, -0.010215016081929207, -0.0022239014506340027, -0.026346547529101372, 0.010326124727725983, 0.004968622699379921, 0.024638257920742035, -0.043443333357572556, -0.0158745925873518, 0.010652504861354828, -0.020055042579770088, 0.009805304929614067, 0.00016904949734453112, -0.01147887296974659, 0.0012690647272393107, 0.020874464884400368, -0.0074928635731339455, 0.020068930462002754, 0.02455492690205574, 0.011444151401519775, -0.03183251991868019, 0.016221806406974792, -0.01674957200884819, -0.00814562477171421, 0.0009487604256719351, 0.0012898974819108844, -0.02544379234313965, -0.037276823073625565, 0.008555336855351925, -0.0037742089480161667, -0.004076284356415272, -0.004426970146596432, 0.022027213126420975, 0.020888354629278183, -0.00040103140054270625, -0.018166201189160347, 0.007590083405375481, 0.009562254883348942, 0.011034439317882061, 0.016596797853708267, 0.016041256487369537, -0.004253363236784935, -0.003857540199533105, 0.013562153093516827, 0.007513696327805519, -0.006065817084163427, -0.024110494181513786, -0.014860730618238449, -0.014971839264035225, 0.006586636882275343, 0.014944061636924744, 0.003527687396854162, 0.008770608343183994, -0.016930121928453445, -0.0203744787722826, 0.026554875075817108, -0.017166227102279663, 0.0027343048714101315, 0.021624445915222168, -0.011812197975814342, 0.01616625301539898, 0.03105475939810276, -0.018638411536812782, -0.03158252313733101, -0.015041281469166279, -0.020513363182544708, -0.049943163990974426, -0.003312415210530162, 0.005472082179039717, 0.04408220574259758, -0.010020576417446136, -0.0336935818195343, -0.024318821728229523, -0.009721972979605198, -0.04255446419119835, -0.012659397907555103, -0.03502688184380531, 0.030388111248612404, 0.028943702578544617, 0.02302718721330166, -0.00434363866224885, 0.01648568920791149, -0.0008884320850484073, 0.002624932676553726, -0.015471826307475567, 0.014569071121513844, -0.018499527126550674, -0.035443536937236786, 0.028068725019693375, -0.019388392567634583, -0.05427638813853264, 0.011562203988432884, 0.01418713666498661, 0.0009062268072739244, 0.007437309715896845, -0.0032915824558585882, 0.012826060876250267, 0.005669993814080954, 0.0010303555754944682, -0.0005919987452216446, 0.005534580443054438, 0.01834675297141075, 0.017527328804135323, -0.02916591987013817, 0.0044443304650485516, 0.023943832144141197, -0.0001797914010239765, 0.0006054532714188099, 0.02015226148068905, 0.004475580062717199, -0.0019999488722532988, -5.571688961936161e-05, -0.005194311495870352, 0.0010572646278887987, -0.002475630957633257, 0.002267302945256233, 0.0024600063916295767, 0.01487461943179369, 0.013756591826677322, 0.03594352304935455, -0.02324940450489521, 0.006652607582509518, 0.015152390114963055, 0.007603971753269434, 0.0002983864687848836, 0.015791261568665504, 0.0382767990231514, -0.00161020178347826, 0.0016570755979046226, -0.0034912300761789083, 0.003315887413918972, 0.005041537340730429, -0.02569378726184368, -0.018763408064842224, -0.007058847229927778, -0.008791441097855568, 0.0003966912336181849, -0.0012751409085467458, -0.01877729780972004, 0.003183946246281266, -0.012430237606167793, -0.0016284305602312088, 0.025527123361825943, -0.001524266554042697, 0.008076181635260582, -0.007631748914718628, -0.026443766430020332, 0.006051928270608187, 0.008590057492256165, -0.045804381370544434, 0.0012820851989090443, 0.013985753059387207, 0.029110366478562355, 0.012166354805231094, 0.21799442172050476, 0.0001797914010239765, -0.0012820851989090443, 0.0366935059428215, 0.01552737969905138, 0.009346982464194298, 0.02024948224425316, 0.009971966966986656, -0.013291326351463795, 0.028332607820630074, -0.009583087638020515, -0.005888738203793764, -0.019055068492889404, -0.0031596412882208824, 0.01092333160340786, -0.015513491816818714, -0.028263164684176445, -0.01134693156927824, -0.023916054517030716, -0.00012326073192525655, 0.0039269826374948025, -0.009430314414203167, -0.018443971872329712, -0.0045311339199543, 0.021985547617077827, 0.0014253107365220785, -0.009458091109991074, 0.006760243326425552, 0.01793009601533413, 0.008110903203487396, -0.007638693321496248, 0.0045797438360750675, 0.015721820294857025, 0.0007721156580373645, -0.01573570817708969, -0.009965023025870323, 0.019943933933973312, -0.035971302539110184, -0.004100589547306299, 0.02624932862818241, -0.0034269955940544605, -0.02109668217599392, 0.004729045554995537, -0.010951108299195766, 0.014902396127581596, -0.0019600193481892347, -0.019180065020918846, 0.018166201189160347, -0.013180217705667019, 0.002173555549234152, -0.014034362509846687, 0.013138552196323872, 0.01880507357418537, 0.01250662375241518, -0.0011822613887488842, 0.01959672011435032, 0.003819346660748124, 0.0013220147229731083, -0.029638130217790604, -0.02109668217599392, -0.002781178802251816, 0.013131608255207539, -0.027957618236541748, 0.01636069267988205, -0.026068776845932007, 0.011964971199631691, -0.01337465737015009, 0.017457885667681694, 0.0013862492050975561, 0.003484285669401288, -0.0050450097769498825, -0.013805202208459377, -0.02694375440478325, 0.002347162226215005, -0.022804971784353256, -0.009930301457643509, 0.016735682263970375, 0.015596822835505009, 0.018860628828406334, 0.03538798168301582, -0.016513466835021973, 0.0042568352073431015, -0.018430083990097046, -0.014041307382285595, 0.022388314828276634, -0.021916106343269348, 0.02847149223089218, -0.017624549567699432, -0.0074303653091192245, -0.027763178572058678, 0.003222139785066247, 0.003324567573145032, -0.003961704205721617, -0.020888354629278183, 0.008728942833840847, -0.01959672011435032, 0.0015997854061424732, 0.023568840697407722, -0.0246521458029747, -0.028527047485113144, -0.025429904460906982, 0.054248612374067307, 0.009381704032421112, 0.015444048680365086, -0.01851341500878334, 0.005742908455431461, 0.0003042456810362637, 0.04227669537067413, -0.004347111098468304, -0.0011874695774167776, 0.014819065108895302, -0.02276330627501011, 0.01023584883660078, 0.0031526971142739058, 0.004767239093780518, 0.016180140897631645, 0.015402383171021938, -0.010819167830049992, 0.002890550997108221, -0.024999359622597694, 0.02269386313855648, -0.010360845364630222, 0.021832773461937904, 0.006829685997217894, -0.05247087776660919, -0.018041204661130905, -0.005808879155665636, 0.017055118456482887, -0.030277002602815628, -0.03127697855234146, 0.018888404592871666, -0.004347111098468304, 0.017805099487304688, -0.019749494269490242, 0.005013760644942522, 0.011548315174877644, 0.025054914876818657, -0.012617732398211956, -0.021791107952594757, -0.025749340653419495, -0.004197809379547834, 0.014985727146267891, 0.0069928765296936035, 0.013235772028565407, 0.003048533108085394, -0.01831897534430027, 0.008069237694144249, 0.00020713444973807782, -0.0008263677009381354, -0.02762429229915142, -0.0068505192175507545, 0.011555260047316551, -0.00103469577152282, 0.0023818835616111755, 0.03738792985677719, -0.011756643652915955, -0.026110442355275154, -0.030221449211239815, 0.026832645758986473, 0.026110442355275154, -0.03086032159626484, 0.008416451513767242, 0.024735476821660995, -0.010513619519770145, -0.027318743988871574, -0.005416527856141329, -0.17788434028625488, 0.015513491816818714, 0.007374810986220837, -0.00037086723023094237, 0.02380494587123394, 0.008173401467502117, 0.01626347191631794, 0.011499705724418163, -0.021013351157307625, -0.0024443818256258965, 0.01059695053845644, -0.00046960602048784494, -0.017249558120965958, -0.005992901977151632, 0.010194183327257633, 0.004204753320664167, -0.01991615630686283, 0.025166021659970284, 0.04019341617822647, 0.012124689295887947, 0.028429826721549034, -0.034665778279304504, -0.0014756566379219294, -0.0017525593284517527, 0.02406882867217064, -0.006479000672698021, -0.009284484200179577, 0.02409660443663597, -0.0020780717022717, -0.030554773285984993, -0.006315810605883598, -0.008305342867970467, 0.02824927680194378, -0.00023067985603120178, 0.017416220158338547, 0.0018489109352231026, -0.004947789944708347, -0.004298501182347536, -0.004079756792634726, 0.013770480640232563, -3.195447789039463e-05, 0.0028280525002628565, 0.01636069267988205, 0.008138680830597878, -0.00023480301024392247, 0.017263446003198624, 0.016124587506055832, -0.012826060876250267, 0.02155500277876854, -0.013853811658918858, 0.03391579911112785, -0.015513491816818714, 0.0039721205830574036, 0.0034947022795677185, 0.009166431613266468, 0.00548597052693367, 0.004010314121842384, 0.02779095433652401, 0.0007595291826874018, -0.022818859666585922, 0.011937194503843784, -0.001120631000958383, 0.008798385970294476, 0.005301947705447674, -0.0047498783096671104, -0.0448044091463089, 0.011562203988432884, -0.006840102840214968, -0.0024287572596222162, -0.009513645432889462, -6.927990762051195e-05, -0.0049095964059233665, -0.005222088657319546, 0.003326303791254759, 0.0193606149405241, 0.009166431613266468, -0.03966565057635307, 0.003562408732250333, 0.04311000555753708, 0.002873190212994814, -0.0012265311088413, 0.013360768556594849, -0.021666111424565315, 0.011180269531905651, -0.00604845630005002, 0.011985803954303265, -0.027221525087952614, 0.00037889654049649835, -0.022082768380641937, 0.017027340829372406, 0.03763792663812637, -0.007895630784332752, 0.005145701579749584, 0.008319231681525707, 0.015263497829437256, -0.003508590627461672, 0.02629099413752556, -0.01090944278985262, 0.013485766015946865, -0.002463478595018387, 0.0063852532766759396, 0.02223554253578186, -0.04097117483615875, 0.00469432445243001, 0.0244299303740263, 0.027124306187033653, 0.015096835792064667, 0.0032499167136847973, 0.04627659171819687, -0.016013478860259056, -0.00529847526922822, 0.0176384374499321, 0.0304714422672987, 0.008812274783849716, -0.0007981566595844924, 0.0442766435444355, 0.006704689469188452, -0.016221806406974792, 0.008541448041796684, -0.02197165973484516, 0.04774877801537514, -0.029638130217790604, -0.016957899555563927, 0.013332991860806942, 0.0013176746433600783, -0.00413878308609128, -0.10394178330898285, -0.020527252927422523, 0.004090173169970512, 0.010444177314639091, -0.028499269858002663, 0.0013428475940600038, -0.002348898211494088, 0.02197165973484516, -0.025124356150627136, 0.03508243337273598, -0.0117080332711339, -0.022804971784353256, 0.012596899643540382, 0.00413878308609128, 0.009138654917478561, -0.009840025566518307, -0.007874798029661179, -0.0013306951150298119, -0.003046796889975667, 0.04124894365668297, 0.0183884184807539, -0.007791467010974884, 0.011742754839360714, -0.033221371471881866, -0.01229135226458311, -0.01815231330692768, -0.03408246114850044, 0.002874926431104541, 0.00626025628298521, 0.01783287711441517, 0.009777527302503586, -0.008840051479637623, 0.030943652614951134, -0.008965048007667065, -0.020388366654515266, -0.019610609859228134, -0.023957720026373863, -0.0249160286039114, 0.0050450097769498825, -0.023721614852547646, -0.01597181335091591, 0.013937142677605152, -0.014346854761242867, -0.016860678791999817, -0.016513466835021973, 0.006333170924335718, -0.01708289608359337, 0.018832851201295853, 0.012451070360839367, -0.006610941607505083, -0.0014973575016483665, -0.017166227102279663, -0.007117873057723045, -0.020971685647964478, 0.025263242423534393, -0.0012109065428376198, 0.024443818256258965, 0.019568942487239838, -0.021249456331133842, 0.0044721076264977455, 0.013659371994435787, -0.002784651005640626, -0.003909622319042683, 0.033721357583999634, -0.0046422421000897884, 0.02305496484041214, 0.004124894272536039, -0.01959672011435032, -0.015221832320094109, 0.005826239474117756, -0.017818987369537354, 0.01672179438173771, -0.021471671760082245, -0.001174449105747044, -0.006874823942780495, -0.0004891367862001061, -0.026999307796359062, -0.036943498998880386, 0.019874490797519684, 0.0020850161090493202, -0.015332940965890884, -0.015152390114963055, 0.006638718768954277, -0.053665291517972946, 0.038387905806303024, -0.015082946978509426, 0.012867726385593414, -0.009166431613266468, 0.033360257744789124, -0.03780458867549896, 0.01943005807697773, 0.00734703429043293, 0.026499321684241295, -0.0166245736181736, -0.005413055885583162, 0.0236799493432045, -0.014388520270586014, 0.0003528555389493704, 0.023360513150691986, -0.0007230717455968261, -0.01652735471725464, -0.010145573876798153, -0.06466501206159592, 0.025318795815110207, 0.0014765247469767928, -0.0015112459659576416, 0.005541524849832058, -0.009596976451575756, -0.006267200689762831, -0.01288161426782608, 0.01314549706876278, 0.007437309715896845, -0.02504102513194084, 0.001682248548604548, -0.005604023113846779, -0.01684679090976715, -0.02187443897128105, -0.04133227467536926, 0.00394434342160821, 0.005357501562684774, 0.022249430418014526, 0.003992953337728977, 6.152185960672796e-05, -0.001470448449254036, 0.007187315728515387, 0.021916106343269348, -0.008076181635260582, 0.017555106431245804, -0.018499527126550674, 0.0254021268337965, -0.009409481659531593, -0.01756899431347847, 0.017152339220046997, -0.004777655471116304, -0.00472557358443737, 0.02073558047413826, -0.01854119263589382, -0.04091561958193779, 0.00968030747026205, 0.0074650864116847515, 0.01943005807697773, 0.013923254795372486, -0.01423574611544609, -0.004854042548686266, 0.04441552981734276, -0.017332889139652252, -0.011430262587964535, -0.007638693321496248, -0.021888328716158867, -0.015180166810750961, 0.024874363094568253, 0.0007265438907779753, 0.02684653550386429, 0.006694273091852665, -0.004069340415298939, -0.05077647790312767, -0.012159410864114761, 0.008451172150671482, 0.018527302891016006, 0.014763510785996914, 0.008846995420753956, -0.010840000584721565, 0.055359695106744766, 0.025916002690792084, 0.020791133865714073, -0.019124509766697884, 0.009971966966986656, -0.017624549567699432, -0.0332491472363472, -0.012395516037940979, -0.00796507392078638, -0.04744322970509529, 0.001032959669828415, -0.009923356585204601, 0.016180140897631645, 0.0321936197578907, -0.0013489237753674388, -0.005711659323424101, -0.00642344681546092, -0.015277386642992496, -0.017027340829372406, 0.033776912838220596, 0.026652095839381218, -0.022916080430150032, -0.025652121752500534, 0.018721742555499077, 0.009701140224933624, 0.0063852532766759396, -0.02419382520020008, 0.008416451513767242, 0.018110647797584534, 0.009346982464194298, 0.0003873598761856556, -0.00927059631794691, -0.0019027290400117636, 0.0038540679961442947, 0.016610685735940933, 0.04038785398006439, -0.026471544057130814, 0.0117080332711339, 0.01638846844434738, 0.02302718721330166, -0.005864433012902737, 0.026235438883304596, 0.008715054951608181, -0.0004311955417506397, -0.01991615630686283, 0.01115249190479517, -0.016666239127516747, -0.012756617739796638, 0.004058924037963152, 0.021707776933908463, 0.0038505957927554846, -0.0028697182424366474, -0.0070275976322591305, 0.01609680987894535, -0.014541294425725937, 0.00734703429043293, -0.013589929789304733, -0.0038540679961442947, -0.02247164584696293, -0.001524266554042697, 0.004659602884203196, 0.02145778387784958, 0.02736041136085987, -0.006531082559376955, 0.0018263420788571239, 0.010944164358079433, -0.008409506641328335, -0.010735835880041122, 0.000689218461047858, -0.030249224975705147, 0.016569020226597786, 0.010708059184253216, 0.015263497829437256, -0.01232607290148735, -0.006614414043724537, -0.023332735523581505, -0.008117848075926304, 0.041554491966962814, -0.004520717542618513, 0.07899797707796097, 0.020680025219917297, -0.029860345646739006, -0.00011040298704756424, -0.017430109903216362, 0.005288058891892433, 0.010083074681460857, -0.002322857268154621, 0.014131582342088223, -0.02713819406926632, 0.02302718721330166, 0.008874773047864437, -0.024513261392712593, -0.014082972891628742, -0.02638821303844452, 0.007819244638085365, 0.012958001345396042, -6.14676100667566e-05, -0.007673414424061775, 0.014201025478541851, 0.028721487149596214, -0.014930172823369503, 0.033749137073755264, -0.0024582704063504934, -0.035221319645643234, -0.010603895410895348, 0.04274890571832657, 0.013006611727178097, 0.007985906675457954, -0.024027163162827492, 0.01356909703463316, -0.021138347685337067, -0.02883259579539299, -0.002293344121426344, 0.005513747688382864, -0.01652735471725464, 0.0006301921675913036, -0.02213832177221775, -0.007784523069858551, 0.011458040215075016, -0.010666393674910069, 0.027110416442155838, -0.015360717661678791, -0.014527405612170696, 0.019346727058291435, -0.0012621204368770123, 0.0063401153311133385, -0.022291095927357674, -0.012687175534665585], "c08507d2-227e-40fc-8009-f22440e228f1": [-0.010438465513288975, -0.017573971301317215, 0.0016680291155353189, -0.03949614241719246, -0.000942458224017173, 0.008487350307404995, -0.01810356043279171, -0.027385292574763298, -0.017392797395586967, -0.052206262946128845, 0.015107204206287861, 0.0004472756991162896, 0.014898156747221947, -0.000859710038639605, 0.007978666573762894, 0.015817968174815178, 0.02457011304795742, -0.002074801828712225, 0.009720733389258385, -0.01381110679358244, -0.015190823934972286, 0.00731668109074235, -0.030855489894747734, 0.0036653089337050915, -0.026981132104992867, 0.008306175470352173, 0.032973844558000565, -0.006818450056016445, -0.0035189753398299217, 0.009602272883057594, 0.01365780457854271, -0.026019511744379997, -0.019260292872786522, -0.0010478532640263438, -0.015734348446130753, -0.004937017802149057, 0.001445915549993515, -0.011393117718398571, 0.003132236422970891, -0.0198456272482872, 0.019009433686733246, -0.00017867074348032475, -0.0239569041877985, 0.0023117228411138058, 0.008724271319806576, 0.02788700722157955, 0.013288486748933792, -0.012333833612501621, -4.627365342457779e-05, -0.006828902289271355, 0.011455832049250603, 0.01594339683651924, -0.006706957705318928, 0.009337479248642921, -0.01789451204240322, 0.0019389204680919647, -0.0014067190932109952, -0.005916059482842684, 0.008257397450506687, 0.005529320333153009, 0.0008832279709167778, 0.007407268509268761, -0.010396655648946762, -0.002999839372932911, -0.02837478742003441, -0.024904590100049973, -0.021336836740374565, -0.011344339698553085, -0.020821183919906616, -0.0050206370651721954, 0.018201114609837532, 0.026549100875854492, 0.00563732860609889, 0.007804459892213345, 0.0016305746976286173, -0.013943503610789776, 0.01810356043279171, -0.0036478883121162653, -0.014410377480089664, -0.020542453974485397, 0.006292345933616161, -0.010124892927706242, 0.01516295038163662, -0.01172062661498785, 0.017685463652014732, 0.055801887065172195, -0.02689751423895359, 0.0031862405594438314, -0.0014441735111176968, -0.0024685089010745287, 0.0036409199237823486, 0.016988636925816536, 0.01071022730320692, 0.014013187028467655, 0.003290764521807432, 0.007351522333920002, 0.03227701783180237, 0.005072899162769318, -0.004595572594553232, -0.02146226540207863, -0.027120498940348625, 0.005818503443151712, -0.00304164900444448, -0.00746998330578208, -0.026200687512755394, -0.0012290282174944878, 0.008682461455464363, -0.005233169067651033, 0.010835656896233559, 0.013002787716686726, -0.0201940406113863, 0.025503860786557198, 0.0031287523452192545, -0.007226093672215939, -0.01601308025419712, -0.007121569477021694, 0.015051458030939102, -0.037015438079833984, -0.006609402131289244, -0.024974271655082703, 0.03032590076327324, 0.019734134897589684, 0.02440287359058857, -0.03194253891706467, 0.0012525460915639997, -0.014703044667840004, -0.005846376530826092, -0.010800815187394619, 0.017671527341008186, 0.0015173403080552816, 0.034451115876436234, 0.02238207682967186, -0.012396548874676228, 0.004978827200829983, -0.03394940122961998, -0.0032437287736684084, -0.03107847459614277, 0.004079920705407858, -0.007679031230509281, -0.033391937613487244, 0.0070449188351631165, 0.019427530467510223, -0.005585066508501768, -0.02833297662436962, 0.009330510161817074, 0.0157482847571373, -0.004741906188428402, 0.035231560468673706, 0.018354417756199837, -0.01998499222099781, 0.012647406198084354, -0.02765008620917797, -0.022047599777579308, 0.012737993150949478, 0.011504610069096088, 0.007372427266091108, -0.015093267895281315, 0.03397727385163307, -0.009448971599340439, -0.01112135499715805, -0.00935838371515274, 0.011755467392504215, -0.02179674245417118, -0.013393010944128036, -0.007163379341363907, 0.022437822073698044, 0.0030695218592882156, -0.03244425356388092, -0.010187607258558273, -0.018953688442707062, -0.0006576302694156766, 0.02470947802066803, -0.03205403313040733, 0.03450686112046242, 0.022200901061296463, 0.0013910405104979873, 0.027914881706237793, -0.012717088684439659, -0.014271012507379055, -0.025420241057872772, 0.0352594368159771, -0.0037977059837430716, 0.009400193579494953, 0.024556174874305725, -0.028207547962665558, -0.02036127820611, 0.015734348446130753, 0.014605489559471607, 0.003363931318745017, 0.005933479871600866, 0.009483812376856804, 0.00976951140910387, -0.04250643402338028, -0.006602433975785971, -0.6047341823577881, -0.0034911022521555424, 0.007344554178416729, -0.02101629599928856, 0.01861921139061451, 0.011623070575296879, 0.0023988261818885803, 0.004933533724397421, -0.0004742777382489294, 0.020932676270604134, 0.003290764521807432, 0.00012847743346355855, 0.011302530765533447, -0.019762007519602776, -0.009079652838408947, -0.02142045460641384, 0.025657162070274353, 0.006386417429894209, -0.010598734952509403, 0.01977594383060932, -0.01953902281820774, 0.029824186116456985, -0.008661556988954544, -0.008013508282601833, 0.009671955369412899, -0.006898585241287947, 0.016166381537914276, -0.009713765233755112, -0.017978131771087646, 0.012257182970643044, -0.049614068120718, 0.02320433221757412, 0.036262866109609604, -0.011936643160879612, 0.043760720640420914, 0.006086782086640596, 0.002816922264173627, 0.021364709362387657, 0.01834048144519329, 0.029991425573825836, -0.016040952876210213, -0.012298992834985256, -0.0004285484610591084, 0.03545454517006874, 0.00019739796698559076, -0.00781839620321989, -0.013420883566141129, 0.00908662099391222, -0.01786663942039013, -0.020612135529518127, 0.0008919382817111909, -0.018354417756199837, 0.0093235420063138, 0.00606587715446949, 0.017086192965507507, -3.6392866604728624e-05, 0.040638938546180725, 0.0018622695934027433, 0.01594339683651924, 0.01800600439310074, 0.017128001898527145, -0.007365459110587835, -7.354788976954296e-05, -0.0489451140165329, -0.044262439012527466, 0.029043739661574364, -0.008354953490197659, -0.01913486421108246, 0.026367925107479095, -0.00426806416362524, 0.008633683435618877, 0.004219286143779755, 0.0009215534082613885, -0.013037629425525665, -0.013539344072341919, 0.03210977837443352, 0.030102916061878204, 0.002092222450301051, 0.007013561669737101, 0.02583833783864975, -0.003686213633045554, -0.003919650800526142, -0.004403945058584213, -0.016960764303803444, 0.03740566223859787, 0.010549957863986492, -0.019274229183793068, -0.007393332198262215, 0.006414290517568588, -0.007386364042758942, 0.016640223562717438, 0.0037036342546343803, 0.002865700051188469, -0.03606775403022766, 0.03411664068698883, 0.037349916994571686, -0.0024162468034774065, -0.013079438358545303, -0.009344447404146194, -0.025350557640194893, -0.0318310484290123, -0.028486277908086777, -0.010480274446308613, 0.010807783342897892, 0.013999249786138535, 0.00373499165289104, -0.02689751423895359, 0.00537253450602293, 0.007672063075006008, -0.006658179685473442, 0.005079867318272591, -0.012612564489245415, -0.014926029369235039, -0.007198220584541559, 0.0137762650847435, -0.023315824568271637, 0.01629181019961834, -0.010870497673749924, -0.01560891978442669, -0.016542667523026466, -0.01563679240643978, 0.013880789279937744, -0.017337050288915634, 0.0030921688303351402, -0.015190823934972286, 0.024556174874305725, 0.011323435232043266, 0.013093375600874424, 0.0013370363740250468, 0.004383040592074394, 0.012724056839942932, -0.016194254159927368, 0.015859777107834816, -0.011232847347855568, 0.012020261958241463, -0.011379181407392025, 0.0019615674391388893, -0.005585066508501768, 0.010598734952509403, -0.038074616342782974, 0.0006968267844058573, 0.002132290042936802, -0.0008823568932712078, -0.013337264768779278, -0.013455725274980068, -0.006605918053537607, -0.021072041243314743, 0.012452295050024986, -0.00814590509980917, -0.015859777107834816, -0.030716124922037125, -0.029517581686377525, -0.024040523916482925, 0.027691897004842758, -0.0201940406113863, 0.009706797078251839, 0.004734938032925129, -0.03835334628820419, 0.004376071970909834, -0.01728130504488945, -0.01838229037821293, 0.007253966759890318, -0.014187393710017204, 0.011023799888789654, -0.012633469887077808, -0.020444897934794426, -0.042868781834840775, 0.01360205840319395, -0.0017978131072595716, -0.027496784925460815, -0.017337050288915634, -0.018507719039916992, 0.03486921265721321, 0.017713336274027824, -0.026855703443288803, 0.015093267895281315, -0.007132022175937891, 0.007267903536558151, 0.01324667688459158, 0.0013448756653815508, 0.03333619236946106, 0.0201940406113863, -0.018368354067206383, -0.011943611316382885, 0.027566468343138695, 0.029824186116456985, 0.022019727155566216, 0.010870497673749924, -0.020277658477425575, -0.0003943603951483965, -0.003752412274479866, 0.0077138724736869335, -0.02059819921851158, 0.008989065885543823, -0.011497641913592815, -0.021518010646104813, -0.023260077461600304, -0.02765008620917797, -0.01608276180922985, 0.03723842278122902, 0.0201940406113863, -0.0124035170301795, -0.010313035920262337, 0.004585120361298323, 0.008020476438105106, -0.018019940704107285, 0.014396441169083118, -0.018507719039916992, 0.008759113028645515, -0.0021845519077032804, -0.010598734952509403, -0.009560463018715382, -0.00690555339679122, -0.03442324325442314, 0.0008784372475929558, 0.01662628725171089, -0.023915095254778862, 0.03066037781536579, -0.006849807221442461, 0.009853131137788296, -0.00351723306812346, 0.026855703443288803, 0.020849056541919708, 0.020417025312781334, 0.004072952549904585, 0.0017699400195851922, -0.0016314457170665264, 0.012717088684439659, 0.016375429928302765, -0.010257290676236153, 0.003353478852659464, 0.022869855165481567, 0.008731239475309849, -0.0005295883747749031, 0.02101629599928856, 0.01937178522348404, 0.04877787455916405, -0.031022727489471436, 0.031301457434892654, -0.015427744947373867, -0.0060693612322211266, -0.0012751930626109242, 0.026186751201748848, -0.021977916359901428, 0.01416648831218481, 0.025475986301898956, 0.02245175838470459, 0.014110742136836052, -0.013469661585986614, 0.03144082427024841, -0.0011750241974368691, 0.024584049358963966, -0.01478666439652443, -0.006508362013846636, 0.032360635697841644, 0.00811106339097023, 2.2606040147366002e-05, 0.008940287865698338, 0.019566895440220833, 0.008222555741667747, -0.01796419359743595, 0.02101629599928856, 0.017852701246738434, -0.016068825498223305, 0.023106776177883148, -0.013330296613276005, -0.004180960822850466, -0.03905017301440239, 0.003022486111149192, 0.00200163503177464, 0.0031182998791337013, -0.02649335376918316, -0.021308962255716324, -0.01796419359743595, -0.014744854532182217, 0.003459744853898883, -0.008166809566318989, 0.01930210180580616, 0.006299314089119434, 0.022730490192770958, -0.002543417736887932, -0.027691897004842758, 0.009337479248642921, -0.0058951545506715775, -0.010870497673749924, -0.008745175786316395, -0.018228989094495773, 0.0024005682207643986, 0.017671527341008186, 0.021127788349986076, -0.010396655648946762, 0.002796017564833164, -0.012751930393278599, 0.011964515782892704, -0.01944146677851677, 0.008633683435618877, 0.04476415365934372, -0.012326865456998348, -0.009504716843366623, 0.011316467076539993, -0.0033726415131241083, 0.006285377778112888, -0.018465910106897354, -0.03442324325442314, 0.051007721573114395, -0.03291809558868408, 0.013337264768779278, -0.028221484273672104, 0.016486922279000282, -0.037656519562006, 0.017546098679304123, -0.016779588535428047, -0.01834048144519329, -0.005006700288504362, -0.026200687512755394, 0.010849593207240105, -8.106055611278862e-05, -0.013936535455286503, 0.0410570353269577, -0.0020538968965411186, -0.014689108356833458, -0.022437822073698044, 0.002430183347314596, 0.013351201079785824, 0.057474274188280106, 0.014926029369235039, -0.004125214647501707, 0.013992281630635262, -0.02574078179895878, -0.0003924005723092705, -0.005093803629279137, -0.01834048144519329, 0.025866210460662842, -0.0082992073148489, -0.008208619430661201, 0.0047523584216833115, 0.019051244482398033, -0.001455496996641159, 0.007393332198262215, 0.020612135529518127, 0.020235849544405937, -0.017155874520540237, -0.024667667225003242, 0.003022486111149192, -0.01334423292428255, -0.003139204578474164, 0.02882075496017933, 0.02365030162036419, 0.030548885464668274, 0.028569897636771202, 0.01683533564209938, 0.002586969407275319, 0.011776372790336609, -0.04088979586958885, -0.004849914461374283, -0.0009772995254024863, -0.01775514706969261, 0.009351415559649467, -0.016333619132637978, 0.028193611651659012, 0.01916273683309555, -0.020681818947196007, -0.017978131771087646, 0.008194683119654655, -0.006222662981599569, -0.006504877936094999, 0.002463282784447074, -0.005076383240520954, 0.007407268509268761, -0.02320433221757412, 0.0027873071376234293, 0.026786021888256073, -0.014257076196372509, -0.003017259994521737, -0.004435302689671516, -0.00351723306812346, -0.011539451777935028, 0.02682783082127571, -0.0007726066978648305, 0.005121676716953516, -0.017908448353409767, -0.0008161583682522178, -0.012884327210485935, -0.03277873247861862, -0.04465265944600105, -0.020444897934794426, -0.0053098201751708984, -0.009288701228797436, -0.029684821143746376, -0.007386364042758942, -0.015051458030939102, 0.012744962237775326, -0.021740995347499847, 0.0001709403150016442, -0.002644457621499896, -0.022047599777579308, -0.04086192324757576, 0.00439697690308094, 0.037907376885414124, 0.015734348446130753, 0.009525622241199017, -1.665511263126973e-06, -0.017824828624725342, 0.022563250735402107, -0.007107633166015148, -0.01998499222099781, 0.011908769607543945, -0.01144886389374733, -0.018465910106897354, -0.022228773683309555, -0.02713443525135517, 0.0032350183464586735, -0.01857740245759487, 0.02268867939710617, 0.004010238219052553, -0.02461192198097706, -0.015232633799314499, -0.004484080243855715, 0.0008871476165950298, 0.0366252139210701, 0.024932462722063065, 0.01735098659992218, 0.01796419359743595, -0.03651372343301773, 0.00867549329996109, -0.019274229183793068, -0.007344554178416729, -0.019636578857898712, 0.008375857956707478, -0.0066477274522185326, -0.0013109053252264857, -0.008389794267714024, 0.0014999196864664555, -0.019636578857898712, 0.007428173441439867, -0.023942967876791954, 0.007337586022913456, -0.010243353433907032, 0.010306067764759064, -0.009442002512514591, -0.005679138470441103, 0.032388508319854736, -0.0028047277592122555, -0.01416648831218481, 0.019051244482398033, -0.027301672846078873, 0.038213979452848434, -0.0006937781581655145, -0.006090266164392233, 0.010654481127858162, 0.03018653579056263, -0.015929460525512695, -0.03185892105102539, 0.004069468472152948, 0.008076222613453865, 0.019427530467510223, -0.002139258198440075, -0.008152873255312443, 0.0020469287410378456, -0.017824828624725342, -0.0008170293876901269, -0.0043412307277321815, -0.0014720465987920761, 0.0029928709845989943, -0.013825043104588985, 0.013950471766293049, 0.02898799441754818, -0.010368782095611095, -0.019106989726424217, -0.031189966946840286, -0.02569897100329399, -0.01765759103000164, 0.007309712935239077, 0.026367925107479095, -0.022200901061296463, -0.028597770258784294, -0.009846162050962448, -0.019622642546892166, 0.015511363744735718, 0.0036548564676195383, 0.012960977852344513, 0.007985634729266167, 0.057753004133701324, 0.014410377480089664, 0.026813894510269165, 0.022326329723000526, 0.02416595257818699, 0.011023799888789654, -0.015274442732334137, -0.022368140518665314, -0.020012864843010902, -0.02621462382376194, 0.009351415559649467, 0.008682461455464363, 0.02358061820268631, -0.0031339784618467093, -0.021504074335098267, 0.023538809269666672, 0.01831260696053505, 0.01970626227557659, 0.011455832049250603, -0.005933479871600866, -0.0284026600420475, -0.05095197260379791, 0.0038987458683550358, 0.021782804280519485, 0.005860313307493925, -0.006118139252066612, -0.024751286953687668, 0.003337800269946456, 0.040917668491601944, -0.032081905752420425, 0.01142795942723751, 0.0005117321852594614, 0.035370927304029465, 0.0011941868579015136, -0.0030939108692109585, -0.003397030523046851, 0.020040737465023994, -0.03093910962343216, -0.016208190470933914, -0.038213979452848434, -0.017950257286429405, 0.007456046529114246, 0.003957976121455431, 0.037461407482624054, 0.00689510116353631, 0.0062749250791966915, 0.0026148424949496984, -0.002303012413904071, -0.03709905967116356, -0.0019964086823165417, -0.000330557202687487, -0.043481990694999695, 0.004644350614398718, -0.03472984582185745, -0.0076302532106637955, -0.009957654401659966, -0.02351093478500843, 0.01183908712118864, -0.004682675935328007, 0.029378216713666916, -0.03305746242403984, -0.015302316285669804, 0.037768010050058365, -0.007476951461285353, 0.02388722263276577, 0.030994854867458344, 0.014800600707530975, 0.004125214647501707, 0.0011785082751885056, -0.028737137094140053, -0.01434069499373436, -0.009881003759801388, -0.033419813960790634, 0.001918015768751502, 0.04189322516322136, -0.017615780234336853, -0.006734830792993307, -0.018493782728910446, -0.014800600707530975, 0.0001482934458181262, -0.043621357530355453, 0.001454625860787928, 0.019720198586583138, 0.0023082387633621693, -0.041530877351760864, -0.02659090980887413, -0.015371998772025108, 0.019246356561779976, -0.013845948502421379, 0.006100718397647142, 0.010619640350341797, -0.01594339683651924, 0.006372481118887663, 0.013023692183196545, 0.004146119579672813, 0.007651158142834902, -0.0027402713894844055, -0.003142688889056444, 0.011866959743201733, 0.007463014684617519, -0.0024005682207643986, -0.006985688582062721, 0.0028866049833595753, 0.04052744433283806, -0.028876502066850662, -0.0011663137702271342, 0.02261899784207344, 0.021364709362387657, -0.021852487698197365, -0.002076543867588043, -0.022200901061296463, 0.030716124922037125, -0.017685463652014732, -0.010424528270959854, 0.015358062461018562, 0.017880575731396675, 0.007463014684617519, -0.01970626227557659, -0.014243138954043388, -0.0007464757072739303, 0.01310731191188097, 0.0028709264006465673, 0.012974915094673634, -0.023329760879278183, -0.004170508123934269, -0.0038116425275802612, 0.008034412749111652, -0.02457011304795742, 0.012354739010334015, 0.00592999579384923, 0.01605488918721676, -0.061042025685310364, -0.017615780234336853, 0.00717034749686718, 0.002809954108670354, 0.009504716843366623, -0.004619961604475975, -0.01680746115744114, 0.0014607231132686138, 0.03364279866218567, -0.0033151532988995314, 0.0076163168996572495, 0.01878645084798336, 0.008020476438105106, -0.03194253891706467, 0.020305532962083817, -0.024291381239891052, -0.013079438358545303, 0.03180317580699921, 0.004574667662382126, -0.02351093478500843, -0.03308533504605293, 0.02581046335399151, -0.006546687800437212, -0.0027367870789021254, -0.01160216610878706, 0.02731560915708542, 0.03450686112046242, 0.010682354681193829, -0.011044704355299473, 0.009658019058406353, 0.01119103841483593, 0.0016575766494497657, 0.007964730262756348, 0.006828902289271355, 0.004975343123078346, 0.006159948650747538, 0.0017159359995275736, -0.016138508915901184, -0.024751286953687668, -0.03840909153223038, -0.03255574777722359, -0.022465694695711136, 0.013462693430483341, 0.004877787549048662, 0.00980435311794281, 0.0049614068120718, -0.009253859519958496, -0.020277658477425575, 0.030994854867458344, -0.0297684408724308, -0.0017664559418335557, 0.03679245337843895, 0.0051181926392018795, 0.027747642248868942, 0.039105918258428574, -0.028082119300961494, -0.029629074037075043, -0.010173670947551727, -0.019106989726424217, -0.04526586830615997, -0.002303012413904071, 0.012605596333742142, 0.034478988498449326, 0.004180960822850466, -0.01396440900862217, -0.02960120141506195, -0.008320111781358719, -0.04119639843702316, -0.017462478950619698, -0.03079974465072155, 0.028319040313363075, 0.02731560915708542, 0.027636149898171425, -0.0001325059711234644, 0.026131004095077515, -0.007483919616788626, 0.0065710763446986675, -0.03804674372076988, 0.0026636202819645405, -0.009811321273446083, -0.012082976289093494, 0.030130790546536446, -0.028765009716153145, -0.04866638407111168, 0.013086406514048576, 0.007456046529114246, -0.01977594383060932, 0.00894725602120161, -0.002097448566928506, 0.007379395421594381, 0.003269859589636326, -0.0037245391868054867, 0.010382719337940216, 0.00997855979949236, 0.0237896665930748, 0.013163058087229729, -0.030381647869944572, -0.005950900726020336, 0.03414451330900192, -0.006626822520047426, 0.00047471324796788394, 0.011525514535605907, 0.01115619670599699, -0.013469661585986614, 0.007048402912914753, -0.0069229742512106895, -0.023733919486403465, 0.004386524669826031, 0.015204760245978832, -0.0009729443700052798, 0.012201436795294285, 0.004062500316649675, 0.04100128635764122, -0.03771226480603218, -0.013985313475131989, 0.015274442732334137, 0.0013779749860987067, 0.0057871462777256966, 0.016124572604894638, 0.025434177368879318, -0.0037768010515719652, 0.0028221483808010817, 0.0024981240276247263, 0.013274550437927246, 0.0030695218592882156, -0.0239569041877985, -0.011553388088941574, -0.01287039089947939, 0.0031513990834355354, 0.003710602642968297, -0.003489360213279724, -0.0030695218592882156, 0.011253752745687962, -0.015441681258380413, 0.0011680559255182743, 0.013511471450328827, -0.007895047776401043, 0.004909144714474678, -0.02673027478158474, -0.028514152392745018, 0.004006754141300917, 0.002792533254250884, -0.03754502534866333, -0.0005187004571780562, 0.010877465829253197, 0.015399872325360775, -0.0014833699679002166, 0.2063722163438797, 0.016027016565203667, 0.001611411920748651, 0.04412307217717171, 0.01337907463312149, -0.0069299424067139626, 0.03202616050839424, 0.0054004075936973095, -0.018019940704107285, 0.013685678131878376, -0.011748499237000942, -0.001487725181505084, -0.004069468472152948, -0.0039684283547103405, 0.021740995347499847, -0.0146333621814847, -0.01944146677851677, -0.011929674074053764, -0.012333833612501621, 0.003909198101609945, -0.010313035920262337, -0.0018901426810771227, -0.016445111483335495, -0.008800921961665154, 0.018256861716508865, 0.01683533564209938, -0.007908984087407589, -0.00746998330578208, 0.011518546380102634, 0.017364922910928726, -0.01144886389374733, -0.010793847031891346, 0.010326973162591457, -0.009574400261044502, -0.02494639903306961, -0.015873713418841362, 0.018215052783489227, -0.0024911556392908096, -0.007929888553917408, 0.015344126150012016, -0.001916273613460362, -0.04066681116819382, 0.018870068714022636, -0.020835120230913162, 0.014661235734820366, 0.005898638628423214, -0.02303709276020527, 0.02097448520362377, -0.027636149898171425, 0.0052087800577282906, -0.00351723306812346, 0.012981883250176907, 0.010445433668792248, 0.018535591661930084, -0.0008091900963336229, 0.007323649246245623, -0.004383040592074394, 0.012480167672038078, -0.013156089931726456, -0.02781732566654682, -0.003825579071417451, 0.005811535287648439, -0.01091927569359541, 0.017601843923330307, -0.022423885762691498, 0.010814751498401165, -0.02659090980887413, 0.03659734129905701, 0.005592035129666328, 0.009107526391744614, -0.0060693612322211266, -0.006574560888111591, -0.01988743618130684, -0.006954331416636705, -0.024793097749352455, -0.013595090247690678, 0.02002680115401745, 0.006431711371988058, -0.0008936803205870092, 0.02576865442097187, -0.00814590509980917, 0.004055531695485115, -0.020751502364873886, 0.004888239782303572, 0.009483812376856804, -0.006320219021290541, 0.03018653579056263, -0.018800387158989906, -0.006518814712762833, -0.027190180495381355, 0.007832333445549011, 0.0024336674250662327, -0.011365245096385479, -0.02330188825726509, 0.01307247020304203, -0.018047813326120377, 0.009253859519958496, 0.026618782430887222, -0.014271012507379055, -0.03905017301440239, -0.013797170482575893, 0.06249142438173294, 0.005825472064316273, 0.03787950426340103, -0.02285591885447502, 0.021127788349986076, 0.024110207334160805, 0.034033019095659256, -0.004323810338973999, 0.0037489281967282295, 0.00022026259102858603, -0.02337156981229782, 0.00937928818166256, -0.0027977596037089825, -0.0038952617906033993, 0.01769939996302128, 0.01657054014503956, -0.007240030448883772, 0.008090158924460411, -0.026981132104992867, 0.016695968806743622, -0.0014964354922994971, 0.015483491122722626, 0.02292560040950775, -0.03289022296667099, -0.02957332879304886, 0.003313411260023713, 0.034785594791173935, -0.045600343495607376, -0.020305532962083817, 0.025406304746866226, -0.022911664098501205, 0.009065716527402401, -0.018368354067206383, -0.00704143475741148, 0.0065501718781888485, 0.01803387701511383, -0.013629931956529617, -0.015330188907682896, -0.03938464820384979, 0.004491048399358988, 0.02436106465756893, 0.01991530880331993, 0.00015406405145768076, -0.006024067755788565, -0.0029458352364599705, -0.0013544571120291948, -0.006313250865787268, -0.009058748371899128, -0.016751715913414955, -0.004156571812927723, 0.003001581411808729, -0.0036234993021935225, -0.001058305730111897, 0.028514152392745018, -0.009483812376856804, -0.011302530765533447, -0.023009220138192177, 0.016347555443644524, 0.02562928944826126, -0.04548885300755501, 0.0014964354922994971, 0.023692110553383827, -0.00537253450602293, -0.010675386525690556, -0.012933105230331421, -0.17738422751426697, 0.02050064317882061, 0.007100665010511875, -0.013720518909394741, 0.024807034060359, 0.021434390917420387, 0.008863636292517185, -0.005250589922070503, 0.0029893869068473577, -0.010103988461196423, 0.01650085859000683, 0.010124892927706242, -0.002980676479637623, -0.0033587052021175623, 0.008577937260270119, 0.001743808970786631, -0.0036234993021935225, 0.02108597755432129, 0.0482482872903347, 0.007867174223065376, 0.020082548260688782, -0.03863207623362541, -0.01687714457511902, -0.0038987458683550358, 0.028960121795535088, 0.0005317659233696759, -0.007295776624232531, 0.018368354067206383, 0.0012081234017387033, -0.031022727489471436, -0.0010556925553828478, -0.009037842974066734, 0.02385934814810753, -0.011114386841654778, 0.02522512897849083, 0.01225021481513977, 0.013037629425525665, 0.0012490620138123631, -0.015288379974663258, 0.015511363744735718, 0.016723843291401863, 0.009936749935150146, 0.023901158943772316, 0.002743755467236042, 0.0015486974734812975, 0.028876502066850662, 0.016208190470933914, -0.010076114907860756, 0.02450042963027954, -0.013016724027693272, 0.030688252300024033, -0.019789880141615868, 0.005794114898890257, -0.0038186106830835342, 0.01216659601777792, 0.00032032254966907203, -0.0016828366788104177, 0.025657162070274353, 0.001645382260903716, -0.005734884180128574, 0.025587478652596474, 0.003139204578474164, 0.01666809618473053, 0.006543203257024288, 0.015455617569386959, -0.025266939774155617, 0.022981347516179085, 0.02402658760547638, -0.004776747431606054, -0.009755575098097324, -0.015804031863808632, -0.0003804238804150373, -0.007692967541515827, 0.015650728717446327, 0.007915952242910862, 0.015413808636367321, -0.0355939120054245, 0.013650836423039436, 0.03634648397564888, 0.0020451867021620274, 0.009762543253600597, 0.011267689056694508, -0.017100129276514053, -0.015650728717446327, -0.0035555586218833923, 0.016472985967993736, -0.008375857956707478, -0.014396441169083118, -0.013567217625677586, 0.010529052466154099, 0.03066037781536579, -0.0007538794889114797, -0.016166381537914276, -2.386835831202916e-06, 0.022800171747803688, -0.010975021868944168, 0.024681605398654938, -0.012117817997932434, 0.012187500484287739, -0.0037454438861459494, 0.010738100856542587, 0.0171140655875206, -0.017169812694191933, 0.017769083380699158, 0.024723414331674576, 0.03698756545782089, 0.01035484578460455, 0.002214167034253478, 0.04328687861561775, -0.02149013802409172, -0.010494211688637733, 0.011455832049250603, 0.031635936349630356, 0.01204813551157713, -0.004470143932849169, 0.03857633098959923, 0.0035485904663801193, -0.034033019095659256, 0.01091927569359541, -0.02203366346657276, 0.05014365538954735, -0.02525300346314907, -0.011950579471886158, 0.020835120230913162, 0.004355167504400015, -0.005912575405091047, -0.10279588401317596, -0.03294597193598747, 0.01697470061480999, 0.002719366457313299, -0.005358597729355097, 0.015929460525512695, -0.0034022568725049496, 0.04822041466832161, -0.018215052783489227, 0.02957332879304886, -0.009476844221353531, -0.01946933940052986, 0.009442002512514591, -0.007240030448883772, 0.0009442002628929913, -0.005494479089975357, -0.02748284861445427, -0.0038778409361839294, -0.009985527954995632, 0.029238851740956306, 0.017713336274027824, 0.0012072523823007941, 0.006226147525012493, -0.0146333621814847, -0.007811428047716618, -0.01756003499031067, -0.02470947802066803, 0.006546687800437212, 0.013859884813427925, 0.009337479248642921, 0.017573971301317215, -0.01657054014503956, 0.016472985967993736, -0.013351201079785824, -0.017462478950619698, -0.02153194695711136, -0.017978131771087646, -0.026437608525156975, 0.015539237298071384, -0.022117281332612038, -0.013985313475131989, 0.008250429295003414, -0.013253645040094852, -0.022702615708112717, -0.004065984394401312, -0.005968321580439806, -0.015971269458532333, 0.021336836740374565, 0.01343482080847025, -0.007574507035315037, -0.00968589261174202, -0.010675386525690556, -0.009448971599340439, -0.022632934153079987, 0.03905017301440239, 0.007260934915393591, 0.025517797097563744, 0.01725343056023121, -0.0013170025777071714, 0.005424796603620052, 0.014675172045826912, 0.0016514795133844018, 0.003679245477542281, 0.04055531695485115, 0.00042680639307945967, 0.02912735939025879, 0.0008192069944925606, -0.018326545134186745, -0.009553494863212109, -0.0025312232319265604, -0.00426806416362524, 0.008459476754069328, -0.03860420361161232, 0.012347770854830742, 0.0012656116159632802, 2.0891193344141357e-05, -0.023315824568271637, -0.018354417756199837, 0.015371998772025108, 0.003930103033781052, -0.018326545134186745, 0.0008780017378740013, -0.009219018742442131, -0.04732847586274147, 0.03495283052325249, 0.016027016565203667, 0.0011889607412740588, -0.0009607499232515693, 0.033559177070856094, -0.022437822073698044, 0.01636149361729622, -0.0003915295528713614, 0.025057891383767128, -0.005539773032069206, -0.005752305034548044, 0.013615995645523071, -0.022981347516179085, 0.011922705918550491, 0.024277444928884506, -0.0071285380981862545, -0.031635936349630356, -0.012347770854830742, -0.047830190509557724, 0.015079331584274769, 0.004376071970909834, 0.002282107714563608, 0.0006502264877781272, -0.02659090980887413, 0.0019458887400105596, -0.01885613240301609, -0.001965051516890526, -0.002222877461463213, -0.015218696556985378, 0.0011384407989680767, -0.020082548260688782, -0.023162521421909332, -0.029071614146232605, -0.020040737465023994, -0.008752143941819668, 0.00036409200401976705, 0.018521655350923538, 0.005616423673927784, -0.013253645040094852, -0.015358062461018562, 0.009051780216395855, 0.025782590731978416, -0.009302637539803982, 0.01478666439652443, -0.015873713418841362, 0.03300171718001366, -0.0243053175508976, -0.01204813551157713, 0.004337746649980545, 0.0054073757492005825, -0.011637006886303425, 0.022159092128276825, -0.01704438216984272, -0.057139795273542404, 0.023190395906567574, -0.0033761258237063885, 0.01281464472413063, 0.013560249470174313, -0.025336621329188347, -0.012940073385834694, 0.0234412532299757, -0.007658126298338175, -0.006254020147025585, -0.003836031537503004, -0.01636149361729622, -0.010048242285847664, 0.009915845468640327, 0.027608277276158333, 0.022981347516179085, 0.005588550586253405, -0.011727594770491123, -0.0499764159321785, -0.006414290517568588, -0.007379395421594381, 0.017406733706593513, 0.017615780234336853, 0.0004302905290387571, -0.00470706494525075, 0.05741852521896362, 0.010724164545536041, 0.009644082747399807, -0.015218696556985378, 0.001956341089680791, -0.027873070910573006, -0.03668096289038658, -0.009051780216395855, -0.0041739922016859055, -0.02946183644235134, 0.004717517178505659, -0.022019727155566216, 0.032249145209789276, 0.0414193831384182, 0.0013692646753042936, 0.0004283307061996311, -0.016751715913414955, -0.008821827359497547, -0.01725343056023121, 0.02569897100329399, 0.026618782430887222, -0.008131968788802624, -0.01916273683309555, -0.004121730569750071, 0.02228452078998089, -0.003836031537503004, -0.030576759949326515, 0.015511363744735718, 0.0167656522244215, 0.007323649246245623, -0.008194683119654655, -0.00282737473025918, -0.013156089931726456, 0.019288165494799614, 0.022256648167967796, 0.032973844558000565, -0.023803602904081345, 0.01725343056023121, 0.013176994398236275, 0.027162307873368263, -0.005424796603620052, 0.0047384221106767654, 0.0065501718781888485, -0.01396440900862217, -0.019483277574181557, 0.015107204206287861, -0.02416595257818699, 0.006375965196639299, 0.005306336097419262, 0.02795669063925743, 0.01059176679700613, -0.00498927989974618, 0.007908984087407589, -0.0005835924530401826, -0.013420883566141129, 0.011581260710954666, -0.023190395906567574, -0.02412414364516735, -0.01629181019961834, -0.008410699665546417, 0.002048670779913664, -0.0032036611810326576, 0.03364279866218567, 0.000950297515373677, 0.01133040338754654, 0.02358061820268631, 0.0027036878746002913, -0.013692646287381649, 0.006933426484465599, -0.010208512656390667, 0.018870068714022636, 0.019692324101924896, 0.019664451479911804, -0.013873821124434471, -0.021127788349986076, -0.04069468379020691, -0.02583833783864975, 0.02266080677509308, -0.00812500063329935, 0.07475557923316956, 0.03241638094186783, -0.030548885464668274, 0.001956341089680791, -0.02275836281478405, -0.005539773032069206, 0.026786021888256073, -0.016946827992796898, -0.007118085399270058, -0.024793097749352455, 0.0220754723995924, 0.003951007965952158, -0.030158663168549538, -0.013818074949085712, -0.0021514527034014463, 0.014814537018537521, 0.013323328457772732, 0.0022943022195249796, -0.01089837122708559, 0.008048349060118198, 0.020793311297893524, -0.005571130197495222, 0.026576973497867584, -0.0008936803205870092, -0.01920454576611519, -0.015149014070630074, 0.04069468379020691, 0.012521977536380291, 0.009860099293291569, -0.03066037781536579, 0.021308962255716324, -0.027845198288559914, -0.04133576527237892, -0.014772728085517883, -0.0032437287736684084, -0.009309605695307255, -0.007755681872367859, -0.03512006998062134, 0.0021375161595642567, 0.00399630144238472, 0.009295669384300709, 0.012619532644748688, -0.021239280700683594, -0.0013239708496257663, 0.031050601974129677, -0.009797384962439537, 0.00979041587561369, -0.012584691867232323, -0.015302316285669804], "f24fe96e-6dc8-4627-993e-5503105bf170": [-0.02869236469268799, -0.011728004552423954, 0.004095835145562887, -0.023742932826280594, 0.006861061789095402, 0.0019403211772441864, -0.022207891568541527, -0.030184369534254074, -0.03247975930571556, -0.04869094491004944, 0.023513393476605415, 0.023470355197787285, 0.00678933085873723, 0.0019887397065758705, 0.015579954721033573, 0.03047129139304161, 0.016713302582502365, -0.009339365176856518, 0.009303499944508076, -0.024417202919721603, -0.029782675206661224, -0.013004814274609089, -0.03342660516500473, 0.005688261706382036, -0.02206442877650261, -0.010465539991855621, 0.0408005453646183, -0.02949575148522854, 0.0087942099198699, 0.0017807199619710445, 0.02263827621936798, -0.017430612817406654, -0.015522569417953491, -0.011892985552549362, -0.013671912252902985, -0.021490581333637238, -0.012803968042135239, -0.013980355113744736, 0.01969730854034424, -0.01695718802511692, 0.011326311156153679, 0.0035721994936466217, -0.013234353624284267, 0.007424149662256241, -0.015637340024113655, 0.027099939063191414, 0.001396959531120956, -0.020572425797581673, 0.0055483863689005375, -0.007768458221107721, 0.012717891484498978, 0.020342886447906494, 0.004257229622453451, 0.01910911500453949, -0.033541373908519745, 0.0017107822932302952, -0.008041035383939743, -0.004970952402800322, -0.011606061831116676, -0.005881934892386198, -0.007911919616162777, 0.008249054662883282, -0.02094542607665062, 0.012086658738553524, -0.03190591186285019, -0.017086302861571312, -0.015895569697022438, -0.008184497244656086, -0.011778215877711773, -0.013306084088981152, 0.005655982531607151, 0.03225021809339523, 0.006653042044490576, -0.014001874253153801, -0.0069363792426884174, -0.02460370399057865, 0.00984148122370243, 0.007416976615786552, 0.007947784848511219, -0.020730234682559967, 0.008406863547861576, 0.0021895861718803644, 0.01596730202436447, -0.002736534457653761, 0.029524443671107292, 0.04582170769572258, 0.0018667969852685928, 0.008492940105497837, -0.00832078605890274, -0.001665950519964099, 0.01883653737604618, 0.02720036171376705, 0.018090536817908287, 0.03236498683691025, -0.0005164626054465771, 0.01443225983530283, 0.015206953510642052, -0.0011898365337401628, 0.006147339474409819, -0.012287505902349949, -0.02671259269118309, 0.014195547439157963, -0.009920385666191578, -0.02040027268230915, -0.02550751343369484, 0.0021770333405584097, 0.007675207685679197, -0.009984943084418774, 0.000678753771353513, 0.013593007810413837, -0.027530325576663017, 0.03216414153575897, -0.0039380271919071674, -0.018248343840241432, -0.007302206940948963, -0.006900514010339975, 0.0157951470464468, -0.029323598369956017, -0.01385123934596777, -0.034516915678977966, 0.03302491456270218, 0.013872758485376835, 0.01682807318866253, -0.011455426923930645, 0.010860060341656208, 0.013786681927740574, -0.006828783079981804, -0.0269851703196764, 0.03156160190701485, -0.0025374810211360455, 0.0523635670542717, 0.012933083809912205, -0.0011817668564617634, -0.0026612170040607452, -0.02232266031205654, 0.008399689570069313, -0.0372139997780323, 0.014396394602954388, -0.0068861679174005985, -0.012344890274107456, 0.0031597467605024576, 0.021849235519766808, -0.015938609838485718, -0.02438851073384285, 0.01174952369183302, 0.035779379308223724, -0.012581602670252323, 0.02603832259774208, 0.036267150193452835, -0.0174019206315279, 0.013564315624535084, -0.01315544918179512, -0.028606288135051727, 0.03534899279475212, 0.006150925997644663, 0.010788329876959324, -0.01342085376381874, 0.015823839232325554, -0.010264693759381771, -0.011878639459609985, 0.0016829866217449307, 0.006312320474535227, -0.024589357897639275, -0.01353562343865633, 0.0024818896781653166, 0.016756340861320496, 0.01928126998245716, -0.030126983299851418, -0.012509871274232864, -0.014690491370856762, 0.008263401687145233, 0.016627226024866104, -0.034746453166007996, 0.03216414153575897, 0.019539501518011093, 0.0019062490900978446, 0.03408652916550636, -0.0015771834878250957, -0.0005514313816092908, -0.029897445812821388, 0.022896507754921913, -0.016584187746047974, -0.0006020913715474308, 0.012667679227888584, -0.026153091341257095, -0.014252932742238045, 0.035234224051237106, 0.006731946486979723, 0.010400982573628426, -0.0037551133427768946, -1.5789206372573972e-05, -0.001850657630711794, -0.019439077004790306, -0.008406863547861576, -0.5922104120254517, -0.008708133362233639, 0.0057743387296795845, -0.013786681927740574, -0.0144968181848526, 0.014762221835553646, 0.016311610117554665, 0.013643220067024231, -0.016397686675190926, 0.022609584033489227, 0.0006926516653038561, 0.008765517733991146, -0.01085288729518652, -0.00641991663724184, -0.02080196514725685, -0.03133206441998482, 0.007876054383814335, 0.0019295616075396538, 0.003887815633788705, -0.003952373284846544, -0.021777505055069923, 0.04031277447938919, -0.01570907048881054, -0.02143319696187973, 0.001827344996854663, -0.009274806827306747, 0.026167437434196472, 0.0003768114547710866, -0.0106950793415308, 0.012115350924432278, -0.04384193569421768, 0.027587709948420525, 0.04220646992325783, -0.00474141351878643, 0.04432970657944679, -0.0022577305790036917, -0.010171443223953247, 0.03164767846465111, 0.012775275856256485, 0.02027115598320961, -0.03368483856320381, 0.0037120748311281204, 0.00941826868802309, 0.023470355197787285, 0.005677501671016216, -0.005498174577951431, -0.005946492776274681, -0.004031277261674404, -0.023886393755674362, -0.001131555181927979, -0.017258457839488983, -0.016455071046948433, -0.00014861748786643147, -0.002652250463142991, -0.005369058810174465, -0.007133639417588711, 0.013707777485251427, -0.0006222656811587512, 0.007868881337344646, 0.021131927147507668, 0.005946492776274681, 0.0018363114213570952, -0.003719247877597809, -0.051789719611406326, -0.042493391782045364, 0.015723416581749916, -0.02156231366097927, -0.014439432881772518, 0.02303996868431568, 0.012768102809786797, 0.007969304919242859, 0.014991761185228825, -0.009647808037698269, 0.0024711298756301403, -0.012524217367172241, 0.04748586565256119, 0.04364108666777611, -0.018233997747302055, -0.005896280985325575, 0.012402274645864964, -0.00468761520460248, -0.012359236367046833, 0.005100068170577288, -0.029409674927592278, 0.03265191242098808, 0.008535978384315968, -0.027013862505555153, -0.01951080933213234, -0.0011566609609872103, -0.0193816926330328, 0.023886393755674362, 0.013506931252777576, 0.005354712717235088, -0.04111615940928459, 0.030126983299851418, 0.03592284023761749, 0.0037515268195420504, 0.0030933956149965525, -0.022839123383164406, -0.017731882631778717, -0.03150421753525734, -0.012717891484498978, -0.0013601974351331592, -0.0032386507373303175, 0.03557853400707245, -0.0007536229095421731, -0.01963992416858673, -0.0044078645296394825, 0.01860699988901615, -0.015364761464297771, -0.006617176812142134, -0.013614527881145477, -0.02080196514725685, -0.020744580775499344, 0.0031382273882627487, -0.028089825063943863, 0.020156387239694595, 0.009705192409455776, -0.00949000008404255, -0.008263401687145233, -0.009626288898289204, 0.0002786297700367868, 0.008779863826930523, 0.016354648396372795, -0.012029274366796017, 0.012265986762940884, 0.012667679227888584, 0.009884519502520561, -0.003070083213970065, -0.005731299985200167, 0.0016820899909362197, -0.03463168442249298, 0.01776057481765747, -0.013363469392061234, 0.044014088809490204, 0.018592653796076775, 0.005451549310237169, -0.009289152920246124, 0.018693076446652412, -0.03520553186535835, -0.007402630522847176, -0.0024765098933130503, 0.0116993123665452, -0.024187663570046425, -0.02269566059112549, -0.0075173997320234776, -0.01205796655267477, 0.017975766211748123, -0.003617031266912818, -0.013119583949446678, -0.0161968395113945, -0.018779153004288673, 0.0013252286007627845, 0.03055736981332302, 0.004684028681367636, 0.012803968042135239, 0.0003014940011780709, -0.04892048239707947, -0.004669682588428259, -0.013384988531470299, -0.012136870995163918, 0.003640343900769949, 0.0008769104024395347, 0.0027257746551185846, -0.006649455521255732, -0.012387928552925587, -0.03440214693546295, 0.022523507475852966, 0.0025751397479325533, -0.02005596272647381, -0.014102297835052013, -0.020730234682559967, 0.014267278835177422, 0.02421635575592518, -0.02062981016933918, 0.012093831785023212, -0.0005554662784561515, 0.009088306687772274, 0.006089954636991024, 0.0028692365158349276, 0.015049145556986332, 0.015163915231823921, -0.018492229282855988, 0.0006410950445570052, 0.02004161663353443, 0.018104882910847664, 0.01317696925252676, 0.0075173997320234776, -0.013930143788456917, 0.0012795001966878772, 0.006638695951551199, 0.016125109046697617, -0.018018806353211403, 0.0024549905210733414, -0.006531099788844585, -0.019209539517760277, -0.03861992433667183, -0.035377684980630875, -0.0067749847657978535, 0.041230928152799606, 0.0057097808457911015, 0.0059536658227443695, -0.008880287408828735, 0.00821318943053484, 0.022308314219117165, -0.015163915231823921, 0.00563804991543293, -0.0068216100335121155, 0.0067462925799191, -0.010300558991730213, -0.005397751461714506, 0.012588775716722012, -0.015221299603581429, -0.024718472734093666, -0.0040205176919698715, 0.008033862337470055, -0.025134513154625893, 0.01669895648956299, 0.0006948932423256338, 0.006771398242563009, 0.008457074873149395, 0.009088306687772274, 0.024402856826782227, 0.013327604159712791, -0.013356296345591545, 0.006132993381470442, 0.0018883163575083017, -0.002609211951494217, 0.014087951742112637, -0.025665320456027985, -0.003007318591699004, 0.012402274645864964, 0.013083718717098236, -0.01915215328335762, 0.01459006778895855, 0.016354648396372795, 0.045448705554008484, -0.030442599207162857, 0.03339791297912598, -0.01682807318866253, 0.0077254194766283035, 0.0013870965922251344, 0.023915085941553116, -0.03288144990801811, 0.016397686675190926, 0.0199985783547163, 0.012768102809786797, -0.006193964276462793, -0.003930854145437479, 0.01786099746823311, -0.0012902597663924098, 0.020256809890270233, -0.01306219957768917, -0.0065669650211930275, 0.013671912252902985, -0.010730944573879242, -0.012352063320577145, 0.003394665429368615, 0.018176613375544548, -0.002716808347031474, -6.89849621267058e-05, 0.014568548649549484, 0.015565608628094196, -0.014833953231573105, 0.012832660228013992, -0.006122233346104622, 0.004440143704414368, -0.04341154918074608, -0.005580665078014135, -0.008937671780586243, 0.002698875730857253, -0.018090536817908287, -0.020701542496681213, 0.004963779356330633, -0.01143390778452158, 0.007445668801665306, 0.00949000008404255, 0.009461307898163795, 0.0017538208048790693, 0.01623987965285778, -0.009769750759005547, -0.02943836711347103, 0.013313258066773415, -0.0033193479757755995, -0.008485767059028149, -0.025435782968997955, -0.01942473091185093, -0.004547739867120981, 0.008908979594707489, 0.01969730854034424, -0.009949077852070332, 0.009827135130763054, -0.01073811762034893, 0.010020808316767216, -0.012560082599520683, 0.00650958064943552, 0.04444447532296181, -0.017244111746549606, -0.02631089836359024, 0.013671912252902985, 0.018377460539340973, 0.008779863826930523, -0.016899803653359413, -0.035951532423496246, 0.02012769505381584, -0.017473651096224785, 0.0009006712934933603, -0.006122233346104622, 0.016569841653108597, -0.028261980041861534, 0.019855117425322533, -0.03391437605023384, -0.021232349798083305, -0.01748799718916416, -0.02022811770439148, 0.003805324900895357, 0.0016336715780198574, -0.01163475401699543, 0.03847646340727806, 0.017014572396874428, -0.02071588858962059, -0.010286212898790836, -0.003272722940891981, 0.015221299603581429, 0.06977983564138412, 0.023556431755423546, -0.0213901586830616, 0.017703190445899963, -0.018535267561674118, -0.005738473031669855, -0.014733529649674892, -0.012775275856256485, 0.05310956761240959, -0.016928495839238167, -0.01669895648956299, 0.011763869784772396, 0.017875343561172485, -0.01042967475950718, 0.01691414974629879, 0.011469773016870022, 0.0018972826655954123, 0.0016094624297693372, -0.031245985999703407, 0.008378170430660248, 0.004762932658195496, -0.008930498734116554, 0.03127468004822731, 0.030499985441565514, 0.04263685643672943, 0.01744495891034603, 0.026153091341257095, 0.009238941594958305, 0.0003680692461784929, -0.03153290972113609, -0.007474361453205347, 0.007191024255007505, -0.00023962608247529715, 0.011419561691582203, -0.01243814080953598, 0.03325445204973221, 0.00926046073436737, -0.012430967763066292, -0.009052441455423832, 0.0034377039410173893, -0.021375812590122223, 0.003374939551576972, 0.019353000447154045, -0.012466832995414734, 0.006527513265609741, -0.027501631528139114, 0.0038734693080186844, 0.032020680606365204, -0.02206442877650261, 0.00796213187277317, 0.010530098341405392, -0.009719538502395153, -0.016125109046697617, 0.004762932658195496, -0.010931791737675667, -0.006986591033637524, -0.021504927426576614, 0.0007231372874230146, -0.02116061933338642, -0.043153319507837296, -0.0499534085392952, -0.020099002867937088, -0.00362420454621315, -0.014188374392688274, -0.03365614637732506, -0.018463537096977234, -0.00337314628995955, 0.0009952664840966463, -0.013076545670628548, -0.000823112262878567, 0.000252178986556828, -0.019353000447154045, -0.038332998752593994, 0.013298911042511463, 0.024445895105600357, 0.011060906574130058, 0.007689553778618574, 0.0042285374365746975, -0.021648390218615532, 0.014460952021181583, 0.005942906253039837, -0.03405783697962761, -0.0003741215623449534, -0.014410740695893764, -0.022896507754921913, -0.02567966654896736, -0.01598164811730385, -0.005146692972630262, -0.019525155425071716, 0.0010436847805976868, 0.008284920826554298, -0.029639214277267456, 0.006875407882034779, 0.0195968858897686, -0.0061616855673491955, 0.037873923778533936, -0.0008392516756430268, 0.032422374933958054, 0.021332774311304092, -0.04791625216603279, 0.012782448902726173, -0.01225881278514862, -6.549648787768092e-06, -0.007847362197935581, -0.012509871274232864, -0.010745290666818619, -0.008787036873400211, -0.014152509160339832, -0.001111829187721014, -0.034832533448934555, 0.0005366369150578976, -0.0033211412373930216, -0.01205796655267477, -0.023929432034492493, -0.022179199382662773, 0.008865941315889359, 0.0054372032172977924, 0.0171867273747921, -0.011677793227136135, -0.012653333134949207, 0.003434117417782545, -0.033311836421489716, 0.04229254648089409, 0.014547029510140419, 0.016297264024615288, 0.010666387155652046, 0.0253783967345953, -0.010982003062963486, -0.027128631249070168, 0.026325246319174767, 0.004637403413653374, 0.0008450798341073096, -0.010673560202121735, -0.0002125028258888051, 0.002921241568401456, -0.024445895105600357, 0.008535978384315968, 0.0035506803542375565, -0.01750234328210354, 0.003068289952352643, -0.024259395897388458, -0.005864002276211977, 0.021261043846607208, -0.00926046073436737, -0.0008244572090916336, -0.03038521483540535, -0.04169000685214996, -0.001768167014233768, 0.015178261324763298, 0.029610522091388702, -0.01731584221124649, -0.007144398987293243, -0.01195036992430687, -0.020472003147006035, 0.0025661734398454428, 0.006125819869339466, 0.008327959105372429, 0.011986236087977886, 0.06054089218378067, 0.02421635575592518, 0.029639214277267456, 0.015866877511143684, 0.023642510175704956, 0.016225533559918404, 0.005580665078014135, -0.004203431773930788, -0.008579017594456673, -0.02796071022748947, -0.0028405440971255302, 0.003270929679274559, 0.021261043846607208, 0.003643930424004793, -0.026167437434196472, -0.009267633780837059, 0.013585834763944149, 0.02595224417746067, 0.02035723254084587, 0.00695789884775877, -0.01638334058225155, -0.039710234850645065, -0.00542644364759326, 0.013829720206558704, -0.01105373352766037, -0.011563023552298546, -0.021806197240948677, 0.00137633690610528, 0.024890627712011337, -0.010967656970024109, 0.03293883427977562, 0.003495088778436184, 0.03672622889280319, 0.023470355197787285, -0.0005460515967570245, 0.004895634949207306, 0.02671259269118309, -0.041058775037527084, -0.019137807190418243, -0.034430839121341705, -0.012854179367423058, 0.01286135334521532, 0.008492940105497837, 0.022810431197285652, -0.008579017594456673, 0.00984865427017212, 0.0038376038428395987, 0.013227180577814579, -0.03265191242098808, -0.02876409702003002, 0.0064055705443024635, -0.04496093839406967, -0.00016610190505161881, -0.013729296624660492, -0.018506575375795364, -0.018047498539090157, 0.00016587773279752582, 0.007069081533700228, -0.0048239040188491344, 0.02312604710459709, -0.03477514535188675, 0.0033283145166933537, 0.011771042831242085, -0.013478239066898823, 0.022351352497935295, 0.018463537096977234, 0.047227632254362106, 0.006764225196093321, 0.00870096031576395, -0.016799379140138626, -0.021289736032485962, 0.001708989031612873, -0.025737052783370018, 0.013994701206684113, 0.027530325576663017, -0.0231834314763546, -0.009791269898414612, -0.006003877613693476, -0.006158099044114351, 0.0009611942223273218, -0.04028408229351044, 0.022494815289974213, 0.025306666269898415, 0.0013189521851018071, -0.03024175390601158, -0.029897445812821388, -0.022164853289723396, 0.011017868295311928, -0.01327021885663271, -0.015809493139386177, -0.00022785773035138845, -0.003597305389121175, 0.00011437718058004975, 0.01042250171303749, -0.007101360708475113, 0.01807619072496891, -0.010185790248215199, 0.002290009520947933, 0.014704837463796139, 0.017028918489813805, 0.010888752527534962, -0.011376523412764072, -0.016455071046948433, 0.0242020096629858, -0.013406507670879364, -0.022652622312307358, 0.015350415371358395, 0.021677082404494286, -0.0019170086598023772, 0.006326666567474604, -0.023599470034241676, 0.03236498683691025, -0.019295616075396538, -0.011720831505954266, 0.001152177806943655, 0.02103150449693203, 0.0175884198397398, -0.028204595670104027, -0.031389448791742325, -0.0116993123665452, 0.00011902848200406879, 0.0057922713458538055, 0.014704837463796139, -0.006319493521004915, -0.014819607138633728, -0.01794707402586937, 0.010709425434470177, -0.023513393476605415, 0.010178616270422935, -0.010716598480939865, 0.007632169406861067, -0.053941648453474045, 0.006749879103153944, -0.0045692590065300465, 0.002180619863793254, 0.0015771834878250957, -0.002406572224572301, 0.0047270674258470535, -0.004189085215330124, 0.029094059020280838, -0.011756696738302708, 0.01179256197065115, 0.03299621865153313, -0.00013427130761556327, -0.04005454108119011, 0.011921677738428116, -0.012509871274232864, -0.006893340963870287, 0.001255291048437357, -0.00321533833630383, -0.017172381281852722, -0.025292320176959038, 0.005763579159975052, 0.009224595502018929, 0.0011692139087244868, -0.0002550930657889694, 0.027587709948420525, 0.01427445188164711, 0.0018416912062093616, -0.01826268993318081, 0.008507286198437214, 0.018061844632029533, -0.004357653204351664, 0.017832305282354355, 0.02134712040424347, -0.005602184217423201, 0.003025251207873225, 0.005333193577826023, 0.005200491286814213, -0.017459305003285408, -0.034660376608371735, -0.038906846195459366, -0.01628291793167591, 0.008076900616288185, 0.011964716017246246, 0.009927558712661266, -0.01286135334521532, -0.021533619612455368, -0.013887104578316212, 0.00408148905262351, -0.03110252507030964, 0.005354712717235088, 0.017430612817406654, -0.01369343139231205, 0.023255161941051483, 0.032020680606365204, -0.011986236087977886, -0.028649326413869858, -0.00933219213038683, -0.01714368909597397, -0.06369705498218536, -0.007212543394416571, 0.018535267561674118, 0.04702678695321083, 0.007754111662507057, -0.02227962203323841, -0.023728586733341217, -0.01834876835346222, -0.03646799549460411, -0.031618986278772354, -0.04255077987909317, 0.029610522091388702, 0.012746583670377731, 0.010817022062838078, -0.002359946956858039, 0.027759863063693047, -0.007416976615786552, 0.008665094152092934, -0.03486122563481331, -0.01225881278514862, -0.007438495755195618, -0.020773272961378098, 0.04349762573838234, -0.014891337603330612, -0.04137439280748367, 0.008571844547986984, 0.009819962084293365, -0.002320494968444109, 0.017660150304436684, 0.007094187196344137, 0.012395101599395275, -0.011936023831367493, -0.005577078554779291, 0.0251918975263834, 0.012007755227386951, 0.014267278835177422, 0.021935313940048218, -0.022810431197285652, 0.002463956829160452, 0.029553135856986046, -0.010393809527158737, -0.0015987027436494827, 0.013994701206684113, 0.020342886447906494, 0.0020281916949898005, -0.008492940105497837, 0.014532683417201042, -0.0035506803542375565, 0.009511519223451614, 0.005544799845665693, -0.005860415752977133, 0.025564897805452347, 0.00999928917735815, 0.04191954433917999, -0.021806197240948677, -0.008270574733614922, 0.004791624844074249, 0.0013028127141296864, -0.0004953916068188846, 0.016541149467229843, 0.03293883427977562, -0.005143106449395418, 0.005623703822493553, 0.0026056254282593727, 0.013399334624409676, 0.0009585043299011886, -0.017416266724467278, 0.0011252787662670016, -0.01570907048881054, -0.018936961889266968, -0.009619115851819515, 0.00563804991543293, 0.0003111328405793756, 0.0069830045104026794, 0.0010194756323471665, -0.011921677738428116, 0.026253513991832733, -0.005462308879941702, 0.01852092146873474, -0.030528677627444267, -0.03374222293496132, 0.009934731759130955, -0.005491001531481743, -0.043067239224910736, -8.921532571548596e-05, 0.02120365761220455, 0.019252577796578407, -0.0033157614525407553, 0.19051730632781982, -0.0005568112246692181, -0.005222010426223278, 0.030184369534254074, 0.017158035188913345, -0.0124883521348238, 0.010171443223953247, -0.004135287366807461, -0.024948012083768845, 0.01407360564917326, 0.01185712032020092, 0.0033408673480153084, -0.018090536817908287, -0.0004586295399349183, 0.009289152920246124, -0.01995554007589817, -0.03991108015179634, -0.01932430826127529, -0.008880287408828735, 0.016713302582502365, 0.006107887253165245, -0.01089592557400465, 0.0006101611070334911, -0.0007289653876796365, 0.017731882631778717, 0.0010813435073941946, 0.001256187679246068, 0.0038089114241302013, 0.016168147325515747, 0.031217293813824654, -0.004393518436700106, 0.003088015830144286, 0.00592856016010046, -0.0016507076798006892, -0.020371580496430397, -0.01042250171303749, 0.02608136087656021, 0.0035650264471769333, -0.004336133599281311, 0.02183488942682743, -0.008127112872898579, -0.014109470881521702, 0.025220589712262154, -0.02268131449818611, 0.012273159809410572, 0.011469773016870022, -0.0191951934248209, 0.00949000008404255, -0.026023976504802704, 0.018291383981704712, -0.010293385945260525, 0.008141458965837955, 0.020070308819413185, 0.007933438755571842, -0.0009307086002081633, 0.004734240472316742, -1.6237525414908305e-05, 0.011182849295437336, -0.017114996910095215, -0.003998998552560806, -0.013291737996041775, -0.010214482434093952, -0.0121010048314929, 0.002966073341667652, -0.04272293299436569, 0.002838750835508108, -0.03055736981332302, 0.028649326413869858, 0.0034377039410173893, -0.005175385624170303, -0.004099421668797731, 0.001256187679246068, -0.03285275772213936, -0.008177324198186398, -0.021131927147507668, -0.01380102802067995, 0.009812789037823677, 0.02269566059112549, 0.015264338813722134, 0.02578009106218815, 0.007438495755195618, 0.0031346408650279045, -0.024689780548214912, -0.01015709713101387, 0.026052668690681458, -0.017086302861571312, 0.022351352497935295, -0.02022811770439148, -0.0070654950104653835, -0.034660376608371735, 0.0007137226057238877, 0.021992698311805725, 0.0008863250841386616, -0.01839180663228035, 0.001976186642423272, -0.017071956768631935, 0.00910982582718134, 0.008894633501768112, -0.003615238005295396, -0.024503279477357864, -0.005315260961651802, 0.04318201169371605, 0.024058548733592033, 0.020342886447906494, -0.009698019362986088, 0.009676500223577023, 0.017258457839488983, 0.014525510370731354, -0.01659853383898735, 0.004432970657944679, 0.0003297380462754518, -0.0359802283346653, 0.013621700927615166, 0.005211250856518745, -0.006961485370993614, 0.028089825063943863, 0.02415897138416767, -0.011527158319950104, 0.025937898084521294, -0.03824692219495773, 0.008550325408577919, -0.007205370347946882, 0.011204368434846401, 0.016655918210744858, -0.034746453166007996, -0.02255219966173172, 0.005950079299509525, 0.025077126920223236, -0.02671259269118309, -0.021447543054819107, 0.032422374933958054, -0.003981065936386585, 0.01407360564917326, -0.02268131449818611, -0.010953310877084732, 0.011964716017246246, 0.0416039302945137, -0.003105948679149151, -0.018621345981955528, -0.031131217256188393, -0.010243174619972706, 0.009554557502269745, 0.024288088083267212, 0.007330899592489004, -0.009626288898289204, 0.0023922258988022804, -0.0015278684441000223, 0.00047835553414188325, -0.010200136341154575, -0.03213544934988022, 0.004483181983232498, 0.003683382412418723, -0.0033641799818724394, -0.003661863273009658, 0.026023976504802704, -0.005089308135211468, -0.03503337875008583, -0.032106757164001465, 0.010185790248215199, 0.02170577459037304, -0.04206300899386406, -0.011914504691958427, 0.018764806911349297, 0.006089954636991024, -0.011111118830740452, -0.002775986446067691, -0.1838606745004654, 0.005738473031669855, 0.010594655759632587, -0.011871466413140297, 0.032336294651031494, 0.006301560904830694, 0.0020461243111640215, 0.008959190919995308, 0.0019869462121278048, -0.015163915231823921, 0.023212123662233353, 0.012079485692083836, -0.006082781590521336, -0.00948282703757286, 0.01942473091185093, 0.002698875730857253, -0.0037407672498375177, 0.016125109046697617, 0.05847503989934921, 0.01185712032020092, 0.025579243898391724, -0.04341154918074608, -0.003310381667688489, -0.010329251177608967, 0.018994346261024475, -0.014597240835428238, -0.0015314549673348665, 0.008449901826679707, 0.0003617928014136851, -0.0277885552495718, 0.0030270444694906473, -0.0138942776247859, 0.008406863547861576, -0.0018452777294442058, 0.020113348960876465, 0.009941904805600643, -0.003719247877597809, -0.005602184217423201, 0.0034018387086689472, 0.008830075152218342, 0.011505638249218464, 0.01682807318866253, 0.027401208877563477, -0.015364761464297771, -0.004203431773930788, 0.009568903595209122, 0.0026199715211987495, -0.0013207454467192292, 0.022710006684064865, -0.024058548733592033, 0.02308300882577896, -0.03190591186285019, -0.0065024071373045444, 0.007323726546019316, 0.0012741204118356109, 0.01642637886106968, 0.004619470797479153, 0.021504927426576614, 0.0017385780811309814, -0.03213544934988022, 0.014819607138633728, -0.003848363645374775, 0.0029875924810767174, -0.0006020913715474308, -0.013392161577939987, -0.028261980041861534, 0.008471420966088772, 0.002593072596937418, -0.008378170430660248, -0.011347830295562744, -0.011735177598893642, -0.0024783031549304724, 0.017875343561172485, 0.0029714531265199184, 0.015106530860066414, 0.011426734738051891, -0.03204937279224396, 0.012387928552925587, 0.03156160190701485, -0.005071375519037247, -0.002982212696224451, 0.023915085941553116, -0.007861708290874958, 0.009368057362735271, -0.02491931989789009, 0.010479886084794998, -0.012918737716972828, -0.014324663206934929, -0.022136159241199493, 0.008270574733614922, 0.026726938784122467, -0.005473068915307522, 0.0037120748311281204, 0.006104300729930401, 0.02466108836233616, 0.0037551133427768946, 0.03566461056470871, -0.010393809527158737, 0.026569129899144173, 0.005688261706382036, -0.003923681098967791, 0.03681230545043945, -0.020242463797330856, 0.001604082528501749, 0.0443870909512043, 0.03388568386435509, 0.0059070405550301075, 0.001667743781581521, 0.04381324350833893, -0.014934375882148743, -0.028606288135051727, 0.012667679227888584, 0.024288088083267212, 0.014331836253404617, -0.011060906574130058, 0.03910769522190094, 0.0019636338111013174, -0.010049501433968544, 0.01174952369183302, -0.027731170877814293, 0.053224336355924606, -0.03359875828027725, -0.028835827484726906, 0.02720036171376705, 0.010544444434344769, -0.007467187941074371, -0.10730944573879242, -0.02854890376329422, 0.010444020852446556, 0.025364050641655922, -0.015608646906912327, 0.003719247877597809, -0.006620763335376978, 0.037615690380334854, -0.010200136341154575, 0.04831794276833534, -0.0115917157381773, -0.015780800953507423, -0.012674852274358273, 0.02375727891921997, -0.0019223884446546435, -0.0024406444281339645, -0.016368994489312172, -0.008736825548112392, -0.009949077852070332, 0.029165789484977722, 0.012890045531094074, -0.013786681927740574, 0.02679866924881935, -0.012459659948945045, -0.004992471542209387, -0.012352063320577145, -0.015766454860568047, 0.018320076167583466, 0.008041035383939743, 0.03127468004822731, 0.016096416860818863, -0.009461307898163795, 0.04455924406647682, -0.02833371050655842, -0.02730078622698784, -0.002897928934544325, -0.008672267198562622, -0.02550751343369484, 0.0193816926330328, -0.02626786008477211, -0.005369058810174465, 0.011763869784772396, -0.02268131449818611, -0.018248343840241432, -0.0015045559266582131, 0.0027508805505931377, -0.017918381839990616, 0.03431607037782669, 0.015737762674689293, -0.0035273677203804255, -0.02801809459924698, -0.013643220067024231, -0.007797150406986475, -0.05012556165456772, 0.02586616761982441, -0.01373646967113018, 0.02411593310534954, 0.004619470797479153, -0.013191315345466137, -0.0008679440361447632, -0.0013081924989819527, -0.0017556140664964914, -0.0008083177381195128, 0.02084500342607498, -0.009203076362609863, 0.015020453371107578, 0.02116061933338642, -0.006739119533449411, -0.014618759974837303, -0.010020808316767216, -0.01116133015602827, 0.000544706650543958, -0.02111758105456829, 0.016010340303182602, -0.003435910679399967, -0.008995057083666325, -0.013528450392186642, -0.003430530894547701, 0.018592653796076775, 0.014396394602954388, -0.021131927147507668, -0.009698019362986088, -0.004637403413653374, -0.026052668690681458, 0.029639214277267456, 0.005788684822618961, 0.014217067509889603, 0.0010938964551314712, 0.03136075660586357, -0.0319632962346077, 0.015852531418204308, 0.011326311156153679, 0.0034000452142208815, -0.004174739122390747, -0.014733529649674892, 0.02120365761220455, -0.015221299603581429, 0.003166919806972146, 0.03339791297912598, -0.007818670012056828, -0.01174952369183302, -0.005627290345728397, -0.05775773152709007, 0.03440214693546295, 0.01221577450633049, 0.017387572675943375, -0.0024818896781653166, -0.017215419560670853, 0.001232875045388937, -0.005060615949332714, 0.0055663189850747585, 0.013600180856883526, -0.019266923889517784, 0.01011405885219574, -0.03181983530521393, -0.014876991510391235, -0.02375727891921997, -0.01602468639612198, -0.0017457511276006699, 0.008349478244781494, 0.007381110917776823, 0.0025625869166105986, -0.011469773016870022, 0.016928495839238167, 0.0077254194766283035, 0.030586061999201775, -0.00133688491769135, 0.013930143788456917, -0.017975766211748123, 0.012366409413516521, -0.006412743590772152, 0.0015556642320007086, 0.010924617759883404, -0.006728359963744879, -0.0007034112932160497, 0.01602468639612198, -0.01642637886106968, -0.04068577289581299, 0.01096048392355442, -0.01991250179708004, 0.010178616270422935, 0.006125819869339466, -0.01807619072496891, -0.025450129061937332, 0.011821255087852478, 0.005386991426348686, -0.010946137830615044, -0.004988885018974543, -0.020558079704642296, -0.01295460294932127, 0.026411322876811028, 0.03425868600606918, 0.039222463965415955, -0.0021680667996406555, -0.020744580775499344, -0.042034316807985306, -0.00809841975569725, -0.014905683696269989, 0.00926046073436737, 0.022121813148260117, -0.002182413125410676, -0.005860415752977133, 0.05127325654029846, 0.016440724954009056, 0.025407088920474052, -0.012854179367423058, 0.01790403574705124, -0.03153290972113609, -0.0559501126408577, 0.002117855241522193, -0.0012893631355836987, -0.027716824784874916, 0.007054735440760851, -0.030184369534254074, 0.024689780548214912, 0.028089825063943863, 0.017014572396874428, -0.0022738699335604906, -0.019582539796829224, -0.02210746705532074, -0.021949660032987595, 0.03804607689380646, 0.021002812311053276, -0.0134925851598382, -0.009095479734241962, 0.020070308819413185, 0.018721768632531166, -0.00885876826941967, -0.019209539517760277, 0.018807845190167427, 0.018018806353211403, 0.014582894742488861, -0.018535267561674118, -0.0075173997320234776, -0.016182493418455124, 0.004207018297165632, 0.017774920910596848, 0.030413907021284103, -0.019094768911600113, 0.020515041425824165, 0.035062070935964584, 0.014446605928242207, 0.006728359963744879, 0.01786099746823311, 0.023886393755674362, 0.01527868490666151, -0.022007044404745102, 0.02639697678387165, -0.027645094320178032, -0.013679085299372673, 0.031159909442067146, 0.018090536817908287, 0.011498465202748775, 0.005089308135211468, -0.0029732463881373405, 0.00863640196621418, -0.02840544283390045, 0.0024173317942768335, -0.012646160088479519, -0.00959759671241045, -0.01942473091185093, -0.014410740695893764, 0.006731946486979723, 0.004300268366932869, 0.023412970826029778, -0.011620407924056053, 0.011283272877335548, 0.02005596272647381, -0.007954958826303482, -0.01474787574261427, 0.0195968858897686, -0.026325246319174767, 0.029553135856986046, -0.008571844547986984, 0.010544444434344769, -0.02058677189052105, 0.004967365879565477, -0.02018507942557335, -0.00874399859458208, 0.023929432034492493, 0.0003667242999654263, 0.10616175085306168, 0.02348470129072666, -0.046108633279800415, 0.0008984297164715827, -0.007825843058526516, 0.004253643099218607, 0.012653333134949207, -0.020644156262278557, -0.006265695206820965, -0.016670264303684235, 0.04318201169371605, 0.010989176109433174, -0.01369343139231205, -0.01642637886106968, -0.0287784431129694, 0.004691201727837324, 0.0065490324050188065, 0.01611076295375824, -0.025564897805452347, 0.01839180663228035, 0.019812079146504402, -0.032192833721637726, 0.039452001452445984, -0.00555914593860507, -0.02268131449818611, -0.00695789884775877, 0.04607993736863136, 0.013363469392061234, 0.00984148122370243, -0.03664015233516693, 0.012301851995289326, -0.016856765374541283, -0.02411593310534954, -0.001584356534294784, -0.02569401264190674, -0.012782448902726173, -0.01143390778452158, -0.026597822085022926, 0.012825487181544304, 0.021418850868940353, -0.00045145643525756896, 0.02833371050655842, -0.01910911500453949, -0.003930854145437479, 0.038591232150793076, -7.341210584854707e-05, 0.0014157888945192099, -0.01628291793167591, -0.02483324334025383], "84316a03-d970-4e54-a15b-cf2c27eb5124": [-0.006095940247178078, -0.018963631242513657, 0.006164203863590956, -0.02583094872534275, -0.009215586818754673, 0.00975487008690834, -0.011072357185184956, -0.03869181498885155, -0.023742083460092545, -0.056904543191194534, 0.02420627512037754, 0.0008340959902852774, 0.02244507521390915, -0.013017870485782623, 0.016533445566892624, 0.009181455709040165, 0.020451776683330536, 0.0024711426813155413, 0.004672644194215536, -0.00955690536648035, -0.024370107799768448, -0.005880909971892834, -0.017693927511572838, 0.0034729111939668655, -0.01140002254396677, 0.0036452766507864, 0.03391335904598236, -0.0159873366355896, -0.010041576810181141, 0.01392577588558197, 0.011911999434232712, -0.01550949178636074, -0.01668362505733967, -0.010853913612663746, -0.02477969042956829, -0.011283974163234234, 0.004198211710900068, -0.007024325430393219, 0.01818542554974556, -0.009734390303492546, 0.011946131475269794, 0.007700135000050068, -0.02280004508793354, 0.024738730862736702, -0.007092589046806097, 0.024411065503954887, 0.006706899497658014, -0.008451034314930439, 0.0031077007297426462, 0.003928570542484522, -0.007543128915131092, 0.01049894280731678, -0.013338709250092506, -0.0030291976872831583, -0.006467977073043585, -0.006396300159394741, 0.0029865328688174486, 0.001259463606402278, 0.010307804681360722, 0.010901697911322117, 0.009515946730971336, 0.010321457870304585, -0.015154520981013775, -0.004304020665585995, -0.03271191939711571, -0.028534188866615295, -0.024260886013507843, -0.02850688248872757, -0.00953642651438713, -0.010355588980019093, 0.003182790707796812, 0.03852798044681549, -0.00558055005967617, -0.0176529698073864, 0.0026674005202949047, -0.0029131495393812656, 0.012662899680435658, -0.003611144842579961, -0.0054713282734155655, -0.01091535110026598, 0.011843736283481121, -0.005140249617397785, -0.005184621084481478, -0.00705163087695837, 0.026691071689128876, 0.0595804788172245, -0.012328407727181911, 0.005652226973325014, -0.010171277448534966, 0.007351990789175034, 0.007481691427528858, 0.018827103078365326, 0.014239788986742496, 0.030991679057478905, 0.01298373844474554, 0.013366014696657658, 0.018567701801657677, -0.0058194724842906, -0.00821211189031601, -0.023209627717733383, -0.025981130078434944, 0.007351990789175034, -0.011038225144147873, -0.012444456107914448, -0.03721731901168823, 0.003529228502884507, 0.01871788129210472, -0.0056385742500424385, 0.002198088215664029, 0.011925652623176575, -0.012628767639398575, 0.024233581498265266, -0.0035735999699681997, -0.002631562063470483, -0.00953642651438713, -0.019127463921904564, 0.01972818374633789, -0.02609035186469555, -0.004501984920352697, -0.02578999102115631, 0.022963877767324448, 0.014267094433307648, 0.021980881690979004, -0.03080054000020027, 0.0021093455143272877, -0.012389845214784145, 0.004027552902698517, -0.004259649198502302, 0.02757849730551243, -0.008737741969525814, 0.02973562851548195, 0.030554791912436485, 0.004710189066827297, -0.004385937005281448, -0.036398157477378845, 0.010075708851218224, -0.03579743579030037, 0.0018840755801647902, 0.005140249617397785, -0.019223032519221306, 0.016233086585998535, 0.013625415973365307, -0.007768398616462946, -0.029134908691048622, 0.01526374276727438, 0.03836414963006973, -0.011126968078315258, 0.021803395822644234, 0.013598110526800156, -0.027878858149051666, -0.005389411933720112, -0.012915474362671375, -0.009891397319734097, 0.001575182774104178, 0.007324685342609882, 0.005218752659857273, -0.020615609362721443, 0.02943526767194271, -0.01647883467376232, -0.01023954153060913, 0.01297691185027361, 0.015058952383697033, -0.009406724944710732, -0.0123420599848032, -0.003566773608326912, 0.0291622132062912, 0.00048595157568342984, -0.0359339639544487, -0.002551352372393012, -0.006560132838785648, -0.007345164194703102, 0.017898717895150185, -0.01858135499060154, 0.027428317815065384, 0.01919572614133358, -0.002512100851163268, 0.018949978053569794, -0.0055191125720739365, -0.012765294872224331, -0.029544489458203316, 0.017775842919945717, -0.009618342854082584, 0.010451158508658409, 0.013468409888446331, -0.022786391898989677, -0.019031893461942673, 0.02412435971200466, -0.0007487664697691798, 0.006044742651283741, -0.010137145407497883, 0.0032612939830869436, 0.00957738421857357, -0.025025438517332077, -0.0017560813575983047, -0.6177583336830139, -0.011229363270103931, 0.02107980288565159, -0.013720985502004623, 0.003501923056319356, -0.0030633294954895973, 0.022731781005859375, 0.00043176731560379267, 0.0005234965356066823, 0.028343049809336662, 0.004443960729986429, 0.011993915773928165, -0.003082101931795478, -0.010198582895100117, -0.013318230397999287, -0.014308052137494087, 0.03328533470630646, -0.006345102563500404, -0.01049894280731678, 0.009645648300647736, -0.022417768836021423, 0.025817297399044037, -0.0007440733606927097, -0.0018738360377028584, 0.016014643013477325, 0.00041939454968087375, 0.017011290416121483, -0.002237339736893773, -0.017106860876083374, 0.017188776284456253, -0.05117040127515793, 0.02592651918530464, 0.02771502546966076, 0.005177794490009546, 0.05316369980573654, 0.002169076120480895, -0.00823941733688116, 0.020943274721503258, 0.028261134400963783, 0.013734637759625912, -0.02248603291809559, -0.006781989708542824, 0.013782422989606857, 0.023032141849398613, 0.0018994349520653486, -0.00593210756778717, -0.0025428193621337414, 0.01271751057356596, -0.006164203863590956, -0.007870794273912907, -0.00011850136070279405, -0.023905916139483452, -0.005092465318739414, 0.005583963356912136, 0.022608907893300056, 0.007474865298718214, 0.018909020349383354, 0.011591160669922829, 0.013290924951434135, 0.01208265870809555, 0.017980635166168213, 0.01155020296573639, -0.005532765295356512, -0.04524511843919754, -0.058488260954618454, 0.009215586818754673, -0.022909266874194145, -0.0159873366355896, 0.030390959233045578, 0.004286954645067453, 0.004515637643635273, 0.004505398217588663, 0.00955690536648035, 0.00801414716988802, -0.011823257431387901, 0.011891520582139492, 0.04114930331707001, -0.0009804361034184694, 0.008594388142228127, 0.014895119704306126, -0.010812955908477306, -0.008976664394140244, -0.01280625257641077, -0.01810350827872753, 0.03672582283616066, -0.005461088847368956, -0.024151664227247238, -0.009748043492436409, -0.00544743612408638, -0.010492116212844849, 0.010492116212844849, 0.005307495594024658, -0.014649370685219765, -0.04699266701936722, 0.038637202233076096, 0.0326026976108551, 0.010157625190913677, 0.003155485261231661, 0.004242583177983761, -0.020724831148982048, -0.0319746732711792, -0.04013900086283684, 0.014308052137494087, 0.022567948326468468, 0.024629509076476097, 0.013796075247228146, -0.01743452623486519, -0.0232778899371624, 0.036179713904857635, -0.020574651658535004, -0.004235757049173117, -0.01550949178636074, -0.02050638757646084, -0.019496086984872818, 0.0028209935408085585, -0.028015384450554848, 0.02684125117957592, -0.011584334075450897, -0.012157748453319073, -0.01368685346096754, -0.025271188467741013, 0.011393195949494839, -0.004280128050595522, -0.013550326228141785, -0.0014241494936868548, 0.034814439713954926, -0.0024950348306447268, 0.0008609747746959329, -0.0027032389771193266, 0.0006237587076611817, 0.009570557624101639, -0.020588304847478867, 0.00891522690653801, -0.0073315114714205265, 0.01901824213564396, -0.006317797116935253, 0.008314507082104683, -0.007747919764369726, 0.02020602859556675, -0.04005708545446396, 0.001749254995957017, 0.0037579117342829704, 0.016820153221488, -0.014772244729101658, -0.0007171945180743933, -0.004863782320171595, -0.011877868324518204, 0.006082287523895502, -0.015304701402783394, -0.008901574648916721, -0.03410449996590614, -0.0354151614010334, -0.008621693588793278, 0.02995407208800316, 0.005495220422744751, 0.004645338747650385, 0.0025598853826522827, -0.04229613021016121, -0.000803803966846317, -0.017420873045921326, -0.01069690752774477, -0.001327727222815156, -0.007208636961877346, 0.0034490188118070364, 0.004624859429895878, -0.009652473963797092, -0.023400764912366867, -0.0020854531321674585, -0.013311403803527355, -0.007556781638413668, -0.01867692358791828, -0.02315501682460308, 0.024711426347494125, 0.03101898357272148, -0.01848578453063965, 0.015878114849328995, -0.003918331116437912, 0.019263990223407745, 0.004525877069681883, -0.00012671432341448963, 0.01888171397149563, 0.024411065503954887, -0.004996896255761385, -0.005897975992411375, 0.024875259026885033, -0.0012330114841461182, 0.03009059838950634, 0.008396423421800137, -0.039784032851457596, -0.016355959698557854, -0.007891273126006126, 0.010089361108839512, -0.01879979856312275, -0.005024201702326536, -0.016055600717663765, -0.007372469641268253, -0.03587935119867325, -0.016847457736730576, -0.01315439771860838, 0.039592891931533813, 0.01293595414608717, 0.006095940247178078, -0.005631747655570507, 0.004351804964244366, 0.019141115248203278, -0.027742329984903336, 0.006891211494803429, -0.016110211610794067, 0.019141115248203278, 0.004218691028654575, 0.004457613453269005, -0.011611639522016048, 0.0032356949523091316, -0.036261629313230515, -0.00937941949814558, 0.008246243931353092, -0.009434030391275883, 0.028233828023076057, -0.010137145407497883, 0.012819905765354633, 0.0008780406787991524, 0.005938934162259102, 0.022212978452444077, 0.009905049577355385, 0.00580923305824399, 0.005693185143172741, -0.016437876969575882, 0.01111331582069397, 0.013755117543041706, -0.032520782202482224, -0.003949049860239029, 0.01572793535888195, 0.013980386778712273, -0.0040104868821799755, 0.005802406929433346, 0.0337495282292366, 0.04846716299653053, -0.020711177960038185, 0.04000247269868851, -0.009474989026784897, 0.00916097592562437, 0.004573661834001541, 0.03451408073306084, -0.025994781404733658, 0.017816802486777306, 0.016274044290184975, 0.028698021546006203, -0.0005397091736085713, -0.02828843891620636, 0.03410449996590614, 0.010225888341665268, 0.016806500032544136, -0.009707084856927395, -0.008266722783446312, 0.032438866794109344, -0.009638821706175804, -0.002370453905314207, 0.010567206889390945, 0.026076698675751686, 0.005280190147459507, -0.007515823468565941, 0.008908401243388653, -0.015345659106969833, -0.005280190147459507, 0.012772121466696262, -0.000839642365463078, -0.008703609928488731, -0.026254184544086456, -0.011720861308276653, -0.003324437653645873, -0.014048650860786438, -0.039565589278936386, -0.007201810833066702, -0.0035394681617617607, -0.014936077408492565, -0.0010376068530604243, 0.005341627169400454, 0.019250337034463882, 0.009215586818754673, 0.016506141051650047, -0.02069752663373947, -0.019441476091742516, 0.00559078948572278, 0.009645648300647736, -0.011850562877953053, -0.0052562979981303215, -0.010929003357887268, -0.009365767240524292, 0.010403374210000038, 0.019168421626091003, -0.012751641683280468, -0.005099291447550058, -0.02393322065472603, 0.016041947528719902, -0.008403250016272068, 0.03350377827882767, 0.043197210878133774, 0.0032374016009271145, 0.0030547964852303267, 0.01608290523290634, 0.008287201635539532, 0.007945884019136429, -0.02315501682460308, -0.014854161068797112, 0.05897975713014603, -0.01322266086935997, -0.0007982575916685164, -0.012997390702366829, 0.01230110228061676, -0.02785155177116394, 0.013748290948569775, -0.018076203763484955, -0.025503283366560936, -0.005450848955661058, -0.02789251133799553, -0.006181269884109497, 0.004771626088768244, -0.014744939282536507, 0.028670715168118477, 0.0049218060448765755, -0.008150674402713776, -0.02460220456123352, -0.0012295983033254743, 0.018786145374178886, 0.0652053952217102, 0.009809480980038643, -0.009167802520096302, 0.02450663596391678, -0.0286434106528759, 0.005283603444695473, -0.02908029779791832, -0.03809109330177307, 0.02767406776547432, -0.02613130956888199, -0.00823941733688116, -0.002757849870249629, 0.01677919551730156, -0.004819410853087902, 0.00468970974907279, 0.0019438063027337193, 0.01788506470620632, -0.026854904368519783, -0.01858135499060154, 0.007351990789175034, -0.016041947528719902, -0.006959475111216307, 0.03246617317199707, 0.013994039967656136, 0.0370807908475399, 0.03475983068346977, 0.03394066542387009, 0.013802901841700077, 0.01550949178636074, -0.02472507953643799, -0.01115427352488041, 0.0011493884958326817, -0.00489791389554739, 0.020875010639429092, -0.008341812528669834, 0.036616601049900055, 0.009147323668003082, -0.03030904196202755, -0.018649617210030556, 0.013782422989606857, -0.006467977073043585, 0.019100157544016838, 0.0064509110525250435, -0.021817049011588097, 0.003394407918676734, -0.03000868298113346, 0.006246120203286409, 0.02908029779791832, 0.007372469641268253, -0.004447374027222395, 0.0044610267505049706, -0.0006348515744321048, 0.002549645723775029, 0.015741588547825813, -0.0011852269526571035, 0.005027614533901215, -0.011652598157525063, -0.011966610327363014, 0.002100812504068017, -0.03303958475589752, -0.05029662698507309, -0.005211926531046629, -0.004833063576370478, -0.019209379330277443, -0.03052748553454876, -0.02028794400393963, -0.0016912309220060706, 0.009454510174691677, -0.01893632486462593, 0.011980263516306877, 0.0011971730273216963, -0.020615609362721443, -0.03855528682470322, 0.015195479616522789, 0.03631623834371567, 0.02319597452878952, 0.0014215896371752024, 0.017584705725312233, 0.0010111547308042645, 0.014198830351233482, -0.0033653958234936, -0.028015384450554848, 0.012362539768218994, -0.01884075626730919, -0.011782298795878887, -0.03642546012997627, -0.024151664227247238, -0.006147137843072414, -0.014062303118407726, 0.011980263516306877, 0.005833125207573175, -0.02886185422539711, -0.011481938883662224, -0.008102890104055405, 0.013147571124136448, 0.03953828290104866, 0.01254002470523119, 0.007768398616462946, 0.026677418500185013, -0.04827602207660675, 0.014499190263450146, -0.022909266874194145, -0.009946008212864399, -0.019141115248203278, -0.008703609928488731, -0.0006314383936114609, 0.001236424664966762, -0.021421119570732117, 0.004655578173696995, -0.0264043640345335, -0.0023585075978189707, -0.020369861274957657, -0.006966301240026951, -0.022035492584109306, 0.013782422989606857, 0.0020359621848911047, 0.0027851553168147802, 0.021858006715774536, 0.006444084458053112, -0.01713416539132595, 0.030254431068897247, -0.03339455649256706, 0.0455181747674942, -0.0043927631340920925, 0.006877558771520853, 0.015714282169938087, 0.02456124685704708, -0.02218567207455635, -0.03110090084373951, 0.006478216499090195, 0.014622065238654613, 0.008225765079259872, -0.006795642431825399, 0.005246058106422424, -0.011877868324518204, -0.012069005519151688, -0.004839889705181122, 0.007235942408442497, -0.011748166754841805, 0.015291048213839531, -0.012929127551615238, 0.004259649198502302, 0.019127463921904564, -0.001749254995957017, -9.332915215054527e-05, -0.03735384717583656, -0.031647007912397385, -0.011652598157525063, 0.014403621666133404, 0.01298373844474554, -0.028097301721572876, -0.01368002686649561, -0.02305944636464119, -0.02583094872534275, 0.010806129314005375, -0.014239788986742496, -0.01322266086935997, -0.0055020470172166824, 0.05821520462632179, 0.026199573650956154, 0.030117904767394066, 0.021598605439066887, 0.03522402048110962, 0.0025820708833634853, -0.01867692358791828, -0.006771749816834927, -0.019400518387556076, -0.02595382370054722, 0.0015470240032300353, 0.021148065105080605, 0.013898470439016819, 0.004399589728564024, -0.002454076660797, 0.008328160271048546, 0.009631995111703873, 0.01818542554974556, -0.00021193717839196324, -0.012649246491491795, -0.0324934758245945, -0.04038475081324577, -0.0062529463320970535, 0.03765420615673065, 0.00636899471282959, -0.0007389535894617438, -0.02842496708035469, 0.013372841291129589, 0.02139381505548954, -0.022745434194803238, 0.018690576776862144, 9.332915215054527e-05, 0.04316990450024605, 0.015454880893230438, 0.011283974163234234, 0.002210034290328622, 0.008724088780581951, -0.028916465118527412, -0.015017993748188019, -0.029762933030724525, -0.013284098356962204, 0.018417522311210632, 0.011427327990531921, 0.014430927112698555, -0.002312429714947939, 0.008560256101191044, -0.0031930303666740656, 0.007222289685159922, -0.014089608564972878, -0.004126535262912512, 0.004891087766736746, -0.01950974017381668, 0.0029080298263579607, -0.03129203990101814, -0.0054713282734155655, 0.008990317583084106, -0.005198273807764053, 0.011365890502929688, 0.005263124126940966, 0.01840386912226677, -0.03148317709565163, -0.02529849298298359, 0.01976914145052433, -0.02574903331696987, 0.027264485135674477, 0.0382276214659214, 0.027114305645227432, 0.01208265870809555, -0.005208513233810663, -0.030254431068897247, -0.01871788129210472, 0.005153902340680361, -0.01249906700104475, 0.006133485119789839, 0.025585200637578964, -0.008375944569706917, 0.006430431734770536, 0.004478092771023512, -0.01717512309551239, -0.006706899497658014, -0.04805757850408554, 0.008130195550620556, 0.0213528573513031, -0.004959351383149624, -0.028588799759745598, -0.022649865597486496, -0.01889536716043949, 0.020574651658535004, -0.013598110526800156, 0.010785650461912155, -0.0026691071689128876, -0.025421367958188057, 0.01363906916230917, 0.029708322137594223, 0.0006267452263273299, 0.016137516126036644, 0.007311032619327307, -0.009481815621256828, 0.0005328828119672835, 0.0023294957354664803, -0.0030616228468716145, -0.004450787324458361, -0.0016801380552351475, 0.03383144363760948, -0.03869181498885155, 0.0042767152190208435, 0.017065901309251785, 0.017598358914256096, -0.022772740572690964, 0.0034882703330367804, -0.026909515261650085, 0.03462330251932144, -0.011365890502929688, -0.018690576776862144, -0.0029472813475877047, 0.0168747641146183, 0.009816306643188, -0.015714282169938087, -0.024015137925744057, -0.01919572614133358, -0.0028517122846096754, 0.004788692109286785, 0.019741835072636604, -0.015577755868434906, -0.010123493149876595, 0.0031367128249257803, 0.007590913213789463, -0.01478589791804552, 0.010621817782521248, 0.004362044390290976, 0.007235942408442497, -0.03175622969865799, 0.000514110317453742, -0.007133547216653824, -0.008362292312085629, -0.00022761647414881736, -0.007358816917985678, -0.015127215534448624, 0.0042767152190208435, 0.016355959698557854, -0.00959786307066679, 0.019796445965766907, 0.02099788561463356, 0.007133547216653824, -0.03776342794299126, 0.012512719258666039, -0.02652723900973797, -0.011502417735755444, 0.006225640885531902, -0.002105932217091322, -0.03623432293534279, -0.024097053334116936, 0.014185178093612194, 0.004297194071114063, -0.005170968361198902, -0.009829959832131863, 0.012464934960007668, 0.031155511736869812, -0.004280128050595522, -0.012765294872224331, 0.0008456154610030353, 0.0015999283641576767, -0.0018960217712447047, 0.016792846843600273, 0.002561591798439622, -0.019182074815034866, 0.009413551539182663, 0.005252884700894356, 0.002928508911281824, -0.008532950654625893, -0.025981130078434944, -3.269186709076166e-05, -0.012389845214784145, 0.008648999035358429, 0.00953642651438713, 0.017338955774903297, 0.0006344249122776091, -0.02363286167383194, -0.018554048612713814, 0.028124606236815453, -0.035333242267370224, -0.004003660753369331, 0.016315001994371414, -0.00909271277487278, 0.008068758063018322, 0.03891025856137276, -0.00979582779109478, -0.03410449996590614, -0.012273796834051609, -0.015577755868434906, -0.042623795568943024, -0.004228930454701185, 0.015741588547825813, 0.0369715690612793, -0.0033022521529346704, -0.02658184990286827, -0.02767406776547432, -0.006836600601673126, -0.0516618974506855, -0.020984232425689697, -0.03205658867955208, 0.017939675599336624, 0.030991679057478905, 0.029462574049830437, -0.006887798197567463, 0.02789251133799553, 0.005461088847368956, -0.00741342781111598, -0.03298497572541237, -0.0031623116228729486, -0.010587685741484165, -0.014772244729101658, 0.024438371881842613, -0.007126720622181892, -0.05338214337825775, -0.0022305133752524853, 0.006874145474284887, -0.015714282169938087, -0.006884384900331497, 0.00015988617087714374, 0.009393072687089443, 0.0065191746689379215, 0.0013772182865068316, 0.007891273126006126, 0.019304947927594185, 0.019796445965766907, 0.01436266303062439, -0.021885313093662262, -0.006529414094984531, 0.01725704036653042, -0.007877620868384838, -0.0038705465849488974, 0.022554297000169754, 0.008314507082104683, -0.013147571124136448, 0.0034797375556081533, 0.0028431792743504047, -0.025134660303592682, -0.009372593834996223, 0.011782298795878887, 0.007590913213789463, 0.02230854704976082, 0.0015077724820002913, 0.03030904196202755, -0.015468534082174301, -0.010396547615528107, -0.006809295155107975, -0.0014079369138926268, 0.014526495710015297, 0.022608907893300056, 0.0398932546377182, -0.017857760190963745, -0.0003379048721399158, -0.0028841374441981316, 0.0032322818879038095, 0.0034131803549826145, -0.01897728256881237, -0.010969961993396282, -0.010710559785366058, -0.014813203364610672, -0.006706899497658014, -0.007154026068747044, -0.008314507082104683, 0.010437505319714546, -0.0018089856021106243, -0.0026503344997763634, 0.018089856952428818, 0.007802530657500029, 0.023387111723423004, -0.01602829433977604, -0.03219311684370041, 0.005433783400803804, 0.01277894712984562, -0.04101277515292168, 0.004614620003849268, 0.009120018221437931, 0.0069697145372629166, 0.004846716299653053, 0.20107728242874146, -0.0016536859329789877, 0.011290800757706165, 0.030554791912436485, 0.018745187669992447, -0.013215834274888039, 0.01228062342852354, 0.01580985262989998, -0.016710931435227394, 0.023783041164278984, 0.00289949681609869, -0.004635098855942488, -0.013994039967656136, -0.0061368984170258045, 0.012533198110759258, -0.013734637759625912, -0.030718624591827393, -0.01280625257641077, -0.03328533470630646, 0.002894377103075385, 0.0026469214353710413, -0.0033346773125231266, -0.0010734451934695244, -0.012219185940921307, 0.024834301322698593, 0.0009625168750062585, -0.014949730597436428, 0.006044742651283741, 0.024233581498265266, 0.013843859545886517, -0.01407595630735159, 0.005560070741921663, 0.017366262152791023, -0.008123368956148624, -0.02929874137043953, -0.0050583332777023315, 0.025189271196722984, -0.007741093169897795, -0.017803149297833443, 0.019892016425728798, 0.010587685741484165, -0.02012411132454872, 0.0013738051056861877, -0.018294647336006165, 0.01115427352488041, -0.000272627774393186, -0.02438376098871231, 0.02012411132454872, -0.022909266874194145, 0.011263495311141014, -0.004061684478074312, 0.0014096435625106096, 0.01849943771958351, 0.014990688301622868, 0.0006412512739188969, 0.01137954369187355, 0.0015444641467183828, -0.0005128303309902549, -0.016492487862706184, -0.02271812967956066, -0.009550078772008419, 0.010164450854063034, -0.000846042123157531, 0.018567701801657677, -0.03631623834371567, 0.011290800757706165, -0.0232778899371624, 0.02050638757646084, -0.006153964437544346, 0.01927764341235161, -0.008096063509583473, 0.0030991677194833755, -0.027605803683400154, -0.002875604433938861, -0.01848578453063965, -0.016328655183315277, 0.023441722616553307, 0.016096558421850204, 0.02943526767194271, 0.01691572181880474, 0.0011323225917294621, 0.0213528573513031, -0.03161970525979996, -0.01757105253636837, 0.01051942165941, -0.02456124685704708, 0.02757849730551243, -0.018595006316900253, -0.017693927511572838, -0.020943274721503258, 0.0005559217534027994, 0.023387111723423004, -0.0037169535644352436, -0.02016506902873516, 0.005184621084481478, -0.025776337832212448, 0.014062303118407726, 0.020055847242474556, -0.020083153620362282, -0.02670472301542759, -0.009946008212864399, 0.057832930237054825, -0.0015470240032300353, 0.01368002686649561, -0.013816554099321365, 0.012369365431368351, -0.0017100033583119512, 0.028343049809336662, -0.0017526681767776608, -0.006553306244313717, -0.0002438290830468759, -0.038063786923885345, 0.02482064813375473, -0.007406601682305336, -0.002943868050351739, 0.018171772360801697, 0.011393195949494839, -0.026158614084124565, 0.012260143645107746, -0.012314754538238049, 0.01256050355732441, 0.008089237846434116, 0.017120512202382088, 0.017734885215759277, -0.03448677435517311, -0.03328533470630646, -0.005979892332106829, 0.033640306442976, -0.03355839103460312, -0.03339455649256706, 0.016260391101241112, -0.007679656147956848, 0.013168049976229668, -0.02020602859556675, -0.0002758276532404125, 0.003220335813239217, 0.02636340633034706, 0.005737556144595146, -0.017065901309251785, -0.026827597990632057, -0.007863967679440975, 0.010792476125061512, 0.0278105940669775, 0.009372593834996223, -0.0079936683177948, -0.019250337034463882, 0.011939304880797863, -0.019632613286376, -0.009625168517231941, -0.02828843891620636, 0.012894995510578156, 0.0010947776027023792, 0.009461335837841034, 0.0033790485467761755, 0.0410400815308094, 6.0530623159138486e-05, -0.030609402805566788, -0.015250090509653091, 0.014553801156580448, 0.02785155177116394, -0.03383144363760948, -0.0017953328788280487, 0.035524383187294006, -0.005365519784390926, -0.022472379729151726, 0.0019506326643750072, -0.17344418168067932, 0.02381034754216671, -0.0026162026915699244, -0.010560380294919014, 0.01348888874053955, 0.005406477954238653, 0.01133175939321518, 0.0002662280749063939, -0.017297998070716858, 0.0037510853726416826, 0.0013166343560442328, 0.0013482063077390194, -0.010021097958087921, -0.0049730041064321995, 0.004856955725699663, -0.004556595813483, -0.036480072885751724, 0.01612386479973793, 0.05952586606144905, -0.0038876126054674387, 0.01901824213564396, -0.030199820175766945, -0.003952463157474995, 0.001485586748458445, 0.016396919265389442, 0.010041576810181141, 0.0031520721968263388, 0.02771502546966076, -0.00671031279489398, -0.02600843459367752, -0.0009249718859791756, -0.026513585820794106, 0.023960527032613754, 0.0014113500947132707, 0.017475483939051628, -0.003435366088524461, 0.0018772492185235023, 0.0011826669797301292, -0.00233973516151309, 0.018472133204340935, 0.011557028628885746, 0.015086257830262184, 0.022158367559313774, 0.0018738360377028584, 0.007468038704246283, 0.008997143246233463, 0.020233333110809326, -0.004734081216156483, 0.009829959832131863, -0.018062550574541092, 0.03333994746208191, -0.017680274322628975, 0.0008251363760791719, 0.021803395822644234, 0.009884570725262165, -0.011591160669922829, -0.009891397319734097, 0.023250585421919823, 0.008164327591657639, -0.02024698629975319, 0.010000618174672127, 0.00011476819054223597, 0.024138011038303375, -0.005242645274847746, -0.007406601682305336, -0.01280625257641077, 0.02086135931313038, 0.008157500997185707, -0.004314260091632605, -0.00431767338886857, -0.006659115198999643, 0.00048595157568342984, 0.003737432649359107, 0.009522773325443268, 0.012826732359826565, 0.0064201923087239265, -0.04327912628650665, -0.006560132838785648, 0.03273922577500343, 0.012628767639398575, 0.0046077934093773365, 0.00040979497134685516, -0.015291048213839531, -0.0005998664419166744, -0.011338585056364536, 0.013229487463831902, -0.0047750393860042095, 0.00046888567158021033, -0.008177979849278927, 0.008334986865520477, 0.021803395822644234, -0.006488455925136805, -0.0018362910486757755, 0.0042255171574652195, 0.022281242534518242, -0.0042937807738780975, 0.0382276214659214, -0.006348515395075083, 0.015591408126056194, -0.001715123187750578, 0.022745434194803238, 0.006925343070179224, -0.01889536716043949, 0.015072604641318321, 0.03527863323688507, 0.03372222185134888, 0.013796075247228146, 0.001959165558218956, 0.03189275786280632, -0.015577755868434906, -0.023168668150901794, 0.005628334358334541, 0.010219061747193336, 0.0039251577109098434, 0.0043927631340920925, 0.047374945133924484, 0.0006211988511495292, -0.026568196713924408, 0.02670472301542759, -0.015796199440956116, 0.04516320303082466, -0.01879979856312275, -0.016888417303562164, 0.009857265278697014, -0.011147446930408478, 0.006430431734770536, -0.10119397193193436, -0.014089608564972878, 0.017953328788280487, 0.014294399879872799, 0.004945698659867048, 0.015714282169938087, -0.0033380903769284487, 0.04382523521780968, -0.02222663164138794, 0.045572783797979355, -0.016410570591688156, -0.020711177960038185, 0.010178104043006897, 0.01120205782353878, 0.0015470240032300353, -0.0008174566901288927, -0.004976416938006878, -0.004228930454701185, -0.02050638757646084, 0.032438866794109344, 0.010348763316869736, -0.017625663429498672, 0.01804889738559723, -0.0233325008302927, -0.011236189864575863, -0.01867692358791828, -0.013509368523955345, 0.005863843951374292, 0.013188528828322887, 0.003781803883612156, 0.011693555861711502, -0.014690328389406204, 0.02028794400393963, -0.019646266475319862, -0.022677170112729073, -0.01927764341235161, -0.017803149297833443, -0.02434280328452587, 0.008539777249097824, -0.04508128762245178, -0.00453611696138978, 0.01365954801440239, -0.016451530158519745, -0.02341441810131073, -0.01436266303062439, 0.005669292528182268, -0.02077944204211235, 0.026950472965836525, 0.023646514862775803, -0.016396919265389442, -0.012096310965716839, -0.025762686505913734, -0.009543252177536488, -0.03126473352313042, 0.025803644210100174, -0.004191385582089424, 0.007877620868384838, 0.013038349337875843, -0.020042195916175842, -0.0019301535794511437, 0.01544122863560915, -0.016328655183315277, -0.007160852663218975, 0.0213528573513031, 0.004331326112151146, 0.014253441244363785, 0.0035872526932507753, -0.020533693954348564, -0.013031522743403912, -0.0013004217762500048, -0.012847211211919785, 0.015878114849328995, -0.01990566775202751, 0.008000494912266731, -0.018922671675682068, 0.0006920223240740597, -0.022458726540207863, -0.03757229074835777, 0.024042442440986633, 0.01879979856312275, -0.021243635565042496, -0.013994039967656136, 0.013714158907532692, -0.042978767305612564, 0.034595996141433716, -0.003914917819201946, 0.0003607305116020143, -0.004375697113573551, 0.025667116045951843, -0.023660166189074516, 0.003747672075405717, 0.010021097958087921, 0.02688220888376236, -0.0005205100169405341, -0.00510611804202199, 0.020888663828372955, -0.02323693223297596, 0.0022475793957710266, 0.032793838530778885, -0.0020154830999672413, -0.019086504355072975, -0.012389845214784145, -0.047074586153030396, 0.018335605040192604, -0.00503102783113718, -0.006310970522463322, 0.001779973623342812, -0.012799426913261414, -0.006334862671792507, -0.0006677033961750567, 0.0029950658790767193, 0.0017424286343157291, -0.024397414177656174, 0.0022475793957710266, -0.020151417702436447, -0.018308300524950027, -0.01810350827872753, -0.017557399347424507, 0.0015973683912307024, 0.005734143313020468, 0.01118157897144556, 0.010321457870304585, -0.013475236482918262, -0.004515637643635273, 0.012273796834051609, 0.030199820175766945, 0.0016067547257989645, 0.00891522690653801, -0.020806748420000076, 0.0381183996796608, -0.017379915341734886, -0.010246367193758488, 0.025503283366560936, -0.0038261753506958485, -0.00012127457011956722, 0.004833063576370478, -0.019673572853207588, -0.042186908423900604, 0.03962019830942154, 0.002797101391479373, 0.009242892265319824, 0.0030206646770238876, -0.03224772959947586, -0.0026759335305541754, 0.02828843891620636, -0.008724088780581951, -0.01111331582069397, -0.0031077007297426462, -0.029626406729221344, -0.008819658309221268, 0.019537044689059258, 0.016219433397054672, 0.03000868298113346, 0.003153778612613678, -0.017857760190963745, -0.036343544721603394, 0.0050890520215034485, -0.012683378532528877, 0.034950967878103256, 0.013168049976229668, 0.01889536716043949, -0.014267094433307648, 0.05469280481338501, 0.021229982376098633, 0.015250090509653091, -0.018376562744379044, 0.010608164593577385, -0.018417522311210632, -0.04019361361861229, -0.008068758063018322, -0.009324808605015278, -0.04587314650416374, 0.006143724545836449, -0.02042447216808796, 0.021858006715774536, 0.031647007912397385, 0.011543376371264458, 0.008109716698527336, -0.008969837799668312, -0.019700877368450165, -0.006792229134589434, 0.023564597591757774, 0.028889158740639687, -0.010164450854063034, -0.025421367958188057, 0.003774977521970868, 0.02737370692193508, -0.0005311762215569615, -0.008751394227147102, 0.010758345015347004, 0.015468534082174301, 0.003042850410565734, 0.0026332687120884657, -0.02793346904218197, -0.012246491387486458, 0.019496086984872818, 0.01212361641228199, 0.034814439713954926, -0.02073848433792591, 0.02323693223297596, 0.013290924951434135, 0.018772492185235023, -0.0028551253490149975, 0.021284593269228935, 0.008416903205215931, -0.0019745249301195145, -0.02521657757461071, 0.013741464354097843, -0.027960773557424545, -0.015113563276827335, 0.017161471769213676, 0.03508749604225159, -0.0053245616145431995, 0.007031151559203863, -0.003597492119297385, 0.007986842654645443, -0.010614991188049316, -0.011727687902748585, -0.019345907494425774, -0.002407998777925968, -0.027291791513562202, 0.0016024882206693292, -0.005863843951374292, 0.01849943771958351, 0.012990565039217472, -0.008669477887451649, 0.017980635166168213, 0.005345040466636419, 0.008997143246233463, -0.017816802486777306, 0.0038295884151011705, -0.03394066542387009, 0.02644532173871994, 0.025407714769244194, 0.013386493548750877, -0.00862852018326521, 0.0009266784763894975, -0.01624673791229725, -0.016041947528719902, 0.03372222185134888, -0.016765542328357697, 0.07558146864175797, 0.022772740572690964, -0.021298246458172798, 0.008362292312085629, -0.027564845979213715, -0.005310908891260624, 0.019127463921904564, -0.00453611696138978, -0.011065530590713024, -0.023783041164278984, 0.02938065677881241, -0.009877744130790234, -0.01721608266234398, -0.021066149696707726, -0.021953577175736427, -9.114258136833087e-05, 0.01210313756018877, 0.011208884418010712, -0.008765047416090965, 0.02908029779791832, 0.021380161866545677, -0.008382771164178848, 0.03123742714524269, -0.006444084458053112, -0.02965371124446392, -0.01096313539892435, 0.04598236829042435, 0.01888171397149563, 0.012144096195697784, -0.0269777774810791, 0.015714282169938087, -0.009386246092617512, -0.01388481818139553, 0.005829712375998497, -0.0019386864732950926, -0.02583094872534275, -0.009454510174691677, -0.026499932631850243, -0.002341441810131073, 0.011372717097401619, 0.005536178592592478, 0.01783045381307602, -0.025189271196722984, -0.004682883620262146, 0.00649186922237277, -0.004403002560138702, 0.0027373707853257656, -0.02196722850203514, -0.014813203364610672], "44e2d019-65b4-48d3-a22f-7de620fc4945": [0.0008604044560343027, -0.011716295965015888, 0.001194174401462078, -0.012766041792929173, 0.00045265903463587165, 0.020234035328030586, -0.013216939754784107, -0.03226736932992935, -0.02193899266421795, -0.05515042692422867, 0.026546603068709373, -0.0002820312511175871, 0.012970354408025742, -0.012103785760700703, 0.011540163308382034, 0.013949648477137089, 0.009990202262997627, 0.011920608580112457, 0.024193480610847473, -0.0235734973102808, -0.02465846948325634, 0.007076980546116829, -0.023108508437871933, -0.0006732642650604248, -0.020642660558223724, 0.01572505757212639, 0.04187712445855141, -0.013766471296548843, -0.011589480563998222, 0.01275195088237524, 0.01952950842678547, -0.008390924893319607, -0.020529936999082565, -0.008989773690700531, -0.025532083585858345, -0.018909523263573647, -0.0022650565952062607, 0.005202936939895153, 0.012167192995548248, -0.007855483330786228, 0.021065378561615944, -0.010363602079451084, -0.012392641976475716, 0.00041324953781440854, 0.010835635475814342, 0.022460343316197395, 0.011554254218935966, -0.0003511630347929895, -0.012822403572499752, -0.013829878531396389, -0.011413348838686943, 0.002599707106128335, -0.009567486122250557, 0.0007331491215154529, -0.02151627652347088, -0.010772228240966797, 0.001095540588721633, -0.0027124315965920687, 0.0025204478297382593, 0.015189616940915585, 0.014118734747171402, 0.009940885938704014, -0.010814500041306019, 0.0112090352922678, -0.04035534709692001, -0.04117259755730629, -0.005523497238755226, -0.020093129947781563, -0.010631322860717773, -0.011948789469897747, 0.015513699501752853, 0.036748163402080536, -0.009391354396939278, -0.005287480540573597, 0.005417817737907171, -0.03353551775217056, -0.02079765684902668, -0.009327946230769157, -0.0011395735200494528, -0.002710670232772827, 0.007439812645316124, 0.003818540135398507, -0.01063836831599474, -0.0075243557803332806, 0.022685792297124863, 0.040411707013845444, -0.014611904509365559, 0.001533228438347578, -0.0181486327201128, -0.007168569136410952, 0.010567915625870228, 0.018824979662895203, 0.022812606766819954, 0.02719476819038391, 0.009081361815333366, 0.015260069631040096, 0.021389460191130638, 0.003106967080384493, -0.015781421214342117, -0.015513699501752853, -0.018585439771413803, 0.007214363664388657, -0.01657049171626568, -0.011991061270236969, -0.02116401121020317, 0.0008383879321627319, 0.01928996853530407, 0.0002362369414186105, -0.0047203353606164455, 0.006795169785618782, -0.01712002232670784, 0.01621822826564312, -0.004026375710964203, 0.0008630464435555041, -0.016612762585282326, -0.009363172575831413, 0.015513699501752853, -0.025827985256910324, 0.00511134834960103, -0.007256634999066591, 0.027659757062792778, 0.004435001872479916, 0.013618520461022854, -0.039087194949388504, 0.008792505599558353, 0.0017630805959925056, -0.011103356257081032, -0.017345471307635307, 0.036860886961221695, -0.015260069631040096, 0.0471469946205616, 0.014175097458064556, 0.005629176273941994, -0.008151385001838207, -0.0273638553917408, 0.0093138562515378, -0.022220803424715996, 0.01392851211130619, 0.004287051036953926, -0.025461630895733833, 0.005083167459815741, 0.01468235719949007, 0.009243403561413288, -0.037170879542827606, -0.00609064195305109, 0.023474862799048424, -0.008940456435084343, 0.03719906136393547, 0.020586298778653145, -0.03218282386660576, 0.019909951835870743, -0.014795081689953804, -0.02579980343580246, 0.015570062212646008, 0.019924042746424675, 0.011554254218935966, -0.009489987976849079, 0.01500643976032734, -0.027110226452350616, -0.006925506982952356, 0.007693442516028881, 0.011991061270236969, -0.010807454586029053, 0.002182274591177702, 0.002964300336316228, 0.024616196751594543, -0.0008282603812403977, -0.03455003723502159, -0.013393071480095387, -0.026729781180620193, 0.008954547345638275, 0.033789146691560745, -0.012279917486011982, 0.039763543754816055, 0.03646635264158249, 0.0027335674967616796, 0.01772591657936573, -0.0029590162448585033, -0.021149922162294388, -0.02158672921359539, 0.027687938883900642, -0.006499268114566803, 0.011709250509738922, 0.01912088133394718, -0.012688543647527695, -0.02024812623858452, 0.020642660558223724, 0.017796369269490242, 0.0038220626302063465, -0.00459704315289855, -0.0030875925440341234, 0.0051219165325164795, -0.021488094702363014, -0.009292719885706902, -0.6082610487937927, -0.009652029722929, 0.01754274033010006, -0.019642231985926628, 0.006467564031481743, 0.007954117842018604, 0.016598671674728394, 0.009673165157437325, 0.0012795984512194991, 0.026490241289138794, 0.017951365560293198, 0.007763895206153393, -0.0015728580765426159, -0.010025428608059883, -0.024249842390418053, -0.023362137377262115, 0.020544027909636497, -0.002414768561720848, -0.03314098343253136, 0.015710966661572456, -0.02778657153248787, 0.03316916525363922, 0.017500467598438263, -0.002728283405303955, 0.0035719554871320724, 0.0037692231126129627, 0.02930835261940956, -0.015654604882001877, -0.02508118562400341, 0.010412919335067272, -0.03477548807859421, 0.007742759305983782, 0.027814753353595734, -0.003924219403415918, 0.041088055819272995, -0.006108255125582218, -0.006788124330341816, 0.014625994488596916, 0.025997072458267212, 0.02802611142396927, -0.02737794630229473, -0.017345471307635307, 0.0169509369879961, 0.02519391104578972, -0.003003049176186323, -0.00027696744655258954, -0.017697734758257866, 0.005315661430358887, -0.00735526904463768, -0.008862958289682865, -0.010194515809416771, -0.008073887787759304, -0.002131196204572916, 0.012096740305423737, 0.016443675383925438, 0.0046569281257689, 0.028857454657554626, -0.00049184839008376, 0.004357503727078438, 0.018472716212272644, 0.01664094440639019, 0.010927224531769753, -0.007076980546116829, -0.04187712445855141, -0.03443731367588043, -0.0017393027665093541, -0.019924042746424675, -0.004840105306357145, 0.011659933254122734, 0.013005580753087997, 0.001993813319131732, -0.004516022279858589, -0.006696535740047693, -0.001181845203973353, 0.007129820063710213, 0.022319437935948372, 0.04613247141242027, -0.014823262579739094, 0.0007903919904492795, 0.02471483126282692, 0.008574102073907852, -0.0012681498192250729, -0.011624706909060478, -0.011913563124835491, 0.043145276606082916, 0.0029466871637851, -0.0372554250061512, 0.005005669314414263, -0.012688543647527695, -0.016316860914230347, 0.009553395211696625, 0.022699881345033646, 0.0047837430611252785, -0.0362972654402256, 0.03838266804814339, 0.03666362166404724, -0.0012584625510498881, 0.003304234938696027, -0.018345901742577553, -0.026786142960190773, -0.015837782993912697, -0.03624090552330017, 0.006224502343684435, 0.008207747712731361, 0.018867252394557, 0.019092699512839317, -0.015260069631040096, -0.012632181867957115, 0.009349082596600056, -0.014182141982018948, -0.01592232659459114, -0.025842076167464256, -0.041989851742982864, -0.01638731360435486, 0.004174326546490192, -0.025701170787215233, 0.02072720415890217, -0.000530597404576838, -0.00113428954500705, -0.020994925871491432, -0.000494050036650151, -0.0002105877356370911, -0.0018317720387130976, -0.006326658651232719, 0.00816547591239214, 0.01645776629447937, 0.019064519554376602, 0.002191081177443266, 0.004255347419530153, -0.006943120621144772, 0.0235734973102808, -0.002895608777180314, 0.01658458262681961, -0.006717671640217304, 0.011258352547883987, -0.012251736596226692, 0.0005504122818820179, 0.0026701600290834904, -0.0018951795063912868, -0.03649453446269035, 0.011082220822572708, 0.004188416991382837, 0.019487235695123672, -0.018374081701040268, -0.0016943891532719135, -0.023531224578619003, -0.024278024211525917, 0.012110831215977669, -0.007143910974264145, -0.005808830726891756, -0.009518168866634369, -0.020417211577296257, -0.006897326093167067, 0.011941744014620781, 0.0022227847948670387, 0.0056573571637272835, 0.0013139441143721342, -0.040411707013845444, -0.013125350698828697, -0.03232372924685478, -0.010969496332108974, 0.014273731037974358, -0.015429156832396984, -0.0020801180507987738, -0.012082650326192379, -0.015781421214342117, -0.03888992965221405, 0.016626853495836258, -0.017091842368245125, -0.007742759305983782, 0.0007159762899391353, -0.022742154076695442, 0.026574784889817238, 0.026673417538404465, -0.03263372182846069, 0.017134113237261772, -0.01471053808927536, 0.014696447178721428, -0.008574102073907852, -0.0035684327594935894, 0.0339864157140255, 0.027927476912736893, -0.002166422549635172, -0.014992348849773407, 0.021868539974093437, 0.014640085399150848, -0.0005609801737591624, 0.011885382235050201, -0.01676775887608528, 0.005495315883308649, 0.0025151639711111784, -0.0017093602800741792, -0.0023795422166585922, -0.0021629000548273325, -0.01802181825041771, -0.01428782194852829, -0.021896719932556152, -0.01621822826564312, -0.009821115992963314, 0.0410035103559494, 0.021375369280576706, 0.011279487982392311, -0.012427868321537971, 0.0054142954759299755, 0.025517992675304413, -0.010927224531769753, 0.011096310801804066, -0.01874043606221676, 0.012131966650485992, 0.00786957424134016, -0.0032549179159104824, -0.008940456435084343, -0.008665690198540688, -0.034634582698345184, 0.0069607337936758995, 0.021009014919400215, -0.030548321083188057, 0.020699024200439453, -0.004889422096312046, 0.014330092817544937, 0.006502790376543999, 0.013759425841271877, 0.018613621592521667, 0.021248554810881615, -0.010814500041306019, 0.0003036074049305171, 0.007006527855992317, -0.001349170575849712, 0.018162723630666733, -0.02375667355954647, -0.007728668861091137, 0.004752039443701506, 0.008884093724191189, -0.005879283417016268, 0.01562642492353916, 0.01851498708128929, 0.04962693154811859, -0.013371935114264488, 0.021741723641753197, -0.007777985651046038, -0.012286962941288948, -0.014203278347849846, 0.021910810843110085, -0.03308461979031563, 0.013942603021860123, 0.0181486327201128, 0.020205853506922722, -0.006995960138738155, -0.023432591930031776, 0.02351713366806507, 0.006122345570474863, 0.02881518192589283, -0.01313944160938263, -0.00850364938378334, 0.031140124425292015, -0.01934633031487465, 0.005844057071954012, 0.019149063155055046, 0.023545315489172935, 0.012378551997244358, -0.02091038227081299, 0.004699199926108122, -0.0012126682559028268, -0.005512929055839777, 0.013350799679756165, -0.016528218984603882, 0.0032461113296449184, -0.030942855402827263, -0.009997247718274593, -0.009264538995921612, -0.00035974945058114827, -0.026208430528640747, -0.003552580950781703, -0.007242544554173946, -0.0162745900452137, 0.01634504273533821, 0.0054319086484611034, 0.009997247718274593, 0.007348223589360714, 0.022403979673981667, -0.00856001116335392, -0.03483184799551964, 0.014499180018901825, 0.009377263486385345, -0.01693684607744217, -0.014696447178721428, -0.021488094702363014, -0.014964167959988117, 0.009715436957776546, 0.0028586210682988167, -0.009842251427471638, 0.0033958235289901495, 0.016175955533981323, 0.030125604942440987, -0.009208177216351032, 0.01540097501128912, 0.05455862358212471, -0.0031897490844130516, -0.0032425886020064354, 0.021319007501006126, 0.003085831180214882, -0.00043658699723891914, -0.01790909469127655, -0.011758566834032536, 0.05365682765841484, -0.008179566822946072, -0.013245120644569397, -0.013252166099846363, 0.022883059456944466, -0.034042779356241226, 0.0035050252918154, -0.03139375522732735, -0.02460210770368576, -0.009891568683087826, -0.03243645653128624, 0.003913651220500469, -0.01783864200115204, -0.01061018742620945, 0.03998899087309837, 0.004818969406187534, -0.012420822866261005, -0.03145011514425278, 0.0007670545019209385, 0.013759425841271877, 0.060082122683525085, 0.016006868332624435, -0.011483801528811455, 0.016190046444535255, -0.029871974140405655, -0.0006719433004036546, -0.00598144019022584, -0.05168415233492851, 0.03238009288907051, -0.00870796199887991, -0.0033711649011820555, -0.013787606731057167, 0.015894144773483276, -0.024489382281899452, 0.011857201345264912, 0.013061943463981152, 0.019740866497159004, -0.02682841382920742, -0.007573672570288181, 0.02320714294910431, -0.02164309099316597, -0.0011184377362951636, 0.0325491800904274, 0.020487666130065918, 0.02778657153248787, 0.02725113183259964, 0.04624519869685173, 0.015161436051130295, 0.0063337041065096855, -0.023784855380654335, -0.017556829378008842, -0.0066014244221150875, -0.0016820598393678665, 0.015288250520825386, 0.006425292696803808, 0.017993636429309845, 0.017472287639975548, -0.04249710962176323, -0.012857629917562008, 0.02243216149508953, -0.015415065921843052, 0.013829878531396389, 0.004910557996481657, -0.020656751468777657, 0.017317291349172592, -0.019318148493766785, 0.0020642662420868874, 0.037537235766649246, -0.026983410120010376, -0.01341420691460371, 0.0063548400066792965, 0.0035384902730584145, -4.0510341932531446e-05, 0.01350579597055912, -0.004611133597791195, 0.0018405786249786615, -0.02103719674050808, -0.015288250520825386, -0.017035478726029396, -0.035902731120586395, -0.02651842311024666, -0.017500467598438263, 0.0035684327594935894, -0.01664094440639019, -0.018402263522148132, -0.030463777482509613, -0.003295428352430463, -0.001719047548249364, -0.011349940672516823, 0.00810911413282156, 0.006421769969165325, -0.02217853255569935, -0.04565339535474777, 0.008390924893319607, 0.024827556684613228, 0.007806167006492615, 0.004995101131498814, 0.003638885449618101, -0.010173379443585873, 0.004899990279227495, -0.009208177216351032, -0.028843363747000694, 0.008517739363014698, -0.023559406399726868, -0.021361280232667923, -0.028857454657554626, -0.023235322907567024, 0.008877049200236797, -0.0021681839134544134, 0.010264968499541283, 0.006738807540386915, -0.017500467598438263, 0.0008841822273097932, -0.006048370152711868, 0.026236610487103462, 0.03990444913506508, 0.015274160541594028, 0.006344271823763847, 0.017289109528064728, -0.035057298839092255, 0.006858577020466328, -0.005005669314414263, -0.00856001116335392, -0.014062372967600822, 0.003205600893124938, -0.011878336779773235, 0.0012655078899115324, -0.012660362757742405, 0.011892427690327168, -0.02930835261940956, -0.008200702257454395, -0.016922755166888237, -0.00280225882306695, -0.017218656837940216, 0.015570062212646008, -0.00011855879711220041, 0.003261963138356805, 0.017345471307635307, 0.00011393534077797085, -0.008743188343942165, -0.006869145203381777, -0.017387744039297104, 0.027392037212848663, -0.01049041748046875, -0.012160147540271282, 0.02802611142396927, 0.007003005128353834, -0.03435277193784714, -0.03412732109427452, 0.007799121551215649, 0.01940269209444523, 0.008095023222267628, 0.01250536646693945, 0.009201131761074066, -0.014611904509365559, -0.009081361815333366, 0.006879712920635939, -0.010497462935745716, -0.008355698548257351, 0.01196288038045168, -0.022136259824037552, 0.0037093383725732565, 0.011511982418596745, -0.004403298255056143, -0.02447529137134552, -0.0282797422260046, -0.029251988977193832, -0.01495007798075676, 0.015231888741254807, 0.01995222456753254, -0.006192798260599375, -0.03068922646343708, -0.030153784900903702, -0.02086810953915119, -0.0006208650302141905, -0.005470657721161842, -0.00609064195305109, 0.0041813720017671585, 0.04959874972701073, 0.012744906358420849, 0.03919992223381996, 0.026447970420122147, 0.00958862155675888, -0.003888992825523019, -0.0068726674653589725, -0.019388601183891296, -0.002032562391832471, -0.02068493328988552, -0.009835206903517246, 0.0093138562515378, 0.011441529728472233, -0.001607203739695251, -0.020896291360259056, 0.028054293245077133, 0.011533117853105068, 0.012427868321537971, -0.002029039664193988, -0.0059990533627569675, -0.031083762645721436, -0.03170374780893326, 0.006766988430172205, 0.019374512135982513, 0.006104732397943735, -0.024982551112771034, -0.031619202345609665, -0.0011703965719789267, 0.04782333970069885, 0.0010840919567272067, 0.01766955479979515, 0.014752809889614582, 0.037114519625902176, 0.01037064753472805, 0.008898184634745121, -0.003408152610063553, 0.009320901706814766, -0.020163582637906075, -0.02206580713391304, -0.030661044642329216, -0.01893770508468151, -0.009511123411357403, 0.009419535286724567, 0.030097423121333122, 0.008693872019648552, 0.0036882024724036455, 0.002869189018383622, 0.009553395211696625, -0.035170022398233414, -0.003186226589605212, 0.020769476890563965, -0.043314363807439804, 0.005851102527230978, -0.04280710220336914, 0.0045371581800282, -0.011631752364337444, -0.02217853255569935, -0.0031844652257859707, -0.007390495389699936, 0.024249842390418053, -0.02412302792072296, -0.026602964848279953, 0.01868407428264618, -0.01735956221818924, 0.029871974140405655, 0.025968890637159348, 0.03316916525363922, 0.008172521367669106, -0.0047661298885941505, -0.0254475399851799, -0.017951365560293198, 0.0033059963025152683, -0.029280170798301697, 0.006509835831820965, 0.03449367731809616, -0.016781849786639214, -0.0021241509821265936, 0.0033007122110575438, -0.019332239404320717, -0.012484231032431126, -0.03477548807859421, 0.016429586336016655, 0.011194945313036442, -0.004730903543531895, -0.03316916525363922, -0.016894573345780373, -0.02291124127805233, 0.026743870228528976, -0.024461202323436737, 0.010504507459700108, 0.0157955102622509, -0.013442388735711575, 0.011554254218935966, 0.020642660558223724, -0.006456996314227581, 0.014640085399150848, -0.00445966050028801, -0.000944947765674442, 0.0036247950047254562, -0.0005543752340599895, -0.0018705209949985147, -0.003540251636877656, -0.0028304399456828833, 0.030830131843686104, -0.030181966722011566, -0.004353980999439955, 0.003948877565562725, 0.0035649100318551064, -0.007277770899236202, -0.006809260230511427, -0.033676423132419586, 0.030463777482509613, -0.007467993535101414, -0.01220946479588747, 0.01097654178738594, 0.02072720415890217, 0.0063090454787015915, -0.01905042864382267, -0.01761319302022457, -0.00784139335155487, 0.006791647057980299, 0.017880912870168686, 0.00655563035979867, -0.01881088875234127, -0.016655035316944122, -0.00637597544118762, 0.0018529078224673867, -0.03663543984293938, 0.0157955102622509, -0.0003905725316144526, 0.02199535444378853, -0.05095144361257553, 0.006390066351741552, 0.00877137016505003, -0.00044979690574109554, -0.00076881586574018, 0.0014205039478838444, -0.015485518611967564, -0.00634779455140233, 0.008736143819987774, -0.01404828205704689, 0.004213075619190931, 0.03274644538760185, 0.015415065921843052, -0.046019747853279114, 0.019008157774806023, -0.026250701397657394, 0.00813729502260685, 0.015950506553053856, 0.0004449532716535032, -0.01531643234193325, -0.022263074293732643, 0.020572207868099213, -0.009821115992963314, 0.004519545007497072, -0.016485948115587234, 0.01831771992146969, 0.018726345151662827, 0.007136865518987179, -0.015090983361005783, 0.004625224508345127, 0.005136006977409124, 0.0093138562515378, 0.006569720804691315, 0.0050514633767306805, -0.006154049187898636, 0.019684502854943275, -0.004660450853407383, -0.00877137016505003, -0.019881771877408028, -0.04179258272051811, -0.018176814541220665, -0.010264968499541283, -0.0020660273730754852, -0.004924648441374302, 0.007305952254682779, -0.012766041792929173, -0.027814753353595734, -0.016908664256334305, 0.013209894299507141, -0.02308032661676407, 0.0008392686140723526, 0.02587025612592697, -0.015034620650112629, 0.00571371940895915, 0.029928335919976234, -0.020163582637906075, -0.030914675444364548, -0.016063231974840164, -0.012019242160022259, -0.052050504833459854, -0.01952950842678547, 0.026307063177227974, 0.02670159935951233, -0.009419535286724567, -0.029392894357442856, -0.028787001967430115, -0.009666119702160358, -0.04218711704015732, -0.03257736191153526, -0.022474434226751328, 0.020572207868099213, 0.04931693896651268, 0.018430443480610847, -0.000573749712202698, 0.03790358826518059, 0.003920696675777435, 0.006478132214397192, -0.050303276628255844, -0.007763895206153393, -0.018007727339863777, -0.022164441645145416, 0.03429640829563141, -0.02230534702539444, -0.05946213752031326, -0.013400116935372353, 0.010659503750503063, -0.013984874822199345, 0.01976904645562172, -0.010074745863676071, 0.005266344640403986, 0.02410893701016903, 0.00611882284283638, 0.0037903590127825737, 0.030238328501582146, 0.021741723641753197, 0.005537587683647871, -0.040608976036310196, 0.010891998186707497, 0.026870686560869217, -0.005858147982507944, -0.011434484273195267, 0.014823262579739094, 0.003712860867381096, -0.017754098400473595, -0.006774033885449171, 0.0169509369879961, -0.009271584451198578, -0.014421681873500347, 0.014125780202448368, -0.0012478947173804045, 0.03387369215488434, 0.009553395211696625, 0.03460640087723732, -0.011335850693285465, -0.0007622108678333461, 0.00471681309863925, 0.016528218984603882, 0.018345901742577553, -0.002302044304087758, 0.03781904652714729, -0.012406732887029648, 0.004530113190412521, -0.007404585834592581, 0.013463524170219898, 0.0026930570602416992, -0.01936042122542858, -0.012378551997244358, 0.0017181668663397431, -0.0026948184240609407, -0.00958157703280449, 0.01260400004684925, -1.130409145844169e-05, 0.013639655895531178, -0.006798692047595978, -0.013343754224479198, 0.017824551090598106, 0.009229312650859356, 0.011497891508042812, -0.017979547381401062, -0.03745269030332565, 0.0113288052380085, 0.00034565888927318156, -0.021361280232667923, -0.0009845774620771408, 0.03037923388183117, 0.004857718478888273, 0.0031721359118819237, 0.215867280960083, 0.011892427690327168, 0.01765546388924122, 0.034042779356241226, 0.024517564103007317, -0.007112206891179085, 0.017232747748494148, -0.0063337041065096855, -0.009412489831447601, 0.011702205054461956, -0.011878336779773235, -0.007404585834592581, -0.00838387943804264, -0.006798692047595978, 0.014611904509365559, -0.010553824715316296, -0.04117259755730629, -0.011568345129489899, -0.007334133144468069, 0.007904800586402416, 0.00537906913086772, -0.006368930451571941, -0.015175526030361652, -0.01003247406333685, 0.022319437935948372, 0.007658216170966625, -0.010955405421555042, 0.003776268335059285, 0.009060226380825043, 0.004512500017881393, -0.013160577043890953, -0.009292719885706902, 0.015753239393234253, 0.0008445525891147554, -0.018599530681967735, -0.007707532960921526, 0.011018812656402588, -0.017077751457691193, -0.009518168866634369, 0.019064519554376602, 0.0001415660372003913, -0.021544456481933594, -0.013118305243551731, -0.010067700408399105, 0.015809601172804832, -0.00048524345038458705, -0.017697734758257866, 0.03984808549284935, -0.00928567536175251, 0.014865534380078316, -0.0006966017535887659, 0.013872150331735611, 0.00010309221397619694, 0.0280402023345232, 0.0005777127225883305, -0.0019427351653575897, -0.003987626638263464, -0.003214407479390502, -0.015485518611967564, -0.008750233799219131, -0.017528649419546127, 0.011046994477510452, -0.005396682303398848, 0.02651842311024666, -0.02973106876015663, 0.004695677198469639, -0.026631146669387817, 0.02899836003780365, -0.0031809424981474876, 0.005928600672632456, -0.011349940672516823, -0.006344271823763847, -0.02171354368329048, -0.013400116935372353, -0.008884093724191189, -0.006228024605661631, 0.017105931416153908, 0.009201131761074066, 0.011293578892946243, 0.017514558508992195, 0.005512929055839777, -0.0038431985303759575, -0.022925330325961113, -0.016922755166888237, -0.000944947765674442, -0.027702027931809425, 0.025997072458267212, -0.0054319086484611034, -0.001086734002456069, -0.018374081701040268, 0.007369359489530325, 0.018585439771413803, -0.016415495425462723, -0.009609757922589779, 0.013428297825157642, -0.01628868095576763, -0.0025362996384501457, 0.017754098400473595, -0.011096310801804066, -0.02134718932211399, -0.01510507334023714, 0.05267048999667168, 0.004505454562604427, 0.019867680966854095, -0.022108079865574837, 0.009933840483427048, 0.013005580753087997, 0.023503044620156288, -0.0003388337790966034, 0.003818540135398507, -0.009468852542340755, -0.0443570651113987, 0.003874902380630374, 0.004498409107327461, 0.004952829796820879, 0.02870245836675167, 0.004847150295972824, -0.012702634558081627, 0.016175955533981323, -0.029195627197623253, 0.02458801679313183, -0.00877137016505003, 0.01730320043861866, 0.010934269987046719, -0.028307922184467316, -0.041933488100767136, 0.0006283506518229842, 0.027941567823290825, -0.03810085728764534, -0.02302396483719349, 0.03142193332314491, -0.018134543672204018, 0.01893770508468151, -0.01730320043861866, -0.008968637324869633, 0.016810031607747078, 0.015119164250791073, 0.010060655884444714, -0.013576248660683632, -0.021431732922792435, 0.0020642662420868874, 0.024193480610847473, 0.021431732922792435, 0.0233339574187994, 0.0012496559647843242, -0.009067271836102009, 0.01572505757212639, -0.02888563461601734, -0.004065124783664942, -0.04089078679680824, 0.007059367373585701, 0.0038608117029070854, 0.003295428352430463, 0.004572384525090456, 0.03455003723502159, -0.014273731037974358, -0.014161006547510624, -0.025053003802895546, 0.0034398564603179693, 0.034155502915382385, -0.023474862799048424, 0.01537279412150383, 0.042835284024477005, 0.002925551263615489, -0.01645776629447937, -0.008440242148935795, -0.18047180771827698, 0.022756244987249374, 0.01562642492353916, -0.0066225603222846985, 0.023503044620156288, 0.01874043606221676, 0.008426151238381863, 0.0016433108830824494, 0.003080547321587801, 0.012230601161718369, 0.013738290406763554, 0.01778227835893631, -0.008581147529184818, 0.015090983361005783, 0.01260400004684925, -0.004466705489903688, -0.021783996373414993, 0.02543344907462597, 0.051881417632102966, 0.008595237508416176, 0.025405269116163254, -0.038551755249500275, 0.003617749782279134, -0.003962968476116657, 0.03612817823886871, 0.0029836748726665974, 0.006615514867007732, 0.027997929602861404, 0.000135951820993796, -0.02846291847527027, -0.005977917462587357, -0.00891932100057602, 0.019036337733268738, -0.008595237508416176, 0.0169509369879961, -0.0006490461528301239, -0.014189187437295914, -0.0041109188459813595, -0.015133255161345005, 0.02000858634710312, 0.012611045502126217, 0.003980581648647785, 0.004611133597791195, -0.0021276737097650766, 0.0066014244221150875, 0.026870686560869217, 0.012921038083732128, 0.0005226715002208948, 0.01075813826173544, -0.013301482424139977, 0.024503473192453384, -0.019881771877408028, 0.004227166064083576, -0.00219988776370883, 0.022925330325961113, 0.010018384084105492, -1.8342489056522027e-05, 0.021488094702363014, -0.00879955105483532, -0.015865962952375412, 0.007855483330786228, -0.00877137016505003, 0.01275195088237524, 0.0009722482063807547, -0.00011635715054580942, -0.01664094440639019, 0.01796545647084713, -0.0005107825854793191, 0.005424863193184137, 0.005939168389886618, -0.012660362757742405, 0.016795940697193146, 0.0014548497274518013, 0.017289109528064728, 0.010652458295226097, 0.011265398003160954, -0.034042779356241226, -0.00018130580428987741, 0.038918111473321915, 0.0028515758458524942, 0.006932552438229322, 0.001074404688552022, -0.009391354396939278, -0.0032725310884416103, -0.01353397686034441, 0.01304785255342722, -0.013216939754784107, 0.0077920760959386826, -0.017134113237261772, 0.005167710594832897, 0.022516705095767975, -0.023615768179297447, -0.000734470144379884, -0.007256634999066591, 0.021783996373414993, -0.0012135489378124475, 0.02067084237933159, -0.012921038083732128, 0.019684502854943275, -0.017134113237261772, 0.007048799656331539, 0.020952653139829636, -0.025236181914806366, 0.017683645710349083, 0.02875882014632225, 0.03142193332314491, 0.009187040850520134, 0.004343413282185793, 0.047231536358594894, 0.003501502564176917, -0.016373222693800926, 0.022220803424715996, 0.01761319302022457, 0.010624277405440807, -0.003800926962867379, 0.03133739158511162, -0.011561299674212933, -0.020952653139829636, 0.017951365560293198, -0.015964597463607788, 0.05678493157029152, -0.016711397096514702, -0.023066235706210136, 0.013942603021860123, -0.0026912956964224577, -0.018585439771413803, -0.115035280585289, -0.028223378583788872, 0.016316860914230347, 0.011392212472856045, -0.008087977766990662, -0.0021329575683921576, -0.008947501890361309, 0.03705815598368645, -0.011800838634371758, 0.03043559566140175, -0.012456049211323261, -0.014921896159648895, 0.0010215651709586382, 0.015584152191877365, 0.01127244345843792, -0.008602282963693142, -0.00043526600347831845, -0.01473871897906065, -0.014555541798472404, 0.03567728400230408, 0.002832201309502125, -0.007446857634931803, 0.02153036557137966, -0.014668266288936138, 0.0027335674967616796, -0.016810031607747078, -0.018585439771413803, 0.018881341442465782, 0.01471053808927536, 0.023601677268743515, 0.013428297825157642, -0.015640513971447945, 0.026560693979263306, -0.01609141193330288, -0.030351052060723305, -0.02864609658718109, -0.023784855380654335, -0.028364283964037895, 0.015640513971447945, -0.034155502915382385, -0.00019946940301451832, 0.02260124869644642, -0.014935987070202827, -0.008806596510112286, 0.0018194427248090506, 0.004125009756535292, -0.010321330279111862, 0.04125714302062988, 0.015034620650112629, -0.002474653534591198, -0.0005059389513917267, -0.009208177216351032, 2.337876139790751e-05, -0.029702886939048767, 0.025602536275982857, 0.0037269515451043844, 0.030914675444364548, 0.0027071477379649878, -0.017585011199116707, 0.009792935103178024, -0.01790909469127655, -0.018430443480610847, 0.007665261160582304, 0.026081616058945656, -0.0006221859948709607, 0.018782708793878555, 0.0060378024354577065, -0.0013755903346464038, -0.005903942044824362, 0.006967778783291578, -0.009644984267652035, -2.5387766072526574e-05, -0.02820928953588009, 0.014104644767940044, -0.008433196693658829, -0.009271584451198578, -0.03201373666524887, -0.022925330325961113, 0.021361280232667923, 0.01353397686034441, -0.012103785760700703, -0.002960777608677745, -0.00566440261900425, -0.023531224578619003, 0.02574344165623188, 0.004632269497960806, -0.005146574694663286, -0.010293149389326572, 0.0247711930423975, -0.02826565131545067, -0.010701775550842285, 0.014273731037974358, 0.02140355110168457, -0.02368622086942196, 0.0038044494576752186, 0.018190905451774597, -0.013371935114264488, 0.003543774364516139, 0.022995783016085625, -0.019515417516231537, -0.01869816519320011, -0.00471681309863925, -0.04957056790590286, 0.02013540081679821, 3.263944745413028e-05, 0.022530796006321907, -0.003011855995282531, -0.014027146622538567, -0.010138153098523617, 0.013548067770898342, -0.0162745900452137, 0.003927741665393114, -0.019134972244501114, 0.01299149077385664, -0.03736814856529236, -0.024728922173380852, -0.024221662431955338, -0.0069607337936758995, -0.012484231032431126, -0.0068938033655285835, 0.01826135814189911, 0.0016943891532719135, -0.010412919335067272, 0.003836153307929635, -0.004639314953237772, 0.022446252405643463, 0.006855054292827845, 0.011349940672516823, -0.019811319187283516, 0.024982551112771034, -0.021558547392487526, -0.008179566822946072, 0.020304488018155098, -0.0031633293256163597, 0.008665690198540688, 0.020896291360259056, -0.020952653139829636, -0.04895058274269104, 0.021079467609524727, 0.0018370558973401785, 0.035846367478370667, 0.017810460180044174, -0.022389890626072884, -0.022319437935948372, 0.016119593754410744, -0.007147433236241341, -0.01766955479979515, 0.003483889391645789, -0.020093129947781563, -0.003304234938696027, 0.017387744039297104, 0.015570062212646008, 0.013252166099846363, 0.01118085440248251, -0.007305952254682779, -0.03508548066020012, 0.0011448574950918555, -0.026617055758833885, 0.01434418372809887, 0.008792505599558353, 0.015753239393234253, -0.009729527868330479, 0.05816580727696419, 0.011286533437669277, 0.010011338628828526, -0.01157538965344429, 0.013977829366922379, -0.02888563461601734, -0.041088055819272995, -0.006858577020466328, -0.024137118831276894, -0.015386885032057762, 0.0023707356303930283, -0.016598671674728394, 0.027293402701616287, 0.021544456481933594, 0.015555971302092075, 0.005777127109467983, -0.009158859960734844, -0.012850585393607616, -0.0010074746096506715, 0.02423575334250927, 0.014823262579739094, -0.026250701397657394, -0.03201373666524887, -0.00019044264627154917, 0.015992779284715652, 0.01638731360435486, -0.0186277125030756, 0.01868407428264618, 0.009405444376170635, 0.000798758293967694, 0.0027212381828576326, -0.007298906799405813, -0.00958862155675888, -0.004272960592061281, 0.013576248660683632, 0.04641428589820862, -0.016908664256334305, 0.01335784513503313, 0.016683215275406837, 0.026997501030564308, -0.018233176320791245, 0.014238504692912102, -0.0011290055699646473, 0.001104347174987197, -0.030548321083188057, 0.013026717118918896, -0.034578219056129456, -0.01573914848268032, 0.018416354432702065, 0.020572207868099213, -0.0023407931439578533, -0.0030946379993110895, 0.0026102750562131405, 0.007256634999066591, -0.013273301534354687, 0.0038819476030766964, -0.009969066828489304, -0.022629428654909134, -0.024193480610847473, 0.014055327512323856, 0.005791217554360628, 0.02694113925099373, 0.0212203748524189, 0.003080547321587801, 0.027758391574025154, 0.01916315406560898, 0.009835206903517246, -0.007214363664388657, 0.024390747770667076, -0.01585187390446663, 0.01958587020635605, 0.028378374874591827, 0.005692583974450827, 0.003367642406374216, -0.006650741212069988, -0.013301482424139977, -0.019036337733268738, 0.021445823833346367, -0.016232317313551903, 0.07293270528316498, 0.023376228287816048, -0.025574354454874992, -0.002788168378174305, -0.01761319302022457, -0.008750233799219131, 0.0228548776358366, 0.001808874891139567, -0.004910557996481657, -0.027110226452350616, 0.01495007798075676, -0.0033324160613119602, -0.02706795372068882, -0.020642660558223724, -0.02556026540696621, 0.006675399839878082, 0.01347761508077383, 0.00011371517030056566, -0.019938133656978607, 0.018486807122826576, 0.032041918486356735, -0.010941315442323685, 0.03226736932992935, -0.004885899368673563, -0.023319866508245468, -0.02175581455230713, 0.03967899829149246, 0.01743001490831375, 0.009109542705118656, -0.012413778342306614, 0.012047423981130123, -0.006203366443514824, -0.01912088133394718, -0.012808313593268394, -0.005442476365715265, -0.01893770508468151, -0.014668266288936138, -0.030097423121333122, -0.005586904473602772, 0.011533117853105068, 0.006848009303212166, 0.014513269998133183, -0.03274644538760185, -0.01218128390610218, 0.01989586278796196, -0.01561233401298523, -0.0026948184240609407, -0.01232923474162817, -0.013526931405067444], "fcbe0373-7a9f-4827-9ad4-21b471fd1e67": [-0.00791693665087223, -0.013250745832920074, -7.963188545545563e-05, -0.03110923245549202, 0.0009416198008693755, 0.02112579345703125, -0.014744770713150501, -0.03105338104069233, -0.017998116090893745, -0.05752694606781006, 0.01167992502450943, -0.0025988356210291386, 0.02253604307770729, -0.02030198648571968, 0.015163656324148178, 0.019547991454601288, 0.02041368931531906, 0.0048102024011313915, 0.017830561846494675, -0.009285296313464642, -0.014339848421514034, -0.0015097332652658224, -0.018277373164892197, -0.0004066680558025837, -0.027814000844955444, -0.007267664186656475, 0.034739572554826736, -0.022047342732548714, -0.013725482858717442, 0.012741101905703545, 0.013879074715077877, -0.02590108849108219, -0.01817963272333145, -0.008629041723906994, -0.011889368295669556, -0.004188855644315481, 0.0031276787631213665, 0.012559585273265839, 0.0016048551769927144, -0.010123067535459995, 0.007742401212453842, 0.008231100626289845, -0.00304739223793149, 0.0019408363150432706, -0.011882386170327663, 0.021991491317749023, 0.007707493845373392, -0.010884042829275131, -0.010109104216098785, -0.0054734377190470695, -0.01064667385071516, 0.013362448662519455, -0.01174973975867033, 0.006534614600241184, -0.02220093458890915, 0.005152292083948851, -0.009431906044483185, 0.0011013199109584093, 0.018933625891804695, 0.003902616910636425, 0.005906286183744669, 0.013027340173721313, -0.015847835689783096, -0.006586974952369928, -0.027534743770956993, -0.036666449159383774, -0.014395699836313725, -0.012468826025724411, -0.008852447383105755, -0.02007858082652092, 0.019422326236963272, 0.03099752962589264, -0.007560884114354849, -0.008168268017470837, 0.0010646673617884517, -0.01817963272333145, 0.005396642256528139, -0.002237546956166625, -0.0037909140810370445, -0.013774353079497814, 0.010178918950259686, -0.009843810461461544, -0.00832884106785059, -0.0030543736647814512, 0.019980840384960175, 0.057052209973335266, -0.003555291099473834, -0.002068247413262725, 0.0011877150973305106, -0.001515842042863369, 0.016071241348981857, 0.022131118923425674, 0.022075267508625984, 0.03102545626461506, 6.970517279114574e-05, 0.012168625369668007, 0.008105435408651829, 0.002111881272867322, 0.0046845367178320885, -0.009536627680063248, -0.021446939557790756, 0.0007160324603319168, -0.0069639720022678375, -0.0200506541877985, -0.03730873763561249, -0.012266364879906178, 0.02010650560259819, -0.00958549790084362, 0.007107091136276722, 0.02010650560259819, -0.016015389934182167, 0.036498893052339554, -0.005871378816664219, 0.006632354576140642, -0.02766040898859501, -0.006035442464053631, 0.023792698979377747, -0.01748148910701275, 0.00612969184294343, -0.015847835689783096, 0.007665605284273624, 0.011302928440272808, 0.03147226572036743, -0.02898687869310379, 0.01070252526551485, -0.01440966222435236, -0.0009014765964820981, -0.027786074206233025, 0.020120467990636826, -0.004489056766033173, 0.03984997794032097, 0.014940250664949417, -0.005703824572265148, -0.0044611310586333275, -0.03130471333861351, 0.005675898864865303, -0.022075267508625984, 0.012503733858466148, 0.00998343899846077, -0.03331536427140236, 0.0021816955413669348, 0.029685022309422493, 0.004119041375815868, -0.01806792989373207, 0.025579944252967834, 0.03306403383612633, -0.016043316572904587, 0.02686452679336071, 0.010248732753098011, -0.02335985004901886, 0.000556332350242883, -0.012915637344121933, -0.015261396765708923, 0.010527989827096462, 0.0188358873128891, 0.0010489592095836997, 0.0027663898654282093, 0.03270099684596062, -0.01569424569606781, -0.01101669017225504, 0.0006684715044684708, 0.01059082243591547, -0.0006929064984433353, -0.009257370606064796, 0.0011580439750105143, 0.03108130767941475, -0.0019286188762634993, -0.02810722030699253, -0.006293755490332842, -0.0134601891040802, 0.00032223641755990684, 0.034599944949150085, -0.018109818920493126, 0.021740159019827843, 0.01395586971193552, 0.008140342310070992, 0.008510357700288296, 0.007679568137973547, -0.0072537013329565525, -0.03088582679629326, 0.034879203885793686, -0.020651057362556458, 0.0064578186720609665, 0.02200545370578766, -0.01971554569900036, -0.019184958189725876, 0.02576146088540554, 0.015680281445384026, 0.006318190135061741, 0.0041783833876252174, 0.013383393175899982, 0.004129513166844845, -0.011798609048128128, -0.00814732350409031, -0.6174931526184082, -0.001883239601738751, 0.032533444464206696, -0.02799551747739315, -0.0055711776949465275, 0.01637842506170273, 0.01996687799692154, -0.0034697686787694693, -0.013983795419335365, 0.026403751224279404, 0.007595791015774012, 0.003916579764336348, -0.015708208084106445, -0.004464621655642986, -0.022871149703860283, -0.029992204159498215, 0.014549290761351585, 0.00020802466315217316, -0.00929227750748396, 0.003555291099473834, -0.024127807468175888, 0.025175021961331367, 5.53946108539094e-07, -0.001173752243630588, 0.014702882617712021, -0.013941907323896885, 0.026319975033402443, -0.0029374349396675825, -0.01750941574573517, 0.030802050605416298, -0.025496166199445724, 0.025007467716932297, 0.023345887660980225, -0.010395342484116554, 0.04032471403479576, -0.004398297984153032, -0.020720871165394783, 0.015037991106510162, 0.011100467294454575, 0.03390180319547653, -0.032254185527563095, -0.0043284837156534195, 0.021335236728191376, 0.027297373861074448, -0.008985094726085663, 0.018849849700927734, -0.0015734388725832105, 0.010360435582697392, -0.018626444041728973, -0.004635666497051716, 0.0026197799015790224, -0.02553805522620678, -0.004698499571532011, 0.0007077420013956726, 0.0011004472617059946, -0.004084134008735418, 0.030522793531417847, 0.009054909460246563, -0.010053252801299095, 0.013711520470678806, 0.012035978026688099, 0.013159987516701221, -0.012308253906667233, -0.06087803095579147, -0.04616118595004082, 0.013648686930537224, -0.039291463792324066, -0.00798675138503313, 0.019561955705285072, -0.0011754975421354175, 0.004049227107316256, -0.00643338356167078, -0.005054552108049393, 0.0029147451277822256, -0.00849639531224966, 0.02909858152270317, 0.03594037890434265, -0.012601473368704319, -0.0038677097763866186, 0.01679730974137783, -0.004656611010432243, 0.000549787248019129, 0.0018553138943389058, -0.01931062340736389, 0.050238341093063354, 0.00992758758366108, -0.03594037890434265, -0.01643427647650242, -0.008810559287667274, -0.011142355389893055, 0.013027340173721313, 0.013027340173721313, -0.007246719673275948, -0.03130471333861351, 0.04158136993646622, 0.041134558618068695, 0.009103778749704361, -0.005522307939827442, 0.004942849278450012, -0.022131118923425674, -0.026110531762242317, -0.03968242183327675, 0.01679730974137783, 0.008524321019649506, 0.02706000581383705, 0.01597350277006626, -0.024365175515413284, -0.007923917844891548, 0.02123749628663063, -0.014605142176151276, 0.004729915875941515, -0.018221521750092506, -0.03549356758594513, -0.009159630164504051, -0.0018814941868185997, -0.0200506541877985, 0.011910311877727509, -0.0027663898654282093, -0.011742757633328438, -0.015107804909348488, -0.02746492810547352, 0.012405993416905403, -0.007895992137491703, -0.008168268017470837, 0.0036059063859283924, 0.032645147293806076, 0.0289310272783041, 0.0018762581748887897, 0.008559227921068668, -0.00441924249753356, 0.014814585447311401, -0.007833159528672695, 0.007902974262833595, -0.012196551077067852, 0.04194440692663193, -0.0031102250795811415, 0.01043723151087761, -0.010374398902058601, 0.017718859016895294, -0.02904273010790348, 0.000683307065628469, -0.0045867967419326305, 0.010925930924713612, -0.018193595111370087, 0.00556419650092721, -0.012454863637685776, -0.017202232033014297, 0.0246304702013731, 0.010618748143315315, -0.01716034486889839, -0.025691647082567215, -0.01588972471654415, 0.00723973847925663, 0.030215609818696976, -0.009822865948081017, 0.007581828162074089, 0.01823548413813114, -0.036582671105861664, -0.009173593483865261, -0.01977139711380005, -0.008293934166431427, -0.0030840449035167694, -0.004066680558025837, 0.0044401865452528, -0.009711163118481636, -0.010953856632113457, -0.03627548739314079, 0.009648330509662628, -0.009801921434700489, -0.013076210394501686, -0.013062247075140476, -0.021684307605028152, 0.02206130512058735, 0.03172359988093376, -0.018542665988206863, 0.008098454214632511, -0.009522664360702038, 0.008643005043268204, -0.00091194873675704, -0.0034802407026290894, 0.02862384542822838, 0.026082606986165047, -0.012643362395465374, -0.007428236771374941, 0.032337963581085205, -0.0008923134882934391, 0.014702882617712021, 0.017006753012537956, -0.02335985004901886, -0.020595205947756767, -0.008475450798869133, 0.02245226502418518, -0.018542665988206863, 0.0010349963558837771, -0.015205545350909233, -0.01408153586089611, -0.005850434768944979, -0.004981247242540121, -0.008698856458067894, 0.026306012645363808, 0.006702168844640255, -0.003363301744684577, -0.01690901257097721, -0.0006309463642537594, 0.016238795593380928, -0.029321987181901932, 0.004153948277235031, -0.009208500385284424, 0.01815170608460903, -0.0026442150119692087, -0.01435381080955267, 0.00039641407784074545, -0.002687848871573806, -0.038732949644327164, -0.0059865727089345455, 0.017411675304174423, -0.020692946389317513, 0.021796010434627533, -0.0012339670211076736, 0.008761689066886902, 0.018389075994491577, 0.014744770713150501, 0.03133263811469078, 0.0014992611249908805, 0.002172968816012144, 0.006765001453459263, -0.00821713823825121, 0.00556419650092721, 0.02302474156022072, -0.03183530271053314, -0.01235712319612503, 0.02921028435230255, -0.0016484891530126333, 0.003679211251437664, 0.025216909125447273, 0.014772696420550346, 0.05959345027804375, -0.017886413261294365, 0.03306403383612633, -0.01649012789130211, -0.0010367417708039284, -0.0008128997287712991, 0.036945704370737076, -0.0360800065100193, 0.021028054878115654, 0.010248732753098011, 0.012531659565865993, -0.013111117295920849, -0.03270099684596062, 0.03362254798412323, 0.0042691417038440704, 0.01903136633336544, -0.005644482560455799, -0.01889173872768879, 0.0416930727660656, -0.0008504249271936715, 0.0022026398219168186, 0.011819553561508656, 0.022940965369343758, 0.02106994204223156, -0.009278315119445324, 0.009124723263084888, 0.0030892807990312576, -0.003483731532469392, 0.013997758738696575, -0.010674599558115005, -0.0049672843888401985, -0.032142482697963715, -0.006422911770641804, -0.009082835167646408, -0.0032324001658707857, -0.029601244255900383, 0.006147145293653011, -0.01105857826769352, -0.008677911944687366, -0.00012228403647895902, 0.004066680558025837, 0.004607740789651871, -0.0034156625624746084, 0.014786659739911556, -0.00535824429243803, -0.025998828932642937, 0.026054680347442627, 0.00941794365644455, -0.0017270301468670368, -0.0004686281899921596, -0.010325528681278229, -0.00387469120323658, 0.016015389934182167, 0.019212882965803146, -0.0049672843888401985, 0.0027245013043284416, -0.008677911944687366, 0.01556857954710722, 0.002787334145978093, 0.021809974685311317, 0.040883228182792664, -0.010346473194658756, -0.01809585466980934, 0.0031486230436712503, 0.01591765135526657, 0.009606441482901573, -0.007016332820057869, -0.016783347353339195, 0.039347317069768906, -0.012238439172506332, -0.012280328199267387, -0.00855224672704935, 0.011672943830490112, -0.03275685012340546, 0.020623130723834038, -0.020064616575837135, -0.018053967505693436, -0.012210513465106487, -0.02468632161617279, -0.012280328199267387, -0.004279613960534334, -0.020637094974517822, 0.0269203782081604, 0.008133361116051674, -0.007854104042053223, -0.024197621271014214, 0.009676256217062473, 0.020483503118157387, 0.05791790783405304, 0.0096273859962821, -0.013962851837277412, 0.016811273992061615, -0.03169567137956619, 0.009739088825881481, -0.01588972471654415, -0.024728210642933846, 0.03161189705133438, -0.00718388706445694, -0.001949563156813383, 0.012063903734087944, 0.019464215263724327, -0.002977577969431877, 0.008978113532066345, 0.007882029749453068, 0.011421612463891506, -0.010451193898916245, -0.021851861849427223, 0.019184958189725876, -0.006632354576140642, 0.004443677607923746, 0.02862384542822838, 0.015987465158104897, 0.03959864750504494, 0.03644304350018501, 0.030383164063096046, 0.011163299903273582, -0.01174973975867033, -0.01993895135819912, -0.02539842762053013, -0.0017689187079668045, -0.015680281445384026, 0.018738146871328354, -0.0031765487510710955, 0.0289310272783041, 0.0025953450240194798, -0.03281269967556, -0.018263408914208412, -0.0041469670832157135, -0.006126201245933771, 0.016266722232103348, 0.007539939600974321, -0.013536984100937843, 0.01020684465765953, -0.02719963528215885, -0.010667618364095688, 0.04702688381075859, -0.007421255577355623, -0.0012365849688649178, 0.01637842506170273, 0.011044615879654884, -0.008286952041089535, 0.02079068496823311, -0.01685316115617752, -0.004970774985849857, -0.016615793108940125, -0.01635049842298031, -0.013543966226279736, -0.026571305468678474, -0.03493505343794823, -0.024337250739336014, -0.00936209224164486, -0.02531464956700802, -0.01795622706413269, -0.030383164063096046, -0.007093128282576799, -0.005389660596847534, -0.01894759014248848, -0.005798073951154947, 0.0033301401417702436, -0.034655798226594925, -0.03990582749247551, -0.00154638581443578, 0.03088582679629326, 0.005592122208327055, 0.010953856632113457, 0.006290264427661896, -0.005808546207845211, 0.011889368295669556, -0.005721278488636017, -0.034879203885793686, 0.008789614774286747, -0.023401739075779915, 0.0005065897130407393, -0.024085918441414833, -0.02604071795940399, -0.008105435408651829, -0.02409988082945347, 0.012112773954868317, 0.007082656491547823, -0.030131833627820015, -0.014842511154711246, 0.003101498354226351, 0.01928269863128662, 0.029740873724222183, 0.01286676712334156, 0.014228145591914654, 0.02363910712301731, -0.040101308375597, 0.008594134822487831, -0.02118164487183094, -0.010360435582697392, -0.026515454053878784, 0.0077912709675729275, 0.011093485169112682, -0.0008617697167210281, -0.009718144312500954, -0.00620648730546236, -0.02862384542822838, -0.003429625416174531, -0.0025325121823698282, -0.017830561846494675, -0.023625144734978676, 0.005906286183744669, -0.00643338356167078, 0.0017689187079668045, 0.017174307256937027, 0.006370550952851772, -0.025440314784646034, 0.014179275371134281, -0.0169648639857769, 0.041162487119436264, 0.003234145464375615, -0.004356409423053265, 0.012182587757706642, 0.013851149007678032, -0.022550005465745926, -0.034488242119550705, -0.0015140967443585396, -0.006792927160859108, 0.009264351800084114, -0.005225596949458122, -0.003283015452325344, -0.01105857826769352, -0.020288022235035896, -0.007117563392966986, -0.013139043003320694, -0.007798252627253532, 0.013809259980916977, -0.026710934937000275, 0.007616735529154539, 0.011261039413511753, 0.00232306937687099, -0.010234770365059376, -0.030383164063096046, -0.030774123966693878, -0.01781659759581089, -0.00266166846267879, 0.03379010036587715, -0.025216909125447273, -0.013453206978738308, -0.026738859713077545, -0.017146380618214607, 0.005400132853537798, -0.005721278488636017, 0.005225596949458122, -0.00031765486346557736, 0.05858812481164932, 0.029489541426301003, 0.029740873724222183, 0.018710220232605934, 0.03571697324514389, -0.001083866343833506, -0.009753052145242691, -0.016266722232103348, -0.009711163118481636, -0.009431906044483185, -0.0019792341627180576, 0.017397712916135788, -0.0038607283495366573, 0.010395342484116554, -0.020776722580194473, 0.01875210925936699, -0.0024574617855250835, 0.008559227921068668, -0.005752694793045521, -0.014940250664949417, -0.03298025578260422, -0.04250292107462883, -0.00855224672704935, 0.013865111395716667, 0.006381023209542036, -0.004227253142744303, -0.02881932444870472, 0.004105078522115946, 0.034404464066028595, -0.008014677092432976, 0.036834001541137695, -0.00387469120323658, 0.037029482424259186, 0.004911432974040508, 0.0005270976689644158, -0.0014006484998390079, 0.010458176024258137, -0.022047342732548714, -0.01812378130853176, -0.04431809112429619, -0.024616507813334465, -0.0021572604309767485, 0.014800622127950191, 0.017718859016895294, 0.004611231852322817, -0.006890667136758566, 0.011575203388929367, 0.012454863637685776, -0.03811858594417572, -0.002977577969431877, 0.008510357700288296, -0.03655474632978439, 0.020371800288558006, -0.03728081285953522, -0.000599966268055141, 7.679568079765886e-05, -0.018375111743807793, 0.003920070361346006, 0.0038467654958367348, 0.01742563769221306, -0.028302699327468872, -0.012748083099722862, 0.017914338037371635, -0.019324585795402527, 0.028330625966191292, 0.025188984349370003, 0.026333937421441078, 0.011295946314930916, 0.010863098315894604, -0.02652941830456257, -0.024421026930212975, 0.00535824429243803, -0.017914338037371635, 0.007103600539267063, 0.04652421921491623, -0.013760389760136604, -0.0010088160634040833, 0.002389393048360944, -0.01569424569606781, -0.007372385356575251, -0.03166774660348892, 0.00987173616886139, 0.009438887238502502, 0.0012706194538623095, -0.03124886192381382, -0.02231263741850853, -0.016196908429265022, 0.0089501878246665, -0.011086503975093365, 0.003242872189730406, -0.013711520470678806, -0.007023314479738474, 0.01351604051887989, 0.028414402157068253, -0.0073793670162558556, 0.012776008807122707, -0.004656611010432243, -0.0002493677893653512, 0.012482789345085621, -0.007770326919853687, -0.0014983884757384658, 0.0012941817985847592, 0.0060843126848340034, 0.02338777668774128, -0.017118455842137337, -0.012468826025724411, 0.014730808325111866, 0.016922976821660995, -0.01977139711380005, 0.00026158528635278344, -0.027646446600556374, 0.030746199190616608, -0.010653655976057053, -0.012727138586342335, 0.0003580162301659584, 0.021977528929710388, 0.011051597073674202, -0.017663007602095604, -0.025091243907809258, -0.0067300945520401, -0.0035727445501834154, 0.008363747969269753, 0.00703378627076745, -0.01385813020169735, -0.0244908407330513, -0.010521008633077145, 0.0008901317487470806, -0.023178333416581154, 0.00992758758366108, -0.00035714355180971324, 0.020595205947756767, -0.029489541426301003, 0.007449181284755468, -0.0030578644946217537, -0.018417000770568848, 0.005082477815449238, 0.0016327808843925595, -0.018682295456528664, -0.00468104612082243, 0.021977528929710388, -0.010849135927855968, 0.02881932444870472, 0.038760874420404434, 0.014549290761351585, -0.041525520384311676, 0.015387061983346939, -0.020008765161037445, -0.006408948916941881, 0.008161286823451519, 0.005030116997659206, -0.029796725139021873, -0.03130471333861351, 0.021111831068992615, -0.003989884629845619, 0.014674956910312176, -0.010709507390856743, 0.021474866196513176, 0.0232760738581419, 0.0030718273483216763, -0.010416286997497082, 0.0057282596826553345, 0.009222463704645634, -0.009075853042304516, 0.01242693793028593, 0.006950009148567915, -0.009152648970484734, 0.006342625245451927, 0.013907000422477722, -0.00507549662142992, -0.0050580427050590515, -0.029908427968621254, -0.021712234243750572, -0.009767014533281326, 0.0036861926782876253, 0.012971488758921623, 0.010325528681278229, -0.006070349831134081, -0.024225547909736633, -0.02225678600370884, 0.022759446874260902, -0.028554031625390053, 0.0016833962872624397, 0.021768085658550262, -0.024504804983735085, 0.004391316790133715, 0.032421741634607315, -0.014507402665913105, -0.03839784115552902, -0.022787373512983322, -0.027213597670197487, -0.05146706849336624, 0.0005580777069553733, 0.008321859873831272, 0.04294973239302635, -0.003129424061626196, -0.0223405621945858, -0.029880501329898834, -0.015317248180508614, -0.043871279805898666, -0.017090529203414917, -0.022019416093826294, 0.02865177020430565, 0.03127678856253624, 0.022717559710144997, -0.0021956583950668573, 0.018626444041728973, -0.010793284513056278, 0.0017889903392642736, -0.03571697324514389, -0.006091293878853321, -0.0156104676425457, -0.030075982213020325, 0.03582867607474327, -0.01457721646875143, -0.0514112189412117, 0.0032411268912255764, 0.0038781820330768824, -0.014814585447311401, -0.001741865766234696, -0.009369073435664177, 0.014786659739911556, 0.009480776265263557, 0.0035395827144384384, 0.011086503975093365, 0.018766071647405624, 0.029321987181901932, 0.011051597073674202, -0.029824649915099144, 0.009787959046661854, 0.020637094974517822, -0.01679730974137783, -0.004862563218921423, 0.002536002779379487, -0.002384156920015812, -0.023066630586981773, -3.9843213016865775e-05, 0.004119041375815868, -0.005668917670845985, -0.009536627680063248, 0.01209182944148779, -0.0003630341379903257, 0.025942977517843246, 0.004565852228552103, 0.029908427968621254, -0.009487757459282875, 0.0001583910925546661, -0.0005532779614441097, 0.009801921434700489, 0.019589880481362343, 0.01292261853814125, 0.03789518028497696, -0.02590108849108219, -0.0033510844223201275, -0.004953321535140276, 0.01544291339814663, -0.0016257994575425982, -0.004956812132149935, -0.012084848247468472, -0.01047911960631609, -0.012643362395465374, -0.013697557151317596, 0.008063546381890774, -0.00579109275713563, 0.019631769508123398, 0.0004081952210981399, -0.009711163118481636, 0.011889368295669556, -0.005581649951636791, 0.01378831546753645, -0.017327899113297462, -0.02918235957622528, 0.008224119432270527, -7.832286792108789e-05, -0.04275425150990486, -0.0025656740181148052, 0.03127678856253624, 0.010116085410118103, 0.0010131794260814786, 0.21123000979423523, 0.00017639008001424372, 0.011484445072710514, 0.04621703922748566, 0.013530002906918526, -0.018654368817806244, 0.019129106774926186, 0.008300915360450745, -0.0034226439893245697, 0.01704864203929901, -0.0035849621053785086, -0.0012147680390626192, -0.006719622295349836, -0.0056375013664364815, 0.01933855004608631, -0.018109818920493126, -0.03485127538442612, -0.007428236771374941, -0.027814000844955444, 0.015582541935145855, 0.009683237411081791, -8.721328049432486e-05, -0.01385813020169735, 0.0041120597161352634, 0.03275685012340546, 0.0032027289271354675, -0.006007516756653786, 0.010318547487258911, 0.014982139691710472, 0.012796953320503235, -0.006667261477559805, 0.004911432974040508, 0.022242821753025055, -0.007414273917675018, -0.015582541935145855, -0.019645731896162033, 0.010835172608494759, -0.01464703120291233, -0.014046628959476948, 0.03194700554013252, -0.006803399417549372, -0.008126379922032356, -0.00729558989405632, -0.015177619643509388, 0.030746199190616608, -0.0037420440930873156, -0.018375111743807793, 0.012231457978487015, -0.016238795593380928, 0.01591765135526657, -0.0008028639713302255, 0.003145132213830948, 0.01676938496530056, 0.030020130798220634, -0.009655311703681946, 0.012789972126483917, -0.003314431756734848, -0.005085968412458897, -0.021195609122514725, -0.013467170298099518, -0.030494866892695427, 0.003892144886776805, -0.013662650249898434, 0.009096797555685043, -0.02032991126179695, 0.009508701972663403, -0.01378831546753645, 0.026278086006641388, -0.004038754850625992, 0.002682612743228674, 0.00320621975697577, -0.005497872829437256, -0.030187685042619705, 0.002108390675857663, -0.020832573994994164, -0.011596147902309895, 0.007023314479738474, 0.012196551077067852, 0.02126542292535305, 0.012280328199267387, 0.0014538818504661322, 0.00421329028904438, -0.01442362554371357, -0.01812378130853176, 0.01817963272333145, -0.025091243907809258, 0.04456942155957222, -0.008677911944687366, -0.003696664934977889, -0.03320366144180298, -0.004153948277235031, 0.01299243327230215, -0.00287809269502759, -0.011247077025473118, 0.0030561191961169243, -0.012182587757706642, 3.973412822233513e-05, 0.01688108779489994, -0.006028461270034313, -0.022242821753025055, -0.018654368817806244, 0.05802961066365242, 0.012741101905703545, 0.02482594922184944, -0.013020358979701996, 0.004667083267122507, -0.0064578186720609665, 0.027101894840598106, -0.005993553902953863, 0.008475450798869133, -0.00781919714063406, -0.032365888357162476, 0.016978826373815536, -0.0071280356496572495, 0.003696664934977889, 0.010863098315894604, 0.01756526716053486, -0.008852447383105755, 0.00947379507124424, -0.030355239287018776, 0.014912324957549572, 0.004712462425231934, 0.012524677440524101, 0.01629464700818062, -0.03166774660348892, -0.022354524582624435, -0.005274467170238495, 0.021307311952114105, -0.045937780290842056, -0.0267807487398386, 0.028498180210590363, -0.013683594763278961, 0.02587316371500492, -0.011770683340728283, -0.010486101731657982, -0.001534168259240687, 0.022871149703860283, 0.0006165471859276295, -0.02799551747739315, -0.019757434725761414, 0.0029304535128176212, 0.019073255360126495, 0.018207557499408722, -0.00029082002583891153, 0.0024208093527704477, -0.0023335416335612535, 0.008035620674490929, -0.00309277162887156, -0.006189033854752779, -0.024588581174612045, 0.012999414466321468, 0.0020001784432679415, 0.005438530817627907, -0.0032149464823305607, 0.03990582749247551, -0.014674956910312176, -0.024811986833810806, -0.032449666410684586, 0.008021658286452293, 0.01293658185750246, -0.043480318039655685, -0.00532333692535758, 0.04448564350605011, 0.014884399250149727, -0.01922684721648693, 0.001248802524060011, -0.17883619666099548, 0.01566631905734539, 0.008594134822487831, -0.009767014533281326, 0.02595693990588188, 0.01235712319612503, 0.008084490895271301, -0.00883848499506712, -0.0027262468356639147, -0.013809259980916977, 0.020441614091396332, -0.005553724244236946, -0.014151349663734436, 0.0033580658491700888, 0.00849639531224966, 0.0003979412722401321, -0.0254263523966074, 0.02780003659427166, 0.05344979465007782, 0.006946518551558256, 0.018933625891804695, -0.022954927757382393, -0.012678269296884537, 0.002645960310474038, 0.023736847564578056, 0.011896349489688873, -0.01322282012552023, 0.027227560058236122, -0.008182231336832047, -0.02675282396376133, -0.012636380270123482, -0.004764823243021965, 0.03258929401636124, 0.007232756819576025, 0.0171044934540987, 0.0054804193787276745, -0.004464621655642986, 0.0009599460172466934, -0.008091472089290619, 0.008028639480471611, 0.025035392493009567, 0.013530002906918526, 0.027101894840598106, 0.001485298271290958, -0.0057876016944646835, 0.01390001829713583, 0.015233471058309078, 0.001102192560210824, 0.006527632940560579, -0.010541953146457672, 0.026347899809479713, -0.012741101905703545, 0.010695544071495533, 0.0016633246559649706, 0.013264709152281284, -0.008245063945651054, 0.01586179994046688, 0.02821892313659191, -0.004220271948724985, -0.011142355389893055, 0.012517696246504784, -0.011330854147672653, 0.014563254080712795, -0.004352918826043606, -0.0030945169273763895, -0.03311988338828087, 0.011784646660089493, 0.0025988356210291386, 0.012447882443666458, 0.0016790329245850444, -0.0004328484064899385, -0.003174803452566266, 0.004562361631542444, 0.013132061809301376, 0.0330919586122036, 0.016141057014465332, -0.03367839753627777, 0.010611766949295998, 0.03836991637945175, -0.0020123959984630346, 0.01702071540057659, 0.0002672577102202922, -4.29248611908406e-05, 0.007512013893574476, -0.025356538593769073, 0.018654368817806244, -0.004974265582859516, 0.01281091570854187, -0.013104136101901531, 0.020888425409793854, 0.02435121312737465, -0.024030067026615143, -0.003581471275538206, 0.004544908180832863, 0.016727495938539505, -0.001728775561787188, 0.03359461948275566, 0.005567687097936869, 0.007756364066153765, -0.006028461270034313, 0.009424924850463867, 0.009934568777680397, -0.02231263741850853, 0.002204385120421648, 0.03568904846906662, 0.032840628176927567, 0.009355110116302967, 0.007281627040356398, 0.03742044046521187, -0.00871281884610653, -0.01435381080955267, 0.00842658057808876, 0.019478177651762962, 0.00501964520663023, -0.004611231852322817, 0.043368615210056305, -0.006929065100848675, -0.030159758403897285, 0.0024347722064703703, -0.006531123537570238, 0.04755747318267822, -0.027618519961833954, -0.024044029414653778, 0.006258848123252392, -0.0003215819306205958, 0.010765358805656433, -0.1130990982055664, -0.029545392841100693, 0.025803349912166595, 0.012273346073925495, -0.0072537013329565525, 0.011386705562472343, 0.0011850970331579447, 0.036778151988983154, -0.02644564025104046, 0.03088582679629326, -0.020511427894234657, -0.00838469248265028, 0.001926873461343348, -0.0056375013664364815, 0.0064578186720609665, -0.004227253142744303, -0.01351604051887989, -4.216126762912609e-05, -0.014032665640115738, 0.022899076342582703, 0.006803399417549372, -0.013118098489940166, 0.022382451221346855, -0.010220807045698166, -0.0054071140475571156, -0.021977528929710388, -0.015987465158104897, 0.005092950072139502, 0.007400311063975096, 0.017579229548573494, 0.027353225275874138, -0.019561955705285072, 0.027841925621032715, -0.006698677781969309, -0.00964134931564331, -0.010123067535459995, -0.01047911960631609, -0.02559390664100647, 0.020483503118157387, -0.025286724790930748, -0.014507402665913105, -0.000545860209967941, -0.017411675304174423, -0.027018116787075996, 0.00820317491889, -0.0055397613905370235, -0.011288965120911598, 0.021028054878115654, 0.027618519961833954, -0.01209182944148779, -0.01225938368588686, -0.02310851961374283, -0.01077233999967575, -0.03596830368041992, 0.024867838248610497, 0.0064927260391414165, 0.022996816784143448, 0.00987173616886139, -0.014088517054915428, 0.004492547363042831, 0.008691875264048576, -0.017397712916135788, -0.013111117295920849, 0.032337963581085205, 0.015107804909348488, 0.015135730616748333, 0.008070528507232666, -0.000820753863081336, -0.012015033513307571, -0.0005956029053777456, -0.0012095320271328092, 0.02375080995261669, -0.02194960229098797, 0.004859072156250477, -0.013362448662519455, -0.017900375649333, -0.014039646834135056, -0.028204960748553276, 0.017216196283698082, 0.013934926129877567, -0.01693693920969963, -0.012175606563687325, 0.003756006946787238, -0.02079068496823311, 0.02686452679336071, 0.0002554765378590673, 0.010116085410118103, -0.008405636996030807, 0.038760874420404434, -0.027409076690673828, 0.012154662050306797, 0.0003761243133340031, 0.026264123618602753, -0.025300687178969383, 0.0021031545475125313, 0.01702071540057659, -0.024616507813334465, 0.006014498416334391, 0.023708920925855637, -0.0035203839652240276, -0.02093031443655491, -0.009306240826845169, -0.050433818250894547, 0.014912324957549572, -0.004897470120340586, 0.006510179489850998, -0.001965271309018135, -0.017523378133773804, -0.0030822993721812963, -0.010276658460497856, -0.002970596542581916, -0.0029269626829773188, -0.016155019402503967, 0.0169648639857769, -0.02429536171257496, -0.019729509949684143, -0.029433690011501312, -0.025007467716932297, 0.0006248375866562128, 0.00027663898072205484, 0.018375111743807793, 0.007358422502875328, -0.004108569119125605, -0.013097154907882214, 0.005501363426446915, 0.025356538593769073, -0.004799730144441128, 0.016727495938539505, -0.03194700554013252, 0.0342089869081974, -0.008056565187871456, -0.015191582031548023, 0.01629464700818062, 0.008007694967091084, 0.00242430018261075, 0.012636380270123482, -0.017774710431694984, -0.038816727697849274, 0.021642420440912247, 0.0010437231976538897, 0.027297373861074448, 0.016895050182938576, -0.027953628450632095, -0.008971132338047028, 0.01991102658212185, -0.006841797381639481, -0.021614493802189827, 0.0009625640814192593, -0.02604071795940399, -0.0073444596491754055, 0.019212882965803146, 0.02746492810547352, 0.022354524582624435, 0.006265829782932997, -0.018444927409291267, -0.03848161920905113, 0.00320621975697577, -0.013997758738696575, 0.024113845080137253, 0.025942977517843246, 0.006792927160859108, -0.013397355563938618, 0.04507208615541458, 0.009487757459282875, 0.010213825851678848, -0.01858455501496792, 0.022214896976947784, -0.018654368817806244, -0.050377968698740005, -0.00575618539005518, -0.004073661752045155, -0.038816727697849274, 0.00952964648604393, -0.015484802424907684, 0.03144434094429016, 0.0382302887737751, 0.01787244901061058, 0.0017523379065096378, -0.002782098250463605, -0.017146380618214607, -0.006758020259439945, 0.03320366144180298, 0.026417715474963188, -0.017830561846494675, -0.020176319405436516, 0.01281091570854187, 0.007812215480953455, 0.0022776902187615633, -0.015470839105546474, 0.010898005217313766, 0.007532958406955004, 0.009285296313464642, -0.004883507266640663, -0.00479274895042181, -0.007400311063975096, 0.006227431818842888, 0.011100467294454575, 0.0254263523966074, -0.019547991454601288, 0.026627156883478165, 0.019073255360126495, 0.025077281519770622, 0.012343160808086395, 0.024197621271014214, 0.0013273435179144144, 0.0038293120451271534, -0.017998116090893745, 0.01702071540057659, -0.04001753032207489, -0.0082729896530509, 0.010744414292275906, 0.021000128239393234, 0.0023544859141111374, -1.4436687933994108e-06, -0.008615079335868359, 0.012154662050306797, -0.012664305977523327, -0.004827655851840973, -0.016280684620141983, -0.01858455501496792, -0.026110531762242317, -0.009990420192480087, -0.0002932198694907129, 0.012126736342906952, 0.02024613507091999, -0.012831860221922398, 0.012028996832668781, 0.019589880481362343, 0.013083191588521004, -0.010213825851678848, -0.002274199388921261, -0.025356538593769073, 0.017230158671736717, 0.0014137387042865157, 0.012908656150102615, -0.012950544245541096, -0.011288965120911598, -0.016755422577261925, -0.023974215611815453, 0.019589880481362343, -0.00010319420107407495, 0.08159890025854111, 0.03359461948275566, -0.019617807120084763, 0.0015908923232927918, -0.009899661876261234, -0.008182231336832047, 0.011840498074889183, 0.0009704181575216353, 0.004593777935951948, -0.029657095670700073, 0.015484802424907684, -0.000820753863081336, -0.02460254356265068, -0.015261396765708923, -0.02567768283188343, -0.006688205990940332, -0.007155961357057095, 0.004087624605745077, -0.015093842521309853, 0.01066063717007637, 0.016978826373815536, -0.0047508603893220425, 0.020776722580194473, -0.01662975549697876, -0.03990582749247551, -0.011903330683708191, 0.031500194221735, 0.020972203463315964, 0.0028711112681776285, -0.019547991454601288, 0.015051953494548798, -0.005839962512254715, -0.01798415184020996, -0.0045204730704426765, -0.015652356669306755, -0.01275506429374218, 0.00011966600141022354, -0.032114557921886444, -0.0127131761983037, 0.011533315293490887, -0.007616735529154539, 0.018654368817806244, -0.03362254798412323, -0.008356766775250435, 0.015233471058309078, -0.0013081446522846818, 0.004276123363524675, -0.022857187315821648, -0.012559585273265839], "9d06cdba-898a-4a61-9f63-bbc8004d9834": [-0.012830442748963833, -0.02169511280953884, -0.0008996747783385217, -0.038120824843645096, -0.013708677142858505, 0.0035609626211225986, -0.010387856513261795, -0.035623349249362946, -0.02642934024333954, -0.05834764242172241, 0.01941719464957714, 0.004398028831928968, 0.004291680175811052, -0.014044875279068947, 0.007663960102945566, 0.02286151610314846, 0.017496058717370033, -0.0019657337106764317, 0.02102271467447281, -0.006655363366007805, -0.020350318402051926, 0.012624607421457767, -0.026868456974625587, 0.0009477031999267638, -0.02722523920238018, 0.0008640823070891201, 0.02754085510969162, -0.00803446490317583, -0.00516991363838315, 0.015176973305642605, 0.011718928813934326, -0.015821926295757294, -0.01221979595720768, -0.015520033426582813, -0.02747224271297455, 0.0034906351938843727, 0.0009477031999267638, 0.0012281547533348203, 0.0154651440680027, -0.019362304359674454, 0.013619480654597282, -0.001570357009768486, -0.01915646903216839, 0.0127275250852108, 0.002161277923732996, 0.018703630194067955, -0.008089354261755943, -0.024425869807600975, -0.011911042034626007, -0.009742903523147106, -0.002693020738661289, 0.015149528160691261, 0.0012092863908037543, 0.021640222519636154, -0.018731074407696724, -0.005005245096981525, 0.005060134455561638, 0.008260884322226048, 0.004614156670868397, 0.008878392167389393, -0.0009065360063686967, 0.005084149073809385, -0.023753473535180092, 0.003735923208296299, -0.01951325125992298, -0.03963029012084007, -0.013001972809433937, -0.015574922785162926, -0.024576816707849503, -0.02555110678076744, 0.013640064746141434, 0.039355840533971786, -0.001042902353219688, -0.007787461392581463, -0.0014760155463591218, -0.017152998596429825, 0.004037816077470779, -0.0033842867705971003, 0.0014459978556260467, -0.02024053782224655, 0.021105049178004265, 0.002068651607260108, -0.0006586751551367342, -0.01174637395888567, 0.0377640426158905, 0.0495927520096302, -0.005979535169899464, -0.00010425806976854801, -0.012830442748963833, 0.01326269842684269, 0.013996846973896027, 0.01963675394654274, 0.02194211632013321, 0.03425110876560211, 0.0021304024849087, 0.018415460363030434, 0.02121482975780964, 0.001086642500013113, -9.670003055362031e-05, -0.005231664516031742, -0.01954069547355175, 0.01580820418894291, -0.008185410872101784, -0.01779795251786709, -0.03716025501489639, 0.005523265805095434, 0.013557730242609978, -0.006933242082595825, -0.0005047270096838474, 0.02529038116335869, -0.011705206707119942, 0.036035019904375076, -0.0033259664196521044, -0.006446097046136856, -0.007766877766698599, -0.007808045018464327, 0.012336436659097672, -0.033811990171670914, -0.00737578934058547, -0.03238486126065254, 0.019266247749328613, 0.006723975762724876, 0.025468772277235985, -0.027403630316257477, 0.010442745871841908, -0.008398108184337616, -0.007794322911649942, -0.018127288669347763, 0.020130759105086327, 0.0024271493311971426, 0.03342776373028755, 0.01815473474562168, 0.0044220429845154285, 0.006590181961655617, -0.03493722900748253, 0.0027599174063652754, -0.03079306334257126, 0.006940103136003017, -0.015753313899040222, -0.016274765133857727, 0.008226578123867512, 0.025592274963855743, 0.0008113368530757725, -0.026607731357216835, 0.007039590738713741, 0.031451739370822906, -0.011362146586179733, 0.02412397786974907, 0.015725869685411453, -0.026868456974625587, 0.015273029915988445, -0.004892035387456417, -0.006257413886487484, 0.024302368983626366, 0.021653946489095688, 0.010079102590680122, -0.004205915145576, 0.02244984544813633, -0.022024450823664665, -0.014408519491553307, -0.0019588724244385958, 0.019403472542762756, -0.006621057633310556, 0.005821727681905031, 0.002247042953968048, 0.028323031961917877, 0.0044220429845154285, -0.04300599917769432, -0.016082651913166046, -0.015176973305642605, -0.0038628552574664354, 0.019773976877331734, -0.020089592784643173, 0.03677602857351303, 0.02589416690170765, 0.002603825181722641, 0.01915646903216839, -0.019019244238734245, -0.007410095538944006, -0.019623029977083206, 0.022847793996334076, -0.007993297651410103, -0.006720544770359993, 0.018552683293819427, -0.01919763721525669, -0.02070710062980652, 0.025400159880518913, 0.004264235496520996, 0.009228313341736794, -0.002164708450436592, 0.01351656299084425, 0.004799409303814173, -0.01560236793011427, 0.005365457851439714, -0.6099331974983215, -0.0025146296247839928, 0.021653946489095688, -0.021448109298944473, 0.01128667313605547, 0.008432414382696152, 0.019430916756391525, -0.002693020738661289, -0.016425712034106255, 0.008898976258933544, 0.014504576101899147, 0.007609070278704166, -0.00955078937113285, -0.0018696768674999475, -0.013441089540719986, -0.03537634387612343, 0.02596277929842472, 0.009070505388081074, -0.010861278511583805, 0.005461514927446842, -0.026045113801956177, 0.026703787967562675, -0.010257493704557419, -0.009441010653972626, 0.006175079382956028, -0.00532086007297039, 0.024768929928541183, -0.015794482082128525, -0.022847793996334076, 0.0128373047336936, -0.03845016285777092, 0.02700568176805973, 0.02766435593366623, -0.011883597820997238, 0.04550347477197647, -0.014381074346601963, -0.002717035124078393, 0.03038139082491398, 0.024178866297006607, 0.032329972833395004, -0.036089908331632614, 0.0012401618296280503, 0.009886988438665867, 0.013166641816496849, -0.0034700515680015087, -0.0023911281023174524, -0.02213422954082489, 0.014106626622378826, -0.027485964819788933, 0.004367153625935316, -0.002518060151487589, -0.02017192728817463, -0.006123620551079512, 0.0018062107264995575, 0.002516344888135791, -0.007060174364596605, 0.03383943438529968, 0.00030382248223759234, 0.0033928630873560905, 0.02424747869372368, 0.007890379056334496, 0.00798643659800291, -0.009049922227859497, -0.05005931109189987, -0.03984984755516052, 0.013530285097658634, -0.020473819226026535, -0.015588645823299885, 0.021969560533761978, 0.006205955054610968, 0.008953865617513657, -0.004250512924045324, -0.00981837697327137, -0.012007099576294422, -0.01878596469759941, 0.03650158271193504, 0.040234073996543884, -0.02824069745838642, -0.0006651075091212988, 0.011677761562168598, 0.004195623565465212, -0.005183636210858822, 0.0059966882690787315, -0.0184017363935709, 0.02529038116335869, 0.007753155659884214, -0.008398108184337616, -0.012604023329913616, -0.002751341089606285, -0.01903296820819378, 0.024810098111629486, 0.017029497772455215, -0.0002611544041428715, -0.03282397985458374, 0.00996246188879013, 0.03057350590825081, -0.001042902353219688, -0.008761751465499401, -0.01239818800240755, -0.023067353293299675, -0.0382031574845314, -0.03716025501489639, -0.0060996063984930515, 0.011458203196525574, 0.027499686926603317, 0.006034424994140863, -0.02453565038740635, -0.010785805992782116, 0.012713802978396416, -0.02320457622408867, 0.0009785785805433989, -0.010044796392321587, -0.019170191138982773, -0.005331152118742466, -0.0040000793524086475, -0.025839276611804962, 0.018333125859498978, 1.2717340723611414e-05, 0.0033825712744146585, -0.025249214842915535, -0.017935175448656082, 0.006257413886487484, -0.003176735481247306, -0.007121925242245197, -0.003759937360882759, 0.027046848088502884, 0.003228194313123822, 0.020226815715432167, -0.0005664777709171176, 0.003766798647120595, 3.784380533033982e-05, -0.010154575109481812, 0.01711183227598667, -0.005036120302975178, 0.0309302881360054, 0.00430883327499032, -0.002739334013313055, -0.001618385431356728, 0.019623029977083206, -0.024892432615160942, 0.007458123844116926, -0.005276262294501066, 0.016055207699537277, -0.009852682240307331, -0.01242563221603632, -0.02017192728817463, -0.015753313899040222, 0.020514987409114838, -0.00100173510145396, -0.0029554616194218397, -0.01976025477051735, -0.022120507434010506, -0.011327840387821198, 0.02390441857278347, -0.017221610993146896, -0.0034305998124182224, -0.006895505357533693, -0.04948297142982483, -0.009187146089971066, -0.01815473474562168, 0.0024614552967250347, 0.018552683293819427, -0.0015660688513889909, 0.012308991514146328, -0.009248897433280945, -0.015643535181879997, -0.0413593091070652, 0.013482256792485714, 0.014847636222839355, -0.012576579116284847, -0.013900790363550186, -0.013893929310142994, 0.019115302711725235, 0.02756829932332039, -0.031451739370822906, 0.004634740296751261, -0.003663880517706275, 0.004888604860752821, -0.011471925303339958, 0.005986396688967943, 0.028981706127524376, 0.023835808038711548, -0.022532179951667786, 0.003969204146414995, 0.026127448305487633, 0.013379339128732681, 0.007609070278704166, 0.022298898547887802, -0.029228709638118744, 0.0029811912681907415, 0.0007435824954882264, 0.022655680775642395, -0.012226657941937447, 0.00801388081163168, -0.008974448777735233, -0.021955838426947594, -0.017180442810058594, -0.01820962317287922, -0.020611044019460678, 0.04391167685389519, 0.004226498771458864, -0.0017333105206489563, -0.01799006573855877, 0.012878471985459328, 0.024467037990689278, -0.02513943426311016, 0.009688014164566994, -0.012089433148503304, 0.010964197106659412, 0.01302941795438528, -0.005845741834491491, -0.003814826952293515, -0.007156230974942446, -0.03178107738494873, -0.00039494779775850475, 0.012281547300517559, -0.013008834794163704, 0.020885491743683815, -0.0007067035767249763, -0.004127011634409428, 0.009187146089971066, 0.016398267820477486, 0.024563094601035118, 0.01133470144122839, -0.008164827711880207, 0.010099685750901699, 0.002684444421902299, 0.0022950712591409683, 0.02143438719213009, -0.03578801825642586, -0.0029554616194218397, 0.014600632712244987, 0.014888802543282509, -0.0033242511563003063, 0.02330063283443451, 0.01356459129601717, 0.04163375869393349, -0.020858047530055046, 0.02785647101700306, -0.010127130895853043, -0.0034649057779461145, 0.00029503158293664455, 0.03279653564095497, -0.021804891526699066, 0.008988171815872192, 0.022271454334259033, 0.023218298330903053, -0.00026973089552484453, -0.03035394661128521, 0.023341801017522812, -0.004120150115340948, 0.021173661574721336, -6.678949284832925e-05, -0.009886988438665867, 0.05220000445842743, 0.006432374473661184, 0.008830363862216473, 0.004452918656170368, 0.015890538692474365, 0.013804733753204346, -0.00994187779724598, 0.008446136489510536, 0.005368888843804598, -0.014230127446353436, 0.02201072871685028, -0.01288533303886652, -0.009955600835382938, -0.026950791478157043, 0.008384386077523232, 0.001634680782444775, -0.003972634673118591, -0.010648582130670547, -0.018031232059001923, 0.0072522880509495735, -0.016110096126794815, 0.012816720642149448, -0.010374133475124836, 0.01670015975832939, 0.004350000526756048, 0.011170032434165478, -0.025880444794893265, -0.029777605086565018, 0.02194211632013321, 0.008782335557043552, -0.011437620036303997, -0.006257413886487484, -0.011060253717005253, -0.011046531610190868, 0.02365741692483425, 0.019362304359674454, -0.007540458347648382, -0.0054100556299090385, -9.862974548013881e-05, 0.01827823556959629, -0.013345032930374146, 0.005001814570277929, 0.04531136155128479, -0.012899055145680904, -0.025413883849978447, 0.008768613450229168, 0.003228194313123822, 0.006422082893550396, -0.021612778306007385, -0.029887385666370392, 0.03699558973312378, -0.009845821186900139, -0.008734307251870632, -0.0055541410110890865, 0.03447066619992256, -0.023218298330903053, 0.015094638802111149, -0.032522086054086685, -0.026772400364279747, -0.01154053770005703, -0.025811832398176193, -0.011485648341476917, -0.0014554319204762578, -0.03348265215754509, 0.04086530581116676, 0.008926420472562313, -0.01789400912821293, -0.018223345279693604, -0.005012106150388718, 0.019472084939479828, 0.05884164571762085, 0.017660727724432945, -0.0020514987409114838, 0.02909148670732975, -0.03120473586022854, 0.0012007099576294422, -0.015588645823299885, -0.012130600400269032, 0.038559939712285995, -0.008953865617513657, -0.008645111694931984, 0.0036261440254747868, 0.018333125859498978, -0.005056703928858042, 0.008912698365747929, 0.013509701937437057, 0.008041325956583023, -0.005701656918972731, -0.028089750558137894, 0.014888802543282509, -0.011087698861956596, 0.00311841513030231, 0.02620978280901909, 0.029365934431552887, 0.04465268552303314, 0.04119464382529259, 0.03449811041355133, -0.006171648856252432, 0.0199798122048378, -0.024425869807600975, -0.017852840945124626, 0.002536928514018655, -0.020514987409114838, 0.006030994467437267, 0.0012607454555109143, 0.023835808038711548, 0.005475237034261227, -0.027335019782185555, -0.02991482987999916, 0.002672437112778425, -0.0073140389285981655, 0.011478787288069725, 0.005536987911909819, -0.021804891526699066, 0.014779023826122284, -0.02848770096898079, -0.003681033616885543, 0.03241230547428131, -0.008748029358685017, -0.0034957812167704105, 0.008754890412092209, 0.011712067760527134, -0.010031073354184628, 0.021763725206255913, -0.007684543263167143, -0.0020103314891457558, -0.01852523908019066, -0.00034863469772972167, -0.015561200678348541, -0.03436088562011719, -0.051623664796352386, -0.01956814154982567, -0.0014837343478575349, -0.01757839322090149, -0.01755094900727272, -0.01764700561761856, -0.0029966288711875677, 0.00661762710660696, -0.02712918259203434, 0.00304294191300869, 0.008089354261755943, -0.025400159880518913, -0.02579811029136181, 0.014147793874144554, 0.023890696465969086, 0.012926500290632248, 0.018607573583722115, -0.0012538841692730784, -0.004394598305225372, 0.013989985920488834, 0.003763367887586355, -0.04448801651597023, 0.00856963824480772, -0.02201072871685028, -0.01982886716723442, -0.016878550872206688, -0.023739749565720558, -0.0033791407477110624, -0.017660727724432945, -0.0032847991678863764, 0.009248897433280945, -0.03287886828184128, -0.009893849492073059, -0.001081496593542397, 0.006329456344246864, 0.03847760707139969, 0.017207888886332512, 0.019801421090960503, 0.013811594806611538, -0.026854734867811203, 0.004710213281214237, -0.009557651355862617, 3.4681219403864816e-05, -0.022340064868330956, -0.0064804027788341045, -0.004672477021813393, 0.004432335030287504, -0.005207650363445282, 0.011389590799808502, -0.030244167894124985, 0.0018799686804413795, -0.014381074346601963, -0.004353431053459644, -0.011465064249932766, 0.008967587724328041, -0.0023859820794314146, 0.003286514664068818, 0.02434353530406952, 0.0019657337106764317, -0.018333125859498978, 0.01397626381367445, -0.03537634387612343, 0.04284133017063141, 0.01701577566564083, 0.0029297322034835815, 0.008898976258933544, 0.017125554382801056, -0.009248897433280945, -0.028624923899769783, 0.022340064868330956, -0.0003164728404954076, 0.007204259745776653, 0.0012607454555109143, 0.00970859732478857, -0.011595427058637142, -0.015574922785162926, 0.003180166007950902, 0.011670900508761406, -0.005190497264266014, 0.005924645811319351, -0.015643535181879997, 0.006192232482135296, 0.018484070897102356, -0.008418692275881767, 0.0013370763044804335, -0.0322476364672184, -0.03622713312506676, -0.014271294698119164, 0.008329495787620544, 0.019334860146045685, -0.029997164383530617, -0.010929890908300877, -0.028926817700266838, -0.016206152737140656, 0.0072934553027153015, 0.0032830839045345783, -0.006658794358372688, -0.004473502282053232, 0.04382934421300888, 0.021242273971438408, 0.029173821210861206, 0.026511674746870995, 0.020748266950249672, 0.02797997184097767, -0.019142746925354004, -0.012604023329913616, -0.006710253190249205, -0.02846025489270687, -0.0027273267041891813, 0.01641198992729187, 0.004507808014750481, 0.0035335177090018988, -0.02428864687681198, 0.008192271925508976, 0.004490654915571213, 0.009317508898675442, 0.012741247192025185, 0.0028113764710724354, -0.02589416690170765, -0.04094763845205307, 0.011231783777475357, 0.017194166779518127, 0.0014434248441830277, -0.004754811059683561, -0.01777050644159317, 0.0007645949372090399, 0.03131451457738876, -0.0017333105206489563, 0.02928359992802143, 0.015369086526334286, 0.027170350775122643, 0.019842589274048805, 0.005907492712140083, -0.005780560430139303, 0.01701577566564083, -0.032522086054086685, -0.008741168305277824, -0.039191171526908875, -0.018237069249153137, -0.0007478707702830434, 0.010037935338914394, 0.03532145544886589, -0.001659552683122456, 0.004277958068996668, -0.0011278096353635192, 0.007368928287178278, -0.03510189801454544, -0.006840615998953581, 0.006171648856252432, -0.03765426203608513, -0.009770347736775875, -0.03537634387612343, -0.003633005078881979, -0.014971137046813965, -0.01815473474562168, 0.0066862390376627445, -0.0034923504572361708, 0.02393186464905739, -0.03444322198629379, -0.008679416961967945, 0.019334860146045685, -0.02058359794318676, 0.02719779498875141, 0.04185331612825394, 0.047891173511743546, 0.015643535181879997, 0.006638210732489824, -0.026882179081439972, -0.03139685094356537, -0.0004185331636108458, -0.021255996078252792, 0.004240221343934536, 0.03984984755516052, -0.02422003448009491, -0.010600552894175053, 0.0071082026697695255, -0.02232634276151657, -0.0009374113869853318, -0.041661202907562256, 0.017523502930998802, 0.012226657941937447, 0.008391247130930424, -0.0332082062959671, -0.01915646903216839, -0.014298739843070507, 0.021708834916353226, -0.02824069745838642, 0.003866286017000675, 0.006669085938483477, -0.013393061235547066, 0.008288329467177391, 0.0270331259816885, -0.007849212735891342, 0.0051939282566308975, -0.00207894342020154, 0.006452958099544048, 0.011513092555105686, -0.004981230944395065, 0.013955679722130299, 0.006627918686717749, -0.006957256235182285, 0.031040066853165627, -0.021461831405758858, -0.005938368383795023, 0.016549212858080864, 0.004816561937332153, 0.004782256204634905, 0.0017839118372648954, -0.02397303096950054, 0.030052054673433304, -0.004473502282053232, -0.021297164261341095, -8.394249016419053e-05, 0.021420665085315704, 0.002077228156849742, -0.005735962651669979, -0.021736280992627144, -0.016549212858080864, -0.0023568221367895603, 0.01402429211884737, 0.02223028615117073, -0.013111752457916737, -0.025976501405239105, -0.004699921701103449, 0.007458123844116926, -0.027485964819788933, 0.005101301707327366, -0.010483913123607635, 0.01837429217994213, -0.04531136155128479, -0.0008962441934272647, 0.0044837938621640205, -0.009296925738453865, 0.009790931828320026, -0.005622752942144871, -0.014545743353664875, -0.00550268217921257, 0.026923347264528275, -0.025413883849978447, 0.01560236793011427, 0.0354861244559288, 0.004178470466285944, -0.044570352882146835, 0.00950276106595993, -0.025468772277235985, -0.01495741493999958, 0.004253943916410208, -0.00539976404979825, -0.017002051696181297, -0.020624766126275063, 0.011533676646649837, -0.005331152118742466, 0.002219598041847348, -0.004713644273579121, 0.008651972748339176, 0.02169511280953884, 0.008789196610450745, -0.017523502930998802, 0.011979654431343079, 0.006360332015901804, -0.0030583797488361597, 0.008885253220796585, 0.004693060647696257, 0.002082373946905136, 0.004013801924884319, -0.009214591234922409, 0.002089235233142972, 0.0002793794556055218, -0.03186341002583504, -0.031726185232400894, -0.011451342143118382, 0.01100536435842514, 0.01565725728869438, 0.0071287862956523895, -0.008947004564106464, -0.01602776162326336, -0.013338171876966953, 0.014998582191765308, -0.03073817305266857, -0.0016578373033553362, 0.020322872325778008, -0.0013044856023043394, 0.006229969207197428, 0.027595745399594307, -0.018223345279693604, -0.028158362954854965, -0.019485807046294212, -0.014682967215776443, -0.04328044503927231, -0.01331072673201561, 0.00845985859632492, 0.033592432737350464, 0.0013902505161240697, -0.02662145346403122, -0.0332082062959671, -0.011451342143118382, -0.04185331612825394, -0.01796261966228485, -0.042100321501493454, 0.031698741018772125, 0.019087856635451317, 0.013365617021918297, -0.00023156548559200019, 0.02744479849934578, 0.003897161455824971, 0.0043808757327497005, -0.042923662811517715, 0.003113269340246916, -0.022847793996334076, -0.01619243063032627, 0.03205552324652672, -0.025811832398176193, -0.04742461070418358, 0.005684503819793463, 0.0018816839437931776, -0.008192271925508976, 0.01288533303886652, -0.000414888170780614, -0.00219386862590909, 0.005722240544855595, -0.0033928630873560905, 0.02463170699775219, 0.02257334627211094, 0.02349274791777134, 0.019074134528636932, -0.04286877438426018, -0.010127130895853043, 0.020446375012397766, -0.007705126889050007, -0.0023499608505517244, 0.013207809068262577, 0.01799006573855877, -0.024329813197255135, -0.008693140000104904, 0.002102957572788, -0.00516991363838315, -0.014586910605430603, 0.0056776427663862705, -0.0012538841692730784, 0.03200063481926918, 0.016247320920228958, 0.03847760707139969, -0.0286523699760437, -0.00891955941915512, 0.008096215315163136, -0.006257413886487484, 0.007115063723176718, 0.014806468971073627, 0.02555110678076744, -0.020158205181360245, 0.003931467421352863, -0.009845821186900139, 0.0029160098638385534, 0.0034734823275357485, -0.024617983028292656, -0.0177018940448761, -0.00798643659800291, -0.014847636222839355, -0.004614156670868397, 0.00014590770297218114, -0.0054100556299090385, 0.008164827711880207, -0.0034940659534186125, -0.012487383559346199, 0.01691971719264984, -0.0011698345188051462, 0.02257334627211094, -0.024741485714912415, -0.01995236799120903, -0.005989827215671539, 0.006305442191660404, -0.03238486126065254, 0.0029348779935389757, 0.012370742857456207, 0.02024053782224655, 0.007547319401055574, 0.20737288892269135, 0.01130725722759962, 0.011369007639586926, 0.04654637724161148, 0.023575082421302795, -0.013742982409894466, 0.03222019225358963, 0.009886988438665867, -0.011849291622638702, 0.005139038432389498, 0.006531862076371908, -0.006569598335772753, -0.007286593783646822, 0.0016509761335328221, 0.018442904576659203, -0.01903296820819378, -0.04163375869393349, -0.014285017736256123, -0.013070585206151009, 0.002507768338546157, 0.0018851145869120955, -0.00907736737281084, -0.010106546804308891, -0.009749764576554298, 0.018223345279693604, 0.00430883327499032, -0.011616011150181293, 0.0014665813650935888, 0.013557730242609978, 0.0279525276273489, 8.865956624504179e-05, 0.004895465914160013, 0.020858047530055046, 0.015382809564471245, -0.016480600461363792, -0.00856963824480772, 0.013825316913425922, -0.01173265092074871, -0.013228393159806728, 0.0368034727871418, -0.00996246188879013, -0.02402792125940323, 0.008254023268818855, -0.020185649394989014, 0.007115063723176718, -0.0071082026697695255, -0.019142746925354004, 0.026374451816082, -0.01811356656253338, 0.019485807046294212, -0.012501105666160583, 0.00222988985478878, 0.008487303741276264, 0.0146555220708251, -0.0034992117434740067, 0.008452997542917728, -0.00537574989721179, -0.005571294110268354, -0.021887226030230522, -0.017125554382801056, -0.01742744632065296, 0.0008374951430596411, -0.011677761562168598, 0.007416956592351198, -0.02419259026646614, 0.013653786852955818, -0.0191015787422657, 0.0199798122048378, 0.007032729685306549, 0.005125315859913826, 0.006089314818382263, 0.005018967669457197, -0.025194324553012848, -0.008734307251870632, -0.011760096065700054, -0.01597287319600582, 0.010161436162889004, 0.018758518621325493, 0.023122241720557213, 0.012796137481927872, -0.01697460748255253, 0.0029640381690114737, -0.02589416690170765, -0.0017281646141782403, 0.02194211632013321, -0.013646925799548626, 0.030710728839039803, -0.02487870864570141, -0.016357099637389183, -0.028377920389175415, -0.004844007082283497, 0.006782295648008585, -0.01805867627263069, -0.005602169316262007, 0.0012041404843330383, -0.009132256731390953, 0.002572949742898345, 0.033592432737350464, -0.02065221033990383, -0.03164385259151459, -0.008555916137993336, 0.042484547942876816, 0.011595427058637142, 0.030244167894124985, -0.01282358169555664, 0.020130759105086327, 0.012953944504261017, 0.020720822736620903, -0.012446216307580471, 0.00030060630524531007, -0.001067774137482047, -0.03131451457738876, 0.009928155690431595, -0.00315786711871624, -0.0045043774880468845, 0.029420822858810425, 0.030847953632473946, -0.01130725722759962, 0.011465064249932766, -0.028844483196735382, 0.02741735428571701, -0.009317508898675442, 0.018031232059001923, -0.0017410294385626912, -0.023767195641994476, -0.04053596779704094, -0.003135568229481578, 0.03474511578679085, -0.03705047816038132, -0.021105049178004265, 0.01988375559449196, -0.011183755472302437, 0.028007416054606438, -0.01198651548475027, -0.01653549075126648, 0.013276421464979649, 0.03304353728890419, 0.0006659651990048587, -0.01386648416519165, -0.02991482987999916, -0.0032625002786517143, 0.02305363118648529, 0.01580820418894291, 0.00019715228700079024, -0.0014648661017417908, -0.0016638408415019512, 0.01163659431040287, -0.01377042755484581, -0.009379259310662746, -0.02523549273610115, -0.003972634673118591, 0.004964077845215797, -0.004113289061933756, -0.0017118692630901933, 0.025111990049481392, 0.0006869775825180113, -0.03559590503573418, -0.024329813197255135, 0.006408360321074724, 0.012590301223099232, -0.0363643579185009, 0.0005844884435646236, 0.032741643488407135, 0.007458123844116926, -0.02557855099439621, -0.004175039939582348, -0.1745489090681076, 0.015478866174817085, 0.007760016713291407, 0.008549055084586143, 0.022463567554950714, 0.008157966658473015, -0.0022573345340788364, 0.008816641755402088, -0.00047084983089007437, -0.001561780576594174, 0.013043140061199665, 0.00646668067201972, -0.0006689669680781662, 0.016960885375738144, 0.02507082372903824, 0.0033448347821831703, -0.021736280992627144, 0.03309842571616173, 0.04712271690368652, -0.001561780576594174, 0.01837429217994213, -0.027088016271591187, -0.011451342143118382, -0.0012075711274519563, 0.035019561648368835, -0.003801104612648487, -0.0011698345188051462, 0.02700568176805973, 0.006916088983416557, -0.027046848088502884, -0.01609637401998043, -0.010182020254433155, 0.00961254071444273, 0.00773257203400135, 0.019087856635451317, 0.006912658456712961, 0.007135647349059582, 0.005372319370508194, -0.002663860796019435, 0.013935096561908722, 0.017413724213838577, 0.012940222397446632, 0.016549212858080864, 0.005917784757912159, 0.010875001549720764, 0.013804733753204346, 0.023835808038711548, -0.004806270357221365, 0.0071493699215352535, -0.009585095569491386, 0.02564716339111328, -0.019046690315008163, 0.0041441647335886955, 0.00042046289308927953, 0.016796216368675232, -0.009605679661035538, 0.017413724213838577, 0.022943850606679916, 0.0039589121006429195, -0.021557889878749847, 0.010971058160066605, -0.013640064746141434, -0.0019314276287332177, -0.002259050030261278, -0.013434228487312794, -0.023890696465969086, 0.014696689322590828, 0.003783951513469219, 0.007080757990479469, -0.007849212735891342, -0.0017556094098836184, 0.006741128396242857, 0.010669165290892124, 0.012809859588742256, 0.008844085969030857, 0.008789196610450745, -0.03013438917696476, 0.004452918656170368, 0.032522086054086685, 0.002152701374143362, 0.007958991453051567, 0.013290143571794033, 0.002291640732437372, -0.006881783250719309, -0.011458203196525574, 0.0161238182336092, -0.009983045049011707, -0.004257374443113804, -0.011691483668982983, -0.006374054588377476, 0.006271136458963156, -0.0154651440680027, 0.004226498771458864, 0.0020103314891457558, 0.02402792125940323, 0.0013430798426270485, 0.02846025489270687, -0.009736042469739914, 0.013200948014855385, -0.004998384043574333, 0.0055541410110890865, 0.016398267820477486, -0.0377640426158905, 0.0014743002830073237, 0.03798360005021095, 0.03342776373028755, 0.013900790363550186, 0.009276341646909714, 0.029640382155776024, -0.026758678257465363, -0.019170191138982773, 0.011965932324528694, 0.02014448121190071, 0.012020821683108807, -0.011616011150181293, 0.04072808101773262, -0.01204826682806015, -0.025564828887581825, 0.0247963760048151, -0.014394796453416348, 0.041880760341882706, -0.039410728961229324, -0.036062464118003845, 0.01796261966228485, 0.003252208698540926, -0.0034237385261803865, -0.09056783467531204, -0.011019086465239525, 0.015437698923051357, 0.03164385259151459, -0.011821846477687359, 0.0071699535474181175, 0.005735962651669979, 0.05305079370737076, -0.023575082421302795, 0.029146375134587288, -0.010319244116544724, -0.022491011768579483, 0.007856073789298534, 0.003075532615184784, -0.002681013662368059, -0.01065544318407774, -0.004507808014750481, -0.007821767590939999, -0.013557730242609978, 0.04078296944499016, 0.011931626126170158, -0.010044796392321587, 0.02043265290558338, -0.022381233051419258, -0.004511238541454077, -0.0163433775305748, -0.017825396731495857, 0.010531941428780556, 0.011952209286391735, 0.013605758547782898, 0.004857729189097881, -0.007821767590939999, 0.02807602845132351, -0.018772242590785027, -0.019334860146045685, -0.01108083687722683, -0.023753473535180092, -0.027156628668308258, 0.01808612234890461, -0.04141420125961304, 0.001129525015130639, 0.0018988369265571237, -0.022532179951667786, -0.03120473586022854, 0.0027359032537788153, 0.004428904503583908, -0.0049263411201536655, 0.03858738765120506, 0.014737856574356556, -0.02121482975780964, -0.00435686158016324, -0.017468614503741264, -0.007993297651410103, -0.03842271864414215, 0.030655840411782265, -0.006967548280954361, 0.023602526634931564, 0.011362146586179733, -0.009674291126430035, 0.001026607002131641, 0.001054909429512918, -0.005561002064496279, -0.0010952189331874251, 0.03696814179420471, -0.0014905956340953708, 0.014038014225661755, 0.003329397179186344, -0.00649069482460618, -0.019472084939479828, -0.0032847991678863764, -0.014257572591304779, -0.0028079459443688393, -0.020542431622743607, 0.00752673577517271, -0.011705206707119942, -0.009681152179837227, -0.013989985920488834, -0.014051736332476139, 0.017509780824184418, 0.018319401890039444, -0.011348424479365349, -0.01084755640476942, -0.0034631905145943165, -0.031918298453092575, 0.03263186663389206, 0.009694875217974186, 0.008212856017053127, -0.014806468971073627, 0.02235378883779049, -0.03932839632034302, 0.015080916695296764, 0.011341562494635582, 0.013091168366372585, -0.025592274963855743, -0.010092824697494507, 0.00438773725181818, -0.022587068378925323, 0.006796018220484257, 0.03326309472322464, -0.010326105169951916, -0.024329813197255135, -0.01685110665857792, -0.06026877835392952, 0.028515145182609558, -0.0008632246754132211, 0.009461593814194202, -0.005159622058272362, -0.004216207191348076, -0.012158045545220375, -0.0033997243735939264, -0.004655323922634125, 0.023451579734683037, -0.01827823556959629, 0.010312383063137531, -0.02472776360809803, -0.027746690437197685, -0.027870193123817444, -0.02143438719213009, -0.00981837697327137, -0.009495900012552738, 0.01663154736161232, 0.005567863583564758, -0.010826973244547844, 0.003746215021237731, 0.005952090490609407, 0.02535899356007576, 0.0029640381690114737, 0.020514987409114838, -0.02760946750640869, 0.030683284625411034, -0.007464984897524118, 0.0005862037069164217, 0.010092824697494507, -0.006027563940733671, -0.014806468971073627, 0.02700568176805973, -0.015794482082128525, -0.042319878935813904, 0.01663154736161232, 0.001577218296006322, 0.021173661574721336, 0.004312263801693916, -0.013681231997907162, -0.01252168882638216, 0.02611372619867325, -0.0006333744968287647, -0.013015695847570896, -0.0034906351938843727, -0.029640382155776024, -0.0051733446307480335, 0.021201105788350105, 0.024714041501283646, 0.04824795573949814, 0.004583281464874744, -0.010223187506198883, -0.045832812786102295, -0.01258344016969204, -0.0022882099729031324, 0.016809938475489616, 0.018141010776162148, 0.00847358163446188, -0.017221610993146896, 0.057249847799539566, 0.005228233989328146, 0.019691642373800278, -0.01525930780917406, 0.00456269783899188, -0.018003787845373154, -0.041661202907562256, -0.0006779722752980888, 0.009118534624576569, -0.03910883888602257, -0.001574645284563303, -0.016357099637389183, 0.03265931084752083, 0.042100321501493454, 0.005725671071559191, 0.0028199530206620693, -0.0018988369265571237, -0.028926817700266838, -0.025605997070670128, 0.02909148670732975, 0.026072558015584946, -0.01232957560569048, -0.022916406393051147, 0.0023979891557246447, 0.021255996078252792, 0.009976183995604515, -0.01560236793011427, 0.020405206829309464, 0.0021304024849087, 0.0103398272767663, -0.009948739781975746, -0.008638250641524792, -0.01881340891122818, 0.013063724152743816, 0.014367352239787579, 0.035047005861997604, -0.014106626622378826, 0.012322714552283287, 0.02261451445519924, 0.03263186663389206, 0.0014520013937726617, 0.01587681658565998, 6.861199653940275e-05, -0.005626183468848467, -0.026333283632993698, 0.02889937162399292, -0.034635335206985474, -0.005005245096981525, 0.02261451445519924, 0.04081041365861893, 0.005883478559553623, -0.007506152149289846, 0.0024563095066696405, 0.010044796392321587, -0.017537226900458336, 0.00015319771773647517, -0.022394955158233643, -0.014792745932936668, -0.02516688033938408, -0.007677682209759951, -0.003598699113354087, 0.00747870746999979, 0.026292117312550545, -0.012590301223099232, 0.004476932808756828, 0.01663154736161232, 0.0071493699215352535, -0.017221610993146896, 0.007492430042475462, -0.025400159880518913, 0.027431076392531395, 0.01628848724067211, 0.01287161000072956, -0.010531941428780556, -0.019087856635451317, -0.02017192728817463, -0.008487303741276264, 0.01982886716723442, -0.0213794969022274, 0.0931476429104805, 0.02712918259203434, -0.036858364939689636, -0.0032402013894170523, -0.011485648341476917, -0.007238565478473902, 0.008590221405029297, -0.014065459370613098, 0.009132256731390953, -0.0081716887652874, 0.02096782624721527, 0.0035952685866504908, -0.026950791478157043, -0.0036364358384162188, -0.019650476053357124, -0.012432493269443512, 0.009111672639846802, 0.012384464964270592, -0.019526973366737366, 0.014477130956947803, 0.02712918259203434, -0.026868456974625587, 0.04212776571512222, -0.006754850968718529, -0.022147951647639275, -0.01859385147690773, 0.04844006896018982, 0.013804733753204346, 0.007917824201285839, -0.02734874188899994, 0.015561200678348541, -0.008226578123867512, -0.021420665085315704, -0.008700001053512096, -0.010154575109481812, -0.01549258828163147, -0.012995111756026745, -0.01189045887440443, -0.0049263411201536655, 0.002686159685254097, 0.003173304721713066, 0.024892432615160942, -0.021955838426947594, -0.0030154972337186337, 0.030463725328445435, -0.013248976320028305, 0.003175019985064864, -0.011897319927811623, -0.015327920205891132], "6d225ce8-b188-4706-874a-8b84c8c6638f": [-0.017962131649255753, -0.018865026533603668, 0.005201904568821192, -0.015814337879419327, -0.007517282385379076, 0.011484546586871147, -0.01811261475086212, -0.033981673419475555, -0.019001828506588936, -0.06024770066142082, 0.015896419063210487, 0.0134544987231493, 0.013208255171775818, -0.00378258153796196, 0.005191644188016653, 0.0077361660078167915, 0.02239452488720417, -0.004384511150419712, 0.010260166600346565, -0.027757171541452408, -0.01887870766222477, -0.004972761031240225, -0.02450127899646759, -0.001751068513840437, -0.024159273132681847, 0.0067375097423791885, 0.035158172249794006, -0.01560913398861885, -0.0023769387044012547, 0.014665198512375355, 0.001913521089591086, -0.00830389466136694, -0.025924021378159523, -0.008721142075955868, -0.009111028164625168, 0.008851103484630585, 0.014583117328584194, -0.002838646061718464, -0.0012346400180831552, -0.02363942377269268, 0.017921091988682747, 0.00547892926260829, -0.015499692410230637, 0.016033221036195755, -0.005865395534783602, 0.028728466480970383, 0.011600828729569912, -0.015663854777812958, -0.0018827406456694007, 0.002084523905068636, -0.009480394423007965, 0.03020593151450157, -0.006481005344539881, 0.0019374615512788296, -0.0068777319975197315, 0.0010020763147622347, -0.0023136676754802465, 0.0057764737866818905, 0.0077703665010631084, 0.001665567047894001, 0.01064321305602789, 0.009446193464100361, -0.019152311608195305, -0.012845728546380997, -0.01318773441016674, -0.02255868725478649, -0.007708805147558451, -0.016334185376763344, -0.02013728767633438, -0.02246292494237423, 0.014377913437783718, 0.03441943973302841, -0.004384511150419712, -0.010191765613853931, 0.008953705430030823, -0.006132159847766161, -0.0037518010940402746, -0.007312078960239887, 0.007968729361891747, -0.012257479131221771, 0.009535115212202072, -0.00573543319478631, -0.003006228944286704, -0.014596797525882721, 0.021778913214802742, 0.037100762128829956, -0.0009730058372952044, 0.00479491800069809, -0.017674846574664116, 0.0033755949698388577, -0.0019579818472266197, 0.01943959668278694, 0.033106137067079544, 0.03283253312110901, -0.0039330641739070415, 0.00826969463378191, 0.014843041077256203, -0.010048123076558113, 0.0075446427799761295, -0.014596797525882721, -0.01833149790763855, 0.012079636566340923, -0.010506411083042622, -0.008468057960271835, -0.04046609625220299, 0.002243556547909975, 0.031190907582640648, -0.008139732293784618, 0.00017303343338426203, 0.019713200628757477, -0.004938560072332621, 0.023776225745677948, -0.011327223852276802, -0.00012023632734781131, -0.022271402180194855, -0.022408204153180122, 0.031628675758838654, -0.03135506808757782, -0.007592523470520973, -0.02021936886012554, 0.009692437946796417, 0.01493880245834589, 0.024761201813817024, -0.030780499801039696, 0.006679368671029806, -0.0010662022978067398, 0.003779161488637328, -0.009138388559222221, 0.02395406924188137, -0.007414680439978838, 0.04462488740682602, 0.013591300696134567, 0.019097590819001198, -0.0013611820759251714, -0.03846878558397293, 0.0058824955485761166, -0.03425527736544609, 0.0004127579741179943, -0.01138878520578146, -0.0269226785749197, 0.01638890616595745, 0.029385117813944817, -0.01064321305602789, -0.03269573301076889, 0.012859408743679523, 0.02504848688840866, -0.007168436422944069, 0.03945375978946686, 0.03012385033071041, -0.01935751549899578, 0.008940025232732296, -0.00431269034743309, -0.008481738157570362, -0.003980944864451885, 0.011334064416587353, -0.005287406034767628, 0.0054960292764008045, 0.03540441393852234, -0.009870280511677265, -0.013823864981532097, 0.011983875185251236, 0.011669229716062546, 0.003050689585506916, -0.005844875238835812, -0.003980944864451885, 0.020082566887140274, 0.002450469881296158, -0.02513056807219982, -0.006518626119941473, -0.016211064532399178, 0.001698057632893324, 0.0350760892033577, -0.015185046941041946, 0.02503480762243271, 0.012373761273920536, -0.0023461582604795694, 0.020876020193099976, -0.0024008790496736765, -0.028345420956611633, -0.017278121784329414, 0.028728466480970383, -0.007989250123500824, 0.002007572678849101, 0.007859287783503532, -0.02035617083311081, -0.025253690779209137, 0.01707291789352894, 0.0018741905223578215, 0.008317574858665466, -0.01302357204258442, 0.004275069572031498, 0.0030250390991568565, -0.02801709622144699, 0.004076706245541573, -0.6163761019706726, -0.0011405885452404618, 0.02169683203101158, -0.025787219405174255, 0.013221935369074345, 0.011484546586871147, 0.02045193314552307, -0.000989251071587205, -0.0006109074456617236, 0.018139975145459175, 0.007305238861590624, 0.00940515287220478, -0.0008934895158745348, -0.0032695732079446316, -0.0036662996280938387, -0.030534256249666214, 0.0134544987231493, -0.005136923398822546, -0.009384633041918278, 0.011874432675540447, -0.0179347712546587, 0.0358969047665596, 0.00818761344999075, -0.0029258576687425375, 0.014049588702619076, -0.009993402287364006, 0.013707582838833332, -0.014377913437783718, -0.01095785852521658, 0.022832291200757027, -0.031409792602062225, 0.011867593042552471, 0.017141317948698997, 0.0016724071465432644, 0.03986416757106781, -0.007517282385379076, -0.023187976330518723, 0.011874432675540447, 0.029275676235556602, 0.03441943973302841, -0.029056793078780174, -0.006368143483996391, 0.027880294248461723, 0.009959202259778976, -0.0031738115940243006, -0.0021939657162874937, -0.005622571334242821, 0.017373882234096527, -0.00967875774949789, -0.008707461878657341, 0.0005989372148178518, -0.022326122969388962, 0.006364723667502403, 0.008987906388938427, 0.005068522412329912, 0.012161717750132084, 0.020561374723911285, 0.0028967871330678463, -0.000767374993301928, 0.017811650410294533, 0.012038595974445343, 0.0167856328189373, -0.020711855962872505, -0.030753139406442642, -0.037784773856401443, 0.015020884573459625, -0.015581773594021797, -0.022982774302363396, 0.007394160144031048, 0.0031635514460504055, -0.0011354584712535143, -0.006364723667502403, -0.005937216337770224, 0.002373518655076623, 0.000515573367010802, 0.016758272424340248, 0.04166995733976364, -0.01428215205669403, -0.0037996817845851183, 0.022175639867782593, 0.00382362212985754, -0.0008798093185760081, 0.005530229769647121, -0.027551967650651932, 0.036772437393665314, -0.005981677211821079, -0.028263339772820473, -0.01943959668278694, -0.019685840234160423, -0.014760959893465042, 0.018906068056821823, 0.012079636566340923, -0.013304016552865505, -0.04394087567925453, 0.026662753894925117, 0.026977399364113808, 0.008946865797042847, 0.009569315239787102, 0.009186269715428352, -0.022572366520762444, -0.01677195355296135, -0.04377671331167221, -0.00013605409185402095, 0.017360202968120575, 0.024555999785661697, 0.024432877078652382, -0.03239476680755615, -0.014925122261047363, 0.023543663322925568, -0.014802000485360622, -0.0028095757588744164, -0.0028865269850939512, -0.022216681391000748, -0.014665198512375355, 0.009801879525184631, -0.0320117212831974, 0.0226134080439806, 0.003673139726743102, -0.005810674279928207, -0.015540733002126217, -0.008645900525152683, 0.014637838117778301, -0.001061927294358611, -0.014733599498867989, -0.0011901793768629432, 0.02612922526896, 0.018591422587633133, -0.005369487218558788, 0.0167856328189373, -0.0067717102356255054, 0.021204344928264618, -0.018687183037400246, 0.008433857001364231, -0.00028878095326945186, 0.025869300588965416, -0.010013923048973083, 0.006067178677767515, -0.003994625061750412, 0.012681566178798676, -0.037182845175266266, 0.006785390432924032, 0.0019374615512788296, 0.005177963990718126, -0.03403639420866966, 0.008707461878657341, -0.0044084517285227776, -0.017989492043852806, 0.02348894253373146, -0.011231462471187115, -0.009658236987888813, -0.027018439024686813, -0.026799555867910385, -0.002265786752104759, 0.029357757419347763, -0.01407694909721613, -0.0010670573683455586, -0.0066896285861730576, -0.027866613119840622, -0.010526930913329124, -0.01762012578547001, -0.006186880636960268, 0.010602172464132309, -0.014788320288062096, 0.006149259861558676, -0.002093074144795537, -0.00857749953866005, -0.026498591527342796, 0.012373761273920536, 0.00039608520455658436, -0.013338216580450535, -0.009822399355471134, -0.015855377539992332, 0.016279464587569237, 0.03715548291802406, -0.019384875893592834, 0.007284718565642834, -0.010191765613853931, 0.0097539983689785, -0.01708659715950489, -0.010089163668453693, 0.02450127899646759, 0.020246729254722595, -0.010260166600346565, -0.01174447126686573, 0.007859287783503532, 0.015663854777812958, 0.02581457979977131, 0.023598384112119675, -0.039672646671533585, -0.01556809339672327, -0.005126663483679295, 0.009398313239216805, -0.0062997424975037575, -0.003707340219989419, -0.015198727138340473, -0.002219616202637553, -0.015390249900519848, -0.009569315239787102, -0.008515938185155392, 0.029220955446362495, 0.0008208133513107896, -0.0001301758602494374, -0.011368264444172382, -0.009158909320831299, 0.017756929621100426, -0.032969336956739426, 0.019781602546572685, -0.023625744506716728, 0.009658236987888813, -0.0014372783480212092, 0.0019904724322259426, -0.01606058143079281, -0.0017365332460030913, -0.03581482172012329, 0.006005617789924145, 0.011799192056059837, -0.008495418354868889, 0.011169902049005032, -0.006870891898870468, 8.523419819539413e-05, 0.008796382695436478, 0.020999141037464142, 0.027209961786866188, 0.009521435014903545, -0.004743617027997971, 0.014186390675604343, -0.010862096212804317, -0.005680712405592203, 0.015472332015633583, -0.020807618275284767, 0.00019686695304699242, 0.013290336355566978, 0.005660192109644413, 5.653779589920305e-05, -0.005649931728839874, 0.012250639498233795, 0.0460476279258728, -0.01856406219303608, 0.014774640090763569, -0.010595331899821758, 0.010137044824659824, 0.0021529248915612698, 0.03236740455031395, -0.02589666098356247, 0.030397454276680946, 0.009336751885712147, 0.03346182405948639, -0.01548601221293211, -0.022298762574791908, 0.03786685690283775, 0.0005172833916731179, 0.013700743205845356, -0.016101621091365814, -0.021122263744473457, 0.030178571119904518, -0.011395624838769436, 0.005485769361257553, 0.0010294367093592882, 0.033106137067079544, 0.020410891622304916, -0.007141076028347015, 0.0035089771263301373, -0.008803223259747028, -0.00013402343029156327, 0.02309221588075161, -0.00990448147058487, 0.007223157677799463, -0.021436909213662148, -0.01036960817873478, -0.00766776455566287, -0.0037894216366112232, -0.02292805351316929, -0.0001781635219231248, -0.009925001300871372, 0.002717234194278717, 0.0037962617352604866, -0.0034952969290316105, 0.019398555159568787, -0.0021529248915612698, 0.018372539430856705, -0.014323192648589611, -0.0358969047665596, 0.01990472339093685, 0.00764724425971508, -0.005277145653963089, -0.00464101554825902, -0.017975812777876854, 0.007455721031874418, 0.03182019665837288, 0.020000485703349113, -0.005229264963418245, 0.009528274647891521, 0.005974837113171816, 0.016744593158364296, -0.012250639498233795, 0.020657135173678398, 0.035924263298511505, -0.02627970650792122, -0.02840014174580574, 0.02652595192193985, 0.00725735817104578, 0.013304016552865505, -0.006032978184521198, -0.013331376947462559, 0.040520817041397095, -0.009822399355471134, -0.007407840341329575, 0.0022931473795324564, 0.024843284860253334, -0.0171549990773201, -0.004234028980135918, -0.03384486958384514, -0.01170343067497015, -0.011498226784169674, -0.030561616644263268, -0.01041748933494091, -0.01533552911132574, -0.015513372607529163, 0.016758272424340248, 0.02372150495648384, 7.112646562745795e-05, -0.018550381064414978, -0.0027343344409018755, 0.00971979834139347, 0.056526679545640945, 0.01755172573029995, -0.0033687548711895943, 0.02073921635746956, -0.017373882234096527, -0.0016937825130298734, -0.015869058668613434, -0.03477512672543526, 0.015472332015633583, -0.01274996716529131, -0.016429947689175606, 0.014104309491813183, 0.02549993433058262, -0.002741174539551139, 0.011942834593355656, 0.002577011939138174, 0.015581773594021797, -0.01107413973659277, -0.017661167308688164, 0.00532502681016922, -0.022107239812612534, 0.0011662389151751995, 0.02792133390903473, 0.005711493082344532, 0.04353046789765358, 0.03619786724448204, 0.034446798264980316, -0.005670452024787664, 0.008030290715396404, -0.03723756596446037, -0.019535357132554054, -0.0014210330555215478, -0.0077361660078167915, 0.009822399355471134, 0.0034012452233582735, 0.027346763759851456, 0.0030233291909098625, -0.015581773594021797, -0.01934383437037468, 0.004798337817192078, -0.0016262364806607366, 0.024432877078652382, 0.014172710478305817, -0.009199949912726879, 0.01755172573029995, -0.030999384820461273, 0.0163752268999815, 0.04383143410086632, -0.015144006349146366, -0.008953705430030823, 0.00044546223944053054, 0.00870062131434679, -0.00518480408936739, 0.011005738750100136, -0.006802490446716547, 0.002698423806577921, -0.025965062901377678, -0.008468057960271835, -0.0071957968175411224, -0.0374290868639946, -0.03770269453525543, -0.01037644874304533, -0.010520091280341148, -0.020657135173678398, -0.02645755000412464, -0.02277757041156292, 0.0017869790317490697, 0.01376914419233799, -0.021943077445030212, 0.008160253055393696, 0.00639892416074872, -0.039125435054302216, -0.04714204743504524, 0.015964819118380547, 0.021040182560682297, 0.014131669886410236, 0.01388542540371418, 0.00696323299780488, -0.004220348782837391, 0.012845728546380997, -0.0038407223764806986, -0.033188220113515854, 0.005885915830731392, -0.009521435014903545, -0.008420176804065704, -0.014432634226977825, -0.006740929558873177, -0.003939904272556305, -0.015718575567007065, 0.016512028872966766, 0.004288749769330025, -0.018851347267627716, -0.01077317539602518, 0.0014894342748448253, 0.017305482178926468, 0.03406375274062157, 0.013406617566943169, 0.014131669886410236, 0.024829603731632233, -0.049905452877283096, 0.010588492266833782, -0.021518990397453308, -0.0063544632866978645, -0.0319843590259552, 0.012736286967992783, 0.0014355683233588934, 0.008372296579182148, -0.01693611592054367, -0.0006301452522166073, -0.03595162555575371, -0.009138388559222221, -0.003213142277672887, 0.01006864383816719, -0.009343591518700123, 0.004182728007435799, 0.00641944445669651, 0.0021734454203397036, 0.024843284860253334, 0.00191181106492877, -0.0284822229295969, 0.018358858302235603, -0.04779869690537453, 0.034994009882211685, 0.007243677973747253, 0.0026590931229293346, 0.012339560315012932, 0.013796504586935043, -0.02957664057612419, -0.025787219405174255, 0.00997972209006548, 0.005831195041537285, 0.001879320596344769, 0.01010284386575222, 0.0022264563012868166, -0.0010029312688857317, -0.030315373092889786, 0.0061082192696630955, 0.009473553858697414, -0.012544764205813408, 0.013365576975047588, -0.033270299434661865, 0.0002492365601938218, 0.01306461263448, 0.003758641192689538, -0.00606375839561224, -0.026977399364113808, -0.00963771715760231, -0.010485890321433544, 0.0057730539701879025, 0.014569437131285667, -0.022750210016965866, -0.003963844384998083, -0.027182601392269135, -0.015855377539992332, 0.008119212463498116, 0.0077361660078167915, -0.0029908386059105396, -0.0023051174357533455, 0.047224126756191254, 0.020246729254722595, 0.04243604838848114, 0.023776225745677948, 0.024090871214866638, -8.079881081357598e-05, -0.012962010689079762, -0.015704896301031113, -0.0038509825244545937, -0.02357102371752262, -0.006097959354519844, 0.02012360654771328, 0.008878464810550213, 0.0038920233491808176, -0.01489776186645031, 0.02333845943212509, 0.0017228530487045646, 0.01353657990694046, 0.00758568337187171, -0.022257721051573753, -0.0233931802213192, -0.03871503099799156, 0.00047538772923871875, 0.03376279026269913, 0.0033140338491648436, -0.014377913437783718, -0.03627995029091835, 0.009883960708975792, 0.024706481024622917, -0.0033140338491648436, 0.03058897703886032, 0.01493880245834589, 0.03050689585506916, 0.006125319749116898, 0.013304016552865505, 0.0005737143219448626, 0.012667885981500149, -0.03808574005961418, -0.0002010351454373449, -0.03526761382818222, -0.012332720682024956, 0.026785874739289284, 0.023516302928328514, 0.00967191718518734, -0.01205227617174387, 0.013427138328552246, -0.004134847316890955, -0.0008763892692513764, -0.038496144115924835, -0.002954927971586585, 0.01420007087290287, -0.026266027241945267, 0.006101379171013832, -0.03305141627788544, -0.006515205837786198, 0.009083667770028114, -0.0007678024703636765, 0.014952483586966991, 0.0017579086124897003, 0.022025158628821373, -0.035541217774152756, -0.012264319695532322, 0.014487355947494507, -0.009788199327886105, 0.029904967173933983, 0.032586291432380676, 0.03458360210061073, 0.01670355163514614, 0.011320384219288826, -0.021737873554229736, -0.0226134080439806, 0.010882616974413395, -0.020178327336907387, 0.002833516104146838, 0.03493928909301758, -0.010212286375463009, -0.014774640090763569, 0.007695124950259924, -0.024090871214866638, 0.0065801870077848434, -0.0366629958152771, -0.003402955364435911, 0.023051174357533455, 0.013693902641534805, -0.030315373092889786, -0.024131912738084793, -0.018974468111991882, 0.030698418617248535, -0.02255868725478649, -0.008160253055393696, 0.004606815055012703, -0.00874166190624237, -0.0022384263575077057, 0.020178327336907387, -0.0041622077114880085, 0.007927688769996166, -0.004370830953121185, 0.0014270182000473142, 0.024747522547841072, -0.01685403473675251, 0.0007259068079292774, 0.009138388559222221, -0.0015749356243759394, 0.027114201337099075, -0.016566749662160873, 0.0074420408345758915, 0.003502137027680874, 0.006050078198313713, -0.009733478538691998, 0.0045999749563634396, -0.025650417432188988, 0.031957000494003296, -0.022900693118572235, -0.005824354477226734, 0.015814337879419327, 0.0187145434319973, 0.004812018014490604, -0.00979503896087408, -0.015116645954549313, -0.00319946208037436, -0.0014312933199107647, 0.0111220208927989, 0.01240112166851759, -0.007373639848083258, -0.02347526140511036, 0.0015646754764020443, -0.00035397574538365006, -0.007818247191607952, 0.0038544025737792253, 0.003384144976735115, 0.015089285559952259, -0.03321557864546776, 0.004220348782837391, 0.016019539907574654, -0.0043058497831225395, 0.01809893362224102, 0.003748381044715643, -0.016594110056757927, 0.008550139144062996, 0.026854276657104492, -0.013091973029077053, 0.023187976330518723, 0.0460476279258728, 0.02473384141921997, -0.035158172249794006, 0.010157565586268902, -0.01980896294116974, -0.012141196988523006, 0.0028882368933409452, -0.012804687954485416, -0.03026065230369568, -0.011457186192274094, 0.020698176696896553, -0.006231341511011124, 0.0006472454988397658, 0.0032216922845691442, 0.009651397354900837, 0.025417853146791458, 0.0051095630042254925, -0.014323192648589611, 0.015267128124833107, 0.004726517014205456, 0.004712836816906929, 0.013652862049639225, 0.01841357909142971, -0.016361545771360397, 0.0029942586552351713, 0.021833635866642, 0.0018639302579686046, -0.009706118144094944, -0.03970000520348549, -0.025937702506780624, -0.02707315981388092, 0.0030660799238830805, 0.017346521839499474, 0.005543909966945648, -0.0017972391797229648, -0.022750210016965866, -0.028673745691776276, 0.02192939631640911, -0.03050689585506916, 0.006802490446716547, 0.013967507518827915, -0.012962010689079762, 0.014993524178862572, 0.04703260585665703, -0.021984117105603218, -0.0249664057046175, -0.026498591527342796, -0.010971538722515106, -0.037784773856401443, -0.014364233240485191, -0.0013620371464639902, 0.028181258589029312, -9.2662128736265e-05, -0.03469304367899895, -0.048263825476169586, -0.026936357840895653, -0.04744300991296768, -0.010923657566308975, -0.02870110608637333, 0.02426871471107006, 0.02729204297065735, 0.013741783797740936, 0.007948209531605244, 0.031081466004252434, -0.004158787429332733, -0.005143763497471809, -0.04618443176150322, 0.0011192131787538528, -0.03792157769203186, -0.00979503896087408, 0.025404173880815506, -0.02082129940390587, -0.04478904977440834, 0.003223402425646782, -0.014569437131285667, -0.006392084062099457, 0.005543909966945648, -0.014001707546412945, 0.0028010255191475153, -0.0022042258642613888, -0.003833882277831435, 0.01029436755925417, 0.021956756711006165, 0.037319645285606384, 0.025335771963000298, -0.03050689585506916, 0.007469401229172945, 0.022900693118572235, -0.00787980854511261, -0.00678881024941802, 0.02316061593592167, 0.01911127008497715, -0.030452175065875053, -0.0076882848516106606, -0.006805910728871822, -0.013981187716126442, -0.006587027106434107, 0.006234761327505112, 0.005800414364784956, 0.011094660498201847, 0.006816170644015074, 0.03532233461737633, -0.01623842492699623, -0.0043571507558226585, -0.014432634226977825, 0.005810674279928207, 0.013584461063146591, 0.016990836709737778, 0.045582499355077744, -0.01824941672384739, 0.005102722905576229, 0.006087698973715305, 0.011730791069567204, 0.007004274055361748, -0.011990714818239212, -0.010622692294418812, -0.0034542561043053865, -0.021505309268832207, -0.01632050611078739, 0.01033540815114975, -0.014295832253992558, 0.003500426886603236, -0.013262975960969925, -0.0018331498140469193, 0.00016972025332506746, -0.000338585494318977, 0.01738756336271763, -0.019480636343359947, -0.015951139852404594, 0.001064492273144424, 0.005502869375050068, -0.026416510343551636, 0.0008391961455345154, 0.016170023009181023, 0.019466957077383995, 0.017414923757314682, 0.19863682985305786, 0.007373639848083258, 0.016402587294578552, 0.048400625586509705, 0.015773296356201172, -0.006785390432924032, 0.027045799419283867, 0.012818368151783943, -0.011689750477671623, 0.005841454956680536, 0.00032576030935160816, 0.008775862865149975, -0.024761201813817024, -0.001278245821595192, 0.0057559534907341, -0.012045435607433319, -0.030753139406442642, -0.01283204834908247, -0.02911151386797428, 0.00834493525326252, 0.00013626784493681043, -0.00787980854511261, -0.012777327559888363, 0.004822278395295143, 0.02254500612616539, -0.007141076028347015, -0.022900693118572235, 0.02292805351316929, 0.025691457092761993, 0.02489800564944744, -0.007380479946732521, 0.016758272424340248, 0.024925366044044495, 0.004141687415540218, -0.017497004941105843, -0.01849566027522087, 0.008132892660796642, -0.004931719973683357, -0.017059236764907837, 0.03723756596446037, -0.0007378769805654883, -0.02324269711971283, 0.008043970912694931, -0.018700864166021347, 0.014925122261047363, -0.0018673503072932363, -0.024077191948890686, 0.01489776186645031, -0.016949795186519623, 0.014172710478305817, -0.007202636916190386, 0.0030677898321300745, 0.02526737004518509, 0.025458894670009613, -0.012578964233398438, 0.010896297171711922, 0.00189129076898098, -0.0054413084872066975, -0.01481568068265915, -0.023653104901313782, -0.02823597937822342, 0.004425551742315292, -0.007284718565642834, 0.009849759750068188, -0.03972736746072769, 0.006286062300205231, -0.023830948397517204, 0.017059236764907837, -0.007168436422944069, 0.01622474379837513, -0.0011192131787538528, 0.008727981708943844, -0.02411823160946369, 0.001932331477291882, -0.021477948874235153, -0.0171549990773201, 0.006453644949942827, 0.0070726750418543816, 0.015308168716728687, 0.006258701905608177, -0.017975812777876854, 0.011888112872838974, -0.021190663799643517, -0.01949431747198105, 0.01177867129445076, -0.02098546177148819, 0.028837908059358597, -0.02045193314552307, -0.004873579367995262, -0.03050689585506916, -0.008645900525152683, 0.013967507518827915, -0.0008524488657712936, -0.01592377945780754, 0.015513372607529163, -0.006710148882120848, 0.0007695124950259924, 0.02247660607099533, -0.003276413306593895, -0.0035807981621474028, -0.009213630110025406, 0.046540115028619766, 0.0021546350326389074, 0.02823597937822342, -0.003445706097409129, 0.00653230631724, -0.004678635857999325, 0.024747522547841072, -0.0009841209976002574, -0.011457186192274094, -0.0007844752399250865, -0.03365334868431091, 0.013632341288030148, -0.003161841304972768, -0.0037449609953910112, 0.0041074869222939014, 0.011484546586871147, -0.0009251250303350389, -0.0010362768080085516, -0.010424329899251461, 0.02020568773150444, -4.2162871977780014e-05, 0.01147086638957262, 0.015882737934589386, -0.032558929175138474, -0.034118473529815674, -0.01548601221293211, 0.034994009882211685, -0.0483732670545578, -0.036389391869306564, 0.02636178955435753, -0.024090871214866638, 0.02902943268418312, -0.019836323335766792, -0.005318186245858669, 0.010212286375463009, 0.02028777077794075, 0.008714301511645317, -0.02333845943212509, -0.019631119444966316, -0.0039706844836473465, 0.013317696750164032, 0.018085254356265068, 0.008132892660796642, -0.009288870729506016, 0.003190911840647459, 0.014295832253992558, -0.008591179735958576, -0.0019665320869535208, -0.032422129064798355, 0.004254549276083708, 0.0009918161667883396, 0.011484546586871147, -0.008153412491083145, 0.05009697377681732, -0.009541954845190048, -0.03151923418045044, -0.02105386182665825, 0.0072641982696950436, 0.011758151464164257, -0.03253157064318657, -0.004008305259048939, 0.04008305072784424, 0.004490532912313938, -0.022586047649383545, -0.0079960897564888, -0.17423130571842194, 0.01684035360813141, 0.008474897593259811, -0.00994552206248045, 0.014309512451291084, 0.02823597937822342, 0.009453034028410912, -0.004593134857714176, 0.005684132222086191, -0.0005177109269425273, 0.00446659279987216, -0.00723683787509799, -0.014747279696166515, 0.003059239825233817, 0.009685597382485867, 0.006669108290225267, -0.023995110765099525, 0.02544521354138851, 0.055733226239681244, 0.0046375952661037445, 0.018755584955215454, -0.02201147750020027, -0.009740318171679974, 0.0015022594016045332, 0.02068449556827545, 0.01068425364792347, -0.0018741905223578215, 0.026950038969516754, 0.0036457793321460485, -0.03384486958384514, -0.0025530715938657522, -0.01080737542361021, 0.026019783690571785, 0.000205523960175924, 0.01677195355296135, -0.0021221444476395845, -0.0071068755351006985, -0.0012979110470041633, -0.01274996716529131, 0.018782945349812508, 0.02073921635746956, 0.0062108212150633335, 0.0187145434319973, -0.0010704774176701903, 0.014802000485360622, 0.019412236288189888, 0.013659701682627201, -0.00034179180511273444, 0.00865958072245121, -0.014104309491813183, 0.023283738642930984, -0.018358858302235603, 0.011019418947398663, -0.015417610295116901, 0.023461582139134407, -0.008119212463498116, 0.0006647732807323337, 0.018550381064414978, -0.004770977422595024, -0.010896297171711922, -0.004155367612838745, -0.016128981485962868, 0.027360444888472557, -0.0003815499658230692, -0.005424208007752895, -0.025404173880815506, 0.021354828029870987, 0.00807817094027996, 0.0070726750418543816, -0.0008644190384075046, 0.00503090163692832, 0.01006180327385664, 0.008201293647289276, 0.019165990874171257, 0.018659822642803192, 0.01653938926756382, -0.043721992522478104, 0.01902918890118599, 0.035459134727716446, 0.0036936600226908922, 0.01084841601550579, 0.0055815307423472404, 0.0006840111454948783, -6.776653208362404e-06, -0.010007082484662533, 0.02528105117380619, -0.009069987572729588, -0.002717234194278717, -0.014760959893465042, 0.0116965901106596, 0.019836323335766792, -0.016443626955151558, -0.013837545178830624, -0.0028984970413148403, 0.021819954738020897, 0.009459873661398888, 0.037730053067207336, -0.002040063263848424, 0.006327102892100811, -0.0071957968175411224, 0.00554049015045166, 0.01451471634209156, -0.040520817041397095, 0.00014161167200654745, 0.030479535460472107, 0.030862580984830856, 0.003577378112822771, -0.00727787846699357, 0.021094903349876404, -0.017688527703285217, -0.015964819118380547, 0.011491387151181698, 0.01786637119948864, 0.008153412491083145, -0.010971538722515106, 0.03991888836026192, -0.0012611454585567117, -0.026101864874362946, 0.017209719866514206, -0.033106137067079544, 0.04150579497218132, -0.027401486411690712, -0.027716130018234253, 0.010280687361955643, -0.0010251617059111595, 0.003493586787953973, -0.0952143445611, -0.023913029581308365, 0.016265785321593285, 0.03425527736544609, -0.017373882234096527, 0.012305360287427902, -0.0043024299666285515, 0.04238132759928703, -0.031792838126420975, 0.027032120153307915, -0.014268471859395504, -0.02121802419424057, -0.0013791373930871487, 0.005359227303415537, 0.0009413703228347003, -0.012811528518795967, -0.013796504586935043, 0.0028403562027961016, -0.01388542540371418, 0.022490285336971283, -0.0012867959449067712, -0.016046900302171707, 0.01949431747198105, -0.01786637119948864, -0.01622474379837513, -0.027907654643058777, -0.020999141037464142, 0.005420788191258907, 0.0012944909976795316, 0.004623915068805218, 0.014336872845888138, -0.010205445811152458, 0.02894735150039196, -0.01638890616595745, -0.035158172249794006, -0.01770220696926117, -0.021628431975841522, -0.016990836709737778, 0.008256014436483383, -0.04547305777668953, -0.005362647119909525, -0.009582995437085629, -0.015390249900519848, -0.03130034729838371, -0.004822278395295143, 0.011327223852276802, -0.0070726750418543816, 0.022586047649383545, 0.012736286967992783, -0.011217782273888588, -0.009541954845190048, -0.022996453568339348, -0.019015509635210037, -0.027551967650651932, 0.022175639867782593, 0.004647855646908283, 0.021628431975841522, -0.0031943318899720907, -0.030288012698292732, 0.0021990956738591194, 0.006764870136976242, -0.012038595974445343, -0.009179429151117802, 0.031026745215058327, -0.006976913660764694, 0.013988027349114418, 0.013516060076653957, -0.009391472674906254, -0.02052033320069313, -0.009295711293816566, -0.004716256633400917, 0.011450346559286118, -0.017264440655708313, 0.011231462471187115, -0.0010986928828060627, -0.008023450151085854, -0.023981429636478424, -0.02411823160946369, 0.03294197469949722, 0.021409548819065094, -0.012325880117714405, -0.010581651702523232, 0.0004792352847289294, -0.031792838126420975, 0.02503480762243271, -0.012462683022022247, 0.02013728767633438, -0.016128981485962868, 0.0257461778819561, -0.04424183815717697, 0.012428482063114643, 0.01911127008497715, 0.021026501432061195, -0.023365819826722145, -0.009432513266801834, 0.01912495121359825, -0.02870110608637333, 0.006802490446716547, 0.025322090834379196, 0.004035665653645992, -0.022887011989951134, -0.010116524063050747, -0.05283302068710327, 0.016334185376763344, -0.000671613437589258, -0.004935140255838633, -0.009145229123532772, -0.008721142075955868, -0.01567753404378891, -0.003960424568504095, 0.0027445945888757706, 0.01064321305602789, -0.027497246861457825, 0.015513372607529163, -0.010355927981436253, -0.024296075105667114, -0.03294197469949722, -0.009541954845190048, -0.004316110163927078, -0.010431169532239437, 0.023297417908906937, -0.0023358978796750307, -0.01002076268196106, -0.00967875774949789, -0.006956392899155617, 0.02206619828939438, -0.004955660551786423, 0.016662510111927986, -0.03105410560965538, 0.03395431116223335, -0.020068885758519173, -0.029138874262571335, 0.020178327336907387, -0.01002760324627161, -0.011669229716062546, 0.01894710771739483, -0.013406617566943169, -0.03890655189752579, 0.021272744983434677, -0.002211065962910652, 0.020082566887140274, 0.0033567845821380615, -0.01372810360044241, -0.015267128124833107, 0.012654205784201622, 0.006805910728871822, -0.019672159105539322, 0.0042135086841881275, -0.03313349932432175, -0.01548601221293211, 0.0017100278055295348, 0.014583117328584194, 0.05436520278453827, 0.003331134095788002, -0.013823864981532097, -0.03762061148881912, -0.0030763400718569756, -0.00796188972890377, 0.02012360654771328, 0.015937458723783493, -0.0010217416565865278, 0.003158421255648136, 0.0350760892033577, 0.023461582139134407, 0.019918404519557953, -0.023913029581308365, 0.012319040484726429, -0.02246292494237423, -0.054885052144527435, -0.0019665320869535208, -0.003837302327156067, -0.029987048357725143, 0.0017886890564113855, -0.01567753404378891, 0.02114962413907051, 0.036553554236888885, 0.01701819710433483, 0.019850002601742744, -0.008632220327854156, -0.01990472339093685, -0.004545253701508045, 0.04399559646844864, 0.03518553078174591, -0.014637838117778301, -0.03721020370721817, -0.00011991569772362709, 0.01786637119948864, -0.004863318987190723, -0.014213751070201397, 0.010923657566308975, 0.009220469743013382, -0.0003815499658230692, 0.002296567428857088, -0.009863439947366714, -0.020616095513105392, 0.025144249200820923, 0.004678635857999325, 0.0320117212831974, -0.02800341509282589, 0.0020383531227707863, 0.014583117328584194, 0.035623300820589066, -0.005844875238835812, 0.01864614337682724, -0.0034439959563314915, 0.002255526604130864, -0.029220955446362495, 0.005933796521276236, -0.034118473529815674, -0.006987173575907946, 0.026156585663557053, 0.04041137546300888, -0.008064490742981434, -0.001472333911806345, -0.01256528403609991, 0.005130083300173283, -0.0033225840888917446, 0.005995357409119606, -0.030616337433457375, -0.0005959447007626295, -0.03395431116223335, 0.004299009684473276, -0.0010867227101698518, 0.007777206599712372, 0.022845972329378128, -0.01318773441016674, 0.031026745215058327, 0.021518990397453308, 0.012339560315012932, -0.0277024507522583, 0.009555635042488575, -0.02255868725478649, 0.01647098734974861, -0.006645168177783489, 0.013050932437181473, -0.008912664838135242, -0.011053619906306267, -0.027127880603075027, -0.0047401972115039825, 0.02207987941801548, -0.002137534786015749, 0.09182165563106537, 0.02778453193604946, -0.02700475975871086, 0.0009952362161129713, -0.010438010096549988, -0.00023555633379146457, 0.01652570813894272, -0.0018416999373584986, 0.01762012578547001, -0.015362889505922794, 0.023201657459139824, 0.0020554533693939447, -0.01824941672384739, -0.012599484995007515, -0.03502136841416359, -0.019070230424404144, 0.007024794351309538, 0.017497004941105843, -0.02333845943212509, 0.024378156289458275, 0.025623057037591934, -0.0016826674109324813, 0.032586291432380676, -0.014446315355598927, -0.04000097140669823, -0.01411798968911171, 0.03477512672543526, 0.017059236764907837, 0.0006006472394801676, -0.032340046018362045, 0.00990448147058487, -0.004360571037977934, -0.011046779341995716, -0.001956271706148982, 0.0008866494172252715, -0.014131669886410236, 0.005222424864768982, -0.035158172249794006, -0.009076827205717564, 0.013057772070169449, 0.009432513266801834, 0.024911684915423393, -0.02949455939233303, -0.011443505994975567, 0.016046900302171707, -0.011190421879291534, 0.010615852661430836, -0.018536701798439026, -0.006655428092926741], "e5912887-a0c4-471c-863c-bc191e7bc1a2": [-0.015306455083191395, -0.007756093516945839, 0.0005254736170172691, -0.03423379361629486, -0.0090042008087039, 0.007454353384673595, -0.014195502735674381, -0.027197761461138725, -0.01732262782752514, -0.05368231609463692, 0.019544532522559166, 0.004087207838892937, 0.008407577872276306, 0.0009317941730841994, 0.013496014289557934, 0.02806183509528637, 0.019064491614699364, -0.003699745750054717, 0.022438496351242065, -0.024605538696050644, -0.018268994987010956, -0.005993656814098358, -0.02271280437707901, 0.00046289683086797595, -0.02461925335228443, 0.0016870017861947417, 0.04065262898802757, -0.009799697436392307, -0.005211875308305025, 0.01023173425346613, 0.023261424154043198, -0.02600451558828354, -0.024303797632455826, -0.008126411586999893, -0.024207789450883865, -0.008606452494859695, -3.919086157111451e-05, -0.02221904881298542, -0.0037546076346188784, -0.028583021834492683, 0.021889876574277878, 0.0030585480853915215, -0.016897449269890785, 0.004766122903674841, 0.004052918870002031, 0.03439837694168091, -0.00487927533686161, -0.022287625819444656, -0.026223963126540184, -0.005873646587133408, -0.004779838491231203, 0.027581794187426567, -0.005870217457413673, 0.004817556124180555, -0.01947595551609993, -0.0028888192027807236, 0.0030054005328565836, -0.01263194065541029, 0.002991685178130865, -0.009977998211979866, 0.014922422356903553, 0.02138240449130535, -0.013578306883573532, 0.0035865933168679476, -0.02069663256406784, -0.026758866384625435, 0.0002620939048938453, -0.013310855254530907, -0.00480726920068264, -0.01722661964595318, 0.02206817828118801, 0.033520590513944626, -0.006665714550763369, 0.003506014822050929, 0.0040494902059435844, -0.0266902893781662, 0.008736749179661274, 0.0001261179568246007, 0.0007432065904140472, -0.02216418646275997, 0.007097751367837191, -0.004087207838892937, -0.0007757808198221028, -0.009456810541450977, 0.013921193778514862, 0.05272223427891731, -0.013249136507511139, 0.011692430824041367, -0.015004714950919151, 0.0031562705989927053, -0.00038703318568877876, 0.01574535109102726, 0.03080492652952671, 0.019311370328068733, 0.005722776520997286, 0.0010012286948040128, 0.0312986820936203, -0.00014347658725455403, -0.005109009332954884, -0.01888619177043438, -0.018762752413749695, 0.019009629264473915, -0.015306455083191395, -0.010752921923995018, -0.026073092594742775, -0.0013912621652707458, 0.016376260668039322, -0.006021087523549795, 0.013722319155931473, 0.01814555563032627, -0.0024464954622089863, 0.02791096456348896, -0.0007200617692433298, -0.005547904409468174, -0.035385891795158386, -0.02006572112441063, 0.03173757717013359, -0.025332458317279816, -0.005835928954184055, -0.022987114265561104, 0.015100723132491112, 0.02012058161199093, 0.0231516994535923, -0.02874760888516903, 0.013125697150826454, -0.015169301070272923, 0.009209932759404182, -0.012892534025013447, 0.019983427599072456, -0.01309826597571373, 0.012906249612569809, 0.023508301004767418, 0.001252393121831119, -0.006898877210915089, -0.03925365209579468, -0.00966254249215126, -0.022150469943881035, -9.45616775425151e-05, -0.005157013423740864, -0.018762752413749695, -0.0038437582552433014, 0.031024374067783356, -0.0026127954479306936, -0.023878619074821472, 0.0029333943966776133, 0.03031117096543312, -0.0039020488038659096, 0.03758036717772484, 0.03110666759312153, -0.018159272149205208, 0.006878304295241833, -0.021080665290355682, -0.015608195215463638, 0.020778924226760864, 0.004440380726009607, -0.011356402188539505, -0.009902563877403736, 0.019997144117951393, -0.02055947668850422, -0.023480869829654694, 0.010773494839668274, -0.0005949081387370825, -0.009621396660804749, 0.004958139266818762, 0.004385518841445446, 0.03179243952035904, 0.009216790087521076, -0.03574249520897865, -0.013461725786328316, -0.004440380726009607, -0.0034340086858719587, 0.031188959255814552, -0.02472897805273533, 0.032944537699222565, 0.032149042934179306, 0.002151613123714924, 0.025497043505311012, -0.007961825467646122, -0.020367460325360298, -0.019805127754807472, 0.02673143520951271, 0.005781067069619894, 0.01194616686552763, 0.020298883318901062, -0.017034603282809258, -0.03415149822831154, 0.023041976615786552, 0.0022424780763685703, 0.008997342549264431, -0.006360545288771391, 0.000894076656550169, 0.007077178452163935, -0.029543105512857437, -0.014305226504802704, -0.6083081364631653, 0.0052907392382621765, 0.023563163354992867, -0.03552304580807686, 0.001308112172409892, 0.015484756790101528, 0.00875732209533453, 0.013653742149472237, -0.01415435690432787, 0.02825385145843029, 0.0012781096156686544, 0.017596937716007233, -0.006291968282312155, -0.004207218065857887, -0.011582707054913044, -0.024454668164253235, 0.02962539717555046, -0.006700003053992987, -0.018653027713298798, 0.011603280901908875, -0.022054461762309074, 0.038183845579624176, 0.0018190131522715092, -0.0022407635115087032, 0.02265794202685356, -0.00014636969717685133, 0.03160042315721512, -0.007303483318537474, -0.021080665290355682, 0.02429008297622204, -0.03374003618955612, 0.012700517661869526, 0.01884504407644272, -0.0034288654569536448, 0.04120124876499176, -0.008380147628486156, -0.01027973834425211, 0.020230306312441826, 0.029049348086118698, 0.02590850740671158, -0.019997144117951393, -0.010526617057621479, 0.011980456300079823, 0.023330001160502434, 0.001911592436954379, -0.00042453641071915627, -0.005979941226541996, 0.008352716453373432, -0.012378204613924026, -0.006878304295241833, -0.001506986329331994, -0.025250164791941643, 0.007886390201747417, 0.007317198906093836, 0.005215304438024759, -0.008105837740004063, 0.027691517025232315, 0.004306654911488295, 0.0110409464687109, 0.013790897093713284, 0.014894991181790829, 0.0058667887933552265, -0.009820270352065563, -0.042847104370594025, -0.052365634590387344, 0.014922422356903553, -0.011452410370111465, -0.028171557933092117, 0.040597766637802124, 0.008133268915116787, 0.017775239422917366, 0.0033791468013077974, 0.000642055063508451, -0.014195502735674381, -0.005630197003483772, 0.025126725435256958, 0.03903420269489288, -0.011123239994049072, -0.001999028492718935, 0.018762752413749695, 0.03796439990401268, -0.006748007144778967, -0.007653227541595697, -0.02531874179840088, 0.03714147210121155, 0.007934394292533398, -0.0178986769169569, -0.010183730162680149, -0.0047044032253324986, -0.012508501298725605, 0.02090236358344555, 0.004570677876472473, 0.0037614654283970594, -0.04430093988776207, 0.031463269144296646, 0.0178986769169569, 0.0021481842268258333, -0.012734806165099144, 0.0016338543500751257, -0.026950882747769356, -0.026621710509061813, -0.03360288217663765, 0.0018138698069378734, 0.02035374566912651, 0.017432352527976036, -0.0054518962278962135, -0.009175644256174564, -0.005835928954184055, 0.02937851846218109, -0.01688373275101185, -0.004851844627410173, -0.014524674043059349, -0.016225391998887062, -0.021601852029561996, 0.003823184873908758, -0.025743922218680382, 0.015004714950919151, -0.006936594843864441, -0.008579021319746971, -0.016101952642202377, -0.015608195215463638, 0.02162928320467472, -0.004409520886838436, -0.006370832212269306, 0.001046661171130836, 0.026553133502602577, 0.011692430824041367, 0.004515815991908312, -0.0010552332969382405, -0.004268937278538942, 0.017281481996178627, -0.011507272720336914, 0.018022116273641586, -0.005702203139662743, 0.03135354444384575, -0.002012744080275297, 0.0022956253960728645, -0.001923593576066196, 0.00804411806166172, -0.03906163573265076, 0.0006836300599388778, -0.01067062932997942, 0.016170529648661613, -0.016156813129782677, -0.006439409218728542, 0.006713718641549349, -0.014771552756428719, 0.01608823612332344, -0.008688745088875294, -0.014264080673456192, -0.03280738368630409, -0.028281282633543015, 0.0019784553442150354, 0.021615568548440933, -0.016252823173999786, 0.003699745750054717, 0.015361317433416843, -0.04199674353003502, -0.0018035832326859236, -0.02590850740671158, -0.006415407173335552, 0.009141355752944946, -0.004080350045114756, 0.017103180289268494, -0.01932508498430252, -0.023851187899708748, -0.03505672141909599, 0.005067863035947084, 0.0009772266494110227, -0.010855788365006447, -0.004910135176032782, -0.019887419417500496, 0.027814956381917, 0.01415435690432787, -0.019160499796271324, 0.00672057643532753, -0.02206817828118801, 0.013022830709815025, -0.0030688345432281494, 0.0014958425890654325, 0.03149070218205452, 0.033877190202474594, -0.0191330686211586, 0.0015464182943105698, 0.028363574296236038, 0.023672886192798615, 0.010499185882508755, 0.020340029150247574, -0.031134098768234253, 0.005414178594946861, 0.0018224419327452779, 0.002592222299426794, -0.01981884241104126, -0.0025767923798412085, -0.01981884241104126, -0.026896020397543907, -0.024015773087739944, -0.020820071920752525, -0.008236134424805641, 0.024591822177171707, 0.005050718784332275, 0.0034374375827610493, -0.018817612901329994, 0.00796868372708559, 0.020093152299523354, -0.02796582691371441, 0.005928508471697569, -0.019366232678294182, 0.0014615538530051708, 0.006861159577965736, -0.011027230881154537, 0.005527331028133631, -0.01258393656462431, -0.044054064899683, -0.002251050202175975, 0.017185473814606667, -0.01804954744875431, 0.02212304063141346, 0.0011486699804663658, 0.002492785220965743, 0.013496014289557934, 0.017185473814606667, 0.01996971294283867, 0.0157042033970356, -0.011809012852609158, 0.0022716233506798744, 0.004406092222779989, 0.00035874504828825593, 0.017871247604489326, -0.02280881255865097, -0.008921908214688301, 0.015045861713588238, -0.0025647913571447134, -0.011418121866881847, 0.026223963126540184, 0.026031946763396263, 0.043587736785411835, -0.025730205699801445, 0.01791239343583584, -0.03192959353327751, -0.006233677268028259, 0.006315970327705145, 0.034014344215393066, -0.024221505969762802, 0.006384547334164381, 0.01604709029197693, 0.018461011350154877, -0.0016612852923572063, -0.020682916045188904, 0.035193875432014465, -0.007118324749171734, 0.012899392284452915, -0.003494013799354434, -0.008695602416992188, 0.019997144117951393, -0.0035934511106461287, -0.0018618738977238536, 0.012206761166453362, 0.026470841839909554, 0.01869417354464531, -0.01425036508589983, 0.013530302792787552, 0.003651741659268737, -0.0035625912714749575, 0.022013315930962563, -0.005969654768705368, 0.0021704719401896, -0.03434351459145546, -0.009120781905949116, -0.001899591414257884, -0.0066245682537555695, -0.025538189336657524, -0.006069092079997063, -0.010800926014780998, -0.02531874179840088, 0.010272881016135216, -0.003271137597039342, 0.029844844713807106, -0.004615252837538719, 0.013729177415370941, -0.007200617343187332, -0.026662858203053474, 0.009881990030407906, 0.016554562374949455, -0.013736034743487835, 0.0002593079407233745, -0.014922422356903553, 0.010142584331333637, 0.019558249041438103, 0.019366232678294182, -0.015292739495635033, 0.0006737720686942339, -0.009833985939621925, 0.02290482074022293, -0.014648113399744034, 0.010478612966835499, 0.04048804193735123, -0.007015458773821592, -0.016060804948210716, -3.415471292100847e-05, 0.011911878362298012, 0.00334828719496727, -0.02276766672730446, -0.014305226504802704, 0.051624998450279236, -0.015306455083191395, 0.006514844484627247, -0.020148012787103653, 0.0173637755215168, -0.030146585777401924, -0.0008002114482223988, -0.03234105929732323, -0.019146785140037537, -0.0044438098557293415, -0.02819898910820484, -0.006147955544292927, -0.006497700233012438, -0.03286224603652954, 0.03173757717013359, 0.00447809835895896, -0.022603081539273262, -0.02236991748213768, -0.012186188250780106, 0.014072063378989697, 0.059470243752002716, 0.011568992398679256, -0.010355173610150814, 0.016993457451462746, -0.025812499225139618, -0.005808498244732618, -0.015416178852319717, -0.024948425590991974, 0.031463269144296646, -0.01658199355006218, -0.023631740361452103, -0.002074463525786996, 0.021752722561359406, -0.007036031689494848, 0.007392633706331253, 0.01444238144904375, 0.004601537249982357, -0.011493557132780552, -0.03533102944493294, 0.003336286172270775, -0.005318170413374901, 0.011616996489465237, 0.03310912474989891, 0.016691716387867928, 0.04690688103437424, 0.03854044899344444, 0.027307484298944473, -0.008750464767217636, 0.019119353964924812, -0.031518131494522095, -0.024248937144875526, -0.010135726071894169, -0.012405634857714176, 0.005907935090363026, -0.002895676763728261, 0.04320370405912399, 0.016293969005346298, -0.03974740952253342, -0.019338801503181458, 0.011754150502383709, -0.0048689888790249825, 0.00397405494004488, 0.005139869172126055, -0.019489672034978867, 0.0072554792277514935, -0.01434637326747179, 0.004107780754566193, 0.05557505041360855, -0.018282711505889893, 0.0019133068853989244, 0.0013218276435509324, 0.005143298301845789, -0.008414436131715775, 0.015909936279058456, 0.012645656242966652, 0.005369603168219328, -0.016609424725174904, -0.005750207230448723, -0.0040769209153950214, -0.032752521336078644, -0.04046061262488365, -0.0034340086858719587, -0.014634397812187672, -0.00895619671791792, -0.009381376206874847, -0.01987370476126671, 0.007173186633735895, 0.011644426733255386, -0.017130611464381218, -0.003987770527601242, 0.007941252551972866, -0.0301740150898695, -0.042463067919015884, 0.008188130334019661, 0.027458354830741882, 0.014840129762887955, 0.017048319801688194, 0.004718118812888861, -0.005397034343332052, 0.006394834257662296, -1.1264358363405336e-05, -0.045343317091464996, 0.011356402188539505, -0.019846273586153984, -0.027897249907255173, -0.027773810550570488, -0.008249850012362003, -0.008723033592104912, -0.012474212795495987, 0.008551590144634247, 0.011905021034181118, -0.01917421631515026, -0.017884962260723114, 0.010704917833209038, 0.009525388479232788, 0.04473983496427536, 0.016815155744552612, 0.019750265404582024, 0.025839930400252342, -0.036867160350084305, 0.007564077153801918, 0.007193759549409151, -0.0012798240641131997, -0.019928565248847008, -0.0009446524200029671, -0.0012361060362309217, 0.0038540447130799294, -0.020148012787103653, 0.010382604785263538, -0.02334371581673622, 0.0010723776649683714, -0.019393663853406906, -0.0043409438803792, -0.024015773087739944, 0.009868274442851543, 0.008585878647863865, -0.0014709832612425089, 0.012919965200126171, -0.00905220489948988, -0.0301191546022892, 0.006617710459977388, -0.02796582691371441, 0.03384976089000702, 0.013873189687728882, -0.0021670430433005095, -0.0006591993733309209, 0.01067062932997942, -0.01976398006081581, -0.030036861076951027, 0.017473498359322548, 0.010190588422119617, 0.009285368025302887, -0.00794810988008976, 0.0020281739998608828, -0.021300112828612328, -0.010485470294952393, 0.011713004671037197, 0.011507272720336914, -0.0031219820957630873, 0.02054576203227043, -0.020532045513391495, 0.0031322685535997152, 0.013125697150826454, -0.011905021034181118, -0.0019561676308512688, -0.03280738368630409, -0.02520901896059513, -0.017638083547353745, 0.006737720686942339, 0.017103180289268494, -0.01863931305706501, -0.013036546297371387, -0.019695403054356575, -0.011376976035535336, 8.840044029057026e-05, 0.0005121867870911956, 0.01172672025859356, -0.002405349165201187, 0.049320802092552185, 0.025154156610369682, 0.03138097748160362, 0.032944537699222565, 0.032395921647548676, 0.017994685098528862, -0.01962682604789734, -0.0076669431291520596, 0.0006621996290050447, -0.014840129762887955, 0.005277024116367102, 0.004131782799959183, 0.013057119213044643, -0.0009900849545374513, -0.029652828350663185, 0.007687516510486603, -0.002480784198269248, 0.01696602627635002, 0.0014006915735080838, -0.018172986805438995, -0.025030717253684998, -0.04218875989317894, -0.004628968425095081, 0.015114438720047474, 0.011514130048453808, -0.009511672891676426, -0.016801441088318825, 0.007097751367837191, 0.038430724292993546, -0.01628025248646736, 0.027307484298944473, -0.006700003053992987, 0.03321884945034981, 0.01182272844016552, 0.005698774475604296, -0.0012883961899206042, 0.020436037331819534, -0.03428865596652031, -0.0070634628646075726, -0.027554363012313843, -0.01194616686552763, 0.008057833649218082, 0.0028288140892982483, 0.03582478687167168, 0.006466840393841267, -0.008277281187474728, -0.0002728091203607619, 0.004728405270725489, -0.02589479275047779, 0.0017967255553230643, 0.014469812624156475, -0.03640083596110344, 0.010883218608796597, -0.028281282633543015, -0.015759065747261047, -0.005023288074880838, -0.012782810255885124, 0.002473926404491067, -0.007653227541595697, 0.02010686695575714, -0.022685373201966286, -0.005400463007390499, 0.03124382160604, -0.015882505103945732, 0.026566850021481514, 0.039418235421180725, 0.026964597404003143, 0.016362546011805534, 0.0012369632022455335, -0.029735121876001358, -0.01277595292776823, -0.0036380263045430183, -0.015635626390576363, 0.016952311620116234, 0.04268251731991768, -0.00041296397102996707, -0.013454868458211422, -0.001887590391561389, -0.032203905284404755, -0.0025287882890552282, -0.029735121876001358, -0.00032402778742834926, 0.01667800173163414, 0.009998572058975697, -0.040104009211063385, -0.013653742149472237, -0.01471669040620327, 0.030667772516608238, -0.015306455083191395, 0.0009875132236629725, 0.0022081893403083086, -0.005551333073526621, 0.008284138515591621, 0.010759780183434486, 0.007392633706331253, 0.015416178852319717, -0.009340229444205761, 0.003406577743589878, 0.004491813946515322, -0.004385518841445446, -0.00838700495660305, 0.008921908214688301, 0.0007406349177472293, 0.036236248910427094, -0.03771752119064331, -0.010725490748882294, 0.013626310974359512, 0.004790124949067831, 0.0027568077202886343, -0.0024704975076019764, -0.03291710838675499, 0.02844586782157421, -0.019160499796271324, -0.008428151719272137, -0.00033924338640645146, 0.01552590262144804, 0.006370832212269306, -0.00600737240165472, -0.022918537259101868, -0.003898619906976819, 0.014977284707129002, 0.012330200523138046, 0.021848730742931366, -0.01937994733452797, -0.010842072777450085, -0.013352002017199993, 0.006449696142226458, -0.025716491043567657, -0.00015987084771040827, 0.009888848289847374, 0.011123239994049072, -0.04232591390609741, 0.0016904306830838323, 0.011294682510197163, -0.010197445750236511, -0.0008975055534392595, 0.006888590753078461, -0.014058348722755909, -0.005901077296584845, 0.03143583983182907, -0.018337571993470192, 0.024797555059194565, 0.03324627876281738, 0.009059062227606773, -0.039418235421180725, 0.016170529648661613, -0.038924481719732285, -0.0032814242877066135, 0.012439924292266369, -0.006209675222635269, -0.021176673471927643, -0.007221190724521875, 0.018310140818357468, 0.001538703334517777, 0.0060553764924407005, 0.0015207018004730344, 0.011788439005613327, 0.011116381734609604, 0.006027945317327976, -0.01942109316587448, 0.00517415814101696, 0.016513416543602943, -0.0006210532737895846, 0.012083321809768677, 0.017295196652412415, -0.00642569363117218, 0.005294168367981911, -0.004135211929678917, 0.0023607739713042974, -0.005427894182503223, -0.01839243434369564, -0.034261222928762436, -0.022973397746682167, 0.0031939882319420576, 0.0007354916306212544, 0.007865817286074162, 0.0015498471911996603, -0.019352516159415245, -0.012439924292266369, 0.020916080102324486, -0.007042889483273029, 0.0009223648230545223, 0.029049348086118698, 0.004172929096966982, 0.006285110488533974, 0.040049146860837936, -0.014113210141658783, -0.03291710838675499, -0.02349458634853363, -0.0191330686211586, -0.058153558522462845, -0.010512901470065117, 0.017816385254263878, 0.039994288235902786, 0.007097751367837191, -0.02747206948697567, -0.03560533747076988, -0.010711776092648506, -0.03788210451602936, -0.019256507977843285, -0.044081494212150574, 0.019242793321609497, 0.03530360013246536, 0.014264080673456192, -0.001993885263800621, 0.023659171536564827, -0.0007410635589621961, 0.00455010449513793, -0.03634597361087799, -0.0002466640144120902, -0.020038289949297905, -0.020436037331819534, 0.03437094762921333, -0.035001859068870544, -0.04367003217339516, -0.006360545288771391, -0.003946624230593443, -0.01120553258806467, 0.012913106940686703, 0.0009523673797957599, 0.0060759494081139565, 0.006213104352355003, -0.0066417125053703785, 0.005825642496347427, 0.012919965200126171, 0.02623767778277397, 0.013701746240258217, -0.03648312762379646, -0.007012029644101858, 0.040158871561288834, -0.004700974561274052, 0.00762579683214426, 0.01623910665512085, 0.00961453840136528, -0.024015773087739944, 0.0011323827784508467, 0.001337257563136518, -0.015141869895160198, -0.0007294911192730069, 0.0034991572611033916, -0.0017624368192628026, 0.025250164791941643, 0.008359573781490326, 0.03459039330482483, -0.0359070785343647, -7.425636431435123e-05, 0.00024259222846012563, 0.005421036388725042, 0.005842786747962236, 0.022191617637872696, 0.01648598536849022, -0.0034168644342571497, 0.009353945031762123, 0.005002714693546295, 0.004536388907581568, 0.004176358226686716, -0.028775038197636604, -0.01810440979897976, -0.011466125957667828, -0.01206274889409542, -0.015731634572148323, 0.0027019460685551167, -0.01542989443987608, 0.015759065747261047, -0.013125697150826454, -0.00519816018640995, 0.015100723132491112, -0.00801668781787157, 0.013214847072958946, -0.029049348086118698, -0.03228619694709778, 0.005424465052783489, 0.001233534305356443, -0.039857130497694016, -0.00031438408768735826, 0.019750265404582024, 0.01947595551609993, 0.00688173295930028, 0.20485413074493408, 0.022205332294106483, 0.02246592566370964, 0.02659428119659424, 0.006902306340634823, -0.006103380583226681, 0.020285168662667274, -0.0022424780763685703, -0.01730891317129135, 0.016197960823774338, -0.0058667887933552265, -0.005914792884141207, -0.006381118670105934, -0.004433522932231426, 0.012714233249425888, -0.015635626390576363, -0.025428466498851776, -0.008620168082416058, -0.015018430538475513, 0.001078378176316619, -0.00037438925937749445, 0.0019595965277403593, -0.019064491614699364, 0.0035385892260819674, 0.015484756790101528, -0.0006596280145458877, -0.00485527329146862, 0.009326513856649399, 0.019201645627617836, 0.019489672034978867, -0.004433522932231426, 0.0044986712746322155, 0.0035557334776967764, -0.017336344346404076, -0.015169301070272923, -0.012302769348025322, 0.01580021157860756, -0.012419350445270538, -0.009264794178307056, 0.029954569414258003, -0.01932508498430252, -0.02663542702794075, 0.01962682604789734, -0.02330256998538971, 0.016252823173999786, -0.0013226848095655441, -0.016705432906746864, 0.028336144983768463, -0.020957225933670998, 0.023480869829654694, -0.002890533534809947, -0.0018635883461683989, -0.004906706511974335, 0.024742692708969116, 0.012858245521783829, 0.010608909651637077, 0.004179786890745163, -0.0030499757267534733, -0.02564791403710842, -0.007776666898280382, -0.008105837740004063, -0.0016921451315283775, -0.012124468572437763, 0.011932452209293842, -0.030887220054864883, 0.012049033306539059, -0.03785467520356178, 0.02300082892179489, -0.0015661342767998576, -0.0036723148077726364, -0.009319656528532505, 0.00022866246581543237, -0.02893962524831295, -0.009038489311933517, -0.019064491614699364, -0.008819041773676872, 0.02477012388408184, 0.010197445750236511, 0.003401434514671564, 0.01761065237224102, -0.004748978652060032, 0.012398777529597282, -0.027650371193885803, -0.0095665343105793, 0.01858445070683956, -0.031902164220809937, 0.038924481719732285, -0.02349458634853363, -0.022479642182588577, -0.02520901896059513, -0.003055119188502431, -0.0015618482138961554, -0.007817813195288181, -0.021752722561359406, 0.01182272844016552, -0.006590279284864664, 0.01138383336365223, 0.02962539717555046, -0.013756608590483665, -0.026361117139458656, -0.007097751367837191, 0.04896419867873192, 0.012001029215753078, 0.019613109529018402, -0.007536646444350481, 0.009031631983816624, 0.0042380779050290585, 0.021450981497764587, -0.009772266261279583, -0.000949795707128942, -0.0050747208297252655, -0.03769008815288544, 0.010286596603691578, -0.005006143357604742, 0.004131782799959183, 0.01776152290403843, 0.015018430538475513, -0.009223648346960545, 0.01928393915295601, -0.026319971308112144, 0.010320885106921196, -0.006590279284864664, 0.020093152299523354, 0.018803898245096207, -0.03417893126606941, -0.029543105512857437, -0.013324570842087269, 0.038183845579624176, -0.02423522062599659, -0.032450783997774124, 0.01726776733994484, -0.010334600694477558, 0.018762752413749695, -0.00794810988008976, -0.006898877210915089, 0.008476155810058117, 0.02625139430165291, -0.0007543503888882697, -0.014072063378989697, -0.028144126757979393, 0.016321400180459023, 0.015279024839401245, 0.011678716167807579, 0.008167557418346405, -0.0019904563669115305, -0.003091122256591916, 0.0013972626766189933, -0.011589565314352512, -0.011404406279325485, -0.034700118005275726, -0.01481269858777523, 0.007372060790657997, -9.900848817778751e-05, 0.001735005876980722, 0.03829357028007507, -0.00885333027690649, -0.01051975879818201, -0.03321884945034981, 0.012391920201480389, 0.012508501298725605, -0.03571506217122078, 0.0027825243305414915, 0.021560706198215485, 0.00512615405023098, -0.029707690700888634, -0.008921908214688301, -0.17391206324100494, 0.013070834800601006, 0.008585878647863865, 0.0034614396281540394, 0.01578649692237377, 0.006710289511829615, -0.0023659172002226114, -0.011541561223566532, 0.002479069633409381, -0.0031356974504888058, 0.01363316923379898, 0.00667257234454155, 0.0036483127623796463, 0.0032882820814847946, 0.010821498930454254, 0.0027705233078449965, -0.02555190585553646, 0.02010686695575714, 0.03988456353545189, 0.014798983000218868, 0.021121811121702194, -0.022877389565110207, -0.016005944460630417, -0.0015378461685031652, 0.030256308615207672, -0.0012901106383651495, -0.0022424780763685703, 0.02025773748755455, -0.003307140665128827, -0.03541332110762596, -0.009648827835917473, -0.013701746240258217, 0.030887220054864883, -0.0039123352617025375, 0.02339857816696167, 0.01167185790836811, 0.0004348230140749365, 0.003651741659268737, -0.008476155810058117, 0.007728662807494402, 0.017446067184209824, 0.0024722120724618435, 0.011027230881154537, 0.0068680173717439175, 0.007159471046179533, -0.0013063977239653468, 0.01030031219124794, -0.01305026188492775, 0.02197217009961605, -0.010458040051162243, 0.021121811121702194, -0.025346172973513603, 0.0030499757267534733, -0.00475926510989666, 0.0025305026210844517, 0.001131525612436235, 0.0068474444560706615, 0.03653798997402191, 0.007454353384673595, -0.02948824316263199, 0.0035625912714749575, -0.014881276525557041, 0.01844729669392109, 0.00010002643102779984, 0.003389433491975069, -0.021204104647040367, 0.027650371193885803, 0.006549132987856865, -0.0086818877607584, 0.007173186633735895, 0.004330656956881285, 0.012035317718982697, -0.005739920772612095, 0.03700431436300278, -0.0007354916306212544, 0.019023345783352852, -0.05165242776274681, 0.011143812909722328, 0.030036861076951027, -0.007241763640195131, -0.0007054890738800168, 0.011857016943395138, -0.017350059002637863, -0.01113695465028286, -0.0031802726443856955, 0.013818327337503433, -0.004838129039853811, 0.0018893048400059342, -0.017638083547353745, 0.006878304295241833, 0.020957225933670998, -0.01209017913788557, 0.005386747419834137, 0.010272881016135216, 0.011294682510197163, -0.0014975570375099778, 0.04185958951711655, -0.014195502735674381, 0.02541474997997284, 0.0031408406794071198, 0.014332657679915428, 0.009703689254820347, -0.02477012388408184, 0.004186644684523344, 0.026649141684174538, 0.04109152406454086, 0.00616852892562747, 0.009580249898135662, 0.03138097748160362, -0.018529588356614113, -0.01062262523919344, 0.004896420054137707, 0.02590850740671158, 0.010170014575123787, -0.026498273015022278, 0.04786696285009384, -0.0007873532013036311, -0.02252078801393509, 0.023041976615786552, -0.02345344051718712, 0.04871731996536255, -0.025085579603910446, -0.03006429225206375, 0.01415435690432787, 0.0035317314323037863, 0.009820270352065563, -0.10319513827562332, -0.011034089140594006, 0.0237963255494833, 0.015073292888700962, -0.01189816277474165, 0.009141355752944946, -0.00559247937053442, 0.05340800806879997, -0.030009429901838303, 0.026457125321030617, -0.016376260668039322, -0.011754150502383709, 0.0029745406936854124, 0.012302769348025322, 0.008716176263988018, -0.01471669040620327, -0.014730405993759632, -0.0013732606312260032, -0.007221190724521875, 0.027389777824282646, 0.020038289949297905, 0.005571906454861164, 0.019736548885703087, -0.017350059002637863, -0.009278509765863419, -0.01152784563601017, -0.017350059002637863, 0.01667800173163414, 0.014017201960086823, -0.009127640165388584, 0.0042380779050290585, -0.0010672343196347356, 0.0335480198264122, -0.007721805013716221, -0.030009429901838303, -0.010951796546578407, -0.024907277897000313, -0.019928565248847008, -0.001533560105599463, -0.028116697445511818, -0.0033877191599458456, 0.011274109594523907, -0.02330256998538971, -0.012412493117153645, -0.0022664801217615604, -0.00975855067372322, -0.010821498930454254, 0.03741578012704849, 0.02216418646275997, -0.017542075365781784, 0.007125182542949915, -0.0090042008087039, -0.01191873662173748, -0.012405634857714176, 0.028418436646461487, -0.0009112209663726389, 0.016005944460630417, -0.0029453954193741083, -0.017871247604489326, 0.0009240792132914066, -0.004015201237052679, 0.008668172173202038, 0.012426208704710007, 0.03398691490292549, 0.009086493402719498, 0.02044975385069847, 0.012247906997799873, -0.01143183745443821, -0.017446067184209824, -0.010787210427224636, -0.021135525777935982, 0.011953025124967098, -0.027773810550570488, 0.004810698330402374, 0.0006489127990789711, -0.002057319274172187, -0.015114438720047474, -0.019160499796271324, 0.017185473814606667, -0.0035625912714749575, -0.014730405993759632, -0.006017658859491348, -0.004964997060596943, -0.04188701882958412, 0.026717718690633774, 0.014634397812187672, 0.008839614689350128, -0.007618939038366079, 0.027430923655629158, -0.026909736916422844, 0.012213618494570255, 0.014024059288203716, 0.011925593949854374, -0.026127954944968224, -0.0064359805546700954, 0.020326314494013786, -0.0323684886097908, 0.011829585768282413, 0.0288847628980875, -0.00787267554551363, -0.02271280437707901, -0.0016432837583124638, -0.04548047110438347, 0.02467411570250988, 0.003898619906976819, 0.010800926014780998, -0.005054147448390722, -0.03149070218205452, -0.003559162374585867, -0.01091064978390932, -0.011370117776095867, 0.010698060505092144, -0.0220270324498415, 0.010691202245652676, -0.02354944869875908, -0.03497442603111267, -0.020477185025811195, -0.020984657108783722, 0.0030225447844713926, 0.005523902364075184, 0.028020689263939857, 0.0025956511963158846, -0.019846273586153984, 0.0050747208297252655, -0.0023247706703841686, 0.030256308615207672, -0.010554048232734203, 0.007673800922930241, -0.022603081539273262, 0.037991829216480255, -0.010855788365006447, -0.01342057902365923, 0.011603280901908875, -0.004279224202036858, -0.002350487280637026, 0.013777181506156921, -0.026511987671256065, -0.04410892352461815, 0.02324770763516426, -0.00226305122487247, 0.01427779532968998, 8.256064757006243e-05, -0.04207903519272804, -0.01761065237224102, 0.030695203691720963, 0.005208446644246578, -0.004810698330402374, 0.0002935966185759753, -0.015635626390576363, -0.016897449269890785, 0.01167185790836811, 0.015868788585066795, 0.054230935871601105, 0.012179329991340637, 0.00019662400882225484, -0.0371963307261467, 0.0034391521476209164, -0.01177472434937954, 0.026319971308112144, 0.013715461827814579, 0.0012249621795490384, 0.0032882820814847946, 0.05008886754512787, 0.019462240859866142, 0.017199188470840454, -0.02629254013299942, 0.007954968139529228, -0.030283739790320396, -0.044657543301582336, 0.001097236992791295, 0.004615252837538719, -0.03135354444384575, -0.00905220489948988, -0.019023345783352852, 0.054724693298339844, 0.0324782133102417, 0.016609424725174904, -0.002199617214500904, -0.0011975312372669578, -0.009552818723022938, -0.004834700375795364, 0.01673286408185959, 0.0405154749751091, -0.016403691843152046, -0.02389233373105526, 0.007550361566245556, 0.017734091728925705, 0.015443610027432442, -0.032011888921260834, 0.010108294896781445, 0.01770666055381298, 0.008318427950143814, -0.005187873262912035, -0.012487928383052349, -0.009669400751590729, 0.014510958455502987, 0.013996629044413567, 0.03527616709470749, -0.01756950654089451, 0.01623910665512085, 0.0150595773011446, 0.03609909489750862, -0.002117324387654662, 0.006586850620806217, 0.006274823565036058, 0.002575078047811985, -0.023192845284938812, 0.012151898816227913, -0.033383432775735855, -0.009929994121193886, 0.009189359843730927, 0.027677802368998528, -0.0029059634543955326, 0.007941252551972866, -0.01932508498430252, 0.004138640593737364, -0.014401234686374664, -0.0018687316915020347, -0.0030191161204129457, -0.007310341112315655, -0.01115752849727869, 0.003775180783122778, -0.00591136422008276, 0.013386290520429611, 0.011335829272866249, -0.008085264824330807, 0.020682916045188904, 0.020765209570527077, -0.006826871074736118, -0.010999800637364388, 0.009854558855295181, -0.022383634001016617, 0.028829900547862053, 0.0046598282642662525, 0.01898219995200634, -0.0007912106812000275, -0.0042929393239319324, -0.026073092594742775, -0.011713004671037197, 0.0225070733577013, -0.01593736745417118, 0.07554476708173752, 0.020189160481095314, -0.03006429225206375, 8.523945143679157e-05, -0.007186902221292257, -0.0018670172430574894, 0.0255107581615448, -0.004210646729916334, 0.010903792455792427, -0.010170014575123787, 0.020916080102324486, 0.013235420919954777, -0.016760295256972313, -0.009559676982462406, -0.010787210427224636, -0.020134298130869865, 0.001097236992791295, -0.0004328942741267383, -0.01918793097138405, 0.020970940589904785, 0.020244020968675613, -0.012844529934227467, 0.03700431436300278, -0.0018378718523308635, -0.033438295125961304, -0.01051975879818201, 0.04089950770139694, 0.010451181791722775, 0.01381147000938654, -0.029460811987519264, 0.02075149305164814, -0.008304712362587452, -0.0347275510430336, -0.017391204833984375, 0.001390404999256134, -0.0173637755215168, -0.005873646587133408, -0.028967054560780525, -0.015512187033891678, 0.005421036388725042, -0.0005614767433144152, 0.015457325614988804, -0.025003286078572273, -0.011500414460897446, 0.031161529943346977, -0.020052004605531693, 0.009484241716563702, -0.021711576730012894, -0.01892733760178089], "5ef91afd-2dce-4643-8132-41545dafc688": [-0.011219517327845097, -0.023854831233620644, -0.0090691102668643, -0.02250581793487072, -0.01317625492811203, 0.013490133918821812, -0.016815919429063797, -0.030292697250843048, -0.022292112931609154, -0.05139607563614845, -0.00018020931747741997, 0.005803429055958986, 0.015453549101948738, -0.004304154310375452, 0.00864837784320116, 0.008795300498604774, 0.022639382630586624, 0.004584642127156258, 0.021250300109386444, -0.016321726143360138, -0.027648096904158592, -0.0019033110002055764, -0.025644611567258835, 0.007432930171489716, -0.026259012520313263, 0.003150480566546321, 0.033605124801397324, -0.009289492852985859, -0.0030920454300940037, 0.01940709352493286, 0.017310112714767456, -0.01706969365477562, -0.030853671953082085, -0.011653605848550797, -0.01799129694700241, -0.0032790375407785177, 0.014104535803198814, 0.0028967056423425674, 0.012561852112412453, -0.004537893924862146, 0.02007492259144783, -0.0014316571177914739, -0.00900900550186634, 0.008000584319233894, 0.005923638120293617, 0.03072010725736618, 0.008494777604937553, -0.009002326987683773, -0.009456450119614601, -0.008341176435351372, -0.004581302870064974, 0.021878058090806007, 0.0022088424302637577, 0.007907087914645672, -0.020168418064713478, -0.00870848260819912, 0.0011277951998636127, -0.010778750292956829, 0.007125729229301214, 0.0005739150219596922, 0.011840597726404667, 0.005128922406584024, -0.01779094897210598, -0.002833262085914612, -0.023414064198732376, -0.03777237609028816, -0.009897217154502869, -0.0186858382076025, -0.01582753285765648, -0.009029040113091469, 0.020382123067975044, 0.03849362954497337, -0.008988969959318638, -0.007018876727670431, 0.003816639306023717, -0.017510460689663887, 0.011446579359471798, 0.011272943578660488, -0.0047415816225111485, -0.009883860126137733, 0.01836528070271015, -0.008995648473501205, -0.008594951592385769, -0.011767136864364147, 0.015480262227356434, 0.047282252460718155, -0.026058664545416832, -0.0066415537148714066, -0.018098149448633194, 0.007867018692195415, -0.0028399403672665358, 0.0030135756824165583, 0.016094664111733437, 0.008554882369935513, 0.013089437037706375, 0.01349681243300438, 0.030452976003289223, -0.007072302978485823, 0.0016996233025565743, -0.008468064479529858, -0.01565389707684517, 0.01799129694700241, -0.011954128742218018, -0.01107927318662405, -0.027087120339274406, -0.0033207768574357033, 0.019567372277379036, -0.004110483918339014, -0.0014233093243092299, 0.028689907863736153, -0.019714294001460075, 0.027354251593351364, -0.006658249069005251, 0.004407667554914951, -0.011359761469066143, -0.004992017522454262, 0.03277701884508133, -0.03448665887117386, -0.0031220978125929832, -0.027487818151712418, 0.01637515239417553, 0.015493619255721569, 0.025885028764605522, -0.02230546809732914, 0.0007137416396290064, -0.0090691102668643, 0.002622896106913686, -0.004798347130417824, 0.01343670766800642, -0.009750294499099255, 0.02640593610703945, 0.01585424691438675, 0.010838855057954788, 0.008414638228714466, -0.03806621953845024, 0.00777352275326848, -0.015627184882760048, 0.013369924388825893, -0.013904187828302383, -0.014505232684314251, 0.012501748278737068, 0.03355170041322708, -0.009195997379720211, -0.04426366835832596, -0.007820270955562592, 0.019834503531455994, -0.013503490015864372, 0.026312438771128654, 0.019273528829216957, -0.03256331384181976, 0.010972420684993267, -0.0045746248215436935, -0.014905930496752262, 0.021851345896720886, 0.006080577615648508, 0.008902153000235558, -0.0006811849889345467, 0.022692808881402016, -0.024175388738512993, -0.018472133204340935, 0.010785428807139397, 0.013824048452079296, -0.0008481420809403062, 0.0016236577648669481, 0.0018248411361128092, 0.028876900672912598, -0.006701658014208078, -0.04335542023181915, -0.00890883058309555, -0.008661734871566296, 0.017229972407221794, 0.04845762997865677, -0.029865287244319916, 0.023534273728728294, 0.013389959931373596, -0.0016670667100697756, 0.02704705111682415, -0.005593062844127417, -0.004163910169154406, -0.034994207322597504, 0.03451337292790413, -0.003592916764318943, 0.006638214457780123, 0.020876316353678703, -0.0227996613830328, -0.039268311113119125, -0.0006836893153376877, 0.005209061782807112, 0.0090691102668643, -0.012107728980481625, 0.007346112281084061, 0.013463420793414116, -0.02629908360540867, -0.009890538640320301, -0.6180351376533508, -0.003456012113019824, 0.027621382847428322, -0.03635657951235771, 0.009917251765727997, 0.008367889560759068, 0.03317771479487419, 0.009556624107062817, 0.0007375329732894897, 0.009790364652872086, 0.016321726143360138, 0.01585424691438675, 0.00348272523842752, -0.025123704224824905, -0.016388509422540665, -0.020382123067975044, 0.028315924108028412, -0.011146056465804577, -0.014732294715940952, 0.007125729229301214, -0.02314693294465542, 0.029865287244319916, -0.00650130957365036, -0.0007225068402476609, 0.01801801100373268, -0.017176546156406403, 0.024188745766878128, -0.01449187658727169, -0.011319691315293312, 0.009149249643087387, -0.02933102287352085, 0.02158421464264393, 0.021557500585913658, 0.0012246303958818316, 0.04287458211183548, -0.0017680757446214557, -0.012581887654960155, 0.026486074551939964, 0.030800245702266693, 0.045492470264434814, -0.023480847477912903, -0.006367743946611881, 0.008234323933720589, 0.010691932402551174, -0.001966754673048854, 0.00515563553199172, -0.01394425705075264, 0.009623407386243343, -0.009109179489314556, -0.010224453173577785, 0.006491292268037796, -0.02247910387814045, 0.006865276023745537, 0.007559817750006914, 0.012835661880671978, -0.002941784216091037, 0.03552846983075142, 0.012161155231297016, 0.0011353082954883575, 0.01462544221431017, 0.02099652588367462, 0.005502906162291765, -0.00035499254590831697, -0.054227665066719055, -0.03373869135975838, 0.002132042311131954, -0.006327674258500338, -0.014344953931868076, 0.017697453498840332, -0.0003572881978470832, 0.026138804852962494, 0.000489601690787822, 0.0009549946407787502, -0.008488099090754986, -0.0028466186486184597, 0.010538332164287567, 0.04113823175430298, -0.007259294856339693, -0.01398432720452547, 0.023627769201993942, 9.73568603512831e-05, -0.0020402157679200172, -0.006431187503039837, -0.02788851410150528, 0.025096992030739784, 0.003582899458706379, -0.00951655488461256, -0.015092922374606133, -0.007733453065156937, -0.004537893924862146, 0.022345539182424545, 0.015333340503275394, -0.005255809519439936, -0.03667713701725006, 0.007680026814341545, 0.026860058307647705, 0.007018876727670431, 0.0035662036389112473, -0.007386182434856892, -0.02096981182694435, -0.039936140179634094, -0.031922198832035065, -0.0002877922961488366, 0.018271785229444504, 0.015921030193567276, 0.003933509346097708, -0.017136476933956146, -0.021944841369986534, 0.01987457275390625, -0.0024525998160243034, 0.0022388948127627373, -0.0023223732132464647, -0.025070277974009514, -0.02320035919547081, 0.0010518297785893083, -0.02620558626949787, 0.028850186616182327, -0.009656799025833607, -0.002941784216091037, -0.009175962768495083, -0.016588857397437096, 0.008180897682905197, 0.015974456444382668, -0.005209061782807112, -0.009743616916239262, 0.02895703911781311, 0.008548203855752945, 0.0023123559076339006, 0.005876889917999506, 0.000868176924996078, 0.004414345603436232, -0.005529619287699461, 0.008314463309943676, -0.01531998347491026, 0.03144136071205139, -0.0006164890946820378, 0.009990712627768517, 0.008127471432089806, 0.01537340972572565, -0.03881418704986572, 0.005689898040145636, -0.006694979965686798, 0.016789205372333527, -0.02436237968504429, -0.00733943423256278, -0.004006970673799515, -0.02652614377439022, 0.017083050683140755, -0.0027380965184420347, -0.010852212086319923, -0.03523462638258934, -0.025751464068889618, -0.004023666027933359, 0.02349420264363289, -0.0049218954518437386, 0.00032452287268824875, 0.005002034828066826, -0.049045316874980927, -0.006621518637984991, -0.02528398297727108, 0.00019972243171650916, 0.018205001950263977, -0.017857732251286507, 0.011459935456514359, -0.008942222222685814, -0.008982292376458645, -0.029785146936774254, 0.0037498564925044775, -0.0001366961223538965, -0.014331597834825516, -0.006107290741056204, -0.011707032099366188, 0.01999478228390217, 0.025698037818074226, -0.027407677844166756, -0.0028516273014247417, -0.020782820880413055, 0.004027005285024643, 0.007412895560264587, 0.005038765259087086, 0.02962486818432808, 0.03039954975247383, -0.021544145420193672, -0.0058334809727966785, 0.022666096687316895, 0.018178289756178856, 0.011179447174072266, 0.03232289478182793, -0.026058664545416832, 0.00457128556445241, 0.001197082456201315, 0.01784437522292137, -0.003225611289963126, 8.504377183271572e-05, -0.009937286376953125, -0.018151575699448586, -0.031601641327142715, -0.018565630540251732, -0.010898959822952747, 0.019607441499829292, -0.005623115226626396, 0.004167249426245689, -0.010244487784802914, 0.0038199785631150007, 0.01219454687088728, -0.025123704224824905, 0.017457034438848495, -0.02245239168405533, 0.00951655488461256, -0.0036530212964862585, -0.0003929752856492996, -0.01255517452955246, -0.0013899179175496101, -0.034673649817705154, 0.002290651435032487, 0.014932643622159958, -0.01759060099720955, 0.015052852220833302, 0.003035280155017972, -0.004841756075620651, 0.008094080723822117, 0.012895766645669937, 0.025671323761343956, 0.01923345774412155, -0.003277367912232876, 0.010665219277143478, -0.017603956162929535, 0.008401281200349331, 0.020408837124705315, -0.024015109986066818, 0.0016653970815241337, 0.02027527056634426, -0.007893731817603111, -0.004744920879602432, 0.026218943297863007, 0.020635897293686867, 0.04327528178691864, -0.025738107040524483, 0.011206160299479961, -0.010424801148474216, 0.005332609638571739, -0.009409702382981777, 0.021330438554286957, -0.016321726143360138, 0.01281562726944685, 0.017523817718029022, 0.020328696817159653, 0.003986935596913099, -0.020756106823682785, 0.013369924388825893, -0.0007508895942009985, 0.011900702491402626, -0.004691494628787041, -0.01282898336648941, 0.03379211574792862, -0.01816493272781372, 0.005619775969535112, 0.01570732332766056, 0.016709066927433014, 0.010291235521435738, -0.00765999173745513, 0.018846116960048676, 0.0023424080573022366, 0.0028482882771641016, 0.02438909374177456, -0.013029332272708416, -0.006992163602262735, -0.019166674464941025, 0.006958771962672472, -0.0005643150070682168, -0.015627184882760048, -0.025043565779924393, -0.02531069703400135, -0.010224453173577785, -0.01645529270172119, 0.01071864552795887, -0.000548454059753567, 0.030907098203897476, -0.00037127084215171635, 0.01536005362868309, -0.019073178991675377, -0.029598155990242958, 0.012441643513739109, 0.007459643296897411, -0.01431824080646038, -0.0059069423004984856, -0.00758653087541461, -0.0050654783844947815, 0.015947742387652397, 0.011226195842027664, -0.00904239621013403, 0.005489549599587917, -0.0060271513648331165, 0.00864837784320116, -0.007566495798528194, 0.013416673056781292, 0.0519036240875721, -0.00814082846045494, -0.024028467014431953, 0.003903456963598728, 0.013216324150562286, 0.007192512042820454, -0.013116150163114071, -0.030212556943297386, 0.042099904268980026, -0.01905982196331024, -0.016642283648252487, -0.016041237860918045, 0.02603195048868656, -0.03309757634997368, 0.007846984080970287, -0.04525205120444298, -0.029918713495135307, -0.0052357749082148075, -0.02131708338856697, 0.005803429055958986, -0.007479678373783827, -0.02305343747138977, 0.03806621953845024, 0.006704997271299362, -0.004671459551900625, -0.022412320598959923, -0.010538332164287567, 0.03662370890378952, 0.055990733206272125, 0.013730552047491074, -0.01064518466591835, 0.022171903401613235, -0.036410003900527954, -0.01339663751423359, -0.022252041846513748, -0.02632579579949379, 0.026339152827858925, -0.0186858382076025, -0.0042974757961928844, 0.007239259779453278, 0.023801404982805252, -0.008154184557497501, -0.004841756075620651, 0.01712311990559101, 0.008254359476268291, -0.03106737695634365, -0.020168418064713478, 0.010732002556324005, -0.011620214208960533, -0.018031366169452667, 0.041672494262456894, 0.012241294607520103, 0.04768294841051102, 0.025644611567258835, 0.02999885194003582, -0.003118758788332343, 0.017350181937217712, -0.0334448479115963, -0.0018665804527699947, 5.1365397666813806e-05, -0.00977700762450695, 0.004668120760470629, -0.006528022699058056, 0.024576084688305855, 0.013530203141272068, -0.03291058540344238, -0.014799077995121479, 0.003990274854004383, -0.0042974757961928844, 0.01634844020009041, 0.007319399155676365, -0.012989262118935585, 0.02210512012243271, -0.02647271752357483, 0.010551689192652702, 0.03520791232585907, -0.017884444445371628, -0.005933655425906181, -0.00011634823022177443, 0.011105986312031746, -0.0060505252331495285, 0.02149071730673313, 0.005068817641586065, 0.008354533463716507, -0.010150991380214691, -0.002684670267626643, -0.009436415508389473, -0.03705111891031265, -0.04188619926571846, 0.002030198462307453, -0.006708336528390646, -0.01531998347491026, -0.01645529270172119, -0.016441935673356056, -0.010164348408579826, 0.00976365152746439, -0.016535431146621704, 0.0003673056198749691, 0.011373117566108704, -0.03705111891031265, -0.03528805449604988, 0.005102209281176329, 0.02580489031970501, 0.022118477150797844, 0.017376895993947983, 0.006521344650536776, -0.001966754673048854, 0.01885947398841381, 0.006421170197427273, -0.032242756336927414, 0.01485250424593687, -0.026339152827858925, -0.030960524454712868, -0.016936128959059715, -0.013316498138010502, -0.002091972390189767, -0.01343670766800642, -0.0024125301279127598, -0.0027714879252016544, -0.021717779338359833, 0.0006932893884368241, 0.01115273404866457, 0.015079565346240997, 0.042660877108573914, 0.026138804852962494, 0.011994197964668274, 0.02820907160639763, -0.045145198702812195, 0.003360846545547247, -0.002723070327192545, -0.006631535943597555, -0.010277879424393177, 0.01622823067009449, -0.000979203381575644, -0.004628051072359085, -0.02828921191394329, 0.012682061642408371, -0.025056922808289528, -0.013783978298306465, -0.01239489484578371, -0.01608130894601345, -0.01982114650309086, 0.019807791337370872, 0.005816785618662834, 0.0034493338316679, 0.020849602296948433, -0.006417830940335989, -0.0038901004008948803, 0.01256853062659502, -0.03763880953192711, 0.03384554386138916, 0.007867018692195415, -0.0015668923733755946, 0.004384293686598539, 0.010565045289695263, -0.02699362486600876, -0.028369350358843803, 0.025537759065628052, 0.008915509097278118, 0.01642857864499092, 0.011807206086814404, 0.0010009078541770577, -0.020181775093078613, -0.01897968351840973, 0.005673202220350504, 0.013904187828302383, -0.027006980031728745, 0.0020519027020782232, -0.02458944171667099, -0.0036797344218939543, 0.009349597617983818, -0.012528461404144764, -0.006771780084818602, -0.027380965650081635, -0.030159130692481995, -0.015092922374606133, 0.009957321919500828, 0.024803146719932556, -0.02195819839835167, -0.015667254105210304, -0.011927415616810322, -0.02149071730673313, 0.009436415508389473, 0.00588022917509079, -0.01550697535276413, 0.009797043167054653, 0.04883161187171936, 0.025243913754820824, 0.024108605459332466, 0.02438909374177456, 0.01801801100373268, 0.018124863505363464, -0.008167541585862637, -0.00864837784320116, 0.000769672216847539, -0.02704705111682415, 0.005816785618662834, 0.003716465085744858, 0.013169576413929462, 0.009309528395533562, -0.021343795582652092, 0.010524976067245007, 0.003696430241689086, 0.027434391900897026, -0.006594805512577295, 0.0006310978205874562, -0.027153903618454933, -0.03878747299313545, 0.005673202220350504, 0.03387225791811943, 0.001302265445701778, -0.0035428297705948353, -0.036410003900527954, 0.01063182856887579, 0.025577828288078308, -0.01536005362868309, 0.03486064448952675, 0.00847474206238985, 0.04196633771061897, -0.001950058969669044, 0.01150000561028719, -0.009489841759204865, 0.002304007997736335, -0.026459362357854843, -0.01393090095371008, -0.028075506910681725, -0.011660284362733364, 0.018325211480259895, 0.022211972624063492, 0.02796865440905094, 0.0015351705951616168, 0.006324335001409054, 0.00847474206238985, 0.00846138596534729, -0.03825321048498154, -0.0032105850987136364, 0.020342053845524788, -0.013570273295044899, 0.001529327011667192, -0.02493671327829361, -0.008441351354122162, -0.01831185445189476, -0.017163190990686417, 0.015934385359287262, 0.00048459297977387905, 0.017750879749655724, -0.019887929782271385, 0.0017597278347238898, 0.03250988572835922, -0.01582753285765648, 0.0256312545388937, 0.03630315139889717, 0.02352091670036316, 0.009563302621245384, 0.005212400574237108, -0.02609873376786709, -0.024255527183413506, 0.005856855306774378, -0.017577243968844414, 0.0005939498660154641, 0.028449490666389465, 0.0005530454218387604, -0.010798785835504532, 0.009162605740129948, -0.01982114650309086, -0.005643149837851524, -0.03830663859844208, 0.023440776392817497, 0.00475827744230628, -9.631337889004499e-05, -0.03341813385486603, -0.005810107104480267, 0.0010401427280157804, 0.02456272952258587, -0.016361795365810394, 0.0006669936119578779, 0.01697619818150997, -0.014518589712679386, 0.011333048343658447, 0.03571546450257301, -0.0036229691468179226, 0.014598729088902473, -0.006851919461041689, 0.005432784091681242, 0.019807791337370872, 0.0011152734514325857, -0.0017981280107051134, -0.009616728872060776, 0.0016795884585008025, 0.029411163181066513, -0.018151575699448586, 0.00957665964961052, 0.01915331929922104, 0.008241002447903156, 0.007032233290374279, 0.007112372666597366, -0.021450648084282875, 0.029518015682697296, -0.013877474702894688, -0.015052852220833302, 0.016361795365810394, 0.01950058899819851, 0.008414638228714466, -0.01732346974313259, -0.017684096470475197, -0.010545010678470135, -0.0067116753198206425, 0.01031127106398344, 0.01115273404866457, -0.030559828504920006, -0.01732346974313259, -0.0022221989929676056, 0.002693018177524209, -0.012808948755264282, 0.008581595495343208, -0.006952093914151192, 0.007700061425566673, -0.04185948520898819, 0.00940302386879921, 0.01825842820107937, -0.007239259779453278, -0.006194108631461859, 0.004444397985935211, -0.01706969365477562, -0.011333048343658447, 0.017750879749655724, -0.021343795582652092, 0.015867603942751884, 0.037211399525403976, 0.010070852003991604, -0.03550175949931145, 0.009089144878089428, -0.027207329869270325, -0.0008539856062270701, 0.0008740204502828419, 0.002901714527979493, -0.023454133421182632, -0.003789926180616021, 0.01883276179432869, -0.006164056248962879, -0.005135600455105305, -0.012561852112412453, 0.011707032099366188, 0.023106863722205162, 0.011980841867625713, -0.0024576084688305855, 0.006107290741056204, -0.010358018800616264, -0.017697453498840332, 0.0028666534926742315, 0.02716725878417492, -0.01485250424593687, -0.008374568074941635, 0.005245792213827372, 0.0020101636182516813, -0.018525559455156326, -0.027314182370901108, -0.03291058540344238, -0.013864117674529552, 0.012949192896485329, 0.014184675179421902, 0.013476776890456676, 0.008915509097278118, -0.013590307906270027, -0.02481650374829769, 0.021731136366724968, -0.03459351137280464, 0.011827240698039532, 0.02751453034579754, -0.0001918963243952021, 0.015293270349502563, 0.03421952947974205, -0.01932695508003235, -0.043836258351802826, -0.026232300326228142, -0.010204418562352657, -0.05257145315408707, -0.02285308763384819, 0.0074462867341935635, 0.04079096019268036, 0.00959001574665308, -0.020301982760429382, -0.034700363874435425, -0.017363538965582848, -0.04501163586974144, -0.011279622092843056, -0.033685263246297836, 0.023467490449547768, 0.022252041846513748, 0.02751453034579754, 0.010578402318060398, 0.02377469092607498, 0.002163764089345932, 0.008007262833416462, -0.05064810812473297, -0.0008973944350145757, -0.02062254212796688, -0.021570857614278793, 0.03384554386138916, -0.01779094897210598, -0.051823485642671585, -0.0076399571262300014, -0.007452965248376131, -0.012488391250371933, 0.006204125937074423, -0.003906796220690012, -0.0012621956411749125, 0.011727066710591316, 0.014745651744306087, 0.014051109552383423, 0.00853484682738781, 0.02516377530992031, 0.019139962270855904, -0.0391080304980278, 0.0012171173002570868, 0.02580489031970501, -0.00784030556678772, -0.008448028936982155, 0.010284557938575745, 0.011299656704068184, -0.019794434309005737, -0.013770622201263905, -0.014759007841348648, -0.008801978081464767, -0.005532958544790745, 0.00015161791816353798, -0.0014383353991433978, 0.023293854668736458, 0.014024396426975727, 0.039535440504550934, -0.02898375317454338, -0.016802562400698662, -0.00493859127163887, 0.004170588217675686, 0.002098650671541691, 0.018846116960048676, 0.018044723197817802, -0.02297329716384411, 0.003783247899264097, 0.003377542132511735, -0.00890883058309555, 0.015092922374606133, -0.03034612350165844, -0.011807206086814404, 0.0012897435808554292, -0.013423350639641285, -0.014331597834825516, 0.0019333632662892342, -0.005723289679735899, 0.0018315194174647331, -0.006628197152167559, -0.014598729088902473, 0.007105694152414799, -0.004584642127156258, 0.021277012303471565, -0.01975436508655548, -0.020342053845524788, -0.003963561728596687, -0.0014450136804953218, -0.03312429040670395, 0.006057203747332096, 0.018672483041882515, 0.010438158176839352, 0.012174512259662151, 0.21188859641551971, 0.004664781503379345, 0.018298499286174774, 0.0338989682495594, 0.016962841153144836, -0.000548454059753567, 0.02161092683672905, 0.019367024302482605, -0.019714294001460075, 0.006160716991871595, -0.005830142181366682, -0.0008518986287526786, 0.005953690502792597, -0.0001350265520159155, 0.020355409011244774, -0.023320568725466728, -0.03766552358865738, -0.022893158718943596, -0.003255663439631462, 0.012127763591706753, -0.006694979965686798, -0.008775264956057072, -0.016468647867441177, -0.0008180898148566484, 0.02404182218015194, 0.005666524171829224, -0.0059303161688148975, 0.011940771713852882, 0.014892573468387127, 0.024255527183413506, 0.0026830006390810013, 0.0014592050574719906, 0.01087892521172762, -0.002719731302931905, -0.001516805263236165, -0.008675090968608856, 0.00834785494953394, -0.00883536972105503, -0.012341468594968319, 0.026566214859485626, 0.009930608794093132, -0.009396345354616642, 0.010411445051431656, -0.035795602947473526, 0.0034259597305208445, -0.005563010461628437, -0.015533688478171825, 0.02890361286699772, -0.020702680572867393, 0.02096981182694435, 0.0047182077541947365, 0.0025728088803589344, 0.008735195733606815, 0.019941356033086777, 0.011813884600996971, -0.0006674110190942883, -0.003766552312299609, 0.006417830940335989, -0.00650130957365036, -0.017750879749655724, -0.0012630304554477334, 0.007386182434856892, -0.015106278471648693, -0.005015391390770674, -0.037825800478458405, 0.010658541694283485, -0.020649254322052002, 0.024055179208517075, 0.008795300498604774, 0.018004653975367546, -0.018752621486783028, 0.003370863851159811, -0.03421952947974205, -0.0028399403672665358, -0.019594086334109306, -0.012461678124964237, 0.016361795365810394, -0.0011386474361643195, 0.010805463418364525, 0.013650412671267986, -0.013136184774339199, 0.0063176569528877735, -0.03654357045888901, 0.006644892506301403, 0.01220790296792984, -0.03104066476225853, 0.026980267837643623, -0.02898375317454338, -0.007833627052605152, -0.015600471757352352, -0.0037598740309476852, 0.010090887546539307, 0.0004067492263857275, -0.02967829443514347, -0.0022055034060031176, -0.019767720252275467, 0.02183798886835575, 0.027006980031728745, -0.01537340972572565, -0.03168177977204323, -0.006174073554575443, 0.045839741826057434, 0.011085951700806618, 0.019968070089817047, -0.026886772364377975, 0.015333340503275394, -0.0012079346925020218, 0.023961683735251427, -0.002492669504135847, -0.011166091077029705, 0.007619922049343586, -0.04439723119139671, 0.003138793632388115, -0.009189318865537643, 0.016308369114995003, 0.002856635954231024, 0.020288627594709396, -0.011733745224773884, -0.0036263081710785627, -0.020261913537979126, 0.03253659978508949, -0.001180386752821505, 0.02010163478553295, 0.006768440827727318, -0.025551114231348038, -0.026766562834382057, -0.012368181720376015, 0.03571546450257301, -0.02930431067943573, -0.011012490838766098, 0.021944841369986534, -0.01905982196331024, 0.014692224562168121, -0.008775264956057072, -0.012601922266185284, 0.008795300498604774, 0.02076946385204792, 0.006294282618910074, -0.0052925399504601955, -0.01741696521639824, 0.006414491683244705, 0.008675090968608856, 0.019607441499829292, 0.013630378060042858, -0.009362954646348953, -0.0036296474281698465, 0.012955871410667896, -0.021677710115909576, -0.001731345197185874, -0.03336470574140549, 0.00370310852304101, 0.0009015683317556977, -0.0065447185188531876, -0.014598729088902473, 0.03534147888422012, -0.0012104390189051628, -0.01845877803862095, -0.028743334114551544, 0.011032525449991226, 0.01714983396232128, -0.037131261080503464, -0.002701365854591131, 0.022171903401613235, 0.014011040329933167, -0.012388217262923717, -0.01654878817498684, -0.16797220706939697, 0.0172700434923172, -0.0002491834748070687, 0.0009190988494083285, 0.01657550036907196, 0.012274686247110367, 0.003693091217428446, 0.0015284923138096929, -0.008768587373197079, -0.0028015400748699903, 0.01481243409216404, 0.0035194556694477797, -0.02079617604613304, -0.0075531392358243465, 0.023414064198732376, -0.001084386371076107, -0.018699195235967636, 0.04418352618813515, 0.04284787178039551, 0.0036430039908736944, 0.019019752740859985, -0.03665042296051979, -0.004254066850990057, -0.0037765696179121733, 0.0267264936119318, -0.004110483918339014, 0.005022069439291954, 0.021049952134490013, 0.015533688478171825, -0.02890361286699772, -0.0030937150586396456, -0.01828514225780964, 0.018378637731075287, -0.007005520164966583, 0.020635897293686867, -0.0037331609055399895, 0.006297621876001358, 0.0026830006390810013, -0.0033875596709549427, 0.016936128959059715, 0.026606284081935883, 0.015066209249198437, 0.007379503920674324, 0.015840889886021614, 0.017871087417006493, 0.008848726749420166, 0.011112664826214314, -0.011847276240587234, 0.003963561728596687, -0.006224160548299551, 0.030853671953082085, -0.03066668100655079, -0.001612805644981563, 0.002956810174509883, 0.008494777604937553, -0.005576367024332285, 0.015640541911125183, 0.01709640771150589, 0.0038533699698746204, -0.02004820853471756, 0.002390825655311346, -0.01125290896743536, 0.023801404982805252, -0.003943526651710272, -0.005636471789330244, -0.013349889777600765, 0.02384147420525551, 0.02855634316802025, 0.004457754548639059, -0.0038700655568391085, 0.0053660012781620026, 0.018298499286174774, -0.005746663548052311, 0.029037179425358772, 0.009603372775018215, 0.005102209281176329, -0.03523462638258934, 0.0031771936919540167, 0.03555518388748169, -0.0013381611788645387, 0.005168992094695568, 0.008434672839939594, -0.008922187611460686, -0.005943672731518745, -0.01393090095371008, 0.008701804094016552, -0.004748260136693716, 0.005636471789330244, -0.020342053845524788, 0.014745651744306087, 0.028075506910681725, -0.008294428698718548, -0.009583337232470512, 0.008441351354122162, 0.0232537854462862, -0.003930170089006424, 0.03600930795073509, -0.02141057886183262, 0.012808948755264282, -0.006063881795853376, 0.0029751756228506565, 0.012101050466299057, -0.03726482391357422, 0.01143990084528923, 0.03512777388095856, 0.030078992247581482, 0.009022361598908901, 0.0013264741282910109, 0.024455877020955086, -0.0122680077329278, -0.015774106606841087, 0.01393090095371008, 0.026940198615193367, 0.01345006376504898, -0.014024396426975727, 0.03598259389400482, -0.0013915874296799302, -0.027701523154973984, 0.017483748495578766, -0.034353092312812805, 0.05444137379527092, -0.02652614377439022, -0.028476202860474586, 0.023093506693840027, 0.01445180643349886, -0.010805463418364525, -0.10786764323711395, -0.025123704224824905, 0.01848549023270607, 0.022038336843252182, -0.01498606987297535, -0.00087068130960688, 0.00021433118672575802, 0.042714305222034454, -0.02106330730021, 0.018058080226182938, -0.01871255226433277, -0.024896642193198204, -0.007466321811079979, 0.002098650671541691, 0.008301107212901115, -0.0015944403130561113, -0.0026546178851276636, 0.009750294499099255, -0.0116268927231431, 0.04364926367998123, 0.00028591405134648085, -0.013403316028416157, 0.0035495080519467592, -0.026446005329489708, -0.010952386073768139, -0.014144605956971645, -0.021130090579390526, 0.021570857614278793, 0.012595243752002716, 0.009469807147979736, 0.017750879749655724, -0.013156219385564327, 0.0219314843416214, -0.027434391900897026, -0.023707907646894455, -0.00802729744464159, -0.02609873376786709, -0.02580489031970501, 0.00759320892393589, -0.02796865440905094, -0.006160716991871595, 0.00041301012970507145, -0.0137973353266716, -0.031281083822250366, -0.00581344636157155, -0.004871808458119631, -0.01779094897210598, 0.029785146936774254, 0.02163764089345932, -0.01582753285765648, -0.00498199975118041, -0.006838562898337841, -0.008848726749420166, -0.02354762889444828, 0.02044890634715557, 0.0007137416396290064, 0.030853671953082085, 0.0008544029551558197, -0.02195819839835167, 0.0050888522528111935, 0.008828691206872463, 0.0012713783653452992, 0.007306042592972517, 0.04533219337463379, -0.005372679326683283, 0.008935543708503246, 0.00453455513343215, -0.01582753285765648, -0.01002410426735878, 0.0010384732158854604, -0.018926257267594337, -0.007038911338895559, -0.023587699979543686, 0.009990712627768517, -0.006648231763392687, -0.01262863539159298, -0.022345539182424545, -0.02438909374177456, 0.03130779415369034, 0.004163910169154406, -0.029170744121074677, -0.0016904406948015094, -0.009483163245022297, -0.026659710332751274, 0.02056911587715149, 0.00959001574665308, 0.013877474702894688, -0.018605699762701988, 0.018498847261071205, -0.02444251999258995, 0.02273287996649742, 0.005816785618662834, 0.014331597834825516, -0.015386766754090786, -0.008661734871566296, 0.011306335218250751, -0.022666096687316895, 0.0035294732078909874, 0.02342742122709751, 0.008040654473006725, -0.021343795582652092, -0.008788621984422207, -0.050728246569633484, 0.027060406282544136, -0.00021224420925136656, 0.011072594672441483, 0.002828253200277686, -0.003903456963598728, -0.015346696600317955, -0.012428286485373974, 0.00239416491240263, 0.014839147217571735, -0.024188745766878128, 0.010972420684993267, -0.017336824908852577, -0.020822890102863312, -0.021277012303471565, -0.012154476717114449, 0.006788475904613733, -0.0033257855102419853, 0.012595243752002716, 0.008768587373197079, -0.01634844020009041, 0.003252324415370822, 0.0062441956251859665, 0.025644611567258835, -0.014091179706156254, -0.006367743946611881, -0.022065050899982452, 0.032670166343450546, -0.01317625492811203, -0.01871255226433277, 0.01411789283156395, -0.01044483669102192, -0.006484613753855228, 0.0068085105158388615, -0.018605699762701988, -0.03878747299313545, 0.028743334114551544, -0.005723289679735899, 0.02285308763384819, -0.011580144986510277, -0.023601055145263672, -0.01362369954586029, 0.016295013949275017, -0.0049218954518437386, -0.012448321096599102, -0.007987228222191334, -0.013917543925344944, -0.01950058899819851, 0.017804306000471115, 0.02320035919547081, 0.036463432013988495, 0.017283398658037186, -0.0031972285360097885, -0.039615582674741745, -0.009543268010020256, -0.0011419865768402815, 0.021530788391828537, 0.024175388738512993, 0.006130664609372616, -0.008281072601675987, 0.04736239090561867, 0.005639811046421528, 0.016615571454167366, -0.017350181937217712, -0.005369340535253286, -0.019634155556559563, -0.0391080304980278, -0.0032039068173617125, -0.002469295635819435, -0.03590245544910431, 0.004063735716044903, -0.01625494286417961, 0.02342742122709751, 0.027380965650081635, 0.014945999719202518, 0.018939614295959473, 0.009656799025833607, -0.00952991098165512, -0.004684816114604473, 0.03771894797682762, 0.03630315139889717, -0.012014233507215977, -0.028396064415574074, -0.0011620214208960533, 0.01625494286417961, 0.012247973121702671, -0.025444261729717255, 0.02273287996649742, 0.009850469417870045, 0.0100975651293993, -0.007472999859601259, -0.0029618190601468086, -0.012434964999556541, 0.01784437522292137, 0.015239844098687172, 0.03515448793768883, -0.018231716006994247, 0.019286883994936943, 0.018071437254548073, 0.04493149369955063, 0.005693237297236919, 0.017083050683140755, 0.0059937601909041405, -0.002172111999243498, -0.018779335543513298, 0.0006206630496308208, -0.03237632289528847, -0.023454133421182632, 0.004467771854251623, 0.021891415119171143, -0.018445421010255814, -0.010371374897658825, -0.013523525558412075, 0.010711967945098877, -0.00834785494953394, 0.012141120620071888, -0.00810075830668211, -0.01590767316520214, -0.014558658935129642, -0.007686704862862825, 0.0017597278347238898, 0.014425093308091164, 0.013383281417191029, -0.002492669504135847, 0.025751464068889618, 0.010925672948360443, -0.004170588217675686, -0.011179447174072266, 0.006691640708595514, -0.021544145420193672, 0.022292112931609154, 0.007286007981747389, 0.016188161447644234, -0.019914643839001656, -0.01274216640740633, -0.023293854668736458, -0.012014233507215977, 0.01013763528317213, -0.011146056465804577, 0.08067367225885391, 0.032269470393657684, -0.02637922205030918, -0.0019834504928439856, -0.0046948338858783245, 0.003469368675723672, 0.019687581807374954, -0.014585372060537338, 0.013142863288521767, -0.015480262227356434, 0.014505232684314251, 0.0020135026425123215, -0.03827992454171181, -0.02114344760775566, -0.006421170197427273, -0.006227499805390835, 0.016214873641729355, 0.005619775969535112, -0.02478978969156742, 0.013202968053519726, 0.022545887157320976, -0.02141057886183262, 0.023881543427705765, -0.0017229972872883081, -0.031601641327142715, -0.020702680572867393, 0.047950081527233124, 0.021049952134490013, 0.004611355252563953, -0.03512777388095856, 0.011960807256400585, -0.005987081676721573, -0.020488975569605827, -0.003953543957322836, -0.018378637731075287, -0.015974456444382668, -0.012508425861597061, -0.02163764089345932, -0.012107728980481625, 0.016121378168463707, 0.006200786679983139, 0.009883860126137733, -0.0256312545388937, -0.010651863180100918, 0.025417549535632133, -0.008281072601675987, 0.009970678016543388, -0.017657382413744926, -0.016134735196828842], "0f354ae1-bc6f-4bd1-8e34-b098e7ebf17f": [-0.011842085979878902, -0.006204832810908556, 0.0024577584117650986, -0.017069421708583832, -0.01940980926156044, 0.006250379141420126, -0.007784945424646139, -0.0339706689119339, -0.020334754139184952, -0.05908429995179176, 0.023908400908112526, 0.01725160703063011, 0.01519150473177433, -0.01388817373663187, 0.0034405114129185677, 0.006358989980071783, 0.015331647358834743, 0.004442533943802118, 0.02814071998000145, -0.01897536590695381, -0.02451101504266262, -0.004169255029410124, -0.024356858804821968, -0.0006915182457305491, -0.02367015741765499, 0.012290543876588345, 0.02671126089990139, -0.008983167819678783, -0.018919309601187706, 0.007791952230036259, 0.008590768091380596, -0.02156801149249077, -0.015948276966810226, -0.02168012596666813, -0.010791013017296791, -0.006481614895164967, 0.013278552331030369, 0.003853933187201619, 0.0007926840335130692, -0.011666906997561455, 0.02219865657389164, 0.0013278551632538438, -0.014182474464178085, 0.0025033047422766685, -0.006993137300014496, 0.01882120966911316, 0.015275590121746063, -0.018989380449056625, -0.00730145163834095, -0.023614101111888885, 0.010524741373956203, 0.035428158938884735, -0.024482987821102142, -0.010959184728562832, -0.015906233340501785, -0.00030130750383250415, -0.019942352548241615, 0.0013935472816228867, 0.013607888482511044, -0.0016449288232252002, 0.02884143590927124, 0.012942208908498287, -0.020755182951688766, 0.005444556474685669, -0.0253518745303154, -0.02979440800845623, -0.021736184135079384, -0.03551224246621132, -0.008836017921566963, -0.012395651079714298, 0.01830267906188965, 0.038539331406354904, -0.01566798985004425, 0.006005128845572472, 0.011736978776752949, -0.005174781195819378, 0.006902044173330069, -0.009936140850186348, -0.011645886115729809, -0.014518817886710167, 0.016606949269771576, 0.0011421657400205731, 0.0009450895595364273, -0.012696958146989346, 0.022871341556310654, 0.04123007878661156, -0.012598858214914799, 0.004200787283480167, -0.006054178811609745, 0.008289460092782974, -0.00016959496133495122, 0.007462616078555584, 0.002527829958125949, 0.027930505573749542, -0.0006271400488913059, 0.00738553749397397, 0.01058780588209629, 0.005998121574521065, 0.0018586469814181328, -0.021848298609256744, -0.02249295637011528, 0.009774976409971714, -0.01713949255645275, -0.009249439463019371, -0.030691323801875114, -0.0035596329253166914, 0.025141660124063492, -0.021217655390501022, 0.0057808998972177505, 0.02469320222735405, -0.010041248053312302, 0.03952033445239067, 0.008205374702811241, -0.010223434306681156, -0.01350278127938509, -0.01126749999821186, 0.017013363540172577, -0.035680416971445084, -0.010209419764578342, -0.02601054683327675, 0.023179657757282257, 0.015107418410480022, 0.0310837235301733, -0.016130462288856506, 0.012136386707425117, -0.008969154208898544, -0.0008018809021450579, -0.02292739972472191, 0.017237592488527298, -0.014729032292962074, 0.01757393591105938, 0.02648703195154667, -0.007876038551330566, 0.015513833612203598, -0.030803438276052475, 0.02260507084429264, -0.014953261241316795, 0.012458715587854385, -0.00712627312168479, -0.021329769864678383, 0.010377591475844383, 0.020460883155465126, -0.016424762085080147, -0.017896264791488647, 0.01436466071754694, 0.014967275783419609, -0.008212381042540073, 0.02580033242702484, 0.023277757689356804, -0.026725275442004204, 0.00876594614237547, -0.005234342068433762, -0.003387957811355591, 0.016494834795594215, 0.016046376898884773, 0.013264537788927555, 0.0003669995639938861, 0.03497970104217529, -0.012851115316152573, -0.010847070254385471, 0.013285559602081776, 0.003458029357716441, -0.009081268683075905, -0.004848948679864407, -0.0011526764137670398, 0.026402946561574936, -0.008485659956932068, -0.03797876089811325, -0.006054178811609745, -0.014925232157111168, 0.001821859390474856, 0.03228895366191864, -0.027692262083292007, 0.03290558233857155, 0.005311420653015375, 0.005616231821477413, 0.04403293877840042, -0.008913096971809864, -0.02612266130745411, -0.025183701887726784, 0.03492364287376404, 0.005917539354413748, 0.009249439463019371, 0.020460883155465126, -0.025435959920287132, -0.028575163334608078, 0.018400778993964195, -0.0011912157060578465, 0.00406414782628417, 0.0010239200200885534, 0.002412211848422885, 0.0017955825896933675, -0.03713790327310562, 0.0028536624740809202, -0.6175262331962585, -0.016719063743948936, 0.04257545247673988, -0.033662356436252594, 0.0013874160358682275, 0.021988442167639732, 0.005118723958730698, 0.012809072621166706, -0.008408581838011742, 0.027566133067011833, 0.0005662654293701053, 0.015976306051015854, -0.010601820424199104, -0.011197428219020367, -0.0005526890745386481, -0.012661922723054886, 0.031279925256967545, -0.006681318860501051, -0.0006845110910944641, 0.006817958317697048, -0.016004333272576332, 0.03192458301782608, -0.010896120220422745, 0.0038118904922157526, 0.023978471755981445, -0.003400220302864909, 0.014644946902990341, 0.0005785279208794236, -0.027538105845451355, 0.01882120966911316, -0.035792529582977295, 0.016116447746753693, 0.024749258533120155, 0.002739796182140708, 0.05224532261490822, -0.018793180584907532, -0.0256041307002306, 0.01273199450224638, 0.029598208144307137, 0.035680416971445084, -0.019143538549542427, -0.02161005511879921, 0.014161452651023865, 0.024300800636410713, 0.012760022655129433, -0.009333525784313679, -0.006492125801742077, 0.002303601009771228, -0.016606949269771576, -0.013895181007683277, 0.006141768302768469, -0.03301769867539406, 0.004288376774638891, -0.011484721675515175, 0.016172505915164948, 0.0006656793993897736, 0.030943579971790314, 0.0018884273013100028, 0.007658816408365965, 0.010854077525436878, 0.01610243320465088, 0.004190276376903057, -0.00899017509073019, -0.04958260431885719, -0.04263151064515114, 0.00972592644393444, -0.01893332414329052, -0.01566798985004425, 0.005255363415926695, 0.00564075680449605, 0.017475835978984833, 0.012949216179549694, -0.0008583760354667902, 0.004396987613290548, -0.011800043284893036, 0.020152566954493523, 0.03960442170500755, -0.006330961361527443, -0.006387018598616123, 0.020783212035894394, -0.005244852975010872, -0.025912446901202202, -0.01502333302050829, -0.02392241545021534, 0.02784642018377781, 0.01709744893014431, -0.0329616405069828, -0.010405619628727436, 0.004961063154041767, -0.01554186176508665, 0.012774037197232246, -0.0023719207383692265, -0.007066712249070406, -0.04277165234088898, 0.024973487481474876, 0.03419489786028862, 0.006607743911445141, -0.003249566536396742, -0.004985588137060404, -0.01988629624247551, -0.027173733338713646, -0.03290558233857155, 0.011470707133412361, 0.012563822790980339, 0.01290016621351242, 0.01502333302050829, -0.0082404101267457, -0.02367015741765499, 0.004933034535497427, -0.0163266621530056, -0.01350278127938509, 0.0016309145139530301, -0.016719063743948936, -0.01695730723440647, -0.008604781702160835, -0.029766378924250603, 0.01618652045726776, -0.019900310784578323, -0.016130462288856506, -0.00641154358163476, -0.010195405222475529, 0.01966206729412079, -0.002724030055105686, 0.0012761774705722928, 0.0014461008831858635, 0.025772303342819214, 0.013783066533505917, -0.006260890047997236, 0.016999348998069763, -0.008611788973212242, 0.01374102383852005, -0.009697897359728813, 0.016382720321416855, -0.005055659916251898, 0.020376795902848244, -0.019423823803663254, 0.010594813153147697, -3.604851008276455e-05, 0.020418839529156685, -0.027019575238227844, 0.00048042781418189406, 0.004095680080354214, 0.010090298019349575, -0.022689156234264374, 0.005900021642446518, -0.008618796244263649, -0.03262529894709587, 0.02002643793821335, -0.004312901757657528, -0.02800057642161846, -0.018036408349871635, -0.020012425258755684, 0.0034913131967186928, 0.03170035406947136, -0.015878206118941307, -0.0032653326634317636, -0.001332234707660973, -0.04002485051751137, 0.008597774431109428, -0.022815285250544548, -0.016522863879799843, 0.02142786979675293, 0.003987069241702557, 0.01669103465974331, -0.02072715386748314, -0.02138582617044449, -0.027089647948741913, -0.003133948426693678, 0.0014189481735229492, -0.010426641441881657, -0.011512749828398228, -0.017994364723563194, 0.0030708841513842344, 0.016158491373062134, -0.009284475818276405, 0.023067543283104897, -0.019984396174550056, -0.00013105562538839877, 0.002294842153787613, -0.005377988796681166, 0.020040452480316162, 0.019858267158269882, -0.016004333272576332, -0.005903525277972221, 0.021231668069958687, 0.014574875123798847, 0.012528786435723305, 0.01838676631450653, -0.03778256103396416, 0.0009485931368544698, 0.000881587213370949, 0.015864191576838493, -0.015009318478405476, 0.010461676865816116, -0.0209934264421463, -0.0074486020021140575, -0.03974456340074539, -0.02634689025580883, -0.017629992216825485, 0.02242288552224636, 0.004743841476738453, -0.0025050565600395203, -0.01900339499115944, -0.012038285844027996, 0.013425702229142189, -0.040865708142519, 0.003116430714726448, -0.023684171959757805, 0.010335548780858517, -0.0067478870041668415, 0.004968070425093174, -0.014231524430215359, -0.008506681770086288, -0.03097160905599594, 0.0010720941936597228, 0.019577981904149055, -0.02675330452620983, 0.02476327307522297, -0.01154077798128128, -0.016536876559257507, 0.011113341897726059, -0.009305496700108051, 0.025435959920287132, 0.021399840712547302, 0.0019970382563769817, 0.014841146767139435, -0.00636599725112319, -0.0011185165494680405, 0.014757061377167702, -0.02564617432653904, -0.001362890936434269, 0.022997470572590828, 0.0070632086135447025, -0.003745322348549962, 0.022170627489686012, 0.030242865905165672, 0.0270756334066391, -0.012269522063434124, 0.02884143590927124, -0.004596691578626633, -0.002156450878828764, 0.0025961496867239475, 0.020558983087539673, -0.018540922552347183, 0.013958245515823364, 0.01841479353606701, 0.03097160905599594, -0.0007112258463166654, -0.02029271051287651, 0.016831178218126297, -0.0024962977040559053, 0.0032040199730545282, -0.0032460629008710384, -0.011106334626674652, 0.03612887114286423, -0.004050133749842644, -0.007890052162110806, 0.004554648417979479, 0.03727804496884346, 0.01732167787849903, -0.002816874999552965, 0.01159683521836996, 0.003503575688228011, -0.004204290919005871, 0.03038300946354866, 0.0025996530894190073, -0.010517734102904797, -0.022184642031788826, -0.010840062983334064, 0.0017771887360140681, -0.012521780095994473, -0.02898157760500908, -0.015499819070100784, -0.01502333302050829, 3.9086768083507195e-05, 0.006649786606431007, 0.007525680586695671, 0.04394885525107384, 0.003309127176180482, 0.009957162663340569, -0.017377736046910286, -0.027804376557469368, 0.013698981143534184, 0.003570143599063158, -0.01684519276022911, -0.007392544765025377, -0.0016440529143437743, -0.010125333443284035, 0.014329624362289906, 0.0003954661078751087, -0.01124647818505764, -0.005052156280726194, -0.00959279015660286, 0.01124647818505764, -0.012837101705372334, 0.04355645179748535, 0.034138843417167664, -0.013769052922725677, -0.012269522063434124, -0.0012726738350465894, 0.008681860752403736, 0.016466805711388588, -0.010812034830451012, -0.00561272818595171, 0.04700397327542305, -0.0055461605079472065, -0.019914325326681137, 0.0007839250611141324, 0.01702737808227539, -0.010868092067539692, 0.02079722471535206, -0.0128791444003582, -0.026080617681145668, -0.005108213517814875, -0.020965397357940674, 0.008429603651165962, -0.010826049372553825, -0.014799104072153568, 0.024679187685251236, -0.016046376898884773, -0.006180307362228632, -0.0191155094653368, -0.011800043284893036, 0.02550603076815605, 0.04641536995768547, 0.012647908180952072, -0.011519757099449635, 0.008058223873376846, -0.024791302159428596, 0.00032736535649746656, -0.01531763281673193, -0.025015531107783318, 0.02587040327489376, -0.016831178218126297, -0.011926171369850636, 0.01585017703473568, 0.019493894651532173, 0.017223577946424484, 0.004551144782453775, 0.013110380619764328, 0.01053174864500761, -0.022983456030488014, -0.009312503971159458, 0.007441594731062651, -0.012584843672811985, -0.0020933866035193205, 0.023838330060243607, 0.02957017906010151, 0.027790362015366554, 0.02205851301550865, 0.03960442170500755, -0.0012910676887258887, 0.016172505915164948, -0.03657732903957367, -0.018667051568627357, 0.005017120391130447, -0.009116304107010365, 0.021161597222089767, -0.0039240047335624695, 0.017111463472247124, 0.015387704595923424, -0.02664119005203247, -0.0023999493569135666, 0.003214530646800995, -0.0032933612819761038, 0.01513544749468565, 0.0030568698421120644, -0.02079722471535206, 0.006499133072793484, -0.019802210852503777, 0.015093403868377209, 0.034110814332962036, 0.0020793722942471504, 0.007883045822381973, 0.013131401501595974, -0.011673914268612862, -0.020867297425866127, 0.02652907557785511, -0.004295384045690298, 0.0033634325955063105, -0.017293650656938553, -0.0018919309368357062, -0.008261431939899921, -0.028196778148412704, -0.04557451233267784, -0.003745322348549962, -0.011603842489421368, -0.008611788973212242, -0.022759227082133293, -0.030719352886080742, -0.014154446311295033, 0.0024454959202557802, -0.02245091274380684, 0.00656920438632369, 0.019858267158269882, -0.018961351364850998, -0.04285573959350586, 0.012178429402410984, 0.04417308419942856, 0.018190564587712288, 0.008296467363834381, 0.011989235877990723, 0.0027713284362107515, 0.006239868234843016, -0.001821859390474856, -0.04450942575931549, 0.012332586571574211, -0.0036402151454240084, -0.0130823515355587, -0.02483334392309189, -0.017629992216825485, -0.01562594808638096, -0.017111463472247124, 0.016536876559257507, 0.007932095788419247, -0.019606009125709534, -0.026683231815695763, 0.01578010432422161, 0.01465896051377058, 0.04535028338432312, 0.016719063743948936, 0.011057284660637379, 0.03492364287376404, -0.04963866248726845, 0.01139362808316946, -0.004621216561645269, -0.0006507891812361777, -0.027720291167497635, 0.00412020506337285, -0.011680921539664268, 0.0025541067589074373, -0.0035088311415165663, 0.013187458738684654, -0.0240345299243927, -0.013166437856853008, -0.006831972859799862, -0.011295528151094913, -0.01589221879839897, 0.019465867429971695, 0.0049996026791632175, 0.00033831404289230704, 0.03231698274612427, -0.008296467363834381, -0.01578010432422161, 0.011512749828398228, -0.042098965495824814, 0.038287077099084854, -0.0007712246151641011, 0.0065867225639522076, 0.022591056302189827, 0.020012425258755684, -0.023403886705636978, -0.032597269862890244, 0.03142006695270538, -0.003444015048444271, 0.0040396228432655334, -0.013923210091888905, 0.0024349852465093136, -0.019213609397411346, -0.008569746278226376, -0.012353608384728432, 0.012486743740737438, -0.014729032292962074, 0.02047489583492279, -0.014042331837117672, -0.005689806770533323, 0.013937224633991718, -0.007136783562600613, -0.004326915834099054, -0.02979440800845623, -0.023277757689356804, -0.008941125124692917, 0.016592934727668762, 0.0212456826120615, -0.017601964995265007, -0.017517877742648125, -0.0028361445292830467, -0.037698473781347275, 0.01519150473177433, -0.02637491747736931, -0.013306580483913422, -0.0028378963470458984, 0.05160066485404968, 0.021918369457125664, 0.04215502366423607, 0.01761597953736782, 0.015724048018455505, 0.020502924919128418, -0.007336487527936697, 0.004463555291295052, -0.0027660729829221964, -0.018947336822748184, 0.00475084874778986, 0.01302629429847002, 0.002790597965940833, 0.008513689041137695, -0.0003008695784956217, 0.0128020653501153, -0.00320577179081738, 0.02172216959297657, -0.005188795737922192, -0.005307917017489672, -0.0310837235301733, -0.045266199856996536, -0.010580798611044884, 0.04509802535176277, 0.0023894386831671, -0.005122227594256401, -0.027341904118657112, 0.005801921244710684, 0.0331578403711319, -0.021848298609256744, 0.037193961441516876, 0.0071087549440562725, 0.03991273418068886, 0.011975222267210484, -0.009522718377411366, -0.00953673291951418, 0.006502636708319187, -0.037474244832992554, 0.007518673315644264, -0.023179657757282257, -0.01471501775085926, 0.022408870980143547, 0.002897457219660282, 0.015878206118941307, 0.0008426099666394293, 0.007518673315644264, 0.002911471528932452, 0.009810011833906174, -0.029121721163392067, 0.006236364599317312, 0.00961381196975708, -0.01650884933769703, -0.005602217745035887, -0.028098678216338158, -0.0026189228519797325, 0.0015792367048561573, -0.004484577104449272, 0.025618145242333412, 0.007728888187557459, 0.019199594855308533, -0.0305231511592865, -0.0045336270704865456, 0.028042620047926903, -0.013516794890165329, 0.029822437092661858, 0.0278884619474411, 0.022226683795452118, -0.0025541067589074373, 0.01687321998178959, -0.03144809603691101, -0.016564905643463135, 0.0006407164037227631, -0.01676110550761223, -0.010251462459564209, 0.03534407168626785, -0.012395651079714298, -0.022661127150058746, -8.854740372044034e-06, -0.016228562220931053, -0.0010896120220422745, -0.026430975645780563, 0.016677020117640495, 0.009305496700108051, -0.005829949863255024, -0.029402008280158043, -0.02777634747326374, -0.016859207302331924, 0.02425875887274742, -0.01940980926156044, -0.004432023502886295, 0.007890052162110806, -0.00786903128027916, 0.004172758664935827, 0.03727804496884346, -0.0014601151924580336, 0.025926459580659866, 0.001348000718280673, 0.011772014200687408, 0.012717979960143566, 0.010959184728562832, -0.020979411900043488, -0.00724539440125227, 0.0020443364046514034, 0.032569240778684616, -0.042491365224123, 0.004446037579327822, 0.014336631633341312, 0.01999841071665287, -0.005006609484553337, 0.008303474634885788, -0.028168749064207077, 0.025225745514035225, -0.019872281700372696, -0.011919165030121803, 0.013117387890815735, 0.030102722346782684, -0.0002404328843113035, -0.019690096378326416, -0.023235714063048363, -0.003286354010924697, -0.003605179488658905, -0.00878696795552969, 0.019984396174550056, -0.020376795902848244, -0.011288520880043507, -0.004127212334424257, 0.01746182143688202, -0.023768257349729538, 0.015527847222983837, 0.0063624936155974865, 0.014098389074206352, -0.04868568852543831, 0.0033336523920297623, -0.0037488259840756655, -0.012213464826345444, -0.0032653326634317636, 0.001122895977459848, -0.009172361344099045, -0.002198493806645274, 0.024931445717811584, -0.013614894822239876, 0.020012425258755684, 0.026879433542490005, -0.005370981525629759, -0.04033316299319267, 0.011036263778805733, -0.0028729320038110018, -0.0014259553281590343, 0.01368496660143137, 0.0020005416590720415, -0.04201488196849823, -0.007000144105404615, 0.019970381632447243, 0.003888969076797366, -0.004558152053505182, -0.010741963051259518, 0.012101350352168083, 0.030691323801875114, -0.005153759848326445, -0.00023561547277495265, 0.0029044642578810453, 0.014049339108169079, -0.001748284325003624, 0.011519757099449635, 0.026949504390358925, -0.020601024851202965, 0.0011649389052763581, 0.016634978353977203, 0.013523802161216736, -0.009697897359728813, -0.03492364287376404, -0.02752409130334854, -0.011631871573626995, 0.000999394920654595, 0.01907346583902836, 0.01548580452799797, 0.002322870772331953, -0.007658816408365965, -0.016677020117640495, 0.026360902935266495, -0.034615326672792435, -0.0011815809411928058, 0.012598858214914799, -0.002914974931627512, 0.00715430174022913, 0.03343812748789787, -0.026949504390358925, -0.027804376557469368, -0.025127645581960678, -0.035091813653707504, -0.04181867837905884, -0.014729032292962074, -0.0012131130788475275, 0.03240106999874115, 0.0033266451209783554, -0.019606009125709534, -0.023894386366009712, -0.010559776797890663, -0.032457124441862106, -0.023459943011403084, -0.029598208144307137, 0.013712995685636997, 0.03895976394414902, 0.019087480381131172, -0.008303474634885788, 0.029121721163392067, -0.00027853428036905825, 0.0025225745048373938, -0.029121721163392067, -0.0009985191281884909, -0.013264537788927555, -0.02065708301961422, 0.03800678998231888, -0.022703170776367188, -0.03385855630040169, -0.0020811238791793585, -0.012640900909900665, -0.02058701030910015, 0.01443473156541586, -0.0022300260607153177, 0.02396445721387863, 0.017447806894779205, -0.001472377683967352, 0.013117387890815735, 0.020208625122904778, 0.013103373348712921, 0.0163266621530056, -0.040557391941547394, 0.009767969138920307, 0.03170035406947136, 0.0010799772571772337, -0.008597774431109428, 0.01897536590695381, 0.01502333302050829, -0.019353752955794334, -0.005700317677110434, 0.01116939913481474, -0.006225854158401489, 0.003175991354510188, -0.0014093132922425866, 0.018078450113534927, 0.027131689712405205, 0.015149461105465889, 0.04092176631093025, -0.01618652045726776, -0.008814996108412743, -0.007378530688583851, 0.007462616078555584, 0.011253485456109047, 0.012809072621166706, 0.026080617681145668, 0.007567723747342825, 0.001455735764466226, -0.00047955193440429866, 0.02172216959297657, 0.009235425852239132, -0.018793180584907532, -0.012150400318205357, 0.0080372029915452, -0.0011745737865567207, -0.0040816655382514, 0.0034054755233228207, -0.022464927285909653, -0.005321931559592485, -0.003090153681114316, -0.006611247546970844, 0.009564762003719807, 0.0015731054591014981, 0.013614894822239876, -0.008492667227983475, -0.026739289984107018, 0.012928194366395473, -0.0021546990610659122, -0.029149750247597694, 0.001828866545110941, 0.011008234694600105, 0.02781839109957218, 0.008520696312189102, 0.2049451619386673, -0.00036064931191504, 0.01834472268819809, 0.033073753118515015, 0.011407642625272274, -0.019718123599886894, 0.01388817373663187, 0.013748031109571457, -0.02909369207918644, 0.006036661099642515, -0.01231156475841999, 0.012409665621817112, -0.015121432952582836, -0.007049194537103176, 0.01121144276112318, -0.016999348998069763, -0.02580033242702484, -0.015289604663848877, -0.02521173097193241, -0.001522303675301373, 0.002886946313083172, -0.014644946902990341, -0.026080617681145668, -0.007406559307128191, 0.021890340372920036, 0.004439030308276415, -0.00032802228815853596, 0.007094740867614746, 0.00549360690638423, 0.03097160905599594, -0.00410969415679574, 0.004375966265797615, 0.024020515382289886, -0.0016677019884809852, -0.03228895366191864, -0.01276702992618084, 0.012024272233247757, -0.010875099338591099, 0.0032267931383103132, 0.03481153026223183, -0.007539695128798485, -0.013544823974370956, -0.0021459402050822973, -0.01933973841369152, 0.015345661900937557, -0.007588745094835758, -0.022478941828012466, 0.013019287027418613, -0.019690096378326416, 0.013292565941810608, -0.022282741963863373, 0.0012560319155454636, 0.006691829767078161, 0.01963403820991516, 0.0028904499486088753, 0.005097702611237764, -0.012682944536209106, 0.01589221879839897, -0.00236141006462276, 0.000822902366053313, -0.0018253629095852375, 0.010118327103555202, -0.01940980926156044, 0.017742106691002846, -0.016817163676023483, -0.00473333103582263, -0.01636870577931404, 0.01621454767882824, 0.018330708146095276, 0.00833150278776884, -0.009550747461616993, 0.010819042101502419, -0.025267787277698517, 0.014616917818784714, -0.02117561176419258, -0.0051712775602936745, 0.0068284692242741585, 0.011856100521981716, 0.02458108775317669, 0.011715956963598728, -0.008135302923619747, 0.003526348853483796, -0.034615326672792435, -0.013383659534156322, 0.001311213243752718, -0.03161626681685448, 0.040417250245809555, -0.016943292692303658, -0.01056678406894207, -0.03324192762374878, 0.0037978761829435825, 0.006099725142121315, -0.0028746838215738535, -0.018596980720758438, 0.002513815648853779, -0.013285559602081776, 0.022520985454320908, 0.018807195127010345, -0.0080372029915452, -0.02898157760500908, -0.0195219237357378, 0.04139824956655502, -0.002133677713572979, 0.01676110550761223, -0.013867152854800224, 0.014897204004228115, 0.007932095788419247, 0.008023188449442387, -0.005006609484553337, -0.014560860581696033, 0.0034913131967186928, -0.04613508656620979, 0.009221411310136318, 0.0024454959202557802, 0.0018253629095852375, 0.005423535127192736, 0.0029692803509533405, -0.02886946313083172, 0.013159430585801601, -0.011218449100852013, 0.01212937943637371, -0.01353781670331955, 0.014042331837117672, 0.01966206729412079, -0.023067543283104897, -0.02872932143509388, -0.009249439463019371, 0.03178443759679794, -0.022955428808927536, -0.020558983087539673, 0.011659899726510048, -0.001565222511999309, 0.02117561176419258, -0.011057284660637379, -0.005490103270858526, 0.009690890088677406, 0.0212456826120615, 0.0004248085606377572, -0.010966191999614239, -0.016200534999370575, -0.00812829565256834, -0.00554966414347291, 0.017826193943619728, 0.0010458173928782344, 0.004680776968598366, -0.022815285250544548, -0.0035876615438610315, -0.009831033647060394, 0.008009173907339573, -0.038034819066524506, -0.0029692803509533405, 0.0030200823675841093, 0.00869587529450655, 0.0025979015044867992, 0.03371841460466385, -0.006464097183197737, -0.023642128333449364, -0.02469320222735405, 0.023950444534420967, 0.026991548016667366, -0.03001863695681095, 0.0019935346208512783, 0.031195838004350662, -0.0012323827249929309, -0.02392241545021534, -0.01929769478738308, -0.1794951856136322, 0.005034638103097677, 0.00489799864590168, -0.0144767751917243, 0.03085949458181858, 0.008688868023455143, 0.005034638103097677, -0.0027783354744315147, -0.005360471084713936, 0.005689806770533323, 0.011519757099449635, -0.00199878984130919, -0.005003106314688921, 0.0014329624827951193, -0.008548724465072155, -0.005553167313337326, -0.026501046493649483, 0.029345950111746788, 0.04403293877840042, 0.01036357693374157, 0.012038285844027996, -0.03621295839548111, -0.0022335294634103775, -0.003109423443675041, 0.025856388732790947, -0.0031847504433244467, 0.007784945424646139, 0.0163266621530056, 0.008408581838011742, -0.043976884335279465, 0.007196344435214996, -0.009396590292453766, 0.0342789851129055, 0.0017132485518231988, 0.025127645581960678, 0.0011027504224330187, -0.0040746587328612804, -0.001253404188901186, -0.007602759171277285, 0.013411687687039375, 0.020418839529156685, 0.004463555291295052, 0.010146355256438255, 0.008892075158655643, 0.0007541446830146015, 0.012696958146989346, 0.006103228777647018, -0.008065231144428253, 0.0024017011746764183, -0.012003250420093536, 0.022352812811732292, -0.025884417816996574, 0.005402513779699802, 0.01636870577931404, 0.016410749405622482, -0.0038399191107600927, -0.0019147041020914912, 0.029738351702690125, -0.0009214404271915555, -0.01376204565167427, 0.0064080399461090565, 0.0005921042757108808, 0.00878696795552969, 0.0033108789939433336, -0.0005456819199025631, -0.022282741963863373, 0.02689344808459282, -0.005455067381262779, -0.0037978761829435825, -0.008289460092782974, -0.013124394230544567, 0.01291417982429266, -0.016775120049715042, 0.02795853465795517, 0.0007339991279877722, 0.010461676865816116, -0.04487379640340805, 0.008261431939899921, 0.015527847222983837, 0.009880083613097668, -0.0077639236114919186, 0.005069673992693424, -0.02348797209560871, -0.0018779166275635362, 0.0003753205528482795, 0.01190515048801899, 0.006068193353712559, 0.0035438667982816696, -0.01868106611073017, 0.015513833612203598, 0.013229502364993095, 0.001529310829937458, 0.010601820424199104, 0.00798114575445652, 0.011898143216967583, 0.0029184785671532154, 0.03357826918363571, 0.006061186082661152, 0.01449078880250454, -0.007343494798988104, 0.005675792694091797, 0.020572995766997337, -0.020741168409585953, 0.0030043162405490875, 0.01698533445596695, 0.03618492931127548, 0.009950155392289162, 0.0008977912948466837, 0.03632507473230362, -0.019325723871588707, -0.012402658350765705, 0.0003236428019590676, 0.028813406825065613, 0.011232463642954826, -0.01032854150980711, 0.03492364287376404, -0.010861084796488285, -0.031195838004350662, 0.022661127150058746, -0.02090933918952942, 0.03890370577573776, -0.034391097724437714, -0.026444990187883377, 0.007819981314241886, -0.0038259048014879227, -0.006635772529989481, -0.11407642811536789, -0.022170627489686012, 0.008997182361781597, 0.014294588938355446, -0.013201473280787468, 0.009214404039084911, 0.0011342826765030622, 0.03789467364549637, -0.022436898201704025, 0.0240345299243927, -0.03321389853954315, -0.0130823515355587, 0.0054760887287557125, -0.012059307657182217, 0.010300512425601482, -0.0081633310765028, -0.0076448023319244385, -0.0009345788275822997, -0.02369818650186062, 0.04022105038166046, 0.0068740155547857285, -0.03136400878429413, 0.01793830841779709, -0.009424618445336819, -0.005693310406059027, -0.014757061377167702, -0.022591056302189827, 0.002897457219660282, 0.006369500886648893, 0.004652748350054026, 0.03809087350964546, -0.012234486639499664, 0.00645708991214633, -0.022002454847097397, -0.025407930836081505, -0.005055659916251898, -0.010762984864413738, -0.03206472471356392, 0.004905005916953087, -0.0270756334066391, -0.005528642330318689, 0.007511666510254145, -0.01709744893014431, -0.016172505915164948, 0.010833055712282658, 0.0072594089433550835, -0.0238803718239069, 0.03254121169447899, 0.003090153681114316, -0.01886325143277645, -0.023249728605151176, -0.006113739684224129, -0.016340676695108414, -0.014028317295014858, 0.040893737226724625, 0.013881167396903038, 0.024665173143148422, 0.01643877662718296, -0.024062559008598328, -0.008450624532997608, 0.003671747399494052, -0.007378530688583851, -0.012038285844027996, 0.028813406825065613, -0.006888030096888542, 0.014203496277332306, -0.001652811886742711, -0.019171565771102905, -0.013397673144936562, 0.0022019974421709776, -0.017377736046910286, 0.022759227082133293, -0.016719063743948936, 0.014301596209406853, -0.01947988197207451, -0.005717835389077663, -0.013712995685636997, -0.019353752955794334, 0.03671747446060181, 0.006919561885297298, -0.014378674328327179, -0.009431625716388226, 0.006341472268104553, -0.0321488119661808, 0.028154734522104263, -0.0014758813194930553, 0.00642906129360199, -0.00638351496309042, 0.0257582888007164, -0.028098678216338158, 0.026613160967826843, 0.01374102383852005, 0.016284620389342308, -0.0018393772188574076, -0.006625261623412371, 0.009382575750350952, -0.03142006695270538, -0.000466413504909724, 0.03845524787902832, 0.005532145965844393, -0.017770135775208473, -0.01350278127938509, -0.041370220482349396, 0.02113356813788414, 0.0014023061376065016, 0.0004620340478140861, 0.0034142346121370792, -0.011057284660637379, -0.010111319832503796, -0.0018516398267820477, 9.142143244389445e-05, 0.014462760649621487, -0.014911218546330929, 0.016088420525193214, -0.013769052922725677, -0.023123599588871002, -0.01963403820991516, -0.039464276283979416, 0.014329624362289906, -0.00873091071844101, 0.018428808078169823, -0.0018323700642213225, -0.0009091778774745762, -0.008997182361781597, 0.0076448023319244385, 0.03441912680864334, -0.011400635354220867, 0.02061503939330578, -0.018807195127010345, 0.0419868528842926, -0.016901249065995216, -0.014448746107518673, 0.011512749828398228, -0.00023298778978642076, -0.006884526461362839, 0.02410460077226162, -0.0302708949893713, -0.03391461446881294, 0.036016758531332016, 0.001355007872916758, 0.03357826918363571, 0.01036357693374157, -0.030186807736754417, -0.01809246465563774, 0.01727963611483574, -0.00047385861398652196, -0.008892075158655643, -0.004621216561645269, -0.013698981143534184, -0.014560860581696033, 0.02308155596256256, 0.01276702992618084, 0.029654264450073242, 0.009081268683075905, -0.01208733581006527, -0.054431553930044174, -0.010594813153147697, 0.00031225619022734463, 0.016088420525193214, 0.023614101111888885, -0.003494816832244396, -0.004617712926119566, 0.0498909167945385, 0.009620819240808487, 0.03181246668100357, -0.017784150317311287, 0.003104167990386486, -0.006225854158401489, -0.0331578403711319, -0.0020163077861070633, 0.009389583021402359, -0.03167232498526573, 0.003577150870114565, -0.020558983087539673, 0.015682004392147064, 0.020376795902848244, 0.00645008310675621, 0.0033932130318135023, -0.004151737317442894, -0.0020022934768348932, -0.004225312266498804, 0.03856736049056053, 0.03671747446060181, -0.022955428808927536, -0.02755212038755417, 0.011856100521981716, 0.03671747446060181, 0.009263454005122185, -0.018372751772403717, 0.019549952819943428, 0.0020005416590720415, 0.0024227225221693516, -0.004876977298408747, -0.009803004562854767, -0.022296756505966187, 0.01886325143277645, 0.016999348998069763, 0.024188686162233353, -0.02319367043673992, 0.011253485456109047, 0.02741197682917118, 0.0369136743247509, 0.0007707866607233882, 0.01695730723440647, 0.003461532760411501, -0.015555876307189465, -0.03206472471356392, 0.019830238074064255, -0.05031134560704231, -0.01657892018556595, 0.004516108892858028, 0.019017409533262253, -0.0012061059242114425, -0.014105395413935184, -0.01027248427271843, 0.00950169749557972, -0.02183428406715393, 0.019507909193634987, -0.02146991156041622, -0.0029395001474767923, -0.02113356813788414, 0.009221411310136318, 0.0030481109861284494, 0.004708805587142706, 0.01999841071665287, -0.0034860577434301376, 0.017041392624378204, 0.00941060483455658, -0.00416575139388442, -0.003119934117421508, 0.01520551834255457, -0.022913385182619095, 0.024370873346924782, 0.012010257691144943, 0.024048544466495514, -0.026725275442004204, -0.022184642031788826, -0.026921475306153297, -0.01205230038613081, 0.02451101504266262, -0.009326518513262272, 0.07371523231267929, 0.012907172553241253, -0.024567073211073875, -0.011001227423548698, -0.01502333302050829, -0.00179295486304909, 0.010132340714335442, -0.00490850955247879, 0.0034720434341579676, -0.01502333302050829, 0.01666300557553768, 0.006036661099642515, -0.00413772277534008, -0.01519150473177433, -0.014588889665901661, -0.023866357281804085, 0.014813118614256382, -0.004708805587142706, -0.0097609618678689, -0.0014320865739136934, 0.021119553595781326, -0.001661570742726326, 0.030551180243492126, -0.01282308716326952, -0.03161626681685448, -0.01290016621351242, 0.03380249813199043, 0.01524756196886301, -0.00018558002193458378, -0.015163475647568703, 0.02943003550171852, -0.011842085979878902, -0.02446897327899933, -0.010048255324363708, -0.006898540537804365, -0.004673770163208246, 0.006029653828591108, -0.02872932143509388, -0.013383659534156322, 0.008338510058820248, -0.006446579471230507, 0.020572995766997337, -0.020376795902848244, -0.011842085979878902, 0.005805424880236387, -0.0037418189458549023, 0.01400028821080923, -0.031195838004350662, -0.01915755122900009], "f6d4019c-8797-4edf-ad20-7b902a227da0": [-0.005358417518436909, -0.021281365305185318, 0.00520611135289073, -0.03486432880163193, -0.00469034630805254, 0.018539847806096077, -0.016753708943724632, -0.02439672313630581, -0.00826608669012785, -0.05638107657432556, 0.024009034037590027, 0.01173451915383339, 0.024493645876646042, -0.012461436912417412, 0.007726090494543314, 0.0070614805445075035, 0.025213640183210373, 0.0016312366351485252, 0.013229891657829285, -0.018152158707380295, -0.023759806528687477, -0.008058395236730576, -0.02288750559091568, -0.010246070101857185, -0.02515825629234314, -0.008196855895221233, 0.04522116854786873, -0.005926105193793774, -0.009096848778426647, 0.014088346622884274, 0.020547524094581604, -0.015618333593010902, -0.015106030739843845, -0.023275194689631462, -0.017473703250288963, -0.004468809813261032, 0.012966817244887352, 0.002282866043969989, 0.011353753507137299, -0.013139892369508743, 0.0319012776017189, 0.007414554711431265, -0.0107306819409132, 0.010072994977235794, 0.01079298835247755, 0.03566740080714226, 0.012419898062944412, -0.007130710873752832, -0.01152682863175869, -0.012925279326736927, -0.016310635954141617, 0.026487475261092186, -0.002944014500826597, 0.017182936891913414, -0.03832583874464035, 0.006289564073085785, -0.013915270566940308, -0.00291805318556726, 0.004628038965165615, 0.003122282214462757, 0.015133722685277462, 0.008044549264013767, -0.02423057146370411, 0.00938069261610508, -0.01310527790337801, -0.023441346362233162, -0.0218352060765028, -0.021696746349334717, -0.013666042126715183, -0.01762600988149643, 0.011886825785040855, 0.048239607363939285, -0.014289113692939281, -0.00013921760546509176, 0.004662654362618923, -0.01708601415157318, 0.012468359433114529, 0.013119123876094818, 0.006736098788678646, -0.0069022513926029205, 0.014759879559278488, -0.002914591459557414, -0.0023226733319461346, -0.009214540012180805, 0.020672138780355453, 0.05499647185206413, -0.0028280538972467184, -0.0016918131150305271, -0.015258336439728737, 0.01817985065281391, 0.021350594237446785, 0.013146815821528435, 0.025227485224604607, 0.030239753425121307, -0.0004936978803016245, 0.012648358009755611, 0.032288968563079834, -0.0018778692465275526, -0.010806834325194359, -0.018526002764701843, -0.04170427471399307, 0.001780946971848607, -0.005524570122361183, -0.009948380291461945, -0.03403356671333313, -0.006092257797718048, 0.022790582850575447, 0.0005309091066010296, 0.005998797249048948, 0.022776737809181213, -0.016379866749048233, 0.02587825059890747, -0.002094213617965579, -0.0008796562906354666, -0.006213410757482052, -0.004693807568401098, 0.03201204538345337, -0.020256757736206055, 0.006074950564652681, -0.02591978758573532, 0.024812104180455208, 0.013492967002093792, 0.024092109873890877, -0.03209512308239937, 0.008127626031637192, 0.0017965238075703382, -0.011229138821363449, -0.016850631684064865, 0.015092184767127037, -0.012752203270792961, 0.02406441792845726, 0.030405905097723007, 0.0037349695339798927, 0.0023624806199222803, -0.031153591349720955, 0.017307551577687263, -0.013569120317697525, 0.009809919632971287, -0.004157273564487696, -0.024853643029928207, 0.01079298835247755, 0.023662883788347244, -0.001898638322018087, -0.030488980934023857, 0.004565732087939978, 0.021558284759521484, -0.01154759805649519, 0.03984890505671501, 0.023870574310421944, -0.01906599849462509, 0.0006403793813660741, -0.011665289290249348, -0.004112273920327425, 0.017944468185305595, 0.02662593685090542, -0.003873429959639907, -0.0027190162800252438, 0.023787498474121094, -0.02078290656208992, -0.029353605583310127, 0.018249081447720528, 0.006947251036763191, 0.006351870950311422, -0.0006438408745452762, 0.013299122452735901, 0.033175114542245865, 0.010772219859063625, -0.03284280747175217, -0.012163747102022171, -0.013243737630546093, 0.003565355436876416, 0.03802122920751572, -0.025587482377886772, 0.019827529788017273, 0.008653775788843632, 0.009366846643388271, 0.02086598239839077, -0.010557605884969234, -0.009062233380973339, -0.033424343913793564, 0.023192118853330612, -0.0069437893107533455, 0.007220710162073374, 0.02086598239839077, -0.014552189037203789, -0.02932591363787651, 0.017529087141156197, 0.0037349695339798927, 0.008785312995314598, -0.009442999958992004, -0.004506886471062899, 0.008217625319957733, -0.028467459604144096, 0.00165114039555192, -0.6109980940818787, -0.0052926489152014256, 0.019301380962133408, -0.03201204538345337, -0.0020353680010885, 0.010156070813536644, 0.024258263409137726, 0.013977577909827232, -0.01523064449429512, 0.025338254868984222, 0.010876065120100975, 0.00845993123948574, -0.012862971983850002, -0.016601402312517166, -0.01943984068930149, -0.033258188515901566, 0.012703741900622845, 0.0041641965508461, -0.01611679047346115, 0.004319964908063412, -0.019038306549191475, 0.03400587663054466, 0.004302657209336758, 0.007151479832828045, 0.017847547307610512, 0.00862608291208744, 0.01793062314391136, -0.005708030425012112, -0.011658365838229656, 0.023953650146722794, -0.028038231655955315, 0.025767480954527855, 0.018913691863417625, -0.005901874974370003, 0.04721499979496002, -0.010924526490271091, -0.013859886676073074, 0.01434449851512909, 0.0213782861828804, 0.036332011222839355, -0.03777199983596802, -0.007919935509562492, 0.012738357298076153, 0.014088346622884274, -0.01215682365000248, -0.001642486546188593, -0.01834600418806076, 0.000443938683019951, -0.01495372410863638, 0.0037799691781401634, 0.006213410757482052, -0.01300143264234066, 0.005891490262001753, 0.005282264668494463, 0.019453687593340874, 0.0033420880790799856, 0.0333135724067688, 0.007241479121148586, 0.0033992030657827854, 0.02247212454676628, 0.01595063880085945, 0.0035999706014990807, -0.00422996561974287, -0.03987659886479378, -0.05657492205500603, 0.012406052090227604, -0.007193018216639757, -0.008231471292674541, 0.018484463915228844, 0.008217625319957733, 0.0267643965780735, -0.010529913939535618, -0.00724840210750699, -0.0018017160473391414, -0.01061991322785616, 0.017847547307610512, 0.047104232013225555, -0.01152682863175869, -0.007483785040676594, 0.023025965318083763, -0.004846114199608564, -0.011381445452570915, -0.009442999958992004, -0.03328588232398033, 0.021129058673977852, -0.002845361363142729, -0.012890663929283619, -0.016850631684064865, -0.011360676027834415, -0.0034770870115607977, 0.010612989775836468, 0.011014525778591633, -0.0041780429892241955, -0.03887968137860298, 0.0268059354275465, 0.030987439677119255, 0.009304539300501347, 0.004309580195695162, 0.003503048326820135, -0.024673644453287125, -0.04577501118183136, -0.033258188515901566, 0.0007546092383563519, 0.015202952548861504, 0.028245922178030014, 0.010481452569365501, -0.020962905138731003, -0.008293778635561466, 0.020561370998620987, -0.007137633860111237, -0.004302657209336758, -0.012537590228021145, -0.03489202260971069, -0.010931449010968208, -0.0004095399344805628, -0.024216724559664726, 0.03167974203824997, 0.0013621042016893625, -0.01867830939590931, -0.006379563361406326, -0.023192118853330612, 0.017349088564515114, 0.00596418185159564, -0.0016771017108112574, -0.003241704311221838, 0.014088346622884274, 0.016504479572176933, 0.015604487620294094, 0.0018242158694192767, -0.0015308528672903776, 0.017266012728214264, -0.0011786442482843995, 0.024216724559664726, -0.005642261356115341, 0.02393980510532856, -0.005486493464559317, 0.008909926749765873, -0.011028371751308441, 0.014704495668411255, -0.0321505069732666, 0.0038353533018380404, -0.0083699319511652, 0.009290693327784538, -0.036165859550237656, -0.008273009210824966, -0.0018103697802871466, -0.014967570081353188, 0.011360676027834415, -0.008896080777049065, -0.017598317936062813, -0.023150580003857613, -0.02263827621936798, -0.013347582891583443, 0.016587557271122932, -0.00803762674331665, 0.003034013556316495, -0.01213605422526598, -0.03904583305120468, -0.01306373905390501, -0.021004443988204002, -0.009422230534255505, 0.01799985207617283, -0.012828356586396694, 0.00956761371344328, -0.012655281461775303, -0.008799158968031406, -0.023358270525932312, 0.008612236939370632, -0.017736777663230896, -0.0160337146371603, -0.013437582179903984, -0.015133722685277462, 0.023413654416799545, 0.03962736949324608, -0.016767555847764015, -0.0031326666940003633, -0.010931449010968208, 0.007262248545885086, -0.0012547974474728107, 0.014967570081353188, 0.02734593115746975, 0.02650132216513157, -0.011409137398004532, 0.005033035762608051, 0.030738210305571556, 0.00917300209403038, 0.012717588804662228, 0.018276773393154144, -0.02915976196527481, 0.005552262533456087, -0.002736323745921254, 0.016850631684064865, -0.005576492752879858, 0.002665362786501646, -0.002848822856321931, -0.02369057573378086, -0.02243058569729328, -0.02069983072578907, -0.015092184767127037, 0.02999052405357361, 0.001152682933025062, 0.0025926711969077587, -0.014801417477428913, -0.0024490184150636196, 0.01826292835175991, -0.017556779086589813, 0.017556779086589813, -0.02251366153359413, 0.011679135262966156, 0.005084958393126726, -0.008847620338201523, 0.0009925880003720522, -0.003863045247271657, -0.03491971641778946, -0.0016970053547993302, 0.018955228850245476, -0.025476714596152306, 0.021655207499861717, -0.0067084068432450294, -0.004638423677533865, 0.005510724149644375, 0.009664536453783512, 0.019453687593340874, 0.021945973858237267, -0.00010065422247862443, 0.01462141890078783, 0.003487471491098404, 0.009311462752521038, 0.020561370998620987, -0.023455193266272545, -0.015175260603427887, 0.014815263450145721, 0.005770337302237749, -0.00906915683299303, 0.017556779086589813, 0.015189106576144695, 0.04270118847489357, -0.01993829943239689, 0.014441420324146748, -0.010315299965441227, 0.006047258153557777, -0.009588383138179779, 0.018581386655569077, -0.016476787626743317, 0.007456093095242977, 0.01960599422454834, 0.031125899404287338, -0.0001993613550439477, -0.02369057573378086, 0.015590641647577286, -0.012599896639585495, 0.015202952548861504, -0.008999926038086414, -0.009837611578404903, 0.027872079983353615, -0.015922946855425835, 0.0035411249846220016, 0.016379866749048233, 0.014413728378713131, 0.016809092834591866, -0.007975319400429726, 0.011886825785040855, -0.00286093819886446, -0.008536083623766899, 0.011602981947362423, -0.0013551812153309584, 0.003343818709254265, -0.018359849229454994, 0.010439914651215076, 0.0024490184150636196, 0.0074007087387144566, -0.01462141890078783, -0.011879903264343739, -0.017986007034778595, -0.007428400684148073, 0.011346830055117607, 0.012440667487680912, 0.03109820745885372, -0.0009034541435539722, 0.026653628796339035, -0.0030253599397838116, -0.026099786162376404, 0.014912186190485954, 0.00940146204084158, -0.023067504167556763, -0.006874558981508017, -0.013416813686490059, -0.0011544136796146631, 0.030516672879457474, 0.026432091370224953, -0.00039655924774706364, 0.0036518932320177555, -0.02767823450267315, 0.009602229110896587, -0.017141398042440414, 0.0019938298501074314, 0.046301160007715225, -0.012309130281209946, -0.009830689057707787, -0.002532094717025757, 0.003631124272942543, 0.011360676027834415, -0.029298221692442894, -0.01278681866824627, 0.040070440620183945, 0.0016217174706980586, -0.0017662355676293373, -0.020589062944054604, 0.025781327858567238, -0.03458740934729576, -0.002975167939439416, -0.02528287097811699, -0.01787523925304413, -0.010827603749930859, -0.03467048704624176, 0.0111460629850626, -0.00866762176156044, -0.02330288663506508, 0.0321505069732666, 0.019619839265942574, -0.010003764182329178, -0.009664536453783512, -0.0071653262712061405, 0.018082929775118828, 0.04909805953502655, 0.011332984082400799, -0.0012322976253926754, 0.019329072907567024, -0.02226443402469158, -0.01192836370319128, -0.01104221772402525, -0.0330643467605114, 0.02705516293644905, -0.01543833501636982, -0.0023209424689412117, -0.00047033268492668867, 0.0067672524601221085, -0.016089098528027534, 0.0035376634914427996, 0.013866810128092766, 0.011907595209777355, -0.0216690544039011, -0.01943984068930149, 0.003179397201165557, -0.008072242140769958, -0.003617278067395091, 0.03849199414253235, 0.022361354902386665, 0.03680277615785599, 0.023953650146722794, 0.040956586599349976, -0.0031915123108774424, 0.029132070019841194, -0.0336458794772625, -0.007262248545885086, 0.0012980663450434804, -0.007137633860111237, 0.008903004229068756, 0.005399955902248621, 0.015618333593010902, 0.0011665289057418704, -0.03768892213702202, -0.0054968781769275665, 0.004486117046326399, 0.0004259820852894336, 0.013624504208564758, 0.011450675316154957, -0.02571209706366062, 0.010086840949952602, -0.023164426907896996, 0.014912186190485954, 0.03572278469800949, -0.0134860435500741, -0.0017671009991317987, 0.004008428659290075, -0.0023849804420024157, -0.002724208403378725, 0.019619839265942574, 0.003620739560574293, 0.004247272852808237, -0.02234750986099243, -0.005483032204210758, -0.020644446834921837, -0.030267445370554924, -0.035445865243673325, -0.011069909669458866, 0.0032157429959625006, -0.013008355163037777, -0.018692154437303543, -0.022278279066085815, 0.006981865968555212, 0.00998991820961237, -0.025089025497436523, -0.013319890946149826, 0.002343442291021347, -0.026875164359807968, -0.05056574195623398, 0.004887652583420277, 0.03425510600209236, 0.02069983072578907, 0.007151479832828045, 0.023233655840158463, -0.013942962512373924, -0.0032728577498346567, -0.006981865968555212, -0.031236667186021805, 0.015050645917654037, -0.03408895060420036, -0.020921368151903152, -0.02338596247136593, -0.019536763429641724, -0.009138386696577072, -0.011838364414870739, 0.004666115622967482, 0.0049118828028440475, -0.02567056007683277, 0.007601476274430752, 0.0057011074386537075, 0.009768381714820862, 0.032538194209337234, 0.02006291225552559, 0.009214540012180805, 0.019453687593340874, -0.04164889082312584, 0.01745985820889473, -0.0018622925272211432, -0.008923773653805256, -0.018041390925645828, 0.00726917153224349, 0.0034736255183815956, 0.00221363571472466, -0.01593679189682007, 0.01186605729162693, -0.03184589371085167, 0.00737301679328084, -0.014662956818938255, -0.022998273372650146, -0.022236742079257965, 0.015604487620294094, -0.002492287429049611, 0.007857628166675568, 0.016892170533537865, 0.0042784265242516994, -0.0051749576814472675, 0.0016961400397121906, -0.026473630219697952, 0.051396504044532776, 0.012925279326736927, -0.0003448529460001737, 0.0032901654485613108, 0.016642941161990166, -0.018359849229454994, -0.023801343515515327, 0.02129521034657955, -0.01590909995138645, 0.011575290001928806, -0.0017497934168204665, -0.007753782905638218, -0.01981368474662304, -0.019107535481452942, 0.009726843796670437, 0.013686811551451683, -0.021973665803670883, 0.004257657565176487, -0.025019794702529907, -0.0002855745842680335, 0.014192191883921623, -0.006175334099680185, -0.006002258509397507, -0.02503364160656929, -0.02835669182240963, -0.007407631725072861, 0.01184528786689043, 0.011208370327949524, -0.002545940689742565, -0.023164426907896996, -0.027955155819654465, -0.01876138523221016, 0.018290620297193527, -0.0004906690446659923, 0.009602229110896587, -0.007712244521826506, 0.03840891644358635, 0.013216045685112476, 0.03663662448525429, 0.03134743496775627, 0.014441420324146748, 0.02532440796494484, -0.0034528563264757395, -0.011104525066912174, 0.00355497095733881, -0.013243737630546093, -0.008113780058920383, 0.006019566208124161, -0.0037626614794135094, -0.006303410045802593, -0.015078337863087654, 0.022735198959708214, 0.02852284349501133, 0.02414749562740326, 0.0031967046670615673, -5.04623276356142e-05, -0.037799689918756485, -0.04361502826213837, -0.01327142957597971, 0.027858233079314232, -0.011554520577192307, -0.012142977677285671, -0.01358988881111145, 0.002464595250785351, 0.018124466761946678, -0.012696819379925728, 0.023884419351816177, 0.006656484212726355, 0.04580270126461983, -0.0007385997450910509, 0.011942209675908089, -0.00737301679328084, 0.012849126011133194, -0.030572058632969856, -0.013430659659206867, -0.029879756271839142, -0.01700293831527233, 0.005846490617841482, 0.007746859919279814, 0.028412075713276863, -0.0009337423834949732, -0.006113026756793261, 0.008806081488728523, -0.004496501758694649, -0.038602761924266815, -0.006026489194482565, 0.016227560117840767, -0.026141325011849403, -0.005784183274954557, -0.028384383767843246, -0.0016753709642216563, -0.00761532224714756, -0.01255835872143507, 0.001576717826537788, 4.52159765700344e-05, 0.020436756312847137, -0.02305365726351738, -0.0026930549647659063, 0.022056743502616882, -0.022707507014274597, 0.023150580003857613, 0.020007528364658356, 0.01039145328104496, 0.008660698309540749, 0.0030807440634816885, -0.012087593786418438, -0.030101291835308075, -0.0010895102750509977, -0.0075876303017139435, 0.013638350181281567, 0.029879756271839142, -0.0166983250528574, -0.007746859919279814, 0.0009406653698533773, -0.023358270525932312, 0.007850704714655876, -0.05098112300038338, 0.013423736207187176, 0.007726090494543314, 0.00032494927290827036, -0.0269720871001482, -0.023967497050762177, -0.015064491890370846, 0.011464521288871765, -0.014060654677450657, 0.0038457377813756466, 0.016310635954141617, -0.0007970127044245601, 0.016892170533537865, 0.013119123876094818, -0.011893749237060547, 0.025061333552002907, -0.014088346622884274, -0.005088420119136572, 0.0053030336275696754, -0.007594553288072348, 0.00826608669012785, -0.0056249541230499744, -0.008030703291296959, 0.03838122636079788, -0.028052078559994698, -0.010162994265556335, 0.021932128816843033, 0.006625330541282892, -0.018498310819268227, 0.00286093819886446, -0.02414749562740326, 0.03087667003273964, -0.016006022691726685, -0.017362935468554497, 0.006829559337347746, 0.025504406541585922, 0.011769134551286697, -0.02519979327917099, -0.02596132643520832, -0.006483408622443676, -0.0006905712652951479, 0.008868388831615448, 0.015618333593010902, -0.0059468746185302734, -0.01691986247897148, -0.005282264668494463, 0.0017679663142189384, -0.020962905138731003, -0.007456093095242977, 0.00032711270614527166, 0.01793062314391136, -0.03694123774766922, -0.003828430315479636, 0.00854300707578659, -0.0026567091699689627, -0.008896080777049065, -0.01901061460375786, -0.009546845220029354, -0.005078035406768322, 0.02461826056241989, -0.004430733155459166, 0.018041390925645828, 0.028176693245768547, 0.0017610433278605342, -0.038519684225320816, 0.016670633107423782, -0.026349015533924103, -0.002800361718982458, 0.006822636350989342, -0.005735722370445728, -0.024770567193627357, -0.022139819338917732, 0.022015204653143883, 0.0021392132621258497, -0.004136504605412483, -0.0034043951891362667, 0.0077330139465630054, 0.0333135724067688, 0.011506060138344765, -0.010924526490271091, -0.0020630599465221167, 0.00025204120902344584, -0.00196094554848969, 0.00803762674331665, 0.008681467734277248, -0.02461826056241989, 0.0006788886967115104, 0.0031240128446370363, -0.0016615248750895262, -0.012890663929283619, -0.022984428331255913, -0.03101513162255287, -0.021433670073747635, 0.02154443971812725, 0.010336069390177727, 0.0079337814822793, 0.014469112269580364, -0.028384383767843246, -0.025905942544341087, 0.022984428331255913, -0.028578227385878563, 0.0009380692499689758, 0.01640755869448185, -0.011540674604475498, 0.012011440470814705, 0.03295357525348663, -0.02398134209215641, -0.030738210305571556, -0.01430295966565609, -0.02668132074177265, -0.049458056688308716, -0.013666042126715183, 0.009712997823953629, 0.044168870896101, 0.002087290631607175, -0.025213640183210373, -0.03491971641778946, -0.009228385984897614, -0.03959967568516731, -0.029547451063990593, -0.03597201406955719, 0.00948453787714243, 0.03813199698925018, 0.02507518045604229, -0.0014053730992600322, 0.023247502744197845, -0.00047639032709412277, 0.010578375309705734, -0.03605509176850319, -0.0032053585164248943, -0.023635191842913628, -0.012634512037038803, 0.021904436871409416, -0.019758300855755806, -0.048405759036540985, 0.0139014245942235, -0.0007221575360745192, 0.005739183630794287, 0.012502974830567837, 0.0059953355230391026, 0.0009320116369053721, 0.019536763429641724, 0.006518023554235697, 0.021170595660805702, 0.020755214616656303, 0.030765902251005173, 0.015466027893126011, -0.04153812304139137, 0.007359170820564032, 0.021945973858237267, -0.0016295058885589242, -0.006171872839331627, 0.021101366728544235, 0.015272182412445545, -0.013859886676073074, -0.014206037856638432, -0.0010895102750509977, -0.00561803113669157, 0.0028159385547041893, 0.009055310860276222, -0.004084581974893808, 0.029215145856142044, 0.010336069390177727, 0.01880292408168316, -0.004614192992448807, -0.017778316512703896, 0.0038491992745548487, -0.0032797809690237045, 0.00043917910079471767, 0.02317827194929123, 0.022278279066085815, -0.0029336297884583473, 0.0001487367699155584, 0.00633110199123621, -0.006545715499669313, 0.009546845220029354, -0.02974129468202591, -0.007317632436752319, 0.0005988412303850055, -0.00843223836272955, -0.01061991322785616, 0.004832268226891756, -0.006805329117923975, 0.006178795825690031, -0.014773725531995296, -0.0001346743811154738, 0.01704447530210018, 0.0063761016353964806, 0.011256830766797066, -0.012842202559113503, -0.03514125198125839, 0.002603055676445365, 0.0064037940464913845, -0.0425073467195034, -0.010197608731687069, 0.01721062883734703, 0.0081207025796175, 0.012461436912417412, 0.21378286182880402, 0.014358344487845898, 0.007553015369921923, 0.04004275053739548, 0.03012898378074169, -0.00843223836272955, 0.022624431177973747, 0.0028384383767843246, -0.027359776198863983, 0.014759879559278488, -0.002840169006958604, 0.006839944049715996, -0.013998347334563732, 0.0002533392689656466, 0.013859886676073074, -0.02002137526869774, -0.03378434106707573, -0.01813831366598606, -0.007158402819186449, 0.013735271990299225, 0.015382951125502586, -0.005282264668494463, -0.011554520577192307, 0.001047972240485251, 0.019093690440058708, -0.012814510613679886, -0.009512229822576046, -0.0023157503455877304, 0.02313673309981823, 0.02191828191280365, -0.005687261000275612, -0.007116864901036024, 0.0220844354480505, -0.015604487620294094, -0.016213713213801384, -0.006704945117235184, 0.009588383138179779, -0.012094516307115555, 0.001979983877390623, 0.01948137953877449, 0.0073245554231107235, -0.016947554424405098, 0.014579880982637405, -0.014579880982637405, 0.0062411027029156685, -0.012295284308493137, -0.03588893637061119, 0.011533752083778381, -0.020436756312847137, 0.01399142388254404, -0.002289789030328393, 0.009851457551121712, 0.02369057573378086, 0.02348288521170616, -0.004673038609325886, 0.0010540297953411937, -0.009581459686160088, -0.007393785752356052, -0.021018289029598236, -0.010972986929118633, -0.010509144514799118, 0.013749117963016033, -0.010488376021385193, -0.0035290096420794725, -0.03696892783045769, 0.011104525066912174, -0.03303665295243263, 0.026985934004187584, 0.005005343817174435, 0.004205734934657812, -0.0218767449259758, 0.009110694751143456, -0.023205963894724846, -0.005029574502259493, -0.01960599422454834, -0.0026567091699689627, 0.010114532895386219, 0.009311462752521038, 0.024839796125888824, 0.00948453787714243, 0.0023192118387669325, 0.004634961951524019, -0.023289039731025696, -0.021641362458467484, 0.0158675629645586, -0.019509071484208107, 0.02751208283007145, -0.0028713226784020662, -0.00535495625808835, -0.02074136957526207, -0.0014183537568897009, 0.010959140956401825, -0.020796753466129303, -0.028578227385878563, 0.0026411323342472315, -0.013852964155375957, 0.010419145226478577, 0.028550535440444946, -0.01826292835175991, -0.03336895629763603, -0.011076832190155983, 0.05023343488574028, 0.010211454704403877, 0.013963731937110424, -0.019869068637490273, 0.022416740655899048, -0.0001528473076177761, 0.02650132216513157, -0.01338219828903675, -0.007103018928319216, 0.011457598768174648, -0.05015036091208458, 0.01235066819936037, -0.0021132519468665123, -0.002414403250440955, 0.010737604461610317, 0.022458277642726898, -0.012080670334398746, 0.01276604924350977, -0.03217819705605507, 0.027955155819654465, -0.004610731732100248, 0.030239753425121307, 0.012897586449980736, -0.019993683323264122, -0.03563970699906349, -0.011118371039628983, 0.0317351259291172, -0.03863045200705528, -0.02747054398059845, 0.024424415081739426, -0.006999173667281866, 0.021433670073747635, -0.021392133086919785, -0.023925958201289177, -0.0004988901782780886, 0.01599217765033245, 0.004949959460645914, -0.019509071484208107, -0.027996694669127464, 3.1396979466080666e-05, 0.017902931198477745, 0.022485969588160515, 0.011983748525381088, -0.0061822570860385895, 0.004787268582731485, 0.01935676485300064, -0.008210701867938042, -0.009193770587444305, -0.03741200268268585, 0.00442727142944932, 0.004146889317780733, -0.006296487059444189, -0.012482205405831337, 0.030516672879457474, -0.011049140244722366, -0.02668132074177265, -0.032288968563079834, 8.334667654708028e-05, 0.020838290452957153, -0.03602739796042442, -0.008972234092652798, 0.03400587663054466, -0.00032841076608747244, -0.02132290229201317, -0.017529087141156197, -0.176675483584404, 0.01255835872143507, 0.008480699732899666, -0.009539921768009663, 0.023455193266272545, 0.010336069390177727, 0.009034541435539722, 0.009110694751143456, -0.019024459645152092, -0.008868388831615448, -0.0006425428437069058, 0.005268418695777655, -0.017972160130739212, -0.012018362991511822, 0.017515242099761963, -0.000827300944365561, -0.03541817143559456, 0.027249008417129517, 0.046855002641677856, 0.0033940107095986605, 0.016795247793197632, -0.041288893669843674, -0.0006243698881007731, -0.0009614344453439116, 0.01826292835175991, 0.0005053805070929229, 0.0043372721411287785, 0.022707507014274597, 0.008480699732899666, -0.030433597043156624, -0.013119123876094818, -0.0025563251692801714, 0.027913618832826614, 0.0034736255183815956, 0.025781327858567238, 9.941024472936988e-05, -0.0023157503455877304, 0.00458650104701519, 0.0027086318004876375, 0.016809092834591866, 0.018996767699718475, 0.020810598507523537, 0.009913764894008636, 0.006905712652951479, -0.0029024763498455286, 0.01741831935942173, -0.00038228053017519414, 0.0026290169917047024, 0.007082249969244003, -0.009013772942125797, 0.024756720289587975, -0.018069082871079445, 0.00031478109303861856, -0.0026982470881193876, 0.0014728725655004382, 0.0054968781769275665, 0.009796073660254478, 0.02002137526869774, -0.006815713364630938, -0.02915976196527481, 0.014566035009920597, -0.013700657524168491, 0.011471444740891457, -0.005888029001653194, -0.007338401395827532, -0.01793062314391136, 0.024895181879401207, 0.0020526754669845104, -0.004292272496968508, -0.0049395752139389515, 0.0005724472575820982, 0.0057426453568041325, -0.006414178293198347, 0.01590909995138645, 0.004877267871052027, -0.0060541811399161816, -0.033756647258996964, 0.006535331252962351, 0.02402288094162941, -0.009844535030424595, 0.009553767740726471, 0.014718341641128063, -0.007532245945185423, -0.007103018928319216, -0.014898340217769146, 0.012606820091605186, 0.0021945973858237267, -0.0001772942196112126, -0.01783370040357113, 0.01578448712825775, 0.035030484199523926, -0.00721378717571497, 0.006486869882792234, 0.01390834804624319, 0.0269305482506752, 0.0011275869328528643, 0.022790582850575447, -0.0017108514439314604, 0.009353000670671463, 0.0001623664575163275, 0.00822454784065485, 0.022776737809181213, -0.04012582451105118, 0.003963429015129805, 0.03328588232398033, 0.033895108848810196, 0.02226443402469158, 0.013091430999338627, 0.03478125482797623, -0.011644519865512848, -0.004520732443779707, 0.01318835373967886, 0.025421330705285072, 0.015618333593010902, -0.00474573066458106, 0.03968275338411331, 0.005988412536680698, -0.015839871019124985, 0.014524497091770172, -0.0273874681442976, 0.04486117139458656, -0.03815968707203865, -0.036415085196495056, 0.005888029001653194, 0.011277600191533566, -0.008743775077164173, -0.1088852658867836, -0.028799764811992645, 0.007172249257564545, 0.017986007034778595, -0.014005269855260849, 0.0003799007390625775, -0.013056816533207893, 0.04430732876062393, -0.02907668612897396, 0.0319843553006649, -0.02439672313630581, -0.014143730513751507, -0.0007347055361606181, 0.007044173311442137, -0.007608399260789156, -0.01154759805649519, -0.0012444128515198827, -0.004493040032684803, -0.012447590939700603, 0.03699662163853645, 0.01207374781370163, -0.01174144260585308, 0.014552189037203789, -0.018747538328170776, -0.003631124272942543, -0.017515242099761963, -0.022416740655899048, 0.012828356586396694, 0.008446085266768932, 0.010384530760347843, 0.008376854471862316, -0.01337527483701706, 0.019785992801189423, -0.02452133782207966, -0.018664462491869926, -0.01758447103202343, -0.030101291835308075, -0.01871984638273716, 0.0021842129062861204, -0.03558432310819626, -0.008986080065369606, 0.007968395948410034, -0.013243737630546093, -0.012544512748718262, -0.0030149754602462053, 0.005489955190569162, -0.017778316512703896, 0.02171059139072895, 0.009754535742104053, -0.013119123876094818, -0.025172101333737373, -0.011118371039628983, -0.012565282173454762, -0.01863677054643631, 0.032621271908283234, -0.003444202709943056, 0.027484390884637833, 0.01482910942286253, -0.0218352060765028, 0.018872153013944626, 0.012433744966983795, 0.016518326476216316, -0.002916322322562337, 0.026058249175548553, 0.007449170108884573, 0.016726016998291016, 0.004326887894421816, -0.01779216155409813, -0.01495372410863638, -0.004513809457421303, -0.02132290229201317, 0.018816769123077393, -0.02511671744287014, 0.010606067255139351, -0.005417263600975275, -0.0021963282488286495, -0.024562876671552658, -0.03392279893159866, 0.029048994183540344, 0.024549029767513275, -0.020962905138731003, -0.006853790022432804, -0.0011682596523314714, -0.050676509737968445, 0.0329812690615654, 0.007379939779639244, 0.004160735290497541, -0.01997983641922474, 0.022859813645482063, -0.025725943967700005, 0.001240086043253541, 0.004697269294410944, 0.011623751372098923, -0.007802243810147047, -0.00380766112357378, 0.021890589967370033, -0.031652048230171204, 0.007227633148431778, 0.036747392266988754, -0.0030236290767788887, -0.016102945432066917, -0.01167221274226904, -0.048239607363939285, 0.026072094216942787, 0.007151479832828045, 0.010772219859063625, -0.0030374752823263407, -0.00826608669012785, -0.012537590228021145, -0.018899844959378242, -0.0025095948949456215, 0.0038526607677340508, -0.01535525918006897, 0.013859886676073074, -0.025809019804000854, -0.027193624526262283, -0.0319843553006649, -0.015521411783993244, -0.006552638951689005, -0.014399882405996323, 0.020256757736206055, 0.007179172243922949, -0.005898413248360157, -0.0049118828028440475, 0.005510724149644375, 0.02090752124786377, 0.0037868921644985676, 0.0011717211455106735, -0.036581240594387054, 0.030821286141872406, -0.01308450847864151, -0.01543833501636982, 0.021059827879071236, -0.012946047820150852, -0.0008839831571094692, 0.008286855183541775, -0.017266012728214264, -0.0317351259291172, 0.025822866708040237, -0.00278651574626565, 0.030904361978173256, -0.009962226264178753, -0.02519979327917099, -0.0081622414290905, 0.020769061520695686, 0.008342239074409008, -0.015673717483878136, 0.0022551738657057285, -0.020339833572506905, -0.015299875289201736, 0.021807514131069183, 0.023081349208950996, 0.034725870937108994, 0.01876138523221016, -0.00510226609185338, -0.0432550311088562, -0.01381834875792265, -0.009733766317367554, 0.016241405159235, 0.029048994183540344, 0.01182451844215393, -0.015064491890370846, 0.03478125482797623, 0.014413728378713131, 0.020810598507523537, -0.01595063880085945, 0.01257912814617157, -0.02251366153359413, -0.035030484199523926, -0.016642941161990166, -0.002230943413451314, -0.04153812304139137, 0.0033992030657827854, -0.01104221772402525, 0.03575047850608826, 0.029962832108139992, 0.005348033271729946, -0.00280382321216166, 0.008944542147219181, -0.018913691863417625, -0.014032961800694466, 0.031956661492586136, 0.02713824063539505, -0.0274290069937706, -0.021267518401145935, -0.00259786332026124, 0.01754293404519558, 0.0074422466568648815, -0.01104221772402525, 0.015175260603427887, 0.005472647491842508, 0.011609905399382114, -0.004572655074298382, -0.004634961951524019, -0.007580707315355539, 0.005441493820399046, 0.023067504167556763, 0.03054436482489109, -0.02119828760623932, 0.022181356325745583, 0.020229065790772438, 0.030350521206855774, 0.008529161103069782, 0.020589062944054604, 0.008764543570578098, 0.0005226880311965942, -0.026279784739017487, 0.016352174803614616, -0.032455120235681534, -0.009456845931708813, 0.0076291682198643684, 0.024922873824834824, 0.011187600903213024, -0.006760329473763704, -0.009650690481066704, 0.018332157284021378, -0.006801867391914129, -0.0033542034216225147, -0.014635264873504639, -0.01791677623987198, -0.02263827621936798, 0.0010341261513531208, 0.0016096022445708513, 0.013257583603262901, 0.011028371751308441, -0.0013785464689135551, 0.02330288663506508, 0.014898340217769146, 0.0019938298501074314, -0.012828356586396694, 0.014732187613844872, -0.020921368151903152, 0.023164426907896996, 0.004465348087251186, 0.012655281461775303, -0.016324482858181, -0.0037591999862343073, -0.016227560117840767, -0.006839944049715996, 0.021987512707710266, -0.007684552576392889, 0.0891685038805008, 0.029464375227689743, -0.03425510600209236, -0.0022274816874414682, -0.01411603856831789, 0.0067326370626688, 0.025061333552002907, -0.004610731732100248, 0.008314547128975391, -0.016684478148818016, 0.028965916484594345, 0.0013577773934230208, -0.028135154396295547, -0.008799158968031406, -0.022458277642726898, -0.001421815250068903, 0.017266012728214264, 0.0033853568602353334, -0.01762600988149643, 0.004240349866449833, 0.0328151173889637, -0.018733693286776543, 0.03910122066736221, -0.005462263245135546, -0.022485969588160515, -0.025933634489774704, 0.04153812304139137, 0.01985522173345089, 0.021364441141486168, -0.03547355532646179, 0.010841449722647667, -0.004046505317091942, -0.026473630219697952, -0.013576042838394642, -0.010446838103234768, -0.01245451346039772, -0.01779216155409813, -0.016753708943724632, -0.00474573066458106, 0.00856377650052309, 0.008570699021220207, 0.015424489043653011, -0.020727522671222687, -0.013340660370886326, 0.018249081447720528, -0.009200694039463997, 0.002781323390081525, -0.02272135205566883, -0.014704495668411255], "bb461fd8-c0fa-4ee2-8c1e-cbcfdc5ed8c4": [-0.01399123203009367, -0.005197042133659124, 0.004336096812039614, -0.023576654493808746, -0.012959491461515427, 0.009466912597417831, -0.0024015840608626604, -0.03544166684150696, -0.016117453575134277, -0.05172642692923546, 0.014263109304010868, 0.005960389971733093, 0.028721412643790245, -0.004858938045799732, 0.01673091948032379, 0.012987376190721989, 0.02598869614303112, 0.004851966630667448, 0.0161732230335474, -0.001173778553493321, -0.021304037421941757, -0.02267039567232132, -0.03128682076931, -0.002730973996222019, -0.02048143371939659, 0.0040990752167999744, 0.0435003899037838, -0.008679164573550224, -0.0076404535211622715, 0.012743383646011353, 0.013956375420093536, -0.012820066884160042, -0.02630937099456787, -0.00786353275179863, -0.020286239683628082, 0.00358320539817214, -0.0014683124609291553, 0.003900395706295967, 0.011586162261664867, -0.015336676500737667, 0.03468877449631691, 0.002518351888284087, -0.009906099177896976, -0.006423976272344589, 0.007138525601476431, 0.039261892437934875, 0.010428939945995808, -0.015029942616820335, -0.01581071875989437, -0.012262370437383652, 0.014060944318771362, 0.014242195524275303, -0.029836807399988174, -0.008930128067731857, -0.01752563938498497, -0.0002701346529647708, 0.001380300847813487, 0.012046262621879578, -0.007013043854385614, -0.0040781619027256966, 0.008414258249104023, 0.026281487196683884, -0.018111221492290497, 0.02215452678501606, -0.04311000183224678, -0.03220701962709427, -0.001283575315028429, -0.004384895320981741, 0.0006130313850007951, -0.018264587968587875, 0.013050117529928684, 0.04012632369995117, 0.0076404535211622715, -0.0008809874998405576, 0.003490836825221777, -0.024524740874767303, 0.015824662521481514, 0.00685619143769145, -0.0006313308258540928, -0.0037679425440728664, 0.00779381999745965, 0.003562291618436575, -0.00874190591275692, -0.003337469883263111, 0.02251702919602394, 0.03254164010286331, 3.757921513170004e-05, 0.0026908896397799253, -0.0186410341411829, -0.00119730643928051, 0.018529493361711502, 0.02043960802257061, 0.0033339844085276127, 0.03014354035258293, 0.015657352283596992, 0.013231368735432625, 0.010442882776260376, 0.016103509813547134, -0.011969578452408314, -0.009634220972657204, -0.02734111063182354, -0.006026616785675287, -0.020146815106272697, -0.0064588324166834354, -0.0220708716660738, -0.022823764011263847, 0.007724108174443245, -0.0196030605584383, 0.003288671374320984, 0.016675150021910667, 0.00032699364237487316, 0.03137047588825226, 0.0037888563238084316, 0.0051377867348492146, -0.011530391871929169, -0.012318139895796776, 0.020579030737280846, -0.02016075886785984, -0.015671294182538986, -0.029195455834269524, 0.016981882974505424, 0.005200527608394623, 0.03323876112699509, -0.02287953346967697, 0.017386214807629585, -0.023242035880684853, 0.003534406889230013, -0.004458093084394932, 0.03591570630669594, -0.0022952731233090162, 0.023674251511693, 0.017748717218637466, 0.006009188946336508, 0.011321255937218666, -0.02290741726756096, 0.007054871413856745, -0.020286239683628082, -0.006354263983666897, 0.0004688143089879304, -0.03717052564024925, 0.020146815106272697, 0.020579030737280846, -0.008958013728260994, -0.025598308071494102, -0.0035466065164655447, 0.029446419328451157, -0.00992004107683897, 0.029251225292682648, 0.018571320921182632, -0.019630946218967438, 0.0024015840608626604, -0.0017950882902368903, -0.023158380761742592, 0.002621177351102233, 0.013245311565697193, 0.0024364402052015066, -0.0038934245239943266, 0.023325690999627113, -0.019407866522669792, -0.01868285983800888, 0.025556480512022972, 0.013977289199829102, -0.00812146719545126, 0.00515870051458478, -0.0008400316000916064, 0.03259740769863129, 0.001228676876053214, -0.023200208321213722, -0.015071770176291466, -0.013196513056755066, 0.009717876091599464, 0.029530074447393417, -0.023130496963858604, 0.031760863959789276, 0.008693107403814793, 0.020537205040454865, 0.016995826736092567, 4.561245077638887e-05, -0.00886041671037674, -0.02498484030365944, 0.03162143751978874, -0.009397200308740139, 0.004621916450560093, 0.029836807399988174, -0.025138206779956818, -0.014597727917134762, 0.03304356709122658, 0.017232848331332207, 0.0009716133354231715, -0.01100058015435934, -0.007905359379947186, 0.009285660460591316, -0.0169261135160923, -0.01133519783616066, -0.6156978607177734, 0.004283812828361988, 0.02386944554746151, -0.028289197012782097, 0.004886822775006294, 0.019142961129546165, 0.012199629098176956, 0.010191918350756168, -0.013963347300887108, 0.02543099783360958, 0.010066436603665352, 0.002973223803564906, -0.002741430886089802, -0.01700976863503456, -0.020551146939396858, -0.024455027654767036, 0.015434273518621922, -0.002415526658296585, -0.03552531823515892, -0.003079534973949194, -0.017302559688687325, 0.030115656554698944, -0.007194295525550842, 0.004531290847808123, 0.019129019230604172, 0.0179996807128191, 0.009787588380277157, -0.007054871413856745, -0.011328226886689663, 0.0319281704723835, -0.009285660460591316, 0.004186215344816446, 0.02562619186937809, 0.003987535834312439, 0.04539656266570091, 0.00954359583556652, -0.00779381999745965, 0.020606916397809982, 0.019296327605843544, 0.03440992534160614, -0.03524647280573845, -0.012241456657648087, 0.01433282159268856, 0.012346024625003338, -0.003760971361771226, 0.01827852986752987, 0.0029261682648211718, 0.014639554545283318, -0.016340531408786774, -0.013796037994325161, 0.011084234341979027, -0.02063480205833912, 0.005556059535592794, -0.00391085259616375, 0.02142952010035515, 0.0012260627700015903, 0.03323876112699509, -0.011237600818276405, -0.001029997249133885, 0.015978028997778893, 0.024050697684288025, 0.014681382104754448, -0.013565987348556519, -0.04338885098695755, -0.05309278517961502, 0.0066087134182453156, -0.031231051310896873, -0.007410403341054916, 0.008100553415715694, 0.00277977273799479, 0.006026616785675287, -0.0036598886363208294, -0.013684498146176338, -0.002560179214924574, -0.006434433162212372, 0.019742485135793686, 0.03466089069843292, 0.0014012145111337304, -0.021847791969776154, 0.02311655506491661, 0.0016391073586419225, 0.0046846577897667885, -0.026169946417212486, -0.022140583023428917, 0.03867631033062935, 0.012095061130821705, -0.010177976451814175, -0.01613139547407627, -0.003166675101965666, -0.005970846861600876, 0.005357380025088787, 0.011105148121714592, -0.0028425136115401983, -0.027870923280715942, 0.029167570173740387, 0.03956862539052963, 0.010854184627532959, -0.012548189610242844, -0.015671294182538986, -0.014639554545283318, -0.030729122459888458, -0.03875996544957161, 0.006281066220253706, 0.015880431979894638, 0.028442563489079475, 0.012555161491036415, -0.019491521641612053, -0.008476999588310719, 0.02048143371939659, -0.01836218498647213, 0.0017881171079352498, -0.007919302210211754, -0.022614626213908195, -0.01647995598614216, -0.0029645098838955164, -0.022921361029148102, 0.02262856997549534, -0.017860256135463715, -0.006389120128005743, -0.020132873207330704, -0.01307103130966425, 0.01844583824276924, 0.0019955106545239687, -0.008149351924657822, -0.006357749458402395, 0.02511032298207283, 0.01211597491055727, 0.004325639922171831, 0.016396300867199898, -0.00992004107683897, 0.006253181491047144, -0.00737554719671607, 0.028331024572253227, -0.0072012669406831264, 0.02027229778468609, -0.025082437321543694, 0.013064060360193253, -0.005831422749906778, 0.012569103389978409, -0.04202249273657799, 0.006225296296179295, -0.0036076046526432037, 0.008574596606194973, -0.02311655506491661, -0.003260786645114422, -0.02618389017879963, -0.00892315711826086, 0.007079270668327808, -0.0043814098462462425, -0.014611669816076756, -0.031705092638731, -0.023325690999627113, -0.0010796671267598867, 0.01784631423652172, 0.006019645370543003, -0.004803168121725321, 0.01031740102916956, -0.03376857191324234, -0.012095061130821705, -0.02446896955370903, -0.011286399327218533, 0.0035274357069283724, -0.013761181384325027, -0.010707789100706577, -0.01664726436138153, -0.00410256115719676, -0.02702043578028679, 0.00670631043612957, -0.025054551661014557, -0.01540638878941536, -1.0068778465210926e-05, -0.023339632898569107, 0.02110884338617325, 0.025403114035725594, -0.0193939246237278, 0.00920200627297163, -0.01613139547407627, 0.0037818849086761475, -0.0036982304882258177, 0.004555690102279186, 0.029864691197872162, 0.03968016430735588, -0.016382358968257904, -0.0033566406928002834, 0.0261420626193285, 0.015141482464969158, 0.014012145809829235, 0.02048143371939659, -0.04865909367799759, 0.008853444829583168, 0.002971481066197157, 0.0037365721073001623, -0.010003696195781231, 0.004778768867254257, -0.017651120200753212, -0.008212093263864517, -0.009522682055830956, -0.0028425136115401983, -0.02463627979159355, 0.028052175417542458, 0.01756746508181095, -0.018055450171232224, -0.02219635434448719, -0.004081647377461195, 0.004956535063683987, -0.019742485135793686, 0.01033831387758255, -0.02247520163655281, -0.00477179791778326, 0.009606336243450642, -0.02350694313645363, -0.00633683567866683, -0.018947767093777657, -0.03240221366286278, 0.004266384523361921, 0.03549743443727493, -0.007473144214600325, 0.032708946615457535, -0.005524689331650734, 0.010505623184144497, -0.00149445456918329, 0.007549827452749014, 0.03485608473420143, 0.027271399274468422, -0.004454607609659433, 0.01191380899399519, -0.0005202270112931728, 0.010024609044194221, 0.013105886988341808, -0.026156004518270493, -0.024329546838998795, 0.011934722773730755, 0.0023405859246850014, -0.007591655012220144, 0.0017750459956005216, 0.014723209664225578, 0.0432773120701313, -0.026337256655097008, 0.03689167648553848, -0.010108264163136482, -0.006016159895807505, -0.007173381745815277, 0.036584943532943726, -0.02530551701784134, 0.015978028997778893, 0.022210296243429184, 0.03089643269777298, 0.0011877210345119238, -0.029306994751095772, 0.024998782202601433, 0.0062775807455182076, 0.012464535422623158, -0.017386214807629585, -0.01620110683143139, 0.026002638041973114, -0.017218904569745064, 0.012443621642887592, 0.014235224574804306, 0.02854016050696373, 0.008944070897996426, -0.004970477428287268, 0.00649717403575778, 0.0038271979428827763, -0.02155500091612339, 0.0058662788942456245, 0.0020965933799743652, -0.005894163623452187, -0.01943575218319893, 0.005855822004377842, -0.01429099403321743, -0.004304726142436266, -0.024204064160585403, -0.008456085808575153, -0.03323876112699509, -0.0022621597163379192, 0.008449114859104156, 0.008511855266988277, 0.017023710533976555, -0.007354633416980505, 0.018320357427001, -0.007368575781583786, -0.020174700766801834, 0.0099618686363101, 0.004722999408841133, -0.027870923280715942, -0.0058662788942456245, -0.011042406782507896, 0.003107419703155756, 0.02515214867889881, 0.008260891772806644, 0.0006740295211784542, 0.006532030180096626, -0.008128438144922256, 0.006364720873534679, -0.005326009355485439, 0.01855737902224064, 0.04698599874973297, -0.013022232800722122, -0.004482492338865995, 0.004621916450560093, 0.0013785581104457378, 0.012541218660771847, -0.02802429161965847, -0.014116713777184486, 0.05373413860797882, -0.021973274648189545, 0.0015406388556584716, -0.02590504102408886, 0.020453549921512604, -0.02869352698326111, 0.012687614187598228, -0.0172467902302742, -0.01447224523872137, -0.014597727917134762, -0.014193397015333176, -0.0015127540100365877, -0.0017985738813877106, -0.022266065701842308, 0.016187164932489395, 0.006057987455278635, -0.006521573290228844, -0.02702043578028679, -0.0013471875572577119, 0.027968520298600197, 0.0548495315015316, 0.005448005627840757, -0.008930128067731857, 0.014430418610572815, -0.0261420626193285, 0.0021889619529247284, -0.009208977222442627, -0.047961968928575516, 0.030506044626235962, -0.01620110683143139, -0.0005372193991206586, -0.00461145956069231, 0.00311439111828804, -0.023492999374866486, 0.010268602520227432, 0.00021948439825791866, 0.01896170899271965, -0.027606017887592316, -0.008825560100376606, -0.0002984552120324224, -0.004932135809212923, 0.0057303402572870255, 0.040098436176776886, 0.026532450690865517, 0.04302635043859482, 0.023813676089048386, 0.027801211923360825, -0.01145370863378048, 0.012102032080292702, -0.027954578399658203, -0.02287953346967697, -0.005702455062419176, -0.0014674410922452807, 0.02243337593972683, -0.030394503846764565, 0.03081277757883072, 0.0016173222102224827, -0.025835329666733742, -0.018348241224884987, 0.011920779943466187, -0.011627988889813423, 0.0239949282258749, 0.006434433162212372, -0.014737151563167572, 0.019310269504785538, -0.035107046365737915, 0.007333720102906227, 0.03789553418755531, -0.014235224574804306, 0.005698969587683678, -0.003327013226225972, -0.0011171374935656786, -0.003166675101965666, 0.01673091948032379, 0.004492949228733778, -0.0065808286890387535, -0.007222180254757404, -0.0042071291245520115, -0.02958584390580654, -0.02566801942884922, -0.02223818190395832, -0.01494628842920065, 0.0041931867599487305, -0.012109003029763699, -0.007340691052377224, -0.02714591659605503, -0.013823922723531723, 0.009271717630326748, -0.012980405241250992, 0.006650540512055159, 0.00888132955878973, -0.031119510531425476, -0.0298925768584013, 0.0004662001156248152, 0.027633903548121452, 0.006019645370543003, 0.003823712235316634, 0.010596249252557755, 0.0027362024411559105, 0.00850488431751728, -0.010094321332871914, -0.04338885098695755, -0.006521573290228844, -0.018139105290174484, -0.008456085808575153, -0.014653497375547886, -0.024956954643130302, -0.010052494704723358, -0.023172324523329735, 0.01111909095197916, -0.0011946922168135643, -0.019031422212719917, 0.002608977723866701, -0.01780448667705059, 0.014960231259465218, 0.045285023748874664, 0.02191750518977642, 0.00828180555254221, 0.014402533881366253, -0.03719841316342354, 0.014625612646341324, -0.007222180254757404, -0.01498811598867178, -0.013782095164060593, 0.003907367121428251, 0.01199746411293745, 0.001986796734854579, -0.027452651411294937, 0.005967361386865377, -0.03747726231813431, 0.013796037994325161, -0.011558277532458305, 0.0004028055991511792, -0.0011685502249747515, 0.010463796555995941, 0.015490042977035046, 0.017581408843398094, 0.01512753963470459, 0.006636598147451878, -0.009104409255087376, -0.0056641134433448315, -0.024357430636882782, 0.038815733045339584, 0.002377184806391597, 0.00786353275179863, -0.0029174541123211384, 0.018180932849645615, -0.03616667166352272, -0.025654077529907227, 0.025528594851493835, -0.005820965860038996, 0.0364176370203495, -0.0008561525610275567, -0.005193556193262339, -0.02251702919602394, -0.019407866522669792, 0.00932051707059145, 0.007319777272641659, -0.016145337373018265, 0.017706889659166336, -0.019826140254735947, -0.002589806914329529, 0.025849271565675735, -0.013315023854374886, 0.009090466424822807, -0.027215629816055298, -0.029111800715327263, -0.014193397015333176, 0.008365459740161896, 0.020648743957281113, -0.00431169755756855, -0.015950143337249756, -0.01855737902224064, -0.014081857167184353, -0.0007263136212714016, -0.023576654493808746, 0.0220708716660738, -0.01576889120042324, 0.03580416738986969, 0.027118032798171043, 0.028289197012782097, 0.023674251511693, 0.0179996807128191, 0.008811618201434612, -0.0016521783545613289, -0.011558277532458305, -0.014778979122638702, -0.013342908583581448, -0.006866648327559233, 0.005949933547526598, 0.015559755265712738, 0.0030865061562508345, -0.024176178500056267, 0.010352256707847118, 0.022572798654437065, 0.02886083722114563, -0.007556798867881298, 0.006047530565410852, -0.026616105809807777, -0.043165773153305054, -0.020983362570405006, 0.025417055934667587, -0.006204382982105017, -0.021764138713479042, -0.031119510531425476, -0.0036006334703415632, 0.023730020970106125, -0.02011893130838871, 0.02303289994597435, 0.007556798867881298, 0.017107365652918816, 0.007298863958567381, 0.012039290741086006, -0.0008077897364273667, 0.005116872955113649, -0.030032001435756683, -0.015824662521481514, -0.027731500566005707, 0.0003315685025881976, 0.01891988143324852, -0.00703395763412118, 0.023088669404387474, 0.0005228412337601185, -0.0009742274996824563, -0.0032346444204449654, 0.01287583727389574, -0.04575906693935394, -0.017860256135463715, 0.026936780661344528, -0.01406791526824236, 0.0033252702560275793, -0.03931766003370285, -0.0022273038048297167, -0.006444889586418867, -0.012485449202358723, 0.0018404012080281973, 0.007445259485393763, 0.01700976863503456, -0.028317082673311234, -0.009153207764029503, 0.02494301274418831, -0.020132873207330704, 0.017623236402869225, 0.033629149198532104, 0.013809979893267155, -0.00908349547535181, 0.014360706321895123, -0.01776265911757946, -0.0387878492474556, 0.01880834251642227, -0.009104409255087376, 0.0026943751145154238, 0.034744542092084885, -0.016814574599266052, -0.0024033270310610533, -0.0023754420690238476, -0.018529493361711502, -0.020551146939396858, -0.04146479815244675, 0.01812516339123249, 0.00758468359708786, 0.007982042618095875, -0.005894163623452187, -0.022293951362371445, -0.02279587835073471, 0.005841879639774561, -0.01245059259235859, 0.007110640872269869, -0.007905359379947186, -0.015280907042324543, -0.00021109715453349054, 0.02326992154121399, 0.0036041189450770617, -0.0015223394148051739, 0.0010482966899871826, 7.52673513488844e-05, -0.0022412461694329977, 0.002638605423271656, 0.004067705012857914, -0.007159439381211996, 0.017469868063926697, 0.026281487196683884, -0.01915690302848816, -0.002898283302783966, 0.0158525463193655, 0.014723209664225578, -0.03081277757883072, -0.0018473723903298378, -0.008644308894872665, 0.029808921739459038, -0.01576889120042324, -0.00922291912138462, 0.005113387480378151, 0.0061172423884272575, 0.016758805140852928, -0.03585993871092796, -0.01636841706931591, -0.010526536963880062, 0.005489833187311888, 0.008497913368046284, 0.007340691052377224, -0.007326748687773943, -0.022684339433908463, -0.0002590242656879127, 0.006009188946336508, -0.01780448667705059, -0.008156323805451393, 0.006085872184485197, 0.0387878492474556, -0.03348972275853157, -0.0034960650373250246, -0.0015310534508898854, 0.0012269341386854649, -0.003886453341692686, -0.005855822004377842, -0.0012635330203920603, 0.004552204627543688, 0.03304356709122658, 0.00231967237778008, 0.02610023505985737, 0.014151569455862045, 0.01073567382991314, -0.042524419724941254, 0.023339632898569107, -0.024803588166832924, 0.00115983618889004, 0.008755847811698914, 0.0001248283515451476, -0.024204064160585403, -0.008783732540905476, 0.021373750641942024, 0.004541747737675905, -0.0006749008898623288, 0.007828676141798496, 0.02905603125691414, 0.03229067474603653, 0.01107726339250803, -0.015545813366770744, 0.0017384471138939261, -0.00266997586004436, -0.003747028997167945, 0.0014221281744539738, 0.013447476550936699, -0.00858156755566597, 0.0034995507448911667, -0.0035727485083043575, 0.012590017169713974, -0.015657352283596992, -0.03134258836507797, -0.013809979893267155, -0.005451491568237543, 0.00612769927829504, -0.0020843937527388334, 0.00987821351736784, 0.0039979927241802216, -0.012987376190721989, -0.01943575218319893, 0.026616105809807777, -0.010115235112607479, -2.7912097721127793e-05, 0.02095547690987587, -0.013809979893267155, 0.007312806323170662, 0.026379084214568138, -0.017065538093447685, -0.01647995598614216, -0.0155876399949193, -0.014569842256605625, -0.040851328521966934, -0.015559755265712738, -0.005514232441782951, 0.03747726231813431, 0.0007241351413540542, -0.011523420922458172, -0.019421810284256935, 0.006762079894542694, -0.03956862539052963, -0.031119510531425476, -0.020411722362041473, 0.019352097064256668, 0.032039713114500046, 0.02894449047744274, 0.005259783007204533, 0.036584943532943726, -0.0047125425189733505, 0.009515711106359959, -0.04706965386867523, 0.0033043567091226578, -0.013858778402209282, -0.024050697684288025, 0.024524740874767303, -0.019449694082140923, -0.05128026753664017, -0.0039561656303703785, 0.015782834962010384, 0.0034193817991763353, 0.01752563938498497, -0.0022656454239040613, 0.003980564884841442, 0.010756587609648705, -0.0038027986884117126, 0.004343067761510611, 0.02200116030871868, 0.020620858296751976, -0.004607974085956812, -0.03633398190140724, 0.0005938605172559619, 0.02483147382736206, -0.005796566605567932, 0.007995985448360443, 0.003907367121428251, 0.006179983727633953, -0.015294848941266537, -0.013356851413846016, -0.01307103130966425, -0.008797675371170044, 0.010289515368640423, 0.00576868187636137, 0.005092473700642586, 0.0213179811835289, 0.00019410481036175042, 0.030282964929938316, -0.01399123203009367, -0.005531660281121731, -0.0012713755713775754, -0.001685291645117104, 0.016940057277679443, 0.01307103130966425, 0.028916606679558754, 0.003949194215238094, -0.02326992154121399, 0.007835647091269493, 0.0037226297426968813, -0.0033165563363581896, -0.025249745696783066, -0.00904166791588068, -0.00463934475556016, -0.023172324523329735, 0.009062581695616245, -0.0007376418798230588, -0.0074522304348647594, 0.004482492338865995, -0.009648163802921772, -0.006232267711311579, 0.016549667343497276, -0.006162555422633886, -0.0044092945754528046, -0.00622878223657608, -0.02091364935040474, -0.002441668650135398, 0.015908315777778625, -0.046484071761369705, -0.015629468485713005, 0.01804150827229023, 0.008497913368046284, 0.007250065449625254, 0.2105865180492401, 0.020244412124156952, -0.004203643649816513, 0.04698599874973297, 0.009348401799798012, -0.007459201849997044, 0.03446569666266441, 0.007751992903649807, -0.018585262820124626, 0.01664726436138153, -0.012562132440507412, -0.0030289937276393175, -0.019254500046372414, -0.0069259037263691425, 0.016675150021910667, -0.02579350210726261, -0.035943593829870224, -0.015978028997778893, -0.014179454185068607, 0.01883622817695141, 0.010610192082822323, -0.0069259037263691425, -0.01748381182551384, -0.01307103130966425, 0.022614626213908195, 0.002488724421709776, -0.006417004857212305, 0.008372430689632893, 0.028526218608021736, 0.007114126347005367, -0.0045382617972791195, -0.005451491568237543, 0.013621756806969643, -0.012464535422623158, -0.018571320921182632, -0.010652018710970879, 0.015796776860952377, -0.01353113166987896, 0.004621916450560093, 0.01149553619325161, -0.005162185989320278, -0.012499391101300716, -0.007340691052377224, -0.01740015670657158, 0.01394940447062254, -0.0024068125057965517, -0.03585993871092796, 0.02279587835073471, -0.024245891720056534, 0.018055450171232224, -0.0030080799479037523, 0.005357380025088787, 0.022335778921842575, 0.020453549921512604, -0.007891417481005192, 0.00691544683650136, -0.01225539855659008, -0.007807762827724218, -0.022642511874437332, -0.01433282159268856, -0.0035466065164655447, 0.016744861379265785, -0.01341262087225914, 0.011607076041400433, -0.03524647280573845, 0.013440505601465702, -0.024538682773709297, 0.0347166582942009, 0.0006788222235627472, -0.006427461747080088, -0.01999344862997532, 0.0003374504449311644, -0.023520885035395622, 0.00842122919857502, -0.02538917027413845, -0.006354263983666897, 0.0076543958857655525, 0.005681541748344898, 0.021694425493478775, 0.010150091722607613, -0.0035762342158704996, 0.0018613148713484406, -0.01700976863503456, -0.019366038963198662, 0.0010509109124541283, -0.015016000717878342, 0.03323876112699509, -0.010777500458061695, -0.009104409255087376, -0.023799734190106392, 0.0035256927367299795, 0.02279587835073471, -0.018501609563827515, -0.026351198554039, 0.0015650381101295352, -0.022266065701842308, 0.00816329475492239, 0.024329546838998795, -0.006012674421072006, -0.0381464958190918, -0.014304936863481998, 0.056299544870853424, -0.004496434703469276, 0.023060783743858337, -0.008316661231219769, -0.004838024266064167, 0.0019135989714413881, 0.03488396853208542, 0.00886041671037674, 0.0016347502823919058, -0.0016042512143030763, -0.04514559730887413, 0.011627988889813423, -0.00252009485848248, -0.0006566014490090311, 0.013287139125168324, 0.022600684314966202, -0.017692947760224342, -0.0046323733404278755, -0.015796776860952377, 0.023660309612751007, -0.0024451541248708963, 0.02195933274924755, 0.013775124214589596, -0.025974752381443977, -0.03887150436639786, -0.008609452284872532, 0.03521858528256416, -0.03608301654458046, -0.03284837305545807, 0.026936780661344528, 0.004391866270452738, 0.012889779172837734, -0.0217501949518919, -0.00461145956069231, 0.008184208534657955, 0.022684339433908463, 0.005326009355485439, -0.0060893576592206955, -0.0137123828753829, 0.00966210663318634, 0.029279109090566635, 0.012687614187598228, 0.005890678148716688, 0.0016181936953216791, -0.003536149626597762, 0.005033218301832676, -0.01592225953936577, -0.013586901128292084, -0.02894449047744274, 0.013921519741415977, 0.012868866324424744, 0.024929070845246315, 0.0034176388289779425, 0.04522925242781639, 0.006368206348270178, -0.02103913202881813, -0.027926694601774216, 0.012053233571350574, 0.017386214807629585, -0.038704194128513336, -6.372127973008901e-05, 0.025458883494138718, 0.01447224523872137, -0.024329546838998795, -0.022544914856553078, -0.1784631460905075, 0.019589118659496307, 0.006085872184485197, 0.0010918667539954185, 0.018975650891661644, 0.016661208122968674, 0.02031412534415722, 0.004897279664874077, -0.012645786628127098, -0.005535145755857229, -0.003924794960767031, -0.00472997035831213, -0.009146235883235931, -0.007291892543435097, 0.010582306422293186, -0.018933825194835663, -0.017023710533976555, 0.028038233518600464, 0.04746004194021225, 0.0006905861664563417, 0.02219635434448719, -0.040851328521966934, -0.0005010562017560005, 0.0015624238876625896, 0.014890518970787525, 0.0029366249218583107, -0.0056919981725513935, 0.022530972957611084, 0.00899984035640955, -0.03772822394967079, -0.0012400051346048713, 0.002424240577965975, 0.03552531823515892, 0.0016408500960096717, 0.020049218088388443, 0.007424345705658197, 0.00513081531971693, 0.016661208122968674, -0.010094321332871914, 0.010108264163136482, 0.02978103794157505, 0.01975642703473568, 0.0003128333482891321, 0.004865908995270729, 0.007159439381211996, 0.00633683567866683, 0.019770370796322823, -0.014444360509514809, 0.013600843958556652, -0.013231368735432625, 0.030924316495656967, -0.024413200095295906, -0.006131185218691826, 0.007026986218988895, 0.007933244109153748, -0.01042196899652481, 0.0011894638882949948, 0.03098008595407009, -0.005437548737972975, -0.019059306010603905, 0.006413519382476807, -0.012764297425746918, 0.018180932849645615, 0.011363083496689796, -0.007368575781583786, -0.027159860357642174, 0.01413065567612648, 0.0036773167084902525, 0.0019379982259124517, 0.009892156347632408, -0.014611669816076756, 0.010923895984888077, 0.0004296012339182198, 0.009689991362392902, 0.014444360509514809, 0.01688428595662117, -0.030589697882533073, 0.006270609330385923, 0.02359059639275074, 0.0035291784442961216, 0.025417055934667587, -0.005782624240964651, -0.004743912722915411, 0.0019920251797884703, -0.01784631423652172, 0.01696794107556343, 0.01740015670657158, 0.010868126526474953, -0.01664726436138153, 0.005075045861303806, 0.033629149198532104, -0.014695324935019016, -0.0030377076473087072, 0.013050117529928684, 0.01613139547407627, -0.011481593362987041, 0.0298925768584013, -0.004573117941617966, 0.01656361110508442, -0.0074661727994680405, 0.005371322389692068, 0.011328226886689663, -0.025012725964188576, -0.011070291511714458, 0.03652917593717575, 0.0319281704723835, 0.01707947999238968, 0.01581071875989437, 0.04107441008090973, -0.020620858296751976, -0.013768153265118599, 0.011014522053301334, 0.016396300867199898, 0.0029000260401517153, -0.012262370437383652, 0.044448476284742355, 0.005392236169427633, -0.03212336450815201, 0.018571320921182632, -0.01700976863503456, 0.04634464904665947, -0.03480031341314316, -0.03206759691238403, 0.01999344862997532, 0.014095799997448921, -0.0006975573487579823, -0.11282216757535934, -0.021373750641942024, 0.01887805387377739, 0.023465115576982498, -0.004994876682758331, 0.024956954643130302, -0.007738050539046526, 0.0351349301636219, -0.02562619186937809, 0.0385647714138031, -0.017135251313447952, -0.01947757974267006, 0.009571480564773083, 0.0021314495243132114, 0.018111221492290497, -0.013154685497283936, -8.828392310533673e-05, -0.00853973999619484, -0.02127615362405777, 0.04087921604514122, 0.018613148480653763, -0.019728543236851692, 0.017037654295563698, -0.018180932849645615, -0.019407866522669792, -0.010812357068061829, -0.008295747451484203, 0.0006810007034800947, 0.01872468739748001, -0.0004997490905225277, 0.01494628842920065, 0.011049378663301468, 0.015880431979894638, -0.006769051309674978, 0.0020756798330694437, -0.02706226333975792, -0.011474622413516045, -0.038062844425439835, 0.010847212746739388, -0.018376126885414124, -0.012959491461515427, 0.0049216789193451405, -0.0024050697684288025, -0.0046846577897667885, -0.008016899228096008, -0.010554421693086624, -0.02219635434448719, 0.020648743957281113, 0.010589278303086758, -0.012917664833366871, -0.01107726339250803, -0.02738293819129467, -0.01199746411293745, -0.029195455834269524, 0.027257457375526428, -0.010247688740491867, 0.03524647280573845, 0.0027518877759575844, -0.013301081024110317, 0.015336676500737667, 0.0045382617972791195, 0.0022551885340362787, 0.0013498017797246575, 0.031788747757673264, -0.004886822775006294, 0.011851068586111069, 0.005761710461229086, -0.012276312336325645, -0.006629627197980881, -0.004918193444609642, -0.015782834962010384, 0.021094901487231255, -0.02294924482703209, 0.009327488020062447, -0.014060944318771362, 0.0036494319792836905, -0.025375228375196457, -0.01479292195290327, 0.02566801942884922, 0.01859920658171177, -0.020286239683628082, 0.002833799459040165, 0.009355372749269009, -0.04308211803436279, 0.02654639258980751, 0.004656772594898939, 0.012387852184474468, -0.012401794083416462, 0.026211773976683617, -0.034549348056316376, 0.009327488020062447, 0.009348401799798012, 0.030310850590467453, -0.01728861778974533, 0.002565407659858465, 0.03137047588825226, -0.02059297449886799, 0.012666700407862663, 0.039624396711587906, -0.019129019230604172, -0.033350300043821335, -0.013565987348556519, -0.03524647280573845, 0.012157801538705826, 0.0014125427696853876, 0.007772906683385372, -0.00828180555254221, -0.009871242567896843, -0.011844096705317497, -0.022614626213908195, -0.013022232800722122, -0.0026769472751766443, -0.018376126885414124, 0.007528914138674736, -0.015824662521481514, -0.037505146116018295, -0.029279109090566635, 0.000970741908531636, 0.0016391073586419225, 0.0019519407069310546, 0.022419432178139687, -0.008365459740161896, -0.013126800768077374, -0.0032102451659739017, -0.01744198426604271, 0.03524647280573845, 0.005629257299005985, -0.00034071822301484644, -0.034075308591127396, 0.03691956400871277, -0.008351517841219902, -0.036696482449769974, 0.025417055934667587, -0.0036354893818497658, 0.010115235112607479, 0.009313545189797878, -0.032708946615457535, -0.04082344472408295, 0.010582306422293186, 0.008023870177567005, 0.015141482464969158, 0.010979666374623775, -0.016256876289844513, -0.006382148712873459, 0.017497753724455833, -0.01688428595662117, -0.008274833671748638, -0.007194295525550842, -0.0013001319020986557, 0.008100553415715694, 0.0038585683796554804, 0.01433282159268856, 0.006814364343881607, 0.009592394344508648, -0.02933488041162491, -0.02894449047744274, 0.006521573290228844, -0.012729441747069359, 0.012394823133945465, 0.01788814179599285, 0.0004160944954492152, -0.011439766734838486, 0.03276471793651581, 0.010965723544359207, 0.019784312695264816, -0.031482014805078506, 0.015838604420423508, -0.030282964929938316, -0.048157162964344025, -0.002216846914961934, -0.0017323473002761602, -0.03237432986497879, 0.0010387112852185965, -0.03569262847304344, 0.03820226714015007, 0.011091205291450024, 0.01447224523872137, 0.008337575010955334, -0.0002666490327101201, -0.012701557017862797, 0.0021593342535197735, 0.015294848941266537, 0.024371372535824776, -0.015099654905498028, -0.01394940447062254, 0.018306415528059006, 0.01808333583176136, -0.0008461314137093723, -0.0028738840483129025, 0.02781515382230282, 0.008184208534657955, 0.0014805120881646872, -0.01125851459801197, -0.0035204642917960882, -0.006629627197980881, 0.01095875259488821, 0.019575176760554314, 0.026337256655097008, -0.03109162673354149, 0.02080211043357849, 0.01880834251642227, 0.026295429095625877, 0.00585930747911334, 0.006047530565410852, -0.0005489832838065922, 0.003530921181663871, -0.038062844425439835, 0.02331174910068512, -0.026337256655097008, -0.0050436751917004585, 0.011112119071185589, 0.03201182559132576, -0.0006112885312177241, 0.012583046220242977, -0.0030098226852715015, 0.011634960770606995, -0.011286399327218533, 0.009097437374293804, -0.02007710374891758, -0.0319281704723835, -0.022921361029148102, -0.008958013728260994, -0.006207868456840515, 0.011725585907697678, 0.02043960802257061, 0.0035291784442961216, 0.02262856997549534, 0.01680063270032406, 0.0050576175563037395, -0.014304936863481998, 0.008553682826459408, -0.014095799997448921, 0.019937679171562195, -0.004785740282386541, -0.003018536837771535, -0.012924635782837868, -0.007180353160947561, -0.03033873438835144, -0.009167149662971497, 0.012408765964210033, -0.0049495636485517025, 0.07484298199415207, 0.04196672514081001, -0.023102611303329468, 0.01149553619325161, -0.014960231259465218, -0.015378504060208797, 0.010122206062078476, -0.015197251923382282, 0.020258355885744095, -0.029864691197872162, 0.015991970896720886, -0.005322523880749941, -0.024650221690535545, -0.021164612844586372, -0.014876576140522957, 0.003837654832750559, 0.007264007814228535, 0.0022185896523296833, -0.014444360509514809, 0.0014839976793155074, 0.017497753724455833, -0.013928490690886974, 0.03360126540064812, -0.007633482106029987, -0.03295991197228432, -0.0158525463193655, 0.0323464460670948, 0.01712130755186081, -0.0010744387982413173, -0.023855503648519516, 0.0024800102692097425, 0.012576074339449406, -0.01947757974267006, 0.001583337550982833, -0.007473144214600325, -0.0019031420815736055, -0.006758594419807196, -0.008546711876988411, -0.018069393932819366, 0.011237600818276405, -0.012896751053631306, 0.0009106151410378516, -0.030784891918301582, -0.020997304469347, 0.014402533881366253, -0.0006139027536846697, -0.008811618201434612, -0.023674251511693, -0.03415895998477936], "9a2a44f9-0f75-4c92-b254-e1c451a10333": [-0.019912511110305786, -0.004217051900923252, 0.0008882100810296834, -0.0053240712732076645, -0.011139382608234882, 0.013948444277048111, -0.016895882785320282, -0.02377324178814888, -0.021974334493279457, -0.04325678199529648, 0.03052605874836445, 0.017061935737729073, 0.016120970249176025, -0.004874344449490309, 0.007202544715255499, 0.0022849570959806442, 0.02154536359012127, 0.005202990956604481, 0.01761544495820999, -0.03013860248029232, -0.01740787923336029, -0.013560987077653408, -0.014308225363492966, 0.0053552063181996346, -0.011679054237902164, 0.013733958825469017, 0.030830489471554756, -0.006482982076704502, -0.01311126071959734, 0.013263476081192493, 0.021725255995988846, -0.018473384901881218, -0.02626403421163559, -0.00716795027256012, -0.01946970261633396, 0.00024691721773706377, 0.008392591029405594, -0.0061266603879630566, 0.002253822283819318, -0.016370048746466637, 0.028561100363731384, 0.00013891795242670923, -0.012211807072162628, 0.013353421352803707, -0.007053789217025042, 0.026402411982417107, 0.005753041245043278, -0.01812744140625, 0.001309396349824965, -0.008766209706664085, 0.004306997172534466, 0.03431760147213936, -0.02690057083964348, -0.003698136657476425, -0.020286129787564278, 0.01298672053962946, -0.01808592863380909, 0.00543823279440403, 0.015207679010927677, 0.014239036478102207, 0.01753241941332817, 0.0114853261038661, -0.010163821280002594, -0.008655508048832417, -0.02566901221871376, -0.02659614011645317, -0.011817432008683681, -0.007119518239051104, -0.02301216498017311, -0.018680952489376068, 0.011506082490086555, 0.03506483882665634, 0.004452293738722801, -0.009845553897321224, 0.002707008272409439, -0.01344336662441492, -0.003563218517228961, 0.005196072161197662, 0.005836067721247673, -0.019746458157896996, 0.007119518239051104, -0.0037085148505866528, -0.009153665974736214, 0.004127106629312038, 0.018833167850971222, 0.05053543299436569, -0.0054313139989972115, 0.0033348959404975176, -0.02187746949493885, 0.0017262583132833242, -0.004144403617829084, 0.019414352253079414, 0.019082246348261833, 0.028588775545358658, 0.007908269762992859, -0.0017781498609110713, 0.01293828897178173, -0.004632184281945229, -0.0006036714767105877, -0.002461388474330306, -0.025489121675491333, 0.02162839099764824, -0.02436826378107071, -0.010295280255377293, -0.03478808328509331, 0.012045754119753838, 0.033791765570640564, -0.00801205262541771, 0.007818324491381645, 0.026526952162384987, -0.006507198326289654, 0.028588775545358658, 0.00032951124012470245, -0.0075415694154798985, -0.013789310120046139, -0.014086821116507053, 0.023621026426553726, -0.02739872969686985, -0.00891150627285242, -0.018307331949472427, 0.008551724255084991, 0.022375628352165222, 0.02018926478922367, -0.033404309302568436, 0.009513447992503643, -0.006382658611983061, -0.0008700480102561414, -0.0019269055919721723, 0.016549939289689064, -0.007790648844093084, 0.02773083560168743, 0.013069747015833855, 0.01490324828773737, -0.007423948496580124, -0.03763865679502487, 0.01108403131365776, -0.04037852957844734, 0.009395826607942581, -0.015691999346017838, -0.029142284765839577, 0.016965072602033615, 0.024755720049142838, -0.017850687727332115, -0.0247418824583292, 0.004621806088835001, 0.011208571493625641, 0.002148309489712119, 0.026291709393262863, 0.023344270884990692, -0.021739093586802483, -0.0029854928143322468, -0.0222926028072834, -0.008607075549662113, 0.02618100866675377, 0.019275974482297897, 0.012197969481348991, 0.0019096083706244826, 0.01782301254570484, -0.017850687727332115, 0.011312354356050491, 0.02057672291994095, 0.008420266211032867, 0.0031100325286388397, -0.0006430225912481546, -0.012896775268018246, 0.02313670516014099, 0.003116951324045658, -0.026693005114793777, -0.0070226541720330715, -0.011229327879846096, 0.006285794544965029, 0.04497266188263893, -0.016508426517248154, 0.02280459925532341, 0.0130489906296134, 0.007001897320151329, 0.032712422311306, 0.0087246960029006, -0.016882045194506645, -0.01888851821422577, 0.0389670804142952, 0.005832608323544264, 0.00908447802066803, 0.024921773001551628, -0.02099185436964035, -0.03381944075226784, 0.020507533103227615, 0.009596474468708038, 0.005185693968087435, -0.01222564559429884, 0.002682792255654931, 0.010468252003192902, -0.027813861146569252, -0.00011156679829582572, -0.6239160895347595, 0.004466131329536438, 0.02622252143919468, -0.03520321473479271, 0.023109029978513718, 0.016799019649624825, 0.011056356132030487, 0.004085593391209841, -0.008842317387461662, 0.02220957539975643, 0.0005241044564172626, 0.01361633837223053, -2.1499850845430046e-05, -0.008198861964046955, -0.013055909425020218, -0.030083252117037773, 0.01395536307245493, -0.011340029537677765, -0.006157795432955027, 0.009561879560351372, -0.010447495616972446, 0.03744493052363396, -0.005458989180624485, 0.002326470334082842, 0.02086731418967247, 0.002758899936452508, 0.008703939616680145, -0.013526393100619316, -0.010931815952062607, 0.00929204374551773, -0.027260351926088333, 0.013623257167637348, 0.01243321131914854, 0.004303537774831057, 0.04851512238383293, -0.006368821021169424, -0.013906930573284626, 0.020715100690722466, 0.02090882882475853, 0.043229106813669205, -0.02074277587234974, -0.004639103077352047, 0.0078114052303135395, 0.017504744231700897, 0.002056634519249201, -0.00037102444912306964, -0.006258118897676468, 0.02057672291994095, -0.003549380926415324, -0.020050888881087303, 0.004545698408037424, -0.022776924073696136, 0.0057184468023478985, 0.014405089430510998, 0.0158857274800539, -0.0013699365081265569, 0.03988037258386612, -0.007728378754109144, 0.0018905815668404102, 0.01686820760369301, 0.024686532095074654, -9.199936175718904e-05, -0.011755161918699741, -0.04012945294380188, -0.03683606907725334, 0.015498271211981773, -0.012723803520202637, -0.03119027055799961, 0.004241268150508404, 0.0035078676883131266, 0.012703047133982182, 0.013235799968242645, -0.011976566165685654, -0.0062996321357786655, 0.004182457458227873, 0.006624819245189428, 0.0402124784886837, 0.0020254994742572308, 0.0005059424438513815, 0.024977125227451324, 0.011845107190310955, -0.005732284858822823, -0.010163821280002594, -0.031051892787218094, 0.04444682598114014, 0.008717777207493782, -0.024589667096734047, -0.012799911201000214, 0.008233456872403622, -0.0002410794113529846, 0.018680952489376068, -0.0061266603879630566, -0.007970539852976799, -0.03343198448419571, 0.028395047411322594, 0.023454973474144936, 0.009458096697926521, 0.0008553454536013305, 0.008890748955309391, -0.014515791088342667, -0.02955741621553898, -0.03794308751821518, 6.302659312495962e-05, 0.00956879835575819, 0.017560094594955444, 0.008150430396199226, -0.018902355805039406, -0.019234461709856987, 0.019884835928678513, -0.01580270193517208, -0.005092289298772812, 0.0005119964480400085, -0.028132129460573196, -0.017989065498113632, -0.009319718927145004, -0.02861645072698593, 0.013284232467412949, -0.004064836539328098, -0.01446044072508812, -0.009762527421116829, -0.009471934288740158, 0.007790648844093084, -0.003009708831086755, -0.010841870680451393, 0.005600825883448124, 0.011651379056274891, 0.010731169022619724, -0.0023627944756299257, 0.010094632394611835, 0.0009262638632208109, 0.0231782179325819, -0.007963620126247406, 0.013671688735485077, -0.0029024663381278515, 0.029391365125775337, -0.01511081401258707, 2.3067408619681373e-05, 0.001762582454830408, 0.005057694856077433, -0.037583306431770325, 0.0158857274800539, 0.0026326305232942104, 0.005279098637402058, -0.032435666769742966, 0.0017452852334827185, 0.00952728558331728, -0.025406094267964363, 0.019718782976269722, 0.0016302589792758226, -0.014529629610478878, -0.038219843059778214, -0.01909608393907547, -0.004971208982169628, 0.028976231813430786, -0.012121861800551414, 0.004787858575582504, 0.008005133830010891, -0.042980026453733444, -0.009451177902519703, -0.012786073610186577, -0.008191943168640137, 0.011436893604695797, 0.0003682136593852192, 0.007873674854636192, -0.015664324164390564, -0.01765695959329605, -0.031079567968845367, 0.010717331431806087, -0.0033279769122600555, -0.01854257471859455, -0.014377414248883724, -0.00672514270991087, 0.026582302525639534, 0.026167171075940132, -0.016978910192847252, 0.008752372115850449, -0.015055463649332523, 0.010772681795060635, 0.0008661561878398061, 0.00040021343738771975, 0.027813861146569252, 0.025267716497182846, -0.003272626083344221, -0.017020422965288162, 0.020645910874009132, 0.0063653611578047276, 0.020092401653528214, 0.0147925466299057, -0.03069211170077324, -0.022500168532133102, -0.001859446638263762, 0.014917085878551006, -0.007292489986866713, 0.0041582416743040085, -0.018390359356999397, -0.005002343561500311, -0.028727153316140175, -0.019359001889824867, -0.010738087818026543, 0.031051892787218094, 0.0097417701035738, 0.0028384667821228504, -0.015830377116799355, -0.00952728558331728, 0.020922666415572166, -0.0411534458398819, 0.015290704555809498, -0.02099185436964035, 0.01808592863380909, 0.008627831935882568, -0.0073685976676642895, -0.007922107353806496, -0.002238254761323333, -0.030498383566737175, 0.006005580071359873, 0.017629282549023628, -0.01580270193517208, 0.02119942009449005, -0.011284678243100643, -0.0025219283998012543, 0.02225109003484249, 0.007769891992211342, 0.01707577332854271, 0.005310233682394028, 0.00035740292514674366, 0.02587657794356346, -0.02225109003484249, 0.008461778983473778, 0.003442138433456421, -0.022652383893728256, -0.003718893276527524, 0.002867872128263116, 0.009900904260575771, 0.0021223637741059065, 0.01311126071959734, 0.02836737036705017, 0.03152237832546234, -0.020244617015123367, 0.023593349382281303, -0.021559203043580055, 0.0011762080248445272, -0.0002192417305195704, 0.026568464934825897, -0.021766768768429756, 0.02457582950592041, 0.010994086042046547, 0.03575672581791878, 0.012703047133982182, -0.01494476106017828, 0.033487334847450256, 0.0013811796670779586, 0.016453076153993607, 0.0025807388592511415, -0.006749358493834734, 0.026859058067202568, -0.011935052461922169, -0.003943756688386202, 0.007444705348461866, 0.03536926954984665, 0.015525946393609047, -0.008690102025866508, 0.0018905815668404102, 0.006372280418872833, -9.95939080894459e-06, 0.02398080751299858, 0.002622252097353339, -0.005794554483145475, -0.009257449768483639, -0.00753465062007308, -0.0026326305232942104, 0.0014633411774411798, -0.027218839153647423, -0.010004687123000622, -0.02191898413002491, -0.01685437001287937, -0.004860506858676672, -0.01551210880279541, 0.026997433975338936, -0.003860729979351163, 0.027495592832565308, -0.01841803453862667, -0.02158687822520733, 0.019594242796301842, 0.006334226578474045, -0.01220488827675581, -0.0013042071368545294, -0.00591217540204525, 0.0019269055919721723, 0.03343198448419571, 0.026748355478048325, -0.008503292687237263, 0.003673920640721917, -0.014239036478102207, 0.012274077162146568, -0.005663095973432064, 0.0026706841308623552, 0.040959715843200684, -0.013927686959505081, -0.027121974155306816, -0.005746122449636459, 0.010821114294230938, 0.006863520015031099, -0.019912511110305786, -0.00773529801517725, 0.049926575273275375, -0.01138154324144125, -0.011167057789862156, -0.017477069050073624, 0.019109921529889107, -0.030443033203482628, 0.006123200990259647, -0.028588775545358658, -0.017989065498113632, -0.0120319165289402, -0.016702154651284218, -0.013983038254082203, -0.0015273407334461808, -0.019621917977929115, 0.02263854630291462, 0.00868318323045969, -0.007340922020375729, -0.01765695959329605, -1.4810708307777531e-05, 0.027038948610424995, 0.04787858948111534, 0.010322955437004566, -0.004621806088835001, 0.014474278315901756, -0.025018637999892235, -0.0028730612248182297, -0.023164380341768265, -0.026042630895972252, 0.021974334493279457, -0.025018637999892235, -0.013256557285785675, 0.006967303343117237, 0.0234411358833313, -0.0019009598763659596, 0.017809174954891205, 0.00012659371714107692, 0.012274077162146568, -0.02803526632487774, -0.02309519238770008, 0.003193059004843235, -0.01863943785429001, -0.000398051313823089, 0.03193750977516174, 0.0024838747922331095, 0.044668231159448624, 0.031245620921254158, 0.025475284084677696, -0.011492244899272919, 0.004912398289889097, -0.0322972908616066, -0.005756500642746687, -0.003711974248290062, -0.0053725033067166805, 0.016715992242097855, -0.007624595891684294, 0.02461734227836132, 0.010447495616972446, -0.015733512118458748, -0.006617899984121323, -0.006669791880995035, -0.0033245175145566463, 0.010862627997994423, 0.00649336026981473, -0.010800357908010483, -0.007845999673008919, -0.021863631904125214, 0.0009470204822719097, 0.03464970737695694, -0.015650486573576927, -0.011789755895733833, -0.001594799803569913, -0.0066628726199269295, -0.017906038090586662, 0.022417142987251282, -0.004230889491736889, 0.0018646357348188758, -0.020756613463163376, -0.0015048544155433774, -2.079715341096744e-05, -0.03575672581791878, -0.03401317074894905, -0.0026326305232942104, -0.00862091314047575, -0.007991296239197254, -0.02111639454960823, -0.012682290747761726, -0.007506974972784519, 0.006119741592556238, -0.01775382272899151, 0.00034897055593319237, 0.008351077325642109, -0.032684747129678726, -0.04964981973171234, 0.01388617418706417, 0.025364581495523453, 0.013941525481641293, 0.014640331268310547, 0.015096976421773434, 0.0010464792139828205, 0.01796138845384121, 0.001996094360947609, -0.02579355053603649, 0.0005634555709548295, -0.02508782595396042, -0.014806384220719337, -0.02845039777457714, -0.020687423646450043, -0.007347841281443834, -0.01159602776169777, 0.01652226410806179, 0.008842317387461662, -0.016425399109721184, -0.0005007532890886068, -0.007873674854636192, 0.0048051560297608376, 0.034760408103466034, 0.0194835402071476, 0.028215156868100166, 0.017269501462578773, -0.05036938190460205, 0.01446044072508812, -0.013498716987669468, -0.005787635687738657, -0.021434662863612175, 0.007126437034457922, -0.0037777035031467676, 0.0032345722429454327, -0.005877580959349871, 0.010350631549954414, -0.03512018918991089, -0.003687758231535554, -0.020922666415572166, -0.004134025424718857, -0.011478407308459282, 0.01639772392809391, -0.0028747909236699343, -0.01192813366651535, 0.02065974846482277, -0.017670797184109688, -0.022583195939660072, 0.023164380341768265, -0.040323179215192795, 0.042980026453733444, 0.006261578295379877, 0.0023731726687401533, 0.010239928960800171, 0.015221516601741314, -0.015332218259572983, -0.022417142987251282, 0.014432764612138271, 0.0019044192740693688, 0.02416069805622101, 0.007873674854636192, -0.007209463510662317, -0.015138490125536919, -0.012737642042338848, 0.006368821021169424, 0.0018092847894877195, -0.0033141393214464188, 0.01576118916273117, -0.026125656440854073, -0.0006062660831958055, 0.017048098146915436, -0.003763865912333131, -0.00611282279714942, -0.03390246629714966, -0.01732485368847847, -0.005441692192107439, -0.00490202009677887, 0.015927240252494812, -0.02680370584130287, -0.01203883532434702, -0.010163821280002594, -0.020120076835155487, 0.01627318561077118, -0.00790135096758604, -0.0002380524092586711, -0.011872782371938229, 0.05333065986633301, 0.02583506517112255, 0.03398549556732178, 0.02115790732204914, 0.021559203043580055, 0.01382390409708023, -0.008095079101622105, -0.0154705960303545, 0.0010309118079021573, -0.00733400322496891, -0.002053174888715148, 0.010101552121341228, 0.02268005907535553, 0.004248186945915222, -0.019967861473560333, 0.012578507885336876, 0.010053119622170925, 0.020673586055636406, -0.002786575350910425, 0.001923446194268763, -0.020452182739973068, -0.06049861013889313, -0.007050329819321632, 0.03700212389230728, 0.012467805296182632, -0.0008004268747754395, -0.03974199667572975, 0.013062828220427036, 0.023026002570986748, -0.013083585537970066, 0.02490793541073799, 0.008842317387461662, 0.030027899891138077, 0.008890748955309391, 0.019870998337864876, -0.0045041851699352264, 0.018611762672662735, -0.026997433975338936, -0.006462225690484047, -0.027633970603346825, -0.014079902321100235, 0.019870998337864876, 0.023621026426553726, 0.02457582950592041, 0.011305435560643673, 0.0025357662234455347, 0.003116951324045658, 0.013187368400394917, -0.037749361246824265, 0.006704385858029127, 0.010793439112603664, -0.014820221811532974, 0.0111463014036417, -0.030276980251073837, -0.005455529782921076, 0.004760183393955231, -0.016411561518907547, 0.013789310120046139, 0.007714541163295507, 0.020632073283195496, -0.03102421760559082, -0.005074991844594479, 0.017809174954891205, -0.02220957539975643, 0.03398549556732178, 0.03190983459353447, 0.008946100249886513, 0.003711974248290062, 0.014474278315901756, -0.025406094267964363, -0.024921773001551628, -0.00902220793068409, -0.012931370176374912, 0.008510211482644081, 0.035009488463401794, -0.004182457458227873, -0.009478853084146976, 0.007105680648237467, -0.017906038090586662, -0.018016740679740906, -0.03506483882665634, 0.010253766551613808, 0.010080794803798199, 0.009326637722551823, -0.03512018918991089, -0.016134807839989662, -0.013221962377429008, 0.02057672291994095, -0.013221962377429008, 0.003812297945842147, 0.006503738928586245, -0.013713202439248562, 0.0018231224967166781, 0.023330433294177055, -0.0020116616506129503, 0.0024233346339315176, -0.0005258342134766281, 0.001124316593632102, 0.010267605073750019, -0.006527954712510109, -0.008434103801846504, 0.010316036641597748, 0.01138154324144125, 0.037112824618816376, -0.03426225110888481, -0.002099877456203103, 0.026277871802449226, 0.01321504358202219, -0.020894991233944893, -0.004102890379726887, -0.013900011777877808, 0.028644125908613205, -0.023288920521736145, -0.013304988853633404, 0.017989065498113632, 0.008856154978275299, 0.007223301567137241, -0.01775382272899151, -0.020521370694041252, -0.008669345639646053, -0.000990263419225812, 0.0035113270860165358, 0.017864525318145752, -0.017767660319805145, -0.024548154324293137, -0.0011874513002112508, 0.007790648844093084, -0.010523603297770023, 0.0033158690202981234, 0.007250976748764515, 0.011353867128491402, -0.02883785404264927, 0.0020756612066179514, 0.009298962540924549, -0.008316483348608017, -0.0034680841490626335, 0.007444705348461866, -0.01477870810776949, -0.0008817236521281302, 0.02706662379205227, -0.005258341785520315, 0.017144963145256042, 0.027384892106056213, 0.012073430232703686, -0.02626403421163559, 0.014847896993160248, -0.035258565098047256, -0.006074768956750631, 0.005030019208788872, -0.006389577407389879, -0.02238946594297886, -0.010834951885044575, 0.027578620240092278, -0.0037984601221978664, -0.004414239898324013, -0.005462448578327894, 0.017269501462578773, 0.033155228942632675, 0.0003682136593852192, -0.006306550931185484, -0.0019251758931204677, -0.0008549130288884044, -0.01115322019904852, 0.012419373728334904, 0.013685527257621288, -0.01736636646091938, -0.0013405312784016132, 0.013367258943617344, -0.011173976585268974, -0.015415244735777378, -0.034622032195329666, -0.03221426531672478, -0.014308225363492966, 0.00767302792519331, 0.015221516601741314, 0.02171141654253006, 0.0014754493022337556, -0.02018926478922367, -0.01960808038711548, 0.023911617696285248, -0.017933713272213936, 0.009416583925485611, 0.01973262056708336, -0.001586151192896068, 0.011001004837453365, 0.03498181328177452, -0.02014775201678276, -0.03005557507276535, -0.028782503679394722, -0.022749248892068863, -0.041042741388082504, -0.00891150627285242, 0.0004501590447034687, 0.04585827887058258, 0.009222854860126972, -0.023717889562249184, -0.025821227580308914, -0.014197523705661297, -0.0380261167883873, -0.02331659570336342, -0.04220511391758919, 0.00773529801517725, 0.04068296030163765, 0.018833167850971222, 0.0023160921409726143, 0.019026895985007286, -0.0006222659721970558, -0.0006975086871534586, -0.044751256704330444, 7.526974968641298e-06, -0.02200200967490673, -0.00523758539929986, 0.02950206585228443, -0.017311016097664833, -0.03990804776549339, -0.001807555090636015, -0.005967526230961084, -0.018390359356999397, 0.0035217052791267633, -0.002843656111508608, 0.009008370339870453, -0.0006456171395257115, -0.008489455096423626, 0.008953019045293331, 0.0032985717989504337, 0.04051690921187401, 0.009215936064720154, -0.045581523329019547, 0.009603393264114857, 0.016508426517248154, -0.020590560510754585, 0.004140944220125675, 0.0071471938863396645, 0.013962281867861748, -0.032435666769742966, -0.013498716987669468, -0.012675371952354908, -0.026776030659675598, -0.011637541465461254, 0.0015809619799256325, 0.00821961835026741, 0.01104251854121685, 0.005002343561500311, 0.03279544785618782, -0.03005557507276535, 0.0007619406678713858, -0.011236246675252914, 0.003272626083344221, 0.008925343863666058, 0.00922977365553379, 0.03301685303449631, -0.014363576658070087, -0.003326247213408351, 0.006531414110213518, 0.015927240252494812, 0.006863520015031099, -0.018625600263476372, -0.01893003098666668, -0.009056801907718182, -0.015373731032013893, -0.014751032926142216, -0.014156010001897812, -0.019718782976269722, -0.005182234570384026, -0.010191497392952442, -0.009831715375185013, 0.0024873341899365187, -0.006164714228361845, 0.006088606547564268, -0.00824037566781044, -0.03030465543270111, 0.0007878864416852593, 0.010205334983766079, -0.02554447203874588, 0.0017764201620593667, 0.012675371952354908, 0.010011606849730015, 0.011630622670054436, 0.21121929585933685, 0.015013949945569038, 0.008890748955309391, 0.039686642587184906, 0.011782837100327015, 0.005663095973432064, 0.022873787209391594, 0.002950898604467511, -0.01490324828773737, 0.004767102189362049, -0.008544805459678173, 0.011976566165685654, -0.014135253615677357, -0.00733400322496891, 0.02672068029642105, -0.017311016097664833, -0.018362684175372124, -0.009637987241148949, -0.024091508239507675, -0.008503292687237263, 0.0027294945903122425, 0.0014313413994386792, -0.019746458157896996, -0.001783338957466185, 0.014889410696923733, -0.00014767465472687036, -0.0067701153457164764, 0.019414352253079414, 0.023537999019026756, 0.016743667423725128, -0.0009937228169292212, 0.011111706495285034, 0.011402299627661705, 0.0035459212958812714, -0.010800357908010483, -0.022057360038161278, 0.015996430069208145, -0.008551724255084991, -0.00773529801517725, 0.034040845930576324, 0.001971878344193101, -0.027703160420060158, 0.004684075713157654, -0.016162483021616936, 0.020507533103227615, -0.010482089594006538, -0.017947550863027573, 0.021088719367980957, -0.0038330545648932457, 0.011291597969830036, -0.007050329819321632, 0.0058256895281374454, 0.030193952843546867, 0.023537999019026756, 0.005521259270608425, 0.003269166685640812, -0.0024873341899365187, 0.005583528894931078, -0.015816539525985718, -0.014515791088342667, -0.01053744088858366, 0.004749805200845003, -0.018224306404590607, 0.016342373564839363, -0.03456667810678482, 0.012613101862370968, -0.010281442664563656, 0.03199286013841629, 0.004324294626712799, 0.011028680019080639, -0.009817877784371376, 0.009561879560351372, -0.03160540387034416, -0.0037604065146297216, -0.018611762672662735, -0.013989957049489021, 0.0097417701035738, 0.005777257494628429, 0.02272157184779644, 0.021974334493279457, -0.008537886664271355, 0.014183685183525085, -0.023496486246585846, -0.010724250227212906, 0.011900458484888077, -0.02892088145017624, 0.034372951835393906, -0.023537999019026756, -0.009298962540924549, -0.027343377470970154, -0.0020376075990498066, 0.002975114621222019, -0.0012678831117227674, -0.02941904030740261, 0.008018971420824528, -4.383753548609093e-05, 0.0018006361788138747, 0.03523088991641998, -0.016965072602033615, -0.0322972908616066, -0.015553622506558895, 0.05828456953167915, 0.0012583696516230702, 0.01960808038711548, -0.016965072602033615, 0.01765695959329605, -0.0027744672261178493, 0.014834059402346611, 0.0017573932418599725, 0.0024873341899365187, 0.00958955567330122, -0.03559067100286484, 0.010765762999653816, -0.0075415694154798985, -0.009430421516299248, -0.001257504802197218, 0.004753264598548412, -0.02655462734401226, -0.004646021872758865, -0.020133914425969124, 0.015000112354755402, 0.005503961816430092, 0.012682290747761726, 0.018182793632149696, -0.038081467151641846, -0.029142284765839577, -0.017269501462578773, 0.02752326987683773, -0.03810914233326912, -0.02593192830681801, 0.02955741621553898, -0.017560094594955444, 0.01131927315145731, -0.02301216498017311, -0.0072440579533576965, -0.004279321525245905, 0.011402299627661705, 0.007908269762992859, -0.006410333793610334, -0.018141278997063637, 0.004687535110861063, 0.0018577168229967356, 0.02579355053603649, 0.011941971257328987, 0.0006529684760607779, -0.016591452062129974, 0.00016616101493127644, -0.020078564062714577, -0.005414016544818878, -0.03359803929924965, -0.006182011216878891, 0.012128780595958233, 0.0013016125885769725, -0.009672582149505615, 0.03899475559592247, -0.011609865352511406, -0.0034819217398762703, -0.014584979973733425, 0.011160138994455338, 0.013713202439248562, -0.04536011815071106, -0.004815534222871065, 0.020466020330786705, 0.006040174514055252, -0.017048098146915436, -0.012004241347312927, -0.17712309956550598, 0.014958599582314491, 0.007700703572481871, -0.024271398782730103, 0.02465885691344738, 0.03393014520406723, 0.009202098473906517, -0.012744560837745667, -0.0008683183114044368, -0.008759290911257267, 0.0037707847077399492, -0.006119741592556238, -0.02150385081768036, -0.003746568690985441, 0.004798237234354019, 0.013042071834206581, -0.023385783657431602, 0.031079567968845367, 0.04253721982240677, -0.0006810763734392822, 0.014377414248883724, -0.039050109684467316, -0.009215936064720154, -0.002807331969961524, 0.011955808848142624, 0.014612656086683273, 0.011609865352511406, 0.024894097819924355, 0.0009980471804738045, -0.03514786437153816, 0.0021829036995768547, -0.015996430069208145, 0.021531525999307632, -0.013014396652579308, 0.023648701608181, -0.003895324422046542, -0.0036220289766788483, -0.002767548430711031, -0.021213259547948837, 0.013851580210030079, 0.02393929474055767, 0.0043623480014503, 0.018431872129440308, 0.011630622670054436, 0.005251422990113497, 0.013118179515004158, 0.016743667423725128, -0.012121861800551414, 0.01787836290895939, -0.015221516601741314, 0.0370851494371891, -0.026125656440854073, 0.011810513213276863, -0.009285124950110912, 0.01917911134660244, -0.019829483702778816, -0.0039541348814964294, 0.020894991233944893, -0.002336848760023713, -0.023081352934241295, 0.010316036641597748, -0.010924897156655788, 0.01858408749103546, 0.007873674854636192, 0.011395380832254887, -0.015401407144963741, 0.015096976421773434, 0.0007433462305925786, 0.005071532446891069, -0.0005630231462419033, -0.007666109129786491, 0.021891307085752487, -0.015664324164390564, 0.010717331431806087, 0.01222564559429884, 0.0017487446311861277, -0.03982502222061157, 0.019538892433047295, 0.02820131927728653, -0.00503693800419569, 0.011340029537677765, 0.008157349191606045, -0.004095971584320068, -0.00238182139582932, -0.007458542939275503, 0.03321057930588722, -0.009721013717353344, 0.0022313359659165144, -0.017767660319805145, 0.0161486454308033, 0.030636761337518692, -0.007749135605990887, -0.009333557449281216, 0.00493315514177084, 0.01466800644993782, 0.0010802086908370256, 0.034926459193229675, 0.0017547986935824156, 0.00980404019355774, -0.0008302645292133093, 0.008627831935882568, 0.009499610401690006, -0.015498271211981773, -0.002245173556730151, 0.025419931858778, 0.038219843059778214, 0.006749358493834734, -0.007603839505463839, 0.03473273292183876, -0.013374177739024162, -0.013249638490378857, 0.01596875488758087, 0.01652226410806179, 0.011402299627661705, -0.005690771620720625, 0.05067381262779236, -0.007005356717854738, -0.03503716364502907, 0.006071309559047222, -0.017297178506851196, 0.03423457220196724, -0.029225312173366547, -0.020286129787564278, 0.008752372115850449, 0.011014842428267002, 0.00577379809692502, -0.10367236286401749, -0.022998327389359474, 0.022541681304574013, 0.02659614011645317, -0.009880147874355316, 0.0051683965139091015, -0.004926236346364021, 0.03393014520406723, -0.027426404878497124, 0.020964179188013077, -0.021019529551267624, -0.02529539167881012, 0.0056042857468128204, 0.002084309933707118, -0.001935554202646017, -0.00862091314047575, -0.013581743463873863, 0.007430867291986942, -0.010191497392952442, 0.0353139191865921, 0.006431090645492077, -0.009603393264114857, 0.008337239734828472, -0.014958599582314491, -0.01287601888179779, -0.00033037608955055475, -0.025696687400341034, 0.010108470916748047, 0.003232842544093728, 0.017020422965288162, 0.017144963145256042, -0.017975227907299995, 0.027467917650938034, -0.013062828220427036, -0.02191898413002491, -0.022237252444028854, -0.011270840652287006, -0.020715100690722466, 0.008641669526696205, -0.03149469941854477, -0.008295726031064987, 0.008807722479104996, -0.010087713599205017, -0.027841536328196526, 0.005517799872905016, -0.0007740486762486398, -0.009091396816074848, 0.021047206595540047, 0.02107488177716732, -0.011270840652287006, -0.0032207344193011522, -0.007693784777075052, -0.015608972869813442, -0.030166277661919594, 0.03409619629383087, 0.006576386746019125, 0.030941192060709, 0.014764870516955853, -0.017892200499773026, 0.0038261357694864273, 0.010911059565842152, -0.008690102025866508, 0.007105680648237467, 0.028505748137831688, -0.012350184842944145, 0.023994645103812218, 0.002039337297901511, -0.009900904260575771, -0.013284232467412949, -0.015290704555809498, -0.017186475917696953, 0.011007923632860184, -0.019165271893143654, 0.004286240786314011, -0.0011286408407613635, -0.000947885331697762, -0.01897154375910759, -0.015622810460627079, 0.024755720049142838, 0.011907377280294895, -0.014571142382919788, -0.007257895544171333, 0.0009695068001747131, -0.03143934905529022, 0.04076598957180977, -0.0058914185501635075, 0.0029785740189254284, -0.023537999019026756, 0.026485437527298927, -0.04037852957844734, 0.008939181454479694, 0.01829349435865879, 0.02499096281826496, -0.01176208071410656, -0.0036116507835686207, 0.018348846584558487, -0.016051780432462692, 0.019123759120702744, 0.028021426871418953, 0.0018421494169160724, -0.027343377470970154, -0.014377414248883724, -0.046605516225099564, 0.01365785114467144, -0.014709520153701305, -0.00253403652459383, -0.0053725033067166805, -0.005739203654229641, -0.011575271375477314, -0.0006918871076777577, 0.0039852699264883995, 0.01013614609837532, -0.027454080060124397, -0.0018058253917843103, -0.008648589253425598, -0.037112824618816376, -0.023621026426553726, -0.02845039777457714, 0.000165512363309972, -0.012322509661316872, 0.013692446053028107, -0.0009003180894069374, -0.01098024845123291, -0.010613548569381237, -0.0016146915731951594, 0.030110927298665047, -0.016245508566498756, -0.0010646412847563624, -0.03401317074894905, 0.040904365479946136, -0.013042071834206581, -0.032601721584796906, 0.009036045521497726, -0.007112599443644285, 0.0025029017124325037, 0.012384778819978237, -0.02154536359012127, -0.0353139191865921, 0.021863631904125214, -0.004915857687592506, 0.02323356829583645, 0.007271733600646257, -0.014079902321100235, -0.009243612177670002, 0.023205893114209175, -0.0017262583132833242, -0.00807432271540165, 0.0032311128452420235, -0.015193840488791466, -0.008759290911257267, 0.01344336662441492, 0.01490324828773737, 0.03213123604655266, 0.008925343863666058, -0.015539783984422684, -0.0539671927690506, -0.007617677096277475, -0.014847896993160248, 0.005147640127688646, 0.022029684856534004, 0.0010828033555299044, 0.004908938892185688, 0.03805379197001457, 0.017103448510169983, 0.02420221082866192, -0.014806384220719337, 0.011997322551906109, -0.02369021438062191, -0.030581409111618996, 0.004940073937177658, -0.0022347953636199236, -0.02407767064869404, -0.0023645241744816303, -0.02663765288889408, 0.02997254952788353, 0.024119185283780098, 0.031134920194745064, -0.007506974972784519, -0.003884945996105671, -0.006738980300724506, 0.00045880762627348304, 0.02997254952788353, 0.04203905910253525, -0.018750140443444252, -0.03567370027303696, -0.004078674595803022, 0.033653389662504196, -0.0019614999182522297, -0.0229706522077322, 0.012585426680743694, 0.006119741592556238, -0.00813659280538559, 0.006607521791011095, -0.013533311896026134, -0.025765875354409218, 0.025738200172781944, 0.016093293204903603, 0.025115501135587692, -0.02414686046540737, 0.003667001612484455, 0.02263854630291462, 0.030830489471554756, -0.005078451242297888, 0.022583195939660072, 0.00936123263090849, 0.004383104853332043, -0.028090616688132286, 0.01876397803425789, -0.02768932282924652, -0.001379449968226254, 0.016411561518907547, 0.02352416142821312, 0.0018006361788138747, -0.0014287468511611223, -0.018279656767845154, 0.006735520903021097, -0.007991296239197254, 0.01602410525083542, -0.03727887570858002, -0.004832831211388111, -0.02424372360110283, -0.007430867291986942, 0.006873898208141327, 0.008648589253425598, 0.03077513910830021, 0.00012983694614376873, 0.03296150267124176, 0.018196631222963333, 0.0011070193722844124, -0.03221426531672478, 0.00297165522351861, -0.016632966697216034, 0.023247405886650085, -0.0036324074026197195, 0.013388015329837799, -0.015608972869813442, -0.019912511110305786, -0.02710813656449318, -0.010668898932635784, 0.01960808038711548, -0.004310456570237875, 0.08640286326408386, 0.03304452821612358, -0.0269835963845253, -0.0074170297011733055, -0.012045754119753838, 0.0030512220691889524, 0.010302199050784111, -0.011090950109064579, 0.008537886664271355, -0.015705836936831474, 0.013906930573284626, -0.0006637792102992535, -0.025447607040405273, -0.012661534361541271, -0.029308337718248367, -0.018833167850971222, -0.005690771620720625, -0.006175092421472073, -0.016328535974025726, 0.01686820760369301, 0.014280550181865692, 0.005154558923095465, 0.034123871475458145, -0.01405914593487978, -0.03467738255858421, -0.016425399109721184, 0.04480660706758499, 0.01672982983291149, 0.00019891753618139774, -0.030443033203482628, 0.012287914752960205, -0.009963174350559711, -0.023704051971435547, -0.00376732531003654, -0.005535096861422062, -0.013858499005436897, 0.005656177178025246, -0.03675304353237152, -0.01372012123465538, 0.0055281780660152435, 0.0021621473133563995, 0.006548711564391851, -0.02146233804523945, -0.01534605585038662, 0.020632073283195496, -0.0007506975089199841, 0.021490013226866722, -0.02039683237671852, -0.016674479469656944], "3bc3af1a-9324-41ae-b8ec-8cd8d213182f": [-0.00786101259291172, -0.01200740598142147, -0.011013641953468323, -0.02767460234463215, -0.025303278118371964, 0.017832916229963303, -0.003951067104935646, -0.01518744882196188, -0.017216097563505173, -0.04216299206018448, 0.00919059943407774, -0.0019926673267036676, 0.02916867472231388, -0.0014598044799640775, 0.018915776163339615, 0.005866631865501404, 0.021753141656517982, 0.003054966451600194, 0.01716126874089241, -0.016064703464508057, -0.011520803906023502, -0.01539305504411459, -0.026756228879094124, 0.008457270450890064, -0.017503947019577026, 0.008539513684809208, 0.02541293390095234, -0.014940721914172173, -0.0053560431115329266, -0.003735180478543043, 0.023644719272851944, -0.007881573401391506, -0.019943807274103165, -0.011287784203886986, -0.026989249512553215, -0.009074090048670769, 0.00219484674744308, 0.003044686047360301, -0.0006870675715617836, -0.014515802264213562, 0.024905771017074585, 0.005205265246331692, -0.01540676224976778, 0.0067301783710718155, 0.0017425130354240537, 0.03881846368312836, 0.00992392934858799, -0.021766848862171173, -0.0019121381919831038, -0.016448501497507095, 0.0072236331179738045, 0.022657809779047966, -0.018340079113841057, -0.0060379705391824245, -0.021972455084323883, 0.006743885576725006, -0.016064703464508057, 0.0022531019058078527, 0.007600578013807535, 0.008498392067849636, 0.02232884056866169, 0.019354403018951416, -0.011760678142309189, 0.011760678142309189, -0.030073342844843864, -0.005314921960234642, -0.0101295355707407, -0.022657809779047966, -0.01839490607380867, 0.003042972646653652, 0.00490713631734252, 0.03169078007340431, 0.0003930077946279198, 0.014529509469866753, 0.005033926572650671, -0.022040991112589836, 0.02190392091870308, 0.008703998290002346, -0.006562266498804092, -0.008923311717808247, 0.008765680715441704, -0.005801523569971323, -0.013994933106005192, -0.01270646695047617, 0.013138240203261375, 0.053896255791187286, -0.015653489157557487, 0.0012541981413960457, -0.013700230978429317, 0.006305258721113205, -0.0035158670507371426, 0.008231104351580143, 0.004739224445074797, 0.015379348769783974, 0.008820508606731892, 0.012021113187074661, 0.01528339833021164, 0.008957579731941223, 0.0014315336011350155, -0.013988079503178596, -0.020930716767907143, 0.002285656286403537, -0.010191217064857483, -0.012651639059185982, -0.02312385104596615, 0.00325200567021966, 0.022863416001200676, -0.0007269037887454033, 0.006414915435016155, 0.01145912241190672, -0.01178809255361557, 0.03204716369509697, -0.010602429509162903, 0.007854158990085125, -0.02916867472231388, -0.002669454552233219, 0.01838119886815548, -0.02317867986857891, -0.007367557846009731, -0.031937506049871445, 0.021191151812672615, 0.016434794291853905, 0.029278332367539406, -0.027414167299866676, 0.005966008175164461, -0.0039167990908026695, -0.00212288461625576, -0.0027002955321222544, 0.025988630950450897, -0.0167363490909338, 0.016050996258854866, 0.019381817430257797, 0.00372490007430315, -0.001470941468141973, -0.033171143382787704, 0.006055104546248913, -0.02498801425099373, 0.005123022478073835, -0.007902134209871292, -0.01670893467962742, 0.019683372229337692, 0.02996368519961834, -0.02298678085207939, -0.024850944057106972, 0.022657809779047966, 0.019902685657143593, -0.005208692047744989, 0.03328080102801323, 0.015022964216768742, -0.020546918734908104, 0.014310196042060852, -0.012603663839399815, -0.029662130400538445, 0.002532383892685175, 0.006994039751589298, -0.0023421980440616608, -0.02295936644077301, 0.03171819448471069, -0.007840451784431934, -0.013665962964296341, 0.017065320163965225, 0.001043451833538711, -0.006754165515303612, -0.0019138515926897526, 0.006510864943265915, 0.02916867472231388, -0.006318965926766396, -0.03991502895951271, 0.00481461314484477, -0.004358852747827768, 0.00011683147749863565, 0.03725585341453552, -0.01569461077451706, 0.035693246871232986, 0.0020834768656641245, 0.008039204403758049, 0.02147900126874447, -0.011397439986467361, -0.016791177913546562, -0.02834624983370304, 0.04569941759109497, -0.003961347509175539, 0.004913989454507828, 0.03254061937332153, -0.030511969700455666, -0.02812693640589714, 0.01636625826358795, 0.005438285414129496, -0.00313206878490746, -0.0029470231384038925, 0.00021245981042739004, 0.007737649139016867, -0.038955532014369965, -0.020546918734908104, -0.618025004863739, 0.0003000566503033042, 0.027948744595050812, -0.03158112242817879, 0.013864715583622456, 0.0026043460238724947, 0.01084230374544859, 0.01406346820294857, 0.0026077728252857924, 0.007758209481835365, -0.0021177444141358137, 0.015543833374977112, 0.0008014360792003572, -0.016050996258854866, -0.017284633591771126, -0.015365641564130783, 0.03037489764392376, -0.009259135462343693, -0.013981225900352001, 0.003226304892450571, -0.0171749759465456, 0.044164225459098816, -0.001725379261188209, -0.00738811818882823, 0.02420671097934246, -0.003490166272968054, 0.009601812809705734, -0.003975054249167442, -0.01716126874089241, 0.021410465240478516, -0.034624096006155014, 0.017243511974811554, 0.03366459906101227, -0.012171890586614609, 0.04720719903707504, 0.011123298667371273, -0.015845390036702156, 0.022397374734282494, 0.024549387395381927, 0.04942774400115013, -0.024686457589268684, -0.007813038304448128, 0.011520803906023502, 0.02731821872293949, 0.011178127489984035, 0.009745736606419086, -0.000718336901627481, 0.008333907462656498, -0.004273183643817902, -0.013172508217394352, 0.0006082518375478685, -0.022465910762548447, 0.0008755400194786489, -0.0007693101069889963, 0.019518887624144554, -0.003431911114603281, 0.031060252338647842, -0.001198513200506568, 0.010376262478530407, 0.005928313825279474, 0.020930716767907143, 0.006946064997464418, -0.011856627650558949, -0.046604085713624954, -0.05290934443473816, 0.008710851892828941, -0.007415532600134611, -0.023617306724190712, 0.022904537618160248, -0.0005093038198538125, 0.00949900969862938, 0.003157769562676549, -0.0009732029866427183, -0.0027911050710827112, -0.008943872526288033, 0.0225344467908144, 0.04314989969134331, -0.002271949080750346, -0.004794052802026272, 0.021040374413132668, 0.0007907274411991239, -0.00688095623627305, -0.01396751869469881, -0.022164354100823402, 0.03432253748178482, 0.011555071920156479, -0.024302659556269646, -0.0026300468016415834, 0.002331917639821768, -0.006891236640512943, 0.020382434129714966, -0.0031903237104415894, 0.00031868970836512744, -0.04643959924578667, 0.020560625940561295, 0.03163595125079155, 0.00020442830282263458, -0.013583720661699772, -0.009684055112302303, -0.027140026912093163, -0.0405181422829628, -0.03583031892776489, -0.010074706748127937, -0.00010119683429365978, 0.03448702394962311, 0.012953194789588451, -0.006702763959765434, -0.035227205604314804, 0.02339799329638481, -0.0194503515958786, 0.003951067104935646, 0.007778770290315151, -0.0023833191953599453, -0.02250703237950802, -0.011849774047732353, -0.0334726981818676, 0.029716959223151207, -0.01696936972439289, -0.008450417779386044, -0.02539922669529915, -0.017736967653036118, 0.02002605050802231, 0.0016379965236410499, -0.009896514937281609, -0.01437873113900423, 0.0355287604033947, 0.010739500634372234, 0.005397164262831211, 0.008937018923461437, 0.00724419392645359, 0.0013929824344813824, -0.01921733282506466, 0.012281547300517559, -0.011541364714503288, 0.009375645779073238, -0.0021297382190823555, 0.013816740363836288, 0.012048526667058468, 0.014090882614254951, -0.021753141656517982, 0.008237957954406738, -0.006017409730702639, 0.007737649139016867, -0.004557605367153883, 0.0083681745454669, -0.01712014712393284, -0.02629018761217594, 0.007148244418203831, 0.0020577760878950357, -0.021629778668284416, -0.03371942788362503, -0.012254132889211178, -0.009718322195112705, 0.024905771017074585, -0.005613050889223814, 0.0020577760878950357, 0.010616136714816093, -0.039202261716127396, -0.006555412895977497, -0.03177301958203316, 0.001569461077451706, 0.00920430663973093, -0.01084230374544859, 0.01759989559650421, -0.012343228794634342, -0.011322051286697388, -0.02563224732875824, 0.009492156095802784, -0.004842027556151152, -0.012027965858578682, -0.020163120701909065, -0.014323903247714043, 0.023850325495004654, 0.016256602481007576, -0.002703722333535552, 0.024672752246260643, -0.02646837942302227, 0.007374411448836327, -0.0008305636001750827, 0.009039822034537792, 0.035446520894765854, 0.03517237678170204, -0.00594887463375926, -0.0028904813807457685, 0.02419300377368927, 0.012137622572481632, -0.002702008932828903, 0.02293195202946663, -0.034020982682704926, -0.003635804168879986, 0.002112604444846511, 0.013384968042373657, -0.013460356742143631, 0.0004621857369784266, -0.008402442559599876, -0.01592763140797615, -0.03199233487248421, -0.02024536393582821, -0.010054145939648151, 0.01509149931371212, -0.005414298269897699, -0.003995615057647228, -0.02339799329638481, -0.009163185954093933, 0.008820508606731892, -0.029223503544926643, 0.013741351664066315, -0.021204859018325806, 0.020930716767907143, 0.00023944562417455018, -0.01115756668150425, -0.0029470231384038925, -0.0005294361035339534, -0.03300665691494942, 0.01698307693004608, 0.036734987050294876, -0.030484555289149284, 0.018778705969452858, -0.013261604122817516, -0.004187514074146748, 0.01406346820294857, -0.00025893538258969784, 0.029086433351039886, 0.018778705969452858, -0.00031654798658564687, 0.014036053791642189, -0.015790561214089394, 0.002172572771087289, 0.01712014712393284, -0.024946892634034157, 0.004917416255921125, 0.010527040809392929, 0.0028802009765058756, -0.0010126108536496758, 0.026372428983449936, 0.02312385104596615, 0.053210899233818054, -0.029854029417037964, 0.028058400377631187, -0.018449734896421432, -0.0029795775189995766, 0.00734014343470335, 0.03103283792734146, -0.018312664702534676, 0.016626693308353424, 0.01633884385228157, 0.02545405551791191, 0.009656640700995922, -0.02457680180668831, 0.009649787098169327, 0.000690066022798419, 0.015118913725018501, -0.012322668917477131, -0.010910838842391968, 0.033198557794094086, -0.005832364317029715, -0.009732029400765896, 0.010362555272877216, 0.02873004786670208, 0.01074635423719883, -0.010629843920469284, 0.008738266304135323, 0.016050996258854866, -0.0056336116977036, 0.015475298278033733, -0.009327670559287071, -0.015022964216768742, -0.041230909526348114, -0.010067853145301342, -0.0007294738898053765, -0.012637931853532791, -0.03635118529200554, -0.018024815246462822, -0.02236996218562126, -0.018874654546380043, 0.007627992425113916, -0.0030755270272493362, 0.028839705511927605, -0.009567544795572758, 0.005164144095033407, -0.007004320155829191, -0.02005346491932869, 0.018449734896421432, 0.008073472417891026, -0.02234254777431488, -0.002964156912639737, -0.009430473670363426, -0.0013929824344813824, 0.01355630625039339, 0.008594341576099396, -0.011130152270197868, 0.013878422789275646, -0.01714756153523922, 0.013878422789275646, -0.01861421950161457, 0.03572066128253937, 0.04199850559234619, -0.013597427867352962, 0.0006352376658469439, 0.009533276781439781, 0.008470977656543255, 0.0204783845692873, -0.012761294841766357, -0.015434176661074162, 0.04405456781387329, -0.01594133861362934, -0.008847923018038273, -0.00583921791985631, 0.010294020175933838, -0.032156817615032196, 0.02395998314023018, -0.020725110545754433, -0.02500172145664692, -0.01024604495614767, -0.010958814062178135, 0.0023370578419417143, -0.009800565429031849, -0.014927014708518982, 0.03725585341453552, -0.007538896054029465, -0.017846623435616493, -0.025933803990483284, -0.011890895664691925, 0.038763634860515594, 0.05619904398918152, 0.01611953042447567, -0.01250086072832346, 0.01573573239147663, -0.024933185428380966, -0.006767872720956802, -0.019984928891062737, -0.03884587809443474, 0.02291824482381344, -0.017202390357851982, 0.007429239805787802, -0.005129876080900431, 0.01858680695295334, 0.0022479617036879063, 0.0032794198486953974, 0.008710851892828941, 0.012075941078364849, -0.030923182144761086, -0.010691525414586067, 0.005657598841935396, -0.004201221279799938, -0.00253409706056118, 0.0384620763361454, 0.020971838384866714, 0.048303764313459396, 0.03454185277223587, 0.030128171667456627, -0.0004356282588560134, -0.0018384626600891352, -0.025933803990483284, -0.018902068957686424, 0.0014418138889595866, 0.000978343072347343, 0.010958814062178135, -0.003327394602820277, 0.023082729429006577, 0.019697079434990883, -0.03470633551478386, -0.01924474537372589, 0.01477623637765646, 0.007950108498334885, 0.01925845257937908, 0.011815506964921951, -0.017736967653036118, 0.006294978316873312, -0.03210199251770973, 0.0006977762677706778, 0.02401481196284294, -0.006013982929289341, -0.016599278897047043, -0.001852169749327004, 0.003923652693629265, -0.01033514179289341, 0.027564946562051773, 0.009231721051037312, 0.0032468654680997133, 0.0032108845189213753, -0.007627992425113916, 0.0013792753452435136, -0.037694480270147324, -0.04635735973715782, 0.0033650891855359077, -0.0031629097647964954, -0.011616753414273262, -0.012082794681191444, -0.025289570912718773, -0.008347614668309689, 0.01817559264600277, -0.031115081161260605, 0.015776854008436203, 0.015242277644574642, -0.052004676312208176, -0.03840725123882294, 0.011130152270197868, 0.01840861327946186, 0.0012182170758023858, 0.01125351618975401, 9.423620213055983e-05, 0.004221782088279724, 0.004468509461730719, 0.0010922832880169153, -0.03805086389183998, 0.0016114390455186367, -0.01156877912580967, -0.031142495572566986, -0.03404839709401131, -0.01436502393335104, -0.004564458969980478, -0.010081560350954533, 0.008251664228737354, -0.0009415053646080196, -0.02417929656803608, 0.001186519511975348, -0.006952918600291014, 0.0043931202962994576, 0.04243713244795799, 0.02149270847439766, 0.03583031892776489, 0.03780413791537285, -0.03706395626068115, -0.00962922628968954, -0.010204924270510674, -0.010622990317642689, -0.018490856513381004, 0.008505245670676231, -0.01043109130114317, 0.004883148707449436, -0.011767531745135784, 0.016009874641895294, -0.02274005301296711, -0.007627992425113916, -0.02397369034588337, -0.005928313825279474, -0.020313898101449013, 0.012788709253072739, 0.00018301098316442221, -0.0009723462862893939, 0.029662130400538445, -0.0006270990706980228, -0.027331925928592682, 0.020546918734908104, -0.043944910168647766, 0.04240971803665161, -0.006075664889067411, -0.009999318048357964, 0.011500244028866291, 0.02483723685145378, -0.019724493846297264, -0.02894936129450798, 0.01801110804080963, 0.011178127489984035, 0.017887745052576065, -0.008964433334767818, 0.0034130639396607876, -0.009135771542787552, -0.023041607812047005, 0.00232849083840847, -0.001146254944615066, -0.010753207840025425, 0.006318965926766396, -0.010821742936968803, -0.015557540580630302, 0.01925845257937908, -0.012233573012053967, -0.011712702922523022, -0.02996368519961834, -0.021657193079590797, -0.012521421536803246, 0.00817627552896738, 0.026399843394756317, -0.008299639448523521, -0.015146328136324883, -0.003920225892215967, -0.03078611008822918, 0.017407996580004692, 0.0026677411515265703, -0.004855734761804342, 0.00610650610178709, 0.07034475356340408, 0.014529509469866753, 0.02894936129450798, 0.006802140269428492, 0.02834624983370304, 0.006137346848845482, -0.017435410991311073, -0.008224250748753548, -0.007689674384891987, -0.023315750062465668, -0.0007547463173978031, 0.009841686114668846, 0.0165170356631279, -0.0006802140269428492, -0.01259681023657322, 0.0005915463552810252, 0.006329245865345001, 0.0155986612662673, 0.003497019875794649, 0.004399973899126053, -0.022205475717782974, -0.04646701365709305, -0.013295871205627918, 0.030868353322148323, 0.001533480011858046, -0.013693377375602722, -0.040627796202898026, -0.0008703998173587024, 0.028209179639816284, -0.01903913915157318, 0.02087588980793953, -0.002307930262759328, 0.03062162548303604, 0.004009322263300419, -0.005081901326775551, -0.0057672555558383465, 0.03643342852592468, -0.020355019718408585, -0.016174359247088432, -0.03062162548303604, -0.008964433334767818, 0.013686523772776127, 0.027167441323399544, 0.033993568271398544, 0.0014983556466177106, 0.0020714830607175827, 0.0016996784834191203, 0.011274076998233795, -0.030895767733454704, 0.0001706960320007056, 0.027126319706439972, -0.026591742411255836, -0.0004733227542601526, -0.031334392726421356, -0.009588105604052544, -0.018271543085575104, -0.00408813776448369, 0.004941403865814209, 0.0030481128487735987, 0.02938798815011978, -0.02829142101109028, 0.0029024749528616667, 0.016654107719659805, -0.019066553562879562, 0.038791049271821976, 0.04635735973715782, 0.0068124206736683846, 0.020094584673643112, 0.01568090356886387, -0.01616065204143524, -0.025083964690566063, 0.01488589309155941, -0.028044693171977997, 0.008237957954406738, 0.02564595453441143, -0.011301490478217602, -0.004112125374376774, 0.008279078640043736, -0.010156949050724506, -0.011404293589293957, -0.029881443828344345, 0.005698719993233681, 0.010924546048045158, -0.0006643652450293303, -0.02215064875781536, -0.005397164262831211, 0.0067404587753117085, 0.0061304932460188866, -0.014029200188815594, 0.012521421536803246, -0.00047160935355350375, -0.005099035333842039, 0.001089713186956942, 0.03341786935925484, 0.011808653362095356, 0.0005405731499195099, 0.005811803508549929, -0.006308685522526503, 0.01447468064725399, -0.0023678988218307495, 0.0006896376726217568, -0.005787816364318132, -0.004283463582396507, 0.037118785083293915, -0.026961835101246834, -0.004375986754894257, 0.022904537618160248, 0.018449734896421432, 0.002499829512089491, -0.001506922533735633, -0.02315126545727253, 0.029634715989232063, -0.015982460230588913, 0.00010462359932716936, 0.012192451395094395, 0.00982112530618906, -0.0007007746607996523, -0.02463163062930107, -0.015146328136324883, -0.005349189508706331, 0.00017123146972153336, 0.018065936863422394, 0.022794879972934723, -0.018723877146840096, -0.012027965858578682, 0.004166953731328249, -0.004646701738238335, -0.020423555746674538, 0.026194237172603607, -0.002624906599521637, 0.001990953925997019, -0.03163595125079155, -0.004204648081213236, -0.0034678922966122627, -0.0038893851451575756, -0.00304639944806695, 0.002179426373913884, -0.02955247275531292, -0.0085874879732728, 0.014214246533811092, -0.004718663636595011, 0.010108974762260914, 0.02049208991229534, -0.002023508306592703, -0.03498047962784767, 0.0028270860202610493, -0.01942293904721737, -0.012158183380961418, 0.00018226138490717858, 0.012651639059185982, -0.03212940692901611, -0.010670964606106281, 0.018093351274728775, 0.006390927825123072, -0.0007611715118400753, -0.0074223862029612064, 0.036899469792842865, 0.02335687167942524, 0.011102737858891487, -0.005832364317029715, -0.0011068470776081085, 0.00486258789896965, -0.012096501886844635, 0.0014632312813773751, 0.01757248118519783, -0.006075664889067411, -0.007079708855599165, -0.0012936060084030032, 0.001022891141474247, -0.021958747878670692, -0.03530944883823395, -0.025700783357024193, -0.004780345596373081, 0.003625523764640093, 0.013789326883852482, 0.0012807556195184588, 0.0054691266268491745, -0.018107058480381966, -0.012692759744822979, 0.03122473694384098, -0.02667398564517498, -0.0012781856348738074, 0.024768700823187828, 0.005606197286397219, 0.03322597220540047, 0.03824276477098465, -0.01496813539415598, -0.02789391577243805, -0.01902543194591999, -0.009567544795572758, -0.05000344291329384, -0.006000276189297438, 0.005589063744992018, 0.04940032958984375, -0.004708383232355118, -0.011822359636425972, -0.02190392091870308, -0.00217085937038064, -0.0425742045044899, -0.02670140005648136, -0.0375848263502121, 0.026413550600409508, 0.04191626235842705, 0.027976159006357193, 0.0008327053510583937, 0.02045097015798092, 0.002330204239115119, 0.01447468064725399, -0.04260161891579628, -0.003759167855605483, -0.008943872526288033, -0.021533828228712082, 0.02731821872293949, -0.015667196363210678, -0.03226647526025772, 0.005534235388040543, -0.00784730538725853, -0.01531081274151802, 0.00794325489550829, -0.0016936815809458494, 0.009272842667996883, -0.003742033848538995, -0.003238298697397113, 0.008847923018038273, 0.01691454090178013, 0.028264006599783897, 0.011239808984100819, -0.03662532940506935, -0.003281133249402046, 0.026550622656941414, -0.009039822034537792, 0.01022548507899046, 0.010999934747815132, 0.010808035731315613, -0.006767872720956802, 0.007045441307127476, -0.004228635225445032, -0.01115756668150425, -0.007888427004218102, 0.009355084970593452, 0.004351999145001173, 0.03265027329325676, 0.00828593224287033, 0.03788638114929199, -0.024686457589268684, -0.006291551515460014, 0.0016345697222277522, 0.007689674384891987, 0.0196696650236845, 0.022890830412507057, 0.02687959186732769, -0.02254815399646759, -0.0032554324716329575, -0.00486258789896965, -0.003497019875794649, 0.013309578411281109, -0.019313281401991844, -0.007490921299904585, 0.007936401292681694, -0.02149270847439766, -0.013138240203261375, -0.016023581847548485, -0.016284015029668808, -0.009642933495342731, -0.0045062038116157055, -0.013713937252759933, 0.012541982345283031, -0.004307451192289591, 0.004557605367153883, -0.01986156404018402, -0.01796998642385006, 0.004091564565896988, 0.009211160242557526, -0.03681722655892372, -0.00087982346303761, 0.016242895275354385, 0.01466657966375351, 0.010513333603739738, 0.2036324441432953, 0.0169556625187397, 0.020834768190979958, 0.034624096006155014, 0.007264754734933376, -0.004153246525675058, 0.009423620067536831, 0.008011790923774242, -0.015763146802783012, 0.008470977656543255, -0.009896514937281609, 0.006894663441926241, -0.009286549873650074, -0.005314921960234642, 0.007778770290315151, -0.015064085833728313, -0.03226647526025772, -0.02172572910785675, -0.025988630950450897, -0.008786240592598915, -0.00035981094697490335, -0.016667814925312996, -0.00961551908403635, -0.006939211394637823, 0.024672752246260643, 0.01407717540860176, -0.004064150620251894, 0.006527998950332403, 0.00538003072142601, 0.00724419392645359, -0.013611134141683578, -0.00992392934858799, 0.018093351274728775, -0.008799947798252106, -0.017846623435616493, -0.028264006599783897, 0.014529509469866753, -0.018449734896421432, -0.019943807274103165, 0.009149478748440742, 0.008895897306501865, -0.014844772405922413, -0.00014917162479832768, -0.03330821543931961, 0.010972521267831326, 0.001273045432753861, -0.021821677684783936, 0.025097671896219254, -0.024672752246260643, 0.016791177913546562, -0.006963198538869619, -0.0006489447550848126, 0.011836066842079163, 0.022232890129089355, 0.012014259584248066, -0.004965391010046005, 0.013898983597755432, -0.008566927164793015, -0.012082794681191444, -0.014406145550310612, -0.01033514179289341, 0.009156332351267338, -0.004091564565896988, -0.008813655003905296, -0.030649039894342422, 0.011164420284330845, -0.024234125390648842, 0.02457680180668831, 0.00443766824901104, 0.0064389025792479515, -0.010389969684183598, -0.019477766007184982, -0.036323774605989456, -0.00667535001412034, -0.01125351618975401, -0.01539305504411459, 0.01860051229596138, 0.0012636218452826142, 0.001618292648345232, 0.014817357994616032, -0.013487771153450012, 0.00459529971703887, -0.016174359247088432, -0.013570013456046581, 0.0003486739587970078, -0.03492565080523491, 0.03374684229493141, -0.02210952714085579, -0.010527040809392929, -0.027153734117746353, 0.0030635332223027945, 0.001688541378825903, 0.01210335548967123, -0.017065320163965225, -0.009752590209245682, -0.014310196042060852, 0.011493390426039696, 0.029250917956233025, -0.010595575906336308, -0.030511969700455666, -0.007888427004218102, 0.0557878315448761, 0.0019361256854608655, 0.0006566550000570714, -0.019779322668910027, 0.010362555272877216, 0.006394354626536369, 0.018696462735533714, -0.0002259527100250125, -0.010321434587240219, 0.0018847240135073662, -0.04016175493597984, -0.003632377367466688, -0.013803034089505672, 0.0025272436905652285, 0.007305875886231661, 0.015118913725018501, -0.023096436634659767, -0.003145775757730007, -0.025316983461380005, 0.024549387395381927, 0.0010545888217166066, 0.011938869953155518, 0.010595575906336308, -0.03350011259317398, -0.028017280623316765, -0.015584954991936684, 0.0311973225325346, -0.01776438020169735, -0.034212883561849594, 0.023260921239852905, -0.024521972984075546, 0.009265989065170288, -0.0220958199352026, -0.010259752161800861, 0.014200539328157902, 0.01631142944097519, 0.012535128742456436, -0.0006365227163769305, -0.02353506349027157, 0.010067853145301342, 0.018737584352493286, 0.018340079113841057, 0.00402645580470562, -0.003272566245868802, -0.024316366761922836, -0.003981907851994038, -0.01118498109281063, -0.009512715972959995, -0.019779322668910027, -0.014036053791642189, 0.014913307502865791, -0.00579124316573143, 0.006983759347349405, 0.0314166359603405, -0.018655341118574142, -0.011644167825579643, -0.032787345349788666, 0.008518952876329422, 0.030950596556067467, -0.04542527720332146, 0.0012944627087563276, 0.023247214034199715, -0.010945106856524944, -0.019121382385492325, -0.01611953042447567, -0.1742444485425949, 0.00992392934858799, -0.009485302492976189, -0.024439731612801552, 0.02520732767879963, 0.011431708000600338, -0.0006793573847971857, -0.004482216667383909, -0.003479885868728161, 0.0009252281743101776, 0.006476597394794226, 0.006226442754268646, -0.026811055839061737, -0.003975054249167442, 0.002090330235660076, 0.008155714720487595, -0.01657186448574066, 0.03366459906101227, 0.037749309092760086, 0.011589339934289455, 0.018477149307727814, -0.028017280623316765, -0.02339799329638481, -0.00738811818882823, 0.021794263273477554, 0.0032434386666864157, 0.00887533649802208, 0.010643551126122475, -0.008395588956773281, -0.021410465240478516, 0.0013698517577722669, -0.007984376512467861, 0.020985545590519905, -0.004081284161657095, 0.021369343623518944, 0.01406346820294857, -0.006329245865345001, 0.002672881353646517, -0.01043109130114317, 0.00393050629645586, 0.020190535113215446, 0.012356936000287533, 0.010088413953781128, 0.02520732767879963, 0.005294361151754856, 0.01611953042447567, 0.02727709710597992, -0.0041326857171952724, 0.018093351274728775, -0.015365641564130783, 0.02834624983370304, -0.030265241861343384, 0.015214863233268261, 0.0037214732728898525, 0.00175964692607522, -0.005054487381130457, 0.0030069914646446705, 0.03056679666042328, -0.011418000794947147, -0.019560009241104126, 0.019943807274103165, -0.009101503528654575, 0.01796998642385006, 0.009361938573420048, -0.009115210734307766, -0.013775619678199291, 0.030950596556067467, 0.008566927164793015, 0.00784730538725853, 0.005770682357251644, -0.014200539328157902, 0.02353506349027157, -0.010485919192433357, 0.01352889183908701, 0.0036734985187649727, 0.011493390426039696, -0.04076486825942993, 0.015776854008436203, 0.02271263860166073, -0.007031734101474285, -0.0013715651584789157, 0.008196836337447166, -0.007045441307127476, -0.009464741684496403, -0.005818657111376524, 0.026591742411255836, -0.00552395498380065, -0.001630286336876452, -0.01333699282258749, -0.002268522512167692, 0.031498879194259644, 0.008649170398712158, -0.009540130384266376, 0.005517101380974054, 0.015022964216768742, 0.0005204408662393689, 0.028894532471895218, -0.010828596539795399, 0.013898983597755432, -0.011966284364461899, 0.015831682831048965, 0.00379686220549047, -0.016037289053201675, 0.0002822802634909749, 0.02106778882443905, 0.03232130408287048, 0.00650401134043932, -0.003114934777840972, 0.03986020013689995, -0.023014193400740623, -0.010095267556607723, 0.017613602802157402, 0.02045097015798092, 0.0097251757979393, -0.00961551908403635, 0.030703868716955185, -0.016681522130966187, -0.026166822761297226, 0.01839490607380867, -0.019888978451490402, 0.03350011259317398, -0.02605716697871685, -0.01159619353711605, 0.017216097563505173, 0.02607087418437004, -0.0023987398017197847, -0.1055445447564125, -0.023699548095464706, 0.012000552378594875, 0.018504563719034195, -0.02086218260228634, 0.013693377375602722, 0.007826744578778744, 0.03827017918229103, -0.027866501361131668, 0.02256186120212078, -0.009663494303822517, -0.03169078007340431, -0.005736414808779955, 0.009444180876016617, -0.003454185090959072, -0.0017699272138997912, -0.012644785456359386, 0.014803650788962841, -0.02338428609073162, 0.040079515427351, 0.0024467145558446646, -0.00888904370367527, 0.019546302035450935, -0.023110143840312958, -0.01352889183908701, -0.009279696270823479, -0.02875746227800846, 0.011301490478217602, 0.016270309686660767, 0.0085874879732728, 0.011191833764314651, -0.002498116111382842, 0.019902685657143593, -0.012055380269885063, -0.031334392726421356, -0.01311767939478159, -0.02356247790157795, -0.02312385104596615, 0.0148996002972126, -0.03182784840464592, -0.001265335245989263, 0.006099652498960495, -0.003089234000071883, -0.013199921697378159, -0.0028836277779191732, -0.00846412405371666, -0.020423555746674538, 0.028675219044089317, 0.01733946055173874, -0.009122064337134361, -0.0010143242543563247, -0.01458433736115694, -0.00522239925339818, -0.017874037846922874, 0.02585156075656414, 0.002931602532044053, 0.01447468064725399, 0.00724419392645359, -0.008539513684809208, 0.01817559264600277, 0.016462208703160286, 0.003109794808551669, -0.0021640060003846884, 0.03180043399333954, -0.01539305504411459, 0.014118297025561333, 0.001034884830005467, -0.014515802264213562, -0.003034405643120408, 0.0074498001486063, -0.016174359247088432, 0.010485919192433357, -0.02772943116724491, 0.009567544795572758, -0.006291551515460014, 0.00438969349488616, -0.02542664110660553, -0.0295798871666193, 0.020834768190979958, 0.0072304867208004, -0.010581868700683117, -0.0061613344587385654, 0.004328012000769377, -0.03695429861545563, 0.03848949074745178, 0.007189365569502115, 0.010506480000913143, -0.00786101259291172, 0.021451586857438087, -0.014090882614254951, 0.010958814062178135, -0.005619904492050409, 0.020725110545754433, -0.007141390815377235, 0.00245356815867126, 0.01754506677389145, -0.02043726295232773, 0.017846623435616493, 0.03262285888195038, -0.005873485468327999, -0.030923182144761086, -0.011548218317329884, -0.04515113681554794, 0.021616071462631226, -0.012247279286384583, 0.0014538075774908066, -0.009875954128801823, -0.02608458139002323, -0.002953876741230488, -0.01166472863405943, 0.00020517791563179344, -0.0013270170893520117, -0.0173942893743515, 0.00428003678098321, -0.004550751764327288, -0.01899801939725876, -0.019751908257603645, -0.014323903247714043, 0.005239532794803381, -0.002362758619710803, 0.021972455084323883, 0.0072304867208004, -0.013384968042373657, -0.007079708855599165, -0.0035398544277995825, 0.030347485095262527, 0.004338291939347982, 0.006795287132263184, -0.014419852755963802, 0.036926884204149246, -0.012994315475225449, -0.017682138830423355, 0.016174359247088432, -0.0021879933774471283, -0.0009706328855827451, 0.026413550600409508, -0.010561307892203331, -0.048248935490846634, 0.028592977672815323, -0.008614902384579182, 0.030978010967373848, 0.0007346140337176621, -0.009999318048357964, -0.013508331030607224, 0.02441231720149517, 0.000451905420050025, 0.0020714830607175827, 0.005568502936512232, -0.025330690667033195, -0.011822359636425972, 0.008114594034850597, 0.012768148444592953, 0.019971221685409546, 0.01801110804080963, -0.010067853145301342, -0.046631500124931335, 0.008265371434390545, -0.01573573239147663, 0.021369343623518944, 0.0350901335477829, -0.002647180575877428, -0.0097251757979393, 0.03868139162659645, 0.011863481253385544, 0.018463442102074623, -0.02254815399646759, 0.00020753382705152035, -0.01754506677389145, -0.03659791499376297, -0.0046946764923632145, 0.017654724419116974, -0.04038107022643089, -4.213857391732745e-05, -0.01406346820294857, 0.019052846357226372, 0.03983278572559357, 0.011150713078677654, 0.009670347906649113, -0.0021040374413132668, 0.0012293540639802814, -0.009444180876016617, 0.019052846357226372, 0.03700912743806839, -0.005760401953011751, -0.0144609734416008, -0.014186832122504711, 0.02332945726811886, -0.00338564976118505, -0.015557540580630302, 0.0144609734416008, 0.006802140269428492, 0.007559456862509251, -0.019176211208105087, 0.005140156485140324, -0.012740734964609146, 0.004985951818525791, 0.024535680189728737, 0.04616545885801315, -0.02526215650141239, 0.018737584352493286, 0.023302042856812477, 0.029415402561426163, -0.00423206202685833, 0.012822977267205715, 0.005688440054655075, -0.009869100525975227, -0.023110143840312958, 0.012075941078364849, -0.03333562985062599, -0.008470977656543255, 0.0036083899904042482, 0.018518270924687386, -0.011130152270197868, 0.013508331030607224, 0.001704818569123745, 0.00413611251860857, -0.006394354626536369, 0.0023661854211241007, -0.016873421147465706, -0.013302724808454514, -0.018751291558146477, -0.0007937258342280984, 0.014323903247714043, 0.010492772795259953, 0.01448838785290718, -0.006236723158508539, 0.021383050829172134, 0.010259752161800861, -0.008121447637677193, -0.026961835101246834, 0.008724559098482132, -0.024508265778422356, 0.02215064875781536, 0.01738058216869831, 0.007237340323626995, -0.012548835948109627, -0.006651362404227257, -0.02338428609073162, -0.013741351664066315, 0.019107675179839134, -0.004016175866127014, 0.07813037931919098, 0.029497645795345306, -0.02420671097934246, 0.00993078202009201, -0.007237340323626995, 0.0011813793098554015, 0.016297722235322, -0.0074018253944814205, 0.012219865806400776, -0.022054698318243027, 0.030511969700455666, -0.0035981095861643553, -0.018723877146840096, -0.028373664245009422, -0.021451586857438087, 0.0031080814078450203, 0.00037094796425662935, 0.0014032627223059535, -0.01883353292942047, 0.019930100068449974, 0.00849153846502304, 0.0002987715997733176, 0.0380234494805336, -0.006342953070998192, -0.040435899049043655, -0.016859713941812515, 0.05817286670207977, 0.021328222006559372, 0.00930025614798069, -0.04161470755934715, 0.015036671422421932, -0.009279696270823479, -0.016900835558772087, 0.0001192944691865705, -0.017832916229963303, -0.0066376556642353535, -0.01252827513962984, -0.016188066452741623, -0.014132003299891949, 0.011013641953468323, 0.00857378076761961, 0.010979373939335346, -0.02338428609073162, -0.011644167825579643, 0.02809952199459076, -0.010108974762260914, 0.006791860330849886, -0.02131451666355133, -0.01189774926751852], "e0fb395c-0397-41ef-b036-342e7763bca8": [-0.014988474547863007, -0.015963561832904816, -0.004474951419979334, -0.03421161323785782, -0.01172193419188261, 0.0182759091258049, -0.016910787671804428, -0.03426733240485191, -0.021883729845285416, -0.05349046736955643, 0.018972400575876236, 0.0008209881489165127, 0.026188042014837265, -0.004913740325719118, 0.012571652419865131, 0.020393241196870804, 0.03421161323785782, 0.009479234926402569, 0.01861022599041462, -0.014904895797371864, -0.005885344464331865, -0.00892204325646162, -0.029419757425785065, 0.01113688200712204, -0.025784077122807503, 0.01291293278336525, 0.03713687136769295, -0.007250465918332338, -0.018094822764396667, 0.016158578917384148, 0.016075000166893005, -0.021437976509332657, -0.020797206088900566, -0.02001713588833809, -0.017481910064816475, 0.007125097326934338, 0.00467345118522644, -0.01215375866740942, -0.0006899608415551484, -0.021897660568356514, 0.02280309796333313, 0.015030263923108578, -0.019055979326367378, 0.016841139644384384, 0.004095363896340132, 0.03195498138666153, 0.015531737357378006, -0.018540576100349426, -0.009158849716186523, -0.019125627353787422, -0.001798686571419239, 0.016910787671804428, -0.02432144619524479, 0.0074385181069374084, -0.024488603696227074, 0.010851321741938591, -0.012585582211613655, -0.0004879786283709109, 0.006505221128463745, 0.015949631109833717, 0.01668791100382805, 0.0072922552935779095, -0.012787564657628536, 0.004788371734321117, -0.016270017251372337, -0.026062672957777977, -0.012341811321675777, -0.01998927630484104, -0.011777653358876705, -0.019752468913793564, 0.02517116442322731, 0.04251377657055855, 0.004882398061454296, -0.00416501285508275, 0.004394854884594679, -0.021368326619267464, 0.014542721211910248, 0.0008693071431480348, -0.008051429875195026, -0.011854267679154873, 0.014375562779605389, 0.00043835368705913424, -0.015420299023389816, -0.004297346342355013, 0.02517116442322731, 0.04869861155748367, -0.01614464819431305, 0.004373960196971893, -0.007139027118682861, -0.0020111161284148693, 0.012481109239161015, 0.024349305778741837, 0.014117862097918987, 0.014187511056661606, 0.004506293218582869, 0.018958469852805138, 0.017899805679917336, -0.0031307246536016464, -0.0018822654383257031, -0.018554504960775375, -0.014180545695126057, 0.00872006081044674, -0.0019937038887292147, -0.00419983733445406, -0.028639687225222588, -0.007605675607919693, 0.02032359130680561, -0.012564687989652157, -0.003785425564274192, 0.002512589329853654, -0.011157777160406113, 0.027246706187725067, -0.001394722145050764, -0.005439590662717819, -0.02085292525589466, -0.00661317678168416, 0.03125849366188049, -0.0322892963886261, 0.004057056736201048, -0.028138214722275734, 0.01752370037138462, 0.00607687933370471, 0.03462950512766838, -0.02883470430970192, 0.0008941196138039231, -0.02515723556280136, 0.0009167555836029351, -0.009618532843887806, 0.01969674974679947, -0.00806535966694355, 0.03632894158363342, 0.027372075244784355, 0.012404494918882847, -0.015629246830940247, -0.04020142927765846, 0.01168014481663704, -0.017481910064816475, 0.001995445229113102, -0.007473342586308718, -0.031007755547761917, 0.02493435889482498, 0.035325996577739716, -0.008789709769189358, -0.03164852783083916, 0.016367526724934578, 0.014159651473164558, -0.014291984029114246, 0.043516725301742554, 0.011519952677190304, -0.027288496494293213, 0.004262521397322416, -0.00395258329808712, -0.024558253586292267, 0.0014521826524287462, 0.0063241333700716496, -0.010147865861654282, -0.01080953236669302, 0.029754072427749634, -0.02721884660422802, -0.017467981204390526, 0.013024372048676014, 0.016660051420331, -0.007215640973299742, -0.008364850655198097, -0.0019745505414903164, 0.026438778266310692, -0.002195686101913452, -0.024028921499848366, 0.0007304443861357868, -0.013553704135119915, -0.00395258329808712, 0.04789068549871445, -0.019487803801894188, 0.03245645388960838, 0.020574327558279037, 0.010823462158441544, 0.015740685164928436, -0.009507094509899616, -0.00934690237045288, -0.029419757425785065, 0.028639687225222588, 0.0003027557104360312, 0.009590673260390759, 0.032735053449869156, -0.032957930117845535, -0.017788365483283997, 0.01925099641084671, 0.00532118696719408, 0.010036427527666092, -0.0029531195759773254, 0.00016117224004119635, 0.014918825589120388, -0.027622811496257782, 0.0016123753739520907, -0.6115743517875671, -0.002977496711537242, 0.02571442723274231, -0.028012845665216446, 0.0018544058548286557, 0.021229028701782227, 0.015239211730659008, 0.004050091840326786, -0.0028503872454166412, 0.031007755547761917, -0.003209079848602414, 0.017690857872366905, -0.005714704282581806, -0.02129867859184742, -0.019933557137846947, -0.026396987959742546, 0.01668791100382805, 0.010315023362636566, -0.008942937478423119, 0.009806585498154163, -0.015977490693330765, 0.039087045937776566, -0.0008388357236981392, 0.004231179598718882, 0.02021215297281742, -0.008357885293662548, 0.011666215024888515, -0.012836319394409657, -0.020630046725273132, 0.018359487876296043, -0.023374220356345177, 0.02033752202987671, 0.022872745990753174, 0.000171946085174568, 0.04025714844465256, -0.008692201226949692, -0.01741226203739643, 0.010433427058160305, 0.02386176399886608, 0.039421360939741135, -0.02592337504029274, 0.0010630185715854168, 0.025770146399736404, 0.023583166301250458, 0.0013390028616413474, 0.0004320417356211692, -0.01242539007216692, 0.004788371734321117, -0.01830376870930195, -0.00596544099971652, 0.004036162048578262, -0.025686567649245262, 0.013323862105607986, 0.003900346579030156, 0.007013658992946148, 0.0032508692238479853, 0.03961637616157532, -0.004530670586973429, 0.004617731552571058, 0.011791583150625229, 0.019390294328331947, 0.020922573283314705, -0.010008567944169044, -0.05117812007665634, -0.035966768860816956, 0.020685765892267227, -0.026619864627718925, -0.012899002991616726, 0.018860962241888046, 0.005000801291316748, -0.0010090405121445656, 0.0020233048126101494, -0.008385744877159595, -0.01365817803889513, -0.0013860160252079368, 0.020950432866811752, 0.03451806679368019, -0.007738009095191956, 0.005972405895590782, 0.02451646514236927, 0.0001813051785575226, 0.0024882121942937374, -0.001459147548303008, -0.02622983045876026, 0.034796662628650665, 0.0029757556039839983, -0.02515723556280136, -0.009263322688639164, 0.0006399006233550608, -0.005944546312093735, 0.019390294328331947, 0.0030506281182169914, -0.01322635356336832, -0.033821575343608856, 0.027803899720311165, 0.02635519951581955, 0.008211622945964336, -0.007744973991066217, -0.004321723245084286, -0.015350650064647198, -0.04343314468860626, -0.045996230095624924, 0.0017804037779569626, 0.01926492527127266, 0.028416810557246208, 0.019000260159373283, -0.025421902537345886, -0.010586654767394066, 0.01861022599041462, -0.01590784266591072, 0.007152956910431385, -0.004534152802079916, -0.030924176797270775, -0.009855340234935284, 0.0015775508945807815, -0.024140359833836555, 0.036412522196769714, -0.00033605663338676095, -0.004471468739211559, -0.024892568588256836, -0.021535484120249748, 0.01859629526734352, 0.0016315289540216327, -0.009750866331160069, 0.007048483472317457, 0.039198484271764755, 0.017997313290834427, 0.01172889955341816, 0.010900075547397137, -0.0030750054866075516, 0.011916952207684517, -0.007515131961554289, 0.014159651473164558, -0.01893061026930809, 0.02139618620276451, -0.008754884824156761, 0.0011570447823032737, 0.004753547254949808, 0.01710580661892891, -0.024990078061819077, 0.00801660493016243, -0.0007683160365559161, 0.010008567944169044, -0.02269165962934494, -0.004349582828581333, -0.0033379304222762585, -0.014821317046880722, 0.011784618720412254, -0.0007691866485401988, -0.02000320516526699, -0.0322614386677742, -0.02773424983024597, 0.003820250276476145, 0.026842743158340454, -0.005223678424954414, 0.0023227958008646965, 0.001840476063080132, -0.042012304067611694, -0.01742619089782238, -0.02408464066684246, 0.005080897826701403, 0.01075381226837635, -0.014584510587155819, 0.003426732961088419, -0.01080953236669302, -0.009646392427384853, -0.03738760948181152, 0.0032282331958413124, -0.01006428711116314, -0.01145030278712511, -0.02075541578233242, -0.032957930117845535, 0.024223938584327698, 0.02925259992480278, -0.017495840787887573, 0.011109022423624992, -0.014654159545898438, 0.012383600696921349, 0.007010176312178373, 0.003351860446855426, 0.0236667450517416, 0.013066161423921585, -0.017941594123840332, -0.006682825740426779, 0.02883470430970192, 0.02505972608923912, 0.006895255763083696, 0.014208405278623104, -0.030784878879785538, -0.01301044225692749, -0.006553975399583578, 0.002089471323415637, -0.020086785778403282, 0.0007670101476833224, -0.011923916637897491, -0.007703184615820646, -0.010579690337181091, -0.01199356559664011, -0.009897129610180855, 0.03616178408265114, 0.020741485059261322, -0.005822660401463509, -0.006386817432940006, -0.0058957915753126144, 0.027581023052334785, -0.020616117864847183, 0.012592547573149204, -0.011659250594675541, 0.008427534252405167, -0.0011500798864290118, -0.010008567944169044, -0.010558795183897018, -0.0015801627887412906, -0.03293006867170334, 0.003639162750914693, 0.02666165493428707, -0.014020352624356747, 0.019613170996308327, -0.015573526732623577, 0.012871143408119678, 0.023416008800268173, 0.011965706013143063, 0.03045056201517582, 0.018735593184828758, -0.0014199699508026242, 0.013874090276658535, -0.019000260159373283, -0.0009498388390056789, 0.012940792366862297, -0.035548873245716095, 0.0024551288224756718, 0.01700829714536667, 0.0004862374044023454, -0.007076343055814505, 0.015044193714857101, 0.022622009739279747, 0.04959012195467949, -0.01698043756186962, 0.023499587550759315, -0.014863106422126293, 0.007821587845683098, 0.004854538477957249, 0.02861182764172554, -0.022970255464315414, 0.0062753790989518166, 0.009144919924438, 0.019515663385391235, -0.005624160636216402, -0.024655763059854507, 0.018638085573911667, 0.0067106857895851135, 0.02709347940981388, -0.011979635804891586, -0.009897129610180855, 0.03914276510477066, -0.011464232578873634, -0.0015897394623607397, 0.009604603052139282, 0.015294930897653103, 0.008803639560937881, -0.009054375812411308, 0.013080091215670109, 0.005498792044818401, -0.0012745775748044252, 0.025895515456795692, -0.029057582840323448, -0.012446284294128418, -0.018972400575876236, -0.014473071321845055, -0.012557722628116608, -0.007215640973299742, -0.021479764953255653, -0.01601928099989891, -0.007710149511694908, -0.01184033788740635, -0.0030750054866075516, -0.007100720424205065, 0.026522357016801834, 0.00040505273500457406, 0.012007495388388634, -0.00771711440756917, -0.03418375179171562, 0.01686899922788143, 0.00343021540902555, -0.02142404578626156, -0.006073396652936935, -0.01816447079181671, -0.0022810061927884817, 0.033403683453798294, 0.0225941501557827, -0.01581033319234848, 0.008838463574647903, -0.024795060977339745, 0.025240814313292503, -0.003896864131093025, 0.014389492571353912, 0.031007755547761917, -0.021758362650871277, -0.01252986304461956, 0.008148938417434692, -0.0009324265993200243, 0.0017664739862084389, -0.018220189958810806, -0.017454050481319427, 0.04655342176556587, -0.016492893919348717, -0.007166886702179909, -0.0064216419123113155, 0.021674783900380135, -0.03315294533967972, 0.009924989193677902, -0.03632894158363342, -0.018470926210284233, -0.016855068504810333, -0.020922573283314705, -0.0022514055017381907, -0.02010071463882923, -0.006345028057694435, 0.03365441784262657, 0.001772568211890757, -0.008803639560937881, -0.018234120681881905, -0.006383335217833519, 0.014807387255132198, 0.04633054509758949, 0.007807658053934574, -0.006703720893710852, 0.015517807565629482, -0.030673440545797348, -0.0029148126486688852, -0.014974544756114483, -0.03245645388960838, 0.027553163468837738, -0.005060003139078617, 0.004903292749077082, 0.006365922745317221, 0.020894713699817657, -0.006191800348460674, 0.008350920863449574, 0.011464232578873634, 0.010886145755648613, -0.016660051420331, -0.028152143582701683, 0.004276451654732227, -0.01392980944365263, -0.004130188375711441, 0.035855330526828766, 0.01709187589585781, 0.0355210117995739, 0.025867655873298645, 0.03379371762275696, -0.00039482302963733673, 0.010140901431441307, -0.023081693798303604, -0.022078746929764748, -0.0037645308766514063, 0.0035904082469642162, 0.015489947982132435, 0.0002696723968256265, 0.02429358661174774, 0.004952047020196915, -0.03610606491565704, -0.021758362650871277, 0.006442536599934101, -0.0027110890951007605, 0.015294930897653103, 0.0083300257101655, -0.009862304665148258, 0.025644779205322266, -0.03691399469971657, 0.004481916315853596, 0.041148655116558075, -0.019766399636864662, -0.002387220971286297, 0.002618804108351469, 0.004304311238229275, -0.006592282094061375, 0.024572184309363365, 0.006529598031193018, -0.005477897357195616, -0.013825335539877415, -0.011868197470903397, -0.017983384430408478, -0.033320102840662, -0.03507525846362114, -0.013588529080152512, -0.004645591601729393, -0.010370742529630661, -0.016618262976408005, -0.017704786732792854, -0.0037923904601484537, 0.019822118803858757, -0.020031064748764038, 0.009646392427384853, 0.0012214701855555177, -0.04008999094367027, -0.04808570072054863, 0.012272162362933159, 0.03139778971672058, 0.008657376281917095, 0.018958469852805138, 0.007501202169805765, -0.006738545373082161, 0.012655232101678848, -6.070485596865183e-06, -0.03251217305660248, 0.009855340234935284, -0.024822920560836792, -0.013177599757909775, -0.026954181492328644, -0.014229300431907177, -0.0033884260337799788, -0.016632191836833954, 0.010050357319414616, 0.004795336630195379, -0.019083838909864426, -0.006665413733571768, -0.004116258583962917, 0.016075000166893005, 0.0343787707388401, 0.019376365467905998, 0.013351721689105034, 0.030812738463282585, -0.038474131375551224, -0.0018718180945143104, -0.01408303715288639, -0.011708004400134087, -0.02837502211332321, 0.007570851128548384, 0.002557861153036356, 0.011178672313690186, -0.019501732662320137, 0.015141702257096767, -0.03312508761882782, -0.02192552015185356, -0.016186438500881195, -0.005324669647961855, -0.02872326597571373, 0.00526895048096776, -0.012202512472867966, 0.01528100110590458, 0.03527027741074562, -0.006285826209932566, -0.018749523907899857, 0.018860962241888046, -0.031342070549726486, 0.036301083862781525, -0.00535601144656539, -0.0020128574687987566, 0.01849878579378128, 0.024349305778741837, -0.028347162529826164, -0.03304150700569153, 0.0049903541803359985, -0.0008923783898353577, 0.018248049542307854, -0.0009716041968204081, 0.007264395710080862, -0.02376425452530384, -0.020936504006385803, 0.0073897638358175755, -0.008685235865414143, -0.013323862105607986, 0.011304040439426899, -0.02129867859184742, -0.0059758881106972694, 0.009876234456896782, 0.002221804577857256, -0.014069107361137867, -0.02753923274576664, -0.02377818524837494, -0.021368326619267464, 0.02302597463130951, 0.02432144619524479, -0.024669691920280457, -0.023583166301250458, -0.0290297232568264, -0.020170364528894424, 0.01388105470687151, 0.0020145985763520002, -0.004645591601729393, 0.0006938786245882511, 0.04984085634350777, 0.02270558848977089, 0.01700829714536667, 0.02462790347635746, 0.032428596168756485, 0.017481910064816475, -0.008991692215204239, -0.016646122559905052, -0.0032369394320994616, -0.027831759303808212, -0.004471468739211559, 0.020518608391284943, 0.004332170821726322, -0.0021904625464230776, -0.02473934181034565, 0.025449762120842934, 0.014765597879886627, 0.014821317046880722, 0.007354939356446266, 0.0019379847217351198, -0.025561200454831123, -0.04711061343550682, -0.004659521393477917, 0.016088929027318954, 0.01010607648640871, -0.008845428936183453, -0.029559055343270302, 0.006540045607835054, 0.02494828775525093, -0.013901949860155582, 0.019292784854769707, 0.010398603044450283, 0.044046055525541306, 0.011777653358876705, 0.007236535660922527, -0.005993300583213568, 0.019822118803858757, -0.02354137785732746, -0.014654159545898438, -0.025087585672736168, -0.016381455585360527, 0.005871414672583342, 0.005867931991815567, 0.027455653995275497, 0.005342081654816866, 0.0031150535214692354, 0.02076934464275837, -0.0005493568605743349, -0.030088387429714203, -0.0028660581447184086, 0.02042110078036785, -0.03175996616482735, 0.004394854884594679, -0.03680255636572838, 0.00037632251041941345, -0.006320651154965162, -0.008845428936183453, 0.0068081943318247795, 0.002913071308284998, 0.03075701929628849, -0.03462950512766838, -0.016590403392910957, 0.012641302309930325, -0.019836047664284706, 0.03635680302977562, 0.035660311579704285, 0.02787354774773121, 0.008141973055899143, 0.008949902839958668, -0.020170364528894424, -0.026814883574843407, 0.0037923904601484537, -0.02721884660422802, 0.008935973048210144, 0.026814883574843407, -0.014974544756114483, -0.007946955971419811, -3.116862899332773e-06, -0.02292846515774727, -0.0016280465060845017, -0.03710900992155075, 0.007079825736582279, 0.009500130079686642, 0.0026083567645400763, -0.029976949095726013, -0.002570049837231636, 0.004652556497603655, 0.010837391950190067, -0.014682019129395485, 0.013860160484910011, 0.010001602582633495, -0.021340467035770416, 0.010468252003192902, 0.020031064748764038, -0.005557993892580271, 0.00925635825842619, -0.004405301995575428, -0.011819442734122276, 0.019863907247781754, -0.00653656292706728, 0.007086790632456541, -0.005460485350340605, -0.005429143086075783, 0.03384943678975105, -0.019376365467905998, -0.0072435010224580765, 0.01080256700515747, 0.003203856060281396, -0.011923916637897491, -0.006881325971335173, -0.02129867859184742, 0.029085442423820496, -0.01947387307882309, -0.011401548981666565, -0.002709347987547517, 0.01473773829638958, 0.002082506427541375, -0.02120116911828518, -0.018331628292798996, 0.005418695975095034, 0.00037566953687928617, 0.013713897205889225, 0.009820515289902687, -0.006930080242455006, -0.021702643483877182, 0.002489953301846981, -0.0011735864682123065, -0.026954181492328644, 0.018874891102313995, 0.00232453690841794, 0.025853725150227547, -0.029057582840323448, 0.004450574051588774, 0.008232517167925835, -0.020950432866811752, 0.006846501026302576, -0.007466377690434456, -0.00934690237045288, -0.008894182741641998, 0.015991421416401863, -0.0052968100644648075, 0.020072855055332184, 0.02443288452923298, 0.013442265801131725, -0.04173370823264122, 0.01668791100382805, -0.02547762170433998, -0.004332170821726322, 0.011004549451172352, 0.0006677602068521082, -0.0137208616361022, -0.02461397275328636, 0.022440923377871513, -0.009938918985426426, 0.0022270281333476305, -0.0026396987959742546, 0.025895515456795692, 0.027232777327299118, 0.008469323627650738, -0.0012197289615869522, 0.007661395240575075, 0.012613441795110703, -0.007863377220928669, 0.00696142204105854, 0.016492893919348717, -0.010398603044450283, -0.0013616388896480203, 0.0027163128834217787, -0.005042591132223606, -0.01269702147692442, -0.04078648239374161, -0.020504679530858994, -0.015155632048845291, 0.012703985907137394, 0.017830155789852142, 0.006125633604824543, 0.00999463815242052, -0.01269702147692442, -0.01689685881137848, 0.021646924316883087, -0.019515663385391235, 0.006087326444685459, 0.027608882635831833, -0.014863106422126293, 0.017161525785923004, 0.026160182431340218, -0.013198493979871273, -0.01840127818286419, -0.016423245891928673, -0.02464183233678341, -0.046079810708761215, -0.014055177569389343, 0.0032317156437784433, 0.03710900992155075, -0.01071202289313078, -0.019125627353787422, -0.035325996577739716, -0.0022043923381716013, -0.03162066638469696, -0.01945994421839714, -0.03669111803174019, 0.022204115986824036, 0.02827751263976097, 0.021897660568356514, 0.009353866800665855, 0.015726754441857338, 0.00041484713437967, 0.004697828087955713, -0.04204016551375389, -0.004736135248094797, -0.025324393063783646, -0.014361632987856865, 0.04048002511262894, -0.014779527671635151, -0.054716289043426514, -0.006111703813076019, -0.0036948819179087877, -0.018261980265378952, 0.004516740795224905, -0.0015636211028322577, 0.013539774343371391, 0.009987672790884972, -0.0049590119160711765, 0.007626570761203766, 0.017871946096420288, 0.026605935767292976, 0.011763723567128181, -0.0322614386677742, 0.01677148975431919, 0.021967308595776558, 0.0004446656384970993, -0.005899274256080389, 0.0033274830784648657, 0.017983384430408478, -0.022134466096758842, -0.002967049367725849, -0.0070345536805689335, -0.0009707335848361254, -0.007320114877074957, 0.005833107512444258, -0.000587663846090436, 0.016827208921313286, 0.0070658959448337555, 0.03412803262472153, -0.027803899720311165, -0.013428336009383202, -0.007128580007702112, 0.0011126435128971934, 0.007744973991066217, 0.025853725150227547, 0.03485238179564476, -0.021451905369758606, 0.0007108555873855948, 0.003033215878531337, 0.0025839796289801598, -0.003966513089835644, -0.015935702249407768, -0.012028390541672707, -0.005488344933837652, -0.008392710238695145, -0.011115987785160542, 0.009005622006952763, -0.012125899083912373, 0.01473773829638958, -0.007807658053934574, -0.019097767770290375, 0.013407441787421703, 0.004133671056479216, 0.01742619089782238, -0.011046338826417923, -0.022747378796339035, -0.0006320651154965162, 0.008538972586393356, -0.03579961135983467, 0.0006281473324634135, 0.023318501189351082, 0.030729159712791443, 0.015893911942839622, 0.2120674103498459, 0.008023570291697979, 0.016158578917384148, 0.04034072905778885, 0.006491290871053934, 0.0040605394169688225, 0.023527447134256363, 0.006379852537065744, -0.00806535966694355, 0.02065790630877018, -0.011589601635932922, 0.0008240352617576718, -0.002059870632365346, -0.0028991415165364742, 0.013665142469108105, -0.019278855994343758, -0.03390515595674515, -0.01134582981467247, -0.012334845960140228, 0.0010125229600816965, 0.006257966626435518, -0.006752475164830685, -0.010969724506139755, -0.01462629996240139, 0.02947547659277916, 0.008643446490168571, -0.0034563338849693537, 0.0062753790989518166, 0.016102859750390053, 0.015949631109833717, -0.010593620128929615, -0.0013294261880218983, 0.016270017251372337, -0.010433427058160305, -0.015016334131360054, -0.012703985907137394, 0.005554511211812496, -0.008657376281917095, -0.018108751624822617, 0.02773424983024597, -0.0004366124630905688, -0.009890164248645306, 0.0015139961615204811, -0.019334575161337852, 0.0123766353353858, -0.0035729960072785616, -0.03125849366188049, 0.022830957546830177, -0.018317699432373047, 0.018749523907899857, -0.009695147164165974, 0.010238409973680973, 0.010725952684879303, 0.02419607900083065, -0.009771761484444141, 0.004854538477957249, 0.0025996507611125708, -0.0033727551344782114, -0.011826408095657825, -0.012599512003362179, -0.017774436622858047, 0.010147865861654282, -0.008949902839958668, 0.007689254824072123, -0.03251217305660248, 0.014208405278623104, -0.012822389602661133, 0.023388149216771126, 0.004220732022076845, 0.005279397591948509, -0.006547010503709316, -0.009764796122908592, -0.040285009890794754, 0.004906775429844856, -0.016701841726899147, -0.013052231632173061, -0.002305383328348398, 0.003987407777458429, 0.013066161423921585, 0.008657376281917095, -0.019097767770290375, -0.004753547254949808, -0.025143304839730263, -0.0036530925426632166, 0.013080091215670109, -0.019209206104278564, 0.034406628459692, -0.02472541108727455, -0.008671306073665619, -0.03150922805070877, -0.0036670223344117403, 0.015016334131360054, -0.003423250513151288, -0.016186438500881195, 0.01301044225692749, -0.017064016312360764, 0.00744548300281167, 0.035019539296627045, -0.021215099841356277, -0.041482970118522644, -0.01053790096193552, 0.06691880524158478, 0.006031607277691364, 0.026285549625754356, -0.008023570291697979, 0.011088128201663494, -0.004130188375711441, 0.03613392636179924, -0.009124024771153927, -0.009214568883180618, 0.007675325032323599, -0.04917222633957863, 0.00956977903842926, -0.014904895797371864, -0.0032856937032192945, 0.016715770587325096, 0.014473071321845055, -0.016395386308431625, 0.005126169882714748, -0.029280459508299828, 0.028012845665216446, 0.010085182264447212, 0.020811134949326515, 0.014863106422126293, -0.04549475759267807, -0.03933778032660484, -0.022622009739279747, 0.02936403825879097, -0.04159441217780113, -0.027344215661287308, 0.028319302946329117, -0.018456997349858284, 0.0209782924503088, -0.014124826528131962, -0.004192872438579798, 0.005665950011461973, 0.02698204107582569, -0.009339937008917332, -0.013323862105607986, -0.012070179916918278, 0.00699624652042985, 0.017384402453899384, 0.02453039400279522, 0.011666215024888515, 0.0027006417512893677, -0.00956977903842926, 0.0011405030963942409, -0.014570580795407295, -0.012550758197903633, -0.022775238379836082, 0.005690326914191246, 0.004377442412078381, 0.0056032659485936165, -0.009172779507935047, 0.031899262219667435, -0.009931953623890877, -0.006139563396573067, -0.02646663784980774, 0.012300021946430206, 0.020741485059261322, -0.039532799273729324, -0.003015803638845682, 0.031787823885679245, -0.009319042786955833, -0.015838192775845528, -0.009590673260390759, -0.17819011211395264, 0.013567633926868439, 0.003155101789161563, 0.00013168022269383073, 0.021256888285279274, 0.002678005723282695, 0.01624215766787529, 0.00839967466890812, -0.007710149511694908, -0.007375834044069052, 0.011673180386424065, 0.00044488327694125473, -0.0182759091258049, -0.009897129610180855, 0.012077144347131252, -0.0013973340392112732, -0.023931412026286125, 0.042235180735588074, 0.0451883003115654, 0.011624425649642944, 0.017481910064816475, -0.03270719200372696, -0.019849978387355804, 0.006634071469306946, 0.009611568413674831, 0.00038415801827795804, -0.003012321190908551, 0.027497444301843643, -0.00454808259382844, -0.03529813513159752, -0.010934900492429733, -0.0031011237297207117, 0.030784878879785538, 0.0029635669197887182, 0.015350650064647198, 0.005972405895590782, -0.005286362487822771, 0.011701039969921112, -0.009465305134654045, 0.01700829714536667, 0.014333773404359818, 0.02451646514236927, 0.00764050055295229, 0.01763513870537281, 0.010280199348926544, 0.014932755380868912, 0.014473071321845055, -0.006849983707070351, 0.010851321741938591, -0.014069107361137867, 0.0322614386677742, -0.024976147338747978, 0.0011744570219889283, -0.0020877302158623934, 0.003865522099658847, -0.011060268618166447, -0.0021382258273661137, 0.025087585672736168, 0.0039316886104643345, -0.014682019129395485, 0.005627642851322889, -0.014006422832608223, 0.0220648180693388, -0.002237475709989667, -0.004227696917951107, -0.03056200221180916, 0.015085983090102673, 0.005397801287472248, 0.005697291810065508, -0.0009855340467765927, 0.005303774960339069, 0.004889362957328558, 1.5739051377750002e-05, 0.02806856483221054, 0.008044464513659477, 0.020602187141776085, -0.04064718261361122, 0.0036287154071033, 0.03217785805463791, -0.00817679800093174, 0.01241842471063137, 0.00779372826218605, -0.009931953623890877, -0.009980708360671997, -0.015336720272898674, 0.022663800045847893, -0.005477897357195616, 0.015671035274863243, -0.017064016312360764, 0.0121050039306283, 0.026605935767292976, -0.0008949902257882059, 0.0009254617034457624, 0.001298084040172398, 0.019083838909864426, -0.003381461137905717, 0.02377818524837494, -0.012362705543637276, 0.016757560893893242, -0.010698093101382256, 0.008037500083446503, 0.012502003461122513, -0.0274417232722044, 0.003785425564274192, 0.025770146399736404, 0.03206641972064972, 0.02227376401424408, -0.001598445582203567, 0.03677469491958618, -0.010510041378438473, -0.0007208676543086767, 0.008587727323174477, 0.03432305157184601, 0.006902220658957958, -0.0008797544869594276, 0.02914116159081459, -0.00315684312954545, -0.03251217305660248, 0.00828823633491993, -0.012300021946430206, 0.03735974803566933, -0.02120116911828518, -0.013574599288403988, 0.014612370170652866, 0.004227696917951107, 0.001931019825860858, -0.09867876768112183, -0.020713625475764275, 0.031787823885679245, 0.020908644422888756, -0.013894984498620033, -0.003956065978854895, -0.0004163706908002496, 0.04014571011066437, -0.01980818808078766, 0.024126429110765457, -0.039087045937776566, -0.02291453629732132, -0.009764796122908592, 0.0013459677575156093, -0.0016733183292672038, -0.004036162048578262, 0.007661395240575075, 0.005892309360206127, -0.025421902537345886, 0.03301364928483963, 0.007072860840708017, -0.0013363910838961601, 0.00833699107170105, -0.02064397744834423, -0.010043392889201641, -0.030784878879785538, -0.01957138255238533, 0.0028207863215357065, 0.00044749511289410293, 0.0055231694132089615, 0.009110094979405403, -0.008845428936183453, 0.007041518576443195, -0.000581134227104485, -0.024377165362238884, -0.01744012162089348, -0.015016334131360054, -0.021995168179273605, 0.01295472215861082, -0.03593890741467476, -0.01349798496812582, 0.004798819310963154, -0.01668791100382805, -0.020811134949326515, -0.005812212824821472, -0.010321988724172115, -0.011638355441391468, 0.029113302007317543, 0.018791312351822853, -0.013470125384628773, 0.0035050881560891867, -0.02560298889875412, 0.00033213887945748866, -0.026383059099316597, 0.033403683453798294, 0.0014748185640200973, 0.04173370823264122, 0.018749523907899857, -0.009479234926402569, 0.010635409504175186, 0.014117862097918987, -0.004945082124322653, 0.0052968100644648075, 0.01795552484691143, -0.006957939825952053, 0.014556651003658772, 0.004864986054599285, -0.021674783900380135, -0.012564687989652157, -0.0056206779554486275, -0.011944811791181564, 0.009054375812411308, -0.02528260461986065, 0.0021068835631012917, 0.007045000791549683, -0.004882398061454296, -0.02010071463882923, -0.0083300257101655, 0.018526645377278328, -0.004328688140958548, -0.007591745816171169, -0.005645055323839188, 0.014723808504641056, -0.04660914093255997, 0.04078648239374161, 0.0012684832327067852, 0.01473773829638958, -0.01496061496436596, 0.03033912368118763, -0.03379371762275696, 0.012453249655663967, 0.0002618368889670819, 0.019849978387355804, -0.024140359833836555, -0.0032630579080432653, 0.021800151094794273, -0.024042850360274315, 0.008894182741641998, 0.03279077261686325, -0.0008806250989437103, -0.028806844726204872, -0.003684434574097395, -0.041148655116558075, 0.022858817130327225, -0.006219659931957722, 0.0067106857895851135, -0.013421371579170227, -0.011645320802927017, -0.009075270965695381, -0.006957939825952053, -0.004203320015221834, 0.0073410095646977425, -0.03348726034164429, 0.009562813676893711, -0.016367526724934578, -0.023931412026286125, -0.03240073472261429, -0.021786222234368324, -0.003223009640350938, -0.0019519145134836435, 0.023276710882782936, -0.0023140895646065474, -0.014319843612611294, 0.0037053292617201805, -0.0016123753739520907, 0.01806696318089962, -0.00019806447380688041, 0.007967851124703884, -0.026856672018766403, 0.03164852783083916, -0.01851271651685238, -0.01145726814866066, 0.019738540053367615, -0.004373960196971893, -0.0026518874801695347, 0.012488073669373989, -0.01269005611538887, -0.042764514684677124, 0.018415207043290138, -0.009897129610180855, 0.0322614386677742, 0.007619605865329504, -0.025630848482251167, -0.01731475256383419, 0.016478965058922768, -0.00779372826218605, -0.016618262976408005, 0.002986202947795391, -0.026968110352754593, -0.015671035274863243, 0.02816607430577278, 0.020044995471835136, 0.03290221095085144, 0.003642645198851824, -0.012021425180137157, -0.030701300129294395, -0.007027588784694672, -0.007835517637431622, 0.01784408651292324, 0.012390565127134323, 0.008782744407653809, -0.008929007686674595, 0.035883188247680664, 0.017467981204390526, 0.0137208616361022, -0.014180545695126057, 0.005578888580203056, -0.02171657234430313, -0.03045056201517582, -0.009660323150455952, 0.005129652097821236, -0.04477040842175484, 0.0003397567488718778, -0.017495840787887573, 0.04050788655877113, 0.03674683719873428, 0.01925099641084671, 0.003170772921293974, -0.0033588253427296877, -0.018094822764396667, -0.007926061749458313, 0.02195337973535061, 0.0333479642868042, -0.026006953790783882, -0.018874891102313995, -0.005025178659707308, 0.028667546808719635, 0.00720867607742548, -0.011220461688935757, 0.018972400575876236, 0.01489096600562334, -0.0029983913991600275, -0.01500240433961153, 0.00328047014772892, -0.01168014481663704, 0.0074872723780572414, 0.007974815554916859, 0.04568977281451225, -0.02547762170433998, 0.00844146404415369, 0.013456195592880249, 0.023262782022356987, -0.008935973048210144, 0.006703720893710852, 0.004022232256829739, 0.0005889697349630296, -0.03387729451060295, 0.011526917107403278, -0.024669691920280457, -0.01926492527127266, 0.0048440913669764996, 0.025756217539310455, -0.01080953236669302, 0.012084109708666801, 0.0014843952376395464, 0.008525042794644833, -0.007410658523440361, 0.011422443203628063, -0.02054646797478199, -0.01796945370733738, -0.017621207982301712, -0.0009898870484903455, 0.007072860840708017, 0.006473878864198923, 0.020072855055332184, -0.006780334748327732, 0.02774818055331707, 0.018526645377278328, -0.001165750902146101, -0.01870773360133171, 0.0016576473135501146, -0.024237867444753647, 0.02355530671775341, 0.021479764953255653, 0.011777653358876705, -0.009660323150455952, -0.014145721681416035, -0.02742779441177845, -0.018429137766361237, 0.021688712760806084, 0.0028886941727250814, 0.06870181858539581, 0.027678530663251877, -0.02505972608923912, 0.0026048743166029453, -0.01334475725889206, -0.005596301052719355, 0.01285024918615818, -0.006950974930077791, 0.021855870261788368, -0.02808249555528164, 0.030840598046779633, 0.00454808259382844, -0.020184293389320374, -0.024391096085309982, -0.017077945172786713, 0.005735598970204592, 0.005683362018316984, 0.006877843290567398, -0.019933557137846947, 0.0074872723780572414, 0.03538171574473381, -0.001433899742551148, 0.03956065699458122, -0.011109022423624992, -0.030199825763702393, -0.019320646300911903, 0.03638466075062752, 0.0040117851458489895, 2.0581837816280313e-05, -0.027372075244784355, 0.01269702147692442, 0.0004740488075185567, -0.020602187141776085, -0.012021425180137157, 0.00010588831355562434, -0.015253141522407532, 8.553773659514263e-05, -0.02712133899331093, -0.014584510587155819, 0.0008732249261811376, 0.0001956702908501029, 0.004036162048578262, -0.02324885129928589, -0.006132598500698805, 0.016005350276827812, -0.0030088387429714203, 0.0068081943318247795, -0.024042850360274315, -0.007800693158060312], "445dfa30-22e3-48b2-9ee8-8b0dd0768f47": [-0.0024448023177683353, -0.018618108704686165, -0.011962068267166615, -0.033931706100702286, -0.01975991204380989, 0.020821118727326393, -0.013412830419838428, -0.02028379961848259, -0.02122410759329796, -0.05048113688826561, 0.001533038797788322, -0.020686788484454155, 0.010444141924381256, -0.0018352807965129614, 0.011256836354732513, 0.0032054446637630463, 0.023104725405573845, -0.016200173646211624, 0.015018071047961712, -0.02638237178325653, -0.015286730602383614, -0.006320216692984104, -0.02686595916748047, 0.010296379216015339, -0.01577031798660755, 0.006179170683026314, 0.03430783003568649, -0.009832940995693207, -0.006437755189836025, 0.00780456094071269, 0.016656894236803055, -0.022083818912506104, -0.013224768452346325, -0.01543449331074953, -0.015756884589791298, -0.0038821310736238956, 0.011115790344774723, -0.012271027080714703, -0.013352381996810436, -0.004506764467805624, 0.01860467717051506, 0.002174463588744402, -0.014279257506132126, 0.008691137656569481, 0.010853847488760948, 0.023024126887321472, 0.013862835243344307, -0.014668813906610012, -0.01098146103322506, 2.3783195501891896e-05, -0.01166654285043478, 0.022970395162701607, -0.016858389601111412, 0.0003631102154031396, -0.018483780324459076, 0.015206133015453815, -0.005467222537845373, -0.0022500241175293922, 0.006108647212386131, -0.007676947861909866, 0.010450857691466808, 0.020485293120145798, -0.017892729490995407, -0.001649737823754549, -0.022339044138789177, -0.0318898931145668, -0.007193360477685928, -0.022433076053857803, -0.015703152865171432, -0.014050896279513836, 0.028665978461503983, 0.034872014075517654, 0.0030543236061930656, -0.014212092384696007, -0.0025707364547997713, -0.02305099181830883, 0.011834454722702503, 0.009832940995693207, -0.008832183666527271, -0.014870308339595795, 0.005917227361351252, -0.014856874942779541, -0.008704571053385735, 0.006686265580356121, 0.019813643768429756, 0.04607512056827545, -0.016173306852579117, -0.011303852312266827, -0.018577810376882553, 0.00237763742916286, 0.00034002229222096503, 0.016764357686042786, 0.013741938397288322, 0.026476401835680008, 0.006686265580356121, 0.011653109453618526, 0.01688525453209877, 0.0010376976570114493, 0.009228456765413284, -0.0178658626973629, -0.02638237178325653, 0.020780818536877632, -0.012318042106926441, -0.008536658249795437, -0.02904210239648819, -0.005662000738084316, 0.017852429300546646, -0.012996407225728035, 0.021747993305325508, 0.017033018171787262, -0.02010917104780674, 0.03135257586836815, -0.0015657816547900438, -0.0027571190148591995, -0.02014946937561035, -0.007314257323741913, 0.0199748408049345, -0.030707791447639465, 0.003322983393445611, -0.01684495620429516, 0.019356923177838326, 0.015998678281903267, 0.014803143218159676, -0.014507617801427841, 0.0138359684497118, -0.01723451353609562, 0.009926971979439259, -0.005709016229957342, 0.02143903449177742, -0.012076248414814472, 0.02686595916748047, 0.019101696088910103, 0.003922429867088795, -0.012069531716406345, -0.04400644078850746, 0.011626243591308594, -0.02213755063712597, 0.0012870474020019174, -0.01057847123593092, -0.02374950796365738, 0.021707694977521896, 0.02858537994325161, 0.0003706662682816386, -0.03317945823073387, 0.009665029123425484, 0.026530133560299873, -0.007985906675457954, 0.030224204063415527, 0.021922621876001358, -0.019988274201750755, 0.002025021705776453, -0.011357584036886692, -0.017637502402067184, 0.0041037751361727715, 0.008765019476413727, -0.0012585022486746311, -0.004419450182467699, 0.02245994098484516, -0.009134425781667233, -0.022298745810985565, 0.003042569849640131, 0.008415761403739452, -0.006703056860715151, -0.005997825413942337, 0.012485953979194164, 0.03734368458390236, -0.0016463795909658074, -0.030385399237275124, 0.005554536823183298, 0.00011197647836524993, 0.0022785691544413567, 0.020015139132738113, -0.033018264919519424, 0.024985341355204582, 0.01290909294039011, 0.006605667527765036, 0.014024030417203903, -0.006696340162307024, -0.021062912419438362, -0.027833133935928345, 0.03355558216571808, 0.004866096656769514, 0.007065747398883104, 0.020659921690821648, -0.03215855360031128, -0.025845052674412727, 0.019222592934966087, 0.00436907634139061, 0.010155332274734974, 0.001791623653843999, 0.005917227361351252, 0.02855851501226425, -0.0250525064766407, -0.007589633576571941, -0.6254395246505737, -0.0022634570486843586, 0.017221080139279366, -0.033233191817998886, 0.00012719351798295975, 0.014010597951710224, 0.015259864740073681, 0.011673259548842907, -0.007502318825572729, 0.017530038952827454, 0.011444898322224617, 0.008294864557683468, 0.0017395708709955215, -0.01930319145321846, -0.011713557876646519, -0.023386817425489426, 0.014561349526047707, 0.0015011354116722941, -0.01611957512795925, 0.0010553284082561731, -0.01056503877043724, 0.03390483930706978, -0.00691126799210906, -0.00023381780192721635, 0.019356923177838326, 0.003322983393445611, 0.004819081164896488, -0.01474941149353981, -0.0178658626973629, 0.020055437460541725, -0.026785360649228096, 0.01845691353082657, 0.03264214098453522, -0.0037813836243003607, 0.04003027826547623, -0.0021291272714734077, -0.025455495342612267, 0.01695241965353489, 0.032104820013046265, 0.05338266119360924, -0.016334503889083862, -0.008456060662865639, 0.01958528347313404, 0.029095834121108055, 0.007676947861909866, 0.00842247810214758, -0.02245994098484516, 0.014225524850189686, -0.009980703704059124, -0.011928485706448555, 0.005534387659281492, -0.02511967159807682, 0.022956961765885353, -0.00530602689832449, 0.017946461215615273, 0.0073411231860518456, 0.023373384028673172, -0.0009209986310452223, 0.009537415578961372, 0.009087410755455494, 0.002564019989222288, 0.019289758056402206, -0.008362029679119587, -0.048466190695762634, -0.049621425569057465, 0.03401230275630951, -0.011142656207084656, -0.020606189966201782, 0.02511967159807682, 0.009866523556411266, 0.010309811681509018, 0.00472169229760766, 0.008731436915695667, -0.010900862514972687, -0.002935105934739113, 0.01509866863489151, 0.03986908122897148, 0.004127283114939928, -0.010974744334816933, 0.014158360660076141, 0.00472169229760766, 0.0032591766212135553, -0.005813121795654297, -0.015138967894017696, 0.03943922743201256, -0.0010267833713442087, -0.02855851501226425, -0.011720274575054646, -0.008200833573937416, -0.005420207045972347, 0.013849401846528053, 0.003731010016053915, -0.011250120587646961, -0.03562426194548607, 0.023883838206529617, 0.030734656378626823, 0.011962068267166615, 0.0022819272708147764, -0.0006951566901989281, -0.01773153245449066, -0.028048060834407806, -0.01790616102516651, -0.01730167679488659, 0.013265066780149937, 0.024689815938472748, 0.010430708527565002, -0.026852525770664215, -0.011599377728998661, 0.02196292206645012, -0.015421060845255852, 0.0171673484146595, -0.006978432647883892, -0.01611957512795925, -0.011854604817926884, -0.008032921701669693, -0.02283606491982937, 0.018524078652262688, -0.006991865579038858, -0.014601648785173893, -0.02378980629146099, -0.014547917060554028, 0.0259256511926651, 0.005900436080992222, -0.010873996652662754, -0.011814305558800697, 0.044328831136226654, 0.006518353242427111, -0.009403085336089134, 0.01810765638947487, -0.003996311221271753, 0.0046276613138616085, -0.008227700367569923, 0.010450857691466808, -0.012727747671306133, 0.03132570907473564, -0.0038048913702368736, 0.016616595908999443, 0.007280674763023853, 0.01499120518565178, -0.0234674159437418, 0.0166434608399868, 0.0091075599193573, 0.0018084148177877069, -0.02266143634915352, 3.4500717447372153e-05, -0.007038881070911884, -0.020794251933693886, 0.011303852312266827, -0.015340462327003479, -0.012022516690194607, -0.03366304561495781, -0.021143509075045586, -0.0009109239326789975, 0.02802119590342045, -0.026986856013536453, 0.006461263168603182, 0.007576200179755688, -0.039466094225645065, -0.005658642388880253, -0.016764357686042786, -0.011243403889238834, 0.00042901578126475215, -0.009900106117129326, 0.013459845446050167, -0.009940404444932938, -0.014897174201905727, -0.016724059358239174, -0.004990351852029562, -0.0019293116638436913, -0.012499387376010418, -0.009785925969481468, -0.009154575876891613, 0.021237540990114212, 0.024165930226445198, -0.0131374541670084, 0.001486023305915296, -0.011317284777760506, 0.01369492243975401, -0.0032423853408545256, 0.003969445358961821, 0.031863026320934296, 0.02718834951519966, -0.004029893781989813, -0.002166067948564887, 0.018658408895134926, 0.023413682356476784, 0.007717246655374765, 0.012546402402222157, -0.04704229533672333, -0.009940404444932938, -0.006494845729321241, 0.007173210848122835, -0.0012652187142521143, 0.0024750265292823315, -0.01646883226931095, -0.007959039881825447, -0.020592758432030678, -0.011894903145730495, -0.0051884884014725685, 0.027457010000944138, 0.011424749158322811, -0.006115363910794258, -0.010800115764141083, -0.0020518875680863857, 0.01853751204907894, -0.04019147530198097, 0.0077844117768108845, -0.012103114277124405, 0.02256740629673004, -0.003895564004778862, -0.0048795295879244804, -0.0063605159521102905, 0.013258351013064384, -0.03454962372779846, -0.0040937005542218685, 0.02417936362326145, -0.021707694977521896, 0.019531551748514175, -0.004083625972270966, 0.005581403151154518, 0.019665881991386414, 0.01296282559633255, 0.014883740805089474, 0.020928582176566124, -0.007079180330038071, 0.008106803521513939, -0.01221057865768671, -0.005138114560395479, 0.00583327142521739, -0.029767481610178947, 0.0004911433206871152, 0.014735978096723557, -0.011068775318562984, 0.00949039962142706, 0.017382275313138962, 0.013399397023022175, 0.039251167327165604, -0.019155427813529968, 0.023521147668361664, -0.022191282361745834, 0.012378490529954433, 0.0038922058884054422, 0.030143605545163155, -0.023145023733377457, 0.010504590347409248, 0.018241986632347107, 0.017288245260715485, -0.007945607416331768, -0.024058466777205467, 0.040728792548179626, 0.0016631707549095154, 0.004372434690594673, -0.022030087187886238, -0.009597864001989365, 0.02631520666182041, 3.4474483982194215e-05, -0.0030828688759356737, 0.013090438209474087, 0.019209161400794983, 0.005107890348881483, -0.015192699618637562, 0.022218147292733192, 0.0031970490235835314, -0.007791128009557724, 0.029660018160939217, -0.011599377728998661, -0.005436998326331377, -0.030492862686514854, -0.007226943038403988, -0.011747140437364578, -0.02004200592637062, -0.02442115731537342, -0.01184117142111063, -0.007421721238642931, -0.029686884954571724, -0.001306357211433351, 0.0005969280027784407, 0.013540443032979965, -0.006548577453941107, 0.009080694057047367, -0.014615081250667572, -0.029203297570347786, 0.013399397023022175, 0.0037175770848989487, -0.014024030417203903, -0.009127709083259106, 0.007273958530277014, -0.015259864740073681, 0.022406209260225296, 0.024085331708192825, -0.006699698511511087, 0.00961801316589117, -0.0178658626973629, 0.012546402402222157, -0.015635987743735313, 0.028316721320152283, 0.04884231463074684, -0.007650081999599934, -0.01224416121840477, -0.003589963773265481, 0.010457574389874935, 0.008153818547725677, -0.010558322072029114, -0.024542054161429405, 0.04371091350913048, -0.006562010385096073, 0.0057593900710344315, -0.009597864001989365, 0.01245237234979868, -0.030009275302290916, 0.001352533116005361, -0.02245994098484516, -0.028961503878235817, 0.0006733281188644469, -0.014453886076807976, -0.0029384642839431763, -0.00979264173656702, -0.012237444519996643, 0.04207209125161171, 0.007959039881825447, -0.008476209826767445, -0.03086898662149906, -0.009665029123425484, 0.021976353600621223, 0.05910510942339897, 0.004231388680636883, -0.00893293134868145, 0.03395857289433479, -0.02925702929496765, -0.005564611870795488, -0.010625487193465233, -0.03812279552221298, 0.021667396649718285, 0.0018906918121501803, -0.017825564369559288, 0.008053070865571499, 0.020539024844765663, -0.011834454722702503, 0.007374705746769905, 0.014937473461031914, -0.0037813836243003607, -0.02620774321258068, -0.025374898687005043, -0.0002003402914851904, -0.007589633576571941, -0.0026882749516516924, 0.031057048588991165, 0.02385697141289711, 0.0553438737988472, 0.03723621740937233, 0.033233191817998886, -0.0023910703603178263, 0.006313500460237265, -0.026006247848272324, -0.004244821611791849, -0.006451188586652279, -0.016858389601111412, 0.022124117240309715, -0.0004999586963094771, 0.03546306490898132, -2.0595485693775117e-05, -0.020082304254174232, -0.0077575454488396645, 0.0039795199409127235, 0.0017034696647897363, 0.016804657876491547, 0.00855009164661169, -0.008362029679119587, 0.007549334317445755, -0.03656456992030144, 0.009765775874257088, 0.038794443011283875, -0.008677705191075802, -0.008482926525175571, 0.0012391923228278756, 0.005211995914578438, -0.016549430787563324, 0.014252391643822193, 0.0054806554690003395, -0.002604318782687187, -0.0034354845993220806, 0.008449343964457512, -0.016052410006523132, -0.030492862686514854, -0.03519440442323685, 0.018094222992658615, -0.018765872344374657, -0.0052388617768883705, -0.016307637095451355, -0.013083722442388535, -0.010638919658958912, 0.02939135953783989, -0.01906139776110649, 0.002223158022388816, 0.007764262147247791, -0.03629590943455696, -0.035086940973997116, 0.015622555278241634, 0.02928389608860016, 0.019988274201750755, 0.012459088116884232, 0.016979286447167397, -0.009389652870595455, -0.0005771983414888382, -0.005064233206212521, -0.041185516864061356, 0.016616595908999443, -0.01989424228668213, -0.01838974840939045, -0.005138114560395479, -0.00728739146143198, -0.004761991091072559, -0.007092613261193037, 0.006279917899519205, -0.0019108413252979517, -0.02518683671951294, 0.0013399396557360888, -0.0016724059823900461, 0.005544462241232395, 0.03731681779026985, 0.016415100544691086, 0.027510741725564003, 0.017006151378154755, -0.03839145600795746, -0.0020468502771109343, 0.00454706372693181, -0.0014591574436053634, -0.009926971979439259, 0.010296379216015339, -0.013083722442388535, 0.00400974415242672, -0.025724155828356743, -0.002463272539898753, -0.026006247848272324, -0.016415100544691086, -0.020444994792342186, -0.010249363258481026, -0.02834358625113964, 0.006014616694301367, 0.0033112294040620327, -0.00599110871553421, 0.0310033168643713, 0.0007052314467728138, -0.011129223741590977, 0.013862835243344307, -0.0310033168643713, 0.05096472427248955, 0.007838143967092037, -0.012727747671306133, 0.010618770495057106, 0.019437521696090698, -0.01773153245449066, -0.034630220383405685, 0.01167997531592846, 0.006813878659158945, 0.026476401835680008, 0.008261281996965408, 0.007979189977049828, -0.03194362670183182, -0.013607608154416084, 0.012492670677602291, 0.009866523556411266, -0.029122699052095413, 0.002747044200077653, -0.022956961765885353, -0.008442627266049385, 0.012613567523658276, -0.008697854354977608, -0.0117337079718709, -0.030519729480147362, -0.03742428123950958, -0.008328447118401527, 0.005416849162429571, 0.028209256008267403, -0.01755690388381481, -0.017771832644939423, -0.016656894236803055, -0.027161484584212303, 0.018201686441898346, -0.012512820772826672, 0.003855265211313963, -0.004080267623066902, 0.05483342334628105, 0.014507617801427841, 0.03121824376285076, 0.03008987382054329, 0.023386817425489426, 0.010289662517607212, -0.011626243591308594, -0.019733047112822533, -0.0038149661850184202, -0.012264310382306576, 0.006793729495257139, 0.01364790741354227, 0.014265824109315872, 0.005215354263782501, -0.01790616102516651, 0.02374950796365738, 0.0034388427156955004, 0.013614324852824211, -0.0012215615715831518, -0.004557138308882713, -0.03479141741991043, -0.04921843856573105, -0.011794156394898891, 0.012915809638798237, 0.0019041248597204685, -0.013654623180627823, -0.041776567697525024, 0.00896651390939951, 0.03618844598531723, -0.017153915017843246, 0.03707502409815788, -9.224678797181696e-05, 0.03917056694626808, -0.0035933218896389008, -0.0017076674848794937, -0.0009235173347406089, 0.017718099057674408, -0.029874946922063828, -0.014547917060554028, -0.025939082726836205, 0.0005851741880178452, 0.020270366221666336, 0.021116644144058228, 0.02263456955552101, -0.001448243041522801, 0.002379316370934248, 0.00835531298071146, 0.0062463353388011456, -0.04078252613544464, -0.008751586079597473, 0.016267338767647743, -0.031970489770174026, -0.0014398475177586079, -0.028424184769392014, -0.002970367670059204, -0.02200322039425373, -0.008160535246133804, 0.011015043593943119, 0.01607927680015564, 0.02917643077671528, -0.029337627813220024, -0.00786500982940197, 0.023198755457997322, -0.018725574016571045, 0.030116740614175797, 0.031648099422454834, 0.029686884954571724, -0.008879199624061584, 0.0203240979462862, -0.025979382917284966, -0.02788686566054821, -0.007918741554021835, -0.018994232639670372, 0.012727747671306133, 0.03264214098453522, -0.00619260361418128, -0.02344054915010929, 0.00046427734196186066, -0.02749730832874775, -0.006545219104737043, -0.03637650981545448, -0.0008613897953182459, 0.00944338459521532, 0.012828495353460312, -0.025267435237765312, 0.004778782371431589, -0.009913538582623005, 0.011102357879281044, -0.015635987743735313, 0.0009579393663443625, -0.013903133571147919, -0.01434642169624567, 0.010867279954254627, 0.0178658626973629, 0.005705657880753279, 0.008509792387485504, 0.0032255942933261395, 0.009060544893145561, 0.0007052314467728138, 0.001932669896632433, -0.004328777547925711, -0.002705066232010722, -0.000602804939262569, 0.028370453044772148, -0.027067454531788826, 0.003317945869639516, 0.005242220126092434, 0.031970489770174026, -0.011431465856730938, -0.0016153157921507955, -0.021842025220394135, 0.025374898687005043, -0.011753857135772705, -0.003509365953505039, 0.005158264189958572, 0.01238520722836256, -0.011344151571393013, -0.0062060365453362465, -0.017610635608434677, -0.0030056291725486517, 0.007193360477685928, -0.001377719920128584, 0.01926289312541485, -0.02263456955552101, -0.024958476424217224, -0.007515752222388983, -0.005363116972148418, -0.02056589163839817, 0.01583748310804367, -0.0013172714971005917, 0.003106376389041543, -0.026288339868187904, -0.004543705377727747, 0.0033263415098190308, -0.01958528347313404, 0.0008156337426044047, -0.003301154589280486, -0.011431465856730938, -0.007522468455135822, 0.018940500915050507, 0.0009512228425592184, 0.01744944043457508, 0.023695776239037514, 0.007509035523980856, -0.04929903522133827, 0.019558418542146683, -0.036698900163173676, -0.009624729864299297, 0.018134523183107376, -0.0033616030123084784, 0.006840744987130165, -0.011196387931704521, 0.015353895723819733, -0.0031248468440026045, -0.006347083020955324, -0.00636723218485713, 0.019665881991386414, 0.024542054161429405, 0.018228553235530853, 0.00011480999819468707, -0.009517265483736992, 0.000978088821284473, -0.008825467899441719, 0.007126195821911097, 0.015246431343257427, 0.004644452594220638, 0.0002917475358117372, 0.01810765638947487, 0.003788100089877844, -0.006219469476491213, -0.026073412969708443, -0.03860638290643692, -0.009853090159595013, 0.0012022516457363963, 0.0004378311859909445, 0.008335163816809654, 0.008677705191075802, -0.0025002132169902325, -0.012425505556166172, 0.026503268629312515, -0.025562960654497147, 0.009436667896807194, 0.03540933504700661, -0.002386033069342375, 0.018174821510910988, 0.04201836138963699, -0.018967367708683014, -0.025965949520468712, -0.022325612604618073, -0.01002100296318531, -0.04814379662275314, -0.01112250704318285, 0.00022227382578421384, 0.03965415433049202, 4.0587536204839125e-05, -0.015555390156805515, -0.017825564369559288, -0.018967367708683014, -0.049970682710409164, -0.012660583481192589, -0.03949296101927757, 0.014709112234413624, 0.03229288384318352, 0.027403278276324272, 0.007811277639120817, 0.005326176527887583, 0.0063504409044981, 0.005860137287527323, -0.034173499792814255, 0.010699368081986904, -0.014776277355849743, -0.027282381430268288, 0.034173499792814255, -0.014077762141823769, -0.03973475471138954, -0.009255322627723217, -0.01166654285043478, -0.01692555472254753, 0.0018604676006361842, 0.006635891739279032, 0.019531551748514175, 0.0044127339497208595, -0.004029893781989813, -0.005013859365135431, 0.005336251109838486, 0.032454077154397964, 0.015192699618637562, -0.023319652304053307, -0.001524643157608807, 0.03667203336954117, -0.009900106117129326, 0.0024834221694618464, -0.002266815397888422, 0.016267338767647743, -0.019155427813529968, 0.0035563812125474215, -0.015743451192975044, -0.008415761403739452, -0.0016984323738142848, 0.003972803708165884, 0.002567378105595708, 0.026812227442860603, 0.007468736730515957, 0.03696756064891815, -0.03737054765224457, -0.0016690477496013045, -0.005776181351393461, -0.0003549245011527091, 0.009752343408763409, 0.02248680777847767, 0.020968880504369736, -0.007475452963262796, 0.00784485973417759, 0.013338948599994183, 0.008449343964457512, -0.0006208555423654616, -0.02788686566054821, -0.02357487939298153, 0.0007602226687595248, -0.009591147303581238, -0.008503075689077377, 0.005900436080992222, -0.01098146103322506, -0.0025203628465533257, -0.006538502871990204, -0.0138359684497118, 0.006572084967046976, -0.007079180330038071, 0.017946461215615273, -0.021385302767157555, -0.02599281445145607, 0.0033918272238224745, 0.004567212890833616, -0.021519633010029793, 0.0019494611769914627, 0.020122602581977844, 0.030036142095923424, 0.024501753970980644, 0.1999901980161667, 0.016616595908999443, 0.009389652870595455, 0.03637650981545448, 0.0166434608399868, 0.0007467896793968976, 0.028182391077280045, 0.007985906675457954, -0.02196292206645012, 0.00419444777071476, -0.010155332274734974, 0.01762406900525093, -0.009597864001989365, -0.0018587885424494743, 0.02165396325290203, -0.02546892873942852, -0.03710189089179039, -0.018698707222938538, 0.0025992814917117357, 0.012579984962940216, 0.0034455591812729836, -0.01440015435218811, -0.019249459728598595, -0.0065687270835042, 0.028101792559027672, 0.006300067529082298, -0.02494504302740097, 0.013439696282148361, 0.0178658626973629, 0.019168861210346222, -0.0011485196882858872, 0.0009445063769817352, 0.02648983523249626, -0.011545646004378796, -0.017919594421982765, -0.022392775863409042, 0.010638919658958912, -0.01912856288254261, -0.004409375600516796, 0.02679879404604435, 0.0030173829291015863, -0.017221080139279366, 0.018550945445895195, -0.02603311464190483, 0.012237444519996643, -0.0051112486980855465, -0.007791128009557724, 0.014655380509793758, -0.017180779948830605, 0.010128466412425041, -0.0011317285243421793, 0.007596349809318781, 0.022782333195209503, 0.03425409644842148, -0.004778782371431589, -0.0008890953031368554, -0.0004966004635207355, 0.011901619844138622, -0.014252391643822193, -0.015192699618637562, -0.01625390537083149, 0.009208307601511478, -0.01092772837728262, -0.0009084052289836109, -0.027134617790579796, 0.01695241965353489, -0.01499120518565178, 0.02729581482708454, 0.006985149346292019, 0.011357584036886692, -0.019679315388202667, -0.017946461215615273, -0.022862931713461876, 0.0005096136592328548, -0.016871822997927666, -0.01618674024939537, 0.014306123368442059, 0.00311309308744967, 0.007730679586529732, 0.01457478292286396, -0.02010917104780674, 0.00043993006693199277, -0.02777940221130848, -0.007656798232346773, 0.007683664094656706, -0.035301871597766876, 0.031137647107243538, -0.014158360660076141, -0.01825541816651821, -0.024058466777205467, 0.0008168930653482676, 0.011774006299674511, 0.00044790591346099973, -0.021600231528282166, -1.3997059795656241e-05, -0.02459578588604927, 0.007314257323741913, 0.03377050906419754, -0.024985341355204582, -0.02869284339249134, -0.005302668549120426, 0.05362445488572121, 0.005037367343902588, 0.019074831157922745, -0.018792739138007164, 0.024542054161429405, 0.008798601105809212, 0.030492862686514854, -0.0015657816547900438, 0.005913869012147188, -8.479568350594491e-05, -0.03753174468874931, 0.004812364932149649, -0.001016708672977984, 0.0026311848778277636, 0.013090438209474087, 0.004684751387685537, -0.018336016684770584, 0.016441967338323593, -0.030734656378626823, 0.01273446436971426, -0.008912782184779644, 0.020659921690821648, 0.018403181806206703, -0.03076152317225933, -0.03696756064891815, -0.0116463927552104, 0.03597351908683777, -0.03194362670183182, -0.021533066406846046, 0.014709112234413624, -0.01573001965880394, 0.010471007786691189, -0.014037463814020157, -0.0027235366869717836, 0.011794156394898891, 0.03240034729242325, -0.007381421979516745, -0.005433639977127314, -0.00947696715593338, 0.013600891456007957, 0.015018071047961712, 0.022688303142786026, 0.0040534017607569695, -0.00472169229760766, -0.012311325408518314, 0.007764262147247791, -0.01499120518565178, -0.004832514561712742, -0.03411976620554924, -0.01071951724588871, 0.00546386418864131, 0.0045772879384458065, 0.003230631584301591, 0.039949681609869, -0.0008865766576491296, -0.010706084780395031, -0.029122699052095413, 0.006363873835653067, 0.032212283462285995, -0.03454962372779846, 0.0033884691074490547, 0.03449589014053345, -0.001228278037160635, -0.01527329720556736, 0.0050340089946985245, -0.16979286074638367, 0.014547917060554028, 0.014601648785173893, -0.02074052020907402, 0.029874946922063828, 0.006434397306293249, 0.004110491834580898, -0.0019108413252979517, -0.012882227078080177, -0.004560496658086777, 0.019988274201750755, 0.003747801296412945, -0.024058466777205467, 0.00015552871627733111, 0.011465048417448997, -0.0032877216581255198, -0.021774860098958015, 0.022258447483181953, 0.05142144486308098, 0.01198221743106842, 0.020512159913778305, -0.03758547827601433, -0.01919572800397873, 0.0036168296355754137, 0.021586798131465912, 0.007959039881825447, 0.006669474299997091, 0.007643365301191807, -0.0015926476335152984, -0.030251068994402885, -0.011485197581350803, 0.0038451903965324163, 0.033474985510110855, -0.0027386487927287817, 0.02045842818915844, 0.015071802772581577, -0.009087410755455494, 0.004315344616770744, -0.004835872445255518, 0.02196292206645012, 0.0171673484146595, 0.017610635608434677, 0.005903794430196285, 0.013150886632502079, 0.029095834121108055, 0.01601211167871952, 0.013191185891628265, -0.0008408205467276275, 0.007381421979516745, -0.01636136882007122, 0.023252487182617188, -0.021815158426761627, 0.00457057124003768, 0.014883740805089474, 0.00208043260499835, 0.0034455591812729836, 0.00140794413164258, 0.01688525453209877, -0.00018344412092119455, -0.022956961765885353, 0.016334503889083862, -0.00100075697991997, 0.019947974011301994, 0.004372434690594673, 0.004453032743185759, -0.028988368809223175, 0.02616744488477707, -0.000656956632155925, -0.002229874487966299, 0.001149359275586903, -0.0021475974936038256, 0.011303852312266827, -0.01005458552390337, 0.02228531241416931, 0.008328447118401527, 0.0063605159521102905, -0.03143317252397537, 0.01684495620429516, 0.026718195527791977, -0.0005180092412047088, 0.0015783751150593162, -0.0039795199409127235, -0.013668056577444077, 0.0006695500924251974, -0.0069179842248559, 0.011310569010674953, -0.018241986632347107, 0.004150790628045797, -0.014883740805089474, 0.013929999433457851, 0.03479141741991043, -0.015756884589791298, -0.013862835243344307, 0.021036045625805855, 0.023386817425489426, -0.005366475321352482, 0.027859998866915703, -0.006095214281231165, 0.008200833573937416, -0.014615081250667572, 0.0030979809816926718, 0.016737492755055428, -0.03471082076430321, -0.00048610594240017235, 0.023306218907237053, 0.025106238201260567, 0.013540443032979965, -9.224678797181696e-05, 0.03769294172525406, -0.019907675683498383, 0.001924274256452918, 0.004889604635536671, 0.044785551726818085, 0.006152304820716381, -0.006343724671751261, 0.045457202941179276, 0.008959797210991383, -0.018524078652262688, 0.008879199624061584, -0.018053924664855003, 0.03403916954994202, -0.02074052020907402, -0.009416518732905388, 0.007482169661670923, 0.014185226522386074, -0.002449839608743787, -0.10955937951803207, -0.03771980479359627, 0.016562864184379578, 0.008200833573937416, -0.018644975498318672, 0.008200833573937416, 0.0023809955455362797, 0.0332869216799736, -0.02497190795838833, 0.010242646560072899, -0.017395708709955215, -0.035301871597766876, 0.00336328218691051, 0.004301911685615778, 0.0009369503241032362, -0.008939648047089577, -0.01843004859983921, 0.0005763587541878223, -0.008227700367569923, 0.03401230275630951, 0.0056821503676474094, 0.0013038385659456253, 0.0004229289770592004, -0.03054659441113472, -0.004046685062348843, -0.008140385150909424, -0.015743451192975044, 0.014547917060554028, 0.0025371538940817118, 0.012311325408518314, 0.013379247859120369, -0.007723963353782892, 0.014897174201905727, -0.005477297585457563, -0.00691126799210906, -0.021062912419438362, -0.027859998866915703, -0.030707791447639465, 0.03299139812588692, -0.03054659441113472, -0.01727481186389923, -0.002221479080617428, -0.010887430049479008, -0.011659826152026653, 0.002323905471712351, 0.000507934542838484, -0.016388235613703728, 0.027161484584212303, 0.019571851938962936, -0.02168082818388939, -0.008926214650273323, -0.007979189977049828, -0.008543374948203564, -0.012035949155688286, 0.01423895824700594, 0.0035160824190825224, 0.022903230041265488, 0.012982974760234356, -0.028074927628040314, 0.0043455688282847404, 0.018000192940235138, -0.0020065512508153915, 0.0037746671587228775, 0.03790786862373352, -0.0030946226324886084, 0.03460335358977318, 0.006958283483982086, -0.005584761034697294, -0.019397221505641937, -0.00914114248007536, -0.025173403322696686, 0.005426923744380474, -0.03761234134435654, 0.003286042483523488, 0.0009251964511349797, -0.006028049625456333, -0.0310033168643713, -0.014628514647483826, 0.0162942036986351, -0.00453698867931962, -0.015031504444777966, -0.011686692014336586, -0.009342636913061142, -0.0427437424659729, 0.032695870846509933, 0.0033515284303575754, 0.006998582277446985, -0.005205279681831598, 0.02028379961848259, -0.033474985510110855, 0.021076343953609467, 0.01906139776110649, 0.015058370307087898, -0.021533066406846046, -0.00583327142521739, 0.006609025876969099, -0.016616595908999443, 0.01061205379664898, 0.015676287934184074, -0.0030845478177070618, -0.030009275302290916, -0.0070590307004749775, -0.04371091350913048, 0.024756981059908867, 0.0007320973672904074, 0.006068348418921232, -0.008113519288599491, -0.013197902590036392, 0.00164218177087605, -0.003228952409699559, 0.007327690254896879, -0.008281432092189789, -0.018268851563334465, 0.01294267550110817, -0.008100086823105812, -0.020377829670906067, -0.030627192929387093, -0.02200322039425373, 0.004735125228762627, -0.0017697950825095177, 0.014158360660076141, 0.009691894985735416, -0.020310664549469948, -0.012687449343502522, 0.006444471888244152, 0.019706180319190025, -0.012217294424772263, -0.0020871490705758333, -0.02263456955552101, 0.02802119590342045, -0.01836288347840309, -0.01543449331074953, 0.020444994792342186, -0.0029602928552776575, -0.009900106117129326, 0.02553609386086464, -0.015112102031707764, -0.034415293484926224, 0.014521051198244095, 0.0019528194097802043, 0.026570433750748634, 0.006461263168603182, -0.020552458241581917, -0.01801362633705139, 0.027618205174803734, 0.0007451105630025268, -0.004674676805734634, -0.00364369573071599, -0.014964339323341846, -0.0016522564692422748, 0.0185643769800663, 0.005470580887049437, 0.019356923177838326, 0.006373948883265257, -0.00583998765796423, -0.04618258401751518, 0.004916470497846603, -0.007750829216092825, 0.03030480071902275, 0.009591147303581238, -0.004409375600516796, -9.266656707040966e-05, 0.045349739491939545, 0.012096397578716278, 0.009577713906764984, -0.01769123412668705, 0.00893293134868145, -0.008315014652907848, -0.03368991240859032, -0.006330291740596294, -0.0009453459060750902, -0.042125824838876724, 0.010061301290988922, -0.02487787790596485, 0.025065939873456955, 0.030251068994402885, 0.013500144705176353, -0.011162806302309036, 0.005128039978444576, -0.008765019476413727, -0.013063572347164154, 0.028880905359983444, 0.027725670486688614, -0.02010917104780674, -0.023453982546925545, 0.0076299323700368404, 0.010699368081986904, 0.014185226522386074, -0.016522563993930817, 0.017382275313138962, 0.004748558159917593, -0.0011216538259759545, 0.0007085896795615554, -0.002933426992967725, -0.0012811704073101282, 0.014789710752665997, 0.012935958802700043, 0.031191378831863403, -0.02004200592637062, -0.006924700923264027, 0.023951001465320587, 0.03546306490898132, 0.0034237306099385023, 0.01867184229195118, 0.005453789606690407, 0.000993200927041471, -0.035543665289878845, 0.006978432647883892, -0.028719710186123848, -0.017610635608434677, -0.004496689885854721, 0.02006887085735798, 0.002197971334680915, -0.0012249198043718934, 0.0005037367227487266, 0.005917227361351252, -0.003613471519201994, 0.0018336017383262515, -0.023024126887321472, -0.015541957691311836, -0.024340558797121048, -0.01352029386907816, -0.004117208067327738, 0.009409802034497261, 0.011908336542546749, 0.0012543044285848737, 0.025200270116329193, 0.0026698047295212746, 0.012109830975532532, -0.02845104970037937, 0.007038881070911884, -0.03078838810324669, 0.031406305730342865, 0.010188914835453033, 0.00746202003210783, -0.02507937327027321, -0.01642853394150734, -0.023601744323968887, -0.02283606491982937, 0.020780818536877632, -0.006343724671751261, 0.07205450534820557, 0.025912217795848846, -0.01954498514533043, -0.0034086185041815042, -0.0016682081623002887, -0.01366133987903595, 0.015112102031707764, -0.0034455591812729836, 0.01712704822421074, -0.03019733726978302, 0.034737683832645416, 0.0035933218896389008, -0.0322391502559185, -0.01954498514533043, -0.008516509085893631, -0.00034128164406865835, -0.0015993640990927815, 0.0020686788484454155, -0.008079936727881432, 0.011337434872984886, 0.02666446380317211, -0.006112005561590195, 0.03299139812588692, -0.004278404172509909, -0.03167496621608734, -0.013271783478558064, 0.05905137583613396, 0.011196387931704521, -0.004295194987207651, -0.0322391502559185, 0.002901523606851697, -0.015380761586129665, -0.023910703137516975, -0.008926214650273323, -0.011673259548842907, 0.00015143585915211588, -0.005685508716851473, -0.036591436713933945, -0.006017974577844143, 0.006985149346292019, -0.012432222254574299, 0.010222497396171093, -0.015649421140551567, -0.016912121325731277, 0.029874946922063828, -0.008805317804217339, 0.02196292206645012, -0.021734559908509254, -0.01128370314836502], "7301d5e7-c3de-468d-83e2-fd22ec514f61": [-0.013382711447775364, 0.0006898934370838106, -0.0015646887477487326, -0.03818050026893616, -0.004605104215443134, 0.01805759035050869, -0.02828650362789631, -0.03432895988225937, -0.020499691367149353, -0.06564366817474365, 0.013612966984510422, 0.012894291430711746, 0.015378257259726524, -0.009607922285795212, 0.009105546399950981, 0.01627136766910553, 0.02562112547457218, 0.01565735414624214, 0.023109249770641327, -0.016327187418937683, -0.006021522451192141, -0.010794085450470448, -0.027365483343601227, 0.002665378386154771, -0.019229797646403313, 0.00979631207883358, 0.042283229529857635, -0.018001770600676537, -0.008038000203669071, 0.01627136766910553, 0.009963770397007465, -0.02036014199256897, -0.016145775094628334, -0.008345006965100765, -0.027058474719524384, 0.003120655892416835, -0.0009777124505490065, -0.005274937488138676, 0.007298392243683338, -0.0053098248317837715, 0.016243457794189453, 0.00022175147023517638, -0.015099159441888332, -0.0026252581737935543, 0.007654241286218166, 0.017276117578148842, 0.01422000303864479, -0.009719560854136944, -0.016676058992743492, -0.010333574377000332, -0.008191503584384918, 0.027142204344272614, -0.016062045469880104, 0.01396183855831623, -0.02538389153778553, -0.0013876365264877677, 0.005362155381590128, -0.0016667337622493505, 0.006188980769366026, 0.00773099297657609, 0.0161876380443573, 0.0068099722266197205, -0.013047794811427593, 2.9763101338176057e-05, -0.025439711287617683, -0.02094624564051628, -0.019732173532247543, -0.016829563304781914, -0.005306336097419262, -0.017359847202897072, 0.027058474719524384, 0.028774922713637352, -0.005840109195560217, -0.004542307462543249, -0.0026025816332548857, -0.014875882305204868, 0.011868609115481377, -0.00153329037129879, -0.012370984070003033, -0.021002065390348434, 0.01745753176510334, -0.003889917628839612, -0.0067367092706263065, -0.005299358628690243, 0.02785390242934227, 0.0417250357568264, -0.007696105632930994, -0.006632047705352306, -0.014150229282677174, -0.0015542226610705256, 0.013382711447775364, 0.023402301594614983, 0.018853018060326576, 0.03100770153105259, -0.001236749580129981, 0.011973271146416664, 0.019704263657331467, -0.005669162143021822, 0.0034991814754903316, -0.015964360907673836, -0.029528485611081123, 0.0038096769712865353, 0.003478249069303274, -0.006980919279158115, -0.029528485611081123, 0.003190430114045739, 0.026011861860752106, -0.012922201305627823, 0.0029531975742429495, 0.02717011421918869, -0.00954512506723404, 0.022760378196835518, -0.002878190018236637, -0.0016318465350195765, -0.014143251813948154, -0.0019571692682802677, 0.03276601433753967, -0.03483133390545845, 0.0024717547930777073, -0.029081931337714195, 0.017820358276367188, 0.00524005014449358, 0.032319456338882446, -0.035808172076940536, 0.006188980769366026, -0.007640286348760128, -0.008351984433829784, -0.015322437509894371, 0.014457236044108868, 0.0005032471963204443, 0.03583608195185661, 0.02598395198583603, 0.0027508519124239683, 0.0014190349029377103, -0.037789762020111084, 0.00209671794436872, -0.019732173532247543, 0.00872876588255167, 0.005512170027941465, -0.030979791656136513, 0.011212730780243874, 0.02341625653207302, 0.0031433324329555035, -0.029584305360913277, 0.011596489697694778, 0.023820947855710983, -0.01592249609529972, 0.029193568974733353, 0.012705900706350803, -0.030114589259028435, 0.007123956456780434, -0.008791562169790268, -0.019313527271151543, 0.021420711651444435, 0.007786812260746956, 0.0046923221088945866, -0.008847381919622421, 0.02376512810587883, -0.01805759035050869, -0.019704263657331467, 0.0013867643428966403, 0.00782867707312107, -0.00694254320114851, -0.007584467064589262, -0.0028363254386931658, 0.03162171691656113, 0.005669162143021822, -0.028328368440270424, -0.011987226083874702, -0.02377908304333687, 0.00705069350078702, 0.043315887451171875, -0.02811904437839985, 0.01847623661160469, 0.013703673146665096, 0.008163593709468842, 0.01865764893591404, -0.0020112444180995226, -0.0010030056582763791, -0.024672193452715874, 0.03388240188360214, 0.0006227356498129666, 0.0029654079116880894, 0.027211979031562805, -0.027867857366800308, -0.018615784123539925, 0.028244638815522194, 0.007975202985107899, 0.007933338172733784, -0.0034189410507678986, 0.02036014199256897, 0.009433486498892307, -0.015489895828068256, -0.001758312457241118, -0.6135673522949219, -0.004266698844730854, 0.019648443907499313, -0.018866972997784615, -0.0008516826201230288, 0.0147781977429986, 0.0120500223711133, 0.0029095886275172234, -0.00978933461010456, 0.018797198310494423, 0.008282209746539593, -0.0009838177356868982, -0.0021560259629040956, -0.0003261948877479881, -0.02317902445793152, -0.033938221633434296, 0.02221613936126232, 0.005588921718299389, -0.017345892265439034, 0.017066795378923416, -0.030979791656136513, 0.0320124514400959, 0.005030727479606867, 0.005620320327579975, 0.009677696041762829, -0.005724981892853975, 0.010542897507548332, -0.014171161688864231, -0.010312641970813274, 0.024058179929852486, -0.03307301923632622, 0.021323027089238167, 0.01949494145810604, -0.0014827039558440447, 0.03963180631399155, -0.0025589726865291595, -0.017694763839244843, 0.018462281674146652, 0.01857391931116581, 0.03603145107626915, -0.02989131212234497, -0.009517215192317963, 0.013508305884897709, 0.02062528394162655, -0.003998067695647478, 4.685235398937948e-05, -0.005871507804840803, 0.008484555408358574, -0.01635509729385376, -0.010228913277387619, -0.0027857390232384205, -0.02146257646381855, 0.007814722135663033, 0.006764618679881096, 0.003711993107572198, 0.001323095289990306, 0.03569653630256653, 0.003251482732594013, 0.0013553658500313759, 0.010968521237373352, 0.01610391028225422, 0.016759788617491722, -0.015503850765526295, -0.04593940079212189, -0.04401363059878349, 0.01610391028225422, -0.03544534742832184, -0.014610739424824715, 0.019969405606389046, 0.004678367171436548, 0.008868314325809479, 0.00023178152332548052, -0.007549579720944166, -0.01124761812388897, -0.0014408393763005733, 0.02496524713933468, 0.046637143939733505, -0.007891474291682243, -0.0009942838223651052, 0.022606875747442245, -0.0013213509228080511, -0.0026618896517902613, -0.004019000101834536, -0.026207229122519493, 0.03611518070101738, 0.004503931384533644, -0.02853769063949585, -0.017248207703232765, -0.014624694362282753, -0.0004901645006611943, 0.010668491013348103, 0.013319915160536766, -0.011819767765700817, -0.028858652338385582, 0.035305798053741455, 0.033100929111242294, 0.0035375573206692934, -0.009949815459549427, 0.009335801936686039, -0.016396962106227875, -0.03145425766706467, -0.03901779279112816, 0.00014848844148218632, 0.0033840537071228027, 0.02760271541774273, 0.02019268460571766, -0.02291388250887394, -2.253696493426105e-06, 0.014038589783012867, -0.021239299327135086, 0.0145688746124506, -0.006018033716827631, -0.029919221997261047, -0.014213025569915771, -0.0020932292100042105, -0.02391863241791725, 0.020122909918427467, 0.004364382941275835, -0.01994149573147297, -0.014171161688864231, -0.021937042474746704, 0.010598717257380486, -0.008638058789074421, -0.01048010028898716, 0.00017574403318576515, 0.024672193452715874, 0.0018751844763755798, 0.019215844571590424, -0.005881974007934332, -0.011617422103881836, 0.010640581138432026, -0.00046138258767314255, 0.018713468685746193, -0.010612672194838524, 0.023458121344447136, -0.007444918155670166, 0.012573329731822014, 0.0026392131112515926, 0.012384939007461071, -0.033268388360738754, 0.004577194340527058, -0.001706853974610567, 0.016396962106227875, -0.0100126126781106, 0.007479805499315262, -0.016717923805117607, -0.013926951214671135, 0.03176126256585121, -0.003882940160110593, -0.019104205071926117, -0.026849152520298958, -0.023820947855710983, -0.008959020487964153, 0.02640259638428688, -0.006499476730823517, 0.0067122881300747395, 0.009642808698117733, -0.034021951258182526, -0.008756675757467747, -0.02163003385066986, -0.006984408013522625, 0.003443361958488822, -0.007689128629863262, 0.004598126746714115, -0.005473794415593147, -0.013787402771413326, -0.03957598656415939, 0.008903201669454575, -0.004748141393065453, -0.015392211265861988, -0.0054633282124996185, -0.014415371231734753, 0.029500575736165047, 0.027142204344272614, -0.019439121708273888, 0.000566480157431215, -0.016299277544021606, 0.008184526115655899, 0.0018315755296498537, 0.007898451760411263, 0.030728604644536972, 0.022258004173636436, -0.011094114743173122, -0.00726350536569953, 0.033100929111242294, 0.014485145919024944, 0.01089874655008316, 0.0352499783039093, -0.03533370792865753, -0.006569250952452421, -0.0011669752420857549, 0.014045567251741886, -0.018294822424650192, -0.002070552436634898, -0.018001770600676537, -0.018643693998456, -0.020988110452890396, -0.00805195514112711, 0.0014539221301674843, 0.03859914466738701, 0.013236185535788536, 0.003040415234863758, -0.007033249828964472, -0.00626224372535944, 0.004175992216914892, -0.029333118349313736, -0.0003076610737480223, -0.0072844373062253, 0.011777902953326702, -0.009614898823201656, -0.01239889394491911, -0.006084319204092026, -0.003959691617637873, -0.02657005563378334, 0.005854064133018255, 0.021169524639844894, -0.017945950850844383, 0.013710650615394115, -0.0035288354847580194, 0.00016822149336803705, 0.013138501904904842, 0.01610391028225422, 0.022634783759713173, 0.024239594116806984, 0.010382416658103466, 0.012405871413648129, 0.000670269422698766, 0.005466816946864128, 0.02204868011176586, -0.032152000814676285, -0.015378257259726524, 0.013424576260149479, 0.0019938007462769747, -0.003687571967020631, 0.022523146122694016, 0.019480986520648003, 0.058052223175764084, -0.016801653429865837, 0.02257896587252617, -0.010975497774779797, -3.679504516185261e-05, -0.0006689611473120749, 0.029109839349985123, -0.028509780764579773, 0.022983655333518982, 0.009712583385407925, 0.018839063122868538, -0.014973565936088562, -0.018699513748288155, 0.02204868011176586, -0.0076612187549471855, 0.008163593709468842, -0.010884791612625122, -0.012210503220558167, 0.036924563348293304, -0.011135979555547237, 0.012922201305627823, 0.009245095774531364, 0.024909427389502525, 0.02051364630460739, -0.004713254515081644, 0.019439121708273888, 0.002644446212798357, -0.008100796490907669, 0.015434076078236103, -0.007696105632930994, -0.0020740411709994078, -0.023360436782240868, -0.005756380036473274, 0.004102729260921478, 0.007437941152602434, -0.029026111587882042, -0.0013588545843958855, -0.008442690595984459, -0.011059227399528027, -6.660584404016845e-06, -0.003209618153050542, 0.019550761207938194, -0.002019966021180153, 0.018671603873372078, -0.003075302578508854, -0.03566862642765045, 0.016983065754175186, 0.0024089578073471785, -0.017080750316381454, -0.009552102535963058, -0.015573624521493912, -0.008833426982164383, 0.009845154359936714, 0.01592249609529972, -0.011575557291507721, 0.0011163888266310096, -0.007221640553325415, 0.00796822551637888, -0.00886133685708046, 0.020388051867485046, 0.044683463871479034, -0.011345301754772663, -0.011701150797307491, 0.016815608367323875, 0.004810938145965338, 0.0051458547823131084, -0.016327187418937683, -0.024644285440444946, 0.03949225693941116, -0.017010975629091263, -0.01048010028898716, -0.02377908304333687, 0.019815903156995773, -0.017527304589748383, 0.017680808901786804, -0.021267207339406013, -0.021016020327806473, -0.026165364310145378, -0.027658535167574883, 0.006953009404242039, -0.010863859206438065, -0.006530874874442816, 0.026374686509370804, 0.007863564416766167, -0.004462067037820816, -0.022341731935739517, 0.0012070954544469714, 0.024728013202548027, 0.05283310264348984, 0.001236749580129981, -0.013033839873969555, 0.021853312849998474, -0.010235890746116638, 0.00010095469770021737, -0.018001770600676537, -0.029444755986332893, 0.03226364031434059, -0.011094114743173122, -0.008791562169790268, 0.0038759626913815737, 0.026277003809809685, -0.004601615481078625, 0.013892063871026039, 0.011512760072946548, 0.004022488836199045, -0.023458121344447136, -0.03552907705307007, 0.008742720820009708, -0.010745243169367313, -0.000616194331087172, 0.041864581406116486, 0.02401631511747837, 0.04326006770133972, 0.03527788817882538, 0.025746718049049377, -0.0010535919573158026, 0.014087432064116001, -0.023318571969866753, -0.018699513748288155, 0.00805195514112711, -0.008889246731996536, 0.013724605552852154, 0.0008918028324842453, 0.03527788817882538, 0.00660413783043623, -0.029947131872177124, -0.03840377926826477, 0.006841370835900307, -0.006534363608807325, 0.004392292350530624, 0.011812790296971798, -0.008868314325809479, 0.017583124339580536, -0.032403185963630676, 0.0018525078194215894, 0.039994630962610245, -0.012231435626745224, 0.0005202546599321067, 0.0015018918784335256, -0.0023008077405393124, -0.00592383835464716, 0.020206639543175697, -0.010633603669703007, 0.0005281042540445924, -0.02897029183804989, -0.010808039456605911, -0.024923382326960564, -0.029361028224229813, -0.034273140132427216, -0.01977403834462166, -0.004081796854734421, -0.014820062555372715, -0.02401631511747837, -0.02204868011176586, -0.014708423987030983, 0.00419343588873744, -0.0241000447422266, -0.008784584701061249, 0.0008904945570975542, -0.03176126256585121, -0.03882242366671562, 0.0069076563231647015, 0.024490781128406525, 0.01452701073139906, 0.00940557662397623, 0.016452781856060028, -0.009084614925086498, 0.014471190981566906, -0.008477577939629555, -0.029612215235829353, 0.0006096530123613775, -0.018085500225424767, -0.00592383835464716, -0.02051364630460739, -0.021225344389677048, 0.0034765047021210194, -0.010501032695174217, 0.005124922841787338, 0.014010680839419365, -0.02377908304333687, -0.003959691617637873, -0.0022467325907200575, 0.013473418541252613, 0.03125888854265213, 0.026709603145718575, 0.015796903520822525, 0.016369052231311798, -0.036589644849300385, 0.0006427958142012358, -0.02301156520843506, -0.007165821269154549, -0.021406756713986397, 0.001767034293152392, 0.0031224002595990896, 0.005159809719771147, -0.013026862405240536, 0.00865201372653246, -0.028160909190773964, 0.0013248396571725607, -0.01444328110665083, -0.004106217995285988, -0.020541556179523468, 0.003075302578508854, 0.009224163368344307, 0.006168048363178968, 0.023569760844111443, -9.773853525985032e-05, -0.017597079277038574, 0.010891769081354141, -0.02897029183804989, 0.0437624454498291, -0.0023618601262569427, 0.0017687786603346467, 0.022704558447003365, 0.015643399208784103, -0.01994149573147297, -0.03268228471279144, 0.00988701917231083, -0.008484555408358574, 0.00920323096215725, -0.009656763635575771, -0.0015472451923415065, -0.01013122871518135, -0.027658535167574883, 0.0043608942069113255, 0.0026252581737935543, -0.0033195125870406628, 0.00975444819778204, -0.024560555815696716, 0.005393553990870714, 0.00851944275200367, 0.00018272145825903863, -0.0015280572697520256, -0.024923382326960564, -0.035054609179496765, -0.0077170380391180515, 0.014806107617914677, 0.022118454799056053, -0.028258593752980232, -0.01779244840145111, -0.027812037616968155, -0.023960497230291367, 0.011701150797307491, 0.002260687528178096, -0.0022258004173636436, 0.006307597272098064, 0.05367039516568184, 0.017150525003671646, 0.03349166736006737, 0.022523146122694016, 0.028774922713637352, 0.006436679512262344, -0.011770925484597683, -0.009224163368344307, -0.01252448745071888, -0.014401416294276714, -0.010647558607161045, 0.01124064065515995, 0.01081501692533493, 0.0035724444314837456, -0.03354748710989952, 0.01575503870844841, -0.00028542050858959556, 0.009140433743596077, 0.010033545084297657, 0.000645412306766957, -0.0242814589291811, -0.04828381910920143, -0.002688055159524083, 0.017652899026870728, 0.002422912744805217, -0.0026409574784338474, -0.027574805542826653, 0.006544829811900854, 0.025704853236675262, -0.012273300439119339, 0.02964012511074543, 0.006740198004990816, 0.031817082315683365, 0.006527386140078306, -0.008226390928030014, 0.0002514055522624403, 0.011484850198030472, -0.032905563712120056, -0.012301210314035416, -0.032403185963630676, -0.016731878742575645, 0.00199205637909472, 0.01384322252124548, 0.03452432528138161, -0.000779727881308645, 0.012636126950383186, 0.008017067797482014, 0.009573034942150116, -0.030784422531723976, 0.005152832251042128, 0.006729731801897287, -0.04038536921143532, 0.009398599155247211, -0.03558489680290222, 0.007144888862967491, -1.944686118804384e-05, -0.016299277544021606, 0.010591739788651466, -0.0015690496657043695, 0.01957866922020912, -0.03212409093976021, -0.018587874248623848, 0.024588465690612793, -0.018699513748288155, 0.023444166406989098, 0.020597374066710472, 0.02471405826508999, 0.005030727479606867, 0.02042991667985916, -0.029249388724565506, -0.015880631282925606, 0.00432251812890172, -0.034635964781045914, 0.00262002507224679, 0.03826422989368439, -0.014973565936088562, 0.006220379378646612, 0.009468372911214828, -0.012650081887841225, -0.002065319335088134, -0.03583608195185661, 0.01102434005588293, 0.01602018065750599, -0.0020757855381816626, -0.03653382509946823, -0.019634488970041275, -0.023486031219363213, 0.0012698923237621784, -0.01832273229956627, 0.0018682070076465607, -0.0023339504841715097, -0.01486192736774683, 0.01000563520938158, 0.025021065026521683, -0.0015891097718849778, 0.015448031015694141, -0.01252448745071888, -0.006565762218087912, 0.012838472612202168, -0.009503260254859924, -0.005302847363054752, -0.0027107317000627518, -0.0037643236573785543, 0.03184499219059944, -0.024211684241890907, -0.013438531197607517, 0.018866972997784615, 0.02213240973651409, -0.015406166203320026, -0.003596865339204669, -0.02852373570203781, 0.02930520847439766, -0.019369347020983696, -0.012852426618337631, -0.0011791858123615384, 0.022885972633957863, 0.01239889394491911, -0.016829563304781914, -0.02266269363462925, -0.009259050711989403, 0.0018402972491458058, 0.013082682155072689, 0.008889246731996536, -0.005930815823376179, -0.021323027089238167, -0.004305074457079172, -0.005780801177024841, -0.02478383295238018, 0.003701526904478669, 0.011736038140952587, 0.021002065390348434, -0.03586399182677269, -0.005655207205563784, 0.010612672194838524, -0.013731583021581173, 0.0020775299053639174, 0.0054389070719480515, -0.0196065790951252, 0.0020304322242736816, 0.027728307992219925, 0.00012155992590123788, 0.018197139725089073, 0.033770762383937836, 0.006119206547737122, -0.04013418033719063, 0.02188122272491455, -0.017680808901786804, -0.012873359024524689, 0.004950487054884434, -0.008010090328752995, -0.017680808901786804, -0.024225639179348946, 0.02273246832191944, 0.0009131712140515447, 0.00419343588873744, -0.001260298420675099, 0.016494646668434143, 0.029695944860577583, 0.0028206263668835163, -0.02147653140127659, 0.01349435094743967, 0.00443066842854023, 0.0028485360089689493, 0.011973271146416664, 0.008079864084720612, -0.005295869894325733, 0.0038515415508300066, 0.0016274856170639396, 0.0038410755805671215, -0.006014544982463121, -0.035640716552734375, -0.02665378525853157, -0.025593215599656105, 0.013257117941975594, 0.008624103851616383, 0.01770871877670288, -0.006272709928452969, -0.01350132841616869, -0.012761720456182957, 0.021685853600502014, -0.027825992554426193, -0.0016789442161098123, 0.024462871253490448, -0.008135683834552765, 0.00523656141012907, 0.029361028224229813, -0.017150525003671646, -0.03212409093976021, -0.017331937327980995, -0.026849152520298958, -0.04317634180188179, -0.016145775094628334, 0.009942838922142982, 0.03600354120135307, 0.0017705230275169015, -0.0224812813103199, -0.030700694769620895, -0.0069634756073355675, -0.03558489680290222, -0.02818881906569004, -0.028342323377728462, 0.01772267371416092, 0.03192872181534767, 0.027616670355200768, -0.002260687528178096, 0.02811904437839985, -0.003427662653848529, -0.004039932042360306, -0.03268228471279144, 0.0008211563690565526, -0.023360436782240868, -0.02096020057797432, 0.043985720723867416, -0.014722377993166447, -0.057717304676771164, -0.0020234547555446625, 0.004451600834727287, -0.006415747571736574, 0.0026584009174257517, 0.0015777715016156435, 0.008791562169790268, 0.0050167725421488285, -0.004828381817787886, 0.009726538322865963, 0.022355686873197556, 0.028914472088217735, 0.011743015609681606, -0.03686874359846115, 0.003176475176587701, 0.024672193452715874, -0.004737675189971924, -0.007479805499315262, 0.008993907831609249, 0.005477283149957657, -0.01695515587925911, -0.009133456274867058, -0.0031503099016845226, -0.0035584894940257072, 0.0074100312776863575, 0.014806107617914677, -0.014666559174656868, 0.019997315481305122, -0.004434157162904739, 0.03901779279112816, -0.021448621526360512, -0.002548506483435631, -1.2367223462206312e-05, 0.0005259238532744348, 0.010584762319922447, 0.02111370489001274, 0.029361028224229813, -0.015559670515358448, -0.004462067037820816, -0.0020408984273672104, 0.010968521237373352, 0.004685344640165567, -0.02094624564051628, -0.00907065998762846, -0.013647854328155518, -0.010201003402471542, -0.004999328870326281, 0.016313232481479645, -0.017010975629091263, 0.006883235182613134, -0.0062343343161046505, -0.005602876655757427, 0.0151968440040946, -0.0019868232775479555, 0.006251777522265911, -0.026528190821409225, -0.030477415770292282, 0.008254299871623516, 0.010305664502084255, -0.03332420811057091, -0.00589941767975688, 0.028244638815522194, 0.015182889066636562, 0.006202935706824064, 0.21289536356925964, 0.0131594343110919, 0.0076612187549471855, 0.051577165722846985, 0.018601829186081886, -0.00534820044413209, 0.015406166203320026, 0.008247323334217072, -0.014875882305204868, 0.016648149117827415, -0.0020060113165527582, -0.0015821324195712805, -0.017987815663218498, -0.0063459728844463825, 0.014282800257205963, -0.01789013110101223, -0.0360872708261013, -0.016369052231311798, -0.019815903156995773, 0.007068137172609568, 0.006914633791893721, -0.00510747916996479, -0.016229502856731415, -0.0009436974651180208, 0.03050532564520836, 0.01205699983984232, -0.012677990831434727, 0.002571183256804943, 0.018880926072597504, 0.01909025013446808, -0.008791562169790268, 0.005815688520669937, 0.020039180293679237, -0.009007862769067287, -0.01874137856066227, -0.007772857788950205, 0.019313527271151543, -0.01349435094743967, -0.014115341939032078, 0.026249093934893608, 0.0001553568581584841, -0.023472076281905174, 0.009154388681054115, -0.022341731935739517, 0.03084024228155613, -0.002117650117725134, -0.02102997526526451, 0.017945950850844383, -0.032152000814676285, 0.02291388250887394, -0.009921906515955925, 0.0010692912619560957, 0.0131594343110919, 0.020932290703058243, 0.002525829942896962, 0.011491827666759491, -0.006401792634278536, -0.00046661566011607647, -0.024379141628742218, -0.021253254264593124, -0.012070954777300358, 0.010410326533019543, -0.0167876984924078, 0.006778573617339134, -0.033603306859731674, -0.002061830833554268, -0.021281162276864052, 0.023192979395389557, 0.005009795073419809, -0.010508010163903236, -0.0068099722266197205, -0.006175025831907988, -0.019704263657331467, 0.007521670311689377, -0.023946542292833328, -0.01583876647055149, 0.004039932042360306, 0.011470896191895008, 0.01872742362320423, 0.008833426982164383, -0.000985562102869153, -0.0014652604004368186, -0.019467031583189964, -0.01111504714936018, 0.004608592949807644, -0.02221613936126232, 0.02880283258855343, -0.017359847202897072, -0.006499476730823517, -0.026946837082505226, 0.0007361189345829189, 0.011554624885320663, -0.018294822424650192, -0.021825402975082397, 0.004814426880329847, -0.016480691730976105, 0.0010919679189100862, 0.03371494263410568, -0.022941792383790016, -0.03212409093976021, -0.022369641810655594, 0.045855674892663956, 0.010082387365400791, 0.021323027089238167, -0.014945656061172485, 0.013919973745942116, 0.002107183914631605, 0.03912942856550217, -0.010514987632632256, 0.004339961800724268, 0.00443066842854023, -0.03187290206551552, 0.01712261512875557, -0.0018804175779223442, 0.0005119689740240574, 0.013452486135065556, 0.019439121708273888, -0.015266617760062218, 0.006565762218087912, -0.02596999704837799, 0.023569760844111443, 0.009161366149783134, 0.021141614764928818, 0.014666559174656868, -0.03349166736006737, -0.03058905526995659, -0.018532056361436844, 0.02553739584982395, -0.03912942856550217, -0.026458416134119034, 0.011603467166423798, -0.01239191647619009, 0.018420416861772537, -0.005274937488138676, -0.010326596908271313, 0.006318063475191593, 0.019201889634132385, -0.004392292350530624, -0.01957866922020912, -0.02017872966825962, 0.007361188996583223, 0.0074658505618572235, 0.017513351514935493, 0.0013597267679870129, -0.004155059810727835, 0.0011966293677687645, -0.0034625499974936247, -0.002288597170263529, -0.005484260618686676, -0.03723156824707985, 0.017429621890187263, 0.0005363899981603026, 0.00817754864692688, 0.0058854627422988415, 0.037957221269607544, -0.010452191345393658, -0.02562112547457218, -0.024421006441116333, 0.006837882101535797, 0.013264095410704613, -0.03946434706449509, -0.0017591846408322453, 0.044320639222860336, 0.0033474222291260958, -0.015880631282925606, -0.008247323334217072, -0.17862221598625183, 0.01608995534479618, 0.009279982186853886, -0.0019763573072850704, 0.02137884683907032, 0.012308187782764435, 0.010207980871200562, 0.004744652658700943, 0.004336473066359758, -0.011177843436598778, 0.005742425099015236, -0.0011504038702696562, -0.018183184787631035, 0.0007901940261945128, 0.01102434005588293, -0.004985373932868242, -0.023025520145893097, 0.021853312849998474, 0.05640554800629616, 0.0017574402736499906, 0.013682741671800613, -0.03271019458770752, -0.007954270578920841, -0.0011599977733567357, 0.027281753718852997, 0.0008416525670327246, -0.008268254809081554, 0.024728013202548027, 0.008819472044706345, -0.04529747739434242, 0.0005464200512506068, -0.013117569498717785, 0.021839357912540436, -0.0024769878946244717, 0.017317982390522957, 0.0022258004173636436, 0.0001965673000086099, -0.0021298606880009174, -0.01585272140800953, 0.01090572401881218, 0.02163003385066986, 0.016731878742575645, 0.01950889639556408, 0.005330756772309542, 0.012447736226022243, 0.0129501111805439, 0.018169229850172997, -0.014031612314283848, 0.022969700396060944, -0.011631377041339874, 0.027812037616968155, -0.010808039456605911, 0.005599387921392918, -0.0066390251740813255, 0.012015135027468204, 0.002401980571448803, 0.0007810361566953361, 0.04027372971177101, -0.009761425666511059, -0.014233957976102829, 0.003012505592778325, -0.012070954777300358, 0.017415666952729225, -0.001282102894037962, -0.0016213804483413696, -0.03416150063276291, 0.017680808901786804, 0.009489305317401886, 0.004280653782188892, 0.008505487814545631, -0.012043044902384281, -0.0015690496657043695, 0.0027142204344272614, 0.01418511662632227, 0.018755333498120308, 0.007870541885495186, -0.040831923484802246, 0.001855996553786099, 0.04063655436038971, -0.003872473957017064, 0.014240935444831848, 0.0039038723334670067, -0.003479993436485529, 0.0020845073740929365, -0.016215547919273376, 0.021699808537960052, 0.0016606284771114588, 0.007668196223676205, -0.0012332608457654715, 0.00966374110430479, 0.03466387465596199, -0.011826744303107262, -0.005864530336111784, 0.008407804183661938, 0.02181144803762436, -0.0012097120052203536, 0.03840377926826477, -0.006230845581740141, 0.011184820905327797, 0.0004888562252745032, 0.012671013362705708, 0.019104205071926117, -0.03067278489470482, -0.000657186727039516, 0.03192872181534767, 0.03151007741689682, 0.015880631282925606, -0.0004094879550393671, 0.03784558176994324, -0.015182889066636562, -0.006984408013522625, 0.020053135231137276, 0.021588170900940895, 0.014415371231734753, -0.008952043019235134, 0.034552235156297684, -0.004367871675640345, -0.027798082679510117, 0.016969110816717148, -0.0008743592770770192, 0.032989293336868286, -0.024323321878910065, -0.01722029782831669, 0.006761129945516586, 0.006872768979519606, 0.00284155854023993, -0.10773152858018875, -0.026863107457756996, 0.014736332930624485, 0.02231382206082344, -0.016717923805117607, 0.012677990831434727, -0.0021595146972686052, 0.04044118896126747, -0.037343207746744156, 0.027812037616968155, -0.0295563954859972, -0.013947883620858192, 0.0025153637398034334, 0.003486970905214548, 0.007186753209680319, -0.0014731100527569652, -0.008491532877087593, -0.004172503482550383, -0.005718004424124956, 0.037650216370821, 0.008903201669454575, -0.008010090328752995, 0.007444918155670166, -0.011066204868257046, -0.011345301754772663, -0.01490379124879837, -0.01881115324795246, 0.013396666385233402, 0.005526124965399504, 0.007207685615867376, 0.01976008340716362, -0.021336982026696205, 0.02197890542447567, -0.020332232117652893, -0.021853312849998474, -0.01260123960673809, -0.01286638155579567, -0.018462281674146652, 0.012643104419112206, -0.023109249770641327, -0.007779835257679224, 0.0006113973213359714, -0.012894291430711746, -0.021085795015096664, -0.00011741707567125559, -0.0051144566386938095, -0.01602018065750599, 0.02326275408267975, 0.012238413095474243, -0.012357029132544994, -0.009635831229388714, -0.019871722906827927, -0.0030543701723217964, -0.03279392421245575, 0.027058474719524384, 0.0023548828903585672, 0.03762230649590492, 0.021239299327135086, -0.009991680271923542, 0.00784263201057911, 0.007403053808957338, -0.003244505263864994, -0.006297131069004536, 0.026193274185061455, -0.0006105251959525049, 0.010173093527555466, 0.01363389939069748, -0.014017658308148384, -0.022160319611430168, -0.0031869413796812296, -0.01865764893591404, 0.013508305884897709, -0.031119341030716896, 0.0010570806916803122, -0.007682151161134243, -0.007933338172733784, -0.023611625656485558, -0.020471781492233276, 0.029026111587882042, 0.008658991195261478, -0.01745753176510334, -0.008058932609856129, 0.012091887183487415, -0.04259023442864418, 0.03633845970034599, -0.00278922775760293, 0.004573705606162548, -0.015503850765526295, 0.03915733844041824, -0.030644875019788742, 0.011275527998805046, -0.001671966747380793, 0.02179749310016632, -0.017652899026870728, -0.0038864288944751024, 0.012426803819835186, -0.03142634779214859, 0.007549579720944166, 0.031203068792819977, -0.016327187418937683, -0.02393258735537529, -0.013312937691807747, -0.048590827733278275, 0.014750287868082523, -0.00011272911069681868, 0.0012550653191283345, -0.0008730510016903281, -0.018518101423978806, -0.001407696632668376, 0.0007771113305352628, 0.004755118861794472, -0.001671966747380793, -0.018015725538134575, 0.007291414774954319, -0.026960792019963264, -0.022592920809984207, -0.02615140937268734, -0.021923087537288666, -0.005149343516677618, -0.0024316345807164907, 0.01985776796936989, 0.00164405710529536, -0.014261867851018906, 0.006321552209556103, 0.0054214634001255035, 0.03617100045084953, -0.007347234524786472, 0.010584762319922447, -0.022355686873197556, 0.034887153655290604, -0.018671603873372078, -0.015141024254262447, 0.01043823640793562, -0.0011181331938132644, -0.002274642465636134, 0.0032427608966827393, -0.01804363541305065, -0.044683463871479034, 0.019453076645731926, 0.005201674532145262, 0.01634114235639572, 0.005571478046476841, -0.034635964781045914, -0.005393553990870714, 0.022523146122694016, -0.002799693960696459, -0.009021817706525326, 0.002888656221330166, -0.021685853600502014, -0.017987815663218498, 0.017820358276367188, 0.01617368310689926, 0.03030995838344097, 0.006698333192616701, -0.011819767765700817, -0.050209589302539825, -0.008275232277810574, -0.009175321087241173, 0.023234844207763672, 0.029695944860577583, 0.0075635346584022045, -0.005805222317576408, 0.05132598057389259, 0.01567130908370018, 0.016062045469880104, -0.018518101423978806, 0.01812736503779888, -0.02351394109427929, -0.051493436098098755, -0.003820143174380064, 0.015182889066636562, -0.032989293336868286, 0.011429031379520893, -0.025160614401102066, 0.026849152520298958, 0.03843168914318085, 0.01171510573476553, -0.0035305798519402742, 0.0004727209161501378, -0.02444891631603241, -0.002904355525970459, 0.029612215235829353, 0.027560850605368614, -0.023653488606214523, -0.013431553728878498, 0.0027194535359740257, 0.024239594116806984, 0.010759198106825352, -0.0058680190704762936, 0.021448621526360512, 0.01260821707546711, 0.01047312282025814, -0.005142366513609886, -0.001413801801390946, -0.015448031015694141, 0.012168638408184052, 0.009977725334465504, 0.028230683878064156, -0.03005877137184143, 0.01941121183335781, 0.033519577234983444, 0.031733352690935135, -0.0007230362389236689, 0.020402006804943085, 0.00016026286175474524, 0.006080830469727516, -0.014457236044108868, 0.018183184787631035, -0.03569653630256653, -0.0073542119935154915, 0.004591149277985096, 0.0303936880081892, -0.0007971714367158711, -0.010675468482077122, 0.0006550062680616975, 0.008526420220732689, -0.011408098973333836, 0.003813165705651045, -0.02266269363462925, -0.01452701073139906, -0.01218259334564209, -0.01171510573476553, -0.00898693036288023, -0.001188779715448618, 0.011889541521668434, -0.01008936483412981, 0.005805222317576408, 0.023472076281905174, 0.003889917628839612, -0.01710866019129753, 0.009273004718124866, -0.029333118349313736, 0.025174569338560104, 0.00865201372653246, 0.01694120094180107, -0.022592920809984207, 0.004172503482550383, -0.022872017696499825, -0.01600622572004795, 0.026765422895550728, -0.003882940160110593, 0.0842873603105545, 0.03125888854265213, -0.03268228471279144, 0.0005752019351348281, -0.011756970547139645, 0.003813165705651045, 0.013145479373633862, -0.00946139544248581, 0.0073123471811413765, -0.021853312849998474, 0.014373506419360638, 0.00398062402382493, -0.02553739584982395, -0.007123956456780434, -0.014045567251741886, 0.009356734342873096, 0.001964146737009287, -0.006673912517726421, -0.01081501692533493, 0.017234252765774727, 0.026263048872351646, -0.01110806968063116, 0.03217991068959236, -0.004339961800724268, -0.035975631326436996, -0.012789630331099033, 0.04359498620033264, 0.009566057473421097, 0.008254299871623516, -0.035724442452192307, 0.013326892629265785, -0.01422698050737381, -0.025090839713811874, 0.001953680533915758, -0.02010895498096943, -0.015992270782589912, -0.003415452316403389, -0.029695944860577583, -0.010277755558490753, 0.014694469049572945, 0.00524005014449358, 0.011087137274444103, -0.02555135078728199, -0.008442690595984459, 0.027225933969020844, -0.01158951222896576, 0.014261867851018906, -0.008617126382887363, -0.013578079640865326], "a7251df1-a3f6-4623-9bfa-39610e9ba36b": [-0.01725020445883274, -0.010602831840515137, -0.00020558437972795218, -0.030874568969011307, -0.01957128942012787, 0.017360078170895576, -0.01977730356156826, -0.028649622574448586, -0.025943975895643234, -0.047218311578035355, 0.02625986374914646, 0.012923918664455414, 0.013404617086052895, -0.010204539634287357, 0.020917246118187904, 0.0054215905256569386, 0.01906312257051468, 0.0006163239595480263, 0.01924166828393936, -0.0212880689650774, -0.01039681863039732, -0.00953156128525734, -0.022098390385508537, -0.001002599368803203, -0.0192828718572855, -0.0031434239353984594, 0.0374944731593132, -0.008302346803247929, -0.008831115439534187, -0.0009991658153012395, 0.02428213320672512, -0.026932841166853905, -0.018843375146389008, -0.013335946016013622, -0.020422812551259995, -0.010554762557148933, 0.0072860135696828365, -0.0074851601384580135, 0.008357284590601921, -0.015176333487033844, 0.010595965199172497, 0.007121202535927296, -0.009414820931851864, 0.003845586907118559, -0.0070868670009076595, 0.03433559834957123, 0.0024790300521999598, -0.014901649206876755, -0.009510960429906845, -0.008837983012199402, -0.0064207566902041435, 0.035187117755413055, -0.008741842582821846, 0.00851522758603096, -0.009778778068721294, 0.0018386711599305272, 0.0024876140523701906, -0.0020652860403060913, 0.005696275271475315, 0.012223472818732262, 0.01375484000891447, 0.008350417017936707, -0.01825280301272869, 0.004834452178329229, -0.02479030005633831, -0.031423937529325485, -0.02356795407831669, -0.026685625314712524, -0.017222736030817032, -0.0014935984509065747, 0.013329078443348408, 0.02457055263221264, -0.001926227007061243, -0.010225140489637852, -0.0020961882546544075, -0.012971987947821617, 0.0190493892878294, -0.010925587266683578, -0.000557524268515408, -0.015615829266607761, 0.016192667186260223, -0.0027674490120261908, 0.0072516780346632, -0.0030404170975089073, 0.02249668352305889, 0.044965896755456924, 0.002798351226374507, -0.0030301164370030165, 0.001351964077912271, 0.01114533469080925, 0.003473045537248254, 0.009785644710063934, 0.017222736030817032, 0.03156128153204918, 0.0022730163764208555, 0.013212337158620358, 0.013864713720977306, 0.005373520776629448, 0.008219941519200802, -0.02031293883919716, -0.020972182974219322, 0.001124490750953555, -0.010980524122714996, -0.017881978303194046, -0.03700003772974014, -0.015876779332756996, 0.017950650304555893, -0.015711968764662743, -0.006005296017974615, 0.03276989236474037, -0.01525873877108097, 0.029501143842935562, -0.0002607359492685646, -0.0011399418581277132, -0.008075732737779617, -0.0007536663324572146, 0.03029773011803627, -0.031973306089639664, -1.1722387171175797e-05, -0.03581889346241951, 0.01755235716700554, 0.01027321070432663, 0.018678564578294754, -0.02955608069896698, 0.01402265764772892, -0.012868981808423996, 0.002109922468662262, -0.019392745569348335, 0.0270701851695776, 0.0022215130738914013, 0.0285397469997406, 0.022112123668193817, -0.0053563532419502735, 0.007492027245461941, -0.031094316393136978, 0.009826847352087498, -0.02628733217716217, 0.02077990211546421, 0.005486828275024891, -0.029116585850715637, 0.014626963995397091, 0.027427274733781815, -0.0031073715072125196, -0.019914645701646805, 0.002513365587219596, 0.028457341715693474, -0.017703434452414513, 0.02005198784172535, 0.006468826439231634, -0.03329179435968399, 0.006290281191468239, 0.00401383126154542, -0.020367875695228577, 0.018692297860980034, 0.0185137540102005, -0.0038661882281303406, -0.007038797251880169, 0.023169660940766335, -0.015478487126529217, -0.029473675414919853, 0.004697109572589397, 0.007828515954315662, -0.0066473716869950294, -0.004233579151332378, 0.00456663453951478, 0.03249520808458328, 0.002633540192618966, -0.03623092174530029, -0.010225140489637852, -0.008398487232625484, -0.003958894405514002, 0.035901300609111786, -0.027386071160435677, 0.03436306491494179, 0.01402265764772892, 0.00240520853549242, 0.015176333487033844, -0.003461028216406703, -0.0031674588099122047, -0.028086518868803978, 0.03296217322349548, -0.0016893113497644663, 0.0014609795762225986, 0.016082793474197388, -0.024227196350693703, -0.0297758299857378, 0.019392745569348335, 0.003061018418520689, 0.0018026188481599092, -0.002631823532283306, 0.0049546267837285995, 0.00811693537980318, -0.012244073674082756, 0.0030919204000383615, -0.6135358810424805, -0.007299747783690691, 0.023361939936876297, -0.019845975562930107, -0.009483492001891136, 0.022661494091153145, 0.014297342859208584, 0.00406190101057291, -0.015684500336647034, 0.026149990037083626, 0.011797711253166199, 0.017607294023036957, -0.0123814158141613, -0.001960562542080879, -0.025380872189998627, -0.03384116291999817, 0.019447682425379753, 0.004858486820012331, -0.015505955554544926, 0.005916023161262274, -0.022702695801854134, 0.0190493892878294, -0.0025957711040973663, -0.000802165362983942, 0.014311077073216438, -0.012244073674082756, 0.013246673159301281, -0.0027245294768363237, -0.027592085301876068, 0.03235786780714989, -0.03483003005385399, 0.015437284484505653, 0.02054642140865326, 0.008096333593130112, 0.04032372310757637, -0.014517090283334255, -0.01652228832244873, 0.02403491735458374, 0.010438021272420883, 0.0331544503569603, -0.023155925795435905, -0.015313675627112389, 0.017579825595021248, 0.02477656677365303, -0.0008785621030256152, 0.011804577894508839, -0.021233132109045982, 0.009565897285938263, -0.022208264097571373, -0.005888554733246565, -0.009009660221636295, -0.025243530049920082, -0.007334083318710327, -0.009153869934380054, 0.010671503841876984, 0.0015159165486693382, 0.03296217322349548, 0.02079363726079464, 0.006345218047499657, 0.004219844937324524, 0.007162405643612146, 0.007752977777272463, -0.008178738877177238, -0.038950301706790924, -0.056749872863292694, 0.01389904972165823, -0.029501143842935562, -0.013706769794225693, 0.021164461970329285, 0.011104132048785686, 0.021343007683753967, -0.010444888845086098, -0.0038764888886362314, -0.0008510936168022454, -0.006808748934417963, 0.015313675627112389, 0.04680628702044487, -0.009792512282729149, -0.0012592580169439316, 0.01955755613744259, -0.0003856316616293043, -0.01626133918762207, -0.0051606399938464165, -0.02426839992403984, 0.03782409429550171, 0.015492221340537071, -0.018211601302027702, -0.012731638737022877, -0.010774509981274605, -0.008068865165114403, 0.016398681327700615, 0.015904247760772705, -0.0063829873688519, -0.033374201506376266, 0.025119923055171967, 0.03535193204879761, 0.005679107736796141, -0.005658506415784359, 0.0031022210605442524, -0.012456954456865788, -0.024131057783961296, -0.029391270130872726, 0.0016326576005667448, 0.015190067701041698, 0.03279736265540123, 0.01437974814325571, -0.02851227857172489, -0.011948787607252598, 0.016467351466417313, -0.01363123208284378, 0.006527197081595659, -0.02054642140865326, -0.019914645701646805, 0.0018815906951203942, -0.0009459456778131425, -0.021658893674612045, 0.02781183272600174, 0.005816449876874685, -0.011083530262112617, -0.01803305558860302, -0.0030541513115167618, 0.015533423982560635, 0.003574335714802146, 0.00318977702409029, 0.004164908081293106, 0.02983076684176922, 0.006544364616274834, 0.0146544324234128, 0.005009563639760017, -0.005136605352163315, 0.0015648448606953025, -0.024694161489605904, 0.013335946016013622, -0.015876779332756996, 0.026877904310822487, -0.006812182255089283, 0.01704419031739235, 0.003948593512177467, 0.014558292925357819, -0.037961434572935104, -0.0015905965119600296, -0.006029330659657717, 0.025408340618014336, -0.015203801915049553, 0.004223278257995844, -0.005219010636210442, -0.010362482629716396, 0.008096333593130112, -0.0022026284132152796, -0.01902192085981369, -0.03436306491494179, -0.012099863961338997, -0.004041299689561129, 0.02156275510787964, -0.008563297800719738, -0.0007373569533228874, -2.37130207096925e-05, -0.05186048522591591, -0.006077400408685207, -0.030929505825042725, -0.0009081765310838819, 0.006001862231642008, -0.011131600476801395, 0.007505761459469795, -0.011330747045576572, -0.014544558711349964, -0.03938979655504227, 0.0017888846341520548, -0.0030747526325285435, -0.012779708951711655, 0.00030665978556498885, -0.03356647863984108, 0.023485548794269562, 0.022620290517807007, -0.025161124765872955, 0.008947856724262238, -0.015478487126529217, 0.017415015026926994, 0.00120260426774621, -0.000514604733325541, 0.016590960323810577, 0.022112123668193817, -0.00827487837523222, 0.0024464111775159836, 0.027111386880278587, 0.01602785661816597, 0.008185606449842453, 0.02325206622481346, -0.03807130828499794, -0.002257565502077341, -0.010554762557148933, 0.0188159067183733, -0.010946188122034073, -0.00106354511808604, -0.009916120208799839, -0.014791774563491344, -0.02281256951391697, -0.009943588636815548, -0.01302692573517561, 0.04526805132627487, 0.010108399204909801, -0.0030850532930344343, -0.025669291615486145, 0.005091968923807144, 0.016879379749298096, -0.025243530049920082, 0.00791092123836279, -0.01339774951338768, 0.012752240523695946, -0.01675577089190483, -0.012463821098208427, -0.0008553855586796999, -0.002492764266207814, -0.03573649004101753, -0.0021906110923737288, 0.022991115227341652, -0.015588360838592052, 0.026644423604011536, -0.00012103297922294587, 0.00669544143602252, 0.013796042650938034, 0.02702898159623146, 0.01778583973646164, 0.0182802714407444, 0.0028017847798764706, 0.008714374154806137, 0.0017631328664720058, 0.006183840800076723, 0.02731740102171898, -0.021425412967801094, -0.011468089185655117, 0.015931716188788414, 0.0007777012651786208, -0.005720310378819704, 0.021123258396983147, 0.013171134516596794, 0.04037865996360779, -0.01900818571448326, 0.02256535366177559, -0.0033837731461972, -0.005555499345064163, 0.004995829425752163, 0.03230293095111847, -0.024227196350693703, 0.01525873877108097, 0.002365722553804517, 0.014970320276916027, 0.005012996960431337, -0.016961785033345222, 0.030380135402083397, -0.00575464591383934, -0.002513365587219596, -0.008577032014727592, -0.01855495572090149, 0.03200077638030052, -0.005658506415784359, 0.002693627495318651, 0.008165004663169384, 0.025641823187470436, 0.015354879200458527, -0.007073132786899805, 0.023458080366253853, -0.0012858681147918105, -0.014283607713878155, 0.020862309262156487, -0.010692104697227478, -0.0015056158881634474, -0.02757835201919079, -0.01628880761563778, -0.004992395639419556, -0.0014335111482068896, -0.02349928207695484, -0.001787167857401073, -0.0030421337578445673, -0.00444645993411541, 0.0011021726531907916, 0.004281648900359869, 0.016728302463889122, -0.0008841415983624756, 0.009929854422807693, -0.014901649206876755, -0.0376318134367466, 0.014015790075063705, 0.010685238055884838, -0.013507623225450516, -0.002152842003852129, -0.014819243922829628, -0.006873986218124628, 0.01779957301914692, 0.02582036890089512, -0.012738506309688091, 0.0022180795203894377, -0.01326727494597435, 0.01979103870689869, -0.005555499345064163, 0.019736099988222122, 0.045213114470243454, -0.007045664358884096, -0.01679697446525097, 0.009655170142650604, 0.00322926277294755, 0.014970320276916027, -0.012086129747331142, -0.012738506309688091, 0.04161474481225014, -0.0061598061583936214, -0.008714374154806137, -0.015629563480615616, 0.031890902668237686, -0.035434335470199585, 0.02006572298705578, -0.020697496831417084, -0.02430960163474083, -0.02156275510787964, -0.028649622574448586, 0.0026713095139712095, -0.0010858632158488035, -0.009579631499946117, 0.03884042799472809, 0.009916120208799839, -0.00216314266435802, -0.022661494091153145, -0.015313675627112389, 0.02803158015012741, 0.05889241397380829, 0.015437284484505653, -0.014750571921467781, 0.021191930398344994, -0.018884578719735146, -0.006104868836700916, -0.007258545141667128, -0.036945100873708725, 0.03260508179664612, -0.008322948589920998, -0.012196003459393978, 0.007361551746726036, 0.02156275510787964, 0.001594888512045145, 0.009030262008309364, 0.00988865178078413, 0.008219941519200802, -0.016412414610385895, -0.025408340618014336, 0.0106440344825387, -0.006183840800076723, -0.005600135773420334, 0.03252267837524414, 0.016384946182370186, 0.04037865996360779, 0.03535193204879761, 0.04535045474767685, 0.011783977039158344, 0.01213419996201992, -0.027962910011410713, -0.023169660940766335, 0.00444989325478673, -0.012834645807743073, 0.015711968764662743, -0.008089466951787472, 0.01880217343568802, -0.00017940349061973393, -0.034967370331287384, -0.021590223535895348, 0.011344481259584427, -0.011323879472911358, 0.01015646941959858, 0.0073134819976985455, -0.011941920034587383, 0.018609892576932907, -0.02777063101530075, 0.009696372784674168, 0.03848333656787872, -0.003732279408723116, 0.005352919455617666, 0.007217342499643564, 0.007677439600229263, -0.0015657031908631325, 0.015698235481977463, 0.004106537438929081, 0.000340136990416795, -0.014681900851428509, -0.0024103589821606874, -0.01931034028530121, -0.03853827342391014, -0.03359394893050194, -0.016673365607857704, -0.014297342859208584, -0.0188159067183733, -0.01979103870689869, -0.01854122243821621, -0.010541028343141079, 0.012903316877782345, -0.03054494597017765, -0.0008884335402399302, 0.0054490589536726475, -0.03178102895617485, -0.039939165115356445, 0.01237454917281866, 0.030132919549942017, 0.021961048245429993, 0.002199194859713316, 0.006856818683445454, -0.011214005760848522, 0.010554762557148933, -0.001412909827195108, -0.05037718638777733, 0.003921125084161758, -0.02307352051138878, -0.007636236492544413, -0.024089854210615158, -0.01162603311240673, -0.005411290097981691, -0.01037621684372425, 0.012862114235758781, 0.014805508777499199, -0.018376411870121956, -0.006667973008006811, 0.0032052278984338045, 0.012621765024960041, 0.03911511227488518, 0.0177446361631155, 0.010410552844405174, 0.020917246118187904, -0.03881295770406723, 0.007828515954315662, -0.01648108661174774, 0.001736522768624127, -0.02632853575050831, -0.005888554733246565, 0.0013631231850013137, 0.0043812221847474575, -0.023183394223451614, 4.7452867875108495e-05, -0.03200077638030052, 0.005593268666416407, -0.001106464653275907, -0.013253540731966496, -0.024392006918787956, 0.011928185820579529, 0.0010008825920522213, 0.013281009159982204, 0.021631425246596336, 0.0010352182434871793, -0.021741298958659172, 0.01752488873898983, -0.03172609210014343, 0.040461067110300064, 0.004250746686011553, 0.001464413246139884, 0.016439883038401604, 0.020889777690172195, -0.011289544403553009, -0.035159651190042496, 0.014393482357263565, -0.010218273848295212, 0.009421687573194504, 0.0013099029893055558, 0.002094471361488104, -0.018939515575766563, -0.017607294023036957, 0.0017468234291300178, 0.016590960323810577, -0.00259920465759933, 0.0015811541816219687, -0.02080737240612507, 0.008316081948578358, 0.009819980710744858, -0.005521163810044527, -0.0035039475187659264, -0.030682289972901344, -0.03735712915658951, -0.01852748729288578, 0.013315344229340553, 0.024886440485715866, -0.013239805586636066, -0.018445082008838654, -0.01852748729288578, -0.023705296218395233, 0.004075635224580765, -0.0076637049205601215, -0.002295334590598941, -0.0003285487473476678, 0.050706807523965836, 0.0110285934060812, 0.03974688798189163, 0.02355421893298626, 0.032660018652677536, 0.0076843067072331905, -0.012704170309007168, -0.00626281276345253, -0.008810513652861118, -0.013651832938194275, -0.0011983122676610947, 0.007993326522409916, 0.0017768670804798603, -0.004855053499341011, -0.015148865059018135, 0.02455681934952736, -0.001158826402388513, 0.022606557235121727, 0.0009399369591847062, 0.004044733475893736, -0.029501143842935562, -0.04513070732355118, -0.01216166839003563, 0.014681900851428509, -0.0012103298213332891, -0.005023297853767872, -0.027234995737671852, 0.010211406275629997, 0.016934316605329514, -0.015341144986450672, 0.030956974253058434, 0.005613869987428188, 0.03776915743947029, 0.009998525492846966, 0.0018060524016618729, -0.0021253733430057764, 0.013988321647047997, -0.031973306089639664, -0.01829400658607483, -0.03359394893050194, -0.010122133418917656, 0.00649972865357995, 0.00200863229110837, 0.025889039039611816, -0.0026661590673029423, 0.003646440338343382, 0.007028496824204922, 0.006324616726487875, -0.03287976607680321, -0.0008596775005571544, 0.007045664358884096, -0.03164368495345116, 0.0042679146863520145, -0.031204190105199814, -0.005788981448858976, -0.003996663261204958, -0.018623627722263336, 0.010266343131661415, -0.0002948569308500737, 0.016398681327700615, -0.021411677822470665, -0.020889777690172195, 0.03032519854605198, -0.019598757848143578, 0.03326432779431343, 0.03158874809741974, 0.034884966909885406, 0.007409621961414814, 0.015382347628474236, -0.03675282374024391, -0.023705296218395233, 0.005538331810384989, -0.01974983513355255, 0.008343550376594067, 0.03238533437252045, -0.02005198784172535, -0.0003364888543728739, 0.004151173401623964, -0.027468476444482803, -0.0034747624304145575, -0.04529551789164543, 0.0027073617093265057, 0.018335208296775818, 0.006898021325469017, -0.03282482922077179, -0.014324811287224293, -0.017442483454942703, 0.009916120208799839, -0.007581299636512995, 0.0036876429803669453, -0.0036636081058532, -0.020120659843087196, 0.010286944918334484, 0.025751696899533272, -0.0025064984802156687, 0.016343744471669197, -0.0030198157764971256, -0.0036327061243355274, 0.022112123668193817, -0.002686760388314724, -0.00681561604142189, -0.0037563142832368612, -0.004010397475212812, 0.022592822089791298, -0.018211601302027702, -0.008693773299455643, 0.013116197660565376, 0.014819243922829628, -0.016948049888014793, -0.0070868670009076595, -0.022441746667027473, 0.027399806305766106, -0.026658156886696815, -0.019845975562930107, 0.00756756542250514, 0.023485548794269562, 0.006304015405476093, -0.016934316605329514, -0.021095789968967438, -0.004261047579348087, -0.007045664358884096, 0.010094664990901947, 0.014942851848900318, -0.020230533555150032, -0.02251041680574417, -0.016453618183732033, 0.011474956758320332, -0.025889039039611816, -0.0020017651841044426, 0.003914257977157831, 0.019420213997364044, -0.05037718638777733, -0.0050954027101397514, 0.004127138759940863, -0.00950409285724163, -0.011674102395772934, -0.003435276448726654, -0.018829641863703728, -0.0027004946023225784, 0.02352675050497055, -0.01749742031097412, 0.019420213997364044, 0.03798890486359596, 0.0020464016124606133, -0.04625691473484039, 0.012958253733813763, -0.02829253114759922, -0.003759747836738825, 0.0014111930504441261, -0.0040928032249212265, -0.0260675847530365, -0.007869718596339226, 0.01698925346136093, 0.0031966441310942173, 0.00022275217634160072, -0.0073134819976985455, 0.02654828317463398, 0.030737226828932762, 0.0006219035130925477, -0.013466420583426952, 0.013480154797434807, -2.3619135390617885e-05, -0.0064482251182198524, 0.006530630402266979, 0.010060329921543598, -0.00977191049605608, 0.006956391967833042, 0.004243879579007626, 0.002772599458694458, -0.010966789908707142, -0.03554420918226242, -0.024131057783961296, -0.010025993920862675, 0.0142698734998703, 0.006228477228432894, 0.020985916256904602, -0.0046696411445736885, -0.017456216737627983, -0.014393482357263565, 0.025161124765872955, -0.023691561073064804, 0.004484228789806366, 0.017154064029455185, -0.004518564324826002, 0.013850979506969452, 0.03881295770406723, -0.01028007734566927, -0.03131406381726265, -0.024488147348165512, -0.024405742064118385, -0.052190106362104416, -0.0031777594704180956, 0.013411483727395535, 0.0401039756834507, -0.010465489700436592, -0.023952512070536613, -0.022634025663137436, -0.012731638737022877, -0.027166323736310005, -0.028924306854605675, -0.02028547041118145, 0.010211406275629997, 0.034967370331287384, 0.027962910011410713, -0.018925780430436134, 0.027880504727363586, 0.009868049994111061, 0.003105654614046216, -0.02906164899468422, 0.02201598510146141, -0.017456216737627983, -0.02382890321314335, 0.04084562510251999, -0.024666693061590195, -0.04730071872472763, -0.0038249853532761335, -0.0073134819976985455, -0.010863782837986946, 0.00512630445882678, -0.002937410259619355, 0.015313675627112389, 0.011605431325733662, 0.004463627468794584, 0.008041396737098694, 0.020367875695228577, 0.02631480060517788, 0.015711968764662743, -0.04013144597411156, 0.0037116780877113342, 0.013370281085371971, -0.0028378369752317667, -0.0042061107233166695, 0.013809776864945889, 0.007176139857620001, -0.01799185201525688, 0.006218176335096359, -0.002930543152615428, 0.002327953465282917, -0.006355518940836191, 0.007862851954996586, 0.005040465388447046, 0.025600621476769447, 0.004920290783047676, 0.027674490585923195, -0.025408340618014336, -0.010946188122034073, -0.005061066709458828, 1.2681369298661593e-05, 0.012127332389354706, 0.012388283386826515, 0.030132919549942017, -0.018637361004948616, -0.0009802812710404396, 0.003390640253201127, 6.716230473102769e-06, -0.004298816900700331, -0.025422075763344765, -0.012923918664455414, -0.002207778859883547, -0.013796042650938034, -0.008446556515991688, 0.006870552897453308, 0.0007034505251795053, 0.009662036783993244, -0.014874180778861046, -0.012951387092471123, 0.020738700404763222, -0.006554665509611368, 0.011275810189545155, -0.02753714844584465, -0.02704271674156189, 0.01582184247672558, -0.006760679185390472, -0.03601117432117462, -0.0015991803957149386, 0.02503751777112484, 0.023485548794269562, 0.010328147560358047, 0.22403289377689362, 0.017703434452414513, 0.011069796048104763, 0.043455131351947784, 0.018623627722263336, -0.012923918664455414, 0.024089854210615158, 0.005188108421862125, -0.01363123208284378, 0.016426149755716324, 0.008954723365604877, 0.01453082449734211, -0.011317012831568718, -0.005929757375270128, 0.013020058162510395, -0.018925780430436134, -0.03381369635462761, -0.011495557613670826, -0.019104326143860817, 0.007354684639722109, 0.007588166743516922, 0.0003768331662286073, -0.01578064076602459, -0.002144258003681898, 0.026424674317240715, 0.0028412705287337303, -0.004250746686011553, 0.0045803687535226345, 0.005600135773420334, 0.0150389913469553, -0.01291018445044756, 0.0022661492694169283, 0.028210125863552094, -0.01654975675046444, -0.019887177273631096, -0.017415015026926994, 0.0024910476058721542, -0.008096333593130112, -0.005466226954013109, 0.02733113430440426, -0.004546032752841711, -0.014352279715240002, -0.0032859165221452713, -0.012848380021750927, 0.019145527854561806, 0.0032412803266197443, -0.018706033006310463, 0.01090498548001051, -0.017085392028093338, 0.014056993648409843, -0.0058713871985673904, 0.0038318524602800608, 0.00925687700510025, 0.03274242579936981, -0.010808845981955528, 0.008542696014046669, -0.009943588636815548, -0.005267080385237932, -0.027729427441954613, -0.016123997047543526, -0.017881978303194046, 0.003206944791600108, -0.008048263378441334, 0.016206402331590652, -0.02304605208337307, 0.005895421840250492, -0.026191193610429764, 0.024598021060228348, -0.0019588458817452192, -0.002806934993714094, -0.005349486134946346, -0.0006918622530065477, -0.023361939936876297, 0.0027502812445163727, -0.02227693423628807, -0.015066459774971008, 0.0024034916423261166, 0.017085392028093338, 0.020876042544841766, 0.013720504008233547, -0.0031691754702478647, 0.006352085154503584, -0.02001078613102436, -0.013747972436249256, 0.006204442121088505, -0.014668166637420654, 0.04480108618736267, -0.013802910223603249, -0.009854315780103207, -0.02279883623123169, 0.0032824829686433077, 0.02381516993045807, -0.008906654082238674, -0.01880217343568802, 0.005026731174439192, -0.01752488873898983, 0.011969389393925667, 0.02604011632502079, -0.018129194155335426, -0.03057241439819336, -0.014324811287224293, 0.048976294696331024, 0.004072201903909445, 0.0129170510917902, -0.010719573125243187, 0.015670767053961754, 2.5845583877526224e-05, 0.02777063101530075, -0.002825819654390216, -0.011207139119505882, -0.00413743918761611, -0.03598370403051376, 0.010609699413180351, -0.0031348399352282286, -0.0033528709318488836, 0.016151465475559235, 0.021878642961382866, -0.007450824603438377, 0.016906848177313805, -0.02457055263221264, 0.02025800198316574, 0.007272279355674982, 0.012127332389354706, 0.004120271652936935, -0.03353901207447052, -0.03826358914375305, -0.0013124782126396894, 0.03145140781998634, -0.030956974253058434, -0.0331544503569603, 0.021603956818580627, -0.014091328717768192, 0.023952512070536613, -0.009318680502474308, -0.014393482357263565, 0.009339282289147377, 0.030435072258114815, -0.006726343184709549, -0.01440721657127142, -0.01977730356156826, -0.001623215270228684, 0.021466614678502083, 0.020203065127134323, -0.002654141513630748, 0.0052705141715705395, -0.014517090283334255, 0.007849117740988731, -0.011214005760848522, -0.008089466951787472, -0.03881295770406723, 0.005109136924147606, 0.012903316877782345, 0.009428555145859718, -0.0011708438396453857, 0.028924306854605675, -0.0011699855094775558, -0.022249465808272362, -0.03158874809741974, -0.00038606085581704974, 0.01876096986234188, -0.032687488943338394, -0.003584636375308037, 0.03713738173246384, 0.019928380846977234, -0.023224597796797752, -0.005885121412575245, -0.17480939626693726, 0.00988865178078413, 0.010458623059093952, 0.003430126002058387, 0.027427274733781815, 0.013342812657356262, 0.001945111551322043, 0.011083530262112617, -0.006571833044290543, -0.013081862591207027, 0.008206207305192947, -0.004312551114708185, -0.015986653044819832, -0.005775247234851122, 0.00887231808155775, -0.005682541057467461, -0.021425412967801094, 0.015711968764662743, 0.04600970074534416, 0.007965858094394207, 0.012683569453656673, -0.04007650911808014, -0.012244073674082756, 0.0012180552585050464, 0.02281256951391697, 0.003550300607457757, -0.0040687681175768375, 0.013940252363681793, -0.0015751455212011933, -0.03862068057060242, -0.009215674363076687, -0.01900818571448326, 0.022867508232593536, 0.0059606595896184444, 0.018376411870121956, -0.012360814958810806, 0.004140872973948717, -0.0010970223229378462, -0.0035537341609597206, 0.01648108661174774, 0.024996314197778702, 0.01025260891765356, 0.007842250168323517, 0.003289350075647235, 0.004322851542383432, 0.02007945626974106, 0.01573943719267845, -0.01579437404870987, 0.008940989151597023, -0.02200224995613098, 0.018692297860980034, -0.023842638358473778, -0.001544243423268199, -0.0031726090237498283, 0.0002772599400486797, 0.0036670416593551636, 0.002583753550425172, 0.026864171028137207, 0.005953792482614517, -0.009806246496737003, 0.012120465748012066, -0.002212929306551814, 0.025133656337857246, -0.006238778121769428, -0.009236275218427181, -0.03309951350092888, 0.015382347628474236, 0.010801978409290314, 0.0038318524602800608, -0.001204321044497192, 0.007814781740307808, -0.006867119111120701, 0.004528865218162537, 0.026960309594869614, 0.0028738894034177065, 0.013789176009595394, -0.04686122387647629, 0.002999214455485344, 0.03375875949859619, 0.004728011786937714, 0.020834840834140778, 0.007299747783690691, -0.02307352051138878, -0.004140872973948717, -0.023169660940766335, 0.012312744744122028, 0.0027331134770065546, 0.004861920606344938, -0.009868049994111061, 0.013590029440820217, 0.017868245020508766, -0.019832240417599678, -0.0009897236013785005, 0.01076077576726675, 0.028113987296819687, -0.004037866368889809, 0.02851227857172489, -0.0008708365494385362, 0.01582184247672558, -0.00863196887075901, 0.004700543358922005, 0.020683763548731804, -0.03079216368496418, 0.002817235654219985, 0.04158727452158928, 0.03752193972468376, 0.006643937900662422, -0.003969194833189249, 0.03779662400484085, -0.014297342859208584, -0.009291212074458599, 0.010856915265321732, 0.027853036299347878, 0.009675770998001099, -0.015574626624584198, 0.03458281233906746, -0.008322948589920998, -0.026397205889225006, 0.018939515575766563, -0.013452686369419098, 0.048426926136016846, -0.03384116291999817, -0.025655558332800865, 0.016604693606495857, -0.0009562463383190334, 0.0034678953234106302, -0.10773136466741562, -0.01679697446525097, 0.01653602346777916, 0.02104085311293602, -0.0045700678601861, 0.007698040921241045, -0.009868049994111061, 0.03826358914375305, -0.022153327241539955, 0.027180058881640434, -0.021878642961382866, -0.02049148455262184, -0.0006661106017418206, 0.0023416876792907715, 0.0038764888886362314, -0.00016985389811452478, -0.003945160191506147, -0.002362289000302553, -0.0146544324234128, 0.027166323736310005, 0.0060499319806694984, -0.01162603311240673, 0.022386809810996056, -0.0219885166734457, -0.018197866156697273, -0.015684500336647034, -0.020422812551259995, 0.009813113138079643, 0.002430960303172469, 0.013569427654147148, 0.011097264476120472, -0.011440620757639408, 0.026122521609067917, -0.02451561577618122, -0.014056993648409843, 0.0017339476617053151, -0.029253927990794182, -0.02255162037909031, 0.02053268626332283, -0.02805904857814312, -0.004515131004154682, 0.005785548128187656, -0.022359341382980347, -0.031149253249168396, -0.009778778068721294, -0.00021170041873119771, -0.014015790075063705, 0.03125912696123123, 0.012051794677972794, -0.006410455796867609, -0.009071464650332928, -0.01437974814325571, -0.009586498141288757, -0.02580663375556469, 0.028347468003630638, -0.0010017410386353731, 0.029693424701690674, 0.010774509981274605, -0.013981455005705357, 0.0054696607403457165, 0.011076663620769978, -0.005411290097981691, -0.00764310359954834, 0.01903565414249897, 0.002293617930263281, 0.016453618183732033, -0.0002020435204030946, -0.006005296017974615, -0.012965121306478977, -0.000331553106661886, -0.010671503841876984, 0.014585761353373528, -0.027592085301876068, 0.005565800238400698, -0.006269679870456457, 0.0012858681147918105, -0.022221997380256653, -0.014311077073216438, 0.024941377341747284, 0.01139255054295063, -0.014118797145783901, -0.010094664990901947, 0.004621571395546198, -0.04128511995077133, 0.027976643294095993, -5.665373464580625e-05, 0.004140872973948717, -0.010616566054522991, 0.03705497458577156, -0.020848574116826057, 0.006551231723278761, 0.01627507247030735, 0.027221260592341423, -0.01756609044969082, -0.004401823505759239, 0.015492221340537071, -0.03955460712313652, 0.014517090283334255, 0.03057241439819336, -0.004274781793355942, -0.011083530262112617, -0.012511891312897205, -0.04757540300488472, 0.02127433568239212, 0.006922056432813406, 0.0011141900904476643, 0.0016429582610726357, -0.00444989325478673, -0.00394172640517354, 0.00988865178078413, 0.01225094124674797, 0.016618428751826286, -0.026932841166853905, 0.014118797145783901, -0.02580663375556469, -0.02532593533396721, -0.031945839524269104, -0.01600038819015026, -0.004491095896810293, 0.0018455382669344544, 0.02580663375556469, -0.0010086081456393003, -0.009394219145178795, -0.0015245004324242473, 0.006472259759902954, 0.04276841878890991, -0.002372589660808444, 0.014695635065436363, -0.03246774151921272, 0.03658801317214966, -0.009414820931851864, -0.010898117907345295, 0.018321475014090538, -0.008810513652861118, -0.008597633801400661, 0.019104326143860817, -0.0037185451947152615, -0.03757687658071518, 0.023087255656719208, -0.0012506741331890225, 0.013809776864945889, 0.009737575426697731, -0.023142192512750626, -0.011880116537213326, 0.015972919762134552, -0.012388283386826515, -0.013493889011442661, 0.0030301164370030165, -0.02777063101530075, -0.0150389913469553, 0.019639961421489716, 0.01878843829035759, 0.03873055428266525, 0.014393482357263565, -0.009277477860450745, -0.04175208508968353, -0.010101532563567162, -0.004940892569720745, 0.019214199855923653, 0.018211601302027702, 0.01453082449734211, -0.0255319494754076, 0.04079068824648857, 0.007028496824204922, 0.016123997047543526, -0.011097264476120472, 0.014187468215823174, -0.017209000885486603, -0.04026878625154495, 0.0011004558764398098, -0.0023399710189551115, -0.04112030938267708, 0.007862851954996586, -0.022963646799325943, 0.023100988939404488, 0.02227693423628807, 0.016110261902213097, 0.0006738360971212387, -0.007038797251880169, -0.02425466477870941, 0.0026901939418166876, 0.03134153410792351, 0.024831503629684448, -0.016618428751826286, -0.015093928202986717, 0.012539359740912914, 0.03029773011803627, 0.005212143529206514, 0.0029099418316036463, 0.031204190105199814, 0.01302692573517561, 0.005339185241609812, -0.006606168579310179, -0.00812380202114582, -0.013500756584107876, 0.003560601267963648, 0.017689699307084084, 0.035928767174482346, -0.019351541996002197, 0.03735712915658951, 0.026424674317240715, 0.024858972057700157, 0.0027090786024928093, 0.019131794571876526, 0.016439883038401604, 0.0019159262301400304, -0.022949913516640663, 0.012154800817370415, -0.0340883806347847, -0.0077117751352488995, 0.010046595707535744, 0.030902037397027016, -0.004343452863395214, -0.002084170700982213, -0.004772647749632597, 0.004171775188297033, -0.004209544043987989, 0.0010935887694358826, -0.015986653044819832, -0.017401279881596565, -0.029363801702857018, -0.013624364510178566, -0.002544267801567912, 0.005661939736455679, 0.010266343131661415, -0.019488884136080742, 0.014832978136837482, 0.020106924697756767, -0.003862754674628377, -0.017607294023036957, 0.0017021872336044908, -0.01704419031739235, 0.02728993259370327, 0.011742774397134781, 0.016192667186260223, -0.016879379749298096, -0.01163289975374937, -0.021397944539785385, -0.01652228832244873, 0.024968845769762993, -0.008213074877858162, 0.08037276566028595, 0.023595422506332397, -0.03296217322349548, -0.0008605358889326453, -0.020340407267212868, -0.009627701714634895, 0.014585761353373528, -0.01627507247030735, 0.006073967088013887, -0.013308477587997913, 0.03029773011803627, 0.003759747836738825, -0.024103589355945587, -0.010774509981274605, -0.012319612316787243, -0.00544219184666872, 0.005260213278234005, 0.004848186392337084, -0.010801978409290314, 0.021617691963911057, 0.014077594503760338, -0.020216798409819603, 0.04101043567061424, -0.009991658851504326, -0.026232395321130753, -0.01213419996201992, 0.03999410197138786, 0.01513513084501028, -0.004099670331925154, -0.03128659725189209, 0.019585024565458298, -0.007595033850520849, -0.0218237042427063, -0.004147740080952644, -0.009826847352087498, -0.01414626557379961, -0.0016094810562208295, -0.01528620719909668, -0.0010781377786770463, 0.018980717286467552, -0.0061975750140845776, 0.011598564684391022, -0.01929660513997078, -0.007704908028244972, 0.014750571921467781, -0.007938389666378498, 0.01012900099158287, -0.027701959013938904, -0.008913520723581314], "e794818e-1855-4544-ba15-1c95b518e955": [-0.023219961673021317, -0.01953273080289364, -0.006360131315886974, -0.032211873680353165, -0.010897208005189896, 0.011815588921308517, -0.0076074847020208836, -0.03539193794131279, -0.027400651946663857, -0.05866672843694687, 0.0029504704289138317, 0.012206243351101875, 0.006781626958400011, -0.011020571924746037, 0.0035947079304605722, 0.019519023597240448, 0.02021808922290802, -0.005575395189225674, 0.0038277299609035254, -0.016133349388837814, -0.02438507229089737, 0.004804366268217564, -0.037475429475307465, 0.015324627049267292, -0.029278535395860672, 0.009540196508169174, 0.022507188841700554, -0.009581318125128746, -0.004362309817224741, 0.005404055584222078, 0.011623688042163849, -0.017682261765003204, -0.027195043861865997, -0.009012470953166485, -0.021136470139026642, -0.0028305326122790575, 0.010081630200147629, -0.006857016589492559, 0.014296588487923145, -0.01199378166347742, 0.03059442527592182, -0.012727116234600544, -0.008066674694418907, 0.007347048260271549, -0.011890978552401066, 0.008080381900072098, -0.0021263263188302517, -0.017737090587615967, -0.007367609068751335, -0.00802555400878191, 0.002376482356339693, 0.02505672350525856, -0.011747052893042564, 0.015708427876234055, -0.007209976203739643, -0.004609039053320885, -0.0030549876391887665, -0.014803754165768623, 0.0072648050263524055, 0.004047044552862644, 0.00976636540144682, 0.012192536145448685, -0.01712026633322239, -0.0001931855658767745, -0.019231172278523445, -0.03432277590036392, -0.011657956056296825, -0.013110917061567307, -0.018806250765919685, -0.01286418829113245, 0.010396895930171013, 0.04018944874405861, 0.0016739893471822143, -0.009081006050109863, 0.0036015615332871675, -0.023452984169125557, 0.008738326840102673, 0.012521508149802685, -0.0058015636168420315, -0.004653587471693754, 0.022068558260798454, 0.003037853632122278, -0.005637077614665031, -0.001362151000648737, 0.02131466381251812, 0.047618743032217026, -0.018395034596323967, 0.015516526997089386, -0.028922148048877716, 0.0027911243960261345, 0.007148294243961573, 0.007888481952250004, 0.025618718937039375, 0.00933458935469389, 0.010938329622149467, 0.006802187766879797, 0.02217821590602398, 0.006199072115123272, -0.004478821065276861, -0.0156398918479681, -0.01806606352329254, -0.0006853590020909905, -0.016393786296248436, -0.015914035961031914, -0.023124011233448982, 0.001572042121551931, 0.0160785224288702, -0.01605110801756382, 0.007504680659621954, 0.011705931276082993, -0.0069255526177585125, 0.01868288591504097, 0.006188791710883379, 0.0029847384430468082, -0.007271658629179001, -0.018518399447202682, 0.028483519330620766, -0.04216328263282776, -0.005404055584222078, -0.021890366449952126, 0.02722245827317238, 0.029114048928022385, 0.030457353219389915, -0.02020438201725483, 0.013104063458740711, -0.002532401354983449, 0.0013750013895332813, -0.017874162644147873, 0.02616700530052185, 0.002270251512527466, 0.016201885417103767, 0.027195043861865997, 0.020039895549416542, 0.009985680691897869, -0.02985423617064953, 0.005325239151716232, -0.033747076988220215, 0.005887233652174473, -0.01979316771030426, -0.01232960820198059, 0.013570107519626617, 0.029497850686311722, -0.0032982900738716125, -0.020821206271648407, 0.00038551443140022457, 0.03138944134116173, -0.01319316029548645, 0.02290469780564308, 0.021205006167292595, -0.02524862438440323, 0.009540196508169174, -0.004848914686590433, -0.006000317633152008, 0.026537099853157997, 0.0015386309241876006, -0.0005375784239731729, -0.006140816491097212, 0.018641764298081398, -0.028058595955371857, -0.017901577055454254, 0.006058573257178068, 0.016859831288456917, -0.0014872290194034576, -0.00576044199988246, 0.006771346554160118, 0.024069806560873985, -0.0007633185596205294, -0.042327769100666046, -0.01803864911198616, -0.016311543062329292, 0.006617140956223011, 0.03212963044643402, -0.00565421162173152, 0.036159537732601166, 0.019231172278523445, -0.009526489302515984, 0.01045857835561037, -0.009711536578834057, -0.00933458935469389, -0.02834644727408886, 0.021657343953847885, -0.006024305243045092, 0.005332092754542828, 0.0005470021278597414, -0.016654223203659058, -0.027839282527565956, 0.00781994592398405, -0.0007658886606805027, 0.002655765973031521, -0.0046604410745203495, 0.001158256665803492, 0.0009140975307673216, -0.031060468405485153, -0.012267925776541233, -0.6281177997589111, -0.0011205619666725397, 0.01627042144536972, -0.027661088854074478, -0.00015377742238342762, 0.004417138639837503, 0.016380079090595245, 0.009848608635365963, -0.008279136382043362, 0.015420576557517052, 0.010061069391667843, 0.0173944104462862, -0.011890978552401066, -0.022150801494717598, -0.026770122349262238, -0.014036151580512524, 0.015996279194951057, 0.0069255526177585125, -0.020272918045520782, 0.003783181542530656, -0.02354893460869789, 0.033500347286462784, -0.016873538494110107, 0.0017202510498464108, 0.007052343804389238, 0.014282881282269955, 0.02349410578608513, -0.023343326523900032, -0.012569483369588852, 0.0005388634745031595, -0.024974480271339417, 0.030841153115034103, 0.027962645515799522, 0.00016930508718360215, 0.04633026570081711, -0.016201885417103767, -0.009272906929254532, 0.02332961931824684, 0.025605011731386185, 0.042547084391117096, -0.03138944134116173, -0.024302829056978226, 0.02971716597676277, 0.020999399945139885, -0.011253594420850277, 0.011630541644990444, -0.010499699972569942, -0.002016668673604727, -0.019176343455910683, 0.005619943607598543, -0.001444394001737237, -0.017764504998922348, -0.002540968358516693, 0.005736454855650663, 0.008930227719247341, -0.011020571924746037, 0.035748325288295746, -0.00638069212436676, 0.001809347653761506, 0.02152027189731598, 0.010609356686472893, -0.0013193159829825163, -0.008128357119858265, -0.05049724876880646, -0.04262932762503624, 0.014680389314889908, -0.014241759665310383, -0.02216450870037079, 0.02546793967485428, -0.004605612251907587, 0.02326108328998089, -0.008656083606183529, -0.0022188497241586447, -0.002266824711114168, 0.00324346125125885, 0.014001883566379547, 0.04643992334604263, -0.011328984051942825, -0.01757260411977768, 0.009478515014052391, 0.01624300703406334, -0.0025358281563967466, -0.014858582988381386, -0.024261707440018654, 0.009834901429712772, 0.01760001853108406, -0.014639267697930336, -0.010451724752783775, -0.006031158845871687, -0.018504692241549492, 0.01827166974544525, 0.008498451672494411, -0.013138331472873688, -0.028839904814958572, -0.00230794632807374, 0.024248000234365463, 0.0034405020996928215, -0.012788798660039902, -0.016434907913208008, -0.023576349020004272, -0.03276015818119049, -0.02881249226629734, 6.853589729871601e-05, 0.011733345687389374, 0.016805002465844154, 0.003455922706052661, -0.018532106652855873, -0.013659204356372356, 0.0235352274030447, -0.021808123216032982, 0.009704682976007462, -0.008943934924900532, -0.021163884550333023, -0.01690095290541649, -0.019861703738570213, -0.027551431208848953, 0.029388193041086197, -0.0051984479650855064, -0.006654835771769285, -0.02612588368356228, -0.02065671980381012, 0.011281008832156658, -0.0072853658348321915, -0.009163249284029007, -0.0004092878079973161, 0.02729099430143833, 0.004866048693656921, 0.01695578172802925, -0.0005500005790963769, -0.009670414961874485, 0.013720886781811714, -0.01143864169716835, 0.015489112585783005, -0.00709346542134881, 0.030895981937646866, 0.009656707756221294, 0.013104063458740711, 0.0004251367354299873, 0.019669802859425545, -0.02751030959188938, 0.00022766768233850598, -0.005825551226735115, 0.026071054860949516, -0.016818709671497345, -0.007278512232005596, -0.015256091021001339, -0.02245236001908779, 0.028702834621071815, -0.01241870503872633, -0.004746111109852791, -0.03720128536224365, -0.017654847353696823, -0.0022308435291051865, 0.024974480271339417, -0.0015035062097012997, 0.0014238333096727729, -0.0061545236967504025, -0.052005037665367126, -0.008998763747513294, -0.03415829315781593, -0.004108726978302002, 0.025577597320079803, -0.01111652236431837, 0.00891652051359415, -0.003546732710674405, -0.006860443390905857, -0.0324585996568203, -0.007456705439835787, 0.0013218860840424895, -0.014090980403125286, -0.006987234577536583, -0.01473521813750267, 0.012110292911529541, 0.030731497332453728, -0.031745828688144684, 0.013693472370505333, -0.0206841342151165, 0.009176956489682198, -0.0014769486151635647, 0.007292219437658787, 0.0328972302377224, 0.031334612518548965, -0.012912163510918617, 0.0010434590512886643, 0.01935453712940216, 0.01979316771030426, -0.006181938108056784, 0.03369224816560745, -0.02374083548784256, -0.0033068570774048567, 0.004468540661036968, 0.020615598186850548, 0.0009714963380247355, -7.44926319384831e-06, -0.01646232232451439, -0.01784674823284149, -0.022753918543457985, -0.009279760532081127, -0.02990906499326229, 0.028428690508008003, 0.0004566204152069986, 0.007052343804389238, -0.015146433375775814, 0.0014529610052704811, 0.019190050661563873, -0.028510933741927147, 0.011479763314127922, -0.011788174510002136, 0.0061339628882706165, 0.007847360335290432, -0.007134587038308382, -0.01097945123910904, -0.007292219437658787, -0.02988165058195591, -0.000430705287726596, 0.02683865837752819, -0.012638019397854805, 0.01844986341893673, 0.016996903344988823, -0.00046047556679695845, 0.007737702690064907, 0.01032835990190506, 0.02944302186369896, 0.015489112585783005, -0.002947043627500534, 0.0066616893745958805, -0.0097937798127532, 0.003927106969058514, 0.020300332456827164, -0.014324002899229527, 0.01760001853108406, 0.006168230902403593, 0.007148294243961573, 0.004149848595261574, 0.018175719305872917, 0.028730249032378197, 0.0317184142768383, -0.03136202692985535, 0.01692836731672287, -0.01415951643139124, -0.0035004708915948868, 0.009567610919475555, 0.03599505499005318, -0.02042369730770588, 0.0019070113776251674, 0.011774467304348946, 0.01956014521420002, 0.0031372306402772665, -0.01087664719671011, 0.006360131315886974, -0.004735830705612898, 0.01023926306515932, -0.008004993200302124, -0.004540503025054932, 0.028483519330620766, -0.008752034045755863, 0.006373838521540165, 0.019477901980280876, 0.019724631682038307, 0.010198141448199749, 0.0030429938342422247, 0.007086611818522215, 0.0053526535630226135, -0.00010698025289457291, 0.03032028116285801, -0.008258575573563576, -0.009197517298161983, -0.019052978605031967, -0.00626418087631464, -0.020834913477301598, -0.007676020730286837, -0.023644885048270226, -0.028044888749718666, -0.011726492084562778, -0.025166381150484085, 0.010533967055380344, 0.006106548476964235, 0.029333364218473434, -0.0005380067741498351, 0.015722135081887245, -0.019505316391587257, -0.02465921640396118, 0.011575712822377682, 0.013001259416341782, -0.011575712822377682, -0.011555152013897896, -0.0022308435291051865, 0.008546426892280579, -0.001213942072354257, 0.012685994617640972, -0.006528044119477272, 0.0003064839693251997, -0.01032835990190506, 0.012884749099612236, -0.004286920186132193, 0.015434283763170242, 0.05299195647239685, -0.01780562661588192, -0.01755889691412449, 0.006973527371883392, 0.007511534262448549, 0.014447366818785667, -0.007621191907674074, -0.02197260968387127, 0.029799407348036766, -0.03339068964123726, -0.02332961931824684, -0.001932712271809578, 0.011705931276082993, -0.02284986898303032, 0.01585920713841915, -0.04065549373626709, -0.03802371770143509, -0.004012777004390955, -0.020108431577682495, 0.004900316707789898, -0.01241870503872633, -0.02106793411076069, 0.040737736970186234, 0.004235518630594015, -0.01198007445782423, -0.024481022730469704, -0.01176761370152235, 0.019066685810685158, 0.06195645034313202, 0.02241123840212822, -0.009183810092508793, 0.025111552327871323, -0.026194419711828232, -0.005071656312793493, -0.01384425163269043, -0.02971716597676277, 0.03821561485528946, -0.020368868485093117, -0.0015985998325049877, 0.0026386319659650326, 0.028894733637571335, -0.020807499065995216, 0.01209658570587635, 0.015955157577991486, 0.011836149729788303, -0.017202509567141533, -0.009978827089071274, 0.01032835990190506, -0.0064183869399130344, 3.541913611115888e-05, 0.030265452340245247, 0.03188290074467659, 0.05052466318011284, 0.023384448140859604, 0.032019972801208496, 0.008813716471195221, 0.008573840372264385, -0.02088974229991436, -0.015543941408395767, -0.005849538836628199, -0.014913410879671574, 0.007182562258094549, -0.005311531946063042, 0.025851741433143616, 0.006675396580249071, -0.038133371621370316, -0.005304678343236446, 0.004036764148622751, -0.013378207571804523, 0.020985692739486694, 0.0008674074779264629, -0.009752658195793629, 0.012151414528489113, -0.031800657510757446, 0.00478037865832448, 0.028922148048877716, -0.015447990968823433, -0.007915896363556385, 0.010451724752783775, -0.00012464966857805848, -0.003930533770471811, 0.01980687491595745, -0.00790904276072979, -0.0022222765255719423, -0.008882252499461174, -0.002695174189284444, -0.007854213938117027, -0.03467916324734688, -0.04282122850418091, -0.0011916678631678224, -0.003387386677786708, -0.0082243075594306, -0.014680389314889908, -0.021849244832992554, -0.012836773879826069, 0.013049234636127949, -0.022287873551249504, 0.010835525579750538, 0.009314028546214104, -0.03953150659799576, -0.03739318624138832, 0.016750173643231392, 0.026770122349262238, 0.01448848843574524, 0.009718390181660652, -0.00029299096786417067, -0.008752034045755863, 0.01761372573673725, 0.006891284603625536, -0.02922370657324791, 0.005842685233801603, -0.030813738703727722, -0.011226180009543896, -0.030155794695019722, -0.006980380974709988, -0.020259210839867592, -0.006606860551983118, 0.0024655789602547884, -0.0033291312865912914, -0.027304701507091522, -0.012233657762408257, 0.0044753942638635635, 0.006295022089034319, 0.037036798894405365, 0.027112800627946854, 0.012898456305265427, 0.018353912979364395, -0.03629660978913307, 0.008436769247055054, -0.0003745915018953383, 0.006185364909470081, -0.006469788961112499, 0.012336461804807186, 0.0004139996599406004, 0.0053423731587827206, -0.020053602755069733, 0.017942698672413826, -0.03536452353000641, -0.0123159009963274, -0.010184434242546558, -0.00752524146810174, -0.02308288961648941, 0.021808123216032982, -0.000579128332901746, 0.004091592971235514, 0.04419194534420967, 0.009211224503815174, -0.011719638481736183, -0.009608732536435127, -0.024700338020920753, 0.038352686911821365, 0.019957654178142548, 0.0023439277429133654, 0.015557648614048958, -0.0006776486989110708, -0.014885997399687767, -0.0202455036342144, 0.02661934308707714, -0.0006168230902403593, 0.017750797793269157, -0.003001872217282653, 0.00119509466458112, -0.029634922742843628, -0.01221309695392847, 0.008827423676848412, 0.00921807810664177, -0.011301569640636444, 0.00878630205988884, -0.022041143849492073, -0.008258575573563576, 0.013597521930932999, -0.010232409462332726, -0.007511534262448549, -0.027318408712744713, -0.02663305029273033, -0.012137707322835922, -0.0033805330749601126, 0.01801123470067978, -0.01738070324063301, -0.011020571924746037, -0.008142064325511456, -0.01372774038463831, 0.01780562661588192, -0.01339876838028431, -0.008806862868368626, -0.0017613725503906608, 0.043890390545129776, 0.018586935475468636, 0.03229411318898201, 0.023823078721761703, 0.00911527406424284, 0.022041143849492073, -0.013700325973331928, -0.005071656312793493, -0.013563253916800022, -0.016009986400604248, -0.0026609061751514673, 0.004677575081586838, 0.017956405878067017, 0.0063190096989274025, -0.018340205773711205, -0.005784429609775543, -0.0015163567150011659, 0.02350781299173832, 0.00148380221799016, -0.011952660977840424, -0.028894733637571335, -0.042053624987602234, -0.003927106969058514, 0.022315287962555885, 0.004609039053320885, -0.008244868367910385, -0.035062965005636215, -0.0017853601602837443, 0.03487106412649155, -0.008258575573563576, 0.026537099853157997, 0.007621191907674074, 0.040079791098833084, 0.008957642130553722, -0.009814340621232986, -0.001900157774798572, 0.023603763431310654, -0.039449263364076614, -0.005743307992815971, -0.022095972672104836, -0.005650784820318222, 0.013871666043996811, 0.005181313958019018, 0.03119754046201706, 0.009355150163173676, 0.009834901429712772, -0.0038585709407925606, 0.012226804159581661, -0.03273274376988411, -0.0010605930583551526, 0.02332961931824684, -0.025180088356137276, -0.00424237223342061, -0.03643368184566498, -0.013138331472873688, -0.019450487568974495, -0.01757260411977768, 0.013035527430474758, 0.003697511740028858, 0.02265796810388565, -0.025234917178750038, 0.0014855156186968088, 0.018737714737653732, -0.005407482385635376, 0.0346517488360405, 0.02330220490694046, 0.029826821759343147, 0.008738326840102673, 0.016996903344988823, -0.02553647570312023, -0.021643636748194695, -0.0018007807666435838, -0.01847727783024311, 0.013515278697013855, 0.03520003706216812, -0.015105311758816242, -0.011986928060650826, 0.007134587038308382, -0.0182031337171793, -0.002816825406625867, -0.0382978580892086, 0.010910915210843086, 0.013350793160498142, 0.017668554559350014, -0.03032028116285801, -0.010506552644073963, -0.005664492025971413, 0.01887478679418564, -0.01473521813750267, -0.004588478244841099, 0.00538692157715559, -0.012048610486090183, 0.009039884433150291, 0.021465443074703217, 0.00043413208913989365, 0.008375086821615696, 0.0012559202732518315, 0.005157326348125935, 0.014858582988381386, 0.0024347377475351095, 0.0049345847219228745, -0.0019121515797451138, -0.005290971137583256, 0.040984466671943665, -0.023562641814351082, -0.004818073473870754, 0.013851105235517025, 0.021013105288147926, -0.0044856746681034565, 0.0009389417828060687, -0.028264204040169716, 0.028291618451476097, -0.004931157920509577, -0.009738950990140438, 0.00565421162173152, 0.023919029161334038, 0.0044856746681034565, -0.03714645653963089, -0.022986939176917076, 0.0009989107493311167, -0.0003388243494555354, 0.022520896047353745, 0.019052978605031967, -0.024316536262631416, -0.026866072788834572, -0.004979133140295744, 0.004362309817224741, -0.018998151645064354, 0.006497202906757593, -0.00621620612218976, 0.008806862868368626, -0.03865424543619156, -0.0014598146080970764, 0.008388794027268887, -0.012014342471957207, -0.005428043194115162, 0.0015155000146478415, -0.008107796311378479, -1.8288509409103426e-06, 0.01755889691412449, -0.016352664679288864, 0.005503432359546423, 0.038352686911821365, 0.011082254350185394, -0.03972340747714043, 0.020505940541625023, -0.01736699603497982, 0.009855462238192558, 0.014049858786165714, 0.0027088813949376345, -0.013933347538113594, -0.022973231971263885, 0.01120561920106411, 0.005798136815428734, 0.006339570507407188, -0.017874162644147873, 0.010958890430629253, 0.019409365952014923, 0.011788174510002136, -0.011445495299994946, 0.0016045967349782586, 0.010218702256679535, -0.01120561920106411, 0.007861067540943623, 0.02900439128279686, -0.005410909187048674, 0.004890036303550005, -0.008649230003356934, -5.659565795212984e-05, 0.0028082584030926228, -0.03166358545422554, -0.02175329439342022, -0.0053423731587827206, 0.011877271346747875, -0.006857016589492559, -0.003831156762316823, -0.0005855535855516791, -0.020286625251173973, -0.011034279130399227, 0.014529610052704811, -0.025563890114426613, 0.0011736772721633315, 0.031307198107242584, -0.01100001111626625, 0.004605612251907587, 0.01979316771030426, -0.01394020114094019, -0.028428690508008003, -0.014200638048350811, -0.012357022613286972, -0.0352274514734745, -0.005924928467720747, -0.002205142518505454, 0.03056701086461544, 0.002421030541881919, -0.026221834123134613, -0.014337710104882717, -0.006336143705993891, -0.038544587790966034, -0.016873538494110107, -0.04287605732679367, 0.023617470636963844, 0.029744580388069153, 0.021040519699454308, 0.010568235069513321, 0.027798160910606384, 0.0027277288027107716, 0.002083491301164031, -0.03426794707775116, -0.005719320848584175, -0.03314395993947983, -0.013974469155073166, 0.042519669979810715, -0.02659192867577076, -0.03668041154742241, -0.0012893315870314837, 0.006898138206452131, -0.002217136323451996, 0.01956014521420002, 0.006966673769056797, -0.005976330488920212, -0.0017767931567505002, -0.0009920571465045214, 0.018120890483260155, 0.016983196139335632, 0.030457353219389915, 0.017641140148043633, -0.04786547273397446, 0.002277105115354061, 0.019889118149876595, 0.0005697046290151775, -0.0004857481690123677, 0.008642376400530338, 0.00321947387419641, -0.011507176794111729, -0.009848608635365963, -0.010862939991056919, -0.030813738703727722, -0.01931341551244259, 0.002402183134108782, -0.00707975821569562, 0.02106793411076069, 0.01910780742764473, 0.038599416613578796, -0.016160763800144196, -0.02988165058195591, -0.002001248300075531, -0.007682874333113432, 0.0024433047510683537, 0.014474781230092049, 0.02681124396622181, -0.025330867618322372, -0.0016294409288093448, 0.006853589788079262, -0.0037146457470953465, 0.003200626466423273, -0.01913522183895111, -0.0206841342151165, -0.009327735751867294, -0.02156139351427555, -0.0047324039041996, 0.00035874260356649756, -0.004077885765582323, 0.0029401900246739388, -0.005753588397055864, -0.009197517298161983, 0.013563253916800022, -0.0022222765255719423, 0.02546793967485428, -0.02308288961648941, -0.010074776597321033, 0.00527041032910347, 0.01847727783024311, -0.04441126063466072, 0.0016885531367734075, 0.023658592253923416, 0.020944571122527122, 0.007696581073105335, 0.20308557152748108, 0.02789410948753357, 0.017462946474552155, 0.04213586822152138, 0.009876023046672344, 0.00697695417329669, 0.019669802859425545, 0.006010598037391901, -0.019231172278523445, 0.0042320918291807175, 0.009985680691897869, 0.003342838492244482, -0.001398988999426365, 0.00021385341824498028, -0.0004977419739589095, -0.014433659613132477, -0.03234894201159477, -0.015160140581429005, -5.191058880882338e-05, -0.005266983527690172, 0.0017245345516130328, -0.01221309695392847, -0.013830544427037239, -0.004985986743122339, 0.023850493133068085, 0.007854213938117027, -0.004787232261151075, -0.00026750416145659983, 0.0328972302377224, 0.024316536262631416, -0.00923178531229496, -0.015694720670580864, 0.019614974036812782, -0.0033359848894178867, -0.017284752801060677, -0.009738950990140438, 0.016393786296248436, 0.0032074800692498684, -0.012720262631773949, 0.028922148048877716, -0.016640515998005867, -0.02128724940121174, 0.00954705011099577, -0.014365124516189098, 0.0031869192607700825, 0.008532719686627388, -0.019738338887691498, 0.021383199840784073, -0.006253900472074747, 0.02552276849746704, -0.0061579504981637, -0.0028133986052125692, -0.0037591939326375723, 0.01894332282245159, -0.0065931533463299274, -0.003142370842397213, -0.0006360987899824977, 0.008930227719247341, -0.015653599053621292, -0.02464550919830799, -0.011760760098695755, -0.0037489135283976793, -0.007998139597475529, -0.005582248792052269, -0.02613959088921547, 0.007957017980515957, -0.030375109985470772, 0.02464550919830799, -0.002513553947210312, 0.0028750807978212833, -0.011349544860422611, -0.004208104219287634, -0.03254084289073944, -0.0019652668852359056, -0.020766377449035645, -0.02176700159907341, 0.016407493501901627, 0.011788174510002136, 0.005219008773565292, 0.011733345687389374, -0.015146433375775814, -0.0013878518948331475, -0.02195890247821808, -0.002654052572324872, 0.007826799526810646, -0.030868567526340485, 0.026262955740094185, -0.01043116394430399, -0.019025566056370735, -0.021259834989905357, -0.005314958747476339, 0.015968864783644676, -0.016859831288456917, -0.022562017664313316, 0.00478037865832448, -0.007004368584603071, 0.012089732103049755, 0.02464550919830799, -0.01803864911198616, -0.024741459637880325, -0.014090980403125286, 0.04060066491365433, 0.011671663261950016, 0.025358282029628754, -0.015146433375775814, 0.013289110735058784, 0.006829602178186178, 0.024261707440018654, -0.004890036303550005, -0.0038585709407925606, -0.0033000034745782614, -0.037475429475307465, 0.007381316274404526, -0.009814340621232986, 0.0072853658348321915, 0.024234293028712273, 0.017408117651939392, -0.027099093422293663, 0.006442374549806118, -0.020286625251173973, 0.023165132850408554, -0.006627421360462904, 0.012624312192201614, 0.007895335555076599, -0.028003767132759094, -0.05060690641403198, 0.000807866919785738, 0.03382932022213936, -0.02831903286278248, -0.026948314160108566, 0.009512783028185368, -0.006805614568293095, 0.020094724372029305, -0.0033188508823513985, -0.01602369360625744, 0.018518399447202682, 0.027537724003195763, 0.0024073233362287283, -0.015228676609694958, -0.023000646382570267, 0.015228676609694958, 0.012795652262866497, 0.02656451426446438, 0.003930533770471811, -0.005260129924863577, 0.002837386215105653, 0.0059591964818537235, -0.00488318270072341, -0.01887478679418564, -0.037228699773550034, -0.004691282287240028, 0.017860455438494682, 0.009971973486244678, 5.595313632511534e-05, 0.03668041154742241, -0.004756391514092684, -0.02023179642856121, -0.029936479404568672, 0.005472591612488031, 0.023809371516108513, -0.038325272500514984, 0.005585675593465567, 0.031773243099451065, 0.011315276846289635, -0.01648973673582077, -0.007813092321157455, -0.175122931599617, 0.013563253916800022, 0.012569483369588852, 0.003951094578951597, 0.022808747366070747, 0.009478515014052391, 0.007052343804389238, 0.004074458964169025, -0.00046176061732694507, -0.006819321773946285, 0.008512158878147602, 0.015105311758816242, -0.004376017022877932, 0.005030534695833921, 0.015009361319243908, -0.003152651246637106, -0.01372774038463831, 0.037475429475307465, 0.04972964897751808, 0.01716138795018196, 0.024714045226573944, -0.03492589294910431, 0.00159517303109169, 0.002705454593524337, 0.031307198107242584, -0.003488477086648345, -0.004814646672457457, 0.026934606954455376, 0.017202509567141533, -0.029826821759343147, -0.0007320490549318492, -0.014625560492277145, 0.011863564141094685, 0.005294397938996553, 0.017517775297164917, 0.0029624642338603735, -0.003731779521331191, 0.003779754741117358, -0.00016555702313780785, 0.011363252066075802, 0.022712796926498413, 0.019203757867217064, 0.021629929542541504, 0.015653599053621292, 0.018765129148960114, 0.006654835771769285, 0.012500947341322899, -0.01603740081191063, 0.005661065224558115, -0.03456950560212135, 0.02263055369257927, -0.020725255832076073, 0.010300945490598679, 0.005332092754542828, 0.005438323598355055, 0.0012636305764317513, 0.00801184680312872, 0.020725255832076073, -0.0004133571346756071, -0.02971716597676277, 0.003529598703607917, -0.013001259416341782, 0.008464183658361435, 0.0016474316362291574, -0.0071003190241754055, -0.029634922742843628, 0.019902825355529785, 0.014310295693576336, 0.01045857835561037, -0.004345175810158253, -0.0018881639698520303, -0.0011762473732233047, -0.01760001853108406, 0.018532106652855873, -0.006918699014931917, 0.010177580639719963, -0.028291618451476097, 0.010616210289299488, 0.03415829315781593, -0.005417762789875269, 0.008614961989223957, -0.00040093500865623355, -0.010259823873639107, 0.0008781161741353571, -0.00604143925011158, -0.003058414440602064, -0.006103121675550938, 0.004417138639837503, -0.020519647747278214, 0.006295022089034319, 0.01584549993276596, -0.01286418829113245, -0.007484119851142168, 0.01418693084269762, 0.0195875596255064, -0.008313404396176338, 0.022918405011296272, -0.0029538972303271294, 0.010218702256679535, -0.014145809225738049, 0.0021640209015458822, 0.013152038678526878, -0.023686006665229797, 0.009382564574480057, 0.03807854652404785, 0.044000044465065, 0.022370116785168648, 0.013501571491360664, 0.031334612518548965, -0.015722135081887245, -0.009211224503815174, 0.007230537012219429, 0.028236789628863335, 0.002666046377271414, -0.015338334254920483, 0.03210221603512764, -0.014104687608778477, -0.027757039293646812, 0.002289098920300603, -0.010006241500377655, 0.060750219970941544, -0.025975104421377182, -0.02378195710480213, 0.02527603879570961, 0.010904061608016491, 0.001345873693935573, -0.09430539608001709, -0.028058595955371857, 0.008388794027268887, 0.023658592253923416, -0.024974480271339417, 0.0008618389256298542, 0.00022445507056545466, 0.05052466318011284, -0.014029297977685928, 0.027757039293646812, -0.015023068524897099, -0.02903180569410324, 0.00725795142352581, 0.017462946474552155, 0.014214345254004002, -0.0009106707293540239, 0.0004943151725456119, -0.00576044199988246, -0.001693693338893354, 0.03986047953367233, 0.013145185075700283, -0.01108910795301199, 0.017202509567141533, -0.02087603509426117, -0.007422437891364098, -0.010410603135824203, -0.03210221603512764, 0.014885997399687767, 0.02069784142076969, 0.006552031729370356, 0.006288168486207724, -0.003995642997324467, 0.01505048293620348, -0.018299084156751633, -0.02700314298272133, -0.013357646763324738, -0.02415204979479313, -0.009046738035976887, 0.011623688042163849, -0.039887893944978714, -0.0029967320151627064, -0.0017528055468574166, -0.010136459022760391, -0.01735328882932663, 0.004985986743122339, 0.004369163420051336, -0.0036461097188293934, 0.03281498700380325, 0.021835537627339363, -0.012411851435899734, 0.00813521072268486, -0.016818709671497345, -0.00467414828017354, -0.021698465570807457, 0.02289099059998989, -0.008231161162257195, 0.0374206006526947, 0.008909666910767555, -0.020766377449035645, -0.004252652637660503, 0.00510592432692647, 0.01188412494957447, -0.001848755870014429, 0.03848975896835327, -0.010061069391667843, 0.022685382515192032, 0.004979133140295744, -0.006534897722303867, -0.014036151580512524, -0.008333965204656124, -0.01957385241985321, 0.0034319350961595774, -0.021945195272564888, 0.010163873434066772, -0.001065733260475099, -0.0017630859510973096, -0.033281031996011734, -0.01824425533413887, 0.02486482448875904, -0.0009115274297073483, -0.012151414528489113, -0.004345175810158253, -0.007970725186169147, -0.02238382399082184, 0.021246127784252167, 0.015077897347509861, 0.005311531946063042, -0.01396761555224657, 0.024097220972180367, -0.03536452353000641, 0.0365433394908905, 0.008107796311378479, 0.011397520080208778, -0.023384448140859604, -0.012583190575242043, 0.011514030396938324, -0.014927118085324764, 0.018299084156751633, 0.03361000493168831, -0.012966991402208805, -0.01505048293620348, -0.005476018413901329, -0.06168230623006821, 0.021410614252090454, 0.006370411720126867, 0.002148600295186043, -0.009375710971653461, -0.006743932142853737, -0.012192536145448685, -0.0017562323482707143, -0.013138331472873688, 0.014214345254004002, -0.026646757498383522, 0.014077273197472095, -0.021917780861258507, -0.02284986898303032, -0.031992558389902115, -0.011328984051942825, 0.011877271346747875, 0.005643931217491627, 0.021808123216032982, -0.0013441602932289243, -0.02062930539250374, 0.008656083606183529, -0.010520259849727154, 0.022767625749111176, -0.001322742784395814, 0.001788786961697042, -0.018189426511526108, 0.035720910876989365, -0.005983184091746807, -0.010465431958436966, 0.010993157513439655, -0.00495514553040266, 0.0025067003443837166, 0.018367620185017586, -0.01932712271809578, -0.04334210231900215, 0.008642376400530338, -0.008203746750950813, 0.012891602702438831, 0.003916826564818621, -0.013021820224821568, -0.01803864911198616, 0.0184909850358963, 0.0008361379732377827, -0.02441248670220375, -0.0029830250423401594, -0.012446119450032711, -0.011705931276082993, 0.015872914344072342, 0.027976352721452713, 0.03569349646568298, 0.0035501595120877028, -0.0046604410745203495, -0.03906546160578728, -0.010451724752783775, 0.0015412010252475739, 0.020821206271648407, 0.017092853784561157, -0.0034096608869731426, -0.0004998837248422205, 0.050223104655742645, 0.015420576557517052, 0.01827166974544525, -0.007648606318980455, -0.005688479635864496, -0.018957030028104782, -0.02792152389883995, -0.0006433807429857552, -0.006692530587315559, -0.042766399681568146, 0.004091592971235514, -0.023919029161334038, 0.034624334424734116, 0.03056701086461544, 0.020574476569890976, -0.0010897207539528608, -0.020163260400295258, -0.0178330410271883, -0.014981946907937527, 0.020259210839867592, 0.03604988381266594, -0.013830544427037239, -0.03010096587240696, 0.0047598183155059814, 0.02043740451335907, 0.024549558758735657, -0.0257283765822649, 0.01395390834659338, 0.005201874766498804, 0.0025563889648765326, -0.017709676176309586, -0.012638019397854805, -0.01960126683115959, 0.0064183869399130344, 0.010054215788841248, 0.02971716597676277, -0.011253594420850277, 0.011630541644990444, 0.019190050661563873, 0.05055207759141922, -0.0025752363726496696, 0.004060751758515835, 0.0018521826714277267, 0.003262308659031987, -0.024892238900065422, 0.010040508583188057, -0.025330867618322372, -0.013851105235517025, 0.006990661378949881, 0.024481022730469704, 0.011315276846289635, -0.0017288180533796549, -0.008847984485328197, 0.011041132733225822, -0.014844875782728195, 0.007867921143770218, -0.008710912428796291, -0.024522144347429276, -0.016818709671497345, 0.002712308196350932, 0.0006990661495365202, 0.010081630200147629, 0.026495978236198425, -0.008258575573563576, 0.02944302186369896, 0.014296588487923145, -0.007552655879408121, -0.01209658570587635, 0.009745804592967033, -0.027606260031461716, 0.023124011233448982, 0.010636771097779274, 0.012350169010460377, 0.007682874333113432, -0.025234917178750038, -0.01054082065820694, -0.014077273197472095, 0.017038024961948395, -0.006082560867071152, 0.07730849087238312, 0.01847727783024311, -0.03632402420043945, 0.0086972052231431, 0.0022514043375849724, -0.003455922706052661, 0.02487853169441223, -0.01695578172802925, 0.011370105668902397, -0.011644248850643635, 0.013947054743766785, 0.0011693937703967094, -0.028538348153233528, -0.02195890247821808, -0.02239753119647503, -0.015105311758816242, 0.010602503083646297, 0.019628681242465973, -0.023809371516108513, -0.002458725357428193, 0.024576973170042038, -0.015379455871880054, 0.033747076988220215, -0.009951412677764893, -0.02223304472863674, -0.01473521813750267, 0.0374206006526947, 0.018628057092428207, 0.009869169443845749, -0.019902825355529785, 0.01448848843574524, -0.003353118896484375, -0.0016559986397624016, -0.007970725186169147, -0.012363876216113567, -0.021712172776460648, -0.008861691690981388, -0.005678199231624603, -0.004458260256797075, 0.00835452601313591, 0.0041327145881950855, 0.01100001111626625, -0.02613959088921547, -0.01350842509418726, 0.02352152019739151, -0.009629293344914913, 0.015447990968823433, -0.028264204040169716, -0.01450219564139843], "276c969e-e630-45da-a5d3-d9abd5380a9f": [-0.01924024149775505, -0.013772884383797646, 0.005308931227773428, -0.031037867069244385, -0.012357169762253761, 0.019550349563360214, -0.007456099148839712, -0.024687374010682106, -0.025118829682469368, -0.048242174088954926, 0.008568447083234787, 0.005726904142647982, 0.0020241353195160627, -0.007928004488348961, 0.0043179308995604515, 0.0039808559231460094, 0.017554866150021553, -0.0077055348083376884, 0.003906699363142252, -0.015006579458713531, -0.027019932866096497, 0.0003585635276976973, -0.027276109904050827, 0.01868743821978569, -0.028314299881458282, 0.010523481294512749, 0.007422391790896654, -0.006458356976509094, -0.0013904344523325562, -0.0013946478720754385, 0.0063707176595926285, -0.0015732975443825126, -0.026723306626081467, -0.008224629797041416, -0.016408810392022133, -0.00891900435090065, 0.00980888307094574, -0.010166182182729244, -0.003987597301602364, -0.01286278199404478, 0.0327097587287426, -0.013671762309968472, -0.016206566244363785, 0.00974820926785469, -0.0052347746677696705, 0.019806526601314545, 0.00841339211910963, -0.013651537708938122, -0.0035123215056955814, -0.008554963394999504, 0.009889780543744564, 0.021842461079359055, -0.011002128012478352, -0.006997677031904459, -0.006832510232925415, -0.009647086262702942, -0.003446592018008232, -0.009970678947865963, 0.02228739857673645, -0.004668488632887602, 0.022004256024956703, 0.02410760521888733, -0.0162335317581892, -0.0011426842538639903, -0.024161536246538162, -0.021451452746987343, 0.0024235693272203207, -0.016462743282318115, -0.00784036424010992, 0.00024564340128563344, 0.014682987704873085, 0.03680859133601189, 0.0011629087384790182, -0.0013466146774590015, -0.009842590428888798, -0.02258402481675148, 0.0036943419836461544, 0.0065358844585716724, -0.008083058521151543, -0.0038729917723685503, 0.014143667183816433, -0.014858266338706017, -0.0008603839669376612, -0.008096541278064251, 0.00134830002207309, 0.04117708280682564, -0.009296528995037079, -0.003562882775440812, -0.03484007343649864, 0.002246604999527335, -0.006502177100628614, -4.166036524111405e-05, 0.016179600730538368, 0.013489741832017899, 0.0009783601853996515, -0.0005856678471900523, 0.029339008033275604, 0.0036404100246727467, 0.006249370519071817, -0.013253789395093918, -0.022395262494683266, 0.016705436632037163, -0.022867169231176376, -0.01216166652739048, -0.01953686773777008, -0.005211179610341787, 0.009444842115044594, -0.010698760859668255, 0.007631378248333931, 0.012276271358132362, 0.0041190567426383495, 0.046165794134140015, -0.015114443376660347, -0.0009244282264262438, -0.018282948061823845, -0.025455905124545097, 0.01817508414387703, -0.05261066555976868, -0.0070381262339651585, -0.01207402627915144, 0.02355480194091797, 0.028368232771754265, 0.018498675897717476, -0.024390747770667076, 0.004624668974429369, -0.007820140570402145, 0.015087476931512356, -0.01771666295826435, 0.019644731655716896, 0.0020157084800302982, 0.015559382736682892, 0.02288065105676651, 0.020993031561374664, -0.0004470457206480205, -0.03146932274103165, 0.012572897598147392, -0.020534608513116837, 0.005959486123174429, -0.001457849401049316, -0.013995354063808918, 0.018673954531550407, 0.027694081887602806, -0.014413326978683472, -0.034813106060028076, 0.014426810666918755, 0.03233223408460617, -0.010577413253486156, 0.02906934916973114, 0.025401972234249115, -0.01987394317984581, 0.004783094394952059, -0.004520175978541374, -0.006252741441130638, 0.014844783581793308, 0.003879733383655548, -0.007132506929337978, -0.01564028114080429, 0.027019932866096497, -0.006161731202155352, -0.0162739809602499, 0.010577413253486156, 0.011858298443257809, -0.01315940823405981, 0.006963969673961401, 0.014224565587937832, 0.02436378225684166, -0.0003792093775700778, -0.04182426631450653, 0.0004925508401356637, -0.00134830002207309, 0.005420166067779064, 0.03376143425703049, -0.017258239910006523, 0.028152504935860634, 0.010954937897622585, 0.0031196291092783213, 0.010327978059649467, -0.006340380758047104, -0.012444809079170227, -0.03812992572784424, 0.026197468861937523, -0.0034853555262088776, 0.021518869325518608, 0.013806592673063278, -0.029096314683556557, -0.027019932866096497, 0.004439278040081263, -0.003546029096469283, 0.011932455003261566, -0.005319043528288603, 0.01736610382795334, 0.009013385511934757, -0.04233662039041519, -0.014858266338706017, -0.6281999349594116, -0.005463985726237297, 0.027559252455830574, -0.025482870638370514, 0.0005962013965472579, 0.0040314169600605965, 0.01716385968029499, 0.004779723472893238, 0.011703244410455227, 0.009795399382710457, 0.0031482805497944355, 0.009660569950938225, -0.010678536258637905, -0.015599831007421017, -0.026035673916339874, -0.010193148627877235, 0.028530027717351913, -0.011325719766318798, -0.026588477194309235, 0.002462332835420966, -0.011918972246348858, 0.035487256944179535, -0.009181923232972622, -0.004570737015455961, 0.004071866162121296, -0.008305528201162815, 0.023500869050621986, -0.01580207608640194, -0.019779561087489128, 0.005777465645223856, -0.024606475606560707, 0.017150375992059708, 0.029015416279435158, 0.002438737777993083, 0.040826525539159775, -0.00868305191397667, -0.020871683955192566, 0.014035803265869617, 0.02567163296043873, 0.03750970587134361, -0.028017673641443253, -0.023851428180933, 0.00013356597628444433, 0.015114443376660347, -0.012262788601219654, 0.010624604299664497, -0.0011115048546344042, 0.0013769513461738825, -0.02448512800037861, 0.005079720169305801, 0.0014848153805360198, -0.028907552361488342, 0.0032729983795434237, -0.0018117781728506088, 0.001306165591813624, -0.010604379698634148, 0.0324670635163784, -0.014521190896630287, 0.008265078999102116, 0.01476388517767191, 0.002307278336957097, 0.015114443376660347, -0.005881958641111851, -0.046839941293001175, -0.04443996772170067, 0.004095461219549179, -0.012539190240204334, -0.034516479820013046, 0.025145795196294785, -0.00684262253344059, 0.020399779081344604, 0.013402102515101433, 0.0077055348083376884, -0.0045168050564825535, -0.009950454346835613, 0.00851451512426138, 0.0533117838203907, -0.0013693672372028232, -0.007267337292432785, 0.016368363052606583, 0.008999902755022049, -0.011878523044288158, -0.01449422538280487, -0.017568349838256836, 0.029770463705062866, 0.014736919663846493, -0.006734758615493774, -0.006097686942666769, 0.010341460816562176, -0.008352718316018581, 0.012775142677128315, 0.013449292629957199, -0.005679714027792215, -0.044682662934064865, 0.0074089085683226585, 0.03084910474717617, 0.004951631650328636, -0.0043179308995604515, -0.01053022313863039, -0.027640150859951973, -0.028449131175875664, -0.01979304477572441, 0.014912198297679424, 0.00013198592932894826, 0.027046898379921913, 0.007422391790896654, -0.002932552481070161, -0.016044769436120987, 0.029500804841518402, -0.021411003544926643, 0.01264705415815115, -0.00972798466682434, -0.017743628472089767, -0.030606411397457123, 0.004486468154937029, -0.021599765866994858, 0.017824526876211166, -0.01423804834485054, -0.009384168311953545, -0.021761562675237656, -0.0015884659951552749, 0.01898406445980072, 0.003970743622630835, -0.007065092213451862, -0.001976944971829653, 0.031334493309259415, 0.014318945817649364, 0.00031537580071017146, 0.004574107937514782, 0.00010602061956888065, 0.009141474030911922, -0.0177975594997406, 0.005683084484189749, -0.016934648156166077, 0.014089735224843025, 0.01164931245148182, 0.014305463060736656, 0.008865072391927242, 0.019429003819823265, -0.0353524275124073, 0.009114508517086506, -0.009802141226828098, 0.008763950318098068, -0.0070381262339651585, -0.011507741175591946, -0.005474098026752472, -0.030579444020986557, 0.024566026404500008, -0.016489708796143532, -0.0019280690466985106, -0.04249841719865799, -0.014736919663846493, 0.004297706298530102, 0.03225133568048477, -0.010503257624804974, 0.0036505223251879215, 0.005190955009311438, -0.045788269490003586, -0.01368524506688118, -0.037779368460178375, -0.013482999987900257, 0.021451452746987343, -0.011770659126341343, 0.008945970796048641, -0.02173459716141224, -0.016664987429976463, -0.021963806822896004, -0.004789835773408413, 0.00016716813843231648, -0.02507838048040867, -0.005177472252398729, -0.01364479586482048, 0.01597735472023487, 0.036592863500118256, -0.02394580841064453, 0.01949641853570938, -0.019927874207496643, -0.0004942362429574132, 0.0012084138579666615, -0.011150441132485867, 0.03508276492357254, 0.037725433707237244, -0.013172890990972519, -0.0021859314292669296, 0.0236491821706295, 0.024984000250697136, -0.001612903899513185, 0.0323052704334259, -0.0222065020352602, 0.005966227501630783, -0.0026999707333743572, 0.010880781337618828, -0.01678633503615856, 0.00490444153547287, -0.013820075429975986, -0.015033544972538948, -0.02804464101791382, -0.012754918076097965, -0.022044705227017403, 0.019590798765420914, -0.004341525956988335, 0.006687568034976721, -0.006579704117029905, 0.0031887295190244913, 0.010038093663752079, -0.02893451787531376, 0.010456066578626633, -0.0163144301623106, 0.021006515249609947, -0.015411069616675377, 0.005814543925225735, -0.00843361672013998, 0.00025470228865742683, -0.039720918983221054, -0.0047156792134046555, 0.02915024571120739, -0.011278529651463032, 0.019334621727466583, 0.008905521593987942, 0.006397683639079332, 0.016300946474075317, -0.006869588512927294, 0.02952777035534382, -0.013253789395093918, 0.008143732324242592, 0.015087476931512356, -0.020480677485466003, 0.011716727167367935, 0.018714403733611107, -0.01728520542383194, 0.011143699288368225, 0.018930131569504738, 0.008723501116037369, -0.0013011095579713583, 0.027909809723496437, 0.02987832948565483, 0.03812992572784424, -0.0323052704334259, 0.022530093789100647, -0.028503062203526497, 0.007975194603204727, -0.003785352222621441, 0.029689567163586617, -0.025819946080446243, 0.005352750886231661, 0.007449357770383358, 0.008103283122181892, -0.0012943680630996823, -0.010894264094531536, 0.010105508379638195, 0.002091550501063466, 0.002138740848749876, -0.00751003110781312, -0.006832510232925415, 0.02750532142817974, 0.008851589635014534, 0.00127919961232692, 0.034894004464149475, 0.03138842433691025, 0.013671762309968472, 0.01135268621146679, 0.012525707483291626, 0.01593690551817417, 0.0033235596492886543, 0.03335694223642349, -0.0062561118975281715, -0.002681431593373418, -0.02766711637377739, 0.0026157021056860685, -0.010705501772463322, -0.0164357777684927, -0.03505580127239227, -0.026750272139906883, -0.009539222344756126, -0.02804464101791382, 0.00515724765136838, -0.008359460160136223, 0.028961485251784325, -0.0058853295631706715, 0.02279975265264511, -0.006849363911896944, -0.02733004093170166, 0.012761659920215607, 0.0011013925541192293, -0.009674052707850933, -0.009579671546816826, -0.00486399233341217, 0.013071768917143345, 0.009936971589922905, 0.016206566244363785, -0.01472343597561121, 0.01101561076939106, -0.003374120919033885, 0.020184051245450974, -0.004068495240062475, 0.02928507700562477, 0.05139719694852829, -0.013611088506877422, -0.016476226970553398, -0.002998282201588154, 0.008096541278064251, 0.009094283916056156, -0.006010047160089016, -0.034516479820013046, 0.04813431203365326, -0.03359963744878769, -0.017393071204423904, -0.020521126687526703, 0.006845993455499411, -0.030444614589214325, 0.014049286022782326, -0.03694342076778412, -0.03055247850716114, 0.00499882223084569, -0.0237705297768116, -0.0028870473615825176, -0.004658376798033714, 0.001612903899513185, 0.03389626368880272, 0.010051576420664787, -0.02139752171933651, -0.0312266293913126, 0.00230390764772892, 0.02296154946088791, 0.07501941174268723, 0.015208824537694454, -0.01212121732532978, 0.022179534658789635, -0.026965999975800514, -0.012802109122276306, -0.01059089694172144, -0.03966698795557022, 0.02546938695013523, -0.026076123118400574, -0.030201921239495277, 0.008042609319090843, 0.0236491821706295, -0.007712276186794043, -0.0039640022441744804, 0.021330107003450394, 0.013381877914071083, -0.013611088506877422, -0.009626862592995167, 0.011494257487356663, -0.00592240784317255, 0.0014468944864347577, 0.03157718479633331, 0.022975033149123192, 0.05422862619161606, 0.03368053585290909, 0.0383995845913887, 0.01750093512237072, 0.005548254586756229, -0.012033578008413315, -0.019644731655716896, -0.0007272392977029085, -0.0068898131139576435, 0.012249305844306946, -0.030903035774827003, 0.03424682095646858, 0.004476355854421854, -0.03610747307538986, -0.004668488632887602, 0.011204373091459274, 0.012829074636101723, 0.015047028660774231, 0.0055549959652125835, -0.003744903253391385, 0.006583075039088726, -0.03257492929697037, -0.001561500015668571, 0.03478614240884781, -0.009336977265775204, -0.009283045306801796, 0.017433518543839455, 0.0030421018600463867, -0.0147908516228199, 0.026116572320461273, 0.006680826656520367, 0.002346042077988386, -0.0023848055861890316, 0.0009547649533487856, -0.012599864043295383, -0.03416592255234718, -0.0474601611495018, 0.006778578273952007, -0.012842557393014431, -0.016368363052606583, -0.0088987797498703, -0.006276336498558521, -0.015451517887413502, 0.005821285303682089, -0.029339008033275604, 0.015114443376660347, 0.01580207608640194, -0.04390064999461174, -0.0446556955575943, 0.013260530307888985, 0.03724004700779915, 0.015923423692584038, 0.0027454758528620005, 0.004547141958028078, 0.006347122602164745, 0.00955270603299141, 0.00949203222990036, -0.030390681698918343, 0.01002461090683937, -0.023716596886515617, -0.028071606531739235, -0.025226693600416183, -0.011393135413527489, -0.018579574301838875, -0.0061718435026705265, 0.006229145918041468, -0.008298786357045174, -0.021168310195207596, -0.011366168968379498, 0.016031287610530853, 0.008784174919128418, 0.0353524275124073, 0.006893184036016464, 0.016880717128515244, 0.016449259594082832, -0.04131191223859787, 0.007321269251406193, 0.003866250393912196, 0.004907811991870403, -0.021748078987002373, 0.014480742625892162, 0.0005237302975729108, 0.0011334146838635206, -0.027357008308172226, 0.015100960619747639, -0.023109862580895424, 0.00251120887696743, -0.00871001835912466, -0.016799818724393845, -0.026291850954294205, 0.01766273006796837, -0.014925681054592133, -0.006549367215484381, 0.031118765473365784, 0.009883039630949497, -0.013381877914071083, 0.0053224144503474236, -0.03796812891960144, 0.04581523314118385, 0.023797495290637016, -0.014008836820721626, 0.014548157341778278, 0.012458291836082935, -0.02195032499730587, -0.030795171856880188, 0.013105476275086403, 0.011703244410455227, 0.014224565587937832, -0.0025533430743962526, -0.004563995636999607, -0.023460419848561287, -0.021046962589025497, 0.0028280592523515224, -0.002201099880039692, -0.017487451434135437, 0.011999870650470257, -0.011184148490428925, 0.0010053261648863554, 0.007725758943706751, -0.00017264561029151082, -0.009876297786831856, -0.03101089969277382, -0.01653015799820423, -0.004004450980573893, 0.007078574970364571, 0.02974349819123745, -0.012235823087394238, -0.014548157341778278, -0.011426842771470547, -0.02155931666493416, 0.017527900636196136, -0.002431996166706085, -0.004075236618518829, -0.0024471646174788475, 0.04605792835354805, 0.011440325528383255, 0.025186244398355484, 0.02262447401881218, 0.009559446945786476, 0.010833590291440487, -0.009734726510941982, -0.015073994174599648, -0.003283110447227955, -0.015869490802288055, 0.016921164467930794, 0.0038190598133951426, 0.03128056228160858, 0.02050764299929142, -0.013590863905847073, -0.006087574642151594, 0.013078509829938412, 0.010584155097603798, -0.006343751680105925, -0.01158863864839077, -0.02952777035534382, -0.03227830305695534, -0.00463141081854701, 0.01724475808441639, 0.007294303271919489, -0.00845384132117033, -0.031631119549274445, 0.015653762966394424, 0.029932260513305664, -0.007017901632934809, 0.03397716209292412, 0.013874007388949394, 0.041500676423311234, 0.0025348039343953133, -0.012566156685352325, 0.0089796781539917, 0.01910541206598282, -0.027572736144065857, -0.004705566912889481, -0.028287334367632866, -0.012411101721227169, 0.014440293423831463, 0.0038493964821100235, 0.016975097358226776, 0.004213437438011169, 0.006647119298577309, -0.006738129537552595, 0.014925681054592133, -0.0359187126159668, -0.00018802465638145804, 0.018566090613603592, -0.02177504450082779, -0.0012471774825826287, -0.024094121530652046, -0.015545899048447609, -0.0019196422072127461, -0.020022256299853325, 0.019806526601314545, 0.007078574970364571, 0.013597605749964714, -0.021788528189063072, -0.003239290788769722, 0.03761757165193558, 0.00180840736720711, 0.02774801477789879, 0.02546938695013523, 0.01809418573975563, 0.01082684937864542, 0.023325590416789055, -0.03276368975639343, -0.03071427531540394, 0.0061010573990643024, -0.017811043187975883, 0.013759401626884937, 0.032386165112257004, -0.0005212022224441171, -0.011305496096611023, -0.0036437807139009237, -0.021842461079359055, -0.00044788842205889523, -0.03146932274103165, 0.0022533463779836893, 0.009067317470908165, 0.004105573520064354, -0.024943551048636436, -0.01750093512237072, 0.014076252467930317, 0.028233403339982033, -0.018458226695656776, 0.017608799040317535, 0.007820140570402145, -0.012802109122276306, 0.00022331219224724919, 0.03443558141589165, 0.006754983216524124, 0.025145795196294785, 0.012020094320178032, 0.003916811663657427, -0.0027050268836319447, -0.003559512086212635, -0.011696502566337585, -0.02483568713068962, -0.001365153817459941, 0.027478354051709175, -0.02987832948565483, 0.014103217981755733, 0.007820140570402145, 0.0222065020352602, 0.0014949276810511947, -0.00012619246263056993, -0.012566156685352325, 0.02618398703634739, -0.008993160910904408, -0.005153876729309559, 0.007145990151911974, 0.03033675067126751, -0.009357201866805553, -0.027774980291724205, -0.02495703287422657, -0.0031769319903105497, 0.002138740848749876, 0.002330873627215624, 0.023784011602401733, -0.03513669967651367, -0.024984000250697136, 0.00034486985532566905, 0.009411133825778961, -0.017473967745900154, 0.015465001575648785, 0.012707727961242199, 0.0050696078687906265, -0.025321073830127716, -0.006893184036016464, 0.012849299237132072, -0.0018353734631091356, -0.016206566244363785, 0.0034887262154370546, -0.02673679031431675, -0.0015825671143829823, 0.016476226970553398, -0.025240177288651466, 0.014521190896630287, 0.02258402481675148, 0.009431358426809311, -0.04050293192267418, 0.019348105415701866, -0.03529849648475647, -0.0021926728077232838, 0.021640215069055557, -0.0021707629784941673, -0.010638087056577206, -8.97330573934596e-06, 0.01758183166384697, 0.006930262316018343, -0.0017409924184903502, -0.010901005938649178, 0.005915666464716196, 0.019941357895731926, 0.014372878707945347, -0.015775110572576523, -0.007361717987805605, 0.0036269270349293947, -0.015869490802288055, 0.0012497055577114224, 0.03025585226714611, -0.01296390499919653, 0.007759466767311096, 0.004611186217516661, 0.007732500787824392, -0.017473967745900154, -0.03767150267958641, -0.02661544270813465, -0.018485194072127342, 0.009087542071938515, -0.005787577945739031, -0.0034297381062060595, 0.008777433075010777, -0.014386361464858055, -0.013287496753036976, 0.012316720560193062, -0.028530027717351913, 0.004712308757007122, 0.026669373735785484, 0.002177504589781165, 0.009013385511934757, 0.016260499134659767, -0.01915934309363365, -0.014265013858675957, -0.028880586847662926, -0.011514482088387012, -0.04576130211353302, -0.018620023503899574, -0.00297131622210145, 0.03564905375242233, 0.012734693475067616, -0.013031319715082645, -0.019011029973626137, -0.006020159460604191, -0.04454783350229263, -0.0020932357292622328, -0.05244887247681618, 0.021411003544926643, 0.030956968665122986, 0.012572897598147392, 0.012579639442265034, 0.01928069069981575, -0.0053999414667487144, 0.009114508517086506, -0.02974349819123745, -0.017217790707945824, -0.023716596886515617, -0.01975259557366371, 0.029635634273290634, -0.020264949649572372, -0.03416592255234718, -0.014709953218698502, -0.0012581325136125088, -0.01080662477761507, 0.022637957707047462, -0.002416827715933323, 0.0005936733796261251, -0.004843767732381821, 0.006771836895495653, 0.014359395019710064, 0.013739177025854588, 0.02106044627726078, 0.030228886753320694, -0.03796812891960144, -0.0003722572000697255, 0.02869182452559471, -0.018121153116226196, 0.0008999902638606727, 0.009829106740653515, 0.01239087712019682, -0.017554866150021553, -0.003990968223661184, -0.009047092869877815, -0.022570542991161346, -0.016624540090560913, 0.010981903411448002, 0.007928004488348961, 0.0126268295571208, 0.006374088581651449, 0.038291722536087036, -0.02335255593061447, -0.02631881646811962, -0.0036606346257030964, -0.0017595315584912896, 0.015869490802288055, 0.01728520542383194, 0.014629054814577103, -0.023325590416789055, -0.005713421385735273, 0.00661004101857543, 0.01324030663818121, 0.012781884521245956, -0.025051414966583252, -0.018148118630051613, -0.012957163155078888, -0.00875046756118536, -0.01082684937864542, 0.0044696144759655, -0.0035190631169825792, 0.004890958312898874, -0.013395360670983791, -0.007280820049345493, 0.0010735838441178203, -0.009107766672968864, 0.019766079261898994, -0.023878393694758415, -0.006852734833955765, 0.007550480309873819, -0.0072538540698587894, -0.039640020579099655, 0.02169414795935154, 0.020831234753131866, 0.016422294080257416, 0.010557189583778381, 0.19663608074188232, 0.018296431750059128, 0.016678471118211746, 0.0354333259165287, 0.01237065251916647, 0.0033016495872288942, 0.008231371641159058, 0.015343653969466686, -0.025658149272203445, -0.008076317608356476, -2.2054711735108867e-05, 0.016085218638181686, -0.011696502566337585, -0.0065358844585716724, 0.023757046088576317, -0.016071736812591553, -0.032682791352272034, -0.026965999975800514, 0.0020932357292622328, -0.0035055801272392273, -0.0029039012733846903, -0.008002161048352718, -0.006232516840100288, -0.0035965903662145138, 0.01694813184440136, -0.0006269594887271523, -0.006165101658552885, 0.006310044322162867, 0.019132377579808235, 0.026453645899891853, 0.009310011751949787, -0.00538982916623354, 0.019334621727466583, -0.0006256955093704164, -0.012572897598147392, -0.013375136069953442, 0.014898715540766716, 0.002452220767736435, -0.015518933534622192, 0.022044705227017403, -0.011211114935576916, -0.018107669427990913, 0.023837944492697716, -0.02186942659318447, 0.0016348137287423015, 0.0021202017087489367, -0.006970711052417755, 0.012424584478139877, -0.013887490145862103, 0.020278431475162506, 0.005949373822659254, -0.0031482805497944355, 0.012599864043295383, 0.030147988349199295, -0.0009707760182209313, -0.004456131719052792, -0.006229145918041468, 0.011669537052512169, -0.013766143471002579, -0.0163548793643713, -0.01902451366186142, -0.00032211729558184743, 0.005979710724204779, 0.00543364929035306, -0.017352622002363205, 0.0038729917723685503, -0.02203122153878212, 0.04241751879453659, 0.00421680836006999, 0.014588606543838978, -0.027721049264073372, -0.01847171038389206, -0.026049155741930008, 0.0028904182836413383, -0.006003305781632662, -0.01601780392229557, 0.021586284041404724, 0.010247080586850643, 0.008952711708843708, 0.016395328566432, -0.01427849754691124, 0.0012800423428416252, -0.032655827701091766, 0.009674052707850933, 0.0024808719754219055, -0.04352312535047531, 0.03928946331143379, -0.02300199866294861, -0.014939164742827415, -0.019091928377747536, 0.002261773217469454, 0.008999902755022049, -0.008130249567329884, -0.02033236436545849, -0.005072978790849447, -0.0010162811959162354, 0.006377459038048983, 0.02466040663421154, -0.021384038031101227, -0.021411003544926643, -0.011939196847379208, 0.04236358776688576, 0.02147842012345791, 0.03694342076778412, -0.016395328566432, 0.008736983872950077, 0.005207808688282967, 0.026170503348112106, -0.0030892924405634403, -0.013112218119204044, -0.004678600933402777, -0.03362660109996796, 0.0021370556205511093, -0.00873024296015501, 0.002383120357990265, 0.01716385968029499, 0.011170665733516216, -0.02863789163529873, 0.0018050366779789329, -0.013820075429975986, 0.02351435273885727, -0.006178584881126881, 0.007968452759087086, 0.01294368039816618, -0.015950389206409454, -0.03524456173181534, -0.019941357895731926, 0.040152374655008316, -0.029177213087677956, -0.0323052704334259, 0.010604379698634148, -0.020615506917238235, 0.010307753458619118, 0.0072875614278018475, -0.011467291973531246, 0.014049286022782326, 0.015465001575648785, -0.007624636869877577, -0.0022499756887555122, -0.017473967745900154, 0.019388554617762566, 0.007213405333459377, 0.03241313248872757, 0.018862716853618622, -0.009020127356052399, 0.004415682516992092, -0.005925778765231371, -0.0026763754431158304, -0.009316753596067429, -0.030579444020986557, -0.006643748376518488, 0.01589645817875862, 0.009876297786831856, -0.016287464648485184, 0.03359963744878769, -0.005821285303682089, -0.004995451774448156, -0.02029191516339779, 0.0055549959652125835, 0.0035359167959541082, -0.04584220051765442, 0.015923423692584038, 0.02279975265264511, 0.010860556736588478, -0.007159472908824682, -0.01653015799820423, -0.17042511701583862, 0.01449422538280487, -0.003899957751855254, -0.016934648156166077, 0.01694813184440136, 0.016880717128515244, 0.010617862455546856, -0.003738161874935031, -0.0036673760041594505, -0.006950486451387405, 0.003060641000047326, 0.014615572057664394, -0.001072741230018437, -0.0081572150811553, 0.006525772158056498, -0.00997741986066103, -0.0126268295571208, 0.018148118630051613, 0.05085787549614906, 0.01797283999621868, 0.01924024149775505, -0.035783883184194565, -0.007847106084227562, 0.00310951704159379, 0.032359201461076736, 0.0019280690466985106, -0.0012589751277118921, -0.0020595283713191748, 0.009761692024767399, -0.027640150859951973, -0.0030926631297916174, -0.0004605287394952029, 0.015047028660774231, 0.0005237302975729108, 0.032089538872241974, -0.004928036592900753, 0.001633128384128213, 0.0023241322487592697, -0.0006690938607789576, 0.021599765866994858, 0.0222065020352602, 0.007024643011391163, 0.019820010289549828, 0.01754138246178627, 0.020008772611618042, 0.020912133157253265, 0.008042609319090843, -0.017608799040317535, 0.011150441132485867, -0.0010862242197617888, 0.029015416279435158, -0.040152374655008316, 0.0035022092051804066, 0.010698760859668255, 0.0011662795441225171, -0.014993096701800823, 0.0054707275703549385, 0.019375070929527283, 0.001248862943612039, -0.015195340849459171, 0.009202147834002972, 0.007449357770383358, 0.0004567366268020123, -0.002342671388760209, -0.010098767466843128, -0.012384135276079178, 0.03672769293189049, 0.026251401752233505, 0.00849429052323103, 0.0033168180380016565, 0.006343751680105925, 0.011656053364276886, -0.021087411791086197, 0.0414467416703701, -0.005683084484189749, 0.005656118504703045, -0.028610926121473312, 0.008871814236044884, 0.018957098945975304, 0.0014047600561752915, -0.001237907912582159, 0.003576365765184164, -0.013213340193033218, -0.01084707397967577, -0.0059898230247199535, -0.0022415488492697477, -0.004574107937514782, 0.0009067317587323487, -0.011224597692489624, -0.0028567106928676367, 0.018148118630051613, -0.004601073917001486, -0.01029427070170641, 0.011150441132485867, 0.011757176369428635, -0.003781981533393264, 0.03470524400472641, 0.00794822908937931, -0.004139280878007412, -0.008096541278064251, 0.0063370103016495705, 0.007328010629862547, -0.018363846465945244, 0.010139215737581253, 0.020022256299853325, 0.03357267007231712, 0.014993096701800823, 0.0027977225836366415, 0.01239761896431446, -0.024121087044477463, -0.01605825312435627, 0.010631346143782139, 0.036889489740133286, -0.006434761919081211, -0.012552672997117043, 0.02804464101791382, 0.002666263375431299, -0.025914326310157776, -0.0013870636466890574, -0.01918630860745907, 0.05509153753519058, -0.010422359220683575, -0.021748078987002373, 0.02657499350607395, 0.013550415635108948, 0.008096541278064251, -0.11293361335992813, -0.024525577202439308, 0.016085218638181686, 0.016503192484378815, -0.009963937103748322, 0.0018421149579808116, -0.0025297480169683695, 0.05153202638030052, -0.02296154946088791, 0.02351435273885727, -0.012977387756109238, -0.024228950962424278, -0.00864260271191597, 0.010496515780687332, 0.015491967089474201, -0.0062224045395851135, 0.004513434134423733, -0.0013592549366876483, -0.02173459716141224, 0.03314121440052986, 0.0047156792134046555, -0.01767621375620365, 0.012033578008413315, -0.015667246654629707, -0.022435711696743965, -0.01292345579713583, -0.017150375992059708, 0.0179593563079834, 0.016584090888500214, 0.010745950974524021, 0.028583960607647896, -5.6881406635511667e-05, 0.012363911606371403, -0.010739210061728954, -0.006367346737533808, -0.00915495678782463, -0.02393232472240925, -0.01162908785045147, 0.021127860993146896, -0.03885800763964653, -6.098951052990742e-05, -0.013031319715082645, -0.009188665077090263, -0.029312042519450188, 0.013118959031999111, 0.009680794551968575, -0.006532513536512852, 0.04220179095864296, 0.027990708127617836, -0.01864698901772499, -0.007503289729356766, -0.006512288935482502, -0.011838073842227459, -0.032817620784044266, 0.025995224714279175, -0.0027572736144065857, 0.013651537708938122, 0.001173021038994193, -0.020440228283405304, 0.0017359362682327628, 0.009640345349907875, 0.0015488596400246024, -0.012384135276079178, 0.030606411397457123, -0.003731420263648033, 0.021033480763435364, 0.004088719841092825, -0.006714534014463425, -0.016476226970553398, 0.0017013860633596778, -0.0034651311580091715, -0.0021202017087489367, -0.03384232893586159, 0.01771666295826435, -0.007172956131398678, 0.0038089475128799677, -0.030390681698918343, -0.02155931666493416, 0.007793174125254154, -0.0015412754146382213, -0.012653796002268791, -0.002678060904145241, -0.014035803265869617, -0.012835816480219364, 0.01084707397967577, 0.012909973040223122, 0.014035803265869617, -0.00851451512426138, 0.028530027717351913, -0.028152504935860634, 0.023972773924469948, 0.00821788888424635, 0.007274078670889139, -0.006498806178569794, -0.021842461079359055, 0.012087509967386723, -0.02424243465065956, 0.014993096701800823, 0.024687374010682106, -0.002679746365174651, -0.024350298568606377, -0.0155324162915349, -0.0356760174036026, 0.017635764554142952, -0.004472985398024321, 0.0007474638405255973, 0.006262853741645813, -0.019226757809519768, -0.004708937834948301, -0.003711195895448327, -0.006984194274991751, 0.00550780538469553, -0.036835554987192154, 0.022314365953207016, -0.007220146711915731, -0.015384103171527386, -0.03198167681694031, -0.009040351957082748, 0.0162739809602499, 0.00868305191397667, 0.006937003694474697, 0.015047028660774231, -0.03128056228160858, -0.009815623983740807, -0.01290323119610548, 0.02092561684548855, -0.01991439051926136, 0.002383120357990265, -0.02058854140341282, 0.03012102283537388, -0.006340380758047104, -0.01593690551817417, 0.005083091091364622, 0.011453808285295963, -0.008224629797041416, 0.023285141214728355, -0.02101999707520008, -0.03651196509599686, 0.02118179388344288, -0.011959421448409557, 0.010132474824786186, -0.0038864747621119022, -0.012316720560193062, -0.016071736812591553, 0.021154826506972313, -0.013698727823793888, -0.0177975594997406, -0.014035803265869617, -0.021464936435222626, -0.012795367278158665, 0.018997548148036003, 0.024566026404500008, 0.025914326310157776, 0.012734693475067616, 0.0006509760860353708, -0.0476219579577446, -0.004563995636999607, -0.0059898230247199535, 0.029042381793260574, 0.023231210187077522, 0.002290424657985568, -0.0047325328923761845, 0.037347909063100815, 0.0023932326585054398, -0.0015252643497660756, -0.020871683955192566, 0.000565864669624716, -0.011696502566337585, -0.04708263650536537, 0.00419658375903964, 0.006158360280096531, -0.03395019471645355, 0.005710050463676453, -0.014291980303823948, 0.03144235536456108, 0.023325590416789055, 0.02279975265264511, -0.00361681473441422, -0.00792126264423132, -0.010031351819634438, -0.018485194072127342, 0.02766711637377739, 0.027855878695845604, -0.013536931946873665, -0.015491967089474201, 0.006937003694474697, 0.015707695856690407, -0.0027286221738904715, -0.026885103434324265, 0.019860459491610527, -0.004880846012383699, 0.0032308639492839575, -0.01135268621146679, -0.015006579458713531, -0.02987832948565483, 0.017352622002363205, 0.01364479586482048, 0.025105345994234085, -0.018660472705960274, 0.010732468217611313, 0.004526917356997728, 0.0447365939617157, -0.012539190240204334, 0.0033707499969750643, 0.012795367278158665, 0.008817882277071476, -0.02559073455631733, -0.0041696177795529366, -0.024862652644515038, -0.01825598254799843, 0.002720195334404707, 0.03241313248872757, -0.004365121480077505, 0.0007373515982180834, 0.005777465645223856, 0.0035224338062107563, -0.004183101002126932, -5.132493606652133e-05, -0.009202147834002972, -0.007799915503710508, -0.012795367278158665, 0.005753870587795973, -0.006522401235997677, 0.003768498543649912, 0.026588477194309235, -0.023662665858864784, 0.032790657132864, 0.018067220225930214, -0.0011553246295079589, -0.02487613633275032, -0.002499411115422845, -0.012026836164295673, 0.011811108328402042, 0.01657060720026493, 0.013698727823793888, -0.030228886753320694, -0.011750434525310993, -0.011521223932504654, -0.019348105415701866, 0.0022128974087536335, -0.011184148490428925, 0.07038126140832901, 0.025604218244552612, -0.02058854140341282, -0.002667948603630066, -0.0043347845785319805, 0.00926282163709402, 0.028368232771754265, -0.007031384855508804, 0.016772853210568428, -0.004125798121094704, 0.029635634273290634, 0.00645161559805274, -0.027006449177861214, -0.014305463060736656, -0.01048977393656969, -0.004877475555986166, 0.0033235596492886543, 0.017811043187975883, -0.021087411791086197, 0.009047092869877815, 0.0251727607101202, 0.004011192359030247, 0.012518965639173985, -0.009161698631942272, -0.01975259557366371, -0.012168407440185547, 0.04325346648693085, 0.012047060765326023, 0.00251120887696743, -0.024094121530652046, 0.017527900636196136, -0.003714566584676504, -0.013584122993052006, -0.005956115201115608, 0.004547141958028078, 0.00276570045389235, -0.002330873627215624, -0.014453776180744171, -0.018417777493596077, 0.004793206695467234, -0.0005650219973176718, 0.01345603447407484, -0.029312042519450188, -0.011163923889398575, 0.023069413378834724, 0.002733678324148059, 0.02118179388344288, -0.02296154946088791, -0.016300946474075317], "af780a43-faa8-451f-b32b-f26539732d05": [-0.0046609207056462765, -0.015100845135748386, -0.0035731480456888676, -0.03779926151037216, -0.015114315785467625, 0.027803875505924225, -0.009180397726595402, -0.02419368177652359, -0.014238708652555943, -0.04111309349536896, 0.013834582641720772, 0.015747446566820145, -0.004270265810191631, 0.011261646635830402, 0.013019595295190811, -0.006068626884371042, 0.023264192044734955, 0.009806793183088303, 0.006779215298593044, -0.024624750018119812, -0.02011200785636902, -0.009503697976469994, -0.022765768691897392, 0.008176817558705807, -0.01577438786625862, 0.0071799736469984055, 0.026847442612051964, -0.003980641718953848, -0.0057318550534546375, 1.9456461814115755e-05, 0.017256183549761772, -0.00042812107130885124, -0.007085677236318588, -0.018576329573988914, -0.015531912446022034, -0.013807641342282295, 0.016582639887928963, -0.0187649205327034, 0.000712693203240633, -0.0079276068136096, 0.04685168340802193, -0.00915345549583435, -0.021405210718512535, 0.004064834676682949, 0.019398052245378494, 0.015249024145305157, -0.005199755541980267, -0.016407519578933716, 0.0017276389990001917, -0.006691654212772846, 0.00469123013317585, 0.023843439295887947, -0.015033490024507046, 0.00922754593193531, -0.010345627553761005, 0.00893118605017662, -0.0003626610559877008, -0.0064424434676766396, 0.01690594106912613, 0.0022041709162294865, 0.030282514169812202, 0.016394048929214478, -0.001289835781790316, 0.006361618172377348, -0.01889963075518608, -0.013073478825390339, 0.004260162357240915, -0.016138100996613503, -0.01666346564888954, 0.010796901769936085, 0.020206304267048836, 0.03424295037984848, 0.006553578190505505, 0.0026301871985197067, -0.0035125291906297207, -0.01726965419948101, 0.005374876782298088, 0.005711648613214493, -0.007146296091377735, 0.00016133471217472106, 0.0031454479321837425, -0.00960472971200943, -0.0100088557228446, -0.0033441432751715183, 0.007287740241736174, 0.02680703066289425, -0.009220810607075691, 0.00684993714094162, -0.017013708129525185, 0.006550210528075695, -0.0003001478035002947, -0.0005560943391174078, 0.009463286027312279, 0.010116622783243656, 0.004442019388079643, 0.01846856251358986, 0.031899020075798035, 0.0050886208191514015, -0.011073054745793343, -0.016205456107854843, -0.018657153472304344, 0.020138949155807495, -0.02708991803228855, -0.006173025816679001, -0.03779926151037216, 0.0007573154289275408, 0.026820501312613487, -0.00856747291982174, 0.024449627846479416, 0.012999389320611954, -0.008459705859422684, 0.0458548404276371, -0.0020694623235613108, -0.014346475712954998, -0.013235129415988922, -0.01281079649925232, 0.019411522895097733, -0.03820338472723961, -0.01347760483622551, -0.0073146820068359375, 0.015989921987056732, 0.02748057432472706, 0.004431915935128927, -0.01786237210035324, 0.012063163332641125, 1.3319585377757903e-05, 0.0005102091818116605, -0.009981914423406124, 0.028854602947831154, -0.011261646635830402, 0.019478878006339073, 0.024314919486641884, 0.0006411292124539614, -0.010924874804913998, -0.037395134568214417, 0.007186708971858025, -0.02202487178146839, 0.011025906540453434, -0.006179761607199907, -0.004896661266684532, 0.01832038164138794, 0.008291319943964481, -0.003241427941247821, -0.021337857469916344, 0.005277213174849749, 0.01023786049336195, -0.004866351839154959, 0.022967832162976265, 0.012150724418461323, -0.013531488366425037, 0.019155576825141907, -0.026389433071017265, -0.016353635117411613, 0.0026453419122844934, 0.010359098203480244, 0.0038223592564463615, -0.0004925286630168557, 0.016367105767130852, -0.006058523431420326, -0.012628939934074879, 0.0006962755578570068, 0.018791863694787025, 0.006055155768990517, 0.005950756836682558, -0.003423284739255905, 0.028315767645835876, -0.007786162663251162, -0.028181059285998344, -0.0027547928038984537, 0.0019616952631622553, 0.013363102450966835, 0.03701794892549515, -0.015087373554706573, 0.03348858281970024, 0.0204757209867239, -0.021108852699398994, 0.012500966899096966, -0.011685979552567005, -0.018966984003782272, -0.036586880683898926, 0.028692951425909996, 0.006267322227358818, 0.013093684799969196, 0.011463710106909275, -0.0248672254383564, -0.034350715577602386, -0.014898781664669514, 0.012083370238542557, -0.012709765695035458, -0.004391503520309925, 0.0011366045800969005, 0.014696718193590641, -0.039577413350343704, -0.01481795683503151, -0.623755156993866, -0.012642410583794117, 0.003180809086188674, -0.02866601012647152, -0.0005880876560695469, 0.0004929496208205819, 0.007092413026839495, 0.0005502008134499192, -0.007914136163890362, 0.018940042704343796, 0.004553154110908508, 0.013390044681727886, -0.0024382274132221937, -0.010581367649137974, -0.0200177114456892, -0.01712147518992424, 0.022792711853981018, -0.007691866718232632, -0.024530453607439995, 0.015208611264824867, -0.004573360085487366, 0.033461641520261765, -0.01743130572140217, 0.008681975305080414, 0.017970139160752296, -0.0030797775834798813, 0.013753757812082767, -0.0025510459672659636, -0.008021903224289417, 0.01492572296410799, -0.018791863694787025, 0.0226984154433012, 0.028396593406796455, -0.007988225668668747, 0.04407668486237526, -0.011888042092323303, -0.009395931847393513, 0.02299477346241474, 0.021849749609827995, 0.03583251312375069, -0.021162735298275948, -0.01898045465350151, 0.00937572494149208, 0.03356940671801567, -0.013491075485944748, -0.003022526390850544, -0.01778154820203781, 0.01086425594985485, -0.009025482460856438, -0.0075638932175934315, 0.0003689755394589156, -0.019007395952939987, 0.005610617343336344, -0.013753757812082767, 0.008250907994806767, 0.004010951612144709, 0.03626358136534691, -4.1885985410772264e-05, 0.024907637387514114, 0.0011584947351366282, 0.006199967581778765, 0.00978658627718687, 0.00034098137984983623, -0.05477255582809448, -0.02634902112185955, 0.008715652860701084, 0.006866775918751955, -0.03990071639418602, 0.018199143931269646, -0.010170506313443184, 0.019465407356619835, 0.011221234686672688, -0.004603669513016939, -0.01109999604523182, -0.0044554900377988815, 0.009921295568346977, 0.04712110012769699, -0.013901937752962112, -0.0005354670574888587, 0.01832038164138794, 0.012150724418461323, -0.010615045204758644, -0.02733239345252514, -0.02537911757826805, 0.024974992498755455, 0.006654609460383654, -0.018104849383234978, -0.010210919193923473, -0.005209858994930983, -0.004361194092780352, 0.009719232097268105, 0.012197872623801231, -0.00037949965917505324, -0.04208299517631531, 0.018508974462747574, 0.021095382049679756, -0.0044891671277582645, -0.014804485253989697, -0.020125478506088257, -0.018778391182422638, -0.009443079121410847, -0.024180211126804352, -0.006146084051579237, 0.01674429140985012, 0.029878389090299606, 0.003339091781526804, 0.0001829091488616541, -0.008554002270102501, 0.040304843336343765, -0.02485375478863716, 0.031144650653004646, -0.02308906987309456, -0.01023112516850233, -0.015572325326502323, -0.0006958546000532806, -0.021472565829753876, 0.027938583865761757, -0.00374153396114707, -0.01958664506673813, -0.022577177733182907, -0.0010810373350977898, 0.008015166968107224, -0.0032346926163882017, 0.003254898823797703, -0.0209876149892807, 0.03505120426416397, 0.008580943569540977, 0.005058311391621828, 0.023412371054291725, -0.0008697130251675844, 0.010157035663723946, -0.017229242250323296, 0.0002357402117922902, -0.008681975305080414, 0.017161887139081955, -0.007267534267157316, 0.009806793183088303, 0.012332580983638763, 0.008042109198868275, -0.04070896655321121, 0.006732067093253136, -0.012595263309776783, 0.010662193410098553, -0.004024422261863947, -0.009577788412570953, -0.017970139160752296, -0.02636249177157879, 0.019680939614772797, -0.014575480483472347, -0.02039489708840847, -0.03224926069378853, -0.0192768145352602, -0.007206915412098169, 0.02896237000823021, -0.008991805836558342, 0.004586831200867891, 0.01030521560460329, -0.0439150333404541, -0.03006698004901409, -0.04658226668834686, -0.034727901220321655, 0.016191985458135605, -0.011443503201007843, 0.01303306594491005, 0.001459063496440649, -0.01592256687581539, -0.012857944704592228, 0.00267901923507452, -0.007671660277992487, -0.01733700931072235, -0.002972010523080826, -0.019317226484417915, 0.02241552621126175, 0.035482268780469894, -0.03734125196933746, -0.0018185673980042338, -0.02345278300344944, 0.01179374661296606, 0.004852880723774433, 0.001936437445692718, 0.025567710399627686, 0.025594651699066162, -0.010197448544204235, -0.017835430800914764, 0.01943846419453621, 0.021701570600271225, -0.009665348567068577, 0.02554076910018921, -0.02294089086353779, 0.0031656543724238873, 0.0011399723589420319, 0.013955820351839066, -0.005775635130703449, 0.009308370761573315, -0.010352362878620625, -0.007011587731540203, -0.03149489313364029, -0.011409826576709747, -0.01258179172873497, 0.03251867741346359, 0.0031185063999146223, 0.004017686937004328, -0.006028214003890753, -0.0010010539554059505, 0.014306063763797283, -0.028477417305111885, -0.001712484285235405, -0.006489591207355261, 0.0180240236222744, -0.0048158359713852406, -0.005785738583654165, -0.002603245433419943, 0.006455914117395878, -0.032195378094911575, -0.004334252327680588, 0.03976600617170334, -0.015720505267381668, 0.004010951612144709, 0.002547678304836154, -0.006769111845642328, 0.02241552621126175, -0.007691866718232632, 0.03022863157093525, 0.013423721306025982, -0.0026116648223251104, 0.012036222033202648, -0.01351128239184618, 0.017390891909599304, 0.011153879575431347, -0.02539258822798729, -0.0035260000731796026, 0.017027178779244423, 0.012965711764991283, -0.0011551270727068186, 0.020785551518201828, 0.01347086951136589, 0.031441010534763336, -0.02672620490193367, 0.012359523214399815, -0.02174198254942894, -0.00046727078733965755, 0.016878999769687653, 0.029070137068629265, -0.032114554196596146, -0.00441170996055007, 0.017363950610160828, 0.02039489708840847, 0.006698390003293753, -0.02075861021876335, 0.026780089363455772, -0.010776695795357227, 0.010076210834085941, -0.018940042704343796, -0.005223329644650221, 0.02866601012647152, -0.013544959016144276, -0.012891622260212898, 0.0238973218947649, 0.015882154926657677, 0.014481185004115105, -0.011308794841170311, 0.014642835594713688, 0.0014868471771478653, -0.014023175463080406, 0.028423534706234932, -0.010069474577903748, -0.001257842406630516, -0.027857758104801178, -0.020058125257492065, -0.01201601605862379, -0.01912863552570343, -0.027507515624165535, -0.03141406923532486, -0.005829518660902977, -0.0311985332518816, -0.005560101475566626, -0.012642410583794117, 0.02888154424726963, 0.00033445641747675836, 0.018576329573988914, -0.01853591576218605, -0.027520986273884773, 0.012312375009059906, -0.013632520101964474, -0.01086425594985485, -0.015585795976221561, -0.01433300506323576, -0.01303306594491005, 0.003035997273400426, 0.0021385005675256252, -0.011867836117744446, 0.006880246568471193, 0.002087984699755907, 0.019182518124580383, -0.010668928734958172, 0.010628515854477882, 0.04431916028261185, -0.005162710789591074, -0.0034401232842355967, 0.007988225668668747, -0.0008848677389323711, -0.0022530029527843, -0.02180933766067028, -0.02524440921843052, 0.06002619490027428, -0.031387124210596085, -0.014844898134469986, -0.02233470231294632, 0.004654185380786657, -0.030794408172369003, -0.00236245384439826, -0.028773777186870575, -0.03491649404168129, -0.0018859216943383217, -0.016407519578933716, 0.004415077622979879, -0.011672507971525192, 0.009813528507947922, 0.04286430776119232, 0.015733975917100906, -0.01031195092946291, -0.030336398631334305, -0.01046012993901968, 0.01801055297255516, 0.06595337390899658, -0.005091988481581211, -0.0226984154433012, 0.02963591367006302, -0.035536155104637146, -0.020152421668171883, -0.009759644977748394, -0.036371346563100815, 0.0231564249843359, -0.012413405813276768, -0.0032296408899128437, 0.004044628702104092, 0.027345865964889526, -0.022132638841867447, -0.008533796295523643, 0.019909944385290146, 0.007287740241736174, -0.019182518124580383, -0.012945505790412426, 0.007745749782770872, -0.0026133486535400152, 0.0072810049168765545, 0.034647077322006226, 0.02352013811469078, 0.057439789175987244, 0.027642223984003067, 0.03453930839896202, 0.014481185004115105, 0.0019280181732028723, -0.02180933766067028, -0.02329113334417343, -0.002325408859178424, -0.007402242626994848, 0.010985493659973145, -0.0041389246471226215, 0.03176430985331535, -0.008210495114326477, -0.008937922306358814, -0.00960472971200943, 0.0005741958157159388, -0.013747022487223148, 0.004442019388079643, 0.010837314650416374, -0.0053715091198682785, 0.005364773795008659, -0.021715041249990463, 0.010392775759100914, 0.03893081471323967, -0.019155576825141907, -0.023048657923936844, 0.0017865740228444338, 0.01592256687581539, -0.02598530799150467, 0.03146795183420181, 0.011908248998224735, -0.002418020972982049, 0.007671660277992487, 0.00011155563697684556, -0.014454242773354053, -0.032491736114025116, -0.055877167731523514, 0.004260162357240915, -0.008729123510420322, 0.007442655507475138, -0.0016813329420983791, -0.002581355394795537, -0.014117470942437649, 0.02248288132250309, -0.03445848450064659, 0.015895625576376915, 0.0035664127208292484, -0.040089309215545654, -0.055877167731523514, 0.008089257404208183, 0.033380813896656036, 0.01198907382786274, 0.016636524349451065, 0.007658189162611961, -0.014696718193590641, 0.012696294113993645, 0.005923815071582794, -0.029312612488865852, 0.005001060198992491, -0.033461641520261765, -0.029959212988615036, -0.02567547746002674, -0.0028878175653517246, -0.0024887430481612682, -0.004468961153179407, 0.006984645966440439, -0.00513913668692112, -0.013942349702119827, -0.0060820975340902805, 0.0017697354778647423, 0.015343320555984974, 0.04213688150048256, 0.01884574629366398, 0.015909096226096153, 0.026712734252214432, -0.04286430776119232, 0.0072810049168765545, -0.0011004016268998384, -0.0005720909684896469, -0.028423534706234932, 0.01562620885670185, 0.008762801066040993, 0.010406246408820152, -0.015087373554706573, 0.02158033289015293, -0.013315954245626926, 0.001816883566789329, -0.01735047996044159, 0.006567048840224743, -0.02485375478863716, 0.029312612488865852, 0.0019819017034024, -0.007328153122216463, 0.03647911548614502, -0.004448754712939262, -0.011827423237264156, 0.00983373448252678, -0.03922717273235321, 0.04375338554382324, 0.0028810822404921055, -0.019344167783856392, 0.010756488889455795, 0.017512129619717598, -0.002655445132404566, -0.02092025987803936, -0.0007838362362235785, 0.006519900634884834, 0.01570703461766243, 0.0008764484664425254, -0.0014329637633636594, -0.03499731793999672, -0.005344567354768515, 0.007233856711536646, 0.004930338356643915, -0.017027178779244423, 0.016717348247766495, -0.01801055297255516, -0.00793434213846922, 0.009618201293051243, -0.0042433240450918674, -0.00748306792229414, -0.028046350926160812, -0.021984459832310677, -0.009294900111854076, 0.018185673281550407, 0.02888154424726963, -0.010244595818221569, -0.015262494795024395, -0.00919386837631464, -0.013336161151528358, 0.03424295037984848, -0.01135594304651022, 0.019169047474861145, 0.0024550659582018852, 0.05159343034029007, 0.01258179172873497, 0.034647077322006226, 0.0029736943542957306, 0.016946353018283844, 0.0014489603927358985, -0.02391079254448414, -0.027520986273884773, -0.015989921987056732, -0.018185673281550407, 0.0019179150694981217, 0.012979182414710522, 0.021230090409517288, 0.014952665194869041, -0.01087099127471447, 0.012898357585072517, 0.009166927076876163, 0.015491499565541744, -0.004950544331222773, -0.006499694660305977, -0.03459319472312927, -0.05040799453854561, -0.00716650253161788, 0.019384581595659256, 0.009618201293051243, -0.008035373874008656, -0.019155576825141907, 0.0013925511157140136, 0.028854602947831154, -0.016245868057012558, 0.033623289316892624, 0.009746174328029156, 0.03790702670812607, -0.006516532972455025, -0.002146919723600149, -0.00942287314683199, 0.010695870034396648, -0.027588341385126114, -0.006425604689866304, -0.017808489501476288, -0.004162498749792576, 0.013848054222762585, 0.014642835594713688, 0.022065283730626106, 0.0025325233582407236, 0.006873511243611574, -0.002705961000174284, 0.011746598407626152, -0.026537612080574036, -0.006193232256919146, 0.02725156955420971, -0.02620084211230278, 0.007792897988110781, -0.05256333202123642, -0.004037892911583185, -0.006826363038271666, -0.01570703461766243, 0.018589800223708153, -0.008890774101018906, 0.01458895206451416, -0.020906789228320122, -0.025635065510869026, 0.036074988543987274, -0.01091140415519476, 0.04518129676580429, 0.018037494271993637, 0.030848290771245956, 0.006782582961022854, 0.009544110856950283, -0.02725156955420971, -0.019680939614772797, 0.0022934156004339457, -0.01764683984220028, 0.004546418320387602, 0.0331922210752964, 0.011369413696229458, -0.010621780529618263, -0.007765956223011017, -0.01779501885175705, -0.0063313087448477745, -0.03154877573251724, 0.00959799438714981, 0.004714804235845804, 0.0060484204441308975, -0.03804173693060875, -0.013201451860368252, 0.0037516371812671423, 0.03162960335612297, -0.017323538661003113, 0.01607074774801731, 0.009274693205952644, -0.011470445431768894, 0.0005531475762836635, 0.017821960151195526, 0.004735010676085949, 0.008419292978942394, 0.019303755834698677, 0.00026815448654815555, 0.0012654197635129094, -0.011396355926990509, -0.028692951425909996, -0.008217230439186096, 0.010709341615438461, 0.02373567223548889, -0.03429683297872543, 0.012635675258934498, 0.02106844075024128, 0.025217467918992043, -0.0044992705807089806, -0.006863407790660858, -0.028100233525037766, 0.02352013811469078, -0.011295324191451073, -0.01454853918403387, 0.006728699430823326, 0.035697802901268005, 0.00012513174442574382, -0.03348858281970024, -0.020906789228320122, -0.01410400029271841, 0.012197872623801231, 0.0043780324049293995, 0.019222930073738098, -0.027803875505924225, -0.023116011172533035, -0.0113492077216506, 0.0004685336898546666, -0.029204845428466797, 0.01437341794371605, 0.01454853918403387, 0.005964227486401796, -0.028531301766633987, -0.0214456245303154, 0.008143140934407711, -0.004081673454493284, -0.00558030791580677, 0.0008410874288529158, -0.010150300338864326, 1.3655041584570426e-05, 0.03381188213825226, -0.010264802724123001, 0.008661769330501556, 0.02180933766067028, 0.013571901246905327, -0.040250957012176514, 0.026914797723293304, -0.029447320848703384, -0.00014765336527489126, 0.0158552136272192, 0.006796053610742092, -0.004583463538438082, -0.011874571442604065, 0.01899392530322075, 0.010487072169780731, -0.002692490117624402, 0.004091776441782713, 0.015814801678061485, 0.02598530799150467, 0.019856061786413193, -0.014346475712954998, -0.00662766769528389, -0.010439923964440823, -0.013161039911210537, -0.0029686428606510162, 0.011746598407626152, -0.01418482605367899, -0.0029417010955512524, 0.0032969953026622534, -0.0005295735318213701, -0.006796053610742092, -0.048953138291835785, -0.02128397300839424, -0.022954361513257027, -0.003288575913757086, -0.006482855882495642, 0.00396717106923461, -0.0017933094641193748, -0.01332942582666874, -0.012925298884510994, 0.014171354472637177, -0.02024671621620655, 0.009308370761573315, 0.03906552121043205, 0.0035158968530595303, 0.027224626392126083, 0.011174086481332779, -0.0256081223487854, -0.010372569784522057, -0.0197348240762949, -0.01027827337384224, -0.039577413350343704, -0.011052848771214485, 0.0004908448318019509, 0.03370411694049835, -0.0025055818259716034, -0.030498048290610313, -0.025338705629110336, -0.006826363038271666, -0.03270727023482323, -0.010743018239736557, -0.021081911399960518, 0.007866987958550453, 0.04647450149059296, 0.018279969692230225, 0.005475908517837524, 0.025810185819864273, 0.005176181439310312, -0.006338044069707394, -0.03828421235084534, 0.010675664059817791, -0.024907637387514114, -0.009887618012726307, 0.02761528268456459, -0.018333854153752327, -0.03691018372774124, -0.008183552883565426, 0.0021216620225459337, 0.0013672932982444763, 0.01477754395455122, -0.0029147593304514885, 0.008574208244681358, 0.009315106086432934, -0.0002929914044216275, 0.002119978191331029, 0.005243536084890366, 0.018953513354063034, 0.0027716313488781452, -0.040170133113861084, 0.009941501542925835, 0.04073590785264969, -0.008661769330501556, -0.009335312992334366, 0.005384980235248804, 0.006513165310025215, -0.02672620490193367, -0.0006272373721003532, -0.0063212052918970585, -0.018643682822585106, -0.024139797315001488, 0.024153269827365875, 0.005607249215245247, 0.019263343885540962, 0.004250059369951487, 0.040466491132974625, -0.009301635436713696, -0.026402903720736504, -0.018050964921712875, 0.003933493979275227, 0.007307946681976318, 0.015168199315667152, 0.01860327087342739, -0.013578636571764946, 0.014952665194869041, 0.003667444223538041, 0.007678395602852106, 0.007146296091377735, -0.02017936296761036, -0.0307405237108469, -0.0013681352138519287, -0.0007872039568610489, 4.635873483493924e-05, 0.001929702004417777, -0.008035373874008656, -0.0015533596742898226, -0.014319534413516521, -0.022509822621941566, 0.005209858994930983, -0.007866987958550453, 0.015087373554706573, -0.03575168922543526, -0.02151297777891159, 0.011456974782049656, -0.000434435554780066, -0.030255572870373726, 0.010965287685394287, 0.01728312484920025, 0.02158033289015293, 0.00796801969408989, 0.19979993999004364, 0.025877540931105614, 0.009220810607075691, 0.03491649404168129, 0.01743130572140217, 0.005307522602379322, 0.017889315262436867, 0.023870380595326424, -0.01935764029622078, -8.340362546732649e-05, -0.025500355288386345, -0.0030999837908893824, 0.004085041116923094, -0.008756064809858799, 0.01853591576218605, -0.019842591136693954, -0.026308607310056686, -0.011504122987389565, -0.006550210528075695, -0.009928030893206596, 0.00047989972517825663, -0.004007583484053612, -0.011706185527145863, -0.010668928734958172, -0.00035571513581089675, 0.012676088139414787, 0.002345615066587925, 0.002357402117922902, 0.014440772123634815, 0.01697329618036747, -0.011659037321805954, 0.009463286027312279, 0.014993078075349331, -0.002350666793063283, -0.012938770465552807, -0.011174086481332779, 0.021539920940995216, -0.01281079649925232, -0.002497162437066436, 0.016138100996613503, 0.004492534790188074, -0.027359336614608765, 0.01942499354481697, -0.0062201740220189095, 0.002093036426231265, 0.014481185004115105, -0.012150724418461323, 0.021405210718512535, -0.005475908517837524, 0.005960859823971987, -0.0015508338110521436, 0.008466441184282303, 0.019546231254935265, 0.02858518436551094, -0.0030258940532803535, 0.0019044441869482398, -0.0020829332061111927, 0.0307405237108469, -0.014615893363952637, -0.006260586436837912, -0.023870380595326424, 0.007981490343809128, -0.004115350544452667, 0.009180397726595402, -0.005506217945367098, -0.004553154110908508, -0.015168199315667152, 0.04318760707974434, -0.0004533789469860494, -0.011901513673365116, -0.02294089086353779, -0.02300824597477913, -0.011281853541731834, -0.005001060198992491, -0.031009942293167114, -0.018374266102910042, 0.011807217262685299, 0.003990745171904564, 0.0063313087448477745, 0.030120864510536194, -0.006971174851059914, -0.011995809152722359, -0.03766455128788948, 0.010157035663723946, -0.012372993864119053, -0.03876916319131851, 0.03944270685315132, -0.02189016342163086, -0.02009853720664978, -0.019303755834698677, 0.0013058324111625552, 0.005573572125285864, -0.007395507302135229, -0.028046350926160812, 0.005944021046161652, -0.01912863552570343, -0.008271113969385624, 0.03893081471323967, -0.005236800294369459, -0.026483729481697083, -0.02054307609796524, 0.03849974647164345, 0.014993078075349331, 0.021836278960108757, -0.023264192044734955, 0.021620744839310646, 0.0045060059055686, 0.02396467700600624, 0.0006221857620403171, -0.023547079414129257, 0.004832674283534288, -0.029447320848703384, 0.0055533661507070065, -0.00013744496391154826, 0.011935190297663212, 0.015989921987056732, 0.00942287314683199, -0.026860913261771202, 0.00013523490633815527, -0.015383733436465263, 0.01889963075518608, -0.02075861021876335, 0.017660310491919518, 0.014710189774632454, -0.02455739490687847, -0.034647077322006226, -0.0016325010219588876, 0.028773777186870575, -0.03849974647164345, -0.021405210718512535, -0.002061042934656143, -0.02909707836806774, 0.007590834982693195, 0.0043106782250106335, 0.010386040434241295, 0.016703877598047256, 0.021688099950551987, -0.00770533736795187, -0.011524328961968422, -0.011625360697507858, 0.006203335244208574, 0.011753333732485771, 0.020906789228320122, 0.02241552621126175, 0.002108191139996052, -0.004532947670668364, -0.005967595148831606, -0.020529605448246002, -0.004408341832458973, -0.03224926069378853, 0.0024079179856926203, 0.00859441515058279, 0.009530640207231045, 0.0013950769789516926, 0.03505120426416397, -0.018886158242821693, -0.00266049662604928, -0.019169047474861145, 0.0016998553182929754, 0.021418683230876923, -0.023331545293331146, 0.01049380749464035, 0.03817644342780113, 0.011019171215593815, 0.0034013944678008556, -0.023883851245045662, -0.1698407232761383, 0.005243536084890366, 0.0029265463817864656, -0.010857520624995232, 0.03534756228327751, 0.015989921987056732, 0.015545383095741272, -0.0011904881102964282, -0.001373186707496643, -0.004209646489471197, 0.006806156598031521, 0.02167462930083275, -0.008055579848587513, 0.0050044278614223, 0.006233644671738148, -0.0025594651233404875, -0.0030764099210500717, 0.01674429140985012, 0.05011163279414177, 0.023924265056848526, 0.02299477346241474, -0.0428912490606308, -0.006610829383134842, -0.004118718206882477, 0.02598530799150467, -0.0014447506982833147, 0.012729971669614315, 0.005913711618632078, 0.0022883638739585876, -0.041059210896492004, 0.005344567354768515, 0.004213014617562294, 0.0008840258233249187, -0.010062739253044128, 0.025433002039790154, 0.0020122111309319735, 0.004650817718356848, -0.007678395602852106, -0.009968443773686886, 0.01943846419453621, 0.028100233525037766, -0.0015281017404049635, 0.011174086481332779, 0.01995035819709301, 0.01477754395455122, 0.01764683984220028, 0.0005127349868416786, -0.012521172873675823, 0.010958552360534668, -0.003845933359116316, 0.04192134737968445, -0.02917790412902832, 0.01068913470953703, 0.002015578793361783, -0.0015281017404049635, -0.012703030370175838, 0.009443079121410847, 0.014831427484750748, 0.001479269820265472, -0.005277213174849749, 0.0011997492983937263, -0.01005600392818451, 0.0045228442177176476, 0.008648298680782318, -0.0007682605064474046, -0.015962980687618256, 0.03828421235084534, 0.020341012626886368, -0.009631671942770481, 0.009052424691617489, 0.01682511530816555, 0.014629364013671875, -0.02753445692360401, 0.030120864510536194, -0.011046113446354866, 0.010931611061096191, -0.03893081471323967, 0.01884574629366398, 0.02442268654704094, 0.011140408925712109, 0.011106732301414013, -0.005176181439310312, -0.020206304267048836, -0.009274693205952644, -0.0038156236987560987, 7.177447696449235e-05, 0.001810148125514388, -5.196282654651441e-05, -0.024611279368400574, -0.00469123013317585, 0.013598842546343803, -0.012332580983638763, -0.024611279368400574, 0.012952241115272045, 0.021782396361231804, -0.006102303974330425, 0.01675776205956936, -0.008439499884843826, 0.012265226803719997, -0.016932882368564606, 0.012453818693757057, 0.008998541161417961, -0.01410400029271841, 0.02128397300839424, 0.027440160512924194, 0.031521834433078766, 0.013720080256462097, -0.002838985761627555, 0.03090217523276806, -0.01563967950642109, -0.004394871182739735, 0.01929028518497944, 0.030632756650447845, 0.008095992729067802, 0.005560101475566626, 0.012534644454717636, 0.013464134186506271, -0.03424295037984848, 0.0018741347594186664, -0.017768077552318573, 0.040385667234659195, -0.00472827535122633, -0.008843625895678997, 0.019990770146250725, 0.009894353337585926, -0.002101455582305789, -0.10819802433252335, -0.029797563329339027, 0.01452159695327282, 0.014386888593435287, -0.032195378094911575, 0.007557157892733812, -0.011739863082766533, 0.03596722334623337, -0.033623289316892624, 0.014791014604270458, -0.012662617489695549, -0.037933968007564545, 0.003792049828916788, 0.0020004240795969963, 0.011995809152722359, -0.007954548113048077, 0.010406246408820152, 0.0036573410034179688, -0.00788719393312931, 0.03709877282381058, 0.005186284892261028, -0.002311937976628542, 0.01179374661296606, -0.017552543431520462, -0.00964514259248972, -0.010648722760379314, -0.031602658331394196, 0.005105459596961737, 0.020300600677728653, 0.008102728053927422, 0.015383733436465263, -0.013787435367703438, 0.009975179098546505, -0.002838985761627555, -0.0009640090866014361, -0.020341012626886368, -0.028261885046958923, 0.0003439281426835805, 0.009746174328029156, -0.03402741625905037, -2.1837542590219527e-05, 0.00041528165456838906, -0.01682511530816555, -0.0278308168053627, 0.0007627879967913032, 0.00789392925798893, -0.021997930482029915, 0.02479987032711506, 0.024880696088075638, -0.031144650653004646, -0.009624936617910862, -0.006513165310025215, -0.0077794273383915424, -0.021108852699398994, 0.01138962060213089, 0.0012586843222379684, 0.006917291320860386, -0.0038829781115055084, -0.012750177644193172, 0.016434460878372192, 0.007914136163890362, -0.0014270702376961708, -0.0042062788270413876, 0.03146795183420181, 0.002535891253501177, 0.024368802085518837, -0.001205642824061215, -0.004785526543855667, -0.013208187185227871, -9.056002454599366e-05, -0.009611465036869049, 0.005081885494291782, -0.03556309640407562, 0.01757948473095894, -0.004428548272699118, -0.006327941082417965, -0.02738627791404724, -0.033757999539375305, 0.013161039911210537, 0.0053715091198682785, -0.009692290797829628, -0.006314469967037439, -0.013187981210649014, -0.05218615010380745, 0.03731430694460869, 0.005176181439310312, 0.004068202804774046, -0.0023877115454524755, 0.03715265914797783, -0.029878389090299606, 0.010338892228901386, 0.0017933094641193748, 0.01683858595788479, -0.011847630143165588, -0.0024197050370275974, -4.094539235666161e-06, -0.010251332074403763, 0.026591496542096138, 0.025203997269272804, 0.001038098824210465, -0.028154117986559868, -0.008392351679503918, -0.03424295037984848, 0.01763336732983589, -0.0093824602663517, 0.02129744552075863, 0.0035899868234992027, -0.02494805119931698, -0.015491499565541744, -0.004926970694214106, -0.012669352814555168, 0.014791014604270458, -0.04122086241841316, 0.012359523214399815, -0.011430032551288605, -0.01090466883033514, -0.01867062598466873, -0.009550846181809902, 0.007792897988110781, -0.0012224813690409064, 0.011874571442604065, 0.0076312473975121975, -0.02493457868695259, -0.014575480483472347, 0.007099148351699114, 0.02092025987803936, -0.015060432255268097, 0.003909919876605272, -0.007105883676558733, 0.02352013811469078, -0.01154453493654728, -0.012763649225234985, 0.014696718193590641, 3.404551898711361e-05, -0.002601561602205038, 0.02590448223054409, -0.024961521849036217, -0.03408129885792732, 0.019478878006339073, -0.004664288368076086, 0.033542465418577194, 0.01840120740234852, -0.004684494808316231, -0.01792972721159458, 0.04647450149059296, -0.01201601605862379, -0.01644793152809143, -0.007617776747792959, -0.0010423085186630487, -0.004862983711063862, 0.010561161674559116, 0.011685979552567005, 0.02039489708840847, 0.00967882014811039, 0.0014464346459135413, -0.02665885165333748, -0.0033542464952915907, -0.0074965390376746655, 0.023398900404572487, 0.0023742406629025936, -0.015087373554706573, -0.02397814765572548, 0.03879610449075699, 0.029204845428466797, -0.005597146227955818, -0.008062315173447132, -0.006179761607199907, -0.018064435571432114, -0.03052498959004879, 0.0007009061519056559, -0.0069644395262002945, -0.015801329165697098, 9.37698787311092e-05, -0.010446659289300442, 0.022307759150862694, 0.03165654465556145, 0.01068239938467741, -0.00504147307947278, -0.0028945531230419874, -0.008264378644526005, -0.013181245885789394, 0.03995459899306297, 0.018966984003782272, -0.0035798836033791304, -0.01651528663933277, 0.014130942523479462, 0.022509822621941566, 0.01176680438220501, -0.009779850952327251, 0.012521172873675823, 0.009988649748265743, -0.010635251179337502, 0.004519476555287838, -0.010183976963162422, -0.010338892228901386, 0.00481920363381505, 0.014023175463080406, 0.03281503915786743, -0.02113579399883747, 0.01899392530322075, 0.013780699111521244, 0.04170581325888634, 0.004495902918279171, 0.005219961982220411, 0.013767228461802006, -0.007745749782770872, -0.033461641520261765, -0.001737742219120264, -0.020435309037566185, -0.01912863552570343, -0.005017898976802826, 0.026335550472140312, 0.001798361074179411, -0.01154453493654728, 0.014238708652555943, -0.005755429156124592, -0.00500779552385211, 0.010103152133524418, -0.01764683984220028, -0.0260661318898201, -0.011403091251850128, -0.004516108892858028, 0.005250271409749985, 0.014171354472637177, 0.02761528268456459, -0.0138884661719203, 0.029824504628777504, 0.020799022167921066, 0.0016501814825460315, -0.011807217262685299, 0.018818804994225502, -0.0036640765611082315, 0.01369313895702362, 0.014885311014950275, 0.015168199315667152, -0.018360795453190804, -0.006839834153652191, -0.013208187185227871, -0.02248288132250309, 0.01667693629860878, -0.003701121313497424, 0.06439075618982315, 0.026308607310056686, -0.02442268654704094, -0.009038953110575676, 0.006260586436837912, 0.007355094887316227, 0.026780089363455772, -0.010412981733679771, 0.025177055969834328, -0.013773963786661625, 0.025567710399627686, 0.009281429462134838, -0.04205605387687683, -0.016111159697175026, -0.007126090116798878, 0.002151971450075507, 0.00418944051489234, 0.0016426041256636381, -0.008358674123883247, 0.012096840888261795, 0.03580557182431221, 0.0006756482762284577, 0.008042109198868275, -0.007395507302135229, -0.02529829367995262, -0.0023355120792984962, 0.05496114864945412, 0.012117046862840652, -0.0058328863233327866, -0.050138577818870544, 0.014508126303553581, -0.020812492817640305, -0.009139984846115112, -0.015289437025785446, 0.003509161528199911, -0.007267534267157316, -0.006600725930184126, -0.016124630346894264, -0.004051364026963711, 0.009476756677031517, -0.0093824602663517, 0.007173237856477499, -0.024732517078518867, -0.027588341385126114, 0.02575630322098732, -0.010143565014004707, 0.021607274189591408, -0.021607274189591408, -0.019775236025452614], "76f9cfff-5165-4690-bbda-334c127814aa": [-0.018019739538431168, -0.023386748507618904, 0.012874117121100426, -0.031584858894348145, -0.008546964265406132, 0.015108135528862476, 0.005041635595262051, -0.034697726368904114, -0.016624316573143005, -0.049134984612464905, 0.01466535683721304, 0.008573799394071102, 0.00499467458575964, -0.011666540056467056, 0.0052261268720030785, -0.0028814137913286686, 0.016651151701807976, -0.008949490264058113, 0.008030389435589314, -0.027358338236808777, -0.029545394703745842, -0.01249171793460846, -0.01184096746146679, 0.01318272016942501, -0.028552496805787086, 0.006829521153122187, 0.018314924091100693, -0.007379639893770218, -0.0066383215598762035, -0.0008155340328812599, 0.013679169118404388, -0.012847281992435455, -0.01874428428709507, -0.02185715176165104, -0.023668518289923668, -0.008640887215733528, 0.009016578085720539, -0.01756354235112667, 0.01005643606185913, -0.01690608449280262, 0.0390181690454483, -0.003981651272624731, -0.015510661527514458, 0.02012629061937332, -0.009868591092526913, 0.027666941285133362, -0.0014264507917687297, -0.013685877434909344, -0.006963696330785751, -0.004521706607192755, 0.00608149403706193, 0.026767965406179428, -0.005454224534332752, 0.011505529284477234, -0.01278019417077303, 9.506265087111387e-06, -0.002049527131021023, -0.002849547192454338, 0.011941598728299141, -0.008439624682068825, 0.02073007822036743, 0.012994875200092793, -0.010365039110183716, -7.966656266944483e-05, -0.029894249513745308, -0.019777433946728706, -0.005162393674254417, -0.013176011852920055, -0.004733032546937466, -0.004729678388684988, 0.020193377509713173, 0.0348050631582737, 0.004052093252539635, -0.0024604389909654856, -0.006148581858724356, -0.02573481574654579, 0.018636945635080338, 0.0044412012211978436, -0.00911720935255289, -0.003528809640556574, 0.009492900222539902, -0.012116027064621449, 0.0024705021642148495, -0.009405686520040035, 0.018999218940734863, 0.05764169618487358, -0.015161805786192417, 0.00456195930019021, -0.02758643589913845, 0.012498426251113415, -0.00019769887148868293, -0.004729678388684988, 0.005330112762749195, 0.007191794458776712, 0.006819458212703466, 0.008231652900576591, 0.037273891270160675, 0.004676008131355047, -0.013739547692239285, -0.011398188769817352, -0.021588800475001335, 0.009747833013534546, -0.03308762237429619, -0.017791640013456345, -0.023386748507618904, 0.0043808226473629475, 0.01869061589241028, -0.0169463362544775, 0.021521713584661484, 0.016127867624163628, -0.015537495724856853, 0.04395581781864166, -0.000751800776924938, -0.018878459930419922, -0.01186109334230423, -0.01944199576973915, 0.04331177845597267, -0.046022117137908936, -0.008258488029241562, -0.01693291962146759, 0.018368594348430634, 0.02823047712445259, 0.01742936670780182, -0.027747444808483124, 0.0122166583314538, -0.009600240737199783, 0.008553673513233662, -0.0017224750481545925, 0.01690608449280262, -0.008520129136741161, 0.010069853626191616, 0.024567492306232452, 0.013444362208247185, -0.003958170302212238, -0.03523442521691322, -0.0038977914955466986, -0.034053683280944824, 0.013370565138757229, 0.0003016847185790539, -0.007896214723587036, 0.014142073690891266, 0.020367806777358055, -0.01882478967308998, -0.027157073840498924, -0.012760068289935589, 0.016396217048168182, -0.00815114751458168, 0.043419115245342255, 0.014289665967226028, -0.00780229177325964, 0.012001978233456612, -0.03131650760769844, -0.02188398689031601, 0.02122652716934681, 0.0037166548427194357, 0.0008285322692245245, -0.002522495109587908, 0.015443573705852032, -0.016664568334817886, -0.012471591122448444, 0.02429914101958275, 0.026016585528850555, -0.004276836756616831, 0.006963696330785751, 0.01097553689032793, 0.01348461490124464, -0.00974112469702959, -0.04017207399010658, -0.019670095294713974, 0.008828733116388321, 0.015470408834517002, 0.03687136247754097, -0.03118233196437359, 0.023614848032593727, 0.019603006541728973, -0.005544792860746384, 0.03445620834827423, 9.559987665852532e-05, -0.022085249423980713, -0.03069930151104927, 0.03123600222170353, -0.006735598668456078, 0.006826166994869709, 0.013820053078234196, -0.02498343586921692, -0.03059196099638939, -0.001866713399067521, -0.009164171293377876, 0.012438047677278519, -0.013625498861074448, 0.0056487787514925, 0.009788085706532001, -0.03437570482492447, -0.008325575850903988, -0.6251494288444519, 0.004088991321623325, -0.004407657776027918, -0.040279414504766464, -0.00011792748409789056, -0.00419633137062192, 0.02305131033062935, 0.013095506466925144, 0.00046793624642305076, 0.0012243493692949414, 0.00847987737506628, 0.007688242942094803, -0.007601028773933649, -0.026043420657515526, -0.023547759279608727, -0.010076562874019146, 0.009164171293377876, -0.0037703251000493765, -0.01533623319119215, 0.009425812400877476, -0.01125059649348259, 0.03928652033209801, -0.021642470732331276, 0.004481453914195299, 0.015886351466178894, -0.010807817801833153, 0.03754223883152008, -0.007990137673914433, -0.021615635603666306, 0.005715866573154926, -0.02260853350162506, 0.0220047440379858, 0.007688242942094803, 0.003572416491806507, 0.03684452921152115, -0.008063933812081814, -0.019616425037384033, 0.02197790890932083, 0.03069930151104927, 0.04688083752989769, -0.03072613663971424, -0.01804657280445099, 0.013363856822252274, 0.023427002131938934, -0.0061318096704781055, -0.007124706637114286, -0.0065376898273825645, 0.009083665907382965, -0.006490728817880154, -0.007715078070759773, -0.004468036349862814, -0.03190688043832779, -0.0029837226029485464, -0.0024168321397155523, 0.008734810166060925, -0.00735951354727149, 0.038535136729478836, -0.00877506285905838, 0.007366222329437733, 0.01437017135322094, 0.012424630112946033, 0.006611486431211233, 0.005195937119424343, -0.05554855987429619, -0.04250672459602356, 0.012632601894438267, -0.003176599508151412, -0.03193371370434761, 0.01740253157913685, -0.008989742957055569, 0.028525661677122116, -0.0014893454499542713, -0.002014306141063571, -0.011404898017644882, -0.003891082713380456, 0.014209160581231117, 0.03260459005832672, -0.010539467446506023, -0.003626086749136448, 0.016074197366833687, 0.016047362238168716, -0.016382800415158272, -0.021575383841991425, -0.027143657207489014, 0.023373331874608994, 0.012317289598286152, -0.008493294939398766, -0.01216969732195139, -0.0024855968076735735, -0.01563141867518425, 0.009794794954359531, 0.016610898077487946, -0.003312451997771859, -0.05613893270492554, 0.00622908677905798, 0.01823441870510578, 0.0034784937743097544, 0.0011555844685062766, -0.026043420657515526, -0.019146811217069626, -0.044143661856651306, -0.03314129263162613, -0.00258958269841969, 0.012505135498940945, 0.011324392631649971, 0.005524666514247656, -0.006634966935962439, -0.02441989816725254, 0.026419110596179962, -0.010693768970668316, 0.01875770278275013, -0.01686583086848259, -0.01687924936413765, -0.0011136546963825822, 0.0006008536438457668, -0.022782960906624794, 0.039689045399427414, -0.017885563895106316, -0.006661802064627409, -0.017737969756126404, -0.011069459840655327, 0.01933465711772442, 0.0019371554953977466, -0.006712117698043585, -0.0077620395459234715, 0.017778223380446434, 0.02126678079366684, -0.002242404269054532, 0.020434893667697906, -0.007393057458102703, 0.022112084552645683, -0.017026841640472412, 0.00578630855306983, -0.011458568274974823, 0.024889511987566948, -0.005155684892088175, 0.0008905883296392858, 0.006809394806623459, 0.001585784018971026, -0.03365115821361542, 0.0040688649751245975, 0.0025426214560866356, 0.027385173365473747, -0.019173646345734596, -0.02256827987730503, -0.021119186654686928, -0.02310498058795929, 0.023279409855604172, -0.013055253773927689, -0.00218034815043211, -0.03695186972618103, -0.025292038917541504, -0.011800714768469334, 0.030860312283039093, -0.008996452204883099, 0.0033845710568130016, 0.006178771145641804, -0.044680364429950714, -0.009298346005380154, -0.02699606493115425, -0.009633784182369709, 0.020797166973352432, -0.010559593327343464, 0.01748303696513176, -0.006829521153122187, -0.019549336284399033, -0.020958177745342255, -0.004944358486682177, -0.004961130674928427, -0.01002960093319416, -0.006997240241616964, -0.012592349201440811, 0.031531188637018204, 0.04645147919654846, -0.030404115095734596, 0.012941204942762852, -0.012444755993783474, 0.001979085151106119, 0.0065678795799613, -0.009861881844699383, 0.022823212668299675, 0.02255486324429512, -0.013820053078234196, -0.0009526443900540471, 0.01412865612655878, 0.025855574756860733, 0.007493688724935055, 0.02132045105099678, -0.02874034270644188, 0.0007438341272063553, 0.005897003225982189, 0.026110507547855377, 0.0031933714635670185, 0.016651151701807976, -0.00973441544920206, -0.011787297204136848, -0.03614681586623192, -0.01879795454442501, -0.013498032465577126, 0.022125501185655594, 0.006336427293717861, 0.014839785173535347, -0.008251778781414032, 0.010002766735851765, 0.0187174491584301, -0.03571745753288269, 0.00850671250373125, -0.011351227760314941, 0.006688637193292379, -0.0012662791414186358, 0.003151441691443324, 0.00817798264324665, -0.009050121530890465, -0.030404115095734596, 0.0007572516915388405, 0.02868667244911194, -0.018489351496100426, 0.007976720109581947, 0.005088597070425749, -0.0011304266517981887, 0.007433309685438871, -0.0022742708679288626, 0.03622732311487198, 0.014651939272880554, -0.012008686549961567, 0.011398188769817352, -0.017966069281101227, 0.02315865084528923, 0.007325969636440277, -0.029786908999085426, 0.004659236408770084, 0.021642470732331276, -0.0006088202935643494, -0.00847987737506628, 0.02244752272963524, 0.031531188637018204, 0.03437570482492447, -0.031128661707043648, 0.016758490353822708, -0.005719220731407404, -0.0021149376407265663, 0.013585246168076992, 0.03373166173696518, -0.019106557592749596, -0.009271510876715183, 0.01698658987879753, 0.012350833974778652, 0.006007697898894548, -0.015550913289189339, 0.010888323187828064, 0.008781771175563335, 0.0007320938166230917, -0.004310380667448044, -0.012592349201440811, 0.032148394733667374, -0.018382010981440544, 0.009580113925039768, 0.012404503300786018, 0.021548548713326454, 0.023413583636283875, -0.003455013269558549, 0.015966856852173805, -0.0010583074763417244, 0.006323009729385376, 0.026486197486519814, -0.016396217048168182, -0.01377980038523674, -0.017737969756126404, -0.003626086749136448, -0.009640493430197239, -0.007097871508449316, -0.01941516064107418, -0.01873086765408516, -0.013229681178927422, -0.03314129263162613, -0.0011815809411928058, 0.004558604676276445, 0.032175227999687195, 0.0009559987811371684, 0.010438836179673672, -0.0007698305998928845, -0.025520136579871178, 0.011988560669124126, 0.0019774080719798803, -0.017295192927122116, -0.008312158286571503, -0.021454624831676483, 0.008117604069411755, 0.014732444658875465, 0.018274672329425812, -0.011431733146309853, 0.006323009729385376, -0.014383588917553425, 0.02058248594403267, -0.0021283552050590515, 0.029545394703745842, 0.05420680716633797, -0.009801503270864487, -0.010754147544503212, -0.005722575355321169, 0.0022155691403895617, 0.015054465271532536, -0.013699294999241829, -0.019522501155734062, 0.05549488961696625, -0.04178217798471451, -0.021146021783351898, -0.013632207177579403, 0.013330313377082348, -0.025265203788876534, 0.005581691395491362, -0.03630782663822174, -0.02056906931102276, -0.0014398683561012149, -0.015752175822854042, -0.009969222359359264, -0.001363556133583188, -0.00907024834305048, 0.043499622493982315, 0.018985800445079803, -0.000998767209239304, -0.01946883089840412, -0.014598269015550613, 0.015456991270184517, 0.06901975721120834, 0.006111683323979378, -0.005618589464575052, 0.022715872153639793, -0.031611692160367966, -0.013571828603744507, -0.005437452811747789, -0.03931335359811783, 0.034161023795604706, -0.012471591122448444, -0.014289665967226028, -0.006279402412474155, 0.03118233196437359, -0.006705408915877342, -0.012807029299438, 0.02741200663149357, 0.01216969732195139, -0.017724553123116493, -0.0009450970683246851, 0.004873916506767273, -0.011814132332801819, -0.008560381829738617, 0.03306078538298607, 0.015886351466178894, 0.05458249896764755, 0.0300820954144001, 0.033382806926965714, 0.00998934917151928, 0.00048554674140177667, -0.007882797159254551, -0.023292826488614082, 0.0044780997559428215, 0.000613013282418251, 0.01995186321437359, -0.00998263992369175, 0.027103403583168983, -0.010371748358011246, -0.018932130187749863, -0.013585246168076992, 0.00911720935255289, 0.007607737556099892, 0.0187845379114151, 0.010848070494830608, -0.013793217949569225, 0.004186268430203199, -0.005873522255569696, 0.014437259174883366, 0.03579796105623245, -0.022165754809975624, -0.00157068925909698, 0.019093140959739685, 0.005269733723253012, -0.007976720109581947, 0.02884768322110176, -0.005558210425078869, 0.011934890411794186, 0.00264996150508523, 0.004327152390033007, -0.01315588504076004, -0.029035529121756554, -0.040306251496076584, 0.01820758357644081, -0.01404815074056387, 0.002624803688377142, -0.011398188769817352, 0.0006113360868766904, -0.009486191906034946, 0.01822100207209587, -0.034134186804294586, 0.009264802560210228, 0.01412865612655878, -0.02933071367442608, -0.05463616922497749, 0.0052261268720030785, 0.029116032645106316, 0.01003631018102169, 0.011371353641152382, 0.007809000555425882, -0.008063933812081814, 0.03418785706162453, 0.010412001051008701, -0.03426836431026459, -0.0038877283222973347, -0.02700948156416416, -0.035341765731573105, -0.017778223380446434, -0.024835841730237007, -0.019629841670393944, -0.00639345170930028, 0.001784531050361693, -0.00406551081687212, -0.014142073690891266, 0.009352016262710094, 0.006665156688541174, 0.015752175822854042, 0.03628099337220192, 0.021400954574346542, 0.007574194110929966, 0.024057624861598015, -0.05146963149309158, 0.017241522669792175, 0.0006863903836347163, -0.003958170302212238, -0.006755725014954805, 0.014920289628207684, -0.005749410483986139, -0.00912391860038042, -0.02129361592233181, 0.027264414355158806, -0.02941121906042099, 0.00360596040263772, -0.009533152915537357, -0.004115826450288296, -0.03327546641230583, 0.01622178964316845, -0.019267568364739418, -0.004957776051014662, 0.02129361592233181, 0.016449887305498123, -0.01006314530968666, 0.005967445205897093, -0.02503710612654686, 0.028955023735761642, 0.01062668114900589, -0.009479482658207417, 0.013471197336912155, 0.030833477154374123, -0.007607737556099892, -0.031101826578378677, 0.005484414286911488, 0.009553278796374798, 0.008915946818888187, -0.0011639704462140799, -0.0060714310966432095, -0.017415950074791908, -0.013518158346414566, 0.008862276561558247, 0.00639345170930028, -0.015027630142867565, 0.013793217949569225, -0.018328342586755753, 0.00939226895570755, 0.019790852442383766, -0.0020193378441035748, -0.010754147544503212, -0.02694239467382431, -0.030243106186389923, -0.027304667979478836, 0.007252173498272896, 0.020340971648693085, -0.0038877283222973347, -0.01807340793311596, -0.013357148505747318, -0.019589589908719063, 0.019213898107409477, -0.00273214397020638, 0.009533152915537357, -0.006557816173881292, 0.051576972007751465, 0.01938832551240921, 0.02621784806251526, 0.027318084612488747, 0.01003631018102169, 0.013222972862422466, -0.02370877005159855, -0.015872934833168983, -0.011210343800485134, -0.01815391331911087, 0.0060043432749807835, 0.012129444628953934, 0.031048158183693886, 0.00971428956836462, -0.01823441870510578, 0.0030960943549871445, 0.010962119325995445, 0.024607744067907333, 0.007138124201446772, -0.005685676820576191, -0.0361199826002121, -0.029277043417096138, 0.0005153169040568173, 0.02070324495434761, 0.01437017135322094, -0.004733032546937466, -0.010445544496178627, 0.009942387230694294, 0.022273095324635506, -0.017778223380446434, 0.03252408653497696, 0.010271117091178894, 0.0374348983168602, 0.009506317786872387, 0.0029149577021598816, -0.0006239149952307343, 0.017026841640472412, -0.030377281829714775, 0.0047867028042674065, -0.03510025143623352, -0.017778223380446434, 0.018650362268090248, 0.013833470642566681, 0.02307814545929432, 0.006249213125556707, -0.0015329524176195264, -0.0005861782119609416, 0.01934807375073433, -0.03434886783361435, 0.009627075865864754, 0.01752329058945179, -0.021682724356651306, -0.007030784152448177, -0.04553908482193947, -0.005836624186486006, -0.0073528047651052475, -0.026150759309530258, 0.011458568274974823, -8.454090129816905e-05, 0.017737969756126404, -0.020206796005368233, -0.01752329058945179, 0.03708604350686073, -0.00941239483654499, 0.03448304533958435, 0.02943805418908596, 0.026123924180865288, 0.003528809640556574, -0.0007375446730293334, -0.017362279817461967, -0.019267568364739418, 0.008526838384568691, -0.01626204326748848, -0.00334935006685555, 0.027801115065813065, 0.001028956612572074, -0.0055649192072451115, -0.00935872457921505, -0.029786908999085426, -0.0017895626369863749, -0.03807894140481949, 0.004484808538109064, 0.0065410444512963295, 0.00966732855886221, -0.02566772885620594, -0.012619184330105782, 0.00780229177325964, 0.02750593051314354, -0.02747909538447857, 0.01536306831985712, 0.008211526088416576, -0.019066305831074715, 0.008546964265406132, 0.028337817639112473, -0.009291637688875198, 0.01616811938583851, 0.005571627989411354, -0.002591259777545929, 0.007446727249771357, -0.0024956599809229374, -0.015228892676532269, -0.014598269015550613, 0.004696134477853775, 0.030833477154374123, -0.03182637318968773, 0.01065351627767086, 0.01877111941576004, 0.022917136549949646, 0.0006457184790633619, 0.00562194362282753, -0.032202064990997314, 0.02761327102780342, -0.007701660506427288, -0.009606949053704739, 0.01945541426539421, 0.02753276564180851, 0.009217840619385242, -0.03064563125371933, -0.02637885883450508, -0.007923049852252007, -0.0018449099734425545, 0.006661802064627409, 0.023963702842593193, -0.03072613663971424, -0.009539861232042313, -0.025385960936546326, 0.009298346005380154, -0.014088403433561325, 0.015993691980838776, -0.01186109334230423, -0.0020562359131872654, -0.02491634711623192, -0.007869379594922066, 0.014088403433561325, -0.012136152945458889, -0.009519735351204872, -0.004572022240608931, -0.01496054232120514, -0.016543811187148094, 0.013041836209595203, -0.025546971708536148, 0.003122929483652115, 0.02823047712445259, 0.013981062918901443, -0.04647831246256828, 0.018382010981440544, -0.025439631193876266, -0.008587216958403587, 0.02000553347170353, 0.012417920865118504, -0.025936080142855644, 0.004910815041512251, 0.024111295118927956, 0.0010465671075507998, -0.004501580260694027, -0.0022793023381382227, 0.0006033694371581078, 0.02070324495434761, 0.01564483717083931, -0.01750987209379673, 0.0016285523306578398, -0.0004813537816517055, -0.019696930423378944, 0.007138124201446772, 0.021561965346336365, -0.01506788283586502, 0.01380663551390171, 0.003186662681400776, 0.0005815659533254802, -0.009144044481217861, -0.03936702385544777, -0.02189740352332592, -0.004877271130681038, 0.004501580260694027, 0.003294002963230014, -0.0005484414286911488, 0.024889511987566948, -0.027801115065813065, -0.00785596203058958, 0.010700477287173271, -0.034697726368904114, 0.0002782040392048657, 0.0238429456949234, -0.005370364990085363, 0.02255486324429512, 0.020515399053692818, -0.01744278520345688, -0.020475145429372787, -0.01805999130010605, -0.020461728796362877, -0.04835676774382591, -0.010103398002684116, 0.003166536334902048, 0.042801909148693085, 0.006400160491466522, -0.023494089022278786, -0.011176800355315208, 0.0058131436817348, -0.022715872153639793, -0.0027338210493326187, -0.037193384021520615, 0.021414373070001602, 0.030404115095734596, 0.018516186624765396, 0.007701660506427288, 0.020542234182357788, 0.01191476359963417, 0.0043137348257005215, -0.027344919741153717, 0.00753394141793251, -0.024030791595578194, -0.014866619370877743, 0.02941121906042099, -0.019133392721414566, -0.043392281979322433, -0.011163382790982723, 0.0008838796056807041, -0.01618153788149357, 0.012592349201440811, -0.015389903448522091, 0.010485797189176083, -0.0070106578059494495, -0.0030977714341133833, 0.023520924150943756, 0.009996057488024235, 0.02193765714764595, 0.01216969732195139, -0.035449106246232986, -0.0032721993047744036, 0.03147751837968826, -0.01006314530968666, -0.004300317261368036, 0.020756913349032402, -0.006031178403645754, -0.022152336314320564, 0.009298346005380154, -0.014088403433561325, -0.010814527049660683, -0.01685241423547268, 0.0016428084345534444, 0.002012629061937332, 0.013927392661571503, 0.0205556508153677, 0.036629848182201385, -0.004011840559542179, -0.03233623877167702, -0.007513815071433783, -0.00642028683796525, -0.007527232635766268, 0.018435681238770485, 0.015872934833168983, -0.0232525747269392, 0.001006314530968666, 0.0018264608224853873, -0.00485714478418231, 0.016570646315813065, -0.01823441870510578, -0.015000795014202595, -0.003211820498108864, 0.0006813587970100343, -0.005799726117402315, -0.010988954454660416, -0.007158250547945499, -0.005377073772251606, -0.011733626946806908, -0.006390097085386515, -0.001294791349209845, -0.00912391860038042, 0.02259511500597, -0.006722181104123592, -0.008728100918233395, -0.0009794795187190175, 0.0037837426643818617, -0.03378533199429512, 0.006148581858724356, 0.01752329058945179, 0.01404815074056387, -0.0013191106263548136, 0.1995454579591751, 0.025493301451206207, 0.0011840967927128077, 0.022206006571650505, 0.024030791595578194, 0.0013132405001670122, 0.01572534069418907, 0.010747439227998257, -0.019079722464084625, 6.195123569341376e-05, 0.004934295546263456, 0.012739941477775574, -0.005964090581983328, 0.00038701179437339306, 0.012411212548613548, -0.02884768322110176, -0.025506718084216118, -0.015161805786192417, -0.009405686520040035, 0.001172356423921883, -0.009439229965209961, -0.007258882280439138, -0.013290060684084892, -0.012525261379778385, 0.006158644799143076, -0.01001618430018425, -3.754024874069728e-06, 0.004333861172199249, 0.019146811217069626, 0.025922661647200584, -0.012417920865118504, -0.01469219196587801, 0.0026365439407527447, -0.009224549867212772, -0.011659830808639526, -0.01995186321437359, 0.012666145339608192, -0.012122735381126404, -0.008761645294725895, 0.020233631134033203, -0.004340569954365492, -0.01404815074056387, 0.02823047712445259, -0.005450870376080275, 0.0025107546243816614, -0.0015421770513057709, -0.020475145429372787, 0.020139707252383232, -0.005417326465249062, 0.014383588917553425, 0.01312904991209507, -0.007983428426086903, 0.005957381799817085, 0.01999211497604847, -0.001361040398478508, 0.009325181134045124, -0.0011799037456512451, 0.008184690959751606, -0.004894042853266001, -0.01224349346011877, -0.011606160551309586, 0.00783583614975214, -0.01006314530968666, -0.0008612375240772963, -0.030162600800395012, 0.010398583486676216, -0.019093140959739685, 0.029196538031101227, 0.01380663551390171, 0.01698658987879753, -0.012149570509791374, -0.009868591092526913, -0.019817687571048737, 0.005548147484660149, -0.020354388281702995, -0.019884774461388588, 0.01869061589241028, 0.005836624186486006, -0.005843332968652248, 0.0056286524049937725, -0.012807029299438, -0.0024587619118392467, -0.04121864214539528, 0.003342641284689307, 0.010271117091178894, -0.026767965406179428, 0.0440094880759716, -0.018905295059084892, -0.01623520813882351, -0.019589589908719063, -0.0027438842225819826, 0.007473562378436327, -0.00703749293461442, -0.013021710328757763, 0.002346389926970005, -0.01991160959005356, 0.007869379594922066, 0.033543817698955536, -0.006651739124208689, -0.03182637318968773, -0.013149176724255085, 0.05023521929979324, 0.010110106319189072, 0.025506718084216118, -0.017389114946126938, 0.015752175822854042, 0.005296568851917982, 0.02189740352332592, -0.013766382820904255, -0.01248500868678093, 0.004810183309018612, -0.04586110636591911, 0.002992108464241028, -0.022232841700315475, 0.012773485854268074, 0.01628887839615345, 0.01249171793460846, -0.03260459005832672, 0.0006847131880931556, -0.006641675718128681, 0.024715084582567215, -0.006956987548619509, 0.02887451834976673, -0.0017241522436961532, -0.008305449038743973, -0.03716655075550079, -0.015497243963181973, 0.041621167212724686, -0.029679570347070694, -0.018650362268090248, 0.006044595967978239, -0.01818074844777584, 0.013256516307592392, -0.008245070464909077, -0.011559199541807175, 0.011109712533652782, 0.012310581281781197, -0.0009409040794707835, -0.009593531489372253, -0.0175367072224617, -0.003327546641230583, 0.013169302605092525, 0.024862676858901978, 0.014853202737867832, 0.0005572466761805117, 0.007963302545249462, 0.0010583074763417244, -0.017187852412462234, -0.0055984631180763245, -0.0424262210726738, -0.008439624682068825, 0.027747444808483124, 0.0072857169434428215, -0.0017098961398005486, 0.01744278520345688, -0.011176800355315208, -0.017764804884791374, -0.025520136579871178, 0.014947124756872654, 0.018408846110105515, -0.04060143604874611, 0.0017275066347792745, 0.03255091980099678, 0.009573405608534813, -0.0005492800264619291, -0.011780588887631893, -0.1690608412027359, 0.011706791818141937, -0.0031061575282365084, -0.012947913259267807, 0.020153125748038292, 0.007513815071433783, 0.002921666484326124, 0.004451264627277851, -0.015805846080183983, -0.0044412012211978436, 0.0052596707828342915, 0.01281373854726553, -0.006598068866878748, 0.016127867624163628, 0.015497243963181973, -0.002512431936338544, -0.019925028085708618, 0.018623527139425278, 0.041030798107385635, 0.016369381919503212, 0.02199132740497589, -0.03689819946885109, -0.005051699001342058, 0.003656276036053896, 0.030269941315054893, -0.0008268550736829638, 0.008828733116388321, 0.015550913289189339, 0.01573875918984413, -0.0306724663823843, 0.006963696330785751, -0.019871357828378677, 0.013967645354568958, -0.0011002372484654188, 0.019737182185053825, -0.004293608479201794, -0.0008033744525164366, 0.0015673348680138588, -0.005454224534332752, 0.017241522669792175, 0.021025264635682106, 0.010713894851505756, 0.013605372048914433, 0.00750710628926754, 0.021749811246991158, 0.015805846080183983, 0.023346496745944023, -0.014115238562226295, 0.0003360671107657254, -0.010666933842003345, 0.019656676799058914, -0.02628493495285511, 0.0032554275821894407, 0.003020620672032237, 0.008815315552055836, -0.017657466232776642, 0.015108135528862476, 0.01815391331911087, 0.0022843340411782265, -0.010720604099333286, -0.001999211497604847, -0.008962907828390598, 0.003153118770569563, 0.002369870664551854, -0.000906521687284112, -0.014625104144215584, 0.03378533199429512, 0.02696922980248928, 0.004434492439031601, 0.00014612525410484523, 0.0027824596036225557, 0.008533546701073647, -0.022299930453300476, 0.032738763839006424, -0.008003555238246918, 0.006997240241616964, -0.04481453821063042, 0.023306244984269142, 0.030457785353064537, -0.004810183309018612, 0.009794794954359531, 0.00768153415992856, -0.017845310270786285, -0.018368594348430634, -0.007601028773933649, -0.00437075924128294, 0.002317877719178796, 0.0003832381044048816, -0.012048939242959023, -0.0002708663232624531, 0.014893454499542713, -0.01498737744987011, -0.022420687600970268, 0.008929364383220673, 0.018945548683404922, -0.004659236408770084, 0.025761650875210762, -0.008110894821584225, 0.01678532548248768, -0.008258488029241562, 0.007245464716106653, 0.008137729950249195, -0.010412001051008701, 0.016637733206152916, 0.015537495724856853, 0.04049409553408623, 0.0036764023825526237, -0.003991714213043451, 0.03716655075550079, -0.015188640914857388, -0.014705609530210495, 0.011800714768469334, 0.03464405611157417, 0.00998934917151928, 0.001965667586773634, 0.029545394703745842, -0.003995068836957216, -0.01995186321437359, 0.003679756773635745, -0.014316501095890999, 0.05197950080037117, -0.021736392751336098, -0.023453837260603905, 0.023386748507618904, 0.001698155771009624, 0.005360302049666643, -0.09853831678628922, -0.016396217048168182, 0.009023286402225494, 0.022420687600970268, -0.025278620421886444, 0.007258882280439138, -0.01805999130010605, 0.043472785502672195, -0.02503710612654686, 0.006457184907048941, -0.017845310270786285, -0.027720609679818153, 0.00029812066350132227, -0.0035858340561389923, 0.011264014057815075, -0.010519341565668583, 0.00023333917488344014, 0.002785813994705677, -0.004833664279431105, 0.03204105421900749, 0.008875694125890732, -0.016114449128508568, 0.005789662711322308, -0.030779806897044182, -0.0052563161589205265, -0.0035153920762240887, -0.03064563125371933, 0.010217446833848953, 0.013591954484581947, 0.0032336239237338305, 0.010244281962513924, -0.005434098187834024, 0.014812950044870377, -0.0018365239957347512, -0.01098224613815546, -0.03000159002840519, -0.0187174491584301, -0.007741913199424744, 0.009056830778717995, -0.03204105421900749, 0.0038005143869668245, -0.0024956599809229374, -0.009620366618037224, -0.027237579226493835, -0.005645424593240023, 0.006031178403645754, -0.012887534685432911, 0.03188004344701767, 0.010130233131349087, -0.022219425067305565, -0.0024319267831742764, -0.014356753788888454, -0.016490140929818153, -0.016423052176833153, 0.02243410423398018, 0.004984611179679632, 0.013994480483233929, 0.00934530794620514, -0.00880189798772335, -0.002638221252709627, 0.009003160521388054, 0.0115927429869771, -0.001690608449280262, 0.04202369600534439, -0.00563871581107378, 0.01744278520345688, 0.002673442242667079, -0.005454224534332752, -0.01936149224638939, -0.005850041750818491, -0.009271510876715183, 0.0030340382363647223, -0.013498032465577126, 0.011800714768469334, -0.0027036317624151707, 0.001067531993612647, -0.029196538031101227, -0.02133386768400669, 0.02444673329591751, 0.007131415419280529, -0.028284147381782532, -0.013323604129254818, 0.0029015401378273964, -0.0336243212223053, 0.020434893667697906, 0.010586428456008434, 0.007071036845445633, -0.004904106259346008, 0.03628099337220192, -0.024607744067907333, 0.02123994566500187, 0.014906872063875198, 0.017308609560132027, -0.012176405638456345, -0.008728100918233395, 0.01999211497604847, -0.02378927543759346, 0.004568668082356453, 0.02933071367442608, 0.005400554742664099, -0.02753276564180851, -0.0037501987535506487, -0.04502921923995018, 0.022836631163954735, 0.01469219196587801, 0.015255727805197239, -0.01253867894411087, -0.02133386768400669, -0.02136070281267166, -0.0056957402266561985, -0.005105368793010712, 0.0032202063594013453, -0.04261406511068344, 0.0015455313259735703, -0.012552096508443356, -0.021763227880001068, -0.02505052275955677, -0.02378927543759346, -0.0049477131105959415, -0.0043808226473629475, 0.013967645354568958, 0.0003086031065322459, -0.024728501215577126, 0.0007685727323405445, 0.008707975037395954, 0.018972383812069893, -0.020998429507017136, 0.0036193779669702053, -0.016718238592147827, 0.029142867773771286, -0.004669299349188805, -0.022890301421284676, 0.007842544466257095, 0.006329718511551619, -0.004468036349862814, 0.018610110506415367, -0.017040258273482323, -0.02994791977107525, 0.0030994487460702658, -0.008580508641898632, 0.024500403553247452, -0.002638221252709627, -0.004152724519371986, -0.018382010981440544, 0.03866931423544884, 0.00390114588662982, -0.01756354235112667, -0.0024470214266330004, -0.002551007317379117, -0.00841949786990881, 0.016557227820158005, 0.019710347056388855, 0.03201422095298767, 0.007466853596270084, 0.009566696360707283, -0.03622732311487198, -0.001299822935834527, 0.006588005926460028, 0.01814049668610096, 0.017053676769137383, 0.0020361097995191813, -0.001703187357634306, 0.04076244682073593, 0.01002960093319416, 0.009935678914189339, -0.01631571352481842, -0.009519735351204872, -0.013585246168076992, -0.025426212698221207, -0.005165747832506895, -0.0170134250074625, -0.02376244030892849, -0.004625692497938871, -0.013967645354568958, 0.028391486033797264, 0.02307814545929432, 0.012793611735105515, 0.006447121500968933, 0.003122929483652115, -0.007151541765779257, -0.01498737744987011, 0.022058414295315742, 0.027693776413798332, -0.0036629848182201385, -0.025868991389870644, 0.01755012571811676, 0.03421469405293465, 0.004286899697035551, -0.021494878455996513, 0.012646019458770752, 0.00721192080527544, -0.011673248372972012, -0.007238755933940411, -0.011143255978822708, -0.025211533531546593, 0.00995580479502678, -0.001348461490124464, 0.03526126220822334, -0.01253196969628334, 0.01695975475013256, 0.024661414325237274, 0.039045002311468124, -0.002321232110261917, 0.014598269015550613, 0.0028512245044112206, 0.0018013030057772994, -0.029599064961075783, -0.0065712337382137775, -0.01820758357644081, -0.010646807961165905, -0.010485797189176083, 0.03587846830487251, 0.015980275347828865, -0.006182125303894281, 0.0011404898250475526, 0.002857933286577463, -0.008412789553403854, 0.00906353909522295, -0.016543811187148094, -0.010941993445158005, -0.018301507458090782, -0.003636149689555168, -0.0012495071860030293, 0.02370877005159855, 0.02435281127691269, -0.007822418585419655, 0.0238429456949234, 0.016382800415158272, -0.011700083501636982, -0.024232054129242897, 0.0008339831838384271, -0.016610898077487946, 0.03123600222170353, 0.01439700648188591, 0.01619495451450348, -0.005293214228004217, -0.019106557592749596, -0.008023681119084358, -0.022152336314320564, 0.02256827987730503, -0.025184698402881622, 0.06671194732189178, 0.02498343586921692, -0.02809630148112774, 0.006406869273632765, -0.019764017313718796, 0.00319672585465014, 0.027170492336153984, -0.005558210425078869, 0.023588012903928757, -0.004099054262042046, 0.030887147411704063, 0.0065376898273825645, -0.03069930151104927, -0.00101637770421803, -0.0036495672538876534, -0.0015975242713466287, 0.010250990279018879, 0.02247435785830021, -0.027801115065813065, -0.004605566151440144, 0.02562747709453106, -0.00911720935255289, 0.02201816253364086, -0.000372755661373958, -0.028445156291127205, -0.015779010951519012, 0.04188951849937439, 0.020287301391363144, 0.011331101879477501, -0.04323127120733261, 0.015483826398849487, -0.009653910994529724, -0.00998934917151928, -0.0036428584717214108, -0.006346490234136581, -0.005984216928482056, -0.008372536860406399, -0.016704820096492767, -0.01815391331911087, 0.005585045553743839, 0.0011228793300688267, 0.010546175763010979, -0.015524079091846943, -0.02011287212371826, 0.02683505415916443, -0.01445067673921585, 0.02191082201898098, -0.026056837290525436, -0.00903670396655798], "a72e2e96-8525-41f5-b203-183e65f44174": [-0.015466704033315182, -0.013311730697751045, 0.005012357607483864, -0.03600713983178139, -0.011586388573050499, 0.02164520137012005, -0.0038871346041560173, -0.03213364630937576, -0.022640854120254517, -0.04694567620754242, 0.005107831209897995, 0.01783990114927292, 0.00799249392002821, -0.00021172522974666208, 0.014007323421537876, 0.004248569719493389, 0.023227334022521973, -0.01620321348309517, -0.0025897182058542967, -0.015248478390276432, -0.01848093792796135, -0.010338414460420609, -0.024536684155464172, 0.017621677368879318, -0.020376767963171005, 0.001906059798784554, 0.013564053922891617, -0.01102718710899353, -0.0030926589388400316, -0.0007586731808260083, 0.017089752480387688, -0.016789693385362625, -0.011886448599398136, -0.021126916632056236, -0.021822510287165642, -0.005397661589086056, 0.005639754701405764, -0.01320943795144558, -0.004490663297474384, -0.009110897779464722, 0.027632752433419228, -0.018780997022986412, -0.013993684202432632, 0.010406609624624252, -0.011122660711407661, 0.016980640590190887, 0.006154629867523909, -0.009813309647142887, -0.0039826082065701485, -0.010379331186413765, -0.010938532650470734, 0.032761044800281525, -0.010638473555445671, 0.01467563770711422, -0.01135452464222908, -0.001989599084481597, 0.0014866584679111838, -0.012159230187535286, 0.011852351017296314, 0.0001654802617849782, 0.016898805275559425, 0.018726442009210587, -0.014702916145324707, -0.0013349239015951753, -0.013543595559895039, -0.031697195023298264, 0.0011303378269076347, -0.013768639415502548, -0.01857641153037548, -0.0071877893060445786, 0.00627738144248724, 0.03442500904202461, 0.001829340122640133, -0.004961211234331131, -0.013557233847677708, -0.018330907449126244, 0.004661151673644781, -0.008735823445022106, 0.0006725765997543931, -0.002584603615105152, 0.008142524398863316, -0.005636345129460096, -0.005114650819450617, -0.009540528990328312, 0.016694219782948494, 0.03660726174712181, -0.013652707450091839, 0.004562268499284983, -0.028723878785967827, 0.0018276352202519774, 0.002141333883628249, -0.004118998534977436, 0.009069981053471565, 0.010420248843729496, 0.005097602028399706, 0.010945352725684643, 0.039198681712150574, 0.007474209647625685, -0.0007501487853005528, -0.012868461199104786, -0.018931027501821518, 0.008435764349997044, -0.029051216319203377, -0.018835553899407387, -0.03175175189971924, -0.008442583493888378, 0.019476590678095818, -0.016053183004260063, 0.025355027988553047, 0.010945352725684643, -0.008776741102337837, 0.029323996976017952, -0.007133232895284891, 0.002049270085990429, -0.0067649781703948975, -0.004937342833727598, 0.031997255980968475, -0.05204668641090393, -0.0023902468383312225, -0.018630968406796455, 0.02247718535363674, 0.02738725021481514, 0.01628504879772663, -0.025273194536566734, 0.0008417862700298429, -0.009431416168808937, 0.0051282900385558605, -0.011306787841022015, 0.021999817341566086, -0.009581445716321468, 0.0012249588035047054, 0.02891482599079609, 0.008838116191327572, -0.011825072579085827, -0.028969381004571915, 0.00023591326316818595, -0.02976044826209545, 0.005418119952082634, -0.0026681427843868732, -0.018003569915890694, 0.019162891432642937, 0.021331503987312317, -0.01081578154116869, -0.021167835220694542, 0.013427662663161755, 0.024386655539274216, -0.006693372968584299, 0.030169619247317314, 0.008101606741547585, -0.01471655536442995, 0.008115245960652828, -0.02118147350847721, -0.014921140857040882, 0.010079272091388702, 0.0014380692737177014, -0.004572497680783272, 0.0039007735904306173, 0.02640523761510849, -0.00554428156465292, -0.009281386621296406, 0.009601904079318047, 0.020349491387605667, -0.005803423933684826, -0.004719117656350136, 0.010229301638901234, 0.021822510287165642, 0.005373793188482523, -0.04866419732570648, -0.004739576485008001, -0.010229301638901234, 0.010051993653178215, 0.02674621343612671, -0.01606682315468788, 0.02302274852991104, 0.0173898134380579, -0.01135452464222908, 0.011109021492302418, -0.0036075336392968893, -0.006222825031727552, -0.040480755269527435, 0.033415719866752625, -0.0006938876467756927, 0.009847407229244709, 0.020567715167999268, -0.016435077413916588, -0.034725069999694824, 0.005578379146754742, 0.0005651689134538174, 0.006550162564963102, -0.004695249255746603, 0.0102770384401083, 0.0038393978029489517, -0.02791917324066162, -0.01685788854956627, -0.6232509016990662, -0.016448717564344406, 0.019272003322839737, -0.03311565890908241, -0.014048241078853607, -0.005414710380136967, 0.028205594047904015, -0.000857982668094337, -0.016121380031108856, 0.016926083713769913, 0.009533708915114403, 0.0077810888178646564, -0.021604284644126892, -0.011777335777878761, -0.030987964943051338, -0.01326399389654398, 0.015889514237642288, -0.003645041026175022, -0.017130671069025993, 0.015725845471024513, -0.015998627990484238, 0.035597968846559525, -0.019735733047127724, 0.00350524066016078, 0.0011669928207993507, -0.013604970648884773, 0.028123758733272552, 0.006918417755514383, -0.015153005719184875, 0.014921140857040882, -0.027660030871629715, 0.021031443029642105, 0.032215479761362076, 0.0021072360686957836, 0.04162643849849701, -0.009506430476903915, -0.006147810257971287, 0.016012266278266907, 0.010031535290181637, 0.044381529092788696, -0.03467051312327385, -0.014102797023952007, 0.018849192187190056, 0.033961281180381775, -0.006533113773912191, 0.0030943637248128653, -0.003358620684593916, -0.0039075929671525955, -0.019272003322839737, 0.002189070452004671, -0.008081148378551006, -0.014839306473731995, -0.006294430233538151, 0.0021652020514011383, 0.008231177926063538, -0.00019947138207498938, 0.04007158428430557, -0.008926770649850368, 0.005615886300802231, 0.019067417830228806, 0.015493982471525669, 0.00821071956306696, -0.0012863347074016929, -0.05488361418247223, -0.04800952225923538, 0.004200833383947611, -0.010747586376965046, -0.020826857537031174, 0.020717745646834373, -0.009267747402191162, 0.030824294313788414, -0.009295024909079075, 0.011668222956359386, -0.006734290160238743, -0.003968968987464905, 0.005060094408690929, 0.04078081622719765, -0.008647169917821884, 0.006543343421071768, 0.014334660954773426, 0.0044395169243216515, -0.01282072439789772, -0.017580758780241013, -0.019258365035057068, 0.021672479808330536, 0.01816723868250847, -0.02074502408504486, -0.006717241369187832, -0.011224953457713127, 0.0015710502630099654, 0.0027960091829299927, 0.021454254165291786, -0.019053779542446136, -0.04094448313117027, 0.015384869650006294, 0.022449906915426254, 0.0070854960940778255, -0.0025470959953963757, -0.01586223766207695, -0.02704627253115177, -0.03941690921783447, -0.03709826618432999, 0.005135109182447195, 0.012738890014588833, 0.029733169823884964, 0.007535585667937994, -0.017239782959222794, -0.020144904032349586, 0.0349978506565094, -0.022777244448661804, 0.01740345172584057, -0.014102797023952007, -0.016994278877973557, -0.015725845471024513, -1.8620525224832818e-05, -0.0174989253282547, 0.03611625358462334, -0.006287610623985529, -0.019094696268439293, -0.017035197466611862, -0.010352052748203278, 0.01661238633096218, 0.003917822614312172, -0.013339009135961533, -0.00022909372637514025, 0.03153352811932564, 0.018780997022986412, 0.012807085178792477, 0.007474209647625685, -0.004654332064092159, 0.011593208648264408, -0.023104581981897354, 0.006195547059178352, -0.01783990114927292, 0.02729177661240101, 0.00570454029366374, -0.0024482128210365772, 0.009465513750910759, 0.010877157561480999, -0.0430721789598465, 0.0016699334373697639, 0.0030295781325548887, 0.006420591380447149, -0.006447869818657637, -0.006976383738219738, -0.004558858927339315, -0.023186417296528816, 0.024754909798502922, -0.008756281808018684, 0.001446593669243157, -0.04105359688401222, -0.027114467695355415, 0.006348986644297838, 0.025382306426763535, -0.013291272334754467, 0.009274566546082497, -0.00020394669263623655, -0.05120106413960457, -0.010965811088681221, -0.042990345507860184, -0.013073047623038292, 0.0161895751953125, -0.01390503067523241, 0.0076787956058979034, -0.005540871527045965, -0.01879463717341423, -0.010665751993656158, -0.00793793797492981, -0.008428944274783134, -0.017239782959222794, 0.001962321111932397, -0.02184978872537613, 0.020704105496406555, 0.03186086565256119, -0.03336116299033165, 0.008340290747582912, -0.0075424048118293285, 0.008524417877197266, -0.002252151258289814, 0.0014943304704502225, 0.0334702730178833, 0.028505653142929077, -0.003774612210690975, 0.0027175843715667725, 0.024932216852903366, 0.024864021688699722, 0.0034336354583501816, 0.014225549064576626, -0.028560210019350052, 0.005817062687128782, -0.0010885681258514524, 0.015030253678560257, -0.0039007735904306173, 0.004262208938598633, -0.008299373090267181, -0.01650327257812023, -0.01803084835410118, -0.017648955807089806, -0.016135018318891525, 0.02476854808628559, 0.004040574189275503, 0.008667628280818462, -0.012732070870697498, 0.004006476607173681, 0.0084766810759902, -0.02826015092432499, -0.001972550293430686, -0.024209346622228622, 0.025273194536566734, -0.015493982471525669, -0.006158039439469576, -0.009663280099630356, 4.848262688028626e-05, -0.037234656512737274, -0.002582898596301675, 0.020704105496406555, -0.019258365035057068, 0.017989931628108025, 0.004453156143426895, 0.006754748988896608, 0.00934958178550005, 0.00102633994538337, 0.033088382333517075, 0.010467985644936562, 0.004633873701095581, 0.017253421247005463, -0.01673513650894165, 0.014102797023952007, 0.013393565081059933, -0.025941507890820503, 0.011449998244643211, 0.022627215832471848, 0.005397661589086056, -0.0018105863127857447, 0.021113278344273567, 0.017676232382655144, 0.036579981446266174, -0.025136804208159447, 0.023404641076922417, -0.01783990114927292, 0.01141590066254139, 0.016871528699994087, 0.029842281714081764, -0.029596779495477676, -1.8141026885132305e-05, 0.011675043031573296, -0.0029937755316495895, 0.005868209525942802, -0.015030253678560257, 0.022108931094408035, 0.004702068865299225, 0.009745114482939243, -0.006724060978740454, -0.019081057980656624, 0.027237219735980034, -0.011040826328098774, 0.002528342418372631, 0.029951395466923714, 0.01608046144247055, 0.01576676405966282, 0.0002851417812053114, 0.015480343252420425, 0.008340290747582912, -0.009540528990328312, 0.03227003663778305, -0.009424596093595028, -0.008040230721235275, -0.03055151365697384, -0.006212595850229263, -0.01375500112771988, -0.01004517450928688, -0.019258365035057068, -0.02435937710106373, -0.012752529233694077, -0.0319426991045475, 0.003641631454229355, 0.0019742550794035196, 0.022258959710597992, 0.0032631470821797848, 0.01726706139743328, 0.001328956801444292, -0.03518879786133766, 0.024645797908306122, 0.0006482820026576519, -0.01135452464222908, -0.014825667254626751, -0.003522289451211691, 0.0006107745575718582, 0.010965811088681221, 0.018958305940032005, -0.010897615924477577, -0.003968968987464905, -0.01631232537329197, 0.022231681272387505, -0.008674447424709797, 0.012534304521977901, 0.05717497691512108, -0.006505835801362991, -0.011006728745996952, 0.011675043031573296, 0.00010490361455595121, -0.0007075266912579536, -0.016230491921305656, -0.01977664977312088, 0.04956437647342682, -0.0325973741710186, -0.018399104475975037, -0.01597134955227375, 0.008449402637779713, -0.021017804741859436, 0.012097854167222977, -0.03748016059398651, -0.036579981446266174, -0.004988489206880331, -0.02033585123717785, 0.007890201173722744, -0.0008255898719653487, -0.008278914727270603, 0.034179504960775375, 0.0156440120190382, -0.010918074287474155, -0.018617328256368637, -0.00924728810787201, 0.016053183004260063, 0.07114138454198837, 0.009881504811346531, -0.004974850453436375, 0.028341984376311302, -0.02444121055305004, -0.019462950527668, -0.012377454899251461, -0.037643831223249435, 0.029160328209400177, -0.01560309436172247, 0.000671297893859446, 0.013939128257334232, 0.02628248557448387, -0.011811433359980583, -0.003962149377912283, 0.017321616411209106, 0.0031932468991726637, -0.01609410159289837, -0.016694219782948494, 0.006679733749479055, 0.004125818144530058, -0.0009308664593845606, 0.029705891385674477, 0.02577783912420273, 0.03693459928035736, 0.038734953850507736, 0.0308515727519989, 0.019517507404088974, 0.008449402637779713, -0.021563367918133736, -0.005967092700302601, -0.005486315581947565, -0.010781683959066868, 0.015889514237642288, -0.014334660954773426, 0.03464323282241821, -0.004534990526735783, -0.03377033397555351, -0.01500297524034977, 0.009738295339047909, 0.006430821027606726, 0.028014646843075752, 0.009213190525770187, -0.00587161909788847, 0.002437983639538288, -0.021358782425522804, 0.010686210356652737, 0.03507968410849571, -0.01434830017387867, -0.02465943619608879, 0.01037251204252243, 0.009936061687767506, -0.017867179587483406, 0.027891894802451134, -0.01297757402062416, 0.004818000830709934, -0.007603780832141638, -0.002252151258289814, -0.006724060978740454, -0.023827452212572098, -0.05251041427254677, 0.00956098735332489, -0.01500297524034977, -0.0033313424792140722, -0.017253421247005463, -0.006560392212122679, -0.017662594094872475, 0.0201176255941391, -0.03336116299033165, 0.02367742359638214, 0.006642226595431566, -0.0382712259888649, -0.04915520176291466, 0.006754748988896608, 0.04105359688401222, 0.02530047297477722, -0.0008426387212239206, 0.004763444885611534, -0.006424001418054104, 0.02302274852991104, 0.01065893191844225, -0.032379150390625, 0.016162296757102013, -0.03649814799427986, -0.02378653548657894, -0.02696443907916546, -0.023622866719961166, 0.0018856012029573321, 0.0009240469080395997, 0.007576502859592438, -0.007385555654764175, -0.011968282982707024, -0.004088310990482569, 0.001482396270148456, 0.00863353069871664, 0.044490642845630646, 0.012377454899251461, 0.015930432826280594, 0.028832990676164627, -0.03437045216560364, 0.023772897198796272, -0.004163325764238834, 0.0023135270457714796, -0.013659527525305748, 0.01650327257812023, -0.005261270795017481, -0.0003392718208488077, -0.028096482157707214, 0.02314549870789051, -0.02489130012691021, -0.0022743146400898695, -0.010877157561480999, -0.005707950331270695, -0.022449906915426254, 0.022095290943980217, -0.005970502272248268, -0.003955329768359661, 0.01901286095380783, 0.010229301638901234, 0.0028369263745844364, 0.005019177217036486, -0.029187606647610664, 0.03513424098491669, 0.002698830794543028, -0.017103392630815506, 0.01944931223988533, 0.013434482738375664, -0.014730194583535194, -0.028642043471336365, 0.013298092409968376, 0.004500892478972673, 0.008503959514200687, -0.0005728408577851951, -0.0035836652386933565, -0.029924117028713226, -0.01326399389654398, 0.0014346595853567123, -0.0013204322895035148, -0.015616733580827713, 0.01368680503219366, -0.029405832290649414, 0.008619891479611397, 0.014457412995398045, -0.004610005300492048, 0.000467990554170683, -0.023336445912718773, -0.01642143912613392, -0.01923108659684658, 0.005919355899095535, 0.026678018271923065, -0.002303297631442547, -0.012772987596690655, -0.022545380517840385, -0.016789693385362625, 0.01803084835410118, -0.009206371381878853, 0.006328527815639973, -0.00021822510461788625, 0.05060094594955444, 0.01494841929525137, 0.03333388268947601, 0.020581355318427086, 0.017853541299700737, 0.013761820271611214, -0.014798389747738838, -0.01429374422878027, -0.01715794764459133, -0.017430730164051056, 0.0020407456904649734, 0.0025863084010779858, 0.020254017785191536, 0.010338414460420609, -0.007044578902423382, 0.013120784424245358, 0.00848350115120411, 0.021113278344273567, 0.002831811551004648, -0.0150984488427639, -0.03420678526163101, -0.02989683859050274, -0.009881504811346531, 0.009636001661419868, 0.011525013484060764, 0.0015301330713555217, -0.02660982310771942, 0.01434830017387867, 0.026650739833712578, -0.015030253678560257, 0.03529791161417961, 0.003812119597569108, 0.05106467381119728, 0.00126246630679816, 0.005592018365859985, -0.0019452722044661641, 0.01233653724193573, -0.027769144624471664, -0.00279941875487566, -0.03117891028523445, -0.0040542129427194595, 0.00886539462953806, 0.01293665636330843, 0.028096482157707214, 0.016694219782948494, 0.008081148378551006, -0.010570278391242027, 0.009601904079318047, -0.0321609228849411, -0.010727127082645893, 0.01955842413008213, -0.0164077989757061, -0.004480434115976095, -0.03737104684114456, -0.011845530942082405, -0.0008788674604147673, -0.021345142275094986, 0.0029767267405986786, -0.008006133139133453, 0.024195708334445953, -0.026678018271923065, -0.005281729158014059, 0.028096482157707214, -0.008674447424709797, 0.031260743737220764, 0.02411387301981449, 0.039198681712150574, -0.009779212065041065, -0.00021151211694814265, -0.014934780076146126, -0.03117891028523445, -0.005806833505630493, -0.01999487541615963, 0.020035792142152786, 0.03985336050391197, -0.013768639415502548, -0.005254451185464859, -0.01368680503219366, -0.016135018318891525, -0.010386151261627674, -0.03387944772839546, 0.0035359286703169346, 0.009124536998569965, 0.013618609867990017, -0.028123758733272552, -0.011504554189741611, -0.0026817817706614733, 0.015112088061869144, -0.021345142275094986, 0.008333470672369003, 0.008926770649850368, -0.012984393164515495, 0.016666941344738007, 0.02684168703854084, -0.005152157973498106, 0.024523045867681503, 0.005574969109147787, 0.003409767057746649, 0.007849284447729588, -0.00443269731476903, -0.01586223766207695, -0.025914231315255165, 0.0022964782547205687, 0.02880571223795414, -0.03207908943295479, -0.0001647343742661178, 0.014007323421537876, 0.013270813971757889, -0.012343357317149639, -0.00584434112533927, -0.031233467161655426, 0.031042519956827164, 0.0035325188655406237, -0.003992837388068438, 0.0047770836390554905, 0.029978672042489052, 0.007528766058385372, -0.027891894802451134, -0.025559615343809128, -0.001012700842693448, 0.0016631139442324638, 0.006028468254953623, 0.024618519470095634, -0.03295198827981949, -0.03076973930001259, -0.00701048132032156, 0.00584434112533927, -0.013734541833400726, 0.01527575682848692, 0.0071195936761796474, 0.00048035095096565783, -0.02986956015229225, -0.011777335777878761, -0.003495011245831847, -0.009083619341254234, -0.01342084351927042, 0.0035836652386933565, -0.022981829941272736, -0.017089752480387688, 0.015698568895459175, -0.02108599990606308, 0.00863353069871664, 0.024604879319667816, 0.010965811088681221, -0.050791893154382706, 0.02489130012691021, -0.018617328256368637, -0.01114311907440424, 0.017321616411209106, 0.0042383405379951, -0.020499520003795624, -0.006366035435348749, 0.020049430429935455, 0.008060690015554428, -0.0023902468383312225, -0.015712207183241844, 0.00504986522719264, 0.012616138905286789, 0.009083619341254234, -0.01489386335015297, 0.004453156143426895, 0.009758753702044487, -0.011552290990948677, 0.0004411386325955391, 0.019422033801674843, -0.00820389948785305, 0.009724656119942665, -0.008258456364274025, -0.0019128794083371758, -0.009799670428037643, -0.039498742669820786, -0.016816971823573112, -0.002156677655875683, 0.009315484203398228, 0.004824820440262556, 0.002362968632951379, 0.013379926793277264, -0.027128107845783234, -0.0090222442522645, 0.01651691272854805, -0.021126916632056236, 0.005039636045694351, 0.038925901055336, -0.01380955707281828, 0.022981829941272736, 0.019367476925253868, -0.02465943619608879, -0.017130671069025993, -0.023172777146100998, -0.009492792189121246, -0.040371641516685486, -0.016366882249712944, 0.0007680500275455415, 0.02989683859050274, 0.014934780076146126, -0.02021309919655323, -0.029651334509253502, -0.01069984957575798, -0.04563632234930992, -0.010072452016174793, -0.038625843822956085, 0.024413932114839554, 0.03161536157131195, 0.020185820758342743, 0.011334066279232502, 0.02303638681769371, -0.003655270440503955, -0.005973912309855223, -0.036579981446266174, 0.007869742810726166, -0.013298092409968376, -0.02400476112961769, 0.04083537310361862, -0.021563367918133736, -0.03437045216560364, -0.002451622625812888, -0.0013119078939780593, -0.007440112065523863, 0.021781593561172485, -0.004841869231313467, -0.0038564465939998627, -0.0006239874055609107, -0.0007556896307505667, 0.018780997022986412, 0.005101011600345373, 0.026337042450904846, 0.020840497687458992, -0.043535906821489334, 0.0031932468991726637, 0.02826015092432499, -0.005489725153893232, -0.014334660954773426, 0.004050803370773792, 0.006366035435348749, -0.012377454899251461, -0.003247803309932351, -0.011136299930512905, -0.011504554189741611, -0.02542322315275669, 0.01254794280976057, -0.001373283681459725, 0.01859004981815815, 0.008047050796449184, 0.028614766895771027, 0.0012863347074016929, -0.029269441962242126, 0.0011081743286922574, 0.004436106886714697, 0.0038223490118980408, 0.020717745646834373, 0.02370470203459263, -0.02509588561952114, 0.005080553237348795, -4.2355700315965805e-06, 0.012350176461040974, 0.005639754701405764, -0.02737361006438732, -0.019763009622693062, 0.0023902468383312225, -0.0038598563987761736, -0.004763444885611534, -0.015153005719184875, 0.008613072335720062, 0.006045517046004534, -0.008844936266541481, -0.005158977583050728, 0.017853541299700737, 0.0003584517689887434, 0.0294331107288599, -0.02281816117465496, -0.006700192578136921, 0.015303035266697407, 0.0061887274496257305, -0.0358707495033741, 0.0016972116427496076, 0.012957115657627583, 0.021426977589726448, 0.013945947401225567, 0.19858483970165253, 0.021904343739151955, -0.00042707333341240883, 0.04522715136408806, 0.02381381392478943, 0.002068023895844817, 0.027796421200037003, 0.017949014902114868, -0.020499520003795624, -0.0009146700613200665, 0.002971612149849534, 0.011422719806432724, -0.011047645471990108, -0.002136219060048461, 0.014252826571464539, -0.008469861932098866, -0.023391002789139748, -0.013543595559895039, 0.006430821027606726, 0.007235526107251644, 0.0033432766795158386, -0.009083619341254234, -0.0015199037734419107, -0.004548629280179739, 0.014266465790569782, -0.002971612149849534, -0.009383679367601871, -0.002088482491672039, 0.015289396047592163, 0.017880819737911224, -0.006608128547668457, 0.005697721149772406, 0.010297496803104877, -0.0025334570091217756, -0.02826015092432499, -0.015207561664283276, 0.022218042984604836, -0.0036620900500565767, -0.012957115657627583, 0.015398508869111538, -0.005148748401552439, -0.018999222666025162, 0.02228623814880848, -0.015398508869111538, 6.654374010395259e-05, 0.007474209647625685, -0.012432010844349861, 0.01348221953958273, -0.0010689620394259691, 0.0192447267472744, 0.00383257819339633, -0.0022998880594968796, 0.021699758246541023, 0.014525608159601688, -0.01901286095380783, -0.0011490915203467011, -0.016353243961930275, 0.019203808158636093, -0.017894458025693893, -0.00657744100317359, -0.018521854653954506, 0.003026168327778578, -0.0017713740235194564, -0.0027602065820246935, -0.023118222132325172, 0.0006150367553345859, -0.020785940811038017, 0.04217199981212616, 0.00982694886624813, 0.015684928745031357, -0.016653303056955338, -0.0007923446246422827, -0.03327932581305504, 0.007596961222589016, -0.02392292581498623, -0.017880819737911224, 0.01683061011135578, 0.02280452288687229, 0.00600459985435009, 0.01968117617070675, -0.005281729158014059, -0.003651860635727644, -0.03480690345168114, 0.008115245960652828, 0.005097602028399706, -0.033961281180381775, 0.03000595048069954, -0.013523136265575886, -0.009976978413760662, -0.012172868475317955, 0.008851755410432816, 0.0025607352145016193, -0.01233653724193573, -0.028860269114375114, 0.002611881587654352, -0.009315484203398228, 0.01168186217546463, 0.024713993072509766, -0.02163156308233738, -0.019435672089457512, -0.01771715097129345, 0.047218456864356995, 0.01912197470664978, 0.034615956246852875, -0.01200919970870018, 0.022749966010451317, 0.005445398390293121, 0.03270648792386055, -0.009956520050764084, -0.015480343252420425, -0.00034246849827468395, -0.04072625935077667, 0.009840588085353374, -0.013127603568136692, 0.0035700262524187565, 0.01879463717341423, 0.00928820576518774, -0.027741866186261177, 0.004950982052832842, -0.00977239292114973, 0.009144995361566544, -0.0013102029915899038, 0.02401839941740036, -0.0033296376932412386, -0.009567806497216225, -0.02845109812915325, -0.0031608541030436754, 0.03540702164173126, -0.04121726378798485, -0.017471646890044212, 0.010904435068368912, -0.019367476925253868, 0.013495858758687973, -0.003774612210690975, -0.008988146670162678, 0.015289396047592163, 0.023009108379483223, -0.009765572845935822, -0.004142866935580969, -0.012704792432487011, 0.009915603324770927, 0.020581355318427086, 0.021699758246541023, 0.01288210041821003, -0.00728326290845871, -0.001696359133347869, 0.002555620390921831, -0.019612981006503105, -0.017007919028401375, -0.037671107798814774, -0.006011419463902712, 0.025900591164827347, 0.006253513041883707, -0.009581445716321468, 0.03306110203266144, 0.0012420077109709382, -0.017007919028401375, -0.02467307448387146, 0.013257174752652645, 0.021140556782484055, -0.03437045216560364, 0.00017272602417506278, 0.02956950105726719, 0.014839306473731995, -0.005012357607483864, -0.00731054088100791, -0.17294339835643768, 0.011518193408846855, 0.00211917026899755, -0.010645292699337006, 0.01672149822115898, 0.0037098266184329987, -0.0014116435777395964, 0.005237402394413948, -0.00285227014683187, -0.01119767501950264, 0.001726194634102285, 0.028969381004571915, -0.010365691967308521, 0.00693205650895834, 0.022245321422815323, 0.0023902468383312225, -0.016707859933376312, 0.023322807624936104, 0.057338643819093704, 0.020022151991724968, 0.032106366008520126, -0.0332520492374897, -0.008285733871161938, -6.451919034589082e-05, 0.03147897124290466, 6.867483898531646e-05, -0.002161792479455471, 0.017335256561636925, 0.00853805709630251, -0.03881679102778435, -0.005534051917493343, -0.0015429196646437049, 0.017253421247005463, -0.005953453481197357, 0.02793281339108944, -0.004562268499284983, -7.911725697340444e-05, 0.0028164677787572145, 0.0029375143349170685, 0.015575816854834557, 0.02650071121752262, 0.006130761466920376, 0.017880819737911224, -0.0007450341363437474, 0.03644359111785889, 0.01606682315468788, 0.012302439659833908, -0.007030939683318138, 0.008176621980965137, -0.015112088061869144, 0.027646392583847046, -0.02910577319562435, 0.007385555654764175, 0.0007936233305372298, -0.007160510867834091, -0.0021498582791537046, 0.02119511365890503, 0.019081057980656624, -0.004197423346340656, -0.007815185934305191, 0.014812028966844082, -0.0013741361908614635, 0.007030939683318138, 0.002032221294939518, -0.001282924902625382, -0.01587587594985962, 0.02358194999396801, 0.03066062554717064, -0.0004064016102347523, 0.006376264616847038, 0.0174989253282547, 0.001375841093249619, -0.01651691272854805, 0.030169619247317314, -0.0024192298296839, 0.000993094639852643, -0.032215479761362076, 0.013898210600018501, 0.03497057035565376, 0.004381550941616297, 0.00821071956306696, 0.006703602150082588, -0.013925489038228989, -0.015507620759308338, -0.004623644053936005, 0.005994370672851801, 0.013836835511028767, 0.0073514580726623535, -0.006270561832934618, 0.0009598494507372379, 0.0021669070702046156, -0.019585702568292618, -0.009867866523563862, 0.010167925618588924, 0.022995470091700554, -0.0027175843715667725, 0.023063665255904198, -0.0033364570699632168, 0.012561582028865814, -0.005578379146754742, 0.005626115947961807, 0.008899492211639881, -0.017908096313476562, 0.020704105496406555, 0.02369106188416481, 0.025150442495942116, 0.014661998488008976, -0.0028659093659371138, 0.01728069968521595, -0.018999222666025162, -0.006123941857367754, 0.011886448599398136, 0.03442500904202461, -0.015589455142617226, -0.010038354434072971, 0.028287429362535477, -0.012759348377585411, -0.02033585123717785, 0.000664478400722146, -0.014661998488008976, 0.05924811586737633, -0.01598498784005642, -0.018658246845006943, 0.028014646843075752, 0.00663199694827199, -0.001889011007733643, -0.11145847290754318, -0.049482543021440506, 0.010958991944789886, 0.004251979757100344, -0.02479582652449608, -0.000297289079753682, -0.009874685667455196, 0.04705478623509407, -0.022531742230057716, 0.025177720934152603, -0.013598151504993439, -0.029705891385674477, -0.011668222956359386, 0.00041556538781151175, 0.012657055631279945, -0.007406014483422041, 0.011586388573050499, 0.0016665237490087748, 0.0012940065935254097, 0.032870154827833176, 0.0026834867894649506, -0.008169801905751228, 0.006539933383464813, -0.02041768655180931, -0.013461761176586151, -0.01471655536442995, -0.02596878632903099, 0.014798389747738838, 0.011763696558773518, 0.0096769193187356, 0.023104581981897354, -0.0071877893060445786, 0.018862832337617874, -0.001749210525304079, -0.00994970090687275, -0.01021566241979599, -0.02967861294746399, -0.010229301638901234, 0.011347705498337746, -0.03704370930790901, -0.007317360490560532, -0.0012965640053153038, -0.027087191119790077, -0.016489634290337563, 0.0028113529551774263, 0.004841869231313467, -0.012848002836108208, 0.03224276006221771, 0.014839306473731995, -0.02259993739426136, -0.0035461578518152237, -0.01119767501950264, -0.0027533869724720716, -0.03096068650484085, 0.02673257514834404, -0.00874264258891344, 0.014170992188155651, 0.005056684836745262, -0.017458008602261543, -0.0033228180836886168, 0.011129479855298996, 0.009185913018882275, -0.00869490671902895, 0.036225367337465286, 0.004030345007777214, 0.01162730623036623, -0.005817062687128782, -0.004818000830709934, -0.021904343739151955, -0.0037405146285891533, -0.011170397512614727, -0.004828230477869511, -0.028614766895771027, 0.019803928211331367, -0.004139457363635302, -0.006754748988896608, -0.03235187008976936, -0.029978672042489052, 0.017798984423279762, 0.009854227304458618, -0.02247718535363674, -0.007562863640487194, -0.004180374555289745, -0.03139713779091835, 0.014061879366636276, 0.009697377681732178, 0.005520413164049387, -0.01076122559607029, 0.036225367337465286, -0.01653055101633072, 0.019081057980656624, 0.00015684928803239018, 0.01782626286149025, -0.016475994139909744, -0.019858483225107193, 0.01965389773249626, -0.015821319073438644, 0.012984393164515495, 0.025586893782019615, 0.006802485324442387, -0.01598498784005642, -0.0036007140297442675, -0.04563632234930992, 0.013836835511028767, 0.005796604324132204, 0.013761820271611214, 0.013352648355066776, -0.014034601859748363, -0.011825072579085827, -0.0027772553730756044, -0.013891391456127167, 0.0021106458734720945, -0.037316493690013885, 0.01314806193113327, -0.010693029500544071, -0.013700444251298904, -0.02910577319562435, -0.007146872114390135, 0.01586223766207695, -0.006175088230520487, 0.012097854167222977, 0.006359215825796127, -0.020513160154223442, -0.010236120782792568, 0.009124536998569965, 0.012602499686181545, -0.010795323178172112, -0.007556044030934572, -0.014198270626366138, 0.02542322315275669, -0.0018617329187691212, -0.015125727280974388, 0.015234840102493763, 0.0010391265386715531, -0.003641631454229355, 0.023663783445954323, -0.014498329721391201, -0.022954553365707397, -0.00029387930408120155, -0.010965811088681221, 0.018412742763757706, -0.0018139961175620556, -0.015343951992690563, -0.02651434950530529, 0.026050621643662453, -0.004521351307630539, -0.01456652581691742, -0.0150438928976655, -0.008278914727270603, -0.016544191166758537, 0.013011671602725983, 0.041899219155311584, 0.027346333488821983, 0.004804362077265978, -0.005182845983654261, -0.036552704870700836, -0.00630465941503644, -0.006502425763756037, 0.02902393788099289, 0.024263903498649597, -0.00890631228685379, -0.021754315122961998, 0.042526617646217346, 0.021113278344273567, -0.004787313286215067, -0.010236120782792568, -0.0002759780327323824, -0.020895052701234818, -0.03196997568011284, 0.0020731384865939617, -0.017908096313476562, -0.042553894221782684, -9.483414760325104e-05, -0.025941507890820503, 0.026664379984140396, 0.032106366008520126, 0.021549727767705917, -0.008722184225916862, -0.008183441124856472, -0.019285643473267555, -0.01330491155385971, 0.027523640543222427, 0.03458867967128754, -0.011361343786120415, -0.025600532069802284, 0.009922422468662262, 0.02032221294939518, 0.006863861344754696, -0.02041768655180931, 0.015521259978413582, -0.0010007666423916817, 0.007856103591620922, -0.00502258725464344, -0.015834959223866463, -0.021331503987312317, -0.0035291090607643127, 0.012036478146910667, 0.0402352511882782, -0.014184631407260895, 0.015521259978413582, 0.020267656072974205, 0.037643831223249435, 0.0150438928976655, 0.013761820271611214, 0.011538651771843433, 0.004961211234331131, -0.02748272381722927, 0.0006444460013881326, -0.015630371868610382, -0.024618519470095634, 0.0038632662035524845, 0.0336885005235672, 0.01297757402062416, -0.012063756585121155, 0.0024669666308909655, 0.0038257588166743517, -0.008524417877197266, 0.0003633533196989447, -0.012929837219417095, -0.015071171335875988, -0.019408395513892174, 0.0015667880652472377, -0.011279509402811527, 0.0091313561424613, 0.010256580077111721, -0.01309350598603487, 0.027128107845783234, 0.010051993653178215, -0.002272609854117036, -0.02152245119214058, 0.006062565837055445, -0.019367476925253868, 0.010092910379171371, 0.024427572265267372, 0.014661998488008976, -0.011941004544496536, -0.006458099000155926, -0.015357591211795807, -0.02467307448387146, 0.013714083470404148, -0.016366882249712944, 0.0809069573879242, 0.02163156308233738, -0.03551613539457321, 0.0033807840663939714, 0.006822944153100252, 0.02009034901857376, 0.021099640056490898, -0.0048111816868186, 0.010740766301751137, -0.010631654411554337, 0.02967861294746399, 0.0006146105588413775, -0.032542817294597626, -0.011109021492302418, -0.01288210041821003, 0.0035359286703169346, 0.011306787841022015, 0.01912197470664978, -0.014907501637935638, -0.013918669894337654, 0.029951395466923714, -0.01901286095380783, 0.02585967443883419, -0.01060437597334385, -0.03371577709913254, -0.0060864342376589775, 0.032324593514204025, 0.01390503067523241, 0.0027192893903702497, -0.028314705938100815, 0.01042706798762083, -0.009983798488974571, -0.019517507404088974, 0.0010288972407579422, -0.008619891479611397, -0.011456817388534546, -0.004221291746944189, -0.013652707450091839, -0.008660808205604553, 0.0020577944815158844, -0.0024908350314944983, 0.011204495094716549, -0.02500041201710701, -0.008606252260506153, 0.02684168703854084, -0.003631402039900422, 0.007092315703630447, -0.02455032430589199, -0.002988660940900445], "d5078883-95d5-4ae3-bd07-49bf4dea0e9a": [-0.02629576250910759, -0.014953541569411755, -0.00117451511323452, -0.04272058233618736, -0.015889810398221016, 0.014431905932724476, -0.01490003988146782, -0.02605500817298889, -0.033652156591415405, -0.050264228135347366, 0.01420452632009983, 0.009977944195270538, -0.002721865428611636, 0.012612870894372463, 0.009402807801961899, 0.003775167278945446, 0.01082727313041687, -0.011850480921566486, 0.0017521590925753117, -0.02830205112695694, -0.018404358997941017, -0.016571948304772377, -0.02125328965485096, 0.0224570631980896, -0.030147837474942207, 0.009061738848686218, 0.009228929877281189, 0.0002698040916584432, -0.008841047063469887, 0.005965366028249264, 0.020758405327796936, -0.01804322563111782, -0.018364232033491135, -0.02423597127199173, -0.018698614090681076, -0.003372237551957369, 0.007831214927136898, -0.017494840547442436, 0.013214757665991783, -0.0016317818081006408, 0.028944063931703568, -0.012846937403082848, -0.013328447006642818, 0.006115837953984737, -0.001900958945043385, 0.027245406061410904, 0.0017989726038649678, -0.014913415536284447, -0.010392577387392521, -0.00425333296880126, 0.012412241660058498, 0.012365428730845451, -0.012492493726313114, 0.013321759179234505, -0.005370167084038258, -0.0047716242261230946, -0.004079454578459263, -0.001629273989237845, 0.016010187566280365, 0.00532669760286808, 0.017789097502827644, 0.02268444187939167, 0.00026875914772972465, 0.0012639621272683144, -0.020811906084418297, -0.027713539078831673, -0.0026666924823075533, -0.013843394815921783, -0.004132955335080624, -0.006259622052311897, 0.005587514955550432, 0.038467250764369965, 0.004363678861409426, -0.006961822975426912, -0.006573940627276897, -0.022898446768522263, -0.0011277016019448638, 0.0006704349652864039, -0.00227713817730546, 0.006777913309633732, 0.019166748970746994, -0.0076105231419205666, -0.01626431755721569, -0.006828070618212223, 0.0038353558629751205, 0.04009903222322464, -0.003751760581508279, 0.014070774428546429, -0.029586076736450195, 0.0085334163159132, -0.012311927042901516, 0.013856769539415836, 0.018190354108810425, -0.0010424343636259437, 0.008874485269188881, 0.00029279279988259077, 0.03943026810884476, 0.00787802878767252, -0.010011382400989532, -0.011208468116819859, -0.019835511222481728, 0.00025684680440463126, -0.030281590297818184, -0.011268656700849533, -0.02864980883896351, 0.004524182062596083, 0.011796980164945126, -0.0176954697817564, 0.006523783318698406, 0.015047168359160423, 0.005841644946485758, 0.044084858149290085, -0.007764338981360197, 0.0029007596895098686, -0.005433699581772089, -0.018524736166000366, 0.025105364620685577, -0.05045148357748985, -0.007436644751578569, -0.025693874806165695, 0.02160104550421238, 0.03370565548539162, 0.007784401532262564, -0.020263519138097763, 0.013589264824986458, -0.013789894059300423, 0.0018591611878946424, -0.0056543913669884205, 0.022898446768522263, -0.012953939847648144, 0.027312282472848892, 0.026028256863355637, 0.010579830966889858, -0.002492814091965556, -0.0371297225356102, 0.0075904605910182, -0.029184818267822266, 0.001282353070564568, -0.010125072672963142, -0.017561716958880424, 0.015461801551282406, 0.0053902301006019115, -0.01936737820506096, -0.03169936686754227, 0.012418929487466812, 0.01472616195678711, -0.01400389801710844, 0.02217618189752102, 0.012559370137751102, -0.018364232033491135, 0.012091235257685184, -0.013776518404483795, -0.007951592095196247, 0.009436246007680893, 0.0076305861584842205, -0.004142987076193094, -0.01490003988146782, 0.01815022900700569, -0.004948846530169249, -0.026964524760842323, 0.018203729763627052, 0.016117189079523087, -0.0077710263431072235, -0.00118120270781219, 0.015889810398221016, 0.03383940830826759, -0.01366282906383276, -0.04544913396239281, 0.0003788960457313806, -0.002384140156209469, 0.011663227342069149, 0.02519899047911167, -0.017561716958880424, 0.02985358238220215, 0.024623854085803032, -0.0007318775169551373, 0.01999601535499096, -0.007269454188644886, -0.01987563632428646, -0.028221799060702324, 0.020383896306157112, -0.0022085898090153933, 0.025412995368242264, 0.013676203787326813, -0.028917312622070312, -0.036969222128391266, 0.0001725199690554291, -0.002581425243988633, -0.004607777111232281, -0.010733646340668201, 0.0031682648696005344, 0.014017272740602493, -0.03258213400840759, -0.015287922695279121, -0.6278882622718811, -0.007670711725950241, 0.01587643474340439, -0.026255637407302856, -0.012599495239555836, -0.009242305532097816, 0.018591612577438354, 0.012124673463404179, -0.0038888570852577686, 0.007643961347639561, -0.005172882229089737, 0.010245449841022491, -0.008974799886345863, -0.010472829453647137, -0.011422473005950451, -0.008419726975262165, 0.021734798327088356, -0.0011527802562341094, -0.020704902708530426, 0.02235005982220173, -0.011175029911100864, 0.03223437815904617, -0.0034140353091061115, 0.012124673463404179, 0.012378803454339504, -0.0047549051232635975, 0.022697817534208298, -0.003307033097371459, -0.011696665547788143, 0.024704106152057648, -0.022992072626948357, 0.01610381342470646, 0.029532575979828835, -0.010874086990952492, 0.03959077224135399, -0.0012614543084055185, -0.011937419883906841, 0.009509810246527195, 0.026830771937966347, 0.04194481670856476, -0.03418716788291931, -0.010553080588579178, 0.021333539858460426, 0.020664777606725693, 0.0008008436998352408, -0.010840648785233498, 0.008372913114726543, 0.00029279279988259077, -0.01598343625664711, 0.00700194900855422, 0.005346760619431734, -0.02291182056069374, -0.013415385968983173, 0.008580229245126247, -0.001557381940074265, -0.008673856034874916, 0.024837858974933624, -0.01065339520573616, 0.015943311154842377, 0.01638469472527504, 0.0031465301290154457, 0.011984233744442463, -0.014846539124846458, -0.06141919642686844, -0.046198148280382156, 0.004978940822184086, 0.0003157815372105688, -0.038922008126974106, 0.03905576094985008, -0.006283028516918421, 0.019661633297801018, 0.005142787471413612, -0.0005024082493036985, -0.010125072672963142, -0.005376854911446571, 0.016117189079523087, 0.041623812168836594, -0.004102861043065786, -0.006624097935855389, 0.014458656311035156, -0.0008585245232097805, -0.014418531209230423, -0.025974756106734276, -0.022778069600462914, 0.02605500817298889, 0.006721068639308214, -0.03183311969041824, -0.0010524658719077706, -0.014859914779663086, -0.0038955446798354387, 0.0176954697817564, 0.0027653351426124573, -0.007844590581953526, -0.051414500921964645, 0.0024376411456614733, 0.021467292681336403, 0.00731626758351922, -0.009603437036275864, -0.01297400239855051, -0.029719829559326172, -0.046251650899648666, -0.022617565467953682, -0.0012606183299794793, 0.005236414726823568, 0.02663014456629753, 0.012913813814520836, -0.00908180233091116, -0.025158865377306938, 0.03624695539474487, -0.02240356057882309, 0.009877629578113556, -0.021173037588596344, -0.003238484961912036, -0.01861836202442646, 0.00027022205176763237, -0.03145861253142357, 0.019741885364055634, -0.007670711725950241, -0.012117985635995865, -0.02240356057882309, -0.0045944019220769405, 0.014498782344162464, 0.0021249945275485516, -0.0036781965754926205, -0.0004819273599423468, 0.03306364268064499, 0.0002844332775566727, 0.009529872797429562, 0.018257230520248413, 0.0033354556653648615, 0.01809672825038433, -0.014793038368225098, 0.018551485612988472, -0.016464944928884506, 0.012325302697718143, -0.009797378443181515, 0.0014319887850433588, 0.01096771378070116, 0.015167545527219772, -0.022604189813137054, 0.005574139766395092, -0.013696267269551754, 0.013020816259086132, 0.003935670480132103, -0.010753709822893143, -0.015622304752469063, -0.018230481073260307, 0.01395039726048708, -0.008901235647499561, -0.00896811205893755, -0.04312184080481529, -0.01695983111858368, -0.011007839813828468, 0.040874797850847244, 0.0003308287123218179, 0.0070688254199922085, 0.007951592095196247, -0.03547118976712227, -0.01753496751189232, -0.046251650899648666, -0.01649169623851776, 0.0245837289839983, -0.012164799496531487, 0.01366282906383276, -0.005192944779992104, -0.011221843771636486, -0.007978343404829502, -0.00021609404939226806, -0.012686435133218765, -0.015274547971785069, 0.007677399553358555, -0.015970060601830482, 0.023272953927516937, 0.037718236446380615, -0.021066036075353622, 0.00894136168062687, -0.021400416269898415, 0.01171672809869051, -0.001321642892435193, 0.002342342399060726, 0.02273794263601303, 0.03699596971273422, -0.0068347579799592495, -0.009864254854619503, 0.011241906322538853, 0.027285531163215637, -0.006580627989023924, 0.020664777606725693, -0.039323266595602036, 0.011261969804763794, -0.00087357172742486, 0.016638824716210365, -0.009349307045340538, -0.015341423451900482, -0.011703353375196457, -0.006109150126576424, -0.023326454684138298, -0.010900837369263172, -0.030736349523067474, 0.025305993854999542, 0.006463594734668732, 0.0016886265948414803, -0.013194694183766842, -0.005707892589271069, 0.0041563622653484344, -0.03341140225529671, 0.01349563803523779, -0.020424023270606995, 0.020250145345926285, -0.00518291350454092, 0.007964967750012875, -0.009830816648900509, -0.0023507019504904747, -0.02617538534104824, -0.0006323990528471768, 0.028890563175082207, -0.014418531209230423, 0.01586305908858776, 0.004159706179052591, 0.0004273813683539629, 0.0008936346275731921, 0.0005642687901854515, 0.027633288875222206, 0.006125869229435921, -0.001184546505101025, 0.014164401218295097, -0.013910271227359772, 0.005828269757330418, 0.012793436646461487, -0.012479118071496487, 0.008914611302316189, 0.017441339790821075, 0.014258028008043766, -0.0031264671124517918, 0.011342220939695835, 0.01821710541844368, 0.04309508949518204, -0.02566712535917759, 0.02870330959558487, -0.024048717692494392, 0.00956999883055687, 0.007777714170515537, 0.02800779603421688, -0.021748173981904984, 0.0032150782644748688, 0.009269055910408497, 0.007817840203642845, 0.0022587471175938845, -0.013963771983981133, 0.025279242545366287, -0.011241906322538853, 0.00993781816214323, -0.006841445807367563, -0.00959674920886755, 0.017387839034199715, -0.0121714873239398, 0.003798573976382613, 0.010867399163544178, 0.0218284260481596, 0.015060543082654476, -0.004741529934108257, 0.01243230514228344, -0.003251860151067376, -0.009516498073935509, 0.019220249727368355, -0.010787148028612137, -0.0013600968522951007, -0.02399521693587303, -0.012311927042901516, -0.018123477697372437, -0.017601842060685158, -0.028623057529330254, -0.018551485612988472, -0.021614421159029007, -0.0210794098675251, -0.006707692984491587, -0.0006353248609229922, 0.02950582467019558, 0.006717724725604057, 0.016478320583701134, -0.00944962166249752, -0.02275131829082966, 0.031538862735033035, -0.006597347091883421, -0.006761194206774235, -0.01718720979988575, -0.01403064839541912, -0.0008677200530655682, -0.008834359236061573, 0.008346162736415863, -0.020210018381476402, 0.00015454695676453412, -0.010533018037676811, 0.016705701127648354, -0.0014077462255954742, 0.024490101262927055, 0.0526985265314579, -0.008426413871347904, 0.00017022108659148216, 0.015595553442835808, 0.005162850487977266, 0.01303419191390276, -0.010847336612641811, -0.017387839034199715, 0.04938146099448204, -0.035551443696022034, -0.01292050164192915, -0.02118641324341297, 0.0014779663179069757, -0.02130679041147232, 0.0173075869679451, -0.02354045957326889, -0.03025483898818493, -0.0009906052146106958, -0.019862262532114983, 0.006597347091883421, -0.009636875241994858, 0.0016535165486857295, 0.04033978655934334, 0.014886665157973766, -0.015368174761533737, -0.03301014378666878, -0.003484255401417613, 0.02749953605234623, 0.0667693018913269, 0.011730103753507137, -0.012298552319407463, 0.01964825764298439, -0.020531024783849716, -0.01753496751189232, -0.01415102556347847, -0.03983152657747269, 0.03180636838078499, -0.01610381342470646, -0.014833164401352406, -0.00046938806190155447, 0.034454669803380966, -0.015194295905530453, -0.00455427635461092, 0.02681739814579487, 0.013669515959918499, -0.012271801941096783, -0.008386288769543171, 0.0062362151220440865, -0.006473626010119915, 0.0029793393332511187, 0.020383896306157112, 0.024704106152057648, 0.04651915654540062, 0.050959743559360504, 0.025305993854999542, 0.002780382288619876, 0.011643164791166782, -0.014472031965851784, -0.018431108444929123, 0.0060757119208574295, -0.009389433078467846, 0.019902387633919716, -0.009182116016745567, 0.033304400742053986, 0.0002008378942264244, -0.02779379114508629, -0.007202577777206898, 0.018925994634628296, -0.002028023824095726, 0.017962975427508354, 0.011643164791166782, -0.008854422718286514, 0.019220249727368355, -0.02275131829082966, 0.008459852077066898, 0.03252863511443138, -0.011897293850779533, -0.011850480921566486, 0.010238762013614178, 0.002924166386947036, -0.0057714250870049, 0.022202933207154274, 0.008814296685159206, 0.0035210372880101204, 0.00024597940500825644, -0.00259145675227046, 0.006145932245999575, -0.03453492373228073, -0.04796368628740311, 0.00819234736263752, -0.00022821538732387125, -0.0020915563218295574, -0.010546392761170864, -0.013529076240956783, -0.020664777606725693, 0.015849683433771133, -0.03568519651889801, 0.02165454626083374, 0.011422473005950451, -0.03827999532222748, -0.033197395503520966, 0.0026499736122787, 0.02784729190170765, 0.011609726585447788, 0.005841644946485758, -0.0041362992487847805, -0.009556624107062817, 0.019394127652049065, 0.0018508016364648938, -0.03418716788291931, 0.009924443438649178, -0.030682846903800964, -0.02176154963672161, -0.03536418825387955, 0.0015924919862300158, 0.0017153772059828043, -0.01214473694562912, 0.006202776916325092, -0.00944962166249752, -0.027298906818032265, -0.0027853979263454676, -0.0027619912289083004, 0.016010187566280365, 0.03482917696237564, 0.023500332608819008, 0.014258028008043766, 0.036969222128391266, -0.03833349794149399, 0.01685282774269581, -0.014070774428546429, -0.0007536123157478869, -0.007403206545859575, 0.014739537611603737, -0.0024125627242028713, 0.007864653132855892, -0.02790079452097416, 0.024717481806874275, -0.019808761775493622, -0.0075102089904248714, -0.0038052615709602833, -0.006055649369955063, -0.016759201884269714, 0.039162762463092804, -0.0001548604341223836, 0.001641813199967146, 0.044994376599788666, 0.0053166658617556095, -0.010586518794298172, 0.006336529739201069, -0.03292988985776901, 0.04100855067372322, 0.010700208134949207, -0.00939612090587616, 0.026857523247599602, 0.019848886877298355, -0.027927543967962265, -0.03132485970854759, 0.011215155944228172, 0.001579952659085393, 0.017668718472123146, -0.005206319969147444, -0.007476770784705877, -0.03672846406698227, -0.009904380887746811, 0.016999956220388412, 0.005741330794990063, -0.016184065490961075, 0.019113248214125633, -0.014431905932724476, 0.003898888360708952, 0.0014018944930285215, -0.00518291350454092, -0.008961424231529236, -0.027138404548168182, -0.011990921571850777, -0.024048717692494392, 0.008439789526164532, 0.01931387558579445, -0.0065572215244174, -0.015970060601830482, -0.021922051906585693, -0.02188192680478096, 0.019032996147871017, -0.01219823770225048, -0.0055507333017885685, -0.003758448176085949, 0.046305153518915176, 0.013602640479803085, 0.027312282472848892, 0.023914966732263565, 0.006443531718105078, 0.008446477353572845, -0.020303646102547646, -0.008493290282785892, -0.022537313401699066, -0.025586873292922974, -0.006476969923824072, 0.009302494116127491, 0.018069976940751076, 0.006821382790803909, -0.0009337603696621954, 0.0015924919862300158, 0.009061738848686218, 0.02950582467019558, 0.0006762866396456957, -0.012940564192831516, -0.016411444172263145, -0.03870800510048866, -0.016571948304772377, 0.025881128385663033, 0.008446477353572845, 0.0007293696980923414, -0.01666557416319847, 0.0239550918340683, 0.030281590297818184, -0.025921255350112915, 0.026683645322918892, -0.0022654347121715546, 0.03373240679502487, 0.008693919517099857, -0.002374108647927642, 0.014258028008043766, 0.015007042326033115, -0.020932283252477646, -0.01205779705196619, -0.027018025517463684, -0.021092785522341728, 0.012224988080561161, 0.020424023270606995, 0.019380751997232437, 0.007577084936201572, 0.007416582200676203, -0.005423668306320906, 0.01718720979988575, -0.010907525196671486, 0.0014579034177586436, 0.02067815326154232, -0.012887063436210155, 0.015996811911463737, -0.03333114832639694, -0.014552283100783825, 0.00850666593760252, -0.011703353375196457, 0.02142716757953167, -0.0007022011559456587, 0.031191106885671616, -0.02692439965903759, -0.003982483875006437, 0.012151423841714859, -0.01889924332499504, 0.031003853306174278, 0.036006201058626175, 0.024035343900322914, 0.005460449960082769, 0.014846539124846458, -0.014057398773729801, -0.023861464112997055, 0.0016877907328307629, -0.03105735592544079, 0.008199035190045834, 0.03959077224135399, -0.006707692984491587, -0.011763541959226131, -0.00701532419770956, -0.023072324693202972, -0.004166393540799618, -0.02601488120853901, 0.014338279142975807, 0.005697860848158598, 0.0029291820246726274, -0.034561675041913986, -0.019166748970746994, -0.0030478874687105417, 0.02491811104118824, -0.014645909890532494, 0.014993666671216488, 0.009382745251059532, -0.005132756195962429, 0.01520767156034708, 0.03819974511861801, 0.009302494116127491, 0.015622304752469063, 0.00879423413425684, -0.0030997167341411114, 0.0018725364934653044, -0.007262766361236572, -0.012452367693185806, -0.012111298739910126, 0.009175429120659828, 0.03878825530409813, -0.03252863511443138, 0.012940564192831516, 0.02240356057882309, 0.025051863864064217, -0.01174347847700119, 0.0035611630883067846, -0.020771779119968414, 0.029425572603940964, -0.0015323032857850194, 0.005106005817651749, 0.010713583789765835, 0.02697790041565895, 0.011890606954693794, -0.03151211515069008, -0.01758846826851368, -0.0072092656046152115, 0.013308384455740452, 0.01289375126361847, 0.016344567760825157, -0.018203729763627052, -0.026844147592782974, -0.010546392761170864, -0.0007995897904038429, -0.01690632849931717, 0.014538908377289772, 0.00833947490900755, 0.007757651153951883, -0.027352407574653625, 0.0016342896269634366, 0.009944505989551544, -0.004059391561895609, -0.009075114503502846, 0.00018338736845180392, -0.014418531209230423, -0.002564706141129136, 0.015849683433771133, -0.01964825764298439, 0.016531821340322495, 0.01245905552059412, 0.008125470951199532, -0.040634043514728546, 0.022550689056515694, -0.03223437815904617, -0.011208468116819859, 0.004922095686197281, 0.007269454188644886, -0.018190354108810425, 0.008747420273721218, 0.02624226175248623, 0.009121927432715893, -0.0019912419375032187, -0.0070487624034285545, 0.007918153889477253, 0.013462199829518795, 0.006199433468282223, -0.01748146489262581, -0.004564307630062103, 0.00423995777964592, -0.012953939847648144, 0.00228382577188313, 0.007730900775641203, -0.01480641309171915, 0.003116435604169965, -0.014926791191101074, 0.008934673853218555, -0.007222640793770552, -0.04571663960814476, -0.020544400438666344, -0.009462997317314148, 0.011710040271282196, -0.0015941638266667724, -0.00807197019457817, 0.008647105656564236, -0.017962975427508354, -0.013295008800923824, 0.021333539858460426, -0.027981044724583626, 0.010492892004549503, 0.027339031919836998, -0.0017638624412938952, 0.009917755611240864, 0.021440543234348297, -0.021226538345217705, -0.010285574942827225, -0.02399521693587303, -0.016250941902399063, -0.03849399834871292, -0.008573542349040508, -0.005370167084038258, 0.022724566981196404, -0.0031983591616153717, -0.030281590297818184, -0.020691528916358948, -0.001884239842183888, -0.02921156957745552, -0.014953541569411755, -0.03622020408511162, 0.01695983111858368, 0.03177962079644203, 0.010546392761170864, 0.0044171796180307865, 0.03212737664580345, -0.00894136168062687, 0.001645156997255981, -0.033491652458906174, 0.0035645070020109415, -0.027633288875222206, -0.008346162736415863, 0.029345322400331497, -0.020490899682044983, -0.04839169234037399, -0.0014629191718995571, -0.009262368083000183, 0.0016602042596787214, 0.0019109903369098902, -0.008981487713754177, 0.0016083751106634736, 0.006015523336827755, -0.007476770784705877, 0.013321759179234505, 0.0010591534664854407, 0.01689295470714569, 0.015114044770598412, -0.04371035099029541, -0.006547190248966217, 0.019969264045357704, -0.004367022775113583, -0.006647504400461912, 0.012124673463404179, 0.007844590581953526, -0.020183268934488297, -0.003584569785743952, -0.014458656311035156, -0.016986580565571785, -0.007570397574454546, 0.004320209380239248, 0.014244652353227139, 0.015435051172971725, 0.01251255627721548, 0.04237282648682594, -0.005958678666502237, -0.03070959821343422, -0.008112095296382904, -0.004119580145925283, 0.003758448176085949, 0.012626245617866516, 0.024142345413565636, -0.026108508929610252, 0.008573542349040508, -0.000912861549295485, 0.0038754816632717848, 0.007075512781739235, -0.017802471294999123, -0.013074317015707493, -0.006624097935855389, -0.0011101466370746493, -0.0041730813682079315, -0.004798374604433775, -0.004667966160923243, 0.0038687940686941147, 0.0035812261048704386, -0.013020816259086132, 0.012739935889840126, -0.006239559035748243, 0.024998361244797707, -0.027071528136730194, -0.0022888414096087217, 0.008292661979794502, 0.007155764382332563, -0.0373704768717289, 0.013395323418080807, 0.019581381231546402, 0.020611276850104332, 0.008178971707820892, 0.19292475283145905, 0.017267461866140366, 0.006453563459217548, 0.03643421083688736, 0.01609043776988983, 0.004129611887037754, 0.017200585454702377, 0.013101067394018173, -0.011342220939695835, -0.0015264516696333885, -0.0011327173560857773, -0.0004898689221590757, -0.003748416667804122, -0.0012112969998270273, 0.018364232033491135, 3.3699387131491676e-05, -0.024837858974933624, -0.020263519138097763, -0.007684087380766869, -0.007142389193177223, 0.0020230081863701344, -0.01650507189333439, -0.011562912724912167, 0.004838500637561083, 0.023045573383569717, -0.0026265669148415327, 0.00502575421705842, 0.0054102931171655655, 0.029826831072568893, 0.01947437971830368, -0.013268258422613144, 0.004677997436374426, 0.010780460201203823, 0.0057747685350477695, -0.01827060617506504, -0.012960627675056458, 0.023794587701559067, -0.0014219573931768537, -0.01609043776988983, 0.023981843143701553, -0.0023339830804616213, -0.026857523247599602, 0.018885867670178413, -0.020022764801979065, 0.003607976483181119, 0.006069024559110403, -0.0115428501740098, 0.016184065490961075, -0.010011382400989532, 0.009977944195270538, 0.001809003995731473, -0.01340201124548912, 0.01234536524862051, 0.011181717738509178, -0.007570397574454546, -0.011750166304409504, 0.0007189202588051558, 0.011221843771636486, -0.019661633297801018, -0.013101067394018173, -0.018404358997941017, 0.012739935889840126, 0.006199433468282223, 0.0015063887694850564, -0.030682846903800964, 0.0029158068355172873, -0.01661207340657711, 0.03255538269877434, 0.00350097450427711, 0.008011780679225922, -0.01683945395052433, -0.01263293344527483, -0.03662146255373955, 0.013047566637396812, -0.018604988232254982, -0.018805615603923798, 0.00795827992260456, 0.006550533697009087, 0.006152620073407888, 0.014164401218295097, -0.018872492015361786, 0.0065906597301363945, -0.04290783777832985, 0.004885314032435417, 0.00318665592931211, -0.03046884387731552, 0.029987333342432976, -0.01849798485636711, -0.022202933207154274, -0.01833748258650303, -0.001279009273275733, -0.0061492761597037315, -0.011770229786634445, -0.017026707530021667, 0.005891802255064249, -0.01214473694562912, 0.008921299129724503, 0.03255538269877434, -0.009068426676094532, -0.031993623822927475, -0.017213961109519005, 0.05515957623720169, 0.008927986025810242, 0.016585323959589005, -0.012358740903437138, 0.015341423451900482, -0.0006177698378451169, 0.0198221355676651, -0.011188405565917492, -0.014164401218295097, -0.00334381521679461, -0.04146330803632736, 0.007236015982925892, -0.00578480027616024, 0.015822933986783028, 0.019287126138806343, 0.013268258422613144, -0.042533326894044876, -0.010479516349732876, 0.0020079610403627157, 0.018029851838946342, -0.0032970018219202757, 0.03001408465206623, -0.0007866325322538614, -0.017682094126939774, -0.0328763909637928, -0.013174631632864475, 0.033652156591415405, -0.035551443696022034, -0.03667496517300606, 0.011837105266749859, -0.027245406061410904, 0.01610381342470646, -0.00731626758351922, -0.012646309100091457, 0.017147084698081017, 0.009188803844153881, -0.019287126138806343, -0.00423995777964592, -0.0038052615709602833, 0.0029392135329544544, 0.018591612577438354, 0.03169936686754227, 0.007162452209740877, -0.007523584179580212, 0.0027268812991678715, 0.0013458855682983994, -0.01125528197735548, -0.006754506379365921, -0.029291819781064987, -0.0030244807712733746, 0.03202037513256073, 0.01326157059520483, -0.010185261256992817, 0.045395635068416595, -0.004039328545331955, -0.01520767156034708, -0.0358724482357502, 0.0020129766780883074, 0.01205779705196619, -0.05264502391219139, 0.011817042715847492, 0.03145861253142357, 0.002424265956506133, -0.006848133634775877, -0.019260374829173088, -0.1686352789402008, 0.011335533112287521, 0.0020163205917924643, -0.01631781831383705, 0.016652200371026993, 0.020771779119968414, 0.011616413481533527, -0.0003628039557952434, -0.005768081173300743, 0.0064301565289497375, -0.002009632997214794, 0.0014921774854883552, -0.011308782733976841, 0.004674653522670269, 0.019501129165291786, -0.010385889559984207, -0.008834359236061573, 0.015742681920528412, 0.057192616164684296, 0.01896611973643303, 0.030121086165308952, -0.023125825449824333, -0.0010165198473259807, 0.0014562314609065652, 0.02676389552652836, 0.005881770979613066, 0.0008802593220025301, 0.0027268812991678715, 0.0019377408316358924, -0.03504318371415138, -0.00518291350454092, -0.006359936203807592, 0.012224988080561161, -0.005604234058409929, 0.029933832585811615, 0.001318299095146358, 0.008593604899942875, 0.005360135808587074, 0.004243301227688789, 0.01174347847700119, 0.015394925139844418, 0.01111484132707119, 0.01245905552059412, 0.01080052275210619, 0.02875681035220623, 0.02097240835428238, 0.006283028516918421, -0.015221046283841133, 0.015970060601830482, -0.017575092613697052, 0.029586076736450195, -0.03723672404885292, 0.00697519863024354, 0.01007825881242752, 0.0013759799767285585, -0.009001550264656544, 0.00365813379175961, 0.00785127840936184, -0.007550334557890892, -0.01976863481104374, -0.003621351905167103, 0.0011168342316523194, 0.018310731276869774, -0.0042098634876310825, -0.002947573084384203, -0.020370522513985634, 0.023861464112997055, 0.028783561661839485, 0.0009053379762917757, 0.0012163127539679408, 0.01610381342470646, 0.019969264045357704, -0.012358740903437138, 0.02062465250492096, -0.012900439091026783, 0.009877629578113556, -0.04387085512280464, 0.01586305908858776, 0.017040081322193146, 0.00310807628557086, 0.013803268782794476, 0.009817440994083881, -0.011970858089625835, 0.0011653195833787322, -0.008473227731883526, 0.006045617628842592, 0.008426413871347904, -0.0022721223067492247, -0.00824584811925888, 0.0008618683787062764, 0.030629346147179604, -0.0076506491750478745, -0.021066036075353622, 0.016652200371026993, 0.021641172468662262, 0.0035444439854472876, 0.027125028893351555, -0.007175827398896217, 0.010031445883214474, 0.0067310999147593975, 0.012285176664590836, -0.0010875759180635214, -0.026549892500042915, 0.017173834145069122, 0.015140795148909092, 0.025506621226668358, 0.005985429044812918, 0.002044742926955223, 0.03202037513256073, -0.01758846826851368, -0.011796980164945126, 0.009462997317314148, 0.02659001760184765, 0.0018925993936136365, 0.008031844161450863, 0.013676203787326813, 0.008031844161450863, -0.026951150968670845, 0.01303419191390276, -0.010874086990952492, 0.05435705929994583, -0.027232030406594276, -0.018417734652757645, 0.0211997888982296, 0.012579432688653469, -0.0005943631404079497, -0.11181718111038208, -0.03167261555790901, 0.020370522513985634, 0.02285831980407238, -0.028783561661839485, 0.008018468506634235, -0.0032435005996376276, 0.0411422997713089, -0.02337995544075966, 0.01729421131312847, -0.028141548857092857, -0.02985358238220215, -0.0016919705085456371, 0.006283028516918421, 0.007403206545859575, 0.0051762256771326065, 0.0013718002010136843, 0.0023155920207500458, -0.007429957389831543, 0.047401923686265945, 0.00807197019457817, -0.017441339790821075, 0.015007042326033115, -0.022898446768522263, -0.023406706750392914, -0.021494043990969658, -0.02273794263601303, 0.0060088359750807285, 0.025158865377306938, 0.009549936279654503, 0.026162009686231613, -0.011629789136350155, 0.012231675907969475, -0.0029559326358139515, -0.017387839034199715, -0.01666557416319847, -0.021801674738526344, -0.006222839932888746, 0.010573143139481544, -0.04149005934596062, -0.005112693179398775, -0.0053902301006019115, -0.009757252410054207, -0.021801674738526344, 0.013221445493400097, 0.0014420202933251858, -0.00807865709066391, 0.03557819500565529, 0.00670100562274456, -0.025693874806165695, -0.0076105231419205666, -0.00503912940621376, -0.01128203235566616, -0.018698614090681076, 0.027767041698098183, -0.005834957584738731, 0.023353204131126404, 0.005644360091537237, -0.013181319460272789, -0.0014762943610548973, 0.002889056224375963, -0.0051093497313559055, -0.008272598497569561, 0.03070959821343422, 0.0010716927936300635, 0.012559370137751102, -0.001249750959686935, -0.0011761869536712766, -0.0085334163159132, 0.0005044981371611357, -0.002875681035220623, 0.0003674016916193068, -0.028168298304080963, 0.010847336612641811, -0.005049160681664944, -0.0007791089010424912, -0.022764693945646286, -0.03742397949099541, 0.015528677962720394, 0.0041095488704741, -0.012311927042901516, -0.007918153889477253, -0.009489747695624828, -0.0356316938996315, 0.01219823770225048, 0.018818991258740425, 0.017374463379383087, -0.013221445493400097, 0.03613995388150215, -0.040981799364089966, 0.022122681140899658, -0.00471143564209342, 0.008252535946667194, -0.00865379348397255, -0.014084149152040482, 0.020771779119968414, -0.013569202274084091, 0.017896099016070366, 0.030388591811060905, -0.002924166386947036, -0.018190354108810425, -0.021627796813845634, -0.04044678807258606, 0.022604189813137054, -0.008934673853218555, 0.013856769539415836, 0.005453762598335743, -0.019032996147871017, -0.02578750252723694, -0.00031724447035230696, -0.01274662371724844, 0.010044820606708527, -0.03386615961790085, 0.009329244494438171, -0.02411559410393238, -0.008419726975262165, -0.013241508044302464, -0.0034106913954019547, 0.004196487832814455, -0.003989171702414751, 0.002920822473242879, 0.0011402409290894866, -0.029479075223207474, -0.0005663586780428886, 0.010405953042209148, 0.015595553442835808, -0.006069024559110403, -0.000631145085208118, -0.006222839932888746, 0.019407503306865692, -0.018123477697372437, -0.007169139571487904, 0.012499180622398853, -0.0015356470830738544, -0.0010583174880594015, 0.022095929831266403, -0.026362638920545578, -0.021453918889164925, 0.01661207340657711, -0.014833164401352406, 0.01873873919248581, 0.004380397964268923, -0.012017671950161457, -0.007409894373267889, 0.04106204956769943, -0.011208468116819859, -0.014445281587541103, -0.01523442193865776, -0.01736108772456646, -0.003077981760725379, 0.0023507019504904747, 0.0321006253361702, 0.03202037513256073, 0.013509012758731842, 0.0009479715954512358, -0.03448142111301422, -0.013562514446675777, -0.015849683433771133, 0.015073918737471104, 0.03151211515069008, 0.00882098451256752, -0.02669702097773552, 0.0296128261834383, 0.020945658907294273, 0.00698857381939888, -0.009416183456778526, 6.468192441388965e-05, -0.01397714763879776, -0.03667496517300606, 2.595375190139748e-05, -0.005380198359489441, -0.04210532084107399, -0.0038855131715536118, -0.010004694573581219, 0.013201382011175156, 0.02715177834033966, 0.028676558285951614, 0.00856016669422388, -0.0003097208682447672, -0.010847336612641811, -0.00988431740552187, 0.022657690569758415, 0.04919420927762985, -0.010954338125884533, -0.02926507033407688, -0.0012990721734240651, 0.022844946011900902, 0.005584171507507563, -0.01053970493376255, 0.0198221355676651, -0.00251956470310688, 0.0011076388182118535, -0.0020531024783849716, -0.025747377425432205, -0.023848090320825577, 0.024623854085803032, 0.008205722086131573, 0.0356316938996315, -0.01879224181175232, 0.022149432450532913, 0.012117985635995865, 0.028837062418460846, -0.0038754816632717848, 0.006761194206774235, 0.00856016669422388, 0.005443730857223272, -0.017053456977009773, -0.000896142446435988, -0.009844191372394562, -0.027927543967962265, 0.028328802436590195, 0.02697790041565895, 0.0011118185939267278, 0.0003387702745385468, 0.00731626758351922, 0.003012777538970113, -0.018578236922621727, -0.002338998718187213, -0.0056343283504247665, -0.02153416909277439, -0.015836307778954506, -0.0006043945904821157, -0.005239758174866438, 0.011302094906568527, 0.02113291248679161, -0.01815022900700569, 0.02440985105931759, 0.029372071847319603, 0.007503521163016558, -0.015542052686214447, 0.009870942682027817, -0.011148279532790184, 0.023460207507014275, 0.009402807801961899, 0.016424819827079773, -0.012833562679588795, -0.00865379348397255, -0.018297355622053146, -0.0035310687962919474, 0.011422473005950451, -0.013696267269551754, 0.08110757917165756, 0.022671066224575043, -0.03087010234594345, 0.00011525712761795148, -0.008660481311380863, 0.016625449061393738, 0.029024315997958183, -0.007690774742513895, 0.025814253836870193, -0.01833748258650303, 0.02074502967298031, -4.921677827951498e-05, -0.02899756468832493, -0.02749953605234623, -0.011877231299877167, -0.0027452721260488033, 0.009730502031743526, 0.011034590192139149, -0.021962177008390427, 0.004494087770581245, 0.01804322563111782, 0.002404203172773123, 0.027526285499334335, -0.010793834924697876, -0.02055777609348297, -0.004938814789056778, 0.038172993808984756, 0.017855972051620483, -0.003648102283477783, -0.036006201058626175, 0.0032334693241864443, -0.007028699386864901, -0.009041676297783852, 0.0004050196148455143, -0.004500775132328272, -0.013749768026173115, -0.00326523557305336, -0.004126267973333597, -0.01816360466182232, 0.01245905552059412, 0.0043135215528309345, 0.012204925529658794, -0.022844946011900902, -0.01724071055650711, 0.024503476917743683, -0.004049360286444426, 0.018003100529313087, -0.029398823156952858, -0.02057114988565445], "8d778cbe-44af-4021-8883-57a9b6681098": [-0.031231621280312538, -0.030498355627059937, 0.0007701819413341582, -0.035495415329933167, -0.004243426490575075, 0.019784552976489067, 0.0015284823020920157, -0.028026985004544258, -0.013185175135731697, -0.053148072212934494, 0.005054770037531853, 0.009070749394595623, -0.0023050294257700443, -0.0010778304422274232, 0.012445122003555298, 0.0032165173906832933, 0.01716381311416626, -0.01769339293241501, 0.0015921336598694324, -0.023233609274029732, -0.024469295516610146, -0.005448559764772654, -0.023478031158447266, 0.014855388551950455, -0.024550769478082657, 0.00907753873616457, 0.010421856306493282, -0.012384016998112202, -0.0006365139852277935, -0.00014714081771671772, 0.018671076744794846, -0.001188159454613924, -0.020382028073072433, -0.004144979175180197, -0.0143393874168396, -0.0011355410097166896, 0.014434440061450005, -0.007156115025281906, 0.004365637432783842, -0.01613181084394455, 0.02715793065726757, 0.0015641270438209176, -0.007441272959113121, 0.014108545146882534, -0.010802066884934902, 0.03755941987037659, -0.0026360165793448687, 0.0018976604333147407, -0.00943738128989935, -0.012044542469084263, -0.006351561285555363, 0.013144438154995441, 0.0012687846319749951, 0.008208484388887882, 0.0035984257701784372, -0.010822435840964317, 0.0009420407586731017, -0.00012942451576236635, 0.010224960744380951, 0.003941294737160206, 0.02258181944489479, 0.023844663053750992, -0.01830444484949112, -0.002812543185427785, -0.017639076337218285, -0.0200289748609066, -0.007190062198787928, -0.0156022310256958, -0.0004317686543799937, -0.0050038485787808895, 0.01546644140034914, 0.042963847517967224, 0.0036697154864668846, -0.007570273242890835, -0.006069797556847334, -0.006385508459061384, 0.005224506836384535, -0.000803280679974705, 0.0009938105940818787, -0.005553796887397766, 0.017571181058883667, -0.0037851366214454174, -0.014162860810756683, -0.0037953208666294813, 0.011372383683919907, 0.036636050790548325, -0.006935456767678261, 0.0027735037729144096, -0.029194775968790054, -0.017218127846717834, 0.00023211544612422585, -0.010496539995074272, 0.012064910493791103, 0.014203597791492939, -0.0002365710388403386, -0.0003316237998660654, 0.052686385810375214, 0.006528087891638279, -0.0023644373286515474, -0.02231024019420147, -0.024537190794944763, 0.003174083074554801, -0.04185037314891815, -0.013280228711664677, -0.02886888012290001, 0.006572219077497721, 0.015996022149920464, -0.022432450205087662, 0.013416018337011337, 0.0263567715883255, -0.022242344915866852, 0.04046531766653061, -0.01800570823252201, -0.000498602632433176, -0.008256010711193085, -0.021332554519176483, 0.026424666866660118, -0.03440909832715988, -0.0024323321413248777, -0.016349075362086296, 0.02578645572066307, 0.026899930089712143, 0.028705932199954987, -0.021631291136145592, 0.016566338017582893, -0.009186170063912868, -0.004484453238546848, -0.009844750165939331, 0.0050615593791007996, -0.010265697725117207, 0.024238454177975655, 0.023749610409140587, 0.013429597020149231, -0.005312770139425993, -0.03715204820036888, 0.01586023159325123, -0.039270367473363876, 0.003016227623447776, 0.001245021354407072, -0.011908752843737602, 0.017706971615552902, 0.022174451500177383, -0.004888427443802357, -0.021183185279369354, 0.01378943957388401, 0.02979225106537342, -0.008676959201693535, 0.02688635140657425, 0.016145389527082443, -0.019662342965602875, 0.010218171402812004, -0.021767081692814827, -0.014828230254352093, 0.007848641835153103, -0.005139638669788837, -0.01094464585185051, -6.060143732611323e-06, 0.018032865598797798, -0.009966961108148098, -0.02307066321372986, 0.013416018337011337, 0.002936451230198145, -0.014312230050563812, 0.0024985296186059713, 0.011379173025488853, 0.032127831131219864, 0.0016167456051334739, -0.04331690073013306, -0.003595031099393964, -0.0043554529547691345, 0.0064092716202139854, 0.029493512585759163, -0.023029925301671028, 0.035848468542099, 0.021441185846924782, -0.014991178177297115, 0.02173992432653904, -0.01199701614677906, -0.023654557764530182, -0.02818993292748928, 0.029547829180955887, -0.01480107195675373, 0.014217176474630833, 0.012601279653608799, -0.025800034403800964, -0.03489794209599495, 0.0089078014716506, -0.011983437463641167, 0.0003689659642986953, -0.010109540075063705, 0.015154125168919563, 0.006528087891638279, -0.033811625093221664, 0.0001105412666220218, -0.6265878081321716, -0.010021276772022247, -0.0012271989835426211, -0.026791298761963844, -0.0016337193083018064, -0.003992215730249882, 0.016539180651307106, 0.002069094916805625, -0.009226907044649124, 0.012363648042082787, 0.0074073257856070995, 0.015765178948640823, -0.009369486011564732, -0.02154981903731823, -0.011793331243097782, -0.002637714147567749, 0.0005160006694495678, -0.012838912196457386, -0.016837917268276215, 0.016240442171692848, -0.024034768342971802, 0.03150320053100586, 0.004487847909331322, -0.0020130816847085953, 0.009770065546035767, -0.019553709775209427, 0.03535962477326393, -0.009858328849077225, -0.023410135880112648, -0.001811094582080841, -0.025297611951828003, 0.025772877037525177, 0.02300276793539524, -0.009661434218287468, 0.0400579497218132, 7.166087016230449e-05, -0.024591507390141487, 0.030905725434422493, 0.030579829588532448, 0.04223058372735977, -0.03185625374317169, 0.0009046985651366413, 0.01144027803093195, 0.02066718600690365, -0.0179242342710495, 0.0014605874894186854, 0.0021709371358156204, 0.011094015091657639, -0.010965014807879925, -0.009057169780135155, 0.0046168481931090355, -0.039677735418081284, -0.00951885525137186, 0.014991178177297115, 0.007244378328323364, -0.014991178177297115, 0.032779622822999954, -0.013932018540799618, 0.013972755521535873, 0.012954332865774632, 0.002658082405105233, 0.008235642686486244, -0.0029534250497817993, -0.039650578051805496, -0.03256236016750336, 0.01167112123221159, 0.006477166432887316, -0.02876024879515171, 0.0129679124802351, -0.00561490235850215, 0.013185175135731697, -0.001012481632642448, -0.000940343365073204, -0.0028447932563722134, -0.0013451662380248308, 0.02051781676709652, 0.03612004965543747, 0.004623637534677982, -0.0054180072620511055, 0.018711814656853676, -0.0007867313106544316, -0.017068760469555855, -0.016077494248747826, -0.01933644711971283, 0.034273307770490646, 0.00016867621161509305, -0.02391255833208561, -0.005713349673897028, -0.0035610836930572987, -0.007373378146439791, 0.0015225415118038654, 0.012716701254248619, -0.011969857849180698, -0.0333227813243866, 0.008154168725013733, 0.020490659400820732, 0.0107545405626297, -0.004745848476886749, -0.023437295109033585, -0.0392160527408123, -0.03631015494465828, -0.0286787748336792, 0.00011902811820618808, 0.0056794025003910065, 0.0312044620513916, 0.024618664756417274, -0.026533298194408417, -0.03066130355000496, 0.03468067944049835, -0.041551634669303894, 0.01967592164874077, -0.006141087040305138, -0.020232658833265305, -0.035522572696208954, -0.006806456483900547, -0.02418413758277893, 0.019499395042657852, -0.010842803865671158, 0.0016651205951347947, -0.018671076744794846, -0.003937900066375732, 0.017530445009469986, 0.0011991923674941063, 0.000650941685307771, 0.008391800336539745, 0.025759298354387283, 0.002939846133813262, 0.005109085701406002, 0.003114675171673298, -0.0010286066681146622, 0.019241394475102425, -0.007699273526668549, 0.007678905036300421, -0.01094464585185051, 0.020490659400820732, 0.0124926483258605, 0.014054229483008385, 0.0118612265214324, 0.0019723447039723396, -0.03294257074594498, -0.004912190604954958, -0.007427694275975227, 0.015154125168919563, -0.0002122774167219177, -0.008113431744277477, -0.01218712143599987, -0.001366383396089077, 0.022717610001564026, -0.008778801187872887, -0.003360793925821781, -0.03745078667998314, -0.024835927411913872, 0.0011474225902929902, 0.0341646783053875, 0.0072240098379552364, 0.007339430972933769, 0.006565429735928774, -0.033811625093221664, -0.019458657130599022, -0.03435478359460831, -0.012784595601260662, 0.023817505687475204, -0.011514962650835514, 0.011698278598487377, -0.01564296893775463, -0.01144027803093195, -0.02051781676709652, -0.002216766122728586, -0.003917531576007605, -0.015235599130392075, -0.0009327051811851561, -0.010639119893312454, 0.010713803581893444, 0.029574986547231674, -0.02418413758277893, 0.02182139828801155, -0.01153533160686493, -0.00438600592315197, -0.010557645931839943, -0.0030281092040240765, 0.030634146183729172, 0.03870005160570145, -0.008323905989527702, -0.007142535876482725, 0.010129908099770546, 0.02941203862428665, 0.01567012630403042, 0.01727244444191456, -0.030987199395895004, -0.0017262259498238564, -0.021712765097618103, 0.014583809301257133, -0.0017117983661592007, 0.009410222992300987, -0.013714754953980446, 0.006640114355832338, -0.02262255735695362, 0.0010948041453957558, -0.021454766392707825, 0.021346133202314377, 0.002510411199182272, 0.012757438234984875, -0.007957274094223976, 0.0025613324251025915, 0.013830176554620266, -0.03253520280122757, 0.01428507175296545, -0.022323818877339363, 0.017489707097411156, -0.008052326738834381, 0.013117280788719654, -0.0030382934492081404, 0.00518716499209404, -0.034300465136766434, 0.005492691416293383, 0.01632191613316536, 0.003510162467136979, 0.014352966099977493, 0.0008206787169910967, 0.002865161746740341, -0.00846648495644331, -0.007882589474320412, 0.031747620552778244, 0.01144027803093195, 0.013029017485678196, 0.020395606756210327, -0.019838867709040642, 0.012173542752861977, 0.01414928212761879, -0.026220982894301414, 0.0078011155128479, 0.014977598562836647, 0.016226863488554955, -0.0069931671023368835, 0.014352966099977493, 0.024822348728775978, 0.033431414514780045, -0.023328661918640137, 0.034952256828546524, -0.01754402369260788, 0.0074887992814183235, 0.015249177813529968, 0.026791298761963844, -0.024034768342971802, 0.014706019312143326, 0.013646860606968403, 0.0063142189756035805, 0.008072694763541222, -0.021156027913093567, 0.015004756860435009, 0.0056522442027926445, 0.004189110826700926, -0.010150277055799961, -0.023708874359726906, 0.014923282898962498, -0.0010320013388991356, 0.0005792277515865862, 0.01659349538385868, 0.026329614222049713, 0.016389811411499977, 0.019662342965602875, -0.003971847239881754, 0.001831462956033647, 0.0022065818775445223, 0.02971077710390091, -0.013144438154995441, -0.014515914022922516, -0.023736031726002693, -0.000805826741270721, -0.016865074634552002, -0.010109540075063705, -0.0250939279794693, -0.008819538168609142, -0.011949489824473858, -0.017788445577025414, 0.0006785239093005657, 0.004538769368082285, 0.026180244982242584, -0.006242929492145777, 0.03256236016750336, -0.010408276692032814, -0.020463500171899796, 0.022744767367839813, -0.005859323777258396, -0.0051566120237112045, -0.007740010507404804, -0.012085279449820518, 0.01712307520210743, -0.014787493273615837, 0.015384968370199203, -0.01428507175296545, -0.013090122491121292, -0.011643962934613228, 0.017258865758776665, 0.005098901689052582, 0.01647128537297249, 0.04356132075190544, -0.026370350271463394, -0.017150232568383217, 0.011963068507611752, 0.0002613950928207487, 0.024170558899641037, -0.013558597303926945, -0.018793288618326187, 0.036744680255651474, -0.023776767775416374, -0.013748702593147755, -0.023627400398254395, -0.001138935680501163, -0.029167618602514267, 0.0038530314341187477, -0.022283082827925682, -0.02074865996837616, -0.001935002626851201, -0.03047119826078415, 0.001469923066906631, -0.004834111779928207, -0.009892276488244534, 0.03641878440976143, 0.02005613222718239, -0.014122123830020428, -0.02429276891052723, 0.0009819288970902562, 0.023179294541478157, 0.060888081789016724, 0.022052239626646042, -0.010971804149448872, 0.018671076744794846, -0.01967592164874077, -0.011168698780238628, -0.020626448094844818, -0.04152447730302811, 0.025528455153107643, -0.009831171482801437, -0.019363604485988617, 0.0014792585279792547, 0.03443625569343567, -0.00802516844123602, 0.00835106335580349, 0.02818993292748928, 0.007108588237315416, -0.018222970888018608, -0.0037749523762613535, 0.0004922375082969666, -0.010129908099770546, -0.010496539995074272, 0.03101435676217079, 0.017408233135938644, 0.04345269128680229, 0.05703165382146835, 0.04204047843813896, -0.0018874761881306767, 0.016389811411499977, -0.023057082667946815, -0.014054229483008385, 0.018603183329105377, -0.011813700199127197, 0.016770021989941597, -0.017992129549384117, 0.027510983869433403, 0.006762324832379818, -0.022174451500177383, -0.025270454585552216, 0.017218127846717834, 0.014407282695174217, 0.03166614845395088, 0.002520595444366336, -0.012771016918122768, 0.007753589190542698, -0.020382028073072433, -6.619745545322075e-05, 0.029466355219483376, -0.01480107195675373, -0.017448971047997475, -0.003683294402435422, 0.017747707664966583, -0.0014614361571148038, 0.02608519233763218, -0.013694386929273605, 0.015371388755738735, -0.006857377476990223, 0.0015904363244771957, -0.009912644512951374, -0.037016261368989944, -0.045978378504514694, 0.00974290817975998, -0.015126967802643776, -0.006378719117492437, -0.015656547620892525, -0.0075974310748279095, -0.018861183896660805, 0.011324857361614704, -0.038727208971977234, 0.02521613985300064, 0.007414115127176046, -0.032589517533779144, -0.030118145048618317, -0.00160656135994941, 0.019445078447461128, 0.012282174080610275, 0.006602772045880556, 0.0037138471379876137, 0.00860227458178997, 0.025840770453214645, 0.003050175029784441, -0.022636136040091515, -0.003574662609025836, -0.02258181944489479, -0.020925186574459076, -0.024238454177975655, -0.009321959689259529, 0.006399087607860565, -0.001002297387458384, 0.0026411088183522224, -0.0056929811835289, -0.032127831131219864, -0.009776854887604713, 0.01203096378594637, 0.030253935605287552, 0.025379085913300514, 0.008065905421972275, 0.020422764122486115, 0.02677772007882595, -0.04500069096684456, 0.018548866733908653, -0.015928126871585846, -0.012574122287333012, -0.01575160026550293, 0.025433402508497238, 0.0029771882109344006, -0.010985382832586765, -0.030226776376366615, 0.016756443306803703, -0.010720592923462391, -0.00010369873780291528, -0.0032945964485406876, -0.017829181626439095, -0.025311192497611046, 0.014964019879698753, -0.002554542850703001, 0.007386957295238972, 0.03275246545672417, 0.01331417541950941, -0.00894174911081791, -0.003415109822526574, -0.034572046250104904, 0.03161182999610901, 0.008493643254041672, -0.004436926916241646, 0.020436342805624008, 0.005855928640812635, -0.01670212671160698, -0.022065818309783936, 0.019730236381292343, 0.006181824021041393, 0.008099853061139584, 0.0014274887507781386, 0.005088717211037874, -0.02631603553891182, -0.023654557764530182, 0.009159012697637081, 0.009491696953773499, -0.015629388391971588, 0.006147876847535372, -0.02231024019420147, 0.008480063639581203, 0.012159964069724083, -0.0014173045055940747, -0.016579916700720787, -0.03264383226633072, -0.010992172174155712, -0.0003541139594744891, -0.003306478029116988, 0.020911606028676033, -0.007570273242890835, -0.014054229483008385, -0.010224960744380951, -0.01237722672522068, 0.0037138471379876137, -0.009729328565299511, -0.008846696466207504, -0.00641606142744422, 0.04204047843813896, 0.010740961879491806, 0.032127831131219864, 0.015167704783380032, 0.02368171513080597, -0.004311321768909693, -0.014488756656646729, -0.020314132794737816, -0.015018335543572903, -0.013619702309370041, -0.001921423594467342, 0.01773412898182869, 0.026669088751077652, 0.007509167771786451, -0.001242475351318717, 0.0031605041585862637, 0.009240485727787018, 0.011888383887708187, 0.0016175942728295922, -0.006860772147774696, -0.02780972048640251, -0.028244247660040855, 2.4359920644201338e-05, 0.029737934470176697, 0.00673177232965827, -0.00848685298115015, -0.029656460508704185, 0.020232658833265305, 0.011141541413962841, -0.012859280221164227, 0.028705932199954987, 0.005883086938410997, 0.043805744498968124, 0.0020623053424060345, 0.002821030095219612, 0.0005104842130094767, 0.014692440629005432, -0.01594170555472374, -0.005703165661543608, -0.03199204429984093, -0.034300465136766434, 0.021644871681928635, 0.02574571780860424, 0.01796497218310833, 0.014597387984395027, 0.006667272187769413, -0.013728334568440914, 0.004209479317069054, -0.02326076850295067, 0.0017550812335684896, 0.023437295109033585, -0.012078490108251572, 0.00015520333545282483, -0.02471371740102768, -0.017571181058883667, -0.004555742722004652, -0.0223509781062603, -0.008018379099667072, -0.00655185105279088, 0.020585712045431137, -0.023898979648947716, -0.013395649380981922, 0.02433350682258606, -0.00989906582981348, 0.027239404618740082, 0.050405118614435196, 0.024129820987582207, 0.011868015863001347, 0.005984928924590349, -0.03307836130261421, -0.030878568068146706, 0.006833614315837622, -0.013117280788719654, 0.017028022557497025, 0.03435478359460831, -0.002147173974663019, -0.013972755521535873, -0.0061750346794724464, -0.022866977378726006, -0.009450959973037243, -0.03519667685031891, 0.005394244100898504, 0.005268638487905264, 0.01602317951619625, -0.03370299190282822, -0.007957274094223976, -0.005903455428779125, 0.032508041709661484, -0.017286023125052452, 0.008507221937179565, 0.00879237987101078, -0.02281266264617443, 0.013904860243201256, 0.0295206718146801, 0.010876751504838467, 0.013443175703287125, 0.015955284237861633, 0.003291201777756214, 0.000443013763288036, 0.00021344436390791088, 0.0020809764973819256, -0.005801612976938486, 0.004885032773017883, 0.03218214958906174, -0.02311139926314354, 0.024768033996224403, 0.0156022310256958, 0.009770065546035767, -0.009831171482801437, -0.005081927869468927, -0.015154125168919563, 0.030987199395895004, -0.0017941207624971867, -0.006626535207033157, 0.0035373205319046974, 0.02494455873966217, 0.0053093754686415195, -0.02688635140657425, -0.019825289025902748, -0.01758475974202156, 0.0017737523885443807, -0.004688137676566839, 0.01617254875600338, -0.026723403483629227, -0.026682667434215546, -0.008948538452386856, 0.006463587749749422, -0.0002061244595097378, 0.011019330471754074, 0.005699770990759134, 0.0029279643204063177, -0.023586662486195564, -0.0025375692639499903, -0.0031893595587462187, -0.011379173025488853, -0.002118318574503064, 0.0015123572666198015, -0.02178066037595272, 0.002464582212269306, 0.01367401797324419, -0.020151184871792793, 0.01100575178861618, 0.02570498175919056, 0.008289958350360394, -0.04790658876299858, 0.011759384535253048, -0.03639162704348564, -0.006952430121600628, 0.011908752843737602, -0.0012187121901661158, -0.026682667434215546, -0.0026546877343207598, 0.019119182601571083, 0.005438375752419233, 0.00475942762568593, -0.002583398250862956, 0.004742453806102276, 0.0024611875414848328, 0.0060086920857429504, -0.01395917683839798, 0.004481058567762375, 0.008289958350360394, -0.004952927585691214, 0.002559635089710355, 0.022554662078619003, -0.018861183896660805, 0.01251301635056734, 0.0019910158589482307, 0.01180691085755825, -0.011182278394699097, -0.04320826753973961, -0.026071613654494286, -0.01452949270606041, 0.005248269997537136, 0.00046168483095243573, -0.011379173025488853, 0.01384375523775816, -0.031150147318840027, -0.015031915158033371, 0.021006660535931587, -0.014706019312143326, -0.0022592004388570786, 0.03166614845395088, 0.006803061813116074, 0.014190019108355045, 0.016077494248747826, -0.024211294949054718, -0.019879605621099472, -0.03307836130261421, -4.537814311333932e-05, -0.033893097192049026, -0.008588695898652077, 0.003707057563588023, 0.02608519233763218, 0.01609107479453087, -0.02620740421116352, -0.026533298194408417, -0.006093560717999935, -0.025243297219276428, -0.01300864852964878, -0.030009513720870018, 0.027334457263350487, 0.024347085505723953, 0.0033234518487006426, 0.0143393874168396, 0.021142449229955673, -0.005231296643614769, 0.011141541413962841, -0.046440061181783676, -0.004817137960344553, -0.014488756656646729, -0.013137648813426495, 0.022283082827925682, -0.03210067376494408, -0.037776682525873184, -0.00550287589430809, -0.002216766122728586, 0.007787536829710007, 0.006816640496253967, -0.003262346377596259, 0.003876794595271349, -0.01252659596502781, 2.8696173103526235e-05, 0.009892276488244534, 0.01476033590734005, 0.01838591881096363, 0.027320878580212593, -0.040899842977523804, -0.0009437380940653384, 0.020993079990148544, -0.011202646419405937, -0.001841647201217711, 0.016566338017582893, 0.02116960659623146, -0.02009686827659607, -0.005988323595374823, -0.013076543807983398, -0.005553796887397766, -0.0259358249604702, 0.008622643537819386, 0.0035712679382413626, 0.012058121152222157, 0.015656547620892525, 0.03435478359460831, -0.011915542185306549, -0.019295709207654, -0.003435478312894702, 0.0025121085345745087, 0.016729285940527916, 0.020422764122486115, 0.02239171415567398, -0.016607074066996574, -0.005835560616105795, -0.0026869378052651882, 0.01131127867847681, 0.0029619119595736265, -0.01727244444191456, -0.01224143709987402, -0.003406622912734747, -0.013884492218494415, -0.004440321587026119, 0.00016008327656891197, 0.000251847377512604, -0.008527589961886406, -0.02226950414478779, -0.02102023921906948, 0.004460690077394247, -0.0003623886441346258, 0.026438245549798012, -0.029846565797924995, -0.013816596940159798, -0.003747794544324279, -0.004474269226193428, -0.03147604316473007, 0.015059072524309158, 0.02922193333506584, 0.009050380438566208, 0.022704029455780983, 0.18391351401805878, 0.01287285890430212, 0.004963112063705921, 0.027022141963243484, 0.023247189819812775, -0.001673607504926622, 0.017177391797304153, 0.004986875224858522, -0.004487847909331322, -0.0027785957790911198, 0.007278325501829386, 0.02165845036506653, -0.0020911607425659895, 0.0017067062435671687, 0.010849593207240105, -0.016416968777775764, -0.026899930089712143, -0.013782650232315063, -0.004280768800526857, 0.005642060190439224, -0.004345268942415714, -0.014027071185410023, -0.0012806662125512958, -0.005669218022376299, 0.03497941419482231, 0.006151271518319845, -0.018060024827718735, 0.015452862717211246, 0.019594447687268257, 0.01541212573647499, -0.009505275636911392, 0.005791428964585066, 0.00943738128989935, -0.013409228064119816, -0.010842803865671158, -0.01788349822163582, 0.0016184429405257106, -0.004912190604954958, -0.016240442171692848, 0.032399412244558334, -0.0017185878241434693, -0.01685149595141411, 0.013918439857661724, -0.01811433956027031, 0.00959353893995285, 0.0179242342710495, -0.004195900168269873, 0.010639119893312454, -0.009281222708523273, 0.020151184871792793, 0.005811797454953194, -0.0009199749329127371, 0.008127010427415371, 0.02829856425523758, -0.027185088023543358, -0.009675012901425362, -5.163719833944924e-05, 0.013429597020149231, -0.020721500739455223, -0.02311139926314354, -0.020449921488761902, 0.009675012901425362, 0.006103745196014643, 0.00493934890255332, -0.04011226445436478, -0.004915585741400719, -0.02296203002333641, 0.030444040894508362, -0.0003205908869858831, 0.015805914998054504, -0.02914045937359333, -0.001777147059328854, -0.026112351566553116, 0.012153173796832561, -0.022608976811170578, -0.015493599697947502, 0.005160006694495678, 0.005183769855648279, 0.018372340127825737, 0.008147379383444786, -0.012126016430556774, 0.003009438281878829, -0.04801522195339203, -0.005153217352926731, 0.00016379627049900591, -0.0400579497218132, 0.030308250337839127, -0.012750648893415928, -0.0010583106195554137, -0.01986602693796158, -0.008480063639581203, 0.00995338149368763, 0.0017398049822077155, -0.0215090811252594, -0.0014325808733701706, -0.013035806827247143, 0.00042349399882368743, 0.037097733467817307, -0.019635183736681938, -0.016199706122279167, -0.007943694479763508, 0.0628434494137764, 0.015439284034073353, 0.023478031158447266, -0.010462593287229538, 0.008269590325653553, 0.006680850870907307, 0.024618664756417274, -0.006762324832379818, -0.00747522059828043, -0.006850588135421276, -0.03397457301616669, 0.008031957782804966, -0.007848641835153103, 0.0191870778799057, 0.007217220030725002, 0.007712852209806442, -0.020802974700927734, 0.01044901367276907, -0.006762324832379818, 0.02342371456325054, -0.006769114173948765, 0.024550769478082657, 0.01880686730146408, -0.027510983869433403, -0.031258776783943176, -0.01906486786901951, 0.035875625908374786, -0.02998235635459423, -0.023545926436781883, 0.01628118008375168, -0.01167112123221159, 0.006222561001777649, -0.013578965328633785, -0.009389854967594147, 0.01136559434235096, 0.019499395042657852, -0.009233696386218071, -0.008310327306389809, 0.008744853548705578, 0.008052326738834381, 0.014448019675910473, 0.023668136447668076, 0.009973750449717045, -0.022052239626646042, 0.010224960744380951, 0.005424796603620052, -0.009009643457829952, -0.02292129397392273, -0.03707057610154152, 0.007617799565196037, 0.018793288618326187, 0.012580911628901958, -0.007366588804870844, 0.038048259913921356, 0.0011015936033800244, -0.029955197125673294, -0.010578013956546783, 0.005950981751084328, 0.006877745967358351, -0.0491286963224411, 0.018100760877132416, 0.046087007969617844, 0.015765178948640823, -0.015004756860435009, -0.010747751221060753, -0.1718553900718689, 0.012132805772125721, -0.0020283579360693693, -0.006881140638142824, 0.004980085417628288, 0.010781698860228062, -0.0010065408423542976, 0.007257957011461258, -0.002252410864457488, 0.0007018627948127687, 0.012092068791389465, 0.012859280221164227, -0.015181283466517925, 0.012920385226607323, 0.016240442171692848, 0.004671164322644472, -0.019024129956960678, 0.012553753331303596, 0.057466182857751846, 0.00863622222095728, 0.028135616332292557, -0.03261667490005493, -0.0075023784302175045, 0.010320013388991356, 0.03009098768234253, 0.0023848058190196753, 0.018331604078412056, 0.0073122731409966946, 0.02070792205631733, -0.032019201666116714, -0.0020911607425659895, -0.00928801205009222, 0.019458657130599022, -0.002133595058694482, 0.04011226445436478, -0.003802110441029072, 0.002603766741231084, -0.009512064978480339, 0.0023729242384433746, 0.018834024667739868, 0.024835927411913872, -0.0003613277804106474, 0.024387821555137634, 0.009396644309163094, 0.03367583453655243, 0.012621648609638214, 0.0067589301615953445, 0.0013426202349364758, 0.007617799565196037, -0.013972755521535873, 0.014108545146882534, -0.041741739958524704, 0.008894222788512707, -0.0017448971047997475, 0.0107545405626297, -0.005988323595374823, 0.013687597587704659, 0.024740874767303467, 0.007095009554177523, -0.006012086756527424, -0.0014919888926669955, 0.00271749054081738, 0.013504281640052795, -0.004722085315734148, -0.004243426490575075, -0.014828230254352093, 0.031557515263557434, 0.030308250337839127, 0.011929120868444443, -0.003673110157251358, 0.014298650436103344, 0.007020324934273958, -0.015425704419612885, 0.038808684796094894, 0.00028218788793310523, 0.019078446552157402, -0.03169330582022667, 0.012879649177193642, 0.020585712045431137, 0.0009437380940653384, 0.0068675619550049305, -0.004589690361171961, -0.008500432595610619, -0.0023915953934192657, -0.01857602410018444, 0.013354912400245667, -0.012900017201900482, 0.005550402216613293, -0.01480107195675373, -0.00799122080206871, 0.004094058182090521, -0.01384375523775816, -0.013416018337011337, 0.005176980514079332, 0.02688635140657425, 0.007067851722240448, 0.02612593024969101, 0.0023457664065063, 0.005350112449377775, -0.017367497086524963, 0.011664330959320068, 0.004589690361171961, -0.013775860890746117, 0.018711814656853676, 0.03234509751200676, 0.02494455873966217, -0.006870956625789404, 0.009430591948330402, 0.01743539236485958, -0.02578645572066307, -0.0068098511546850204, 0.008439326658844948, 0.029357723891735077, -0.010897119529545307, -0.02108813263475895, 0.01986602693796158, -0.003316662274301052, -0.022025082260370255, -0.0011321462225168943, -0.01872539333999157, 0.052007436752319336, -0.015507178381085396, -0.022432450205087662, 0.014570229686796665, -7.359693427133607e-06, 0.0012221068609505892, -0.11873447149991989, -0.030878568068146706, 0.013830176554620266, 0.017571181058883667, -0.0350065715610981, 0.005669218022376299, -0.009125065058469772, 0.05037796124815941, -0.019214237108826637, 0.010245329700410366, -0.020816553384065628, -0.03329562395811081, -0.012017384171485901, 0.0053738756105303764, 0.011623594909906387, -0.010727383196353912, -0.008011589758098125, 0.004708506166934967, -0.02292129397392273, 0.03432762622833252, -0.004223058465868235, -0.018087182193994522, 0.010903908871114254, -0.014257913455367088, -0.020544974133372307, -0.019689500331878662, -0.02711719460785389, 0.0029415434692054987, 0.008765222504734993, 0.006354955956339836, 0.01689223386347294, -0.004036347381770611, 0.027443088591098785, -0.01583307422697544, -0.018019286915659904, -0.015615810640156269, -0.03367583453655243, -0.008744853548705578, 0.014841808937489986, -0.061811450868844986, -0.0015480021247640252, -0.0039243209175765514, 0.0003897587303072214, -0.04168742522597313, 0.0043690321035683155, 0.008337484672665596, -0.013300596736371517, 0.0411171093583107, 0.010693435557186604, -0.012146384455263615, -0.025433402508497238, -0.005659034010022879, -0.007746799848973751, -0.019730236381292343, 0.025677824392914772, -0.0034337809775024652, 0.014977598562836647, 0.0006730074528604746, -0.02380392700433731, -0.0031180698424577713, 0.012900017201900482, -0.004528584890067577, -0.0011847647838294506, 0.03468067944049835, -0.011508173309266567, 0.012153173796832561, 0.0201376061886549, 0.00015106599312275648, -0.021712765097618103, 0.0033047806937247515, -0.005591139197349548, -0.005628481041640043, -0.018508130684494972, 0.017869917675852776, -0.004844295792281628, -0.009444170631468296, -0.03326846659183502, -0.019811710342764854, 0.016077494248747826, 0.009607118554413319, -0.008289958350360394, -0.009776854887604713, -0.013877702876925468, -0.029194775968790054, 0.020259816199541092, 0.008921380154788494, 0.01086996216326952, -0.012642016634345055, 0.03283393755555153, -0.0341646783053875, 0.027320878580212593, 0.008378221653401852, 0.021060975268483162, -0.020870869979262352, -0.003450754564255476, 0.010218171402812004, -0.021631291136145592, 0.009464538656175137, 0.026411088183522224, -0.011895174160599709, -0.03997647389769554, 0.005995113402605057, -0.049454592168331146, 0.02566424570977688, 0.006324402987957001, 0.0118612265214324, -0.0050174277275800705, -0.030688462778925896, -0.0015301796374842525, -0.005200743675231934, 0.011487804353237152, 0.013171596452593803, -0.03432762622833252, 0.020069710910320282, -0.020762238651514053, -0.007882589474320412, -0.01466528233140707, -0.001717739156447351, 0.013836965896189213, -9.38327721087262e-05, 0.0038971630856394768, -0.00865659024566412, -0.02639750950038433, -0.014882545918226242, -3.731563265318982e-05, -0.001247567473910749, -0.01180691085755825, 0.004314716439694166, -0.020259816199541092, 0.03082425147294998, -0.005010638386011124, -0.008867064490914345, 0.012370437383651733, 0.0029075960628688335, -0.01224143709987402, 0.024075506255030632, -0.018440235406160355, -0.03128593787550926, 0.003248767461627722, -0.006884535308927298, 0.021563397720456123, 0.0008766919490881264, -0.007420904468744993, -0.006117323879152536, 0.029357723891735077, -0.006595982704311609, -0.020110448822379112, 0.00022171904856804758, -0.02197076566517353, -0.008256010711193085, 0.011908752843737602, 0.02387182228267193, 0.043534163385629654, 0.0014504032442346215, -0.005166796501725912, -0.034001730382442474, 2.549371174609405e-06, -0.01575160026550293, 0.018630340695381165, 0.020300554111599922, -0.006195403169840574, -0.006029060576111078, 0.03462636098265648, 0.0031469252426177263, -0.00697958841919899, -0.012879649177193642, 0.013626491650938988, -0.012784595601260662, -0.03864573687314987, 0.0021913056261837482, -0.005027612205594778, -0.02585435099899769, 0.0055571915581822395, -0.02193002961575985, 0.015113388188183308, 0.019024129956960678, 0.02441498078405857, 0.006660482380539179, -0.0007977642235346138, -0.012961122207343578, -0.010408276692032814, 0.03449057415127754, 0.024645822122693062, -0.012173542752861977, -0.03161182999610901, -0.0014987783506512642, 0.007957274094223976, 5.0735470722429454e-05, -0.02051781676709652, 0.01367401797324419, 0.009111485444009304, -0.0024085689801722765, -0.010455803014338017, -0.008385010994970798, -0.026370350271463394, 0.021875713020563126, 0.0028481879271566868, 0.03554973006248474, -0.01838591881096363, 0.007624588906764984, 0.015004756860435009, 0.03280678018927574, -0.012940754182636738, 0.021753503009676933, 0.015480021014809608, -0.009512064978480339, -0.03799394518136978, 0.009722539223730564, -0.02707645669579506, -0.025609929114580154, 0.010170645080506802, 0.030199619010090828, 0.001074435655027628, 0.005730323493480682, 0.004352058283984661, 0.006609561387449503, -0.01428507175296545, -0.011039698496460915, -0.011963068507611752, -0.010421856306493282, -0.01758475974202156, 0.011433488689363003, 0.001363837393000722, 0.019811710342764854, 0.00921332836151123, -0.030145304277539253, 0.03242656961083412, 0.0314217247068882, 0.00438600592315197, -0.026709824800491333, 0.01731318049132824, -0.009668223559856415, 0.026071613654494286, 0.008507221937179565, 0.016756443306803703, -0.009912644512951374, -0.006270087324082851, -0.018657498061656952, -0.015846652910113335, 0.012940754182636738, -8.189813524950296e-05, 0.07778031378984451, 0.018480971455574036, -0.01899697259068489, 0.005920428782701492, 0.012085279449820518, 0.01447517704218626, 0.028814565390348434, -0.0026767535600811243, 0.030253935605287552, -0.016484864056110382, 0.032589517533779144, 0.0022744766902178526, -0.021196765825152397, -0.021617712453007698, -0.014855388551950455, -0.00321821472607553, -0.00036408600863069296, 0.01903771050274372, -0.020300554111599922, 0.013449965044856071, 0.023559505119919777, -0.0038394525181502104, 0.024401400238275528, 0.0005257605807855725, -0.0285701435059309, -0.0071696937084198, 0.03802110254764557, 0.023708874359726906, 0.0034490572288632393, -0.04434890300035477, 0.009641065262258053, -0.010306434705853462, -0.010958225466310978, -0.001374021521769464, 0.0025817009154707193, -0.0023101214319467545, -0.007386957295238972, -0.0093830656260252, -0.013884492218494415, 0.00259867450222373, -0.0027548326179385185, 0.00561490235850215, -0.017869917675852776, -0.01317838579416275, 0.029276249930262566, -0.022065818309783936, 0.016729285940527916, -0.024985296651721, -0.015317073091864586], "0e02e514-54e6-4a76-af4e-aaeaeb023645": [-0.01670709066092968, -0.02143915556371212, 0.002585046226158738, -0.033496957272291183, -0.003562845755368471, 0.03735986724495888, 0.0059978594072163105, -0.03741505369544029, -0.020114729180932045, -0.06015104427933693, 0.009960792027413845, 0.009940098039805889, 0.01343741174787283, -0.013651251792907715, 0.0006001308211125433, 0.0027419771067798138, 0.007367123384028673, -0.010022874921560287, -0.002140121767297387, -0.02875109575688839, -0.025509009137749672, -0.008498404175043106, -0.023618942126631737, 0.008463914506137371, -0.022018592804670334, 0.002709211315959692, 0.01759004220366478, -0.012519970536231995, -0.004625146277248859, -0.005480505060404539, 0.006504866294562817, -0.0044768378138542175, -0.030323851853609085, -0.01634839177131653, -0.018955856561660767, -0.015148130245506763, 0.010229816660284996, -0.008436322212219238, 0.010892029851675034, 0.004376816097646952, 0.040284644812345505, -0.0037215009797364473, -0.0031455133575946093, 0.012657932005822659, -0.021784059703350067, 0.018748914822936058, -0.002545382361859083, -0.008215583860874176, -0.013485698029398918, -0.0034179864451289177, 0.0038732581306248903, 0.026447145268321037, -0.007456798106431961, 0.0033834963105618954, -0.0056357113644480705, -0.008560487069189548, -0.004328529816120863, -0.0050010900013148785, 0.017493467777967453, -6.186693644849584e-05, 0.019273167476058006, 0.01358227152377367, -0.021094253286719322, -0.00038003973895683885, -0.010209121741354465, -0.03302789106965065, -0.0018314337357878685, -0.019259370863437653, 0.0010148764122277498, 0.00417677266523242, 0.028833871707320213, 0.03570433333516121, 0.0069325459189713, -0.008187991566956043, -0.008788122795522213, -0.019066225737333298, 0.0038870542775839567, -0.012354417704045773, -0.0012994211865589023, 0.011995718814432621, 0.01075406838208437, 0.0015356795629486442, 2.355039214307908e-05, 0.003288647858425975, 0.008043132722377777, 0.03443509340286255, -0.0016382881440222263, -0.006477274000644684, -0.033331405371427536, 0.006601438857614994, -0.006829075049608946, 0.0028937342576682568, 0.012816587463021278, 0.009533112868666649, 0.00721536623314023, 0.004283692222088575, 0.04453384503722191, 0.00502523360773921, -0.0022763581946492195, -0.02621261030435562, -0.015562012791633606, 0.005097663030028343, -0.025205494835972786, -0.013630557805299759, -0.024639854207634926, -0.008208685554564, 0.01632079854607582, -0.010422961786389351, 0.007691331673413515, 0.015272295102477074, -0.0009398600668646395, 0.04307145997881889, -0.008015540428459644, -0.009671073406934738, -0.005325298756361008, -0.021742671728134155, 0.025771135464310646, -0.05115598067641258, 0.00047036114847287536, -0.020142322406172752, 0.017493467777967453, 0.028944240882992744, 0.010712680406868458, -0.006325516849756241, 0.006173759698867798, 0.015396459959447384, 0.009540011174976826, -0.0011640468146651983, 0.02603326179087162, -0.01684505119919777, 0.006566948723047972, 0.01892826333642006, 0.015272295102477074, -0.011788777075707912, -0.03192419931292534, 0.01078855898231268, -0.030434221029281616, 0.00417677266523242, -0.010367777198553085, -0.024488097056746483, 0.02257043682038784, 0.019907787442207336, 0.0004582895489875227, -0.017824575304985046, -0.017645226791501045, 0.02028028294444084, 0.006197902839630842, 0.03015829809010029, 0.015810342505574226, -0.020335467532277107, 0.004942456725984812, -0.02564696967601776, -0.021328788250684738, 0.013368431478738785, -0.00219013262540102, -0.016927829012274742, -0.0019004142377525568, 0.012154373340308666, -0.019093817099928856, -0.010533330962061882, -0.003200697712600231, 0.013940970413386822, -0.01176118478178978, 0.0030110012739896774, 0.015424052253365517, 0.027468057349324226, 1.2974272067367565e-05, -0.0448649525642395, -0.007070506922900677, -0.013602965511381626, 0.015699973329901695, 0.026571309193968773, -0.01709338091313839, 0.028806280344724655, 0.00920200627297163, -0.011995718814432621, 0.014141013845801353, -0.0025953934527933598, -0.012181965634226799, -0.04850712791085243, 0.037773750722408295, -0.013161489740014076, -8.097131285467185e-06, 0.013320145197212696, -0.01903863251209259, -0.04549957439303398, -0.0011657713912427425, -0.0012321651447564363, 0.008243176154792309, -0.010078058578073978, 0.0037801344878971577, 0.012623441405594349, -0.04047778993844986, -0.005815060809254646, -0.6017311811447144, -0.009505520574748516, 0.006863565184175968, -0.02836480364203453, -0.004604451823979616, -0.0006876498810015619, 0.023618942126631737, 0.006022002547979355, 0.0046147992834448814, 0.012968344613909721, -0.0037939304020255804, 0.012623441405594349, -0.025481417775154114, -0.009353763423860073, -0.029716823250055313, -0.010767864994704723, 0.021287398412823677, -0.01367194578051567, -0.016307003796100616, 0.013589168898761272, -0.01935594342648983, 0.028695911169052124, -0.008450117893517017, 0.012188863940536976, -0.004766556434333324, -0.022722193971276283, 0.04182980954647064, -0.017369303852319717, -0.0056460583582520485, 0.02037685550749302, -0.03529045358300209, 0.0300203375518322, 0.027136949822306633, 0.0038801562041044235, 0.036752838641405106, -0.007856884971261024, -0.00948482658714056, 0.018666138872504234, 0.021604709327220917, 0.04213332384824753, -0.042823128402233124, -0.01946631260216236, 0.007042914628982544, 0.03040662780404091, -0.010340184904634953, 0.004062954802066088, -0.004218161106109619, -0.004262998234480619, -0.012382009997963905, 0.002521239221096039, -0.00945033598691225, -0.02073555439710617, -0.015534420497715473, 0.001258895150385797, 0.011381791904568672, 0.0007760312291793525, 0.029799599200487137, -0.004714820999652147, -0.0005910771433264017, 0.022377291694283485, 0.012775198556482792, 0.00620824983343482, 0.0027919879648834467, -0.0589921697974205, -0.05521203577518463, 0.020680369809269905, -0.009602093137800694, -0.021273603662848473, 0.029827192425727844, 0.01100239809602499, 0.03087569586932659, -0.013216674327850342, 0.003504212247207761, -0.007443001959472895, 0.0054839542135596275, 0.007111895363777876, 0.042933497577905655, 0.01176118478178978, 0.004266447387635708, 0.02397764101624489, 0.011968126520514488, -0.02252904884517193, -0.007436103653162718, -0.01709338091313839, 0.017148565500974655, 0.02539863996207714, -0.025164106860756874, -0.009236495941877365, -0.0025609030853956938, -0.012016412802040577, 0.0006811829516664147, 0.029689230024814606, -0.014637673273682594, -0.032862335443496704, 0.016720887273550034, 0.02377069927752018, 0.002421217504888773, -0.0009381355484947562, -0.016169041395187378, -0.03228290006518364, -0.023260243237018585, -0.032972704619169235, 0.001020912197418511, 0.004801046568900347, 0.027012785896658897, 0.015727566555142403, -0.01865234225988388, -0.024322543293237686, 0.026971396058797836, -0.01765902154147625, 0.00669456273317337, -0.017507264390587807, -0.019659457728266716, -0.01455489732325077, 0.0005083004361949861, -0.016086265444755554, 0.015851732343435287, 0.0034007413778454065, -0.009257190860807896, -0.0263091828674078, -0.0003239930374547839, 0.009643481113016605, 0.009471029974520206, -0.005649507511407137, -0.004856231156736612, 0.03702876344323158, -0.0029437451157718897, -0.008677753619849682, 0.010988602414727211, 0.003274851944297552, 0.025412436574697495, -0.02200479619204998, 0.008808816783130169, -0.011209339834749699, 0.017396895214915276, 0.01688643917441368, 0.00766373984515667, 0.007325734943151474, 0.003374873660504818, -0.042050547897815704, 0.008960573934018612, -0.0192455742508173, 0.014761839061975479, -0.001732274191454053, -0.005594322923570871, -0.017120974138379097, -0.025205494835972786, 0.03189660981297493, -0.012920058332383633, -0.0070498124696314335, -0.027840550988912582, -0.023467184975743294, -0.001840056269429624, 0.024294951930642128, -0.0013563301181420684, 0.0028316518291831017, -0.0039594839327037334, -0.04102963209152222, -0.01867993362247944, -0.03967761620879173, -0.008181094191968441, 0.028337212279438972, -0.018141886219382286, 0.01432036329060793, -0.004197466652840376, -0.01575515791773796, -0.003036868991330266, -0.006587643176317215, -0.010705782100558281, -0.022667009383440018, 0.0011726694647222757, -0.015493032522499561, 0.018817896023392677, 0.0430990494787693, -0.03236567601561546, 0.013982358388602734, -0.012726912274956703, 0.001946976175531745, 0.004411306697875261, -0.005615017376840115, 0.02458466961979866, 0.027964716777205467, -0.011271422728896141, 0.008960573934018612, 0.019521497189998627, 0.02397764101624489, 0.002138397190719843, 0.02366033010184765, -0.030489405617117882, -0.0016770897200331092, -0.008091419003903866, 0.007760312408208847, -0.008684651926159859, 0.008684651926159859, -0.02016991376876831, -0.005618466064333916, -0.01836262457072735, 0.014734246768057346, -0.019825011491775513, 0.020018156617879868, 0.002805784111842513, 0.013644353486597538, -0.0065255602821707726, 0.010278102941811085, 0.012216456234455109, -0.017245138064026833, 0.008208685554564, -0.01843160390853882, 0.020459633320569992, -0.01130591332912445, -0.001100239809602499, -0.006563499569892883, 0.002809233032166958, -0.02779916301369667, 0.0029609904158860445, 0.03040662780404091, -0.012961446307599545, 0.014761839061975479, -0.003171381074935198, 0.0035197327379137278, 0.009546908549964428, 0.0021590914111584425, 0.035593967884778976, 0.011864655651152134, 0.015230906195938587, 0.01398925669491291, -0.010305695235729218, 0.006960137747228146, 0.0033731490839272738, -0.011774980463087559, -0.0033317608758807182, 0.02229451574385166, 0.008450117893517017, -0.011312810704112053, 0.021701281890273094, 0.025095125660300255, 0.028213046491146088, -0.025633174926042557, 0.028075085952878, -0.00495280371978879, 0.0036766636185348034, 0.011843961663544178, 0.02433633990585804, -0.022335903719067574, 0.004445796832442284, 0.008519098162651062, 0.005621915217489004, 0.009933199733495712, -0.002578148152679205, 0.024363931268453598, -0.005639160517603159, 0.008650161325931549, -0.0075326766818761826, -0.005477055907249451, 0.01892826333642006, -0.01383060123771429, 0.011016194708645344, 0.02617122232913971, 0.024984756484627724, 0.008974370546638966, 0.008553588762879372, 0.015865527093410492, -0.012526868842542171, -0.005204583052545786, 0.030958473682403564, -0.017438285052776337, -0.012713116593658924, -0.02476401999592781, -0.008581181056797504, -0.016127653419971466, -0.003031695494428277, -0.0197836235165596, -0.014403140172362328, -0.019962972030043602, -0.02716454304754734, -0.001213195500895381, -0.006973933894187212, 0.023784495890140533, -0.008388034999370575, 0.006191004998981953, -0.024488097056746483, -0.04820360988378525, 0.029054610058665276, 0.0022108268458396196, -0.012299233116209507, -0.009595194831490517, -0.015741363167762756, 0.0023487878497689962, 0.007918967865407467, 0.016582924872636795, -0.010678189806640148, -0.0003173105651512742, -0.00936066173017025, 0.028075085952878, 0.0003397292457520962, 0.01596209965646267, 0.060592520982027054, -0.01314079575240612, -0.00976764690130949, -0.0025074430741369724, -0.0150101687759161, 0.008684651926159859, -0.013727130368351936, -0.025619378313422203, 0.0490865632891655, -0.03669765591621399, -0.023867271840572357, -0.028475172817707062, 0.005980614107102156, -0.02123221382498741, 0.023122282698750496, -0.029827192425727844, -0.030296260491013527, -0.015355071052908897, -0.018804099410772324, 0.009691768325865269, 0.005735733080655336, -0.010678189806640148, 0.030986065044999123, 0.02397764101624489, -0.012002616189420223, -0.03264159709215164, -0.010760966688394547, 0.020197506994009018, 0.07295383512973785, 0.020542409271001816, -0.021204622462391853, 0.026185018941760063, -0.011402485892176628, -0.018693730235099792, -0.0090088602155447, -0.03382806479930878, 0.03291752189397812, -0.00012545837671495974, 0.0057874685153365135, -0.004314733669161797, 0.024998553097248077, -0.012306131422519684, 0.01953529380261898, 0.012340621091425419, 0.014541100710630417, -0.016238022595643997, -0.005039029289036989, 0.004235405940562487, 0.0010467799147590995, -0.011236932128667831, 0.029192570596933365, 0.025384843349456787, 0.04916933923959732, 0.03162068501114845, 0.03838077932596207, 0.01833503134548664, 0.014775634743273258, -0.015630993992090225, -0.003821522695943713, 0.0019349046051502228, -0.012533767148852348, 0.02553660050034523, -0.037746161222457886, 0.03589748218655586, 0.005739182233810425, -0.009388253092765808, -0.004721718840301037, 0.02125980705022812, -0.0052735633216798306, 0.02927534654736519, 0.0043250806629657745, 0.002098733326420188, 0.00017956500232685357, -0.023867271840572357, 0.010119447484612465, 0.031565502285957336, -0.014541100710630417, -0.010712680406868458, 0.009774544276297092, 0.01899724453687668, -0.002793712541460991, 0.023467184975743294, -0.00856738444417715, 0.011906043626368046, -0.0010002180933952332, -0.002873040037229657, 0.007311938796192408, -0.027247318997979164, -0.048120833933353424, -0.0056357113644480705, -0.011685306206345558, -0.0027574975974857807, -0.0048976195976138115, 0.0018193621654063463, -0.017714206129312515, 0.006901504471898079, -0.015175721608102322, 0.014168606139719486, -0.00669456273317337, -0.03479379042983055, -0.04171944037079811, 0.005114908330142498, 0.036256179213523865, 0.01273381058126688, 0.011140359565615654, 0.00849150586873293, 0.009236495941877365, 0.0217288751155138, 0.00686011603102088, -0.029413308948278427, 0.008615671657025814, -0.029302939772605896, -0.02444670908153057, -0.028282027691602707, -0.015161925926804543, -0.011940534226596355, 0.001214057789184153, 0.0012244048994034529, 0.0008622569148428738, -0.019618069753050804, 0.011878451332449913, -0.0019555988255888224, 0.02232210710644722, 0.041167594492435455, 0.018707526847720146, 0.019687050953507423, 0.02426735870540142, -0.04111241176724434, 0.020432040095329285, 0.003052389482036233, 0.002838549902662635, -0.020583797246217728, 0.02041824348270893, 0.008415627293288708, -0.001761590945534408, -0.023356815800070763, 0.01899724453687668, -0.024929571896791458, -0.008960573934018612, -0.011781878769397736, -0.02214275859296322, -0.02338440716266632, 0.031565502285957336, -0.0038456658367067575, 0.0023160220589488745, 0.018183274194598198, 0.010353981517255306, -0.011243830434978008, -0.011747388169169426, -0.02252904884517193, 0.03264159709215164, 0.01741069182753563, -0.01456869300454855, 0.020721757784485817, 0.005487402901053429, -0.008015540428459644, -0.029799599200487137, 0.009298578836023808, -0.011981922201812267, 0.015603401698172092, -0.0004097876080777496, 0.0037008067592978477, -0.036118216812610626, -0.014858411625027657, 0.0028920096810907125, 0.0033093420788645744, -0.016541536897420883, 0.018348827958106995, -0.02691621333360672, 0.003493865020573139, 0.009615889750421047, -0.0033058931585401297, -0.0231360774487257, -0.029413308948278427, -0.010160835459828377, -0.013368431478738785, 0.0021159786265343428, 0.026654087007045746, -0.004118138924241066, -0.005166643764823675, -0.017534857615828514, -0.020845923572778702, 0.009843525476753712, -0.02861313335597515, -0.010388471186161041, -0.003333485219627619, 0.056674424558877945, 0.00572193693369627, 0.026267794892191887, 0.01794874109327793, 0.009546908549964428, 0.004273345228284597, -0.015299887396395206, -0.01596209965646267, -0.015299887396395206, -0.013892684131860733, -0.001902138814330101, 0.018003925681114197, 0.02822684310376644, 0.010374675504863262, -0.011043787002563477, -0.005045927595347166, 0.0041008940897881985, 0.03393843397498131, -0.0025764238089323044, -0.008912287652492523, -0.031206803396344185, -0.03501452878117561, -0.01691403239965439, 0.011016194708645344, 0.010257408022880554, -0.005094213876873255, -0.034103985875844955, 0.007546472828835249, 0.026888620108366013, -0.011912941932678223, 0.039263732731342316, 0.007256754208356142, 0.03504212200641632, -0.007767210248857737, 0.0029282246250659227, 2.10175130632706e-05, 0.016513945534825325, -0.027247318997979164, -0.005497750360518694, -0.03691839426755905, -0.013492596335709095, 0.014582489617168903, 0.009505520574748516, 0.0271921344101429, 0.024032825604081154, 0.0011950881453230977, -0.007008424494415522, 0.015699973329901695, -0.024115601554512978, -0.014872207306325436, 0.017424488440155983, -0.02062518522143364, 0.003043767064809799, -0.03137235715985298, -0.008484608493745327, 0.004162976518273354, -0.02886146493256092, 0.0050493767485022545, -0.0008566522737964988, 0.020928699523210526, -0.017852166667580605, -0.006032349541783333, 0.021977204829454422, -0.012112985365092754, 0.037277091294527054, 0.017921147868037224, 0.025509009137749672, 0.0070636086165905, 0.006918749772012234, -0.015051556751132011, -0.027399076148867607, -0.008001744747161865, -0.00860187504440546, 0.01625181920826435, 0.049721185117959976, -0.0098918117582798, -0.020087137818336487, -0.0005164918839000165, -0.007905171252787113, -0.020252691581845284, -0.03482138365507126, 0.016334595158696175, 0.008084520697593689, 0.011312810704112053, -0.026005668565630913, -0.020970089361071587, -0.004745861981064081, 0.027578426524996758, -0.016555333510041237, 0.012775198556482792, 0.00474241329357028, -0.010809252969920635, 0.015617197379469872, 0.03440750017762184, -0.003831869922578335, 0.0120095144957304, 0.0076223514042794704, 0.017645226791501045, 0.006901504471898079, 0.004656187258660793, -0.0076223514042794704, -0.01005046721547842, 0.005984063260257244, 0.036366548389196396, -0.026585105806589127, 0.007070506922900677, 0.01960427314043045, 0.016375983133912086, -0.013168388046324253, -0.008112112991511822, -0.018804099410772324, 0.02875109575688839, 0.00876053050160408, -0.009912505745887756, -0.00011823698150692508, 0.028171658515930176, 0.00478725042194128, -0.04337497428059578, -0.01456869300454855, 0.002416044007986784, 0.005690895952284336, 0.006560050882399082, 0.0158931203186512, -0.03407639265060425, -0.025936689227819443, -0.010443655773997307, 0.007760312408208847, -0.009671073406934738, 0.015630993992090225, 0.010995500721037388, 0.004414755385369062, -0.03153790906071663, -0.01899724453687668, 0.0016382881440222263, -0.00633241469040513, -7.641752017661929e-05, 0.01002977229654789, -0.016624312847852707, -0.021908223628997803, 0.01114725787192583, -0.02483299933373928, 0.011733592487871647, 0.02734389156103134, 0.01960427314043045, -0.05838514119386673, 0.031455133110284805, -0.02977200783789158, -0.0068049319088459015, 0.010829946957528591, 0.007160181645303965, -0.02164609730243683, -0.0015486134216189384, 0.01634839177131653, -0.00036150121013633907, 0.0052011338993906975, -0.0031506868544965982, 0.009126127697527409, 0.0002259113098261878, 0.015630993992090225, -0.012582053430378437, 0.002193581545725465, -0.0009096810827031732, -0.005863347090780735, -0.003952585626393557, 0.025702154263854027, -0.016086265444755554, 0.008898491971194744, -0.0027402525302022696, 0.0006751471664756536, -0.006425538565963507, -0.04715510830283165, -0.01822466216981411, -0.016872644424438477, 0.0024539832957088947, 0.002667822875082493, -0.011988820508122444, 0.003024797420948744, -0.02359134890139103, -0.010119447484612465, 0.004342325963079929, -0.023301631212234497, 0.004128486383706331, 0.026861028745770454, -0.0008907114388421178, 0.011906043626368046, 0.027399076148867607, -0.01865234225988388, -0.019769826903939247, -0.019687050953507423, -0.005021784454584122, -0.039925944060087204, -0.002133223693817854, -0.011947432532906532, 0.018597157672047615, 0.002776467241346836, -0.03755301237106323, -0.01967325434088707, -0.00807072501629591, -0.0360354408621788, -0.011540446430444717, -0.04428551718592644, 0.028530357405543327, 0.038656704127788544, 0.017438285052776337, 0.024032825604081154, 0.02628159150481224, -0.002526412717998028, -0.002935122698545456, -0.028971832245588303, 0.0020159566774964333, -0.015975896269083023, -0.022377291694283485, 0.020390652120113373, -0.026405755430459976, -0.04693436995148659, -0.010857539251446724, 0.017645226791501045, -0.004776903428137302, 0.02560558170080185, -0.002731629880145192, -0.0040319133549928665, -0.0035973358899354935, 0.01568617857992649, 0.01790735125541687, 0.004542369395494461, 0.015493032522499561, 0.021590912714600563, -0.055294811725616455, -0.007360225077718496, 0.025784932076931, -0.009643481113016605, -0.011788777075707912, 0.012161271646618843, 0.0010398818412795663, -0.0027385279536247253, -0.0010588514851406217, -0.010153938084840775, -0.014168606139719486, -0.0073326327838003635, -0.000728175975382328, 0.006087534129619598, 0.005166643764823675, -0.00026945528225041926, 0.027026580646634102, -0.0038836051244288683, -0.02949608489871025, -0.0029816844034940004, -0.0018452298827469349, 0.0024505341425538063, -0.0009631409775465727, 0.01745207980275154, -0.02673686295747757, 0.001483944128267467, -0.0029609904158860445, 0.007201570086181164, -0.0006251362501643598, -0.031979385763406754, -0.02603326179087162, -0.0010821324540302157, 0.00438026525080204, 0.003238637000322342, 0.007305040955543518, 0.007229161914438009, 0.005897837225347757, -0.016679497435688972, -0.004721718840301037, -0.005114908330142498, -0.014913596212863922, 0.01836262457072735, -0.015051556751132011, -0.02221173793077469, 0.00686011603102088, 0.0017503815470263362, -0.04376126453280449, 0.011774980463087559, 0.019631866365671158, 0.02526067942380905, 0.005090764723718166, 0.2038513422012329, 0.028557948768138885, 0.005556383635848761, 0.038656704127788544, 0.019825011491775513, 0.005904735531657934, 0.012685524299740791, 0.020018156617879868, -0.02246006950736046, 0.0010907549876719713, 0.0019142103847116232, 0.013382227160036564, -0.015879323706030846, 0.0032610557973384857, 0.012526868842542171, -0.011416281573474407, -0.02635057270526886, -0.025067534297704697, -0.0013856468722224236, 0.0034973141737282276, 0.013244266621768475, 0.005377034191042185, -0.011912941932678223, -0.014872207306325436, 0.0059495726600289345, 0.005259767174720764, -0.003029970917850733, 0.005308053456246853, 0.010816151276230812, 0.017300322651863098, -0.01603108085691929, 0.011733592487871647, 0.008663957938551903, -0.005214930046349764, -0.009195107966661453, -0.00644623301923275, 0.013616761192679405, 0.011409384198486805, -0.005514995194971561, 0.0187213234603405, -0.01681745983660221, -0.02164609730243683, 0.02069416642189026, -0.016513945534825325, -0.004073301795870066, 0.01058161724358797, -0.01545164454728365, 0.014168606139719486, 0.008450117893517017, 0.022625621408224106, 0.008119011297821999, 0.004649289418011904, 0.010961010120809078, 0.030986065044999123, -0.023356815800070763, -0.002942020772024989, -0.0032127692829817533, 0.00466308556497097, -0.023370612412691116, -0.014044441282749176, -0.01444452814757824, 0.0011442149989306927, 0.005556383635848761, 0.011857757344841957, -0.023232650011777878, -0.0010390195529907942, -0.015424052253365517, 0.02734389156103134, 0.01128521841019392, 0.007580962963402271, -0.02734389156103134, -0.01908002234995365, -0.028447581455111504, 0.007104997057467699, -0.033993616700172424, -0.022653214633464813, 0.006687664892524481, 0.012278539128601551, 0.009353763423860073, 0.015796547755599022, 0.0008588078781031072, -0.015727566555142403, -0.03857392445206642, 0.00425610039383173, -0.0024988206569105387, -0.03832559660077095, 0.018500585108995438, -0.007153283338993788, -0.011540446430444717, -0.024736426770687103, 0.000333046744344756, 0.014720450155436993, -0.01469285786151886, -0.019411128014326096, 0.0056357113644480705, -0.011533549055457115, -0.00920200627297163, 0.0240190289914608, -0.021094253286719322, -0.01266482938081026, -0.015479236841201782, 0.043954409658908844, 0.008898491971194744, 0.026198815554380417, -0.015989692881703377, 0.02797851338982582, -0.0003194661985617131, 0.019328352063894272, 0.0028402742464095354, -0.00844321958720684, 0.00016749340284150094, -0.028475172817707062, 0.0035904378164559603, -0.007587860804051161, 0.0076223514042794704, 0.0220737773925066, 0.007767210248857737, -0.018735118210315704, 0.007849986664950848, 0.00511145917698741, 0.027743978425860405, -0.012506174854934216, 0.011906043626368046, 0.0006186693790368736, -0.02412939816713333, -0.03101365827023983, -0.011595631018280983, 0.024322543293237686, -0.028557948768138885, -0.02755083329975605, 0.002476401859894395, -0.00933996681123972, 0.007939661853015423, -0.017396895214915276, -0.019314555451273918, 0.015479236841201782, 0.00932617112994194, -0.011416281573474407, -0.006970485206693411, -0.009381355717778206, 0.005901286378502846, 0.01960427314043045, 0.031096434220671654, 0.013906479813158512, -0.007456798106431961, -0.0009786615846678615, 0.009940098039805889, -0.014058236964046955, -0.004238855093717575, -0.037525422871112823, 0.0030558386351913214, 0.023149874061346054, 0.01981121487915516, -0.005835754796862602, 0.03868429362773895, -0.010126345790922642, -0.02239108830690384, -0.021094253286719322, 0.012085393071174622, 0.005052825435996056, -0.048727862536907196, 0.0006811829516664147, 0.04442347586154938, 0.007567166816443205, -0.013982358388602734, -0.007560268975794315, -0.17493468523025513, 0.014720450155436993, 0.0015624095685780048, -0.007898273877799511, 0.017796983942389488, 0.009277884848415852, -0.004428551532328129, 0.008236277848482132, -0.01582413911819458, -0.017493467777967453, 0.012313028797507286, 0.022735990583896637, -0.006601438857614994, -0.0009674523025751114, 0.019480109214782715, -0.006153065711259842, -0.021715078502893448, 0.017865963280200958, 0.05267355218529701, 0.013996155001223087, 0.03515249118208885, -0.04011908918619156, -0.0014028920559212565, -0.002184959128499031, 0.03959484025835991, -0.009070943109691143, 0.0044044083915650845, -0.0002741976932156831, 0.005811611656099558, -0.0402570515871048, 0.008843307383358479, -0.01532747969031334, 0.025798726826906204, -0.0067566451616585255, 0.03564915060997009, -0.007011873181909323, 0.0036387243308126926, -0.002428115578368306, 0.002579872729256749, 0.018031517043709755, 0.030737735331058502, -0.012037106789648533, 0.012802790850400925, 0.01116105355322361, 0.017355507239699364, 0.018376419320702553, 0.016100062057375908, -0.025412436574697495, 0.012657932005822659, -0.02239108830690384, 0.023549960926175117, -0.032476045191287994, -0.004400959238409996, 0.007394715677946806, -0.0033265871461480856, 0.0013908204855397344, 0.01865234225988388, 0.03269678354263306, -0.012085393071174622, -0.01005046721547842, 0.006487620994448662, 0.0036663163919001818, 0.015865527093410492, -0.0012338897213339806, 0.004197466652840376, -0.03730468451976776, 0.03062736615538597, 0.03313826024532318, 0.007032567635178566, 0.01116105355322361, 0.006035798694938421, 0.009788340888917446, -0.027592221274971962, 0.03313826024532318, -0.003088604426011443, 0.01650014892220497, -0.03722190856933594, 0.014996372163295746, 0.038408372551202774, -0.003914646338671446, 0.004049158655107021, 0.00933996681123972, -0.0029592658393085003, -0.016375983133912086, -0.01851438172161579, -0.0008984717424027622, 0.004580308683216572, 0.006204800680279732, 0.0028178556822240353, 0.0004876063030678779, 0.016403576359152794, -0.022335903719067574, -0.014996372163295746, 0.0052735633216798306, 0.021977204829454422, 0.004249202087521553, 0.02381208725273609, -0.010243612341582775, 0.018776506185531616, -0.015175721608102322, 0.013885785825550556, 0.005259767174720764, -0.017314119264483452, 0.0029316735453903675, 0.0409744493663311, 0.024529485031962395, 0.011795674450695515, -0.007739618420600891, 0.02229451574385166, -0.01047124806791544, -0.005911633372306824, 0.01688643917441368, 0.031234394758939743, -0.01163701992481947, -0.004863128997385502, 0.022804971784353256, -0.0171347688883543, -0.029965152963995934, 0.016927829012274742, -0.015437847934663296, 0.06279989331960678, -0.016058672219514847, -0.012726912274956703, 0.020252691581845284, -0.00974695198237896, -0.002702313242480159, -0.11064480990171432, -0.021880632266402245, 0.014292770996689796, 0.022280719131231308, -0.03126198798418045, 0.004069852642714977, -0.013327043503522873, 0.04641011729836464, -0.02250145748257637, 0.017355507239699364, -0.0056253643706440926, -0.03479379042983055, -0.008891593664884567, 0.01747967302799225, -0.0021866834722459316, -0.016693294048309326, 0.004304386675357819, -0.009677971713244915, -0.0042526512406766415, 0.02974441461265087, 0.007856884971261024, -0.010229816660284996, 0.014141013845801353, -0.0210114773362875, -0.019549088552594185, -0.0018952407408505678, -0.03236567601561546, 0.0036421732511371374, 0.01650014892220497, 0.014196198433637619, 0.016665702685713768, -0.009001962840557098, 0.014789431355893612, -0.00030006541055627167, -0.0013847845839336514, -0.008450117893517017, -0.02157711796462536, -0.005804713815450668, 0.014168606139719486, -0.04160907119512558, 0.0033593529369682074, -0.003274851944297552, -0.012140577659010887, -0.012271640822291374, -0.005318400915712118, 0.02010093443095684, -0.01107137929648161, 0.03189660981297493, 0.0108644375577569, -0.014665265567600727, -0.004456143826246262, -0.009540011174976826, 0.008953675627708435, -0.015396459959447384, 0.028916647657752037, 0.0014598009875044227, 0.022694602608680725, -0.0011097246315330267, -0.019976768642663956, -0.0024901980068534613, 0.010650597512722015, -0.004542369395494461, -0.005701242946088314, 0.037525422871112823, -0.012382009997963905, 0.00816039927303791, -0.003707704832777381, -0.0009450336219742894, -0.020459633320569992, 0.001258895150385797, -0.009512418881058693, 3.780457700486295e-05, -0.02927534654736519, 0.006597990170121193, -0.002955816686153412, 0.006653174292296171, -0.020363058894872665, -0.030572181567549706, 0.011223136447370052, 0.008001744747161865, -0.023108486086130142, -0.006353109143674374, -0.002081488259136677, -0.024046622216701508, 0.013920275494456291, 0.008981267921626568, -0.0036387243308126926, -0.0108644375577569, 0.03454546257853508, -0.026543717831373215, 0.032586414366960526, 0.007643045391887426, 0.027950920164585114, -0.009988384321331978, -0.007905171252787113, 0.017603836953639984, -0.021991001442074776, 0.014527305029332638, 0.024170786142349243, 0.0010657495586201549, -0.016196634620428085, -0.006811829749494791, -0.05317021161317825, 0.02433633990585804, 0.0044664908200502396, 0.012161271646618843, 0.017327915877103806, -0.025729747489094734, -0.011092073284089565, -0.0033265871461480856, -0.00978144258260727, 0.0063738031312823296, -0.04147110879421234, 0.015079149045050144, -0.012657932005822659, -0.0031558603513985872, -0.022584233433008194, 4.1819461330305785e-05, 0.024046622216701508, 0.002759222174063325, 0.023936253041028976, 0.0004272483056411147, -0.024598466232419014, -0.0030955024994909763, 0.0002720420598052442, 0.03291752189397812, -0.004563063848763704, 0.007918967865407467, -0.025481417775154114, 0.02433633990585804, -0.0051321531645953655, -0.01245099026709795, 0.013713334687054157, 0.00257469923235476, -0.01354778092354536, 0.024681242182850838, -0.009864219464361668, -0.0314275398850441, -0.009381355717778206, -0.0010459176264703274, 0.007863783277571201, 0.0005220965831540525, -0.0014244484482333064, -0.010809252969920635, 0.024101804941892624, -0.018183274194598198, -0.018693730235099792, -0.016734682023525238, -0.00905714649707079, -0.011236932128667831, 0.0160724688321352, 0.0325036384165287, 0.031455133110284805, 0.003518008394166827, -0.005163194611668587, -0.05424630641937256, -0.007125691510736942, -0.017038196325302124, 0.026723066344857216, 0.011457670480012894, -0.003414537524804473, -0.007615453097969294, 0.04878304898738861, 0.012713116593658924, 0.0037663383409380913, -0.009505520574748516, 0.010871335864067078, -0.03167587146162987, -0.033469364047050476, 0.010250510647892952, -0.011367995291948318, -0.04174702987074852, 0.0031627584248781204, -0.02469503879547119, 0.02963404543697834, 0.03680802509188652, 0.01273381058126688, -0.011250728741288185, -0.009395151399075985, -0.013968562707304955, -0.007360225077718496, 0.023232650011777878, 0.030434221029281616, -0.012050902470946312, -0.029220163822174072, 0.018210865557193756, 0.013195980340242386, 0.012333722785115242, -0.016044877469539642, 0.021949611604213715, 0.006228944286704063, -0.003029970917850733, -0.006094431970268488, -0.015589605085551739, -0.017148565500974655, 0.009222700260579586, 0.000863550347276032, 0.03655969351530075, -0.007677535526454449, 0.012299233116209507, 0.024570873007178307, 0.03225530683994293, -0.005308053456246853, 0.01005046721547842, 0.003983627073466778, -0.0035249062348157167, -0.02730250358581543, 0.007456798106431961, -0.024667445570230484, -0.01513433363288641, -0.005011437460780144, 0.03733227774500847, 0.016044877469539642, 0.0027833653148263693, 0.01513433363288641, 0.0030627367086708546, -0.0035800908226519823, -0.005259767174720764, -0.00844321958720684, -0.02836480364203453, -0.02327403984963894, -0.0014201371232047677, 0.0005790055147372186, 0.015465440228581429, 0.015727566555142403, -0.01303042657673359, 0.04036742076277733, 0.01443073246628046, -0.008256972767412663, -0.01772800274193287, 0.01709338091313839, -0.017824575304985046, 0.015617197379469872, 0.013216674327850342, 0.014141013845801353, -0.016017284244298935, -0.020611390471458435, -0.006142718251794577, -0.0192455742508173, 0.01752106100320816, -0.013761620968580246, 0.0837147980928421, 0.028254434466362, -0.04340256378054619, 0.016265613958239555, -0.013223572634160519, 0.010850640945136547, 0.027881940826773643, -0.010981704108417034, 0.02044583670794964, -0.01050573866814375, 0.012002616189420223, 0.008663957938551903, -0.019507700577378273, -0.02091490477323532, -0.012195762246847153, 0.0026160874404013157, 0.008001744747161865, 0.019121410325169563, -0.014665265567600727, 0.01163701992481947, 0.022018592804670334, -0.0160724688321352, 0.0110368886962533, -0.003397292224690318, -0.030792919918894768, -0.01062990352511406, 0.04842434823513031, 0.028778687119483948, -0.0032041468657553196, -0.047486212104558945, 0.026654087007045746, -0.023232650011777878, -0.021314991638064384, -0.005632262211292982, -0.00657729571685195, -0.010078058578073978, -0.01372023206204176, -0.014389343559741974, -0.011209339834749699, 0.0016296656103804708, 0.0007527503184974194, -0.002710935892537236, -0.026447145268321037, -0.011837063357234001, 0.03678043186664581, -0.0058081625029444695, 0.007104997057467699, -0.030930880457162857, -0.011167951859533787], "4685d941-5282-4a37-b15f-ae84e61f3ed8": [-0.030621983110904694, -0.016968436539173126, -0.002272194717079401, -0.0233672633767128, -0.015012107789516449, 0.03597471863031387, 0.0005230462993495166, -0.026315342634916306, -0.020147472620010376, -0.05646182969212532, 0.008973300457000732, 0.02806788682937622, -0.006514303851872683, 0.002735803835093975, 0.00626297015696764, -0.0003196865727659315, 0.014808324165642262, -0.008925750851631165, 0.0012422349536791444, -0.026763668283820152, -0.01638425514101982, -0.002194077242165804, -0.020419184118509293, 0.011228513903915882, -0.03928960859775543, 0.009822402149438858, 0.019617632031440735, -0.0106850890442729, -0.003442256012931466, -0.011255684308707714, 0.0146045396104455, -0.008164956234395504, -0.020405597984790802, -0.02304120920598507, -0.009543896652758121, -0.017919430509209633, -0.002357104793190956, -0.0063207088969647884, 0.007281891535967588, -0.008973300457000732, 0.01772923208773136, -0.014427926391363144, -0.01801452971994877, 0.013911672867834568, 0.0008507993188686669, 0.021098464727401733, -0.0003436736878938973, -0.015338162891566753, -0.0031263905111700296, 0.0007217359961941838, -0.001980103785172105, 0.020976195111870766, -0.011507018469274044, 0.0037258558440953493, 0.00655166432261467, -0.007173206657171249, -0.00542066153138876, -0.01361278910189867, 0.015474019572138786, 0.0013874312862753868, 0.015609875321388245, 0.01904703676700592, -0.01601744443178177, -0.008640453219413757, -0.014088286086916924, -0.041517648845911026, 0.0003239320940338075, -0.0055870856158435345, -0.0012481786543503404, 0.0038922796957194805, 0.010508475825190544, 0.027279920876026154, 0.006235798820853233, 0.00105543271638453, -0.013925259001553059, -0.01721297763288021, 0.0049927146174013615, -0.0002693773421924561, -0.005254237912595272, 0.006843755021691322, 0.009156706742942333, -0.011670046485960484, -0.004653074312955141, -0.0051115890964865685, 0.011316820047795773, 0.029589476063847542, -0.00943521223962307, 0.008558939211070538, -0.01252594031393528, 0.0009611824643798172, 0.0035254680551588535, -0.0029769486282020807, 0.008429876528680325, -1.615945620869752e-05, 0.013171256519854069, 0.007071314379572868, 0.038338616490364075, 0.0175254475325346, 0.0027629751712083817, -0.026356099173426628, -0.0233672633767128, -0.0027969391085207462, -0.03858315572142601, -0.011405126191675663, -0.02772824652493, 0.001571686239913106, 0.012050443328917027, -0.02236192673444748, 0.013137293048202991, 0.02073165401816368, -0.006952440366148949, 0.038637496531009674, -0.0065550608560442924, -0.018585124984383583, -0.004714209586381912, -0.004459479358047247, 0.033311937004327774, -0.03909941017627716, -0.01153418980538845, -0.00626297015696764, 0.02173698879778385, 0.026668569073081017, 0.027266336604952812, -0.027361435815691948, 0.0035730176605284214, -0.0013424288481473923, 0.001410356955602765, -0.009917501360177994, 0.01753903366625309, 0.0020887888967990875, 0.015093621797859669, 0.03108389489352703, 0.009448797442018986, -0.0011454374762251973, -0.025975702330470085, -0.007567189168184996, -0.02339443378150463, 0.011316820047795773, 0.004687038250267506, -0.014821909368038177, 0.018259070813655853, 0.017335249111056328, -0.013157671317458153, -0.03336627781391144, -0.009903916157782078, 0.01921006478369236, 0.0012694061733782291, 0.015895172953605652, 0.018979107961058617, -0.026247413828969002, 0.01043375488370657, -0.016302742063999176, -0.017973773181438446, 0.01445509772747755, -0.012097992934286594, -0.010583196766674519, 0.005345940589904785, 0.016289155930280685, -0.00016026783850975335, -0.010827737860381603, 0.00015782666741870344, 0.015215892344713211, 0.00024008334730751812, -0.004598731640726328, -0.0030329893343150616, 0.023965030908584595, -0.002946380991488695, -0.06097225472331047, -0.0090208500623703, -0.007098485715687275, 0.011778730899095535, 0.030350271612405777, -0.012471597641706467, 0.03562149032950401, 0.019345920532941818, -0.012328948825597763, 0.006782619748264551, -0.003939829301089048, -0.012328948825597763, -0.04858217015862465, 0.02719840779900551, -0.011079072020947933, 0.010963593609631062, 0.0021516222041100264, -0.020405597984790802, -0.0417078472673893, 0.008205713704228401, -0.004771948326379061, -0.004846669267863035, -0.009910708293318748, 0.0018527386710047722, -0.0018629279220476747, -0.026600640267133713, -0.003797180252149701, -0.6208084225654602, -0.015460433438420296, 0.011310026980936527, -0.020269742235541344, -0.004371172748506069, -0.0030211019329726696, 0.005373111926019192, -0.007363405078649521, -0.006330898031592369, 0.004693831317126751, 0.011608910746872425, 0.01619405671954155, -0.010766602121293545, -0.014550196938216686, -0.02738860622048378, -0.008572525344789028, 0.02571757510304451, -0.00016111694276332855, -0.014305655844509602, 0.007356612477451563, -0.025799088180065155, 0.03173600509762764, -0.012892751954495907, 0.011581739410758018, -0.0020395410247147083, -0.008463840000331402, 0.026491954922676086, 0.002392766997218132, -0.014672467485070229, 0.00021970491798128933, -0.02737502008676529, 0.012016478925943375, 0.032333772629499435, -0.003647738602012396, 0.039670005440711975, -0.02324499376118183, -0.00526103051379323, 0.02638327144086361, 0.024848096072673798, 0.026804424822330475, -0.016791824251413345, -0.014740395359694958, 0.024454113095998764, 0.041354622691869736, -0.00660261046141386, -0.003946621902287006, -0.0065380786545574665, -0.00501309335231781, -0.008402705192565918, -0.00016345197218470275, -0.010134871117770672, -0.02335367724299431, -0.008871409110724926, 0.0011530793271958828, 0.0012150637339800596, -0.009109157137572765, 0.03706156834959984, -0.0026407046243548393, 0.007193584926426411, 0.0007667383179068565, 0.0033233817666769028, 0.009598239324986935, -0.001949536264874041, -0.05733130872249603, -0.035132408142089844, -0.0076011535711586475, -0.008239677175879478, -0.03227942809462547, 0.018326999619603157, -0.009679753333330154, 0.030975209549069405, -0.005159138701856136, 0.00867441762238741, -0.00844346173107624, -0.004629299510270357, 0.021329421550035477, 0.041816532611846924, 0.00551236467435956, 0.002779957139864564, 0.014156213961541653, 0.005379904992878437, -0.016615211963653564, -0.01854436844587326, -0.016126129776239395, 0.029643818736076355, 0.01702277921140194, -0.031817518174648285, -0.01118096336722374, 0.001586120924912393, -0.012097992934286594, 0.00859290361404419, 0.031328435987234116, -0.009408040903508663, -0.03627360239624977, 0.014821909368038177, 0.03420858830213547, 0.0003922847390640527, -0.00961182452738285, -0.01688692346215248, -0.03374667465686798, -0.02790486067533493, -0.022293999791145325, 0.011826280504465103, 0.0027154255658388138, 0.02657346986234188, 0.004303244408220053, 0.0006601761560887098, -0.011140206828713417, 0.030975209549069405, -0.017973773181438446, 0.010848116129636765, -0.008015514351427555, -0.022280413657426834, -0.0062969340942800045, -0.008980093523859978, -0.02520132251083851, 0.0313556082546711, -0.0011861942475661635, -0.004894218873232603, -0.016927680000662804, -0.00020654384570661932, 0.017117878422141075, 0.010121285915374756, -0.004310037475079298, -0.012097992934286594, 0.036681167781353, 0.015976687893271446, -0.0028020336758345366, 0.022579297423362732, -0.010610368102788925, 0.007737009786069393, -0.015745731070637703, -0.0026339117903262377, -0.008151371031999588, 0.01151381153613329, -0.0006444677710533142, 0.0037292521446943283, -0.004955354146659374, 0.0074924686923623085, -0.052195943892002106, -0.005254237912595272, -0.009822402149438858, 0.01584083028137684, 0.005824833642691374, -0.012179506942629814, -0.01690050959587097, -0.01823190040886402, 0.017566204071044922, -0.01151381153613329, -0.005583689082413912, -0.0350508950650692, -0.02054145559668541, -0.002143131336197257, 0.030024215579032898, -0.0012108181836083531, 0.01605820097029209, 0.0006610252312384546, -0.05322845280170441, -0.02638327144086361, -0.05580972135066986, -0.016112543642520905, 0.022171728312969208, -0.012845202349126339, 0.011167378164827824, -0.016452183946967125, -0.020296914502978325, -0.014889837242662907, -0.01889759488403797, -0.0035730176605284214, -0.022307585924863815, 0.00135516538284719, -0.03276851028203964, 0.011568154208362103, 0.050837382674217224, -0.04157199338078499, 0.010155249387025833, -0.025432277470827103, 0.007587567903101444, 0.007954379543662071, -0.012519147247076035, 0.01601744443178177, 0.019617632031440735, -0.01387770939618349, -0.0003668116987682879, 0.030486127361655235, 0.019821416586637497, 0.005033471621572971, 0.01261424645781517, -0.026138730347156525, 0.010861702263355255, -0.007689459715038538, 0.015460433438420296, -0.010223178192973137, 0.008382326923310757, -0.019807832315564156, -0.017457518726587296, -0.02139734849333763, -0.01178552396595478, -0.014631710946559906, 0.01669672504067421, 0.009136328473687172, 0.00755360396578908, -0.010107699781656265, -0.005264427047222853, 0.009924294427037239, -0.0269131101667881, 0.008178542368113995, -0.016397841274738312, 0.023815589025616646, -0.01672389544546604, 0.006830169353634119, -0.003583206795156002, 0.006823376752436161, -0.02888302505016327, -0.0029922323301434517, 0.02673649601638317, -0.005607463885098696, 0.01853078417479992, -0.00709169264882803, 0.010379412211477757, 0.005040264222770929, -0.008565732277929783, 0.023924274370074272, 0.005053849890828133, 0.008287226781249046, 0.018639467656612396, -0.010175627656280994, 0.016818994656205177, 0.014550196938216686, -0.029290592297911644, 0.008321191184222698, 0.013966015540063381, 0.007791351992636919, 0.002827506745234132, 0.027361435815691948, 0.0233672633767128, 0.02370690368115902, -0.024508455768227577, 0.012750103138387203, -0.030839353799819946, 0.008402705192565918, 0.01801452971994877, 0.029969874769449234, -0.022457027807831764, 0.006065978668630123, 0.009822402149438858, 0.0007905131787993014, -0.0020038785878568888, -0.01718580722808838, 0.017145050689578056, -0.0017729231622070074, 0.00836194772273302, 0.004167388193309307, -0.02086750976741314, 0.029806846752762794, -0.008912165649235249, -0.0007510299328714609, 0.019753489643335342, 0.014971351251006126, 0.013938844203948975, 0.01437358371913433, 0.018924767151474953, -0.00016982022498268634, -0.005614256951957941, 0.039506979286670685, -0.01494417991489172, -0.012913130223751068, -0.027171237394213676, -0.01219309214502573, -0.009360491298139095, -0.011473054997622967, -0.03143712133169174, -0.025174150243401527, -0.012824824079871178, -0.022796668112277985, -0.004333812277764082, -0.01369430311024189, 0.027456535026431084, -0.005339147988706827, 0.010848116129636765, -0.0192236490547657, -0.025513790547847748, 0.014251313172280788, 0.0005357828340493143, -0.011527396738529205, -0.013816573657095432, 0.00042179098818451166, 0.00961182452738285, -0.0010571308666840196, 0.009299355559051037, -0.005458022002130747, 0.0013475235318765044, -0.0015640442725270987, 0.01771564595401287, 0.004826290998607874, 0.018326999619603157, 0.048174601048231125, -0.0005918234819546342, 0.004901011940091848, 0.007220756262540817, -0.0022467216476798058, 0.004034928511828184, -0.013368248008191586, -0.03140994906425476, 0.05195140466094017, -0.03812124580144882, -0.015935929492115974, -0.01494417991489172, -0.004058703314512968, -0.03263265639543533, 0.027592390775680542, -0.025473034009337425, -0.035132408142089844, -0.015786487609148026, -0.02003878727555275, -0.0008040987886488438, 0.004364379681646824, 0.012838409282267094, 0.036817025393247604, 0.014427926391363144, -0.013062572106719017, -0.026858767494559288, -0.010318277403712273, 0.032469626516103745, 0.0768945962190628, 0.006840358953922987, -0.01823190040886402, 0.025799088180065155, -0.02104412205517292, -0.014808324165642262, -0.00817174930125475, -0.037306107580661774, 0.021750574931502342, -0.01738959178328514, -0.0010953404707834125, 0.01601744443178177, 0.028665654361248016, -0.006330898031592369, 0.0011479847598820925, 0.015310991555452347, 0.008715174160897732, -0.012722931802272797, -0.0076079461723566055, 0.024250328540802002, -0.005040264222770929, -0.001891797292046249, 0.030649155378341675, 0.03472483903169632, 0.05749433487653732, 0.03021441586315632, 0.036001887172460556, 0.023258578032255173, 0.00944200437515974, -0.011174171231687069, -0.02185926027595997, 0.008409497328102589, -0.0025150375440716743, 0.022932523861527443, -0.026288172230124474, 0.03488786891102791, -0.005240652244538069, -0.0225521270185709, -0.009428419172763824, 0.01128285564482212, -0.005291598383337259, 0.00772342411801219, 0.01193496584892273, -0.0007455107988789678, 0.011153792962431908, -0.02388351783156395, 0.003902468830347061, 0.03774084895849228, -0.009177085012197495, -0.02270156890153885, 0.006884512025862932, 0.022986866533756256, -0.004890822805464268, 0.026953866705298424, -0.00020187380141578615, -0.00014646994532085955, 0.004462875425815582, -0.006616196129471064, -0.011479847133159637, -0.0403764583170414, -0.05597274750471115, 0.003562828293070197, -0.010719052515923977, -0.01369430311024189, -0.015433262102305889, 0.0005285654333420098, -0.021329421550035477, 0.008884994313120842, -0.026953866705298424, 0.028258085250854492, 0.004496839828789234, -0.04564767703413963, -0.041680674999952316, 0.006823376752436161, 0.03562149032950401, 0.019318748265504837, 0.008905372582376003, 0.016234813258051872, -0.010080528445541859, 0.011989308521151543, 0.0175254475325346, -0.03287719562649727, 0.0032333771232515574, -0.028937367722392082, -0.0210712943226099, -0.02386993169784546, -0.017104294151067734, -0.006290141027420759, 0.004612317308783531, 0.010508475825190544, -0.018326999619603157, -0.016492940485477448, -0.009414833039045334, -0.005573499947786331, 0.022633640095591545, 0.04773986339569092, 0.015188721008598804, 0.006595817860215902, 0.0253643486648798, -0.027293507009744644, 0.028312427923083305, -0.010827737860381603, -0.006042203865945339, -0.015433262102305889, 0.009720509871840477, 0.0045172180980443954, -0.005814644508063793, -0.02636968530714512, 0.02638327144086361, -0.017294492572546005, 0.0018187746172770858, -0.016982022672891617, 0.00129572837613523, -0.02173698879778385, 0.013334284536540508, -0.005325562320649624, -0.005688977427780628, 0.02638327144086361, 0.0036341529339551926, -0.0012464805040508509, 0.007818522863090038, -0.031002379953861237, 0.03217074275016785, 0.00977485254406929, -0.015324577689170837, 0.026328928768634796, 0.021084880456328392, -0.014631710946559906, -0.030268756672739983, 0.0160446148365736, 0.0051183816976845264, 0.019291577860713005, -0.0037156667094677687, 0.0007782012107782066, -0.028149401769042015, -0.005787473171949387, -0.0021516222041100264, -0.0011683631455525756, -0.015120793133974075, 0.018462855368852615, -0.015963101759552956, 0.010814151726663113, 0.021927187219262123, -0.013368248008191586, -0.012403669767081738, -0.020324084907770157, -0.01721297763288021, -0.014237727969884872, 0.002897133119404316, 0.025255665183067322, -0.0071392422541975975, -0.012437633238732815, -0.01721297763288021, -0.012824824079871178, 0.009795230813324451, -0.0052032917737960815, 0.0038515226915478706, -0.007784559391438961, 0.056407488882541656, 0.009856365621089935, 0.029263421893119812, 0.01502569392323494, -0.002932795323431492, 0.014563783071935177, -0.019943688064813614, -0.019916515797376633, -0.025255665183067322, -0.012478390708565712, -8.411407907260582e-05, 0.019780660048127174, 0.005872383713722229, 0.019576875492930412, -0.010780188255012035, -0.005644824355840683, 0.013864123262465, 0.0187073964625597, 0.0031382779125124216, -0.02237551286816597, -0.029209079220891, -0.026614226400852203, -0.0038820903282612562, 0.029154736548662186, 0.011724388226866722, 0.01276368834078312, -0.019427433609962463, 0.0221853144466877, 0.029100393876433372, -0.010800566524267197, 0.025636062026023865, 0.0015080036828294396, 0.044207602739334106, 0.009238220751285553, -0.009706924669444561, 0.004754966590553522, 0.006025221664458513, -0.03885486721992493, -0.01753903366625309, -0.03187185898423195, -0.019658390432596207, 0.006120320875197649, 0.005213480908423662, 0.023299334570765495, 0.018299827352166176, 0.004208145197480917, -0.00734302680939436, 0.008042685687541962, -0.024168815463781357, -0.0053595262579619884, 0.01971273124217987, -0.016954852268099785, 0.0005018187803216279, -0.04744097962975502, -0.02154679037630558, 0.0014315844746306539, -0.02488885261118412, 0.0011242099571973085, -0.00685394462198019, 0.023666147142648697, -0.033828187733888626, -0.019644804298877716, 0.03054047003388405, -0.005739923566579819, 0.031790345907211304, 0.025758331641554832, 0.03244245797395706, 0.015310991555452347, 0.008246470242738724, -0.02185926027595997, -0.01690050959587097, 0.0012974265264347196, -0.014998522587120533, 0.01127606350928545, 0.040512312203645706, -0.0031739401165395975, -0.010868494398891926, -0.0034915038850158453, -0.019250821322202682, -0.00851138960570097, -0.019345920532941818, 0.012607453390955925, 0.010372619144618511, 0.021098464727401733, -0.023978617042303085, -0.015270235016942024, -0.008898579515516758, 0.0225521270185709, -0.020120300352573395, 0.02574474737048149, 0.012770481407642365, -0.024426940828561783, 0.009740888141095638, 0.03225225955247879, -0.004109649453312159, 0.01690050959587097, 0.012199885211884975, 0.015895172953605652, 0.005559914279729128, -0.0019223649287596345, -0.025975702330470085, -0.030024215579032898, 0.012811237946152687, 0.03486069664359093, -0.0233672633767128, 0.006334294565021992, 0.01605820097029209, 0.017063535749912262, -0.002041239058598876, -0.0013042193604633212, -0.02287818118929863, 0.029018880799412727, 0.0037054773420095444, -0.004622506443411112, 0.0012634624727070332, 0.029670991003513336, 0.0071324496529996395, -0.031029552221298218, -0.025989288464188576, 0.001686314819380641, -0.0008898579981178045, 0.0019614235498011112, 0.018476441502571106, -0.03597471863031387, -0.03127409145236015, -0.01937309093773365, 0.012845202349126339, -0.025106223300099373, 0.018625883385539055, -0.004744776990264654, 0.0013568636495620012, -0.03328476473689079, -0.019481776282191277, 0.010929630137979984, 0.002521830378100276, -0.004238713067024946, -0.0010944913374260068, -0.006086356937885284, -0.0076011535711586475, 0.014142628759145737, -0.023774832487106323, 0.010039771907031536, 0.01654728315770626, 0.022443441674113274, -0.04159916192293167, 0.020976195111870766, -0.016954852268099785, 0.001228649402037263, 0.007193584926426411, 0.011636082082986832, -0.022783081978559494, -0.008973300457000732, 0.026994623243808746, 0.0062969340942800045, -0.007064521312713623, -0.004683641716837883, 0.010297898203134537, 0.008918958716094494, 0.01002618670463562, -0.005559914279729128, 0.003078840672969818, -0.0034677290823310614, -0.003179034683853388, -0.005621049553155899, 0.029018880799412727, -0.006493925582617521, 0.023285750299692154, -0.008219298906624317, 0.001949536264874041, -0.007213963195681572, -0.049342963844537735, -0.019631218165159225, -0.009475968778133392, 0.00045342001249082386, -0.0055701034143567085, -0.004958750680088997, 0.006996593438088894, -0.02054145559668541, -0.0008491011685691774, 0.0031739401165395975, -0.028339600190520287, 0.007981550879776478, 0.046517156064510345, 0.003066953271627426, 0.02256571128964424, 0.02268798276782036, -0.02272873930633068, -0.011595325544476509, -0.02123432047665119, -0.006028618197888136, -0.03551280498504639, -0.004136820789426565, -0.004072288982570171, 0.020500697195529938, 0.006599213927984238, -0.025622475892305374, -0.02340801991522312, -0.00622221315279603, -0.03537695109844208, -0.017674889415502548, -0.03545846417546272, 0.017742818221449852, 0.030513297766447067, 0.013558447360992432, 0.011296441778540611, 0.029834017157554626, 0.008219298906624317, 0.0058282301761209965, -0.03575734794139862, -0.00045681640040129423, -0.017457518726587296, -0.012546318583190441, 0.034507472068071365, -0.02571757510304451, -0.044995568692684174, -0.014006772078573704, -0.0021295456681400537, -0.008586110547184944, 0.020432770252227783, -0.021275078877806664, -0.00048568585771135986, 0.000821080815512687, 0.001771225011907518, 0.01001260057091713, 0.010834530927240849, 0.009754474274814129, 0.008151371031999588, -0.036681167781353, -0.001401865971274674, 0.031491462141275406, -1.0355053746025078e-05, -0.011941758915781975, -0.00016546859114896506, 0.0005994653911329806, -0.011398334056138992, 0.0007807484944351017, -0.011975722387433052, -0.012199885211884975, -0.019264407455921173, -0.0032656430266797543, -0.0054784007370471954, 0.009129535406827927, 0.008001929149031639, 0.0424414724111557, 0.004578353371471167, -0.03151863440871239, -0.009041229262948036, -0.0009017453994601965, 0.016832580789923668, 0.007580774836242199, 0.01937309093773365, -0.025473034009337425, 0.011031522415578365, -0.009251805953681469, 0.014129042625427246, 0.008871409110724926, -0.007200377527624369, -0.02073165401816368, -0.015650631859898567, 0.003333571134135127, 0.00984278041869402, -0.0061950418166816235, 0.009543896652758121, 0.004693831317126751, -0.0167103111743927, -0.016397841274738312, 0.005114985164254904, 0.001290633692406118, 0.01445509772747755, -0.02942644990980625, -0.00942162610590458, 0.0070305573754012585, 0.01411545742303133, -0.04078402742743492, 0.013660338707268238, 0.026505541056394577, 0.013966015540063381, 0.0010486398823559284, 0.19998030364513397, 0.018816081807017326, 0.0015648934058845043, 0.035648662596940994, 0.006140699610114098, -0.00827364157885313, 0.007519639562815428, 0.016479354351758957, -0.00969333853572607, -0.010549232363700867, -0.006989800371229649, 0.01227460615336895, 0.0029837414622306824, -0.005688977427780628, 0.01937309093773365, -0.005627842154353857, -0.026804424822330475, -0.013578825630247593, 0.006677331402897835, -0.0018697207560762763, 0.010848116129636765, -0.005885968916118145, -0.004116442520171404, -0.017443934455513954, 0.01494417991489172, 0.0009722207905724645, 0.0003249934525229037, -0.0008550448692403734, 0.016588039696216583, 0.011289648711681366, -0.008531767874956131, -0.0033284765668213367, 0.0036137744318693876, 0.0003965302312280983, -0.011846658773720264, 0.004371172748506069, 0.014849080704152584, -0.009638995863497257, -0.002949777292087674, 0.017335249111056328, -0.005573499947786331, -0.02420957200229168, 0.016248399391770363, -0.004615713842213154, 0.007376990746706724, 0.015406090766191483, -0.015569118782877922, 0.01101114321500063, -0.008817066438496113, 0.01285199448466301, -7.403100607916713e-05, -0.00539349066093564, 0.0008830651640892029, 0.014495854265987873, -0.017267320305109024, -0.0036341529339551926, -0.002081996062770486, 0.01202327199280262, -0.015460433438420296, -0.01567780412733555, -0.008742345497012138, 0.01370788924396038, 0.0038107659202069044, 0.01078698132187128, -0.026274586096405983, -0.011214927770197392, -0.018272656947374344, 0.04143613576889038, 0.017674889415502548, 0.005271220114082098, -0.016397841274738312, -0.01078698132187128, -0.03189903125166893, 0.01052206102758646, -0.024983951821923256, -0.03024158626794815, 0.009346905164420605, 0.0265462975949049, 0.017063535749912262, 0.0230683796107769, -0.014658882282674313, -0.01751186139881611, -0.034833524376153946, -0.00042539965943433344, 0.0021363385021686554, -0.04192521795630455, 0.023326506838202477, -0.028339600190520287, -0.006089753471314907, -0.017606960609555244, 0.0035118823871016502, 0.007254720199853182, -0.01801452971994877, -0.024250328540802002, 0.008789895102381706, -0.010121285915374756, 0.004028135910630226, 0.02790486067533493, -0.0067894128151237965, -0.025337178260087967, -0.02588060311973095, 0.04564767703413963, 0.013884501531720161, 0.026668569073081017, -0.021587546914815903, 0.01772923208773136, 0.003651134902611375, 0.021261492744088173, -0.0033063997980207205, 0.0010775093687698245, -0.009897123090922832, -0.0451042540371418, 0.011235306039452553, -0.014631710946559906, 0.008606488816440105, 0.028638483956456184, 0.01295388676226139, -0.03494220972061157, 0.0047277952544391155, -0.0019631218165159225, 0.015012107789516449, -0.015555532649159431, 0.02956230565905571, -0.004401740152388811, -0.005862194113433361, -0.03594754636287689, -0.003053367603570223, 0.02972533367574215, -0.02672291174530983, -0.028529798611998558, -0.00017417187336832285, -0.016818994656205177, 0.01956329122185707, -0.0003370931663084775, 0.0034728236496448517, 0.019848588854074478, 0.025146979838609695, -0.011045107617974281, 0.006245987955480814, -0.008266848511993885, 0.009204256348311901, 0.019074207171797752, 0.027605976909399033, 0.003029592800885439, -0.00901405792683363, 0.014658882282674313, 0.009380869567394257, -0.01771564595401287, -0.005023282486945391, -0.035485636442899704, 0.0007421143818646669, 0.01953611895442009, 0.00609315000474453, 0.0030278947670012712, 0.034018389880657196, -0.0049723363481462, -0.0037054773420095444, -0.025269249454140663, 0.015052865259349346, 0.005770491436123848, -0.03252397105097771, -0.0029429844580590725, 0.037849534302949905, 0.01854436844587326, -0.009258599020540714, -0.019074207171797752, -0.17161352932453156, 0.010623953305184841, 0.006354672834277153, -0.0048432727344334126, 0.019277991726994514, -0.0032673412933945656, 0.0057976627722382545, 0.016071787104010582, -0.00810382142663002, -0.017009194940328598, -0.0006563551723957062, 0.016968436539173126, -0.004540992900729179, 0.008552147075533867, 0.018490025773644447, 0.003912657964974642, -0.010005807504057884, 0.013857330195605755, 0.06504794210195541, 0.017960187047719955, 0.025106223300099373, -0.041517648845911026, 0.0008316945750266314, -0.004163992125540972, 0.03219791501760483, -0.00346603081561625, -0.000776927568949759, 0.0038073696196079254, 0.00024730071891099215, -0.03211640194058418, -0.00127280259039253, -0.0036579277366399765, 0.01495776604861021, -0.0003315740032121539, 0.02605721540749073, 0.0004589391755871475, 0.0024216363672167063, -0.012369705364108086, -0.0019070811104029417, 0.016166886314749718, 0.02719840779900551, 0.00572294183075428, 0.001149682910181582, 0.00911595020443201, 0.03575734794139862, 0.02056862600147724, 0.013585618697106838, -0.013409005478024483, 0.006317312363535166, -0.0167103111743927, 0.025649648159742355, -0.03456181287765503, 0.009034436196088791, 0.0021278474014252424, -0.015609875321388245, -0.005716148763895035, 0.01344296894967556, 0.019644804298877716, 0.006008239462971687, -0.015976687893271446, 0.0097612664103508, -0.004547785501927137, 0.0010826039360836148, -0.007227548863738775, -0.005434247199445963, -0.026356099173426628, 0.03953414782881737, 0.028801510110497475, -0.00258636218495667, 0.005784077104181051, 0.016588039696216583, 0.010155249387025833, -0.02687235362827778, 0.034018389880657196, -0.018286243081092834, 0.006256177090108395, -0.03755065053701401, 0.005885968916118145, 0.037469133734703064, -0.000715367728844285, 0.0178922601044178, 0.01740317791700363, -0.011921379715204239, -0.018775325268507004, -0.01269576046615839, 0.005743320100009441, 0.014414341188967228, -0.007173206657171249, -0.019794246181845665, 0.0023757850285619497, 0.015433262102305889, -0.013870916329324245, -0.015514776110649109, 0.00709169264882803, 0.021424520760774612, -0.005165931303054094, 0.02586701698601246, -0.005043660756200552, 0.014767566695809364, -0.00021259370259940624, 0.012233849614858627, 0.004839876666665077, -0.011907794512808323, 0.024657897651195526, 0.016601625829935074, 0.03227942809462547, 0.020826753228902817, -0.0008083442808128893, 0.010474511422216892, -0.010956801474094391, -0.008817066438496113, 0.01011449284851551, 0.04070251062512398, -0.0004597882798407227, -0.00016026783850975335, 0.030948039144277573, -0.0029361918568611145, -0.019250821322202682, 0.004123235121369362, -0.011663253419101238, 0.05292956903576851, -0.0178922601044178, -0.003005817998200655, 0.02790486067533493, -0.00943521223962307, -0.007818522863090038, -0.11401050537824631, -0.031491462141275406, 0.012240641750395298, 0.015908759087324142, -0.027687489986419678, 0.012580282054841518, -0.008837444707751274, 0.034833524376153946, -0.015813659876585007, 0.016003858298063278, -0.020147472620010376, -0.014808324165642262, -0.0060625821352005005, -0.0032299808226525784, 0.02571757510304451, -0.006857340689748526, 0.013279941864311695, -0.0008278735913336277, -0.009211049415171146, 0.03374667465686798, 0.012294984422624111, -0.0018782117404043674, 0.017335249111056328, -0.014590954408049583, -0.00836194772273302, -0.009788437746465206, -0.028285257518291473, 0.005634635221213102, 0.01529740635305643, 0.010936422273516655, 0.018979107961058617, -0.016588039696216583, 0.009584654122591019, -0.021098464727401733, -0.012376498430967331, -0.0068811154924333096, -0.032822854816913605, -0.006534682586789131, 0.0035933959297835827, -0.044017404317855835, -0.005043660756200552, 0.005529346410185099, -0.018788909539580345, -0.03809407353401184, -0.0005204990156926215, -5.176863487577066e-05, -0.009564274922013283, 0.03502372279763222, 0.009672960266470909, -0.01721297763288021, -0.012587075121700764, -0.004534200299531221, -0.007947586476802826, -0.022090215235948563, 0.02855696901679039, -0.0042522987350821495, 0.002226343145594001, 0.006446375977247953, -0.02589418925344944, 0.0005404528928920627, 0.00023456418421119452, -0.011140206828713417, -0.004306640941649675, 0.035159580409526825, -0.012369705364108086, 0.012125164270401001, -0.012743310071527958, -0.005274616181850433, -0.006568646524101496, 0.007295477204024792, -0.0007043294026516378, -0.007078106980770826, -0.033013053238391876, 0.006595817860215902, -0.009462383575737476, 0.008878201246261597, -0.034670498222112656, -0.03151863440871239, 0.019957272335886955, 0.009163499809801579, -0.004578353371471167, -0.010997558012604713, -0.0033743279054760933, -0.03437161445617676, 0.01921006478369236, 0.009822402149438858, 0.004554578568786383, -0.0012634624727070332, 0.028475455939769745, -0.03170883283019066, 0.013836951926350594, 0.005315373186022043, 0.022348342463374138, -0.006110131740570068, -0.006711295340210199, 0.01786508783698082, -0.004177577793598175, 0.015310991555452347, 0.020079543814063072, 0.004099460318684578, -0.016588039696216583, 0.0002963363076560199, -0.04089271277189255, 0.007451711688190699, 0.011737974360585213, 0.019441019743680954, 0.01387770939618349, -0.007791351992636919, -0.015786487609148026, -0.009971844032406807, -0.012118371203541756, 0.0077641806565225124, -0.029507962986826897, 0.011330405250191689, -0.025595305487513542, -0.004615713842213154, -0.027130478993058205, -0.008701588958501816, 0.01051526889204979, -0.007900036871433258, 0.009666167199611664, 1.0872474376810715e-05, -0.032496798783540726, -0.009509933181107044, 0.010780188255012035, 0.026818010956048965, -0.007220756262540817, 0.003309796331450343, 0.0022450233809649944, 0.023312920704483986, -0.007057728711515665, -0.01143229752779007, 0.018775325268507004, 0.008457046933472157, -0.009061607532203197, 0.021465277299284935, -0.00959144625812769, -0.03333910554647446, 0.00685394462198019, -0.005244048777967691, 0.014482269063591957, 0.002627118956297636, -0.006184852682054043, -0.009652581997215748, 0.034996554255485535, -0.005070832092314959, -0.020459940657019615, -0.0038243515882641077, -0.011051900684833527, -0.007383783347904682, 0.01453661173582077, 0.025092637166380882, 0.03217074275016785, 0.004048514179885387, 0.0010843022027984262, -0.033828187733888626, -0.016506526619195938, -0.014821909368038177, 0.034996554255485535, 0.010753016918897629, -0.003756423480808735, -0.017158634960651398, 0.04790288954973221, 0.016655968502163887, -0.003644342068582773, -0.012627832591533661, 0.009428419172763824, -0.0017262225737795234, -0.02871999703347683, 0.016465770080685616, -0.009754474274814129, -0.02953513339161873, -0.006626385264098644, -0.013836951926350594, 0.029290592297911644, 0.0350508950650692, 0.02172340452671051, -0.000559982203412801, -0.016289155930280685, -0.0076011535711586475, -0.007804937660694122, 0.028638483956456184, 0.022090215235948563, 0.002219550311565399, -0.0221853144466877, 0.0210712943226099, 0.028502626344561577, 0.0046191103756427765, -0.021995116025209427, 0.01638425514101982, -0.0033590442035347223, -0.0042353165335953236, -0.023842759430408478, -0.011507018469274044, -0.02490243874490261, 0.005964086391031742, 0.01787867397069931, 0.03907223790884018, -0.0027612769044935703, 0.03369233384728432, 0.03274134173989296, 0.03920809552073479, 0.0017168824560940266, 0.012655002996325493, 0.0020242570899426937, -0.009795230813324451, -0.028475455939769745, 0.004717606119811535, -0.01719939336180687, -0.022457027807831764, 0.010508475825190544, 0.03206205740571022, 0.014794738031923771, -0.0032062060199677944, -0.004116442520171404, -0.005475004203617573, -0.012655002996325493, -0.009985429234802723, -0.007954379543662071, -0.010325069539248943, -0.010223178192973137, 0.000636401295196265, 0.009000471793115139, 0.009326526895165443, 0.020582212135195732, -0.01772923208773136, 0.026491954922676086, 0.016397841274738312, 0.001225252985022962, -0.013809780590236187, 0.009768059477210045, -0.012070821598172188, 0.023992201313376427, 0.02157396264374256, 0.017606960609555244, -0.006928665097802877, -0.009550689719617367, -0.019943688064813614, -0.005315373186022043, 0.020799580961465836, -0.0183405838906765, 0.07363405078649521, 0.025500206276774406, -0.01872098259627819, -0.0011794015299528837, 0.001885004574432969, 0.017960187047719955, 0.017769988626241684, -0.003518675221130252, 0.011710803024470806, -0.007614739239215851, 0.021927187219262123, 0.007410954684019089, -0.02790486067533493, -0.011242099106311798, -0.003950018435716629, 0.0020887888967990875, 0.004201352596282959, 0.009503140114247799, -0.019481776282191277, 0.008253263309597969, 0.021343005821108818, -0.011887416243553162, 0.018245484679937363, -0.01586800254881382, -0.023326506838202477, -0.00238087959587574, 0.040675342082977295, 0.0090208500623703, -0.004530803766101599, -0.026478370651602745, 0.012417254969477654, -0.019169308245182037, -0.018829666078090668, -0.007268305867910385, -0.014006772078573704, -0.008008722215890884, -0.0036952882073819637, -0.01718580722808838, -0.01786508783698082, 0.004303244408220053, 0.0012413858203217387, 0.009068400599062443, -0.031654492020606995, -0.010766602121293545, 0.03575734794139862, -0.006962629500776529, 0.014672467485070229, -0.035675834864377975, -0.002917511621490121]}, "text_id_to_ref_doc_id": {"45502c38-a88c-4932-9c54-5cbb479f14da": "322fd939-b6d5-473c-891e-24941399e0b9", "a241bfb6-52df-4223-80ca-dfc6b486a9ae": "322fd939-b6d5-473c-891e-24941399e0b9", "b978fe8b-d903-4973-a3b1-d979740a906f": "322fd939-b6d5-473c-891e-24941399e0b9", "2f509e7c-4766-431e-bee6-7c7bd37f6936": "322fd939-b6d5-473c-891e-24941399e0b9", "52307f8e-27e7-4fc9-82ac-553225271c9c": "322fd939-b6d5-473c-891e-24941399e0b9", "87138cd6-39bb-4c54-82e7-8a9bcec1f852": "322fd939-b6d5-473c-891e-24941399e0b9", "cbfa41fc-7c57-4dca-943e-b888a7dba157": "322fd939-b6d5-473c-891e-24941399e0b9", "19eeaf0e-0951-492b-9b7c-e9ed7ccfa7e8": "322fd939-b6d5-473c-891e-24941399e0b9", "faed06c2-415c-488c-b88b-fb849d4daad0": "322fd939-b6d5-473c-891e-24941399e0b9", "5d9a19ed-0f19-42d8-9950-405584501c6f": "322fd939-b6d5-473c-891e-24941399e0b9", "41ff879f-3e90-4083-823a-4e4fddb34caf": "322fd939-b6d5-473c-891e-24941399e0b9", "28f19db6-e542-4df6-8b44-969d7633e53c": "322fd939-b6d5-473c-891e-24941399e0b9", "164a706a-545d-413a-94e2-1435ca0e56f9": "322fd939-b6d5-473c-891e-24941399e0b9", "71483569-9d8c-4746-a129-fde439817d02": "322fd939-b6d5-473c-891e-24941399e0b9", "6e10e340-5c45-4969-a8fc-f03571701760": "322fd939-b6d5-473c-891e-24941399e0b9", "8a3446a0-48bf-4591-82c5-c01cce6bbb83": "322fd939-b6d5-473c-891e-24941399e0b9", "cd5ca5e5-1a1f-4db1-8565-edcad71fbb05": "322fd939-b6d5-473c-891e-24941399e0b9", "584df3b5-0387-4172-a121-3f803a865c10": "322fd939-b6d5-473c-891e-24941399e0b9", "cf8ca687-4a5d-42df-8c80-d4f5cd78def8": "322fd939-b6d5-473c-891e-24941399e0b9", "0130c4bd-52f6-4008-a110-cdc9be8f8c63": "322fd939-b6d5-473c-891e-24941399e0b9", "be992b0a-cd60-4f79-bdb0-b1183171e884": "322fd939-b6d5-473c-891e-24941399e0b9", "c75b30bc-2118-4e6c-8de0-917d39ced670": "322fd939-b6d5-473c-891e-24941399e0b9", "309a2f60-a846-4e49-afe6-37ff48499eee": "322fd939-b6d5-473c-891e-24941399e0b9", "f3396eb0-fefc-4246-92d7-4a0829614572": "322fd939-b6d5-473c-891e-24941399e0b9", "d0cd6033-d5e0-4175-843b-9add469a23ad": "322fd939-b6d5-473c-891e-24941399e0b9", "c08507d2-227e-40fc-8009-f22440e228f1": "322fd939-b6d5-473c-891e-24941399e0b9", "f24fe96e-6dc8-4627-993e-5503105bf170": "322fd939-b6d5-473c-891e-24941399e0b9", "84316a03-d970-4e54-a15b-cf2c27eb5124": "322fd939-b6d5-473c-891e-24941399e0b9", "44e2d019-65b4-48d3-a22f-7de620fc4945": "322fd939-b6d5-473c-891e-24941399e0b9", "fcbe0373-7a9f-4827-9ad4-21b471fd1e67": "322fd939-b6d5-473c-891e-24941399e0b9", "9d06cdba-898a-4a61-9f63-bbc8004d9834": "322fd939-b6d5-473c-891e-24941399e0b9", "6d225ce8-b188-4706-874a-8b84c8c6638f": "322fd939-b6d5-473c-891e-24941399e0b9", "e5912887-a0c4-471c-863c-bc191e7bc1a2": "322fd939-b6d5-473c-891e-24941399e0b9", "5ef91afd-2dce-4643-8132-41545dafc688": "322fd939-b6d5-473c-891e-24941399e0b9", "0f354ae1-bc6f-4bd1-8e34-b098e7ebf17f": "322fd939-b6d5-473c-891e-24941399e0b9", "f6d4019c-8797-4edf-ad20-7b902a227da0": "322fd939-b6d5-473c-891e-24941399e0b9", "bb461fd8-c0fa-4ee2-8c1e-cbcfdc5ed8c4": "322fd939-b6d5-473c-891e-24941399e0b9", "9a2a44f9-0f75-4c92-b254-e1c451a10333": "322fd939-b6d5-473c-891e-24941399e0b9", "3bc3af1a-9324-41ae-b8ec-8cd8d213182f": "322fd939-b6d5-473c-891e-24941399e0b9", "e0fb395c-0397-41ef-b036-342e7763bca8": "322fd939-b6d5-473c-891e-24941399e0b9", "445dfa30-22e3-48b2-9ee8-8b0dd0768f47": "322fd939-b6d5-473c-891e-24941399e0b9", "7301d5e7-c3de-468d-83e2-fd22ec514f61": "322fd939-b6d5-473c-891e-24941399e0b9", "a7251df1-a3f6-4623-9bfa-39610e9ba36b": "322fd939-b6d5-473c-891e-24941399e0b9", "e794818e-1855-4544-ba15-1c95b518e955": "322fd939-b6d5-473c-891e-24941399e0b9", "276c969e-e630-45da-a5d3-d9abd5380a9f": "322fd939-b6d5-473c-891e-24941399e0b9", "af780a43-faa8-451f-b32b-f26539732d05": "322fd939-b6d5-473c-891e-24941399e0b9", "76f9cfff-5165-4690-bbda-334c127814aa": "322fd939-b6d5-473c-891e-24941399e0b9", "a72e2e96-8525-41f5-b203-183e65f44174": "322fd939-b6d5-473c-891e-24941399e0b9", "d5078883-95d5-4ae3-bd07-49bf4dea0e9a": "322fd939-b6d5-473c-891e-24941399e0b9", "8d778cbe-44af-4021-8883-57a9b6681098": "322fd939-b6d5-473c-891e-24941399e0b9", "0e02e514-54e6-4a76-af4e-aaeaeb023645": "322fd939-b6d5-473c-891e-24941399e0b9", "4685d941-5282-4a37-b15f-ae84e61f3ed8": "322fd939-b6d5-473c-891e-24941399e0b9"}} \ No newline at end of file diff --git a/index_v2/SplunkEnterprise/docstore.json b/index_v2/SplunkEnterprise/docstore.json new file mode 100644 index 0000000000000000000000000000000000000000..6c15cf8bc0963429ec742b7af163517f673c2bdc --- /dev/null +++ b/index_v2/SplunkEnterprise/docstore.json @@ -0,0 +1 @@ +{"docstore/metadata": {"755fceaa-f8be-4e0c-82f7-36d891f3a257": {"doc_hash": "9a3ccd41c90ba93aa8d5992aecf1681be03b9cc8b4bfd926112f332dc36d268f"}, "9edd272d-05a9-4bfb-afb5-924aa610c40d": {"doc_hash": "b5f46fbdd9962f6a4b23762140914b5be591287072b08ecbb1a548ced522be3c", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "1b8e8357-b0b8-4c29-a0c1-2224ede28488": {"doc_hash": "6e5d43d380b23673c81463eac23b2304dde481c00685a3e6b5ed8a59a537454d", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "e2cbe48e-ab64-4f6f-9c4d-834c8beb2df2": {"doc_hash": "3a01f5f9dda4adb5da86060ffd2db3f270f6c867c21d60de39127cd9dedf4fb4", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "81444380-7cb4-4706-8f08-02dc8ef9d443": {"doc_hash": "06fcf6688e1ff2e3d9e088b4fc95f210f7459ed23ffb7cb89728a79509b6a880", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "e87beadb-a87a-4450-b26e-6bc11fec887a": {"doc_hash": "8562e69507a0fae970bd399ef78222218216676bdc0dd06a47da04dd3fa21bee", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "f156331b-003f-4068-b430-81ea09cd3acb": {"doc_hash": "f57303f827d859c0a43ab68e23c03a96522cd3bc7e25512b43c916883dfb6547", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "8aa627a8-d6cd-4c5d-bd90-eb2ebad5359e": {"doc_hash": "bcb1cf4dd04dd2e2675f57a9879df4f3da398f3ad55f49f37b28366847f560f1", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "e0807126-e648-46de-b5c2-910e4e173d82": {"doc_hash": "9f7e16960a09893e2324d4096ba4e1428011a6cfd41043b8c981ca098cbfe1f0", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "8a4c4d19-0a4b-4938-81ef-11a4d2a82f3e": {"doc_hash": "8f7b91fca96dbcb9cd8aa847f451fb8d2d7a096d490a9ef8f0e917cfb89d83bc", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "5753c053-763a-41fc-881d-6bf57c1d7753": {"doc_hash": "f917180a60c935283aef630983ccec0a5c0619e853d91637314de31f8a8cb158", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "5f2c5dca-49fb-4725-ae3e-4c1951067bdd": {"doc_hash": "0a71025786d475b1ec47bcd925dd5d86ed1f94cd8c37ce63b1e5e5a665f9ad14", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "10e4af3c-d44a-4aff-a0dc-63907a78a16d": {"doc_hash": "441969da34e7908e3b27006a5185ea76e429818929f962c8ccb945cf9d77634a", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "d9212f2b-877e-42b3-bc44-cf84c73b8311": {"doc_hash": "a199464ee81d7983addb738dde4d9901422e0852594c9186b97540ebfafed4f6", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "5a34023f-6c80-4bc8-a9da-f80343581e69": {"doc_hash": "c5dcc7f7190731aed9269343515feeae2dd8cd432775ec217b6dd70d247c755b", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "7b2071b1-da20-49e8-a91e-a277a4a90d15": {"doc_hash": "13320497298cacc7f0eee4c2783a2057e85c18b4b31cd12349a655da3fe674de", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "02544d89-afa8-46c7-b46f-ef0dcefed681": {"doc_hash": "99eb14e9d43328a450b3649b516ae89706b66fadd30f828efcbc85e4dbc26738", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "4e1099db-41c7-43c0-836f-0d8da4edc74e": {"doc_hash": "807da9332bd4aed47b7989d6d98748739ce92af0130b2fb91fc7442859ee896e", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "f1a0779e-905c-4c66-9f14-c1fd473f6115": {"doc_hash": "d4649770bd92a8cc070e9f070ccbbf88a42159e5d0d6e40a17fc5e0edc7f6d88", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "f8613859-5e96-4bcd-882f-aa600feab1ff": {"doc_hash": "b40670255ccab1222f1e138ee650c19c2f5caf4ed1f81467bca2266880d61fe9", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "ea47314c-19e1-4116-ac9a-9b436f91fd74": {"doc_hash": "0c16c8f8f9b777c311ae578115bf4e9cf13f9326815ebd4c7a5e5eaa617d0a7c", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "652073e8-08c5-49cc-bbc4-ca70d326cd91": {"doc_hash": "8dc239d4aaa49911b6a35c4c4f14ece463b5b5886f8543611fe7f8379cb6dc30", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "5bd4e401-4e7b-4124-bba6-800f7b04c425": {"doc_hash": "bbc1e7ab35ed71d7316d75dc3c3270586d37fe8348174c410fbb0a7a5f99bb82", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "5b9c6817-960a-4fbb-ada8-c91eaea375f9": {"doc_hash": "755c61df864046890ee6ba72fa5b6ec3dbfcdd56b4daa18affa238ecb8528d9a", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "94bd416e-81de-4df9-9af5-eeec685ecf1c": {"doc_hash": "ea2430a61f147f0482bc2722557ada9a6542c73c2a90d592e5d371ba51cdd4fd", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "3b28057a-a366-494d-86cb-fb4ec55da5c2": {"doc_hash": "6782b93c0072bd8c3b39bbcd98a836f617436740f364f66c5cd463e2f57f8c3a", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "84838ed9-c928-4a9e-acd8-8641b036fa23": {"doc_hash": "b0845aa5a47a4a63d8dd655577ed285f693b438616c36ad1f6ec8dc7039a0e37", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "bc7a6092-63e8-4c2a-8f18-563f5472822b": {"doc_hash": "eb5c01329b842b408a649f71e1fb2c47d7a13d88087660f3dfbaf836a15dd1c2", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "922bc878-0201-49ea-b751-5b4fde16bb6d": {"doc_hash": "95fdf5afbcd46816187252abb65c0456dd2d1635c8a193d21e2c25df3f3b31a3", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "5f6282df-c993-4ad6-ab4e-cc53ae5c1557": {"doc_hash": "544b0206eb9e3efcb7e006886c6a1c6c6e8f12cfffdc25b203625670f8d7d909", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "0294ad83-fd66-4219-9f09-778575cf809c": {"doc_hash": "db0be8266af2ca4fe7491836cde6d9da7460b82b376217756156ac6780f27f5a", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "abb2f36a-947c-41fa-85ef-2275497140fe": {"doc_hash": "ee840677343636c5902048cfe79f91c25ff6b879661aeb29840aa56cff5022c1", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "905ad1ac-118c-467b-8a79-3df2be677e83": {"doc_hash": "ee50c92a72d96c75ca953461207de17ba19bed470f9c97aca2c697970bac4244", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "bee4eada-eeec-40eb-bda2-271f40acfaba": {"doc_hash": "536c42fe6009b44d6d7ab84a8564dc70f09166f790c58bc3f85c35419f566632", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "8ccaa11a-a6f6-4e1d-ac0a-8591143a2432": {"doc_hash": "58777cb35c43639ffad6960af040712ce76a5f7ec26316efbf6f1d5c2ff09d46", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "37038a26-361a-4824-b412-45da3a50aa13": {"doc_hash": "f6d93dcf36d07bb1baf418d7d76c433e21445f431b05831f8a7fd73bf23c6ef5", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "63f92bda-3680-476a-89b7-240dad4835c4": {"doc_hash": "e1ec4ebf52b530cabee7951aa0a9f7e6f68602e2e453ebd2435cbcd9a27dcea4", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "f565e74a-3b4b-425b-98ec-027ab439c3d9": {"doc_hash": "6af6541350dcf65c2e5226bb4f88115383ab5a9f1ca30ca6d9eb11ea85bae1a9", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "d3a7ae68-5174-4258-8292-0a9451e8b916": {"doc_hash": "ff53d658077735453c5e8e38743b1cc97f6acd1d118765cf043ea60a664fed74", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "07ac6a79-985c-411a-b6c6-5801e689afcf": {"doc_hash": "94bd6ade0f471d3500a72b69388e96963f4cb62499f314a378de256f5b1c8024", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "802e9005-13d7-4173-bc27-09ab95ea375a": {"doc_hash": "d17287aed64d01e3a32e89171f3ff48b8d4d7a81c74f894dcb010a650d2934f1", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "e9416f76-31dd-45d1-88e8-dbefa2b7a04a": {"doc_hash": "1998b3cc8743ec8714d284c480b10c8d6c037e5b8b3cd164eca31ac112602b96", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "d8b2233a-0cbd-4e1e-8f13-144507e0ba90": {"doc_hash": "a690d567ee60fbc7d3d723c1c17bd61d004825b3d28ab586fde6247d1295ba5e", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "df2706de-7a67-4837-9162-5b9e36d1a8ed": {"doc_hash": "0c97ccff5e23b7c1363113e0b8bd46425ca34a32715f29f25a1e152e2ea294f3", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "343f4d90-69d0-4aed-87d9-6c7896f18cdf": {"doc_hash": "ffa47ae23dd27568535f904617b36007ff1f50a4edb8928372086fd082cc3fbf", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "55c04431-65ee-4d04-ad9d-e26261ad8eed": {"doc_hash": "704abd87ab3c5923fb1f6af0185f69c73edf772b47fce798c8462c46207a4e5d", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "9dfaab70-7d70-4e42-86f2-a3c2d961207c": {"doc_hash": "d6def574ccc79b0977275df5761acf0ace0792a24159f43eefb4464573fca9b9", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "fb76762e-5f96-4e30-b458-26837b628208": {"doc_hash": "ae60b94b78453de6bdf23b59a0b8c9a4079c9662ca8c1875c6e33d52d574ed89", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "806ac9c6-f9f4-4b6a-ac29-457e0f5cf879": {"doc_hash": "b11ad7382a8c445b9915ce741282299f66fc4826e0584732400454463a72ed60", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "da25c223-a805-482a-bb28-b3862f33b028": {"doc_hash": "62d8b85c2cb68313431c1be8e06bf21a4fd0104b2a1fdeb2dae5aa3c6186e7aa", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "ecb9caf5-ef92-4595-affa-0b60ab364b41": {"doc_hash": "e98c66fa1b44fd61b4754085f87c89171c000e1bd94e9975270a239ae938c24b", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "22b17438-5a36-49c6-9fe5-1e599edb22be": {"doc_hash": "28dcdbccc067ee91da7fc98663d8eb38d06510a6f7068598ff7ff6b952b71826", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "062c1b51-1d17-41d4-864d-786a1007ab0e": {"doc_hash": "2180db6ac7b5f338d4fed9a313dd51b9fec3a8d5d3420c7ba1352df918f2ddb4", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "885f2991-1d81-459e-97c2-c2654ff84e24": {"doc_hash": "dea447c8c6ff8ad20202302de072fb6536b263052a24298e347c9d57807e5186", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "8f63b22d-fc3f-4988-9c9e-fd21d1915eb4": {"doc_hash": "0ab87164061d34a99b14f42ddc359248b4e5dbb2f62ea727b32ad125d91b158b", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "4471364f-327d-492d-b746-8f962831fd94": {"doc_hash": "05e06dcdc962b20842f2655802969b1ebee6f7e1840a8e632f27843d44ea2ede", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "2040909c-b801-4465-a844-89283f6f469f": {"doc_hash": "7395ee02e1b6ac97ee419bb3bd334738f7f6b56968bb3d8990853695278629a1", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "4e6ed601-46ca-40c7-845d-fff5d9f17da9": {"doc_hash": "7e0ae48d4498646f07805376f4d99914de7f7a5b001609e6321a4913ea21eb12", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}, "83d4630e-f291-4ba1-b3d2-d3a21d27ab71": {"doc_hash": "67751af0107663ba5da25f31bb43ab3eea9794a85b74ae9a50276cf29f05e834", "ref_doc_id": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}}, "docstore/data": {"9edd272d-05a9-4bfb-afb5-924aa610c40d": {"__data__": {"text": "Enterprise, Capterra, vikram s., Associate, 5.0, We are using Splunk for log monitoring . It is integrated with Kubernetes and pivot cloud via data bus. By Splunk we get Realtime log application. It provides best visualization of data generated by system. Splunk also provide option to filter data based on data range and time. We can configure email alert for specific issue. Splunk also provide ML model for data. Splunk use simple query to get data ,everyone can easily learn Splunk query., I haven't found any issue yet the only problem with Splunk I have that log in Splunk is scattered . We need to build good query or better logging mechanism at application side.\nEnterprise, Capterra, Verified Reviewer, Health, Wellness and Fitness, 5.0, The versatility is amazing. The same data in logs, such as IIS, can be used for Security, Application performance, and even error handling. This allows us to use one log to help multiple teams. This is just one example., Start up takes someone who has had some training. While searching and output is easy, its the onboarding of custom apps that takes the know how.\nEnterprise, Capterra, Patrick M., IT Application SR Dev, 3.0, It allows me to bring a lot of information into one friendly view. It's a great security audit tool., It has limited functionality. It is a very memory intensive system. It does not integrate with Lennox.\nEnterprise, Capterra, Muhamed F, RPA Developer, 5.0, The most useful thing about Splunk is the ease of integration with application. With uipath on-premises it was very much helpful as the business users can monitor the actions of robots through spluink without entering into uipath orchestrator, Expression creation for indexing was bit hard as it is not user-friendly to business users if they wanted to create any new fields, also the forwarder was not able to directly connect with uipath cloud so that the logs has to be shifted to intermediate file before uploading into splunk, but that seems not an issue with splunk but more related to uipath cloud\nEnterprise, Capterra, kartik S., information security engineer, 5.0, Easy to install agents on servers, it can parse any form of data easily, Splunk can detect anomalies quite easily and the UBEA feature is amazing., The cost of this solution is high, and customer service is bad. Apart from that Splunk SPL language is difficult to learn.\nEnterprise, Capterra, Ariev D., Software engineer, 5.0, Real time use. The ingestion of data and more., Nothing yet.. maybe performance at times.\nEnterprise, Capterra, No name, nan, 5.0, Security Information and Event management, log analytics, custom dashboards and workspaces, Auto upgrade management and notifications for Add-ons. Leaning more towards config file based implementation instead of UI based implementation\nEnterprise, Capterra, Yann O, Back-end Developer, 4.0, Splunk is very robust with being able to search network traffic, create dashboards and automate reports and alerts. It allows users and admins to solve many problems. Our company has created several alerts for when people on the network download any files that look like they could be a virus, or if they are using illegal software, or trying to login with wrong passwords constantly., I least like that Splunk is expensive and often requires a significant upfront investment. Additionally, the complexity of the product can be a challenge for new users, as it takes time to learn how to use the product effectively.\nEnterprise, Capterra, Stephan v, Cyber Securit Analyst, 5.0, The easy of setup and integration makes this one of my favorites As well as the real time dashboard, Not much i don't like yet, but maybe the interface can do with an update\nEnterprise, Capterra, Verified Reviewer, nan, 5.0, Splunk Enterprise's versatility is highly valued by its users, as it is capable of analyzing and managing data from a variety of sources, including machine data, logs, and structured and unstructured data formats. This makes it a valuable tool for organizations with diverse data management needs. In addition, users appreciate the software's efficiency in processing and", "doc_id": "9edd272d-05a9-4bfb-afb5-924aa610c40d", "embedding": null, "doc_hash": "b5f46fbdd9962f6a4b23762140914b5be591287072b08ecbb1a548ced522be3c", "extra_info": null, "node_info": {"start": 0, "end": 4130, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "3": "1b8e8357-b0b8-4c29-a0c1-2224ede28488"}}, "__type__": "1"}, "1b8e8357-b0b8-4c29-a0c1-2224ede28488": {"__data__": {"text": "data management needs. In addition, users appreciate the software's efficiency in processing and analyzing large volumes of data quickly, allowing them to make faster and more informed decisions. This is particularly important for organizations that need to respond to data in real-time, as Splunk Enterprise's speed and efficiency can help them stay ahead of the curve., Splunk Enterprise to be complex and difficult to use, particularly for those who are not familiar with data analysis and management tools. The software has a range of features and capabilities, which can be overwhelming.\nEnterprise, Capterra, Gabe M., IT Administrator, 5.0, Free to use for small 500MB or less daily ingress, quite nice for small use cases and learning - No development work required to deploy and provide value. - Deployment flexibility: client agents are available to use, or clientless configurations for multiple OS platforms. It's also very easy to deploy, not just flexible. its a very simple affair. - Segmentation of logs: You can create separate instances of of logs to aggregate, based on organization needs. And those instances can have their own individual storage policies to optimize consumption of storage resources. - Configuration design: Thoughtful and mature documentation and design of the application regarding enterprise-class scaling on network storage. -POWERFUL tools: The user interface lends itself to learning more about your organization from the logs you collect, through metrics of trends of the logs being gathered. There are also specific modules/add-ons for popular applications to provide more value and event-based monitoring, all without having to develop in-house dashboards and intelligence of those logs. - Customization: You can create your own queries of logs, and event-based alerts. - Web-based GUI that clean is powerful - Sales/Technical Reps are top notch in fielding questions and evaluating environment for deployment. They were extremely helpful in helping our organization develop procedures and scaling our environment for expansion with our existing infrastructure., Price: This product is not free for more than the minimal use. Pricing can be very expensive, relative to open source offerings. That is the trade-off you pay for not having in-house development of open source offerings. As this product is priced based on gigabytes of indexed logs, it is important to understand the scope of licensing necessary for your environment to determine if it is a good fit for your organization. - Watch your saved queries and hardware resources: Users have the ability to create and save queries. Like in database queries, some are more efficient than others. Large inefficient queries can be very resource-intensive. If you notice slowness in day-to-day queries, or navigation in the UI, or resource use in contention, keep an eye on saved queries and user practices.\nEnterprise, Capterra, Verified Reviewer\n, nan, 4.0, We use this as our SIEM. The ability to have the data ingest, visualization, alerting and correlation all in one product is very important to me from a security standpoint. We're cloud-first so having that ability with large cloud providers is important to me (AWS, Okta, GCP, etc), The cost can be a little concerning and htere is a bit of a learning curve when you first get into Splunk. User groups, their forum and pro serv all help with that.\nEnterprise, Capterra, kalaiselvan k., Integration Enginner, 5.0, Splunk Visually represents the logs mainly from production servers in the web UI . People who Usually has no access to logs in production servers, will access the logs through splunk UI with very simplified and friendly search query. It has lot of features like you can query for particular date and time range with specific characters. The search engine is very fast which will bring the query response effectively. we can access all types of logs including XML and JSON. we can create a custom dashboard with custom query for each projects and can relatively trigger the email to the support team in case of any issues. This tool is boon for production support team in any enterprise company., Licensing cost is quite higher for enterprise usage. Query response time will be slow when you are searching for relatively longer history(Eg. 3 months old data)\nEnterprise, Capterra, Mohammed H., CISO, 4.0, Splunk appsStrength and capabilitiesIntegration", "doc_id": "1b8e8357-b0b8-4c29-a0c1-2224ede28488", "embedding": null, "doc_hash": "6e5d43d380b23673c81463eac23b2304dde481c00685a3e6b5ed8a59a537454d", "extra_info": null, "node_info": {"start": 4047, "end": 8469, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "9edd272d-05a9-4bfb-afb5-924aa610c40d", "3": "e2cbe48e-ab64-4f6f-9c4d-834c8beb2df2"}}, "__type__": "1"}, "e2cbe48e-ab64-4f6f-9c4d-834c8beb2df2": {"__data__": {"text": "Mohammed H., CISO, 4.0, Splunk appsStrength and capabilitiesIntegration with most solutions, Resource utilizationLimited local partner support\nEnterprise, Capterra, shashank v.\n, Software Trainee, 4.0, 1) Accepts multiple data formats like CSV, JSON, XML 2) Does the hard work for us i.e converting machine data to a human-readable format. 3) Can create customized alerts to serve our business purpose. 4) Searching on the based on queries is pretty simple. 5) We can create dashboards to analyze and visualize our search results. 6) Can export the log content to our Personal computers. 7) Setting up plugins and integrating with any tool that needs monitoring is pretty easy. 8) Technical support for the Splunk is very quick as they have a dedicated staff for that., I did not find any flaws with this software.\nEnterprise, Capterra, Robert F., Management Consulting, Unspecified, 5.0, Splunk is more than a tool or a product, it is a big data platform. Splunk can be used as a simple log aggregator all the way to a Big Data engine to find efficiency in operations of the Internet of Things. Splunk is less about its abilities, and more about your imagination about what you can do with Splunk. That is the beauty of the platform. Splunk shines in providing operational intelligence about systems and processes. Finding out how your systems are operating, how your processes are functioning leads to quick resolution of problems and points to where budgets are best spent., Splunk is deceptively easy to set up and use. But like learning to play chess, you can learn the moves in half an hour, but take a lifetime to master. Splunk quickly provides value, but requires imagination and creativity as well as wide ranging knowledge of systems and processes to move to the next level. Not every organization needs that kind of talent to get a great return from Splunk, but the companies who compete and win will.\nEnterprise, Capterra, Verified Reviewer\n, nan, 5.0, Fast consolidation of disparate logs in an easy to search way for troubleshooting. I can find problems within my organization very quickly. Sales team was very responsive in getting me a trial license to estimate my needs., Set up takes some time and planning. The Licensing scheme can be pretty expensive and until you've got it up and running it can be hard to estimate how much license you need.\nEnterprise, Capterra, Chintan M., Technical Specialist, 5.0, Easy to use tool -Simple graphical interface which makes it easy for a new user to understand the features easily -Real time data analysis can be carried out, When we try to search for data which is more than 30 days old, then sometimes we see slowness\nEnterprise, Capterra, Verified Reviewer\n, nan, 5.0, When you need to store, correlate, and search large amounts of data, especially System Log data, there is no tool that even comes close to Splunk. It's power and flexibility is amazing., Very expensive. Difficult to implement until all moving parts are understood. Steep learning curve for beginners.\nEnterprise, Capterra, Verified Reviewer\n, nan, 5.0, Splunk integrates with almost all popular enterprise software products including VMware, AWS, Azure, etc. Most customers use it primarily to do log analysis but it can also perform data analytics for business reporting. The UI is very straightforward and enables you to quickly search through large datasets using SPL. We were able to quickly locate the source of the issues by using Splunk to triangulate logs from several different components. There is a Splunk Cloud version with a free trial if you are aiming to do some integration work and testing. Finally, like all monitoring tools, Splunk offers AI and machine learning for even better predictive analytics., Splunk is expensive and probably not for smaller startup companies. The pricing is tiered and is subscription-based so if you start to ingest a lot of data, look out. It can eat into most of your IT budget and Splunk by itself doesn't handle all the Day 2 operations that are needed.\nEnterprise, Capterra, Verified Reviewer, nan, 5.0, Splunk is great for monitoring, logging, and analyzing the large volume of data", "doc_id": "e2cbe48e-ab64-4f6f-9c4d-834c8beb2df2", "embedding": null, "doc_hash": "3a01f5f9dda4adb5da86060ffd2db3f270f6c867c21d60de39127cd9dedf4fb4", "extra_info": null, "node_info": {"start": 8490, "end": 12657, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "1b8e8357-b0b8-4c29-a0c1-2224ede28488", "3": "81444380-7cb4-4706-8f08-02dc8ef9d443"}}, "__type__": "1"}, "81444380-7cb4-4706-8f08-02dc8ef9d443": {"__data__": {"text": "Splunk is great for monitoring, logging, and analyzing the large volume of data on the servers. Our support teams use Splunk to collect data/logs from the servers and troubleshoot product related issues. We introduced Splunk few years ago in our organization and it helped improve our defect/issue analysis and problem solving abilities, While Splunk is not too complex, it also requires a certain level of skillset to decipher the information. It may take a while to figure things out if you are a new user, or someone with limited technical knowledge\nEnterprise, Capterra, Shalinee S, nan, 5.0, We are using this tool for monitoring our services log. It is easy to monitor the data using this. For each service, you can configure which log file should be shown on the UI(web). On UI, it provides lot of features like finding pattern in logs, doing analysis and generating reports and much more., Learning is slow. Initially, it takes time to understand the reports and pattern it finds out of the log. But it's worth learning it.\nEnterprise, Capterra, Irfan S., Developer, 5.0, The best part of it is its UI which has very responsive page and can drag couple of days logs. Best in its performance and versions are being upgraded at regular intervals and its best in delivering the outcomes as required, nan\nEnterprise, Capterra, Verified Reviewer\n, nan, 5.0, I work at Fintech company and we use Splunk for checking error logs and tracking anything that goes wrong within the system. I like Splunk as it gives exact line number which is breaking the code which makes easier to debug., The index should be accurate otherwise viewing logs is not easy.\nEnterprise, Capterra, Janne M, Technical Product Manager, 5.0, Splunk is first of all reliable from stability and information security perspective, which is a must. Second, it has one of the most advanced feature sets in analyzing, manipulation, anomaly detecting and processing log data residing in its database. Even AI/ML options are on the table, and it's possible to start implementing AI/ML with Splunk immediately., For certain types of use, licensing structure can hit you in your face relatively quickly.\nEnterprise, Capterra, Davis M., Principal Security Researcher, 4.0, Splunk is provides a single tool for log aggregation, log analysis, and visualizations. Threat hunting, applying threat intelligence, and incident response are easily repeatable; pushing organizations to proactive security processes., Splunk is expensive, especially when an organizations is exploring and building new security or data use cases. It also requires a lot of engineering maintenance, making the quality of the data highly-dependent on the skill(s) of those supporting it. Many organizations do not maximize its benefit because it is poorly managed or supported by low-skilled employees.\nEnterprise, Capterra, shabbir s., security analyst, 5.0, Data visualization, Analytics skills with AI-powered and can handle data in TB/per day without any interruptions in services. Live dashboards, developing use-cases and their capabilities (correlation)., complex architecture and efficient skills are required, financial is also not feasible for small and medium customers. no inbuilt query builders for beginners to understand the platform.\nEnterprise, Capterra, THOMAS Z., Management Reporting and Business Analyst, 5.0, It an intelligent business tool that provided me an opportunity to customize and build report from large volume of data from different departments within the 13 Africa countries in telecommunication sectors. The platform allows data to be consolidated accordingly to the organization need and produces visualized reports of dashboard features. I also noted that the system can analyst unstructured large volume of data speedily and is reliable and web based allowing for user flexible accessible from any part of the world if you have internet. The systems have been reliable and secured from the time (2 years) I started using it without any system intermittent, system errors and cyber-attack., The system is built and use-able with structured and unstructured organization though the price in foreign currency could hamper small and medium organization to use it especially in most Africa country where the local currency has depreciated against the major trading foreign currency.so the Forex pricing is a", "doc_id": "81444380-7cb4-4706-8f08-02dc8ef9d443", "embedding": null, "doc_hash": "06fcf6688e1ff2e3d9e088b4fc95f210f7459ed23ffb7cb89728a79509b6a880", "extra_info": null, "node_info": {"start": 12655, "end": 17028, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "e2cbe48e-ab64-4f6f-9c4d-834c8beb2df2", "3": "e87beadb-a87a-4450-b26e-6bc11fec887a"}}, "__type__": "1"}, "e87beadb-a87a-4450-b26e-6bc11fec887a": {"__data__": {"text": "has depreciated against the major trading foreign currency.so the Forex pricing is a challenge. The navigation of the platform will require minor training though if the user is computer proficient, they would management with minor challenge and interpretation of the data. So, first time user it can be difficult to use it It will depend on internet for access and internet tend to be pricey in most African country and therefore could increase the business cost for small and medium enterprise. It can increase business cost if not fully used\nEnterprise, Capterra, Idaly M., Project Manager, 5.0, I really like the platform, the data collection is ideal and the reports are detailed, it is the most appropriate SIEM service to monitor our IT infrastructure, it is an ideal software to take preventive measures, it is easy to customize the dashboards, the monitoring is constant and it gives us security in real time, the alerts are accurate and it helps us understand what is happening and fix it before it becomes serious., It is a somewhat expensive service but with more powerful features than other free SIEM systems, and it is a bit complex to set up and use for inexperienced users, so a lot of help should be sought from experienced staff and support team at first.\nEnterprise, Capterra, Verified Reviewer\n, nan, 5.0, Splunk makes it easy to search through various data including logs. In the past I have had to pour through logs in order to find the one lines among the 100 of thousands of lines. Splunk allows me to search through those logs in a matter of seconds vs the hours it used to take., Most of enterprise setup is done through the command line. It would be nice to have cluster configuration (index creation) as part of the UI.\nEnterprise, Capterra, Verified Reviewer, Oil & Energy, 5.0, It is a very subtle program, when generating the setup it is not necessary to have a great knowledge of programming to install it, but to solve some configuration errors, when you start what I like the most is that you start from day one to organize your applications, then From that you can easily configure cybersecurity for each program, I particularly like the monitoring of data programs and that the program alerts you with notifications so that you see errors that sometimes jumps in the program., What I don't like and I see that it is something widespread is that it has very poor support in technical help, I think that the old technical support collaborators have left and people who are not so qualified have arrived to answer the tickets.For my part it is not a big problem since I am a researcher and with the information that is on the splunk website it is enough for me to generate the resolutions of problems.\nEnterprise, Capterra, Avinash S., Principal - Program Management, 5.0, The ablitity to configure and tweak the use cases. Building Intelligence into forensics. The AI feature is gud but needs more enhancements., The log management needs to be efficient , If the auditing logs is enabled then a huge influx of logs are pumed into splunk but no meaningful meaning can be derived.\nEnterprise, Capterra, Amit G., Solution Architect, 5.0, Splunk Enterprise is best tool to analyze the data based on different visualization. It help us to lookup distributed logs for micro-services . It enables field based lookup. For complex logging, we can use search query using expression. We can create multiple reports/charts for visualization such as a pie or bar chart for our data. Best feature what i like , We can visualize our search results and share them with others using dashboard panels. If Already have a dashboard, we can add a new panel from a report, clone from another dashboard, or add a prebuilt panel. Fully customization available. Interfaces is very flexible. We export it in different formats, or refresh it to visualize the newest data. Online Support is available through different community, Search query builder is fully based on technical. for Non technical users, its really difficult to lookup logs. Sometimes, error thrown by query builder is more difficult to understand. Deep Learning is required to use splunk for production data. For Large application installation, it need to manage more.\nEnterprise, Capterra, devaun f., software consultant, 5.0, Splunk allows us to see exactly what is going on in", "doc_id": "e87beadb-a87a-4450-b26e-6bc11fec887a", "embedding": null, "doc_hash": "8562e69507a0fae970bd399ef78222218216676bdc0dd06a47da04dd3fa21bee", "extra_info": null, "node_info": {"start": 17024, "end": 21378, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "81444380-7cb4-4706-8f08-02dc8ef9d443", "3": "f156331b-003f-4068-b430-81ea09cd3acb"}}, "__type__": "1"}, "f156331b-003f-4068-b430-81ea09cd3acb": {"__data__": {"text": "5.0, Splunk allows us to see exactly what is going on in production! I work on commerce for a fortune 100 company, and we use Splunk to monitor our apps in real time. Splunk gives you the ability to perform queries like you would with SQL against your log statements in real time. You will learn that you can place strategic log statements in your code that allows you to identify situations in production and be proactive at solving them. For example, you can log your customer's session cookie ID, and track any given customer's activity on your website via your app logs. It gives you dials and charting capabilities to monitor even the slightest drops in customer activities due to flaws in code or slowing network calls., PRICE. The software is so powerful, and they seem to leverage this in the pricing of the licenses.\nEnterprise, Capterra, Nana Kwame M., Teaching Assistant, 4.0, Splunk Enterprise offers real-time data analysis tools makes it possible for my institution to see and take immediate action against security risks, performance difficulties, and other operational concerns., Splunk Enterprise is really expensive and it is a huge part in our annual budget because we require add-ons.\nEnterprise, Capterra, Verified Reviewer, nan, 5.0, Splunk comes with lot of in-built templates for each and every feature like log visualisation, dashboarding, traces,etc This makes the developers life lot easier. I can't think of any other logging tool that is snappy as well as accurate. I love the fact how easily I can plug it in my docker-compose to push container logs., Even though, it offers numerous features for different needs, each feature has its own learning curve. For instance log visualisation needs querying skills, which may be in natural language but it takes bit of time to get familiar.\nEnterprise, Capterra, Verified Reviewer, nan, 5.0, Se cercare un SIEM stabile, affidabile e con cui monitorare costantemente i vostri sistemi Splunk \u00e8 la soluzione giusta per voi. Nella soluzione cloud SaaS consente di gestire un elevatissimo numero di log. Ha un architettura complessa che consente la ridondanza e la gestione dei carichi di lavoro tramite bilanciamento. Permette una molteplicit\u00e0 di analisi che consentono all'analista di sicurezza di investigare a qualsiasi livello ci\u00f2 che accade ed \u00e8 accaduto. Il linguaggio SPL con il quale \u00e8 possibile analizzare i dati \u00e8 molto potente e versatile, A volte l'installazione su determinati sistemi operativi prevede un processo piuttosto complicato soprattutto se si ha intenzione di rispettare il principio del least priviledge e non installare il software con permessi di amministratore. Su determinati sistemi operativi come AIX e determinate versioni di Linux non \u00e8 disponibile l'agent ma il solo inoltro dei log al cloud Splunk tramite protocollo syslog\nEnterprise, Capterra, Verified Reviewer\n, nan, 5.0, Provides a single location for collecting and analyzing logs. Provides ease of use for non-technical users, but powerful features for security and IT. There is an add-on/app for anything you could imagine., Some documentation is vague, and when certain things don't work, it can be difficult to find out a solution to the problem.\nEnterprise, Capterra, Sachin S., Devops engineer, 5.0, Splunk offers various features whether you need to setup monitoring on your server, application logs based on logs ingestion set alerts so that teams got notified on real time and take actions accordingly. In this way, it helps to monitor application which are mission critical. You can make dashboards in Splunk where you can configure various components such indexes, data inputs and schedule reports as well. To achieve additional functionalities we can install third party apps as well such as AWS Add on for cloud watch log ingestion., From Admin perspective,", "doc_id": "f156331b-003f-4068-b430-81ea09cd3acb", "embedding": null, "doc_hash": "f57303f827d859c0a43ab68e23c03a96522cd3bc7e25512b43c916883dfb6547", "extra_info": null, "node_info": {"start": 21406, "end": 25238, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "e87beadb-a87a-4450-b26e-6bc11fec887a", "3": "8aa627a8-d6cd-4c5d-bd90-eb2ebad5359e"}}, "__type__": "1"}, "8aa627a8-d6cd-4c5d-bd90-eb2ebad5359e": {"__data__": {"text": "such as AWS Add on for cloud watch log ingestion., From Admin perspective, I found user access management a little difficult. The roles of access management becomes complicated because some time the config files for that didn't came very handy. Other then that I think all in all Splunk provides fulfill all of the requirements.\nEnterprise, Capterra, Divyang S, Web Developer, 5.0, Splunk is very easy to use due to high community support and many video tutorials available online for new users to learn. Functionalities are robust and simple to use. Data retrieval and visualisation is nice and easy if you know the right querying process. Machine Learning supports enhances performance for the cloud, especially. It collect wide variety of data and still it amaze you the way it retrievs it., There are many tools available in market which are potential competitors of this tool and that too at reasonable pricing. Splunk offers more functionalities but costs you too much if you look at the work it does. Complex queries may require large CPU usage and may even freeze or atleast slow down the system for a while. Need to be specific while querying the data.\nEnterprise, Capterra, Fabiano A, Consulente IT, 5.0, Aggregare pi\u00f9 log \u00e8 fondamentale quando c'\u00e8 un flusso elevato di log. Lo trovo eccellente e rapido. Riesce a scalare senza problemi effettuando le ricerche in maniera intelligente per trovare prima i risultati. La sezione delle Dashboard \u00e8 la cosa pi\u00f9 interessante perch\u00e9 pu\u00f2 mettere insieme diversi grafici consentendo di personalizzare l'interfaccia grafica con input e bottoni., Con una grossa mole di dati e effettuando ricerche nel tempo (es 30 gg) pu\u00f2 metterci veramente tanto ma trovo che nel complesso si comporta egregiamente e ovviamente dipende da server su cui viene installato.\nEnterprise, Capterra, Chetan G., Analyst, 4.0, There are lot of features which Splunk offers - 1) We can onboard data from any server, device or system using Universal Forwarder 2) Onboarded data are later stored in Indexers and searched further in Search Head for analyzing the internal logs 3) Using the data we can create customizable Dashboards and get proper insights of data and create Alerts to identify any kind of Threat or anomalies running in environment 4) Deployment is very easy on-prem servers 5) We can also use Hybrid Deployment on Cloud as well., 1) As it give large amount of features but licensing is too high 2) There are lot of other Open Source software which can be used as alternative of Splunk as Analytic tool because Splunk is paid one.\nEnterprise, Capterra, Verified Reviewer\n, nan, 5.0, The ability to use this software for security operations, data analysis, creating dashboards, generating tickets and everything else, Splunk uses its own SPL, which is not very easy to learn. However, there are lots of documentation that Splunk provides to its customers. There is paid training available which is useful for beginners to learn.\nEnterprise, Capterra, David B., Production Support Clan Manager, 5.0, The system is highly intuitive to use. It is faster than other solutions I've used on the market and has a huge library of 3rd party plugins to get more from the system. It is easy to create scheduled searches, dashboards, reports etc. but there are a number of additional plugins (at an extra cost) to help with security, single pane of glass and metric collection., It offers challenges for a decentralized working model. Where Splunk is centrally managed, it is easy to ensure that best practices are maintained. Where the system is opened up for an entire department to utilize and on-board their logs, it becomes more difficult. However, with some creative thinking and good process, this issue can be overcome.\nEnterprise, Capterra, Frank M., Retireds, 5.0, Several of our applications are distributed across multiple systems. It is the same software running on each server but doing the same job for different", "doc_id": "8aa627a8-d6cd-4c5d-bd90-eb2ebad5359e", "embedding": null, "doc_hash": "bcb1cf4dd04dd2e2675f57a9879df4f3da398f3ad55f49f37b28366847f560f1", "extra_info": null, "node_info": {"start": 25222, "end": 29176, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "f156331b-003f-4068-b430-81ea09cd3acb", "3": "e0807126-e648-46de-b5c2-910e4e173d82"}}, "__type__": "1"}, "e0807126-e648-46de-b5c2-910e4e173d82": {"__data__": {"text": "multiple systems. It is the same software running on each server but doing the same job for different users. Each server would generate its own log files. When things went wrong, we used Splunk to be able to see what was going on on each server. Click a few buttons and you get two logs from two different servers listed together coordinated by time. But that leads you to discover that the issue came from a separate upstream or downstream server, then bring in those logs too . . . all coordinated by time. Don't get me wrong, the IT guys love these tools for their own enterprise reasons, but as a server stack developer, this was a resource I used OFTEN., I never fully grokked their SQL like language. I could do basic things daily without issue. However, I often had to hit the documentation to do anything more than a simple \"find this\" query.\nEnterprise, Capterra, Verified Reviewer, nan, 5.0, Its been a while since I started using Splunk Enterprise. I love its ability to cumulate data and logs from multiple sources and correlate them to help find incidents and their root cause. It consolidates logs and manages them form a central place. It is a great tool for log analysis as it segregates data and provides in depth profiling. Splunk enterprise also automates alerts and indexes on logs received., It has a complex architecture making the learning curve quite steep\nEnterprise, Capterra, Or M., Sr. Software Eng, 4.0, Dashboards feature is amazing, I use it much. Alerts and queries are easy to set up. Mostly it works fast so it's kind of Dev friendly so it's easy to onboard the new guys, Alerts should have a better way to manage it. There should be a way to promote alerts to different environments - so we will be able to set the Dev/Stg/Prod Sometimes some things that we want to do take a while searching on the internet for a solution - they might think how to do it better - maybe some examples or better documentation\nEnterprise, Capterra, Alberto M S., CISO, 5.0, Splunk nos ha permitido fortalecer nuestras capacidades de visibilidad sobre una amplia variedad de eventos (de ciberseguridad y funcionales), dada su flexibilidad nativa para consumir, correlacionar y alertar a partir de distintas fuentes. Con ello, hemos podido detectar y reaccionar oportunamente ante aquellos eventos que representan posibles amenazas para nuestros objetivos., Algunas funcionalidades requieren componentes adicionales.\nEnterprise, Capterra, mitchelle c, Software engineer, 5.0, Through its robust log analysis and ability to collect data from different sources, we can easily perform analysis on various data and predict any future operational hazards. Splunk enterprise efficiently monitors our log activities and and gives results to any queries at faster speed than most SIEM tools., nan\nEnterprise, Capterra, Alex A., Security Analyst, 5.0, It is an easy to use solution, the implementation is a bit more difficult., So far, this is a good solution that I use every day.\nEnterprise, Capterra, Mark T., Network Admin, 5.0, We use this tool primarily as a repository for syslog messages for infrastructure. It allows us to quickly analyze the logs and patterns to determine issues based on patterns. In addition it alerts very well from text based trigger alerts. These features are very easy to use and dependable., I do not have any cons for this software. Mainly as a user it does exactly what I need it to do with no overhead and confusing interfaces.\nEnterprise, Capterra, Verified Reviewer\n, nan, 5.0, I think Splunk is first and best software in the field, easy to use, does what it had promised,, pricing could be better, they could be more flexible, support is a bit slow\nEnterprise, Capterra, Surabhi M.\n, Software Developer, 4.0, Best tracking and data analysis tool which help to monitor and manage the server and system component in very effective way. Real time Visualization helps to take the quick decision so that desired", "doc_id": "e0807126-e648-46de-b5c2-910e4e173d82", "embedding": null, "doc_hash": "9f7e16960a09893e2324d4096ba4e1428011a6cfd41043b8c981ca098cbfe1f0", "extra_info": null, "node_info": {"start": 29155, "end": 33108, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "8aa627a8-d6cd-4c5d-bd90-eb2ebad5359e", "3": "8a4c4d19-0a4b-4938-81ef-11a4d2a82f3e"}}, "__type__": "1"}, "8a4c4d19-0a4b-4938-81ef-11a4d2a82f3e": {"__data__": {"text": "in very effective way. Real time Visualization helps to take the quick decision so that desired action can be taken to avoid failure.Best data collection in the forms of log and which helps to define the best set of automation jobs to fix the issue., There are few components or observation like,1. most of the time observes the slowness in the performance.2. Sometime observe the delay in the issue or updated log reflection on the portal. 3. Need more storage to manage and maintain the lo g which impact organizational costing and budget.\nEnterprise, Capterra, neha v., Software Engineer, 5.0, Integrates with almost all the software seamlessly..where there is a software application that produces log, splunk can be easily integrated. Gives very powerful insights into the logs Alerts can be setup on the logs, and notifications sent out which is great again for managing the health of your application, The query language, though powerful, has a learning curve. Particularly as one goes towards complex queries. If it could be made closer to natural language, it would be so much smoother to learn. Hope that will happen sometime in future.\nEnterprise, Capterra, Rob P., CEO, 4.0, We have been using splunk for over 5 years now. nothing beats splunk in the market place. The only concern we have the pricing and the resource to support it. it's just too expensive, Too expensive and it's too hard to manage. You have to find a very qualified and very expensive resource to support it.\nEnterprise, Capterra, Verified Reviewer, nan, 5.0, I'm not sure from where to start in this case. We use splunk for many things but mostly to analyze the traffic on the network / firewalls. It provides us with a nice overview of what's going on. It makes it very easy to spot spikes on the network and it will provide you also with deep analyzes. For us it's an indispensable tool, probably the best tool we have., To search for something is not always easy, however there are a lot of forums online, so finding help is not that difficult.\nEnterprise, Capterra, Verified Reviewer, nan, 5.0, If you need real-time grokking into your infrastructure, look no further than Splunk. I love love love the dashboards. It's easy to tell a story with your data, and the live search is so FAST!, SPL is a little hard to get used to, but once you get the hang of it, it's not so bad. I recommend downloading their community edition for some great examples of queries and dashboards.\nEnterprise, Capterra, Mark M, Software QA Engineer , 5.0, Splunk can give you extreme insights into how your systems and software are functioning. Not only is the search very flexible and powerful, the customizable dashboards give a status report at a glance into trends, problems and performance. You can also set up email alerts when errors occur limiting the need to have Splunk opened on your machine all the time., Splunk has a learning curve. They have extensive documentation but it isn't intuitive and some features are buried pretty deep. We have an onsite expert who holds bimonthly meetings to answer questions in a group forum.\nEnterprise, Capterra, Biswajit M., Production Engineer, 4.0, First of all you don't need to login to your servers. Just configure splunk forwarder on all of your server and have peace of mind. During outages you dont have to panic and just rely on Splunk and be sure that you will have your root cause visible in splunk., Kernel huge page issues, Search head clustering, Index clusetering. These features are as good as costly too. For SHC and IC it does need all same config hosts.\nEnterprise, Capterra, Mahipal Singh B., Software Engineer, 5.0, Real Time monitoring is the best feature which we like most about this software. It helps to send the notification or alerts if they are something wrong is going on in the server. So, team member can quickly resolve the issue., As of now, i don't have anything which i don't like about this software.\nEnterprise, Capterra, Parth P, DevOps Engineer, 4.0, Splunk Light is ideal for independent on-premise organization.", "doc_id": "8a4c4d19-0a4b-4938-81ef-11a4d2a82f3e", "embedding": null, "doc_hash": "8f7b91fca96dbcb9cd8aa847f451fb8d2d7a096d490a9ef8f0e917cfb89d83bc", "extra_info": null, "node_info": {"start": 33113, "end": 37179, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "e0807126-e648-46de-b5c2-910e4e173d82", "3": "5753c053-763a-41fc-881d-6bf57c1d7753"}}, "__type__": "1"}, "5753c053-763a-41fc-881d-6bf57c1d7753": {"__data__": {"text": "4.0, Splunk Light is ideal for independent on-premise organization. Augment endpoint logging. Can find and store logs from a wide range of resources. Customization of dashboards. Making applications dependent on your requirements., Complex generally design. Long execution time. The instrument needs to incorporate AI to comprehend the framework logs and alarming ought to be founded on the auto learning.\nEnterprise, Capterra, Andr\u00e9 L, System Administrator, 5.0, Ease of use, you can extract any kind of information using commands provided by the software vendor. The other good thing about this software is the easy implentation on the servers, and the configuration is basic., For people that are not used to use command lines, it might be a liitle bit difficult on the beggining.\nEnterprise, Capterra, Lina M., Senior Software Developer, 4.0, Advanced security analytics to quickly detect malicious threats within our networks and devices with rapid response and effective alert prioritization to accelerate investigation., Great integration to collect multiple data easily and in built-threat intelligence that helps to accelerate our investigations. Full of incredible features, there is nothing to dislike.\nEnterprise, Capterra, shaik a.\n, Associate Software Engineer, 5.0, The best thing about this software is i love its UI part and its dashboard where it provides the logs of all the enterprise application every business which has large amount of the transactions being held are required to maintain this tool and its logging and search frequency are very much loved and dash board has very colourful UI and easily understandable, There is no least about this software but we are looking for some more enhanced featured like optimisation and all\nEnterprise, Capterra, Edward H., Lead Infrastructure Engineer, 5.0, The ability to set up queries and get data back quickly is invaluable, Learning to structure queries is a bit of a challenge in the beginning\nEnterprise, Capterra, stephanie b, Software engineer, 5.0, The tool can collect all sorts of data from diffuse sources and preform advanced analytics on it. It has powerful monitoring capabilities useful in threat identification and maintaining the health of our IT infrastructure. Splunk enterprise helps us to foresee, trends through machine learning which has been a crucial to making informed business decisions., Training new users is tough, the learning curve is very steep and it gets overwhelming for them. The installation and configuration process is very long and needs a lot of time.\nEnterprise, Capterra, Mauricio B, Software Support lll, 5.0, As Dashboards s\u00e3o incr\u00edveis e precisas. Podemos criar utilizando a interface do programa ou por Comandos muito parecidos com Pl SQL., Nada a declarar, o software atende a todas as necessidades.Nada a declarar, o software atende a todas as necessidades.\nEnterprise, Capterra, mattt j., Pre-Implementation Onboarding Coordinator, 5.0, The server logs are all stored in the same location and you can easy subdivide them by application. So different servers or processes or whatever can be in different buckets. This makes troubleshooting easier., Sometimes depending on far back you are trying to go the product can be a little sluggish. Beyond that nothing.\nEnterprise, Capterra, Joevanne V., IT Security Engineer, 5.0, Splunk integrates with many different solutions. They also have pre written apps that contain pre written dashboards and other features. It can inherit logs from many products with just several clicks., Pricing model is outdated and can get really pricey really fast. It's very simple to over your daily license.\nEnterprise, Capterra, Andrea O., Office Manager, 4.5, Splunk is a great enterprise-class tool for log analysis and troubleshooting of IT systems. Its graphics capabilities allow you to easily see trends that would otherwise go unnoticed. With a single click, you can retrieve information dating back months ago. Splunk is able to handle any type of input file and this allowed us to get very rapid prototyping cycles. Compared to the competition, it has integrated AD authentication, which fits in", "doc_id": "5753c053-763a-41fc-881d-6bf57c1d7753", "embedding": null, "doc_hash": "f917180a60c935283aef630983ccec0a5c0619e853d91637314de31f8a8cb158", "extra_info": null, "node_info": {"start": 37201, "end": 41354, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "8a4c4d19-0a4b-4938-81ef-11a4d2a82f3e", "3": "5f2c5dca-49fb-4725-ae3e-4c1951067bdd"}}, "__type__": "1"}, "5f2c5dca-49fb-4725-ae3e-4c1951067bdd": {"__data__": {"text": "cycles. Compared to the competition, it has integrated AD authentication, which fits in perfectly with our corporate security. The software is very fast, even on second-tier hardware., The license fee is a little too high. Some sections of the support site contain outdated information. Since the Splunk syntax has changed over the years, it's quite easy to find information that is no longer relevant. The \"basic\" charting options are somewhat limited, and the \"advanced graphic\" syntax requires a charting guru.\nEnterprise, Capterra, vikas k, SAP BASIS HANA Consultant, 5.0, Sofware is really excellent and best suited for small and large scale business who would like their systems, interfaces, server space and database health check to be performed., Sometimes the Splunk alerts creates multiple tickets in ITSM tool during issue. Hence it may result in spending sometime for closure of open incidents.\nEnterprise, Capterra, Carlo T, IT Manager, 4.0, The software includes various configuration possibilities to organize and aggregate the logs of different systems. Very useful tool for monitoring IT infrastructure activities., At the moment we have found no negative aspects.\nEnterprise, Capterra, Christian R.\n, Software Engineer, 5.0, User friendly and an awesome dashboard to manage your logs and analyze your apps., It can be a little expensive but it's worth.\nEnterprise, Capterra, Virat T., Sr Security Manager, 5.0, Easy to use tool with use in IT as well as security. Further business users can be trained easily as well., Have not found one yet since I started using 4 years ago.\nEnterprise, Capterra, Satish C, Assistant Consultant, 5.0, log analysis, text patterns, statistics and graphing, Too much of programming, not easy for laymans to write queries.\nEnterprise, Capterra, Damon D, Engineering Manager, 4.0, As a software engineer, Splunk helps me debug issues in my microservice applications. The Splunk forwarders are efficient and quickly collect logging from multiple server instances. The timestamp resolution is precise making it easier to track down race conditions. The reporting and pivot tables are powerful ways to visualize frequency of api calls once you learn the syntax., Splunk forwarders that collect the data from applications can sometimes hang and need to be restarted. The amount of traffic that can be collected has maximum caps based on your subscription.\nEnterprise, Capterra, Gaurav M., team Lead, 4.0, Various insights are derived from otherwise neglected system and process logs. Library of functions is readily available to read the logs , perform string operations and scan the file. Information can be represented using numerous charts , bars and graphs. Very useful in production monitoring and alerting using email option, I feel debugging is difficult. drop down or drag and drop functions should be made available because it's difficult to keep track and remember syntax of functions and it's usage.\nEnterprise, Capterra, Jean F., CTO, 5.0, All in one solution to collect logs, analysis, diagnose and report. The application has a nice console where it shows all the necessary information with some very nice graphics and information., Free for 500M/day but a bit expensive if you need to collect more, or have the need to have more users logging in.\nEnterprise, Capterra, harmandeep singh s., Graduate Assistant, 5.0, 1.Ease of use 2.support ad-hoc query and then analytic. 3. defining field extractor is simple and you can use it to search again. 4. It's a powerful ecosystem, 1., it's slow and maybe make system unresponsive when you search data over long time range, or large amounts of data 2. there are too much CPU cost when index too much items on Windows machine. 3. price becomes high as you scale.\nEnterprise, Capterra, Yaniv V, Director, Quality & Processes, 4.0, Splunk has excellent abilities to search and data-mine your logs. In addition, you can build dashboards on top of aggregated data in order to save precious time each time you want to have a look at your system's performance without querying from scratch., There are times in which the service experienced performance", "doc_id": "5f2c5dca-49fb-4725-ae3e-4c1951067bdd", "embedding": null, "doc_hash": "0a71025786d475b1ec47bcd925dd5d86ed1f94cd8c37ce63b1e5e5a665f9ad14", "extra_info": null, "node_info": {"start": 41339, "end": 45487, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "5753c053-763a-41fc-881d-6bf57c1d7753", "3": "10e4af3c-d44a-4aff-a0dc-63907a78a16d"}}, "__type__": "1"}, "10e4af3c-d44a-4aff-a0dc-63907a78a16d": {"__data__": {"text": "system's performance without querying from scratch., There are times in which the service experienced performance issues. Sometimes they were so severe which meant you're \"blind\" since you can't access your logs.\nEnterprise, Capterra, James C., CEO, 5.0, This software puts all your logs and events in one centralized location making managing logs easier to manage., When they first started they had awesome plans and options but it has changed since the beginning. Still great\nEnterprise, Capterra, Mubasshir Ali R., Merchant Technical Support Analyst, 5.0, A very effective log analyzer and the part I love most is the infrastructure monitoring. A proactive monitor and alert generator for our Critical Production Environment., If SPLUNK enable SQL alongwith its own SPL so the generic users would have been able to work more better.\nEnterprise, Capterra, Srinivas M., Software Engineer, 5.0, Splunk makes log aggregation and log search extremely easy for micro service model architecture. UI feels easy to navigate and the query language is quite simply to learn, Sometimes log ingestion takes a lot of time , depending upon the method we use to ingest the data. Enterprise version vs on site is also an interesting choice\nEnterprise, Capterra, Nirdesh P., Senior Associate, 5.0, Can create charts / Graphs / Table for quick results, At times it becomes slow, when I use my splunk in multiple windows (i use around 6-7 splunk windows at a time)\nEnterprise, Capterra, Verified Reviewer, nan, 5.0, troubleshooting IT problems made it easier and faster, search speed can be slow sometimes based on your query\nEnterprise, Capterra, Chris L, Sr. UNIX Systems Admin, 5.0, Many prebuilt log analysis modules. Competitive advantage over DIY solutions. Easy to setup and administer., Your costs can be high in larger installs.\nEnterprise, Capterra, Verified Reviewer\n, nan, 3.0, Makes it easy to identify trends within your environment. Once everything is aggregated it makes it easy for example, to see the knock on events of a network outage throughout the environment., Web user interface is a bit clunky. Its very polished interface, but in many cases it's style over substance. When I'm debugging an issue I want to be able to drill down into the problem fast, and the shiny interface can be sluggish and slow you down.h\nEnterprise, Capterra, Rakesh M., Manager, 4.0, The charts and visualizations that you can create in general have a good look and it has the minimum functionalities expected as a user (export, filtering, search, etc), I spent some time trying to understand the interface and functionalities but once I started to load some data and use the search I was able to see the capabilities of the product., Splunk is easy to start going but difficult to master with so many features. The query language has many analytical features that requires some learning curve\nEnterprise, Capterra, Verified Reviewer, Human Resources Unit Manager, 5.0, Splunk is a software that should be taken as an example, it is cheaper than its counterparts, which makes it extremely attractive., I did not feel a general lack of it because I used it for price performance, but I would be happy if more language support comes.\nEnterprise, Capterra, Karen V, Software Engineer, 4.0, I worked with a team member to integrate McAfee Endpoint Security with Splunk Enterprise so that virus scanning logs could be easily monitored. Integration was extremely smooth, and the data was nicely visualized on Splunk. There was very little delay in the virus detection logs being updated on Splunk as we performed several tests for virus scanning. As a user, it was very easy to navigate and I greatly enjoyed the usage of filters for filtering specific events that occurred., It's a great product for boosting your security posture, however the cost of the tool and additional storage was a bit steep. It was also a bit difficult to create filters for the logs, which was a necessity for our end user.\nEnterprise, Capterra, Joe E., Engineer, 5.0, After going through the free online training I was able to get this product up and running to consume Linux audit", "doc_id": "10e4af3c-d44a-4aff-a0dc-63907a78a16d", "embedding": null, "doc_hash": "441969da34e7908e3b27006a5185ea76e429818929f962c8ccb945cf9d77634a", "extra_info": null, "node_info": {"start": 45464, "end": 49602, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "5f2c5dca-49fb-4725-ae3e-4c1951067bdd", "3": "d9212f2b-877e-42b3-bc44-cf84c73b8311"}}, "__type__": "1"}, "d9212f2b-877e-42b3-bc44-cf84c73b8311": {"__data__": {"text": "the free online training I was able to get this product up and running to consume Linux audit logs. Writing SPL wasn't too difficult, at least for basic scenarios. The regular expression generator is especially helpful!, The configuration resides across many different levels (default, local, and then again within the apps). Having levels of configuration is a bit of a nightmare to manage.\nEnterprise, Capterra, Faraan Q., Software Developer, 5.0, Love the ease of being able to log various performance statistics for our applications whether it's documenting response times or any failures, Some things like figuring out the ways plunk structures it's queries for search is difficult. Seems like documentation is not very straightforward\nEnterprise, Capterra, Verified Reviewer\n, IT, 5.0, I like that it's incredibly easy to create reports and dashboards. You don't have to even know the schema of the database it's hooked up to because splunk will guide you through the creation. I've used lots of report building software and Splunk blew me out of the water., I wished it would take SQL queries when I first started using it but I got used to their query structure quickly.\nEnterprise, Capterra, Rafael P., Administrator, 5.0, A very high-class product. Integration with other systems is great. The system can analyze a lot of information from many systems at the same time., Very good product with almost no drawbacks. I believe that the manufacturer may reduce the restrictions for the free version\nEnterprise, Capterra, Harish G., senior software developer, 4.0, ) Querying the logs with ease. 2) Statistics on the logs gives you greater insight into whats happening with your system. 3) Group error logs by type, by server.. etc. 4) Professional interface., does what it says, no question about that but learning how to query took some time in the beginning. so, a small learning curve there.\nEnterprise, Capterra, Ryan M., Sr. Linux Systems Engineer, 5.0, It very easy to jump in and learn. Installation, configuration, and administration is very easy. Use of the product such as Search/Dashboard can seem daunting at first but is actually very simple. Splunk has very good documentation and community support. I am always able to find answers to my questions by using Splunk Answers and/or the IRC channel., Licensing and pricing in general. Managing the license usage can be annoying and paying for more can be costly. There have been quite a few times where small issues with our log intensive systems have caused license violations. Scenarios like this are usually avoidable with small changes to the Splunk configuration but it can be tedious.\nEnterprise, Capterra, ArunSanthoshKumar A., Senior Staff Engineer, 4.0, INgestion of the huge volume of the data. q, Reporting commands on volume data and training documentation on the reporting.\nEnterprise, Capterra, Naveen C.\n, Senior consultant, 5.0, We use splunk to monitor the health of applications in the test and production environments. It allows to create queries to see the specific event., Pricing of the license is high especially when the number of users is more and also support from splunk is inadequate when there is a issue\nEnterprise, Capterra, Abhay T., Cyber Security Analyst, 4.0, A log forwarder tool which you can use free upto 500MB. No Development work required to provide value. You can create your own queries and event based alerts., The software is very powerful but to use those feature you will have to buy the license then you can get all those feature that it has.\nEnterprise, Capterra, Ajinkya K., Engineer, 4.5, Building a query is very easy. It's easy to understand the interface, graphs are good and can be easily exported. The dashboards are very useful., I am not sure if I am using the latest version, but the version I use sometimes would expand the text area where the query is written hard to tell if the search is still on or done. Also, sometimes it takes very long for a query to finish execution. I understand it depends on the query itself and also the amount of data, but the tool aims at getting", "doc_id": "d9212f2b-877e-42b3-bc44-cf84c73b8311", "embedding": null, "doc_hash": "a199464ee81d7983addb738dde4d9901422e0852594c9186b97540ebfafed4f6", "extra_info": null, "node_info": {"start": 49626, "end": 53734, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "10e4af3c-d44a-4aff-a0dc-63907a78a16d", "3": "5a34023f-6c80-4bc8-a9da-f80343581e69"}}, "__type__": "1"}, "5a34023f-6c80-4bc8-a9da-f80343581e69": {"__data__": {"text": "on the query itself and also the amount of data, but the tool aims at getting quicker result for a high volume of data.\nEnterprise, Capterra, Vincent L., Technical Delivery Manager, 5.0, Nous a permis de faire des dashboards sur le suivi des patching de nos VM sur le Cloud et de l'installation de Crowdstrike. Mais aussi de traquer l'utilisation du NTLM V1 pour le d\u00e9sactiver sur nos serveurs, Les query sont un peu long et prennent un peu de temps \u00e0 etre apprise\nEnterprise, Capterra, Verified Reviewer, nan, 5.0, I love how easy it is to use and to find my data. The search engine is so fast and intuitive., This is a powerful tool and it can prepare very detailed graphs and charts. The con is that it takes more training and time to perfect your skills to create these graphs.\nEnterprise, Capterra, Jay b, Network Security Specialist, 5.0, The ease of initial setup along with the app market for add ons makes this a great product. Couple this with their support and it is so simple and great to use., A little overwhelming how much is out there for thi\nEnterprise, Capterra, Nico S., Director IT, 4.0, Great threat analysis combined wit log analysis and deep search pattern, Hard to configure. You need to be an expert.\nEnterprise, Capterra, Rachana P., student, 5.0, Ease of functionality and combining it with open source technologies provide a lot of features., Nothing that i dont like as of now. I think its pretty good since its easy to understand.\nEnterprise, Capterra, Verified Reviewer, nan, 4.0, The amount of information and data that you can organize with splunk is it's best feature., It will take some time getting used to how create dashboards and reports so that can pull the relevant data out of splunk.\nEnterprise, Capterra, Verified Reviewer\n, nan, 4.0, Integrating spunk with other tools it is one of the best feature which splunk has. we can pull logs by integrating with other tools., Writing a query in splunk is difficult. it should customize the query for users.\nEnterprise, Capterra, Gaurav Y.\n, nan, 5.0, Main purpose of this tool for us is to monitor the logs of our application. And I can say, it is very good at this. Finding the stats, pattern out of log is very easy. You can run multiple queries job on a single application log. You can monitor job running on your logs like you can kill them, can stop particular job. It's support of sql like queries on logs is just amazing., This is a great tool, there is no disadvantage of this product but just mention you need a bit of learning to use it's all the functionality.\nEnterprise, Capterra, Nav R, Software Engineer, 3.0, Ability to search logs across processes and services - Ability to develop dashboards to Monitor critical metrics - Ability to set up alerts based on threshold values, Need to regex well in order to use the tool to its full ability - Ability to extract values out of the log statements could be simpler - Alerts usually end up being over alerting or false alerts.\nEnterprise, Capterra, Callum S., NOC engineer, 4.0, The statistics you can gather from this are very helpful in determine underlying problems within a series of devices, It requires a lot of knowledge to make the most out of it, regex is virtually essential for making the most of splunk\nEnterprise, Capterra, Vince C, IT Systems Analyst, 5.0, They have a robust platform that I have used for monitoring and analytics. There are a lot of options and customization available when using it., Because there is so much customization and options available, it can be complicated to learn.\nEnterprise, Capterra, Pradip R., Principal IT Business Systems Analyst, 5.0, Splunk is great in terms of the speed of fetching records and also very useful UI elements which helps to analyze the record faster. The tool is so user friendly that anyone can start working on the tool easily and so much capabilities that experts can also bring a lot of values after segregating the records., The technical", "doc_id": "5a34023f-6c80-4bc8-a9da-f80343581e69", "embedding": null, "doc_hash": "c5dcc7f7190731aed9269343515feeae2dd8cd432775ec217b6dd70d247c755b", "extra_info": null, "node_info": {"start": 53749, "end": 57712, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "d9212f2b-877e-42b3-bc44-cf84c73b8311", "3": "7b2071b1-da20-49e8-a91e-a277a4a90d15"}}, "__type__": "1"}, "7b2071b1-da20-49e8-a91e-a277a4a90d15": {"__data__": {"text": "that experts can also bring a lot of values after segregating the records., The technical team is okay to see the records in the JSON format. But sometimes the functional users ae not comfortable with the JSON data. They need technical assistance.\nEnterprise, Capterra, Gregory D., Service Desk Manager, 5.0, Splunk is a great way to teach tech folks about logging and how technology in the IOT world communicate. Indexing and parsing make reading code so simple and easy to identify faults., Would be nice if there were different user roles so a novice would not be overwhelmed with so much at once.\nEnterprise, Capterra, Verified Reviewer, nan, 4.0, We first started using Splunk as a log analysis tool like many companies do but we're not getting into a number of other use cases based on how powerful and robust the tool can be for our business. They have a lot of good apps on their marketplace and the visualizations make information for less tech savvy users readily available., Starting this tool up and really getting it working takes some time, research and resources just based on the vast number of solutions it can provide. Like other tools that we use, it requires us to have good focus during planning to make sure we're not trying to do too much and instead focus on a few use cases to start.\nEnterprise, Capterra, Trang N.\n, Senior Test Engineer, 5.0, Splunk has very strong query language event complex commands like Join, subquery or aggregate which much the same with SQL query with good report UI to display result. Set Splunk system is easy with install Splunk server and its agent in every node then configure logs location to collect. It provides many built-in Apps to collect logs from other popular tools such as AWS, Salesforce, Kafka..., Splunk query language is quite hard to learn for new user and its query error is too generic for troubleshooting.\nEnterprise, Capterra, Verified Reviewer\n, nan, 5.0, We use Splunk to parse and catalog our system and audit logs for propiertary software we use in house. The file sizes are compact and the search is very thorough., The interface is somewhat clunky and a little hard to navigate.\nEnterprise, Capterra, Anuruddha R., Systems Engineer, 4.0, Splunk can handle huge data set and grab specific information from a data set, It is costly but it provides great value for the money.\nEnterprise, Capterra, Verified Reviewer\n, nan, 5.0, What I most like about Splunk is that it assists me in creating dashboards for my teams and other teams to verify the validity of our incoming and outbound network traffic., Learning the syntax searches about it seems to very difficult and there aren't really any training guides or help on their website that I've found that assist very well with it.\nEnterprise, Capterra, Michael F., Principal Developer, 5.0, Consolidation! All logs are consolidated in one place, which makes searching and analytics better., The search features are complicated. I end up needing help every time I have to search through the logs. You need a dedicated support team.\nEnterprise, Capterra, Gumercindo B., Software Engineer, 5.0, Assurance tool for critical monitoring process, Missing helpers about configuring reports and queries\nEnterprise, Capterra, Verified Reviewer\n, nan, 5.0, Ease of querying logs, user friendly front end, user can create automated alerts for receiving information on current state of the data, Sometimes, becomes slow when trying to query historical data\nEnterprise, Capterra, Sunil L., Operations Manager SAP, 5.0, This tool provides holistic overview of network and infra reports which supports RCA analysis., Too many time consuming but has detailed overview.\nEnterprise, Capterra, \u00d6zer M., Logistic Manager, 5.0, It will make it easier for you to analyze data because you can highlight the content you want to follow., I didn't have a bad experience. simple and useful software.\nEnterprise, Capterra, James W, IS Security Administrator, 5.0, The ability to set up alerts and reports based on logs that come in from almost anywhere and anything in our network., In can", "doc_id": "7b2071b1-da20-49e8-a91e-a277a4a90d15", "embedding": null, "doc_hash": "13320497298cacc7f0eee4c2783a2057e85c18b4b31cd12349a655da3fe674de", "extra_info": null, "node_info": {"start": 57700, "end": 61791, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "5a34023f-6c80-4bc8-a9da-f80343581e69", "3": "02544d89-afa8-46c7-b46f-ef0dcefed681"}}, "__type__": "1"}, "02544d89-afa8-46c7-b46f-ef0dcefed681": {"__data__": {"text": "based on logs that come in from almost anywhere and anything in our network., In can be a bit of a bear to get set up but that is the case with almost any enterprise level software like this.\nEnterprise, Capterra, Verified Reviewer\n, nan, 5.0, It can do a lot once you figure things out-- you can run a really professional software on this platform and make it look nice as well., Super hard to get the hang of for a beginner. Don't use this if you've had no experience with computer software or coding before. Also, some of the products on the \"free trial version\" aren't available on Splunk Enterprise, which doesn't make sense, because Splunk Enterprise is more expensive?\nEnterprise, Capterra, Verified Reviewer\n, nan, 5.0, GREAT ability to scale Good price Easy to set up, Can give more information than you know what to do with Learning curve\nEnterprise, Capterra, Pratik C., Technology lead, 4.0, Best tool for application event trend analysis, Effective report of logs, Useful for new users , support analyst, To generate report need some automation. Has to write query using parameters, For end users it is difficult to configure.\nEnterprise, Capterra, Matt L., IT Manager, 5.0, Price is a bit high but you get that with Splunk. The good thing is that Splunk always is trying to be competitive so this may change.It is able to be expanded easily and quickly. It is polished and designed very well. Allows my team to inspect issues quickly and pull from many different sources in our enterprise., Price is a bit high but you get that with Splunk. The good thing is that Splunk always is trying to be competitive so this may change.\nEnterprise, Capterra, Ben W., Information Systems Analyst, 4.0, There are TONS of capabilities. The software can handle a lot of data and is able to produce query results in a short amount of time., The software is difficult to use (I didn't have to set it up) and the query structure and syntax is very clumsy and non-intuitive.\nEnterprise, Capterra, Ronnie B, Lead Software Engineer, 4.0, With Splunk Enterprise, it is easy to investigate, detect and remediate threats on devices and endpoints on our network., It was full of technical overheads when we were customizing Splunk Enterprise features.\nEnterprise, Capterra, Verified Reviewer, nan, 4.0, I get daily reports with trending issues and potential bugs that allow me to quickly see what issues need to be addressed before they become problems. The aggregated data logging also allows me to get the additional data I need to identify the root causes of problems and share that with other team members, Sometimes it can be difficult to filter down to the level of data I need.\nEnterprise, Capterra, Bill C., Consultant, 4.0, It dominates the industry in SIEM.... People would love to hate it... it's critical in terms of looking at your logs and seeing if something is not right and you have hackers or unwanted people on your system. It's the industry leader and has all the cool features., The price.. it's expensive and you have vendor lock-in... All my clients hate it for the price, but love it for its features and leading R&D.\nEnterprise, Capterra, Rashmi, UI , 5.0, I think it's great tool to see the logs of your application with advance query search. Splunk support lots stat mechanism, also you can start multiple stats jobs on your location. It is just fabulous thing., I have been using this for last one and half year but can say a single negative point of this too.\nEnterprise, Capterra, Jeffrey M., Software Security Analyst, 5.0, Theres a certification path to using Splunk. Extremently easy to set up reports within minutes which add good value to the company. Reviewing data has been beneficial at both network and server level. Its made Devops lives easy in such a way that all teams can pull relevant information beneficial to them., There are alternatives available which make Splunk a hard sell for organizations.\nEnterprise, Capterra, Sourav H., Developer, 5.0, The simplified user interface which presents logs in a readable format. Also it's ability to quickly identify integration", "doc_id": "02544d89-afa8-46c7-b46f-ef0dcefed681", "embedding": null, "doc_hash": "99eb14e9d43328a450b3649b516ae89706b66fadd30f828efcbc85e4dbc26738", "extra_info": null, "node_info": {"start": 61798, "end": 65905, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "7b2071b1-da20-49e8-a91e-a277a4a90d15", "3": "4e1099db-41c7-43c0-836f-0d8da4edc74e"}}, "__type__": "1"}, "4e1099db-41c7-43c0-836f-0d8da4edc74e": {"__data__": {"text": "presents logs in a readable format. Also it's ability to quickly identify integration issues, A mechanism to hide system generated logs that are unimportant would be great\nEnterprise, Capterra, Rishabh D., Information Security Analyst, 4.0, Splunk Enterprise offers a variety of different functionalities from security to log management. It can be a tool that can do it all., The learning curve is a bit high and the training resources available do help but can be constantly out of date.\nEnterprise, Capterra, Verified Reviewer\n, nan, 4.0, 1. Awesome data crawling and retrieval 2. Great search repository formed 3. Excellent visualization charts created 4. Graphs, dashboards, charts and various options supported aiding in effective business decisions, 1. A bit expensive to use but worth it with the features it provides 2. Secure but analytics options can be further enhanced\nEnterprise, Capterra, Dilraj S, Sr. Software Developer, 4.0, Splunk provides a very flexible solution for helping you gather huge amount of data and then setting up alerts and configuring reports which helps you in converting data into an actionable insight., UI/UX is really good but sometimes queries for gathering data can have steep learing curve on the Splunk.\nEnterprise, Capterra, Charlie G., SE Mgr., 4.0, It's ability to query massive data sets., Fairly steep learning curve in regards to query syntax and options.\nEnterprise, Capterra, Gaurav K., student, 5.0, Hadoop analysis is good for Fixed size dataset. Splunk product captures, indexes real-time data in a searchable repository from which it can generate graphs, reports, and visualizations which are very easy and helpful to understand the data., I think there are no features which I do not like. I think during clustering I faced some problems thats it.\nEnterprise, Capterra, Cedeno A.\n, .NET Software Engineer, 4.0, Block security threats on endpoints. It enhances applications development., The price is high but the results are remarkable.\nEnterprise, Capterra, Davesh M, Junior DevOps Engineer, 5.0, Complexity of queries to discover very specific correlations, date and time range accuracy, beautiful graphing capabilities, Can be extremely slow when searching over log dense applications, indexers can quickly get overwhelmed leading to missing data\nEnterprise, Capterra, Verified Reviewer\n, nan, 5.0, Nice interface, and pretty easy to use once you get the hang it. In my experience its been pretty fast to pull up my searches even when there are thousands of results. It's a really powerful tool., I've used it daily the past months and haven't come across anything I finding deterring. Getting connected is sometimes a pain, but I think that's on my end haha.\nEnterprise, Capterra, John P., Engineer, 4.0, There are tons of apps available in the marketplace and ability to collect many different log formats, Splunk is easy to start going but difficult to master with so many features. The query language has many analytical features that requires some learning curve\nEnterprise, Capterra, Michael O., IT Manager, 4.0, Verry handy usage Fast query and result scalable Big Data No SQL good community, License is at little bit too expensive. Professional Service at Europe is not very well stuffed.\nEnterprise, Capterra, Verified Reviewer\n, nan, 5.0, I liked the interface, we were able to setup some addons for vmware and cisco ISE. We primarily used it for tracking where bad password attempts were coming from., The pricing is pretty darn steep. My company pays by volume of ingestion by gigabyte and that can add up pretty quickly.\nEnterprise, Capterra, Guillermo R., Security Analyst, 4.0, Very easy GUI that can be familiar just in a few days, Gathering data in simple stepts makes everything much easier., The docs about the product sometimes are confusing, and to learn more on google is harder because there is not much material like for example cisco, palo alto, etc.\nEnterprise, Capterra, Verified Reviewer, nan, 5.0, you can import all the", "doc_id": "4e1099db-41c7-43c0-836f-0d8da4edc74e", "embedding": null, "doc_hash": "807da9332bd4aed47b7989d6d98748739ce92af0130b2fb91fc7442859ee896e", "extra_info": null, "node_info": {"start": 65902, "end": 69914, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "02544d89-afa8-46c7-b46f-ef0dcefed681", "3": "f1a0779e-905c-4c66-9f14-c1fd473f6115"}}, "__type__": "1"}, "f1a0779e-905c-4c66-9f14-c1fd473f6115": {"__data__": {"text": "Capterra, Verified Reviewer, nan, 5.0, you can import all the data without parsing it., I never thought it. Almost all features look good. The disadvantage of the high price.\nEnterprise, Capterra, Dominic R., Systems Architect, 5.0, Hugh library of add-ons that have been pre-built by others saves you significant time - Large community (and events like Splunk Live) to help and keep you engaged - Refined interface compared to some of the free competitors, You'll like the tool so much that you'll want to throw all kinds of data into it and the cost will grow substantially! - Only pricing is by data volume, no options to pay by host, source, etc.\nEnterprise, Capterra, Artem G., Dev, 4.0, It is an excellent way to search for anything in your logs and even monitor them!, It requires some skills to configure it right, especially the distributed version.\nEnterprise, Capterra, Verified Reviewer\n, nan, 5.0, Nice, user understandable graphs. You can analyze system logs using Splunk to identify issues with the system. It is also used to identify patterns in the performance., Can not run offline. Does not provide results via email. Need the training to get expert writing search strings using regular expressions. Large queries are a bit slow.\nEnterprise, Capterra, Gargi S., student, 4.0, It allows me to seamlessly collect and visualize all my data. Provides a greater level of insights which were not visible in custom solutions before using Splunk, Sometimes it can be overwhelming to understand all the feature sets, it is not so clearly defined, it might help to have the documentation handy before using.\nEnterprise, Capterra, Ryan S., IT Manager, 5.0, I really like the overall feel of Splunk, it integrates with many other products very well. Even has independent add-ons for Cisco and Microsoft Products., Pricing of Spunk can get very expensive. I have experience with the windows version of splunk and sometimes it can be difficult to troubleshoot.\nEnterprise, Capterra, Verified Reviewer, nan, 4.0, While Microsoft didnt provide a centralized log monitoring for enterprise machines, Splunk filled the gap. It is good one stop console to monitor logs on your every server., Reports can be more user friendly and descriptive.\nEnterprise, Capterra, Verified Reviewer, nan, 4.0, I really liked how easy splunk made it to search vast amounts of data in a short amount of time. The dashboards were pretty useful as well., Splunk is very expensive to deploy on premise. This can be a limiting factor for customers that do not want to host sensitive data in the cloud.\nEnterprise, Capterra, Edd P, Senior Analyst, 5.0, Very useful for combining log files from multiple sources and setting up predefined reports to check for errors., Free version of splunk light doesn't allow automatic notification by email of log errors. However as I have paid nothing I can't complain too much!\nEnterprise, Capterra, Verified Reviewer\n, nan, 4.0, Great application for log collection and correlation of the logs, easy for searching and working with. Support is more user based and support is helpful for issues., Not the full product, due to being free. Can be confusing if you don't use the free training offered from Splunk.\nEnterprise, Capterra, Rachael T., Network Administrator, 4.0, Splunk makes it easy to troubleshooting client connectivity. It also helps me understand if a client is continually roaming to other APs., I wish that it was a little more cost effective. In some ways, Splunk has so many options that it can be confusing to know how to get the information you're looking for.\nEnterprise, Capterra, Sujeet S, Technology Architect, 5.0, Its ability to process large chunks of data and transform the data to information of interest., Its regex builder for field extraction needs improvement.\nEnterprise, Capterra, Verified Reviewer\n, nan, 5.0, The best part about Splunk is that it is incredibly flexible. Any type of log can be aggregated and its awesome to build correlation. Any thing you want to know from your data can be found with", "doc_id": "f1a0779e-905c-4c66-9f14-c1fd473f6115", "embedding": null, "doc_hash": "d4649770bd92a8cc070e9f070ccbbf88a42159e5d0d6e40a17fc5e0edc7f6d88", "extra_info": null, "node_info": {"start": 69936, "end": 73991, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "4e1099db-41c7-43c0-836f-0d8da4edc74e", "3": "f8613859-5e96-4bcd-882f-aa600feab1ff"}}, "__type__": "1"}, "f8613859-5e96-4bcd-882f-aa600feab1ff": {"__data__": {"text": "awesome to build correlation. Any thing you want to know from your data can be found with Splunk., The ability of Splunk comes at a cost, literally. There is a free edition but if you are using it in an enterprise environment, especially if there is more than one department uses it, it will be pricey. However given the functionality its still a good value for many enterprises.\nEnterprise, Capterra, Md Muhibbul C., Software Developer, 5.0, Extensive support for creating dashboard, ability to write queries to capture application logs and support to automate alert system along with Service Now incident creation., Sometimes cause issue to create false alert or miss alert because of the difference of fraction of seconds in data.\nEnterprise, Capterra, GOBINATH G., Software developer, 5.0, Splunk gives data analytics on the application usage. And it is great tool to monitor software applications, Users need to learn SPL search processing language\nEnterprise, Capterra, Stefano g., Innovation & Data sources Manager, 5.0, The time to delivery from data to analytic dashboard for IT and for business, The fact that it's time-series data oriented and that is not a general purpose application\nEnterprise, Capterra, Verified Reviewer\n, nan, 5.0, I like the speed and ease to search contents., i think cost is a factor for some organizations\nEnterprise, Capterra, Jyostna S., Principal associate, 5.0, easy queries - Robust -Never fails -Resilient - easy to use and alert configurations based on the resultants and error queries, nan\nEnterprise, Capterra, Manish M., Primary/Secondary Education, Unspecified, 5.0, It's a very good tool to analyze real-time data. It also generates graphs, reports, visualizations based on the data. Product is easy to use and understand. Installation is also not that difficult., As a student I think price is high, but I think value for money is good.\nEnterprise, Capterra, Rohit V., Student, 4.0, The product installation is simple and easy to understand. The configuration of this product for a multi-node cluster is intuitive and easy to learn. Automatic suggestions popup while filtering over indexed data., In case of analytics, there should be at least 2000 entries.\nEnterprise, Capterra, Verified Reviewer\n, nan, 4.0, Capas de procesar gran volumen de datos a partir de m\u00faltiples fuentes, r\u00e1pido y eficaz en el an\u00e1lisis . Nos ha permitido mejorar y fortalecer todos nuestros procesos internos de la empresa y optimizar nuestros objetivos, Es un software bastante caro y no para peque\u00f1as empresas, a no ser que te dediques a ello. Puede requetir implementar algunos complementos adicionales.\nEnterprise, Capterra, Shahab V., Cybersecurity, 4.0, Splunk is an easy to navigate, search and monitor data., Bad customer service. Was once locked out of my account and never got back in.\nEnterprise, Capterra, Anindita B., Software Engineer, 5.0, It gives us proper logging data for any product and also the fact that it shows data on a timely basis. Also can import data., Nothing to be specific, it can be made for interactive maybe\nEnterprise, Capterra, Stephanie N., nan, 5.0, Beautiful design, that makes event logs fun. Intuitive design., Repetitive adjustments, I wish you could save a default time format. Resources.\nEnterprise, Capterra, Robert D., Computer Software, Unspecified, 5.0, Splunk is great for visualizing any application data that we need, and the custom dashboards feature makes it easy to have related reports and queries all in one place., I've been using Splunk for a while, and I still find the query process a bit difficult. For non-technical people, there is a steep learning curve.\nEnterprise, Capterra, Tommaso B., Financial Services, Unspecified, 5.0, I like the ease of use and installation, and how processes large amounts of data, I think the price for the amount of data handled is too", "doc_id": "f8613859-5e96-4bcd-882f-aa600feab1ff", "embedding": null, "doc_hash": "b40670255ccab1222f1e138ee650c19c2f5caf4ed1f81467bca2266880d61fe9", "extra_info": null, "node_info": {"start": 73971, "end": 77828, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "f1a0779e-905c-4c66-9f14-c1fd473f6115", "3": "ea47314c-19e1-4116-ac9a-9b436f91fd74"}}, "__type__": "1"}, "ea47314c-19e1-4116-ac9a-9b436f91fd74": {"__data__": {"text": "processes large amounts of data, I think the price for the amount of data handled is too high\nEnterprise, Capterra, Nate B., nan, 5.0, This software is great at collecting and organizing data from my companies operation., Initially it feels unintuitive and there is a definite learning curve. Once I learned how to navigate and manipulate the software, its features were powerful and helpful.\nEnterprise, Capterra, Nakul S., nan, 5.0, simple and easy, costly\nEnterprise, Capterra, Juan N., Consultant, 3.0, The charts and visualizations that you can create in general have a good look and it has the minimum functionalities expected as a user (export, filtering, search, etc), I spent some time trying to understand the interface and functionalities but once I started to load some data and use the search I was able to see the capabilities of the product., I did not like the limitations of the free version like the size of the data you can upload but I guess is still fair to be able to use it for free.\nEnterprise, Capterra, Sumant M., Software engineer, 5.0, It is easy to use for a novice person. Results are fast. Great product with handy features. You can get insight about your data within few clicks., I did not find the documentation really much useful as a student. Usage cost was really high for me.\nEnterprise, Capterra, Brincy M., Manager Human Resources, 5.0, It realized harmful threats quickly and i think it deserves their cost, I couldn't use it with my ipad, I think it should integrate with ipad as soon as possible.\nEnterprise, Capterra, Ankit S., Engineer, 4.0, 1. Easy to deploy 2. Lot of plugins are available which simplify monitoring work 3. Good readable logs, I will not recommend it for the larger systems due to it's complexity, in smaller systems it works well.\nEnterprise, Capterra, Verified Reviewer, nan, 5.0, Splunk gathers a ton of information. It detects just about anything you want to know when it is configured., Creating reports that will display the information you need is challenging and the output format could be improved upon.\nEnterprise, Capterra, Verified Reviewer, nan, 4.0, With Splunk, sky is the limit, this is also a disadvantage, you have too many possibilities, Very hard and complex to configure, be ready to have sleepless nights\nEnterprise, Capterra, Denham M., IT Manager, 3.0, Great visibility, and deep info good reporting., Setup and configuration, to get onboarded makes me reconsider the software\nEnterprise, Capterra, Tanuvir S., Consultant, 4.5, The product is neat and simple to use with a great customer support, Nothing much, maybe the pricing model. Other than that, I think it's a great product\n\nEnterprise, Capterra, Parag M., Consultant, 3.5, Nice analytics UI. Nice support system. Healthy user community., The amount of time it takes to load, performance-wise could be better\nEnterprise, Capterra, Verified Reviewer\n, nan, 5.0, Enables me to monitor for fraud and cyber security threats and risks, It is great to use but it is expensive. But worth it.\nEnterprise, G2.com, Lin L., Senior Infra Engineer, Network, 5.0, Logging is essential in enterprise networks and operations for troubleshooting., It's not easy to understand quickly from GUI, but it's helpful with log messages.\nEnterprise, G2.com, \nAnjali O., Enterprise, 5.0, Splunk is very good and efficient tools for monitoring purpose. We can add customs third party apps also to splunk that makes it more efficient. We can add customs alert and dashboard which is also cool., There is nothing in particular that I don't like about splunk but if we want to specific speak for something than having splunk on legacy architecture is more painful to handle and manage as an admin.\nEnterprise, G2.com, Verified User, nan, 5.0, It easily convert the big data into visualisations which are very helpful for the leaderships to get to know", "doc_id": "ea47314c-19e1-4116-ac9a-9b436f91fd74", "embedding": null, "doc_hash": "0c16c8f8f9b777c311ae578115bf4e9cf13f9326815ebd4c7a5e5eaa617d0a7c", "extra_info": null, "node_info": {"start": 77830, "end": 81699, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "f8613859-5e96-4bcd-882f-aa600feab1ff", "3": "652073e8-08c5-49cc-bbc4-ca70d326cd91"}}, "__type__": "1"}, "652073e8-08c5-49cc-bbc4-ca70d326cd91": {"__data__": {"text": "the big data into visualisations which are very helpful for the leaderships to get to know about their business approaches towards the goals.., It needs to include more add-on apps which are easy to integrate with all platforms irrespective of their operations like small or big solutions. Splunk also should give more options for data onboarding.\nEnterprise, G2.com, \nJohn P., nan, 4.5, Splunk Enterprise can easily handle large amounts of data from different sources without giving much thought to data format and normalization. Access to the data is done quickly and easily, and you have various tools to customize and integrate data analysis workflows for custom dashboards or use apps from the other product partners, Splunk can be expensive for as license cost is based on size of ingested data. Regex skills may also be needed to be able to properly parse certain data, which can be quite a steep learning curve.\nEnterprise, G2.com, \nvikesh b., Consultant, 5.0, Onboard any machine data, Analytics, Customization, Powerful search, Splunkbase marketplace for apps and add-ons, build dashboards/alerts/reports, Machine learning, Use it for Security/ITOPS/Business Analytics etc..., License price, Limited visualization, knowledge of Search processing language\nEnterprise, G2.com, \nMariano R., Project Manager Team Lead, 4.5, Splunk is a realy easy tool to adopt in the organization. We reach expose a great reports in a few time, The configuration to connect diferents sources may be more user frendly.\nEnterprise, G2.com, \nMadhura G., Enterprise, 5.0, It's alerting and dashboaring capabilities. Easy integration with different platforms, It's slow at times due to large amount data\nEnterprise, G2.com, \nKrishanu C., Security Analyst, 5.0, The best thing about splunk enterprise is its flexibility. It can be used to analyze data from a wide variety of sources. The User interface and design is easy to understand even for non-technical users to get started with. It's search capabilities allows me to find all the information I need quickly. Also it can easily be scaled up or down depending on organization needs. The security features such as access controls and data encryption helps in securing sensitive data., There is no doubt that splunk enterprise is a great platform. However, the cost can be a barrier for smaller organizations. The learning curve is a bit steep and some users may take some time and effort to get up to speed with the platform. Also splunk enterprise can be a resource-intensive tool and might need significant computing power and storage capacity. This can be a concern for organizations that have limited resources or that are working with large datasets\nEnterprise, G2.com, \nMunkhbaatar T., System Engineer\n, 4.0, Easy to use and most powerful system in logging, License cost is expensive. Daily log limit is so small for business\nEnterprise, G2.com, \nMohammad A., Mid-Market, 5.0, Integrate with all log sources , best virtualization for the searches and use-cases for the dashboards, It is difficult to learn on it because it is intended for professionals\nEnterprise, G2.com, \nAmit M., Security Operation Center Team Lead, 5.0, First, Splunk is very intuitive to use. it is not complex, and the Splunk documentation and courses provide comprehensive explanations on how to best utilize the system. in addition, I like that it provides the option to seamlessly dump log files, honesntly i dont see downside in Splunk. We are also using QRadar and I must say that it is way better for data analysis.\nEnterprise, G2.com, \nAmit M., Delivery Lead - Information Security, 4.5, Its a powerfull tool for any enterprise to rely on. Must say, the tool is very much user friendly,powerfull and easy to access.\n\nIts now a world leader dominating other tools., Nothing as such as of now but yes the UI could be a bit better then what it is now. Rest everything is good nothing to worry on.\n\nWhen you take it , feels like plug n play\nEnterprise, G2.com, \nAshish j., Senior Software Engineer, 4.5, Splunk is", "doc_id": "652073e8-08c5-49cc-bbc4-ca70d326cd91", "embedding": null, "doc_hash": "8dc239d4aaa49911b6a35c4c4f14ece463b5b5886f8543611fe7f8379cb6dc30", "extra_info": null, "node_info": {"start": 81697, "end": 85730, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "ea47314c-19e1-4116-ac9a-9b436f91fd74", "3": "5bd4e401-4e7b-4124-bba6-800f7b04c425"}}, "__type__": "1"}, "5bd4e401-4e7b-4124-bba6-800f7b04c425": {"__data__": {"text": "\nAshish j., Senior Software Engineer, 4.5, Splunk is awesome big data tool to get data from any source and get insight from the raw data to deliver values to the business and security., It's premium apps trainings are expensive.\nEnterprise, G2.com, \nNithin s., Application Development Analyst, 5.0, Splunk enterprise is an all in one tool for automation and log analysis. The ease of acquiring documentation and materials to contribute to your project is one of the main highlights!, I face slowness in solunk enterprise sometimes. I have encountered a few bugs like when a saved search didn't run on time. Also it's difficult to find a root cause of the problem by using internal logs.\nEnterprise, G2.com, \nSanthanabharathi B., Information Security Specialist - SOC, 4.5, Comparatively splunk provides multiple use cases for an organisation, Nothing is problem in splunk enterprise it's always good to learn\nEnterprise, G2.com, \nKhaja Salahuddin M., Senior Network and Security Engineer, 5.0, The dashboard of the splunk enterprise and in particular for security is very intuative. lots of knowledge base and learning available on internet., The pricing of the enterprise security app is high when compared to other SIEM solutions\nEnterprise, G2.com, \nManraj T., nan, 4.5, Good data analytics with the advanced parser and correlation engine. Very easy to customize, and visualization is also fantastic. Good reporting templates and log sources integration is excellent., Very hard to understand the Architecture at the beginning of solution deployment. Querying data is also needs programming skills, need to add more custom correlation rules.\nEnterprise, G2.com, \nAlaa B., Azure Kubernetes Engineer, 4.5, was easy to configure with Application like jboss and IIS for .net app\n\nalso we configured alerts for some reptative errors and we discovered it using splunk\n\nmanagement also liked it, i have 2 comments which is the language used for splunk need learning curve\n\nalso configuring splunk servers (clusters) not easy\n\nbut documentation is great also courses\nEnterprise, G2.com, \nCrysthel Jane S., Junior Software Engineer, 4.0, It is a huge help to analyze big data, and from my experience, it is suitable for cybersecurity defense., Well, as a user, what I don't like about using Splunk is that the dashboard is not a user-friendly.\nEnterprise, G2.com, \nAzar N., Information Security Engineer, 4.0, Splunk have quick search and detection ., Splunk can reduce memory and CPU usage .\nEnterprise, G2.com, \nEric R., Software Engineer, 4.0, Splunk Enterprise is incredibly powerful and useful. It can be used for many applications, can be customized for lots of use cases and has enough features to be used by many people in the org., Getting started can be somewhat tricky due to the query language and figuring out what the best set up is for your organization specifically. Sometimes speed is also less than ideal.\nEnterprise, G2.com, \nAbdul S., Sr. Penetration Tester, 5.0, Splunk Enterprise is widely recognized as a powerful and versatile tool for collecting, analyzing, and visualizing large amounts of data. Some of the key features and benefits of Splunk Enterprise include its ability to handle complex and diverse data sources, perform real-time analysis and reporting, and provide a wide range of customization and integration options. Additionally, its user-friendly interface and scalability make it a popular choice among organizations of all sizes for their big data and log management needs., some common criticisms of Splunk Enterprise include its high cost, steep learning curve, and resource-intensive nature. Additionally, some users have reported performance issues and difficulties with scalability as their data volumes increase. However, these criticisms are subjective and may not apply to all users and use cases. To determine if Splunk Enterprise is the right fit for your needs, it is recommended to carefully evaluate your requirements and conduct thorough testing and evaluation.\nEnterprise, G2.com, Verified User, nan,", "doc_id": "5bd4e401-4e7b-4124-bba6-800f7b04c425", "embedding": null, "doc_hash": "bbc1e7ab35ed71d7316d75dc3c3270586d37fe8348174c410fbb0a7a5f99bb82", "extra_info": null, "node_info": {"start": 85761, "end": 89811, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "652073e8-08c5-49cc-bbc4-ca70d326cd91", "3": "5b9c6817-960a-4fbb-ada8-c91eaea375f9"}}, "__type__": "1"}, "5b9c6817-960a-4fbb-ada8-c91eaea375f9": {"__data__": {"text": "testing and evaluation.\nEnterprise, G2.com, Verified User, nan, 5.0, One of the most powerful and versatile features of Splunk Enterprise is its advanced search capabilities. This feature allows users to perform real-time and historical searches, as well as complex queries and analysis on large datasets. This enables users to quickly and easily find the information they need and gain valuable insights from their data. Additionally, the ability to create visualizations and dashboards can help users to quickly identify patterns and trends in the data and make data-driven decisions. The machine learning and statistical modeling capabilities of Splunk can also be a powerful tool for identifying patterns and anomalies in the data, which can be particularly useful for security and IT operations use cases., I find that certain features such as the initial setup and configuration process may be complex and time-consuming, especially for those who are new to the platform. Additionally, some users may find that the cost of the enterprise version of Splunk can be high and may not be feasible for smaller organizations with limited budgets. Some users may also find that certain features such as the machine learning and statistical modeling capabilities may require a significant amount of expertise and knowledge to effectively use.\n\nIt's worth noting that the complexity in the initial setup and configuration can be mitigated with the proper planning, training and resources. And the high cost of the enterprise version can be justified by the features it provides and the value it can bring to the organization, and the expertise and knowledge required for certain features can be acquired by training or hiring experts.\nEnterprise, G2.com, Verified User, nan, 5.0, It's reporting feature and I like the most. I have CPU and memeory utilisation based reports coming to me. This helps me to mitigate the potential performance issue on servers. As a result we have minimal outages impacting business., So far so good. Earlier we were using Netcool and had had replaced it with SPLUNK. The experience is awesome.\nEnterprise, G2.com, \nDhrumil P., Assistant Sales, 5.0, Its User Friendly for beginners to maintain and come with a Built-in case management system. Also gives a response very fast for any logs which come in Splunk. It makes integration very easy for other tools and technology., The license cost of the Enterprise is prohibitive because of the budget. So the startup organization can't afford the license. It also required a very steep learning Curve. And the tricky part is Automation.\nEnterprise, G2.com, Verified User, nan, 4.5, Splunk provides a detailed overview of notable events, web intelligence to prove web traffic in our network, automates event response, recommends proper remediation for alerts, and risk assessment with the help of risk score., All the functionalities are well designed, and SLA needs to improve some audit-compliance reporting parts to help remediation teams to remediate it properly. And also Licensing Costs.\nEnterprise, G2.com, Verified User, nan, 4.5, Splunk platform provides great insights on the back end calls and events that takes place when an application is submitted. The best part of Splunk is it has customization to various events., At times the values corresponding to the query does not reflect, this may be due to some Splunk platform being down. But it occurs at times and that could be resolved.\nEnterprise, G2.com, Verified User, nan, 5.0, Splunk can do a lot many things which free to use SIEM tools do nothave. It comes with ML/AL inbuilt and can also be used with different data sources by default., Splunk can do a lot many things which free to use SIEM tools do nothave. It comes with ML/AL inbuilt and can also be used with different data sources by default.\nEnterprise, G2.com, \nKathan P., SOC Analyst, 5.0, Easy to maintain and comes in-built case management system. Fast response for any logs which come into Splunk. Easy integration with major tools and technology., The licensing cost for the enterprise version can be costly and may not be over budget for startups. The navigation panel needs to be improve so that we can find details easily.\nEnterprise,", "doc_id": "5b9c6817-960a-4fbb-ada8-c91eaea375f9", "embedding": null, "doc_hash": "755c61df864046890ee6ba72fa5b6ec3dbfcdd56b4daa18affa238ecb8528d9a", "extra_info": null, "node_info": {"start": 89800, "end": 94039, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "5bd4e401-4e7b-4124-bba6-800f7b04c425", "3": "94bd416e-81de-4df9-9af5-eeec685ecf1c"}}, "__type__": "1"}, "94bd416e-81de-4df9-9af5-eeec685ecf1c": {"__data__": {"text": "navigation panel needs to be improve so that we can find details easily.\nEnterprise, G2.com, \nMeet S., SOC Analyst, 5.0, It's GUI very gives all the features the same as the backend as well. Also, love the case management feature as well., It is pretty costly. That's the only backdrop I see.\nEnterprise, G2.com, \nRavi P., SOC Analyst, 5.0, Splunk provides excellent service because we need to cover all the tools logs and give all the expected values also while analyzing records, it provides such an excellent service., Most probably not muck dislike, but sometimes it's taking much time for the given output of queries, but the whole scenario, it's a great product. Not another aversion from my end.\nEnterprise, G2.com, \nPramod P., Vice President, 5.0, I use Splunk every day to troubleshoot network-related issues and identify the root cause of the problems. Splunk is a great tool to correlate the event logs from multiple sources and get a deeper understanding of what is happening in your environment. Splunk is a powerful tool to visualize the events logs and highly customizable queries, get metrics and monitor any abnormality in your environment., Due to the scale of our environment, I have observed performance issues sometimes, queries are queued, and it takes time to return the query result.\nEnterprise, G2.com, Verified User, nan, 4.0, The Splunk tool is one of the most helpful tool for creating customise searching of big data from different system with correct logging and responses. Splunk is very efficient searching tool with different visualisation., I don't see any drawback expect the point that for some system is it able to display data for only 3 months or few months data. Apart from this cost is something which I would consider goes higer if we are accessing large data.\nEnterprise, G2.com, \nFilippo S., Multilingual Support Specialist, 5.0, Easy to create quick report and custom logs, The dashboard could be more streamlined and intuitive\nEnterprise, G2.com, \nVINAYAK J., Senior Network Engineer, 5.0, GUI is very easy to understand and configure.\n\nIt will not take more than 5mins to integrate with zscaler.\n\nWe can export the logs in pdf format which is very easy to read., Applying filters to search the logs because it is very difficult to apply the correct filter. Need some document for filters.\n\nEnterprise, G2.com, Verified User, nan, 5.0, Versatility and flexibility, a vast range of add-ons, great community and support, various options for different budgets, good integration options with various tools and vendors., Splunk is not easy to start up with and it requires good Linux and Systems skills. A very steep learning curve should be anticipated. Deployment automation can be hard or not possible at all.\nEnterprise, G2.com, \nNitish N., Software Engineering Analyst, 5.0, Splunk is the most effective but expensive tool for cybersecurity analysis, The one factor that I dislike in splunk is the pricing for the licence\nEnterprise, G2.com, \nPardeep K., Project Trainer, 5.0, Splunk Enterprise Security provides simplified threat management that facilitates quick threat detection and response and minimizes risk., Pricing gets a bit higher for large data volumes. The optimization of searches is more of an art than just science. Dashboard is a bit harsh as compared to tableau. It is continuously making attempts to replace it with open source alternatives.\nEnterprise, G2.com, Verified User, nan, 4.5, Fetching data & creating visualisation both in one application., There is nothing i dislike about splunk Enterprise\nEnterprise, G2.com, \nDayana P., Director, Digital Marketing, 4.5, It has an alert system that warns us in real time of any vulnerability in the system, any funnel or any error and in this way we can solve it quickly. It also allows the easy creation of custom work panels and customize the platform interface to work and have at hand, the tools we use the most., It can have a high learning curve, even for educated", "doc_id": "94bd416e-81de-4df9-9af5-eeec685ecf1c", "embedding": null, "doc_hash": "ea2430a61f147f0482bc2722557ada9a6542c73c2a90d592e5d371ba51cdd4fd", "extra_info": null, "node_info": {"start": 94025, "end": 98008, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "5b9c6817-960a-4fbb-ada8-c91eaea375f9", "3": "3b28057a-a366-494d-86cb-fb4ec55da5c2"}}, "__type__": "1"}, "3b28057a-a366-494d-86cb-fb4ec55da5c2": {"__data__": {"text": "the tools we use the most., It can have a high learning curve, even for educated employees, so time is required for training. I wish that some basic functions could work without the need for internet access, no doubt my work would be faster. From the installation of the software to its use, it is a long process, because to configure it is confusing and sometimes we need the help of technical staff.\nEnterprise, G2.com, Verified User, nan, 4.5, Splunk is easy to integrate with all other applications through agent and heavy forwarder., Need to build so many use cases for building so alerts.\nEnterprise, G2.com, Verified User, nan, 4.5, it is easy to integrate between splunk and Sophos threat Management system., Some queries for test cases should be there to help the implementation team.\nEnterprise, G2.com, Verified User, nan, 4.5, It's been quite some time since I started using Splunk and I must say it's really easy and convenient to use and clearly does its job. My company uses Splunk for log analysis and as per my experience, it's easy to get knowledge on most of the features. No hard training is required. Creating a dashboard requires some deep knowledge but once created it will be easier to understand logs. It is a really helpful tool for security analysis., Nothing much but yes, it is costly and it requires high memory uses from the system it's running on. Just because of this it is not preferred in small organizations.\nEnterprise, G2.com, Verified User, nan, 5.0, SPL is one and only, whatever you can imagine, you can do it with SPL, Data pipeline and conf files are still hard to understand if you have no enough knowledge.\nEnterprise, G2.com, Verified User, nan, 4.5, Splunk Enterprise it is very versatile and could be integrated with a number of systems. We have used Splunk Connector in Kubernetes environment with great success. It would collect and forward all logs with ease., You need to learn what structure of data Splunk expects and modify your ingest data to that model. You also need to learn about to your environment so you know to which index you will load your data.\nEnterprise, G2.com, \nJohn P., nan, 4.5, Splunk Enterprise can easily handle large amounts of data from different sources without giving much thought to data format and normalization. Access to the data is done quickly and easily, and you have various tools to customize and integrate data analysis workflows for custom dashboards or use apps from the other product partners., Splunk can be expensive for as license cost is based on size of ingested data. Regex skills may also be needed to be able to properly parse certain data, which can be quite a steep learning curve\nEnterprise, G2.com, Abdul S., Sr. Penetration Tester, 5.0, Splunk Enterprise is widely recognized as a powerful and versatile tool for collecting, analyzing, and visualizing large amounts of data. Some of the key features and benefits of Splunk Enterprise include its ability to handle complex and diverse data sources, perform real-time analysis and reporting, and provide a wide range of customization and integration options. Additionally, its user-friendly interface and scalability make it a popular choice among organizations of all sizes for their big data and log management needs., some common criticisms of Splunk Enterprise include its high cost, steep learning curve, and resource-intensive nature. Additionally, some users have reported performance issues and difficulties with scalability as their data volumes increase. However, these criticisms are subjective and may not apply to all users and use cases. To determine if Splunk Enterprise is the right fit for your needs, it is recommended to carefully evaluate your requirements and conduct thorough testing and evaluation.\nEnterprise, G2.com, \nKrishanu C., Security Analyst, 5.0, The best thing about splunk enterprise is its flexibility. It can be used to analyze data from a wide variety of sources. The User interface and design is easy to understand even for non-technical users to get started with. It's search capabilities allows me to find all the information I need quickly. Also it can easily be scaled up or down depending on organization needs. The security features such as access controls and data", "doc_id": "3b28057a-a366-494d-86cb-fb4ec55da5c2", "embedding": null, "doc_hash": "6782b93c0072bd8c3b39bbcd98a836f617436740f364f66c5cd463e2f57f8c3a", "extra_info": null, "node_info": {"start": 98016, "end": 102279, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "94bd416e-81de-4df9-9af5-eeec685ecf1c", "3": "84838ed9-c928-4a9e-acd8-8641b036fa23"}}, "__type__": "1"}, "84838ed9-c928-4a9e-acd8-8641b036fa23": {"__data__": {"text": "up or down depending on organization needs. The security features such as access controls and data encryption helps in securing sensitive data., There is no doubt that splunk enterprise is a great platform. However, the cost can be a barrier for smaller organizations. The learning curve is a bit steep and some users may take some time and effort to get up to speed with the platform. Also splunk enterprise can be a resource-intensive tool and might need significant computing power and storage capacity. This can be a concern for organizations that have limited resources or that are working with large datasets\nEnterprise, G2.com, \nNithin s., Application Development Analyst, 5.0, Splunk enterprise is an all in one tool for automation and log analysis. The ease of acquiring documentation and materials to contribute to your project is one of the main highlights!, I face slowness in solunk enterprise sometimes. I have encountered a few bugs like when a saved search didn't run on time. Also it's difficult to find a root cause of the problem by using internal logs.\nEnterprise, G2.com, \nAnjali O., nan, 5.0, Splunk is very good and efficient tools for monitoring purpose. We can add customs third party apps also to splunk that makes it more efficient. We can add customs alert and dashboard which is also cool., There is nothing in particular that I don't like about splunk but if we want to specific speak for something than having splunk on legacy architecture is more painful to handle and manage as an admin.\nEnterprise, G2.com, \nAmit M., Security Operation Center Team Lead, 5.0, First, Splunk is very intuitive to use. it is not complex, and the Splunk documentation and courses provide comprehensive explanations on how to best utilize the system. in addition, I like that it provides the option to seamlessly dump log files, honesntly i dont see downside in Splunk. We are also using QRadar and I must say that it is way better for data analysis.\nEnterprise, G2.com, Verified User, nan, 5.0, One of the most powerful and versatile features of Splunk Enterprise is its advanced search capabilities. This feature allows users to perform real-time and historical searches, as well as complex queries and analysis on large datasets. This enables users to quickly and easily find the information they need and gain valuable insights from their data. Additionally, the ability to create visualizations and dashboards can help users to quickly identify patterns and trends in the data and make data-driven decisions. The machine learning and statistical modeling capabilities of Splunk can also be a powerful tool for identifying patterns and anomalies in the data, which can be particularly useful for security and IT operations use cases., I find that certain features such as the initial setup and configuration process may be complex and time-consuming, especially for those who are new to the platform. Additionally, some users may find that the cost of the enterprise version of Splunk can be high and may not be feasible for smaller organizations with limited budgets. Some users may also find that certain features such as the machine learning and statistical modeling capabilities may require a significant amount of expertise and knowledge to effectively use.\n\nIt's worth noting that the complexity in the initial setup and configuration can be mitigated with the proper planning, training and resources. And the high cost of the enterprise version can be justified by the features it provides and the value it can bring to the organization, and the expertise and knowledge required for certain features can be acquired by training or hiring experts.\nEnterprise, G2.com, \nAmit M., Delivery Lead - Information Security, 4.5, Its a powerfull tool for any enterprise to rely on. Must say, the tool is very much user friendly,powerfull and easy to access.\n\nIts now a world leader dominating other tools., Nothing as such as of now but yes the UI could be a bit better then what it is now. Rest everything is good nothing to worry on.\n\nWhen you take it , feels like plug n play\nEnterprise, G2.com, \nAshish j., Senior Software Engineer, 4.5, Splunk is awesome big data tool to get data from any source and get insight from the raw data to deliver values to the business and security., It's premium apps", "doc_id": "84838ed9-c928-4a9e-acd8-8641b036fa23", "embedding": null, "doc_hash": "b0845aa5a47a4a63d8dd655577ed285f693b438616c36ad1f6ec8dc7039a0e37", "extra_info": null, "node_info": {"start": 102262, "end": 106577, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "3b28057a-a366-494d-86cb-fb4ec55da5c2", "3": "bc7a6092-63e8-4c2a-8f18-563f5472822b"}}, "__type__": "1"}, "bc7a6092-63e8-4c2a-8f18-563f5472822b": {"__data__": {"text": "from the raw data to deliver values to the business and security., It's premium apps trainings are expensive.\nEnterprise, G2.com, \nMunkhbaatar T., System Engineer, 4.0, Easy to use and most powerful system in logging, License cost is expensive. Daily log limit is so small for business\nEnterprise, G2.com, Verified User\t\t, nan, 5.0, It easily convert the big data into visualisations which are very helpful for the leaderships to get to know about their business approaches towards the goals.., It needs to include more add-on apps which are easy to integrate with all platforms irrespective of their operations like small or big solutions. Splunk also should give more options for data onboarding.\nEnterprise, G2.com, \nDhrumil P., Assistant Sales, 5.0, Its User Friendly for beginners to maintain and come with a Built-in case management system. Also gives a response very fast for any logs which come in Splunk. It makes integration very easy for other tools and technology., The license cost of the Enterprise is prohibitive because of the budget. So the startup organization can't afford the license. It also required a very steep learning Curve. And the tricky part is Automation.\nEnterprise, G2.com, \nManraj T., nan, 4.5, Good data analytics with the advanced parser and correlation engine. Very easy to customize, and visualization is also fantastic. Good reporting templates and log sources integration is excellent., Very hard to understand the Architecture at the beginning of solution deployment. Querying data is also needs programming skills, need to add more custom correlation rules.\nEnterprise, G2.com, \nMariano R., Project Manager Team Lead, 4.5, Splunk is a realy easy tool to adopt in the organization. We reach expose a great reports in a few time, The configuration to connect diferents sources may be more user frendly.\nEnterprise, G2.com, \nRushi M., Android Developer, 4.5, Splunk Enterprise is one of the best analytics tools that I have used. Below are the key features of Splunk:\n\n- It provides the best visualization of the data.\n\n- The indexing of data is so easy.\n\n- The data can be collected from multiple sources quickly.\n\n- Alerts are the best\n\n- One can easily schedule the savedsearches\n\n- The search feature is straightforward to use.\n\n- The UI is so easy that any naive user can efficiently operate.\n\n- One can easily find out the security threat using Splunk\n\n- The documentation, The pricing of Splunk is a little high. Except costing there are no complaints from my side.\nEnterprise, G2.com, \nVerified User, nan, 4.5, Fetching data & creating visualisation both in one application., There is nothing i dislike about splunk Enterprise\nEnterprise, G2.com, \nHimanshu S., QA Architect, 5.0, Love the filter capability for logs and possibility of complex logic filters\n\nSpeed of response for search is pretty great even with days worth of logs\n\nGraph generation ability is a life saver for performance feedback and recurring issues, Complicated to get started on for a new user\n\nWould have appreciated more UI features to get results than having to do filter manually\n\nThe response could have been more easy to read for non tech users\nEnterprise, G2.com, \nRizwan K., Assistant Consultant, 3.5, Splunk is very good data analysing tool, on which we can work on comex queries in very easy way, Compare to other Bi tools, splunk lack in Visualization\nEnterprise, G2.com, \nVerified User, nan, 4.5, The possibility of creating fast parsing rules on custom logs and start analyze the data as soon as possible in a friendly and easy-to-use graphic user interface., Even if Splunk is a very powerful tool, it comes at a pretty bitter cost. If there is not enough budget, this is not a platform that you'll look after. There are a few open source solutions that can accommodate simple use-cases using less money.\nEnterprise, G2.com, Verified User ,", "doc_id": "bc7a6092-63e8-4c2a-8f18-563f5472822b", "embedding": null, "doc_hash": "eb5c01329b842b408a649f71e1fb2c47d7a13d88087660f3dfbaf836a15dd1c2", "extra_info": null, "node_info": {"start": 106591, "end": 110463, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "84838ed9-c928-4a9e-acd8-8641b036fa23", "3": "922bc878-0201-49ea-b751-5b4fde16bb6d"}}, "__type__": "1"}, "922bc878-0201-49ea-b751-5b4fde16bb6d": {"__data__": {"text": "use-cases using less money.\nEnterprise, G2.com, Verified User , nan, 2.5, VPN security.\n\nAbility to handle large data sets.\n\nFor end users accessing data, simple learning curve.\n\nConfigurability of data and reporting - There's plenty of options.\n\nSSO for ease of access.\n\nAbility to consume a variety of end points., Data visualisation looks clunky. It's not a modern UI.\n\nOn our Enterprise version, the data is bulk loaded every 24 hours and it takes a considerable amount of time to load.\n\nLoading reports can be a little slow but providing you don't mind waiting a good few seconds,it's not a big issue (just used to instantaneous data) - Likely hardware as well as software contributing.\nEnterprise, G2.com, \nDempsey W., Principal Software Developer, 5.0, We use Splunk to track transactions that flow through a dozen different service-based systems. Splunk allows us to follow the flow of these transactions and see the \"trail\" they follow as they pass through the various systems. Being able to aggregate and cross-reference data from all of our systems has been invaluable while troubleshooting problems in our systems., Having cost based on the size of the index of data is the only thing that I don't like.\nEnterprise, G2.com, \nSukanya M., Development Assistant, 5.0, SPL is the easiest language we have ever seen. Data processing is very fast to create all the glass table dashboards. Splunk machine language toolkit and ITSI brings a lot of value to the landscape for the system., The navigation menu is not designed to customize as per the organization. There is no option found to change the look and feel of the application as per the organization's internal standardization.\nEnterprise, G2.com, \nVikas K., SAP BASIS, HANA and BTP Consultant, 5.0, We can use Artificial intelligence and Machine learning capabilities using Splunk Enterprise and optimize the way of doing business. Also, Splunk Enterprise is used for alerting in case of any failover or space issue in servers., I do not see anything which I dislike about Splunk. However, we can have to alert and fix automation within Splunk itself. This would ultimately minimize the turnaround time to act on issues.\nEnterprise, G2.com, \nSANTOSH M., Senior System Engineer, 5.0, Leading industry monitoring tool for performance,data analysis,data integration , Application sensors, custom application.\n\nVirtual machines , hyper version and for cloud services., Worth using it and everything is upto the expectations.\n\nGood to have product for IT industry\n\nNeed little UI improvements and on-time patches.\n\nApart from these no Dislikes.\nEnterprise, G2.com, Verified User , nan, 4.5, it is easy to integrate between splunk and Sophos threat Management system., Some queries for test cases should be there to help the implementation team.\nEnterprise, G2.com, Verified User , nan, 1.0, Analytics engine, functionality and Dashboards., Price increase move to cloud, support flexibility.\nEnterprise, G2.com, Verified User , nan, 4.5, Splunk is easy to integrate with all other applications through agent and heavy forwarder., Need to build so many use cases for building so alerts.\nEnterprise, G2.com, \nAjay K., Lead IT Engineer, 4.5, Flexible SPL\n\nData onboarding from any source\n\nSplunk apps\n\nData analytics\n\nHigh availability, High splunk license costs\n\nHigh resources requirements\nEnterprise, G2.com, \nAditya J., Security Delivery Analyst - Identity and Access Management, 4.0, This is best tool to search, monitor the system generated data. It actually visualise the data generated every moments. It helps us to monitor the data just by seeing logs in proper categorised manner.\n\nThe best part I like about Splunk is, it is best searching tool. In my current project, we use splunk the analyse the daily logs with different categories according to the requirements.\n\nIt helps us in troubleshooting the issue which requires data to analyse in quick and simplified way.\n\nI", "doc_id": "922bc878-0201-49ea-b751-5b4fde16bb6d", "embedding": null, "doc_hash": "95fdf5afbcd46816187252abb65c0456dd2d1635c8a193d21e2c25df3f3b31a3", "extra_info": null, "node_info": {"start": 110478, "end": 114414, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "bc7a6092-63e8-4c2a-8f18-563f5472822b", "3": "5f6282df-c993-4ad6-ab4e-cc53ae5c1557"}}, "__type__": "1"}, "5f6282df-c993-4ad6-ab4e-cc53ae5c1557": {"__data__": {"text": "the issue which requires data to analyse in quick and simplified way.\n\nI mainly use this tool as log analysis and as expected it helps me very much to troubleshoot the issue., In my current organization, as per the configuration we have, I am not able to find the error logs requested on reverse proxy servers.\n\nHere in the project, we are having more than 300 servers and all the monitored and analysed by splunk only but few days ago, while troubleshooting session, I was not able to get the error logs observed on reverse proxy we have.\nEnterprise, G2.com, Verified User , nan, 4.5, reporting based upon Autopilot generated events., The inability to easily share splunk data with other tools.\nEnterprise, G2.com, \nShadab K., Lead Staff Engineer, 4.5, The best part of Splunk is also one of its key features, which is logs aggregation. You can easily aggregate your logs from multiple environments ( PROD/TEST/QA ) and find them all in one place. Also, the availability of your files in the cloud makes it even more promising due to ease of access. The ability to create custom dashboards for monitoring purposes is also a very useful feature., Sometimes, you get random errors while performing a key-value search, but that is not a show stopper. They may happen due to network or proxy errors and do not occur very frequently.\nEnterprise, G2.com, \nsarang v., Technology Architect, 5.0, Splunk's ability to monitor real-time events that happened in the logs provides users with effective monitoring, debugging, issue resolutions, event tracking, dashboard monitoring, automated jobs, and effective GUI manipulation. This ability makes Splunk the most effective monitoring tool across all the operating systems.\n\nOne can effectively use Splunk for the auditing of the data., The integration method is tricky and gives output with delays when searching for extensive data, making its user experience a little disappointing.\nEnterprise, G2.com, Verified User, nan, 3.0, SPLUNK was a nice data analytic tool till the advanced SOAR function tools emerged in the market., Lacks advanced SOAR function. Not pocket friendly as other SAS products are eg Sentinel.\nEnterprise, G2.com, Verified User, nan, 5.0, Very in-depth and informative. dashboards are easy to read and understand, No dislikes so far. it has been everything we were looking for in log aggregation\nEnterprise, G2.com, \nMubeen A., SOC - Security Engineering Lead, 5.0, Architecture, Implementation, Ease of use, features, support and user interface, I dislike the most pricing since it is a very expensive product. Also, the trainings and certifications related to the product are expensive as well.\nEnterprise, G2.com, \nArup Kumar P., Software Engineer II\n, 4.5, The logs can be categorised based on the attributes for fine-tuning the issue encountered. The logs can also be filtered based on the timeframe, not only within the same day but across a wide variety of dates within 30 days., As it loads data from the logs in real-time, the application becomes really slow. As the data is being linked directly fro the database and the local caching is not possible for this enormous amount of data, the user sometimes gets very confused whether the data is being fetched or the API failed, if a timely intimation or loader is placed in the front then it would have been really insightful.\nEnterprise, G2.com, Verified User, nan, 5.0, Onc splunk is set up with your company's data, it makes diagnosing and tracking problems and progress extremely easy. Reports, Alerts and Dashboards make learning from data easy. I was able to start using splunk my first week and have continued learning more all the time. I honestly have gotten to the point where I am convinced splunk can do anything- it's just up to me to figure it out. And the online splunk forums have always had enough examples and explana, It sometimes takes some exploring to find what you are looking for if your company has multiple splunk apps and you want to use more advanced features like", "doc_id": "5f6282df-c993-4ad6-ab4e-cc53ae5c1557", "embedding": null, "doc_hash": "544b0206eb9e3efcb7e006886c6a1c6c6e8f12cfffdc25b203625670f8d7d909", "extra_info": null, "node_info": {"start": 114410, "end": 118423, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "922bc878-0201-49ea-b751-5b4fde16bb6d", "3": "0294ad83-fd66-4219-9f09-778575cf809c"}}, "__type__": "1"}, "0294ad83-fd66-4219-9f09-778575cf809c": {"__data__": {"text": "looking for if your company has multiple splunk apps and you want to use more advanced features like lookups.\nEnterprise, G2.com, Verified User, nan, 4.0, splunk has great user interface and easy to understand documentation for implementing cluster level data sources and monitoring then in form of triggered events and it has great visulaization option to create real time and timely evet based reports, while most of the features are impressive, they can concentrate on ease of logic building in next releases\nEnterprise, G2.com, Verified User, nan, 5.0, Easy to use for non-technical users but powerful for security and operations. There are add-ons / apps for everything you could need., Managing add-ons and getting the right data in can be difficult and time consuming. Sometimes the documentation is a little vague.\nEnterprise, G2.com, Verified User, nan, 2.5, Splunk is a truly self-service platform for ingesting many disparate data sources and performs very well in benchmark tests against its competitors. The ui is high quality and easy to use, There are certain functionalities that don't come out of the box and require additional licensing if you truly want to get the best use of the tool. This process could be more transparent\nEnterprise, G2.com, Verified User, nan, 4.5, Splunk is an enterprise performance monitoring tool to analyze the system logs. The best part of it is to give the detailed description of errs/exceptions from logs, Connecting to Splunk from the other tools is a bit complex though it monitors the whole enterprise wide app logs.\nEnterprise, G2.com, \nMatthew C., Senior QA Engineer, 5.0, It is designed for cloud-native enterprise. It enhances performance by viewing everything in the application and act on artificial intelligence-driven analytics. It collects traces and monitors apps. It gathers and analyses spans and provides fidelity. It allows you to analyze app performance along every dimension. It assists you to solve modern problems as it determines an issue before it transforms into a consumer problem. It minimizes MTTR with artificial intelligence-driven directed troubleshooting to speedily understand the root-cause error mapping and service dependencies., It can be complex when it is integrated with other tools. So, it is not best suited for large systems. It takes too much time to show the homepage and load significant features. I think there are some bugs that slow down the loading of features. Also, it is pretty expensive. The time and date editing range are somehow troublesome. The user interface is not much customizable as it is very tough to customize the design component.\nEnterprise, G2.com, Verified User, nan, 4.0, Ability to create custom dashboards.\n\nRun queries on historic data\n\nGreat monitoring tool, There is nothing in particular that I dislike about it for what its meant to do. I do understand no single tool can be a silver bullet\nEnterprise, G2.com, Verified User, nan, 5.0, Only platform to bring any data in any format without caring about structure of data and ability to do anything with it, Splunk TA for stream still have known issues with reoccur again and again\nEnterprise, G2.com, \nNate S., Software Engineer, 4.0, Makes it easy to gain insights from large volumes of log data., Query language can be complex and unintuitive, specifically when it comes to properly quoting strings\nEnterprise, G2.com, \nmugdha j., Student, 4.5, It is an out of world experience to get logs using splunk. One would never understand how Splunk makes troubleshooting so easy. It makes understanding the architecture really easy., Sometimes some queries can take some time to run in different modes but it still provides a very efficient result for any scenario.\nEnterprise, G2.com, \nIgor G., Security Engineer, 5.0, Possibility to correlate events and logs, custom dashboards available., Not easy to develop custom apps for ES, more documentation will help\nEnterprise, G2.com, Verified User, nan, 4.0, We use Splunk to screen our framework including DHCP, DNS and organization-wide occasions. Quite possibly the main thing for", "doc_id": "0294ad83-fd66-4219-9f09-778575cf809c", "embedding": null, "doc_hash": "db0be8266af2ca4fe7491836cde6d9da7460b82b376217756156ac6780f27f5a", "extra_info": null, "node_info": {"start": 118402, "end": 122504, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "5f6282df-c993-4ad6-ab4e-cc53ae5c1557", "3": "abb2f36a-947c-41fa-85ef-2275497140fe"}}, "__type__": "1"}, "abb2f36a-947c-41fa-85ef-2275497140fe": {"__data__": {"text": "including DHCP, DNS and organization-wide occasions. Quite possibly the main thing for us on schedule to utilize this instrument is the opportunity to screen the whole framework searching for logs and occasions in the applications or the infra. Additionally, In Splunk, we make our say to day occasions reports and pre-characterized order to synopsis and examination information. An incredible component is that you can make a config on Splunk notice rule to send quickly aware of all the group when a basic occasion shows up., Cloud adoption and cloud enhancement need innovation.\nEnterprise, G2.com, Verified User, nan, 4.5, We use this across our different departments for security, host monitoring, data intelligence, vulnerability and threat actor collections, correlation, alerting and much more., The biggest complaint I hear is 2-fold: It's expensive and it's hard to learn. Both of these are true, but opposed to some competitors, this is just more baked and better. The cost can be justified and it's a leader in various vendor rubrics.\nEnterprise, G2.com, \nSWAPNIL T., SQL and dotnet Developer, 4.0, The best part of this tool is this supports the log monitoring on the multiple OS platform and provides the alerting on the basis of the log information which helps organization to check multiple anomalies happen in the systems.\n\nAlso this tool is greatly support the next generation tool and cloud concept its really impressive to continue monitoring on the authentication and many more aspects., As this tool is work on the log file and use it for automation and alerting the storage of this log files make more burden on the organization costing and maintaining also makes difficult.\nEnterprise, G2.com, \nVerified User, nan, 3.0, The easy-to-use interface and the community support. The product documentation is good, and therefore the learning curve is not too steep, For a simple log query, the solution needs you to write a few lines of query. Smart query suggestions would be welcome\nEnterprise, G2.com, \nFrancisco M., Software Engineer, 5.0, The ability to use XML to create and style your own dashboards., To get the most out of the app a lot of people with different skill sets need to be involved and with the same goal in mind, for example, the observability engineers are the ones in charge of the maintenance and setup of the Splunk platform and data, while the backend engineers are the ones that implement the logs caught by Splunk. The frontend engineers need to look into the available logs and see what information from there is useful to create a dashboard that can be used for ourselves or for the product owners.\nEnterprise, G2.com, Verified User, nan, 4.0, Splunk is very robust with being able to search network traffic, create dashboards and automate reports and alerts. It allows users and admins to solve many problems. Our company has created several alerts for when people on the network download any files that look like they could be a virus, or if they are using illegal software, or trying to login with wrong passwords constantly., There is a large learning curve to being able to use Splunk and be able to understand what the data you're looking at filter through it all to find what you need. It's very good if you know what you're doing, which there is documentation for, but if you don't have lots of networking experience and knowledge it's easy to be lost and overwhelmed.\nEnterprise, G2.com, Verified User, nan, 3.5, Super easy to write powerful queries to find the right data., The queries can sometimes become hard to comprehend when they are longer.\nEnterprise, G2.com, Verified User, nan, 4.5, The ease of splunk queries to extract reports out of logs, Splunk can be little slower in extracting reports of the data is huge\nEnterprise, G2.com, Verified User, nan, 4.0, its easy to install\n\nits work on windows and ios\n\nits searching is fast, its difficult to learn spl\n\nits require high computational power devices\n\ncourse fees is too high\nEnterprise, G2.com, \nMubasshir Ali R., Mid-Market, 5.0, Splunk makes", "doc_id": "abb2f36a-947c-41fa-85ef-2275497140fe", "embedding": null, "doc_hash": "ee840677343636c5902048cfe79f91c25ff6b879661aeb29840aa56cff5022c1", "extra_info": null, "node_info": {"start": 122513, "end": 126576, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "0294ad83-fd66-4219-9f09-778575cf809c", "3": "905ad1ac-118c-467b-8a79-3df2be677e83"}}, "__type__": "1"}, "905ad1ac-118c-467b-8a79-3df2be677e83": {"__data__": {"text": "\nMubasshir Ali R., Mid-Market, 5.0, Splunk makes it easier to search through various data including logs. I was used to fetch the details through logs in order to find the one lines among the 100 of thousands of lines. Now it become as easy as ABC also the infrastructure monitoring is cool. We have integrated this with Slack to get the alerts real-time., It has its own SPL, if they enable SQL too so that it will be heaven for the tech guys.\nEnterprise, G2.com, \nVerified User, nan, 5.0, Splunk's power to extract meaning from machine data is unparalleled., If I could add something to Splunk it would be more visualizations or integration with something like R.\nEnterprise, G2.com, \nRashmi K., Senior Consultant, 3.5, Debugging becomes easier with all data logged in splunk and various search / indexing options, You need to write queries for most of searches\nEnterprise, G2.com, \nSumanjit R., Assistant Consultant, 5.0, The easy integration. just include Splunk libraries in your code, use the methods/functions to log and you are good. Dash-boarding is easy too., It does not have the capability to take action on thresholds.\nEnterprise, G2.com, Verified User , nan, 4.5, This is a needed application for the IT organization to manage their infrastructure which consist of physical computer devices, web servers (cloud), sensors, etc. Manage means, centralized monitoring and analyzing. In the past we used Splunk for only log monitoring and log analyzing (syslog server). But, what we are seeing is more advance and it is with the SIEM capabilities. It now have real-time visibility, advanced dashboards, analyze any kind of data, advance filtering, flexible GUI in configuration & maintenance, and AI & Machine Learning for threat prediction.\n\nFinally, it is very user friendly. We can modify the dashboard, log search queries, filters, alert/alarm rule, threat filters, and configure with multiple devices easier and quickly., nan\nEnterprise, G2.com, Verified User , nan, 5.0, you can have dashboards and alerts with minimal effort, regex to support globs should be there..\nEnterprise, G2.com, Verified User , nan, 4.5, It is the best tool to analyze the logs based on different charts and visual graphs. It has good plugins to help with security and auditing. I have created multiple dashboard and customized alerts to monitor system health. It has great integrations with slack and emails to trigger alerts and notifications., As we have big infrastructure and a lot of logs gets consumed in splunk on daily basis, the user interface becomes slow for query search results. Splunk query builder needs technical knowledge beforehand otherwise understanding error message for a non technical person is a challenge.\nEnterprise, G2.com, \nMaya P., Fraud Portfolio Manager, 4.0, I enjoyed that Splunk had all details for transactions; i.e. time, date, processor, exp date, PII, how & where the transaction was processed, device ID, etc. It also shows the initially authorized dollar amount of the transaction and if it was captured for a different amount., Splunk can be very complicated to navigate and use for identifying a particular transaction. I often had to ask someone for assistance when attempting to search for something in particular or to understand fully what I was reading. There's definitely an overload of data and you can get lost looking for one or a few transactions.\nEnterprise, G2.com, \nNiti P., Voice and Video Engineer, 3.0, The cloud splunk is easy to use and data storage is amazing.This is the biggest advantage of the product., Inspite of being an amazing giant for data capturing and analysis, I dislike its capability to support IPv6 only infrastructure. Also they have no roadmap yet to go towards supporting it. SO this is the biggest limitation of the product as far as I am converned.\nEnterprise, G2.com, \nShilpi A., Senior Software Engineer, 4.5, Splunk Enterprise provides the best analytics of the", "doc_id": "905ad1ac-118c-467b-8a79-3df2be677e83", "embedding": null, "doc_hash": "ee50c92a72d96c75ca953461207de17ba19bed470f9c97aca2c697970bac4244", "extra_info": null, "node_info": {"start": 126610, "end": 130548, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "abb2f36a-947c-41fa-85ef-2275497140fe", "3": "bee4eada-eeec-40eb-bda2-271f40acfaba"}}, "__type__": "1"}, "bee4eada-eeec-40eb-bda2-271f40acfaba": {"__data__": {"text": "Software Engineer, 4.5, Splunk Enterprise provides the best analytics of the log. The best feature of Splunk are as follow:\n\n- It provides the best visualization of data.\n\n- ANy new user can easily onborad. The UI is very simple to learn.\n\n- The Splunk provides the various support to the product likes the Salesforce, ServiceNow and Cisco.\n\n- For all the above product there are apps and add-on created, so that one can easily visualize the data.\n\n- Splunk documentation is very descriptive and easy to understand.\n\n- One can ask the question in splunk answer.\n\n- The help community is very active and always ready to help.\n\n- The Splunk provides the best charts and dashboard., Splunk Enterprise provides the best feature of data analytics. The Splunk can improve their app formation as sometimes the app takes so much of memory of computer.\nEnterprise, G2.com, \nVerified User, nan, 5.0, functionality and customization, splunk allows expert (admin) used to edit the functionality and customize the instance as per any clients requirements, should work more on providing ready add-ons for the not soo common security appliances\nEnterprise, G2.com, \nArjun P., Systems Engineer, 4.5, Splunk tool really helps in debugging issues easily and it provides a great platform for analysis.\n\n1. Easy to use queries.\n\n2.Easy to access historical data\n\n3. Easy to setup.\n\n4.provides app specific details\n\n5.easy to analysis the whole statistics of the data.\n\n6. Good visualization box integration., NA. Never faced any issue or dissatisfaction while using the application.\n\nThe whole application can be made responsive and optimal so that users need not wait to get the response of one query.\nEnterprise, G2.com, \nVerified User, nan, 5.0, We like the splunk dashboard and quick searching of logs. Faster indexing and searching of logs., The UI is dated and needs to be refreshed with new features for dashboard etc.\nEnterprise, G2.com, \nNainika S., Software Engineer\n, 4.5, Splunk has many features since I'm using it as its very useful while accessing analytics report of specified time period for specific type of pattern which insists in your server log. Very useful while extracting request and response log in block of XML's. There are still lot's of thing which can't be explained in such few words but I would suggest if you use it for once then you will forget everything., Ah, Really is there anything which you don't like? from my perspective simply NO. I appreciate hard work of Splunk team memers for the awesome interface and design pattern for getting your requirement fulfilled.\nEnterprise, G2.com, \nVerified User, nan, 4.5, I loved this tool for log extraction directly from the server and those shortcuts which is used to filter servers logs are very useful. Easy to get all the information at one place only like host, server name, source , folder , path information etc in just a single click., Copy mechanism is not that much good because if you copy one block of log first it takes very time and fluctuate the screen so I didn't feel very good while copying logs directly from splunk.\nEnterprise, G2.com, \nashish s., Consultant, 4.5, the ease of use and coverage of the tool, initial setup had some challenges but with professional help we found some quick solutions\nEnterprise, G2.com, \nSourav S., Network Consulting Engineer, 4.0, The scalability and ease of deployment. it supports almost all hardware., There are few bugs in integration environment.\nEnterprise, G2.com, \nJoe L., Cyber Security Deputy Manager / Cyber Engineer, 3.5, Splunk offers a high level of granular detail whilst searching through event logs, The presentation of the information can be daunting upon first sight.\nEnterprise, G2.com, \nVerified User, nan, 4.5, Splunk is a great tool for data analysis and mainly log monitoring.\n\nYou can ingest a very high amount of raw data in it and is does it very", "doc_id": "bee4eada-eeec-40eb-bda2-271f40acfaba", "embedding": null, "doc_hash": "536c42fe6009b44d6d7ab84a8564dc70f09166f790c58bc3f85c35419f566632", "extra_info": null, "node_info": {"start": 130525, "end": 134411, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "905ad1ac-118c-467b-8a79-3df2be677e83", "3": "8ccaa11a-a6f6-4e1d-ac0a-8591143a2432"}}, "__type__": "1"}, "8ccaa11a-a6f6-4e1d-ac0a-8591143a2432": {"__data__": {"text": "can ingest a very high amount of raw data in it and is does it very quickly and then you can have search in data using their query language.\n\nSplunk is very rich in terms of documentation which really makes you going easy.\n\nThey offer a trial version to everyone and to developer they provide free license for sometime that is a great thing., There used to be a lot of bugs in Splunk in it's initial years but it has become stable over time with version upgrades. So, no big dislike from me.\nEnterprise, G2.com, \nVerified User, nan, 3.5, Splunk is a good tool to create dashboards and measure application level performance including both Application, Network and Database layer, I found it provides limited or sometimes information thats either not required or not make much sense. May be as user, we need more training to understand it.\nEnterprise, G2.com, \nAndrew d., Data Scientist, 4.5, I like that Splunk enables users to easily tell stories with their data. They have democratized a space that was once occupied by those who knew how to code., I like that Splunk enables users to easily tell stories with their data. They have democratized a space that was once occupied by those who knew how to code.\nEnterprise, G2.com, \nLatika M., nan, 4.0, The best thing i like about splunk is the wide range of apps and addons available for the platform, the apps range for a wide range of soutions starting from AWS, salesforce, vmware, tenable etc. also the extensive complexity of the features provided by these Splunk apps are very useful for enterprise users., I wish it would provide a more stable and prominent mobile based solution for users who analyze the data on the move.\nEnterprise, G2.com, Verified User, nan, 5.0, It's way for searching the logs based on the multiple parameters and showing items in the left hand side, which enables us to add in the search query by just one click., Writing queries is bit complex. If a UI can be provided for that, it would be great and then additional feature or clauses can be added in the search index.\nEnterprise, G2.com, Verified User, nan, 5.0, Splunk is very simple to understand. Splunk provides functionalities like Data collection, normalization, visualization and alerting. I like all the functionalities because all are very simple to understand and are tightly bound with the Splunk Enterprise. I also liked the feature of adaptive response with Splunk ES. I also loved the data model functionality to provide a hierarchical data structure and retrieve the data faster., The data cleaning process in Splunk has very limited scope. You have to remove the whole data from Splunk. It will not provide you the control to remove data for a particular source type. I also disliked some of the charts which are not interactive and it has some limitation to plot ticks on the chart. Pricing is also very high compared to others.\nEnterprise, G2.com, Verified User, nan, 5.0, I see alerts of unauthorised logins along with IP. Also the best thing is I can keep track of tasks or any transaction made by employees. Each and every action performed nos logged as we have configured splunk agents on our systems., The complex structure of queries . To search for any transaction or call to webservice we will have to enter query which I feel is complex sometimes.\nEnterprise, G2.com, Verified User, nan, 5.0, the ease with which logs are accessed and read to gain valuable insights. interactive charts and bars provides good visual experience. Splunk DB connect is also one of the good feature . splunk email alerts is life saver, Hard to create index on network path. it is difficult to clear cache once the dashboard is loaded. splunk dashboard needs to be refreshed by closing out all the sessions\nEnterprise, G2.com, \nHannah O., Pharmacist, 3.5, Its easy to use, pretty self explanatory, No complaints, it does what our institution needs it for.\nEnterprise, G2.com, Verified User , nan, 4.0, Splunk is really helpful for business monitoring different aspects of your business. It also can used for data analytics which is important", "doc_id": "8ccaa11a-a6f6-4e1d-ac0a-8591143a2432", "embedding": null, "doc_hash": "58777cb35c43639ffad6960af040712ce76a5f7ec26316efbf6f1d5c2ff09d46", "extra_info": null, "node_info": {"start": 134426, "end": 138505, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "bee4eada-eeec-40eb-bda2-271f40acfaba", "3": "37038a26-361a-4824-b412-45da3a50aa13"}}, "__type__": "1"}, "37038a26-361a-4824-b412-45da3a50aa13": {"__data__": {"text": "monitoring different aspects of your business. It also can used for data analytics which is important when making decisions that can affect the organization., Splunk can sometimes be a bit clunky. There are slow response times and getting access to use the cloud based site can sometimes be difficult.\nEnterprise, G2.com, \nAbhishek R., Software developer, 3.5, While writing queries you refine and build the searches is very helpful. Creating dashboard and graphical representation is easy.Creating Alerts and and setting intervals/cron schedule is quick. extraxting fields using auto regex is very helpful.Saved searches sharing in a secure manner. Sharing them in read-only formats like PDFs using database connection. Exporting data into XML and JSON format is what i uses while transferring or upload into a different infrastructure/system., Sometimes its very slow, not sure may be due to large amount of data .\n\nWhile query is very big we should have a separate editor in place writing in query editor.\n\nSome time fetching specific fields using extract field feature may not give what you need.\n\nSometime searches take little extra time to understand, mainly regular expressions and to new users.\n\nWould be nice if data compression of data stored on disk can be optimized.\nEnterprise, G2.com, Marty B., Network Security Engineer, 4.0, Splunk is a great tool, and allows you to do a full search of whatever you would like to find in any log., Ease of use\n\nTakes lots of training to be fully prepared\n\nNot user friendly at times\nEnterprise, G2.com, Verified User, nan, 4.0, Splunk is a great tool to monitor the logs.\n\nEasy to deploy\n\nGood documentation and support.\n\nHelps to identify performance related issues., None but would definitely help if it has additional features\nEnterprise, G2.com, \nLuca C., Senior Betting & Online DB Administrator, 4.0, One of the most common problems when working in medium or large companies is to be able to analyze certain types of cases and certain problems occurred in a given period, however, without knowing what was causing the problem because certain items and factors may be manifold due to the use of different technologies involved simultaneously on the same subject or on the same transaction.\n\nInside a complex infrastructure is not easy to analyze which single component (for example, application, database, server, network device, etc..) was the cause of a problem often it requires analysis by different departments, thanks to the use of Splunk the control management and the analysis of the issues is centralized in one software.\n\nThe analysis are facilitated through the use of various detailed dashboards.\n\nVery convenient are the automatic alerts and triggers., The cost of the product is high.\n\nThe usability for novice users is not really easy, but reading a little bit of documentation and studying a bit the syntax of the search the user is able to do a lot of query.\nEnterprise, G2.com, \nVerified User, nan, 5.0, Splunk has been paramount in us gaining information from our log data, it has the ability to very quickly parse and understand the data. Once you parse the log data creating visualizations is easy and they can be grouped into dashboards which is quite convenient.\n\nFor us this brings the following business benefits:\n\n- We can quickly and easily see/get alerted of any issues in our running system\n\n- Stakeholders can see the performance and usage of a given system.\n\n- Developers can monitor a system and gain insights which drive optimization., Learning the Splunk query language takes some time. It is powerful and relatively intuitive but there is definitely a learning curve there. In the past, there were a few cases where we had issues with duplicated log data, figuring out why and removing it was quite the effort.\nEnterprise, G2.com, \nVerified User, nan, 5.0, Splunk is very easy easy to use. just needs a query and since the data ic connected to server, it automatically pulls up the data and generate the report based on the requirement. different type of visualizations like pie chart, bar graph, etc can be used., Eventhough the spunk query language is simple however we need to learn a new language. Splunk does charge a pretty", "doc_id": "37038a26-361a-4824-b412-45da3a50aa13", "embedding": null, "doc_hash": "f6d93dcf36d07bb1baf418d7d76c433e21445f431b05831f8a7fd73bf23c6ef5", "extra_info": null, "node_info": {"start": 138472, "end": 142691, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "8ccaa11a-a6f6-4e1d-ac0a-8591143a2432", "3": "63f92bda-3680-476a-89b7-240dad4835c4"}}, "__type__": "1"}, "63f92bda-3680-476a-89b7-240dad4835c4": {"__data__": {"text": "query language is simple however we need to learn a new language. Splunk does charge a pretty penny for the higher levels of certification. But the cost paid to value earned is totally worth the cost of certifications needed.\nEnterprise, G2.com, \nVerified User, nan, 4.5, The ability to create and supplement source types for the data you care about. You don't have to spend hours digging through logs. You can just pull out key fields and use them as key values to report on., If I had to choose something that I dislike about Splunk it would be that I think it needs more easy to create dashboards.\nEnterprise, G2.com, \nVerified User, nan, 4.0, The way it shows the result of inventory is very helpful and helps in doing the forecasting, Not as of now. It is fulfilling all the requirements\nEnterprise, G2.com, \nVerified User, nan, 5.0, Ability to create custom dashboards and reports, Integration capability with limited number of vendors\nEnterprise, G2.com, \nVerified User, nan, 4.5, Data Analytic Dashboard, Filter Criteria for Raw Data, Data Metrics , Usage. Website monitoring and Log tracking. Generate Graphical view for presentation, Filter Data usage and best way to monitor website internally and externally., need to prepare query expression to filter data, required admin knowledge to configure tool. No readymade criteria available to avoid misleading filter criteria. No way to download representation in PPT format.\nEnterprise, G2.com, \nPrasad C., Senior Advisory Software Engineer\n, 4.5, ad-hoc analysis of logs coming from distributed application., cost is very high, there are different licences available we choose SaaS which is expensive.\nEnterprise, G2.com, \nNicholas N., IT lead, 5.0, I like how in depth splunk gets. The splunk enterprise model that we use is integrated into a reporting system that is then sent out to employees to keep track of data., I do not have any dislikes in relation to splunk usage.\nEnterprise, G2.com, Verified User, nan, 4.0, Once splunk is setup properly, from an administrative standpoint it becomes largely easy in day to day upkeep., Users experience a big learning curve at first when beginning to use the product for searches.\nEnterprise, G2.com, \nJyo J., ServiceNow Admin/Dev, 5.0, VictorOps-now owned by Splunk has provided us with an easy mechanism to escalate high priority incidents so that it may be handled on time.\n\nThis helps us restore service as soon as possible, There is nothing that I dislike about this product\nEnterprise, G2.com, \nADIL G., System Analyst, 4.0, Index search result breaks down in to several useful fields. Helps in narrowing down the search., Fields popup window does not list all results. There should be a scroll bar in popup window to scroll through all results.\nEnterprise, G2.com, Verified User, nan, 4.0, Splunk can classify data on various forms which makes it easier to analyze logs for errors or required results, Controls for data classification are too large in number and sometimes we can't remember all.\nEnterprise, G2.com, \nSuhas R., Service Architect, 5.0, ease of use and the way how the ServiceNow tool is integrated with Splunk with just the creation of a user record, this app doesn't have an inbuilt portal of the Splunk app\nEnterprise, G2.com, Verified User, nan, 5.0, We use splunk to log errors, warning and information messages so that we can debug test env and production environment issues. It is fast and easy to use, can make graphs and tables, so handy. Can filter out information based on different attributes making it easier to find the logs that you are most interested in. Makes life easier for a developer cause some things can't be understood until live traffic hits your app., Nothing really, I like this tool. Somtimes I notice that I get 504 error on the page, or service not available errors, then I have to keep refreshing the page until it starts working again. It will be good if that does not happen, other than that, it can take sometime to retrieve", "doc_id": "63f92bda-3680-476a-89b7-240dad4835c4", "embedding": null, "doc_hash": "e1ec4ebf52b530cabee7951aa0a9f7e6f68602e2e453ebd2435cbcd9a27dcea4", "extra_info": null, "node_info": {"start": 142701, "end": 146687, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "37038a26-361a-4824-b412-45da3a50aa13", "3": "f565e74a-3b4b-425b-98ec-027ab439c3d9"}}, "__type__": "1"}, "f565e74a-3b4b-425b-98ec-027ab439c3d9": {"__data__": {"text": "if that does not happen, other than that, it can take sometime to retrieve records for a longer period of time, but thats bound to happen, I am sure they optimize the retrieval time as much as possible.\nEnterprise, G2.com, \nMatt S., IT Engineer, Sr.\n, 5.0, I like how Splunk has a rich set of data that I can pull from for all of our endpoints, At times, I struggle with wording the search properly.\n\nEnterprise, G2.com, \nAmbrosia T., ServiceNow Engineer, 3.5, The conversation that our network is having with our assets network wide is helpful to our infosec team., Nothing, it's pretty simple to set up and use!\nEnterprise, G2.com, \nKelly F., manager, 3.5, This app greatly accelerated our project and couldn't have done it with out it. We have also implemented the ITSI on splunk and needed the SN integration, nothing yet, we really haven't noticed anything\nEnterprise, G2.com, \nRitesh T., Sr software engineer, 4.5, Easy to integrate and OOB features and huge data sets. OOB plugin is easy to integrate, i dont found nothing so far so good. good product\nEnterprise, G2.com, \nVerified User, nan, 5.0, The best thing that I like about splunk is Its search are analysis engine for all of our log data, data analytical tool, comprehensive data analytics that is been provided by splunk., Till now I haven't faced any problem with this software which will incline me towards not liking this software. It automatically collects data in real time from multiple systems is one of the best feature of this software.\nEnterprise, G2.com, \nDan C., nan, 5.0, The ability to fully integrate and create flow of information from our CMDB to Splunk data warehouse., There is nothing at this time. The app installed with no issues.\nEnterprise, G2.com, \nDavid L., Sr. Systems Architect, 3.5, Using the splunk plugin to have alerts pushed into ServiceNow for incident management for quicker resolution, There are no dislikes for Splunk Enterprise\nEnterprise, G2.com, \nVerified User, nan, 3.5, i cant see any extra ordniary feature in it . it is just propose u solution to monitor your systems, there is nothing to explore. only extra cost and effort you r taking after paying too much\nEnterprise, G2.com, \nAbdoulaye F., Sr ServiceNow Engineer, 4.0, Get ServiceNows log into Splunk so we can better disect the logs, The performance can be a little better. Right now it is performance hungry\nEnterprise, G2.com, \nclayton n., Director, 3.0, ease of use. and flexibility ., complexity at times and technical skill needed\nEnterprise, G2.com, Verified User, nan, 4.0, I am using secure splunk to set up alerts , create dashboards and retrieve custom and catalina logs for application monitoring and issue debugging, This is a good tool . There were some issues faced when onboarding custom logs but rest was smooth\nEnterprise, G2.com, \nVerified User, nan, 4.5, The one thing i love about Splunk is all of your logs are in one place . Gone are the days where you need to login to each and every instance to get the logs . Splaunk not only helps to collect the logs through splunk forwarder but also helps to analyze them , create reporting , create alerting and you can integrate it with your service now or ticketing system to automate problem incident management . I love the dashoard and reporting feature for log analysis, Price and enterprise level of support . Not all splunk forwarders report to the splunk server when there is a version mismatch\nEnterprise, G2.com, \nVerified User, nan, 5.0, Very simple setup\n\nNo touching application or causing any issues whether splunk is up or down\n\nLoosely coupled with app but great view of the logs and history\n\nintegration with many different enterprise applications\n\nGreat visuals like charts\n\nWe integrated it with apache logs, jboss logs and", "doc_id": "f565e74a-3b4b-425b-98ec-027ab439c3d9", "embedding": null, "doc_hash": "6af6541350dcf65c2e5226bb4f88115383ab5a9f1ca30ca6d9eb11ea85bae1a9", "extra_info": null, "node_info": {"start": 146704, "end": 150475, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "63f92bda-3680-476a-89b7-240dad4835c4", "3": "d3a7ae68-5174-4258-8292-0a9451e8b916"}}, "__type__": "1"}, "d3a7ae68-5174-4258-8292-0a9451e8b916": {"__data__": {"text": "like charts\n\nWe integrated it with apache logs, jboss logs and endeca logs. Also you can hook up custom scripts to Splunk so it can run on some schedule and report/alert results. Lot to explore, Free version limit should be little more so small biz owners can start using it more\n\nMore video/presentations to ease customer learning\nEnterprise, G2.com, \nVerified User, nan, 5.0, It is a tool that simplifies your data and makes your duty easier, Sometimes it is needed a little more flexibility to aggregate functions of programming\nEnterprise, G2.com, \nneeha c., software engineer, 2.0, application availbilty,error logs, system alerts, too much query to write to find out the error logs\nEnterprise, G2.com, \nVerified User, nan, 5.0, Lots of value is created from the information generated by reading the logs ., Syntax are difficult. Lots of coding involved to configure and read logs.\nEnterprise, G2.com, Mittal M., Technical Support Engineer, 5.0, Splunk is a very simple and easy to use tool that Helps you and your team to analyze the information. Any data from network, servers, application. etc.\n\nThe best part I like about Splunk is that it is easy to deploy.\n\nYou can a simple utility call Splunk lite to push your data from your servers to the main Splunk engine.\n\nThe way Splunk indexes your data is very good. Which in returns good analytic results.\n\nThe report created by Splunk is very accurate. which helps my company to determine the improvement we need to do in our infrastructure.\n\nThe pricing model is very simple and reasonable.\n\nThey have very good well written online Knowledgebase articles to help use Splunk to its full use., The trial version of Splunk is very limited it only gives 500 MB do daily data indexing. As a result, it may prevent you to get an insight of all the potential you can get through Splunk.\nEnterprise, G2.com, \nTimothy V., Lead Analyst - Incident Handling and Response - Allstate SOC, 4.0, The ability to build dashboards so we can test new notable alerts. The ability to set severity levels. We like the correlation events. Ability to ingest multiple indexes and create correlated searches, as opposed to just using a wildcard search. The dashboard layout is usefull and is very customizable. Integration via ES and other plugins allows us to spend time on one single pane of glass, do a pivot investigation and drill way down into the logs that were ingested. Metadata is easy to find, the logs are parsed neatly and are relatively easy to read once you get used to them. Training is also very good, and readily available online. Certification paths are also available, The load on our search heads, some queries take forever. Sometimes we have great difficulty with getting other products to parse logs correctly into splunk. API issues occasionally. The lag in the UI when running a search. The community could use better visibility, a central repository for splunk queries would be nice.\nEnterprise, G2.com, Verified User, nan, 4.5, The ability to create and supplement source types for the data you care about. You don't have to spend hours digging through logs. You can just pull out key fields and use them as key values to report on., If I had to choose something that I dislike about Splunk it would be that I think it needs more easy to create dashboards.\nEnterprise, G2.com, Verified User, nan, 5.0, We use splunk to log errors, warning and information messages so that we can debug test env and production environment issues. It is fast and easy to use, can make graphs and tables, so handy. Can filter out information based on different attributes making it easier to find the logs that you are most interested in. Makes life easier for a developer cause some things can't be understood until live traffic hits your app., Nothing really, I like this tool. Somtimes I notice that I get 504 error on the page, or service not available errors, then I have to keep refreshing the page until it starts working again. It will be good if that does not happen, other than that, it can take sometime to", "doc_id": "d3a7ae68-5174-4258-8292-0a9451e8b916", "embedding": null, "doc_hash": "ff53d658077735453c5e8e38743b1cc97f6acd1d118765cf043ea60a664fed74", "extra_info": null, "node_info": {"start": 150484, "end": 154539, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "f565e74a-3b4b-425b-98ec-027ab439c3d9", "3": "07ac6a79-985c-411a-b6c6-5801e689afcf"}}, "__type__": "1"}, "07ac6a79-985c-411a-b6c6-5801e689afcf": {"__data__": {"text": "be good if that does not happen, other than that, it can take sometime to retrieve records for a longer period of time, but thats bound to happen, I am sure they optimize the retrieval time as much as possible.\nEnterprise, G2.com, Verified User, nan, 5.0, The best thing that I like about splunk is Its search are analysis engine for all of our log data, data analytical tool, comprehensive data analytics that is been provided by splunk., Till now I haven't faced any problem with this software which will incline me towards not liking this software. It automatically collects data in real time from multiple systems is one of the best feature of this software.\nEnterprise, G2.com, Verified User, nan, 5.0, Very simple setup\n\nNo touching application or causing any issues whether splunk is up or down\n\nLoosely coupled with app but great view of the logs and history\n\nintegration with many different enterprise applications\n\nGreat visuals like charts\n\nWe integrated it with apache logs, jboss logs and endeca logs. Also you can hook up custom scripts to Splunk so it can run on some schedule and report/alert results. Lot to explore, Free version limit should be little more so small biz owners can start using it more\n\nMore video/presentations to ease customer learning\nEnterprise, G2.com, Verified User, nan, 5.0, The ability to ingest all of our data sources natively is a huge plus for all departments of our organization., Having to learn the configurations and SPL is a little rough.\nEnterprise, G2.com, Verified User, nan, 4.0, It has so much useful features to use for log analysis, Cost per usage is too expensive. Recommended for teams with high budget\nEnterprise, G2.com, Verified User, nan, 5.0, How easy it is to search your data and find quick solutions to complex problems. It is also easy to report and alert on your data, making it easier to narrow down an issue.\n\nRunning statistics based on search results is also simple and powerful., Sometimes UI changes can cause confusion. This is just a small discomfort.\nEnterprise, G2.com, Verified User, nan, 3.0, Ease of doing data analysis and the features associated, There is nothing in the product which I dislike\nEnterprise, G2.com, Verified User, nan, 4.5, The easy of integration with other cloud applications., Nothing in specific. I love Splunk and the UI\nEnterprise, G2.com, Verified User, nan, 4.5, The one thing i love about Splunk is all of your logs are in one place . Gone are the days where you need to login to each and every instance to get the logs . Splaunk not only helps to collect the logs through splunk forwarder but also helps to analyze them , create reporting , create alerting and you can integrate it with your service now or ticketing system to automate problem incident management . I love the dashoard and reporting feature for log analysis, Price and enterprise level of support . Not all splunk forwarders report to the splunk server when there is a version mismatch\nEnterprise, G2.com, Verified User, nan, 4.5, Splunk is a great tool to quickly analyze your logs. It really helpful to analyze and resolve your production logs quickly. There is so much you can do with splunk queries. You can see raw logs, timechart and can do visual analysis., There are events we observed some logs are missing in splunk but there is no way to trace what went wrong otherwise splunk has no shortcomings at all.\nEnterprise, G2.com, Verified User, nan, 5.0, Splunk is one of the best tool I have used so far. It is very fast for loading large amount of data. We can create our own dashboard helpful for various analysis. We can set multiple alert., I hardly see any issues with splunk, data analysis is too good but you must be good enough to write complex splunk queries.\nEnterprise, G2.com, Verified User, nan, 5.0, I like the fact that Splunk gives me information about errors, I like everything about Splunk. I love the layout as well\nEnterprise, G2.com, Verified User,", "doc_id": "07ac6a79-985c-411a-b6c6-5801e689afcf", "embedding": null, "doc_hash": "94bd6ade0f471d3500a72b69388e96963f4cb62499f314a378de256f5b1c8024", "extra_info": null, "node_info": {"start": 154534, "end": 158488, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "d3a7ae68-5174-4258-8292-0a9451e8b916", "3": "802e9005-13d7-4173-bc27-09ab95ea375a"}}, "__type__": "1"}, "802e9005-13d7-4173-bc27-09ab95ea375a": {"__data__": {"text": "I love the layout as well\nEnterprise, G2.com, Verified User, nan, 4.5, Splunk monitors systems health to prevent and eventually predict system failure. It can alerts application and system owners of potential problems with the systems., It should be used to monitor potential malicious activity on systems. I'm not entirely sure how sophisticated the AI component of Splunk is.\nEnterprise, G2.com, Verified User, nan, 4.0, Splint is a Very good tool for studying App Dynamics., Splint is a Very good tool for studying App Dynamics. I did not find anything that is not good about Splunk.\nEnterprise, G2.com, \nChristopher H., Senior Software Developer, 5.0, Splunk language is fairly easy to learn and built-in hinting system comes in handy for beginners. Splunk can be a powerful tool providing much needed insight into servers, applications, and other business data. Building dashboards are fairly easy and can provide a quick and easy to understand view of what your data looks like., The web GUI SPL code editor isn't very customizable as far as picking a different font.\n\nEnterprise, G2.com, \nTeena H., nan, 4.0, We can troubleshoot an issue end to end with all of our logs in one console. Creation of dashboards allows a quick view of potential issues before they become impacting., The search language can be a challenge for the novice user\nEnterprise, G2.com, Verified User, nan, 4.0, Powerful log analytics tool and solid user interface. Seems to be an industry standard. Widely accepted by the IT and IT security community. Great presence in their market and industry. Knowledgeable sales people that understand the technical and business applications of their product instead of handing it off to their developers / product managers / business analysts to answer more complicated questions., The learning curve for the Spunk querying syntax is somewhat steep. I'm not sure how much the support is really geared towards beginners or those that are not familiar with logging tools. The support that is out there for learning the tool is great but the support that is out there for learning the actual querying syntax is, in my humble opinion, lacking. It might be great for those familiar with querying tools, etc. but for those new to IT tools, management, administration, etc it is not the easiest to pick up. I would recommend looking at the tutorials and youtube videos then finding somebody who is already familiar with the tool and having them walk you through it just for the basic features. That alone would help a bit\nEnterprise, G2.com, Verified User, nan, 4.5, Ability to trace the logs of the application, Lack of details around logs that are displayed\nEnterprise, G2.com, \nLinda O., Analyst, 4.0, I think Splunk is pretty easy to use and economical, It can be difficult without proper training\nEnterprise, G2.com, \nRohan S., nan, 4.5, Web interface and the support . the graphs and visualization help, honestly hard to think of something with this product the fact that its a horizontal technology .\nEnterprise, G2.com, Verified User, nan, 4.5, splunk do a great job indexing json logs and creating fields which helps to search relevant information quick and efficient., still struggling to deciper complex wuery to generate visualization\nEnterprise, G2.com, Verified User, nan, 5.0, Probably my job and it\u2019s responsibilities. Everyday it involves challenging in nature, Sometimes it gets tricky to see results using complex queries\nEnterprise, G2.com, Verified User, nan, 4.5, Splunk Dashboards and their flexibility.It helps us in figuring out weird complicated stuff that happened and\n\nexplaining what it really meant and what to do about it., Less Documentation\n\nIt can get expensive for large data volumes.\n\nOptimizing searches for speed is more art than science.\n\nDashboards are functional but not as nice as tableau\n\nIT is constantly embarking on attempts to replace it with open source alternatives, which is a distraction\nEnterprise, G2.com, Verified", "doc_id": "802e9005-13d7-4173-bc27-09ab95ea375a", "embedding": null, "doc_hash": "d17287aed64d01e3a32e89171f3ff48b8d4d7a81c74f894dcb010a650d2934f1", "extra_info": null, "node_info": {"start": 158496, "end": 162475, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "07ac6a79-985c-411a-b6c6-5801e689afcf", "3": "e9416f76-31dd-45d1-88e8-dbefa2b7a04a"}}, "__type__": "1"}, "e9416f76-31dd-45d1-88e8-dbefa2b7a04a": {"__data__": {"text": "source alternatives, which is a distraction\nEnterprise, G2.com, Verified User, nan, 4.0, Good UI, search options, ease of use, fast., A little slow in searching long log files\nEnterprise, G2.com, \nMike B., Student System Administrator, 5.0, Easy to use, extensible, scriptable, versatile, Documentation could use work. Community support lacking\nEnterprise, G2.com, \nScott O., Business Intelligence Developer, 5.0, I love how easy it is to get data into the tool and search it., The APIs for alert scripts and custom search commands could be a little better documented.\nEnterprise, G2.com, \nVerified User, nan, 5.0, Easy of use. Great events ingestion. Great flexibility, Old front end graphics. Price Policies not so good\nEnterprise, G2.com, \nVerified User, nan, 4.5, Splunk provides a great ease in reading the logs. Splunk is a very powerful Data Analytics platform, Most of the time we never directly upgrade new version of splunk as there is possibility of bugs.\n\nWe always need to wait a bit for latest release to be adopted at Enterprise level because of the unforeseen bugs. Good thing is one of Splunk Support, Splunk Answers Community and Slack might be able to assist with workaround or solution.\nEnterprise, G2.com, \nVerified User, nan, 5.0, Splunk is just a great solution for managing application logs, it easily allows you to find bugs, and have enough data to find out when the bug was introduced or started appearing, the searching and reporting is so fast even with gigs and gigs of logs., haven't found anything I dislike about splunk yet.\nEnterprise, G2.com, \nVerified User, nan, 3.5, Splunk allows you to capture logs from numerous different types of applications, and search or filter through them very easily. You can also create very helpful dashboards, apply plugins for applications, and more., Not much to complain about really. We did hit a bug or two early on, but Splunk has since patched those, and things are operating well.\nEnterprise, G2.com, \nVerified User, nan, 4.0, Search syntax, ease of data normalization, reporting, Cost (compared to open source ELK stack)\nEnterprise, G2.com, \nCorey W., Application System Analyst\nInsurance, 3.5, Easy to find information, easy to view and understand, easy to locate information located in different locations. For queries with a long result, it minimizes the result in an expandable box for ease of viewing., Has a tendency to run extremely slow and sometimes simple changes in terminology can cause a difference in results.\nEnterprise, G2.com, \nDunstan V., Technical Architect, 5.0, The ability to ingest any sort of data. If you can work out where something you want lies in a stream of data, it can become a field. So literally anything you can get a response from becomes a data source., While you can get results really quickly in a new environment, it can take some practice until the penny drops and you can just write off a search without looking things up.\nEnterprise, G2.com, \nVerified User, nan, 4.0, Search and dashboard functions. Performance during reach in millions of records, Not easy to set up. Might be expensive. Hard to integrate\nEnterprise, G2.com, \nVerified User, nan, 5.0, It is easy to use and fast, gets the job done. Have had no problems using this software so far., Can get complicated with so many search queries\nEnterprise, G2.com, \nVerified User, nan, 3.5, Helps eliminate manual review and simplified baseline review process, Some learning curve, especially for those without strong IT background\nEnterprise, G2.com, \nVerified User, nan, 4.0, Alert options and dashboards are the best, Splunk Querying language needs learning.\nEnterprise, G2.com, \nCameron M., Platform Architect, 5.0, Splunk allows me to quick diagnose problems and in most cases prevent them for going wide spread by pulling in logs from all of the sources in our development", "doc_id": "e9416f76-31dd-45d1-88e8-dbefa2b7a04a", "embedding": null, "doc_hash": "1998b3cc8743ec8714d284c480b10c8d6c037e5b8b3cd164eca31ac112602b96", "extra_info": null, "node_info": {"start": 162463, "end": 166314, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "802e9005-13d7-4173-bc27-09ab95ea375a", "3": "d8b2233a-0cbd-4e1e-8f13-144507e0ba90"}}, "__type__": "1"}, "d8b2233a-0cbd-4e1e-8f13-144507e0ba90": {"__data__": {"text": "them for going wide spread by pulling in logs from all of the sources in our development architecture., The only thing I dislike is that it can be difficult to pull data in from a database, they make the DB Connect app, but it is does not work very well in our situation.\nEnterprise, G2.com, \nVerified User, nan, 4.0, It\u2019s good to debug production issues with ease, It is sometimes slow especially for larger time intervals\nEnterprise, G2.com, \nArtur I., Software Engineer, 5.0, Very nice user experience with a lot of graph options.\n\n\"One click\" report creator tool.\n\nIn contrast to ElasticSearch+Kibana, you get all services together., I can think only about high price of this product. Need to pay per GB/Month.\nEnterprise, G2.com, Verified User, nan, 4.0, I think it is great for the novice like me to get started and use right away, It is a little bit difficult to use and get the full benefit out of it without some database background\nEnterprise, G2.com, Verified User, nan, 4.0, What I like best about Splunk is the ease of setting up forwards and ingesting multiple sources of data from structured to unstructured. Splunk does a great job of correlating events and search capabilities are robust as long as you know the search commands. The ability to setup alerts is helpful and the out of the box filtering capabilities are useful for new analysts., What I dislike about Splunk is the slight learning curve at the beginning. Once you get the hang of how to do searches, searching becomes second hand. The product is also pricey, but you do get your month's worth so there is value in this product.\nEnterprise, G2.com, Verified User, nan, 4.0, Group search results, get stack trace, detailed query string, Hard to remember the query parameters, long list of commands to remember\nEnterprise, G2.com, Verified User, nan, 4.0, Easy to use and check the logs on servers of different environments, There should be more user friendly interface\nEnterprise, G2.com, Naomi P., Junior Citrix Engineer, 5.0, My team mostly uses it to track lockouts for users. However we also use it for VPN connection metrics, tracking active directory user accounts, and various other types of reports., It does have a bit of a learning curve to it at first, such as accidentally connecting to the wrong dashboard can leave you feeling a little lost until you find you way back to the correct app.\nEnterprise, G2.com, Verified User, nan, 4.5, Splunk is super easy to deploy, use, and allows users to easily and efficiently manage systems and networks., Email alerts are only as good as the people that receive them, which can render the tool not as useful if there are the only alerts created.\nEnterprise, G2.com, \nLuca G., Software Engineer, 3.5, - UI options for data visualization are good. Quite flexible charts.\n\n- Transactions feature is really great (even though hard to know it even exists).\n\n- Alerting is extremely useful and very reliable., Slow and sluggish.\n\n- GUI not quickly responsive.\n\n- Proprietary query language not intuitive. Steep learning curve.\nEnterprise, G2.com, \nCody K., Sr Project Delivery Specialist, 2.5, Ease of use, UI\u2019s are awesome, simple user focused application, reduces data management time. Exports are clean and able to be shared with customers., Setting up new applications within splunk, sometimes this is tedious, but over all not too bad.\nEnterprise, G2.com, \nTiffany Nicohle B., Software Developer, 4.5, Robust features and adaptability and ease of customization, There was a bit of a learning urge for new users\nEnterprise, G2.com, Verified User, nan, 4.5, Searching for specific logs with multiple sources is great! Narrowing by timeframes is excellent., Log retrieval can be lengthy if looking for over 30 days.\nEnterprise, G2.com, Verified User, nan, 4.0, I like that I can create a dashboard for the specific report that", "doc_id": "d8b2233a-0cbd-4e1e-8f13-144507e0ba90", "embedding": null, "doc_hash": "a690d567ee60fbc7d3d723c1c17bd61d004825b3d28ab586fde6247d1295ba5e", "extra_info": null, "node_info": {"start": 166308, "end": 170162, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "e9416f76-31dd-45d1-88e8-dbefa2b7a04a", "3": "df2706de-7a67-4837-9162-5b9e36d1a8ed"}}, "__type__": "1"}, "df2706de-7a67-4837-9162-5b9e36d1a8ed": {"__data__": {"text": "nan, 4.0, I like that I can create a dashboard for the specific report that I need to pull, Sometimes I find that splunk if offline or is not capturing complete information\nEnterprise, G2.com, Verified User, nan, 5.0, Powerful tool yet easy to learn, configure and manage.\n\nUser community is very active and a great resource for questions and help with any issues one might encounter., Nothing to dislike. Support is readily available, either from Splunk or the user community, should there be any issues.\nEnterprise, G2.com, Verified User, nan, 2.5, You can query a lot of different types of data., It's slow and learning the language is not intuitive.\nEnterprise, G2.com, Verified User, nan, 4.5, Customization of queries allows us to retrieve detailed information - ability to extract information and quickly view it or export it for future reference or to provide to the customer, Not clear enough if query is not formatted properly; needs more feedback and to be more responsive when customers are trying to search to save us time\nEnterprise, G2.com, \nMir Vizarath A., Principle T3, 5.0, Ability to query data\n\n- Dashboards\n\n- Different modes to query data, this helps decide how much information you choose to see which at times is useful when reviewing several days worth of logs.\n\n- Ease of use\n\n- Flexibility for the most part, Unable to query data past 30 days, but this looks like a limit imposed by my employer.\nEnterprise, G2.com, Verified User, nan, 4.0, This program has a simple user interface and provides information technology professionals with a vast amount of reports and resources., The main thing I disliked was the large amount of parameter that can be entered when searching. Can be difficult to remember\nEnterprise, G2.com, Verified User, nan, 4.0, Collation of different sources/types of data, The price tag is a little hefty if you're just looking for a simple way to collect and search logged data\nEnterprise, G2.com, \nVidhya A., nan, 5.0, Splunk provided me a platform to analyze both infrastructure loads and Application performance for quick troubleshooting saving loads of time. Versatile Apps at Splunk base helped me in better configuration and enhanced Visulaization of the KPIs of my application, developing python scripts for search parsing\nEnterprise, G2.com, \nAntonio I., Cloud & Hybrid IT Monitoring Specialist | Delivery Consultant at Almaviva TSF, 4.0, Splunk's core offering collects and analyzes high volumes of machine-generated data. It uses a standard API to connect directly to applications and devices. Perfectly integrated for the google CLOUD, There are no problems related to product stability. Management Reporting very beautiful.\nEnterprise, G2.com, \nVerified User, nan, 4.5, Having all the logs in one place. Creating dashboards, alerts and monitoring., Writing complicated queries needs some learning.\nEnterprise, G2.com, \nMegha S., Sr Engineer, 4.0, Easy access, log analysis, charts, queries, easy interface. best monitoring system, real time logs.\n\nreal time alert trigger . easy to get history data from the tool. speed performance.\n\naccurate analysis, best features of monitoring, can interface with many other tool., Nothing much. everything is more easy and useful in tool. no negative feedback as of now.\nEnterprise, G2.com, \nJason B., IT Administrator\n, 5.0, Very organized and allows you to find what you are looking for very quickly. Love using Splunk and will continue to do so for as long as I work here, Nothing that I can think of that I don't like about this program, it's excellent and I love using it\nEnterprise, G2.com, \nVerified User, nan, 3.0, I've used several monitoring told and Splunk is just like every other. It works as well as it is configured., Misconfiguration can lead to complete network bandwidth saturation very quickly.\nEnterprise, G2.com, Verified User, nan, 5.0, It's scalable. We started with a small standalone installation with a", "doc_id": "df2706de-7a67-4837-9162-5b9e36d1a8ed", "embedding": null, "doc_hash": "0c97ccff5e23b7c1363113e0b8bd46425ca34a32715f29f25a1e152e2ea294f3", "extra_info": null, "node_info": {"start": 170174, "end": 174103, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "d8b2233a-0cbd-4e1e-8f13-144507e0ba90", "3": "343f4d90-69d0-4aed-87d9-6c7896f18cdf"}}, "__type__": "1"}, "343f4d90-69d0-4aed-87d9-6c7896f18cdf": {"__data__": {"text": "It's scalable. We started with a small standalone installation with a very small data set. Over time, we grew our Splunk environment to a clustered multi-site installation that is used by multiple departments., As your installation matures, understanding the intricacies of how Splunk *works* will require full-time attention (and manpower). Folder structure, permissions, and app installations, as well as keeping up with the dizzying release schedule will require some time devoted to Splunk.\nEnterprise, G2.com, Verified User, nan, 4.0, I love the dash board feature. It works well., None the program is stable and works well for us.\nEnterprise, G2.com, \nShmuel C., Solution Architect\n, 4.5, The ability to quickly search across multiple sets of data., Complicated to use - meaning that I have to get help to build any queries and dashboards and functionality.\nEnterprise, G2.com, Verified User, nan, 3.5, Quick log search. Custom dashboards are great!, I can\u2019t think of an area where I use Splunk where it couldn\u2019t do the job.\nEnterprise, G2.com, Verified User, nan, 4.0, Lot monitoring across client environmemts, Implementation strategy for multi client\nEnterprise, G2.com, Verified User, nan, 4.0, Its very eady to learn if you know how relational databases work...meaning you can setup relationships.., Its a hard question....i guess they xould have more use cases built in.\nEnterprise, G2.com, Verified User, nan, 4.0, The UI is simple and clean, the amount of sort features on the log results is fantastic, It can be a bit slow in running queries and also doesn\u2019t always capture the data it\u2019s supposed to\nEnterprise, G2.com, Verified User, nan, 4.0, Splunk has most abilities that a corporate IT need for automation, reporting, logging, monitoring, Nothing so far. Everything has been good\nEnterprise, G2.com, \nPatrick O., Information Security Engineer\n, 4.5, The tooling included in base Splunk, plus the broad community supplying pre-built extensions to common data needs, greatly reduce time to detection on problems and make tracing root cause issues much easier than any other tool I've used., Management of the software can be complex, as it is a complex tool. Buying professional services for initial configuration and any major changes (e.g. moving to a clustered environment) is frankly necessary unless you have someone on staff who has already managed a deployment previously.\nEnterprise, G2.com, Verified User, nan, 5.0, Splunk takes in any data in almost any form (as long as it is human readable text) and allows searching, manipulation, transformation, calculation, etc. and then presents it in a multitude of ways to make the data tell a helpful story. That is superior to products that make you set up each type of data in a set format. We have data that varies greatly even among similar software products., Bugs, though to be honest, I haven't run across many, and they seem to get fixed pretty quickly. I've run into some that usually have a workaround, which makes it easier to deal with the bug.\nEnterprise, G2.com, Verified User, nan, 5.0, Practical data ingestion implementation, multiple data sources and types., Still editing config files without version control?\n\nEnterprise, G2.com, \nMichael P., Technical Architect, 4.5, Splunk gives us the single pane of glass view we have been wanting. We are able to pull in logs from our various monitoring tools and get visibility end-to-end with a single view., While I am sure the product isn't perfect, it fulfills our needs better than previous products. Therefore, there is little to say in the dislike category.\nEnterprise, G2.com, \nVerified User, nan, 2.5, Using splunk, you can create alerts in logs that you have associated with it., Sometimes it's hard to find the correct search terms in order to find what you're looking for within a splunk log.\nEnterprise, G2.com, \nKevin P., Java", "doc_id": "343f4d90-69d0-4aed-87d9-6c7896f18cdf", "embedding": null, "doc_hash": "ffa47ae23dd27568535f904617b36007ff1f50a4edb8928372086fd082cc3fbf", "extra_info": null, "node_info": {"start": 174106, "end": 177977, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "df2706de-7a67-4837-9162-5b9e36d1a8ed", "3": "55c04431-65ee-4d04-ad9d-e26261ad8eed"}}, "__type__": "1"}, "55c04431-65ee-4d04-ad9d-e26261ad8eed": {"__data__": {"text": "within a splunk log.\nEnterprise, G2.com, \nKevin P., Java Engineer\n, 4.5, Splunk provides an easy way to search multiple log files over a period of time. You can search by any combination of unique text. The syntax is similar to that of SQL where you can use keywords such as AND and OR. Logs are archived for time capsule viewing., Splunk provides an easy way to search multiple log files over a period of time. You can search by any combination of unique text. The syntax is similar to that of SQL where you can use keywords such as AND and OR. Logs are archived for time capsule viewing.\nEnterprise, G2.com, \nVerified User, nan, 5.0, Extremely powerful tool combining analytics from different sources, multiple dashboard views, Hard to say anything negative. Works great for our application\nEnterprise, G2.com, \nstephane p., nan, 4.0, I like the posibility to ingest a large number of logs/data format and to play with it. In a very short time, beginners are able to have a clear view of things that were hidden in the mount of data to be processed., I miss the possibility :\n\n1. to add pdf export to custom visualisation,\n\n2. to configure drilldown fields in custom visualisation\nEnterprise, G2.com, Verified User, nan, 4.5, Splunk gives me a way to program own script to pick up key information and perform analysis automation., I'm seeking a much easier way drag and drop graphic tool can make scripting much more easy.\nEnterprise, G2.com, \nPrakash G., Technology Architect, 5.0, Ability to visualize all logs from Various server instances., I donot dislike anything about the splunk\nEnterprise, G2.com, \nVerified User, nan, 3.5, Very useful in detecting and trouble shoot., Not proprietary...and we have to pay money.\nEnterprise, G2.com, \nRahul N., Senior Engineer, 4.0, easy to setup and use. It's an excellent tool to analyze real-time data & logs, With its long features using it can get really complex using it. you will have to read through many documentation to find the answers you're looking for and sometimes you don't find it\nEnterprise, G2.com, \nNAZEER P., Application Developer Mule ESB, 4.5, The alerting system is best part of this. By using Transaction flow analysis we can identify where exactly the issue is. Building query is simple and easy. We have been using Splunk for 3 years now and it has always been a great tool use to analyze the data patterns and alert us on all performance related issues and pattern matching., We run query for long time frame splunk performance will be effected. Ideally it creates one ticket for one type of exception but some times it creates more than one.\nEnterprise, G2.com, Verified User, nan, 4.0, Splunk very nicely provides query/search access to huge volumes of data (for example log-file data). If you're interested in finding specific occurrences of something/anything within your data, Splunk is a nice tool to have. For basic querying, it cannot be beat., If you need to find an \"area\" within your huge volume of data (for example, either what happened immediately before or after a specific occurrence) then you end up fighting with Splunk to let you see that \"area\". Personally, I've ended up having to write extremely complex regular expressions within Splunk just to be able to see these \"areas\", and they work, but it needs to be easier.\nEnterprise, G2.com, Verified User, nan, 5.0, I like Splunk's speed when querying millions of logs to find specific data points. Combined with the online support pages that help with any type of query, Splunk makes searching through data easy. Additionally, the ability to start a search and have it sent via email upon completion allows for productivity to increase due to the fact that I do not have to sit around waiting for my query to complete. Lastly, the export feature is extremely convenient for digging through large amounts of data easily in Excel., If you click to expand a search result and then attempt to scroll while this result is still expanded, you will get yanked back up to that result", "doc_id": "55c04431-65ee-4d04-ad9d-e26261ad8eed", "embedding": null, "doc_hash": "704abd87ab3c5923fb1f6af0185f69c73edf772b47fce798c8462c46207a4e5d", "extra_info": null, "node_info": {"start": 177988, "end": 182005, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "343f4d90-69d0-4aed-87d9-6c7896f18cdf", "3": "9dfaab70-7d70-4e42-86f2-a3c2d961207c"}}, "__type__": "1"}, "9dfaab70-7d70-4e42-86f2-a3c2d961207c": {"__data__": {"text": "to scroll while this result is still expanded, you will get yanked back up to that result repeatedly until it is closed.\nEnterprise, G2.com, Verified User, nan, 4.0, Offers great predefined applications and visualised dashboards to dispaly and make sense of the logs. These make it very easy to see the wood for the trees., Some of the best applications and dashboards can bee quite expensive although there are kes comprehensive free versions available\nEnterprise, G2.com, \nJay T., nan, 4.5, The colors and menu items are very intuitive. It may not be a big thing but it is easy on the eyes, It lacks support for agile cycles. If a planning mechanism is included like Jira, it would be a good improvement\nEnterprise, G2.com, Joe C., Systems Engineer Level III/Architect/Manager of San Diego Office, 4.0, Easy to setup, upgrade, manage, and configure to meet your needs. The universal forwarder makes this easier than any other solution out there., Price can be of a concern. If you have a large influx of traffic being logged, you could easily go over your license limit and have a violation.\nEnterprise, G2.com, Verified User, nan, 4.0, The visualization graph features as well as the alert and notifications, Need to learn the syntax for log search. Should have made it a little easier for new users.\nEnterprise, G2.com, \nJagadish M., Technical team lead, 4.5, Splunk will publish the data by connecting to any different source systems and shown in the dashboard with all the trend., Depends upon the Application logs and sys logs rather than having its own data.\n\nEnterprise, G2.com, \nTrisha D., AMTS Software Engineer, 4.0, Splunk is very user friendly and on the analytics side, the visuals created are very elegant!, As you scale does the price and it can definitely get overly expensive and the more data you need to index, the higher the CPU cost is. Also some of the querying requires a bit of a learning curve\nEnterprise, G2.com, Verified User, nan, 1.5, The ability in Splunk to search for errors online and without having to SSH or Telnet into a console would have to be the best feature of Splunk by far., The inability to then simply review and investigate a particular log message would have to be the biggest downfall of the platform. Text is presented in the tokenised view and it definitely isnt intuitive on how log messages and the surrounding (preceding or proceeding) logs can be viewed easily... if it\u2019s possible I still haven\u2019t figured it out after 12 months of using the product.\nEnterprise, G2.com, \nVerified User, nan, 4.0, Helps finding the events quick from server logs. This avoids us from logging into multiple servers separately., Except being proprietory the product is good.\nEnterprise, G2.com, \nVerified User, nan, 3.5, Splunk captures a great deal of data for reporting., Getting a decent report requires a lot of manipulation.\nEnterprise, G2.com, \nErik A., Application Engineer II\n, 5.0, From the users sides, it is a single platform that can provide everything a company needs without needing to go between different platforms that host different bits and pieces of the data needed to support a customer facing service. From the support side, my day job, it is very easy to built out new environments, set them up as we need, and support their ongoing usage., I wish I could get more people at my company onboard with the concept of a single platform is better than multiple platforms.\nEnterprise, G2.com, \nGiuseppe A., WEB & Mobile Team Leader , 4.5, It's an unique container of etherogeneus log, and permit to identify production problem and in case also to prevent, when it happens a performance degradation., The price: it's quite expensive, and it's hard to persuade my company to upgrade to a bigger license.\nEnterprise, G2.com, \nVerified User, nan, 2.5, Ability to capture cross platform logging, Licensing, especially for large enterprises\nEnterprise,", "doc_id": "9dfaab70-7d70-4e42-86f2-a3c2d961207c", "embedding": null, "doc_hash": "d6def574ccc79b0977275df5761acf0ace0792a24159f43eefb4464573fca9b9", "extra_info": null, "node_info": {"start": 181982, "end": 185880, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "55c04431-65ee-4d04-ad9d-e26261ad8eed", "3": "fb76762e-5f96-4e30-b458-26837b628208"}}, "__type__": "1"}, "fb76762e-5f96-4e30-b458-26837b628208": {"__data__": {"text": "to capture cross platform logging, Licensing, especially for large enterprises\nEnterprise, G2.com, \nBonnie R., Senior Systems Engineer, 4.0, I like having real time alerts panel is easy to use and reporting is detailed, Sometimes the alerting is overly sensitive even when we lower the settings updates are too frequent and dislike having to install a forwarder\nEnterprise, G2.com, \nChristopher M., Information Technology Security Analyst\n, 5.0, The ability to manipulate data in Splunk is unparalleled. Splunk\u2019s powerful and flexible query language can morph difficult to understand log formats into usable data. Correlating data across different systems via one interface will allow you to know your environment or identify incident data in ways you never imagined., There is a definite learning curve to starting out. However, there is a quite a bit of documentation out there to help you get started. In addition Splunk documentation, the community (Splunk answers/slack channel/user groups) can help get you moving along a lot faster.\nEnterprise, G2.com, \nVerified User, nan, 5.0, Log analysis, dashboard to run queries , pretty flexible tool, Need people with technical knowledge to make changes, add new dashboards\n\nEnterprise, G2.com, \nBhagat B., Senior Consultant, 4.0, The best thing about spunk log is pull logs based on the time period. The logs are easy to read. Same system can pull the data from many environment. you can run your queries to pull the data. You can download all the logs in different file format. You can search your logs based on certain time period with any text. It can also pull the data based on the different system swell., Coping of logs is not simple. It should have a link or button to copy a particular logs. I seen lots of issue with internet\n\nexplorer browser. Its very slow with IE but works well with Chrome.\nEnterprise, G2.com, \nClara M., Lead Business Intelligence Engineer, 5.0, It has made projects more efficient (ease of joining multiple sources together, search times are quicker, etc.) which frees up more of my time to research, explore, and work on more projects, Custom visualizations don't export to PDF\n\nEnterprise, G2.com, \nRich M., Senior Information Systems Security and Database Architect\n, 5.0, The versatility. We ingest some of the worst looking logs and force them into a usable form, generating reports and dashboards that business users make decisions from. At times I use Splunk as a clearinghouse for terribly formatted data that I don't even directly use, taking data that makes my BI team cry, reformatting it, cleaning it up and shoving it into a database for them to use further down the pipe. In the more standard uses, we use it to correlate various pieces of information from across our environment to identify when weird things are happening so we can better address them. But two of its primary strengths are the quality of the documentation and the thriving and active user community (answers.splunk.com, User Groups, their Slack channel and so on) who are always willing to help out if you need it!, There's can be a significant amount of complexity, some of which is due to the domain across which it works, but some of which hasn't been smoothed over yet by Splunk. This is mostly not in the core product but in some of the Apps, which just need a little work. See comments on the community above, though - there are replacement apps and lots of help available on the Slack channel and in Answers!\nEnterprise, G2.com, Verified User, nan, 4.0, Easy interface and presents the metadata in such an organized way and make troubleshooting a whole lot easier., the way to deploy app. it work fine but is just a little redundant. I dont like the fact that if you put one app in the deploy directory and deploy it will install that app and remove all the others. no matter how many. I think that's a design issue and needs to be fixed/.\nEnterprise, G2.com, Verified User, nan, 5.0, The ease of use Splunk offers makes using the tool a breeze. You don't have to be a developer to get your hands dirty going through machine data", "doc_id": "fb76762e-5f96-4e30-b458-26837b628208", "embedding": null, "doc_hash": "ae60b94b78453de6bdf23b59a0b8c9a4079c9662ca8c1875c6e33d52d574ed89", "extra_info": null, "node_info": {"start": 185873, "end": 189974, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "9dfaab70-7d70-4e42-86f2-a3c2d961207c", "3": "806ac9c6-f9f4-4b6a-ac29-457e0f5cf879"}}, "__type__": "1"}, "806ac9c6-f9f4-4b6a-ac29-457e0f5cf879": {"__data__": {"text": "You don't have to be a developer to get your hands dirty going through machine data and finding good use cases for the tool, As your data ingest grows, so does the cost. This can become pricey if you're not careful\n\nEnterprise, G2.com, \nEarl W., Windows Server Administrator, 5.0, It sits by idle- or it seems to be but any and every change to your system will be logged for ease of recovery, Nothing. A very well thought out solution for any business\n\nEnterprise, G2.com, \nVerified User, nan, 4.5, You can access all the logs and filter through very easyly, It needs to be more user friendly so that a person with no experience can still access it\n\nEnterprise, G2.com, \nVerified User, nan, 2.5, It allows one to search through numerous records using key word searches.\n, If not familiar with Splunk, the phrases or key words necessary to do a search can be inconvenient.\nEnterprise, G2.com, \nVerified User, nan, 3.5, I am using Splunk now to monitor the logs from my backup server. The fact that it can import in logs from another host is great. The love the reporting for the logs as it provide an easy to use ad-hoc query which output a readable format for you to understand. You can actually go beyond logs and into monitor your network for spikes in processes and resources. What makes this unique is knowing which host and users are associated with the processes., It's very confusing at first because there's so many tools and links. It's not simple so do read up before you tackle this product. This product costs a lot of money for what it delivers.\nEnterprise, G2.com, \nVerified User, nan, 4.0, It's much easier to configure, compared to tools like ELK, and the search is quick to look for logs based on specific time., Not so many plugins for rails and open source tools like apache2,Nginx,...\n\nMonitoring a specific file status in linux environment seemed hard since the splunk enterprise was installed in windows environment.\nEnterprise, G2.com, \nVerified User, nan, 3.5, Transparency in reporting to monitor server problems, It doesn't have a UI friendly interface for the end users and it's not that intuitive\nEnterprise, G2.com, Jaya Krishna T., Sr. Database Engineer, 5.0, Splunk provides a great ease in reading the logs. It helps us analyze the metrics on a regular basis to troubleshoot production issues. We have been using Splunk for quite a few years now and it has always been a great tool use to analyze the data patterns and alert us on all performance related issues and pattern matching., There is not much of dislike on the product. It's more of how much I can help reviewing the production to help it enhance its ease of use.\n\nIt would be great to have multiple levels of automation setup within splunk where in it allows users to choose what exactly they want by looking at the earlier patterns and usage of the product. By showing this suggestions, it will be easy for the users to make sure they take into consideration the suggestions shown by splunk to make a wise decision whether to go ahead with the suggestion or implement a new one.\nEnterprise, G2.com, \nVerified User, nan, 5.0, Splunk is a fantastic tool that we depend on. It isn't just development work we rely on Splunk for, but we also use it for testing engineering changes as a standard before production releases. From ease-of-use, forwarding data from a variety of data sources, and E2E data correlation, Splunk has been able to package software that does it all!, Recent versions of Splunk can be a bit chatty in terms of messages that are displayed in Splunk Web. I'm finding a lot of questions coming from the business teams like, \"I'm seeing this error - what does this mean?\", or \"This error message came up when I ran this search in the dashboard, can you please have a look?\". Most often messages that display are not directly correlated to what the Splunk users are performing. I may have missed it, but it would be great to pass something off to the business teams that they could reference if a particular set of error", "doc_id": "806ac9c6-f9f4-4b6a-ac29-457e0f5cf879", "embedding": null, "doc_hash": "b11ad7382a8c445b9915ce741282299f66fc4826e0584732400454463a72ed60", "extra_info": null, "node_info": {"start": 189988, "end": 194015, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "fb76762e-5f96-4e30-b458-26837b628208", "3": "da25c223-a805-482a-bb28-b3862f33b028"}}, "__type__": "1"}, "da25c223-a805-482a-bb28-b3862f33b028": {"__data__": {"text": "to pass something off to the business teams that they could reference if a particular set of error messages occur. Any infrastructure-related messages would ultimately be handled by the core Splunk team.\nEnterprise, G2.com, \nVerified User, nan, 4.0, The Search app itself is excellent. Our customers also like the charts and graphs available., A few too many apps out there, some supported and some are not, so you must tread carefully with those.\nEnterprise, G2.com, \nVerified User, nan, 5.0, Reliable and robust methods to manage application and service related logs on prod, Learning curve required for newbies in the team\nEnterprise, G2.com, \nVerified User, nan, 4.0, User friendly UI which helped us in monitoring application, Still exploring the app so haven\u2019t explored all options and in progress. So far it\u2019s good.\n\nEnterprise, G2.com, \nVerified User, nan, 5.0, It's pulls all the data and shows it in a report\n, The UI could use an update. However it works great.\n\nEnterprise, G2.com, \nVerified User, nan, 4.0, Splunk makes searching through tons of data very easy.\n, There is a learning curve to create complex queries.\n\nEnterprise, G2.com, \nVerified User, nan, 5.0, The user interface and the querying syntax, Since I am still learning it I will need more time to find andwer to this\n\nEnterprise, G2.com, \nVerified User, nan, 4.0, I really enjoy being able to not only view the logs but identify the personnel that made the changes., I do feel there is more to be desired with the search function.\nEnterprise, G2.com, \nVerified User, nan, 5.0, Log analysis, visualisation , application performance monitoring\n, There is not a feature to dislike on splunk\n\nEnterprise, G2.com, \nManjushri S., Java Software Developer\n, 5.0, Ability to create custom dashboards and monitor logs\n, All features are extremely good do not dislike any\n\nEnterprise, G2.com, \nVerified User, nan, 5.0, Simple easy to use analytics. Visually very pretty and easy to navigate.\n, Current Splunkbase apps need help. Most of the apps simply don't work out of the box and are more templates.\nEnterprise, G2.com, \nVerified User, nan, 4.5, Splunk is very flexible tool which helps our team with effective logging and troubleshooting. It also helps with amazing dashboarding which helps our Business analaysts and Product Owners, Licensing is a little expensive. Support and documentation can be improved too.\n\nEnterprise, G2.com, \nChristina S., Systems Analyst Staff - SW Eng Compute Analytics Lead\n, 5.0, Splunk allows access to all the operational data. It lets you correlate events and set up alerts to help with future issues. It allows for metric tracking and analysis and provides easy to use dashboards., Dashboard design is restrictive. The layout is pretty fixed unless you have admin rights to create style sheets. The UI only lets you do half of the options, you must go into the simple xml for full range of options. Creating drill-ins is not intuitive. Limited out-of-the-box charting options for time series.\nEnterprise, G2.com, \nVerified User, nan, 5.0, Splunk is so easy to use that you will find yourself using it as the first step in every project or problem solving venture. The speed in which answers are realized is amazing and invaluable to fast paced teams or companies., There is never enough time to implement all of the ideas we have for using Splunk! (this is an 'us' problem, not a Splunk problem)\nEnterprise, G2.com, \nNoah W., Data Scientist Intern\n, 5.0, As I said in my title \"The jack of all trades...if you want it to be\" Splunk is so powerful that sometimes it's hard to know where to start! Start small and don't overwhelm yourself, you'll quickly come to appreciate Splunk and all it can do., Many small and annoying bugs. I can work around all of them,", "doc_id": "da25c223-a805-482a-bb28-b3862f33b028", "embedding": null, "doc_hash": "62d8b85c2cb68313431c1be8e06bf21a4fd0104b2a1fdeb2dae5aa3c6186e7aa", "extra_info": null, "node_info": {"start": 194003, "end": 197768, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "806ac9c6-f9f4-4b6a-ac29-457e0f5cf879", "3": "ecb9caf5-ef92-4595-affa-0b60ab364b41"}}, "__type__": "1"}, "ecb9caf5-ef92-4595-affa-0b60ab364b41": {"__data__": {"text": "it can do., Many small and annoying bugs. I can work around all of them, but sometimes I burn an entire day figuring out how.\nEnterprise, G2.com, \nDhwani S., QA Engineer\n, 3.5, I like the most is i can see log anytime without even touching prod environment.\n, Nothing which i can say about Splunk. I really like splunk and i don't have any suggestion for improvement.\nEnterprise, G2.com, \nVerified User, nan, 4.5, If my data is in Splunk then I can answer questions almost at the speed of thought. We have not had a use case where Splunk failed to achieve the results. The quality of the software is high. When someone says Splunk gave me the wrong answer, I usually find that they asked the wrong question., The cost model is prohibitive for some use cases.\n\nEnterprise, G2.com, \nScot L., Senior Consultant\n, 4.5, Splunk Enterprise is the best of what's out there for event correlation. It is very extensible and can take almost any kind of data with a little work. FANTASTIC for searching data and identifying correlations and patterns, or a lack of correlation and patterns to identify the anomalies., It is pretty expensive when you start to ingest all the data and setting up alerts and automated detections is more difficult, but it can be done.\nEnterprise, G2.com, \nVerified User, nan, 5.0, Splunk Enterprise has allowed us to easily sort data from multiple sources in easy to manipulate and view dashboards and reports in way we could never do before., The only thing I can say that I dislike about Splunk is that it has made our customer think that our job is a piece of cake because of how quickly we can answer their questions!\nEnterprise, G2.com, Kyle S., \nIntegration Developer, 5.0, Oh, to begin at the start is akin to creating pottery from clay. Forming the vase of data from the clay of disparity, one can simply design such meaning and substance from meaningless data, and share amongst peers and enemies alike., Sometimes, the rapid evolution causes internal strife, but nary is it a problem, as support and documentation rules all.\nEnterprise, G2.com, \nVerified User, nan, 4.5, Quickly ingest any data ( machine , structured or unstructured), and produce analytics and visualization to drive the business value., It is little bit expensive in terms of License cost but we can still do somethings with the free license limit.\nEnterprise, G2.com, \nVerified User, nan, 5.0, Splunk is simply awesome. You can integrate it with almost all vendors.\n, Norhing to dislike so far so good . But can get better !\n\nEnterprise, G2.com, \nVerified User, nan, 5.0, The dashboards that Splunk uses (that are able to be customized to your needs) are second to none., Splunk has a pricing model where the cost of their software has to do with the amount of data that it ingests. I would rather see something that was done on a node basis rather than total amount of data.\nEnterprise, G2.com, John W., Systems Software Specialist II\n, 3.5, Reports and queries are fast ready when mangemen makes a request.\n, Queries need to be individually customized to specific reports.\nEnterprise, G2.com, \nVikas R., Application Development Analyst\n, 5.0, Great for visualizing any application data that is required and the custom dashboard feature makes it easy to have related reports and queries all in one place.It's easy to understand the interface, graphs are good and can be easily exported. The keywords on the left side are very helpful., I would say query building which might be a steep for non technical user. Also licensing the Splunk software would be little expensive so the best thing would be to start with a small amount of data and see it if works for you or not.\nEnterprise, G2.com, \nVerified User, nan, 4.0, Splunk has thorough logging and makes it very easy to sort and filter based on a specific timeframe., There is a bit of a learning curve to Splunks query", "doc_id": "ecb9caf5-ef92-4595-affa-0b60ab364b41", "embedding": null, "doc_hash": "e98c66fa1b44fd61b4754085f87c89171c000e1bd94e9975270a239ae938c24b", "extra_info": null, "node_info": {"start": 197792, "end": 201660, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "da25c223-a805-482a-bb28-b3862f33b028", "3": "22b17438-5a36-49c6-9fe5-1e599edb22be"}}, "__type__": "1"}, "22b17438-5a36-49c6-9fe5-1e599edb22be": {"__data__": {"text": "based on a specific timeframe., There is a bit of a learning curve to Splunks query language.\nEnterprise, G2.com, \nmatt j., Integration Support Specialist\n, 5.0, Its easy to define the search parameters and to change them on the fly, you can also build graphs to view the progression of the trend. If you use the data often, build a dashboard and consume the data when you need it., you have to remember all the names of the field in the database for a successful query\nEnterprise, G2.com, \nKen C., Senior Technical Engineer, 3.5, Easy to use UI and operation to organize data and visualize it. Also great to use the stored template or report to quickly checkout the reports needed., Sometimes when the data size is large, the response time is slow\nEnterprise, G2.com, Verified User, nan, 4.0, Quick lists of CA Agile data at your finger tips. Splunk gives quick views of queries rapidly., Having to validate the data because it is another way to pull the same CAAC data and you want to make sure the report is accurate.\nEnterprise, G2.com, \nAlexandru O., Senior Software Engineer\n, 4.5, The documentation is really well done and easy to use.\n\nThe UI is slick and fast.\n\nThe ability to easily create dashboards.\n\nThe auto-completion with suggestion while writing the search query\n\nThe left hand menu on the search page containing all the fields detected by the search.\n\nAbility to add/exclude from search the fields extracted from the search results by hovering any text., The time range search could be improved by allowing the following type of input:\n\n\"last 3h\" or \"3d ago\" which is easier to use than applying several clicks to achieve the same results.\nEnterprise, G2.com, \nAman K., Technology Lead\n, 4.0, Checking logs for all applications in one place. Custumizable search by using various input String parameters.\n\nUsing alerts triggered when application encounters certain errors in logs., User Interface and input methods could be more user friendly.\nEnterprise, G2.com, Verified User, nan, 3.5, Able to place logs to help trace bugs in microservices architecture. Has a web interface for searching logs and provides lots of detail., Searching can be difficult at times because of all the options and information to wade through.\nEnterprise, G2.com, \nAlister E., Software Engineering Manager - Test Automation, 5.0, Being able to watch and search real time logs., Since starting to use the tool about 3 years ago, I have not found anything that I would say that I have disliked.\nEnterprise, G2.com, Verified User, nan, 3.5, The best part is it is the single platform to debug any errors in the product be it application or DB or infrastructure or any other middletier third party tools, It\u2019s not much user friendly and takes a while to get used to query the splunk\nEnterprise, G2.com, Verified User, nan, 4.5, Makes monitoring your environment easier with the help of this tools. You don't have to transverse the network looking for hostname to IP or IP to username. This program does it. Moreover, it monitor traffic like a firewall with the rules of the firewall.\n\nBtw, it reads logs from your backup, windows events, and any logs you can throw at it., I don't like that it's still web base. Meaning, if your have a lot of internal traffic, site loads will differ. Your mileage will vary, that is my only complaint about it.\nEnterprise, G2.com, Verified User, nan, 4.5, We use splunk logs day to day basis to analyse and effectively debug issues. We also use it which raising incidents of any failures where we use splunk to get all the required information for developers to debug the issue, sometimes it does not capture the errors correctly which makes it really difficult as we depend on the tool a lotIt will take a while to learn the SPL (Splunk search processing language) but after it is learned, it helps to get a lot of helpful searches. Event correlation is not very easy to grasp without the proper training.\nEnterprise,", "doc_id": "22b17438-5a36-49c6-9fe5-1e599edb22be", "embedding": null, "doc_hash": "28dcdbccc067ee91da7fc98663d8eb38d06510a6f7068598ff7ff6b952b71826", "extra_info": null, "node_info": {"start": 201651, "end": 205595, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "ecb9caf5-ef92-4595-affa-0b60ab364b41", "3": "062c1b51-1d17-41d4-864d-786a1007ab0e"}}, "__type__": "1"}, "062c1b51-1d17-41d4-864d-786a1007ab0e": {"__data__": {"text": "Event correlation is not very easy to grasp without the proper training.\nEnterprise, G2.com, Verified User, nan, 5.0, Dashboards are very helpful. It gives our team a lot of insight into what is happening. The alerting feature is also helpful. It helps to send out an email if there is an increase in threshold, nan\nEnterprise, G2.com, Verified User, nan, 5.0, I love that it is easy to use the tool and that you can search by anything to locate the logs, It provides almost too much information sometimes the info is too abundant and has a lot to wade through\nEnterprise, G2.com, Verified User, nan, 3.0, A simple, flat process to index the data in their native format. This allows allows the platform to be highly scale-able; It can grow with the amount of data it is needed to process. The system can run in dynamic parallel to your environment., Still have to read through many documentation to find the answers and at many times I can't find it. Not highly customized, would be helpful if they can provide more customization tools.\nEnterprise, G2.com, Verified User, nan, 5.0, The ease of use when it trying to search specific information/data, The cost is definitely a factor but overall it's a great product.\nEnterprise, G2.com, Eric W., Senior Network Administrator, 3.5, The add-ons are the best. Some of the information and feedback that the add-ons are able to compile based on all the data that gets injected into Splunk is beyond awesome and very helpful, To start there is a pretty big learning curve in my opinion. The breakdowns in the left hand nav bar definitely helps. But slow to learning the search language.\nEnterprise, G2.com, \nThomas G., Systems Programming Analysis, 5.0, Splunk searches through millions of logs in matter of minutes. Its the essential tool I use at work., It can be ever confusing to use at first. Maybe make a better UI.\nEnterprise, G2.com, Verified User, nan, 4.0, The power and flexibility when it comes to extracting information, The power and flexibility when it comes to extracting information\nEnterprise, G2.com, Verified User, nan, 5.0, What I like about the product is its use for the api dashboard. You can customize your search query and add it to the dashboard and get email notifications everyday (the way we set it)., Missing integration with known IDEs (Netbeans, IntelliJ, JDeveloper..)\nEnterprise, G2.com, Verified User, nan, 4.5, Ability to look up logs and historical records of the same, Nothing much and the software meets its expectation\nEnterprise, G2.com, Verified User, nan, 4.0, If the data is in your logs, you can find it with Splunk. Sometimes I'm just searching for a key phrase in the last 30 days and I can get the answer back within seconds. At other times, I'm using a regex to extract a fraction of complex line and then graph that result to find anomalies and, again, the answer comes back within seconds. Splunk is incredibly powerful and I am constantly learning new things and new ways to use it., The learning curve is incredibly steep. You essentially have an empty search box and you have to know what commands to use (and how to use them) to really get anything useful out of it. It has an alerting feature but it's a little...quirky. There doesn't seem to be a decent way to create live alerts--instead you can have a query run every minute but don't allow it look back more than 1 minute because otherwise you'll get duplicate results.\nEnterprise, G2.com, Verified User, nan, 4.0, Dashboards is very helpful. It gives us a lot of insight into what is happening. Also the alerting feature is also helpful. It helps to send out an email if there is an increase in threshold etc. Setting up file based forwarders is easy. Field extraction is also really great. It helps to analyze the search results., It will take a while to learn the SPL (Splunk search processing language) but after it is learnt, it helps to get a lot of helpful", "doc_id": "062c1b51-1d17-41d4-864d-786a1007ab0e", "embedding": null, "doc_hash": "2180db6ac7b5f338d4fed9a313dd51b9fec3a8d5d3420c7ba1352df918f2ddb4", "extra_info": null, "node_info": {"start": 205591, "end": 209508, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "22b17438-5a36-49c6-9fe5-1e599edb22be", "3": "885f2991-1d81-459e-97c2-c2654ff84e24"}}, "__type__": "1"}, "885f2991-1d81-459e-97c2-c2654ff84e24": {"__data__": {"text": "search processing language) but after it is learnt, it helps to get a lot of helpful searches. Event correlation is not very easy to grasp. Also the search UI is not very intuitive. Sometimes Splunk is not very fast. And also sometimes events timeline doesn't respond well. Patterns can be improved to have more intuitiveness. More formats can be supported to export the results.\nEnterprise, G2.com, Verified User, nan, 4.0, Its easy to pick up and do short/simple queries, and once you get the hang of it, it is an incredibly powerful too. It doesn't really care what it is being used to search through or for, just point it at something, and it will do its job., Splunk is easy to learn, hard to master. Getting from the simple searches to the advanced stuff is very challenging, especially if you teach yourself, but well worth it. Another downside is I wasn't able to find a way to publish records automatically to Jira. It would be incredibly useful to be able to push search results with test reports to Jira tickets\nEnterprise, G2.com, \nParikshith M., Instructional Student Assistant, 4.0, Imagine you have 10 servers running and you need to debug a exception. Wondering how you can login to each and check ? This is where Splunk is extremely handy. It has awesome data analyzing tools. The dashboards are extremely customization friendly ., The queries is difficult to understand to start with. The overall UI itself looks extremely complicated when someone new to it starts using it. But yes, powerful tool will have some complexity , wouldn't it ?\nEnterprise, G2.com, \nTarun G., Software Engineer II, 3.5, Drilling down into specifics of an issue if they are being fed to the splunk server, All the information needed to be shown here needs to be fed to the splunk server, I would prefer if with an annotation it figured out what all to feed to it and what not to\nEnterprise, G2.com, Verified User, nan, 4.0, I like that I can search by each type of field, and find the cause of errors., It has a fairly steep learning curve, but once you learn it, it's powerful\nEnterprise, G2.com, Verified User, nan, 3.5, It has a fairly steep learning curve, but once you learn it, it's powerful, Can get too slow, when running large queries\nEnterprise, G2.com, Verified User, nan, 5.0, The ability to create dashboards based on your logs\n\n- Quick searching of logs\n\n- Easy, easy, easy collection of logs, One of the biggest problems with Splunk is their cost model as they charge by the GB.\nEnterprise, G2.com, \nVerified User , nan, 4.0, Splunk is awesome because it has comprehensive and flexible search functionality., When I think of what I dislike about Splunk, nothing comes to mind.\nEnterprise, G2.com, Verified User, nan, 2.0, Splunk is a useful tool for log aggregation and in general works well, It is an expensive tool as they charge by the amount of data\nEnterprise, G2.com, John M., Senior Ruby/Rails Developer and Project Manager, 3.0, Ability to track trends, create alerts and notifications, share data, ingest data, and get the whole team up to speed., Cost. Learning curve (powerful, but challenging)\nEnterprise, G2.com, Verified User, nan, 4.0, Splunk has an easy to use interface that can hide how powerful the software can be. It is useful for anyone monitoring anything., There is very little I dislike about splunk. I suppose the only thing I think they could improve is make it cheaper so we don't have to worry as much about our data limits.\nEnterprise, G2.com, Verified User, nan, 3.5, The total amount of information that can be processed and parsed up into useful data., It seems that every new product requires me to learn a new syntax or language in order to make full use of a product. This is no different, but it is still useful.\nEnterprise, G2.com, Verified User, nan, 3.5, Splunk is easy to use and allows the mining of", "doc_id": "885f2991-1d81-459e-97c2-c2654ff84e24", "embedding": null, "doc_hash": "dea447c8c6ff8ad20202302de072fb6536b263052a24298e347c9d57807e5186", "extra_info": null, "node_info": {"start": 209513, "end": 213364, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "062c1b51-1d17-41d4-864d-786a1007ab0e", "3": "8f63b22d-fc3f-4988-9c9e-fd21d1915eb4"}}, "__type__": "1"}, "8f63b22d-fc3f-4988-9c9e-fd21d1915eb4": {"__data__": {"text": "User, nan, 3.5, Splunk is easy to use and allows the mining of disparate log files to consolidate reporting and monitoring., Nothing, the product worked very well. Admins were able to set it up and push out the report functionaly.\nEnterprise, G2.com, \nVerified User , nan, 4.0, Relatively light weight and quick. Fairly easy to use and navigate., Expensive. Bit of a learning curve with querying\nEnterprise, G2.com, Verified User, nan, 5.0, A super useful tool to figure out what's happening on production environments, helping us to quickly track and fix production issues that help real customers. It is simple to learn., So far so good, I don't deal with many of the splunk issues that the guy in charge always complains about, i just know it requires high maintenance work and someone with a special set of skills to do so.\nEnterprise, G2.com, \nJessica T., nan, 5.0, Fantastic insight into how our systems our running. Can build custom dashboards and develop powerful search queries., A bit of steep learning curve without good documentation.\nEnterprise, G2.com, Verified User, nan, 4.5, I mainly liked the ability provided for performing searches, overall it was a good tool, but w/data export had some difficulty sharing results\nEnterprise, G2.com, Verified User, nan, 5.0, Graph trending capability of the software, slow performance. take too much time to get useful information\nEnterprise, G2.com, Verified User, nan, 4.5, The ability to capture and examine logs from various sources and turn it into normalized event data. I don't have to comb through several raw logs to find what I'm looking for and you can customize it to fit you organizations exact needs.... great benefit., This may be due to lack of knowledge but the ability to integrate directly with CVEs from the NVD. Maybe there's a data pull that exists that I don't know about. But if that was advertised more or perhaps more knowledge about that then I believe that would be beneficial.\nEnterprise, G2.com, Verified User, nan, 5.0, The ability to customize and built things the way I need them. I am able to search and filter exactly what I need., Honestly there isn't much I can say that I do not like. Sometimes it can be slow depending on my search criteria but somewhat expected. It can also be a bit expensive.\nEnterprise, G2.com, \nMatthew C., Principal Systems Engineer, 4.0, Splunk provides a convenient mechanism for gathering numerous system and software logs. The ability to search historical and real-time logs is a key capability for our monitoring. The custom field extraction and reporting are also a great feature for analysis., Splunk relies on a Perl-based regular expression structure. I can regex just about anything I want in a python regex and routinely am frustrated by Splunk's support of only Perl regex. This translates into a lot of lost time trying to figure out how to get my custom field extract to extract only what I want extracted.\nEnterprise, G2.com, \nVerified User, nan, 2.5, The interface is fairly easy to use and you can access your data from anywhere after you log in. It works well when you don't have a ton of data., The query language is not intuitive and can feel difficult to use. Graphing and charting isn't easy to use either, though it seems like it could be a nice feature.\nEnterprise, G2.com, \nVerified User , nan, 3.5, ease of use and relatively simple learning curve, can be super expensive and the administration of it.\nEnterprise, G2.com, \nVerified User , nan, 4.5, Splunk does a good job of ingesting log data in a variety of formats, without needing to define every field to parse ahead of time. Many modules available to help process common sources, nan\nEnterprise, G2.com, \nZachary C., Web Developer & Designer III, 4.5, The query language, speed, and visualizations are truly amazing. Reporting, alerting, and ability to read any log format known to man just makes it that much better. For more", "doc_id": "8f63b22d-fc3f-4988-9c9e-fd21d1915eb4", "embedding": null, "doc_hash": "0ab87164061d34a99b14f42ddc359248b4e5dbb2f62ea727b32ad125d91b158b", "extra_info": null, "node_info": {"start": 213384, "end": 217309, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "885f2991-1d81-459e-97c2-c2654ff84e24", "3": "4471364f-327d-492d-b746-8f962831fd94"}}, "__type__": "1"}, "4471364f-327d-492d-b746-8f962831fd94": {"__data__": {"text": "and ability to read any log format known to man just makes it that much better. For more advanced and dedicated users, scripting is also available in power shell or python., Not sure there is much to dislike, maybe cost?\nEnterprise, G2.com, \nVerified User , nan, 4.0, Best tool to analyze the application logs., Need easier and intuitive way to dashboard.\nEnterprise, G2.com, \nVerified User , nan, 4.0, It's extremely fast, and reasonably easy to use. Dashboards can be setup to work in realtime, which is fantastic for tracking live events.\n\nResponsive service and generally updates were good., It's not quite fully fledged as a database tool, or our version wasn't anyway. Sub-searches had a 10k limit, so that was occasionally a problem.\nEnterprise, G2.com, \nVerified User, nan, 3.5, Quick although it goes thru a ton of data. Once logs are pulled the info is easy to read and the query run is easily adjusted using the settings on the side., Hard to learn! So hard! I understand that businesses are different but man, I could have used a tutorial on even the basics!\nEnterprise, G2.com, \nVerified User, nan, 5.0, Incredibly powerful, can handle the entirety of a large scale online business data indexing. Can dive into just about any error type and logs to debug whats going on in the business. Good looking dashboards to track statistics, admittedly underutilized., Requires nearly a specialty in the program itself, while it can do just about anything log and data related, it needs classes and instruction to be fully utilized. The query language can be a bit overbearing and needs a bit of time to get used to it. Doesn't get its full potential realized until expertise is obtained.\nEnterprise, G2.com, \nAmel B., Cloud Expert, 4.0, The search query that uses wildcards , filters and time sorting, The fact that you can't extract the full stack trace , or view the log file containing the error at the exact timestamp\nEnterprise, G2.com, \nVerified User, nan, 4.0, The quality of data that stores within splunk and can be searched in so many different ways. It's the only way we can take very granular customer data and pull it to analyze., Not user-friendly if you're non technical. You have to learn how to operate Splunk in the way it reads and that's not intuitive at first.\nEnterprise, G2.com, \nVerified User, nan, 4.0, Its so intuitive and you can search based on so many different criterion, like request ID, hostname etc., Haven't explored it in that much depth that I would dislike anything about it.\nEnterprise, G2.com, \nVadym M., Senior Drupal Developer\n, 4.5, Easy to find anything in your logs! Very nice UI., Takes some time to understand how to query logs. There are many integrations with Splunk, but in one case we needed to write own script.\nEnterprise, G2.com, \nAmeya K., Principal Programmer/Analyst (Big-Data), 4.5, easy to debug the real-time data being logged, high-cost for larger data volume to be indexed in the splunk engine.\nEnterprise, G2.com, \nSalman Q., nan, 5.0, The beautiful charts of your performance , logs or data. Perfectly indexed logs. While i say Perfectly indexed it means you can search any thing out of big data quite easily. For me that is the real power of Splunk., I hate its query interface. Its as powerful as advertised but not very easy to use.\nEnterprise, G2.com, \nVerified User, nan, 2.0, can be used to pull up statistics regarding network nodes, its not user-friendly and needs some training to navigate\n\nuser needs to learn database/sql kind-a search methods to search on the product\n\nsometimes can be frustrating\nEnterprise, G2.com, Collette K., Cyber Security Forensic Lead, 3.5, Easy to create dashboard, alerts, emails of alerts, Ease of importing data, naming of indexes, sources, per log source\nEnterprise,", "doc_id": "4471364f-327d-492d-b746-8f962831fd94", "embedding": null, "doc_hash": "05e06dcdc962b20842f2655802969b1ebee6f7e1840a8e632f27843d44ea2ede", "extra_info": null, "node_info": {"start": 217289, "end": 221064, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "8f63b22d-fc3f-4988-9c9e-fd21d1915eb4", "3": "2040909c-b801-4465-a844-89283f6f469f"}}, "__type__": "1"}, "2040909c-b801-4465-a844-89283f6f469f": {"__data__": {"text": "importing data, naming of indexes, sources, per log source\nEnterprise, G2.com, \nVerified User, nan, 5.0, Splunk is a great product. We have a enterprise license and have been using it from 4 years. Splunk has a great and easy to use user interface. We were able to build many dashboards which give lot of useful information. No need to login to various backend nodes to retrieve logs which are not in a readable format.Using splunk we can access any logging info regardless of which machine that data is stored in. We were able to identify many bugs and issues in our code before our clients saw it and many times before the code is delivered to clients., I do not have any major complaints about splunk.\nEnterprise, G2.com, \nVerified User , nan, 4.5, I do not have any major complaints about splunk., I do not have any major complaints about splunk.\nEnterprise, G2.com, \nVerified User , nan, 2.5, Makes it easy to identify trends within your environment. Once everything is aggregated it makes it easy for example, to see the knock on events of a network outage throughout the environment., Web user interface is a bit clunky. Its very polished interface, but in many cases it's style over substance. When I'm debugging an issue I want to be able to drill down into the problem fast, and the shiny interface can be sluggish and slow you down.h\nEnterprise, G2.com, \nDeborah D., Software Engineer 1, 5.0, I like splunk because it provides a searchable and well indexed storage of application logs, which is what we primarily use to debug production issues. Apart from this, there are several features I love: creating real time alerts in the case of erroneous behaviour, creating dashboards to monitor the release of a new feature, extracting csvs from a set of relevant log events. All this and more is much of what keeps our business running, I think that the error messages on unsuccessful jobs are too detailed for a user. If a job times out, it gives you a message which is a little difficult to understand\nEnterprise, G2.com, \nNoam B., Co-Founder, Server Architect, 3.0, I like the ability to create charts & alerts. Searching logs works nicely and you can find what you are looking for, assuming that you wrote your logs in a key-value manner which splunk can index efficiently., I dislike the query language. I never found it intuitive. I felt it is reinventing the wheel, in a bad way. Also it is far from realtime when there is a lot of data. We have got to as much as 30 minutes delay in seeing the service is having a major problem.\nEnterprise, G2.com, \nVerified User , nan, 2.5, The well designed Dashboards as well as the slick Web UI., It's more geared towards Sysadmins needs rather than being a more generic tool, for example, able to compete in the Web Analytics space.\nEnterprise, G2.com, \nMaurizio M., IT Manager, Database Department\n, 3.5, It's fast, and that it's impressive the first time you use it on your application (or other) log files. It's cool because with just few click You can search trough your \"big data\" log files, but you can also create some reports or dashboards to see what you have to analyse. Pattern and statistics are also cool and useful. You can also zoom on a selected area to go in deep and to do a better analysis on data., We've had some problems the first time to make it work, but when You understand his \"philosophy\" everything is smooth and works. It has a cost - of course - but the product - i think - deserves.\nEnterprise, G2.com, \nVerified User , nan, 4.0, Ease of use. Help documentation . Online resources., Has a bit of a learning curve. Limited number of experts available in the market.\nEnterprise, G2.com, \nVerified User , nan, 3.5, It is useful to have a tool available that is for searching through logs. This makes finding errors in different environments including production or qa environments more streamlined and easier to track., The UI of splunk is not great. The indication that a", "doc_id": "2040909c-b801-4465-a844-89283f6f469f", "embedding": null, "doc_hash": "7395ee02e1b6ac97ee419bb3bd334738f7f6b56968bb3d8990853695278629a1", "extra_info": null, "node_info": {"start": 221074, "end": 225028, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "4471364f-327d-492d-b746-8f962831fd94", "3": "4e6ed601-46ca-40c7-845d-fff5d9f17da9"}}, "__type__": "1"}, "4e6ed601-46ca-40c7-845d-fff5d9f17da9": {"__data__": {"text": "and easier to track., The UI of splunk is not great. The indication that a search is searching is not super obvious. It took me a while to notice the very thin blur status bar. And learning to search with splunk takes reading the tutorials and playing around because it is not very intuitive.\nEnterprise, G2.com, \nBharadwaj (Brad) C., Director Of Engineering/Head of Reliability Engineering, 3.5, migrated to splunk within the last year from an internal inbuilt tool (don't know who made the decision to switch because i personally loved the internal one). It is definitely simple to use and a great way to look for logs for any production issues. The mobile support is a great way to keep up. Lets you customize the search strings that you specifically need and if you are developer, its a great way to pin-point to the exact trace., Quite Expensive; would prefer to have more customization especially with regard to date format. Need better dashboard facilities that can provide diverse reporting/analytics. Learning curve.\nEnterprise, G2.com, \nCliff R., Senior Software Engineer, 4.5, The integration tools made it very easy to consume log files and track performance as well as order throughput. It made some unwieldy data very manageable with reporting, tracking and internal algorithms to track order closure as well as system to system performance., Once you see it work, there is not much to dislike\nEnterprise, G2.com, \nChristian Nahuel P., Software Engineer, 5.0, Splunk is a great tool to monitor apps performance. It has really accurate information, simple and clear dashboards and it is pretty easy to use. Furthermore, it has a really good dashboard for errors with an spectacular stacktrace tool that allows you to symbolicate code., In Mint Splunk you can not customise the metrics. For example, if you are checking popular OS for an App you can only retrieve five results. The same happens with popular App versions or most used devices.\nEnterprise, G2.com, \nVerified User, nan, 3.5, It is quite fast, programmable with python easy to use. It takes only 40 50 min to draw really complicated graphs with it, IT is quite expensive comparing with elk stack and their business model is really weak. The second most important think is that they do not have data tables to represent information filter by fields etc.\nEnterprise, G2.com, \nHaibo Y., Senior Software Engineer, 4.0, Every time when we have production issues, the 1st thing is to open the splunk and check the error messages.\n\nThe other feature is also nice: keep tracking the production environment health status periodically. We did find some potential issues which our client did not report and fix them before our clients finding., The way of displaying the error log sometimes take time to scroll it when opening the item.\nEnterprise, G2.com, \nVerified User, nan, 3.5, search bar and query language\n\n* integrations / add ons\n\n* source code access to splunk enterprise\n\n* source code access to any splunk app, no real good support or process for app development and publishing\n\n* app development is kind of weird and difficult\n\n* really hard to debug configs and/or searches\n\n* splunk doesn't have a solid identity anymore\n\n* overly sales-heavy organisation; hard to find someone to actually help you\n\n* documentation is written in a vacuum mostly, especially in respect to how to run / size it\n\n* big learning curve for users slows adoption\n\n* crap 2FA / SAML / enterprise auth support\n\n* no publicly visible bug or feature request database\nEnterprise, G2.com, Verified User, nan, 2.0, The potential of Splunk is great. A large store of additional plugins., We had some major issues with Splunk cloud and their indexing specifically of objects stored in AWS S3. Support was slow and not very useful. At one point Splunk Cloud introduced a bug that broke all of our logs inputs and it took over a month for them to fix the issue.\n\nThough the potential for Splunk was great on Splunk cloud we couldn't use 90+% of the addon apps and we had constant issues.\nEnterprise, G2.com, \nVerified User, nan, 4.0, easy to", "doc_id": "4e6ed601-46ca-40c7-845d-fff5d9f17da9", "embedding": null, "doc_hash": "7e0ae48d4498646f07805376f4d99914de7f7a5b001609e6321a4913ea21eb12", "extra_info": null, "node_info": {"start": 225031, "end": 229117, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "2040909c-b801-4465-a844-89283f6f469f", "3": "83d4630e-f291-4ba1-b3d2-d3a21d27ab71"}}, "__type__": "1"}, "83d4630e-f291-4ba1-b3d2-d3a21d27ab71": {"__data__": {"text": "G2.com, \nVerified User, nan, 4.0, easy to configure, fast performance. One place to monitor all logs., No in-built statistical/predictive analytics tools\nEnterprise, G2.com, \nRohit V., Senior Software Engineer\n, 3.5, System setup is simple and there is good support for this product. Very easy to analyze data. and create dashboards. Queries execute instantaneously, and the result updates dynamically based on the incoming real time data.\n\nThere are many plugins available (free and paid), which can provide additional insights to data. I like using the Google Maps plugin and WebGL Globe visualization, and I recommend to use that in case the data contains the physical location (latitude and longitude)., It is expensive for commercial use. One needs to be conversant with Unix style commands for using Splunk.\nEnterprise, G2.com, \nArtem G., Staff Software Engineer, 5.0, The fact that it is possible to search on Splunk;\n\nYou don't have to access your actual servers to see logs;\n\nThere are enormous search and reporting capabilities;, It might require certain format to work properly with dates;\n\nDoes not support multiline log entries very well.", "doc_id": "83d4630e-f291-4ba1-b3d2-d3a21d27ab71", "embedding": null, "doc_hash": "67751af0107663ba5da25f31bb43ab3eea9794a85b74ae9a50276cf29f05e834", "extra_info": null, "node_info": {"start": 229136, "end": 230287, "_node_type": "1"}, "relationships": {"1": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2": "4e6ed601-46ca-40c7-845d-fff5d9f17da9"}}, "__type__": "1"}}, "docstore/ref_doc_info": {"755fceaa-f8be-4e0c-82f7-36d891f3a257": {"doc_ids": ["9edd272d-05a9-4bfb-afb5-924aa610c40d", "1b8e8357-b0b8-4c29-a0c1-2224ede28488", "e2cbe48e-ab64-4f6f-9c4d-834c8beb2df2", "81444380-7cb4-4706-8f08-02dc8ef9d443", "e87beadb-a87a-4450-b26e-6bc11fec887a", "f156331b-003f-4068-b430-81ea09cd3acb", "8aa627a8-d6cd-4c5d-bd90-eb2ebad5359e", "e0807126-e648-46de-b5c2-910e4e173d82", "8a4c4d19-0a4b-4938-81ef-11a4d2a82f3e", "5753c053-763a-41fc-881d-6bf57c1d7753", "5f2c5dca-49fb-4725-ae3e-4c1951067bdd", "10e4af3c-d44a-4aff-a0dc-63907a78a16d", "d9212f2b-877e-42b3-bc44-cf84c73b8311", "5a34023f-6c80-4bc8-a9da-f80343581e69", "7b2071b1-da20-49e8-a91e-a277a4a90d15", "02544d89-afa8-46c7-b46f-ef0dcefed681", "4e1099db-41c7-43c0-836f-0d8da4edc74e", "f1a0779e-905c-4c66-9f14-c1fd473f6115", "f8613859-5e96-4bcd-882f-aa600feab1ff", "ea47314c-19e1-4116-ac9a-9b436f91fd74", "652073e8-08c5-49cc-bbc4-ca70d326cd91", "5bd4e401-4e7b-4124-bba6-800f7b04c425", "5b9c6817-960a-4fbb-ada8-c91eaea375f9", "94bd416e-81de-4df9-9af5-eeec685ecf1c", "3b28057a-a366-494d-86cb-fb4ec55da5c2", "84838ed9-c928-4a9e-acd8-8641b036fa23", "bc7a6092-63e8-4c2a-8f18-563f5472822b", "922bc878-0201-49ea-b751-5b4fde16bb6d", "5f6282df-c993-4ad6-ab4e-cc53ae5c1557", "0294ad83-fd66-4219-9f09-778575cf809c", "abb2f36a-947c-41fa-85ef-2275497140fe", "905ad1ac-118c-467b-8a79-3df2be677e83", "bee4eada-eeec-40eb-bda2-271f40acfaba", "8ccaa11a-a6f6-4e1d-ac0a-8591143a2432", "37038a26-361a-4824-b412-45da3a50aa13", "63f92bda-3680-476a-89b7-240dad4835c4", "f565e74a-3b4b-425b-98ec-027ab439c3d9", "d3a7ae68-5174-4258-8292-0a9451e8b916", "07ac6a79-985c-411a-b6c6-5801e689afcf", "802e9005-13d7-4173-bc27-09ab95ea375a", "e9416f76-31dd-45d1-88e8-dbefa2b7a04a", "d8b2233a-0cbd-4e1e-8f13-144507e0ba90", "df2706de-7a67-4837-9162-5b9e36d1a8ed", "343f4d90-69d0-4aed-87d9-6c7896f18cdf", "55c04431-65ee-4d04-ad9d-e26261ad8eed", "9dfaab70-7d70-4e42-86f2-a3c2d961207c", "fb76762e-5f96-4e30-b458-26837b628208", "806ac9c6-f9f4-4b6a-ac29-457e0f5cf879", "da25c223-a805-482a-bb28-b3862f33b028", "ecb9caf5-ef92-4595-affa-0b60ab364b41", "22b17438-5a36-49c6-9fe5-1e599edb22be", "062c1b51-1d17-41d4-864d-786a1007ab0e", "885f2991-1d81-459e-97c2-c2654ff84e24", "8f63b22d-fc3f-4988-9c9e-fd21d1915eb4", "4471364f-327d-492d-b746-8f962831fd94", "2040909c-b801-4465-a844-89283f6f469f", "4e6ed601-46ca-40c7-845d-fff5d9f17da9", "83d4630e-f291-4ba1-b3d2-d3a21d27ab71"], "extra_info": {}}}} \ No newline at end of file diff --git a/index_v2/SplunkEnterprise/index_store.json b/index_v2/SplunkEnterprise/index_store.json new file mode 100644 index 0000000000000000000000000000000000000000..816609d3665ed001bfc29e3905a7683b056dcb43 --- /dev/null +++ b/index_v2/SplunkEnterprise/index_store.json @@ -0,0 +1 @@ +{"index_store/data": {"35a01954-582e-4ccf-920c-0931dfb4ceb5": {"__type__": "vector_store", "__data__": "{\"index_id\": \"35a01954-582e-4ccf-920c-0931dfb4ceb5\", \"summary\": null, \"nodes_dict\": {\"9edd272d-05a9-4bfb-afb5-924aa610c40d\": \"9edd272d-05a9-4bfb-afb5-924aa610c40d\", \"1b8e8357-b0b8-4c29-a0c1-2224ede28488\": \"1b8e8357-b0b8-4c29-a0c1-2224ede28488\", \"e2cbe48e-ab64-4f6f-9c4d-834c8beb2df2\": \"e2cbe48e-ab64-4f6f-9c4d-834c8beb2df2\", \"81444380-7cb4-4706-8f08-02dc8ef9d443\": \"81444380-7cb4-4706-8f08-02dc8ef9d443\", \"e87beadb-a87a-4450-b26e-6bc11fec887a\": \"e87beadb-a87a-4450-b26e-6bc11fec887a\", \"f156331b-003f-4068-b430-81ea09cd3acb\": \"f156331b-003f-4068-b430-81ea09cd3acb\", \"8aa627a8-d6cd-4c5d-bd90-eb2ebad5359e\": \"8aa627a8-d6cd-4c5d-bd90-eb2ebad5359e\", \"e0807126-e648-46de-b5c2-910e4e173d82\": \"e0807126-e648-46de-b5c2-910e4e173d82\", \"8a4c4d19-0a4b-4938-81ef-11a4d2a82f3e\": \"8a4c4d19-0a4b-4938-81ef-11a4d2a82f3e\", \"5753c053-763a-41fc-881d-6bf57c1d7753\": \"5753c053-763a-41fc-881d-6bf57c1d7753\", \"5f2c5dca-49fb-4725-ae3e-4c1951067bdd\": \"5f2c5dca-49fb-4725-ae3e-4c1951067bdd\", \"10e4af3c-d44a-4aff-a0dc-63907a78a16d\": \"10e4af3c-d44a-4aff-a0dc-63907a78a16d\", \"d9212f2b-877e-42b3-bc44-cf84c73b8311\": \"d9212f2b-877e-42b3-bc44-cf84c73b8311\", \"5a34023f-6c80-4bc8-a9da-f80343581e69\": \"5a34023f-6c80-4bc8-a9da-f80343581e69\", \"7b2071b1-da20-49e8-a91e-a277a4a90d15\": \"7b2071b1-da20-49e8-a91e-a277a4a90d15\", \"02544d89-afa8-46c7-b46f-ef0dcefed681\": \"02544d89-afa8-46c7-b46f-ef0dcefed681\", \"4e1099db-41c7-43c0-836f-0d8da4edc74e\": \"4e1099db-41c7-43c0-836f-0d8da4edc74e\", \"f1a0779e-905c-4c66-9f14-c1fd473f6115\": \"f1a0779e-905c-4c66-9f14-c1fd473f6115\", \"f8613859-5e96-4bcd-882f-aa600feab1ff\": \"f8613859-5e96-4bcd-882f-aa600feab1ff\", \"ea47314c-19e1-4116-ac9a-9b436f91fd74\": \"ea47314c-19e1-4116-ac9a-9b436f91fd74\", \"652073e8-08c5-49cc-bbc4-ca70d326cd91\": \"652073e8-08c5-49cc-bbc4-ca70d326cd91\", \"5bd4e401-4e7b-4124-bba6-800f7b04c425\": \"5bd4e401-4e7b-4124-bba6-800f7b04c425\", \"5b9c6817-960a-4fbb-ada8-c91eaea375f9\": \"5b9c6817-960a-4fbb-ada8-c91eaea375f9\", \"94bd416e-81de-4df9-9af5-eeec685ecf1c\": \"94bd416e-81de-4df9-9af5-eeec685ecf1c\", \"3b28057a-a366-494d-86cb-fb4ec55da5c2\": \"3b28057a-a366-494d-86cb-fb4ec55da5c2\", \"84838ed9-c928-4a9e-acd8-8641b036fa23\": \"84838ed9-c928-4a9e-acd8-8641b036fa23\", \"bc7a6092-63e8-4c2a-8f18-563f5472822b\": \"bc7a6092-63e8-4c2a-8f18-563f5472822b\", \"922bc878-0201-49ea-b751-5b4fde16bb6d\": \"922bc878-0201-49ea-b751-5b4fde16bb6d\", \"5f6282df-c993-4ad6-ab4e-cc53ae5c1557\": \"5f6282df-c993-4ad6-ab4e-cc53ae5c1557\", \"0294ad83-fd66-4219-9f09-778575cf809c\": \"0294ad83-fd66-4219-9f09-778575cf809c\", \"abb2f36a-947c-41fa-85ef-2275497140fe\": \"abb2f36a-947c-41fa-85ef-2275497140fe\", \"905ad1ac-118c-467b-8a79-3df2be677e83\": \"905ad1ac-118c-467b-8a79-3df2be677e83\", \"bee4eada-eeec-40eb-bda2-271f40acfaba\": \"bee4eada-eeec-40eb-bda2-271f40acfaba\", \"8ccaa11a-a6f6-4e1d-ac0a-8591143a2432\": \"8ccaa11a-a6f6-4e1d-ac0a-8591143a2432\", \"37038a26-361a-4824-b412-45da3a50aa13\": \"37038a26-361a-4824-b412-45da3a50aa13\", \"63f92bda-3680-476a-89b7-240dad4835c4\": \"63f92bda-3680-476a-89b7-240dad4835c4\", \"f565e74a-3b4b-425b-98ec-027ab439c3d9\": \"f565e74a-3b4b-425b-98ec-027ab439c3d9\", \"d3a7ae68-5174-4258-8292-0a9451e8b916\": \"d3a7ae68-5174-4258-8292-0a9451e8b916\", \"07ac6a79-985c-411a-b6c6-5801e689afcf\": \"07ac6a79-985c-411a-b6c6-5801e689afcf\", \"802e9005-13d7-4173-bc27-09ab95ea375a\": \"802e9005-13d7-4173-bc27-09ab95ea375a\", \"e9416f76-31dd-45d1-88e8-dbefa2b7a04a\": \"e9416f76-31dd-45d1-88e8-dbefa2b7a04a\", \"d8b2233a-0cbd-4e1e-8f13-144507e0ba90\": \"d8b2233a-0cbd-4e1e-8f13-144507e0ba90\", \"df2706de-7a67-4837-9162-5b9e36d1a8ed\": \"df2706de-7a67-4837-9162-5b9e36d1a8ed\", \"343f4d90-69d0-4aed-87d9-6c7896f18cdf\": \"343f4d90-69d0-4aed-87d9-6c7896f18cdf\", \"55c04431-65ee-4d04-ad9d-e26261ad8eed\": \"55c04431-65ee-4d04-ad9d-e26261ad8eed\", \"9dfaab70-7d70-4e42-86f2-a3c2d961207c\": \"9dfaab70-7d70-4e42-86f2-a3c2d961207c\", \"fb76762e-5f96-4e30-b458-26837b628208\": \"fb76762e-5f96-4e30-b458-26837b628208\", \"806ac9c6-f9f4-4b6a-ac29-457e0f5cf879\": \"806ac9c6-f9f4-4b6a-ac29-457e0f5cf879\", \"da25c223-a805-482a-bb28-b3862f33b028\": \"da25c223-a805-482a-bb28-b3862f33b028\", \"ecb9caf5-ef92-4595-affa-0b60ab364b41\": \"ecb9caf5-ef92-4595-affa-0b60ab364b41\", \"22b17438-5a36-49c6-9fe5-1e599edb22be\": \"22b17438-5a36-49c6-9fe5-1e599edb22be\", \"062c1b51-1d17-41d4-864d-786a1007ab0e\": \"062c1b51-1d17-41d4-864d-786a1007ab0e\", \"885f2991-1d81-459e-97c2-c2654ff84e24\": \"885f2991-1d81-459e-97c2-c2654ff84e24\", \"8f63b22d-fc3f-4988-9c9e-fd21d1915eb4\": \"8f63b22d-fc3f-4988-9c9e-fd21d1915eb4\", \"4471364f-327d-492d-b746-8f962831fd94\": \"4471364f-327d-492d-b746-8f962831fd94\", \"2040909c-b801-4465-a844-89283f6f469f\": \"2040909c-b801-4465-a844-89283f6f469f\", \"4e6ed601-46ca-40c7-845d-fff5d9f17da9\": \"4e6ed601-46ca-40c7-845d-fff5d9f17da9\", \"83d4630e-f291-4ba1-b3d2-d3a21d27ab71\": \"83d4630e-f291-4ba1-b3d2-d3a21d27ab71\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} \ No newline at end of file diff --git a/index_v2/SplunkEnterprise/vector_store.json b/index_v2/SplunkEnterprise/vector_store.json new file mode 100644 index 0000000000000000000000000000000000000000..ad0b30f59003190d6f6a40b59c3c5c0449a9db32 --- /dev/null +++ b/index_v2/SplunkEnterprise/vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {"9edd272d-05a9-4bfb-afb5-924aa610c40d": [0.003666970180347562, -0.0036065257154405117, 0.03237142041325569, -0.028825340792536736, -0.00872416514903307, 0.030867023393511772, 0.0008772856672294438, -0.032801248133182526, -0.01061809528619051, -0.030974481254816055, 0.01231725886464119, 0.02791195549070835, -0.0005486183799803257, -0.008032411336898804, -0.02364053949713707, 0.008475670590996742, 0.022955501452088356, -0.026541879400610924, -0.0045669227838516235, -0.013626891188323498, -0.02906711958348751, 0.00648100022226572, -0.01571558602154255, 0.010430045425891876, -0.023237576708197594, 0.01584990695118904, 0.001442274427972734, -0.007219767197966576, -0.014224620535969734, 0.013875385746359825, 0.005500455386936665, -0.0035595132503658533, -0.011175528168678284, -0.005282183177769184, -0.029174575582146645, 0.007199618965387344, 0.014318645931780338, -0.01272022258490324, 0.013398544862866402, -0.004476255737245083, 0.017488626763224602, 0.0033714633900672197, -0.0038650939241051674, -0.013304520398378372, -0.02576281689107418, 0.023398762568831444, -0.0007089643622748554, 0.002132349880412221, -0.006548161152750254, 0.0014599041314795613, -0.00819359626621008, -0.018885567784309387, -0.02973872609436512, 0.020900387316942215, 0.0018485962646082044, -0.015903636813163757, 0.018710950389504433, -0.0006203962839208543, 0.013767927885055542, -0.007777200546115637, 0.008677152916789055, 0.00792495347559452, -0.007454829290509224, -0.005601196084171534, -0.018590060994029045, -0.03041033074259758, -0.017179688438773155, -0.010510638356208801, -0.012928420677781105, 0.000749680504668504, 0.04494389146566391, 0.038227830082178116, 0.007636163383722305, 0.005641492549329996, -0.029631268233060837, -0.016239440068602562, -0.013942546211183071, -0.010289007797837257, -0.024983752518892288, 0.01388881728053093, 0.005218380596488714, -0.015285758301615715, -0.033929549157619476, 0.001496842480264604, 0.025722520425915718, 0.010940466076135635, 0.027320941910147667, 0.010470341891050339, -0.023989776149392128, 0.0076092989183962345, 0.0008806437253952026, -0.009462932124733925, 0.028502969071269035, 0.014681313186883926, -0.002971857786178589, 0.015903636813163757, 0.01867065392434597, 0.008865202777087688, -0.009536809287965298, -0.033956412225961685, -0.01445296686142683, -0.004644157364964485, -0.028126869350671768, -0.02017505280673504, -0.025776248425245285, -0.009093549102544785, 0.018643788993358612, -0.017139391973614693, 0.01931539550423622, 0.015339487232267857, -0.027697041630744934, 0.03516530245542526, -0.004865787457674742, -0.007085446268320084, 0.014614151790738106, -0.016078254207968712, 0.027347806841135025, -0.04274102300405502, -0.01844230853021145, -0.011175528168678284, 0.016602106392383575, 0.002134028822183609, 0.026286669075489044, -0.025400148704648018, 0.027307510375976562, 0.014103731140494347, 0.017784133553504944, -0.023747997358441353, 0.016534946858882904, -0.02296893484890461, -0.01536635123193264, 0.0013322989689186215, 0.01809307187795639, 0.01580961048603058, -0.005853048525750637, 0.0022683502174913883, -0.02107500471174717, 0.006309740711003542, -0.010369600728154182, -0.027858227491378784, 0.038254693150520325, 0.02274058759212494, 0.012612765654921532, -0.013512717559933662, -0.009395771659910679, 0.01777070201933384, 0.008280904963612556, 0.020416829735040665, 0.004748256411403418, 0.011108367703855038, 0.022216735407710075, -0.030356602743268013, -0.012364271096885204, 0.0050269728526473045, 0.005020256619900465, -0.006883963942527771, 0.0027401535771787167, 0.019355691969394684, -0.006860457826405764, -0.011860566213726997, -0.00727349566295743, 0.0009461253066547215, -0.010430045425891876, 0.0038281555753201246, -0.006944408640265465, 0.03223710134625435, 0.008489103056490421, -0.01087330561131239, -0.0074615455232560635, -0.0009822241263464093, -0.0001162718326668255, 0.03556826710700989, -0.02960440330207348, 0.012834395281970501, 0.008294337429106236, -0.010416612960398197, 0.011054638773202896, 0.013223927468061447, -0.018536332994699478, -0.03333853557705879, 0.014157460071146488, -0.0035930934827774763, -0.002009781775996089, 0.014721609652042389, 0.0009251376031897962, -0.029040254652500153, 0.024392738938331604, 0.0055642579682171345, -0.002647807588800788, -0.011054638773202896, 0.010544218122959137, 0.01991984248161316, -0.014506694860756397, -0.012095628306269646, -0.6301278471946716, -0.0074279652908444405, 0.01578274741768837, -0.01642748899757862, 0.010080809704959393, 0.0002824943803716451, 0.023022662848234177, -0.007595866918563843, -0.0003840748395305127, 0.025413580238819122, 0.017851294949650764, 0.007521990220993757, -0.0038012913428246975, -0.0029265242628753185, -0.010416612960398197, -0.012250098399817944, -0.004677737597376108, -0.034439969807863235, -0.01321721076965332, -0.0002487041929271072, -0.03194159269332886, 0.02315698377788067, -0.0055306777358055115, 0.00038323531043715775, -0.0074279652908444405, -0.02005416341125965, 0.04228432849049568, -0.009597253054380417, 0.010665107518434525, 0.01953030936419964, -0.024688245728611946, 0.015554401092231274, 0.00497324438765645, 0.008018978871405125, 0.0449170283973217, -0.011793405748903751, -0.018804974853992462, 0.028046278282999992, 0.019624335691332817, 0.04381559416651726, -0.02620607614517212, -0.01568872295320034, 0.020121322944760323, 0.012243381701409817, -0.012162789702415466, 0.006548161152750254, 0.026098620146512985, 0.0006199765484780073, -0.010127822868525982, -0.009758438915014267, 0.016252871602773666, -0.010241995565593243, -0.011027774773538113, -0.0002562597510404885, 0.0010485452366992831, -0.014855930581688881, 0.01959747076034546, -0.03226396441459656, 0.007105594035238028, 0.0081801638007164, -1.5583364074700512e-05, 0.006262728478759527, -0.020712336525321007, -0.03524589538574219, -0.056253738701343536, 0.008905499242246151, 0.012082196772098541, -0.02877161279320717, 0.013835089281201363, -0.03092075139284134, 0.045373719185590744, -0.006538087036460638, 0.0037475628778338432, -0.015232030302286148, 0.008092855103313923, 0.007978682406246662, 0.03269379213452339, -0.011867282912135124, -0.004889293573796749, 0.01127626933157444, -0.003938970621675253, -0.03551453724503517, -0.02585684135556221, -0.0013608421431854367, 0.015836475417017937, 0.02521209977567196, -0.012908272445201874, 0.001799904741346836, -0.0007530385046266019, 0.0029903268441557884, 0.008965943939983845, 0.048140738159418106, -0.012525456957519054, -0.03575631603598595, -0.022109277546405792, 0.03387581929564476, -0.01899302564561367, -0.006158629432320595, -0.029013389721512794, -0.014009706676006317, -0.015218597836792469, -0.02257940173149109, -0.0003179635968990624, 0.002432893728837371, 0.023237576708197594, 0.012948568910360336, -0.0015388178871944547, -0.019624335691332817, 0.024164393544197083, -0.04182763770222664, -0.0052922572940588, -0.01023527979850769, -0.021477967500686646, -0.012270246632397175, 0.019584039226174355, -0.023600244894623756, 0.0035930934827774763, -0.0025588199496269226, 0.014372373931109905, -0.03153863176703453, 0.007098878268152475, -0.005174726247787476, 0.01610511727631092, 0.003908748272806406, 0.007031717337667942, 0.010900169610977173, 0.0018183739157393575, 0.004137094598263502, 0.010262143798172474, -0.0016026204684749246, 0.0043755145743489265, -0.03919494152069092, 0.011155379936099052, -0.005265393294394016, 0.020645176991820335, -0.007051865570247173, 0.021854067221283913, -0.005601196084171534, -0.0003991859848611057, -0.03718012198805809, -0.014587287791073322, -0.00234558479860425, 0.012713506817817688, -0.013015729375183582, -0.008495818823575974, -0.03637419641017914, -0.0280731413513422, 0.012323974631726742, -0.014063434675335884, -0.008710733614861965, -0.018872136250138283, -0.002607511356472969, -0.00412366259843111, 0.027092596516013145, -0.008495818823575974, 0.00051209976663813, 0.012646346352994442, -0.05689848214387894, -0.006397049408406019, -0.03852333500981331, -0.01744833029806614, 0.015406647697091103, -0.01899302564561367, -0.008314485661685467, -0.015326054766774178, -0.005396356340497732, 0.008515967056155205, -0.01811993680894375, -0.007266779895871878, -0.025413580238819122, 0.018912432715296745, -0.005876554641872644, -0.0017864726250991225, 0.027401534840464592, -0.01010767463594675, 0.02527925930917263, -0.022122710943222046, -0.004355366807430983, 0.007441397290676832, -0.004331860225647688, 0.005288899410516024, 0.010094242170453072, -0.011061355471611023, 0.0034050438553094864, 0.027992548421025276, 0.010134538635611534, 0.005960505455732346, 0.0179587509483099, -0.017394602298736572, 0.011968023143708706, 0.011538195423781872, -0.00010798169387271628, -0.005614628549665213, 0.02088695392012596, -0.022633131593465805, 0.014211188070476055, -0.03508470952510834, 0.01716625690460205, -0.00011753109720302746, 0.0006724457489326596, 0.011867282912135124, 0.025937434285879135, -0.017784133553504944, -0.001380990375764668, 3.323926284792833e-05, -0.015661858022212982, 0.013210495002567768, -0.020645176991820335, 0.025964297354221344, 0.003609883598983288, 0.005345985759049654, 0.009207721799612045, -0.012955284677445889, 1.5242313565977383e-05, 0.019301963970065117, 0.030678974464535713, 0.012129209004342556, 0.014251484535634518, -0.004321786109358072, 0.007629447150975466, 0.007354088593274355, -0.0099464887753129, 0.03787859156727791, -0.013915681280195713, -0.005705295130610466, 0.03959790617227554, -0.012800815515220165, 0.03782486543059349, 0.0030490923672914505, -0.007951818406581879, 0.006474284455180168, 0.04531998932361603, 0.02428528293967247, 0.013049310073256493, 0.03884570673108101, 0.03868452087044716, 0.025521038100123405, -0.013143334537744522, 0.0283955130726099, -0.0006229148129932582, 0.001830127090215683, 0.016440920531749725, 0.0158767718821764, -0.013848520815372467, 0.029282033443450928, -0.0005079022375866771, 0.005275467410683632, 0.0058899871073663235, -0.00727349566295743, 0.009590537287294865, 0.01049049012362957, -0.01860349252820015, -0.012377703562378883, -0.015769315883517265, 0.01603795774281025, -0.02056458406150341, 0.016064822673797607, 0.012142641469836235, 0.014238053001463413, 0.019395988434553146, 0.012780667282640934, -0.027804499492049217, 0.01445296686142683, -0.007300360128283501, 0.022754020988941193, -1.0539758477534633e-05, -0.01060466282069683, -0.027025435119867325, -0.012525456957519054, -0.015017116442322731, -0.008462239056825638, -0.017045367509126663, 0.002674671821296215, -0.0031649444717913866, -0.006786581128835678, -0.0005880752578377724, 0.004556848667562008, 0.029550675302743912, -0.016051389276981354, 0.013694051653146744, -0.021545128896832466, -0.017394602298736572, 0.025292692705988884, 0.016763292253017426, 0.002034967066720128, -0.030007367953658104, -0.014493263326585293, -0.009697994217276573, 0.0007291125366464257, 0.002081979298964143, -0.009872611612081528, -0.004116946365684271, -0.0011047923471778631, -0.0004289885109756142, 0.0013155087362974882, 0.013747780583798885, 0.04792582243680954, -0.022888341918587685, 0.004116946365684271, 0.013432125560939312, -0.004348650574684143, 0.018966160714626312, -0.015151437371969223, -0.026326965540647507, 0.032290827482938766, -0.03341912850737572, -0.028691019862890244, -0.028637291863560677, -0.023425625637173653, -0.02775077149271965, 0.007481693755835295, -0.018307985737919807, -0.03540708124637604, -0.015742450952529907, -0.02671649679541588, 0.02687768265604973, 0.0030490923672914505, -0.0001955003826878965, 0.02534642070531845, 0.010597947053611279, -0.009597253054380417, -0.024916592985391617, 0.010705403983592987, 0.03618614375591278, 0.07575718313455582, 0.004412453155964613, 0.00551052950322628, 0.01617227867245674, -0.01244486402720213, -0.02691797912120819, -0.01991984248161316, -0.020994411781430244, 0.03967849910259247, 0.002436251612380147, -0.02668963372707367, 0.0014439534861594439, 0.0006413839873857796, -0.007327224127948284, 0.01661553978919983, 0.0007719274726696312, -0.013479137793183327, -0.012203086167573929, 0.0066153216175735, 0.0045702806673944, 0.030490923672914505, -0.012364271096885204, 0.015299190767109394, 0.013942546211183071, 0.015299190767109394, 0.013902249746024609, 0.03766367956995964, 0.015930499881505966, 0.011007626540958881, -0.02338532917201519, -0.01943628489971161, 0.027025435119867325, 0.0018385221483185887, 0.007629447150975466, -0.02576281689107418, 0.026313534006476402, -0.009234585799276829, -0.011625504121184349, -0.0075421384535729885, 0.017300577834248543, 0.009120413102209568, 0.041048575192689896, 0.0043049962259829044, 0.0013608421431854367, 0.0033378831576555967, -0.01366718765348196, -0.005443368572741747, 0.015164868906140327, -0.025910569354891777, -0.011726245284080505, 0.03151176497340202, 0.01273365505039692, -0.018402012065052986, 0.01511114090681076, -0.001018323004245758, -0.010302440263330936, 0.0006745445425622165, 0.004029637668281794, -0.029873047024011612, -0.02444646880030632, -0.027697041630744934, -0.001232397509738803, -0.011047923006117344, -0.002050078008323908, -0.0038650939241051674, -0.011014342308044434, -0.003972550854086876, -0.010194983333349228, -0.024997185915708542, 0.01770354062318802, -0.0032472163438796997, -0.034117598086595535, -0.028341785073280334, -0.003117932006716728, 0.03551453724503517, 0.01603795774281025, -0.006259370129555464, -0.0037072666455060244, -0.0022045476362109184, 0.023506218567490578, 0.018361715599894524, -0.017018502578139305, 0.010483773425221443, -0.03951731324195862, -0.00034146980033256114, -0.01580961048603058, -0.009771871380507946, -0.003784501226618886, 0.004576996434479952, -0.005161294247955084, -0.00660860538482666, -0.003985983319580555, 0.003146475413814187, 0.0099464887753129, 0.011229257099330425, 0.026461286470294, 0.0248628631234169, -0.024097232148051262, 0.02694484405219555, -0.03983968496322632, 0.017085663974285126, -0.014909658581018448, -0.0021877572871744633, -0.01405000314116478, 0.011860566213726997, 0.005057195201516151, -0.008650288917124271, -0.0037307727616280317, -0.001560645061545074, 0.008119720034301281, 0.01469474472105503, 0.011994888074696064, 0.00551052950322628, -0.00616870354861021, 0.0365622453391552, -0.026568744331598282, 0.0007916558533906937, 0.011457602493464947, 0.025709087029099464, -0.001233236980624497, -0.02451362833380699, -0.011927727609872818, 0.018590060994029045, 0.011968023143708706, 0.0025386717170476913, 0.017918454483151436, 0.014345509931445122, -0.006937692873179913, -0.018710950389504433, 0.010255428031086922, -0.010853157378733158, 0.023398762568831444, -0.013929113745689392, -0.011625504121184349, -0.017784133553504944, 0.011880714446306229, -0.01597079634666443, 0.004593786783516407, -0.019973570480942726, -0.008160016499459743, -0.027253782376646996, 0.01486936304718256, 0.015567833557724953, -0.002369091147556901, -0.0006527173100039363, -0.0255076065659523, -0.01610511727631092, 0.013405260629951954, -0.0004378033336251974, 0.019234802573919296, -0.00897937547415495, -0.004080008249729872, 0.003935612738132477, -0.005480307154357433, -0.010336020030081272, -0.028368648141622543, -0.0194094218313694, -0.005379565991461277, 0.064151830971241, -0.008737597614526749, 0.0024060294963419437, -0.00538292434066534, 0.011289700865745544, -0.004707959946244955, -0.01726028136909008, -0.005265393294394016, -0.03906061872839928, -0.01889899931848049, 0.01885870471596718, -0.0008890387834981084, 0.014103731140494347, 0.0038247976917773485, -0.00311625306494534, 0.012525456957519054, -0.0010124464752152562, 0.028502969071269035, -0.018106505274772644, 0.006850383710116148, -0.033634040504693985, -0.03889943286776543, -0.013821656815707684, 0.045346856117248535, -0.0024228196125477552, 0.014385806396603584, -0.03242515027523041, 0.007166038732975721, -0.001380990375764668, 0.0015547685325145721, 0.031028209254145622, 0.00503704696893692, 0.025427013635635376, -0.012129209004342556, -0.004822133108973503, 0.014399237930774689, -0.010275575332343578, -0.014439534395933151, 0.006289592478424311, -0.042875342071056366, -0.018469171598553658, 0.01527232676744461, 0.04252610728144646, 0.007179470732808113, -0.004617292899638414, 0.014251484535634518, -0.0033714633900672197, 0.027347806841135025, -0.010047229938209057, -0.028314920142292976, 0.012438148260116577, -0.015191733837127686, -0.00701828533783555, -0.013438841328024864, -0.035433948040008545, 0.009778587147593498, -0.020739201456308365, -0.010114390403032303, 0.01353958249092102, 0.008589844219386578, -0.023049527779221535, -0.008643572218716145, 0.03089388832449913, 0.020578015595674515, 0.04061874747276306, 0.004446033388376236, 0.02643442153930664, 0.014170892536640167, 0.004687811713665724, -0.006977988872677088, -0.03006109595298767, 0.003720698645338416, -0.021666018292307854, 0.0010888417018577456, 0.04464838281273842, -0.013586594723165035, -0.014224620535969734, 0.01716625690460205, -0.008294337429106236, 0.004449391271919012, -0.028664154931902885, 0.014385806396603584, 0.015648426488041878, -0.005708653014153242, -0.03218337148427963, -0.024647949263453484, 0.004298279993236065, 0.03323107957839966, -0.012646346352994442, 0.021666018292307854, -0.0019661274272948503, -0.004738182295113802, -0.0023153626825660467, 0.06425929069519043, -0.010779280215501785, 0.02165258675813675, -0.0026931411121040583, -0.0020651891827583313, -0.014990251511335373, 0.006910828407853842, -0.014076867140829563, -0.03178040683269501, 0.010819576680660248, 0.021088436245918274, -0.016924478113651276, 0.015191733837127686, 0.00010021624621003866, 0.01124268863350153, -0.014358941465616226, -0.006044456269592047, -0.014278349466621876, 0.0283955130726099, 0.001169434399344027, 0.01021513156592846, -0.007696607615798712, -0.0006883963942527771, 0.018455740064382553, -0.031807273626327515, -0.010785996913909912, 0.011424022726714611, -0.0011341751087456942, 0.010826293379068375, 0.01966463215649128, 0.00222133775241673, -9.628105181036517e-05, -0.008455522358417511, 0.01337839663028717, -0.013049310073256493, 0.009684562683105469, -0.0011308169923722744, -0.0035024266690015793, -0.03704580292105675, -0.030840160325169563, -0.0020803003571927547, 0.0012407925678417087, 0.001801583799533546, -0.006007518153637648, -0.019879546016454697, -0.006554876919835806, 0.034090735018253326, -0.021249622106552124, -0.022297328338027, 0.018952729180455208, 0.006061246618628502, -0.041236624121665955, 0.018388578668236732, 0.006773149129003286, -0.007327224127948284, 0.039248671382665634, 0.008972659707069397, -0.033768363296985626, -0.002105485647916794, 0.010819576680660248, -0.005251960828900337, 0.011477750726044178, -0.006266086362302303, -0.016252871602773666, -0.0007236557430587709, 0.004006131552159786, -0.005480307154357433, -0.008146584033966064, -0.00824732519686222, -0.006064604502171278, -0.006192209664732218, 0.01998700201511383, -0.022028684616088867, 0.01848260499536991, -0.013338100165128708, 0.030974481254816055, -0.01536635123193264, -0.043681271374225616, -0.02488972805440426, -0.03613241761922836, -0.019100481644272804, -0.006732852663844824, -0.014412670396268368, 0.013237359002232552, -0.02858356200158596, -0.0039792670868337154, 0.01405000314116478, -0.0023355106823146343, 4.6697623474756256e-05, 0.015769315883517265, -0.0140365706756711, 0.011329997330904007, 0.0137947928160429, 0.0033513151574879885, -0.03771740943193436, -0.01231725886464119, -0.008482387289404869, -0.023183848708868027, 0.007622730918228626, -0.022525673732161522, 0.0401083268225193, 0.02313011884689331, -0.019866112619638443, -0.02239135280251503, -0.015702154487371445, -0.0362398736178875, -0.00950994435697794, -0.021034708246588707, 0.02906711958348751, 0.027885092422366142, 0.025238962844014168, 0.020255645737051964, 0.04018891975283623, -0.007864509709179401, 0.015406647697091103, -0.019127346575260162, -0.0019258309621363878, -0.013129902072250843, -0.044057369232177734, 0.00702500157058239, -0.022015253081917763, -0.03306989371776581, -0.006457494106143713, 0.013660470955073833, -0.018428875133395195, 0.01924823597073555, 0.022861476987600327, -0.02724035084247589, -0.017891591414809227, -0.008240608498454094, 0.011571776121854782, 0.021088436245918274, 0.024782270193099976, 0.02296893484890461, -0.025897137820720673, -0.00041303783655166626, 0.012820963747799397, -0.0137947928160429, -0.01703193411231041, 0.02791195549070835, 0.030974481254816055, 0.0028073142748326063, 0.02345249056816101, -0.008274189196527004, -0.018966160714626312, -0.006853742059320211, -0.00897937547415495, 0.008878634311258793, -0.00015520400484092534, 0.0018469172064214945, 0.0280731413513422, 0.0005612109671346843, -0.009724858216941357, -0.018428875133395195, 0.009409204125404358, 0.007582434453070164, 0.006135123316198587, 0.012935136444866657, -0.02220330387353897, -0.001137533108703792, -0.017851294949650764, 0.007300360128283501, 0.01684388518333435, -0.028126869350671768, -0.0044393171556293964, 0.007286928128451109, -0.006135123316198587, -0.01414402760565281, 0.006682482082396746, -0.005329195875674486, -0.007730187848210335, -0.009859180077910423, 0.004751614294946194, -0.0179587509483099, 0.009395771659910679, 0.007783916778862476, -0.01950344629585743, -0.00377778522670269, -0.00450647808611393, -0.004190823063254356, -0.035433948040008545, 0.008314485661685467, 0.009899476543068886, -0.020483991131186485, 0.011867282912135124, 0.1882646679878235, -0.003062524599954486, 0.02662247233092785, 0.02329130470752716, 0.01969149522483349, 0.008522683754563332, -0.013116470538079739, 0.016655834391713142, -0.005131071899086237, 0.006289592478424311, 0.020940683782100677, 0.013942546211183071, -0.023089822381734848, -0.0006069641676731408, -0.0022079055197536945, -0.0120284678414464, -0.021867500618100166, -0.021934660151600838, -0.003808007575571537, 0.0017864726250991225, 0.007011569570749998, -0.013492569327354431, -0.0017394601600244641, 0.0013406940270215273, 0.019557174295186996, 0.019006457179784775, 0.010752416215837002, 0.01943628489971161, 0.026770224794745445, 0.030464060604572296, -0.0056314184330403805, 0.0042076134122908115, 0.016346896067261696, -0.026609040796756744, -0.01167923305183649, -0.011524763889610767, 0.019355691969394684, -0.007260063663125038, 0.014775337651371956, 0.006390333641320467, -0.01164565235376358, -0.02072576992213726, 0.022848045453429222, -0.027804499492049217, 0.00790480524301529, 0.0016907687531784177, -0.011464319191873074, -0.009348759427666664, 0.018361715599894524, 0.020443694666028023, -0.002337189856916666, 0.00041261810110881925, 0.01597079634666443, 0.0028106721583753824, -0.0028073142748326063, 0.002253239043056965, -0.009583821520209312, 0.023237576708197594, -0.010853157378733158, 0.0045534903183579445, -0.004899367690086365, -0.0014498300151899457, 0.012867975980043411, -0.008200312033295631, -0.02938948944211006, 0.01622600667178631, -0.0005263714119791985, 0.04698557406663895, 0.015634993091225624, 0.007898089475929737, -0.014251484535634518, -0.009644266217947006, -0.037260714918375015, 0.006182135548442602, -0.009906192310154438, -0.01654837839305401, 0.015675289556384087, 0.03234455734491348, 0.04424542188644409, 0.007488409988582134, 0.005500455386936665, -0.0008378287893719971, -0.026568744331598282, 0.0018250900320708752, 0.0023892393801361322, -0.01979895308613777, 0.02303609438240528, -0.019718360155820847, 0.004345292691141367, -0.008623423986136913, -0.003482278436422348, 0.007985398173332214, 0.004133736714720726, -0.033795226365327835, 0.00611161720007658, -0.008824906311929226, 0.014090299606323242, 0.004647515248507261, -0.00912712886929512, -0.01860349252820015, -0.009986785240471363, 0.048006415367126465, 0.03371463343501091, 0.025829976424574852, -0.0004172353947069496, 0.006971273105591536, -0.0034722043201327324, 0.013559730723500252, 0.006222432013601065, -0.01915420964360237, 0.0005763221415691078, -0.03782486543059349, 0.011471034958958626, -0.010188266634941101, 0.0025101283099502325, 0.029496947303414345, 0.013955977745354176, -0.009174141101539135, 0.006292950827628374, 0.018536332994699478, 0.01793188787996769, -0.012491876259446144, 8.022546535357833e-05, -0.0023573380894958973, -0.013559730723500252, -0.023237576708197594, -0.005137787666171789, 0.011961307376623154, -0.024097232148051262, -0.014184324070811272, 0.0044527496211230755, -0.016857316717505455, 0.01626630313694477, 0.0012172863353043795, -0.0061384811997413635, -0.007582434453070164, -0.012659777887165546, -0.022928638383746147, 0.016669267788529396, -0.00538292434066534, 0.012948568910360336, -0.00715260673314333, 0.008301053196191788, 0.011047923006117344, -0.006561593152582645, 0.02072576992213726, -0.014466398395597935, 0.007132458500564098, -0.03387581929564476, -0.01822739467024803, 0.004224403295665979, 0.03293557092547417, -0.008495818823575974, -0.014466398395597935, 0.032129645347595215, -0.020739201456308365, -0.03194159269332886, -0.018791543319821358, -0.0019443001365289092, 0.018455740064382553, -0.054265785962343216, 0.011410590261220932, 0.04064561054110527, 0.021800339221954346, -0.010477057658135891, -0.00822717696428299, -0.16956715285778046, -0.004785194527357817, 0.0028375363908708096, -0.008818190544843674, -0.010611378587782383, 0.02749556116759777, 0.0018368430901318789, -0.016736427322030067, -0.009214437566697598, -0.0075757186859846115, 0.002877832856029272, -0.0022968933917582035, -0.03846960514783859, -0.03406386822462082, 0.020295940339565277, -0.015285758301615715, 0.010000216774642467, 0.02514493837952614, 0.054615020751953125, 0.00689739640802145, 0.021733177825808525, -0.02777763456106186, -0.01622600667178631, -0.010228563100099564, 0.016628971323370934, 0.01975865662097931, -0.00515793589875102, 0.02463451772928238, 0.01031587179750204, -0.04236492142081261, 0.012135924771428108, -0.007058581802994013, 0.009865895844995975, -0.002308646449819207, 0.0009091869578696787, -0.004751614294946194, 0.01363360695540905, -0.01326422393321991, -0.008992807939648628, 0.027441831305623055, 0.044997621327638626, 0.011041207239031792, 0.0182811226695776, 0.007595866918563843, 0.026152348145842552, 0.02206898108124733, 0.02511807344853878, -0.017139391973614693, -0.0008378287893719971, -0.006877248175442219, 0.012787383049726486, -0.021948091685771942, -0.0017327441601082683, 0.003272401401773095, 0.004731466062366962, 0.008811473846435547, 0.02091381885111332, 0.02245851419866085, 0.000572124554309994, -0.0025856841821223497, 0.00462736701592803, -0.017810998484492302, -0.015379783697426319, -0.011685948818922043, -0.011377010494470596, -0.027347806841135025, -0.0005301492055878043, 0.041075438261032104, 0.0013969410210847855, 0.02495688945055008, 0.009718142449855804, 0.01597079634666443, 0.0008932363125495613, 0.02707916498184204, -0.007770484313368797, -0.00204839906655252, -0.023170415312051773, 0.023761428892612457, 0.014909658581018448, -0.013526150025427341, 0.01546037569642067, 0.010389748960733414, -0.003329487983137369, -0.010409897193312645, -0.014815634116530418, -0.01867065392434597, 0.0007702484144829214, -0.008522683754563332, -0.00022267944586928934, -0.009019671939313412, 0.02104813978075981, -0.025453876703977585, -0.015245461836457253, 0.008583128452301025, 0.008549547754228115, 0.010826293379068375, 0.01454699132591486, 0.009516661055386066, 0.0012072122190147638, -0.011961307376623154, 0.002369091147556901, -0.005601196084171534, -0.023936046287417412, 0.025238962844014168, 0.036615971475839615, 0.0032287470530718565, 0.025400148704648018, -0.007421249058097601, 0.024244986474514008, -0.03320421278476715, -0.022767452523112297, 0.003700550412759185, 0.04346635565161705, -0.0026562027633190155, -0.03126998618245125, 0.023264441639184952, -0.02232419140636921, -0.01825425773859024, 0.010651675052940845, -0.020967546850442886, 0.06168032065033913, -0.0283955130726099, -0.0021138805896043777, -0.000510420766659081, 0.0030994629487395287, -0.01580961048603058, -0.1048780307173729, -0.021894363686442375, 0.02435244247317314, 0.010181550867855549, -0.0037744271103292704, 0.017690109089016914, 0.000900791899766773, 0.041209761053323746, 0.021316783502697945, 0.01996013894677162, -0.014170892536640167, -0.01622600667178631, -0.008207028731703758, -0.013465705327689648, 0.02171974629163742, -0.009812167845666409, 0.012250098399817944, -0.021343646571040154, -0.015500672161579132, 0.025722520425915718, -0.0010376316495239735, -0.014264917001128197, 0.005883270874619484, 0.018133368343114853, -0.015863340348005295, -0.012491876259446144, -0.0327206552028656, 0.008092855103313923, 0.023815158754587173, 0.0019678063690662384, 0.02171974629163742, -0.016158847138285637, 0.00887191854417324, -0.02107500471174717, 0.009462932124733925, 0.0003328648454044014, -0.03449369594454765, 0.005540751852095127, 0.005554183851927519, -0.030705837532877922, 0.01610511727631092, -0.004751614294946194, 0.020994411781430244, -0.04604532569646835, -0.0006128406967036426, 0.012209801934659481, -0.01029572356492281, 0.02560163103044033, 0.01684388518333435, -0.0031011418905109167, -0.023909183219075203, -0.02636726200580597, -0.051633089780807495, -0.015245461836457253, 0.014600720256567001, 0.019946705549955368, 0.003334525041282177, 0.006662334315478802, -0.019006457179784775, -0.004550132434815168, -0.010886737145483494, -0.003700550412759185, -0.010806145146489143, 0.0068906801752746105, -0.0034722043201327324, 0.011826986446976662, -0.007589150685817003, -0.001683213165961206, -0.007669743616133928, 0.0006644704262726009, -0.024298714473843575, -0.019584039226174355, -0.016306599602103233, 0.02347935549914837, -0.022539105266332626, 0.009530092589557171, 0.0048456392250955105, -0.02005416341125965, 0.007307075895369053, 0.004674379713833332, -0.01469474472105503, -0.017784133553504944, 0.005329195875674486, -0.01652151346206665, -0.01217622123658657, 0.013472422026097775, 0.005114281550049782, -0.016817020252346992, 0.020363101735711098, -0.034117598086595535, 0.02139737457036972, 0.012397851794958115, 0.00942935235798359, 0.009919624775648117, -0.0158767718821764, 0.01193444337695837, -0.007219767197966576, -0.009476364590227604, 0.02139737457036972, 0.013620175421237946, 0.002641091588884592, 0.01527232676744461, -0.061357948929071426, -8.379337668884546e-05, 0.016145413741469383, 0.014117163605988026, 0.016951341181993484, -0.03202218562364578, 0.006860457826405764, -0.007132458500564098, -0.0008176806150004268, 0.0025991161819547415, -0.03637419641017914, 0.024661382660269737, -0.01016811840236187, 0.008831622079014778, -0.03137744590640068, 0.008260756731033325, 0.025749383494257927, 0.0034990685526281595, 0.0008672116091474891, 0.013082889840006828, -0.02280774898827076, -0.009859180077910423, -0.005003466736525297, 0.01296200044453144, -0.04118289425969124, 0.011316565796732903, -0.008267473429441452, 0.00497324438765645, -0.01687075011432171, -0.025668790563941002, 0.015581265091896057, 0.012411283329129219, -0.01469474472105503, 0.022888341918587685, 0.004469539504498243, -0.029120847582817078, -0.0006703470135107636, 0.002876153914257884, 0.009724858216941357, 0.01793188787996769, -0.0037307727616280317, -0.040081460028886795, 0.03734130784869194, -0.022270463407039642, -0.024822566658258438, -0.0061384811997413635, -0.010678539983928204, -0.007219767197966576, -0.004546774551272392, 0.014976819977164268, 0.03895316272974014, 0.009845747612416744, -0.02126305364072323, -0.01638719253242016, 0.002904697088524699, 0.006964556872844696, 0.021571993827819824, 0.02104813978075981, 0.01584990695118904, -0.0001098705834010616, 0.04126348719000816, -0.016467785462737083, 0.0009066684287972748, 0.00013516076433006674, 0.009409204125404358, -0.023022662848234177, -0.034950390458106995, -0.009248018264770508, 0.0016697810497134924, -0.01975865662097931, 0.0003721118555404246, -0.014157460071146488, 0.02617921121418476, 0.02874474786221981, 0.012491876259446144, 0.004536700434982777, -0.022149574011564255, -0.012169505469501019, 0.006440704222768545, 0.013344816863536835, 0.013593310490250587, -0.0075421384535729885, -0.020483991131186485, 0.017206551507115364, 0.014439534395933151, 0.0002816548803821206, -0.015003683976829052, 0.027562720701098442, 0.011195676401257515, 0.002812351332977414, -0.014587287791073322, 0.0056649986654520035, -0.009839031845331192, 0.00859655998647213, -0.003515858668833971, 0.012035184539854527, -0.009241302497684956, 0.006433987990021706, 0.00630302494391799, 0.023855455219745636, -0.012357555329799652, 0.008932363241910934, 0.007656311150640249, -0.0280731413513422, -0.017314009368419647, -0.0075421384535729885, -0.01610511727631092, -0.01802591234445572, 0.009577104821801186, 0.021921228617429733, 0.0067899394780397415, -0.012384419329464436, 0.009006240405142307, 0.0015211881836876273, -0.014318645931780338, -0.01594393327832222, 0.0046340832486748695, -0.03618614375591278, -0.031108802184462547, 0.019449716433882713, 0.002763659693300724, 0.03457428887486458, 0.0019258309621363878, -0.03041033074259758, 0.03833528608083725, -0.005426578689366579, -0.0037475628778338432, -0.020779497921466827, 0.01716625690460205, -0.01470817718654871, -0.011699381284415722, 0.004617292899638414, -0.0013977804919704795, -0.006229148246347904, -0.02652844786643982, -0.0008525201701559126, -0.010161402635276318, 0.014520127326250076, 0.0017209909856319427, 0.08682525902986526, 0.026232941076159477, -0.014721609652042389, 0.017367737367749214, -0.017972184345126152, 0.015084276907145977, 0.027643313631415367, 0.003932254854589701, 0.01057108212262392, -0.0016580279916524887, 0.01783786155283451, -0.005010182503610849, -0.009664414450526237, -0.013915681280195713, -0.017488626763224602, -0.014264917001128197, 0.0017209909856319427, 0.024110665544867516, -0.00824732519686222, 0.006373543292284012, 0.014520127326250076, 0.0006795816007070243, 0.003542723134160042, -0.018845271319150925, -0.03468174859881401, -0.007280211895704269, 0.022216735407710075, 0.018133368343114853, -0.0063164569437503815, -0.032962433993816376, 0.023398762568831444, -0.000571704818867147, -0.018804974853992462, -0.0219749566167593, -0.0036703282967209816, 0.017784133553504944, -0.01597079634666443, -0.022257031872868538, 0.027831362560391426, 0.024621086195111275, 0.015352918766438961, 0.01313661877065897, -0.017663244158029556, -0.009106980636715889, 0.004902725573629141, -0.007857793010771275, 0.0004264699819032103, -0.026219507679343224, 0.007998830638825893], "1b8e8357-b0b8-4c29-a0c1-2224ede28488": [0.0022218627855181694, 0.00027920343563891947, 0.01610766537487507, -0.03893806040287018, -0.0055832285434007645, 0.025653943419456482, -0.0033143064938485622, -0.01523370947688818, -0.02067912183701992, -0.046521302312612534, -0.002317661652341485, 0.04332128167152405, 0.004521036986261606, -0.007684082258492708, -0.01064880657941103, 0.0034319544211030006, 0.023206869140267372, -0.02698504365980625, 0.0012714365730062127, -0.008289127610623837, -0.01507236436009407, 0.00557986693456769, -0.005415160208940506, 0.0014420258812606335, -0.009895861148834229, 0.006352981086820364, 0.003747922834008932, -0.021862322464585304, -0.029714472591876984, 0.0065613859333097935, 0.00356640899553895, -0.018205156549811363, -0.01601354591548443, -0.0025479153264313936, -0.021015258505940437, 0.0035899386275559664, 0.009384932927787304, -0.019845502451062202, 0.012107639573514462, -0.0030453973449766636, 0.03433971107006073, -0.004702550824731588, -0.006635335739701986, -0.004282379988580942, -0.017559774219989777, 0.027482526376843452, -0.004403389059007168, -0.006494158413261175, 0.009882415644824505, -0.007509291172027588, -0.009969810955226421, -0.00015231188444886357, -0.017694229260087013, 0.008282405324280262, -0.001739506726153195, -0.019643820822238922, 0.015569846145808697, -0.007865595631301403, 0.009956365451216698, -0.010984943248331547, 0.008322741836309433, 0.009754682891070843, -0.012463944032788277, -0.0060773491859436035, -0.019616929814219475, -0.025519488379359245, -0.005932810716331005, -0.010057206265628338, -0.007186600007116795, -0.018877429887652397, 0.03893806040287018, 0.03065565600991249, -0.00027962360763922334, 0.01649758219718933, -0.022588377818465233, -0.01263873465359211, -3.4348955523455516e-05, -0.019616929814219475, -0.003717670449987054, 0.018514402210712433, 0.003801704617217183, -0.030198508873581886, -0.03165062144398689, 0.0013798406580463052, 0.01946903020143509, 0.02382536046206951, 0.02831614576280117, 0.009499219246208668, -0.014386645518243313, 0.011482425034046173, -0.0024487548507750034, -0.0028907745145261288, 0.030494309961795807, 0.012712685391306877, 0.013230335898697376, 0.015569846145808697, 0.018070701509714127, 0.011395029723644257, -0.014077399857342243, -0.019630376249551773, -0.010890824720263481, 0.013082435354590416, -0.030682547017931938, -0.01294798031449318, -0.03455483913421631, -0.004665575455874205, 0.01171772088855505, -0.019495921209454536, 0.003758006962016225, 0.015852199867367744, -0.03880360722541809, 0.029499346390366554, -0.019805166870355606, 0.011858898214995861, 0.009795019403100014, -0.016847165301442146, 0.03186574578285217, -0.037432167679071426, -0.0034386771731078625, -0.013021931052207947, 0.0008705937070772052, -0.014480763114988804, 0.03202709183096886, -0.026837144047021866, 0.01956314779818058, 0.0070050861686468124, 0.017573220655322075, -0.0011344609083607793, 0.008423582650721073, -0.01946903020143509, -0.0001403370260959491, 0.005989953875541687, 0.011885789223015308, 0.01054796576499939, -0.010332838632166386, -0.0006487435894086957, -0.004147925414144993, -0.0008487448212690651, -0.023166531696915627, -0.03791620582342148, 0.029687581583857536, 0.041922952979803085, 0.0012747979490086436, -0.026769917458295822, -0.011751334182918072, 0.024430405348539352, 0.0042689344845712185, 0.01863541081547737, 0.015623628161847591, 0.013862271793186665, 0.015193372964859009, -0.017048846930265427, -0.013741263188421726, 0.012665625661611557, 0.015462282113730907, -0.005273982882499695, -0.0007512652664445341, 0.005727767013013363, -0.01017821580171585, -0.015838755294680595, 0.0014613537350669503, -0.0010067290859296918, -0.008275682106614113, -0.004279018379747868, 0.0018437091493979096, 0.032242219895124435, 0.001666397089138627, -0.001339504262432456, 0.008591650985181332, -0.014225299470126629, -0.003563047619536519, 0.020235421136021614, -0.023596787825226784, 0.015825310721993446, 0.004715996328741312, -0.0004714315291494131, 0.010884102433919907, 0.01253789383918047, -0.007677359506487846, -0.04525742679834366, 0.033264074474573135, 0.0026033776812255383, 0.012369825504720211, 0.015395054593682289, -0.015368164516985416, -0.026958152651786804, 0.020195085555315018, 0.007421895395964384, -5.446462819236331e-05, -0.019953066483139992, 0.017788346856832504, -0.0007449626573361456, -0.013674035668373108, -0.018890874460339546, -0.6242997050285339, -0.002858841558918357, 0.018702639266848564, -0.022951405495405197, -0.006302560679614544, 0.004453809466212988, 0.039771679788827896, 0.003050439292564988, 0.006369788199663162, 0.018581628799438477, 0.021149713546037674, 0.01089754793792963, -0.017963139340281487, -0.02190265990793705, -0.022453922778367996, -0.014628663659095764, -0.012363103218376637, -0.02966069057583809, -0.015462282113730907, 0.0024302673991769552, -0.02914976328611374, 0.016336238011717796, -0.01064880657941103, 0.00855131447315216, -0.0018941295566037297, -0.015663964673876762, 0.033479202538728714, -0.012605121359229088, 0.009142914786934853, 0.026527898386120796, -0.019482476636767387, 0.019993403926491737, 0.0010016870219260454, 0.007623577490448952, 0.03810444101691246, -0.004265572875738144, -0.015825310721993446, 0.01669926568865776, 0.03105901926755905, 0.05305579677224159, -0.02689092606306076, -0.018689192831516266, 0.014386645518243313, 0.006107601337134838, -0.01040006522089243, 0.015731191262602806, 0.016040436923503876, -0.005317680537700653, -0.023005187511444092, -0.023717796429991722, -0.009600060060620308, -0.010514351539313793, 0.0015092531684786081, 0.006443738006055355, 0.008134504780173302, 0.0010042079957202077, 0.017707673832774162, -0.026877479627728462, 0.019616929814219475, 0.0009268965804949403, 0.009183251298964024, 0.011832007206976414, -0.029391782358288765, -0.0305480919778347, -0.054561689496040344, 0.011603434570133686, 0.014830345287919044, -0.031112801283597946, 0.01903877593576908, -0.01722363755106926, 0.04017504304647446, -0.003040355397388339, 0.008679046295583248, -0.0142656359821558, 0.001739506726153195, 0.00014117735554464161, 0.035496022552251816, -0.0027193448040634394, -0.016134556382894516, 0.011993353255093098, 0.01375470869243145, -0.008752996101975441, -0.02210434153676033, -0.005647094454616308, 0.026258988305926323, 0.014131181873381138, -0.015489173121750355, -0.013250503689050674, 0.008638709783554077, 0.010877379216253757, 0.0018252215813845396, 0.033479202538728714, -0.006742899771779776, -0.02802034467458725, -0.007758032064884901, 0.021028703078627586, 0.00013161847891751677, 0.006910968106240034, -0.014211853966116905, -0.015946319326758385, -0.02588251605629921, -0.028154799714684486, 0.0034336349926888943, -0.005512639880180359, 0.018097592517733574, 0.016726156696677208, 0.00032815334270708263, -0.019509365782141685, 0.03606073185801506, -0.026608571410179138, 0.008026941679418087, -0.010621915571391582, -0.006359703838825226, -0.019025329500436783, 0.01410429086536169, -0.021445512771606445, 0.008255514316260815, -0.016053883358836174, 0.013102603144943714, -0.03342542052268982, -0.004255488980561495, -0.01141519844532013, 0.01391605380922556, -0.002581528853625059, 0.012927812524139881, 0.017748011276125908, 0.012598399072885513, 0.0024353095795959234, 0.02086735889315605, -0.008766441605985165, 0.0073815593495965, -0.03291449323296547, 0.011684107594192028, -0.014628663659095764, 0.01824549399316311, 0.0014790009008720517, 0.03178507462143898, -0.015300936996936798, -0.002047071699053049, -0.0458490289747715, 0.007146263495087624, 0.009384932927787304, 0.005791632924228907, -0.0224001407623291, -0.0035529634915292263, -0.02863883599638939, -0.02761698141694069, 0.007899209856987, -0.023986706510186195, -0.012941258028149605, -0.018621966242790222, -0.010803429409861565, -0.011529484763741493, 0.031193474307656288, 0.0007147103897295892, 4.7597463890269864e-06, 0.0065445792861282825, -0.05117342993617058, -0.018621966242790222, -0.03017161786556244, -0.026043862104415894, 0.015623628161847591, -0.029176654294133186, 0.004057168494910002, -0.019388357177376747, -0.01410429086536169, 0.016941282898187637, -0.0040134708397090435, -0.011973184533417225, -0.027482526376843452, 0.007912655360996723, 0.0021529546938836575, 0.017465656623244286, 0.027885889634490013, -0.01488412730395794, 0.012927812524139881, -0.029095981270074844, -0.0076303002424538136, 0.00855131447315216, -0.01089754793792963, 0.017452210187911987, 0.019912730902433395, -0.012147976085543633, -0.006309283431619406, 0.029284218326210976, 0.02231946773827076, 0.009196696802973747, 0.011771502904593945, -0.02812790870666504, 0.004255488980561495, 0.027025381103157997, 0.011536207050085068, 0.0028991778381168842, -0.0019344659522175789, -0.01823204755783081, 0.01590598188340664, -0.022897623479366302, 0.007294163573533297, -0.013761430978775024, 0.015825310721993446, 0.01013115607202053, 0.013902608305215836, -0.022077450528740883, 0.0014655555132776499, 0.0037781749852001667, -0.019603485241532326, 0.015556400641798973, -0.027590090408921242, 0.03646409511566162, 0.011065616272389889, 0.007468954659998417, -0.0035462407395243645, -0.0006394998054020107, -0.005072300788015127, 0.006726092658936977, 0.038454022258520126, 0.018070701509714127, 0.0067597064189612865, -0.0036470817867666483, 0.010756370611488819, 0.00664878124371171, -0.0178421288728714, 0.04923728480935097, -0.005549614783376455, -0.00547902612015605, 0.03546912968158722, -0.0034991817083209753, 0.03745906054973602, 0.00968073308467865, -0.020921140909194946, 0.007811814080923796, 0.03982546180486679, 0.008914342150092125, 0.010937884449958801, 0.042030517011880875, 0.03323718532919884, 0.04044395312666893, -0.01855473965406418, 0.027563199400901794, -0.005273982882499695, -0.008584927767515182, 0.02097492292523384, 0.017748011276125908, -0.022023668512701988, 0.03046741895377636, 0.0056504555977880955, 0.009297537617385387, 0.007368113845586777, -0.017949692904949188, 0.022332914173603058, 0.010426956228911877, -0.002786572091281414, -0.015381609089672565, -0.01048746146261692, 0.017048846930265427, -0.010978220030665398, 0.02188921347260475, 0.019899284467101097, 0.011321079917252064, 0.021069040521979332, 0.012430330738425255, -0.023704351857304573, 0.00754290446639061, -0.003050439292564988, 0.01461521815508604, -0.0055933124385774136, -0.003035313216969371, -0.016551364213228226, 0.0031092632561922073, -0.019684158265590668, 0.0011781586799770594, -0.018890874460339546, -0.009196696802973747, 0.00038424611557275057, -0.02170097641646862, -0.002248753560706973, 0.007247104309499264, 0.008806778118014336, -0.006356342695653439, 0.008625264279544353, -0.01710262894630432, -0.019885839894413948, 0.020827021449804306, 0.01629590056836605, 0.0009092494146898389, -0.03127414733171463, -0.003862209152430296, -0.0006134492577984929, 0.017761455848813057, 0.0109580522403121, -0.0039327978156507015, 0.01712951995432377, -0.01866230182349682, -0.006383233703672886, 0.0002663882332853973, 0.029875818639993668, 0.0428103543817997, -0.01700851134955883, -0.014991691336035728, 0.02026231214404106, 0.00244707427918911, 0.013714372180402279, -0.011274020187556744, -0.03208087384700775, 0.039368316531181335, -0.03546912968158722, -0.03710947930812836, -0.04326749965548515, -0.01492446381598711, -0.014117736369371414, 0.004026916343718767, -0.0239329244941473, -0.023166531696915627, -0.004184900317341089, -0.010628638789057732, 0.011751334182918072, -0.007684082258492708, 0.007213491015136242, 0.029875818639993668, 0.009768128395080566, 0.009566446766257286, -0.03318340331315994, 0.009808464907109737, 0.036625441163778305, 0.0723903700709343, 0.009015182964503765, -0.007919377647340298, 0.0142656359821558, -0.01202696654945612, -0.025519488379359245, -0.028800182044506073, -0.005455496720969677, 0.03342542052268982, -0.0003321449621580541, -0.018796756863594055, 0.011569821275770664, 0.010104265064001083, -0.010615193285048008, 0.005368100944906473, 0.0021142989862710238, -0.0047126347199082375, -0.01864885725080967, -0.0008298371685668826, 0.001257991068996489, 0.02586907148361206, -0.008235345594584942, 0.015556400641798973, 0.017237083986401558, 0.03272625803947449, 0.0018840455450117588, 0.035899385809898376, 0.025721170008182526, 0.000698323710821569, -0.01543539110571146, -0.02160685881972313, 0.016632037237286568, 0.0056907921098172665, 0.020853912457823753, -0.0386960431933403, 0.028880855068564415, -0.0009680733201093972, -0.02047744020819664, -0.006487435661256313, 0.004208429716527462, 0.006450460758060217, 0.038561586290597916, 0.0038319570012390614, -0.0008672323310747743, -0.0059462557546794415, -0.014588327147066593, -0.0029731278773397207, 0.025438815355300903, -0.02231946773827076, -0.006679033860564232, 0.022171568125486374, 0.006433654110878706, -0.028181690722703934, 0.01712951995432377, 0.0025495958980172873, -0.01161688007414341, 0.009492496959865093, -0.012921090237796307, -0.034877531230449677, -0.031247256323695183, -0.024188388139009476, -0.001971441088244319, -0.010386619716882706, -0.009694178588688374, -0.00040231345337815583, 0.00016649265307933092, 0.007179877255111933, 0.002971447305753827, -0.033264074474573135, 0.01934802159667015, 0.007569795474410057, -0.06071970984339714, -0.03200020268559456, -0.004937846213579178, 0.026030415669083595, 0.013734539970755577, -0.01288747601211071, -0.006174828857183456, 0.007401727139949799, 0.006984917912632227, 0.022265685722231865, -0.021445512771606445, -0.001736145350150764, -0.03853469714522362, -0.004628600552678108, -0.012215202674269676, -0.019200120121240616, -0.010863933712244034, 0.00034685092396102846, -0.004914316814392805, -0.009821910411119461, -0.009344596415758133, 0.017573220655322075, 0.010225274600088596, 0.00032794324215501547, 0.017263974994421005, 0.023395106196403503, -0.002465561730787158, 0.01700851134955883, -0.03694813326001167, 0.01391605380922556, -0.009411823935806751, -0.017263974994421005, -0.021526185795664787, 0.020450549200177193, 0.012558062560856342, -0.007643745746463537, -0.017869019880890846, -0.002754639135673642, -0.003966411575675011, 0.0026840504724532366, 0.008188286796212196, 0.0023949730675667524, -0.004504229873418808, 0.025102678686380386, -0.033775001764297485, -0.0036302749067544937, 0.02280350588262081, 0.037028804421424866, 0.005253814626485109, -0.015099254436790943, -0.022064004093408585, 0.03732460364699364, 0.0026554788928478956, -0.017089182510972023, 0.014158072881400585, 0.012302598915994167, -0.023099305108189583, -0.0162824559956789, 0.006551301572471857, -0.01523370947688818, 0.01034628413617611, -0.011347970925271511, -0.01915978454053402, -0.01875642128288746, -0.003248760011047125, -0.006736177019774914, 0.010460570454597473, -0.034178365021944046, -0.008255514316260815, -0.011421920731663704, 0.0037949818652123213, 0.011220239102840424, -0.003455484053120017, 0.02303207851946354, -0.020907694473862648, -0.01610766537487507, 0.016658928245306015, 0.007173154503107071, 0.024390069767832756, -0.019616929814219475, -0.014669000171124935, -0.015959763899445534, -0.016376573592424393, -0.00861181877553463, -0.028665727004408836, -0.022669050842523575, -0.003452122677117586, 0.05819196254014969, 0.0008857198408804834, 0.010595024563372135, 0.011139566078782082, 0.015811864286661148, 0.005895835347473621, -0.010615193285048008, -0.003969772718846798, -0.009687456302344799, -0.019415248185396194, 0.023959815502166748, -0.009216864593327045, 0.010144601576030254, 0.008504255674779415, -0.0012184950755909085, -0.0028722870629280806, 0.024806879460811615, 0.037539731711149216, -0.009667287580668926, -0.006073988042771816, -0.036033838987350464, -0.032753147184848785, -0.01600010134279728, 0.04934484884142876, -0.0002962203579954803, 0.006554663181304932, -0.03751284256577492, -0.0004361371975392103, 0.0032806929666548967, 0.014386645518243313, 0.02057155780494213, 0.01344546303153038, 0.02270938642323017, -0.005845414940267801, 0.004073975142091513, 0.019522812217473984, -0.009505942463874817, 0.000952947186306119, 0.005818523932248354, -0.043563298881053925, -0.0198589488863945, 0.0008075681398622692, 0.025210242718458176, 0.006658865604549646, -0.00575465802103281, 0.008282405324280262, 0.012282430194318295, 0.015341273508965969, -0.030951455235481262, -0.026030415669083595, 0.007428618147969246, -0.010305947624146938, -0.012181589379906654, -0.02324720472097397, -0.027227062731981277, -0.0014353031292557716, -0.010500906966626644, -0.003663888666778803, 0.013674035668373108, 0.012665625661611557, -0.023865696042776108, -0.01109922956675291, 0.040605299174785614, 0.017801793292164803, 0.03681367635726929, 0.006020206026732922, 0.024497633799910545, 0.00871265958994627, -0.0006054660188965499, -0.015166481956839561, -0.023811914026737213, 0.027590090408921242, -0.013102603144943714, 0.0037916204892098904, 0.03202709183096886, -0.01079670712351799, -0.006574831437319517, 0.01461521815508604, -0.006349619943648577, -0.0022185014095157385, -0.03272625803947449, 0.014171517454087734, -0.0001403370260959491, 0.008618541993200779, -0.02861194498836994, -0.014601772651076317, -0.004934485070407391, 0.030386745929718018, 0.01044712495058775, 0.027643872424960136, -0.0007180717657320201, -0.006198358256369829, 0.0007550467853434384, 0.04821543022990227, -0.011085784062743187, 0.02018163911998272, -0.013499245047569275, 0.003858847776427865, -0.018621966242790222, 0.006615167949348688, -0.007361391093581915, -0.023085860535502434, 0.00927064660936594, 0.013324453495442867, -0.015058918856084347, -0.0030991791281849146, 0.005193309858441353, 0.023408550769090652, -0.005173142068088055, -0.006168106105178595, -0.010924438945949078, 0.02976825460791588, -0.0031714485958218575, -0.0109580522403121, -0.0013201764086261392, -0.012410162016749382, 0.012255539186298847, -0.02250770479440689, -0.018111038953065872, 0.001484042964875698, 0.015206818468868732, 0.017438765615224838, 0.011428643018007278, -0.0023092583287507296, -0.00370422494597733, -0.00672273151576519, 0.007018531672656536, -0.01206730306148529, -0.00417481642216444, 0.0013437059242278337, -0.007885764352977276, -0.023408550769090652, -0.030736329033970833, 0.0038857387844473124, -0.0013504286762326956, 0.008470641449093819, 0.0025109401904046535, -0.015825310721993446, -0.008847114630043507, 0.043859098106622696, -0.015758082270622253, -0.016363129019737244, 0.017492547631263733, 0.0066017224453389645, -0.03748594969511032, 0.03278004005551338, -0.007361391093581915, -0.01064880657941103, 0.028504380956292152, 0.013768154196441174, -0.015610182657837868, -0.0026622016448527575, -0.003509265836328268, 0.001041183015331626, 0.0014126138994470239, -0.007267272565513849, -0.00453448249027133, 0.0013983281096443534, 0.007583240978419781, 0.004191623069345951, -0.030117837712168694, 0.0012495877454057336, -0.005613480694591999, -0.0012084109475836158, -0.002653798321262002, -0.022790059447288513, 0.012874030508100986, -0.007509291172027588, 0.029418673366308212, -0.0010823598131537437, -0.030198508873581886, -0.024174941703677177, -0.039771679788827896, 0.003104221308603883, -0.005825246684253216, -0.0005852978210896254, 0.009136191569268703, -0.02659512497484684, -0.006178190000355244, 0.0275094173848629, 0.00023298466112464666, 0.015744637697935104, 0.00677315192297101, -0.021311059594154358, 0.006578192580491304, 0.023690905421972275, -0.010937884449958801, -0.032457347959280014, -0.022346358746290207, -0.009035350754857063, -0.0300640556961298, -0.005159696564078331, -0.014346309006214142, 0.04598348215222359, 0.014023617841303349, -0.027146389707922935, -0.015005136840045452, -0.018621966242790222, -0.05429277941584587, -0.009008459746837616, -0.027778325602412224, 0.027025381103157997, 0.03027918189764023, 0.029095981270074844, 0.020827021449804306, 0.026366552338004112, -0.004205068573355675, 0.014238744974136353, -0.033775001764297485, -0.002267241245135665, -0.015058918856084347, -0.025506043806672096, 0.012739576399326324, -0.01608077436685562, -0.030494309961795807, -0.021418621763586998, -0.002090769587084651, -0.019173230975866318, 0.009176528081297874, 0.016430355608463287, -0.018769865855574608, -0.0028151439037173986, -0.004386582411825657, 0.016336238011717796, 0.024605197831988335, 0.026353107765316963, 0.023395106196403503, -0.03269936516880989, -0.00504540977999568, 0.011072338558733463, -0.007643745746463537, -0.03200020268559456, 0.021633749827742577, 0.012692516669631004, -0.006581554189324379, 0.0034487613011151552, 0.0045748185366392136, -0.015247154980897903, -0.011179902590811253, -0.016658928245306015, 0.009048796258866787, -0.005368100944906473, 0.006658865604549646, 0.03151616454124451, 0.004645407199859619, -0.002021861495450139, -0.0203564316034317, 0.003245398635044694, 0.016336238011717796, 0.0028000175952911377, 0.0013731179060414433, -0.0326186940073967, -0.006675672251731157, -0.02100181393325329, -0.006299199536442757, 0.01803036592900753, -0.011637047864496708, -0.014426982030272484, 0.014695891179144382, -0.03657165914773941, -0.02434973418712616, 0.01391605380922556, -0.012000075541436672, -0.01186562143266201, -0.009364765137434006, -0.013176553882658482, -0.01507236436009407, 0.006984917912632227, -0.0002661781618371606, -0.00361682940274477, 0.00025168227148242295, -0.0026016971096396446, 0.00016544222307857126, -0.03732460364699364, 0.007011808920651674, 0.014951354824006557, -0.005842053797096014, 0.018810203298926353, 0.18500956892967224, 0.011052170768380165, 0.01702195592224598, 0.02433628775179386, 0.01997995749115944, 0.007885764352977276, 0.014279081486165524, 0.012309321202337742, -0.006984917912632227, 0.008853836916387081, 0.01492446381598711, 0.003304222598671913, -0.031247256323695183, -0.0015395055525004864, 0.006796681322157383, -0.01700851134955883, -0.040497735142707825, -0.03167751058936119, -0.00013497984036803246, 0.008887451142072678, 0.006796681322157383, -0.009916028939187527, -0.01864885725080967, -0.0071126497350633144, 0.01813792996108532, 0.006168106105178595, 0.004611793905496597, 0.02608419768512249, 0.020127857103943825, 0.028396816924214363, 0.0029916155617684126, -0.008087445981800556, 0.014991691336035728, -0.00211261841468513, -0.015045473352074623, 0.0025680833496153355, 0.014682445675134659, -0.0173043105751276, 0.002858841558918357, 0.0027378324884921312, -0.0012344615533947945, -0.015462282113730907, 0.0239329244941473, -0.026850588619709015, 0.004598348401486874, -0.00010976960038533434, -0.014346309006214142, 0.0033092645462602377, 0.008705937303602695, 0.01895810291171074, -0.001736145350150764, -0.011576543562114239, 0.010474015958607197, 0.006450460758060217, -0.013586640357971191, 0.019993403926491737, -0.01395639032125473, 0.0183261651545763, -0.009714347310364246, -0.0004348766815382987, -0.012907644733786583, -0.003089095000177622, 0.0027495971880853176, -0.017384983599185944, -0.019953066483139992, 0.028154799714684486, -0.009364765137434006, 0.04146580770611763, 0.007052145432680845, 0.008443750441074371, -0.0254522617906332, -0.018003474920988083, -0.03433971107006073, 0.005586589686572552, -0.010823597200214863, -0.015166481956839561, 0.031327929347753525, 0.022023668512701988, 0.04270279034972191, 0.01151603925973177, -0.006608445197343826, -0.0008605096372775733, -0.03697502240538597, 0.007784923072904348, 0.015663964673876762, -0.015475727617740631, 0.0239329244941473, -0.023556450381875038, 0.002924388274550438, -0.005892474204301834, 0.0024453934747725725, 0.017089182510972023, 0.004373136907815933, -0.011139566078782082, -0.0033949792850762606, 0.003060523420572281, 0.0032857349142432213, 0.018057256937026978, -0.01793624833226204, -0.03116658329963684, -0.015623628161847591, 0.05539530888199806, 0.024806879460811615, 0.03592627868056297, -0.01742531917989254, 0.00826223660260439, 0.003472290700301528, 0.011690829880535603, 0.007744586560875177, -0.008564759977161884, -0.008174841292202473, -0.05359361693263054, 0.01702195592224598, -0.024215279147028923, -0.008026941679418087, 0.013700926676392555, 0.024269061163067818, -0.013055544346570969, 0.01507236436009407, 0.00296976650133729, 0.019953066483139992, -0.00865887850522995, -0.0016126151895150542, -0.009922751225531101, -0.004386582411825657, -0.021566523239016533, 0.008941233158111572, 0.019845502451062202, -0.03476996719837189, -0.025613605976104736, 0.001251268433406949, -0.03339853137731552, 0.02221190556883812, 0.0011504273861646652, -0.005374823696911335, -0.004581541288644075, -0.015946319326758385, -0.007549627218395472, 0.010104265064001083, 0.01954970322549343, 0.027119498699903488, 0.003383214585483074, 0.016632037237286568, 0.009694178588688374, 0.006433654110878706, 0.0387229323387146, -0.010568133555352688, 0.02332787774503231, -0.03409769386053085, -0.014346309006214142, -0.0005226923967711627, 0.0011588308261707425, -0.008719382807612419, -0.019334575161337852, 0.03708258643746376, -0.023193422704935074, -0.032753147184848785, -0.007684082258492708, 0.0012445456814020872, 0.01669926568865776, -0.05469614267349243, 0.014279081486165524, 0.04329438880085945, 0.022050559520721436, -0.0008542070863768458, -0.002110937610268593, -0.16952039301395416, 0.004272295627743006, 0.006904245354235172, -0.010124433785676956, -0.010010147467255592, 0.017990028485655785, 0.013102603144943714, -0.023717796429991722, -0.016645483672618866, 0.002169761573895812, 0.00033319537760689855, -0.006366426590830088, -0.051092758774757385, -0.01997995749115944, 0.015368164516985416, -0.013862271793186665, 0.012645457871258259, 0.024107715114951134, 0.0489145927131176, 0.0162824559956789, 0.011784948408603668, -0.023005187511444092, -0.017586665228009224, -0.005949617363512516, 0.015247154980897903, 0.02375813201069832, -0.0004500028444454074, 0.014951354824006557, -0.0029294302221387625, -0.028450598940253258, 0.021445512771606445, -0.007966436445713043, 0.03321029245853424, 0.013156385160982609, -0.01206730306148529, -0.00489414855837822, 0.0017916079377755523, -0.014198408462107182, -0.008726105093955994, 0.03608762100338936, 0.030709438025951385, 0.018285829573869705, 0.006000037770718336, 0.01894465647637844, 0.04006747901439667, 0.014252190478146076, 0.04673643037676811, -0.009526110254228115, 0.010910993441939354, 0.008248791098594666, 0.008544591255486012, -0.029364891350269318, 0.010474015958607197, -0.0014823622768744826, 0.010702588595449924, 0.006699202116578817, 0.010326115414500237, 0.025600161403417587, 0.014117736369371414, -0.0050084348767995834, 0.010722756385803223, -0.007731141056865454, 0.002606739057227969, -0.012524448335170746, -0.013902608305215836, -0.023448888212442398, 0.005226923618465662, 0.026366552338004112, 0.0028958164621144533, 0.021983331069350243, 0.007253827061504126, 0.017801793292164803, -0.002406737767159939, 0.020638786256313324, 0.010205105878412724, -0.006393317598849535, -0.023475777357816696, 0.0208808034658432, 0.017438765615224838, -0.00019212305778637528, -0.006110962945967913, 0.017855575308203697, 0.008531145751476288, -0.005573144182562828, 0.00022857286967337132, -0.009035350754857063, 0.010742925107479095, -0.003710947697982192, 0.0041882614605128765, -0.004497507121413946, 0.018890874460339546, -0.030682547017931938, -0.015018582344055176, 0.015879090875387192, 0.019832057878375053, 0.02148585021495819, 0.015489173121750355, 0.004863896407186985, -0.0038756546564400196, -0.003194978227838874, 0.001521858386695385, -0.001927743200212717, -0.02455141581594944, 0.027590090408921242, 0.02538503333926201, 0.02077323943376541, 0.0109580522403121, -0.0048437281511723995, 0.023005187511444092, -0.015247154980897903, -0.034904420375823975, 0.012779912911355495, 0.04719357565045357, -0.008746273815631866, -0.019092557951807976, 0.038050659000873566, -0.023664014413952827, -0.01472278218716383, 0.007939545437693596, -0.0234354417771101, 0.03818511590361595, -0.03035985492169857, -0.018366502597928047, 0.010574856773018837, -0.002321023028343916, -0.012907644733786583, -0.10917715728282928, -0.03243045508861542, 0.017855575308203697, 0.02067912183701992, -0.009210142306983471, 0.003892461536452174, 0.006430292502045631, 0.03269936516880989, 0.00441011181101203, 0.016672374680638313, -0.020706012845039368, 0.012652180157601833, -0.0034453999251127243, -0.02270938642323017, 0.026877479627728462, -0.0034823748283088207, 0.007845427840948105, -0.014534545131027699, -0.010097542777657509, 0.037028804421424866, -0.004692466463893652, -0.009936196729540825, 0.006618529092520475, 0.012907644733786583, -0.008544591255486012, -0.002526066266000271, -0.03762040659785271, 0.020342985168099403, 0.028665727004408836, 0.013835381716489792, 0.010218551382422447, -0.02780521661043167, 0.011038725264370441, -0.01319672167301178, 0.009431992657482624, 0.0007079876377247274, -0.03423214703798294, 0.00098151876591146, 0.004561373498290777, -0.025546379387378693, 0.026366552338004112, -0.009008459746837616, 0.0035529634915292263, -0.030090946704149246, 0.0016000100877135992, 0.0028958164621144533, -0.025035452097654343, 0.029364891350269318, 0.017990028485655785, -0.015354719012975693, -0.02628587931394577, -0.01812448352575302, -0.045176755636930466, -0.013042098842561245, 0.013674035668373108, 0.010951329953968525, 0.011791670694947243, 0.009505942463874817, -0.01874297484755516, 0.007818536832928658, 0.011462257243692875, 0.0062252492643892765, -0.0031210281886160374, 0.019953066483139992, -0.00361682940274477, 0.02433628775179386, -0.0066924793645739555, -0.011858898214995861, -0.010601747781038284, -0.005105914548039436, -0.01457488164305687, -0.0032974998466670513, -0.009768128395080566, 0.0004216413071844727, -0.0346624031662941, 0.011233684606850147, 0.0005025241989642382, -0.030736329033970833, -0.00458490289747715, 0.01492446381598711, -0.014749673195183277, -0.01508580893278122, -0.004840366542339325, -0.011153011582791805, -0.0063059222884476185, 0.024739651009440422, 0.010884102433919907, -0.0106891430914402, 0.027966562658548355, -0.03135481849312782, 0.022561486810445786, 0.024430405348539352, 0.004208429716527462, 0.011132842861115932, -0.01772112026810646, 0.0084034139290452, -0.017694229260087013, -0.01721019297838211, 0.014978245832026005, 0.011637047864496708, 0.003263886086642742, 0.006282392423599958, -0.044773392379283905, -0.0008042067638598382, 0.029015308246016502, -0.0004000025219283998, 0.020141303539276123, -0.01671271026134491, -0.0020521138794720173, -0.006796681322157383, 0.003425231669098139, 0.001440345193259418, -0.02772454358637333, 0.01344546303153038, -0.004823559895157814, 0.016887500882148743, -0.039691004902124405, 0.012605121359229088, 0.022951405495405197, 0.003983218222856522, 0.0037344773299992085, 0.007119372487068176, -0.02018163911998272, -0.008215177804231644, -0.009707624092698097, 0.017089182510972023, -0.04103555157780647, -0.018272383138537407, -0.014507654123008251, 0.004648768808692694, -0.013680758886039257, -0.03944898769259453, 0.010635361075401306, 0.00861181877553463, -0.002216820605099201, 0.008195010013878345, -0.009391656145453453, -0.03643720597028732, -0.00041533875628374517, -0.00654794042930007, 0.018877429887652397, 0.011489148251712322, -0.008631987497210503, -0.025129569694399834, 0.02160685881972313, -0.023072414100170135, -0.03627585992217064, -0.008584927767515182, -0.010601747781038284, -0.023448888212442398, 0.002436990151181817, 0.027132943272590637, 0.05528774484992027, 0.0064538223668932915, -0.01652447320520878, -0.014144627377390862, -0.010393342934548855, -0.008134504780173302, 0.011832007206976414, 0.019643820822238922, 0.011731166392564774, -0.0049008713103830814, 0.02842370793223381, 0.004591625649482012, -0.0016546322731301188, 0.0006340375985018909, 0.0020941307302564383, -0.0178421288728714, -0.03950276970863342, -0.006665588356554508, -0.002021861495450139, -0.03304894641041756, 0.00012983275519218296, -0.026097644120454788, 0.02974136359989643, 0.01742531917989254, 0.013189999386668205, 0.003963049966841936, 0.008840391412377357, -0.019200120121240616, 0.003036994021385908, 0.02547915279865265, 0.031731292605400085, -0.027442188933491707, -0.02783210761845112, 0.023381659761071205, 0.017882466316223145, 0.013902608305215836, -0.0037344773299992085, 0.03165062144398689, -0.0018437091493979096, -0.0009428630582988262, -0.00927064660936594, 0.011166457086801529, -0.021942995488643646, 0.014709336683154106, -0.00415128655731678, 0.027079163119196892, -0.014279081486165524, 0.012719407677650452, 0.012302598915994167, 0.022279132157564163, 0.0006878194399178028, 0.01237654872238636, 0.012732853181660175, -0.008679046295583248, -0.01712951995432377, -0.009391656145453453, -0.02120349556207657, -0.019321130588650703, 0.015179927460849285, 0.01048746146261692, 0.0037277545779943466, -0.018769865855574608, 0.002317661652341485, 0.0065613859333097935, -0.027993453666567802, -0.003842041129246354, -0.0016462288331240416, -0.0295531265437603, -0.022978296503424644, 0.0008231144165620208, 0.0062252492643892765, 0.02535814233124256, 0.0066017224453389645, -0.019415248185396194, 0.03912629559636116, -0.009647119790315628, 0.010480738244950771, -0.025936298072338104, 0.0009722750401124358, -0.014709336683154106, -0.010225274600088596, -0.004974821116775274, -0.0037815363612025976, -0.017183301970362663, -0.02311275154352188, -0.012147976085543633, -0.031435493379831314, -0.004561373498290777, -0.001905894372612238, 0.0784139409661293, 0.03598005697131157, -0.01313621737062931, 0.01543539110571146, -0.014642109163105488, 0.014211853966116905, 0.012974871322512627, 0.009895861148834229, 0.006141215097159147, -0.017196746543049812, 0.02925732731819153, -0.014050508849322796, -0.011341247707605362, -0.007583240978419781, -0.01711607351899147, -0.0021563160698860884, -0.006507603917270899, 0.02923043631017208, -0.016470691189169884, 0.004773139487951994, 0.022790059447288513, -0.012450498528778553, 0.005761380773037672, -0.02820858173072338, -0.040201932191848755, -0.009559724479913712, 0.024779988452792168, 0.023193422704935074, -0.00453448249027133, -0.03433971107006073, 0.017384983599185944, 0.009633674286305904, -0.010191661305725574, -0.014870681799948215, -0.018783312290906906, 0.01569085568189621, -0.011939571239054203, -0.024591751396656036, 0.011132842861115932, 0.027563199400901794, 0.011637047864496708, 0.005589951295405626, -0.017156410962343216, -0.01773456484079361, -0.007758032064884901, -0.0026336300652474165, -0.011233684606850147, -0.0112067935988307, 0.002169761573895812], "e2cbe48e-ab64-4f6f-9c4d-834c8beb2df2": [0.002524847164750099, -0.021333539858460426, 0.01730179414153099, -0.021266790106892586, -0.016407335177063942, 0.03473709151148796, -0.00356115261092782, -0.04045095667243004, -0.0111006498336792, -0.03860863298177719, 0.010680120438337326, 0.04370839148759842, 0.005590375512838364, -0.014818666502833366, -0.012222062796354294, 0.016167031601071358, 0.019424468278884888, -0.0272209569811821, -0.008857824839651585, -0.0055236248299479485, -0.02571238949894905, 0.006801901385188103, -0.016941340640187263, -0.008650897070765495, -0.015659727156162262, 0.007749762386083603, 0.008530746214091778, -0.01123415119946003, -0.011240826919674873, 0.003791442606598139, 0.0095653822645545, -0.008250392973423004, -0.027928514406085014, 0.007482759188860655, -0.03385598212480545, 0.006384709384292364, 0.006841951981186867, -0.01751539669930935, 0.007095605134963989, -0.01265594270080328, 0.026019442826509476, 0.013410226441919804, -0.006855302024632692, 0.0027150867972522974, -0.02381666749715805, 0.02333606220781803, -0.005904104094952345, -0.0023496265057474375, -0.016914639621973038, 0.008624196983873844, -0.00632797135040164, -0.006324633955955505, -0.0200786255300045, 0.025618938729166985, -0.0032540990505367517, -0.0181295033544302, 0.014191210269927979, -0.003250761656090617, 0.02388341911137104, -0.004625827074050903, 0.015152420848608017, 0.004562413785606623, -0.005376772955060005, -0.003577840281650424, -0.015285922214388847, -0.02585924044251442, -0.0067485012114048, -0.003295818343758583, -0.023870069533586502, 0.008043465204536915, 0.03663281351327896, 0.025271834805607796, 0.005266634281724691, 0.0013283399166539311, -0.004549063742160797, -0.0077831377275288105, -0.0190773643553257, -0.010319666005671024, -0.004522363655269146, -0.0008005918352864683, 0.013710604049265385, -0.027367807924747467, -0.023456213995814323, -0.005246608983725309, 0.022508352994918823, 0.032467566430568695, 0.018716910853981972, 0.01292962022125721, -0.022228000685572624, 0.0023312699049711227, -0.00794333964586258, -0.0017922576516866684, 0.021934296935796738, 0.006668400019407272, 0.0016454060096293688, 0.009785660542547703, 0.015366023406386375, 0.010907072573900223, -0.011621305719017982, -0.01819625496864319, -0.01132760290056467, -0.001667100004851818, -0.02273530513048172, -0.01615368202328682, -0.021079886704683304, -0.0023946831934154034, 0.013176598586142063, -0.009972562082111835, 0.014952168799936771, 0.016260482370853424, -0.029904337599873543, 0.029397031292319298, -0.02055923081934452, 0.0009103133925236762, 0.016580887138843536, -0.02055923081934452, 0.0187970120459795, -0.04528370872139931, -0.008203667588531971, -0.011754807084798813, 0.00821701716631651, 0.0050964197143912315, 0.03473709151148796, -0.03169325739145279, 0.021627243608236313, 0.011214125901460648, 0.003814805531874299, -0.012736043892800808, 0.004745978396385908, -0.018476607277989388, -0.001807276625186205, -0.0027534684631973505, 0.01899726316332817, 0.007622935809195042, -0.0063913846388459206, 0.003153973026201129, -0.023589715361595154, 0.007449383847415447, -0.02165394462645054, -0.02795521542429924, 0.03412298485636711, 0.03561820089817047, 0.010907072573900223, -0.021560491994023323, -0.003294149646535516, 0.012562491931021214, 0.012202037498354912, 0.02218795008957386, 0.0051064323633909225, 0.015619675628840923, 0.007462733890861273, -0.02300230972468853, -0.015165770426392555, 0.011427728459239006, 0.007135655265301466, -0.003390938276425004, -0.0005264965584501624, 0.008123566396534443, -0.006608324591070414, -0.005890754051506519, -0.002523178467527032, 0.002059260616078973, -0.012348889373242855, 0.0001316241396125406, -0.012008460238575935, 0.023576365783810616, 0.017194993793964386, -0.014137809164822102, -0.0015970116946846247, 0.00040801396244205534, 0.0023963518906384706, 0.02373656816780567, -0.027047405019402504, 0.017902551218867302, 0.010259590111672878, 0.002938701771199703, 0.017074842005968094, 0.0024998155422508717, -0.009852411225438118, -0.02966403402388096, 0.01614033244550228, -0.007436033803969622, 0.0003229067660868168, 0.022695256397128105, 0.0006912874523550272, -0.022628504782915115, 0.024724477902054787, 0.009084776975214481, -0.0010012612910941243, -0.008063490502536297, 0.014751915819942951, 0.005226583685725927, -0.015192471444606781, -0.005820665508508682, -0.6395255923271179, -0.006835277192294598, -0.0058874161913990974, -0.010927097871899605, 0.007442708592861891, 0.014124458655714989, 0.03623230755329132, -0.001389250042848289, 0.0026883864775300026, 0.029877636581659317, 0.02089298516511917, 0.015392723493278027, -0.01340355072170496, -0.02348291501402855, -0.009345104917883873, -0.011634656228125095, 0.000242388661717996, -0.03521769493818283, -0.007382633164525032, 0.008564121089875698, -0.021253438666462898, 0.02579249069094658, -0.0012257107300683856, -0.004605801776051521, -0.0067551760002970695, -0.023723216727375984, 0.02856932207942009, -0.01995847560465336, 0.010706820525228977, 0.011928359046578407, -0.021547142416238785, 0.026313146576285362, 0.0020358979236334562, 0.015726476907730103, 0.03732702136039734, -0.016233783215284348, -0.022895507514476776, 0.04221317544579506, 0.010933773592114449, 0.047526534646749496, -0.0030938973650336266, -0.018676860257983208, 0.015139070339500904, -0.0007601241813972592, -0.013897506520152092, 0.004745978396385908, 0.006861977279186249, 0.0009061414748430252, -0.019784923642873764, -0.012015135027468204, 0.0026883864775300026, -0.02117333933711052, 0.0027517997659742832, 0.00013944649253971875, 0.0036579412408173084, -0.020679382607340813, 0.014004307799041271, -0.03903583809733391, 0.009705559350550175, 0.006414747331291437, 0.007509459741413593, 0.0007634617504663765, -0.02680710144340992, -0.04619152098894119, -0.05121117830276489, 0.0071623558178544044, 0.011741457507014275, -0.03508419543504715, 0.020252177491784096, -0.01167470682412386, 0.027795013040304184, -0.002090967260301113, 0.00916487816721201, -0.019998524338006973, -0.012769418768584728, 0.015259222127497196, 0.03465699031949043, -0.010099388659000397, -3.097652006545104e-05, 0.005016318988054991, 0.014671815559267998, -0.025191733613610268, -0.021934296935796738, -0.0065081981010735035, 0.0272743571549654, 0.01798265241086483, -0.014404811896383762, -0.007756437174975872, -0.00185400212649256, 0.001604521181434393, 0.014538314193487167, 0.03404288366436958, -0.004068458452820778, -0.03265446797013283, -0.012035160325467587, 0.03289477154612541, -0.0075962357223033905, -0.0073692831210792065, -0.02293555811047554, -0.021760744974017143, -0.02300230972468853, -0.017355196177959442, 0.0008652566466480494, -0.00061035220278427, 0.011541204527020454, 0.01292962022125721, -0.0032707867212593555, -0.024310624226927757, 0.028542621061205864, -0.030384942889213562, 0.002644998487085104, -0.007569535169750452, -0.015499524772167206, -0.025538837537169456, 0.008644222281873226, -0.020412379875779152, 0.017008092254400253, -0.005510274786502123, 0.019664771854877472, -0.024590976536273956, 0.00325743667781353, -0.012208712287247181, 0.013583778403699398, -0.014298010617494583, -0.00429207319393754, 0.02178744599223137, 0.005029669031500816, -0.0028652760665863752, 0.014311361126601696, 0.014204559847712517, -0.0018373144557699561, -0.03073204681277275, 0.008323818445205688, -0.009118152782320976, 0.021600542590022087, 0.002671698806807399, 0.024657728150486946, -0.003888231236487627, -0.0015094013651832938, -0.04151896759867668, -0.012095236219465733, -0.005787290167063475, 0.0032424177043139935, -0.017154943197965622, -0.0028218880761414766, -0.034843891859054565, -0.018489958718419075, 0.007075579836964607, -0.015272571705281734, -0.014057707972824574, -0.020732782781124115, -0.008470670320093632, -0.009118152782320976, 0.023923469707369804, -0.016033530235290527, -0.00389490625821054, 0.008984651416540146, -0.04736633226275444, -0.007642961107194424, -0.04432249814271927, -0.0241504218429327, 0.01839650794863701, -0.018556708469986916, 0.0016120306681841612, -0.01967812143266201, 0.0023496265057474375, 0.00913150329142809, 0.0032440866343677044, -0.0024263898376375437, -0.03561820089817047, 0.019517919048666954, -0.007055554538965225, -0.008090191520750523, 0.019517919048666954, -0.02654009871184826, 0.02403027005493641, -0.02511163242161274, -0.006478160619735718, -0.0014251285465434194, -0.00196747831068933, 0.01122747641056776, 0.02027887850999832, -0.011427728459239006, -0.010640069842338562, 0.03166655823588371, 0.03244086354970932, 0.01670103892683983, 0.013436926528811455, -0.02258845418691635, 0.010406441986560822, 0.01387080643326044, -0.008243718184530735, 0.013183273375034332, 0.011254176497459412, -0.02328266203403473, 0.020519180223345757, -0.033562276512384415, 0.008463995531201363, -0.010660095140337944, 0.018142854794859886, 0.010680120438337326, 0.025685688480734825, -0.012582516297698021, 0.0028736197855323553, 0.0026900554075837135, -0.014191210269927979, 0.012395614758133888, -0.024857979267835617, 0.024791229516267776, 0.01339687593281269, -0.006197807379066944, -0.011000524275004864, 0.0009770641336217523, -0.011621305719017982, 0.016367284581065178, 0.038261529058218, 0.02998443692922592, 0.01627383381128311, 0.0005448529846034944, 0.014645114541053772, 0.017061492428183556, -0.011821557767689228, 0.04256027936935425, -0.011240826919674873, -0.005383448209613562, 0.03706001862883568, -0.005840690806508064, 0.027875114232301712, 0.0013758998829871416, -0.015272571705281734, 0.021200038492679596, 0.02496478147804737, 0.02529853582382202, 0.009038051590323448, 0.04354818910360336, 0.02985093556344509, 0.023429512977600098, -0.01723504438996315, 0.03414968401193619, 0.005950829479843378, -0.010299640707671642, 0.020532531663775444, 0.01668768748641014, -0.01614033244550228, 0.021547142416238785, -0.00881777424365282, 0.007022179197520018, 0.007823187857866287, -0.0011205782648175955, 0.012769418768584728, 0.006618337240070105, -0.01326337456703186, -0.014952168799936771, -0.018543358892202377, 0.026299796998500824, -0.007189055904746056, 0.020252177491784096, 0.014191210269927979, 0.010052663274109364, 0.02117333933711052, 0.008477345108985901, -0.019638070836663246, 0.02904992736876011, -0.00042887357994914055, 0.02524513378739357, -0.005076394882053137, -0.00018116571300197393, -0.01696804165840149, -0.005723876878619194, -0.019130764529109, -0.0047326283529400826, -0.008043465204536915, -0.01122747641056776, -0.0006629183772020042, -0.006451460067182779, 0.006000892724841833, 0.006004230119287968, 0.02687385305762291, -0.000776811852119863, 0.011814882978796959, -0.028649423271417618, -0.01288957055658102, 0.01981162279844284, 0.01763554848730564, 0.004055107943713665, -0.015966780483722687, -0.018543358892202377, 0.012742718681693077, -0.004575763829052448, -0.0008719316683709621, -0.010646744631230831, 0.00741600850597024, -0.011053924448788166, 0.0001659381960052997, -0.010019287467002869, 0.02958393283188343, 0.04667212441563606, -0.029477132484316826, -0.012829494662582874, 0.0137773547321558, -0.001176481950096786, 0.010439817793667316, -0.014364762231707573, -0.040878161787986755, 0.02848922088742256, -0.04010385274887085, -0.03588520362973213, -0.03754062205553055, -0.013577102683484554, -0.02047913148999214, 0.00476600369438529, -0.016941340640187263, -0.029690735042095184, 0.0013400213792920113, -0.007816513068974018, 0.024657728150486946, -0.0023563015274703503, 0.006131056696176529, 0.03081214614212513, 0.01533932238817215, -0.010740196332335472, -0.03794112801551819, 0.00016197486547753215, 0.04480310529470444, 0.0827709287405014, 0.012035160325467587, -0.011274201795458794, 0.012782769277691841, -0.008023439906537533, -0.02557888813316822, -0.0260461438447237, -0.01373730506747961, 0.03738041967153549, -0.0044556125067174435, -0.013950906693935394, -0.004549063742160797, 0.012055185623466969, -0.004185271915048361, 0.007876588962972164, -0.01119410153478384, -0.00831046886742115, -0.013857455924153328, 0.0032707867212593555, 0.019985174760222435, 0.01878366246819496, -0.017128242179751396, 0.022561753168702126, 0.018222955986857414, 0.027848413214087486, 0.013416901230812073, 0.026313146576285362, 0.017048142850399017, -0.0037213542964309454, -0.023923469707369804, -0.014738566242158413, 0.02212119847536087, 0.007235781289637089, 0.008390569128096104, -0.034843891859054565, 0.03401618450880051, 0.00506971962749958, -0.02612624503672123, -0.016781138256192207, -0.0041118464432656765, 0.020439080893993378, 0.024190472438931465, -0.006441447418183088, -0.0011139031266793609, 0.00858414638787508, -0.01312987320125103, -0.006394722033292055, 0.028542621061205864, -0.01831640675663948, -0.017221694812178612, 0.015058969147503376, 0.020065275952219963, -0.007062229327857494, 0.008977975696325302, 0.005219908896833658, -0.010746871121227741, -0.003774754935875535, 1.3597858014691155e-05, -0.02958393283188343, -0.029957737773656845, -0.033215172588825226, -0.006741825956851244, -0.009899136610329151, -0.007816513068974018, -0.015379372984170914, -0.01204183604568243, 0.0003587852988857776, -0.006181119475513697, -0.03265446797013283, 0.014952168799936771, 0.007222431246191263, -0.05211898684501648, -0.03305497393012047, 0.014097758568823338, 0.024110371246933937, 0.012355564162135124, -0.0009128165547735989, -0.005289996974170208, 0.0007250800263136625, 0.019651420414447784, 0.019571321085095406, -0.017809100449085236, 0.0006091006216593087, -0.03649931028485298, 0.0059274667873978615, -0.02027887850999832, -0.02843582071363926, -0.0024614338763058186, -0.0003010041837114841, 0.00549692427739501, -0.01602018065750599, -0.001667100004851818, 0.007322557270526886, 0.007896614260971546, 0.003904918907210231, 0.015592975541949272, 0.017128242179751396, -0.008924575522542, 0.019838323816657066, -0.027034053578972816, 0.02117333933711052, -0.0200786255300045, -0.0022328125778585672, -0.007642961107194424, 0.009785660542547703, 0.012709342874586582, -0.010032637976109982, -0.013149898499250412, -0.01123415119946003, -0.001186494599096477, 0.017154943197965622, 0.004962918348610401, 0.020852934569120407, 0.0009236635523848236, 0.01750204712152481, -0.02172069437801838, -0.010733520612120628, 0.02258845418691635, 0.025071581825613976, -0.0021593868732452393, -0.016954690217971802, -0.01353705208748579, 0.022481653839349747, 0.01906401477754116, -0.002841913141310215, 0.009305055253207684, 0.01642068475484848, -0.015125720761716366, -0.014271310530602932, 0.0075762104243040085, -0.0190773643553257, 0.015699775889515877, -0.022508352994918823, -0.003200698643922806, -0.011267527006566525, 0.0042386725544929504, -0.02122673951089382, 0.003841505851596594, -0.02774161286652088, -0.0021677305921912193, -0.007302532438188791, 0.016807839274406433, 0.010179489850997925, 0.002451421460136771, -0.0016887940000742674, -0.02572573907673359, -0.02233480103313923, 0.009144852869212627, -0.00093701365403831, 0.02639324776828289, -0.014578363858163357, -0.009224954061210155, -0.016046879813075066, -0.009224954061210155, -0.02448417618870735, -0.029557233676314354, -0.017315145581960678, 0.003454351332038641, 0.059061065316200256, 0.002369651570916176, 0.005420160945504904, 0.007342582568526268, 0.014711865223944187, 0.0010413117706775665, -0.009104802273213863, -0.008116891607642174, -0.013076472096145153, -0.028008615598082542, 0.01627383381128311, -0.002468109130859375, 0.020265528932213783, 0.009144852869212627, -0.005022994242608547, -0.0007547006825916469, -0.004358823876827955, 0.025405336171388626, -0.008323818445205688, -0.007382633164525032, -0.03527109697461128, -0.03209375962615013, -0.007616260554641485, 0.028035316616296768, 0.0006474822876043618, 0.0036012029740959406, -0.035457998514175415, 0.0042386725544929504, 0.014791966415941715, 0.003644590964540839, 0.03665951266884804, 0.021293489262461662, 0.02592599205672741, -0.007442708592861891, -0.00495290569961071, 0.01878366246819496, -0.010299640707671642, -0.022548403590917587, 0.010733520612120628, -0.03997034952044487, -0.009745609946548939, 0.017355196177959442, 0.03254766762256622, 0.013710604049265385, -0.002456427551805973, 0.013750654645264149, -0.0031723293941468, 0.016300532966852188, -0.008123566396534443, -0.012842844240367413, 0.01350367721170187, -0.0078031630255281925, -0.005453536286950111, -0.02124008908867836, -0.0351375974714756, 0.001516910851933062, -0.025885941460728645, -0.010106063447892666, 0.010646744631230831, 0.0053166975267231464, -0.021159987896680832, -0.01120077632367611, 0.030037838965654373, 0.01919751614332199, 0.031052449718117714, 0.010045988485217094, 0.031185951083898544, 0.025966042652726173, 0.0020559232216328382, -0.01899726316332817, -0.018236305564641953, 0.007636285852640867, -0.011661356315016747, 0.00604094285517931, 0.050383467227220535, -0.0010087707778438926, -0.005560337565839291, 0.014872067607939243, -0.01350367721170187, 0.007028853986412287, -0.029076628386974335, 0.0015377704985439777, 0.01744864694774151, 0.0028001940809190273, -0.036125507205724716, -0.020786184817552567, -0.01088704727590084, 0.02476452849805355, 0.0002041112893493846, 0.02321591228246689, -0.007382633164525032, -0.004645852372050285, -0.003991695120930672, 0.05246609076857567, -0.006614999379962683, 0.012856194749474525, 0.011935034766793251, 0.00041322887409478426, -0.0095653822645545, 0.0017755699809640646, -0.01109397504478693, -0.021159987896680832, 0.009825710207223892, 0.017528748139739037, -0.011901658959686756, 0.011828233487904072, 0.0008927913149818778, 0.012609217315912247, -0.0021260115318000317, -0.006000892724841833, -0.01831640675663948, 0.02672700025141239, 0.003961657173931599, -0.001058833790011704, -0.003033821703866124, -0.0071823811158537865, 0.010179489850997925, -0.03137285262346268, -0.012595866806805134, -0.0005431842291727662, 0.010706820525228977, 0.0071823811158537865, 0.025071581825613976, -0.0004526535340119153, 0.003951644524931908, -0.008490695618093014, 0.014191210269927979, -0.009645483456552029, 0.002586591523140669, -0.002496478147804737, -0.010292965918779373, -0.025205083191394806, -0.034229785203933716, 0.00034647813299670815, 0.00493621826171875, 0.008510720916092396, 0.003340875031426549, -0.014071058481931686, -2.9359900509007275e-05, 0.03455018997192383, -0.018703561276197433, -0.012428989633917809, 0.019784923642873764, 0.017528748139739037, -0.0488615520298481, 0.025538837537169456, -0.0043187737464904785, -0.017114892601966858, 0.03073204681277275, 0.0017588823102414608, -0.02021212689578533, -0.013817405328154564, 0.016327233985066414, -0.0045357136987149715, 0.010166139341890812, -0.008831124752759933, 0.0003510672249831259, 0.011240826919674873, -0.0037881052121520042, -0.0026983991265296936, -0.012956321239471436, -0.004218647722154856, -0.014578363858163357, -0.013276724144816399, 0.012408964335918427, -0.01316992286592722, 0.02165394462645054, -0.01824965514242649, 0.027034053578972816, -0.007295857183635235, -0.031853459775447845, -0.02747461013495922, -0.019931774586439133, -0.002369651570916176, -0.012529116123914719, -0.00018492044182494283, 0.006307946052402258, -0.02680710144340992, -0.007956689223647118, 0.013517026789486408, -0.004745978396385908, 0.004549063742160797, 0.017261743545532227, -0.016313884407281876, 0.013196623884141445, 0.008677598088979721, -0.0005206558853387833, -0.035110894590616226, -0.006571611389517784, -0.0026533424388617277, -0.024884680286049843, -0.0029036577325314283, -0.01607358083128929, 0.0282222181558609, 0.03046504221856594, -0.007242456544190645, -0.022268051281571388, -0.008090191520750523, -0.042640380561351776, -0.011768157593905926, -0.03962324559688568, 0.03665951266884804, 0.02503153122961521, 0.033962782472372055, 0.03046504221856594, 0.023522965610027313, 0.002100979909300804, 0.0231491606682539, -0.019905073568224907, 0.001920752925798297, -0.01241564005613327, -0.024737829342484474, 0.006721800658851862, -0.02346956357359886, -0.03198695927858353, -0.0028118754271417856, 0.010366391390562057, -0.0222546998411417, 0.018436558544635773, 0.019905073568224907, -0.021266790106892586, -0.021426990628242493, -0.0018323081312701106, 0.009658833965659142, 0.015766527503728867, 0.016741087660193443, 0.029370330274105072, -0.023976869881153107, 0.0061444067396223545, 0.007956689223647118, -0.019184166565537453, -0.011154050938785076, 0.017662249505519867, 0.026072843000292778, -0.004735965747386217, 0.01763554848730564, -0.016847889870405197, -0.02714085578918457, -0.005286659579724073, -0.016741087660193443, 0.0046925777569413185, -0.010232890024781227, 0.007442708592861891, 0.02774161286652088, -0.010019287467002869, 0.00046350053162314, -0.014738566242158413, 0.023042360320687294, 0.019744873046875, 0.0109604736790061, 0.017421945929527283, -0.023830018937587738, -0.00760291051119566, -0.01933101750910282, -0.0026132918428629637, 0.03006453812122345, -0.012382264249026775, -0.012582516297698021, -0.000847734569106251, -0.019744873046875, -0.009385155513882637, 0.0181295033544302, -0.016046879813075066, -0.010573319159448147, -0.011627980507910252, -0.004745978396385908, -0.008156942203640938, -0.00038173087523318827, -0.0007985058473423123, -0.018716910853981972, -0.0034877266734838486, -0.01764889806509018, 0.0009678858914412558, -0.040878161787986755, 0.006411409936845303, 0.01771564967930317, -0.013303425163030624, 0.008911225013434887, 0.2054855078458786, -0.0005060541443526745, 0.023095760494470596, 0.017208343371748924, 0.017528748139739037, 0.0033942756708711386, 0.0073893084190785885, 0.018957212567329407, 0.0006057630525901914, -0.004021732602268457, 0.021600542590022087, 0.010780245997011662, -0.026152944192290306, -0.00036337439087219536, -0.004522363655269146, -0.004148559179157019, -0.025004832074046135, -0.016514135524630547, -0.006895352620631456, -0.008090191520750523, 0.007322557270526886, -0.015018919482827187, -0.0200252253562212, -0.011828233487904072, 0.015953429043293, 0.020666033029556274, 0.004058445803821087, 0.007883263751864433, 0.01716829277575016, 0.02896982617676258, -0.009038051590323448, -0.006574949249625206, 0.012942970730364323, -0.011547880247235298, -0.019157465547323227, -0.02306905947625637, 0.013530377298593521, -0.010453167371451855, 0.005620413459837437, 0.0090647516772151, -0.005840690806508064, -0.02511163242161274, 0.01914411596953869, -0.033802580088377, 0.006464810110628605, 0.0059174541383981705, -0.0018957213032990694, -0.0010463179787620902, 0.019117414951324463, 0.021613894030451775, 0.008383894339203835, -0.004492325708270073, 0.009892461821436882, 0.009318404830992222, 0.0018056078115478158, 0.010646744631230831, -0.010025963187217712, 0.009011351503431797, -0.006591636687517166, -0.007002153899520636, -0.004235335160046816, -0.012562491931021214, 0.025058232247829437, -0.01136097777634859, -0.02790181338787079, 0.014097758568823338, -0.017408596351742744, 0.032681167125701904, 0.0020459105726331472, 0.011607956141233444, -0.02021212689578533, -0.010546619072556496, -0.03033154085278511, -0.0035811779089272022, -0.014818666502833366, -0.02278870716691017, 0.015512874349951744, 0.02577914111316204, 0.035110894590616226, 0.0051264576613903046, -0.0007184049463830888, -1.533181239210535e-05, -0.02848922088742256, -0.00021381099941208959, 0.010286291129887104, -0.020172076299786568, 0.038368333131074905, -0.02565898932516575, 0.012909595854580402, -0.0060743181966245174, -0.0061744446866214275, 0.015793228521943092, 0.007863238453865051, -0.006641699932515621, -0.001336683752015233, 0.0029336954466998577, 0.013290074653923512, 0.01600683107972145, -0.0100126126781106, -0.024177122861146927, -0.018102804198861122, 0.05190538614988327, 0.01288957055658102, 0.02694060280919075, 0.0031289414037019014, 0.0014710196992382407, 0.006811914034187794, 0.009318404830992222, 0.005129795055836439, -0.009785660542547703, -0.013570427894592285, -0.04683232679963112, 0.0043187737464904785, -0.006665062624961138, 0.0003356311353854835, 0.02597939223051071, 0.010186164639890194, -0.00240970216691494, 0.004402211867272854, 0.006414747331291437, 0.027301058173179626, -0.0032807993702590466, -0.003671291284263134, 0.00517652090638876, -0.007683011703193188, -0.032067060470581055, 0.0030671970453113317, 0.01783580146729946, -0.03388268128037453, -0.03930284082889557, 0.0031773357186466455, -0.015272571705281734, 0.014071058481931686, 0.019357718527317047, 0.00022090326820034534, -0.01373730506747961, -0.015793228521943092, -0.01946451887488365, 0.014031007885932922, 0.008156942203640938, 0.02559223771095276, -0.003137285355478525, 0.00231625116430223, 0.009992587380111217, 0.0006650043651461601, 0.01914411596953869, -0.008377219550311565, 0.013443601317703724, -0.030918948352336884, -0.02165394462645054, -0.0008281265036202967, 0.024510875344276428, -0.008203667588531971, -0.008056815713644028, 0.031185951083898544, -0.03163985535502434, -0.025565538555383682, -0.013490326702594757, 0.006982128601521254, 0.0006399728590622544, -0.04832754284143448, 0.011981760151684284, 0.0419461727142334, 0.021627243608236313, -0.018423207104206085, 0.0038682061713188887, -0.16960030794143677, 0.00568382628262043, 0.001003764453344047, -0.013203298673033714, -0.012575841508805752, 0.028462519869208336, 0.0017555447993800044, -0.01061336975544691, 0.00019399437587708235, -0.004398874472826719, -0.000861919077578932, -0.001864014775492251, -0.03150635585188866, -0.02395016886293888, 0.02083958499133587, -0.024003570899367332, 0.022561753168702126, 0.028462519869208336, 0.049715958535671234, 0.004902842920273542, 0.016781138256192207, -0.028676122426986694, -0.01688794046640396, -0.005500262137502432, 0.01208188571035862, 0.01615368202328682, -0.011207451112568378, 0.02848922088742256, 0.009959212504327297, -0.03230736404657364, 0.027928514406085014, -0.0137773547321558, 0.01264926791191101, 0.0008894537459127605, -0.008877850137650967, -0.01702144183218479, 0.004979606252163649, -0.013710604049265385, -0.013470301404595375, 0.03107915073633194, 0.03318847343325615, 0.006868652533739805, 0.013316774740815163, 0.0011589599307626486, 0.029637333005666733, 0.02260180376470089, 0.037594024091959, -0.024137072265148163, 0.002334607532247901, -0.0011973415967077017, 0.011728106997907162, -0.03153305500745773, 0.01628718338906765, -0.0007563694380223751, 0.0109604736790061, -0.014071058481931686, 0.02055923081934452, 0.027848413214087486, 0.0010413117706775665, -0.0041018337942659855, 0.003417638596147299, -0.01961137168109417, -0.009712234139442444, -0.017395246773958206, -0.01886376179754734, -0.02856932207942009, 0.012128612026572227, 0.03452348709106445, -0.010272940620779991, 0.017061492428183556, 0.014071058481931686, 0.02483128011226654, -0.007128980476409197, 0.007342582568526268, 0.0011923352722078562, -0.007883263751864433, -0.020933035761117935, 0.0232025608420372, 0.01824965514242649, 0.0140844089910388, 0.0011873289477080107, 0.013990957289934158, 0.013857455924153328, -0.005199883598834276, -0.000977898482233286, -0.013817405328154564, 0.00034126322134397924, -0.018489958718419075, -0.004906180314719677, -0.00963213387876749, 0.023362763226032257, -0.011174076236784458, -0.024550925940275192, 0.002448083832859993, 0.00025824198382906616, 0.011814882978796959, 0.020265528932213783, 0.008577471598982811, -0.00464918976649642, -0.016393983736634254, -0.006441447418183088, 0.0057105268351733685, -0.023362763226032257, 0.024871330708265305, 0.03997034952044487, 0.011928359046578407, 0.021560491994023323, -0.004175259731709957, 0.0294504314661026, -0.02165394462645054, -0.02273530513048172, 0.015085670165717602, 0.0432811863720417, 0.002815213054418564, -0.023322712630033493, 0.04248017817735672, -0.01987837441265583, -0.029076628386974335, 0.005530299618840218, -0.01688794046640396, 0.05014316365122795, -0.027447909116744995, -0.024991480633616447, 0.0002229892270406708, -0.005353410262614489, -0.006815251894295216, -0.09040721505880356, -0.0169012900441885, 0.018276356160640717, 0.01051991805434227, 0.005403473507612944, 0.019050665199756622, 0.0033575627021491528, 0.03286806866526604, 0.012769418768584728, 0.032734569162130356, -0.011547880247235298, -0.017822450026869774, -0.015699775889515877, -0.011527854949235916, 0.024310624226927757, -0.0014393130550161004, 0.011033899150788784, -0.01758214831352234, -0.0004689240304287523, 0.0344700887799263, 0.003397613298147917, -0.005059706978499889, -0.0004342970787547529, 0.003012127708643675, -0.0002642912440933287, -0.006101018749177456, -0.04221317544579506, 0.018222955986857414, 0.031052449718117714, 0.006408072076737881, 0.02795521542429924, -0.024617677554488182, 0.0018039391143247485, -0.028809623792767525, 0.005173183046281338, 0.006004230119287968, -0.026353197172284126, -0.0063613466918468475, 0.02476452849805355, -0.021613894030451775, 0.014044358395040035, -0.003324187360703945, 0.011801532469689846, -0.043601591140031815, 0.00844397023320198, 0.0022394878324121237, -0.010259590111672878, 0.040531057864427567, 0.0200786255300045, -0.005143145564943552, -0.018890462815761566, -0.018917163833975792, -0.04934215545654297, -0.012128612026572227, 0.012128612026572227, 0.01252244133502245, 0.005199883598834276, 0.012141961604356766, -0.01688794046640396, -0.010126088745892048, -0.001173978904262185, -0.008730998262763023, -0.011928359046578407, 0.02341616339981556, 0.0041018337942659855, 0.014418162405490875, -0.016580887138843536, 0.002785175107419491, -0.012248762883245945, -0.013176598586142063, -0.0057305521331727505, -0.01387080643326044, -0.01663428731262684, 0.016794489696621895, -0.023910120129585266, 0.015366023406386375, -0.001525254687294364, -0.023496264591813087, 0.009171552956104279, 0.004138546530157328, -0.003687978954985738, -0.01316324807703495, 0.0025915978476405144, -0.01520582102239132, -0.021613894030451775, 0.01037974189966917, -0.0012724362313747406, -0.01292962022125721, 0.02341616339981556, -0.03438998758792877, 0.031105849891901016, 0.02266855537891388, 0.01587332785129547, 0.013663878664374352, -0.008677598088979721, -0.0013174929190427065, -0.01197508443146944, -0.012028485536575317, 0.024270573630928993, 0.010413117706775665, -0.0011506160954013467, 0.007796487770974636, -0.060022275894880295, -0.0012565829092636704, 0.0222012996673584, -0.002616629470139742, 0.011140700429677963, -0.026072843000292778, 0.00029808381805196404, -0.007956689223647118, 0.003681303933262825, -0.006908702664077282, -0.029156727716326714, 0.015619675628840923, -0.013530377298593521, 0.0200786255300045, -0.03174665570259094, 0.01027961540967226, 0.018850412219762802, -0.002955389441922307, 0.00012213301670271903, -0.0035745026543736458, -0.026927253231406212, -0.01588667929172516, 0.005279984325170517, 0.013096497394144535, -0.024123720824718475, 0.011254176497459412, -0.02035897970199585, 0.017154943197965622, -0.017662249505519867, -0.0282222181558609, 0.0156730767339468, 0.007609585765749216, -0.02401692047715187, 0.02063933201134205, -0.0022278062533587217, -0.03807462751865387, -0.0027467934414744377, 0.006181119475513697, 0.0026249734219163656, 0.010366391390562057, -0.0015853303484618664, -0.021680643782019615, 0.02075948379933834, -0.018770311027765274, -0.021053187549114227, -0.013990957289934158, -0.012669292278587818, -0.017809100449085236, -0.007088929880410433, 0.009031376801431179, 0.04947565868496895, 0.0029737460426986217, -0.031586457043886185, -0.01838315650820732, 0.0008014262421056628, -0.0059775300323963165, 0.02158719301223755, 0.013136547990143299, 0.015005568973720074, 0.005269971676170826, 0.04680562764406204, -0.005386785604059696, 0.005884078796952963, 1.5618632460245863e-05, -0.0008252061670646071, -0.025191733613610268, -0.03059854544699192, 0.005950829479843378, 0.01208188571035862, -0.02240155264735222, 0.005583700258284807, -0.01764889806509018, 0.0369265154004097, 0.014257960952818394, 0.0028869700618088245, -0.0011472785845398903, -0.027234306558966637, -0.005620413459837437, 0.00027618123567663133, 0.006294596008956432, 0.01791590265929699, -0.01459171436727047, -0.02742120809853077, 0.023376112803816795, 0.01703479140996933, 0.002286213217303157, -0.014925467781722546, 0.03230736404657364, 0.00976563524454832, -0.007202405948191881, 0.002080954611301422, 0.00488281762227416, -0.009605432860553265, 0.00664837472140789, -0.006468147970736027, 0.015245871618390083, -0.01038641668856144, 0.00573722692206502, 0.020599281415343285, 0.043387990444898605, -0.015272571705281734, 0.005610400810837746, 0.008650897070765495, -0.015512874349951744, -0.012061860412359238, -0.0011105656158179045, -0.020786184817552567, -0.02027887850999832, 0.006768526043742895, 0.015018919482827187, 0.008570796810090542, -0.015192471444606781, 0.007269157096743584, 0.011340952478349209, -0.019304316490888596, -0.017395246773958206, 0.008517395704984665, -0.013410226441919804, -0.02883632481098175, 0.013950906693935394, 0.0012131949188187718, 0.027447909116744995, 0.014298010617494583, -0.025151683017611504, 0.025391986593604088, -0.013096497394144535, 0.010680120438337326, -0.0294504314661026, 0.0014226253842934966, -0.01696804165840149, -0.015966780483722687, 0.014872067607939243, -0.0010655089281499386, -0.004866129718720913, -0.0260461438447237, -0.00045974578824825585, -0.015913378447294235, 0.00032666148035787046, 0.006004230119287968, 0.07043538987636566, 0.014925467781722546, -0.0169012900441885, 0.020399030297994614, -0.011073949746787548, 0.015085670165717602, 0.017154943197965622, -0.003587852930650115, 0.010700145736336708, 0.0003823566366918385, 0.009885786101222038, -0.01573982648551464, -0.010740196332335472, -0.00976563524454832, -0.017261743545532227, -0.004755991045385599, -0.013256698846817017, 0.02233480103313923, -0.007169030606746674, 0.008163616992533207, 0.013056446798145771, -0.008096866309642792, -0.004001707769930363, -0.020185427740216255, -0.032334063202142715, -0.004755991045385599, 0.03842173144221306, 0.007382633164525032, -0.006698437966406345, -0.03198695927858353, 0.028275618329644203, -0.0004851945268455893, -0.026086194440722466, -0.02848922088742256, 0.0034877266734838486, 0.015446123667061329, -0.01302974671125412, -0.019157465547323227, -0.0019257591338828206, 0.028382420539855957, 0.018343105912208557, 0.015713127329945564, -0.01663428731262684, -0.0044956631027162075, -0.0023880081716924906, 0.002598273102194071, 0.006264558061957359, -0.01682118885219097, 0.016407335177063942], "81444380-7cb4-4706-8f08-02dc8ef9d443": [-0.009228270500898361, 0.0028134153690189123, 0.02913343533873558, -0.040990687906742096, -0.003993775229901075, 0.01616288721561432, -0.005150662735104561, -0.03884458169341087, -0.003531020600348711, -0.03667164593935013, -0.0009632342262193561, 0.025686247274279594, 0.012138931080698967, -0.018684564158320427, -0.017759054899215698, 0.016484802588820457, 0.020803848281502724, -0.009945875965058804, 0.008537491783499718, -0.021233070641756058, -0.0245193000882864, 0.016082407906651497, -0.0012457494158297777, 0.004211739636957645, -0.02732265554368496, 0.01452647801488638, -0.007088867481797934, -0.028221338987350464, -0.02030755952000618, 0.018000492826104164, -0.0007746113697066903, -0.009610545821487904, -0.012024919502437115, -0.00201365421526134, -0.03849583864212036, 0.0021092230454087257, 0.003987068776041269, 0.003903236472979188, -0.0030833554919809103, -0.01036168448626995, 0.026477623730897903, 0.01730300672352314, 0.005338447168469429, -0.021125763654708862, -0.0070016817189753056, 0.022212231531739235, 0.0009221563814207911, -6.447890427807579e-06, -0.0019750914070755243, 0.004275452345609665, 0.0019029953982681036, -0.013178452849388123, -0.028355469927191734, 0.015787316486239433, 0.00237078033387661, -0.031494155526161194, 0.027362894266843796, -0.0018845523009076715, 0.020428279414772987, -0.01830899529159069, 0.017678575590252876, 0.0034572482109069824, 0.0010956894839182496, 0.00435928488150239, -0.0006358687533065677, -0.021085524931550026, -0.012454140931367874, -0.0003950601676478982, -0.016739653423428535, -0.0026440739165991545, 0.03482062369585037, 0.03369391709566116, 0.002439522882923484, 0.009711145423352718, -0.027631158009171486, -0.004067548085004091, -0.01305773388594389, -0.006488627754151821, -0.017142048105597496, 0.01075737364590168, 0.004372697789222002, -0.02490828186273575, -0.027094630524516106, 0.002902277512475848, 0.02299019694328308, 0.007853418588638306, 0.024411994963884354, 0.011200007982552052, -0.005033296998590231, 0.016256779432296753, -0.001510659814812243, -0.0102208461612463, 0.03455236181616783, 0.016726240515708923, 0.008141802623867989, 0.015666598454117775, 0.01449965126812458, 0.009523360058665276, -0.01883210986852646, -0.02197079546749592, -0.019355224445462227, -0.012521207332611084, -0.029509004205465317, -0.005734135862439871, -0.038522664457559586, -0.002823475282639265, 0.006941322702914476, -0.014217974618077278, 0.023352352902293205, 0.005576530937105417, -0.029160261154174805, 0.0402127243578434, -0.017893187701702118, -0.011964559555053711, 0.02518995851278305, -0.014942286536097527, 0.025820378214120865, -0.04504147171974182, -0.02131354808807373, -0.012098691426217556, 0.019073547795414925, -0.011072583496570587, 0.03919332101941109, -0.023955946788191795, 0.030769843608140945, 0.0036450326442718506, 0.019596660509705544, -0.014405759051442146, 0.02539115585386753, -0.014204561710357666, -0.015451987273991108, 0.012655339203774929, 0.014378933236002922, 0.01423138752579689, -0.0005767669063061476, 0.003046469297260046, -0.013547315262258053, -0.0036450326442718506, -0.015156897716224194, -0.024103490635752678, 0.032701343297958374, 0.03460601344704628, 0.006455094553530216, -0.028355469927191734, -0.004912578500807285, 0.016390910372138023, 0.004899165127426386, 0.014432585798203945, 0.006652939133346081, 0.015384921804070473, 0.01596168801188469, -0.03315738961100578, -0.01282970979809761, -6.334585486911237e-05, 0.015223963186144829, 0.002566948067396879, 0.018805284053087234, 0.009194737300276756, -0.015438574366271496, 0.0009967671940103173, 0.009523360058665276, 0.007725993636995554, 0.0052378480322659016, 0.0033851522020995617, -0.0037758112885057926, 0.028355469927191734, 0.006689825560897589, -0.010033061727881432, -0.004768386948853731, 0.014982526190578938, 0.012735817581415176, 0.02993822656571865, -0.01382899284362793, 0.0001220809353981167, 0.022493908181786537, 0.009597132913768291, 0.012239529751241207, 0.016068993136286736, -0.009697731584310532, -0.029026130214333534, 0.01533126924186945, 0.006019166205078363, -0.017450552433729172, 0.0062438370659947395, -0.012434021569788456, -0.01777246780693531, 0.022078100591897964, 0.015022765845060349, -0.00768575444817543, 0.002498205518350005, 0.008664916269481182, 0.014445998705923557, -0.015492226928472519, -0.020830674096941948, -0.6283808350563049, 0.0033482660073786974, -0.002883834531530738, -0.010381803847849369, -0.007383957505226135, -0.007840005680918694, 0.03052840568125248, -0.008168628439307213, -0.002125989645719528, 0.02932121977210045, 0.028409123420715332, 0.013614381663501263, -0.003306349739432335, -0.02218540571630001, 0.003073295811191201, -0.012574859894812107, -0.024800976738333702, -0.02386205457150936, -0.02084408700466156, 0.012494380585849285, -0.028435949236154556, 0.031896550208330154, -0.0023623970337212086, 0.008302760310471058, 0.00047616803203709424, -0.008564317598938942, 0.04007859155535698, -0.008785635232925415, 0.009000246413052082, 0.01863091252744198, -0.025739898905158043, 0.006756891496479511, -0.0009112581610679626, -0.004986350890249014, 0.047536324709653854, -0.0028821579180657864, -0.019086960703134537, 0.030984453856945038, 0.02484121546149254, 0.05638902261853218, -0.006290783174335957, -0.021662291139364243, 0.01944911666214466, 0.008691743016242981, -0.012340129353106022, 0.012487674131989479, 0.015693424269557, 0.005294854287058115, -0.008497252129018307, -0.022413430735468864, 0.009965995326638222, -0.024143731221556664, -0.012098691426217556, -0.005660363472998142, 0.003427068470045924, -0.004275452345609665, 0.0061532980762422085, -0.03146732971072197, 0.010207433253526688, 0.002100839978083968, -0.009328869171440601, 0.007806472945958376, -0.024760738015174866, -0.019931990653276443, -0.052874770015478134, -0.0022098219487816095, 0.0027731757145375013, -0.03755691275000572, 0.01118659507483244, -0.021689118817448616, 0.03398900851607323, 0.0003537727170623839, -0.0061600045301020145, -0.010334857739508152, -0.001704312628135085, 0.016605520620942116, 0.02052217163145542, -0.009691025130450726, -0.009670905768871307, -0.0012122164480388165, -0.0054021598771214485, -0.009878809563815594, -0.04115164652466774, -0.01930157095193863, 0.027443373575806618, 0.015934862196445465, -0.003531020600348711, -0.003271140158176422, 0.00154503108933568, 0.004972937982529402, 0.002945870393887162, 0.03200385719537735, -0.005901800934225321, -0.0306625384837389, -0.025082653388381004, 0.040051765739917755, -0.01851019263267517, -0.005482638720422983, -0.01965031400322914, -0.006642879452556372, -0.016820132732391357, -0.010616535320878029, -0.00788695178925991, 0.013104680925607681, 0.01445941161364317, 0.009919049218297005, 0.009577013552188873, -0.012782763689756393, 0.028409123420715332, -0.043405063450336456, 0.007471143268048763, -0.006220364011824131, -0.018000492826104164, -0.007383957505226135, 0.030152836814522743, -0.021407440304756165, 0.004332458134740591, -0.0197710320353508, 0.020481931045651436, -0.034310922026634216, 0.011830427683889866, -0.012776057235896587, 0.01844312809407711, 0.0032728167716413736, -0.0013044321676716208, 0.0015123364282771945, 0.026021575555205345, -0.005040003918111324, 0.0098855160176754, -0.018724804744124413, 0.0006622759392485023, -0.02156839892268181, 0.01683354564011097, -0.010723840445280075, 0.009335575625300407, -0.02458636648952961, 0.036510687321424484, -0.006274016574025154, 0.001010180450975895, -0.04249296709895134, -0.011307314038276672, 0.012641925364732742, 0.008034496568143368, -0.01510324515402317, 0.005610064137727022, -0.025900857523083687, -0.026276426389813423, 0.0035209606867283583, -0.026410559192299843, 0.0028788044583052397, -0.019154027104377747, -0.014647196978330612, -0.011260367929935455, 0.024975348263978958, -0.02230612374842167, 0.00015592825366184115, 0.029482178390026093, -0.04383428394794464, -0.015170310623943806, -0.02878469228744507, -0.024948522448539734, 0.006528866942971945, -0.006689825560897589, -0.005395452957600355, -0.01069030724465847, -0.011092702858150005, 0.012393781915307045, 0.0022970077116042376, -0.017557857558131218, -0.040320031344890594, 0.01537150889635086, -0.008027790114283562, 0.008141802623867989, 0.03264768794178963, -0.01142803207039833, 0.027497027069330215, -0.026705648750066757, -0.00968431867659092, 0.0023540137335658073, -0.002551858313381672, 0.0021762889809906483, 0.00021356303477659822, -0.00333317625336349, -0.014700849540531635, 0.0285969078540802, 0.016484802588820457, 0.022560974583029747, 0.01783953420817852, -0.01449965126812458, 0.005764315836131573, 0.03374756872653961, -0.003418685169890523, -0.0019868279341608286, 0.001685869530774653, -0.021152591332793236, 0.01724935509264469, -0.03648386150598526, 0.0002823056129273027, -0.0030984454788267612, 0.017396898940205574, -0.001573534100316465, 0.01884552277624607, -0.009181324392557144, -0.005167428869754076, -0.006314256228506565, -0.0261959470808506, 0.016860371455550194, -0.031708765774965286, 0.019945403560996056, 0.006730064749717712, 0.0016875461442396045, 0.005952100269496441, -0.0069815618917346, -0.022896304726600647, 0.010824439115822315, 0.04482686147093773, 0.017933426424860954, 0.0026122175622731447, 0.0038730567321181297, 0.008973419666290283, 0.000928862951695919, -0.014057016931474209, 0.04249296709895134, -0.013587554916739464, 0.003940122667700052, 0.028409123420715332, -0.0008429347653873265, 0.024546125903725624, -0.006166710983961821, -0.008638090454041958, 0.0069815618917346, 0.041714999824762344, 0.00898012612015009, 0.008376533165574074, 0.024492474272847176, 0.01777246780693531, 0.028355469927191734, -0.03318421542644501, 0.03245990350842476, -0.002583714434877038, -0.014606957323849201, 0.025417983531951904, 0.011629230342805386, -0.02045510523021221, 0.033237870782613754, -0.002749702660366893, 0.021085524931550026, 0.0014528154861181974, -0.006800483912229538, 0.01058970857411623, 0.014620370231568813, -0.0059789265505969524, -0.011334139853715897, -0.013071147724986076, 0.006217010784894228, -0.018188277259469032, 0.013721686787903309, 0.005301560740917921, 0.011481685563921928, 0.013507075607776642, 0.01829558238387108, -0.024546125903725624, 0.005952100269496441, -0.0028670679312199354, 0.014539890922605991, -0.010160486213862896, -0.00017699114687275141, -0.024814389646053314, -0.006317609455436468, -0.015465401113033295, -0.006210303865373135, -0.015076418407261372, 0.0006392220384441316, 0.0014217974385246634, 0.0014922167174518108, 0.0024311395827680826, 0.02017342858016491, 0.03573272004723549, -0.01991857774555683, 0.006652939133346081, -0.03248672932386398, -0.013399770483374596, 0.015438574366271496, 0.019489355385303497, 0.0110859964042902, -0.024465646594762802, -0.016457976773381233, -0.014057016931474209, -0.0024126963689923286, -0.006934615783393383, -0.00763210142031312, -0.0010579648660495877, -0.017477378249168396, -0.010804319754242897, 0.0016707796603441238, 0.02713487111032009, 0.04469272866845131, -0.01810779795050621, -0.006673058960586786, 0.004687907639890909, -0.008235694840550423, 0.00688096322119236, -0.013131506741046906, -0.04485368728637695, 0.036188770085573196, -0.03940793499350548, -0.023285286501049995, -0.017490791156888008, -0.03468649461865425, -0.019408876076340675, 0.005070183426141739, -0.008617970161139965, -0.027470199391245842, -0.00714922696352005, -0.01829558238387108, 0.028221338987350464, 0.008966713212430477, 0.017048155888915062, 0.03173559159040451, 0.027027565985918045, -0.001576049136929214, -0.03535715118050575, 0.002464672550559044, 0.018604086712002754, 0.07280676066875458, 0.009348989464342594, 0.008316174149513245, 0.018684564158320427, -0.01322539895772934, -0.03436457738280296, -0.018349235877394676, -0.018429715186357498, 0.037369128316640854, -0.0022802413441240788, -0.016082407906651497, -0.00402730843052268, 0.009228270500898361, 0.009342282079160213, 0.00017133246001321822, 0.0035410805139690638, -0.001713534235022962, -0.023634029552340508, 0.007236412726342678, 0.0009322162950411439, 0.0159751009196043, -0.010167193599045277, 0.007236412726342678, 0.02398277260363102, 0.021219655871391296, 0.021528160199522972, 0.01991857774555683, 0.001839282806031406, -0.008906354196369648, -0.016149472445249557, -0.027979901060461998, 0.02003929577767849, -0.011468271724879742, 0.02117941714823246, -0.02191714197397232, 0.040454160422086716, -0.0044732969254255295, -0.008503958582878113, -0.0122596500441432, 0.005921920761466026, 0.005214374978095293, 0.03482062369585037, -0.005016530863940716, -0.01112623605877161, 1.848242391133681e-05, -0.010462283156812191, -0.0038797634188085794, 0.01553246658295393, -0.026960499584674835, -0.01015377976000309, 0.025297263637185097, 0.017544444650411606, -0.005804555024951696, 0.029777267947793007, 0.0017839533975347877, -0.016283605247735977, -0.00021754507906734943, 0.005365273449569941, -0.044665902853012085, -0.008644796907901764, -0.026075229048728943, -0.0025870678946375847, -0.0071693467907607555, 0.0038864698726683855, -0.014244801364839077, -0.00972455833107233, 0.004503476433455944, -0.00282179843634367, -0.03087714873254299, 0.004664434585720301, 0.016189713031053543, -0.058427829295396805, -0.04710710048675537, -0.0012801206903532147, 0.02631666697561741, 0.016082407906651497, -0.01710180938243866, -0.0060258726589381695, 0.0003705392009578645, 0.02024049498140812, 0.015210550278425217, -0.020481931045651436, 0.00043173684389330447, -0.03720817342400551, 0.0022098219487816095, -0.01769198849797249, -0.024358341470360756, -0.015049591660499573, -0.004325751680880785, -0.0004313176905270666, -0.0006023357855156064, -0.0017336539458483458, 0.005871620960533619, 0.012903482653200626, 0.007397370878607035, 0.012869949452579021, 0.029965052381157875, -0.015197137370705605, 0.026034990325570107, -0.04890446737408638, 0.01125366147607565, -0.01258827280253172, -0.02537774294614792, -0.010697013698518276, 0.00805461686104536, 0.011830427683889866, -0.01563977263867855, 0.002392576541751623, -0.009805037640035152, -0.009422761388123035, 0.02131354808807373, 0.008812461979687214, 0.012843123637139797, 0.006887669675052166, 0.021273309364914894, -0.026155708357691765, 0.003903236472979188, 0.015210550278425217, 0.02698732540011406, 0.01285653654485941, -0.00506012374535203, -0.008725276216864586, 0.03052840568125248, 0.008926473557949066, -0.0029576069209724665, 0.0019683847203850746, 0.021192830055952072, -0.03881775215268135, -0.025954511016607285, 0.005459165666252375, -0.008101562969386578, 0.019891751930117607, -0.03782517835497856, -0.030635710805654526, -0.017289593815803528, 0.006300842855125666, -0.014902046881616116, -0.012970549054443836, -0.036510687321424484, -0.003762397915124893, -0.018926002085208893, 0.004419643897563219, 0.017262768000364304, -0.0013463483192026615, -0.0012616775929927826, -0.0224536694586277, -0.012286475859582424, 0.014620370231568813, 0.02203786000609398, 0.01904672011733055, -0.023030435666441917, -0.02238660305738449, -0.014982526190578938, -0.006542280316352844, -0.010334857739508152, -0.026437385007739067, -0.02525702491402626, 0.013319291174411774, 0.059554535895586014, 0.0027480260469019413, 0.003752338234335184, 0.013232105411589146, 0.005512818694114685, -0.013406476937234402, -0.018456541001796722, -0.021823249757289886, -0.017128635197877884, -0.02176959626376629, 0.01577390357851982, -0.0035679067950695753, 0.017396898940205574, 0.003966948948800564, -0.005663716699928045, -0.002898924285545945, 0.010395217686891556, 0.017785880714654922, -0.012662045657634735, -0.0022098219487816095, -0.03154780715703964, -0.024009598419070244, 5.377062279876554e-06, 0.03669847175478935, 0.0131248002871871, 0.02726900205016136, -0.034445054829120636, -0.0015123364282771945, 0.005583237856626511, 0.012252943590283394, 0.035437632352113724, 0.007638808339834213, 0.022936543449759483, -0.004382757935672998, -0.014191148802638054, 0.00918803084641695, -0.013855818659067154, -0.026947086676955223, -0.0015324562555179, -0.052472375333309174, -0.00945629458874464, 0.01149509847164154, 0.03981032967567444, 0.002473055850714445, -0.0049427580088377, 0.013077854178845882, -0.0007955694454722106, 0.014137495309114456, -0.011676176451146603, -0.001147665549069643, 0.005955453496426344, -0.01526420284062624, -0.00010573361214483157, -0.018013905733823776, -0.015143484808504581, 0.015988515689969063, -0.00779976649209857, -0.01897965557873249, 0.008678330108523369, 0.006850783713161945, -0.006693178787827492, -0.0027765289414674044, 0.023486483842134476, 0.014633783139288425, 0.0382007472217083, -0.0010671864729374647, 0.026611756533384323, 0.012434021569788456, 0.004365991335362196, -0.005244554951786995, -0.026705648750066757, 0.00532503379508853, -0.019663726910948753, -0.004070901311933994, 0.03774469718337059, -0.00788695178925991, -0.008973419666290283, 0.013211986050009727, -0.014593543484807014, 0.013178452849388123, -0.01691402494907379, 0.01272911112755537, 0.009094138629734516, 0.0022316183894872665, -0.0388714075088501, -0.011092702858150005, 0.001322875265032053, 0.029106609523296356, -0.005801201798021793, 0.02899930253624916, -0.003581319935619831, -0.003930062986910343, 0.0006304196431301534, 0.051345668733119965, -0.020146602764725685, 0.01449965126812458, -0.02305726334452629, -0.0020505404099822044, -0.007457730360329151, 0.004114494193345308, -0.018751630559563637, -0.019811272621154785, 0.011045756749808788, 0.01506300549954176, -0.005703956354409456, 0.005724076181650162, 0.000414341629948467, 0.024090077728033066, -0.011441445909440517, -0.012024919502437115, -0.012601685710251331, 0.026947086676955223, -0.007142520509660244, 0.008731982670724392, 0.009067311882972717, -0.017531031742691994, 0.01770540326833725, -0.031708765774965286, -0.011508511379361153, 0.005174135789275169, 0.010643361136317253, 0.016015341505408287, 0.018751630559563637, -0.00596215995028615, 0.0030531759839504957, -0.0059789265505969524, 0.0034740145783871412, -0.01770540326833725, 0.011656057089567184, -0.008356413803994656, -0.0018342528492212296, -0.03315738961100578, -0.02765798568725586, -0.009731264784932137, 0.02645079791545868, 0.0070754545740783215, 0.014150909148156643, -0.02465343102812767, 0.001664073090068996, 0.04640961438417435, -0.0013815579004585743, -0.00788695178925991, 0.02030755952000618, 0.010898211970925331, -0.047348540276288986, 0.018040731549263, 0.003306349739432335, -0.01537150889635086, 0.029106609523296356, -0.009429467841982841, -0.03087714873254299, -0.01951618306338787, 0.023540137335658073, 0.005952100269496441, 0.008235694840550423, -0.010643361136317253, 0.011843841522932053, 0.004634255077689886, 0.001057126559317112, 0.0017059893580153584, -0.022400015965104103, -0.005442399065941572, -0.02618253417313099, -0.006770304404199123, -0.01479474175721407, -0.014016777276992798, 0.010012941434979439, -0.006686471868306398, 0.034230444580316544, -0.019274745136499405, -0.03428409621119499, -0.028409123420715332, -0.018738217651844025, -0.018161451444029808, -0.01750420406460762, 0.0016841929173097014, 0.006089585367590189, -0.0319502018392086, 0.005137249361723661, 0.014674022793769836, -0.011817014776170254, 0.01570683717727661, 0.00871856976300478, 0.00027685650275088847, 0.01380216609686613, 0.006743478123098612, 0.002501558745279908, -0.02399618551135063, 0.002169582527130842, -0.007679047528654337, -0.02738972194492817, -0.004952818155288696, -0.010314738377928734, 0.038978710770606995, 0.008859408088028431, -0.019677139818668365, -0.011656057089567184, -0.01589462347328663, -0.03919332101941109, -0.0033918588887900114, -0.016082407906651497, 0.026759302243590355, 0.040320031344890594, 0.030635710805654526, 0.014003363437950611, 0.035035233944654465, -0.013252225704491138, 0.021273309364914894, -0.011957853101193905, -0.015465401113033295, -0.013413183391094208, -0.024599779397249222, 0.014244801364839077, -0.02586061879992485, -0.033103737980127335, -0.0007570065790787339, 0.022869478911161423, -0.018469953909516335, 0.010683600790798664, 0.01452647801488638, -0.03487427905201912, -0.022158579900860786, -0.027228763327002525, 0.01052264217287302, 0.024438820779323578, 0.0054893456399440765, 0.009523360058665276, -0.01182372123003006, -0.0006157489842735231, 0.004483356606215239, -0.010455576702952385, -0.028033554553985596, 0.026625169441103935, 0.017329832538962364, 0.0035041943192481995, 0.004134614020586014, -0.035169366747140884, -0.013989950530230999, 0.010965277440845966, -0.015653185546398163, 0.016001928597688675, -0.004738206975162029, -0.0003437128325458616, 0.030957628041505814, 0.0017219174187630415, 0.0018476661061868072, -0.015787316486239433, 0.012038332410156727, 0.014821567572653294, 0.01038851123303175, 0.006495334208011627, -0.038442183285951614, -0.014754502102732658, -0.007725993636995554, 0.006173417903482914, 0.023768162354826927, -0.028248164802789688, -0.010026355274021626, -0.0054893456399440765, -0.024774150922894478, -0.01118659507483244, 0.009764797985553741, 0.006914496421813965, -0.009965995326638222, 0.0021846722811460495, -0.004449823871254921, -0.009717851877212524, -0.00047700633876957, 0.005251261405646801, -0.02726900205016136, 0.009771504439413548, -0.006495334208011627, -0.0031655114144086838, -0.047402191907167435, -0.005288147833198309, 0.013480249792337418, -0.02237319014966488, 0.00666635250672698, 0.19132564961910248, -0.0013966477708891034, 0.027228763327002525, 0.021461093798279762, 0.009201443754136562, 0.0014142525615170598, -0.004060841165482998, 0.0023791634012013674, -0.0011116175446659327, 0.003809344256296754, 0.01904672011733055, 0.0015584442298859358, -0.03715451806783676, 0.0019750914070755243, -0.0020622769370675087, -0.024760738015174866, -0.018067559227347374, -0.02752385288476944, 0.004909225273877382, 0.0022366484627127647, 0.003086708951741457, -0.003324792953208089, -0.006683118641376495, -0.006559046916663647, 0.03288912773132324, 0.028301818296313286, 0.0166457612067461, 0.007585155311971903, 0.019073547795414925, 0.02980409376323223, -0.009134378284215927, -0.0032979664392769337, 0.0159751009196043, -0.012621806003153324, -0.007471143268048763, -0.004765033721923828, 0.019221091642975807, -0.0052680280059576035, 0.009302043356001377, 0.00811497587710619, -0.0034740145783871412, -0.02490828186273575, 0.027094630524516106, -0.03755691275000572, 0.019194265827536583, -0.00576096260920167, 0.001125869108363986, -0.01479474175721407, 0.015948275104165077, 0.029884573072195053, 0.002977726748213172, -0.0003686529817059636, 0.008463718928396702, 0.004577248822897673, 0.00018967079813592136, -0.00482874596491456, -0.004238565918058157, 0.00601581297814846, -0.013131506741046906, 0.009691025130450726, -0.014955699443817139, 0.0012926955241709948, 0.011300607584416866, -0.003973655868321657, -0.015451987273991108, 0.024546125903725624, -0.0007096412591636181, 0.026222774758934975, 0.01145485881716013, 0.012071865610778332, -0.01896624267101288, -0.017490791156888008, -0.026289839297533035, 0.009543480351567268, -0.0025434750132262707, -0.013272345066070557, 0.018617499619722366, 0.03168193995952606, 0.038656797260046005, 0.0062371306121349335, -0.00018118276784662157, -0.004768386948853731, -0.025310678407549858, 0.005164075642824173, 0.014070429839193821, -0.0037858712021261454, 0.031225891783833504, -0.03264768794178963, 0.00951665360480547, 0.00688096322119236, -0.004144673701375723, 0.01683354564011097, -0.002598804421722889, -0.02223905920982361, -0.0025099420454353094, -0.005459165666252375, 0.010717133991420269, 0.0210586991161108, -0.004268745891749859, -0.02972361445426941, -0.016189713031053543, 0.032969605177640915, 0.028301818296313286, 0.036913082003593445, 0.013527195900678635, -0.007833299227058887, -0.009845277294516563, 0.01098539773374796, -0.008913060650229454, -0.022936543449759483, -0.004620841704308987, -0.04093703627586365, 0.016779892146587372, -0.011562163941562176, 0.0031001220922917128, 0.026544690132141113, 0.02678612805902958, -0.005589944310486317, -0.001735330675728619, 0.0024529360234737396, 0.009791623800992966, -0.005871620960533619, 0.00424527283757925, -0.0006182639626786113, -0.0020974865183234215, -0.03562541678547859, -0.008457012474536896, 0.017074983566999435, -0.030421100556850433, -0.013694860972464085, 0.014513065107166767, -0.02398277260363102, 0.009395935572683811, 0.005730782635509968, 0.0007251502247527242, -0.011260367929935455, -0.020092949271202087, -0.012675458565354347, 0.01203162595629692, -0.00012354800128377974, 0.012098691426217556, -0.0012516176793724298, 0.01285653654485941, 0.006508747581392527, 0.013406476937234402, 0.025028999894857407, -0.01877845637500286, 0.010992104187607765, -0.031145412474870682, -0.004758326802402735, 0.005516171921044588, 0.0009053898975253105, -0.013218692503869534, 0.00019250014156568795, 0.03248672932386398, -0.02945535071194172, -0.023875467479228973, -0.01897965557873249, 0.019945403560996056, 0.0014050309546291828, -0.04260027036070824, 0.019194265827536583, 0.03688625618815422, 0.027979901060461998, 0.008705155923962593, -0.00596215995028615, -0.16836227476596832, 0.0002609283255878836, 0.011307314038276672, -0.004379404243081808, -0.009503240697085857, 0.04877033457159996, 0.00569724990054965, -0.01790660060942173, -0.0018124564085155725, 0.003946829121559858, 0.0011610786896198988, 0.0011443122057244182, -0.041795480996370316, -0.013346117921173573, 0.004007188603281975, -0.02571307308971882, 0.013017495162785053, 0.02124648354947567, 0.05091644451022148, 0.01533126924186945, 0.01576049067080021, -0.012849830090999603, -0.026477623730897903, -0.021219655871391296, 0.013936297968029976, 0.01703474298119545, -0.005673776846379042, 0.014674022793769836, 0.018201690167188644, -0.026169121265411377, 0.012480967678129673, -0.0008404197869822383, 0.0020941332913935184, -0.0018158097518607974, -0.019811272621154785, -0.003712098579853773, 0.003571260254830122, -0.02980409376323223, -0.011917613446712494, 0.021394027397036552, 0.04396841675043106, 0.017584683373570442, 0.023768162354826927, 0.0013295818353071809, 0.03012601099908352, 0.016323843970894814, 0.02431810274720192, -0.018939414992928505, 0.0059856330044567585, 0.0034941344056278467, 0.013547315262258053, -0.027979901060461998, 0.004982997663319111, 0.0033985653426498175, 0.009221564047038555, 0.0014897016808390617, 0.003772457828745246, 0.02104528434574604, 0.0010059888008981943, 0.001795689924620092, -0.002182995667681098, -0.01824193075299263, -0.024800976738333702, -0.008141802623867989, -0.01268887147307396, -0.01777246780693531, -0.0044364104978740215, 0.03479379788041115, 0.006753537803888321, 0.017651749774813652, 0.014674022793769836, 0.022748759016394615, 0.006713298615068197, 0.020897740498185158, -0.007967431098222733, 0.003920002840459347, -0.015559293329715729, 0.019288158044219017, 0.019060134887695312, -0.004905872046947479, 0.013855818659067154, 0.015814144164323807, 0.014942286536097527, -0.013500369153916836, -0.0004895812016911805, -0.017544444650411606, 0.00010442372877150774, -0.007719287183135748, 0.002411019755527377, -0.005469225812703371, 0.030099183320999146, -0.008886233903467655, -0.027684811502695084, 0.012849830090999603, 0.017142048105597496, 0.005331740714609623, 0.021139178425073624, 0.008953300304710865, 0.006082878913730383, -0.0014863484539091587, -0.017061568796634674, 0.009945875965058804, -0.0218366626650095, 0.010992104187607765, 0.04007859155535698, 0.012400488369166851, 0.021259896457195282, -0.006102998740971088, 0.03919332101941109, -0.023151155561208725, -0.02891882322728634, 0.018322408199310303, 0.04160769656300545, -0.013694860972464085, -0.03334517404437065, 0.025954511016607285, 0.0014192825183272362, -0.016927437856793404, -0.00031353317899629474, -0.011736535467207432, 0.0538405179977417, -0.03052840568125248, -0.018885763362050056, -0.0036450326442718506, -0.01159569714218378, -0.01166276354342699, -0.12104056775569916, -0.020133187994360924, 0.036242421716451645, 0.017785880714654922, 0.0061063519679009914, 0.00781317986547947, -0.0007846712251193821, 0.03913966938853264, 0.012950428761541843, 0.02130013518035412, -0.013513782992959023, -0.00569724990054965, -0.006914496421813965, -0.013285758905112743, 0.015398334711790085, -0.004697967786341906, 0.008141802623867989, -0.017624923959374428, -0.0028972476720809937, 0.02579355239868164, -0.009174617938697338, -0.01590803638100624, 0.0022601215168833733, 0.015130070969462395, -0.013788753189146519, 0.007866832427680492, -0.021890316158533096, 0.023338939994573593, 0.021608639508485794, 0.013567435555160046, 0.03152098134160042, -0.025766726583242416, 0.0027228763792663813, -0.0374227836728096, 0.013909471221268177, 0.0040776077657938, -0.03720817342400551, 0.0012692224700003862, 0.010167193599045277, -0.007370544597506523, 0.010059887543320656, -0.0008395814802497625, 0.01830899529159069, -0.04791189357638359, 0.009369108825922012, 0.005727429408580065, -0.0093556959182024, 0.029777267947793007, 0.014674022793769836, -0.0008953299839049578, -0.02525702491402626, -0.02358037605881691, -0.04474638029932976, -0.023660855367779732, 0.02290971763432026, 0.019207678735256195, 0.011448152363300323, 0.004084314219653606, -0.01657869480550289, 0.00654898677021265, -0.005901800934225321, 0.01075737364590168, -0.01985151134431362, 0.023338939994573593, -0.0024059899151325226, 0.016685999929904938, -0.0021729357540607452, 0.006609346251934767, 0.007350424770265818, -0.001022755284793675, -0.016860371455550194, 0.0036014397628605366, -0.03286229819059372, 0.019060134887695312, -0.019060134887695312, 0.008188748732209206, -0.003021319629624486, -0.027872595936059952, 0.007021801546216011, 0.00676695117726922, -0.012641925364732742, -0.022668279707431793, -0.001573534100316465, -0.011220128275454044, -0.016055580228567123, 0.011173182167112827, 0.00688096322119236, -0.010147073306143284, 0.008047910407185555, -0.027899421751499176, 0.019261332228779793, 0.03221846744418144, -0.0051406025886535645, 0.013869231566786766, -0.011803601868450642, -0.0005143117741681635, 0.0002862876281142235, -0.02011977508664131, 0.013426597230136395, 0.010971983894705772, 0.009670905768871307, 0.018523607403039932, -0.04080290347337723, -0.00040302425622940063, 0.039917632937431335, 0.014539890922605991, 0.012554739601910114, -0.03903236612677574, 0.017745641991496086, -0.008765515871345997, -0.0028821579180657864, 0.006408148445188999, -0.03334517404437065, 0.03034062124788761, -0.0036919787526130676, 0.019221091642975807, -0.031440503895282745, -0.002833534963428974, 0.026692235842347145, 0.00303976284340024, -0.008503958582878113, 0.003769104601815343, -0.010596415027976036, 0.004007188603281975, 0.0070821610279381275, 0.009013659320771694, -0.027684811502695084, -0.001700959401205182, -0.00537868682295084, 0.00516072241589427, -0.009402642026543617, -0.02404983900487423, 0.0003214972384739667, 0.014942286536097527, -0.02364744246006012, 0.014311866834759712, -0.008503958582878113, -0.03919332101941109, 0.003936769440770149, 0.0014771268470212817, 0.007665634620934725, 0.017517616972327232, 0.008101562969386578, -0.03342565521597862, 0.01596168801188469, -0.028435949236154556, -0.03602781146764755, -0.008765515871345997, -0.007068747654557228, -0.018215103074908257, 0.003856290364637971, -0.005532938055694103, 0.04662422835826874, 0.013372943736612797, -0.02197079546749592, -0.01896624267101288, -0.004570542369037867, 0.023164568468928337, 0.006974855437874794, 0.03192337602376938, 0.014016777276992798, 0.008443599566817284, 0.030233316123485565, -0.01058970857411623, -0.0003143714857287705, -0.003718805266544223, 0.000997605500742793, -0.026893433183431625, -0.03288912773132324, -0.014861807227134705, 0.002042157109826803, -0.02272193320095539, 0.0012398811522871256, -0.01032144483178854, 0.030045531690120697, 0.017678575590252876, -0.0015995221910998225, 0.0015274262987077236, -0.01997223123908043, -0.017517616972327232, 0.0002433235349599272, 0.022829238325357437, 0.004221799783408642, -0.009268510155379772, -0.015116658061742783, 0.019757619127631187, 0.020012469962239265, 0.0006735933129675686, -0.009080725722014904, 0.02918708696961403, 0.008410066366195679, 0.005663716699928045, -0.011434739455580711, -0.004020601976662874, -0.003277846844866872, 0.008839287795126438, -0.002302037551999092, 0.020548997446894646, -0.01219258364289999, 0.00801437720656395, 0.007511382922530174, 0.03374756872653961, -0.0142984539270401, -0.004547069314867258, 0.015438574366271496, -0.01971738040447235, -0.01950276829302311, -0.017732229083776474, -0.007927191443741322, -0.021420855075120926, 0.007645514793694019, 0.015022765845060349, -0.0017286241054534912, -0.023419419303536415, -0.0018409594194963574, 0.009275216609239578, -0.009791623800992966, -0.009503240697085857, -0.002862038090825081, -0.03439140319824219, -0.02726900205016136, 0.00244622933678329, 0.013587554916739464, 0.02457295171916485, 0.016887199133634567, -0.03133319690823555, 0.026155708357691765, -0.010797613300383091, 0.011381085962057114, -0.0259142704308033, 0.003531020600348711, -0.01876504346728325, -0.014660609886050224, 0.009402642026543617, -0.008041203953325748, -0.011588990688323975, -0.02057582326233387, -0.010904918424785137, -0.025069240480661392, 0.0038764101918786764, 0.0058950940147042274, 0.06894376128911972, 0.01849677972495556, -0.0042620389722287655, -0.0014838334172964096, -0.013030908070504665, 0.00945629458874464, 0.02352672442793846, 0.009986115619540215, -0.008396652527153492, -0.012279769405722618, 0.02512289397418499, -0.018080972135066986, -0.01510324515402317, -0.009322162717580795, -0.02584720589220524, 0.008899647742509842, 0.00504671037197113, 0.021729357540607452, -0.0016774862306192517, 0.016216538846492767, 0.023821813985705376, 0.004050781484693289, 0.008792341686785221, -0.0071224006824195385, -0.02492169477045536, -0.009919049218297005, 0.025042414665222168, 0.0013027554377913475, -0.009074018336832523, -0.02339259162545204, 0.013272345066070557, 0.007880245335400105, 0.0020337740425020456, -0.01950276829302311, -0.00239593000151217, 0.022011034190654755, -0.007202879525721073, -0.01038851123303175, 0.02458636648952961, 0.04176865518093109, 0.00788695178925991, 0.01857725903391838, -0.02319139428436756, -0.006582519970834255, -0.007062041200697422, -0.017410311847925186, 0.006102998740971088, -0.015250789932906628, 0.01268887147307396], "e87beadb-a87a-4450-b26e-6bc11fec887a": [-0.0050663212314248085, -0.015537659637629986, 0.009716329164803028, -0.02407561056315899, -0.003533371025696397, 0.02167651616036892, -0.007437190040946007, -0.028436316177248955, -0.013604272156953812, -0.03350263833999634, 0.0019721961580216885, 0.03195028379559517, 0.00807930063456297, -0.006004790309816599, -0.009243566542863846, 0.006999708712100983, 0.016469072550535202, -0.02159184217453003, 0.00010220403783023357, -0.014288719743490219, -0.03288169577717781, 0.00839682761579752, -0.01199546828866005, -0.017287585884332657, -0.020575756207108498, 0.01277870126068592, 0.002933597657829523, -0.02328532002866268, -0.026714613661170006, 0.018261335790157318, -0.010937044396996498, -0.0070102927275002, -0.011670884676277637, -0.0009499352308921516, -0.019291535019874573, 0.007592425681650639, -0.00030165075440891087, -0.020575756207108498, 0.016172712668776512, -0.006964427884668112, 0.025670301169157028, 0.007839391008019447, -0.001251586014404893, -0.007338404189795256, -0.019926588982343674, 0.019376209005713463, 0.0017031800234690309, 0.013286745175719261, 0.003482213942334056, 0.005687263328582048, -0.015636445954442024, 0.00027342612156644464, -0.02980520948767662, 0.01532597467303276, 0.0009014241513796151, -0.029946332797408104, 0.0031082374043762684, -0.004854636732488871, 0.012411781586706638, -0.004882861394435167, 0.015565884299576283, 0.02298896200954914, -0.015777569264173508, 0.013173846527934074, -0.014549797400832176, -0.01288454420864582, 0.014295775443315506, -0.009483476169407368, -0.008728466928005219, -0.005390904378145933, 0.04445379227399826, 0.028845572844147682, 0.004695872776210308, 0.005140410736203194, -0.015932803973555565, 0.002180352807044983, -0.01277870126068592, -0.013336137868463993, -0.009321184828877449, 0.00513688288629055, 0.017541607841849327, -0.02744845300912857, -0.038752418011426926, -0.0037679881788790226, 0.03217608109116554, 0.011988411657512188, 0.010880595073103905, -0.007281954865902662, -0.01157915499061346, 0.005602589342743158, 0.004201942123472691, -0.007994626648724079, 0.019503220915794373, 0.016977116465568542, 0.011184009723365307, 0.004014953970909119, 0.021789414808154106, 0.023920373991131783, -0.01965845562517643, -0.036183975636959076, -0.010111474432051182, 0.008100468665361404, -0.04332480952143669, -0.006964427884668112, -0.0346880704164505, -0.010732416063547134, 0.01923508569598198, -0.010450169444084167, 0.010069137439131737, 0.002545509021729231, -0.01768273115158081, 0.02988988347351551, -0.006675125099718571, -0.0022156336344778538, 0.013625440187752247, -0.017329923808574677, 0.01566467061638832, -0.03161158785223961, -0.01687832921743393, -0.0032846415415406227, 0.002063926076516509, -0.0002749696432147175, 0.04168777912855148, -0.02416028454899788, 0.026079559698700905, 0.00865084957331419, 0.016172712668776512, -0.011924906633794308, 0.011035830713808537, -0.006632788106799126, -0.011233403347432613, -0.0005662566400133073, 0.027039196342229843, -0.0022103413939476013, -0.013964136131107807, 0.006279980298131704, -0.024230845272541046, 0.0069926525466144085, -0.025627965107560158, -0.030341478064656258, 0.040050752460956573, 0.03674846887588501, 0.005920116323977709, -0.018374234437942505, -0.005200388375669718, 0.030426152050495148, 0.004829939920455217, 0.01814843714237213, -0.008530894294381142, 0.01604570262134075, 0.006294092629104853, -0.023355882614850998, -0.009582262486219406, -0.006876225583255291, 0.00896837655454874, 0.01216481626033783, -0.000699441647157073, 0.014324000105261803, -0.0056519825011491776, 0.0005195096018724144, -0.008192199282348156, 0.008453276939690113, -0.005390904378145933, 0.005112186074256897, -0.003579236101359129, 0.03014390543103218, 0.010548955760896206, -0.0056096455082297325, -0.00896837655454874, -0.006279980298131704, -0.0009852160001173615, 0.006918562576174736, -0.0038949991576373577, 0.018797604367136955, 0.021182585507631302, 0.0011095808586105704, 0.0042513348162174225, 0.006251755636185408, -0.01785207912325859, -0.04191357642412186, 0.013399643823504448, 0.009398802183568478, 0.006975011900067329, 0.0092012295499444, -0.01948910765349865, -0.018374234437942505, 0.016059815883636475, 0.012200096622109413, 0.011600323021411896, -0.01469092071056366, 0.010047968477010727, 0.00848150160163641, -0.022509142756462097, -0.007225505542010069, -0.6322317123413086, -0.013815957121551037, 0.013597216457128525, -0.006946787238121033, -0.00321937189437449, 0.016144489869475365, 0.028111731633543968, -0.0031047093216329813, -0.004177245311439037, 0.03629687428474426, 0.005274477880448103, -0.003863246412947774, -0.018543582409620285, -0.025698525831103325, 0.000629762071184814, -0.012044860981404781, 0.005006344057619572, -0.04422799497842789, 0.004667648579925299, 0.00014729729446116835, 0.005496746860444546, 0.028986696153879166, -0.003637449350208044, 0.00791700929403305, -0.008989544585347176, -0.03296636790037155, 0.02568441443145275, -0.015142514370381832, 0.003898527240380645, 0.0042266384698450565, -0.020787440240383148, 0.024484867230057716, 0.007317235693335533, -0.001539124408736825, 0.046203721314668655, -0.016553746536374092, -0.006604563444852829, 0.024061497300863266, 0.020321734249591827, 0.04487716406583786, -0.013731283135712147, -0.024357857182621956, 0.014232270419597626, 0.008615568280220032, -0.0076277065090835094, 0.0021362516563385725, 0.013964136131107807, -0.011720278300344944, -0.004702928941696882, -0.026121895760297775, 0.01140980701893568, -0.006615147925913334, -0.008072244934737682, 0.00419841380789876, 0.0018540055025368929, -0.01608804054558277, 0.013484317809343338, -0.04476426541805267, 0.004067874979227781, 0.004046706482768059, -0.002704272512346506, 0.004805243574082851, -0.013928855769336224, -0.03607107698917389, -0.039796728640794754, -0.004145492799580097, 0.009779834188520908, -0.02146483212709427, 0.003743291599676013, -0.013413756154477596, 0.020603980869054794, 0.000956109375692904, -0.0014279899187386036, -0.014662696048617363, -0.0029477099888026714, 0.0056731509976089, 0.026841623708605766, -0.009878620505332947, -0.0035051463637501, 0.021239034831523895, -0.003032383741810918, -0.015622333623468876, -0.023609904572367668, -0.0026901601813733578, 0.03505499288439751, 0.013780675828456879, -0.011543873697519302, -0.004194885957986116, 0.002642531180754304, 0.013660721480846405, -0.0016140961088240147, 0.03423647582530975, -0.007116135209798813, -0.026404142379760742, 0.0012374736834317446, 0.01836012303829193, -0.004911085590720177, -0.010979381389915943, -0.015015503391623497, -0.014218158088624477, -0.006318789441138506, -0.013075060211122036, 0.0006601917557418346, 0.0010513674933463335, 0.014309887774288654, 0.02260793000459671, -0.017696844413876534, -0.01085942704230547, 0.04459491744637489, -0.027053309604525566, -0.0013150913873687387, -0.010556012392044067, -0.005690791178494692, -0.032345425337553024, 0.0246259905397892, -0.024682439863681793, 0.01035843975841999, -0.009631655178964138, 0.01507195271551609, -0.022128110751509666, -0.009405857883393764, 0.0013353778049349785, 0.01974312961101532, -0.01524130068719387, 0.006780967582017183, 0.018289560452103615, 0.018303673714399338, -0.0074160220101475716, 0.019644342362880707, 0.014204045757651329, 0.008911927230656147, -0.022678490728139877, 0.003358731046319008, -0.0024784754496067762, 0.02226923406124115, 0.002841867506504059, 0.03307926654815674, -0.0057437121868133545, -0.02154950611293316, -0.0406716950237751, -0.012729308567941189, 0.0022156336344778538, -0.0003347264719195664, -0.012821038253605366, -0.006593979429453611, -0.03657912090420723, -0.014479235745966434, 0.013561935164034367, -0.025246933102607727, 0.012955105863511562, -0.014211101457476616, -0.023257095366716385, -0.025289269164204597, 0.016525521874427795, -0.009716329164803028, -0.0018751738825812936, 0.008305097930133343, -0.04137730970978737, -0.01570700667798519, -0.03186560794711113, -0.02668638899922371, 0.006092992145568132, -0.020067712292075157, 0.009250623174011707, -0.012044860981404781, 0.0034733936190605164, 0.015424760989844799, 0.012475286610424519, -0.014027641154825687, -0.04069991782307625, -0.0003307574079371989, -0.01075358409434557, 0.0092012295499444, 0.030510826036334038, -0.01662430725991726, 0.013512542471289635, -0.02080155350267887, -0.007116135209798813, -0.0029988670721650124, -0.0006257930072024465, 0.0162856113165617, 0.018670594319701195, -0.006414047442376614, 0.0009340588585473597, 0.02341233193874359, 0.014211101457476616, 0.016680756583809853, 0.019474996253848076, -0.013837125152349472, 0.01296216156333685, 0.008897814899682999, 0.004819355905056, -0.008319210261106491, 0.01486026868224144, -0.022170446813106537, 0.012842207215726376, -0.010704191401600838, 0.005937756970524788, -0.007846447639167309, 0.02138015814125538, 0.017372259870171547, 0.015368311665952206, 0.001562056946568191, 0.008467389270663261, 0.0062623401172459126, -0.01452157273888588, 0.016215050593018532, -0.022551480680704117, 0.034546948969364166, 0.015819905325770378, 0.006033014971762896, -0.013865349814295769, 0.006883281748741865, -0.02517637051641941, 0.005849554669111967, 0.024103835225105286, 0.021831752732396126, 0.002658407436683774, 0.007183168549090624, 0.023680465295910835, -0.0011863164836540818, -0.02088622748851776, 0.05012694373726845, -0.0052286130376160145, -0.015565884299576283, 0.027349667623639107, -0.006403462961316109, 0.015763456001877785, 0.011254571378231049, -0.03655089810490608, 0.0027254410088062286, 0.023003073409199715, 0.009652824141085148, 0.018670594319701195, 0.04727625846862793, 0.025500953197479248, 0.028055282309651375, -0.015862243250012398, 0.03965560719370842, -0.0149872787296772, 0.004981647245585918, 0.024555429816246033, 0.01987013965845108, -0.023440556600689888, 0.021958762779831886, -0.007197280880063772, 0.014204045757651329, 0.012122479267418385, -0.02201521210372448, 0.0419418029487133, 0.005292118526995182, 0.0045229969546198845, -0.021436607465147972, -0.006555170752108097, 0.01624327525496483, -0.0004509325954131782, 0.01296921819448471, 0.01018909178674221, 0.028775012120604515, 0.02188820205628872, 0.007352516520768404, -0.021775303408503532, 0.014196989126503468, 0.009984463453292847, 0.02895847149193287, -0.008283928968012333, -0.007013820577412844, -0.006502249278128147, 0.005768408998847008, -0.010259653441607952, -0.011056998744606972, -0.0220575500279665, -0.006336429622024298, 0.0055567240342497826, 0.0021697685588151217, -0.0034839778672903776, 0.005584948696196079, -0.005094545893371105, -0.0031964394729584455, 0.025670301169157028, -0.03389778360724449, -0.03502676635980606, 0.03296636790037155, 0.019390322268009186, 0.003944392316043377, -0.03231720253825188, -0.01004091277718544, 0.002697216346859932, 0.012898656539618969, 0.021154360845685005, -0.023835700005292892, -0.002422026125714183, -0.014648583717644215, -0.007853503338992596, -0.0071443598717451096, 0.014549797400832176, 0.04513118416070938, -0.021436607465147972, -0.00672451825812459, 0.0063964067958295345, 0.0032864054664969444, 0.010478394106030464, -0.02836575359106064, -0.02938184142112732, 0.03502676635980606, -0.035506587475538254, -0.020646316930651665, -0.03262767195701599, -0.02298896200954914, -0.008693186566233635, 0.0020392294973134995, -0.013286745175719261, -0.029748760163784027, 0.0018839940894395113, -0.003222899977117777, 0.010591292753815651, 0.00048819792573340237, -0.00987156480550766, 0.02167651616036892, 0.018289560452103615, -0.006350541952997446, -0.024978797882795334, -0.005330927204340696, 0.025783199816942215, 0.08066599816083908, 0.010012688115239143, 0.004410098772495985, 0.019249198958277702, -0.0025366886984556913, -0.03200673311948776, -0.0066257319413125515, -0.024894123896956444, 0.02757546491920948, 0.01435928139835596, -0.022509142756462097, 0.0035615956876426935, 0.0021133192349225283, -0.0011042887344956398, 0.0085661755874753, -0.0001736476260703057, -0.018868165090680122, -0.023609904572367668, 0.011713221669197083, 0.004374817945063114, 0.004364233464002609, 0.005546140018850565, 0.01237650029361248, 0.021916426718235016, 0.007359572686254978, 0.02101323753595352, 0.03615575283765793, 0.026502927765250206, 0.005126298405230045, -0.0162856113165617, -0.02373691461980343, 0.013392587192356586, -0.0010390192037448287, 0.019009288400411606, -0.019545556977391243, 0.019587893038988113, 0.00582133000716567, -0.004731153603643179, -0.02445664256811142, -0.0015206020325422287, 0.01004091277718544, 0.02988988347351551, -0.003229956142604351, -0.011783783324062824, -0.003272293135523796, -0.01507195271551609, -0.00578957749530673, 0.013357306830585003, -0.01957378163933754, -0.015946917235851288, 0.016116265207529068, 0.019729016348719597, -0.008044020272791386, 0.023765139281749725, -0.001442102249711752, -0.004544165451079607, 0.0055002751760184765, 0.002515520201995969, -0.03999430313706398, -0.01460624672472477, -0.04213937371969223, -0.009772778488695621, -0.0004524761170614511, 0.002561385277658701, -0.02424495853483677, -0.0009111263789236546, 0.008537950925529003, 0.011268683709204197, -0.020265284925699234, 0.012383556924760342, 0.0010566596174612641, -0.05393727123737335, -0.032853469252586365, 0.005606117192655802, 0.01995481364428997, 0.014479235745966434, -0.008072244934737682, -0.0002811437880154699, 0.010167923755943775, 0.016313835978507996, 0.01559410896152258, -0.021083800122141838, 0.010591292753815651, -0.023525230586528778, -0.018670594319701195, -0.010174979455769062, -0.02543039247393608, 0.002774833934381604, -0.0034292927011847496, -0.0010857662418857217, 0.0016211522743105888, -0.009659879840910435, -0.006202362477779388, 0.01608804054558277, 0.005962453316897154, 0.005323871038854122, 0.015777569264173508, -0.011677941307425499, 0.019926588982343674, -0.0325712226331234, 0.010556012392044067, -0.013823012821376324, -0.017710955813527107, -0.03564770892262459, 0.007684155832976103, 0.011706165969371796, -0.009130667895078659, -0.024611879140138626, 0.0003497208235785365, -0.015043728053569794, 0.013039779849350452, 0.0031100015621632338, -0.008622624911367893, 0.004254863131791353, 0.02356756664812565, -0.032232530415058136, -0.0029600581619888544, 0.01679365523159504, 0.02845042757689953, 0.004642951767891645, -0.005969509482383728, -0.018868165090680122, 0.032684121280908585, 0.0028118789196014404, 0.014013529755175114, 0.009328240528702736, 0.022706715390086174, -0.023087747395038605, -0.01370305847376585, -0.0015885175671428442, 0.0017675674753263593, 0.01961611770093441, -0.008940151892602444, -0.013526654802262783, -0.012757533229887486, -0.00022998664644546807, -0.0075500886887311935, -0.015043728053569794, -0.012094254605472088, 0.0016458488535135984, -0.01613037660717964, 0.01460624672472477, 0.013639552518725395, -0.03090597130358219, 0.013561935164034367, -0.030285028740763664, -0.008707298897206783, 0.004614727105945349, -0.0025508010294288397, 0.020067712292075157, -0.019940702244639397, -0.01279987022280693, -0.022283345460891724, -0.002884204499423504, -0.005697847343981266, -0.03759520873427391, -0.01591869257390499, 0.005994205828756094, 0.041405532509088516, 0.021747078746557236, 0.013166790828108788, -0.0010813561966642737, 0.014761482365429401, -0.0002853333717212081, -0.00905305054038763, -0.019079850986599922, -0.014733257703483105, -0.0034769217018038034, 0.006759799085557461, -0.003873830661177635, 0.02336999401450157, 0.012602297589182854, -0.018473021686077118, -0.008622624911367893, 0.0041172681376338005, 0.015128402039408684, -0.02339821867644787, -0.010471338406205177, -0.02496468648314476, -0.02193053811788559, -0.003969088662415743, 0.02921249344944954, 0.006350541952997446, 0.011247515678405762, -0.04058701917529106, -0.008029907941818237, 0.020688654854893684, 0.0038491340819746256, 0.03793390467762947, -0.004508884623646736, 0.03240187466144562, -0.007056157570332289, 0.023341769352555275, 0.014324000105261803, -0.004364233464002609, 0.004861692897975445, -0.007733548991382122, -0.03703071549534798, -0.013745395466685295, -0.00033957758569158614, 0.004261919297277927, 0.005757824517786503, -0.006332901772111654, 0.008516781963407993, 0.002229745965451002, 0.025317493826150894, 0.0046852887608110905, -0.007740605156868696, -0.0031452823895961046, -0.007380741182714701, -0.009271791204810143, -0.035337239503860474, -0.0334179624915123, 0.0034716296941041946, -0.019460882991552353, 0.0005900711985304952, 0.016525521874427795, 0.01789441518485546, -0.020279398187994957, -0.02003948763012886, 0.02105557546019554, 0.021323708817362785, 0.029833434149622917, -0.005902476143091917, 0.03152691200375557, 0.01751338317990303, 0.003409888129681349, -0.01806376315653324, -0.03355908766388893, 0.012284770607948303, -0.01696300320327282, 0.010097362101078033, 0.03934513404965401, -0.004593558609485626, -0.005415601190179586, 0.018204886466264725, -0.0021203754004091024, 0.007147887721657753, -0.025980772450566292, 0.027519015595316887, -0.0018557695439085364, 0.017456933856010437, -0.034716296941041946, -0.024273183196783066, -0.011134617030620575, 0.042195823043584824, -0.01591869257390499, 0.02963586337864399, 0.002663699444383383, -0.012574072927236557, -0.005563780199736357, 0.050324518233537674, -0.016144489869475365, 0.018910503014922142, -0.010556012392044067, 0.0020233532413840294, -0.016906553879380226, 0.011501536704599857, -0.005835442338138819, -0.019291535019874573, 0.01785207912325859, 0.02600899711251259, -0.007200809195637703, 0.01974312961101532, -0.0016273263609036803, 0.0039126393385231495, -0.010026800446212292, -0.013244408182799816, -0.015086065046489239, 0.02912781946361065, 0.007056157570332289, 0.010217316448688507, 0.006579867098480463, -0.0024502507876604795, 0.008989544585347176, -0.011861401610076427, -0.017880303785204887, 0.0015038435813039541, 0.008827253244817257, -0.00704204523935914, 0.011078167706727982, 0.00011841114610433578, -0.019714904949069023, 0.0018222527578473091, -0.007606538012623787, -0.003166450886055827, 0.003087068907916546, 0.0035086744464933872, 0.010767696425318718, -0.016850104555487633, -0.012517623603343964, 0.015255413018167019, 0.015735231339931488, 0.019347984343767166, 0.004357177298516035, -0.017710955813527107, 0.003182327141985297, 0.026756949722766876, -0.02016649954020977, 0.00647402461618185, 0.023341769352555275, 0.016807768493890762, -0.02895847149193287, 0.038075026124715805, -0.0184024590998888, -0.007994626648724079, 0.031470462679862976, -0.0199124775826931, -0.024047385901212692, -0.0017622753512114286, 0.010217316448688507, -0.001495905453339219, 0.0028648001607507467, -0.003265236970037222, 0.005510859191417694, 0.019503220915794373, -0.00451594078913331, 0.0005653746193274856, -0.02454131655395031, -0.008156917989253998, -0.003637449350208044, -0.006117688957601786, 0.010351383127272129, -0.023638129234313965, 0.0053626797161996365, -0.018868165090680122, 0.02231157012283802, -0.00903188157826662, -0.029325392097234726, -0.023045411333441734, -0.023468781262636185, -0.014733257703483105, -0.0177674051374197, -0.01263052225112915, 0.0028348113410174847, -0.02437196858227253, -0.005680207163095474, 0.02105557546019554, -0.013096229173243046, 0.012757533229887486, 0.012623466551303864, -0.024103835225105286, 0.013808900490403175, 0.0162856113165617, -0.008806085214018822, -0.036099303513765335, -0.018628256395459175, -0.005083961877971888, -0.024555429816246033, 0.014733257703483105, -0.012178928591310978, 0.04126441106200218, 0.020815664902329445, -0.026488816365599632, -0.020406408235430717, -0.014451011084020138, -0.07005353271961212, 0.0095328688621521, -0.034208253026008606, 0.03830082342028618, 0.036099303513765335, 0.02075921557843685, 0.00928590353578329, 0.03835727274417877, -0.021182585507631302, 0.009243566542863846, -0.03688959404826164, 0.00505220890045166, -0.026573490351438522, -0.02787182293832302, 0.010958213359117508, -0.01566467061638832, -0.02921249344944954, -0.02008182555437088, 0.02171885408461094, -0.008326265960931778, 0.020321734249591827, 0.007839391008019447, -0.018035538494586945, -0.021083800122141838, 0.002663699444383383, 0.004311312455683947, 0.03248655050992966, 0.010139699093997478, 0.03640977293252945, -0.02871856279671192, -0.0007691212231293321, 0.017442822456359863, -0.0006279980298131704, -0.02564207650721073, 0.01637028530240059, 0.027250880375504494, -0.004470075946301222, 0.009271791204810143, -0.011607379652559757, -0.014789707027375698, 0.005528499372303486, -0.014705033041536808, 0.007024405058473349, -0.007811166811734438, -0.0015056076226755977, 0.028478652238845825, -0.007006764877587557, -0.02209988608956337, -0.022424468770623207, 0.0006028604693710804, 0.012390612624585629, 0.005831914488226175, 0.0005402370588853955, -0.02593843638896942, -0.0016899497713893652, -0.019037513062357903, 0.02358167991042137, 0.00505220890045166, -0.02449898049235344, -0.02339821867644787, 0.010619517415761948, -0.01806376315653324, 7.629470928804949e-05, 0.01174144633114338, -0.019093962386250496, 0.005493219010531902, -0.006548114586621523, -0.007938177324831486, -0.026799287647008896, -0.0034416408743709326, 0.009173004887998104, -0.03406712785363197, -0.006703349761664867, -0.011085223406553268, 0.0012189513072371483, -0.035845279693603516, 0.019644342362880707, 0.005172163713723421, -0.009575205855071545, 0.016229161992669106, 0.19508865475654602, 0.0035668876953423023, 0.009398802183568478, 0.017668619751930237, 0.021817639470100403, 0.01957378163933754, 0.009977406822144985, 0.023807475343346596, -0.009370577521622181, -0.0016070399433374405, 0.00522155687212944, 0.01789441518485546, -0.03804680332541466, -0.0013168554287403822, 0.006904450245201588, -0.009822171181440353, -0.036014627665281296, -0.024682439863681793, -0.017626281827688217, 0.015255413018167019, 0.009321184828877449, -0.005292118526995182, 0.009187117218971252, -0.012694028206169605, 0.02432963252067566, 0.006269396282732487, 0.012185984291136265, 0.009292960166931152, 0.03048260137438774, 0.012489398941397667, -0.016638420522212982, -0.001818724675104022, 0.010633629746735096, -0.004466547630727291, -0.019940702244639397, 0.003602168522775173, 0.012828094884753227, -0.0022879592142999172, -0.005549667868763208, 0.010711247101426125, -0.004053762648254633, -0.021620066836476326, 0.01823311112821102, -0.040220100432634354, -0.005602589342743158, 0.003683314425870776, -0.007147887721657753, -0.012023692950606346, 0.012679915875196457, 0.02142249420285225, -0.004844052251428366, -0.0027536656707525253, 0.013653664849698544, 0.013561935164034367, -0.010330215096473694, 0.009194173850119114, -0.014789707027375698, 0.00944819487631321, -0.000298343162285164, -0.011875513941049576, -0.025825537741184235, 0.00159733765758574, 0.02812584489583969, 0.003676258260384202, -0.03753875941038132, 0.0316680371761322, -0.010245541110634804, 0.019249198958277702, 0.00936352089047432, 0.017273474484682083, -0.026248907670378685, -0.011960186995565891, -0.023214759305119514, -0.0014526864979416132, -0.016821879893541336, -0.020533418282866478, 0.029494740068912506, 0.02386392466723919, 0.05532027781009674, 0.008072244934737682, 0.006519889924675226, -0.007543032523244619, -0.03847017139196396, 0.008403884246945381, 0.0199124775826931, -0.022241009399294853, 0.02517637051641941, -0.025444505736231804, -0.0023091277107596397, -0.013089172542095184, 0.007045573554933071, 0.006883281748741865, -0.0032034956384450197, -0.01596102863550186, -0.007486583199352026, 0.00019735191017389297, 0.017485158517956734, 0.014832044020295143, -0.019277423620224, -0.009751610457897186, -0.018642369657754898, 0.06181194260716438, 0.015650557354092598, 0.034208253026008606, 0.0033746075350791216, 0.0036868425086140633, -0.001115754945203662, 0.015438873320817947, 0.012411781586706638, -0.0026054861955344677, 0.004512412939220667, -0.03115999326109886, 0.0029212492518126965, -0.020095936954021454, -0.008220423944294453, 0.022960737347602844, 0.009928014129400253, -0.010224372148513794, 0.0009887440828606486, 0.004071402829140425, 0.01641262322664261, -0.01271519623696804, 0.007585369516164064, -0.0003980114124715328, -0.031385790556669235, -0.03990962728857994, -0.013110341504216194, 0.022001100704073906, -0.039599157869815826, -0.028563326224684715, 0.004582974594086409, -0.024174395948648453, 0.02167651616036892, -1.2685924048128072e-05, 0.001815196592360735, -0.014973166398704052, -0.008721411228179932, -0.0212108101695776, 0.011198122054338455, 0.008933095261454582, 0.017245249822735786, 0.002316183876246214, 0.013068004511296749, 0.01566467061638832, -0.01368188951164484, 0.019418546929955482, -0.006198834627866745, 0.011967243626713753, -0.030115680769085884, 0.0024573069531470537, 0.0032864054664969444, 0.003159394720569253, 0.0025984300300478935, -0.023892149329185486, 0.0258960984647274, -0.026248907670378685, -0.030341478064656258, -0.0034716296941041946, 0.017019452527165413, 0.003229956142604351, -0.04171600565314293, 0.002935361582785845, 0.019460882991552353, 0.023144196718931198, -0.011000550352036953, -0.005415601190179586, -0.18221822381019592, 0.011332189664244652, -0.0028700921684503555, -0.01077475305646658, 0.0023532286286354065, 0.028055282309651375, 0.014973166398704052, -0.01443689875304699, -0.0010892943246290088, -0.012771645560860634, -0.013399643823504448, -0.004762906581163406, -0.03564770892262459, -0.014091147109866142, 0.03022857941687107, -0.012750476598739624, -0.014761482365429401, 0.002229745965451002, 0.04053056985139847, 0.014260495081543922, 0.02008182555437088, -0.009398802183568478, -0.010711247101426125, -0.01033727079629898, 0.017061788588762283, 0.025627965107560158, -0.008693186566233635, 0.017541607841849327, 0.0012251253938302398, -0.030708398669958115, 0.013004498556256294, -0.014140539802610874, 0.02812584489583969, 0.018628256395459175, 0.009165949188172817, 0.009342352859675884, 0.00871435459703207, -0.009681048803031445, -0.008086356334388256, 0.044848937541246414, 0.04913908243179321, 0.004219582304358482, 0.02063220553100109, 0.005274477880448103, 0.028027059510350227, 0.022452693432569504, 0.03937336057424545, -0.027984721586108208, 0.012383556924760342, 0.01216481626033783, 0.012588185258209705, -0.024978797882795334, -0.001624680357053876, 0.0010787100763991475, 0.01738637313246727, 0.01836012303829193, 0.012073085643351078, 0.0014562145806849003, 0.023694578558206558, -0.008516781963407993, -0.0070102927275002, -0.011529761366546154, -0.0001999979722313583, -0.017696844413876534, -0.005733128171414137, -0.02058986760675907, 0.0059730373322963715, 0.04069991782307625, -0.005951868835836649, 0.02133782021701336, 0.00604007113724947, 0.004127852153033018, 0.004208998288959265, 0.015551771968603134, 0.0003007687337230891, -0.003782100509852171, -0.022847838699817657, 0.019940702244639397, 0.018557695671916008, 0.006251755636185408, 0.008608512580394745, 0.004004369489848614, 0.009292960166931152, 0.003120585810393095, -0.007874672301113605, -0.01378773245960474, 0.018952839076519012, -0.012009580619633198, 0.007006764877587557, -0.012701083905994892, 0.015678782016038895, -0.015622333623468876, -0.00944819487631321, 0.01143097598105669, 0.01683599315583706, 0.009490531869232655, 0.01898106373846531, 0.011960186995565891, -0.007881728000938892, 0.006089464295655489, 0.008269816637039185, 0.013583104126155376, -0.017993202432990074, 0.012672859244048595, 0.034377600997686386, 0.009709273464977741, 0.007310179527848959, 0.008029907941818237, 0.02424495853483677, -0.02782948687672615, -0.02358167991042137, 0.003993785474449396, 0.031244667246937752, 0.023525230586528778, -0.030849521979689598, 0.019983038306236267, -0.006322317291051149, -0.022622041404247284, 0.0002359402715228498, -0.021154360845685005, 0.04010720178484917, -0.036183975636959076, -0.011734390631318092, 0.009504644200205803, -0.007303123362362385, -0.012334163300693035, -0.11464845389127731, -0.02496468648314476, 0.02298896200954914, 0.006915034726262093, -0.012016636319458485, 0.012256545946002007, 0.002025117166340351, 0.04256274178624153, -0.0009543453343212605, 0.0132796885445714, -0.023186534643173218, -0.008255704306066036, -0.005140410736203194, -0.006858585402369499, 0.013075060211122036, -0.016525521874427795, 0.018162550404667854, -0.014549797400832176, -0.01477559469640255, 0.02551506645977497, -0.006368182599544525, 0.0038138532545417547, 0.007232561707496643, 0.00822747964411974, -0.02345466800034046, -0.008911927230656147, -0.029522964730858803, 0.01658197119832039, 0.01764039508998394, 0.008156917989253998, 0.026164233684539795, -0.02071687951683998, 0.018007313832640648, -0.021690629422664642, -0.01254584826529026, 0.003124113893136382, -0.02252325601875782, 0.006488136947154999, 0.01066891010850668, -0.023341769352555275, 0.01296921819448471, -0.0056731509976089, 0.007782942149788141, -0.03545013815164566, -0.009843340143561363, 0.009716329164803028, -0.019305648282170296, 0.02972053736448288, 0.0067880237475037575, -0.02277727797627449, -0.01692066714167595, -0.02509169653058052, -0.036776695400476456, -0.03265589848160744, 0.012115422636270523, 0.029607638716697693, -0.0019474995788186789, 0.01700533926486969, -0.014832044020295143, -0.019277423620224, -0.008044020272791386, -0.0112404590472579, -0.018501246348023415, 0.014676808379590511, 0.01742870919406414, 0.014535685069859028, -0.01507195271551609, 0.003540427191182971, -0.011776727624237537, 0.006276452448219061, -0.013745395466685295, -0.0005931582418270409, -0.024851787835359573, -0.0009075982961803675, -0.03590172901749611, 0.0023655768018215895, -0.003637449350208044, -0.029014920815825462, 0.0246259905397892, 0.012588185258209705, -0.026869848370552063, -0.021577730774879456, 0.00635759811848402, -0.032232530415058136, -0.0007946997648105025, 0.02320064604282379, 0.019714904949069023, -0.010781808756291866, 0.015721119940280914, -0.027504902333021164, 0.025444505736231804, 0.02845042757689953, 0.0011069347383454442, 0.0024502507876604795, -0.0023761610500514507, 0.006368182599544525, 0.010309046134352684, -0.015198963694274426, 0.02193053811788559, 0.028436316177248955, -0.00669276574626565, 0.0035192586947232485, -0.05207444354891777, -0.0016925958916544914, 0.015805793926119804, 0.008262760937213898, 0.015509434975683689, -0.028902022168040276, 0.012066029943525791, 0.0012330635217949748, -0.0044136266224086285, -0.012263602577149868, -0.022509142756462097, 0.0026407670229673386, -0.012849262915551662, 0.0065269460901618, -0.03418002650141716, -0.0034257646184414625, 0.020660430192947388, 0.00865084957331419, -0.006989124231040478, 0.010238484479486942, -0.03663557022809982, -0.0006941495230421424, 0.011184009723365307, 0.021027350798249245, -0.04163132980465889, 0.001986308488994837, -0.001912218751385808, 0.022255120798945427, -0.0013697766698896885, -0.025458617135882378, 0.011953131295740604, 0.008439164608716965, -0.02386392466723919, 0.014309887774288654, -0.011367470026016235, -0.036353323608636856, -0.014705033041536808, 0.010005631484091282, 0.02345466800034046, 0.027222655713558197, -0.00903188157826662, -0.02281961403787136, 0.012051917612552643, -0.02874678745865822, -0.00955403782427311, -0.005754296667873859, -0.005207444541156292, -0.016906553879380226, 0.01052778773009777, -0.0009111263789236546, 0.049110859632492065, 0.015227188356220722, -0.01898106373846531, -0.013526654802262783, -0.013427868485450745, -0.005662566516548395, 0.02159184217453003, 0.02757546491920948, 0.01683599315583706, 0.00403259415179491, 0.03561948612332344, -0.0038773587439209223, -0.002277374966070056, -0.01115578506141901, 0.01549532264471054, -0.02226923406124115, -0.05410661920905113, -1.8122749679605477e-05, -0.0006332901539281011, -0.006354070268571377, 0.0006279980298131704, -0.006615147925913334, 0.022706715390086174, 0.01604570262134075, 0.0004482865333557129, 0.007486583199352026, -0.00816397462040186, -0.008806085214018822, -0.004004369489848614, 0.0224809180945158, 0.01645495928823948, -0.012552904896438122, -0.03118821792304516, 0.004741738084703684, 0.009173004887998104, 0.012051917612552643, -0.01541064865887165, 0.014288719743490219, -0.006502249278128147, -0.0026989802718162537, -0.0032670011278241873, 0.0011131089413538575, -0.013950023800134659, 0.03031325340270996, -0.007761773653328419, 0.014832044020295143, -0.007514807861298323, 0.004893445409834385, 0.012066029943525791, 0.02938184142112732, 0.013223239220678806, -0.0013274396769702435, 0.012432949617505074, -0.021478943526744843, -0.015650557354092598, 0.006943259388208389, -0.027180319651961327, -0.011924906633794308, 0.015227188356220722, 0.017654506489634514, -0.009497588500380516, -0.010739471763372421, 0.018331898376345634, 0.010852370411157608, -0.01919274963438511, -0.0027148567605763674, -0.013463148847222328, -0.002771305851638317, -0.036353323608636856, 0.00541912904009223, -0.005140410736203194, 0.02795649692416191, -0.0012815746013075113, -0.016116265207529068, 0.0415184311568737, -0.006495193112641573, 0.024908237159252167, -0.04075636714696884, 0.006484609097242355, -0.01836012303829193, 0.009695161134004593, 0.015100177377462387, -0.01443689875304699, -0.010351383127272129, -0.021916426718235016, -0.028069395571947098, -0.008813140913844109, 0.022001100704073906, 0.0011175189865753055, 0.08021440356969833, 0.021620066836476326, -0.0102737657725811, 0.006773911416530609, -0.014380449429154396, 0.014620359055697918, -0.002803058596327901, 0.010464281775057316, -0.0056731509976089, -0.0037044829223304987, 0.027180319651961327, -0.020914452150464058, -0.007966401986777782, -0.01851535774767399, -0.02681339904665947, -0.0004943720414303243, -0.001815196592360735, 0.03183738514780998, -0.013985305093228817, 0.003817381337285042, 0.02445664256811142, 0.011205178685486317, 0.006590451113879681, -0.010986438021063805, -0.03556303679943085, -0.01902340166270733, 0.03691781684756279, 0.015565884299576283, -0.006265867967158556, -0.02821051888167858, 0.013371419161558151, -0.00411373982205987, -0.021648291498422623, -0.016271499916911125, -0.01140980701893568, 0.008382715284824371, -0.002379689132794738, -0.019940702244639397, 0.00496753491461277, 0.021563617512583733, 0.019093962386250496, 0.019136300310492516, -0.014232270419597626, -0.031244667246937752, -0.013068004511296749, -0.003898527240380645, 0.005486162845045328, -0.019714904949069023, -0.00016074809536803514], "f156331b-003f-4068-b430-81ea09cd3acb": [-0.0011085382429882884, -0.005659741815179586, 0.028257396072149277, -0.041945431381464005, -0.013997877016663551, 0.014197551645338535, -0.014445423148572445, -0.032278429716825485, -0.01735103316605091, -0.021330753341317177, 0.022019287571310997, 0.02908363565802574, -0.0010620622197166085, -0.011987360194325447, -0.02398849092423916, -0.001628380618058145, 0.022391093894839287, -0.015836259350180626, -0.004716451279819012, -0.01199424546211958, -0.02467702329158783, 0.00857912190258503, -0.012249003164470196, -0.01691037230193615, -0.021826498210430145, -0.0015078873839229345, 0.004871371202170849, -0.004496120847761631, -0.01762644574046135, 0.011236859485507011, 0.007346647325903177, -0.009983728639781475, -0.01809464767575264, 0.00825551152229309, -0.02117927558720112, 0.023575371131300926, -0.0006205404060892761, -0.010389963164925575, 0.0005990237696096301, -0.01634577475488186, 0.03147973120212555, 0.014996249228715897, -0.0016344053437933326, -0.00603843480348587, 0.0006855207029730082, 0.025035060942173004, 0.006317290477454662, 0.0009570609545335174, -0.01326114684343338, -0.009963072836399078, -0.004151854198426008, -0.013880826532840729, -0.049409132450819016, 0.008427644148468971, 0.003893654327839613, -0.010142091661691666, 0.021977974101901054, -0.0006614220328629017, 0.015891343355178833, -0.02109665237367153, 0.004148411564528942, 0.00879945233464241, -0.014982478693127632, 0.004688910208642483, -0.022129451856017113, -0.014651983045041561, -0.01410115696489811, -0.01410115696489811, -0.016579875722527504, -0.007656487636268139, 0.03596896678209305, 0.030928904190659523, 0.00013824451889377087, 0.004065787419676781, -0.016648728400468826, -0.003148317337036133, -0.006399914622306824, -0.0010818575974553823, -0.002762738848105073, 0.012249003164470196, 0.010210945270955563, -0.018025794997811317, -0.03332499787211418, 0.0077046845108270645, 0.028119688853621483, 0.012545072473585606, 0.02087632194161415, 0.010803082957863808, -0.009322737343609333, 0.014280174858868122, 0.00427579041570425, -0.007532551418989897, 0.03057086654007435, 0.012613925151526928, 0.003855785122141242, 0.029909875243902206, 0.008833878673613071, 0.014831001870334148, -0.020642220973968506, -0.008338134735822678, -0.00739484466612339, -0.003948736935853958, -0.03214072063565254, -0.0023031430318951607, -0.014335257932543755, -0.018576622009277344, 0.011705061420798302, -0.016373315826058388, 0.021977974101901054, 0.006568605080246925, -0.04558088630437851, 0.020421890541911125, 0.009928646497428417, -0.011050955392420292, 0.03197547420859337, 0.0004656204837374389, 0.03406861424446106, -0.033490248024463654, -0.012827370315790176, -0.009123062714934349, 0.015519535169005394, -0.0022549456916749477, 0.025999007746577263, -0.02386455610394478, 0.016800206154584885, 0.022391093894839287, 0.02290060929954052, -0.0036767665296792984, 0.015684783458709717, -0.025627199560403824, -0.009432902559638023, -0.004083001054823399, 0.013295573182404041, 0.013178522698581219, 0.0006640040664933622, -0.007319106254726648, -0.0063930293545126915, 0.01402541808784008, -0.01809464767575264, -0.02864297479391098, 0.04103656858205795, 0.03459189832210541, 0.020614679902791977, -0.012235231697559357, -0.006162370555102825, 0.022817984223365784, -0.0034220092929899693, 0.025076372548937798, 0.004065787419676781, 0.0186317041516304, 0.027403615415096283, -0.024043573066592216, -0.030157746747136116, 0.016841517761349678, 0.007966327480971813, 0.007966327480971813, 0.003983163740485907, 0.021041570231318474, -0.022941920906305313, -0.011464075185358524, -0.005236293654888868, 0.014066729694604874, -0.005229408387094736, 0.000838288979139179, -0.016029048711061478, 0.03963196277618408, 0.0004669114714488387, -0.006100402679294348, -0.0024856042582541704, -0.0011868588626384735, 0.005057275295257568, 0.031589895486831665, -0.022625194862484932, 0.01445919368416071, -0.0008916502702049911, 0.009777168743312359, 0.008448300883173943, 0.008524038828909397, 0.0014226813800632954, -0.03241613507270813, 0.028532808646559715, 0.007277794182300568, -0.010162747465074062, 0.02358914166688919, -0.007745996583253145, -0.025131456553936005, 0.018301207572221756, 0.01560215838253498, 0.0041793957352638245, -0.016180526465177536, 0.000914888281840831, 0.022625194862484932, -0.016676269471645355, -0.015781177207827568, -0.6252981424331665, -0.0016636679647490382, -0.01126440055668354, -0.018397603183984756, 0.005917941685765982, 0.0021413378417491913, 0.03260892629623413, -0.001059480244293809, -0.010107665322721004, 0.03216826543211937, 0.029689544811844826, 0.019182531163096428, -0.0034753705840557814, -0.010851280763745308, -0.013109669089317322, -0.022721590474247932, -0.0044823503121733665, -0.042881838977336884, -0.021675020456314087, -0.00037632635212503374, -0.025227850303053856, 0.018673015758395195, -0.01031422521919012, 0.003539059776812792, 0.008971585892140865, -0.026577375829219818, 0.03448173403739929, -0.008324364200234413, 0.0024959321599453688, 0.012517530471086502, -0.016373315826058388, 0.013922138139605522, 0.012145723216235638, 0.019609421491622925, 0.048472724854946136, -0.0006588400574401021, -0.012366053648293018, 0.03175514563918114, 0.010582752525806427, 0.05513772740960121, -0.015505763702094555, -0.023134710267186165, 0.02467702329158783, 0.0031896294094622135, -0.008806337602436543, -0.01226277370005846, 0.014831001870334148, 0.004337758291512728, -0.013089013285934925, -0.017805464565753937, 0.016497252508997917, -0.022253388538956642, -0.01418378110975027, -0.0010947675909847021, 0.005287933629006147, -0.00030015737866051495, 0.02309339866042137, -0.02979971095919609, 0.003900539595633745, 0.0034271732438355684, 0.0023427337873727083, -0.000291120377369225, -0.01868678629398346, -0.03494993597269058, -0.043350040912628174, 0.012063099071383476, 0.001209236099384725, -0.021950433030724525, 0.008806337602436543, -0.014011647552251816, 0.04392840713262558, 0.0009321016259491444, -0.004878256469964981, -0.024360299110412598, -0.0010801361640915275, 0.011574240401387215, 0.023355040699243546, -0.01237293891608715, -0.00963946245610714, 0.0032429907005280256, -0.00511580053716898, -0.01467952411621809, -0.0323885940015316, -0.00939159095287323, 0.0129926186054945, 0.02077992632985115, -0.022983232513070107, -0.008358791470527649, -0.005253507290035486, 0.008055836893618107, 0.01871432736515999, 0.04178018495440483, -0.007491239346563816, -0.03332499787211418, -0.01644216850399971, 0.04133952409029007, -0.0052913762629032135, 0.009976843371987343, -0.042661506682634354, -0.012455563060939312, -0.015505763702094555, -0.013109669089317322, -0.010575867258012295, 0.004441038239747286, 0.020353036001324654, 0.031589895486831665, -0.004799075424671173, -0.0037352917715907097, 0.029992498457431793, -0.0386955551803112, -0.0001789110101526603, -0.010348651558160782, -0.013309343717992306, -0.019182531163096428, 0.02427767589688301, -0.020229101181030273, 0.008765025995671749, -0.014032303355634212, 0.015106415376067162, -0.025227850303053856, -0.0043584140948951244, 0.00787681806832552, 0.023561600595712662, -0.003986606374382973, -0.006028106901794672, 0.01952679641544819, 0.020229101181030273, 0.007484354078769684, 0.0071951705031096935, -0.0016826025675982237, 0.020105164498090744, -0.03690537065267563, 0.0037869317457079887, -0.0023857669439166784, 0.01887957565486431, -0.026136714965105057, 0.03189285099506378, -0.011890965513885021, -0.0035459452774375677, -0.038365062326192856, -0.0035803718492388725, -0.007319106254726648, 0.0027885588351637125, -0.013364426791667938, 0.010355536825954914, -0.03004758246243, -0.03214072063565254, 0.0014347307151183486, -0.00864108931273222, 0.0013004668289795518, -0.013901482336223125, -0.008166002109646797, -0.002747246762737632, 0.020972715690732002, -0.012600154615938663, 0.00651352247223258, -0.0015612486749887466, -0.04412119835615158, -0.005071045830845833, -0.027623945847153664, -0.0320030152797699, 0.016111673787236214, -0.006909429095685482, -0.0037731609772890806, -0.026288190856575966, -0.0162906926125288, 0.01513395644724369, -0.0040313610807061195, -0.021193046122789383, -0.032085638493299484, 0.009054209105670452, -0.013447050005197525, 0.005380885675549507, 0.02689410001039505, -0.010148976929485798, 0.024360299110412598, -0.019609421491622925, -0.0023048643488436937, 0.018700556829571724, -0.0032791385892778635, 0.0009802989661693573, 0.014362799003720284, -0.014775918796658516, -0.007029922213405371, 0.027279678732156754, 0.022225847467780113, 0.02595769613981247, 0.02112419344484806, -0.018493996933102608, 0.009784054942429066, 0.03450927510857582, 0.010410619899630547, 0.0007922433433122933, 0.004341200925409794, -0.023850783705711365, 0.015175268054008484, -0.027417385950684547, 0.007869932800531387, -0.009219457395374775, 0.019513025879859924, 0.008055836893618107, 0.014362799003720284, -0.012613925151526928, -0.0007130620069801807, -0.008971585892140865, -0.016869058832526207, 0.011849653907120228, -0.02504883147776127, 0.03894342854619026, 0.020421890541911125, 0.007491239346563816, -0.006227781530469656, -0.004854158032685518, -0.012338511645793915, 0.016111673787236214, 0.04880322143435478, 0.019953686743974686, 0.011890965513885021, 0.007153858430683613, 0.012187034823000431, 0.0213996060192585, -0.013626068830490112, 0.03128693997859955, -0.01107849646359682, -0.02664622850716114, 0.017240867018699646, -0.002948642708361149, 0.024966208264231682, -0.008448300883173943, -0.018962200731039047, 0.0031844652257859707, 0.021261900663375854, 0.019554337486624718, 0.004847272764891386, 0.03965950384736061, 0.02159239538013935, 0.021413378417491913, -0.02062845043838024, 0.02639835700392723, 0.011594896204769611, -0.018741870298981667, 0.011360795237123966, 0.024608170613646507, -0.023850783705711365, 0.017777923494577408, 0.009026668034493923, 0.019182531163096428, 0.01023160107433796, 0.0013478033943101764, 0.0009777168743312359, 0.013715578243136406, -0.006031549535691738, -0.020160246640443802, -0.006998938508331776, 0.024511776864528656, -0.019113676622509956, 0.006964511703699827, 0.015574617311358452, 0.010954560711979866, 0.016042819246649742, -0.0022910935804247856, -0.009804710745811462, 0.017364803701639175, -0.01659364625811577, 0.00979782547801733, 0.003317008027806878, -0.00522596575319767, -0.017199555411934853, -0.007601404562592506, -0.0307636559009552, 0.0002313040749868378, -0.006183026824146509, -0.0019347778288647532, -0.01585002988576889, 0.008840763941407204, 0.00472677918151021, 0.00985979288816452, 0.03266400843858719, -0.0007027340470813215, 0.0042310357093811035, -0.0230245441198349, -0.024856042116880417, 0.024002261459827423, 0.012359168380498886, 0.010025041177868843, -0.015051332302391529, -0.01562969945371151, -0.0018349405145272613, -0.00909552164375782, -0.001309073413722217, -0.020366806536912918, 0.00522596575319767, -0.009219457395374775, -0.006709754467010498, 0.006437784060835838, 0.017461197450757027, 0.04172510281205177, -0.022267159074544907, -0.010568981990218163, 0.012193920090794563, 0.0036629957612603903, 0.016979224979877472, -0.01903105340898037, -0.036024048924446106, 0.04761894419789314, -0.03335253894329071, -0.018356291577219963, -0.029496755450963974, -0.0267977062612772, -0.027596404775977135, 0.0054635098204016685, -0.005153669975697994, -0.018989741802215576, -0.006634016055613756, -0.002210190985351801, 0.023052087053656578, 0.002649130765348673, 0.008627318777143955, 0.030625950545072556, 0.013660495169460773, 0.0005366254481486976, -0.04340512305498123, 0.00909552164375782, 0.02336881123483181, 0.062353551387786865, -0.0010319389402866364, 0.009329622611403465, 0.016276920214295387, -0.01058963779360056, -0.040485743433237076, -0.02233601175248623, 0.0012187034590169787, 0.04346020519733429, -0.002909052185714245, -0.023795701563358307, 0.006324176210910082, 0.01110603753477335, -0.0018435472156852484, -0.0008413012837991118, -0.006510079838335514, 0.0004492677981033921, -0.011705061420798302, -0.0009166095987893641, 0.0019227284938097, 0.0076909139752388, 0.003855785122141242, 0.013426394201815128, 0.015781177207827568, 0.013860169798135757, 0.004774976521730423, 0.03125939890742302, 0.00839321780949831, -0.002864297479391098, -0.03693291172385216, -0.022790443152189255, 0.01759890466928482, 0.0023289630189538, 0.004936781711876392, -0.015960196033120155, 0.026811476796865463, 5.4759893828304484e-05, -0.01163620874285698, -0.010651606135070324, -0.0004094619944225997, 0.00334971328265965, 0.043597910553216934, 0.002559621585533023, -0.0020552710629999638, -0.0019898605532944202, -0.012200805358588696, 6.546443182742223e-05, 0.026577375829219818, -0.016235608607530594, -0.015712324529886246, 0.027789194136857986, 0.01713070273399353, -0.021922891959547997, 0.014844772405922413, 0.01562969945371151, -0.014693294651806355, 0.009178145788609982, -0.0013770661316812038, -0.024539317935705185, -0.020600909367203712, -0.03552830591797829, -0.006978282239288092, 0.004076115787029266, -0.0002455050707794726, -0.01090636383742094, -0.020174019038677216, -0.0018865804886445403, 0.005831874907016754, -0.019210072234272957, 0.013385082595050335, 0.006603031884878874, -0.033269915729761124, -0.03569355234503746, -0.0011971868807449937, 0.032774172723293304, 0.014872313477098942, -0.01706184819340706, 0.001458829385228455, 0.00035373386344872415, 0.011505386792123318, 0.021303212270140648, -0.020890092477202415, -0.002730033593252301, -0.038668014109134674, 0.005456624552607536, -0.010630950331687927, -0.018053336068987846, -0.018301207572221756, -0.0010276355314999819, -9.54263741732575e-05, -0.013894597068428993, 0.005597773473709822, 0.013818858191370964, 0.015395598486065865, -0.008957814425230026, 0.013495247811079025, 0.025035060942173004, -0.021633708849549294, 0.026852788403630257, -0.04125690087676048, 0.016621187329292297, -0.005549576133489609, -0.005931712221354246, -0.005955810658633709, 0.0009424295858480036, -0.001984696602448821, -0.01491362601518631, -0.007250253111124039, -0.02208814024925232, 0.014486734755337238, 0.027747880667448044, 0.022170763462781906, 0.014066729694604874, -0.003057086607441306, 0.02886330522596836, -0.01467952411621809, 0.002526916330680251, 0.02957937866449356, 0.018246125429868698, 4.908487608190626e-05, -0.005973024293780327, -0.008668631315231323, 0.03288433700799942, 0.005153669975697994, 0.002869461430236697, 0.0028315922245383263, 0.017323492094874382, -0.01348147727549076, -0.008386332541704178, 0.013467706739902496, -0.010837510228157043, 0.009708316065371037, -0.018135961145162582, -0.01199424546211958, -0.01305458601564169, 0.010259142145514488, -0.010789312422275543, 0.0007642716518603265, -0.038612931966781616, -0.001507026725448668, -0.022983232513070107, 0.0066994265653193, 0.01004569698125124, -0.001877973903901875, 0.016387086361646652, -0.02433275803923607, -0.00651352247223258, 0.002174043096601963, -0.0005680397734977305, 0.036519791930913925, -0.021261900663375854, -0.006096960045397282, -0.012008015997707844, -0.012710319831967354, -0.0052121952176094055, -0.024126198142766953, -0.008379447273910046, -0.0025854415725916624, 0.0472884476184845, 0.002087976550683379, 0.012882453389465809, 0.013419508934020996, 0.020614679902791977, -0.0008081656415015459, -0.015450681559741497, 0.002160272328183055, -0.02442915178835392, -0.02181272767484188, 0.018865805119276047, -0.0031259399838745594, 0.008778796531260014, 0.006795821245759726, -0.005604658741503954, 0.0040726731531322, 0.0018142845947295427, 0.041009027510881424, -0.02181272767484188, 0.012193920090794563, -0.027183284983038902, -0.029414132237434387, 0.00963946245610714, 0.04103656858205795, -0.013922138139605522, 0.023203562945127487, -0.02867051586508751, -0.0018831378547474742, -0.004334315657615662, 0.0025957694742828608, 0.022666508331894875, 0.02610917203128338, 0.02228092961013317, -0.006720082368701696, 0.0025510150007903576, 0.012035558000206947, -0.013157865963876247, -0.014142468571662903, 0.004334315657615662, -0.0352528914809227, -0.026026548817753792, 0.014156239107251167, 0.01878318190574646, 0.018246125429868698, 0.0002474415523465723, 0.01163620874285698, -0.0027059349231421947, 0.03051578439772129, -0.01251064520329237, -0.022418634966015816, -0.0011050954926759005, -0.0031379894353449345, -0.022170763462781906, -0.021206818521022797, -0.02427767589688301, 0.009728971868753433, -0.010982101783156395, -6.912225944688544e-05, 0.019017282873392105, -0.0007040250347927213, -0.017419885843992233, -0.010679147206246853, 0.01527166273444891, 0.010355536825954914, 0.034646984189748764, -0.005732037592679262, 0.020050082355737686, 0.011663749814033508, -0.003549387911334634, -0.014066729694604874, -0.03379320353269577, 0.015891343355178833, -0.01993991620838642, -0.0024047016631811857, 0.03685028851032257, -0.006720082368701696, -0.007821734994649887, 0.01622183807194233, -0.0010560376103967428, 0.009185031056404114, -0.03142464905977249, 0.02867051586508751, 0.015918884426355362, -0.014528047293424606, -0.04081624001264572, -0.024704566225409508, 0.010582752525806427, 0.027444927021861076, -0.012221461161971092, 0.015023791231215, 0.007498124614357948, -0.005367115139961243, 0.00019440300820861012, 0.04514022544026375, -0.016111673787236214, 0.011691290885210037, -0.01762644574046135, -0.015478222630918026, -0.022969461977481842, 0.008792567066848278, -0.01856285147368908, -0.029634462669491768, 0.0008283912902697921, 0.02193666249513626, -0.018480226397514343, 0.009260769002139568, 0.007133202161639929, 0.008379447273910046, 0.00454776082187891, -0.013873940333724022, -0.0138050876557827, 0.021137963980436325, -0.004237920977175236, 0.012909994460642338, 0.006881887558847666, -0.009556838311254978, 0.016731353476643562, -0.029248883947730064, -0.011360795237123966, 0.0012660401407629251, 0.008737483993172646, 0.012269658967852592, 0.020270412787795067, 0.0016008393140509725, 0.003607913153246045, -0.0057630217634141445, 0.015836259350180626, -0.012896223925054073, -0.0030949560459703207, 0.002007073722779751, -0.004200051538646221, -0.016042819246649742, -0.03613421320915222, -0.003509797155857086, 0.02533801645040512, 0.011718831956386566, 0.011498501524329185, -0.016084132716059685, -0.005780234932899475, 0.04089886322617531, -0.013440164737403393, -0.012531301006674767, 0.02080746926367283, 0.001699815969914198, -0.03875064104795456, 0.02196420356631279, 0.004213822074234486, -0.00395562220364809, 0.04346020519733429, 0.002969298744574189, -0.03236105293035507, -0.004620056599378586, 0.021330753341317177, -0.00423447834327817, 0.006678770296275616, -0.006148600019514561, 0.017172014340758324, 0.018204813823103905, 0.0011119808768853545, -0.00291765877045691, -0.01787431724369526, -0.0027524109464138746, -0.00920568685978651, -0.007505010347813368, 0.011567355133593082, -0.020160246640443802, 0.009116177447140217, -0.01226277370005846, 0.02228092961013317, -0.0077528818510472775, -0.033242374658584595, -0.037676528096199036, -0.02258388325572014, -0.012503759935498238, -0.012131951749324799, -0.01310278382152319, 0.010816854424774647, -0.0247458778321743, -0.007759767584502697, 0.030873822048306465, -0.009088636375963688, -0.005976466927677393, 0.008517153561115265, -0.01881072297692299, 0.032030556350946426, 0.015065102837979794, 0.007966327480971813, -0.03786931559443474, -0.0033256146125495434, -0.015106415376067162, -0.019099906086921692, -0.011367680504918098, -0.013040815480053425, 0.050373077392578125, 0.015023791231215, -0.008200428448617458, -0.021454690024256706, -0.010080123320221901, -0.03737357258796692, -0.016841517761349678, -0.017268408089876175, 0.01993991620838642, 0.03409615531563759, 0.03313221037387848, 0.015078873373568058, 0.04453431814908981, -0.009350278414785862, 0.014142468571662903, -0.035060103982686996, -0.008971585892140865, -0.019829751923680305, -0.03877818211913109, 0.008441414684057236, -0.017585134133696556, -0.021922891959547997, 0.0062415520660579205, 0.01572609506547451, -0.016015278175473213, 0.02062845043838024, 0.02689410001039505, -0.039301466196775436, -0.022762902081012726, -0.016304463148117065, -0.0012118181912228465, 0.022253388538956642, 0.02196420356631279, 0.016056589782238007, -0.03291187807917595, 0.005415312480181456, 0.016827747225761414, 0.0009493149118497968, -0.02521407976746559, 0.02240486443042755, 0.025599658489227295, -0.02408488653600216, 0.02982725203037262, -0.02009139396250248, -0.02003631182014942, -0.00262503232806921, -0.005122685804963112, 0.017681527882814407, -0.004478907212615013, -0.009983728639781475, 0.04043066129088402, -0.013178522698581219, -0.00264740944840014, -0.03249875828623772, 0.011429648846387863, 0.00572515232488513, 0.009487985633313656, 0.015574617311358452, -0.03057086654007435, -0.0038454569876194, -0.018700556829571724, -0.012462448328733444, 0.022859297692775726, -0.011987360194325447, -0.004406611435115337, 0.0145693589001894, -0.01759890466928482, -0.0178192351013422, 0.007360418327152729, -0.02336881123483181, -0.003969393204897642, -0.0023513403721153736, -0.007477468810975552, -0.024704566225409508, 0.0072846794500947, 0.006103845313191414, -0.0020019097719341516, 0.008730598725378513, -0.006004007998853922, -0.0013064914382994175, -0.04197297245264053, 0.002156829694285989, 0.006575490348041058, -0.005084816366434097, 0.011505386792123318, 0.20457693934440613, 0.002649130765348673, 0.008572236634790897, 0.016152985394001007, 0.01806710660457611, 0.00740173039957881, -0.006148600019514561, 0.02062845043838024, -0.0183425210416317, 0.008303708396852016, 0.023423893377184868, -0.0020311723928898573, -0.027968212962150574, -0.0006265650736168027, 0.004919568542391062, -0.027720339596271515, -0.018370062112808228, -0.02245994843542576, 0.011505386792123318, -0.013440164737403393, 0.008324364200234413, -0.006695983931422234, -0.015326745808124542, -0.006368930451571941, 0.026728853583335876, 0.0275137796998024, 0.009708316065371037, 0.004699238110333681, 0.028698056936264038, 0.026191797107458115, -0.008888961747288704, 0.0018314978806301951, 0.010823739692568779, -0.021757643669843674, -0.00434464355930686, -0.015106415376067162, 0.02982725203037262, -0.011643094010651112, 0.002263552276417613, 0.012173264287412167, -0.0009062816388905048, -0.020022541284561157, 0.026191797107458115, -0.041917890310287476, 0.006751066539436579, -0.010823739692568779, -0.025296704843640327, -0.0007104800315573812, 0.011649979278445244, 0.01787431724369526, -0.014555588364601135, 0.013688037171959877, 0.018728097900748253, 0.00047293613897636533, -0.006272536236792803, 0.010197174735367298, -0.01023160107433796, 0.018204813823103905, -0.0014381733490154147, 0.018149731680750847, -0.014197551645338535, -0.0023978163953870535, 0.002174043096601963, -0.00758074875921011, -0.03313221037387848, 0.024759648367762566, -0.003112169448286295, 0.032774172723293304, 0.008944043889641762, 0.0030760213267058134, -0.006981724873185158, -0.008420758880674839, -0.031810227781534195, -0.008524038828909397, -0.0029779053293168545, -0.01922384276986122, 0.017213325947523117, 0.026756394654512405, 0.04252380132675171, 0.011643094010651112, 0.004027918446809053, -0.01023160107433796, -0.021564854308962822, -0.0007027340470813215, 0.0145693589001894, -0.003442665096372366, 0.030130205675959587, -0.027637716382741928, -0.003492583753541112, -0.010224715806543827, -0.0017307999078184366, 0.008110919035971165, 0.0035975852515548468, -0.02667376957833767, -0.015092643909156322, -0.016800206154584885, 0.011305712163448334, 0.022446177899837494, 0.001608585356734693, -0.022363552823662758, 0.002008795039728284, 0.03172760084271431, 0.022694049403071404, 0.0320030152797699, -0.0021878136321902275, -0.00017331667186226696, 0.003255039919167757, 0.021854039281606674, -0.0041793957352638245, -0.02427767589688301, 0.011223088949918747, -0.05186031013727188, 0.012634580954909325, -0.015257892198860645, -0.00909552164375782, 0.025324245914816856, 0.007505010347813368, -0.012689664028584957, -0.002516588196158409, 0.0004910101415589452, 0.012930650264024734, -0.012207690626382828, -0.005935154855251312, 0.0012780894758179784, -0.02492489665746689, -0.03467452526092529, -0.0008227970101870596, 0.007670258171856403, -0.03916376084089279, -0.016359545290470123, 0.001869367202743888, -0.02093140408396721, 0.014941167086362839, 0.00950175616890192, 0.013316228985786438, -0.011546699330210686, -0.02327241748571396, -0.020325494930148125, 0.018370062112808228, -0.0073259915225207806, 0.0010921854991465807, -0.009942417033016682, -5.906322621740401e-05, 0.015078873373568058, 0.005955810658633709, 0.014707066118717194, -0.01993991620838642, -0.006857789121568203, -0.022129451856017113, -0.01609790325164795, 0.004874813836067915, 0.01255884300917387, -0.0067717223428189754, -0.012937535531818867, 0.035390596836805344, -0.014472964219748974, -0.03643716871738434, -0.014555588364601135, 0.016125444322824478, 0.02558588795363903, -0.05265900865197182, 0.0028832321986556053, 0.04235855117440224, 0.02215699292719364, -0.015368057414889336, -0.009329622611403465, -0.1756034642457962, -0.0012083754409104586, 0.004716451279819012, -0.004967765882611275, 0.003458157181739807, 0.02536555752158165, -0.008475841954350471, -0.02075238525867462, -0.017612675204873085, -0.015106415376067162, -0.008248626254498959, 0.005528920330107212, -0.03764898702502251, -0.027747880667448044, 0.012799829244613647, -0.014197551645338535, 0.023823242634534836, 0.028945928439497948, 0.05469706654548645, 0.01346082054078579, 0.030653491616249084, -0.009715201333165169, -0.015450681559741497, -0.010982101783156395, 0.011174891144037247, 0.022941920906305313, -0.005163997877389193, 0.015299203805625439, 0.005749250762164593, -0.043763160705566406, 0.015065102837979794, 0.00291765877045691, 0.0008705639629624784, 0.004647598136216402, -0.01207686960697174, -0.006578932981938124, 0.002160272328183055, -0.02093140408396721, -0.019760897383093834, 0.024966208264231682, 0.03610667213797569, 0.026357045397162437, 0.015960196033120155, 0.0020862550009042025, 0.024374069646000862, 0.023203562945127487, 0.0370706208050251, -0.012861797586083412, 0.005480722989886999, -0.007436156738549471, 0.011574240401387215, -0.032278429716825485, 0.001778136589564383, -0.0002541117137297988, 0.0133506553247571, 0.013192293234169483, 0.018425144255161285, 0.026907870545983315, 0.0020965831354260445, -0.006799263879656792, 0.0007810546667315066, -0.03128693997859955, -0.020242871716618538, -0.009625691920518875, -0.01240047998726368, -0.026536064222455025, 0.008365676738321781, 0.03662995621562004, -0.0029452000744640827, 0.016621187329292297, 0.010913249105215073, 0.010713574476540089, 0.011911621317267418, 0.014266404323279858, -0.013557215221226215, -0.004898912739008665, -0.016304463148117065, 0.015891343355178833, 0.020614679902791977, -0.006010893266648054, 0.009116177447140217, 0.0052121952176094055, 0.0005310311098583043, 0.0011730882106348872, -0.011223088949918747, -0.011285056360065937, -0.0034667637664824724, -0.006272536236792803, -0.019416632130742073, -0.0012600154150277376, 0.02327241748571396, -0.01706184819340706, -0.016745124012231827, -0.0038833264261484146, 0.0034357798285782337, 0.008482727222144604, 0.01740611530840397, 0.008723713457584381, -0.00581810437142849, -0.011567355133593082, -0.008434529416263103, 0.0037869317457079887, -0.02755509316921234, 0.030928904190659523, 0.03640962764620781, 0.012882453389465809, 0.03216826543211937, -0.008792567066848278, 0.035087645053863525, -0.034426651895046234, -0.024938667193055153, 0.016139214858412743, 0.03384828567504883, -0.007477468810975552, -0.027885587885975838, 0.027348533272743225, -0.011009643785655499, -0.01703430712223053, 0.0033755332697182894, -0.014831001870334148, 0.051557354629039764, -0.04153231158852577, -0.01582248881459236, 0.009701430797576904, -0.0037215210031718016, -0.0231209397315979, -0.10019532591104507, -0.028560349717736244, 0.017929401248693466, 0.01445919368416071, -0.001533707370981574, 0.014335257932543755, 0.00825551152229309, 0.029441673308610916, 0.014968708157539368, 0.008586007170379162, -0.01034176629036665, -0.017433656379580498, -0.02174387313425541, -0.010025041177868843, 0.0017437099013477564, -0.00024356856010854244, 0.006840575952082872, -0.009928646497428417, -0.009811596013605595, 0.02593015506863594, -0.0026233107782900333, -0.013887711800634861, -0.002597490791231394, 0.013543444685637951, -0.004850715398788452, 0.0023978163953870535, -0.01582248881459236, 0.005573675036430359, 0.024663252755999565, 0.010988987050950527, 0.03412369638681412, -0.014128698036074638, -0.0019984671380370855, -0.02159239538013935, 0.014899855479598045, -0.0035235679242759943, -0.012242117896676064, 0.007085004821419716, 0.019099906086921692, -0.010954560711979866, 0.0038144730497151613, 0.0008563629817217588, -0.005064160563051701, -0.042799212038517, 0.0029761840123683214, 0.0011369402054697275, -0.01974712684750557, 0.019981229677796364, 0.0063413893803954124, -0.005284490995109081, -0.027417385950684547, -0.01572609506547451, -0.03428894653916359, -0.029551837593317032, 0.00791124440729618, 0.006620245054364204, 0.006603031884878874, 0.001348664052784443, -0.005670069716870785, 0.003594142384827137, -0.0034288945607841015, 0.010975216515362263, -0.006127944216132164, 0.015326745808124542, -0.005504821892827749, 0.006603031884878874, -0.013632954098284245, 0.006062533240765333, 0.001658504013903439, 0.007291564717888832, -0.029689544811844826, -0.011278171092271805, -0.018232354894280434, 0.016029048711061478, -0.025847529992461205, 0.00337036931887269, -0.004113984759896994, -0.022046828642487526, 0.006868117023259401, 0.015863800421357155, -0.017075618728995323, -0.021950433030724525, 0.0018487111665308475, -0.018232354894280434, -0.005002192687243223, 0.015767406672239304, 0.01405295915901661, -0.011085381731390953, 0.021551083773374557, -0.032085638493299484, 0.018521538004279137, 0.009295196272432804, -0.003057086607441306, 0.01582248881459236, -0.020146476104855537, 0.00915748905390501, -0.006603031884878874, -0.03310466930270195, 0.020146476104855537, 0.011119809001684189, 0.006275978870689869, 0.004840387497097254, -0.05219080299139023, -0.018700556829571724, 0.022101910784840584, 0.01582248881459236, 0.010300454683601856, -0.02957937866449356, 0.004423824604600668, -0.020380578935146332, 0.015010020695626736, -0.005181211046874523, -0.05494493618607521, 0.017681527882814407, -0.006007450632750988, 0.015863800421357155, -0.03302204608917236, 0.015987737104296684, 0.028009524568915367, -6.992913404246792e-05, 0.005284490995109081, -0.006362045183777809, -0.022129451856017113, -0.0018022352596744895, -0.01644216850399971, 0.003337663831189275, -0.016180526465177536, 0.0080971485003829, 0.001289278152398765, 0.014225092716515064, -0.018893346190452576, -0.02908363565802574, 0.01927892491221428, 0.009591265581548214, -0.012145723216235638, 0.01609790325164795, -0.016042819246649742, -0.03478468954563141, 0.0096738887950778, 0.0020328937098383904, 0.014252633787691593, 0.027816735208034515, -0.005374000407755375, -0.030956445261836052, 0.024663252755999565, -0.029496755450963974, -0.008241740055382252, -0.0021654365118592978, -0.004069230053573847, -0.013942793942987919, -0.000880031322594732, 0.01243490632623434, 0.04764648526906967, 0.009722086600959301, -0.02053205482661724, -0.028133459389209747, -0.004874813836067915, -0.01305458601564169, 0.013701807707548141, 0.02864297479391098, 0.013474592007696629, 8.176329720299691e-05, 0.032305970788002014, -0.005876629613339901, -0.0013977220514789224, -0.01369492243975401, 0.010148976929485798, -0.020050082355737686, -0.04301954433321953, -0.003759390441700816, 0.009715201333165169, -0.002676672302186489, 0.003952179569751024, -0.02040812000632286, 0.025007519870996475, 0.012008015997707844, 0.013495247811079025, 0.003601027885451913, -0.01765398681163788, -0.01572609506547451, 0.005608101841062307, 0.0213996060192585, 0.006510079838335514, -0.0027747880667448044, -0.011649979278445244, 0.022707819938659668, 0.018480226397514343, 0.018301207572221756, -0.006520407740026712, 0.02499374933540821, 0.01806710660457611, -0.005146784707903862, -0.016634957864880562, 0.0010698082624003291, -0.018135961145162582, 0.005084816366434097, -0.00762206083163619, 0.01737857423722744, -0.008221084251999855, 0.001109398901462555, 0.009777168743312359, 0.022377323359251022, -0.0035149611067026854, 0.005601216107606888, 0.008902732282876968, -0.018769411370158195, -0.018838264048099518, -0.0004935921169817448, -0.006847461219877005, -0.026783935725688934, 0.013040815480053425, 0.004237920977175236, -0.0010474309092387557, -0.02632950432598591, 0.00622433889657259, 0.002521752379834652, -0.024828501045703888, -0.007277794182300568, -0.0018951871898025274, -0.028835764154791832, -0.0352528914809227, 0.003404795890673995, 0.0002581998996902257, 0.017709068953990936, 0.011842768639326096, -0.01747496798634529, 0.036519791930913925, -0.025985237210989, 0.005009077955037355, -0.039108674973249435, 0.006706311833113432, -0.021977974101901054, -0.011436534114181995, 0.004472021944820881, -0.015092643909156322, -0.014197551645338535, -0.03241613507270813, 0.006203682627528906, -0.0002551875659264624, 0.00443759560585022, -0.0006356020458042622, 0.08515776693820953, 0.02415373921394348, -0.009921761229634285, 0.014982478693127632, -0.017791694030165672, 0.017020536586642265, 0.013791317120194435, 0.003704307833686471, -0.002067320514470339, -0.006596146617084742, 0.037015534937381744, 0.010871936567127705, -0.01004569698125124, -0.008654860779643059, -0.0046613686718046665, -0.012131951749324799, 0.004282675683498383, 0.009405361488461494, -0.02255634218454361, 0.018328748643398285, 0.02521407976746559, 0.012572613544762135, -0.0026009336579591036, -0.017888087779283524, -0.03338008001446724, -0.01865924522280693, 0.02861543372273445, 0.021316982805728912, -0.015299203805625439, -0.03990737348794937, 0.01897597126662731, 0.0019347778288647532, -0.011298826895654202, -0.023327499628067017, -0.011581125669181347, 0.036492250859737396, -0.007332876790314913, -0.008386332541704178, 0.012737860903143883, 0.031810227781534195, 0.028945928439497948, 0.021234359592199326, -0.016359545290470123, -0.013557215221226215, 0.0010474309092387557, -0.0013099340721964836, 0.004788747522979975, -0.015588387846946716, 0.0033238932956010103], "8aa627a8-d6cd-4c5d-bd90-eb2ebad5359e": [0.006699992343783379, -0.001709473435766995, 0.016521265730261803, -0.04455898329615593, -0.017193956300616264, 0.029140930622816086, -0.00655536400154233, -0.026086917147040367, -0.01779937744140625, -0.023207804188132286, 0.0014916900545358658, 0.014947171323001385, 0.002776527777314186, -0.0027260761708021164, -0.015041347593069077, 0.009236033074557781, 0.02686723694205284, -0.016655804589390755, -0.01862005889415741, -0.015929298475384712, -0.02221222221851349, 0.013817052356898785, -0.004702102858573198, -0.001428625313565135, -0.025925472378730774, 0.010843762196600437, 0.005008176900446415, -0.012101693078875542, -0.014893355779349804, 0.004089955240488052, 0.007386135868728161, -0.010460329242050648, -0.013447072356939316, 0.00576495286077261, -0.030809201300144196, 0.010063442401587963, 0.007776296231895685, -0.017395762726664543, -0.013574883341789246, -0.0026302176993340254, 0.03683650121092796, 0.0032541377004235983, -0.010231614112854004, -0.02506442926824093, -0.014005404897034168, 0.029463820159435272, -0.008516254834830761, 0.0023443244863301516, -0.018431704491376877, 0.005418517626821995, -0.011603902094066143, -0.0022989180870354176, -0.02766101248562336, 0.01109265722334385, 0.0003594687150325626, -0.018458612263202667, 0.011920066550374031, -0.008348082192242146, 0.01805499941110611, -0.017395762726664543, 0.017651384696364403, 0.021862424910068512, -0.014099582098424435, -0.0015026212204247713, -0.010689043439924717, -0.024257199838757515, -0.007695573382079601, -0.01726122386753559, -0.014570465311408043, -0.010265248827636242, 0.04420918598771095, 0.02167407050728798, 0.002949745627120137, 0.01142900250852108, -0.008906415663659573, -0.008348082192242146, 0.0015858665574342012, -0.01980399340391159, -0.005734682083129883, 0.008502800948917866, 0.007695573382079601, -0.03215458244085312, -0.022454392164945602, -0.0002480544208083302, 0.023153988644480705, 0.023517241701483727, 0.02992125041782856, 0.010123983956873417, -0.01411303598433733, 0.015000986866652966, -0.023315435275435448, -0.006726899649947882, 0.028925668448209763, -0.00435230415314436, 0.009155310690402985, 0.012599483132362366, 0.008697881363332272, 0.016292551532387733, -0.004947634879499674, -0.02144535630941391, -0.007857019081711769, 0.0014765545492991805, -0.044316817075014114, -0.007796476595103741, -0.02871040813624859, -0.01442247349768877, 0.018350983038544655, -0.015202793292701244, 0.015969660133123398, 0.009686735458672047, -0.030836109071969986, 0.03936581686139107, -0.017328493297100067, 0.0008211021777242422, 0.012525487691164017, -0.022467846050858498, 0.03269273415207863, -0.03315016254782677, -0.011617355979979038, -0.012579302303493023, 0.007722480688244104, -0.0048231869004666805, 0.023719048127532005, -0.04353649541735649, 0.01607729122042656, 0.009653100743889809, 0.02175479382276535, 0.006232472602277994, 0.01584857515990734, -0.027284305542707443, -0.006736990064382553, 3.7129331758478656e-05, 0.021028287708759308, 0.004910636693239212, -0.011334826238453388, 0.003102782415226102, -0.013043458573520184, 0.0012587711680680513, -0.00892659556120634, -0.01552568469196558, 0.047088298946619034, 0.03263891860842705, 0.018485520035028458, -0.029114022850990295, 3.61570855602622e-05, 0.0242975614964962, 0.012814744375646114, 0.015606407076120377, -6.895072147017345e-05, 0.0259927399456501, 0.01833752915263176, -0.025804387405514717, -0.032423656433820724, 0.00816645659506321, 0.009464748203754425, -0.003284408710896969, -0.007998283952474594, 0.013763236813247204, -0.02604655548930168, -0.014745363965630531, -0.0042413100600242615, -0.000664281367789954, -0.008839146234095097, -0.003955416847020388, 0.016252189874649048, 0.033607590943574905, 0.015431508421897888, -0.02070539817214012, 0.01286855898797512, -0.007971376180648804, 0.005196529906243086, 0.022252583876252174, -0.024849167093634605, 0.016534719616174698, 0.004550747573375702, 0.0014765545492991805, 0.009666554629802704, 0.014772271737456322, -0.014032312668859959, -0.03051321767270565, 0.026692338287830353, 0.005179713014513254, -0.0005583326565101743, 0.02124354988336563, -0.021862424910068512, -0.03600236773490906, 0.021606801077723503, 0.014382111839950085, 0.006703355815261602, -0.004809733480215073, -0.0022198769729584455, 0.012343861162662506, -0.017664838582277298, -0.022750375792384148, -0.6320056915283203, 0.003972234204411507, 0.014799179509282112, -0.027539927512407303, 0.001789355301298201, 0.007157421205192804, 0.0452047660946846, 0.0004965292755514383, -0.0023846859112381935, 0.03150879964232445, 0.018942950293421745, 0.015148978680372238, -0.0064645507372915745, -0.0197770856320858, -0.012189142405986786, -0.01995198428630829, -0.01091775856912136, -0.034065019339323044, -0.011213742196559906, 0.010655409656465054, -0.018579697236418724, 0.030728477984666824, -0.012612937018275261, -0.0051561687141656876, 0.00885932706296444, -0.027526473626494408, 0.03831642121076584, -0.016252189874649048, 0.0013916273601353168, 0.010285429656505585, -0.021028287708759308, 0.018727688118815422, 0.00801173783838749, 0.008684427477419376, 0.047249745577573776, -0.001286519574932754, -0.024082301184535027, 0.01810881495475769, 0.0210551954805851, 0.054945316165685654, -0.010339245200157166, -0.0009989446261897683, 0.025696756318211555, 0.006535183172672987, -0.007870472967624664, 0.00013600950478576124, 0.02514515072107315, 0.007244870997965336, -0.008650792762637138, -0.02003270760178566, 0.013662333600223064, -0.018445158377289772, 0.010843762196600437, 0.00015534933481831104, 0.006188747938722372, -0.005250345449894667, 0.011819162406027317, -0.03936581686139107, 0.008334629237651825, -0.006124842446297407, 0.002093747491016984, 0.009505108930170536, -0.031804781407117844, -0.04138388857245445, -0.04286380484700203, 0.009680008515715599, 0.006212291773408651, -0.026692338287830353, 0.012142053805291653, -0.011819162406027317, 0.024687722325325012, 0.001390786492265761, 0.003743519773706794, -0.02042286843061447, 0.006219018716365099, -0.00919567234814167, 0.026342539116740227, -0.008738243021070957, -0.007843565195798874, 0.013420164585113525, -0.0026823512744158506, -0.007298686075955629, -0.023719048127532005, -0.004940907936543226, 0.019198572263121605, 0.016628896817564964, -0.018687328323721886, -0.009532016701996326, -0.01408612821251154, 0.0036527065094560385, 0.0026083553675562143, 0.04044212028384209, -0.01746303215622902, -0.039204370230436325, -0.029705990105867386, 0.04700757563114166, 0.003952053375542164, 0.006642813328653574, -0.015929298475384712, -0.022669652476906776, -0.02941000647842884, -0.012471672147512436, 0.0024048667401075363, 0.009404205717146397, 0.017584115266799927, 0.022131500765681267, -0.006501548457890749, -0.015431508421897888, 0.03726702556014061, -0.03608309105038643, -0.00112675572745502, 0.00041874952148646116, -0.007372681982815266, -0.01740921661257744, 0.02717667445540428, -0.025037521496415138, 0.015619860962033272, -0.01411303598433733, 0.009458021260797977, -0.026154186576604843, 0.0023073265329003334, 0.003935236483812332, 0.0034845340996980667, -0.010937939397990704, 0.00763503136113286, 0.03145498409867287, -0.0011620719451457262, -0.01521624717861414, 0.008744969964027405, 0.001727131544612348, -0.0014202167512848973, -0.04356340318918228, 0.009464748203754425, -0.010843762196600437, 0.031185906380414963, -0.009854908101260662, 0.028441332280635834, 0.0023998215328902006, -0.005223437678068876, -0.04076501354575157, 0.017503393813967705, -0.0010620092507451773, 0.016884518787264824, -0.026463624089956284, -0.0013167905854061246, -0.03156261518597603, -0.0121487807482481, 0.013399984687566757, -0.02319435030221939, -0.008139548823237419, -0.015404600650072098, -0.009236033074557781, -0.016628896817564964, 0.030863016843795776, -0.02427065372467041, 0.013218358159065247, 0.012760928831994534, -0.03853168338537216, -0.0005133465165272355, -0.035760197788476944, -0.03169715031981468, 0.020167244598269463, -0.022252583876252174, 0.009444567374885082, -0.02116282656788826, -0.008516254834830761, -0.0045574745163321495, -0.009027499705553055, -0.009653100743889809, -0.03212767466902733, 0.016036929562687874, -0.0038343328051269054, 0.017341947183012962, 0.025790933519601822, -0.021095557138323784, 0.02398812398314476, -0.015095163136720657, -0.0005991145153529942, 0.006757170893251896, -0.0038309693336486816, 0.01467809546738863, 0.022750375792384148, -0.005990304052829742, -0.01130119152367115, 0.021566441282629967, 0.023974670097231865, 0.02116282656788826, 0.008368263021111488, -0.038154974579811096, 0.005041811149567366, 0.023100173100829124, -0.0005499240360222757, 0.009720370173454285, 0.006676448043435812, -0.019037125632166862, -0.003358404617756605, -0.01944074034690857, 0.008428805507719517, -0.012754201889038086, 0.007957922294735909, 0.016400180757045746, 0.011099384166300297, -0.018243351951241493, 0.0026184457819908857, 0.006145022809505463, -0.018633512780070305, 0.00914185680449009, -0.015888936817646027, 0.029732896015048027, 0.016548173502087593, 0.0001224505977006629, -0.007628304418176413, 0.016548173502087593, -0.01856624335050583, 0.016036929562687874, 0.048944924026727676, 0.01831062138080597, 0.016265643760561943, -0.005795224104076624, 0.034764617681503296, 0.006474641151726246, -0.004278308246284723, 0.04630797728896141, 0.0021610164549201727, -0.0028807949274778366, 0.019534917548298836, 0.00019886397058144212, 0.016992148011922836, -0.0031111910939216614, -0.010433421470224857, 0.006642813328653574, 0.033069439232349396, 0.017759015783667564, 0.018512427806854248, 0.04353649541735649, 0.022104592993855476, 0.016467450186610222, -0.010749585926532745, 0.04256782308220863, -0.004385938867926598, -0.004631470423191786, 0.0271228589117527, 0.023772863671183586, -0.023544149473309517, 0.030836109071969986, -0.00023354955192189664, 0.011260829865932465, 0.007103606127202511, -0.012350588105618954, 0.01267347950488329, 0.015108617022633553, -0.01274074800312519, -0.009928904473781586, -0.007917560636997223, 0.01295600924640894, -0.014718456193804741, 0.011812436394393444, 0.00042379467049613595, 0.023207804188132286, 0.01086394302546978, 0.006091207731515169, -0.011476091109216213, 0.012323680333793163, -0.008065552450716496, 0.01240440271794796, -0.011321372352540493, -0.012545667588710785, -0.023073265329003334, -0.015431508421897888, -0.03347305208444595, -0.007742661517113447, -0.006538546644151211, 0.0018818501848727465, -0.0022972363512963057, 0.0010729405330494046, 0.0031650064047425985, 0.0028639775700867176, 0.02884494699537754, -0.004295125603675842, 0.005579963326454163, -0.012774382717907429, -0.02675960771739483, 0.03549112379550934, 0.01111956499516964, 0.01613110490143299, -0.021041741594672203, -0.014826087281107903, -0.011657717637717724, 0.008832419291138649, 0.014193758368492126, -0.01465118769556284, -0.001046032877638936, -0.016682710498571396, -0.003864603815600276, -0.0009358799434266984, 0.030217234045267105, 0.051635682582855225, -0.023234711959958076, -0.003820879152044654, 0.000664281367789954, 0.005327704828232527, 0.007574489340186119, -0.00888623483479023, -0.03551803156733513, 0.03990396857261658, -0.04420918598771095, -0.024674268439412117, -0.031428076326847076, -0.03347305208444595, -0.014449380338191986, -0.004248037002980709, -0.016534719616174698, -0.019037125632166862, -0.0007168352603912354, -0.0034508996177464724, 0.02144535630941391, 0.002591538242995739, 0.004251400474458933, 0.027983902022242546, 0.0014757136814296246, -0.005260435398668051, -0.031885504722595215, 0.0003493783588055521, 0.038639310747385025, 0.06097261980175972, 0.015835121273994446, -0.018270259723067284, 0.024055393412709236, -0.007702300325036049, -0.03740156441926956, -0.032504379749298096, -0.009814546443521976, 0.03393048048019409, -0.00277989124879241, -0.026799969375133514, 0.0030439221300184727, 0.021714432165026665, -0.0001197177916765213, 0.009686735458672047, -0.002031523734331131, -0.022414030507206917, -0.02339615672826767, -0.011032115668058395, -0.0029547906015068293, 0.02234676107764244, -0.00044523668475449085, 0.01898331195116043, 0.01887568086385727, 0.023840133100748062, 0.012384222820401192, 0.027768641710281372, 0.016507811844348907, 0.0010376243153586984, -0.019360017031431198, -0.009384024888277054, 0.012101693078875542, 0.011341553181409836, 0.018458612263202667, -0.026060009375214577, 0.025790933519601822, 0.009908723644912243, -0.014947171323001385, -0.011260829865932465, 0.00047718946007080376, 0.009639647789299488, 0.03662124276161194, -0.0020769303664565086, -0.0032490924932062626, -0.000905608874745667, -0.017072871327400208, -2.1363162886700593e-05, 0.028441332280635834, -0.017422670498490334, -0.027028683573007584, 0.00229219114407897, 0.021095557138323784, -0.018149174749851227, 0.007783023174852133, 0.011085931211709976, -0.005896127782762051, 0.009612740017473698, -0.001125914859585464, -0.011825889348983765, -0.0018986674258485436, -0.034065019339323044, 0.003440809203311801, -0.015256608836352825, 0.0034223103430122137, -0.0023846859112381935, -0.012767655774950981, -0.0019205298740416765, 0.007682119496166706, -0.017732108011841774, 0.012202596291899681, 0.014409019611775875, -0.04159914702177048, -0.040307581424713135, -0.0032894539181143045, 0.03791280835866928, 0.009370571002364159, -0.009511835873126984, -0.004237947054207325, 0.0013193131890147924, 0.009969265200197697, 0.024203386157751083, -0.020813027396798134, -0.004298489075154066, -0.02729775942862034, 0.0025461316108703613, -0.014799179509282112, -0.028441332280635834, -0.015902390703558922, 0.007056517992168665, 0.001628750585950911, -0.0021038379054516554, 0.0036897044628858566, 0.019225480034947395, 0.013924682512879372, 0.018270259723067284, 0.014301388524472713, 0.026006193831562996, 0.0008896325016394258, 0.024512821808457375, -0.03944654017686844, 0.02229294553399086, 0.002791663398966193, -0.026315631344914436, -0.006013848353177309, 0.02065158262848854, 0.012444764375686646, -0.00566404964774847, -0.006370374001562595, -0.01774556189775467, -0.010816854424774647, 0.01240440271794796, 0.01086394302546978, 0.008637338876724243, -0.0072515979409217834, 0.010621774941682816, -0.03145498409867287, -0.020786119624972343, 0.02714976668357849, 0.027391936630010605, -0.002371232258155942, -0.014610826037824154, -0.00816645659506321, 0.02994815818965435, 0.0110186617821455, -0.014018858782947063, 0.0014118080725893378, 0.01918511837720871, -0.019333109259605408, -0.024176478385925293, 0.0016733163502067327, -0.00538151990622282, 0.014449380338191986, -0.012007515877485275, -0.012471672147512436, -0.013191450387239456, 0.015929298475384712, -0.0035080781672149897, -0.007742661517113447, -0.027795549482107162, -0.007433224003762007, -0.012438037432730198, 0.006827803328633308, 0.019117848947644234, -0.010130710899829865, -0.00656209047883749, -0.025239327922463417, -0.01311072800308466, -0.0054857865907251835, 0.006535183172672987, 0.02704213745892048, -0.012054604478180408, -0.013447072356939316, -0.007540854625403881, -0.013790144585072994, -0.0031650064047425985, -0.02209113910794258, -0.016628896817564964, -0.0044162096455693245, 0.057905152440071106, 0.02172788605093956, 0.002556221792474389, 0.0039587803184986115, 0.02062467485666275, -0.00499472301453352, -0.01944074034690857, -0.0066058156080543995, -0.024728083983063698, -0.020301783457398415, 0.01797427609562874, -0.002472135704010725, 0.01836443692445755, 0.019884714856743813, -0.0027849364560097456, -0.004587745759636164, 0.017045963555574417, 0.028010809794068336, -0.016575081273913383, -0.007904106751084328, -0.044935692101716995, -0.03837023675441742, 0.009437840431928635, 0.027257397770881653, 0.0029262013267725706, -0.005465606227517128, -0.029705990105867386, 0.006138295866549015, 0.017637930810451508, -0.005384883377701044, 0.017476486042141914, 0.011913339607417583, 0.024795351549983025, -0.00898713804781437, -0.00036871820339001715, 0.018633512780070305, -0.014341750182211399, -0.013938136398792267, 0.004597836174070835, -0.04461279883980751, -0.016803795471787453, 0.015014439821243286, 0.02285800501704216, 0.014597372151911259, 0.005105717107653618, -0.005125897470861673, -0.0003735531645361334, 0.016601989045739174, -0.02293872833251953, -0.018606605008244514, 0.006699992343783379, -0.016480904072523117, -0.005001449957489967, -0.017032509669661522, -0.01356142945587635, 0.0037906079087406397, -0.006205564830452204, -0.016857611015439034, 0.008092460222542286, 0.01496062520891428, -0.014409019611775875, 0.005556419026106596, 0.028064625337719917, 0.015148978680372238, 0.04227183759212494, 0.01173844002187252, 0.02167407050728798, 0.01286855898797512, 0.0023594601079821587, -0.016803795471787453, -0.04006541520357132, 0.0059768506325781345, -0.011516452766954899, 0.001005671569146216, 0.03950035572052002, 0.009088041260838509, -0.005704410839825869, 0.003985688090324402, -0.010823581367731094, 0.007433224003762007, -0.03541040048003197, 0.0062728337943553925, 0.016480904072523117, 0.00038742736796848476, -0.023382702842354774, -0.01966945454478264, 0.02054395154118538, 0.025831295177340508, -0.0006087844376452267, 0.015646768733859062, -0.0019457557937130332, -0.01152990572154522, 0.007540854625403881, 0.04141079634428024, -0.013817052356898785, 0.01408612821251154, -0.008200090378522873, -0.0049375444650650024, -0.021310819312930107, 0.00548242311924696, -0.014826087281107903, -0.02632908523082733, -0.009027499705553055, 0.01802809163928032, -0.006844620686024427, 0.014234120026230812, 0.012787836603820324, 0.013695968315005302, -0.00991545058786869, -0.012680206447839737, -0.02381322532892227, 0.02624836191534996, 0.0015858665574342012, 0.019427286460995674, -0.006094571202993393, -0.01802809163928032, 0.0072515979409217834, -0.02737848274409771, -0.00891314260661602, 0.013339442200958729, 0.017301585525274277, 0.014301388524472713, 0.023046359419822693, 0.0025427681393921375, -0.0043085794895887375, -0.015337331220507622, 0.007897380739450455, -0.007554308511316776, 0.015700584277510643, -0.00014105468289926648, -0.01060832105576992, -0.002068521687760949, -0.02701522968709469, 0.003154915990307927, 0.0075341276824474335, 0.007702300325036049, 0.0038881481159478426, -0.017032509669661522, -0.008179910480976105, 0.031320445239543915, -0.0068715279921889305, -0.007836838252842426, 0.01853933557868004, -0.003425673581659794, -0.04418227821588516, 0.035894736647605896, 0.003901601769030094, -0.02336924895644188, 0.03113209269940853, 0.007621577475219965, -0.02673269994556904, -0.01641363464295864, 0.023046359419822693, 0.0037906079087406397, 0.021257003769278526, 0.0037065218202769756, 0.0012385904556140304, 0.0012781108962371945, 0.005734682083129883, 0.0032020043581724167, -0.03347305208444595, -0.004392665345221758, -0.004776098765432835, 0.0012831561034545302, 0.00374015630222857, -0.00844898633658886, 0.012438037432730198, 0.005778406746685505, 0.01839134469628334, -0.009572378359735012, -0.028010809794068336, -0.01689797267317772, -0.018768049776554108, -0.005855766125023365, -0.015942752361297607, -0.011886431835591793, 0.017664838582277298, -0.031939320266246796, -0.0054857865907251835, 0.020611220970749855, 0.0006142500205896795, 0.0036728873383253813, 0.01096484623849392, -0.023328889161348343, 0.008872780948877335, 0.018485520035028458, -0.006417462136596441, -0.046038903295993805, -0.011254102922976017, -0.00860370509326458, -0.018660420551896095, -0.007083425298333168, -0.008482620120048523, 0.03793971613049507, 0.013440345413982868, -0.020409414544701576, -0.01754375547170639, -0.0048904563300311565, -0.04307906702160835, -0.0042581274174153805, -0.0316433347761631, 0.038020435720682144, 0.03430718928575516, 0.02935619093477726, 0.018068453297019005, 0.026355993002653122, 0.012236231006681919, 0.0361638143658638, -0.012168961577117443, 0.001994525780901313, -0.006454460322856903, -0.026853783056139946, 0.013884320855140686, -0.02237366884946823, -0.030755385756492615, -0.0071103330701589584, -0.004503659438341856, -0.0259927399456501, -0.0038376962766051292, 0.011368460953235626, -0.03320397809147835, -0.023853586986660957, -0.017059417441487312, 0.0067638978362083435, 0.0316433347761631, 0.021028287708759308, 0.02209113910794258, -0.03880075737833977, -0.009854908101260662, 0.027055591344833374, -0.008751696906983852, -0.017960822209715843, 0.025037521496415138, 0.010372878983616829, -0.018162628635764122, 0.023315435275435448, -0.0067134457640349865, -0.02992125041782856, -0.006484731566160917, -0.024391738697886467, 0.008993864990770817, 0.0061181155033409595, -0.002135790651664138, 0.023840133100748062, -0.013924682512879372, 0.004722283687442541, -0.02026142179965973, -0.0031246449798345566, 0.014274481683969498, 0.0029800166375935078, 0.01493371743708849, -0.02478189952671528, 0.008697881363332272, -0.009491655975580215, -0.0037098852917551994, 0.020274875685572624, -0.017678292468190193, -0.013884320855140686, 0.012290045619010925, -0.028871852904558182, 0.0005347885307855904, 0.006427552551031113, -0.010049988515675068, -0.010063442401587963, -0.0033029078040271997, -0.005949942860752344, -0.013756509870290756, -0.00025856521097011864, 0.01726122386753559, -0.00885932706296444, 0.004597836174070835, -0.013817052356898785, 0.004745827987790108, -0.027983902022242546, 0.002793345134705305, 0.02283109724521637, -0.012041150592267513, 0.01467809546738863, 0.18060380220413208, 0.0008913142373785377, -0.0019978892523795366, 0.03339232876896858, 0.011085931211709976, 0.006884981878101826, 0.0017162002623081207, 0.023867040872573853, -0.010049988515675068, 0.010803400538861752, 0.01017107255756855, 0.002657125471159816, -0.020947566255927086, -0.0010115575278177857, 0.013231812044978142, -0.024230292066931725, -0.037589915096759796, -0.019925076514482498, 0.014839541167020798, 0.017086325213313103, 0.00892659556120634, 0.0008702926570549607, -0.00011351643479429185, -0.017759015783667564, 0.027486111968755722, 0.022333307191729546, -0.005886037368327379, -0.0002795867621898651, 0.010305610485374928, 0.022050777450203896, 0.0022013778798282146, 0.002418320393189788, 0.0029177928809076548, -0.012680206447839737, -0.021916238591074944, -0.007628304418176413, 0.009054407477378845, -0.012700386345386505, 0.00430185254663229, 0.005135987885296345, 0.004947634879499674, -0.020584313198924065, 0.0271228589117527, -0.04700757563114166, 0.013534522615373135, -0.01217568852007389, -0.005152805242687464, -0.0028421152383089066, 0.005267162341624498, 0.017920460551977158, 0.004029412753880024, -0.009639647789299488, 0.008267359808087349, 4.493358937907033e-05, -0.000984649988822639, 0.011973881162703037, 0.0015934343682602048, 0.019117848947644234, -0.01867387443780899, 0.0005923876306042075, -0.007386135868728161, -0.0012537259608507156, 0.01168462447822094, -0.012734021060168743, -0.029571451246738434, 0.033661406487226486, -0.0053445217199623585, 0.02005961537361145, 0.009720370173454285, 0.011267556808888912, -0.009572378359735012, -0.02003270760178566, -0.029679082334041595, 0.004177404567599297, -0.006437642965465784, -0.010393059812486172, 0.026154186576604843, 0.020221060141921043, 0.034683894366025925, 0.0059600332751870155, -0.0025158606003969908, 0.005260435398668051, -0.040361396968364716, -0.007601396646350622, 0.027849365025758743, -0.02879113145172596, 0.03056703321635723, -0.020436322316527367, 0.00901404581964016, -0.007668665610253811, -0.006881618406623602, 0.015727492049336433, -0.005041811149567366, -0.0169517882168293, -0.00047971203457564116, -0.0013167905854061246, 0.010937939397990704, 0.019037125632166862, -0.017220864072442055, -0.031266629695892334, -0.01870078220963478, 0.0457698255777359, 0.026598161086440086, 0.027055591344833374, 0.0031078276224434376, 0.012882012873888016, 0.001003148965537548, 0.022723468020558357, -0.000582717708311975, -0.01089085079729557, -0.00955219753086567, -0.04636179283261299, 0.012256410904228687, -0.017678292468190193, -0.0042917621321976185, 0.024943344295024872, 0.01748993992805481, -0.004288398660719395, -0.006790805142372847, 0.01330580748617649, 0.024768445640802383, 0.00020832367590628564, 0.0025410864036530256, -0.011825889348983765, -0.0005747295217588544, -0.02319435030221939, 0.0016413634875789285, 0.022898366674780846, -0.02093411237001419, -0.02941000647842884, 0.005569872912019491, -0.026947960257530212, 0.01949455589056015, -0.0018650329438969493, -0.0014387157279998064, -0.015512230806052685, -0.021485717967152596, -0.024795351549983025, 0.018781503662467003, -0.013063639402389526, 0.006373737473040819, 0.008179910480976105, 0.015673676505684853, 0.01354797650128603, -0.0013983543030917645, 0.014758817851543427, -0.02675960771739483, -0.00043094201828353107, -0.036917224526405334, -0.01689797267317772, 0.003639252856373787, 0.020665036514401436, -0.007984830066561699, -0.010103803128004074, 0.02681342326104641, -0.029033299535512924, -0.02011343091726303, -0.018741142004728317, 0.007513946853578091, 0.014516649767756462, -0.04297143593430519, -0.00037691660691052675, 0.04213729873299599, 0.010393059812486172, -0.016319459304213524, -0.0009434476960450411, -0.16994839906692505, 0.003094373969361186, 0.002717667492106557, -0.015027893707156181, -0.009767458774149418, 0.008435532450675964, -0.004644924309104681, -0.015310423448681831, -0.018660420551896095, -0.011926793493330479, 0.006387191358953714, 0.001390786492265761, -0.05136660486459732, -0.02398812398314476, 0.009390751831233501, -0.026705792173743248, 0.01196715421974659, 0.032369840890169144, 0.05486459285020828, 0.013527795672416687, 0.02814534865319729, -0.013063639402389526, -0.01723431795835495, -0.002314053475856781, 0.023046359419822693, 0.017099779099225998, -0.002226603915914893, 0.03280036151409149, 0.0005886037251912057, -0.02170097827911377, 0.019198572263121605, -0.013621971942484379, 0.034065019339323044, 0.00040361398714594543, -0.00018898384587373585, -0.0071103330701589584, -0.007291959132999182, -0.009794365614652634, -0.01633291319012642, 0.030351771041750908, 0.03737465664744377, 0.015377692878246307, 0.02209113910794258, 0.01774556189775467, 0.03290799260139465, 0.014852995052933693, 0.04219111427664757, -0.011576994322240353, 0.006787441670894623, -0.004392665345221758, 0.021230095997452736, -0.021485717967152596, 0.0020130246412009, 0.006847984157502651, 0.005004813428968191, 0.01284165121614933, 0.02771482616662979, 0.03554493933916092, 0.007971376180648804, -0.006219018716365099, 0.012794563546776772, -0.009061134420335293, -0.00860370509326458, -0.009027499705553055, -0.010130710899829865, -0.0216202549636364, 0.0058187684044241905, 0.02534695900976658, 0.00381751568056643, 0.019481102004647255, 0.0169517882168293, 0.010944666340947151, -0.0023594601079821587, 0.022440938279032707, -0.003948690369725227, 0.0053949737921357155, -0.021768247708678246, 0.007406316697597504, 0.023826679214835167, -0.0016337957931682467, 0.017032509669661522, 0.0018145812209695578, -0.0008602023008279502, -0.01615801267325878, -0.01380359847098589, -0.0019491191487759352, 0.010137437842786312, -0.01132809929549694, -0.0011511406628414989, -0.006188747938722372, 0.034737709909677505, -0.009673281572759151, -0.02427065372467041, 0.0087584238499403, -0.004729010630398989, 0.009875088930130005, 0.020557405427098274, -0.011704805307090282, -0.0002711781417019665, -0.008670973591506481, -0.00016533458256162703, 0.006155113223940134, -0.03113209269940853, 0.011940247379243374, 0.026033101603388786, 0.011671171523630619, 0.009505108930170536, -0.004883729387074709, 0.03156261518597603, -0.020194152370095253, -0.021687524393200874, 0.013776690699160099, 0.04905255138874054, -0.008623885922133923, -0.03680959716439247, 0.03323088586330414, -0.02005961537361145, -0.02277728170156479, 0.010251794941723347, -0.008590251207351685, 0.05935816466808319, -0.03837023675441742, -0.006498184986412525, 0.006414099130779505, -0.004759281408041716, -0.0007231417112052441, -0.11225850135087967, -0.02180860936641693, 0.023867040872573853, 0.020557405427098274, -0.01689797267317772, 0.010648682713508606, 0.0011519815307110548, 0.03401120379567146, 0.009814546443521976, 0.011227196082472801, -0.0025040884502232075, -0.021041741594672203, -0.016548173502087593, -0.008866054005920887, 0.0036291624419391155, -0.017274677753448486, -0.00016081494686659425, -0.017086325213313103, -0.0022467845119535923, 0.03113209269940853, 0.013050185516476631, 0.0007702300208620727, 0.00803864561021328, -0.001347061712294817, -0.01549877692013979, -0.010648682713508606, -0.024943344295024872, 0.024055393412709236, 0.031912412494421005, 0.0005137669504620135, 0.02209113910794258, -0.015041347593069077, 0.00486691202968359, -0.007991557009518147, 0.01862005889415741, -0.003477807156741619, -0.024284107610583305, -0.0037737907841801643, 0.008583524264395237, -0.01343361847102642, 0.01142900250852108, -0.004853458143770695, 0.0029631992802023888, -0.03939272463321686, -0.003844423219561577, -0.004974542185664177, -0.013817052356898785, 0.019938530400395393, 0.011603902094066143, -0.013440345413982868, -0.016507811844348907, -0.03169715031981468, -0.03608309105038643, -0.010850489139556885, 0.001469827606342733, 0.023920856416225433, 0.005297433584928513, 0.0031885504722595215, -0.014624279923737049, 0.017140140756964684, 0.0030691479332745075, -0.0028387517668306828, -0.009484929032623768, 0.02560258097946644, 0.00591967161744833, 0.013857413083314896, -0.007022883277386427, -0.0005608552601188421, -0.01954837143421173, -0.0029665627516806126, -0.022198768332600594, -0.015229701064527035, -0.02211804687976837, 0.006064299959689379, -0.026033101603388786, 0.006222382187843323, -0.017960822209715843, -0.01983090117573738, 0.00285725062713027, 0.005727955140173435, -0.010756312869489193, -0.011112838052213192, 0.0014765545492991805, -0.026678884401917458, -0.002912747673690319, 0.008691154420375824, 0.004708829801529646, -0.011812436394393444, 0.02167407050728798, -0.03680959716439247, 0.028468240052461624, 0.010783220641314983, 0.010393059812486172, 0.015687130391597748, -0.020611220970749855, 0.002754665445536375, -0.015202793292701244, -0.010621774941682816, 0.01555259246379137, 0.008092460222542286, -0.003464353270828724, 0.01312418095767498, -0.05238909646868706, -0.006363647058606148, -0.003477807156741619, 0.010567959398031235, 0.008327902294695377, -0.025441134348511696, 0.004197585396468639, -0.0060844807885587215, 0.004947634879499674, 0.00032688528881408274, -0.035329677164554596, 0.007897380739450455, 0.0011931838234886527, 0.020073069259524345, -0.026073463261127472, 0.0056775035336613655, 0.02632908523082733, -0.00341894687153399, 0.002191287698224187, -0.0022787372581660748, -0.026154186576604843, -0.0033533594105392694, 0.006057573016732931, 0.013911228626966476, -0.024311015382409096, -0.0005045174621045589, -0.007271778769791126, 0.009310029447078705, -0.012525487691164017, -0.02673269994556904, 0.014772271737456322, 0.012989643029868603, -0.019144756719470024, 0.02830679342150688, 0.0009922176832333207, -0.03718630224466324, 0.009780912660062313, 9.643641533330083e-05, -0.001183934393338859, 0.029140930622816086, -0.012074785307049751, -0.03761682286858559, 0.0242975614964962, -0.028683500364422798, -0.017637930810451508, -0.010789947584271431, -0.008697881363332272, -0.008839146234095097, 0.007016156334429979, 0.02311362698674202, 0.03990396857261658, 0.010749585926532745, -0.01004326157271862, -0.02871040813624859, 0.01726122386753559, -0.007682119496166706, 0.01408612821251154, 0.007056517992168665, 0.01518933940678835, 0.0032305936329066753, 0.03040558658540249, -0.011355007067322731, -0.00916876457631588, -0.020099977031350136, 0.0037838811986148357, -0.02822607196867466, -0.04625416174530983, -0.00044944099499844015, 0.015202793292701244, -0.03336542099714279, 0.002310690004378557, -0.02079957351088524, 0.029598359018564224, 0.02930237539112568, 0.007796476595103741, 0.009740551002323627, -0.008502800948917866, -0.0015312106115743518, -0.006003757938742638, 0.010514143854379654, 0.01740921661257744, -0.01308382023125887, -0.022252583876252174, 0.008213544264435768, 0.006652903743088245, 0.00888623483479023, -0.023315435275435448, 0.013137634843587875, 0.012135326862335205, -0.004722283687442541, -0.014462834224104881, 0.00919567234814167, -0.010460329242050648, 0.005882673896849155, 0.0034609900321811438, 0.012787836603820324, -0.008906415663659573, 0.003676250809803605, 0.010258521884679794, 0.022306399419903755, -0.007493766490370035, 0.008583524264395237, 0.010937939397990704, -0.016817249357700348, -0.019064033403992653, -0.011859524063766003, -0.012128599919378757, -0.035787105560302734, 0.023799771443009377, 0.025131696835160255, 0.004443117417395115, -0.025185512378811836, 0.013965044170618057, 0.000945129431784153, -0.030271049588918686, -0.005196529906243086, -0.011388640850782394, -0.023826679214835167, -0.029006391763687134, -0.010393059812486172, 0.006864801049232483, 0.02588511072099209, 0.01408612821251154, -0.01063522882759571, 0.038585495203733444, -0.008549889549612999, 0.01227659173309803, -0.03882766515016556, 0.004722283687442541, -0.022427484393119812, 0.005495877005159855, 0.007661938667297363, -0.022615836933255196, -0.014664641581475735, -0.022763827815651894, -0.005357975605875254, -0.00792428757995367, 0.015512230806052685, -0.013897774741053581, 0.09003282338380814, 0.025831295177340508, 0.0020584312733262777, 0.01411303598433733, -0.008354809135198593, 0.007668665610253811, 0.02079957351088524, 0.000683200778439641, 0.006585634779185057, -0.004322032909840345, 0.012316953390836716, 0.0012327043805271387, -0.005963396746665239, -0.0008219430455937982, -0.024902982637286186, 0.002556221792474389, -0.0017304950160905719, 0.01718050241470337, -0.01383050624281168, 0.012074785307049751, 0.019010217860341072, -0.007164148148149252, 0.0034475361462682486, -0.02144535630941391, -0.04192204028367996, -0.007238144055008888, 0.031185906380414963, 0.02604655548930168, -0.004503659438341856, -0.032504379749298096, 0.013104001060128212, 0.0024839076213538647, -0.0216202549636364, -0.02206423133611679, -0.014449380338191986, 0.014610826037824154, -0.008812238462269306, -0.020073069259524345, 0.005680867005139589, 0.015054801478981972, 0.01895640417933464, 0.0059768506325781345, -0.021741339936852455, -0.007816657423973083, 0.003985688090324402, -0.016198374330997467, -0.0007773773395456374, -0.021176280453801155, 0.015862029045820236], "e0807126-e648-46de-b5c2-910e4e173d82": [0.002651737304404378, -0.008943246677517891, 0.01948907971382141, -0.03180726617574692, -0.00808083824813366, 0.01845690608024597, 0.001737549901008606, -0.02000516653060913, -0.012929340824484825, -0.035419873893260956, 0.006013094447553158, 0.03218754008412361, 0.011089082807302475, 0.013744215480983257, -0.017275337129831314, 0.01088536437600851, 0.010410021059215069, -0.025098131969571114, -0.004763619974255562, -0.009269196540117264, -0.019095223397016525, -0.0021831844933331013, -0.008230231702327728, -0.005021663848310709, -0.015713496133685112, 0.017017293721437454, 0.00013379643496591598, -0.006546157877892256, -0.0021560220047831535, 0.01595795713365078, 0.0010058606276288629, 0.0009634192683734, -0.011598379351198673, 0.00635941606014967, -0.023495545610785484, 0.0015839121770113707, 0.004997896496206522, -0.014015840366482735, -0.003826514584943652, -0.017438312992453575, 0.017737099900841713, -0.0077073541469872, -0.009846399538218975, -0.012759575620293617, -0.013975096866488457, 0.01116377953439951, 0.007598704192787409, -0.015985120087862015, -0.02911818027496338, 0.0025753427762538195, 0.009011153131723404, -0.019339686259627342, -0.05877960845828056, 0.020344698801636696, -0.007102988660335541, -0.01787291280925274, 0.00035035356995649636, -0.001239288249053061, 0.00564640061929822, -0.008515438064932823, 0.014151652343571186, 0.012345347553491592, -0.013649147003889084, 0.004773805849254131, -0.017085200175642967, -0.027393361553549767, -0.005945187993347645, -0.004216975066810846, -0.0037246551364660263, -0.02576361410319805, 0.043351318687200546, 0.026877274736762047, 0.012175582349300385, 0.011713819578289986, -0.03550136089324951, -0.016025863587856293, -0.01271883212029934, -0.025043807923793793, -0.0030608719680458307, 0.011781726032495499, 0.020697809755802155, -0.026401931419968605, -0.017193850129842758, 0.0062575563788414, 0.02326466515660286, -0.015985120087862015, 0.03710394725203514, 0.015251733362674713, -0.011048339307308197, 0.010213092900812626, -0.01148293912410736, 0.008691993542015553, 0.029552780091762543, 0.0024174607824534178, -0.0006578413303941488, 0.012494741007685661, 0.019040899351239204, 0.024649951606988907, -0.012005816213786602, -0.020534835755825043, -0.0042984625324606895, -0.007055454421788454, -0.023970888927578926, -0.01272562239319086, -0.0322147011756897, -0.00847469363361597, 0.014518345706164837, -0.02295229583978653, 0.016501206904649734, 0.0009719075169414282, -0.02155342884361744, 0.034958112984895706, 0.003605819307267666, -0.0035548896994441748, 0.008101209998130798, -0.021988028660416603, 0.017058037221431732, -0.04041777178645134, -0.017085200175642967, 0.0007431484991684556, 0.013465800322592258, 0.002867339411750436, 0.01814453676342964, -0.04248211905360222, 0.036044612526893616, 0.016406139358878136, 0.0176691934466362, -0.003194986842572689, 0.015794983133673668, -0.02212384156882763, -0.007496844977140427, -0.008461113087832928, 0.01222990732640028, 0.029607104137539864, 0.0005890863249078393, -0.012209535576403141, -0.008848178200423717, 0.00025528488913550973, -0.021947285160422325, -0.03354566544294357, 0.03335552662611008, 0.023495545610785484, 0.001802909653633833, -0.009289568290114403, -0.010898945853114128, 0.0184025801718235, 0.0014795063761994243, 0.013397893868386745, 0.0010118024656549096, 0.006532576866447926, 0.024065958335995674, -0.021634915843605995, -0.025166038423776627, -0.022789321839809418, 0.01544187031686306, 0.009846399538218975, 0.00917412806302309, 0.006943409331142902, -0.02575003169476986, 0.0028333861846476793, 0.0015363778220489621, 0.011951491236686707, -0.006372997071594, -0.00035396107705309987, 0.00806046649813652, 0.03400742635130882, 0.010219883173704147, -0.010634111240506172, -0.0015703309327363968, -0.018796436488628387, -0.012481160461902618, 0.01580856367945671, -0.03832625970244408, 0.006583506241440773, 0.024962320923805237, -0.013404684141278267, 0.005595471244305372, 0.010097652673721313, -0.010314952582120895, -0.04161291942000389, 0.02761066146194935, -0.008325300179421902, 0.0013674611691385508, 0.036098938435316086, -0.023767171427607536, -0.007225220091640949, 0.008766690269112587, 0.017112363129854202, -0.007517216727137566, 0.0072184293530881405, -0.004108325112611055, 0.01756054349243641, -0.011985444463789463, -0.01481713354587555, -0.6340809464454651, -0.0017222710885107517, -0.0006676028715446591, -0.027243968099355698, -0.011523682624101639, 0.010783504694700241, 0.026904437690973282, 0.00404381426051259, -0.019244616851210594, 0.01174098253250122, 0.00015544153575319797, 0.008895712904632092, 0.007530797738581896, -0.013309615664184093, -0.01435537077486515, -0.01864704303443432, -0.008997571654617786, -0.013323197141289711, -0.02124105952680111, 0.014789970591664314, -0.033083900809288025, 0.022531278431415558, -0.005907839629799128, -0.008875340223312378, -0.0075783319771289825, -0.01891866885125637, 0.03512108698487282, -0.01407016534358263, -0.0038129333406686783, 0.024419071152806282, -0.028900880366563797, 0.0035107505973428488, -0.0018147932132706046, -0.014029421843588352, 0.04568729177117348, -0.010328533127903938, -0.021281803026795387, 0.011598379351198673, 0.019366849213838577, 0.048783816397190094, -0.005463053938001394, -0.005493611562997103, 0.027080994099378586, 0.012915759347379208, -0.015618426725268364, 0.004699109122157097, 0.023658521473407745, -0.008481484837830067, -0.02177072875201702, -0.018592718988656998, 0.018524812534451485, -0.02979724109172821, -0.019665636122226715, -0.0014455532655119896, -0.0009371056221425533, -6.56515021546511e-06, 0.016501206904649734, -0.021159572526812553, -0.00021263129019644111, 0.0027332245372235775, 0.0023648336064070463, 0.0017112363129854202, -0.03281227871775627, -0.03580015152692795, -0.042210496962070465, -0.007768469396978617, 0.008046885021030903, -0.03354566544294357, 0.01761486940085888, -0.014952945522964, 0.05014193803071976, -0.007361032534390688, 0.005819561425596476, -0.023291828110814095, 0.001309740822762251, 0.01569991372525692, 0.016881482675671577, -0.0012630553683266044, -0.010763132944703102, 0.007639447692781687, -0.008040094748139381, -0.011055129580199718, -0.036452051252126694, -0.002395391231402755, 0.04071655869483948, 0.021363291889429092, -0.02177072875201702, -0.002099999226629734, 0.0065495530143380165, 0.01153047289699316, 0.008488275110721588, 0.034903787076473236, -0.021390452980995178, -0.02773289382457733, -0.01142182294279337, 0.04087953269481659, -0.0056769587099552155, 0.01339110266417265, -0.015346801839768887, -0.019407592713832855, -0.018484069034457207, -0.022870808839797974, 0.011666285805404186, 0.00015342557162512094, 0.024785764515399933, 0.016053026542067528, 0.00797897856682539, -0.006250766105949879, 0.0426994189620018, -0.03093806654214859, 0.010267417877912521, -0.011055129580199718, -0.002373321680352092, -0.007863538339734077, 0.023291828110814095, -0.025301851332187653, -0.00994825828820467, -0.006427322048693895, 0.010742761194705963, -0.025301851332187653, 0.014531927183270454, -0.01261697243899107, -0.0018232815200462937, -0.004800968337804079, 0.013180593959987164, 0.02596733160316944, 0.01901373639702797, -0.014409695751965046, 0.017886493355035782, -0.006345834583044052, -0.005473239812999964, -0.028819391503930092, 0.016053026542067528, -0.015767820179462433, 0.01855197362601757, -0.016351813450455666, 0.029308317229151726, -0.0013818911975249648, 0.0024293444585055113, -0.0312911793589592, -0.012250279076397419, -0.002376717049628496, -0.005344218108803034, -0.010742761194705963, 0.0030320119112730026, -0.02746126800775528, -0.03933127224445343, -0.0013920771889388561, -0.005761841312050819, -0.004142278339713812, -0.007625866681337357, 0.00047025043750181794, -0.011007595807313919, 0.015604845248162746, -0.02560063824057579, 0.004213579930365086, 0.017288919538259506, -0.05052221566438675, -0.016962969675660133, -0.044437818229198456, -0.02705383114516735, 0.02378075197339058, -0.013119478709995747, -0.009669843129813671, -0.018470486626029015, 0.0050963605754077435, 0.002824898110702634, -0.004760224837809801, -0.01370347198098898, -0.025790775194764137, 0.016351813450455666, 0.002042279113084078, 0.014830715022981167, 0.016039444133639336, -0.0037993520963937044, 0.027271131053566933, -0.017940819263458252, -0.013350359164178371, 0.021933702751994133, -0.006332253571599722, 0.0053917523473501205, 0.014138071797788143, -0.01111624576151371, -0.019353266805410385, 0.03737557306885719, 0.016039444133639336, 0.008141953498125076, 0.009778493084013462, -0.035827312618494034, 0.029145341366529465, 0.013737425208091736, -0.011089082807302475, -0.00239029829390347, 0.004060790874063969, -0.030720766633749008, 0.022409046068787575, -0.029525617137551308, -0.0018691181903705, -0.00024934308021329343, 0.013717052526772022, 0.010613739490509033, 0.0077345166355371475, -0.01689506322145462, -0.0029742915648967028, -0.004132092464715242, -0.022218909114599228, 0.012195954099297523, -0.021227478981018066, 0.035718660801649094, 0.009255615063011646, 0.006325462833046913, 0.0009243731619790196, -0.0027569918893277645, -0.01455909013748169, 0.0035684709437191486, 0.056769583374261856, 0.019516242668032646, 0.015496195293962955, -0.004057395737618208, 0.026035238057374954, -0.0012613576836884022, -0.008332091383635998, 0.03748422488570213, -0.003874048823490739, -0.0038672583177685738, 0.017275337129831314, -0.006349229719489813, 0.0303676538169384, 0.017995143309235573, -0.009180918335914612, 0.005873886402696371, 0.026619231328368187, 0.023196758702397346, 0.017383987084031105, 0.040906697511672974, 0.02968859113752842, 0.027298294007778168, -0.005055616609752178, 0.02517961896955967, -0.007782050874084234, -0.004699109122157097, 0.02291155233979225, 0.030693603679537773, -0.0139886774122715, 0.029009530320763588, -0.0029725939966738224, 0.020507672801613808, -0.016188839450478554, -0.021227478981018066, 0.009588356129825115, 0.019258199259638786, 0.0014302743365988135, -0.026714300736784935, -0.006077605299651623, 0.028058843687176704, -0.016813576221466064, 0.009011153131723404, 0.00037772825453430414, 0.017479056492447853, 0.021268222481012344, 0.013594822026789188, -0.024065958335995674, 0.00636281119659543, -0.0137102622538805, 0.01090573612600565, -0.00453273905441165, -0.016093770042061806, -0.020901529118418694, -0.004553110804408789, -0.019570566713809967, -0.0017655612900853157, -0.009567984379827976, -0.00208641798235476, 0.006311881355941296, -0.0037552129942923784, 0.011700239032506943, 0.006906060967594385, 0.015333220362663269, 0.0030116401612758636, 0.02067064866423607, -0.023088108748197556, -0.007883910089731216, 0.0291725043207407, -0.00024361349642276764, 0.012087304145097733, -0.009364265017211437, -0.011435404419898987, -0.008379625156521797, 0.010213092900812626, -0.007972188293933868, -0.014871458522975445, -0.0032713813707232475, -0.005755050573498011, 0.009683424606919289, 0.007320288568735123, 0.018321093171834946, 0.04367727041244507, -0.03167145326733589, 0.0004216550732962787, 0.007680191658437252, -0.009527239948511124, 0.00784995686262846, -0.0031746148597449064, -0.03207888826727867, 0.045062556862831116, -0.035012438893318176, -0.022422628477215767, -0.03762003779411316, -0.010525461286306381, -0.014912202022969723, 0.023930145427584648, -0.011286010965704918, -0.026048818603157997, -0.009289568290114403, -0.017764262855052948, 0.014219558797776699, -0.008922874927520752, 0.004125301726162434, 0.03658786043524742, 0.002992965979501605, 0.0016187140718102455, -0.03756571188569069, 0.007897491566836834, 0.040553584694862366, 0.06671105325222015, 0.014260302297770977, -0.00178084010258317, 0.013655937276780605, -0.01954340562224388, -0.04326983168721199, -0.020222466439008713, -0.013934352435171604, 0.03042197786271572, 0.0009540821192786098, -0.030639277771115303, 0.0027298294007778168, 0.008508646860718727, -0.008868549950420856, 0.013628775253891945, 0.007048663683235645, -0.00020467353169806302, -0.021825052797794342, -0.004390135873109102, 0.008427159860730171, 0.011415032669901848, -0.011333544738590717, 0.008393206633627415, 0.0250302255153656, 0.015265313908457756, -0.0005657435394823551, 0.03726692497730255, 0.015387545339763165, -0.004352787509560585, -0.02911818027496338, -0.025369757786393166, 0.026673557236790657, -0.003948745783418417, 0.02103734202682972, -0.01455909013748169, 0.03243200108408928, -0.012195954099297523, -0.011095873080193996, -0.0031966844107955694, 0.005048826336860657, -0.0065495530143380165, 0.02149910293519497, 0.00034780707210302353, -0.0011391266016289592, 0.0019658845849335194, -0.005099755711853504, -0.00018451389041729271, 0.017085200175642967, -0.02037185989320278, -0.022938715294003487, 0.019244616851210594, 0.005690539721399546, -0.03169861435890198, 0.005201614927500486, 0.003969117533415556, -0.015550520271062851, 0.006335648708045483, -0.0017002015374600887, -0.03321971371769905, -0.000861984328366816, -0.03612609952688217, -4.4483866076916456e-05, 0.0033409851603209972, -0.005099755711853504, 0.0005805980181321502, -0.02145835943520069, -0.0020558603573590517, -0.0043833451345562935, -0.029091017320752144, 0.01129280123859644, -0.010090861469507217, -0.045986078679561615, -0.04259077087044716, -0.0031983822118490934, 0.02140403538942337, 0.017085200175642967, -0.009411799721419811, -0.011319964192807674, -0.007741306908428669, 0.015727076679468155, 0.0018996760481968522, -0.01978786662220955, -0.006882293615490198, -0.034795138984918594, 0.010274208150804043, -0.0014582857256755233, -0.023875821381807327, -0.011319964192807674, -0.004610830917954445, -0.001549959066323936, 0.0035820521879941225, 0.004960548132658005, 0.01969279907643795, 0.027841543778777122, 0.016093770042061806, 0.018361836671829224, 0.03330120071768761, 0.008624088019132614, 0.0271489005535841, -0.03704962506890297, 0.01912238635122776, -0.01385965570807457, -0.012657715938985348, -0.03207888826727867, 0.0004121057572774589, -0.01153047289699316, -0.018538393080234528, -0.014002258889377117, -0.016311069950461388, 0.0021118829026818275, 0.013268872164189816, 0.013445427641272545, 0.016039444133639336, 0.01075634267181158, 0.019149549305438995, -0.019258199259638786, -0.0033477756660431623, 0.03281227871775627, 0.02968859113752842, 0.0027926426846534014, -0.005962164606899023, -0.0011527077294886112, 0.028900880366563797, -0.004220370668917894, -0.017030876129865646, 0.031589966267347336, 0.02425609529018402, -0.026985924690961838, -0.010328533127903938, 0.008569763042032719, -0.0225448589771986, 0.021689241752028465, -0.02004591003060341, -0.003891025437042117, -0.015156663954257965, 0.008203069679439068, -0.007958606816828251, -0.012698459438979626, -0.02296587824821472, 0.0019692799542099237, -0.011727401055395603, 0.007890700362622738, 0.004712690599262714, 0.012304604053497314, -0.0030897322576493025, -0.021634915843605995, -0.0020728367380797863, -0.010593367740511894, 0.002650039503350854, 0.026388350874185562, 0.009079059585928917, -0.015713496133685112, -0.010539042763411999, -0.008746318519115448, -0.014382533729076385, -0.04058074578642845, -0.019040899351239204, -0.0062134177424013615, 0.06057233363389969, 0.01601228304207325, -0.0032798696774989367, -0.0015660867793485522, 0.010118024423718452, -0.0015194013249129057, -0.011584797874093056, -0.00626774225383997, -0.036560699343681335, -0.01948907971382141, 0.0156455896794796, 0.004563296679407358, 0.005160871427506208, 0.005547936540096998, -0.009275986813008785, 0.0009540821192786098, 0.0018589323153719306, 0.03487662598490715, -0.006332253571599722, -0.007741306908428669, -0.019991585984826088, -0.038679372519254684, 0.0010347208008170128, 0.0303676538169384, -0.007904281839728355, 0.011109454557299614, -0.020955853164196014, -0.003493774216622114, 0.013119478709995747, -0.004295067396014929, 0.02425609529018402, 0.014368952251970768, 0.0200594924390316, -0.0048994324170053005, -0.00760549446567893, 0.0050386399962008, 0.0017061433754861355, -0.0169358067214489, 0.00958156492561102, -0.04954436421394348, -0.02041260525584221, -0.0066819703206419945, 0.025587057694792747, 0.014382533729076385, -0.007469682488590479, 0.005228777416050434, 0.0037925613578408957, 0.02368568256497383, -0.026972344145178795, -0.012990456074476242, 0.007632656954228878, -0.006406950298696756, 0.011693447828292847, -0.020140979439020157, -0.01963847316801548, 0.021960865706205368, -0.010172349400818348, -0.011924329213798046, 0.013907190412282944, 0.00865804124623537, -0.015971539542078972, -0.025627801194787025, 0.022246072068810463, 0.00930314976722002, 0.035772986710071564, -0.0037348412442952394, 0.026347607374191284, 0.015536938793957233, -0.0048790606670081615, 0.005867095664143562, -0.027135318145155907, 0.006678575184196234, -0.012182372622191906, 0.015007270500063896, 0.04462795704603195, -0.00540193822234869, -0.004118510987609625, 0.012365719303488731, -0.014762808568775654, 0.008712366223335266, -0.039304111152887344, 0.02679578773677349, 0.011326754465699196, 0.001970977522432804, -0.03335552662611008, -0.017085200175642967, 0.012650925666093826, 0.007544379215687513, -0.004437670111656189, 0.013255290687084198, -0.0008785364916548133, 0.00288261822424829, -0.007917863316833973, 0.04259077087044716, -0.013635565526783466, 0.030557790771126747, -0.01424672082066536, -0.016514789313077927, -0.01726175658404827, -0.005181243177503347, -0.005293288268148899, -0.019760705530643463, 0.009853189811110497, 0.01715310662984848, -0.009764911606907845, -0.011673076078295708, -0.007557960227131844, 0.014980108477175236, -0.01612093299627304, -0.020847205072641373, -0.027814380824565887, 0.027895867824554443, 0.007354241795837879, 0.01334356889128685, -0.005367985460907221, -0.0032645906321704388, 0.03150847926735878, -0.028792230412364006, -0.014219558797776699, 0.005615842994302511, 0.001454890356399119, 0.010525461286306381, 0.011041548103094101, 0.00415925495326519, 0.005422310438007116, -0.0023716241121292114, 0.002529506105929613, -0.019081642851233482, -0.0008284556679427624, -0.00793144479393959, -0.008719156496226788, -0.035202573984861374, -0.027977354824543, -0.012705250643193722, 0.02258560247719288, 0.01906806230545044, 0.006369601935148239, -0.006226998753845692, -0.00027268583653494716, 0.027705730870366096, -0.012039769440889359, -0.023454802110791206, 0.020399022847414017, -0.0021169758401811123, -0.051690202206373215, 0.03297525271773338, -0.00502505898475647, -0.011136617511510849, 0.031209690496325493, -0.0072388011030852795, -0.014314627274870872, -0.0024242515210062265, 0.0156455896794796, -0.003826514584943652, 0.0011119641130790114, -0.011808888986706734, 0.014681320637464523, 0.009255615063011646, 0.00305747683160007, -0.0250302255153656, -0.012202744372189045, 0.0049673388712108135, -0.002896199468523264, 0.007490054238587618, 0.00806046649813652, 0.00020318808674346656, 0.009608727879822254, -0.008719156496226788, 0.02031753584742546, -0.014178815297782421, -0.04734420403838158, -0.020018748939037323, -0.02280290238559246, 0.004858688917011023, -0.011713819578289986, -0.007265963591635227, 0.017913656309247017, -0.031236853450536728, -0.0019234431674703956, 0.012447207234799862, 0.011754564009606838, 0.012297812849283218, 0.007048663683235645, -0.012691669166088104, 0.0006875502876937389, 0.014341790229082108, -0.005914630368351936, -0.017696356400847435, -0.0065291812643408775, -0.010769924148917198, -0.030612116679549217, -0.006909456104040146, -0.027339037507772446, 0.040499258786439896, -0.0009192802244797349, -0.019652055576443672, -0.00022918343893252313, -0.014287465251982212, -0.03843491151928902, -0.01064769271761179, -0.015373963862657547, 0.023536289110779762, 0.04973450303077698, 0.035365551710128784, 0.02627970091998577, 0.026361187919974327, -0.017288919538259506, 0.019244616851210594, -0.03161712735891342, 0.0032764743082225323, -0.012691669166088104, -0.01829393021762371, 0.0020236049313098192, -0.017058037221431732, -0.0338716134428978, -0.003941955044865608, -0.004933385644108057, -0.02263992838561535, 0.016922226175665855, 0.015917213633656502, -0.02073855511844158, -0.0038842346984893084, -0.016908643767237663, 0.007782050874084234, 0.016827156767249107, 0.02414744533598423, 0.01054583303630352, -0.03789165988564491, -0.003159336047247052, 0.027977354824543, -0.010063699446618557, -0.024174608290195465, 0.022395465523004532, 0.017967980355024338, -0.0021814866922795773, 0.020399022847414017, -0.021675659343600273, -0.03042197786271572, -0.0030676627065986395, -0.012732412666082382, 0.010505089536309242, -0.00479078246280551, 0.010151977650821209, 0.02223249152302742, 0.003982698544859886, -0.005850119516253471, -0.009506868198513985, -0.0029165714513510466, 0.002485367003828287, 0.005092964973300695, 0.01165949460119009, -0.03580015152692795, -0.004783992189913988, -0.003222149331122637, 0.006563134491443634, 0.01142182294279337, -0.023020202293992043, -0.004957152996212244, 0.004125301726162434, -0.023957308381795883, -0.011679867282509804, 0.013567659072577953, -0.00953403115272522, -0.012216325849294662, -0.015835726633667946, -0.012426835484802723, -0.006013094447553158, 0.00035990288597531617, 0.0014031119644641876, -0.019353266805410385, 0.002543087350204587, -0.007102988660335541, -0.007883910089731216, -0.04756150394678116, -0.00626774225383997, 0.022762158885598183, -0.025505568832159042, 0.005931606981903315, 0.19535256922245026, 0.004349392373114824, 0.024704275652766228, 0.03077509067952633, 0.006967176217585802, 0.01090573612600565, -0.01466774009168148, 0.015455451793968678, -0.015591263771057129, 0.016297489404678345, 0.007191266864538193, -0.006148906424641609, -0.013200965709984303, 0.0005521622952073812, 0.015767820179462433, -0.03471365198493004, -0.020236048847436905, -0.023699264973402023, -0.004773805849254131, 0.0021203712094575167, 0.015428288839757442, -0.007191266864538193, -0.004542924929410219, -0.014273883774876595, 0.030584953725337982, 0.023930145427584648, 0.007496844977140427, 0.01803588680922985, 0.026415511965751648, 0.031997401267290115, -0.008990781381726265, -0.003259497694671154, 0.0036295864265412092, -0.007014710921794176, -0.017451893538236618, 0.0007800725288689137, 0.018782855942845345, -0.011286010965704918, 0.015156663954257965, 0.0044071124866604805, -0.004807759076356888, -0.025872264057397842, 0.020915109664201736, -0.03245916590094566, -0.001210428075864911, -0.0033579617738723755, -0.0026551324408501387, -0.015428288839757442, 0.033708639442920685, 0.017628449946641922, -0.0064850421622395515, 0.009839608334004879, 0.0048790606670081615, 0.006760062649846077, -0.012039769440889359, 0.01469490211457014, -0.0054358914494514465, 0.015917213633656502, -0.002848665229976177, 0.016392556950449944, -0.004858688917011023, 0.0013173803454264998, 0.007693772669881582, -0.004994501359760761, -0.02538333833217621, 0.04128697142004967, 0.011041548103094101, 0.021471941843628883, 0.01238609105348587, -0.014518345706164837, -0.005734678823500872, -0.018877923488616943, -0.017071619629859924, 0.020331116393208504, 0.007422147784382105, -0.011516892351210117, 0.02409312129020691, 0.03522973880171776, 0.04652933031320572, 0.02731187455356121, 0.009703796356916428, -0.0070215011946856976, -0.031372666358947754, 0.01974712312221527, 0.002334275748580694, -0.01864704303443432, 0.030747927725315094, -0.01300403755158186, 0.0026839927304536104, -0.005439286585897207, -0.004570087417960167, 0.002492157742381096, 0.002711155219003558, -0.00979207456111908, 0.0035650755744427443, -0.002862246474251151, -0.016256744042038918, 0.013431847095489502, -0.005330637097358704, -0.023359734565019608, -0.02140403538942337, 0.03840774670243263, 0.03696813806891441, 0.0338716134428978, -0.0030303143430501223, 0.012202744372189045, 0.009058687835931778, 0.016962969675660133, 0.007211638614535332, -0.0065088095143437386, -0.007035082671791315, -0.043921731412410736, 0.008814224973320961, -0.019149549305438995, -0.0005173604004085064, 0.03392593935132027, 0.022449791431427002, -0.028411954641342163, 0.014708483591675758, 0.0009014548268169165, 0.027434105053544044, -0.015998700633645058, 0.0048552933149039745, 0.0009846399771049619, -0.010247046127915382, -0.018538393080234528, 0.0038706534542143345, 0.013119478709995747, -0.026755044236779213, -0.01860629953444004, 0.0045157624408602715, -0.03452351316809654, 0.02792303077876568, 0.00649183290079236, 0.006383182946592569, -0.02295229583978653, -0.015618426725268364, -0.025736451148986816, -0.0072388011030852795, 0.012949712574481964, 0.0067261094227433205, 0.009737749584019184, 0.01385965570807457, 0.006671784445643425, 0.0014871457824483514, 0.018850762397050858, -0.009031524881720543, 0.008922874927520752, -0.026347607374191284, -0.02118673548102379, 0.004250928293913603, 0.015577683225274086, -0.003093127626925707, -0.012929340824484825, 0.03963005915284157, -0.02149910293519497, -0.026157468557357788, -0.02538333833217621, 0.01844332367181778, 0.005690539721399546, -0.047181230038404465, 0.010797086171805859, 0.04658365622162819, 0.01360161229968071, -0.014762808568775654, 0.011510101146996021, -0.17231878638267517, -0.0019421173492446542, 0.00113063829485327, 0.00269417860545218, -0.010118024423718452, 0.01923103630542755, 0.013975096866488457, -0.010016164742410183, -0.009893933311104774, -0.01067485474050045, 0.008182696998119354, 0.004488599952310324, -0.04897395148873329, -0.010620529763400555, 0.01409732736647129, -0.01627032645046711, 0.012331766076385975, 0.018945829942822456, 0.04367727041244507, 0.011557635851204395, 0.02652416191995144, -0.03009602800011635, -0.018063049763441086, -0.02099659852683544, 0.007456101011484861, 0.031318340450525284, -0.00600969884544611, 0.013798540458083153, 0.0066582029685378075, -0.02399805188179016, 0.01980144903063774, 0.010226674377918243, 0.018945829942822456, -0.008277766406536102, -0.004267904907464981, -0.005792398937046528, -0.001426879083737731, -0.018837179988622665, -0.01248795073479414, 0.005357799585908651, 0.038896672427654266, 0.009126593358814716, 0.009051896631717682, 0.007041873410344124, 0.021567009389400482, 0.026157468557357788, 0.029145341366529465, -0.016813576221466064, 0.015088758431375027, -0.008556181564927101, -0.0004464832891244441, -0.02077929861843586, -0.0003352868661750108, -0.0005003838450647891, 0.007945025339722633, 0.0010525460820645094, 0.017913656309247017, 0.02938980422914028, 0.0036601442843675613, -0.004257719032466412, 0.0303676538169384, -0.02348196506500244, -0.0037620035000145435, 0.0009676633635535836, -0.012420044280588627, -0.01803588680922985, 0.011489729396998882, 0.030584953725337982, -0.006291509605944157, 0.021689241752028465, -0.009466124698519707, 0.012970084324479103, 0.007388195022940636, 0.0008653796394355595, 0.0021831844933331013, 0.0044919950887560844, -0.02569570764899254, 0.015401126816868782, 0.026184631511569023, 0.00208472041413188, 0.018877923488616943, 0.0188643429428339, 0.008535809814929962, -0.010837829671800137, 0.0013419963652268052, -0.002869036979973316, -0.00821665022522211, -0.00239029829390347, -0.00808083824813366, -0.006712527945637703, 0.024704275652766228, -0.014477602206170559, -0.025329014286398888, 0.006542762741446495, -0.00831850990653038, 0.0024938553106039762, 0.02269425243139267, 0.002638156060129404, 0.007537588477134705, 0.0037552129942923784, 0.0018317698268219829, 0.004295067396014929, -0.01954340562224388, 0.009242034517228603, 0.016609856858849525, 0.0051540806889534, 0.007320288568735123, -0.0018300721421837807, 0.029444130137562752, -0.03161712735891342, -0.018307512626051903, 0.0188643429428339, 0.03338268771767616, 0.0027603870257735252, -0.014803552068769932, 0.02140403538942337, 0.004614226520061493, -0.011279219761490822, 0.013323197141289711, -0.010410021059215069, 0.05538429692387581, -0.01818528026342392, -0.016650600358843803, 0.01210088562220335, 0.0019896517042070627, -0.02073855511844158, -0.11831976473331451, -0.025098131969571114, 0.018823599442839622, 0.015197408385574818, -0.011523682624101639, 0.013805330730974674, 0.0011476147919893265, 0.04533417895436287, 0.009106221608817577, 0.02451413869857788, -0.006196441128849983, -0.014450440183281898, -0.011917538940906525, -0.0242017712444067, 0.004587064031511545, -0.01153047289699316, 0.004726271610707045, -0.015319638885557652, -0.02482650801539421, 0.030014541000127792, 0.0022273233626037836, -0.0036907021421939135, 0.009588356129825115, 0.010070489719510078, -0.01648762635886669, 0.005530960392206907, -0.03775584697723389, 0.017166687175631523, 0.02938980422914028, 0.017193850129842758, 0.030286166816949844, -0.01658269390463829, -0.00025507266400381923, -0.010620529763400555, 0.013771377503871918, -0.014165233820676804, -0.02974291704595089, -0.029525617137551308, 0.01298366580158472, -0.01823960617184639, 0.02077929861843586, -0.010342114605009556, 0.012834272347390652, -0.01834825612604618, 0.013309615664184093, 0.007816003635525703, -0.011978654190897942, 0.029905891045928, -0.0038570722099393606, -0.017642030492424965, -0.034333374351263046, -0.014178815297782421, -0.034903787076473236, -0.022612765431404114, 0.020018748939037323, 0.035528525710105896, 0.004454646725207567, 0.01407016534358263, -0.0076462384313344955, 0.0008683505584485829, -9.183253132505342e-05, 0.003605819307267666, -0.005863700527697802, 0.024622788652777672, 0.002274857833981514, 0.010145186446607113, -0.014002258889377117, 0.0006956141442060471, -0.0164740439504385, 0.00014026874850969762, -0.026089562103152275, -0.009391427971422672, -0.0151838269084692, 0.0028384793549776077, -0.014531927183270454, 0.0125151127576828, -0.007313497830182314, -0.026700718328356743, 0.0050386399962008, 0.008583343587815762, -0.009079059585928917, -0.017329663038253784, 0.0019115596078336239, -0.014871458522975445, -0.012698459438979626, 0.010668064467608929, 0.010769924148917198, -0.0019421173492446542, 0.014681320637464523, -0.034903787076473236, 0.016854319721460342, 0.02399805188179016, 0.0033579617738723755, 0.017533380538225174, -0.006790620274841785, -0.0009820935083553195, -0.0005177847924642265, -0.0029522222466766834, 0.014450440183281898, 0.00684155011549592, -0.00015841244021430612, -0.0029250597581267357, -0.04240063205361366, 0.0038842346984893084, 0.020561998710036278, 0.011367497965693474, 0.0064884377643466, -0.017587706446647644, 0.002651737304404378, -0.0169358067214489, -0.007035082671791315, 0.007741306908428669, -0.027243968099355698, 0.021390452980995178, 0.012046560645103455, 0.019298942759633064, -0.028846554458141327, 0.008583343587815762, 0.025519151240587234, 0.004519157577306032, 0.00943217147141695, -0.008590134792029858, -0.01636539399623871, -0.00514389481395483, 0.007191266864538193, 0.019964423030614853, -0.03197024017572403, -0.0008004443370737135, -0.003138964297249913, 0.009418589994311333, -0.019407592713832855, -0.02528826892375946, -0.0013725541066378355, 0.013723843730986118, -0.0027196432929486036, 0.017940819263458252, -0.00416944082826376, -0.026035238057374954, 0.0037755847442895174, 0.0024887623731046915, 0.019190292805433273, 0.03077509067952633, -0.008352463133633137, -0.035772986710071564, 0.019298942759633064, -0.015835726633667946, -0.009751331061124802, -0.0015202501090243459, -0.005826352164149284, -0.000579324783757329, -0.0088345967233181, 0.00712336041033268, 0.040553584694862366, 0.0070215011946856976, -0.014423277229070663, -0.024907995015382767, -0.003622795920819044, 0.0005619238363578916, 0.013234918937087059, 0.03254065290093422, 0.0077345166355371475, -0.009187709540128708, 0.034224726259708405, 0.008970409631729126, -0.0031627314165234566, -0.005446077324450016, 0.02041260525584221, -0.030530627816915512, -0.020344698801636696, -0.021417615935206413, 0.005317055620253086, -0.018728530034422874, 0.0012656018370762467, -0.0164740439504385, 0.010314952582120895, 0.035012438893318176, 0.00441729836165905, 0.0043663689866662025, -0.02087436616420746, 0.009826027788221836, -0.002991268178448081, 0.014219558797776699, 0.011856422759592533, -0.02228681556880474, -0.020426185801625252, 0.014464020729064941, 0.007619075942784548, 0.01282748207449913, -0.015115920454263687, 0.03297525271773338, 0.0056328196078538895, -0.00032764743082225323, -0.010668064467608929, 0.006179464515298605, -0.025817938148975372, 0.0004528494901023805, -0.004444460850208998, 0.024758601561188698, -0.015577683225274086, 0.010280999355018139, 0.004804363939911127, 0.031372666358947754, -0.018837179988622665, 0.01580856367945671, -0.0007957757916301489, -0.02596733160316944, -0.018022306263446808, -0.0016687948955222964, -0.00922166183590889, -0.00940500944852829, 0.012684878893196583, 0.0028215027414262295, 0.015985120087862015, -0.01803588680922985, 0.017696356400847435, 0.004634598270058632, -0.022055935114622116, 0.005839933641254902, -0.011571217328310013, -0.03563717380166054, -0.029145341366529465, -0.0001803758495952934, 0.014885040000081062, 0.020453348755836487, 0.009941468015313148, -0.024745021015405655, 0.03218754008412361, -0.011625542305409908, 0.01484429556876421, -0.012915759347379208, 0.0200594924390316, -0.014898620545864105, -0.013886818662285805, 0.01178851630538702, 0.009717377834022045, -0.021322548389434814, -0.03775584697723389, -0.006953595206141472, -0.0048349215649068356, 0.018687786534428596, -0.004671946633607149, 0.08192203938961029, 0.023047365248203278, -0.014708483591675758, 0.0024870645720511675, -0.0072591728530824184, 0.016772832721471786, 0.014626995660364628, 0.01015876792371273, 0.0031983822118490934, -0.007041873410344124, 0.019869355484843254, 0.006142116151750088, -0.008454321883618832, -0.013723843730986118, -0.007442520000040531, 0.004685528110712767, -0.004176231566816568, 0.017506219446659088, -0.004614226520061493, 0.010348904877901077, 0.027651404961943626, 0.00428827665746212, 0.010274208150804043, -0.0151838269084692, -0.03612609952688217, -0.010226674377918243, 0.03506676107645035, 0.007245591841638088, -0.015822146087884903, -0.03455067425966263, 0.014409695751965046, 0.0020983016584068537, -0.03031332790851593, -0.021879378706216812, -0.010056908242404461, 0.020385442301630974, -0.01370347198098898, -0.021376872435212135, 0.026456257328391075, 0.029416967183351517, 0.007483263500034809, 0.006685365457087755, -0.02378075197339058, 0.0008127523469738662, -0.0022935320157557726, -0.025261107832193375, 0.0029675010591745377, -0.014260302297770977, 0.0029946635477244854], "8a4c4d19-0a4b-4938-81ef-11a4d2a82f3e": [-0.012506692670285702, 0.009198116138577461, 0.021128211170434952, -0.015458326786756516, -0.004125423729419708, 0.00027113850228488445, 0.0005319805932231247, -0.029214316979050636, -0.0049662962555885315, -0.0338820181787014, 0.005014346446841955, 0.03495284169912338, -0.0025209016166627407, -0.013186254538595676, -0.024711357429623604, -0.005213410127907991, 0.028884831815958023, -0.026001838967204094, 0.006019961088895798, -0.006582831032574177, -0.02543896995484829, 0.01135349553078413, -0.0017392333829775453, -0.010790626518428326, -0.014936642721295357, 0.012012465856969357, 0.008951002731919289, -0.010392499156296253, -0.0073173074051737785, 0.019961286336183548, 0.001824178732931614, -0.013241169042885303, -0.0033171565737575293, -0.01002182811498642, -0.02877500280737877, 0.008374404162168503, 0.0016688746400177479, -0.018959103152155876, 0.004877061117440462, -0.008134155534207821, 0.03377218917012215, 0.009513872675597668, -0.0005075266817584634, -0.010316992178559303, -0.008758803829550743, 0.02811603434383869, 0.009630565531551838, -3.2256688427878544e-05, -0.014607158489525318, -0.004616219084709883, 0.012630249373614788, -0.00506582809612155, -0.03904394432902336, 0.018204033374786377, 0.002239466877654195, -0.017023378983139992, 0.02074381150305271, 0.007543828338384628, 0.014085473492741585, -0.009541329927742481, 0.01363243255764246, 0.008374404162168503, -0.027594348415732384, 0.012891091406345367, -0.005282052792608738, -0.019165031611919403, -0.01347455382347107, -0.006689227186143398, 0.004667700733989477, -0.006874562241137028, 0.04824206233024597, 0.03462335839867592, 0.0025586551055312157, 0.019467057660222054, -0.003487047040835023, -0.018794359639286995, -0.0003749605384655297, -0.002707952866330743, 0.00024432496866211295, 0.02049669809639454, 0.012884227558970451, -0.023146305233240128, -0.038769375532865524, 0.005542894825339317, 0.027004022151231766, 0.001565910642966628, 0.01786082051694393, 0.015170027501881123, -0.020373141393065453, 0.004822147078812122, -0.011133839376270771, -0.0026564709842205048, 0.03091665357351303, 0.008271440863609314, 0.006654906086623669, 0.021073296666145325, 0.020633984357118607, 0.004629947245121002, -0.010982825420796871, -0.021691080182790756, -0.007018711883574724, -0.015307312831282616, -0.026756908744573593, -0.012616520747542381, -0.018588433042168617, -0.016309496015310287, -0.0076056066900491714, -0.010275806300342083, 0.007983141578733921, 0.008456775918602943, -0.03830260410904884, 0.03385455906391144, -0.026070483028888702, 0.004489229992032051, 0.011113246902823448, -0.0110171465203166, 0.028610261157155037, -0.03673755005002022, -0.01640559546649456, -0.013467689976096153, 0.005474252160638571, -0.002040402963757515, 0.02970854379236698, -0.019329773262143135, 0.019096387550234795, 0.004784393589943647, 0.015128842554986477, -0.009431501850485802, 0.004609354771673679, -0.018204033374786377, -0.006098900455981493, 0.003809667658060789, 0.01518375612795353, 0.012829313054680824, -0.011065197177231312, -0.0027371260803192854, -0.004434315953403711, -0.001353118452243507, -0.028390605002641678, -0.01898656040430069, 0.027306050062179565, 0.03226204961538315, 0.00983649305999279, -0.012403728440403938, -0.023571889847517014, 0.022652078419923782, -0.0012364259455353022, 0.024670172482728958, -0.0017778448527678847, 0.0015410276828333735, 0.027676720172166824, -0.03462335839867592, -0.0229403767734766, 0.010598426684737206, 0.015128842554986477, 0.0036037396639585495, 0.016501694917678833, 0.011223074980080128, -0.014140387997031212, -0.010577834211289883, -0.004200930707156658, 0.005594376940280199, -0.00501091405749321, 0.01522494200617075, -0.012637114152312279, 0.040279511362314224, 0.009266759268939495, -0.02188328094780445, -0.00019423727644607425, -0.002302961191162467, 0.010186570696532726, 0.03734160587191582, -0.03160307928919792, 0.016158482059836388, 0.008374404162168503, -0.004938839469105005, 0.012630249373614788, 0.0032691066153347492, 0.0038062355015426874, -0.034595899283885956, 0.023970017209649086, 0.001510138507001102, 0.00037324446020647883, 0.015897640958428383, -0.006507324054837227, -0.015458326786756516, 0.020112300291657448, -0.004094534553587437, -0.012753806076943874, -0.013309812173247337, 0.008848038502037525, 0.007331036031246185, -0.005927293561398983, -0.011106382124125957, -0.6321714520454407, -0.0022617755457758904, 0.0014114646473899484, -0.018176576122641563, 0.007434000261127949, -0.0028967203106731176, 0.023873917758464813, -0.009081424213945866, -0.0016783130122348666, 0.016048653051257133, 0.016872365027666092, 0.01563679799437523, -0.02300901897251606, -0.010776897892355919, -0.008024326525628567, -0.015444598160684109, -0.0023939127568155527, -0.02946143038570881, -0.013350997120141983, 0.010042421519756317, -0.026866737753152847, 0.018272675573825836, -0.010419955477118492, 0.006057714577764273, 0.0013368157669901848, -0.02537032775580883, 0.02869263105094433, -0.0011351780267432332, -0.005295781418681145, 0.00888236053287983, -0.01876690238714218, 0.02208920754492283, -0.008367540314793587, 0.01526612788438797, 0.043244875967502594, -0.011154431849718094, -0.018341319635510445, 0.031712908297777176, 0.02239123545587063, 0.06677558273077011, -0.031328510493040085, -0.0056424266658723354, 0.03031259775161743, 0.01051605585962534, -0.01195755135267973, -0.005872379522770643, 0.01451105810701847, -0.0033669224940240383, -0.022912919521331787, -0.017517607659101486, 0.004036188591271639, -0.03794566169381142, -0.0341840460896492, 0.008415590040385723, 0.016501694917678833, -0.008141019381582737, 0.018176576122641563, -0.014126659370958805, -0.0038302603643387556, 0.0020678602159023285, -0.0032313531264662743, 0.004983457271009684, -0.027662992477416992, -0.031548164784908295, -0.05420024320483208, 0.01481308601796627, 0.011065197177231312, -0.025493884459137917, -0.005481116473674774, -0.018245218321681023, 0.039840199053287506, 0.013529468327760696, 0.00488049304112792, -0.021526338532567024, 0.008683296851813793, 0.002224022289738059, 0.02793756313621998, -0.004097966942936182, -0.007296714931726456, 0.004870196804404259, 0.003270822810009122, -0.031108854338526726, -0.02081245370209217, -0.00888236053287983, 0.024423059076070786, 0.006836808752268553, -0.010982825420796871, -0.020002471283078194, -0.002076440490782261, -0.0036174682900309563, 0.011024011299014091, 0.04030697047710419, -0.010811218991875648, -0.03341524675488472, -0.009273623116314411, 0.02893974632024765, 0.0009086572099477053, 0.013755989260971546, -0.01339904684573412, -0.010605290532112122, -0.02619403973221779, -0.030092941597104073, -0.006929476745426655, 0.010612155310809612, 0.0031609944999217987, 0.014648343436419964, -0.011785944923758507, -0.015019014477729797, 0.02780027687549591, -0.025644898414611816, 0.009335401467978954, -0.004523551091551781, -0.024876099079847336, -0.019233673810958862, 0.011909501627087593, -0.019041473045945168, -0.009541329927742481, -0.004290166310966015, 0.0025020248722285032, -0.02103211171925068, 0.008189069107174873, -0.025315413251519203, 0.030175313353538513, -0.0005259743775241077, 0.004509822931140661, -0.0002171896630898118, 0.016886094585061073, 0.0004140010569244623, 0.012781263329088688, -0.00790076982229948, 0.00938345119357109, -0.027360964566469193, 0.011195617727935314, -0.003861149540171027, 0.014318859204649925, -0.018355047330260277, 0.027608077973127365, -0.00472947908565402, -0.018657075241208076, -0.042723190039396286, 0.0026084210257977247, 0.004087670240551233, 0.02074381150305271, -0.014689529314637184, -0.006473002955317497, -0.03130105137825012, -0.04351944476366043, 0.02239123545587063, -0.012019329704344273, -0.0017263628542423248, -0.02810230478644371, -0.006435249466449022, 0.00026255816919729114, 0.029653629288077354, 0.0015418857801705599, -0.0031747231259942055, 0.0031026483047753572, -0.045825839042663574, -0.004513254854828119, -0.03904394432902336, -0.006435249466449022, 0.015293584205210209, -0.009225573390722275, -0.004636811558157206, -0.02034568414092064, -0.010900454595685005, 0.009465822950005531, 0.004413723014295101, -0.03530978411436081, -0.0375063493847847, 0.018698260188102722, -0.013907003216445446, 0.01176535151898861, 0.03736906498670578, -0.01732540689408779, 0.022281408309936523, -0.027621805667877197, -0.02012602798640728, -0.007667385041713715, 0.00033270238782279193, 0.0036037396639585495, 0.011449595913290977, -0.009664886631071568, -0.010433684103190899, 0.01867080293595791, 0.008456775918602943, 0.011305445805191994, 0.005628698039799929, -0.018931645900011063, 0.015609340742230415, 0.0233934186398983, 0.008978459984064102, -0.0076056066900491714, 0.0017460976960137486, -0.024423059076070786, 0.024203401058912277, -0.026152852922677994, 0.014538515359163284, -0.008408726193010807, 0.01563679799437523, 0.016295768320560455, 0.020606527104973793, -0.013110748492181301, 0.0026221496518701315, 0.0027817438822239637, -0.0054296343587338924, 0.011367224156856537, -0.02589201182126999, 0.03289356455206871, 0.009774714708328247, 0.00987767893821001, 0.014634614810347557, 0.0009833060903474689, -0.018135391175746918, 0.015458326786756516, 0.03434878587722778, 0.01280185580253601, 0.023722903802990913, -0.008401861414313316, 0.0005302645731717348, 0.019769085571169853, -0.0307519119232893, 0.05170165002346039, -0.014360044151544571, -0.004526983480900526, 0.026756908744573593, -0.0025466426741331816, 0.03036751225590706, 0.009479551576077938, -0.00968547910451889, -0.005896404385566711, 0.02506829984486103, 0.01333040464669466, 0.012863634154200554, 0.03061462566256523, 0.021320410072803497, 0.026853008195757866, -0.014195302501320839, 0.02020839974284172, 0.013344133272767067, -0.007763484958559275, 0.010193435475230217, 0.014881729148328304, -0.017188122496008873, 0.02019467018544674, 0.016693895682692528, 0.01920621655881405, -0.002992819994688034, -0.013536332175135612, 0.010763169266283512, 0.008086105808615685, 0.0005234002601355314, -0.01655660942196846, -0.014442415907979012, 0.01860216073691845, -0.010625883936882019, 0.03602366894483566, 0.008662703447043896, 0.022226493805646896, 0.026029296219348907, 0.01180653739720583, -0.0116212023422122, 0.019412145018577576, -0.014689529314637184, -0.005402177572250366, -0.0025088891852647066, -0.0023201219737529755, -0.01906893029808998, -0.0033308849669992924, -0.020551612600684166, 0.006771598476916552, -0.00938345119357109, 0.0023698878940194845, -0.012472371570765972, -0.0028967203106731176, 0.0005238293088041246, 0.016213396564126015, 0.031108854338526726, -0.010694526135921478, -0.003644925309345126, -0.020922282710671425, -0.017105750739574432, 0.018547246232628822, 0.013158798217773438, -0.002151947468519211, -0.035804010927677155, -0.019343500956892967, -0.0046711331233382225, 0.004870196804404259, -0.004575033206492662, -0.005481116473674774, 0.0022995290346443653, -0.00994632113724947, -0.006328853312879801, 0.011744759045541286, 0.013852088712155819, 0.05529852584004402, -0.018272675573825836, -0.0028246454894542694, 0.009479551576077938, -0.00835381168872118, 0.0242995023727417, -0.018945373594760895, -0.0390164889395237, 0.038165319710969925, -0.026976564899086952, -0.03401930257678032, -0.03157562389969826, -0.023352233693003654, -0.027278592810034752, 0.0022720720153301954, -0.009108880534768105, -0.015760354697704315, -0.012280171737074852, -0.023873917758464813, 0.022212764248251915, 0.0014706689398735762, 0.00850482564419508, 0.03789074718952179, 0.007385950069874525, -0.0014046004507690668, -0.02057906985282898, 0.02158125303685665, 0.028610261157155037, 0.07050973922014236, 0.010735712014138699, -0.005113878287374973, 0.005203113425523043, -0.022995291277766228, -0.039593085646629333, -0.02550761215388775, -0.02825331874191761, 0.034211501479148865, -0.005292349029332399, -0.006452410016208887, 0.014140387997031212, 0.007358493283390999, -0.017119480296969414, 0.004015595652163029, -0.001516144722700119, -0.0020953172352164984, -0.046292610466480255, 0.0033772189635783434, 0.010557240806519985, -0.002745706355199218, -0.008443047292530537, 0.028720088303089142, 0.009266759268939495, 0.019041473045945168, 0.0033772189635783434, 0.04382147267460823, 0.01024834904819727, -0.002066144021227956, -0.018107933923602104, -0.017641164362430573, 0.02803366258740425, -0.005594376940280199, 0.01151137426495552, -0.017682349309325218, 0.024944743141531944, -0.012849905528128147, 0.009479551576077938, -0.016364410519599915, 0.006153814494609833, 0.003699839347973466, 0.04450790211558342, 0.007241800427436829, 0.003943520598113537, 0.00202324241399765, -0.012486100196838379, 0.016158482059836388, 0.01381776761263609, -0.03503521531820297, -0.01203305833041668, 0.016378138214349747, 0.009891407564282417, -0.02748452126979828, 0.026331324130296707, 0.000858462241012603, -0.006301396060734987, -0.02612539567053318, 0.003408108139410615, -0.023887645453214645, -0.01754506304860115, -0.03228950873017311, -9.237263839168008e-06, -0.0010914183221757412, -0.002627297770231962, -0.01685863733291626, -0.01983772963285446, -0.0021193420980125666, -0.007337900344282389, -0.028829917311668396, 0.008182205259799957, -0.0032776871230453253, -0.033689819276332855, -0.03294847533106804, -0.004763800650835037, 0.03187765181064606, 0.007111379411071539, -0.00677503040060401, 0.0009275339543819427, 0.007420271635055542, 0.010934775695204735, -0.006260210648179054, -0.02081245370209217, 0.003320588730275631, -0.030202770605683327, 0.006802487652748823, -0.015828996896743774, -0.019851457327604294, -0.0021399350371211767, -0.00971980020403862, -0.0015573303680866957, -0.006788759026676416, -0.002663335297256708, 0.015856454148888588, 0.008044919930398464, 0.009211844764649868, 0.02499965764582157, 0.030944110825657845, -0.01662525162100792, 0.028527889400720596, -0.030504798516631126, 0.012341950088739395, -0.01632322371006012, -0.021306682378053665, -0.020222127437591553, 0.008978459984064102, 0.028225861489772797, -0.016515424475073814, 0.0031489820685237646, -0.0031661426182836294, -0.004835875239223242, 0.010687662288546562, 0.019274858757853508, 0.0005191101226955652, -0.013570654205977917, 0.015856454148888588, -0.001716924482025206, 0.0101316561922431, 0.015664255246520042, 0.023736631497740746, 0.004516687244176865, -0.011298581957817078, -0.009150066412985325, 0.021100753918290138, -0.01024834904819727, -0.008909816853702068, 0.01975535787642002, 0.018780631944537163, -0.021828366443514824, -0.013961916789412498, 0.012794991955161095, -0.00013009928807150573, 0.0018533518305048347, -0.007413407322019339, -0.0332779623568058, -0.03412913158535957, 0.0018756607314571738, -0.004472069442272186, 0.00329484767280519, -0.025150669738650322, -0.004667700733989477, -0.02081245370209217, 0.0027628671377897263, 0.021238038316369057, -0.009417773224413395, 0.02127922512590885, -0.018204033374786377, -0.006826512515544891, 0.01641932502388954, -0.0005229712696745992, 0.02300901897251606, -0.0014440700178965926, -0.021526338532567024, -0.01990637183189392, -0.00994632113724947, -0.0071800220757722855, -0.03487047180533409, -0.028308233246207237, -0.0069672297686338425, 0.04961491376161575, 0.0008327212417498231, 0.018643345683813095, 0.0015959418378770351, 0.004317623097449541, 0.000810841447673738, -0.011133839376270771, 0.009445230476558208, -0.01617221161723137, -0.019714171066880226, 0.004626515321433544, -0.0035179362166672945, 0.012465506792068481, -0.0008957867394201458, -0.006088603753596544, 0.01716066524386406, 0.012190936133265495, 0.030971568077802658, -0.022995291277766228, 0.002236034721136093, -0.03196002170443535, -0.03530978411436081, -0.001718640560284257, 0.05310196056962013, 0.0026513226330280304, 0.004334784112870693, -0.03371727466583252, 0.0065382132306694984, 0.013460825197398663, 0.014250216074287891, 0.03476064279675484, 0.01808047667145729, 0.016199667006731033, 0.007612471003085375, -0.006170975044369698, 0.005512005649507046, 0.004094534553587437, -0.021457696333527565, 0.008408726193010807, -0.05755000561475754, -0.015444598160684109, 0.013948188163340092, 0.026468610391020775, 0.004842739552259445, -0.001824178732931614, 0.006843673065304756, -0.009465822950005531, 0.021691080182790756, -0.011223074980080128, -0.024560343474149704, 0.005422770045697689, 5.335894456948154e-05, -0.004952568095177412, -0.021402781829237938, -0.0163369532674551, 0.018176576122641563, -0.009397179819643497, -0.0024968767538666725, 0.015087656676769257, 0.00827830471098423, -0.015389684587717056, -0.010495462454855442, 0.02649606764316559, 0.018409961834549904, 0.03643552213907242, 0.006194999907165766, 0.017888277769088745, 0.004760368261486292, -0.007145700976252556, -0.009376587346196175, -0.0359962098300457, 0.016433052718639374, -0.007928227074444294, -0.0018687964184209704, 0.03525486961007118, -0.011792808771133423, -0.01109265349805355, 0.02361307479441166, -0.010852404870092869, 0.0036929750349372625, -0.025699811056256294, 0.019988741725683212, -0.0023424308747053146, -0.00862151850014925, -0.0485990047454834, -0.02111448161303997, -0.01655660942196846, 0.02491728588938713, -0.003392663551494479, 0.022830549627542496, 0.0014114646473899484, 0.00649359542876482, -0.0016045222291722894, 0.05694594979286194, -0.015760354697704315, 0.011181889101862907, -0.028994658961892128, -0.004732911475002766, -0.007011847570538521, -0.011422138661146164, -0.020633984357118607, -0.022761905565857887, -0.0033669224940240383, 0.01332353986799717, -0.019535701721906662, 0.004969728644937277, -0.003933224361389875, 0.002455691108480096, 0.0026564709842205048, -0.01853351853787899, -0.017352864146232605, 0.03061462566256523, 0.004506390541791916, -0.007763484958559275, 0.009431501850485802, 0.007221207953989506, 0.02436814457178116, -0.03385455906391144, -0.021251767873764038, 0.0022326025646179914, 0.0036311966832727194, 0.008971595205366611, 0.022267678752541542, 0.009232438169419765, 0.0017315110890194774, -0.0005178230931051075, 0.01595255360007286, -0.01657033897936344, 0.012884227558970451, 0.008120426908135414, -0.010893589816987514, -0.03204239532351494, -0.03217967972159386, 0.0023063933476805687, 0.0021176261361688375, 0.015046470798552036, 0.0034252686891704798, -0.006517620757222176, -0.0055257342755794525, 0.031712908297777176, -0.019700443372130394, 0.004619651008397341, 0.02550761215388775, 0.009815900586545467, -0.0362982377409935, 0.012506692670285702, 0.0023544433061033487, -0.016886094585061073, 0.0362982377409935, -0.005103581584990025, -0.0341840460896492, 0.007131972350180149, 0.0158839114010334, -0.00938345119357109, 0.01593882590532303, -0.004465205129235983, 0.007653656415641308, 0.011703573167324066, 0.003874878166243434, -0.00987081415951252, -0.01321371179074049, -0.008868631906807423, -0.022816820070147514, -0.0003961968468502164, 0.027306050062179565, -0.010619019158184528, 0.017339136451482773, -0.012177207507193089, 0.021251767873764038, 0.0006267933058552444, -0.039373431354761124, -0.03341524675488472, -0.029296686872839928, 0.00880685355514288, -0.01344023272395134, -0.0167899951338768, 0.008072377182543278, -0.016899822279810905, -0.013151933439075947, 0.00971980020403862, -0.009362858720123768, 0.001516144722700119, 0.012197800911962986, -0.013982510194182396, 0.0018533518305048347, 0.028829917311668396, -0.0056595872156322, -0.02307766303420067, -0.011161296628415585, -0.010852404870092869, -0.02612539567053318, -0.003596875350922346, -0.015128842554986477, 0.038247689604759216, 0.024121031165122986, -0.02035941369831562, -0.020757541060447693, -0.017792178317904472, -0.044096045196056366, -0.0003243365790694952, -0.012197800911962986, 0.009259894490242004, 0.03083428367972374, 0.005693908780813217, 0.015856454148888588, 0.03514504060149193, -0.014346315525472164, 0.018698260188102722, -0.017133207991719246, 0.005450227297842503, -0.025109484791755676, -0.020936010405421257, 0.018547246232628822, -0.007186886388808489, -0.0326739065349102, -0.012170343659818172, 0.024505428969860077, -0.010866133496165276, 0.007674249354749918, 0.02195192314684391, -0.025397785007953644, -0.013996238820254803, 0.005501709412783384, 0.008333219215273857, 0.02604302577674389, 0.012678299099206924, 0.01625458151102066, -0.038082946091890335, -0.0036140361335128546, 0.025933196768164635, -0.01314506959170103, -0.03152070939540863, 0.018629617989063263, 0.017064565792679787, 0.00296021462418139, 0.009472686797380447, -0.016831180080771446, -0.01533477008342743, 0.00015734184125903994, -0.016680166125297546, 0.005594376940280199, 0.0070976512506604195, 0.016735080629587173, 0.03783583268523216, 0.006936340592801571, -0.0025895442813634872, -0.016391867771744728, 0.003310292260721326, 0.012486100196838379, 0.0027336939238011837, 0.007420271635055542, -0.03563926741480827, 0.010550376959145069, -0.01608983986079693, -0.002265207702293992, 0.011291717179119587, -0.009369723498821259, -0.01722930744290352, 0.0034681702964007854, -0.03495284169912338, -0.005625266116112471, 0.012197800911962986, -0.006960365921258926, 0.002927609486505389, -0.01047486998140812, 0.002716533374041319, -0.025329140946269035, 0.0067098201252520084, 0.0015710588777437806, -0.019769085571169853, 0.010584698058664799, -0.011827129870653152, -0.009809035807847977, -0.02535659819841385, -0.004677997436374426, 0.011751623824238777, -0.009664886631071568, 0.019123844802379608, 0.20537884533405304, -0.004303894937038422, 0.005944454576820135, 0.006898587103933096, 0.01580153964459896, 0.015609340742230415, -0.001396878156810999, 0.013151933439075947, -0.008992188610136509, -0.000544422073289752, 0.021608710289001465, 0.002301245229318738, -0.029571257531642914, -0.0019957853946834803, -0.013055833987891674, -0.0013282354921102524, -0.027965020388364792, -0.01640559546649456, -0.013804038986563683, -0.0007108805584721267, 0.005632130429148674, -0.01180653739720583, -0.01518375612795353, -0.009314808994531631, 0.03363490477204323, 0.011078924871981144, 0.02193819358944893, 0.012554742395877838, 0.02255597896873951, 0.023434603586792946, -0.007166293915361166, -0.012341950088739395, 0.004396562464535236, -0.015842726454138756, -0.0038920387160032988, -0.009603108279407024, 0.022803092375397682, -0.008923545479774475, 0.01044054888188839, 0.013261761516332626, -0.014442415907979012, -0.004146016668528318, 0.02550761215388775, -0.03174036741256714, 0.01905520260334015, 0.013131340965628624, -0.012136022560298443, 0.0017692645778879523, 0.014936642721295357, 0.024285772815346718, 0.0021794044878333807, 0.008669568225741386, 0.011003418825566769, -0.0034510097466409206, -0.0064970278181135654, 0.005621833726763725, -0.014758171513676643, 0.014037423767149448, -0.006860834080725908, 0.008408726193010807, -0.01677626557648182, -0.0004431741836015135, 0.004465205129235983, -0.005041803233325481, -0.030971568077802658, 0.028500432148575783, 0.0027834598440676928, 0.030724454671144485, 0.01314506959170103, -0.0010759737342596054, 0.00601652916520834, -0.002187984762713313, -0.02483491413295269, 0.0044995262287557125, -0.01389327459037304, -0.008271440863609314, 0.010790626518428326, 0.010969096794724464, 0.040279511362314224, 0.012643977999687195, 0.008099833503365517, -0.004993753507733345, -0.03377218917012215, -0.0044617727398872375, -0.004502958618104458, -0.01348141860216856, 0.0378083772957325, -0.02049669809639454, -0.003392663551494479, 0.006102332379668951, -0.00895786751061678, 0.009397179819643497, -0.009829629212617874, -0.017448963597416878, -0.007948820479214191, 0.007200615014880896, 0.00674070930108428, 0.005693908780813217, -0.00995318591594696, -0.01945332996547222, -0.0033909473568201065, 0.03728669136762619, 0.02347579039633274, 0.025150669738650322, -0.0023716038558632135, 0.0009386884048581123, 0.0017529618926346302, 0.015060199424624443, 0.001983772963285446, -0.0012012465158477426, 0.009397179819643497, -0.04747326299548149, 0.006294531747698784, -0.0013256613165140152, 0.002060995902866125, 0.024505428969860077, 0.02421713061630726, -0.023105120286345482, -0.010934775695204735, 0.01625458151102066, 0.02346206083893776, -0.006229321472346783, 0.0039915707893669605, -0.002730261767283082, -0.014977828599512577, -0.029873285442590714, -0.022912919521331787, 0.009788443334400654, -0.042723190039396286, -0.012891091406345367, 0.006064578890800476, -0.020098570734262466, 0.013810902833938599, -0.0028915719594806433, -0.014263944700360298, -0.010035556741058826, -0.01617221161723137, -0.013193119317293167, -0.0012407160829752684, -0.0017220727168023586, 0.0014929778408259153, -0.00023145446903072298, 0.0075644212774932384, 0.016597794368863106, -0.0006306544528342783, 0.013186254538595676, -0.007715434767305851, 0.0101316561922431, -0.0387144610285759, -0.002582679968327284, 0.00423181988298893, 0.005934157874435186, 0.004475501365959644, -0.011264260858297348, 0.034376244992017746, -0.012891091406345367, -0.043409619480371475, -0.015568154864013195, 0.012307628989219666, 0.016117297112941742, -0.04785766080021858, 0.009582515805959702, 0.05005422607064247, 0.02801993303000927, -0.0031524142250418663, -0.011779080145061016, -0.17495641112327576, -0.0028126330580562353, 0.004767232574522495, -0.014675800688564777, -0.002465987578034401, 0.014579701237380505, 0.01602119766175747, -0.0008975027594715357, -0.017352864146232605, 0.004159745294600725, -0.003874878166243434, 0.0043485127389431, -0.02749824896454811, -0.01632322371006012, 0.004890789743512869, -0.014373772777616978, 0.007372221909463406, 0.03734160587191582, 0.057769663631916046, 0.01002869289368391, 0.011497645638883114, -0.02734723500907421, -0.003686110954731703, -0.0054296343587338924, 0.023407146334648132, 0.02173226699233055, -0.0070976512506604195, 0.0246015302836895, 0.01552696991711855, -0.04516686871647835, 0.010763169266283512, 0.001822462654672563, 0.006452410016208887, -0.0037925068754702806, -0.012280171737074852, -0.00207815645262599, 0.0005096717504784465, -0.016144754365086555, -0.021238038316369057, 0.0366002656519413, 0.04115813970565796, 0.004626515321433544, 0.006064578890800476, 0.004945703782141209, 0.021773451939225197, 0.02051042765378952, 0.012788127176463604, -0.017284221947193146, 0.003689542878419161, -0.00047106025158427656, 0.005082989111542702, -0.018725717440247536, -0.012486100196838379, -0.0029876718763262033, 0.013536332175135612, 0.0047123185358941555, 0.011724166572093964, 0.016680166125297546, -0.0030872037168592215, -0.0030116967391222715, 0.002064428059384227, -0.022597163915634155, -0.009966914542019367, 0.0016783130122348666, -0.014195302501320839, -0.019865185022354126, 0.005762551445513964, 0.022652078419923782, -0.0019666121806949377, 0.024436786770820618, -0.005024642683565617, 0.025782182812690735, -0.0117722162976861, 0.011971279978752136, 0.007619335316121578, -0.0032862673979252577, -0.01920621655881405, 0.02664707973599434, 0.027814006432890892, -0.010646476410329342, 0.014051152393221855, 0.00488049304112792, -0.005062396172434092, -0.0006255062180571258, -0.002278936328366399, -0.016240853816270828, -0.002278936328366399, 0.00590670108795166, -0.0065553742460906506, -0.006867697928100824, 0.027443336322903633, -0.034595899283885956, -0.017572520300745964, 0.0009721516980789602, 0.00888236053287983, 0.01039936300367117, 0.017833363264799118, 0.014140387997031212, 0.00838813278824091, -0.0062052966095507145, -0.009198116138577461, 0.007598742377012968, -0.019261131063103676, 0.026001838967204094, 0.021553795784711838, 0.0013024944346398115, 0.021965650841593742, -0.014195302501320839, 0.037176866084337234, -0.02066143974661827, -0.013261761516332626, 0.0025106053799390793, 0.02634505368769169, -0.002177688293159008, -0.03130105137825012, 0.026029296219348907, 0.005093285348266363, -0.010570969432592392, 0.012389999814331532, -0.010117928497493267, 0.06435935944318771, -0.021238038316369057, -0.021306682378053665, 0.00850482564419508, 0.0013694210210815072, -0.022597163915634155, -0.12037176638841629, -0.04684175178408623, 0.036792464554309845, 0.017888277769088745, -0.008147884160280228, 0.02361307479441166, 0.00038182479329407215, 0.021773451939225197, 0.0014560824492946267, 0.015430869534611702, -0.009019645862281322, -0.005889540072530508, -0.018780631944537163, -0.015321041457355022, 0.03174036741256714, -0.010680797509849072, 0.012843041680753231, -0.002920745173469186, -0.0023218379355967045, 0.04140525311231613, 0.0066720666363835335, -0.027759091928601265, -0.006702955812215805, 0.019110117107629776, -0.013392182998359203, -0.009266759268939495, -0.01990637183189392, -0.00035458224010653794, 0.018094204366207123, 0.015540698543190956, 0.011120110750198364, -0.017284221947193146, 0.014909185469150543, -0.03217967972159386, -0.004187202081084251, 0.0009549910319037735, -0.026605894789099693, 0.0015521821333095431, -0.002555222949013114, -0.028720088303089142, 0.008683296851813793, -0.0003584433870855719, 0.022116664797067642, -0.024628985673189163, -0.0011240235762670636, -0.004575033206492662, -0.0039950027130544186, 0.039757829159498215, 0.0073173074051737785, -0.009438365697860718, -0.026331324130296707, -0.01180653739720583, -0.05255281925201416, -0.01593882590532303, 0.023214947432279587, 0.011902636848390102, 0.016048653051257133, -0.0028744114097207785, -0.01753133535385132, 0.0011437583016231656, -0.010056150145828724, 0.01272634882479906, -0.0036792466416954994, 0.04049916937947273, 0.009767850860953331, 0.012891091406345367, -0.011634930968284607, -0.013021512888371944, -0.010811218991875648, 0.0024985927157104015, -0.03607858344912529, 0.0055257342755794525, -0.017188122496008873, 0.012616520747542381, -0.03275627642869949, 0.009630565531551838, -0.0014260512543842196, -0.019096387550234795, 0.017956919968128204, 0.02468390017747879, -0.022226493805646896, -0.021553795784711838, 0.01020716316998005, -0.002845238195732236, 0.0033034279476851225, 0.008786260150372982, 0.014360044151544571, -0.017352864146232605, 0.003648357465863228, -0.0393185168504715, 0.006291099824011326, 0.021375324577093124, -0.0049285427667200565, 0.013426504097878933, -0.013831496238708496, 0.026907922700047493, 0.0010639611864462495, -0.00968547910451889, 0.02423085831105709, 0.010124792344868183, -0.0035385291557759047, 0.007029008585959673, -0.042805563658475876, -0.008861767128109932, 0.019110117107629776, 0.012527285143733025, 0.00861465372145176, -0.023448333144187927, -0.005896404385566711, 0.013131340965628624, 0.012087972834706306, -0.00256380345672369, -0.04700649529695511, 0.016666438430547714, -0.008868631906807423, 0.006428385153412819, -0.034074217081069946, 0.005343831144273281, 0.016954736784100533, -0.009898271411657333, 0.01821776106953621, 0.0027834598440676928, -0.005916997324675322, -0.009410908445715904, 0.0002773592423181981, 0.012513556517660618, -0.015828996896743774, -0.007296714931726456, -0.0016139606013894081, 0.008738210424780846, -0.013495147228240967, -0.026303866878151894, 0.006867697928100824, 0.00041721866000443697, 0.005007482133805752, 0.02353070303797722, -0.014140387997031212, -0.03259153664112091, 0.0017452395986765623, 0.0120742442086339, 0.022844277322292328, 0.020222127437591553, -0.005148199386894703, -0.03355253115296364, 0.012582199648022652, -0.024642715230584145, -0.01503274217247963, 0.013268626295030117, -0.011140704154968262, -0.014428687281906605, -0.007955684326589108, 0.005868947599083185, 0.04019714146852493, 0.02073008380830288, -0.018135391175746918, -0.01139468140900135, -0.015321041457355022, 0.0002617001300677657, 0.0041494485922157764, 0.023050205782055855, 0.00979530718177557, 0.00440342677757144, 0.030724454671144485, -0.009301080368459225, 0.002236034721136093, 0.0005469961906783283, 0.011936958879232407, -0.009053966961801052, -0.03736906498670578, -0.0065553742460906506, 0.00329484767280519, -0.004774096887558699, -0.0011592028895393014, -0.01302837673574686, 0.033689819276332855, 0.018863003700971603, 0.019576886668801308, -0.004406858701258898, -0.012396864593029022, -0.013577518053352833, 0.002011229982599616, 0.020839910954236984, 0.0064215208403766155, -0.012307628989219666, -0.030202770605683327, 0.02817094698548317, 0.016748808324337006, 0.012506692670285702, -0.013392182998359203, 0.038989029824733734, 0.009980643168091774, -0.0012329937890172005, -0.021745994687080383, 0.011525102891027927, -0.01511511392891407, 0.018629617989063263, -0.006572534795850515, 0.014387501403689384, -0.015128842554986477, 0.01280185580253601, 0.010653341189026833, 0.024656442925333977, -0.004097966942936182, 0.007935091853141785, 0.00827830471098423, -0.02545269764959812, -0.012602792121469975, 0.000383540871553123, -0.009973778389394283, -0.007228072267025709, 0.009342266246676445, 0.0075300997123122215, 0.0011686412617564201, -0.031712908297777176, 0.014387501403689384, 0.0017126343445852399, -0.01707829348742962, -0.00020871659216936678, 0.0014106066664680839, -0.032316964119672775, -0.02498592808842659, 0.01571916975080967, 0.0077428920194506645, 0.025040842592716217, 0.016227124258875847, -0.02915940247476101, 0.053733475506305695, -0.00636317441239953, 0.002225738251581788, -0.020524155348539352, 0.019576886668801308, -0.016295768320560455, 0.0005547184846363962, -0.0008906385046429932, -0.004509822931140661, -0.00592042924836278, -0.023983744904398918, -0.012506692670285702, -0.007948820479214191, 0.00782526284456253, -0.006078307516872883, 0.07424390316009521, 0.03440370038151741, -0.002793756313621998, 0.008573467843234539, -0.01799810491502285, 0.006781894713640213, 0.01109265349805355, 0.01348141860216856, 0.013268626295030117, -0.024807456880807877, 0.03190510720014572, -0.006744141224771738, -0.007598742377012968, -0.015705440193414688, -0.014346315525472164, -0.006582831032574177, -0.007921363227069378, 0.022006837651133537, -0.015568154864013195, 0.0073928143829107285, 0.028665175661444664, 0.007893905974924564, 0.010818082839250565, -0.009747257456183434, -0.019467057660222054, -0.011854587122797966, 0.018574703484773636, 0.019165031611919403, -0.009150066412985325, -0.03316813334822655, 0.013467689976096153, 0.0068848589435219765, -0.023860188201069832, -0.02004365622997284, -0.02316003292798996, 0.01830013282597065, -0.01044054888188839, -0.01485427189618349, 0.007715434767305851, 0.030394969508051872, 0.010605290532112122, 0.03157562389969826, -0.01563679799437523, -0.020441783592104912, -0.009376587346196175, -0.017558792605996132, 0.0033017119858413935, -0.02664707973599434, -4.4805423385696486e-05], "5753c053-763a-41fc-881d-6bf57c1d7753": [0.0029439181089401245, -0.007251840550452471, 0.014681892469525337, -0.02209823578596115, -0.006237405352294445, 0.013667456805706024, -0.0038109859451651573, -0.03183132782578468, -0.009945577010512352, -0.022715121507644653, 0.015600367449223995, 0.041866011917591095, -0.007423197850584984, -0.0003146548115182668, -0.022687705233693123, 0.01380454283207655, 0.016765596345067024, -0.03353119269013405, 0.00013365868653636426, 0.0022619161754846573, -0.03331185504794121, 0.01231030747294426, -0.008828327059745789, -0.00535662891343236, -0.019397644326090813, 0.006302521098405123, -0.008094917982816696, -0.017122020944952965, 0.004397028125822544, 0.01824612356722355, 0.007553429342806339, -0.011384977959096432, -0.023907769471406937, 0.006292239762842655, -0.03331185504794121, 0.005630800500512123, -0.002225931268185377, -0.013242491520941257, 0.005843283608555794, -0.012042989954352379, 0.028733190149068832, 0.015024607069790363, -0.006720632780343294, -0.0032780650071799755, -0.008636407554149628, 0.032873183488845825, 0.008170315064489841, -0.014640766195952892, -0.006559556815773249, -0.003228371264412999, -0.013125968165695667, -0.0005543408333323896, -0.020562874153256416, 0.02176922932267189, 0.0014102704590186477, -0.012906630523502827, 0.01586083136498928, -0.008704950101673603, 0.015161693096160889, -0.008739221841096878, -4.4606444134842604e-05, -0.006737768650054932, -0.01876704953610897, 0.004691762384027243, -0.017313940450549126, -0.011001138016581535, -0.007334091700613499, 0.005839856341481209, -0.013948483392596245, -0.0040406049229204655, 0.041728924959897995, 0.02179664745926857, 0.010000411421060562, 0.00016664496797602624, -0.012042989954352379, -0.008273129351437092, -0.006251113954931498, -0.009033956564962864, -0.009863325394690037, 0.005346347577869892, 0.007382072042673826, -0.028979944065213203, -0.030460471287369728, 0.002272197511047125, 0.02150876633822918, 0.008238858543336391, 0.02521008439362049, 0.004390173591673374, -0.017807450145483017, 0.008937995880842209, -0.01417467463761568, 0.002126544015482068, 0.03761634975671768, 0.014558515511453152, -0.00038362611667253077, 0.0036704731173813343, 0.022728830575942993, 0.01858883909881115, -0.004726034123450518, -0.02144022285938263, -0.017108311876654625, -0.0062819579616189, -0.022509492933750153, -0.012769545428454876, -0.026155976578593254, -0.019370228052139282, 0.005096165928989649, 0.0019003523048013449, 0.01568261906504631, 0.02467544935643673, -0.03062497451901436, 0.025662466883659363, -0.005493714474141598, 0.006837155669927597, 0.005952951963990927, -0.0125639159232378, 0.02213936112821102, -0.029857292771339417, -0.011542626656591892, -0.017684072256088257, 0.012872359715402126, -0.0005924678407609463, 0.028705772012472153, -0.041783761233091354, 0.026498690247535706, 0.02168697863817215, 0.027060743421316147, -3.119237953796983e-05, -0.011535772122442722, -0.01895897090435028, -0.00396520784124732, -0.0010230030165985227, 0.02149505726993084, 0.0065047224052250385, -0.004503269679844379, -0.004270223435014486, -0.01584712229669094, 0.006436179857701063, -0.02489478699862957, -0.017642946913838387, 0.03364086151123047, 0.03057014010846615, 0.008252566680312157, -0.017122020944952965, -0.014969772659242153, 0.020741086453199387, -0.0018746487330645323, 0.022386115044355392, 0.0029644810128957033, 0.010391105897724628, 0.008101772516965866, -0.022660287097096443, -0.016532551497220993, 0.013009444810450077, -0.003992624580860138, -0.006939969956874847, 0.014791561290621758, 0.014846395701169968, -0.03942588344216347, -0.0019089201232418418, -0.02218048647046089, 0.005027622915804386, -0.012276035733520985, 0.0009544600616209209, 0.009225876070559025, 0.03342152386903763, 0.013537225313484669, -0.0040371776558458805, -0.009232730604708195, 0.003060441231355071, -0.001429119729436934, 0.020686252042651176, -0.027307497337460518, 0.01828724890947342, 0.01096686627715826, 0.0069673871621489525, 0.016381757333874702, 0.010384251363575459, -0.01524394378066063, -0.03103623166680336, 0.016135001555085182, 0.0013580064987763762, 0.0006742909317836165, 0.01565520092844963, -0.005880982149392366, -0.014311760663986206, 0.02172810398042202, 0.01096001174300909, -0.0032523612026125193, -0.007594555150717497, 0.010850343853235245, 0.009664551354944706, -0.02503187209367752, -0.0034220051020383835, -0.6281821131706238, -0.006467023864388466, 0.008197732269763947, -0.022961877286434174, -0.002657751552760601, 0.013406993821263313, 0.03484721854329109, -0.004277077969163656, 0.0026269073132425547, 0.014407720416784286, 0.001756412209942937, 0.012138950638473034, -0.02483995258808136, -0.019287975504994392, -0.01571003533899784, -0.01575116254389286, -0.0185202956199646, -0.02788325771689415, -0.02172810398042202, 0.0004853695281781256, -0.017341356724500656, 0.0220296923071146, -0.011193057522177696, 0.008403361774981022, 0.007539720740169287, -0.025895513594150543, 0.04279819503426552, -0.026868822053074837, 0.011289018206298351, -0.0005719049368053675, -0.013030008412897587, 0.032599009573459625, 0.005839856341481209, 0.01819128915667534, 0.03632774576544762, -0.003540241625159979, -0.016779305413365364, 0.02157730981707573, 0.019877444952726364, 0.05299738049507141, -0.013550934381783009, -0.007567137945443392, 0.01809532940387726, 0.004256514832377434, -0.013317888602614403, 0.002071709604933858, 0.014901230111718178, -0.0014034161577001214, -0.007149025797843933, -0.01890413649380207, 0.01580599695444107, -0.024195648729801178, -0.005284658633172512, -0.008437632583081722, -0.009945577010512352, -0.0017992515349760652, 0.035998739302158356, -0.008958558551967144, 0.0027999780140817165, -0.006837155669927597, 0.0008040940738283098, 0.0037218802608549595, -0.030021796002984047, -0.03150232508778572, -0.0498444065451622, 0.0010135783813893795, 0.00910249911248684, -0.029912127181887627, 0.019891154021024704, -0.019671816378831863, 0.035477813333272934, 0.004386746324598789, 0.002470972016453743, -0.0219611506909132, 0.008279983885586262, 0.007902998477220535, 0.04370296373963356, -0.010343126021325588, 0.0024726856499910355, 0.0003984056820627302, 0.014914938248693943, -0.017039768397808075, -0.0318039134144783, -0.016230961307883263, 0.03805502504110336, 0.017122020944952965, -0.004592375364154577, -0.019699234515428543, 0.008780347183346748, 0.0020734232384711504, 0.023688431829214096, 0.029994379729032516, -0.0221667792648077, -0.03309251740574837, -0.01418838370591402, 0.0318039134144783, -0.010459648445248604, 0.0002846673014573753, -0.03819211199879646, -0.016820430755615234, -0.016669636592268944, -0.007217568811029196, -0.0011223902693018317, -0.0024572634138166904, 0.021001549437642097, 0.02775987982749939, 0.0005761889042332768, -0.016998643055558205, 0.014695600606501102, -0.042030517011880875, -0.004746596794575453, -0.005668499041348696, -0.016683345660567284, -0.013187657110393047, 0.02767762914299965, -0.019630691036581993, 0.007238131947815418, -0.009918159805238247, 0.013626331463456154, -0.04397713392972946, 0.013544079847633839, -0.010603589005768299, 0.02186518907546997, 0.002594349207356572, 0.001287749968469143, 0.02186518907546997, 0.006737768650054932, -0.0030038931872695684, 0.021097509190440178, -0.01823241449892521, -0.0020100208930671215, -0.026964781805872917, 0.013119113631546497, 0.008341672830283642, 0.020905589684844017, -0.0023184639867395163, 0.027293788269162178, -0.006497868336737156, 0.01220063865184784, -0.038384031504392624, -0.00556225748732686, -0.0057336147874593735, 0.008307401090860367, -0.02507299743592739, -0.0051304372027516365, -0.05063950642943382, -0.010151205584406853, -0.003240366233512759, -0.01868479885160923, -0.012056699022650719, -0.018067913129925728, -0.008615843951702118, -0.009177896194159985, 0.017642946913838387, -0.020069366320967674, -0.011501501314342022, 0.003194099757820368, -0.042030517011880875, -0.010226602666079998, -0.04425130411982536, -0.03342152386903763, 0.014380303211510181, -0.007107900455594063, -0.0036704731173813343, -0.022468367591500282, -0.01584712229669094, 0.016793014481663704, -0.0011515209916979074, -0.014366595074534416, -0.03147490695118904, 0.020220160484313965, -0.006292239762842655, 0.007553429342806339, 0.023414259776473045, -0.026745446026325226, 0.02438756823539734, -0.02181035466492176, -0.02172810398042202, 0.019616981968283653, -0.006408762652426958, 0.0024778263177722692, 0.024017436429858208, -0.02832193300127983, -0.00398919777944684, 0.029117031022906303, 0.026142267510294914, 0.020329829305410385, 0.0057027703151106834, -0.02193373255431652, 0.02165956050157547, 0.02483995258808136, -0.004736315459012985, 0.017875991761684418, 0.0030672955326735973, -0.014585932716727257, 0.020083073526620865, -0.017656654119491577, -0.00790985208004713, -0.0014788133557885885, 0.010994283482432365, 0.02145393192768097, 0.02497703768312931, -0.014764144085347652, 0.0026680328883230686, 0.003072436200454831, -0.007375217508524656, 0.013475537300109863, -0.013468682765960693, 0.016217254102230072, 0.013893648982048035, 0.0014436851488426328, -0.0034631306771188974, -0.01856142096221447, -0.01588824763894081, 0.014654475264251232, 0.04002906382083893, 0.026197101920843124, 0.020795920863747597, 0.001285179634578526, 0.01838321052491665, 0.011234183795750141, -0.008698095567524433, 0.036218076944351196, -0.009342399425804615, -0.02153618447482586, 0.024181939661502838, -0.005298367235809565, 0.025402003899216652, -0.005983796436339617, -0.017807450145483017, 0.004503269679844379, 0.013996463268995285, 0.029144447296857834, 0.0065115769393742085, 0.03366827964782715, 0.03344894200563431, 0.03054272197186947, -0.014339177869260311, 0.0311184823513031, -0.003718453226611018, 0.0022859061136841774, 0.030405636876821518, 0.02197485789656639, -0.008684387430548668, 0.023181213065981865, 0.002618339378386736, 0.012646167539060116, 0.012289744801819324, -0.011803089641034603, 0.008190878666937351, 0.009561737067997456, -0.016861556097865105, -0.011282163672149181, -0.002981616882607341, 0.01231716200709343, -0.011563189327716827, 0.017437318339943886, 0.023126378655433655, 0.005613664630800486, 0.01876704953610897, 0.0017075754003599286, -0.02117975987493992, -0.0025635049678385258, -0.005020768381655216, 0.014298051595687866, -0.0012748981826007366, -0.01375656295567751, -0.017080893740057945, 0.004897391423583031, -0.01561407558619976, -0.0022533482406288385, -0.0035745128989219666, 0.008766639046370983, -0.007053066045045853, -0.001240626792423427, 0.008670678362250328, 0.016916390508413315, 0.029007362201809883, -0.006497868336737156, 0.007717932108789682, -0.020672542974352837, -0.02438756823539734, 0.032078083604574203, 0.009445213712751865, 0.00776591245085001, -0.023894060403108597, -0.020370954647660255, 0.011110806837677956, 0.013043716549873352, 0.020494330674409866, -0.009733093902468681, 0.0021899461280554533, -0.007450615055859089, 0.003344894153997302, 0.005788449198007584, 0.01576486974954605, 0.04543024301528931, -0.02481253445148468, -0.0007162734400480986, 0.001720427186228335, 0.006110600661486387, 0.003862393321469426, -0.0068268743343651295, -0.04331912100315094, 0.0316668264567852, -0.029171865433454514, -0.038987208157777786, -0.023633597418665886, -0.01401017140597105, -0.028952527791261673, -0.00941094197332859, -0.01531248725950718, -0.00696053309366107, -0.01808162033557892, -0.013605768792331219, 0.020878171548247337, -0.0003542811900842935, -0.0008285124786198139, 0.04288044571876526, 0.01916459947824478, 0.0009210454300045967, -0.032900597900152206, -0.0008850604062899947, 0.012906630523502827, 0.06602053344249725, 0.02157730981707573, -0.004054313525557518, 0.023236047476530075, -0.017629237845540047, -0.02840418368577957, -0.024154523387551308, 0.0018815030343830585, 0.03342152386903763, 0.01091203186661005, -0.019329102709889412, 0.003156401216983795, 0.019260559231042862, 0.007135317195206881, 0.013263054192066193, -0.0024675449822098017, 0.0034271457698196173, -0.017670363187789917, 0.01568261906504631, -0.002784556010738015, 0.01908234693109989, -0.01587453857064247, 0.010199185460805893, 0.010007265955209732, 0.014284343458712101, 0.0009904451435431838, 0.01572374440729618, 0.00952746532857418, -0.004801431205123663, -0.020713668316602707, -0.02172810398042202, 0.01846546120941639, 0.0009715958149172366, 0.016203545033931732, -0.020028239116072655, 0.027266371995210648, -0.002297901315614581, -0.010939449071884155, -0.013201365247368813, 0.005815866403281689, 0.02204340137541294, 0.022865915670990944, -0.0012320588575676084, 0.008005812764167786, 0.007573992013931274, -0.008369090035557747, -0.025676175951957703, 0.025772135704755783, -0.020316120237112045, -0.011480938643217087, 0.01897267811000347, 0.023496510460972786, -0.01820499822497368, 0.01909605599939823, 0.005308648571372032, -0.009897597134113312, 0.00781389232724905, -0.003660191548988223, -0.023112671449780464, -0.017355065792798996, -0.02519637532532215, -0.016902683302760124, -0.004935089964419603, -0.0029353504069149494, -0.010939449071884155, -0.019959697499871254, 0.001819814438931644, 0.004379892256110907, -0.02771875448524952, 0.013564642518758774, -0.0035608045291155577, -0.0323522575199604, -0.039371050894260406, 0.008787201717495918, 0.03687608987092972, 0.0074300519190728664, -0.016655927523970604, -0.003756151767447591, 0.006754904054105282, 0.020425789058208466, 0.013036862015724182, -0.012166366912424564, 0.003072436200454831, -0.035340726375579834, 0.010082663036882877, -0.017135728150606155, -0.020823337137699127, -0.014051297679543495, -0.005970087833702564, 0.00040611677104607224, -0.01096686627715826, 0.0065115769393742085, 0.010254019871354103, 0.01856142096221447, 0.00311698904260993, 0.0023407405242323875, 0.027252662926912308, -0.004064594861119986, 0.026841405779123306, -0.04098866134881973, 0.020274994894862175, -0.0070016589015722275, -0.011830506846308708, -0.027485709637403488, 0.01606645993888378, 0.001819814438931644, -0.012324015609920025, -0.01524394378066063, -0.012084116227924824, 0.007621971890330315, 0.0056205191649496555, 0.006631527096033096, 0.019699234515428543, 0.006151726469397545, 0.023386841639876366, -0.023496510460972786, -0.011844215914607048, 0.0040680221281945705, 0.03344894200563431, -0.005551976151764393, -0.013352159410715103, -0.00796468649059534, 0.030378220602869987, 0.005922107957303524, -0.016861556097865105, 0.02183777280151844, 0.017889700829982758, -0.01838321052491665, -0.025525381788611412, 0.012824378907680511, -0.013413848355412483, 0.012440538965165615, -0.022673996165394783, 0.0029387774411588907, -0.013674311339855194, -0.001831809408031404, -0.01235143281519413, -0.002585781505331397, -0.027060743421316147, 0.001306599355302751, -0.015065732412040234, 0.008794056251645088, 0.004969361238181591, 0.0009476058185100555, -0.0034100099001079798, -0.026005182415246964, -0.02797921746969223, 0.010014119558036327, 0.0009690254810266197, 0.02119346894323826, -0.011823653243482113, -0.011007992550730705, -0.019246850162744522, 0.006909125950187445, -0.014202091842889786, -0.019575856626033783, -0.0065115769393742085, -0.008177169598639011, 0.057356711477041245, -0.003312336280941963, 0.0012063552858307958, 0.00951375626027584, 0.008437632583081722, 0.01823241449892521, -0.014531098306179047, -0.012036135420203209, -0.009273855946958065, -0.017848575487732887, 0.012296599335968494, 0.0006271676975302398, 0.006268249358981848, 0.0054183173924684525, -0.012742128223180771, 0.004445008002221584, 0.016093876212835312, 0.04098866134881973, -0.014599640853703022, -0.014160966500639915, -0.03103623166680336, -0.03377794846892357, -0.00315982848405838, 0.025744719430804253, 0.00463007390499115, 0.020480623468756676, -0.026827696710824966, 0.004510123748332262, 0.0017144297016784549, 0.017793741077184677, 0.015106858685612679, 0.02192002348601818, 0.02153618447482586, -0.0011806517140939832, 0.004373038187623024, 0.002402429236099124, -0.02205711044371128, -0.008821473456919193, 0.004085157532244921, -0.047651033848524094, -0.02744458243250847, 0.001027286984026432, 0.02163214422762394, 0.017149437218904495, -0.0002602488675620407, 0.00941779650747776, 0.007251840550452471, 0.013722291216254234, -0.009952431544661522, -0.017985660582780838, -0.0026286207139492035, -0.0040371776558458805, -0.00016771594528108835, -0.01529877819120884, -0.02117975987493992, 0.012125241570174694, -0.011398687027394772, -0.013187657110393047, 0.012022427283227444, 0.016916390508413315, -0.028678355738520622, -0.0069673871621489525, 0.035340726375579834, 0.01379768829792738, 0.03495688736438751, -0.0015593513380736113, 0.03388761729001999, 0.016326922923326492, -0.013386431150138378, -0.00035513797774910927, -0.026443855836987495, -0.00041896855691447854, -0.016450298950076103, -0.004983069840818644, 0.04118058457970619, -0.008225149475038052, 0.016847848892211914, 0.01076123770326376, -0.016189835965633392, 0.0011515209916979074, -0.032160334289073944, 0.006127736531198025, 0.004537540953606367, 0.014202091842889786, -0.03525847569108009, -0.017944535240530968, -0.0035745128989219666, 0.029747625812888145, 0.0029027925338596106, 0.02187889814376831, 0.01065842341631651, -0.005493714474141598, -0.0011429530568420887, 0.04896705970168114, -0.004609511233866215, 0.026334187015891075, -0.007491740398108959, 0.011007992550730705, -0.013633185997605324, -0.005990650970488787, -0.005682207643985748, -0.028788024559617043, 0.013393285684287548, 0.02516895905137062, 0.0031906727235764265, 0.015161693096160889, 0.011618023738265038, 0.019301684573292732, -0.005329211708158255, -0.010480212047696114, -0.007320383097976446, 0.027280079200863838, -0.0061620078049600124, -0.0026491836179047823, -0.0008824900141917169, -0.010267728939652443, 0.013180802576243877, -0.03506655618548393, -0.005360055714845657, 0.008835181593894958, 0.006939969956874847, 0.011241038329899311, 0.021097509190440178, -0.007690514903515577, 0.0055931019596755505, -0.0009064800688065588, 0.005928962025791407, -0.008266275748610497, 0.007889289408922195, -0.012735273689031601, -0.008005812764167786, -0.020302411168813705, -0.015394738875329494, -0.020480623468756676, 0.022769955918192863, 0.007464323192834854, 0.00930812768638134, -0.014723017811775208, -0.002897651633247733, 0.03073464334011078, -0.029199281707406044, -0.020823337137699127, 0.03427145630121231, 0.01251593604683876, -0.04978957399725914, 0.03539556264877319, 0.00016193263581953943, -0.016902683302760124, 0.05036533251404762, 0.0010589880403131247, -0.017848575487732887, -0.02204340137541294, 0.007580846548080444, -0.0051270099356770515, 0.0025635049678385258, -0.008931141346693039, -0.011501501314342022, 0.0020254431292414665, 0.005284658633172512, 0.011090243235230446, -0.026251936331391335, -0.005843283608555794, -0.009280710481107235, 0.004259942099452019, 0.01880817487835884, -0.006271676626056433, 0.032736096531152725, -0.016847848892211914, 0.021111218258738518, -0.0034939751494675875, -0.03089914657175541, -0.023743266239762306, -0.026992199942469597, -0.0041811177507042885, -0.015175401233136654, 0.007594555150717497, 0.010226602666079998, -0.029884710907936096, -0.016669636592268944, -0.0016107584815472364, -0.00553141301497817, 0.0048151398077607155, 0.021275721490383148, -0.017135728150606155, 0.005072175525128841, 0.01588824763894081, -0.00786187220364809, -0.04000164568424225, -0.0030964261386543512, 0.009712531231343746, -0.01846546120941639, -0.005466297268867493, -0.016080167144536972, 0.04224985092878342, 0.01816387288272381, -0.02190631628036499, -0.008615843951702118, -0.011864778585731983, -0.035724565386772156, -0.0026371886488050222, -0.041975680738687515, 0.026827696710824966, 0.025703592225909233, 0.019658107310533524, 0.01827354170382023, 0.032708678394556046, 0.0029233552049845457, 0.03460046276450157, -0.019671816378831863, -0.005802157800644636, -0.03646482899785042, -0.020672542974352837, -0.0032146626617759466, -0.023743266239762306, -0.01879446767270565, -7.577204996778164e-06, 0.009630279615521431, -0.020357245579361916, -0.000666579871904105, 0.011823653243482113, -0.02477140910923481, -0.003920654766261578, -0.013091696426272392, 0.0017221407033503056, 0.03961780294775963, 0.023345716297626495, 0.01828724890947342, -0.0312555693089962, 0.007738495245575905, 0.016573676839470863, -0.020398370921611786, -0.017163146287202835, 0.006357355508953333, 0.016779305413365364, -0.0019363373285159469, 0.005990650970488787, -0.01092574093490839, -0.02762279473245144, -0.010788654908537865, -0.020713668316602707, 0.008444487117230892, -0.00915733352303505, 0.005466297268867493, 0.025347169488668442, -0.0018523723119869828, 0.008177169598639011, -0.010212894529104233, -0.0004236809036228806, 0.023674722760915756, -0.0005312075954861939, 0.005555403418838978, -0.04000164568424225, -0.013783980160951614, -0.014914938248693943, 0.004688335582613945, 0.01876704953610897, -0.016587385907769203, -0.016505133360624313, 0.011892195791006088, -0.026855114847421646, -0.010336271487176418, 0.0026114850770682096, -0.014407720416784286, -0.002482966985553503, 0.0020168751943856478, -0.017163146287202835, -0.009685114026069641, -0.0009673119056969881, 0.013146530836820602, -0.006501295603811741, 0.0030707225669175386, -0.01540844701230526, -0.007279257755726576, -0.0548069141805172, 0.007059920113533735, 0.006518431007862091, -0.020137907937169075, 0.009075081907212734, 0.19367486238479614, 0.002613198710605502, 0.01524394378066063, 0.026060016825795174, 0.0311184823513031, 0.013502954505383968, -3.0897859687684104e-05, 0.00537376431748271, -0.005007059779018164, 0.005178417079150677, 0.012180075980722904, 0.017670363187789917, -0.03144748881459236, -0.002978189615532756, 0.0030141747556626797, -0.025922929868102074, -0.036218076944351196, -0.014352886006236076, 0.008711804635822773, 0.0031358383130282164, 0.009650842286646366, -0.0125639159232378, -0.012392559088766575, 0.00019738217815756798, 0.026073724031448364, 0.023455385118722916, 0.004948798567056656, 0.013660603202879429, 0.01524394378066063, 0.036135826259851456, -0.0005963233415968716, -0.008040083572268486, 0.008403361774981022, -0.0025566506665199995, -0.019479896873235703, -0.02197485789656639, 0.017629237845540047, -0.004513551015406847, 0.0026611785870045424, 0.023688431829214096, -0.0011455235071480274, -0.025552798062562943, 0.033037684857845306, -0.039508137851953506, 0.011885341256856918, 0.009191605262458324, -0.0080880643799901, -0.0040680221281945705, 0.01413354929536581, 0.026128558441996574, 0.0014539666008204222, 0.0003990482946392149, 0.019589565694332123, -0.011371269822120667, -0.006415616720914841, 0.014654475264251232, -0.016614802181720734, 0.023085253313183784, 0.0008503605495207012, -0.01886300928890705, -0.004558103624731302, -0.002542942063882947, 0.012872359715402126, -0.008149752393364906, -0.026347896084189415, 0.026951074600219727, -0.00781389232724905, 0.03514880686998367, 0.014352886006236076, 0.009280710481107235, -0.010178622789680958, -0.007478031795471907, -0.03476496785879135, 0.008232004009187222, -0.016272088512778282, -0.03059755638241768, 0.026060016825795174, 0.0279518011957407, 0.04553991183638573, 0.014517389237880707, -0.003240366233512759, -0.001699864282272756, -0.022907042875885963, -0.0017452739411965013, 0.00534977437928319, -0.016559967771172523, 0.023825516924262047, -0.025744719430804253, 0.0032780650071799755, -0.011713984422385693, -0.0063950540497899055, 0.019891154021024704, 0.013640039600431919, -0.010535045526921749, -0.002438414143398404, -0.008773492649197578, 0.002530947094783187, 0.010384251363575459, -0.008869453333318233, -0.01401017140597105, -0.003763006068766117, 0.038466282188892365, 0.015970498323440552, 0.022386115044355392, -0.0008220865856856108, 0.014489972032606602, -0.005713052116334438, 0.014695600606501102, 0.012605042196810246, -0.011809944175183773, 0.0007261264836415648, -0.05184585973620415, 0.023098962381482124, -0.012399413622915745, -0.016573676839470863, 0.020905589684844017, 0.023674722760915756, -0.002822254551574588, 0.0054183173924684525, 0.005572538822889328, 0.012104678899049759, 0.0052709500305354595, -0.0015036602271720767, -0.008814618922770023, -0.010144351050257683, -0.03451821208000183, 0.008787201717495918, 0.025881804525852203, -0.026265645399689674, -0.017862282693386078, -0.0010615583742037416, -0.022989293560385704, 0.019685525447130203, 0.006748049985617399, 0.0034185778349637985, -0.0054491618648171425, -0.017080893740057945, -0.01401017140597105, 0.005726760718971491, -0.007793329190462828, 0.018122747540473938, -0.00470889825373888, 0.011830506846308708, 0.003615638706833124, 0.011453521437942982, 0.023852935060858727, -0.011432957835495472, -0.002443554811179638, -0.04076932743191719, -0.020741086453199387, -0.010370543226599693, 0.022769955918192863, -0.010158060118556023, -0.0009107639780268073, 0.02789696678519249, -0.02508670650422573, -0.019452478736639023, -0.012166366912424564, 0.011611170135438442, 0.012337724678218365, -0.0563148595392704, 0.006326511036604643, 0.035203639417886734, 0.016724471002817154, -0.0032986276783049107, -0.010603589005768299, -0.17448283731937408, -0.0019860309548676014, 0.004540968220680952, -0.016203545033931732, -0.014887521043419838, 0.0251278318464756, -0.000858928426168859, -0.010774945840239525, -0.020905589684844017, 0.001137812389060855, 0.003951499238610268, -0.00021933732205070555, -0.045320574194192886, -0.023852935060858727, 0.00041575561044737697, -0.01873963326215744, 0.01887671835720539, 0.0311184823513031, 0.04644468054175377, 0.017108311876654625, 0.025813261047005653, -0.014339177869260311, -0.019767776131629944, -0.013050571084022522, 0.017656654119491577, 0.020192742347717285, 0.01557295024394989, 0.01591566391289234, 0.00271429936401546, -0.031940996646881104, 0.01843804493546486, -0.010062099434435368, 0.009739948436617851, 0.006117455195635557, 0.0019466187804937363, -0.016834139823913574, 0.0029799032490700483, -0.014202091842889786, -0.012166366912424564, 0.02467544935643673, 0.0437852144241333, 0.00550742307677865, 0.020754793658852577, 0.008211441338062286, 0.03224258869886398, 0.028733190149068832, 0.04564958065748215, -0.022961877286434174, 0.007443760521709919, -0.004835702478885651, 0.00465406384319067, -0.029117031022906303, 0.004105720669031143, 0.004338766448199749, -0.009075081907212734, -0.005353201646357775, 0.007251840550452471, 0.027266371995210648, -0.0052743772976100445, -0.009177896194159985, 0.013036862015724182, -0.022303864359855652, -0.0012689006980508566, -0.00233045918866992, -0.013461828231811523, -0.033065102994441986, 0.014818978495895863, 0.03344894200563431, -0.007011940237134695, 0.02525120973587036, 0.0007192721823230386, -0.0001405129733029753, -0.0022293583024293184, 0.012947756797075272, -0.003372311359271407, 0.002806832315400243, -0.009630279615521431, 0.02433273382484913, 0.02145393192768097, -0.010185477323830128, 0.017026059329509735, 0.006069475319236517, 0.0019192015752196312, -0.016738180071115494, -0.014599640853703022, -0.01112451497465372, -0.0010984002146869898, -0.005387472920119762, 0.0018626537639647722, -0.010445940308272839, 0.02218048647046089, -0.01112451497465372, -0.02479882724583149, 0.012049844488501549, -0.011289018206298351, 0.012084116227924824, 0.016285795718431473, -0.006093465257436037, -0.0013134536566212773, 0.003243793500587344, -0.004071448929607868, 0.007519157603383064, -0.027184119448065758, 0.023386841639876366, 0.027142994105815887, 0.00476373266428709, 0.02804776094853878, -0.0028085459489375353, 0.029418619349598885, -0.014818978495895863, -0.030350802466273308, 0.010192331857979298, 0.02511412464082241, -0.0029370638076215982, -0.026745446026325226, 0.02175552025437355, -0.023044127970933914, -0.0110148461535573, 0.00916418805718422, -0.015586658380925655, 0.05225711688399315, -0.03424404188990593, -0.008937995880842209, 0.012879213318228722, 0.002099126810207963, -0.022386115044355392, -0.11032667756080627, -0.019479896873235703, 0.031940996646881104, 0.020124198868870735, 0.017067186534404755, 0.026293061673641205, -0.0019500459311529994, 0.0502556636929512, -0.0012980314204469323, 0.023441676050424576, -0.0018215279560536146, -0.008752929978072643, -0.020535457879304886, -0.009123061783611774, 0.026087433099746704, -0.013173948042094707, 0.019521022215485573, -0.017519569024443626, -0.008848890662193298, 0.029528288170695305, 0.0029439181089401245, -0.005826147738844156, 0.005462870467454195, 0.004979642573744059, 0.005665071774274111, -0.013235636986792088, -0.0380001924932003, 0.013681165874004364, 0.01894526183605194, 0.013077988289296627, 0.036026157438755035, -0.006809738464653492, 0.0024932485539466143, -0.0056205191649496555, 0.016697054728865623, -0.008019520901143551, -0.02818484604358673, 0.002985043916851282, 0.009918159805238247, -0.029117031022906303, 0.015010898001492023, 0.0006254541222006083, 0.02219419553875923, -0.03177649527788162, 0.00556911202147603, 0.00551427761092782, -0.010075808502733707, 0.04312720149755478, 0.004403882194310427, -0.020055657252669334, -0.027005909010767937, -0.026484983041882515, -0.0499814935028553, -0.029336366802453995, 0.008883161470293999, 0.013448120094835758, 0.021001549437642097, 0.006939969956874847, -0.014215800911188126, 0.003858966054394841, -0.013420702889561653, 0.010363688692450523, 0.0008739221375435591, 0.01824612356722355, -0.004229097627103329, 0.003581367200240493, -0.005599956028163433, -0.005606810562312603, -0.01897267811000347, -0.00011705844372045249, -0.020453205332159996, -0.0038726746570318937, -0.004510123748332262, 0.013550934381783009, -0.032407090067863464, -0.001390564371831715, -0.017039768397808075, -0.02446982078254223, 0.001891784486360848, 0.01108338963240385, -0.019397644326090813, -0.016971224918961525, -0.003173536853864789, -0.012111533433198929, -0.013359013944864273, 0.009136770851910114, -0.005579393357038498, -0.015134275890886784, 0.0247165746986866, -0.038384031504392624, 0.02758166939020157, 0.018054204061627388, -0.0037492974661290646, 0.020370954647660255, -0.012591333128511906, 0.001903779455460608, -0.009225876070559025, -0.01577857881784439, 0.023208631202578545, 0.008067500777542591, 0.014421429485082626, 0.010219748131930828, -0.05944041535258293, 0.007183297537267208, 0.01580599695444107, 0.013043716549873352, 0.014681892469525337, -0.024223066866397858, -0.005068748723715544, -0.005925534758716822, -0.0023081826511770487, -0.003917227499186993, -0.03942588344216347, 0.013112260028719902, -0.014901230111718178, 0.012186930514872074, -0.03983714058995247, 0.007478031795471907, 0.017272815108299255, -0.00803322996944189, -0.0013588633155450225, -0.0046369279734790325, -0.0308443121612072, -0.006614391226321459, -0.014997189864516258, 0.02751312591135502, -0.03479238227009773, -0.0062819579616189, -0.01864367350935936, 0.00916418805718422, -0.016806723549962044, -0.04044032096862793, 0.023085253313183784, 0.010788654908537865, -0.01569632813334465, 0.028815440833568573, -0.01418838370591402, -0.05187327787280083, -0.0063984813168644905, -0.005157854408025742, 0.015545533038675785, 0.0158334132283926, -0.002015161793678999, -0.03512138873338699, 0.019425062462687492, -0.0158334132283926, -0.017067186534404755, -0.015545533038675785, -0.01107653509825468, -0.006096892058849335, 0.007210714742541313, 0.009596007876098156, 0.05795988813042641, -0.0014342605136334896, -0.016230961307883263, -0.013256199657917023, -0.00700851297006011, -0.010514482855796814, 0.01601162552833557, 0.0218240637332201, 0.005226397421211004, 0.009020247496664524, 0.03076205961406231, -0.007532866206020117, 0.000162896525580436, -0.005421744659543037, 0.003303768578916788, -0.032571591436862946, -0.029363784939050674, 0.004798003938049078, -0.007738495245575905, -0.011268455535173416, -0.0011960738338530064, -0.006662371102720499, 0.0374518483877182, 0.02500445581972599, 0.012550207786262035, -0.00945892184972763, -0.010850343853235245, -0.0022087953984737396, -0.010329416953027248, 0.016258379444479942, 0.008362235501408577, -0.022290155291557312, -0.02112492546439171, 0.02197485789656639, 0.008355380967259407, 0.009897597134113312, -0.019863735884428024, 0.02446982078254223, -0.008232004009187222, -0.016450298950076103, -0.015216527506709099, 0.011474084109067917, -0.008999684825539589, 0.007992103695869446, -0.008410215377807617, 0.007347800303250551, -0.01242683082818985, 0.007484886329621077, 0.011912758462131023, 0.02463432401418686, -0.007320383097976446, 0.014531098306179047, 0.007265549153089523, -0.022468367591500282, -0.008581573143601418, -0.006275103893131018, -0.017341356724500656, -0.02205711044371128, 0.017615528777241707, 0.019562147557735443, 0.009801636449992657, -0.021070091053843498, -0.00016728755144868046, -0.0007479745545424521, -0.020933005958795547, -0.011302726343274117, -0.00020327257516328245, -0.03405211865901947, -0.0308443121612072, 0.00237843906506896, 0.007395780645310879, 0.03322960436344147, 0.017437318339943886, -0.028568686917424202, 0.03978230804204941, -0.020247576758265495, 0.0007843879866413772, -0.02464803121984005, 0.015202818438410759, -0.0065389941446483135, -0.003961780574172735, 0.004489561077207327, -0.010020974092185497, 0.0002883086272049695, -0.016340630128979683, 0.01897267811000347, -0.01904122158885002, 0.006528712809085846, 0.01557295024394989, 0.08943479508161545, 0.023976311087608337, -0.01610758528113365, 0.019959697499871254, -0.023359425365924835, 0.022468367591500282, 0.002426419174298644, -0.008293692953884602, 0.003475125879049301, 0.0061928522773087025, 0.019342809915542603, -0.006059193518012762, -0.010631006211042404, -0.014599640853703022, -0.01887671835720539, -0.014599640853703022, -0.011686567217111588, 0.023647306486964226, -0.017409900203347206, 0.010014119558036327, 0.019425062462687492, 0.008513029664754868, -0.014503681100904942, -0.017437318339943886, -0.03693092241883278, -0.003653337247669697, 0.039069462567567825, 0.019904863089323044, -0.00272629433311522, -0.03391503542661667, 0.02771875448524952, 0.011878486722707748, -0.016573676839470863, -0.023702139034867287, -0.004897391423583031, 0.01096001174300909, -0.004266796633601189, -0.021207178011536598, 0.0012697575148195028, 0.035834234207868576, 0.014736726880073547, 0.013071133755147457, -0.020357245579361916, -0.009664551354944706, 0.00548343313857913, 0.010733820497989655, -0.005771313328295946, -0.023222340270876884, 0.004187972284853458], "5f2c5dca-49fb-4725-ae3e-4c1951067bdd": [0.008881703950464725, -0.006962984800338745, 0.012129289098083973, -0.029940156266093254, -0.006901965476572514, 0.01718033477663994, -0.00784437544643879, -0.03159445896744728, -0.00943765789270401, -0.03878118097782135, 0.011288577690720558, 0.03240805119276047, 0.0043188133276999, -0.015770109370350838, -0.009891913272440434, 0.008183371275663376, 0.017126094549894333, -0.027079027146100998, 0.0007940989453345537, -0.0055493698455393314, -0.011708933860063553, 0.010366507805883884, -0.014129367657005787, -0.006210412830114365, -0.01547179277986288, 0.0261569581925869, -0.0017280338797718287, -0.011885211803019047, -0.004247623961418867, 0.01784476637840271, 0.00126784632448107, -0.004613740369677544, -0.026373915374279022, 0.005708698183298111, -0.026794269680976868, -0.006369741167873144, 0.002761125098913908, -0.007424019742757082, 0.018997354432940483, -0.002567897317931056, 0.0327334851026535, 0.0063866907730698586, 5.082296775071882e-05, -0.00897662341594696, -0.01662437990307808, 0.02625187672674656, 0.013993768952786922, 0.00411541573703289, -0.01757357083261013, 0.0038069288711994886, -0.010319048538804054, 0.0003769215545617044, -0.02541116625070572, 0.0029780827462673187, 0.004342542961239815, -0.03731671720743179, 0.022916153073310852, -0.012610663659870625, 0.012264887802302837, 0.0011949620675295591, 0.0026102717965841293, 0.014359884895384312, -0.02793329767882824, 0.0045798406936228275, -0.020421139895915985, -0.03419794887304306, -3.0244829758885317e-05, -0.005240883212536573, -0.01635318249464035, -0.0010839407332241535, 0.03796758875250816, 0.03381827473640442, 0.004651029594242573, 0.015444673597812653, -0.017505770549178123, -0.015132796950638294, -0.0028221444226801395, -0.015593831427395344, 0.0011898771626874804, 0.00394591735675931, 0.018631238490343094, -0.03422506898641586, -0.013912409543991089, -0.0026526462752372026, 0.022183921188116074, 0.018577000126242638, 0.01758713088929653, 2.987405241583474e-05, -0.015959948301315308, 0.016109105199575424, -0.0035831911955028772, -0.006220582872629166, 0.025370486080646515, 0.007451139390468597, 0.0029713029507547617, 0.008481688797473907, 0.022427998483181, 0.01905159465968609, -0.015132796950638294, -0.004098465666174889, -0.003623870899900794, -0.008386769331991673, -0.02869264967739582, -0.010868222452700138, -0.018739717081189156, -0.013756471686065197, 0.01061058510094881, 0.008705426007509232, 0.001917024259455502, 0.008495247922837734, -0.029560480266809464, 0.031160542741417885, -0.006169733125716448, -0.0045595006085932255, 0.020543178543448448, -0.010156330652534962, 0.03026559390127659, -0.03506578132510185, -0.007817255333065987, -0.014834479428827763, 0.005830736830830574, -0.0002779770002234727, 0.033872514963150024, -0.03338436037302017, 0.019390590488910675, 0.0033458939287811518, 0.01776340790092945, -0.010752963833510876, -0.0067900968715548515, -0.012888641096651554, -0.020529618486762047, 0.0026255266275256872, 0.022305959835648537, 0.02009570226073265, -0.004728998988866806, -0.0009508847142569721, -0.02204832248389721, 0.013153057545423508, -0.017790528014302254, -0.042849138379096985, 0.025912880897521973, 0.0317571759223938, 0.004495091270655394, -0.016502341255545616, -0.023987380787730217, 0.009620715864002705, 0.010868222452700138, 0.018943116068840027, -0.00118563964497298, 0.010617365129292011, 0.016136225312948227, -0.0224144384264946, -0.018468519672751427, 0.012773381546139717, 0.005498520564287901, -0.0040510063990950584, -0.010583465918898582, 0.006674837786704302, -0.022929713129997253, -0.01429208554327488, -0.005369701888412237, 0.013980208896100521, -0.007139262743294239, 0.0028967238031327724, 0.003422168083488941, 0.02915368415415287, 0.017261693254113197, -0.007864714600145817, -0.010746183805167675, -0.01476668007671833, 0.005939215887337923, 0.0196346677839756, -0.006423980463296175, 0.009424097836017609, 0.024041621014475822, -0.0003252246242482215, 0.013342895545065403, 0.013322556391358376, -0.012230987660586834, -0.038265906274318695, 0.028448572382330894, -0.0046815392561256886, 0.009274940006434917, 0.022495796903967857, -0.009824113920331001, -0.018427841365337372, 0.015078556723892689, 0.01088178250938654, -0.0043255933560431, -0.010691944509744644, 0.006888405419886112, 0.016936257481575012, -0.013017459772527218, -0.013410694897174835, -0.6400250792503357, 0.005993455182760954, -0.005881586577743292, -0.029018087312579155, 0.0060782041400671005, -0.0005258680903352797, 0.040327005088329315, 0.004169655032455921, -0.014929398894309998, 0.022129680961370468, 0.013864950276911259, 0.012617443688213825, -0.012258107773959637, -0.012590323574841022, -0.01164113450795412, -0.02185848355293274, -0.004728998988866806, -0.026943428441882133, -0.011953011155128479, 0.019024474546313286, -0.009519017301499844, 0.019132953137159348, -0.016136225312948227, -0.0005898536182940006, -0.008983402512967587, -0.018644798547029495, 0.03894389793276787, -0.01998722366988659, 0.0007991838501766324, 0.013302216306328773, -0.014224286191165447, 0.019485509023070335, 0.002227206015959382, 0.00016833287372719496, 0.0439068041741848, -0.008325750008225441, -0.011478415690362453, 0.013614092953503132, 0.02588576078414917, 0.05204271897673607, -0.018997354432940483, -0.015865027904510498, 0.015132796950638294, 0.011953011155128479, -0.006851116195321083, 0.008332530036568642, 0.02298395149409771, -0.0027797699440270662, -0.016868457198143005, -0.030401190742850304, 0.007627417799085379, -0.01878039725124836, -0.0051629142835736275, 0.012712362222373486, 0.00047798483865335584, -0.01476668007671833, 0.023797543719410896, -0.035364098846912384, 0.0036035310477018356, 0.002210256177932024, 0.0038204886950552464, 0.023756863549351692, -0.020692337304353714, -0.0392422154545784, -0.03720823675394058, -0.004044226370751858, 0.0032526699360460043, -0.03121478296816349, 0.02785193920135498, -0.02253647707402706, 0.034903064370155334, -0.00934273935854435, -0.0053730919025838375, -0.02775702066719532, -0.000763589225243777, 0.002979777753353119, 0.024055179208517075, -0.008142692036926746, -0.006729077082127333, 0.020299101248383522, 0.011776733212172985, -0.009166461415588856, -0.023946700617671013, -0.014400564134120941, 0.025858640670776367, 0.014942958950996399, -0.016231143847107887, -0.00901052262634039, 0.011397057212889194, 0.016204025596380234, 0.008434228599071503, 0.03709976002573967, -0.012664902955293655, -0.02147880755364895, -0.012908980250358582, 0.025302685797214508, -0.014820920303463936, 0.001242421567440033, -0.025845080614089966, -0.026780711486935616, -0.020041463896632195, -0.021099131554365158, -0.008657966740429401, -0.001949228928424418, 0.024163659662008286, 0.01205470971763134, -0.008400329388678074, -0.011776733212172985, 0.03216397389769554, -0.022563595324754715, -0.0029848627746105194, -0.013003899715840816, -0.012298787012696266, -0.014102247543632984, 0.020597416907548904, -0.024502655491232872, 0.00527817290276289, -0.011125859804451466, 0.01898379437625408, -0.034170832484960556, -0.0049764662981033325, -0.010115650482475758, 0.004081516060978174, 0.005105284973978996, -0.00011186879419256002, 0.01125467848032713, 0.009119001217186451, -3.2575429941061884e-05, 0.008929163217544556, 0.0018932945095002651, 0.004098465666174889, -0.013776810839772224, 0.015485352836549282, -0.00030107112252153456, 0.02934352308511734, -0.003918797709047794, 0.03102494403719902, -0.00784437544643879, 0.0006195158348418772, -0.04409664496779442, -0.012312347069382668, 0.004240844398736954, -0.0017576960381120443, -0.023946700617671013, -0.0070646838285028934, -0.03408947214484215, -0.029289282858371735, 0.019390590488910675, -0.022495796903967857, -0.000560615211725235, -0.014888718724250793, 0.0016687094466760755, -0.021194051951169968, 0.024624694138765335, -0.009159681387245655, 0.000958512129727751, 0.005834126845002174, -0.05158168449997902, -0.009457997977733612, -0.03916085511445999, -0.018726157024502754, 0.023675505071878433, -0.0066917878575623035, 0.013003899715840816, -0.027160387486219406, 0.002250935649499297, 0.0032441949006170034, -0.0034492877312004566, -0.01327509619295597, -0.038835421204566956, 0.012414045631885529, -0.009302059188485146, 0.011532654985785484, 0.02253647707402706, -0.01614978536963463, 0.020678777247667313, -0.019024474546313286, -0.016190465539693832, 0.007329100742936134, -0.002689935965463519, 0.007179942447692156, 0.02225171960890293, -0.0015170086408033967, -0.012658122926950455, 0.029452001675963402, 0.01833292283117771, 0.008210491389036179, 0.008732546120882034, -0.02410941943526268, 0.017410852015018463, 0.025953559204936028, 0.008874923922121525, -0.006596868857741356, 0.004796798340976238, -0.028801128268241882, 0.0027153606060892344, -0.013281876221299171, 0.005596829578280449, 0.006366351153701544, 0.01886175572872162, 0.014278525486588478, 0.01317339763045311, -0.005545980297029018, 0.009742754511535168, 0.003373013576492667, -0.01624470390379429, 0.015729429200291634, -0.0025882369372993708, 0.02093641459941864, 0.01924143172800541, 0.008610506542026997, 0.002445858670398593, 0.0020661826711148024, -0.00320182042196393, 0.005112065002322197, 0.0345505066215992, 0.01747865043580532, 0.010542785748839378, 0.005464620888233185, 0.018265122547745705, 0.011797072365880013, -0.0024645032826811075, 0.048625633120536804, -0.005122234579175711, 0.01242082566022873, 0.027445143088698387, 0.0019136343616992235, 0.023906022310256958, -0.006590088829398155, -0.018956676125526428, 0.009132561273872852, 0.023607704788446426, 0.01614978536963463, 0.021438129246234894, 0.0439068041741848, 0.03240805119276047, 0.027594301849603653, -0.011898771859705448, 0.03308604285120964, -0.003956087399274111, -0.0018932945095002651, 0.022387318313121796, 0.01167503371834755, -0.012732702307403088, 0.03045543096959591, -0.005413771606981754, 0.01758713088929653, 0.007654537446796894, -0.008346090093255043, 0.02065165713429451, 0.007756236009299755, -0.007024004124104977, 0.001730576273985207, -0.01014277059584856, 0.028285853564739227, -0.005159524269402027, 0.02551964484155178, 0.011715713888406754, 0.006796876434236765, 0.026862069964408875, 0.020814375951886177, -0.024719612672924995, 0.023024631664156914, 0.0037662493996322155, 0.021044893190264702, -0.009247819893062115, -0.01499719824641943, -0.023621264845132828, 0.005752767901867628, -0.025628123432397842, -0.0037492995616048574, -0.00897662341594696, -0.0021560166496783495, -0.007749456446617842, -0.004637470003217459, -0.008413889445364475, -0.004525600932538509, 0.01162757445126772, -0.004722218960523605, 0.016963377594947815, -0.03121478296816349, -0.03170293569564819, 0.023797543719410896, 0.02440773695707321, -0.003234025090932846, -0.01998722366988659, -0.006735857110470533, -0.01461752224713564, 0.016692180186510086, 0.023702623322606087, -0.0233500674366951, -0.0011576724937185645, -0.009505457244813442, 0.0038848980329930782, 0.009790213778614998, 0.01662437990307808, 0.052666470408439636, -0.017248133197426796, -0.014156486839056015, 0.0009000352583825588, -0.005705308169126511, 0.014522602781653404, -0.008386769331991673, -0.033682677894830704, 0.028746889904141426, -0.024041621014475822, -0.0336555577814579, -0.042198263108730316, -0.015648070722818375, -0.016868457198143005, 0.009078321978449821, -0.016109105199575424, -0.03596073016524315, -0.004684929270297289, -0.014590402133762836, 0.019295671954751015, 0.000868678092956543, -0.0032916544005274773, 0.03327587991952896, 0.010041071102023125, -0.004749338608235121, -0.011661473661661148, -0.0033594537526369095, 0.025465404614806175, 0.07810475677251816, 0.006932475138455629, -0.009166461415588856, 0.017885446548461914, -0.012068269774317741, -0.019268551841378212, -0.02785193920135498, -0.01579722948372364, 0.03324875980615616, 0.0024492484517395496, -0.021817803382873535, -0.005227323621511459, 0.013105598278343678, -0.013525953516364098, 0.00939019862562418, 0.005732428282499313, -0.02000078372657299, -0.010800423100590706, 0.012929320335388184, 0.01681421883404255, 0.025072168558835983, -0.009173240512609482, 0.031160542741417885, 0.013573413714766502, 0.006535849533975124, 0.01093602180480957, 0.02542472444474697, 0.019309232011437416, 0.010054631158709526, -0.021600846201181412, -0.02260427549481392, 0.01617690548300743, 0.007505378685891628, 0.016773538663983345, -0.02904520556330681, 0.034252189099788666, 0.006105324253439903, -0.00772911636158824, -0.015661630779504776, 0.012393706478178501, 0.016339624300599098, 0.026021359488368034, 0.004023886751383543, 0.012698803097009659, 0.002503487979993224, -0.005318852607160807, -0.010617365129292011, 0.013953089714050293, -0.021153371781110764, -0.013383575715124607, -0.0008263035560958087, 0.012922540307044983, -0.008895264007151127, 0.028909606859087944, -0.0008864754345268011, -0.004328983370214701, -0.002672986127436161, -0.0008729155524633825, -0.025370486080646515, -0.019227871671319008, -0.04217114299535751, -0.00772911636158824, -0.00586124649271369, -0.010495326481759548, 0.005017146002501249, -0.001300898496992886, -0.003267924766987562, -0.005345972254872322, -0.025248447433114052, 0.013586972840130329, -0.009125781245529652, -0.046320460736751556, -0.02923504449427128, 0.0006885863258503377, 0.01888887584209442, 0.013417474925518036, 0.00016589633014518768, -0.014942958950996399, -0.0009720720117911696, 0.012956440448760986, 0.006115493830293417, -0.017614249140024185, 0.0077697960659861565, -0.03324875980615616, -0.003501832252368331, -0.013993768952786922, -0.013349675573408604, -0.003891678061336279, 0.009180020540952682, 0.007959634065628052, -0.0043188133276999, -0.012868301011621952, 0.008034213446080685, 0.015851467847824097, 0.00939019862562418, 0.018644798547029495, 0.016854897141456604, 0.010319048538804054, 0.020109262317419052, -0.035472575575113297, 0.026319675147533417, -0.013980208896100521, 0.0038882880471646786, -0.024326376616954803, 0.017804088070988655, 0.004590010270476341, -0.01888887584209442, -0.020149942487478256, 0.007139262743294239, 0.0036340407095849514, -0.001364460214972496, 0.008718986064195633, 0.0027306154370307922, -0.00328317959792912, 0.022373758256435394, -0.03221821039915085, -0.004437461961060762, 0.009091882035136223, 0.024163659662008286, -0.008949503302574158, -0.015078556723892689, -0.010868222452700138, 0.014156486839056015, 0.0035120020620524883, -0.01019022986292839, 0.016217585653066635, 0.014576842077076435, -0.02008214220404625, -0.022170361131429672, 0.010156330652534962, -0.014441244304180145, 0.0210177730768919, -0.0005974810337647796, -0.018915995955467224, -0.02141100913286209, -0.0031153764575719833, -0.017315933480858803, -0.00730876112356782, -0.02374330349266529, 0.004430681932717562, -0.01662437990307808, 0.008529148064553738, 0.011410616338253021, -0.008488467894494534, -0.005834126845002174, -0.020014343783259392, -0.01551247201859951, -0.0010678385151550174, -0.0014576842077076435, 0.02326870895922184, -0.0112139992415905, -0.016936257481575012, -0.013295436277985573, -0.0030085924081504345, -0.019878745079040527, -0.026753591373562813, -0.011573335155844688, -0.0003184446832165122, 0.06009726971387863, 0.018292242661118507, -0.00528156291693449, 0.0034170830622315407, 0.014685321599245071, -0.001308525912463665, -0.013797150924801826, -0.008373209275305271, -0.02793329767882824, -0.010298708453774452, 0.008346090093255043, 0.010481766425073147, 0.015173476189374924, 8.602032175986096e-05, -0.005844296887516975, -0.0053730919025838375, 0.009939372539520264, 0.037615034729242325, -0.014142926782369614, -0.009634275920689106, -0.03438778966665268, -0.03132326155900955, -0.004552721045911312, 0.017437972128391266, 0.006535849533975124, 0.009973272681236267, -0.02972319908440113, 0.0031306312885135412, 0.007532498799264431, 0.010630925185978413, 0.0196211077272892, 0.003817098680883646, 0.029750319197773933, -0.010108870454132557, -0.0004945109249092638, 0.009424097836017609, -0.012190308421850204, -0.004037446342408657, -0.009959712624549866, -0.040408361703157425, -0.014278525486588478, 0.008502027951180935, 0.023228028789162636, 0.014075128361582756, -0.008393549360334873, 0.000901730265468359, 0.005217153578996658, 0.026414595544338226, -0.027336664497852325, -0.022007642313838005, 0.011044500395655632, -0.0030204574577510357, 0.002257715677842498, -0.024339936673641205, -0.034794583916664124, -0.003134021069854498, -0.028394334018230438, -0.005227323621511459, 0.011898771859705448, 0.006678227800875902, -0.01888887584209442, -0.003912017680704594, 0.038374386727809906, 0.011139419861137867, 0.040137168020009995, 0.004095075652003288, 0.023783983662724495, 0.02288903295993805, -0.0018221052596345544, -0.008759665302932262, -0.038916777819395065, 0.009539357386529446, -0.016393862664699554, 0.0016898966860026121, 0.04569670557975769, -0.008881703950464725, 0.013112378306686878, 0.01312593836337328, -0.0034882724285125732, 0.0016356572741642594, -0.039947327226400375, 0.009824113920331001, 0.020610976964235306, 0.011424176394939423, -0.03495730087161064, -0.024041621014475822, -0.006068034563213587, 0.03777775168418884, 0.00199838331900537, 0.025953559204936028, 0.007512158714234829, -0.008888483978807926, 0.01023090910166502, 0.054808929562568665, -0.019865185022354126, 0.018427841365337372, -0.0030662219505757093, -0.005196813959628344, -0.012983559630811214, -0.0058680265210568905, 0.009796993806958199, -0.025262007489800453, 0.01830580271780491, 0.02720106579363346, -0.00523410364985466, 0.008617286570370197, 0.005793447606265545, 0.009993611834943295, -0.009369858540594578, -0.01793968677520752, -0.018536319956183434, 0.027879059314727783, 0.006715517491102219, -0.0015051437076181173, -0.014075128361582756, 0.0031221562530845404, 0.014332764782011509, -0.026468833908438683, -0.013858170248568058, 0.007261301390826702, -0.004223894327878952, 0.01545823272317648, 0.0186990387737751, 0.006200242787599564, -0.0015331109752878547, -0.002689935965463519, 0.005478180944919586, -0.0049866363406181335, 0.004983246326446533, 0.00934273935854435, -0.00031484285136684775, -0.030048634856939316, -0.022577155381441116, -0.0033916584216058254, 0.0017237963620573282, 0.007491819094866514, 0.001056821085512638, -0.011051280423998833, -0.005295122973620892, 0.02812313660979271, -0.017722727730870247, -0.008820684626698494, 0.019553309306502342, 0.009776654653251171, -0.030292712152004242, 0.0439339242875576, -0.005823957268148661, -0.0027340054512023926, 0.03235381096601486, 0.003962866961956024, -0.01280050165951252, -0.008617286570370197, 0.01130213774740696, -0.008298629894852638, 0.019878745079040527, -0.008935943245887756, 0.010861442424356937, 0.008061332628130913, -0.0012161493068560958, -0.002210256177932024, -0.02645527385175228, -0.0029713029507547617, -0.006688397843390703, 0.002430603839457035, 0.02926216460764408, -0.010129210539162159, 0.019770266488194466, -0.005264613311737776, 0.011661473661661148, -0.006332451477646828, -0.03446914628148079, -0.029967276379466057, -0.0383201465010643, -0.00011727154196705669, 0.002772990148514509, -0.011498755775392056, 0.004932396579533815, -0.03113342449069023, -0.008698645979166031, 0.018522759899497032, 0.0018915996188297868, 0.010678384453058243, 0.021465247496962547, -0.020149942487478256, -0.009234259836375713, 0.01876683719456196, -0.016976935788989067, -0.0420626662671566, 0.0014339544577524066, 0.0012653038138523698, -0.01784476637840271, 0.0076613170094788074, -0.009335959330201149, 0.02655019238591194, 0.022929713129997253, -0.01860411837697029, -0.02111269161105156, -0.012712362222373486, -0.05635474994778633, -0.005200203973799944, -0.033953871577978134, 0.030509671196341515, 0.03568953275680542, 0.04029988497495651, 0.023309387266635895, 0.02588576078414917, -0.00245433347299695, 0.018441401422023773, -0.03075374849140644, 0.004023886751383543, -0.013797150924801826, -0.01765492931008339, 0.001251743989996612, -0.016217585653066635, -0.037154000252485275, -0.013268317095935345, 0.0158921480178833, -0.008847804740071297, 0.01887531578540802, 0.027716340497136116, -0.029479121789336205, -0.008413889445364475, -0.006474830210208893, -0.007491819094866514, 0.020610976964235306, 0.017044736072421074, 0.030292712152004242, -0.02858417108654976, -0.0015958253061398864, 0.01233268715441227, -0.019553309306502342, -0.015064997598528862, 0.023689063265919685, 0.027879059314727783, -0.014793800190091133, 0.021085571497678757, -0.01200725045055151, -0.03815742954611778, -0.014224286191165447, -0.01905159465968609, 0.00411541573703289, 0.0014432768803089857, 0.010413967072963715, 0.03110630437731743, -0.004328983370214701, -0.01571587100625038, -0.01168859377503395, 0.003908627666532993, 0.008407109417021275, -0.00037649780279025435, 0.014576842077076435, -0.03094358555972576, 0.006057864520698786, -0.016800658777356148, 0.007030784152448177, 0.017980365082621574, -0.0012314042542129755, -0.019878745079040527, 0.011444516479969025, -0.02934352308511734, -0.0016915916930884123, 0.008135912008583546, -0.0055595398880541325, -0.007193502504378557, -0.0039662569761276245, 0.0018102404428645968, -0.01624470390379429, 0.00972241535782814, 0.004213724285364151, -0.008874923922121525, 0.017071856185793877, -0.01307847909629345, -0.006956204771995544, -0.036394648253917694, 0.009742754511535168, 0.012895421124994755, -0.03189277648925781, 0.00155938311945647, 0.18940404057502747, 0.013722571544349194, 0.026658672839403152, 0.03669296205043793, 0.025750162079930305, 0.020204180851578712, -0.010854662396013737, 0.013058139011263847, -0.014278525486588478, -0.0014737865421921015, 0.009335959330201149, 0.015959948301315308, -0.02999439649283886, -0.00586463650688529, 0.011173319071531296, -0.00902408268302679, -0.021356768906116486, -0.02664511278271675, -0.00452899094671011, 0.009125781245529652, 0.0025119627825915813, -0.0033272490836679935, -0.012251327745616436, -0.011295357719063759, 0.027689220383763313, 0.015078556723892689, 0.0014805664541199803, -0.00016928630066104233, 0.028855368494987488, 0.014034448191523552, -0.01430564559996128, -0.004356103017926216, 0.010542785748839378, -0.01547179277986288, -0.015119236893951893, -1.1434505722718313e-05, 0.008854584768414497, -0.0038238787092268467, -0.0008381684310734272, 0.0030424920842051506, -0.002478063339367509, -0.018387161195278168, 0.01505143754184246, -0.04363560676574707, -0.00126784632448107, -0.007213842123746872, 0.0005148506606929004, -0.016841338947415352, 0.0041628750041127205, 0.01461752224713564, -0.012969999574124813, 9.783222776604816e-05, 0.013661552220582962, 0.009620715864002705, -0.008657966740429401, 0.012034369632601738, -0.009159681387245655, 0.014983638189733028, -0.01463108230382204, -0.004725608974695206, -0.008502027951180935, -0.006390080787241459, 0.00836642924696207, -0.007132482714951038, -0.034631866961717606, 0.029316402971744537, -0.006427370477467775, 0.03010287508368492, 0.011532654985785484, -0.0007254521478898823, -0.004627299960702658, -0.018183764070272446, -0.02748582325875759, 0.004590010270476341, -0.01624470390379429, -0.018902435898780823, 0.026794269680976868, 0.022197479382157326, 0.03517426177859306, 0.004613740369677544, -0.008298629894852638, -0.002842484274879098, -0.021370328962802887, 0.0005995997926220298, 0.011288577690720558, -0.022780554369091988, 0.023851782083511353, -0.015390433371067047, 0.0065595791675150394, -0.020014343783259392, -0.0018627848476171494, -0.0017153214430436492, 0.002957743126899004, -0.012142849154770374, 0.0070646838285028934, -0.010339388623833656, 0.010352947749197483, 0.008142692036926746, -0.023716183379292488, -0.021722884848713875, -0.007790135685354471, 0.054158054292201996, 0.02222459949553013, 0.03129614144563675, -0.010949581861495972, 0.018563440069556236, -0.007776576094329357, 0.015932828187942505, 0.020394019782543182, -0.028855368494987488, -0.011953011155128479, -0.028828248381614685, 0.0010491936700418591, -0.026970548555254936, -0.0020339780021458864, 0.024516215547919273, 0.008963063359260559, -0.007505378685891628, 0.0196346677839756, 0.008807124570012093, 0.030970705673098564, 0.004393392708152533, 0.005356142297387123, -0.0032780945766717196, -0.01279372163116932, -0.020326219499111176, -0.0098173338919878, 0.012983559630811214, -0.024068739265203476, -0.03989309072494507, 0.005451061297208071, -0.037154000252485275, 0.017966805025935173, 0.005881586577743292, -0.010441087186336517, -0.015254835598170757, -0.013729351572692394, -0.019214311614632607, 0.019377030432224274, 0.017288813367486, 0.02515352889895439, 0.010013951919972897, 0.011552995070815086, 0.007118923123925924, -0.0023695845156908035, 0.016651500016450882, -0.008908824063837528, 0.005417161621153355, -0.03148597851395607, -0.023567024618387222, 0.006091764196753502, 0.01164113450795412, -0.005271392874419689, -0.022007642313838005, 0.02587220072746277, -0.02092285454273224, -0.02793329767882824, -0.011010601185262203, 0.012712362222373486, 0.00586463650688529, -0.05640899017453194, 0.01804816536605358, 0.04157451167702675, 0.023702623322606087, -0.020543178543448448, -0.01747865043580532, -0.17248134315013885, -0.004678149241954088, -0.009037642739713192, -0.003556071547791362, -0.01758713088929653, 0.01795324683189392, 0.003159445943310857, -0.014278525486588478, -0.014102247543632984, 0.005098504945635796, 0.00897662341594696, -0.0024814531207084656, -0.04048972204327583, -0.014088687486946583, 0.028340093791484833, -0.022943271324038506, 0.011491975747048855, 0.0392150953412056, 0.05038841441273689, 0.006742637138813734, 0.02542472444474697, -0.028828248381614685, -0.0016288773622363806, -0.005495130550116301, 0.015648070722818375, 0.02457045391201973, -0.0027340054512023926, 0.025262007489800453, 0.00976309459656477, -0.03129614144563675, 0.027445143088698387, -0.018441401422023773, 0.01785832643508911, 0.0053832619450986385, -0.00178820569999516, -0.012617443688213825, -0.008983402512967587, -0.007979974150657654, -0.006925695110112429, 0.030292712152004242, 0.032001253217458725, 0.00044789889943785965, 0.01597350835800171, 0.017058296129107475, 0.03286908566951752, 0.021994082257151604, 0.03346571698784828, -0.02793329767882824, 0.009234259836375713, 0.001966178650036454, 0.015946388244628906, -0.018265122547745705, 0.006688397843390703, 0.007803695742040873, 0.010969921946525574, 0.0005042570410296321, 0.013295436277985573, 0.0247602928429842, 0.004545941017568111, -0.007376560475677252, 0.005722258239984512, -0.021004213020205498, -0.005227323621511459, -0.007268081419169903, -0.010420747101306915, -0.02991303615272045, 0.013776810839772224, 0.02401450090110302, -0.0001562561228638515, 0.028990967199206352, 0.005929045844823122, 0.013153057545423508, 0.01130213774740696, 0.02074657566845417, -0.0015407383907586336, -0.007132482714951038, -0.030970705673098564, 0.012827621772885323, 0.018088843673467636, -0.010542785748839378, 0.01093602180480957, 0.014237846247851849, 0.0010703809093683958, -0.010942801833152771, -0.016420982778072357, -0.01614978536963463, 0.009281720034778118, -0.009681735187768936, 0.0006305332062765956, -0.0028780789580196142, 0.008827464655041695, -0.03229957073926926, -0.02325514890253544, 0.008908824063837528, -0.0049086669459939, 0.01924143172800541, 0.013980208896100521, 0.0014441243838518858, -0.007803695742040873, 0.0032289400696754456, 0.005512080620974302, -0.0009322399273514748, -0.029940156266093254, 0.0158785879611969, 0.029560480266809464, 0.020597416907548904, 0.00715282279998064, 0.009037642739713192, 0.014603962190449238, -0.01476668007671833, -0.026509514078497887, 0.021519487723708153, 0.0476493239402771, 0.0017424412071704865, -0.03132326155900955, 0.03414371237158775, -0.019132953137159348, -0.01860411837697029, 0.0004207791935186833, -0.01971602626144886, 0.05272071063518524, -0.037235356867313385, -0.011891991831362247, 0.008156252093613148, 0.004637470003217459, -0.006315501872450113, -0.11759105324745178, -0.01982450671494007, 0.03495730087161064, 0.02223815955221653, -0.005759547930210829, 0.000393871363485232, -0.00944443792104721, 0.04626622051000595, -2.3200062059913762e-05, 0.022631395608186722, -0.007010444067418575, -0.03517426177859306, -0.011369937099516392, -0.01859055832028389, 0.015268394723534584, -0.005515470635145903, 0.014414124190807343, -0.011939451098442078, -0.004393392708152533, 0.01924143172800541, 0.007193502504378557, -0.010529226623475552, 0.002120422199368477, 0.0036848902236670256, -0.02486877143383026, -0.01312593836337328, -0.02980455756187439, 0.017492210492491722, 0.022766994312405586, 0.019783826544880867, 0.02253647707402706, -0.0135530736297369, 0.009403758682310581, -0.01429208554327488, 0.014848039485514164, -0.0024814531207084656, -0.027702780440449715, 0.004728998988866806, 0.017641369253396988, -0.030482551082968712, 0.02166864648461342, -0.01690913736820221, 0.02823161520063877, -0.032109733670949936, -0.003695060033351183, -0.005088334903120995, -0.012108949013054371, 0.03493018448352814, 0.016393862664699554, -0.027268866077065468, -0.03007575497031212, -0.015553152188658714, -0.037425193935632706, -0.02691630832850933, 0.018075285479426384, 0.012908980250358582, 0.006623988505452871, 0.007620637770742178, -0.02458401396870613, 0.003225550055503845, -0.007030784152448177, -0.00013835288700647652, 0.0028390942607074976, 0.022292399778962135, -0.004400172270834446, 0.013431034982204437, -0.015824349597096443, 0.007457919418811798, -0.010427527129650116, -0.01313271839171648, -0.020244861021637917, -0.001844140118919313, -0.03037407249212265, 0.008502027951180935, -0.017899006605148315, 0.009973272681236267, -0.0013831050600856543, -0.01673285849392414, 0.0005665476201102138, 0.018468519672751427, -0.013980208896100521, -0.01429208554327488, 0.008841024711728096, -0.011071620509028435, -0.006159563548862934, 0.014807360246777534, 0.013383575715124607, -0.0040645659901201725, 0.02326870895922184, -0.030726628378033638, 0.02823161520063877, 0.011614014394581318, 0.009410538710653782, 0.01568875089287758, -0.01046820729970932, 0.0086511867120862, -0.00859694741666317, -0.006664668209850788, 0.011017381213605404, 0.011471635662019253, -0.0019882135093212128, 0.003271314548328519, -0.0579276941716671, -0.0032035154290497303, 0.019878745079040527, 0.010027511976659298, 0.016041306778788567, -0.024068739265203476, -0.003973037004470825, -0.0028390942607074976, 0.0011449601734057069, 0.010583465918898582, -0.03623192757368088, 0.0001285008038394153, -0.003705230075865984, 0.01434632483869791, -0.023011071607470512, 0.014034448191523552, 0.018373601138591766, -0.005349362269043922, 0.003478102385997772, 0.014387005008757114, -0.0135462936013937, -0.004227284342050552, -0.00040658374200575054, 0.022821232676506042, -0.033601317554712296, -0.0049662962555885315, -0.009871573187410831, 0.023675505071878433, -0.010380067862570286, -0.03170293569564819, 0.026089157909154892, 0.009796993806958199, -0.014820920303463936, 0.020488938316702843, -0.006444320548325777, -0.038835421204566956, -0.00822405144572258, 0.002672986127436161, 0.005271392874419689, 0.0186854787170887, -0.009315619245171547, -0.021600846201181412, 0.02253647707402706, -0.027268866077065468, -0.02412297949194908, -0.011485195718705654, -0.007091803476214409, -0.011064840480685234, 0.004281523637473583, 0.02009570226073265, 0.04477463662624359, 0.0011017380747944117, -0.014481923542916775, -0.03289620578289032, 0.00026272216928191483, -0.002705190796405077, 0.022577155381441116, 0.01831936277449131, 0.016882017254829407, 0.004769678693264723, 0.03338436037302017, 0.00059281982248649, -0.0021170321851968765, -0.0030272372532635927, 0.009227480739355087, -0.03384539484977722, -0.0532631054520607, -0.0031543609220534563, 0.002128897001966834, -0.0158921480178833, 0.004179825074970722, -0.014522602781653404, 0.028828248381614685, 0.012915760278701782, 0.008508807979524136, 0.013071699067950249, -0.00907154195010662, -0.008339310064911842, -0.001550908200442791, 0.009369858540594578, 0.013410694897174835, -0.013634433038532734, -0.014115807600319386, 0.004145925398916006, 0.009959712624549866, 0.011552995070815086, -0.016502341255545616, 0.01699049584567547, -4.250696292729117e-05, 0.006142613478004932, -0.019119393080472946, 0.007973194122314453, -0.028936726972460747, 0.016000626608729362, -0.014563282951712608, 0.020448260009288788, -0.02231951802968979, 0.013702232390642166, -0.0022034761495888233, 0.02877401001751423, -0.02149236761033535, 0.016773538663983345, -0.0065731387585401535, -0.010719064623117447, -0.005810397211462259, -0.002313649980351329, -0.018292242661118507, -0.01840072125196457, 0.012298787012696266, 0.014034448191523552, 0.010529226623475552, -0.018956676125526428, 0.019268551841378212, 0.01130213774740696, -0.024977250024676323, -0.006729077082127333, 0.0007847765227779746, -0.02961472049355507, -0.02204832248389721, 0.00014841683150734752, 0.0022136461921036243, 0.026102717965841293, 0.015187036246061325, -0.008420669473707676, 0.03615057095885277, -0.018943116068840027, -0.005708698183298111, -0.020299101248383522, 0.0036204808857291937, -0.009749534539878368, -0.017085416242480278, 0.011329257860779762, -0.011275018565356731, -0.012969999574124813, -0.022821232676506042, -0.021804245188832283, -0.016665060073137283, 0.012563204392790794, 0.001300898496992886, 0.07642333209514618, 0.030319832265377045, -0.010285149328410625, 0.011315697804093361, -0.01162757445126772, 0.0007822340703569353, 0.009532577358186245, -0.015295514836907387, 0.010034292005002499, -0.024638254195451736, 0.014983638189733028, -0.009505457244813442, -0.006698567420244217, 0.0011890296591445804, -0.018739717081189156, -0.00560360960662365, -0.006630768533796072, 0.016095547005534172, -0.010854662396013737, -0.002859434112906456, 0.019838064908981323, 0.0023255147971212864, 0.0015288734575733542, -0.023987380787730217, -0.029397763311862946, -0.00831218995153904, 0.03129614144563675, 0.016936257481575012, -0.0015627731336280704, -0.03474034368991852, 0.012237767688930035, 0.004305253271013498, -0.030482551082968712, -0.01571587100625038, -0.009512237273156643, 0.013410694897174835, -0.014970078133046627, -0.01172927301377058, 0.017980365082621574, 0.014454803429543972, 0.011512315832078457, 0.014698881655931473, -0.02179068513214588, -0.01467176154255867, 0.004044226370751858, -0.01876683719456196, -0.009783434681594372, -0.019756706431508064, 0.008881703950464725], "10e4af3c-d44a-4aff-a0dc-63907a78a16d": [0.003866754239425063, -0.01043816190212965, 0.00551998196169734, -0.0340053029358387, -0.008321477100253105, 0.02130519412457943, 0.007733508478850126, -0.02665916085243225, -0.015923557803034782, -0.031847115606069565, 0.005104945972561836, 0.03209613636136055, 0.001801948994398117, -0.009317563846707344, -0.016380097717046738, -0.0001068934507202357, 0.025842923671007156, -0.023117518052458763, -0.004925096873193979, 0.0009468014468438923, -0.02030910737812519, -0.013599353842437267, -0.021056171506643295, 0.0015840550186112523, -0.004240287002176046, 0.003783747088164091, 0.004838631022721529, -0.012776198796927929, -0.024722326546907425, 0.023089850321412086, 0.0006549790850840509, -0.00290871225297451, -0.020295271649956703, 0.007622832432389259, -0.02025376819074154, -0.001978339394554496, -0.002076910575851798, -0.006571407429873943, 0.016463104635477066, -0.0027945772744715214, 0.02313135378062725, 0.011413496918976307, -0.0029346521478146315, -0.005620282609015703, -0.007775012403726578, 0.015633031725883484, 0.0017483402043581009, 0.005454267840832472, -0.010846280492842197, -0.0030332233291119337, 0.007200879044830799, -0.006190957501530647, -0.027835097163915634, 0.02455631084740162, 0.0027859308756887913, -0.015812881290912628, 0.005499230232089758, 0.0007544148247689009, 0.012644770555198193, 0.0038529199082404375, 0.005343591794371605, 0.01608957163989544, -0.015508521348237991, -0.011067633517086506, -0.012886875309050083, -0.019216177985072136, 0.0007392833358608186, -0.019382191821932793, -0.008169297128915787, -0.00937981903553009, 0.0462627075612545, 0.041060920804739, 0.0027651789132505655, 0.0011863119434565306, -0.020793315023183823, -0.013495595194399357, -0.015633031725883484, -0.020060084760189056, -0.006163288373500109, 0.010956957004964352, 0.018386105075478554, -0.011323572136461735, -0.03461402282118797, 0.015370175242424011, 0.019921740517020226, 0.007726591546088457, 0.02737855724990368, 0.005737876053899527, -0.025483224540948868, 0.007567494176328182, -0.0013886421220377088, -0.012036050669848919, 0.01877347193658352, 0.007726591546088457, 0.011122971773147583, 0.012603267095983028, 0.013322663493454456, 0.007920275442302227, -0.013066724874079227, -0.021277524530887604, -0.018164752051234245, 0.00555802695453167, -0.034531015902757645, -0.0157298743724823, -0.026078110560774803, -0.007090202532708645, 0.00877801701426506, -0.01378612034022808, 0.006118325982242823, 0.009926283732056618, -0.035582441836595535, 0.02095933072268963, -0.013405670411884785, -0.005367801990360022, 0.02010158821940422, -0.014443261548876762, 0.036025144159793854, -0.03704890236258507, -0.01946520060300827, -0.011939208954572678, 0.01621408201754093, 0.0036834466736763716, 0.03522274270653725, -0.014118149876594543, 0.013772286474704742, 0.02185857482254505, 0.005845093633979559, -0.012741612270474434, 0.018386105075478554, -0.006066446658223867, -0.004067355301231146, 0.00767125329002738, 0.029854940250515938, 0.015965061262249947, -0.008528994396328926, 0.007010654080659151, -0.010991543531417847, 9.900343866320327e-05, -0.0230760145932436, -0.037270255386829376, 0.02645164355635643, 0.03026997670531273, 0.01911933720111847, -0.017473025247454643, -0.015854384750127792, 0.024251950904726982, 0.007775012403726578, 0.01160718034952879, 0.003399838460609317, 0.006733963266015053, 0.0186212919652462, -0.034392669796943665, -0.01244417019188404, -0.0024954054970294237, 0.007567494176328182, -0.004603443667292595, 0.00043146475218236446, 0.018731968477368355, -0.024653153494000435, -0.006502234376966953, -0.0027634496800601482, 0.01012688409537077, -0.001007327577099204, 0.0031577341724187136, -0.006401934195309877, 0.041448287665843964, 0.0011162746232002974, -0.00955275073647499, -0.0027548030484467745, -0.017251674085855484, -0.0007211254560388625, 0.017749717459082603, -0.019797228276729584, 0.010202974081039429, 0.013149731792509556, -0.0036177325528115034, -0.0010133801260963082, 0.012188230641186237, -0.004299083724617958, -0.034586355090141296, 0.015743708238005638, -0.0057690036483109, 0.00828689057379961, 0.012824620120227337, -0.016753628849983215, -0.029882609844207764, 0.016974981874227524, 0.009428240358829498, -0.008017117157578468, -0.005232915282249451, -0.008487490937113762, 0.014553938060998917, -0.022605640813708305, -0.005852011032402515, -0.6299696564674377, -0.007906440645456314, 0.011295903474092484, -0.011323572136461735, 0.0021426246967166662, -0.0035329959355294704, 0.0295505803078413, -0.010362071916460991, -0.005724041722714901, 0.025856757536530495, 0.005997273605316877, 0.009248390793800354, -0.008300724439322948, -0.015688370913267136, -0.020793315023183823, -0.00017282368207816035, -0.005447350908070803, -0.016421601176261902, -0.013550933450460434, 0.0013194694183766842, -0.0115380072966218, 0.015978895127773285, -0.0008624971960671246, 0.0009658239432610571, -0.005288253538310528, -0.010182222351431847, 0.042084675282239914, -0.019658884033560753, -0.0012243569362908602, 0.018994824960827827, -0.013288076967000961, 0.019977077841758728, -0.005540733691304922, 0.00493547273799777, 0.04562631621956825, -0.005630658473819494, -0.016878141090273857, 0.019907904788851738, 0.008937113918364048, 0.06275348365306854, -0.027627579867839813, -0.017044154927134514, 0.01889798417687416, 0.020558128133416176, -0.011918457224965096, 0.011102219112217426, 0.02046128734946251, 0.00348457507789135, -0.012153645046055317, -0.016698291525244713, 0.0033911920618265867, -0.015107319690287113, -0.022121431306004524, 0.010735603980720043, 0.005734417587518692, -0.009082376025617123, 0.02645164355635643, -0.026700664311647415, 0.007325389888137579, 0.010355154052376747, 0.0008309371187351644, 0.005696372594684362, -0.015010477043688297, -0.043634142726659775, -0.04064588248729706, 0.01086703222244978, 0.006211709231138229, -0.03181944414973259, 0.011614097282290459, -0.008978617377579212, 0.034309662878513336, -0.014374088495969772, 0.005620282609015703, -0.015536190010607243, 0.008279972709715366, 0.008328394033014774, 0.026437809690833092, -0.008100124076008797, -0.0037768299225717783, 0.025012850761413574, 0.0017794679151847959, -0.027005024254322052, -0.019313020631670952, -0.004267956130206585, 0.03478003665804863, 0.01981106400489807, -0.021263690665364265, 0.001981798093765974, 0.0019869860261678696, 0.007982530631124973, -0.001460408791899681, 0.0468437559902668, -0.017030321061611176, -0.018316932022571564, -0.011544925160706043, 0.02849915623664856, -0.0005503553547896445, -9.608521213522181e-05, -0.013495595194399357, -0.017666708678007126, -0.025303376838564873, -0.025552397593855858, 0.010071545839309692, 0.0005144720198586583, 0.03455868363380432, 0.026714500039815903, 0.01245108712464571, -0.019589710980653763, 0.04111625626683235, -0.02519270032644272, 0.003973972052335739, 0.0019662342965602875, -0.020267603918910027, -0.027323219925165176, 0.020073920488357544, -0.02166489139199257, -0.0021218727342784405, -0.010486582294106483, 0.008155462332069874, -0.022882331162691116, 0.007394562475383282, -0.016808968037366867, 0.02010158821940422, 0.0007042646175250411, 0.006184040103107691, 0.023601727560162544, 0.0007972154417075217, -0.008432152681052685, 0.018745804205536842, 0.004330211319029331, 0.008591250516474247, -0.024943677708506584, 0.003055704291909933, -0.011122971773147583, 0.010085380636155605, -0.002969238441437483, 0.026437809690833092, -0.007041781675070524, 0.00019271083874627948, -0.03787897527217865, -0.015217995271086693, -0.005091111175715923, 0.008190048858523369, -0.009241473861038685, -0.007927192375063896, -0.042721062898635864, -0.02349105104804039, 0.00493547273799777, -0.02237045392394066, 0.012637853622436523, -0.022591806948184967, -0.007276969030499458, -0.004015475511550903, 0.021402034908533096, -0.016629118472337723, 0.00017466107965447009, 0.003330665873363614, -0.06092732027173042, -0.02059963159263134, -0.046594735234975815, -0.025580067187547684, 0.021969251334667206, -0.012755447067320347, -0.0019541289657354355, -0.008577415719628334, -0.011572593823075294, 0.011247482150793076, -0.007844185456633568, -0.016947314143180847, -0.02765524759888649, 0.01755603402853012, 0.005423140246421099, 0.02178940363228321, 0.02941223606467247, -0.01686430536210537, 0.019008660688996315, -0.01981106400489807, -0.007816515862941742, 0.012845371849834919, -0.00011705319047905505, 0.016490774229168892, 0.02165105752646923, -0.002149541862308979, -0.00938673596829176, 0.03804498910903931, 0.008542829193174839, 0.0014993184013292193, 0.011420413851737976, -0.028941860422492027, 0.01160718034952879, 0.008086289279162884, -0.005018480122089386, -0.01019605714827776, 0.009635758586227894, -0.02250879816710949, 0.013751533813774586, -0.030214639380574226, 0.015882054343819618, -0.0038598370738327503, 0.004184948746114969, 0.012001465074717999, 0.017528364434838295, -0.006823887582868338, 0.004956224467605352, -0.003022847231477499, -0.008314559236168861, 0.01294913049787283, -0.02115301415324211, 0.033617936074733734, -0.002562848851084709, 0.002709840890020132, -0.00693110516294837, -0.002569766016677022, -0.016241751611232758, -0.00011089249892393127, 0.04125460237264633, 0.02172023057937622, 0.013205070048570633, -0.00263548013754189, 0.0074637350626289845, 0.009981621988117695, -0.01178702898323536, 0.0436064749956131, -0.001928189187310636, 0.006668249145150185, 0.0208763238042593, -0.008542829193174839, 0.0397881418466568, 0.00811395887285471, -0.005813966039568186, 0.013530181720852852, 0.03118305653333664, 0.025012850761413574, 0.01559152826666832, 0.04382782801985741, 0.0417526476085186, 0.044187527149915695, -0.011323572136461735, 0.020060084760189056, -0.011136805638670921, -0.005225997883826494, 0.022328950464725494, 0.019949408248066902, -0.017099494114518166, 0.011994547210633755, -0.00484900688752532, -0.0006956180441193283, 0.0007583058322779834, -0.008065537549555302, 0.010673348791897297, 0.008791850879788399, -0.0035260787699371576, -0.010099215433001518, -0.008563580922782421, 0.027918104082345963, -0.013474843464791775, 0.014028225094079971, 0.0198940709233284, 0.006813511718064547, 0.020419783890247345, 0.016684457659721375, -0.03187478333711624, 0.018524451181292534, -0.01333649829030037, 0.01839994080364704, -0.0017725506331771612, -0.005243291147053242, -0.013384918682277203, 0.018579788506031036, -0.03195779025554657, 0.0037733712233603, -0.012686274945735931, -0.005447350908070803, 0.001623829361051321, -0.016559945419430733, -0.0032078842632472515, 0.009760268963873386, 0.020212264731526375, -0.007823432795703411, -0.001733641023747623, -0.030740350484848022, -0.022951504215598106, 0.029854940250515938, 0.015176491811871529, 0.002886231290176511, -0.02249496430158615, -0.0076643358916044235, -0.015771377831697464, 0.00030479225097224116, 0.004689909517765045, -0.012243568897247314, -0.0006130431429482996, -0.010285981930792332, 0.008916362188756466, 0.006322385277599096, 0.027074197307229042, 0.05295862630009651, -0.02977193333208561, 0.0006009378703311086, 0.011876953765749931, -0.004067355301231146, 0.0018105956260114908, -0.010043877176940441, -0.02187241055071354, 0.028831183910369873, -0.04191866144537926, -0.03397763520479202, -0.03201312944293022, -0.01770821399986744, -0.017901897430419922, 0.014443261548876762, -0.005564944352954626, -0.02771058678627014, -0.01135815866291523, -0.0150934848934412, 0.01103996392339468, 0.0007310690707527101, -0.003223448060452938, 0.03206846863031387, 0.024708490818738937, -0.0035122442059218884, -0.036938223987817764, 0.01755603402853012, 0.019645048305392265, 0.08062770962715149, 0.011247482150793076, 0.011219813488423824, 0.01484446320682764, -0.022384287789463997, -0.026340967044234276, -0.019230011850595474, -0.016670621931552887, 0.037823636084795, -0.003666153410449624, -0.01736234873533249, 0.000289660703856498, 0.01378612034022808, -0.014263411983847618, 0.02264714427292347, -0.002033677650615573, -0.008342228829860687, -0.02109767496585846, 0.010659513995051384, 0.01318431831896305, 0.016698291525244713, -0.0010246207239106297, 0.019243847578763962, 0.014996643178164959, 0.015439348295331001, 0.008985534310340881, 0.03810032829642296, 0.010818611830472946, 0.007712756749242544, -0.019313020631670952, -0.035803794860839844, 0.021485043689608574, 0.00020027659775223583, 0.007947944104671478, -0.03436500206589699, 0.033894628286361694, 0.0016350698424503207, -0.017528364434838295, -0.014885966666042805, 0.008017117157578468, 0.005921183619648218, 0.04449188709259033, 0.0027963067404925823, 0.00581742450594902, 0.006941481027752161, -0.010507334023714066, -0.006121784448623657, 0.020613467320799828, -0.0253863837569952, -0.00845982227474451, 0.02849915623664856, 0.022840827703475952, -0.01245108712464571, 0.020046250894665718, 0.005461185239255428, -0.00836298055946827, 0.004873217083513737, 0.0027340513188391924, -0.024708490818738937, -0.017652874812483788, -0.026908183470368385, -0.011524173431098461, -0.007906440645456314, -0.0013791308738291264, -0.013384918682277203, -0.03201312944293022, 0.0013938300544396043, -0.001584919635206461, -0.026050440967082977, 0.023546390235424042, -0.009020120836794376, -0.04111625626683235, -0.03868137672543526, 0.006675166077911854, 0.028831183910369873, 0.012305825017392635, -0.012575598433613777, -0.005744793452322483, -0.0047867512330412865, 0.013474843464791775, 0.01283845491707325, -0.02730938419699669, 0.007359975948929787, -0.039179421961307526, 0.008660422638058662, -0.011932292021811008, -0.016615284606814384, -0.004157279618084431, 0.0023674359545111656, -0.011870036832988262, -0.00655757263302803, -0.00920688733458519, 0.008445987477898598, 0.01484446320682764, 0.01054192055016756, 0.0020682639442384243, 0.027046527713537216, -0.0035157029051333666, 0.0340053029358387, -0.0469544343650341, 0.01452626846730709, -0.028582163155078888, -0.0044754743576049805, -0.010908535681664944, 0.015245664864778519, 0.006848098244518042, -0.01436025369912386, -0.013564768247306347, -0.005108404438942671, -0.008079372346401215, 0.01051425188779831, 0.007456817664206028, -0.004050062038004398, -0.0011430790182203054, 0.018247760832309723, -0.02032294124364853, 0.0029121709521859884, 0.020405948162078857, 0.02552472986280918, 0.009718765504658222, -0.01820625737309456, -0.006495317444205284, 0.029854940250515938, 0.007657418493181467, -0.010348237119615078, 0.029578249901533127, 0.00134886777959764, -0.015743708238005638, -0.021678727120161057, 0.011738608591258526, -0.0247499942779541, 0.015909722074866295, -0.009573502466082573, -0.0031214184127748013, -0.025842923671007156, -0.004679533652961254, -0.001443980261683464, -0.009234555996954441, -0.023726237937808037, 0.012236651964485645, -0.039898816496133804, 0.00117334199603647, 0.00853591226041317, -0.0028499155305325985, 0.01678129844367504, -0.02455631084740162, -0.007858019322156906, 0.008992452174425125, -0.01898099109530449, 0.018220091238617897, -0.01424957811832428, -0.018233925104141235, -0.01163484901189804, -0.015204161405563354, -0.020267603918910027, -0.03696589544415474, -0.006194415967911482, -0.010410492308437824, 0.06452430039644241, 0.005333215929567814, -0.0030954787507653236, -0.004714120179414749, 0.017583701759576797, 0.00952508207410574, -0.024445634335279465, -0.002761720446869731, -0.025635404512286186, -0.009711848571896553, 0.017791220918297768, -9.354527719551697e-05, 0.025829089805483818, 0.007830350659787655, -0.011627932079136372, -0.013945218175649643, -0.0011595075484365225, 0.025912096723914146, -0.014318750239908695, 0.004603443667292595, -0.03287087008357048, -0.032760195434093475, -0.010382823646068573, 0.037270255386829376, 0.0032113429624587297, 0.009227639064192772, -0.026285629719495773, -0.002529991790652275, 0.015702204778790474, -0.0024262326769530773, 0.027489233762025833, 0.0015105589991435409, 0.0295505803078413, -0.009732600301504135, 0.0023985635489225388, 0.0030937492847442627, 0.0037560779601335526, -0.005084193777292967, 0.0016437164740636945, -0.045681655406951904, -0.011178309097886086, 0.004994269460439682, 0.025759916752576828, 0.015038146637380123, -0.00881260260939598, 0.007339224219322205, -0.0015382281271740794, 0.012437252327799797, -0.009940117597579956, -0.030491329729557037, 0.013834541663527489, -0.005758627783507109, 0.00038542167749255896, -0.013793038204312325, -0.019783394411206245, 0.02653465047478676, -0.02737855724990368, -0.010237560607492924, 0.01658761501312256, 0.012499508447945118, -0.026340967044234276, -0.0141112320125103, 0.030712682753801346, 0.00010613687481964007, 0.039539121091365814, 0.003794122952967882, 0.020682640373706818, 0.019645048305392265, -0.005973063409328461, -0.014941304922103882, -0.026285629719495773, 0.01953437179327011, -0.014664613641798496, 2.8317577744019218e-05, 0.03732559457421303, -0.01763904094696045, -0.003444800851866603, 0.03060200624167919, -0.008819520473480225, -0.0019039787584915757, -0.028416147455573082, 0.020724143832921982, 0.013343415223062038, -0.0025663075502961874, -0.03309222310781479, -0.0288588535040617, 0.007256216835230589, 0.024002930149435997, -0.012824620120227337, 0.031155386939644814, -0.0062670474871993065, 0.0006074228440411389, -0.0015633031725883484, 0.05536583438515663, -0.013993638567626476, 0.026769837364554405, 0.000864658853970468, 0.0022066093515604734, -0.022481130436062813, -0.0001984392001759261, -0.0006160694174468517, -0.016061902046203613, 0.017749717459082603, 0.01707182452082634, -0.014291081577539444, 0.0031871325336396694, -0.0014310104306787252, 0.013772286474704742, -0.002066534711048007, -0.020018581300973892, -0.027987277135252953, 0.02652081660926342, 0.008522077463567257, -2.9486218409147114e-06, -0.00215991772711277, -0.0002851212630048394, 0.024500973522663116, -0.026825176551938057, -0.020724143832921982, 0.01418040506541729, 0.010998460464179516, 0.007449900731444359, 0.004537729546427727, 0.005257125943899155, -0.018441444262862206, -0.0021996921859681606, 0.004036227706819773, -0.01400747336447239, 0.0042817904613912106, 0.004893969278782606, -0.009193052537739277, -0.023740073665976524, -0.024500973522663116, -0.007429149001836777, 0.014374088495969772, 0.011233647353947163, 0.0008253168780356646, -0.018469111993908882, -0.004938931204378605, 0.02461165003478527, -0.01621408201754093, -0.012354245409369469, 0.016380097717046738, -0.000595749937929213, -0.03846002370119095, 0.021678727120161057, -0.01407664641737938, -0.00962884072214365, 0.03525041043758392, -0.0008888692827895284, -0.01750069484114647, -0.010811693966388702, 0.004558481276035309, -0.0034430716186761856, 0.007629749830812216, -0.0005797537742182612, -0.0004411921836435795, 0.0038114162161946297, 0.009269142523407936, -0.007781929802149534, -0.009663427248597145, -0.005827800370752811, -0.005495771765708923, 0.003159463405609131, 0.011648683808743954, -0.020724143832921982, 0.010175305418670177, -0.02378157712519169, 0.017971068620681763, -0.013205070048570633, -0.04797818884253502, -0.011171392165124416, -0.02278549037873745, 0.0038805888034403324, -0.0055130645632743835, -0.027558406814932823, 0.013039055280387402, -0.03240049630403519, -0.008383732289075851, 0.0189118180423975, 0.0005970469210296869, 0.004814420361071825, 0.01834460161626339, -0.0295505803078413, -0.0036523188464343548, 0.019313020631670952, 0.0032839742489159107, -0.030574336647987366, -0.007823432795703411, -0.012907627038657665, -0.026410140097141266, 0.0003968784003518522, -0.02073797769844532, 0.048144202679395676, 0.016546111553907394, -0.023463381454348564, -0.017154831439256668, -0.016559945419430733, -0.051326148211956024, 0.007021029945462942, -0.03497372195124626, 0.022743986919522285, 0.051464494317770004, 0.03314756229519844, 0.016739794984459877, 0.02166489139199257, -0.024417966604232788, 0.0028101413045078516, -0.02646547742187977, -0.011669435538351536, -0.026631493121385574, -0.033617936074733734, 0.01178011205047369, -0.014138901606202126, -0.03837701678276062, -0.006498775910586119, 0.012810785323381424, -0.005149907898157835, 0.015674535185098648, 0.004603443667292595, -0.024279620498418808, -0.015480851754546165, 0.014719951897859573, 0.009933200664818287, 0.04283174127340317, 0.020848654210567474, 0.019728055223822594, -0.040313854813575745, 0.010735603980720043, 0.02357405796647072, -0.010396657511591911, -0.03259417787194252, 0.019382191821932793, 0.01882881112396717, -0.009248390793800354, 0.0020596173126250505, -0.017030321061611176, -0.024874504655599594, -0.006619828287512064, -0.0037664538249373436, 0.004679533652961254, -0.0029052537865936756, -0.008667340502142906, 0.023034511134028435, 0.005409305915236473, -0.015619196929037571, -0.020627301186323166, 0.006066446658223867, 0.014166570268571377, 0.01012688409537077, 0.015190326608717442, -0.039262428879737854, -0.015121153555810452, -0.013274242170155048, 0.005035772919654846, 0.018233925104141235, -0.02250879816710949, -0.023878417909145355, 0.011199061758816242, -0.02397526055574417, -0.011441165581345558, 0.02390608750283718, -0.018870314583182335, -0.006360430270433426, -0.016393931582570076, -0.010763273574411869, -0.006789301056414843, 0.005436974577605724, 0.009421322494745255, -0.0033427709713578224, -0.0013704842422157526, 0.005232915282249451, -0.00032878652564249933, -0.04261038824915886, -0.003382545430213213, 0.01833076775074005, -0.02223210781812668, 0.014540103264153004, 0.20342309772968292, 0.008522077463567257, 0.015231830067932606, 0.020848654210567474, 0.014021308161318302, 0.011088385246694088, -0.016034234315156937, 0.02328353375196457, -0.012139810249209404, 0.017722047865390778, 0.012077555060386658, 0.004008558578789234, -0.021761734038591385, -0.006522986106574535, 0.0016091300640255213, -0.010991543531417847, -0.021249854937195778, -0.024736160412430763, -0.004613819532096386, -0.005620282609015703, 0.010742521844804287, 0.002801494672894478, -0.010258312337100506, -0.004323294386267662, 0.03843235597014427, 0.022411957383155823, 0.01153109036386013, 0.015259499661624432, 0.026078110560774803, 0.023006843402981758, -0.003488033777102828, 9.39640995056834e-06, 0.015010477043688297, -0.014567771926522255, -0.014118149876594543, 0.008238469250500202, 0.021360531449317932, 0.007256216835230589, 0.005281336139887571, 0.002139165997505188, -0.0010773648973554373, -0.010043877176940441, 0.019285351037979126, -0.029163213446736336, 0.00885410699993372, 0.0020803692750632763, -0.008051702752709389, -0.008072455413639545, 0.020641135051846504, 0.023532554507255554, -0.008508242666721344, 0.007090202532708645, 0.011911540292203426, 0.004209159407764673, -0.005032314453274012, 0.011275151744484901, -0.00902703870087862, 0.012091388925909996, -0.006481482647359371, -0.0030090126674622297, -0.015785211697220802, -0.006799676921218634, -0.00010019234468927607, -0.009884780272841454, -0.029301559552550316, 0.024570146575570107, 0.005737876053899527, 0.033617936074733734, 0.009483578614890575, -0.006356971804052591, -0.018040241673588753, -0.012935296632349491, -0.025012850761413574, 0.006229002494364977, -0.003987806383520365, -0.021844740957021713, 0.01378612034022808, 0.028194796293973923, 0.04803352802991867, 0.01037590578198433, 0.010106132365763187, -0.011593345552682877, -0.025842923671007156, 0.005903890356421471, 0.0020924743730574846, -0.030435990542173386, 0.028554493561387062, -0.006401934195309877, 0.0011698834132403135, -0.0037768299225717783, 0.0031975083984434605, 0.014138901606202126, 0.0011603721650317311, -0.021678727120161057, 0.01068718358874321, -0.001528716878965497, -0.006229002494364977, 0.01424957811832428, -0.009787938557565212, -0.023518720641732216, -0.01051425188779831, 0.05221156030893326, 0.02044745162129402, 0.022979173809289932, -0.00955275073647499, 0.014789124950766563, -0.004613819532096386, 0.02596743404865265, 0.009407488629221916, -0.008273055776953697, -2.337280966457911e-05, -0.025925930589437485, 0.00814854446798563, -0.018150918185710907, 0.004046603571623564, 0.028748176991939545, 0.0029744263738393784, -0.02158188447356224, 0.006529903504997492, 0.014291081577539444, 0.02624412439763546, -0.004772916901856661, 0.008771099150180817, -0.004088107030838728, -0.010645680129528046, -0.021844740957021713, -0.007941027171909809, 0.014221908524632454, -0.026271793991327286, -0.02694968692958355, -0.005672161933034658, -0.03159809112548828, -0.0007423096103593707, 0.0045688571408391, 0.0038010403513908386, 0.0030314938630908728, -0.0038702129386365414, -0.013391836546361446, 0.012879958376288414, 0.0021408952306956053, 0.013578602112829685, 0.01178702898323536, 0.005845093633979559, -0.0010790942469611764, -0.0016316112596541643, 0.019949408248066902, -0.01047274749726057, 0.009608088992536068, -0.026645326986908913, -0.01961738057434559, -0.0010419138707220554, 0.016034234315156937, -0.006879225838929415, -0.017168665304780006, 0.034946050494909286, -0.034531015902757645, -0.0333135761320591, -0.018593624234199524, 0.0093106459826231, 0.011669435538351536, -0.05182419344782829, 0.003635025816038251, 0.051243141293525696, 0.017293177545070648, -0.013391836546361446, -0.006550655234605074, -0.1769714504480362, 0.0014612734084948897, -0.002995178336277604, -0.0015546565409749746, -0.014733786694705486, 0.01163484901189804, 0.00853591226041317, -0.012561763636767864, -0.026064276695251465, -0.0055130645632743835, 0.006865391042083502, -0.0026302922051399946, -0.045736994594335556, -0.01996324397623539, 0.01245108712464571, -0.013640858232975006, 0.007270051632076502, 0.024999016895890236, 0.04775683581829071, 0.012008382007479668, 0.03126606345176697, -0.017832724377512932, -0.002277511404827237, -0.0078095984645187855, 0.015148823149502277, 0.023228194564580917, -0.0062428368255496025, 0.012361163273453712, -0.0028395396657288074, -0.03422665596008301, 0.016338594257831573, 0.0034430716186761856, 0.013502512127161026, -0.0051775770261883736, -0.004229911137372255, -0.016131075099110603, -0.0078095984645187855, -0.012077555060386658, -0.011482669040560722, 0.017874227836728096, 0.04155896231532097, 0.0036626949440687895, 0.002351872157305479, -3.6937144614057615e-05, 0.018662797287106514, 0.02658998779952526, 0.026548484340310097, -0.015065815299749374, 0.01319815218448639, 0.0008780610514804721, -0.013744616881012917, -0.02263331040740013, 0.0033790867310017347, -0.009296812117099762, 0.006291257683187723, 0.010113050229847431, 0.018593624234199524, 0.029605919495224953, 0.001427551731467247, -0.004063896369189024, 0.008978617377579212, -0.016767464578151703, -0.003136982209980488, 0.00039060963899828494, -0.009580420330166817, -0.02977193333208561, 0.016324758529663086, 0.03464169055223465, 0.002149541862308979, 0.027406226843595505, -0.0005745657836087048, 0.01679513417184353, -0.009587337262928486, 0.004316376987844706, -0.0011188685894012451, -0.00469336798414588, -0.033396583050489426, 0.01452626846730709, 0.026354800909757614, -0.007339224219322205, 0.008646588772535324, 0.0144570954144001, 8.035923383431509e-05, -0.014090480282902718, -0.012914544902741909, -0.006128701847046614, 0.005035772919654846, -0.0041261520236730576, 0.005374719388782978, -0.014968973584473133, 0.03137674182653427, -0.027254046872258186, -0.025690743699669838, -0.0016350698424503207, 0.0051914118230342865, 0.016822801902890205, 0.011475752107799053, 0.007788846734911203, -0.01086703222244978, -0.006374265067279339, 0.0006411445210687816, 0.0011724773794412613, -0.028609830886125565, 0.023172857239842415, 0.029246220365166664, 0.0030833734199404716, 0.006104491651058197, -0.0010358613217249513, 0.025082023814320564, -0.022093763574957848, -0.0308233592659235, 0.020212264731526375, 0.03569311648607254, -0.006377723533660173, -0.016200248152017593, 0.008798768743872643, -0.019008660688996315, -0.02349105104804039, 0.00829380750656128, -0.01961738057434559, 0.049333974719047546, -0.036716874688863754, -0.003529537469148636, 0.0062670474871993065, 0.0026423975359648466, -0.00689306017011404, -0.10724536329507828, -0.03422665596008301, 0.021747898310422897, 0.013288076967000961, -0.004845547955483198, 0.004932013805955648, 0.0056825377978384495, 0.04712044820189476, 0.000990899046882987, 0.020710308104753494, -0.013412588275969028, -0.015826715156435966, -0.006879225838929415, -0.018441444262862206, 0.02270248346030712, -0.01361318863928318, 0.016393931582570076, -0.003697281237691641, -0.015978895127773285, 0.031349070370197296, 0.008107041008770466, -0.02292383462190628, 0.01276236493140459, 0.006495317444205284, -0.013315746560692787, -0.004039686173200607, -0.024002930149435997, 0.01400747336447239, 0.024417966604232788, 0.01262401882559061, 0.025787584483623505, -0.017722047865390778, 0.016061902046203613, -0.017224004492163658, 0.012036050669848919, -0.012900710105895996, -0.030380653217434883, 0.005544192623347044, 0.00910312868654728, -0.01841377466917038, 0.01855212077498436, -0.01566070131957531, 0.01968655176460743, -0.03765762224793434, -0.001299582188948989, 0.013896796852350235, -0.011199061758816242, 0.0327325239777565, 0.008736512623727322, -0.01068718358874321, -0.02780742757022381, -0.014858298003673553, -0.027475399896502495, -0.024168943986296654, 0.019714221358299255, 0.0022290905471891165, 0.014332585036754608, 0.012589432299137115, -0.009096210822463036, -0.0037975816521793604, -0.00962884072214365, -0.012250486761331558, 0.002813599770888686, 0.024805333465337753, -0.0033911920618265867, 0.019160840660333633, -0.009372902102768421, 0.004586150404065847, -0.01333649829030037, -0.0029225468169897795, -0.010631845332682133, -0.016961148008704185, -0.018856480717658997, 0.005015021190047264, -0.02326969802379608, 0.019589710980653763, -0.005986897740513086, -0.027101866900920868, 0.012001465074717999, 0.006114867515861988, -0.01436025369912386, -0.015287168323993683, 0.011724773794412613, -0.020558128133416176, -0.006671707611531019, 0.024929843842983246, 0.006882684305310249, -0.0036211912520229816, 0.021360531449317932, -0.025690743699669838, 0.017085658386349678, 0.017888061702251434, 0.005582237616181374, 0.007270051632076502, -0.0020717226434499025, 0.013246573507785797, 0.0023328496608883142, -0.00724929990246892, 0.030159300193190575, -0.005302087869495153, 0.005820883437991142, -0.0009684179094620049, -0.05190720036625862, 0.0062082502990961075, 0.026977356523275375, 0.0033254779409617186, 0.014387923292815685, -0.026188787072896957, 0.004828255157917738, -0.0059073492884635925, -0.008895610459148884, 0.004959682933986187, -0.04767382889986038, 0.013813789933919907, 0.004534271080046892, 0.025012850761413574, -0.019797228276729584, 0.0030107421334832907, 0.02326969802379608, 0.007408396806567907, 0.003790664253756404, 0.008065537549555302, -0.01685047149658203, 0.0007392833358608186, 0.000507987046148628, 0.01153109036386013, -0.03984348103404045, -0.007339224219322205, -0.016559945419430733, 0.0015001831343397498, -0.015038146637380123, -0.03359026834368706, 0.01319815218448639, 0.00885410699993372, 0.005865845363587141, 0.024666987359523773, -0.006177122704684734, -0.03231748938560486, -0.005305546801537275, 0.007069450803101063, 0.006287799216806889, 0.018358437344431877, -0.010451995767652988, -0.007941027171909809, 0.020654970780014992, -0.023504886776208878, -0.02617495320737362, 0.003980889450758696, -0.020405948162078857, -0.0160757377743721, 0.0008547152392566204, 0.02017076127231121, 0.03591446951031685, 0.005599530879408121, -0.01939602755010128, -0.004572316072881222, -0.006104491651058197, -0.00448239129036665, 0.007615915033966303, 0.026963520795106888, 0.01755603402853012, -0.007560576777905226, 0.04493458941578865, 0.0060871983878314495, 0.003890964901074767, -0.0125202601775527, 0.022826993837952614, -0.027461564168334007, -0.032566510140895844, -0.003090290818363428, 0.0008763317600823939, -0.011136805638670921, 0.0058831386268138885, -0.022619474679231644, 0.02335270680487156, 0.03240049630403519, 0.012707026675343513, 0.01209830678999424, -0.010707935318350792, -0.02398909442126751, 0.005720582790672779, 0.02018459513783455, 0.018801141530275345, -0.019907904788851738, -0.030242307111620903, 0.015854384750127792, 0.01103996392339468, -0.0031871325336396694, -0.004648406058549881, 0.01287304051220417, 0.007034864276647568, 0.0009857111144810915, -0.006737421732395887, 0.005326298531144857, -0.0247499942779541, 0.010403575375676155, -0.012236651964485645, 0.02526187337934971, -0.0067581734620034695, 0.007941027171909809, 0.019063998013734818, 0.01996324397623539, -0.011199061758816242, 0.02292383462190628, 0.007069450803101063, -0.024390297010540962, -0.014304915443062782, -0.00021454347006510943, -0.01896715722978115, -0.017307011410593987, 0.010645680129528046, 0.016836637631058693, 0.009289894253015518, -0.011441165581345558, 0.005789755377918482, 0.009850193746387959, -0.004817879293113947, -0.00696223322302103, 0.006301633547991514, -0.03433733060956001, -0.03046366013586521, -0.0026717958971858025, 0.007366893347352743, 0.03450334817171097, 0.014609275385737419, -0.03212380409240723, 0.042084675282239914, -0.017196334898471832, 0.01319815218448639, -0.017265507951378822, 0.004516977816820145, -0.00036034657387062907, -0.014623110182583332, 0.006152912508696318, -0.005025397054851055, -0.013329580426216125, -0.02730938419699669, -0.011939208954572678, -0.018455278128385544, 0.011669435538351536, -0.0024366085417568684, 0.07216096669435501, 0.03691055625677109, -0.014899801462888718, 0.014332585036754608, -0.008452904410660267, 0.01244417019188404, 0.025939764454960823, 0.00789952278137207, 0.022688647732138634, -0.002127060666680336, 0.020502790808677673, -0.009303729049861431, 0.0001222411374328658, -0.025234203785657883, -0.021277524530887604, -0.008757264353334904, 0.0013064994709566236, 0.025441721081733704, -0.020143091678619385, 0.007685087621212006, 0.02108384110033512, -0.006446896120905876, -0.0007552794995717704, -0.02462548390030861, -0.032843202352523804, -0.0030712683219462633, 0.02089015766978264, 0.0237677413970232, -0.00705561600625515, -0.03679988160729408, 0.025787584483623505, -0.004503143019974232, -0.020212264731526375, -0.018787307664752007, -0.01442942675203085, 0.02165105752646923, -0.020613467320799828, -0.014021308161318302, 0.0189118180423975, 0.01665678806602955, 0.01452626846730709, 0.0020284897182136774, -0.023006843402981758, -0.020571963861584663, 0.011572593823075294, -0.01079094223678112, -0.0001033267326420173, -0.014968973584473133, -0.0036834466736763716], "d9212f2b-877e-42b3-bc44-cf84c73b8311": [0.008449478074908257, -0.00313326227478683, 0.010625545866787434, -0.032200295478105545, -0.021430136635899544, 0.02171936072409153, 0.003635961329564452, -0.03233801946043968, -0.01255370769649744, -0.028509242460131645, 0.010735726915299892, 0.03272365406155586, -0.012023462913930416, -0.008649180643260479, -0.011995918117463589, 0.017050456255674362, 0.01822112500667572, -0.019116342067718506, -0.010646205395460129, 0.0025599785149097443, -0.020369647070765495, -0.002324123168364167, -0.021209774538874626, 0.004083570092916489, -0.0108941113576293, 0.010873452760279179, 0.0008685333887115121, -0.020837916061282158, -0.027242165058851242, 0.024143334478139877, 0.0065901800990104675, 0.0072788093239068985, -0.01890975423157215, -6.181521894177422e-05, -0.03343982622027397, -0.0027338573709130287, 0.006579850800335407, -0.011596512980759144, 0.011045609600841999, -0.00298520689830184, 0.03035476803779602, 0.016058828681707382, 0.007664441596716642, -0.022573260590434074, -0.0057190642692148685, 0.01845525950193405, 0.0036221889313310385, -0.0025375981349498034, 0.00042974756797775626, 0.0014185758773237467, -0.0037668009754270315, -0.0042867157608270645, -0.026112813502550125, 0.010053983889520168, -0.0006658182246610522, -0.007788394577801228, 0.01882711797952652, 0.0024239742197096348, 0.006373262032866478, 0.001135377213358879, 0.012464186176657677, 0.00880756601691246, -0.01837262324988842, -5.573591261054389e-05, -0.009757873602211475, -0.0007639478426426649, -0.014282166957855225, -0.005801699589937925, -0.011327948421239853, -0.008766247890889645, 0.04759804159402847, 0.0322553850710392, -0.006541976239532232, -0.014068691991269588, -0.017298361286520958, -0.009661465883255005, -0.011927055194973946, -0.01477797981351614, -0.007375217042863369, 0.005515918601304293, 0.02145768143236637, -0.018496576696634293, -0.02696671336889267, 0.009709669277071953, 0.025286458432674408, 0.020548690110445023, 0.03236556425690651, 0.016072602942585945, -0.034899719059467316, 0.00798809714615345, -0.005009776446968317, -0.013703717850148678, 0.03867340832948685, 0.006541976239532232, 0.005398851819336414, 0.0037358126137405634, 0.008325525559484959, 0.016857638955116272, -0.017408542335033417, -0.020066650584340096, -0.013614196330308914, 0.007650668732821941, -0.0211822297424078, -0.011224653571844101, -0.026787670329213142, -0.016141464933753014, 0.013986055739223957, -0.009083017706871033, 0.002790669212117791, 0.013924079947173595, -0.032806288450956345, 0.03016195259988308, -0.008676726371049881, -0.008470137603580952, 0.01133483462035656, -0.02392297424376011, 0.03583625704050064, -0.050269920378923416, -0.024708010256290436, -0.008855769410729408, 0.008938404731452465, -0.00022552601876668632, 0.04126265272498131, -0.01776663027703762, 0.013972283340990543, 0.011892624199390411, 0.005026991944760084, 0.0010303612798452377, 5.6220105761894956e-05, -0.023027755320072174, -0.01513606682419777, -4.642866042559035e-05, 0.021746905520558357, 0.015246246941387653, -0.013669286854565144, 0.01917143352329731, -0.02065887115895748, -0.0085183409973979, -0.012891136109828949, -0.018579211086034775, 0.028288882225751877, 0.022339126095175743, 0.00785725750029087, -0.01403426006436348, -0.013469584286212921, 0.030327223241329193, 0.004503633826971054, 0.00920697022229433, 0.010040211491286755, 0.0034362589940428734, 0.02053491771221161, -0.01746363192796707, -0.01681632176041603, -0.0009382570860907435, 0.016651051118969917, 0.0022363229654729366, -0.0025599785149097443, 0.025079870596528053, -0.01795944571495056, -0.004124888218939304, 0.00014687166549265385, 0.009909371845424175, -0.011589626781642437, -0.00463103037327528, -0.013331858441233635, 0.043493811041116714, 0.022118765860795975, -0.014764207415282726, -0.008614749647676945, -0.01120399497449398, -0.0006227788981050253, 0.016292963176965714, -0.03175957128405571, 0.004940913524478674, 0.019543292000889778, 0.00901415478438139, -0.0002709325053729117, -0.005071753170341253, -0.004947799723595381, -0.03264101594686508, 0.019901379942893982, -0.003770244074985385, 0.002198448171839118, 0.037791963666677475, -0.01966724544763565, -0.034211091697216034, 0.01048093382269144, 0.006745121441781521, -0.018923526629805565, -0.0007191869663074613, 4.559477383736521e-05, 0.018469031900167465, -0.011947713792324066, -0.020562464371323586, -0.6275889873504639, -0.00039058178663253784, 0.013393835164606571, -0.02236667089164257, 0.011644717305898666, -0.009427331387996674, 0.024088244885206223, -0.0003602390643209219, -0.016912730410695076, 0.033109284937381744, 0.013476470485329628, 0.007051561493426561, 0.00023241230519488454, -0.012223165482282639, -0.005550350062549114, -0.014805524609982967, 0.0040284800343215466, -0.01973610930144787, -0.02670503407716751, 0.019254067912697792, -0.003546439576894045, 0.01209232583642006, -0.011080041527748108, 0.008848883211612701, -8.182849705917761e-05, -0.0016595959896221757, 0.018579211086034775, -0.013621082529425621, 0.015797151252627373, 0.004593155812472105, -0.020107967779040337, 0.02400560863316059, 0.010350095108151436, 0.003078171983361244, 0.03784705325961113, -0.004224739037454128, -0.015149839222431183, 0.023936746641993523, 0.0210307314991951, 0.049388475716114044, -0.0217882227152586, -0.017201954498887062, 0.023895427584648132, 0.015962421894073486, -0.0005991072976030409, 0.0039596171118319035, 0.021925948560237885, 0.010777045041322708, -0.0014504248974844813, -0.014488755725324154, -0.001724155037663877, -0.01040518470108509, -0.0033036977984011173, 0.011011178605258465, 0.03131885081529617, -0.0008087087189778686, 0.024942144751548767, -0.02418465167284012, 0.009447990916669369, 0.006807098165154457, -0.0003258076321799308, 0.010398298501968384, -0.025134960189461708, -0.024666693061590195, -0.04184110090136528, 0.0029972579795867205, 0.01692650280892849, -0.02985895611345768, 0.009689010679721832, -0.018854662775993347, 0.02571340836584568, -0.008972836658358574, -0.0006662486121058464, -0.028206245973706245, 0.008559659123420715, 0.010115960612893105, 0.02297266572713852, 0.001205961685627699, -0.007106652017682791, 0.011086927726864815, 0.012202506884932518, -0.007106652017682791, -0.026498446241021156, -0.01856543868780136, 0.021512771025300026, 0.013669286854565144, -0.016554642468690872, -0.005450498778373003, -0.002570308046415448, 0.01232646033167839, -0.00695171020925045, 0.04423753172159195, -0.011245312169194221, -0.0337703675031662, -0.015108521096408367, 0.03892131522297859, -0.015067203901708126, 0.007444079965353012, -0.026636172086000443, -0.02407447248697281, -0.022655896842479706, -0.01574205979704857, -0.0060668219812214375, -0.009909371845424175, 0.025286458432674408, 0.029611049219965935, 0.002213942352682352, -0.017009137198328972, 0.02925296314060688, -0.03308174014091492, 0.0029042931273579597, 0.006015175022184849, -0.0014874387998133898, -0.033797912299633026, 0.01647200621664524, -0.022008584812283516, 0.0012231774162501097, -0.0017577256076037884, 0.014406119473278522, -0.029032601043581963, 0.00045965990284457803, -0.0031625288538634777, 0.016857638955116272, 0.0028474810533225536, 0.0034259294625371695, 0.022339126095175743, 0.012044122442603111, -0.0021795108914375305, 0.01669236831367016, -0.0035912005696445704, -0.0025651431642472744, -0.017133090645074844, 0.004355578683316708, -0.017904356122016907, 0.012870477512478828, 0.005116513930261135, 0.035781167447566986, -0.002308628987520933, -0.0048617213033139706, -0.03754405677318573, -0.01802830956876278, -0.0017232942627742887, 0.012257597409188747, -0.01833130605518818, -0.004348692484200001, -0.045669879764318466, -0.009076130576431751, 0.014791752211749554, -0.014068691991269588, 0.001919553498737514, -0.023716384544968605, -0.011699807830154896, -0.007698873057961464, 0.02342716045677662, -0.025727180764079094, 0.002770010381937027, 9.280352242058143e-05, -0.04806630685925484, -0.019846288487315178, -0.038893770426511765, -0.02061755396425724, 0.018000762909650803, -0.00620110472664237, 0.00042695002048276365, -0.013648628257215023, -0.0003346306912135333, 0.010845907963812351, -0.004562167450785637, -0.01977742649614811, -0.033219464123249054, 0.011389924213290215, -0.002277640625834465, 0.011982145719230175, 0.014171985909342766, -0.017449859529733658, 0.0037461421452462673, -0.028702059760689735, -0.001518427045084536, -0.005216365214437246, -0.003987162373960018, 0.015879785642027855, 0.021801995113492012, -0.0058464608155190945, -0.004909925162792206, 0.03294401243329048, 0.025534365326166153, 0.0003077310975641012, 0.02130618318915367, -0.03126375749707222, 0.02023192122578621, 0.0008483049459755421, -0.007630010135471821, 0.001924718264490366, 0.015921104699373245, -0.019378021359443665, 0.0216367244720459, -0.02461160160601139, 0.014447437599301338, 0.00043706424185074866, 0.017794175073504448, 0.011389924213290215, 0.012085439637303352, 0.0018937299028038979, 0.0016690646298229694, 0.01201657671481371, -0.017174407839775085, 0.01403426006436348, -0.016871411353349686, 0.02834397181868553, 0.013442039489746094, -0.0004420137847773731, -0.0063009560108184814, -0.005150945391505957, -0.005133729428052902, 0.006438681855797768, 0.032696109265089035, 0.011913282796740532, 0.003577427938580513, 0.008745589293539524, 0.02198104001581669, 0.011513877660036087, -0.00560199748724699, 0.036690156906843185, -0.012333346530795097, -0.002375770127400756, 0.017257044091820717, -0.015301337465643883, 0.022724758833646774, 0.007223718799650669, -0.005825801752507687, 0.009420445188879967, 0.01845525950193405, 0.02403315342962742, 0.01776663027703762, 0.043493811041116714, 0.029005056247115135, 0.04043629765510559, -0.006466226652264595, 0.03817759454250336, -0.0015408075414597988, -0.00636293226853013, 0.014406119473278522, 0.02225649170577526, -0.02012174017727375, 0.016348054632544518, -0.00731324078515172, 0.0011112751672044396, -0.00888331513851881, -0.005643315147608519, 0.014805524609982967, 0.01046027522534132, 0.0134489256888628, -0.02385411038994789, -0.0005642454489134252, 0.014667798765003681, -0.023757701739668846, 0.006683145184069872, 0.013559105806052685, 0.012085439637303352, 0.014089350588619709, 0.020562464371323586, -0.018689392134547234, 0.01388276182115078, -0.004297045525163412, 0.0066659292206168175, -4.1855735616991296e-05, -0.004303931724280119, -0.029886500909924507, 0.004806630779057741, -0.027779296040534973, 0.0002004556154133752, -0.00908990390598774, -0.01841394044458866, -0.011403697542846203, -0.02465292066335678, -0.01010218821465969, 0.0019229965982958674, 0.023688839748501778, 0.005564122926443815, 0.0062114340253174305, -0.03646979480981827, -0.030134407803416252, 0.029914045706391335, 0.010150392539799213, 0.004930584225803614, -0.014901932328939438, -0.0068243141286075115, -0.015411518514156342, 0.010432730428874493, -0.0009313707705587149, -0.0040319231338799, 0.010935429483652115, 0.010983633808791637, -0.011823761276900768, -0.003539553377777338, 0.02342716045677662, 0.0589466467499733, -0.027820613235235214, -0.012071667239069939, 0.013848329894244671, -0.009530626237392426, -0.00034517530002631247, -0.013166587799787521, -0.03415600210428238, 0.03624943271279335, -0.03583625704050064, -0.0423644594848156, -0.04137283191084862, -0.031098488718271255, -0.013758808374404907, 0.009868054650723934, 0.00604616291821003, -0.04195128381252289, -0.0005913602071814239, -0.010453389026224613, 0.012863590382039547, 0.00641802279278636, 0.001762029598467052, 0.01517738401889801, 0.017201954498887062, -0.01906125247478485, -0.016141464933753014, 0.013476470485329628, 0.03266856074333191, 0.0682569146156311, 0.004000934772193432, 0.0010148670990020037, 0.013400721363723278, -0.017325907945632935, -0.03823268413543701, -0.018097171559929848, -0.01593487709760666, 0.03622188791632652, 0.0026185119058936834, -0.02324811741709709, 0.00597041379660368, 0.009062358178198338, -0.020603781566023827, 0.0074234213680028915, -0.004586269613355398, -0.008993495255708694, -0.012057894840836525, -0.004004377871751785, 0.006752008106559515, 0.012863590382039547, -0.003444866742938757, 0.01924029551446438, 0.012712092138826847, 0.02834397181868553, 0.008408160880208015, 0.03787459805607796, 0.017752857878804207, -0.0007880498887971044, -0.022297808900475502, -0.01947443000972271, 0.010343207977712154, 0.0072650364600121975, 0.030382314696907997, -0.02293134666979313, 0.04495370388031006, 0.0007226301240734756, -0.01681632176041603, -0.018840890377759933, 0.006128798704594374, 0.010295004583895206, 0.03682788088917732, 0.018951071426272392, 0.010425844229757786, 0.01048093382269144, -0.017587585374712944, -0.02601640485227108, 0.020369647070765495, -0.01578337885439396, -0.014378574676811695, 0.015149839222431183, 0.019804971292614937, -0.017105545848608017, 0.026085268706083298, -0.0029215088579803705, -0.019295386970043182, 0.004686120897531509, 0.001947098644450307, -0.020052878186106682, -0.019157661125063896, -0.04090456664562225, -0.008456365205347538, 0.011913282796740532, 0.004283272661268711, -0.021691815927624702, -0.012388437055051327, -0.012574366293847561, -0.002599574625492096, -0.03228292986750603, 0.014530072920024395, -0.000850456883199513, -0.060158632695674896, -0.04729504510760307, -0.00746473902836442, 0.030878126621246338, -0.008835110813379288, -0.004383123945444822, 0.0006021200097166002, 0.0018713494064286351, 0.01837262324988842, 0.022958893328905106, -0.03275119885802269, 0.0008065567817538977, -0.021430136635899544, 0.0006546279764734209, 0.004903038963675499, -0.017284588888287544, 0.0007118702633306384, 0.006996471434831619, 0.0014237405266612768, -0.01395851094275713, -0.006139128003269434, 0.021196002140641212, -0.0054987031035125256, 0.005333431996405125, 0.0034121570643037558, 0.02541041187942028, 0.01173423882573843, 0.0325583815574646, -0.03288892284035683, 0.005495260003954172, -0.024102017283439636, -0.0079123480245471, -0.017022909596562386, 0.024405013769865036, 0.012877363711595535, -0.00649377191439271, -0.00935846846550703, -0.016348054632544518, -0.005329988896846771, 0.020039105787873268, 0.003911413252353668, -0.0030816150829195976, -0.007822826504707336, 0.03024458885192871, -0.02510741539299488, -0.008284207433462143, 0.0325583815574646, 0.02530023083090782, -0.0008814451866783202, -0.023675067350268364, -0.020631326362490654, 0.03688297048211098, 0.011961487121880054, -0.006338830571621656, 0.028233790770173073, 0.019336704164743423, -0.012057894840836525, -0.015163611620664597, 0.01133483462035656, -0.01367617305368185, 0.022766076028347015, -0.004314261022955179, -0.0004544951661955565, -0.01278095506131649, 0.003326078411191702, -0.0082153445109725, 0.004603485111147165, -0.0279583390802145, 0.0027407435700297356, -0.0268978513777256, -0.0013574600452557206, 0.0016311900690197945, -0.007705759257078171, 0.01776663027703762, -0.024969689548015594, -0.012491730973124504, 0.007361444644629955, -0.0021691815927624702, 0.0211822297424078, 0.007774622179567814, -0.010370753705501556, -0.011265971697866917, -0.01947443000972271, -0.01806962676346302, -0.026305630803108215, -0.004737767856568098, -0.004207523539662361, 0.04881002753973007, 0.006228649988770485, 0.01180998794734478, 0.008463251404464245, 0.00477219931781292, 0.004434770904481411, -0.01403426006436348, -0.0027820614632219076, -0.02651221863925457, -0.005891221575438976, 0.005326545797288418, 0.0003912273677997291, 0.015769604593515396, -0.0021588520612567663, 0.0010579064255580306, -0.014543845318257809, 0.006373262032866478, 0.03652488440275192, -0.0159761942923069, 0.0043762377463281155, -0.018207352608442307, -0.03803987056016922, -0.00634227367118001, 0.020397191867232323, -0.003095387713983655, 0.005746609531342983, -0.03175957128405571, -0.0047412109561264515, 0.011575854383409023, 0.008174027316272259, 0.03175957128405571, 0.016554642468690872, 0.019501974806189537, -0.009868054650723934, 0.0004928001435473561, 0.022118765860795975, -0.01806962676346302, -0.019722336903214455, 0.0004575079365167767, -0.04801121726632118, -0.009868054650723934, 0.005450498778373003, 0.01921275071799755, 0.018345078453421593, -0.012877363711595535, 0.020796597003936768, 0.0052198083139956, 0.022380445152521133, -0.008050073869526386, -0.019033707678318024, 0.018248669803142548, -0.017408542335033417, 0.005712178070098162, -0.02081036940217018, -0.00701713003218174, 0.018317533656954765, -0.029115237295627594, -0.016788776963949203, 0.012443526647984982, 0.017133090645074844, -0.021967267617583275, -0.011155790649354458, 0.015810923650860786, 0.0037874598056077957, 0.030437404289841652, 0.004868607502430677, 0.008256662636995316, 0.0331643745303154, -0.0054298401810228825, -0.015879785642027855, -0.00813959538936615, 0.017780402675271034, -0.02195349521934986, -0.0006580711342394352, 0.04500879347324371, -0.006603952497243881, -0.014846842736005783, 0.02130618318915367, 0.003570541739463806, -0.004534622188657522, -0.02996913716197014, 0.025314003229141235, 0.0038115617353469133, 0.004689563997089863, -0.035891346633434296, -0.020328329876065254, -0.00844259187579155, 0.025782272219657898, 0.004730881657451391, 0.030024226754903793, -0.0064834426157176495, 0.0025909668765962124, -0.014502528123557568, 0.05453941971063614, -0.005367863457649946, 0.015989966690540314, 0.0037564714439213276, -0.00182831019628793, -0.02894996479153633, -0.0032641016878187656, -0.0104396166279912, -0.014543845318257809, 0.021967267617583275, 0.0278068408370018, 0.0018730710726231337, 0.014502528123557568, 0.01731213368475437, 0.02195349521934986, 0.0017336236778646708, -0.01462648157030344, -0.019143886864185333, 0.026649944484233856, 0.012230051681399345, 0.0013273324584588408, -0.01225071121007204, -0.007506056688725948, 0.016706140711903572, -0.01997024193406105, -0.01806962676346302, 0.003856322728097439, -0.002437746850773692, 0.010260572656989098, 0.01418575830757618, -0.0027045905590057373, -0.011038723401725292, -0.002709755441173911, -8.973697549663484e-05, -0.012278256006538868, 0.0005521944258362055, 0.0023137936368584633, -0.01322167832404375, -0.029638594016432762, -0.021498998627066612, -0.004276386462152004, 0.013159701600670815, 0.014227076433598995, 0.004837619140744209, -0.014027373865246773, 0.0019316044636070728, 0.04186864569783211, -0.010164164938032627, -0.034817084670066833, 0.026952940970659256, 0.006758894305676222, -0.040794383734464645, 0.03737878426909447, 0.0009313707705587149, 0.003701381152495742, 0.022339126095175743, 0.0074096485041081905, -0.016595959663391113, -0.019405566155910492, 0.01619655452668667, -0.0020555576775223017, 0.01841394044458866, 0.00038240430876612663, -0.004534622188657522, 0.00633194437250495, 0.015907330438494682, -0.0016991922166198492, -0.025093642994761467, -0.0055365776643157005, -0.003894197288900614, -0.005268012173473835, 0.014447437599301338, -0.008015641942620277, 0.005577895324677229, -0.01418575830757618, 0.01802830956876278, 0.009881827048957348, -0.03674524649977684, -0.015287565067410469, -0.02016305923461914, -0.02191217616200447, -0.009599489159882069, -0.013758808374404907, 0.003052348271012306, -0.009537512436509132, -0.008573431521654129, 0.02251817099750042, -0.006476556416600943, 0.009792305529117584, 0.007182401139289141, -0.021774450317025185, -0.0058705625124275684, 0.019309159368276596, 0.000713591871317476, -0.024859508499503136, -0.00829109363257885, 0.0015476938569918275, -0.03792968764901161, -0.0024825078435242176, -0.01722949929535389, 0.03991293907165527, 0.016568414866924286, -0.025768499821424484, -0.01795944571495056, -0.020548690110445023, -0.056467581540346146, -0.010047097690403461, -0.03702069818973541, 0.019336704164743423, 0.04352135583758354, 0.03335719183087349, 0.012443526647984982, 0.03611170873045921, -0.017215726897120476, 0.007939892821013927, -0.012588138692080975, -0.0023895427584648132, -0.027641570195555687, -0.020948095247149467, -0.012842931784689426, -0.021622952073812485, -0.03674524649977684, -0.008001869544386864, 0.02631940320134163, -0.010859680362045765, 0.012966885231435299, 0.023592431098222733, -0.03145657479763031, -0.017064228653907776, 0.007147969678044319, 0.007712645456194878, 0.02845415286719799, 0.01833130605518818, 0.01878580078482628, -0.026870306581258774, 0.008559659123420715, 0.018166035413742065, -0.00785725750029087, -0.030602674931287766, 0.00924140214920044, 0.02681521512567997, -0.005281785037368536, 0.0028956851456314325, -0.019749881699681282, -0.023826565593481064, -0.007871029898524284, -0.008821338415145874, 0.005133729428052902, -0.014171985909342766, -0.00905547197908163, 0.020521145313978195, 0.008022528141736984, -0.01802830956876278, -0.017546268180012703, 0.01270520593971014, 0.009689010679721832, -0.00048591388622298837, -0.0022259934339672327, -0.04156564921140671, -0.002625398337841034, -0.013793240301311016, 0.0005074335495010018, 0.023647522553801537, -0.016830094158649445, -0.017560040578246117, 0.0083668427541852, -0.031126033514738083, -0.006232093088328838, 0.02096186764538288, -0.012739637866616249, -0.007395876105874777, -0.008477023802697659, -0.012243825010955334, 0.002308628987520933, -0.006948267109692097, 0.01487438753247261, -0.016954047605395317, -0.0009718277724459767, -0.010115960612893105, -0.0005797395715489984, -0.04233691468834877, -0.001998745836317539, 0.014654026366770267, -0.016265418380498886, 0.014013601467013359, 0.19623173773288727, -0.0014762484934180975, 0.017146863043308258, 0.027021804824471474, 0.020934322848916054, 0.016334280371665955, -0.009585716761648655, 0.015163611620664597, -0.021127140149474144, 0.014351029880344868, 0.012519275769591331, -0.004062911495566368, -0.027834385633468628, -0.0034844630863517523, 0.005292114336043596, -0.01262945681810379, -0.025658318772912025, -0.02085168845951557, -0.0005913602071814239, -0.008256662636995316, 0.022890029475092888, -0.0008224813500419259, -0.013531561009585857, -0.009000381454825401, 0.027972111478447914, 0.021554090082645416, 0.005137172527611256, 0.017752857878804207, 0.014791752211749554, 0.01795944571495056, -0.005825801752507687, -0.006108139641582966, 0.012946226634085178, -0.02122354693710804, -0.016416916623711586, 0.005908437073230743, 0.03707578778266907, 0.005935982335358858, 0.007478511426597834, -0.002492837142199278, 0.015948649495840073, -0.01608637534081936, 0.029032601043581963, -0.06313351541757584, 0.0052335807122290134, 0.0025530923157930374, -0.009888713248074055, 0.007623123470693827, 0.00634227367118001, 0.017091773450374603, -0.006459340453147888, -0.0026925397105515003, 0.03525780886411667, 0.002554813865572214, -0.00954439863562584, 0.008835110813379288, 0.0010716789402067661, 0.0035912005696445704, -0.003770244074985385, 0.0015726565616205335, -0.00954439863562584, -0.00447953213006258, -0.005261125974357128, -0.007953665219247341, -0.03454163298010826, 0.00816025398671627, 0.0012274812906980515, 0.02845415286719799, 0.0053024436347186565, 0.005140616092830896, -0.027214620262384415, -0.01817980781197548, -0.026333175599575043, 0.004272943362593651, -0.03005177155137062, -0.02324811741709709, 0.025121187791228294, 0.024887053295969963, 0.04434771090745926, 0.014502528123557568, -0.005774154793471098, -0.02324811741709709, -0.01947443000972271, -0.005502146203070879, -0.0022862483747303486, -0.03556080535054207, 0.009785419330000877, -0.0026873748283833265, 0.0012369499308988452, -0.008697384968400002, 0.005746609531342983, 0.012216279283165932, 0.005026991944760084, -0.011672262102365494, 0.007085992954671383, -0.005646758247166872, -0.003608416300266981, 0.0202732402831316, -0.021746905520558357, -0.03666261211037636, -0.010198595933616161, 0.04982919991016388, 0.026911623775959015, 0.036497339606285095, -0.003038575639948249, 0.013710604049265385, -0.002231158083304763, 0.01125908549875021, 0.015287565067410469, -0.008050073869526386, -0.0025651431642472744, -0.03677279129624367, 0.0037840167060494423, -0.01180998794734478, 0.005323102697730064, 0.011871964670717716, 0.009799191728234291, -0.0031263758428394794, -0.0005552071961574256, 0.02035587467253208, 0.012595025822520256, 0.001998745836317539, -0.0002612486423458904, 0.0022810837253928185, -0.007154855877161026, -0.02191217616200447, -0.019763654097914696, 0.008614749647676945, -0.02944577857851982, -0.026195449754595757, 0.0021812324412167072, -0.022091219201683998, 0.011796215549111366, 0.007457852829247713, -0.010701295919716358, -0.010301890783011913, -0.020934322848916054, -0.021925948560237885, 0.019309159368276596, 0.006218320224434137, 0.020259466022253036, 0.001630329294130206, 0.01125908549875021, 0.002160573611035943, -0.0019884163048118353, 0.015452835708856583, -0.017849264666438103, 0.006245865486562252, -0.029115237295627594, -0.00811893679201603, -0.00813959538936615, 0.015700742602348328, -0.0004366338544059545, -0.015989966690540314, 0.030988307669758797, -0.034899719059467316, -0.039279401302337646, -0.028481697663664818, 0.0007716949330642819, 0.014171985909342766, -0.05374061316251755, 0.011830647476017475, 0.04960883781313896, 0.015907330438494682, -0.011617172509431839, -0.016761230304837227, -0.1758483201265335, -0.006917278748005629, -0.0024584056809544563, -0.01867561973631382, -0.0012834323570132256, 0.013683059252798557, 0.006879404187202454, -0.017105545848608017, -0.024735555052757263, -0.01143124233931303, 0.004410669207572937, 0.009585716761648655, -0.03845304623246193, -0.011341720819473267, 0.0012292028404772282, -0.02038341946899891, -0.005405738018453121, 0.029721230268478394, 0.05922209843993187, 0.00478252861648798, 0.03197993338108063, -0.02312416397035122, -0.015879785642027855, 0.0002741604403126985, 0.01395851094275713, 0.01722949929535389, -0.0023396171163767576, -0.00298520689830184, -0.006152900401502848, -0.03644225001335144, 0.017408542335033417, 0.010171051137149334, 0.01986006274819374, -0.004603485111147165, -0.0010983633110299706, -0.0027665672823786736, 0.0040319231338799, -0.019832516089081764, -0.013283654116094112, 0.018083399161696434, 0.03666261211037636, -0.0029507754370570183, 0.01787680946290493, -0.005326545797288418, 0.017436087131500244, 0.03941712900996208, 0.03104339726269245, -0.018014535307884216, 0.026112813502550125, 0.0037977893371134996, 0.02433614991605282, -0.024019381031394005, -0.000708427163772285, 0.001508097629994154, 0.008635408245027065, 0.011121359653770924, 0.01441989280283451, 0.02925296314060688, 0.002401593839749694, -0.002732135821133852, 0.006459340453147888, -0.027490071952342987, -0.01105249673128128, 0.006872517988085747, -0.010969860479235649, -0.025685863569378853, -0.003653177060186863, 0.02038341946899891, -0.005571009125560522, 0.024859508499503136, 0.002448076382279396, 0.009324037469923496, -0.0076437825337052345, 0.011396810412406921, 0.014213304035365582, -0.012340232729911804, -0.025437956675887108, 0.0056123267859220505, 0.028702059760689735, -0.019309159368276596, 0.003635961329564452, 0.017091773450374603, 0.011162676848471165, -0.010267458856105804, -0.007203059736639261, -0.0074234213680028915, -0.000792353821452707, -0.012354005128145218, 0.008077618665993214, -0.01852412149310112, 0.024983461946249008, -0.0140549186617136, -0.02167804352939129, 0.009200084023177624, 0.007175514940172434, 0.02035587467253208, 0.009923144243657589, 0.012794727459549904, -0.0033277999609708786, -0.017367225140333176, 0.015122294425964355, 0.0063939206302165985, -0.03572607412934303, 0.028082292526960373, 0.01901993528008461, 0.012966885231435299, -0.008669840171933174, 0.0077333045192062855, 0.025988860055804253, -0.019873835146427155, -0.03153920918703079, 0.021209774538874626, 0.03222784027457237, 0.006655599921941757, -0.020672643557190895, 0.025837361812591553, -0.01574205979704857, -0.030712855979800224, 0.007829712703824043, -0.015301337465643883, 0.030685311183333397, -0.026043951511383057, -0.006087481044232845, 0.01508097629994154, -0.001323028584010899, -0.007013686932623386, -0.12075798958539963, -0.03283383324742317, 0.019639700651168823, 0.020259466022253036, -0.002584080444648862, 0.006535089574754238, 0.007864143699407578, 0.04721240699291229, -0.011534536257386208, 0.016430689021945, -0.010914770886301994, -0.012753410264849663, 0.0009838787373155355, -0.008993495255708694, 0.007519829086959362, 0.007223718799650669, 0.00905547197908163, -0.005402294918894768, 0.007292581722140312, 0.022352898493409157, 0.011830647476017475, -0.004610371310263872, 0.011383038014173508, 0.013868989422917366, -0.006638383958488703, -0.0208792332559824, -0.02906014584004879, 0.008669840171933174, 0.01886843703687191, 0.004996003583073616, 0.022311581298708916, -0.021361272782087326, 0.013855217024683952, -0.02167804352939129, 0.012395323254168034, -0.003608416300266981, -0.028316427022218704, 0.009379127994179726, 0.025644546374678612, -0.026043951511383057, 0.01487438753247261, -0.006404250394552946, 0.018014535307884216, -0.026374492794275284, -0.003506843466311693, 0.004858278203755617, -0.016155237331986427, 0.04341117665171623, 0.018510349094867706, -0.02742120809853077, -0.03484462946653366, -0.0079123480245471, -0.04666150361299515, -0.017449859529733658, 0.0211822297424078, 0.02411578968167305, 0.008759361691772938, 0.009069244377315044, -0.009227629750967026, -0.004025036934763193, -0.001373815000988543, 0.0027717319317162037, -0.01283604558557272, 0.01757381297647953, 0.004909925162792206, 0.016100147739052773, -0.003074728650972247, -0.005237023811787367, -0.011038723401725292, 0.007705759257078171, -0.006404250394552946, -0.00811893679201603, -0.032310474663972855, 0.012491730973124504, -0.00515438849106431, 0.004100786056369543, -0.00012868754856754094, -0.025355322286486626, 0.0027131985407322645, 0.006700360681861639, 0.00021756374917458743, -0.012588138692080975, -0.010095302015542984, -0.023151708766818047, -0.01061177346855402, 0.002153687411919236, 0.017697766423225403, -0.015053431503474712, 0.008594091050326824, -0.0267463531345129, 0.004069797694683075, 0.022986438125371933, -0.006459340453147888, 0.008456365205347538, -0.03523026406764984, 0.00811893679201603, 0.007760849315673113, 0.000417696574004367, 0.02545172907412052, 0.008965950459241867, -0.008428819477558136, 0.002515217522159219, -0.05200526490807533, 0.002139914780855179, 0.013462698087096214, -0.001876514172181487, 0.012643229216337204, -0.02171936072409153, 0.012037236243486404, -0.0047790855169296265, -0.018964843824505806, -0.007588692009449005, -0.036800336092710495, 0.021044503897428513, -0.006700360681861639, 0.011162676848471165, -0.014640253968536854, 0.003722039982676506, 0.023234345018863678, 0.008401274681091309, -0.006387034431099892, 0.0027252493891865015, -0.010040211491286755, 0.0015812644269317389, 0.005206035450100899, 0.008910859934985638, -0.03313682973384857, -0.0001963668764801696, -0.0030024226289242506, 0.006614282261580229, -0.009757873602211475, -0.0253277774900198, 0.009351582266390324, 0.020782824605703354, -0.00283887330442667, 0.025851134210824966, -0.018097171559929848, -0.047487858682870865, -0.006817427463829517, -0.0020676087588071823, 0.008821338415145874, 0.024143334478139877, 0.004930584225803614, -0.013331858441233635, 0.01586601324379444, -0.013889648020267487, -0.003983719274401665, -0.0023671623785048723, -0.018551666289567947, -0.003839106997475028, 0.021168457344174385, 0.017546268180012703, 0.04076683893799782, 0.013586651533842087, -0.005488373804837465, -0.02834397181868553, -0.0038666522596031427, -0.00905547197908163, 0.006359489168971777, 0.029941590502858162, 0.027324801310896873, 0.0012817108072340488, 0.026870306581258774, -0.008470137603580952, 0.005440169479697943, -0.007630010135471821, 0.012119871564209461, -0.023261889815330505, -0.04710222780704498, -0.00829109363257885, 0.004903038963675499, -0.027682887390255928, -0.012078553438186646, -0.019226523116230965, 0.019887607544660568, 0.02944577857851982, 0.016292963176965714, 0.008965950459241867, -0.022352898493409157, -0.017504950985312462, 0.0001128706062445417, 0.01997024193406105, 0.02670503407716751, -0.018496576696634293, -0.02324811741709709, 0.015108521096408367, 0.022917574271559715, 0.021168457344174385, 0.002084824489429593, 0.004551838152110577, 0.007203059736639261, 0.01662350632250309, -0.011575854383409023, 0.016609732061624527, -0.02297266572713852, 0.01593487709760666, -0.0032434428576380014, 0.017931900918483734, 0.008229116909205914, -0.0007772900280542672, 0.01441989280283451, 0.02324811741709709, -0.004052582196891308, 0.029390688985586166, -0.0034310943447053432, -0.02411578968167305, -0.009475535713136196, -0.0037426988128572702, -0.01893729902803898, -0.028729604557156563, 0.007981210947036743, 0.02202235721051693, 0.007113538216799498, -0.02612658590078354, 0.006672815419733524, 0.007843485102057457, -0.015342655591666698, 0.008766247890889645, -0.005767268128693104, -0.026994258165359497, -0.027820613235235214, 0.0063698189333081245, -0.005994515959173441, 0.026002632454037666, 0.013848329894244671, -0.015769604593515396, 0.03624943271279335, -0.0025066097732633352, 0.027985885739326477, -0.016375599429011345, 0.013834557496011257, -0.02035587467253208, -0.012939339503645897, 0.01487438753247261, -0.01283604558557272, -0.023055300116539, -0.018895981833338737, -0.012037236243486404, -0.009200084023177624, -0.0004118862561881542, -0.0019229965982958674, 0.08632653951644897, 0.02355111390352249, -0.02426728792488575, 0.0202732402831316, 0.0005212061223573983, 0.005856790114194155, 0.016113920137286186, 0.01472288928925991, 0.01727081649005413, -0.01156208198517561, 0.0405464805662632, -0.017243271693587303, -0.00514405919238925, -0.020782824605703354, -0.023496024310588837, -0.006769223604351282, -0.003016195259988308, 0.014075578190386295, -0.009310265071690083, -0.001660456764511764, 0.017849264666438103, -0.0010570456506684422, -0.013049520552158356, -0.001972922356799245, -0.027448754757642746, -0.0023516681976616383, 0.03192484378814697, 0.018744483590126038, -0.00024360252427868545, -0.030823037028312683, 0.0027183631900697947, 0.0004816099535673857, -0.02966613881289959, -0.017794175073504448, -0.018042081966996193, 0.018124716356396675, -0.007698873057961464, -0.010728840716183186, 0.01897861622273922, 0.012615684419870377, 0.018840890377759933, 0.009819850325584412, -0.009950689971446991, -0.01951574720442295, 0.006999914534389973, -0.014860615134239197, -0.0079123480245471, -0.002807884942740202, -0.006672815419733524], "5a34023f-6c80-4bc8-a9da-f80343581e69": [-0.009734823368489742, -0.009211372584104538, 0.018817033618688583, -0.04649873822927475, -0.011502319015562534, 0.037171799689531326, -0.01358252577483654, -0.042773399502038956, -0.026539631187915802, -0.038177911192178726, 0.01356213167309761, 0.028497472405433655, 0.0026359481271356344, -0.011815030127763748, -0.0035383908543735743, 0.01174705009907484, 0.022134486585855484, -0.015404406934976578, -0.008735508657991886, -0.011930597014725208, -0.013208632357418537, -0.014004006050527096, -0.019782358780503273, 0.012902719900012016, -0.02619972825050354, 0.002522080671042204, -0.003871495835483074, -0.011821828782558441, -0.009571670554578304, 0.01208015438169241, 0.004432335961610079, 0.006764071062207222, -0.019306493923068047, -0.00800811592489481, -0.02095162495970726, 0.004731450695544481, 0.00301494006998837, -0.010156303644180298, 0.027953626587986946, -0.001462432905100286, 0.022746313363313675, 0.006794662214815617, -0.00667569600045681, -0.005418054759502411, -0.014180755242705345, 0.018001265823841095, -0.0028755797538906336, 0.001516817370429635, -0.006852445658296347, 0.003902086988091469, -0.014398293569684029, -9.968719677999616e-05, -0.028850970789790154, 0.016954364255070686, -0.00597209669649601, -0.01740303635597229, 0.019619204103946686, 0.0009466300252825022, 0.016995152458548546, 0.005115541163831949, 0.011080839671194553, 0.0011055347276851535, -0.00268183508887887, -0.00941531453281641, -0.007919740863144398, -0.017974073067307472, -0.009863986633718014, -0.012440452352166176, -0.016342539340257645, 0.007940134964883327, 0.023439714685082436, 0.04649873822927475, 0.02164502628147602, 0.006244019139558077, -0.012141337618231773, -0.013766073621809483, -0.00679126288741827, -0.01431671716272831, 0.0026002584490925074, 0.011536309495568275, 0.01317464280873537, -0.012467644177377224, -0.033935919404029846, 0.004704258404672146, 0.012243308126926422, 0.019891126081347466, 0.010176697745919228, 0.010258274152874947, -0.02252877503633499, -0.004150216467678547, 0.0026512439362704754, 0.004789234139025211, 0.04187605530023575, 0.0007307915948331356, 0.0004864862421527505, 0.01477898471057415, 0.027532147243618965, 0.020829258486628532, -0.011006060987710953, -0.016614461317658424, -0.01790609396994114, -0.004377951379865408, -0.026186130940914154, -0.017457421869039536, -0.028769394382834435, -0.007906145416200161, 0.007810972165316343, -0.008130481466650963, 0.0015890467911958694, -0.0010503004305064678, -0.010319456458091736, 0.029503585770726204, -0.01217532716691494, 0.00041319464799016714, 0.011529511772096157, -0.031053543090820312, 0.026186130940914154, -0.03904806450009346, 0.008531566709280014, -0.023507695645093918, 0.016002636402845383, -0.0075866361148655415, 0.0338815376162529, -0.024282675236463547, 0.016179384663701057, 0.019088955596089363, 0.0030217382591217756, -0.018205206841230392, 0.01639692299067974, -0.02265113964676857, -0.001491324626840651, 0.003762726904824376, 0.02739618718624115, 0.011896607466042042, -0.015608347952365875, 0.011563502252101898, -0.00679126288741827, -0.0011089337058365345, -0.015485983341932297, -0.0379059873521328, 0.02504405751824379, 0.03113511949777603, 0.012372471392154694, -0.024595385417342186, -0.014792581088840961, 0.02388838678598404, 0.0006245718686841428, 0.024826519191265106, 0.0029843489173799753, -0.01057098526507616, 0.006261014379560947, -0.024214694276452065, 0.0034942033234983683, 0.013521343469619751, 0.00041531905299052596, -0.01316104643046856, 0.0017912890762090683, 0.015526771545410156, -0.00923856534063816, -0.008851075544953346, -0.00935413222759962, 0.013602920807898045, 0.009408516809344292, 0.0050951470620930195, 0.01472460012882948, 0.041767287999391556, 0.010992464609444141, -0.018205206841230392, -0.0010035637533292174, -0.012773556634783745, -0.0058327363803982735, 0.024867307394742966, -0.012678383849561214, 0.02002708800137043, 0.009598862379789352, 0.0055370209738612175, 0.0020683100447058678, -0.007443876937031746, -0.008851075544953346, -0.03238596394658089, 0.020978815853595734, -0.012610403820872307, 0.014303120784461498, 0.014275928027927876, -0.015186868607997894, -0.0268931295722723, 0.013283411040902138, 0.020516548305749893, -0.010095120407640934, -0.018993783742189407, 0.012324884533882141, 0.011237194761633873, -0.011325569823384285, -0.009496891871094704, -0.6356459259986877, -0.0015049207722768188, 0.014289524406194687, -0.01698155701160431, 0.009082209318876266, -0.005887120962142944, 0.03858579695224762, -0.0038545005954802036, -0.0047348495572805405, 0.02974831499159336, 0.005312684923410416, 0.0032103843986988068, -0.00806250050663948, -0.012277298606932163, -0.02581903710961342, -0.016954364255070686, 0.003110113088041544, -0.015254849568009377, -0.008742306381464005, 0.012005375698208809, -0.029313240200281143, 0.017647767439484596, 0.006199831608682871, 0.013820458203554153, -0.006563527975231409, -0.013963217847049236, 0.02489450015127659, -0.01847713068127632, 0.0059347073547542095, 0.009150190278887749, -0.019224917516112328, 0.032630693167448044, 0.008674326352775097, 0.001216003205627203, 0.027382589876651764, -0.013385382480919361, -0.011781039647758007, 0.015608347952365875, 0.01346695888787508, 0.03728056699037552, -0.04965303838253021, -0.020285414531826973, 0.020502952858805656, 0.0057885488495230675, -0.010482610203325748, 0.0072467331774532795, 0.010074726305902004, 0.000521751178894192, -0.02006787620484829, -0.009843592531979084, 0.012263702228665352, -0.014656620100140572, -0.0038069142028689384, 0.011162416078150272, 0.001052849693223834, 0.0010010144906118512, 0.03442538157105446, -0.02928604744374752, 0.018993783742189407, -0.005023767240345478, -0.0027022294234484434, 0.0029554571956396103, -0.009585266001522541, -0.04100590571761131, -0.055118680000305176, 0.017335055395960808, 0.018082842230796814, -0.018300380557775497, 0.013133854605257511, -0.018205206841230392, 0.04225674644112587, -0.0056389919482171535, 0.015594752505421638, -0.015227656811475754, -0.003558784956112504, 0.011638280935585499, 0.04891884699463844, -0.005469040013849735, -0.0034534151200205088, 0.013473757542669773, -0.005802145227789879, -0.01597544364631176, -0.02917727828025818, 0.008837479166686535, 0.03167896345257759, 0.0053466749377548695, -0.007593434303998947, -0.004245389252901077, 0.00914339255541563, 0.016315346583724022, -0.003983663860708475, 0.03496922552585602, -0.017729343846440315, -0.029394816607236862, -0.020231030881404877, 0.03325611352920532, 0.012467644177377224, -0.007600232493132353, -0.02103320136666298, -0.014425485394895077, -0.025180017575621605, -0.02928604744374752, 0.014656620100140572, -0.006495547480881214, 0.0425286702811718, 0.02655322663486004, 0.008660729974508286, -0.007355502340942621, 0.02504405751824379, -0.02430986613035202, 0.0010086622787639499, -0.0004242415016051382, -0.02033979818224907, -0.02569667063653469, 0.009245363064110279, -0.024608980864286423, 0.010713743977248669, -0.003356542671099305, 0.008701518177986145, -0.020516548305749893, -0.006740277633070946, 0.0014258932787925005, 0.015866674482822418, -0.007355502340942621, 0.016804806888103485, 0.022433601319789886, 0.0038375055883079767, 0.005533621646463871, 0.004411941859871149, -0.015146080404520035, 0.005791948176920414, -0.03121669590473175, 0.007171954493969679, -0.005183521658182144, 0.017144709825515747, -0.0015992438420653343, 0.020829258486628532, -0.010231082327663898, -0.008341221138834953, -0.03730775788426399, 0.003667553886771202, -0.014262332580983639, 0.003331050043925643, -0.024105925112962723, -0.012481240555644035, -0.044894397258758545, -0.012263702228665352, 0.015309234149754047, -0.03336488455533981, -0.005193718709051609, -0.017103921622037888, 5.507491732714698e-05, -0.0075050597079098225, 0.03796037286520004, 0.002675037132576108, -3.1945575756253675e-05, 0.003558784956112504, -0.04641716182231903, -0.019551223143935204, -0.03390872851014137, -0.02187616005539894, 0.01473819650709629, -0.01441188994795084, -0.004969382658600807, -0.012977498583495617, -0.014982926659286022, 0.00022943456133361906, 0.0013800064334645867, -0.015526771545410156, -0.034479767084121704, 0.02697470597922802, -0.006176038645207882, 0.005054358392953873, 0.03322892263531685, -0.01704953797161579, 0.01941526308655739, -0.03233157843351364, -0.004320167936384678, 0.0030421323608607054, -0.0005149531061761081, 0.012168529443442822, 0.023167792707681656, -0.006787864025682211, -0.010067928582429886, 0.013222228735685349, 0.011264387518167496, -0.0011225298512727022, 0.014806177467107773, -0.03793318197131157, 0.007335107773542404, 0.0018983585759997368, -0.016179384663701057, -0.027600128203630447, 0.0026444457471370697, -0.003139004809781909, 0.009326939471065998, -0.014112775214016438, 0.015390810556709766, -0.019360877573490143, 0.014806177467107773, 0.029911469668149948, 0.030047429725527763, 0.005761357024312019, 0.013976813293993473, 0.0015091695822775364, -0.016736825928092003, 0.013854448683559895, -0.025016864761710167, 0.03290261700749397, 0.001449686591513455, 0.005734164733439684, -0.021549854427576065, -0.0010171598987653852, 0.0027957025449723005, 0.005533621646463871, 0.02844308875501156, 0.005224309861660004, 0.005040762480348349, -0.006886436138302088, 0.006223625037819147, 0.020271819084882736, -0.01887141726911068, 0.04900042340159416, -0.009102603420615196, 0.006189634557813406, 0.03477888181805611, -3.263600592617877e-05, 0.037063028663396835, -0.0014539352850988507, -0.011665472760796547, 0.008966642431914806, 0.02326296456158161, 0.02747776359319687, 0.0031118125189095736, 0.03611130267381668, 0.04040767624974251, 0.041033096611499786, -0.010278668254613876, 0.02250158227980137, 0.0017640969017520547, -0.0030200385954231024, 0.014493466354906559, 0.016777614131569862, -0.021780988201498985, 0.034017499536275864, 0.007498261518776417, 0.011509117670357227, 0.009564871899783611, -0.00031929643591865897, 0.013398978859186172, 0.01891220547258854, -0.0008956445381045341, -0.008585951291024685, 0.0006411421345546842, 0.013568930327892303, -0.017661362886428833, 0.013725285418331623, 0.02682514861226082, 0.007403088733553886, 0.015363617800176144, 0.02361646480858326, -0.0240787323564291, 0.0067606717348098755, 0.00902782566845417, 0.025207210332155228, -0.020122261717915535, -0.013827255927026272, -0.0164377111941576, 0.005149531178176403, -0.015839481726288795, -3.1202038371702656e-05, -0.025751056149601936, -0.0018779643578454852, -0.011223599314689636, -0.019238512963056564, -0.010530197061598301, -0.004687263164669275, 0.014792581088840961, -0.010149504989385605, 0.028035204857587814, -0.026607612147927284, -0.025519922375679016, 0.03564903140068054, 0.01956482045352459, -0.006702888291329145, -0.023398926481604576, -0.010700148530304432, -0.0004473974113352597, -0.00823924969881773, 0.00035116233630105853, -0.006852445658296347, 0.0022518576588481665, -0.0016680742846801877, -0.012209317646920681, 0.0011029854649677873, 0.00804890412837267, 0.03176053985953331, -0.01702234521508217, -0.007953731343150139, 0.017158307135105133, -0.0014794280286878347, 0.01704953797161579, -0.01956482045352459, -0.0328754223883152, 0.030319353565573692, -0.030237775295972824, -0.03195088729262352, -0.0501696914434433, -0.006172639317810535, -0.01585307903587818, 0.006896633189171553, -0.0022518576588481665, -0.026988303288817406, 0.0048232246190309525, -0.02110118232667446, 0.01883062906563282, -0.007498261518776417, 0.01998629979789257, 0.02817116491496563, 0.019632801413536072, 0.0003484006447251886, -0.029884276911616325, 0.004258985165506601, 0.02944920025765896, 0.06450000405311584, 0.020516548305749893, -0.0082936342805624, 0.01348735298961401, -0.029775507748126984, -0.012623999267816544, -0.036138493567705154, -0.029802700504660606, 0.04209359362721443, 0.00018259166972711682, -0.013480555266141891, -0.005554015748202801, 0.023670848459005356, -0.012746364809572697, 0.013895236887037754, 0.0011344264494255185, -0.01675042323768139, -0.012454047799110413, 0.007511857431381941, 0.013453363440930843, 0.015649136155843735, -0.005033964291214943, 0.017158307135105133, 0.02651243843138218, 0.03040092997252941, 0.008551960811018944, 0.044078629463911057, 0.010890494100749493, 0.013548536226153374, -0.00661791255697608, -0.018300380557775497, 0.012590008787810802, 0.00020022413809783757, 0.02550632506608963, -0.034398190677165985, 0.03515957295894623, -0.0018065847689285874, -0.017307864502072334, -0.013759275898337364, 0.01736224815249443, 0.0004707657208200544, 0.027029091492295265, 0.002374222967773676, 0.01070694625377655, 0.017579786479473114, -0.01681840419769287, 0.0005162277957424521, 0.008891863748431206, -0.009931967593729496, -0.013229027390480042, 0.019184129312634468, 0.018966590985655785, -0.017416631802916527, 0.018069246783852577, -0.014262332580983639, 0.001110633253119886, -0.007566242013126612, -0.010244677774608135, -0.025941401720046997, -0.036682337522506714, -0.03423503413796425, -0.008395605720579624, 0.0042249951511621475, -0.0030727237462997437, -0.015989039093255997, -0.029394816607236862, -0.015921059995889664, -0.012590008787810802, -0.01473819650709629, 0.025016864761710167, -0.004840219393372536, -0.04410582035779953, -0.025288786739110947, -0.0010282067814841866, 0.030727235600352287, 0.004626080393791199, 0.008232451975345612, 0.004119624849408865, 0.00229094666428864, 0.016260962933301926, 0.007498261518776417, -0.015336425974965096, 0.0005884571583010256, -0.03602972254157066, -0.006740277633070946, -0.027464166283607483, -0.012515231035649776, -0.00034903796040453017, 0.0006589870317839086, 0.0072603290900588036, -0.02825274132192135, -0.017226286232471466, 0.018653878942131996, 0.013419372960925102, 0.018381956964731216, 0.01964639686048031, 0.02369804121553898, -0.0050951470620930195, 0.027029091492295265, -0.034833263605833054, 0.015254849568009377, -0.025954997166991234, 0.003059127600863576, -0.014126370660960674, 0.030591275542974472, 0.006927224341779947, 0.008728710934519768, -0.014167159795761108, -0.00012756985961459577, 0.004245389252901077, 0.009979553520679474, 0.00711077218875289, -0.015866674482822418, -0.015200464986264706, 0.030129006132483482, -0.026213323697447777, -0.004500316455960274, 0.025057652965188026, 0.028524665161967278, -0.005944904405623674, -0.021468278020620346, -0.007953731343150139, 0.03238596394658089, -0.00014148464833851904, -0.01441188994795084, 0.02369804121553898, 0.010210688225924969, -0.010244677774608135, -0.015907462686300278, 0.009388122707605362, -0.02670278400182724, -0.000605027424171567, -0.00806250050663948, -0.006685893051326275, -0.020163049921393394, -0.012440452352166176, -0.006118255201727152, -0.002855185652151704, -0.005982293747365475, 0.010679754428565502, -0.041386596858501434, 0.008232451975345612, -0.0027481161523610353, 0.0034874053671956062, 0.013378584757447243, -0.02634928561747074, -0.007729395758360624, 0.005078151822090149, 0.0033939320128411055, 0.023235773667693138, -0.017199095338582993, -0.0033072568476200104, -0.015186868607997894, -0.018164418637752533, -0.006566927302628756, -0.02720584161579609, -0.018490726128220558, -0.0037049432285130024, 0.05381345376372337, 0.003606371348723769, 0.012576413340866566, -0.0007923989905975759, 0.012290894985198975, 0.0049048010259866714, -0.011135224252939224, -0.0029010726138949394, -0.017647767439484596, -0.01763417012989521, 0.00334804505109787, -0.005635592620819807, 0.02199852652847767, 0.010142707265913486, -0.01331060379743576, -0.007749789860099554, 0.005360271316021681, 0.016464903950691223, -0.0192521084100008, 0.006563527975231409, -0.027287418022751808, -0.03067285194993019, -0.00663830665871501, 0.025954997166991234, 0.003501001512631774, 0.008851075544953346, -0.031624581664800644, 0.02006787620484829, 0.016546480357646942, 0.0017471016617491841, 0.026145342737436295, 0.01998629979789257, 0.038341064006090164, -0.005125738214701414, -0.010210688225924969, 0.011393550783395767, -0.011937395669519901, -0.0007494862657040358, 0.005125738214701414, -0.04244709387421608, -0.02863343432545662, 0.002848387695848942, 0.008626739494502544, 0.007273925468325615, 0.002182177733629942, 0.01840914972126484, 0.014357505366206169, 0.015023714862763882, -0.018042054027318954, -0.019238512963056564, 0.00600948603823781, -0.0007949482533149421, 0.006570326164364815, -0.02473134733736515, -0.019972704350948334, 0.015404406934976578, -0.026417264714837074, -0.0081440769135952, 0.0077565875835716724, 0.02388838678598404, -0.02261035144329071, -0.0184499379247427, 0.017199095338582993, 0.01354173757135868, 0.03336488455533981, 0.005897318013012409, 0.024323463439941406, 0.019388070330023766, 0.0003513747942633927, -0.0027804069686681032, -0.016600865870714188, 0.01309986412525177, -0.01786530390381813, 0.015200464986264706, 0.050033729523420334, 3.9195070712594315e-05, -0.012372471392154694, 0.016736825928092003, -0.0004187180893495679, 0.0033582421019673347, -0.0494626946747303, 0.018545111641287804, -0.0037967171519994736, 0.00032609450863674283, -0.03336488455533981, -0.02396996319293976, -0.0054350499995052814, 0.027042686939239502, -0.007423482835292816, 0.030237775295972824, -0.0027413181960582733, 0.003414326114580035, 0.006458158139139414, 0.0468522384762764, -0.015717117115855217, 0.02558790147304535, 0.0028211954049766064, -0.007647818885743618, -0.02014945261180401, -0.010258274152874947, -0.011957789771258831, -0.018232399597764015, 0.01921132020652294, 0.021481873467564583, -0.00895304698497057, 0.003772923955693841, 0.020081473514437675, 0.005251502152532339, -0.011352762579917908, -0.005870125722140074, -0.01333099789917469, 0.02789924293756485, 0.00029784004436805844, -0.0011735153384506702, -0.007661414798349142, -0.011210002936422825, 0.021740199998021126, -0.03341927006840706, -0.01979595422744751, -0.0010197091614827514, 0.0016153892502188683, 0.01182862650603056, 0.023398926481604576, -0.006189634557813406, -0.020965220406651497, -0.008653932251036167, 0.00722633907571435, -0.017416631802916527, 0.0009347334271296859, 0.01331060379743576, -0.0016060419147834182, -0.012454047799110413, -0.0157850980758667, 0.009762016125023365, 0.011420742608606815, 0.02137310430407524, -0.0039666686207056046, -0.014384697191417217, -0.003171295626088977, 0.03165177255868912, -0.01227049995213747, -0.01302508544176817, 0.023602867498993874, 0.022678332403302193, -0.0481574647128582, 0.0321684256196022, -0.018069246783852577, 0.0020241227466613054, 0.03390872851014137, -0.009986352175474167, -0.021522661671042442, -0.009592064656317234, 0.013630112633109093, 0.005084949545562267, 0.0035145976580679417, -0.0069068302400410175, -0.003650558879598975, 0.010054332204163074, 0.00458189332857728, -0.011420742608606815, -0.019727973267436028, -0.0044629271142184734, -0.010638965293765068, 0.0027702099177986383, 0.01744382455945015, -0.019442453980445862, 0.006281408481299877, -0.029993046075105667, 0.0007371647516265512, 0.0022603552788496017, -0.04622681438922882, -0.014711004681885242, -0.03967348486185074, 0.0033548432402312756, -0.016614461317658424, -0.012535625137388706, 0.0029452599119395018, -0.01609780825674534, -0.01639692299067974, 0.019863935187458992, 0.00785176083445549, 0.020897239446640015, 0.030319353565573692, -0.0180964395403862, -0.009021027013659477, 0.0030897187534719706, -0.021984929218888283, -0.024364251643419266, 0.0002791453734971583, -0.009646449238061905, -0.01335139200091362, -0.003650558879598975, -0.022093698382377625, 0.023602867498993874, 0.022012121975421906, -0.030863197520375252, -0.03167896345257759, -0.006981608923524618, -0.04448651149868965, -0.0031033148989081383, -0.042311131954193115, 0.033555228263139725, 0.03510518744587898, 0.025247998535633087, 0.014085582457482815, 0.022555967792868614, -0.018110034987330437, 0.015078099444508553, -0.0379059873521328, 0.0019476445158943534, -0.025669479742646217, -0.01902097463607788, 0.002239961177110672, -0.023630060255527496, -0.0445408970117569, -0.012569614686071873, 0.0031509012915194035, -0.010910888202488422, 0.013528142124414444, 0.014371100813150406, -0.01790609396994114, -0.015010119415819645, -0.003011540975421667, 0.0010163101833313704, 0.0361928790807724, 0.021019605919718742, 0.014262332580983639, -0.03407188132405281, 0.015730714425444603, 0.010407831519842148, -0.011277983896434307, -0.02057093381881714, 0.01477898471057415, 0.01755259372293949, -0.006583922076970339, 0.0061488463543355465, -0.010849705897271633, -0.025683075189590454, -0.011305175721645355, -0.003997259773313999, 0.009469699114561081, 0.001593295601196587, 0.0047382484190166, 0.024241885170340538, 0.013534939847886562, -0.0260909590870142, -0.018164418637752533, -0.0005693376297131181, 0.014670215547084808, 0.006498946342617273, 0.009272555820643902, -0.04565577954053879, 0.01078852266073227, -0.013806861825287342, 0.013936025090515614, 0.014901350252330303, -0.0022671534679830074, -0.006084264721721411, 0.017226286232471466, -0.02099241316318512, -0.01813722774386406, 0.026729976758360863, -0.008925854228436947, 0.005625395569950342, -0.015241253189742565, -0.004510513506829739, 0.00046864134492352605, 0.0015720516676083207, -0.014575042761862278, -0.01864028349518776, -0.0024116123095154762, -0.0013638610253110528, -0.001538911135867238, -0.045166317373514175, 0.02426907792687416, 0.017878901213407516, -0.023874791339039803, -0.0041672117076814175, 0.19371755421161652, 0.010448619723320007, 0.005333079025149345, 0.025751056149601936, 0.010564186610281467, 0.008422797545790672, 0.0032443746458739042, 0.017375843599438667, -0.004476523492485285, -0.0054792370647192, 0.01639692299067974, 0.010890494100749493, -0.01979595422744751, -0.005632193759083748, 0.010203889571130276, -0.0053908624686300755, -0.02789924293756485, -0.023480502888560295, 0.005676381289958954, 0.012807547114789486, 0.008429596200585365, -0.011577097699046135, 0.0013638610253110528, 0.0008331873686984181, 0.017267074435949326, 0.012644393369555473, 0.0033327494747936726, 0.007471069227904081, 0.02743697538971901, 0.010720542632043362, -0.01234527863562107, -0.005431650672107935, 0.025411153212189674, -0.007654617074877024, -0.013303806073963642, 0.02273271605372429, 0.024214694276452065, 0.002029221272096038, -0.004629479721188545, 0.005360271316021681, -0.007335107773542404, -0.007199146784842014, 0.0184499379247427, -0.034751687198877335, -0.002620652550831437, 0.003472109790891409, -0.011332367546856403, -0.003297059563919902, 0.006019683089107275, 0.020924432203173637, -0.0002725597587414086, -0.0036233665887266397, 0.01709032617509365, 0.003970067482441664, -0.025751056149601936, -0.0009185880189761519, -0.0180964395403862, 0.01215493306517601, -0.012073356658220291, -0.0011607689084485173, -0.007029195316135883, -0.0028398900758475065, 0.009619256481528282, -0.006730080582201481, -0.03390872851014137, 0.017620574682950974, 0.003047230886295438, 0.040761176496744156, 0.004898002836853266, 0.010027140378952026, -0.02025822177529335, -0.016233770176768303, -0.023276561871170998, 0.005197117570787668, -0.02187616005539894, -0.019224917516112328, 0.028334319591522217, 0.016260962933301926, 0.03178773447871208, 0.004656672012060881, 0.007994519546627998, 0.0007528852438554168, -0.026104554533958435, -0.010271870531141758, 0.002008827170357108, -0.01898018643260002, 0.012725970707833767, -0.015880269929766655, -0.002710726810619235, -0.013589324429631233, 0.003363340860232711, 0.017606979236006737, -0.0117878383025527, -0.009884380735456944, 0.0015032212249934673, -0.0009296348434872925, 0.004850416444242001, 0.022039314731955528, -0.01477898471057415, -0.030618468299508095, -0.015309234149754047, 0.040842752903699875, 0.02099241316318512, 0.032630693167448044, 0.005057757720351219, 0.01585307903587818, -0.012991094961762428, 0.016831999644637108, 0.009904774837195873, -0.017933284863829613, 0.0024744942784309387, -0.02515282668173313, 0.013922429643571377, -0.004513912834227085, -0.002307941671460867, 0.023235773667693138, 0.001779392478056252, -0.005608400329947472, 0.0055370209738612175, 0.016641654074192047, 0.02349410019814968, -0.007090377621352673, -0.0018609692342579365, 0.013167844153940678, -0.012685182504355907, -0.03728056699037552, -0.01870826445519924, 0.014262332580983639, -0.04146817326545715, -0.032086849212646484, 0.003932678606361151, -0.030700044706463814, 0.01979595422744751, 0.004928594455122948, -0.010849705897271633, 0.0061624422669410706, -0.020326202735304832, -0.01713111437857151, 0.004343960899859667, 0.00902782566845417, 0.015472386963665485, 0.0046090856194496155, 0.011991780251264572, 0.01201897207647562, -0.009632852859795094, 0.02187616005539894, -0.007647818885743618, 0.015948250889778137, -0.027110667899250984, -0.005944904405623674, 0.0012482940219342709, 0.017335055395960808, -0.003504400607198477, -0.014493466354906559, 0.04108748212456703, -0.020965220406651497, -0.024432232603430748, -0.02242000587284565, -0.002192374784499407, 0.0005795347387902439, -0.057593174278736115, 0.008558758534491062, 0.059714168310165405, -3.9407510485034436e-05, -0.008803489618003368, -0.008069298230111599, -0.17337775230407715, 0.012787153013050556, 0.005506429355591536, -0.005642390809953213, -0.013106661848723888, 0.018531514331698418, 0.008150875568389893, -0.013963217847049236, -0.02420109696686268, 0.00036242164787836373, 0.002188975689932704, 0.002493188949301839, -0.029693931341171265, -0.025139229372143745, 0.01174705009907484, -0.03456134349107742, 0.007131166290491819, 0.023901982232928276, 0.05726686865091324, 0.016043424606323242, 0.02817116491496563, -0.016342539340257645, -0.0035315926652401686, -0.010999263264238834, 0.02010866440832615, 0.01063216757029295, 0.0004250912752468139, 0.024473020806908607, -0.004768840037286282, -0.04043486714363098, 0.008300432935357094, -0.005751159507781267, 0.01601623184978962, 0.01477898471057415, 0.008443191647529602, -0.0035145976580679417, 0.002979250391945243, -0.001884762430563569, -0.01043502427637577, 0.02488090470433235, 0.03534991666674614, 0.014384697191417217, 0.01864028349518776, 0.011577097699046135, 0.022202467545866966, 0.026403669267892838, 0.019727973267436028, -0.014371100813150406, 0.020584529265761375, -0.0029112696647644043, 0.012630797922611237, -0.02936762385070324, 0.011658675037324429, -0.011842222884297371, 0.005292290821671486, 0.0012856833636760712, 0.012725970707833767, 0.027695301920175552, 0.005866726860404015, 0.0032205814495682716, -0.0027702099177986383, -0.004218196962028742, 0.005591405089944601, -0.007185550406575203, -0.023874791339039803, -0.029857084155082703, 0.00016952665464486927, 0.03581218793988228, 0.009313344024121761, 0.018572302535176277, -0.006543133873492479, 0.0033973311074078083, -0.015880269929766655, 0.017797324806451797, -0.0005098545807413757, -9.37388904276304e-05, -0.017756536602973938, 0.0030829207971692085, 0.028524665161967278, -0.0017657963326200843, 0.009863986633718014, 0.0018150822725147009, 0.006233822088688612, -0.0003120735054835677, -0.003932678606361151, -0.00906861387193203, 0.006543133873492479, 0.0016298351110890508, 0.014493466354906559, -0.004371153190732002, 0.013616516254842281, -0.015798693522810936, -0.0017980871489271522, -0.0013876542216166854, 0.006454759277403355, 0.012929912656545639, 0.023521291092038155, 0.01496933028101921, -0.00661791255697608, -0.006872839760035276, 0.008021712303161621, 0.004000659100711346, -0.03491484373807907, 0.03793318197131157, 0.02817116491496563, 0.012467644177377224, 0.008517970331013203, 0.010074726305902004, 0.03197807818651199, -0.013317401520907879, -0.031053543090820312, 0.011169214732944965, 0.03102635033428669, 0.0015533569967374206, -0.014330312609672546, 0.01864028349518776, -0.007627424784004688, -0.023439714685082436, 0.0032324781641364098, -0.000555316626559943, 0.059170324355363846, -0.03203246369957924, -0.00589391915127635, 0.015689924359321594, 0.005288891494274139, -0.005829337518662214, -0.09626054763793945, -0.025954997166991234, 0.026458054780960083, 0.020380588248372078, -0.005016969051212072, 0.01589386723935604, -0.0019255508668720722, 0.03741652891039848, -0.0013817059807479382, 0.03529553487896919, -0.01898018643260002, -0.010217485949397087, -0.01335139200091362, -0.0008119434351101518, 0.0042249951511621475, -0.0037083423230797052, 0.020693298429250717, -0.02087004855275154, -0.013494151644408703, 0.039265602827072144, 0.0006012035300955176, -0.011155618354678154, 0.014126370660960674, 0.006359586026519537, -0.025683075189590454, -0.0144526781514287, -0.03075442835688591, 0.006403773557394743, 0.031814925372600555, 0.008626739494502544, 0.02029900997877121, -0.016872787848114967, 0.012202519923448563, -0.019959107041358948, 0.003120310138911009, -0.0028602841775864363, -0.03037373721599579, 0.0022059709299355745, 0.009564871899783611, -0.028742201626300812, 0.0089734410867095, -0.02426907792687416, 0.010876897722482681, -0.013439767062664032, 0.016111405566334724, 0.0041468171402812, -0.02488090470433235, 0.03369119018316269, 0.0036879482213407755, -0.01948324404656887, -0.023507695645093918, -0.015526771545410156, -0.02388838678598404, -0.0318693108856678, 0.015146080404520035, 0.014289524406194687, 0.005761357024312019, -0.006121654063463211, -0.0212643351405859, 0.012494836002588272, 0.00720594497397542, -0.00806250050663948, -0.014085582457482815, 0.019442453980445862, 0.001433541183359921, 0.019265705719590187, -0.018069246783852577, -0.008205260150134563, -0.009680438786745071, 0.014330312609672546, -0.015839481726288795, -0.0036165686324238777, -0.021087585017085075, 0.015989039093255997, -0.023507695645093918, 0.012508432380855083, -0.00528549263253808, -0.02473134733736515, 0.0067606717348098755, 0.008449990302324295, -0.00943570863455534, -0.005186920519918203, -0.016655249521136284, -0.023208580911159515, 0.006947618443518877, 0.016070617362856865, 0.020652510225772858, -0.016505692154169083, 0.013018286786973476, -0.04823904111981392, 0.02237921766936779, 0.005723967682570219, 0.002540775341913104, 0.008857873268425465, -0.0004520710790529847, 0.01605702005326748, -0.010135909542441368, 0.004129822365939617, 0.016614461317658424, -0.0019340483704581857, -0.01227049995213747, -0.006407172419130802, -0.049326732754707336, -0.003388833487406373, 0.00787215493619442, 0.0075050597079098225, 0.01159749273210764, -0.025247998535633087, 0.003298759227618575, -0.004065240733325481, -0.00650234567001462, 0.005074752494692802, -0.03831387311220169, 0.018898610025644302, -0.007858558557927608, 0.008205260150134563, -0.029041316360235214, -0.0007720048306509852, 0.011148820631206036, 0.004381350241601467, 0.011509117670357227, 0.02214808389544487, -0.01675042323768139, 0.004221595823764801, -0.006240620277822018, 0.014330312609672546, -0.031107928603887558, -0.002471095183864236, -0.007804173976182938, 0.0029809498228132725, -0.00902782566845417, -0.026920322328805923, 0.012923114001750946, -0.004354157950729132, -0.0004095831827726215, 0.02361646480858326, -0.007124368101358414, -0.029041316360235214, -0.003670952981337905, 0.009034623391926289, 0.007008801214396954, 0.004309970885515213, -0.00935413222759962, -0.014928542077541351, 0.01870826445519924, -0.01446627452969551, -0.021753795444965363, -0.006872839760035276, -0.0131202582269907, -0.01681840419769287, -0.003813712392002344, 0.01182862650603056, 0.038721755146980286, 0.0017691954271867871, -0.012073356658220291, -0.02110118232667446, 0.0007286671898327768, -0.015377214178442955, 0.01670963503420353, 0.03407188132405281, 0.0016510790446773171, -0.010115515440702438, 0.0328754223883152, -0.011135224252939224, 0.0053670695051550865, -0.017770132049918175, 0.008762700483202934, -0.0262405164539814, -0.040108561515808105, -0.021522661671042442, 0.013840852305293083, -0.021250739693641663, 0.010829311795532703, -0.01937447488307953, 0.02384759858250618, 0.029394816607236862, 0.004068639595061541, 0.003970067482441664, -0.011658675037324429, -0.011658675037324429, 0.0047382484190166, 0.023507695645093918, 0.01937447488307953, -0.012052962556481361, -0.027069879695773125, 0.00895304698497057, 0.0026155540253967047, 0.007906145416200161, -0.0025560709182173014, 0.027137860655784607, 0.00802851002663374, 0.003319153329357505, 0.008647133596241474, 0.0036403618287295103, -0.02346690744161606, 0.0003734684723895043, -0.020054280757904053, 0.01067295577377081, -0.01093808002769947, 0.014534254558384418, 0.00540105951949954, 0.024676961824297905, -0.014248736202716827, 0.026226919144392014, 0.003599573392421007, -0.014248736202716827, -0.010394235141575336, 0.002515282714739442, -0.01709032617509365, -0.028497472405433655, 0.006981608923524618, 0.006335793063044548, 0.011543108150362968, -0.02168581448495388, 0.011203205212950706, 0.0036879482213407755, -0.02118275873363018, -0.012834739871323109, -0.014357505366206169, -0.019306493923068047, -0.029041316360235214, 0.007199146784842014, 0.0027277220506221056, 0.016464903950691223, 0.021400297060608864, -0.03233157843351364, 0.03390872851014137, -0.0061488463543355465, 0.02334454283118248, -0.01960560865700245, 0.010944878682494164, -0.007409886457026005, 0.0003201461804565042, 0.014833369292318821, 0.013188238255679607, -0.017267074435949326, -0.020380588248372078, -0.007049589417874813, -0.012970700860023499, -0.002499986905604601, -0.010469013825058937, 0.08984317630529404, 0.04016294702887535, -0.01566273346543312, 0.008055702783167362, -0.008429596200585365, 0.013432968407869339, 0.02611815184354782, -0.015010119415819645, 0.009524083696305752, -0.01325621921569109, 0.029612354934215546, -0.006954416632652283, -0.014520658180117607, -0.00791294313967228, -0.025954997166991234, -0.00895304698497057, 0.007511857431381941, 0.021291527897119522, -0.01817801594734192, 0.0031543003860861063, 0.025438344106078148, 0.009782410226762295, -0.005812342278659344, -0.020271819084882736, -0.023521291092038155, -0.011937395669519901, 0.02187616005539894, 0.017144709825515747, 0.009075411595404148, -0.027001898735761642, 0.014044794254004955, -0.010564186610281467, -0.030618468299508095, -0.01173345372080803, -0.017063133418560028, 0.003120310138911009, -0.015241253189742565, -0.02017664536833763, 0.0005213263211771846, 0.014670215547084808, 0.030129006132483482, 0.027233032509684563, -0.0262405164539814, -0.020693298429250717, 0.004806229379028082, -0.010978869162499905, 0.004785835277289152, -0.023861194029450417, -0.0068626427091658115], "7b2071b1-da20-49e8-a91e-a277a4a90d15": [0.009141306392848492, 0.006738783325999975, 0.02856830507516861, -0.035186443477869034, -0.01130598969757557, 0.02794785425066948, 0.010154708288609982, -0.027727250009775162, -0.007383362390100956, -0.03918490558862686, 0.0014347920659929514, 0.035848259925842285, 0.009389486163854599, -0.021191835403442383, -0.010795840993523598, 0.012050529941916466, 0.026996497064828873, -0.024556057527661324, 0.0020905740093439817, -0.016421260312199593, -0.02519029565155506, 0.003333198605105281, -0.01309150829911232, 0.0035779320169240236, -0.02182607538998127, 0.005890834145247936, -0.0008208045037463307, -0.009382592514157295, -0.022887734696269035, 0.014532332308590412, 0.007624648977071047, -0.007796996273100376, -0.01912366785109043, -0.002611063187941909, -0.015070056542754173, -0.011230156756937504, -0.004308685194700956, -0.006642268970608711, -0.00037614820757880807, -0.013263856060802937, 0.03275979310274124, -0.0036951282527297735, -0.0033400924876332283, -0.022998036816716194, -0.004450009670108557, 0.01722095161676407, 0.011050915345549583, -0.004739553667604923, -0.0027437706012278795, 0.0019302908331155777, 0.017662161961197853, -0.0086863087490201, -0.02862345613539219, 0.0020733391866087914, -0.007921086624264717, -0.018751397728919983, 0.015028692781925201, -0.003060889896005392, 0.014987329952418804, -0.00517042214050889, 0.018117157742381096, 0.01752428337931633, -0.0028609668370336294, -0.00863115768879652, -0.004177700728178024, -0.025755595415830612, -0.004518948961049318, -0.010147814638912678, -0.014035971835255623, -0.00684219179674983, 0.021371077746152878, 0.031132834032177925, 0.008148585446178913, 0.014973541721701622, -0.015097632072865963, -0.0010401165345683694, -0.018834123387932777, -0.02452848106622696, -0.008569112978875637, 0.0031625747215002775, 0.011885076761245728, -0.026210593059659004, -0.024294089525938034, 0.007004198152571917, 0.009961679577827454, 0.01720716431736946, 0.022625766694545746, 0.00857600662857294, -0.016476411372423172, 0.0023025611881166697, -0.009203351102769375, 0.012946736998856068, 0.027658309787511826, 0.00496360519900918, 0.00901721604168415, 0.006652609445154667, 0.018599731847643852, 0.008913807570934296, -0.013546505942940712, -0.019468361511826515, -0.01409801747649908, 0.010913037694990635, -0.036427345126867294, -0.011802350170910358, -0.022570615634322166, -0.008148585446178913, 0.02208804339170456, -0.007962449453771114, 0.005994242615997791, 0.004139784723520279, -0.015152783133089542, 0.030939804390072823, -0.024721510708332062, 0.006059734616428614, 0.007148969918489456, -0.022060466930270195, 0.011423185467720032, -0.03209798038005829, -0.022832583636045456, -0.011009551584720612, 0.021853649988770485, -0.01109227817505598, 0.03339403122663498, -0.02950587496161461, 0.01893063820898533, 0.014366879127919674, 0.02498347871005535, -0.016214443370699883, 0.008003813214600086, -0.023921819403767586, -0.00046016756095923483, 0.0032539188396185637, 0.012815752997994423, 0.0208471417427063, 0.00475678825750947, 0.007686694152653217, -0.008948276750743389, -0.0015967986546456814, -0.014035971835255623, -0.02265334129333496, 0.024556057527661324, 0.028788909316062927, 0.013849836774170399, -0.029009513556957245, -0.003981224726885557, 0.012464163824915886, 0.0117403045296669, 0.009058578871190548, 0.006045946851372719, 0.02068168856203556, 0.007197227329015732, -0.023080764338374138, -0.02654149942100048, 0.006731889210641384, 0.004725765436887741, 0.0031367226038128138, 0.019054727628827095, 0.015511265955865383, -0.020047448575496674, 0.010168496519327164, -0.006580223795026541, -0.0028730311896651983, -0.006452686619013548, 0.0033573273103684187, 0.005325534380972385, 0.040977317839860916, 0.011898864060640335, -0.020805777981877327, 0.0017217504791915417, -0.007162757683545351, -0.002726535778492689, 0.018544580787420273, -0.019826844334602356, 0.008403658866882324, 0.00818994827568531, 0.007962449453771114, 0.01063038781285286, -0.00026218348648399115, -0.008962064981460571, -0.03317342698574066, 0.019192606210708618, -0.00023309985408559442, 0.012850222177803516, 0.02188122645020485, -0.01829640008509159, -0.02587968483567238, 0.021288350224494934, 0.011802350170910358, -0.007734951097518206, -0.0074523016810417175, 0.018889274448156357, 0.004205276723951101, -0.02126077562570572, -0.01282954029738903, -0.6379886865615845, 0.005049778614193201, 0.015001117251813412, -0.014477181248366833, 0.01151280663907528, 0.007934873923659325, 0.02520408295094967, 0.011940227821469307, -0.0043707299046218395, 0.02603135071694851, 0.01570429466664791, 0.024969691410660744, -0.003908839076757431, -0.01156106311827898, -0.007148969918489456, -0.016448834910988808, -0.0025490180123597383, -0.01855836808681488, -0.010202965699136257, 0.02088850550353527, -0.020557597279548645, 0.03452463075518608, -0.02094365656375885, -0.0011168111814185977, 0.0008225279743783176, -0.02083335444331169, 0.033835239708423615, -0.024431968107819557, -0.0012719237711280584, 0.016834894195199013, -0.02820982225239277, 0.011595533229410648, -0.0042673214338719845, 0.002902330132201314, 0.041804585605859756, 0.018834123387932777, -0.014711573719978333, 0.023521972820162773, 0.018958214670419693, 0.06700866669416428, -0.018379125744104385, -0.017400193959474564, 0.0164350476115942, 0.005349663086235523, -0.011967803351581097, 0.009837589226663113, 0.012326286174356937, 0.02021290361881256, -0.01746913231909275, -0.012581360526382923, 0.01872382126748562, -0.02701028436422348, -0.00651817861944437, 0.004622357431799173, 0.015731871128082275, -0.012629617005586624, 0.007638436742126942, -0.02892678789794445, 0.014242788776755333, 0.007996919564902782, -0.007610861212015152, 0.004167360253632069, -0.02270849235355854, -0.030057385563850403, -0.04254912585020065, 0.006866320502012968, 0.008382977917790413, -0.03739249333739281, 0.011712728999555111, -0.013394840061664581, 0.028320124372839928, 0.004094974137842655, -0.0008789717103354633, -0.012147044762969017, -0.012519314885139465, 0.015511265955865383, 0.026582863181829453, -0.018006855621933937, -0.00271619507111609, 0.006880108267068863, -0.0039536491967737675, -0.01917881891131401, -0.022212132811546326, -0.011692047119140625, 0.01955108903348446, 0.019109878689050674, -0.009499788284301758, -0.01300878170877695, -0.0007785793859511614, -0.0013624061830341816, 0.008024495095014572, 0.027465282008051872, -0.0031057000160217285, -0.008796610869467258, -0.011161217465996742, 0.029147392138838768, -0.0019578663632273674, -0.006697420030832291, -0.024445755407214165, -0.01742776855826378, -0.024845600128173828, -0.014808088541030884, 0.017138225957751274, -0.00633893720805645, 0.014366879127919674, 0.023039400577545166, 0.02053002268075943, -0.022005315870046616, 0.03452463075518608, -0.028375275433063507, -0.015304449014365673, -0.0039433082565665245, -0.01607656478881836, -0.03069162555038929, 0.02405969612300396, -0.035131294280290604, 0.007741845212876797, -0.002009570598602295, 0.0038812633138149977, -0.036675527691841125, 0.003946755547076464, -0.002898883307352662, 0.015001117251813412, -0.0039639901369810104, -0.013139765709638596, 0.015070056542754173, 0.0038812633138149977, -0.0027472174260765314, 0.013718852773308754, -0.001992336008697748, -0.004767129197716713, -0.02623816765844822, -0.0016924514202401042, -0.002378394128754735, 0.001787242479622364, 0.0030901888385415077, 0.02571423165500164, -0.0018596284789964557, 0.0045982287265360355, -0.041390951722860336, 0.009355016984045506, -0.0074454075656831264, 0.008638051338493824, -0.031546466052532196, 0.002690342953428626, -0.03275979310274124, -0.036675527691841125, 0.014394454658031464, -0.006800828501582146, -0.012333179824054241, -0.025907261297106743, -0.0027541115414351225, -0.007817678153514862, 0.031711921095848083, -0.028651030734181404, 0.004563759081065655, 0.010071981698274612, -0.04853302612900734, -0.0026524264831095934, -0.0377509742975235, -0.029588600620627403, 0.003048825543373823, -0.022487888112664223, -0.014532332308590412, -0.017345042899250984, -0.033007971942424774, 0.0022818795405328274, -0.022308647632598877, 0.0027678993064910173, -0.028320124372839928, 0.018158521503210068, 0.003402137663215399, -0.01086478028446436, 0.015469902195036411, -0.01917881891131401, 0.04092216491699219, -0.02161925844848156, 0.003352156840264797, 0.02177092246711254, -0.004525842610746622, 0.007666012272238731, 0.014739149250090122, -0.013070826418697834, 0.0036709995474666357, 0.026775890961289406, 0.017772464081645012, 0.013284537941217422, 0.014229001477360725, -0.023990757763385773, 0.004319025669246912, 0.02317727729678154, -0.0021026383619755507, 0.0046947430819272995, 0.017276102676987648, -0.015235509723424911, 0.020695475861430168, -0.030305566266179085, 0.0015942134195938706, -0.02432166412472725, 0.005697804968804121, 0.002412863541394472, 0.012808858416974545, 0.0010289140045642853, -0.00698696356266737, -0.004625804256647825, -0.009175775572657585, 0.013732641004025936, -0.0269551333039999, 0.015842173248529434, -0.0028006453067064285, 0.003736491547897458, -0.002135384362190962, -0.008500173687934875, -0.015690507367253304, 0.00519799767062068, 0.0430179089307785, 0.023260004818439484, 0.015194146893918514, -0.00011579590500332415, 0.015828385949134827, 0.011919545941054821, -0.024900753051042557, 0.0505184680223465, 0.007197227329015732, -0.000835884886328131, 0.04547213762998581, -0.008651839569211006, 0.015180358663201332, -0.0044603506103158, -0.013022569008171558, 0.0230118241161108, 0.03604128956794739, 0.016448834910988808, 0.015249297954142094, 0.053579360246658325, 0.02541089989244938, 0.016669441014528275, -0.01882033608853817, 0.03240131214261055, -0.002900606719776988, -0.01825503632426262, 0.02975405566394329, 0.012016060762107372, -0.025341961532831192, 0.020309416577219963, 0.0035210573114454746, 0.008769035339355469, 0.004777469672262669, 0.002052657539024949, 0.015166571363806725, 0.01752428337931633, -0.006394088268280029, -0.02088850550353527, 0.0076522245071828365, 0.020902292802929878, -0.012788176536560059, 0.0022336223628371954, 0.013387945480644703, 0.014890815131366253, 0.021577894687652588, 0.011457654647529125, -0.029836781322956085, 0.02856830507516861, -0.004325919784605503, 0.025314385071396828, -0.010506297461688519, -0.018627306446433067, -0.02203289233148098, 0.005353110376745462, -0.012836433947086334, -0.009368804283440113, -0.02368742600083351, -0.013904987834393978, 0.009644560515880585, -0.012581360526382923, 0.014118698425590992, 0.009134411811828613, 0.014490969479084015, -0.00966524239629507, 0.016407473012804985, -0.012546890415251255, -0.010892355814576149, 0.02043350785970688, 0.014849452301859856, 0.016986560076475143, -0.023301368579268456, -0.005346216261386871, -0.014256577007472515, -0.0024197574239224195, -0.012698556296527386, -0.006849085446447134, 0.00972039345651865, 0.0012159108882769942, -0.0064078764989972115, 4.987302963854745e-05, 0.03127071261405945, 0.041804585605859756, -0.028182245790958405, -0.0028919894248247147, 0.014835664071142673, 0.00031431857496500015, 0.01715201325714588, -0.011678259819746017, -0.038798846304416656, 0.024349240586161613, -0.025576353073120117, -0.03143616393208504, -0.02172956056892872, -0.025217872112989426, -0.01938563585281372, 0.01592489890754223, -0.012629617005586624, -0.022901521995663643, 0.006125226616859436, -0.019578663632273674, 0.00777631439268589, -0.010788947343826294, 0.011133641935884953, 0.020557597279548645, -0.005880493205040693, -0.010292586870491505, -0.02430787682533264, 0.010451146401464939, 0.03846793994307518, 0.07191712409257889, 0.028954362496733665, -0.0030246968381106853, 0.010954400524497032, -0.01109227817505598, -0.03375251591205597, -0.018903061747550964, -0.017496708780527115, 0.036675527691841125, -0.00847949180752039, -0.0020026767160743475, -0.000562283385079354, 0.019661391153931618, -0.002423204481601715, 0.0049980743788182735, -0.0002101561112795025, -0.01851700432598591, -0.017303679138422012, 0.005073907319456339, -0.0065974583849310875, 0.011829925701022148, -0.0076522245071828365, 0.01741398125886917, 0.02197773940861225, 0.02819603495299816, 0.015263085253536701, 0.035600077360868454, 0.01876518502831459, -0.003400414250791073, -0.02079199068248272, -0.01607656478881836, 0.01960624009370804, 0.010285692289471626, 0.011374928057193756, -0.026348469778895378, 0.03116041049361229, 0.011567957699298859, -0.017910340800881386, -0.004939476493746042, -0.0039433082565665245, 0.008879338391125202, 0.035076141357421875, -0.0018010303610935807, -0.008334720507264137, 0.007562603801488876, -0.006321702618151903, -0.013001888059079647, 0.03389039263129234, -0.0052255732007324696, -0.014945966191589832, 0.017455345019698143, 0.012567572295665741, -0.014932178892195225, 0.0002214664127677679, -0.001220219535753131, -0.01804821938276291, 0.0031057000160217285, -0.009830695576965809, -0.028761334717273712, -0.006411323323845863, -0.03138101473450661, -0.0019819950684905052, -0.014215213246643543, -0.01400150265544653, -0.01694519631564617, -0.022846370935440063, -0.011857501231133938, -0.02244652435183525, -0.021536530926823616, 0.013332794420421124, 0.005356557201594114, -0.0565299466252327, -0.029643751680850983, -0.013443097472190857, 0.034497056156396866, 0.00936191063374281, -0.0023284133058041334, -0.010223647579550743, 0.007617754861712456, 0.006008030381053686, 0.010389100760221481, -0.015373388305306435, 0.0030471018981188536, -0.030002234503626823, 0.0009556662989780307, -0.013849836774170399, -0.034717660397291183, -0.007810784038156271, 0.00023482332471758127, 0.0071213943883776665, -0.014945966191589832, -0.0037571731954813004, 0.007679800037294626, 0.021371077746152878, 0.0234806090593338, 0.01964760385453701, 0.02571423165500164, -0.004753341432660818, 0.027396341785788536, -0.05195239931344986, 0.0016338533023372293, -0.01153348758816719, -0.01042357087135315, -0.018062006682157516, 0.011616215109825134, 0.0062941270880401134, -0.012147044762969017, -0.005977007560431957, -0.0016528115374967456, 0.005904621910303831, 0.005408261436969042, 0.0031384460162371397, 0.0020922974217683077, -0.0022922204807400703, 0.01773110032081604, -0.023287581279873848, 0.00531519390642643, 0.024859389290213585, 0.026458771899342537, -0.001577840419486165, -0.020102599635720253, -0.017069285735487938, 0.029726479202508926, 0.0030539960134774446, -0.005032544024288654, 0.01996472291648388, 0.012953630648553371, -0.02503862977027893, -0.02758937142789364, 0.011719622649252415, -0.021757135167717934, 0.022363798692822456, -0.004763681907206774, -0.008610475808382034, -0.02473529800772667, 0.0028626902494579554, -0.0027592817787081003, -0.005466859322041273, -0.012140151113271713, 0.006845638621598482, -0.008121008984744549, -0.007211015094071627, 0.012560678645968437, -0.010127132758498192, -0.005825342144817114, -0.028485577553510666, -0.002785133896395564, 0.00824509933590889, 0.002226728480309248, 0.03184979781508446, -0.012684768065810204, -0.008231312036514282, -0.004618910141289234, -0.017041711136698723, -0.0129122668877244, -0.030581321567296982, -0.015290660783648491, -0.0007277369149960577, 0.06695351749658585, 0.010196072049438953, 0.012712344527244568, -0.003391796723008156, 0.011747199110686779, -0.0075488160364329815, -0.013139765709638596, -0.0016872810665518045, -0.009589409455657005, -0.015787022188305855, 0.01660050079226494, -0.010354631580412388, 0.018627306446433067, 0.01742776855826378, -0.020612748339772224, -0.009637666866183281, -0.002702407306060195, 0.026927556842565536, -0.02130213752388954, -0.006804275326430798, -0.012036742642521858, -0.045030929148197174, -0.00765911815688014, 0.035379473119974136, 0.00554613908752799, 0.014118698425590992, -0.03915732726454735, 0.0067215487360954285, 0.02659665048122406, 0.005652994848787785, 0.023108338937163353, 0.010451146401464939, 0.043431542813777924, -0.009065473452210426, -0.009499788284301758, -0.0075488160364329815, -0.004767129197716713, -0.011857501231133938, 0.003284941427409649, -0.038026731461286545, -0.01824124902486801, 0.003178086131811142, 0.031960099935531616, 0.015056268312036991, -0.008872443810105324, 0.011760986410081387, 0.0013985991245135665, 0.02432166412472725, -0.027189524844288826, -0.01613171584904194, 0.013112190179526806, -0.01282954029738903, 0.0009108560043387115, -0.015883537009358406, -0.023770153522491455, 0.016821106895804405, -0.005504775792360306, 0.0034624591935425997, 0.014863239601254463, 0.01701413467526436, -0.020750626921653748, -0.009996148757636547, 0.019923359155654907, 0.009947892278432846, 0.04031550511717796, 0.009837589226663113, 0.022060466930270195, 0.018075795844197273, 0.014642635360360146, -0.005397920496761799, -0.024349240586161613, 0.02017153985798359, -0.013312113471329212, 0.008341614156961441, 0.024804238229990005, -0.008872443810105324, -0.013994609005749226, 0.026665588840842247, -0.005690911319106817, 0.0005523734143935144, -0.014683998189866543, 0.017703523859381676, -0.0035193338990211487, -0.00011536503734532744, -0.017538070678710938, -0.010451146401464939, -0.007679800037294626, 0.022832583636045456, -0.004026035312563181, 0.01379468571394682, -0.0014011843595653772, -0.004842961672693491, -0.017069285735487938, 0.068001389503479, -0.012698556296527386, 0.02017153985798359, 0.0008962064748629928, -0.0069214715622365475, -0.016503985971212387, -0.005908068735152483, -0.015635356307029724, -0.01722095161676407, 0.013774003833532333, 0.01928912103176117, -0.0194407869130373, -0.0019320143619552255, 0.0011711005354300141, 0.031187985092401505, -0.0029195649549365044, -0.005494434852153063, -0.011519700288772583, 0.02685861848294735, -0.006562988739460707, 0.009341228753328323, 0.012795071117579937, 0.0038364531937986612, 0.011926439590752125, -0.04053610935807228, -0.015635356307029724, 0.007590179331600666, -0.00014240204473026097, 0.0069007896818220615, 0.02312212623655796, 0.004167360253632069, -0.007576391566544771, 0.0006135567673482001, 0.011988485231995583, -0.00401914119720459, 0.0024766321294009686, 0.00127709424123168, 0.00033521567820571363, -0.033366456627845764, -0.02638983353972435, -0.005490988027304411, 0.01934427209198475, 0.012050529941916466, -0.0020492104813456535, -0.009010322391986847, 0.0037261508405208588, 0.023039400577545166, -0.011230156756937504, -0.018475640565156937, 0.01007887627929449, 0.009051685221493244, -0.060886889696121216, 0.02607271447777748, -0.007148969918489456, -0.007755632977932692, 0.02654149942100048, -0.007252378389239311, -0.008210630156099796, -0.013608550652861595, 0.016669441014528275, -0.010451146401464939, -0.010071981698274612, -0.0063871946185827255, -0.0008944830042310059, 0.003459012368693948, 0.008314038626849651, -0.0037571731954813004, -0.025755595415830612, -7.647915481356904e-05, -0.014683998189866543, 0.005901175085455179, 0.011361140757799149, -0.026141652837395668, -0.016517775133252144, -0.019013365730643272, 0.025590142235159874, -0.007252378389239311, -0.037971578538417816, -0.028595879673957825, -0.013305218890309334, 0.003908839076757431, -0.015221722424030304, -0.009230926632881165, 0.006128673441708088, -0.015083844773471355, -0.012112575583159924, 0.011595533229410648, 0.002900606719776988, 0.010788947343826294, 0.015952475368976593, -0.018186097964644432, 0.00636651273816824, 0.02161925844848156, -0.008376083336770535, -0.029202543199062347, -0.01300878170877695, -0.00505322590470314, -0.02881648577749729, -0.005608184263110161, -0.012864009477198124, 0.030443444848060608, 0.014422030188143253, -0.023246217519044876, -0.014863239601254463, -0.004594781436026096, -0.040977317839860916, -0.014449605718255043, -0.037613097578287125, 0.021812286227941513, 0.04737485200166702, 0.027865126729011536, 0.014422030188143253, 0.02291530929505825, -0.0020009533036500216, 0.022667130455374718, -0.019992297515273094, -0.01700034737586975, -0.02152274362742901, -0.014380667358636856, 0.020336993038654327, -0.025079993531107903, -0.03322857990860939, -0.004825727082788944, 0.017662161961197853, -0.01810337044298649, 0.01660050079226494, 0.017813827842473984, -0.01913745515048504, -0.022639553993940353, -0.012836433947086334, 0.013967033475637436, 0.022281071171164513, 0.002735153306275606, 0.01288469135761261, -0.030443444848060608, -0.0040570576675236225, 0.015442326664924622, -0.00922403298318386, -0.01938563585281372, 0.007004198152571917, 0.029174966737627983, -0.007093818858265877, 0.0045051611959934235, -0.013022569008171558, -0.02561771683394909, -0.0049050068482756615, -0.020667899399995804, 0.015745658427476883, 0.0034762469585984945, -0.011126748286187649, 0.02550741471350193, 0.0038226651959121227, 0.004880878143012524, -0.02229486033320427, 0.013153553009033203, 0.036372195929288864, 0.007176545448601246, 0.015056268312036991, -0.01933048479259014, -0.0037433854304254055, -0.012526208534836769, 0.01034084428101778, 0.023453034460544586, -0.015249297954142094, -0.01379468571394682, 0.0119746970012784, -0.030057385563850403, -0.025107568129897118, 0.025286810472607613, -0.021550318226218224, -0.005877046380192041, 0.0011848884169012308, -0.0011288754176348448, -0.004629251081496477, -0.012167726643383503, -0.003386626485735178, -0.012491739355027676, -0.0012236664770171046, -0.003646870842203498, -0.01104402169585228, -0.021081533282995224, 0.011099172756075859, 0.022625766694545746, -0.019482150673866272, 0.005094589199870825, 0.18740366399288177, -0.0043707299046218395, 0.0064561334438622, 0.01844806596636772, 0.005442730616778135, 0.004032928962260485, -0.0027782400138676167, 0.008803505450487137, -0.01804821938276291, -0.0020440402440726757, 0.011712728999555111, 0.014504756778478622, -0.020447295159101486, -0.0018182650674134493, 0.008141690865159035, -0.01622823067009449, -0.04185973480343819, -0.03827491030097008, -0.011009551584720612, -0.0007785793859511614, -0.0020836801268160343, -0.010154708288609982, -0.005925303790718317, -0.004625804256647825, 0.02980920672416687, 0.0164350476115942, 0.022487888112664223, 0.021646833047270775, 0.016352321952581406, 0.040260352194309235, -0.00998236145824194, -0.013015675358474255, 0.012477952055633068, 0.001102161593735218, -0.01054766122251749, -0.014435818418860435, 0.014546120539307594, 0.002147448481991887, 0.01371195912361145, 0.0003246593987569213, -0.00777631439268589, -0.034717660397291183, 0.02015775255858898, -0.04219064489006996, 0.015001117251813412, 0.005615078378468752, 0.0009211968281306326, 0.0036158484872430563, 0.01088546123355627, 0.026665588840842247, 0.0013089785352349281, -0.006259657442569733, 0.015938688069581985, 0.008500173687934875, 0.00165884371381253, 0.006039052736014128, -0.013291431590914726, 0.01799306832253933, -0.014118698425590992, 0.017234740778803825, -0.012636511586606503, -0.007617754861712456, 0.014077335596084595, -0.005497882142663002, -0.030967380851507187, 0.011926439590752125, 0.006183824501931667, 0.01649019867181778, 0.012167726643383503, 0.011202581226825714, 0.0038916042540222406, -0.008968958631157875, -0.026720739901065826, 0.00765911815688014, -0.005528904497623444, -0.02550741471350193, 0.012147044762969017, 0.02524544671177864, 0.047926366329193115, 0.018282612785696983, 0.0039708842523396015, -0.005039438139647245, -0.024225151166319847, 0.00147443194873631, 0.0038433470763266087, -0.026527712121605873, 0.03515886887907982, -0.021798498928546906, 0.008665626868605614, -0.006256210617721081, 0.010140920989215374, 0.0060838633216917515, -0.0023525420110672712, -0.02015775255858898, 0.0032642597798258066, 0.004929135553538799, -0.004949817433953285, 0.011836819350719452, 0.002181918127462268, -0.02105395868420601, -0.02068168856203556, 0.03391796723008156, 0.015290660783648491, 0.0319325253367424, -0.0005385856493376195, 0.0012589977122843266, -0.005680570378899574, 0.00974796898663044, 0.008769035339355469, -0.003076401073485613, -0.0008419170626439154, -0.04359699785709381, 0.009051685221493244, -0.009699711576104164, -0.0020026767160743475, 0.03256676346063614, 0.012160832062363625, -0.009134411811828613, 0.014380667358636856, 0.012636511586606503, 0.019358059391379356, -0.0183101873844862, -0.006097651086747646, 0.002707577543333173, -0.002585211070254445, -0.025755595415830612, 0.0012555507710203528, 0.01607656478881836, -0.015014905482530594, -0.026472561061382294, 0.016269594430923462, -0.02736876718699932, 0.015538841485977173, 0.0052290200255811214, -0.0008600135333836079, -0.005270383320748806, -0.015001117251813412, -0.013422415591776371, 0.009506682865321636, 0.0036951282527297735, 0.019868208095431328, -0.008176160976290703, 0.023494398221373558, -0.0008285600924864411, -0.005670229438692331, 0.030305566266179085, -0.016145505011081696, -0.0009556662989780307, -0.030250415205955505, -0.011271519586443901, 0.001682972302660346, 0.0051152706146240234, -0.026458771899342537, -0.011126748286187649, 0.03022284060716629, -0.017234740778803825, -0.011340458877384663, -0.014394454658031464, 0.011050915345549583, -0.0016683228313922882, -0.04966362565755844, 0.036317043006420135, 0.0366203747689724, 0.016986560076475143, -0.015014905482530594, 0.00015963678015396, -0.17571161687374115, 0.013394840061664581, -0.008114115335047245, -0.00977554451674223, 0.0036055075470358133, 0.027548007667064667, 0.007307529915124178, -0.015980049967765808, -0.006769805680960417, -0.004481032490730286, 0.0073282113298773766, -0.005480647087097168, -0.048863936215639114, -0.025066206231713295, 0.0032435781322419643, -0.023080764338374138, 0.017910340800881386, 0.03298039734363556, 0.047154247760772705, 0.01722095161676407, 0.009148200042545795, -0.026638014242053032, -0.0025472945999354124, -0.015842173248529434, 0.019468361511826515, 0.026376046240329742, -0.017868978902697563, 0.002285326598212123, 0.005328981671482325, -0.01063038781285286, 0.026362258940935135, -0.0032642597798258066, 0.02881648577749729, -0.011126748286187649, -0.006394088268280029, -0.010699326172471046, -0.011285307817161083, -0.020709263160824776, -0.005063566379249096, 0.027768613770604134, 0.03339403122663498, 0.010237435810267925, 0.008513961918652058, 0.013422415591776371, 0.015276873484253883, 0.017772464081645012, 0.022777432575821877, -0.016352321952581406, 0.012105681002140045, -0.008058964274823666, -0.008376083336770535, -0.04081186279654503, 0.014070441946387291, 0.006890449207276106, 0.005932197440415621, -0.0024180340114980936, 0.017910340800881386, 0.025107568129897118, -0.008314038626849651, -0.011788561940193176, 0.016655651852488518, -0.01970275491476059, -0.01694519631564617, -0.0036985750775784254, -0.01923396997153759, -0.01871003396809101, 0.01684868149459362, 0.026348469778895378, -0.0044603506103158, 0.022225920110940933, -0.012822646647691727, 0.02654149942100048, -0.006301020737737417, 0.016876257956027985, 0.0037399386055767536, 0.002707577543333173, -0.020723050460219383, 0.005904621910303831, 0.014573696069419384, 0.006049393676221371, -0.005983901675790548, 0.0055426922626793385, -0.00029363686917349696, -0.011381822638213634, -0.01825503632426262, -0.01741398125886917, -0.007817678153514862, -0.013636126182973385, -0.0007376468856818974, -0.008121008984744549, 0.03309069946408272, -0.014015290886163712, -0.010299480520188808, 0.014160062186419964, -7.330150401685387e-05, 0.004949817433953285, 0.011747199110686779, 0.008196841925382614, -0.006528519559651613, -0.011161217465996742, 0.004587887786328793, 0.0023835645988583565, -0.017303679138422012, 0.009106836281716824, 0.03742006793618202, 0.016310958191752434, 0.010857885703444481, 0.007969344034790993, 0.038026731461286545, -0.016200656071305275, -0.029202543199062347, 0.021384865045547485, 0.027699673548340797, -0.007721163332462311, -0.022418949753046036, 0.03482796251773834, -0.02182607538998127, -0.02633468247950077, 0.009396379813551903, -0.017758676782250404, 0.06033537909388542, -0.028237396851181984, -0.01742776855826378, -0.009031003341078758, 0.006531966384500265, -0.00493602966889739, -0.12673738598823547, -0.022060466930270195, 0.022998036816716194, 0.006228635087609291, -0.004701637197285891, 0.010292586870491505, 0.00998236145824194, 0.04185973480343819, 0.003179809544235468, 0.030553746968507767, -0.033311303704977036, -0.0030695071909576654, -0.007679800037294626, -0.009113730862736702, 0.014394454658031464, -0.006304468028247356, 0.002169853774830699, -0.0004851579142268747, -0.01617307960987091, 0.038192182779312134, -0.00021640369959641248, -0.010209860280156136, -0.0021164261270314455, 0.022846370935440063, -0.009148200042545795, 0.006142461206763983, -0.027051648125052452, 0.032318584620952606, 0.02456984482705593, 1.4716852092533372e-05, 0.035737957805395126, -0.020254265516996384, 0.016421260312199593, -0.027148162946105003, -0.0006273445324040949, -0.006583670619875193, -0.022667130455374718, -0.007755632977932692, 0.019454574212431908, -0.01365680806338787, 0.007466089446097612, -0.007066243328154087, 0.016614289954304695, -0.0349382646381855, 0.015042481012642384, 0.0014459947124123573, -0.02752043306827545, 0.03929520770907402, 0.015497477725148201, -0.010071981698274612, -0.037916429340839386, -0.010058194398880005, -0.03612401336431503, -0.0317394956946373, 0.023921819403767586, 0.01872382126748562, 0.01835155114531517, 0.004029482137411833, -0.010713114403188229, -0.00684219179674983, -0.014160062186419964, -0.0008832804160192609, -0.00038282666355371475, 0.023756366223096848, -0.005118717905133963, 0.017083074897527695, -0.0076522245071828365, -0.007927980273962021, -0.014615059830248356, 0.003097082721069455, -0.015249297954142094, -0.012160832062363625, -0.035737957805395126, 0.007790102623403072, -0.019937146455049515, 0.006466474384069443, -0.007541922386735678, -0.011002657935023308, 0.011547275818884373, 0.008948276750743389, -0.0036641056649386883, -0.0086863087490201, -0.0051325056701898575, -0.0069214715622365475, 0.007562603801488876, 0.022584402933716774, 0.017924129962921143, -0.019426999613642693, 0.00801070686429739, -0.030002234503626823, 0.028540728613734245, 0.021040169522166252, 0.0025145485997200012, 0.016186866909265518, -0.018392914906144142, 0.004153572488576174, -0.012305604293942451, -0.00881039910018444, 0.021591681987047195, 0.0001918441994348541, -0.002898883307352662, 0.004487926140427589, -0.03198767825961113, 0.0075281341560184956, 0.011333565227687359, 0.016503985971212387, 0.018379125744104385, -0.02208804339170456, 0.007617754861712456, -0.0026731081306934357, 0.0031746390741318464, -0.0014166956534609199, -0.0194407869130373, 0.02374257706105709, -0.006301020737737417, 0.008955170400440693, -0.022570615634322166, -0.006924918387085199, 0.023549549281597137, 0.012333179824054241, -0.004101868253201246, -0.01088546123355627, -0.02280500717461109, 0.0030574428383260965, 0.0009194733574986458, 0.01000993698835373, -0.029478298500180244, 0.007562603801488876, -0.018075795844197273, -0.005166974849998951, -0.014642635360360146, -0.032952822744846344, 0.007755632977932692, 0.007155864033848047, -0.010437358170747757, 0.018985789269208908, -0.004291450139135122, -0.03841278702020645, 0.015359600074589252, 0.0007587594445794821, 0.01086478028446436, 0.022308647632598877, -0.003998459782451391, -0.02524544671177864, 0.0038157713133841753, -0.013884306885302067, -0.017896553501486778, -0.004636145196855068, -0.014559907838702202, -0.007886616513133049, -0.011526593938469887, 0.0008738012984395027, 0.04718182235956192, 0.0031625747215002775, -0.027258465066552162, -0.011988485231995583, -0.0006450101500377059, -0.008679415099322796, 0.014683998189866543, 0.03303555026650429, 0.007080031093209982, 0.01773110032081604, 0.051097556948661804, -0.019261544570326805, 0.023783940821886063, -0.01679353043437004, -0.003481417428702116, -0.022680917754769325, -0.030415868386626244, -0.008844868279993534, 0.01974411867558956, -0.02763073518872261, 0.0038364531937986612, -0.015897324308753014, 0.03105010651051998, 0.02945072390139103, 0.0086863087490201, -0.002705854130908847, -0.020130176097154617, -0.006056287791579962, 0.0060631814412772655, 0.027037858963012695, 0.0208471417427063, -0.01628338173031807, -0.02415621094405651, 0.013705065473914146, 0.010230541229248047, 0.009106836281716824, -0.005273830611258745, 0.025011055171489716, 0.007666012272238731, 0.010230541229248047, -0.012808858416974545, 0.008334720507264137, -0.02520408295094967, 0.013677489943802357, -0.006190718617290258, 0.009182669222354889, -0.01684868149459362, -0.0003789488400798291, 0.02015775255858898, 0.02939557284116745, -0.0248869638890028, 0.005559926852583885, 0.015138995833694935, -0.008727672509849072, -0.029147392138838768, -0.006459580268710852, -0.03369736298918724, -0.0012271135346964002, 0.01996472291648388, 0.003781301900744438, 0.006566436029970646, -0.016628077253699303, 0.011836819350719452, 0.007962449453771114, -0.02276364527642727, 0.002935076132416725, 0.009934104047715664, -0.02452848106622696, -0.02840285189449787, 0.0002608908689580858, 0.01602141372859478, 0.026472561061382294, 0.016214443370699883, -0.018544580787420273, 0.044562142342329025, 5.934540240559727e-06, 0.020667899399995804, -0.029202543199062347, 0.01238833088427782, -0.01649019867181778, -0.007183439563959837, 0.0038226651959121227, 0.0024163105990737677, -0.021164260804653168, -0.025576353073120117, -0.009906528517603874, -0.019109878689050674, -0.0022353457752615213, 0.0028282208368182182, 0.0790867730975151, 0.030498595908284187, -0.011154323816299438, -0.006369960028678179, -0.010099557228386402, 0.01649019867181778, 0.01566293090581894, 0.011567957699298859, 0.0030126324854791164, -0.0244181789457798, 0.02462499588727951, -0.0208471417427063, -0.008775929920375347, -0.014111804775893688, -0.013601657003164291, -0.010127132758498192, 0.00038907426642253995, 0.013849836774170399, -0.007155864033848047, 0.008879338391125202, 0.007383362390100956, -0.007769420742988586, 0.0076453303918242455, -0.011733410879969597, -0.03358706086874008, -0.007900404743850231, 0.033724937587976456, 0.006818063091486692, -0.0035089929588139057, -0.012271135114133358, 0.012781282886862755, -0.002752387896180153, -0.033007971942424774, -0.02291530929505825, -0.01288469135761261, 0.011678259819746017, -0.01804821938276291, -0.022074254229664803, 0.014229001477360725, 0.02689998224377632, 0.014042866416275501, -0.00031991986907087266, -0.02270849235355854, -0.01872382126748562, 0.0015382005367428064, 0.0023577124811708927, 0.008734566159546375, -0.009182669222354889, -0.005914962850511074], "02544d89-afa8-46c7-b46f-ef0dcefed681": [0.015286372043192387, -0.01337557565420866, 0.01669575273990631, -0.030274605378508568, -0.008334324695169926, 0.023430971428751945, -0.006670848000794649, -0.023254798725247383, -0.019568724557757378, -0.029054947197437286, -0.0027696385513991117, 0.03534295782446861, -0.01478495728224516, -0.010943036526441574, -0.018254203721880913, -0.003315096255391836, 0.027360979467630386, -0.026480115950107574, -0.008449515327811241, -0.014188679866492748, -0.027808187529444695, -0.009479447267949581, -0.018457481637597084, -0.01338912732899189, -0.019961724057793617, 0.011159864254295826, -0.006315114442259073, -0.011735813692212105, -0.012420177459716797, 0.01599106192588806, 0.0007580508827231824, -0.0021530338563024998, -0.007988755591213703, -0.004702456761151552, -0.015611614100635052, 0.00425186101347208, 0.003974050283432007, -0.0014762935461476445, 0.013070660643279552, -0.013090988621115685, 0.03084377758204937, 0.004163774661719799, -0.010279000736773014, -0.009892775677144527, -0.021086519584059715, 0.009953758679330349, 0.0020429259166121483, 0.014148024842143059, -0.006220252253115177, 0.0010112992022186518, -0.012162693776190281, -0.010489053092896938, -0.026398805901408195, 0.006071182899177074, -0.006071182899177074, -0.01768503151834011, 0.011200519278645515, -0.013294264674186707, 0.02485390566289425, -0.0032879929058253765, -0.0005060730618424714, 0.009730154648423195, -0.01269798818975687, -0.014635887928307056, -0.004387378226965666, -0.01612658053636551, -0.011979744769632816, -0.0030559191945940256, -0.019528068602085114, -0.007900669239461422, 0.04019448533654213, 0.019500965252518654, 0.018592998385429382, 0.012122038751840591, -0.02053089812397957, -0.014866267330944538, -0.008435962721705437, -0.0170887541025877, -0.0022970212157815695, 0.01141057163476944, 0.01748175546526909, -0.02649366669356823, -0.03225316107273102, 0.0017600333085283637, 0.02886522375047207, -0.001212881412357092, 0.022468797862529755, 0.00599664868786931, -0.009567533619701862, 0.009289722889661789, 0.00853082537651062, -0.010163811035454273, 0.0197720006108284, 0.006101674400269985, 0.007832909934222698, 0.011247950606048107, 0.023823972791433334, 0.0076025305315852165, -0.00563413929194212, -0.026940874755382538, -0.0170887541025877, -0.0017430935986340046, -0.022631419822573662, -0.01138346828520298, -0.027781084179878235, -0.011803572066128254, 0.0036996272392570972, -0.011803572066128254, 0.019500965252518654, 0.014269990846514702, -0.03802620619535446, 0.02200803905725479, -0.004566939081996679, 0.0026290391106158495, 0.023634249344468117, -0.01867430843412876, 0.04098048433661461, -0.038514066487550735, -0.010143483057618141, -0.002119154669344425, 0.004566939081996679, -0.007209530100226402, 0.03214474767446518, -0.024569319561123848, 0.01847103238105774, 0.021655693650245667, 0.01284028124064207, -0.008564705029129982, 0.01799672096967697, -0.016140131279826164, -0.0052919574081897736, -0.007846462540328503, 0.017617272213101387, 0.014405508525669575, -0.012440504506230354, 0.0017447875579819083, -0.02623618394136429, 0.010983691550791264, -0.012643780559301376, -0.03152136504650116, 0.03347281739115715, 0.024731939658522606, 0.0038419205229729414, -0.020829036831855774, -0.014175128191709518, 0.020910346880555153, 0.010428070090711117, 0.008720549754798412, 0.003838532604277134, 0.0064235287718474865, 0.023512283340096474, -0.030626950785517693, -0.02177765965461731, 0.008259790018200874, 0.018538791686296463, 0.012643780559301376, 0.015476096421480179, 0.006338830105960369, -0.02482680231332779, 0.0075008925050497055, -0.005644302815198898, 0.010902381502091885, -0.006030527874827385, 0.002203853102400899, -0.006711503025144339, 0.028594188392162323, 0.012941919267177582, -0.006657296326011419, -4.946917397319339e-05, -0.007555099669843912, -0.011566417291760445, 0.015110199339687824, -0.02115427888929844, 0.016871925443410873, 0.011627399362623692, -0.011647727340459824, -0.00569173414260149, -0.0006665766122750938, -0.006359157618135214, -0.04287772998213768, 0.022956661880016327, -0.0015592980198562145, -0.002424068981781602, 0.019270585849881172, -0.016993891447782516, -0.03561399504542351, 0.021899625658988953, 0.0032625833991914988, -0.002068335423246026, -0.008903498761355877, -0.00046838229172863066, 0.01478495728224516, -0.013104540295898914, 0.0011976357782259583, -0.629234790802002, -0.003245643572881818, 0.01220334880053997, -0.01906730979681015, -0.004167162347584963, 0.004492404405027628, 0.02700863406062126, 0.0022614479530602694, -0.005725613329559565, 0.029136257246136665, 0.0007144312257878482, -0.0006936800782568753, 0.005186931695789099, -0.020097242668271065, -0.018592998385429382, -0.013829559087753296, -0.012616677209734917, -0.02282114326953888, -0.01357207540422678, 0.004068912472575903, -0.021764107048511505, 0.017386892810463905, -0.019582275301218033, -0.004116343334317207, -0.013395902700722218, -0.01867430843412876, 0.037213098257780075, -0.027415186166763306, 0.013816007412970066, 0.013179074972867966, -0.01083462219685316, 0.02646656334400177, 0.011193743906915188, 0.011112432926893234, 0.042498283088207245, -0.010326432064175606, -0.01501533668488264, 0.020964553579688072, 0.01646537333726883, 0.04832553490996361, -0.023295454680919647, -0.028539981693029404, 0.016085924580693245, 0.016587339341640472, -0.017698582261800766, -0.0013340001460164785, 0.015164406038820744, -0.0021818315144628286, -0.02550438977777958, -0.008761204779148102, -0.008578256703913212, -0.006833469029515982, -0.011275053955614567, -0.0006386261084116995, -0.0002310149575350806, -0.0068368567153811455, 0.021371105685830116, -0.02886522375047207, 0.006555658299475908, -0.004224757663905621, -0.0006636121543124318, 0.008347876369953156, -0.018796274438500404, -0.05030408874154091, -0.04171228036284447, 0.016600891947746277, 0.011275053955614567, -0.028377359732985497, 0.007541547529399395, -0.013456885702908039, 0.03946268931031227, -0.01071943249553442, -0.0014983151340857148, -0.02440669760107994, -0.0012137284502387047, 0.011837451718747616, 0.028594188392162323, -0.0025172370951622725, -0.019948173314332962, 0.008198807947337627, -0.0077109443955123425, -0.010726208798587322, -0.0254230797290802, -0.0006517543806694448, 0.02623618394136429, 0.02417631819844246, -0.011132760904729366, -0.005783208645880222, 0.008496945723891258, 0.016397615894675255, -0.004116343334317207, 0.04098048433661461, -0.0170887541025877, -0.026425909250974655, -0.003845308441668749, 0.025694115087389946, 0.0010943036759272218, -0.0004988737055100501, -0.0186472050845623, -0.019080860540270805, -0.03236157447099686, -0.019893966615200043, -0.002591771772131324, -0.010739760473370552, 0.023458076640963554, 0.012325314804911613, 0.014297094196081161, -0.006233803927898407, 0.0330391600728035, -0.017617272213101387, 0.004854913800954819, -0.005864519160240889, -0.027781084179878235, -0.020300518721342087, 0.007345047313719988, -0.025341767817735672, -0.009425240568816662, 0.0017346236854791641, 0.020273415371775627, -0.029027843847870827, 0.0026104054413735867, -0.011607072316110134, 0.008442739024758339, -0.0045533874072134495, 0.0012543837074190378, 0.013660161755979061, 0.008795084431767464, -0.001598259317688644, 0.0173733402043581, -0.004190878011286259, -0.009086446836590767, -0.03412330150604248, 0.0042112055234611034, -0.0054206992499530315, 0.02000238001346588, 0.014297094196081161, 0.0254230797290802, -0.009675947949290276, -0.007677065208554268, -0.03610185533761978, -0.006348994094878435, -0.0011374998139217496, 0.0034963509533554316, -0.006040691863745451, -0.0006720820092596114, -0.04092627763748169, -0.020314069464802742, 0.00644046813249588, -0.018349066376686096, 0.0025561985094100237, -0.010658449493348598, -0.0027069617062807083, -0.011600296013057232, 0.02305152267217636, -0.01997527666389942, 0.005542664788663387, 0.010048621334135532, -0.055264029651880264, -0.023607144132256508, -0.04027579352259636, -0.022021589800715446, 0.02886522375047207, -0.022590763866901398, -0.006599701475352049, -0.014635887928307056, -0.002620569197461009, 0.0063964249566197395, -0.010204466059803963, -0.0050852932035923, -0.021140726283192635, 0.014134473167359829, 0.007114667911082506, 0.009445568546652794, 0.04233565926551819, -0.025599252432584763, 0.025802528485655785, -0.018945343792438507, -0.007568651344627142, 0.009269395843148232, 0.0017481754766777158, 0.011051450856029987, 0.018267756327986717, -0.015421888791024685, -0.0016253627836704254, 0.029217569157481194, 0.012406624853610992, 0.0054105352610349655, 0.011810348369181156, -0.02643945999443531, 0.016085924580693245, -0.0015525221824645996, 0.004400930367410183, -0.004675352945923805, 0.009865672327578068, -0.017603721469640732, 0.003970662131905556, -0.032415781170129776, 0.01070588082075119, -0.006186373066157103, 0.013280712999403477, 0.007785479072481394, 0.024528663605451584, -0.004411093890666962, -0.005166603717952967, 5.8600722695700824e-05, -0.013280712999403477, 0.021371105685830116, -0.0255585964769125, 0.023634249344468117, 0.005342776421457529, 0.009614964947104454, -0.0036217046435922384, -0.003079634625464678, -0.006582761649042368, 0.0068571846932172775, 0.05431540682911873, 0.0203411728143692, 0.016004614531993866, 0.011308933608233929, 0.018227100372314453, 0.00013805842900183052, -0.015869097784161568, 0.04285062849521637, -0.0028255395591259003, -0.0008626534836366773, 0.026290390640497208, -0.009574309922754765, 0.028675498440861702, 0.0002670117828529328, -0.0244338009506464, 0.01654668338596821, 0.02737453021109104, 0.012941919267177582, 0.021140726283192635, 0.0409533828496933, 0.01946030929684639, 0.023227695375680923, -0.009418465197086334, 0.025667009875178337, 0.006186373066157103, -0.00920841284096241, 0.024284731596708298, 0.017617272213101387, -0.01601816527545452, 0.030437225475907326, 0.002205546945333481, -0.00043090322287753224, 0.012027176097035408, -0.014974681660532951, 0.017156513407826424, 0.004184102173894644, 0.008103945292532444, -0.028404463082551956, -0.012332091107964516, 0.029082050547003746, -0.023322558030486107, 0.02039538137614727, 0.0066437446512281895, 0.009479447267949581, 0.010672001168131828, 0.015489648096263409, -0.03602054715156555, 0.011532537639141083, -0.0044449735432863235, 0.03157557174563408, -0.01570647582411766, -0.005102233029901981, -0.018769171088933945, 0.004316231701523066, -0.023295454680919647, 0.0006466725026257336, -0.009784362278878689, -0.017264926806092262, 0.007832909934222698, -0.019988827407360077, -0.01359917875379324, 0.00423830933868885, 0.021425314247608185, -0.007182426284998655, 0.000778378511313349, -0.03341861069202423, -0.015232164412736893, 0.029624121263623238, 0.008313997648656368, 0.0029305655043572187, -0.028350256383419037, 0.0013932890724390745, -0.021818313747644424, 0.008029410615563393, 0.005579932127147913, -0.013280712999403477, 0.0030169577803462744, -0.008178479969501495, 0.005546052940189838, -0.005407147575169802, 0.01932479254901409, 0.04618435725569725, -0.030003570020198822, -0.005668018478900194, 0.011417347937822342, -0.000426244834670797, 0.010367087088525295, -0.0024816638324409723, -0.03493640571832657, 0.030979296192526817, -0.03325599059462547, -0.03141295164823532, -0.03209054097533226, -0.010963364504277706, -0.017156513407826424, 0.008930602110922337, -0.011708710342645645, -0.026032907888293266, -0.011363140307366848, -0.021587934345006943, 0.00992665532976389, 0.003957110457122326, 0.008781532756984234, 0.022983765229582787, 0.004085851833224297, 0.0041129556484520435, -0.027997910976409912, 0.006582761649042368, 0.03745703026652336, 0.07930482923984528, 0.00792099628597498, -0.003404876682907343, 0.021235588937997818, -0.006186373066157103, -0.028512878343462944, -0.02568056248128414, -0.006430304609239101, 0.04098048433661461, -0.006657296326011419, -0.018254203721880913, 0.003094880376011133, 0.011830676347017288, -0.008950929157435894, 0.008632463403046131, 0.010116379708051682, -0.012887712568044662, -0.012474384158849716, 0.0003038556023966521, 0.01635695993900299, 0.01782054826617241, -0.0026747763622552156, 0.01763082481920719, 0.016573788598179817, 0.04341980069875717, 0.003943558782339096, 0.043799251317977905, 0.033120471984148026, 0.0002877629012800753, -0.00992665532976389, -0.034421440213918686, 0.020869692787528038, -0.0032016003970056772, 0.02313283458352089, -0.02217065915465355, 0.0295157078653574, -0.004228145349770784, -0.00792099628597498, -0.006061019375920296, 0.003137229708954692, -0.004339947365224361, 0.04211883246898651, 0.0024376206565648317, 0.001010452164337039, 0.002019210485741496, -0.016031717881560326, -0.014120921492576599, 0.017522409558296204, -0.02352583408355713, -0.017441099509596825, 0.020124346017837524, 0.02169634774327278, -0.012074607424438, 0.015896201133728027, -0.009018688462674618, -0.012941919267177582, 0.005200483370572329, -0.008612135425209999, -0.03471957892179489, -0.02646656334400177, -0.03732151538133621, -0.008734101429581642, -0.0006606476963497698, -0.0018091583624482155, -0.011281830258667469, -0.019568724557757378, 0.00022318035189528018, -0.007738048210740089, -0.027049288153648376, 0.004021481145173311, -0.007202754262834787, -0.049870431423187256, -0.031711090356111526, -0.007121443748474121, 0.022279074415564537, 0.013165523298084736, -0.017292030155658722, -0.005803536158055067, 0.0009045791812241077, 0.023769766092300415, 0.019758448004722595, -0.0170887541025877, -0.0030288156121969223, -0.04033000022172928, 0.004085851833224297, -0.0068368567153811455, -0.016627995297312737, -0.006620028987526894, 0.006067795213311911, -0.013362023048102856, -0.010726208798587322, -0.003706403076648712, 0.016275649890303612, 0.01338912732899189, 0.005237750709056854, 0.015462544746696949, 0.016248546540737152, -0.008076841942965984, 0.025694115087389946, -0.041143108159303665, 0.021682796999812126, -0.010292552411556244, -0.00989955198019743, -0.021899625658988953, 0.011207295581698418, 0.00750766834244132, -0.015584509819746017, -0.008971257135272026, -0.006769098341464996, 0.00212593050673604, 0.011573192663490772, 0.01979910396039486, 0.006159269250929356, 0.0005861130775883794, 0.01969069056212902, -0.025545045733451843, -0.005776432808488607, 0.014690094627439976, 0.02700863406062126, 0.0077312723733484745, -0.022672073915600777, -0.008307221345603466, 0.03490930423140526, 0.013016453944146633, -0.008090393617749214, 0.012318538501858711, 0.01768503151834011, -0.0028306213207542896, -0.007006253581494093, 0.01477140560746193, -0.023458076640963554, 0.01765792816877365, -0.0025528105907142162, -0.005457966588437557, -0.03355412930250168, -0.009520103223621845, -0.010787191800773144, 4.380496829980984e-05, -0.01997527666389942, -0.002810293808579445, -0.02714415080845356, -2.7262305593467318e-05, 0.004634697921574116, -0.00865956675261259, 0.010238345712423325, -0.0238646287471056, -0.007107891608029604, 0.01573357917368412, -0.007114667911082506, 0.027239013463258743, -0.0084766186773777, -0.012528590857982635, -0.010800743475556374, -0.02550438977777958, -0.004431421402841806, -0.040519725531339645, -0.012169470079243183, 0.007548323832452297, 0.06705404818058014, 0.0026036296039819717, -0.0011044674320146441, -0.0016846517100930214, 0.007304392289370298, 0.009743707254529, -0.021913176402449608, -0.003238867735490203, -0.03493640571832657, -0.011796796694397926, 0.009953758679330349, -0.004262024536728859, 0.008429187349975109, 0.01199329737573862, -0.008727326057851315, -0.001836261828429997, 0.0150424400344491, 0.028539981693029404, -0.009086446836590767, -0.004556775093078613, -0.03347281739115715, -0.03827013447880745, -0.00800908263772726, 0.03957110270857811, 0.002092051086947322, 0.029054947197437286, -0.029678327962756157, -0.0013390821404755116, 0.0016423024935647845, -4.5022505219094455e-05, 0.027943704277276993, 0.01669575273990631, 0.03301205858588219, -0.014026058837771416, 0.008862842805683613, 0.013362023048102856, -0.003227009903639555, -0.010943036526441574, -0.0033354240003973246, -0.04800029098987579, -0.019473861902952194, 0.016506029292941093, 0.022726280614733696, 0.007419581990689039, -0.017983170226216316, 0.006694563664495945, 0.002607017522677779, 0.013355247676372528, -0.017075203359127045, -0.019595827907323837, 0.012901264242827892, -0.006409976631402969, 0.009513326920568943, -0.023241247981786728, -0.026615632697939873, 0.009540430270135403, -0.02816053293645382, -0.010258672758936882, 0.024271180853247643, 0.006132165901362896, -0.022130005061626434, -0.026087114587426186, 0.032497093081474304, 0.01779344491660595, 0.032442886382341385, 0.01008250005543232, 0.03352702409029007, 0.008483394049108028, -0.0040113176219165325, -0.00837498065084219, -0.02576187252998352, 0.008896722458302975, -0.007697392720729113, 0.010197690688073635, 0.0384056530892849, -0.0051970952190458775, 0.00043577339965850115, 0.029624121263623238, -0.00497010350227356, -0.00376738584600389, -0.029597017914056778, 0.014473266899585724, 0.01223045215010643, -0.006589537486433983, -0.03805330768227577, -0.03279523178935051, 0.0072705126367509365, 0.0238646287471056, 0.0007766845519654453, 0.020544450730085373, 0.004021481145173311, -0.002227568533271551, 0.002957669086754322, 0.052634987980127335, -0.014703646302223206, 0.02372911013662815, -0.00043365592136979103, 0.007555099669843912, -0.0184981357306242, 0.006738606840372086, 0.004787154961377382, -0.03480088710784912, 0.02067996747791767, 0.023037971928715706, -0.014486818574368954, 0.0038486963603645563, 0.006291398778557777, 0.016682201996445656, -0.01203395240008831, -0.014839163981378078, -0.020693520084023476, 0.029678327962756157, 0.004021481145173311, 0.0002862806722987443, -0.001985331065952778, -0.0026341211050748825, 0.011105657555162907, -0.030681157484650612, -0.015286372043192387, 0.008835739456117153, 0.00920841284096241, 0.009438792243599892, 0.016587339341640472, 0.006494675297290087, -0.00039024799480102956, -0.013836334459483624, 0.003689463483169675, 0.00012503605103120208, 0.0032049883157014847, 0.0042044296860694885, -0.010441621765494347, -0.027049288153648376, -0.02706284075975418, 0.0021547279320657253, 0.008463067002594471, 0.017806997522711754, 0.003618316724896431, -0.010197690688073635, 0.005403759423643351, 0.030328812077641487, -0.019311241805553436, -0.022184211760759354, 0.012250780127942562, 0.008937377482652664, -0.048650775104761124, 0.031711090356111526, -0.004841362126171589, -0.00048701593186706305, 0.027753978967666626, 0.006196536589413881, -0.011146312579512596, -0.016167234629392624, 0.005684958305209875, -0.010292552411556244, 0.010163811035454273, -0.005200483370572329, -0.005224199034273624, 0.009425240568816662, 0.0018464257009327412, -0.00230549112893641, -0.008137824945151806, -0.006416752468794584, -0.007426357828080654, 0.007948100566864014, 0.011756141670048237, -0.005071741528809071, -0.0005666324868798256, -0.018484584987163544, 0.018687861040234566, -0.004600818268954754, -0.038974829018116, -0.013538196682929993, -0.023485179990530014, -0.0023749438114464283, -0.008097168989479542, -0.022834695875644684, 0.00187691708561033, -0.0281063262373209, -0.002744229044765234, 0.016221443191170692, -0.009499775245785713, 0.007914220914244652, 0.01844392903149128, -0.008408859372138977, -0.004627922084182501, 0.01502888835966587, -0.000659800716675818, -0.04016738012433052, -0.01370081678032875, -0.013314592652022839, -0.030301708728075027, -0.004136670846492052, -0.016058821231126785, 0.04070945084095001, 0.022861799225211143, -0.027591358870267868, -0.015367682091891766, -0.02279403991997242, -0.061308108270168304, -0.0012247392442077398, -0.02956991456449032, 0.027672668918967247, 0.047864772379398346, 0.03236157447099686, 0.020517345517873764, 0.02404080145061016, -0.011810348369181156, 0.006542106159031391, -0.030355915427207947, 0.00210390891879797, -0.013456885702908039, -0.029353085905313492, -0.003113514045253396, -0.016763512045145035, -0.04905732721090317, -0.008869619108736515, 0.025124941021203995, 0.0023325947113335133, 0.006301562767475843, 0.016682201996445656, -0.024501560255885124, -0.010428070090711117, 0.004719396121799946, 0.008578256703913212, 0.03406909480690956, 0.014215783216059208, 0.03160267695784569, -0.03130453824996948, 0.005681570153683424, 0.016587339341640472, 0.0009181309142149985, -0.026846012100577354, 0.0101705864071846, 0.023349661380052567, 0.0021293184254318476, 0.01776634156703949, -0.01370081678032875, -0.027266116812825203, -0.014961129985749722, -0.011132760904729366, -0.0032964625861495733, -0.0057527171447873116, -4.507544144871645e-05, 0.02420342154800892, -0.001569461775943637, -0.012108487077057362, -0.014039610512554646, -0.0032761350739747286, 0.011810348369181156, 0.008442739024758339, 0.01340267900377512, -0.03770096227526665, -0.0023495343048125505, -0.018091583624482155, 0.0072908406145870686, 0.014229335822165012, -0.015692925080657005, -0.010997243225574493, 0.005566380452364683, -0.015408337116241455, -0.014310645870864391, 0.023146385326981544, -0.002869582735002041, -0.009452343918383121, -0.025802528485655785, -0.007846462540328503, -0.012311763130128384, 0.007128219585865736, 0.01210171077400446, -0.015963958576321602, -0.0005103080184198916, -0.006596313323825598, -0.005525725428014994, -0.0350177176296711, 0.004045196808874607, 0.02576187252998352, -0.022265521809458733, 0.002627345034852624, 0.19948172569274902, 0.005485069938004017, 0.011065002530813217, 0.022130005061626434, 0.011430899612605572, 0.010956588201224804, -0.01436485256999731, 0.01988041400909424, -0.0034031826071441174, -0.0010214629583060741, 0.015828441828489304, 0.007846462540328503, -0.032469987869262695, -0.004763439297676086, 0.0005120019777677953, -0.007439909502863884, -0.029163362458348274, -0.02135755494236946, -0.007148547098040581, 0.00351667869836092, 0.012210125103592873, -0.006467571947723627, -0.012887712568044662, -0.013294264674186707, 0.03455695882439613, 0.02807922102510929, 0.009648844599723816, 0.01838972233235836, 0.031846608966588974, 0.030654054135084152, -0.01206105574965477, -0.010251897387206554, 0.016451822593808174, -0.014595232903957367, -0.013714369386434555, -0.0009409994818270206, 0.02500297501683235, -0.0016431494150310755, 0.0150424400344491, 0.004390766378492117, 0.006697951350361109, -0.020327622070908546, 0.0257076658308506, -0.037213098257780075, 0.0011552865616977215, -0.00537326792255044, -0.0021225425880402327, -0.006738606840372086, 0.01562516577541828, 0.012603125534951687, -0.0023851075675338507, -0.0024562543258070946, 0.018484584987163544, -0.004079075995832682, -0.00868667010217905, 0.009696275927126408, -0.007643186021596193, 0.018999550491571426, -0.0016406085342168808, 0.0024291507434099913, -0.008029410615563393, 0.007697392720729113, 0.002571444259956479, -0.009398137219250202, -0.029840949922800064, 0.01408026646822691, 0.00675893435254693, 0.036372892558574677, 0.009594637900590897, -0.0002504955918993801, -0.022414591163396835, -0.009039015509188175, -0.027157703414559364, 0.007284064311534166, -0.002473193919286132, -0.013470437377691269, 0.02545018307864666, 0.02440669760107994, 0.05756782367825508, 0.006606477312743664, 0.008158151991665363, -0.009398137219250202, -0.02050379477441311, 0.0037809377536177635, 0.0013119785580784082, -0.025667009875178337, 0.019229929894208908, -0.009587861597537994, 0.004478852730244398, -0.014310645870864391, 0.006142329890280962, 0.020991656929254532, 0.012901264242827892, -0.006460795644670725, 0.005932277534157038, -0.0012967329239472747, 0.0035031267907470465, 0.012813177891075611, -0.012819953262805939, -0.02643945999443531, -0.020747726783156395, 0.04596753045916557, 0.02805211767554283, 0.030952192842960358, 0.0008944153669290245, 0.014717197977006435, 0.007527995854616165, 0.017278479412198067, 0.01672285608947277, -0.0034726355224847794, -0.024759043008089066, -0.049192845821380615, 0.0169532373547554, -0.010482276789844036, 0.0073992544785141945, 0.0211813822388649, 0.008449515327811241, -0.015313475392758846, 0.021249141544103622, 0.007162098772823811, 0.02180476300418377, -0.0060745710507035255, -0.002371555892750621, 0.0037504462525248528, -0.015137302689254284, -0.02550438977777958, 0.020381828770041466, 0.016627995297312737, -0.028512878343462944, -0.021886073052883148, -0.013226506300270557, -0.024704836308956146, 0.017183616757392883, -0.005210646893829107, -0.003499738872051239, -0.02553149312734604, -0.016682201996445656, -0.0281063262373209, 0.007372151128947735, 0.005834027659147978, 0.017956066876649857, 0.009614964947104454, 0.019812654703855515, -0.0036860755644738674, -0.008286894299089909, 0.03639999404549599, -0.0075008925050497055, 0.006179597228765488, -0.025585699826478958, -0.023241247981786728, 0.002459642244502902, 0.01776634156703949, -0.007345047313719988, -0.01852523908019066, 0.023322558030486107, -0.031060606241226196, -0.03279523178935051, -0.01838972233235836, 0.004438197240233421, 0.01202040072530508, -0.056592099368572235, 0.00994020700454712, 0.04705166816711426, 0.013653386384248734, -0.01405316311866045, -0.009804689325392246, -0.17183616757392883, -0.002317348960787058, 0.0016727938782423735, -0.001034167711623013, 0.00210390891879797, 0.02578897587954998, 0.007799030747264624, -0.016397615894675255, -0.01474430225789547, -0.005891622509807348, 0.002178443595767021, -0.006769098341464996, -0.04279642179608345, -0.01607237383723259, 0.029109153896570206, -0.020747726783156395, 0.011200519278645515, 0.03268681466579437, 0.06732508540153503, 0.0168041680008173, 0.024284731596708298, -0.03222605586051941, -0.00919486116617918, 0.004411093890666962, 0.02250945381820202, 0.019948173314332962, -0.0014009119477123022, 0.01138346828520298, 0.006325278431177139, -0.03526164963841438, 0.022861799225211143, -0.013511092402040958, 0.020205656066536903, 0.006650520488619804, 0.0017956065712496638, -0.01203395240008831, 0.008097168989479542, -0.01914861984550953, -0.008463067002594471, 0.024582870304584503, 0.028919430449604988, 0.005901786033064127, 0.00675893435254693, 0.007128219585865736, 0.03070826083421707, 0.01669575273990631, 0.02954281121492386, -0.02070707082748413, 0.022861799225211143, 0.004804094787687063, 0.0008503721910528839, -0.026032907888293266, -0.005159827880561352, 0.004129895009100437, 0.008578256703913212, 0.017752788960933685, 0.017210720106959343, 0.022279074415564537, 0.00790744461119175, -0.011593520641326904, 0.008192031644284725, -0.022184211760759354, -0.005339388735592365, -0.01153931301087141, -0.01635695993900299, -0.022997315973043442, 0.009784362278878689, 0.04003186523914337, 0.002625651191920042, 0.01731913350522518, 0.005668018478900194, 0.010123156011104584, -0.0119323143735528, 0.006457407958805561, 0.009703051298856735, -0.009472671896219254, -0.03222605586051941, 0.009980862028896809, 0.02706284075975418, 0.002127624349668622, 0.0020276803988963366, 0.02115427888929844, 0.018714964389801025, -0.00243592681363225, -0.012691211886703968, -0.016478925943374634, 0.002810293808579445, -0.0036691357381641865, -0.00010460255725774914, -0.025992251932621002, 0.01502888835966587, -0.013876989483833313, -0.016194337978959084, -0.000739840732421726, 0.001652466249652207, 0.012386297807097435, 0.017969617620110512, 0.004072300158441067, -0.0033015445806086063, -0.007690616883337498, -0.0047668274492025375, 0.01008250005543232, -0.031223228201270103, 0.0300848800688982, 0.03748413547873497, 0.014432611875236034, 0.0012543837074190378, 0.00932360254228115, 0.028675498440861702, -0.02446090430021286, -0.0300848800688982, 0.006897839717566967, 0.0341775082051754, 0.0008313150610774755, -0.017549512907862663, 0.021899625658988953, -0.01813223958015442, -0.02330900728702545, 0.0038351446855813265, -0.01405316311866045, 0.039245862513780594, -0.015516751445829868, -0.01734623685479164, 0.008354652673006058, -0.01071943249553442, -0.013849886134266853, -0.10077080130577087, -0.03263260796666145, 0.019162172451615334, 0.014690094627439976, -0.015367682091891766, 0.013273936696350574, -0.0050039831548929214, 0.043202973902225494, 0.005935665685683489, 0.01988041400909424, -0.0060745710507035255, 0.0009833486983552575, -0.00601020036265254, -0.008408859372138977, 0.00270865554921329, -0.013199402950704098, 0.007013029418885708, -0.00739247864112258, 0.0010070642456412315, 0.043284282088279724, -0.0027814963832497597, -0.010888829827308655, 0.0027764143887907267, 0.006952046882361174, -0.003625092562288046, 0.0006470959633588791, -0.03206343576312065, 0.006535330321639776, 0.022184211760759354, 0.024257628247141838, 0.022238418459892273, -0.017129410058259964, 0.010990467853844166, -0.023512283340096474, 0.008734101429581642, 0.0077312723733484745, -0.02652077004313469, 0.007114667911082506, 0.0031270659528672695, -0.03271391987800598, 0.013890542089939117, -0.011004019528627396, 0.013646610081195831, -0.027997910976409912, -0.0016710999188944697, 0.012284659780561924, -0.026249736547470093, 0.038486965000629425, 0.01920282654464245, -0.023322558030486107, -0.02211645245552063, -0.012257556430995464, -0.0341775082051754, -0.015205061063170433, 0.015476096421480179, 0.016587339341640472, 0.010482276789844036, 0.012386297807097435, -0.02219776250422001, -0.0008461372926831245, -0.002180137438699603, 0.001549981185235083, -0.0037809377536177635, 0.02669694274663925, 0.005932277534157038, 0.022753383964300156, -0.0009037322015501559, -0.005739165470004082, -0.018145790323615074, -0.003719954751431942, -0.01057713944464922, -0.016560235992074013, -0.028512878343462944, 0.018864033743739128, -0.022319728508591652, 0.006020363885909319, -0.004949775990098715, -0.021398210898041725, 0.008496945723891258, 0.014148024842143059, -0.010109604336321354, -0.01784765161573887, 0.010943036526441574, -0.02406790480017662, -0.013931197114288807, 0.02112717553973198, 0.017359789460897446, -0.00851727370172739, 0.012745418585836887, -0.04732270538806915, 0.022644970566034317, 0.02333611063659191, -0.004343335051089525, 0.019446758553385735, -0.010048621334135532, 0.003445531940087676, 0.0024325386621057987, -0.0057527171447873116, 0.01351786870509386, 0.01437840424478054, 0.002811987651512027, 0.002495215507224202, -0.05271629989147186, 0.0016168929869309068, 0.033825162798166275, 0.0036386442370712757, 0.025260457769036293, -0.026453012600541115, 0.009696275927126408, -0.0025697501841932535, -0.0036623599007725716, 0.001354327774606645, -0.03265971317887306, 0.0156793724745512, 0.00792099628597498, 0.016736408695578575, -0.026480115950107574, 0.0025477285962551832, 0.027252566069364548, 0.00040443497709929943, 0.003730118740350008, 0.00800908263772726, -0.009127101860940456, -0.001466976711526513, -0.0005751022836193442, 0.010929484851658344, -0.03740282356739044, -0.0014830693835392594, 0.004556775093078613, 0.00400454131886363, -0.017386892810463905, -0.03081667423248291, 0.011071777902543545, 0.007575427182018757, 0.009587861597537994, 0.024338940158486366, -0.008808636106550694, -0.04813580960035324, -0.004007929470390081, -0.0010680471314117312, 0.016316303983330727, 0.020490242168307304, 0.004184102173894644, -0.024935215711593628, 0.020937450230121613, -0.02943439595401287, -0.020937450230121613, -0.0075008925050497055, -0.014161576516926289, -0.01506954338401556, -0.0038690241053700447, 0.01974489726126194, 0.05293312668800354, 0.006132165901362896, -0.03165688365697861, -0.008910274133086205, -0.015408337116241455, -0.01074653584510088, 0.013619506731629372, 0.026317493990063667, 0.005315673071891069, -0.003879187861457467, 0.03076246753334999, -0.004783766809850931, 0.0070672365836799145, 0.004895568825304508, 0.00850372202694416, -0.020666414871811867, -0.03680654615163803, 0.00781258288770914, -0.0009613271104171872, -0.02654787339270115, 0.014934026636183262, -0.018091583624482155, 0.024000145494937897, 0.02474549226462841, 0.015611614100635052, 0.009459120221436024, -0.01599106192588806, -0.011119209229946136, -0.005244526546448469, 0.01666864939033985, 0.016899030655622482, -0.018864033743739128, -0.030301708728075027, 0.014269990846514702, 0.013802455738186836, 0.009099998511373997, -0.006345605943351984, 0.018660757690668106, 0.00870022177696228, -0.0010748229688033462, -0.008984808810055256, 0.01782054826617241, -0.025314664468169212, 0.014595232903957367, -0.008341100998222828, 0.017942514270544052, -0.007121443748474121, 0.016560235992074013, 0.013179074972867966, 0.03547847643494606, -0.0019243481801822782, 0.020219208672642708, 0.008869619108736515, -0.01649247668683529, -0.01344333402812481, 0.0023969653993844986, -0.005159827880561352, -0.009953758679330349, 0.010292552411556244, 0.006508226972073317, 0.008341100998222828, -0.020801933482289314, 0.013348471373319626, 0.0042213695123791695, -0.027103496715426445, -0.0008698528399690986, 0.006694563664495945, -0.02446090430021286, -0.02505718171596527, -0.008347876369953156, 0.012433729134500027, 0.0197720006108284, 0.0059797088615596294, -0.03011198341846466, 0.028539981693029404, -0.013328144326806068, 0.00426541268825531, -0.014269990846514702, 0.009736930951476097, -0.00905256811529398, -0.024528663605451584, -0.0012010236969217658, 0.00923551619052887, -0.011295381933450699, -0.021140726283192635, -0.0048718536272645, -0.018294859677553177, 0.012426952831447124, -0.004414482042193413, 0.0774075835943222, 0.028377359732985497, -0.014595232903957367, 0.01005539670586586, -0.00851727370172739, 0.00906611979007721, 0.018687861040234566, 0.009818241000175476, 0.01776634156703949, -0.003953722305595875, 0.017495306208729744, -0.004106179811060429, -0.0011417347704991698, -0.012393073178827763, -0.01641116663813591, 0.00425186101347208, 0.006027139723300934, 0.027970807626843452, -0.016031717881560326, 0.0012789461761713028, 0.022468797862529755, 0.0038283688481897116, 0.01069232914596796, -0.02372911013662815, -0.03168398514389992, -0.015191509388387203, 0.022495901212096214, 0.02279403991997242, -0.00985889695584774, -0.03282233327627182, 0.018592998385429382, 0.0017219189321622252, -0.012860609218478203, -0.014730749651789665, -0.025382423773407936, 0.0211813822388649, -0.010895605199038982, -0.012332091107964516, 0.009330378845334053, 0.011247950606048107, 0.02378331683576107, 0.013321368023753166, -0.017237823456525803, -0.02143886499106884, 0.003824980929493904, -0.005407147575169802, -0.00677248602733016, -0.01768503151834011, 0.008483394049108028], "4e1099db-41c7-43c0-836f-0d8da4edc74e": [0.004515768960118294, -0.008474798873066902, 0.013945959508419037, -0.03758329525589943, -0.0034882081672549248, 0.016688412055373192, 0.005175607278943062, -0.03285445272922516, -0.032084640115499496, -0.03516388684511185, 0.003684097668156028, 0.032304588705301285, -0.005154987331479788, -0.007821834646165371, -0.0144614577293396, 0.009980055503547192, 0.015643669292330742, -0.03153477609157562, -0.00666024349629879, -0.0027098050341010094, -0.02955526113510132, -0.014722644351422787, -0.015162535943090916, -0.004189286381006241, -0.016262266784906387, -0.00010723447485361248, 0.00542304664850235, -0.012839355506002903, -0.01953396573662758, 0.016633426770567894, 0.00945081003010273, -0.012234503403306007, -0.026599735021591187, -0.0007728185155428946, -0.014447711408138275, -0.0012526619248092175, 0.007107009179890156, 0.0008114809170365334, 0.011169139295816422, -0.005519273225218058, 0.031094884499907494, 0.00138153659645468, 0.0032940369565039873, -0.000986320897936821, -0.020716175436973572, 0.031232349574565887, -0.004354245960712433, -0.0041377367451786995, -0.0019846700597554445, -0.0013102259254083037, 0.003254515351727605, -0.002965836087241769, -0.019162805750966072, 0.009382077492773533, -0.0016341309528797865, -0.02537628449499607, 0.016097307205200195, -0.010804853402078152, 0.023451756685972214, -0.0049590980634093285, 0.0063578179106116295, 0.009897575713694096, -0.0160148274153471, -0.002123854821547866, -0.011808358132839203, -0.030242592096328735, 0.0009485176997259259, -0.012942454777657986, -0.006182548124343157, -0.008646632544696331, 0.04082750156521797, 0.029775207862257957, 0.010220621712505817, 0.012818735092878342, -0.02474393881857395, -0.017581943422555923, -0.015616174787282944, -0.024592725560069084, -0.008873451501131058, 0.010110648348927498, 0.012722508981823921, -0.020633695647120476, -0.030682485550642014, 0.006433424074202776, 0.02651725523173809, 0.017581943422555923, 0.021485988050699234, 0.009299596771597862, -0.024537740275263786, 0.008859705179929733, 0.0033971366938203573, -0.011402832344174385, 0.021389760076999664, 0.008770352229475975, -0.0008321008644998074, 0.012536928988993168, 0.022475745528936386, 0.009835716336965561, -0.0043851761147379875, -0.03073747083544731, -0.002666846849024296, 0.011251619085669518, -0.035851217806339264, -0.008481672964990139, -0.043879251927137375, -0.01991887204349041, 0.019300272688269615, -0.007663747761398554, 0.01953396573662758, 0.0066464971750974655, -0.021018601953983307, 0.03016011230647564, -0.006471227388828993, -0.006649933755397797, 0.019561458379030228, -0.011615904979407787, 0.03571375086903572, -0.028840435668826103, -0.0008063259301707149, -0.011265365406870842, 0.010866713710129261, -0.014750136993825436, 0.02867547608911991, -0.02994016744196415, 0.01281186193227768, 0.008330459706485271, 0.020716175436973572, -0.007485041860491037, 0.01422776561230421, -0.03216712176799774, -0.0013927057152613997, 0.0032424870878458023, 0.024372780695557594, 0.009278977289795876, -0.009114017710089684, 0.001223450293764472, -0.01741698384284973, 0.0026067052967846394, -0.01567116193473339, -0.03016011230647564, 0.031672243028879166, 0.03134232386946678, 0.013052428141236305, -0.018228035420179367, -0.007560648024082184, 0.014159032143652439, 0.0043233162723481655, 0.019423993304371834, 0.005357750225812197, 0.011794610880315304, 0.007567521650344133, -0.023108089342713356, -0.012172643095254898, 0.015313749201595783, 0.008241106756031513, -0.0011572946095839143, 0.010028168559074402, 0.021623453125357628, -0.016949597746133804, -0.00263248011469841, -0.007210108917206526, -0.003900607116520405, -0.0033352768514305353, 0.006265027914196253, -0.010062535293400288, 0.03277197480201721, 0.014378977939486504, -0.010316847823560238, -0.004069003276526928, -0.012275743298232555, -0.006457481067627668, 0.01919030025601387, -0.015025069937109947, 0.024029115214943886, 0.013265500776469707, 0.0008724816143512726, 0.01059178076684475, 0.0023214626125991344, 0.00042872311314567924, -0.04266954958438873, 0.01938275247812271, -0.00138153659645468, 0.006100068334490061, 0.02001509815454483, -0.004642925225198269, -0.020372509956359863, 0.025554990395903587, 0.019272780045866966, -0.014447711408138275, -0.016440972685813904, 0.0006413663504645228, 0.013457953929901123, -0.014970083720982075, -0.008192993700504303, -0.6136497259140015, 0.0030809640884399414, 0.012481942772865295, -0.017361996695399284, 0.01466765720397234, 0.00020748823590110987, 0.02591240406036377, -0.0017020050436258316, -0.00641624117270112, 0.016317253932356834, 0.005625809542834759, 0.001333423424512148, -0.01576738804578781, -0.01982264406979084, -0.029995152726769447, -0.01164339855313301, -0.005859502125531435, -0.02848302386701107, -0.017375744879245758, 0.014159032143652439, -0.02467520534992218, 0.027410786598920822, -0.0059385453350842, 0.0003516130964271724, -0.002924596192315221, -0.019341513514518738, 0.03329434618353844, -0.02011132426559925, 0.00031638736254535615, 0.004684165120124817, -0.03219461441040039, 0.022283291444182396, -0.00578733254224062, 0.016221027821302414, 0.040552567690610886, -0.0014107482274994254, -0.008144879713654518, 0.017774395644664764, 0.022283291444182396, 0.060815103352069855, -0.022145826369524002, -0.011959570460021496, 0.010378708131611347, 0.01079798024147749, -0.01681213267147541, 0.00635094428434968, 0.021169815212488174, -0.003890297142788768, -0.0065021575428545475, -0.019781405106186867, 0.0028300881385803223, -0.024592725560069084, -0.012619408778846264, 0.02134852111339569, 0.007739354390650988, -0.01162277814000845, 0.02603612281382084, -0.03205714747309685, 0.013148654252290726, -0.0016573284519836307, 0.0021324465051293373, 0.008110513910651207, -0.029005395248532295, -0.04478653147816658, -0.052732083946466446, 0.019767658784985542, 0.012440702877938747, -0.033569276332855225, 0.00501064769923687, -0.008612265810370445, 0.039507824927568436, -0.005828572437167168, 0.00020716605649795383, -0.011684638448059559, 0.010488680563867092, 0.009223991073668003, 0.02676469460129738, -0.009327090345323086, -0.00780121423304081, 0.016770891845226288, 0.001921091927215457, -0.026805933564901352, -0.030187606811523438, 0.0017801889916881919, 0.02772695943713188, 0.02042749710381031, -0.011045419611036777, -0.006058828439563513, 0.008921564556658268, 0.01301806140691042, 0.0046463618054986, 0.04011267423629761, -0.00800741370767355, -0.021623453125357628, 0.0004914421588182449, 0.029362808912992477, -0.0029366244561970234, 0.005481469910591841, -0.01466765720397234, -0.030600005760788918, -0.025390030816197395, -0.01519002951681614, 0.0011383930686861277, -0.006457481067627668, 0.025761190801858902, 0.027809439226984978, 0.011842723935842514, -0.02035876363515854, 0.028950409963726997, -0.02413908764719963, -0.003766577458009124, -0.011402832344174385, -0.02559623122215271, -0.02105984091758728, 0.014805124141275883, -0.02331428974866867, 0.0034899264574050903, 0.0008028892916627228, 0.025390030816197395, -0.03117736428976059, 0.013141781091690063, -0.012770622037351131, 0.016825878992676735, 0.0031428239308297634, 0.01146469172090292, 0.007161995861679316, 0.005588006228208542, -0.0035260114818811417, 0.016358492895960808, -0.004666981752961874, 0.019135313108563423, -0.033129386603832245, 0.009670756757259369, -0.000677021685987711, 0.016894612461328506, -0.001134097226895392, 0.023328036069869995, -0.009416443295776844, -0.007175742648541927, -0.04907548055052757, -0.008818465285003185, 0.0018953169928863645, 0.0023575476370751858, -0.02550000511109829, -0.007354448549449444, -0.026338549330830574, -0.021554719656705856, 0.01642722636461258, -0.01276374887675047, -0.002752763219177723, -0.023396769538521767, -0.007670621387660503, -0.014516444876790047, 0.028180597350001335, -0.0037425209302455187, 0.0014253540430217981, 0.0007483323570340872, -0.04970782622694969, -0.01373288594186306, -0.042862001806497574, -0.023891648277640343, 0.025445017963647842, -0.03422911465167999, 0.0022011795081198215, -0.02261321060359478, -0.009670756757259369, 0.010571160353720188, -0.012021430768072605, -0.028056878596544266, -0.03266200050711632, 0.021046094596385956, 0.003123922273516655, 0.009045284241437912, 0.02994016744196415, -0.01404905878007412, 0.03079245798289776, -0.01814555563032627, -0.009787602350115776, 0.009526416659355164, -0.010344341397285461, 0.014378977939486504, 0.03241455927491188, -0.008536659181118011, -0.013327361084520817, 0.01400094572454691, 0.01332048699259758, 0.020592456683516502, 0.009711996652185917, -0.015726149082183838, -0.0008325304370373487, 0.008777225390076637, -0.005405863281339407, -0.012282616458833218, 0.017485717311501503, -0.024427765980362892, 0.020881135016679764, -0.02933531440794468, 0.01560242846608162, -0.00970512256026268, 0.016894612461328506, 0.014323991723358631, 0.013760379515588284, -0.012784368358552456, 0.0005034704227000475, 0.0058423192240297794, -0.0035260114818811417, 0.015245015732944012, -0.020881135016679764, 0.031012404710054398, 0.0022441379260271788, 0.008571025915443897, 0.004952224437147379, -0.003254515351727605, -0.0206474419683218, 0.0009364893776364625, 0.030902430415153503, 0.02873046323657036, 0.019712671637535095, -0.0028678912203758955, 0.0058045159094035625, 0.012220757082104683, -0.01402156613767147, 0.034751489758491516, 0.0002648374647833407, 0.0029417795594781637, 0.03288194537162781, -0.019465232267975807, 0.026242323219776154, -0.0009132919367402792, -0.012646902352571487, 0.010646766982972622, 0.03373423591256142, 0.02077116258442402, 0.01591860130429268, 0.03939785063266754, 0.043274398893117905, 0.03714340180158615, -0.019025340676307678, 0.031479790806770325, -0.003553504589945078, -0.012598789297044277, 0.01725202426314354, 0.01766442321240902, -0.01686711795628071, 0.021334774792194366, 0.005395553540438414, 0.00693173985928297, 0.016028573736548424, -0.005450540222227573, 0.012667522765696049, 0.019960111007094383, -0.012818735092878342, -0.017087064683437347, -0.010681133717298508, 0.025981135666370392, -0.014378977939486504, 0.016358492895960808, 0.013059301301836967, 0.0016212435439229012, 0.016097307205200195, 0.02026253752410412, -0.03035256639122963, 0.026366041973233223, -0.0069935997016727924, 0.0268609207123518, -0.015519948676228523, -0.009993801824748516, -0.021939625963568687, -0.004460782278329134, -0.017581943422555923, 0.007512534968554974, -0.015313749201595783, -0.011691511608660221, 0.007636254653334618, -0.03381671756505966, -0.0003909198858309537, 0.008969677612185478, 0.023987874388694763, -0.014626417309045792, 0.008364826440811157, -0.024606473743915558, -0.026750948280096054, 0.02314933016896248, 0.014543937519192696, 0.0011358155170455575, -0.027630731463432312, -0.00935458391904831, -0.017142051830887794, 0.004295822698622942, 0.0012827327009290457, -0.007979920133948326, 0.00340916495770216, -0.009505797177553177, -0.0030637807212769985, -0.015341242775321007, 0.011650271713733673, 0.058340709656476974, -0.031067389994859695, -0.0028232147451490164, 0.006467790808528662, -0.003787197405472398, 0.00821361318230629, -0.003728774143382907, -0.025953643023967743, 0.024029115214943886, -0.03433908894658089, -0.03016011230647564, -0.03307439759373665, -0.019575204700231552, -0.019025340676307678, 0.0013660716358572245, -0.01804932951927185, -0.020496230572462082, -0.017485717311501503, -0.015121296048164368, 0.008412939496338367, 0.007271968759596348, -0.011148519814014435, 0.02593989670276642, 0.004258019383996725, -0.0020740232430398464, -0.028840435668826103, 0.01870916783809662, 0.03986523672938347, 0.06884314119815826, 0.032277096062898636, 0.007031403016299009, 0.013512940146028996, -0.008866578340530396, -0.04019515588879585, -0.0170320775359869, -0.024922646582126617, 0.03857305273413658, -0.0046944753266870975, -0.020949868485331535, -0.0069695427082479, 0.013265500776469707, -0.012674395926296711, 0.01110040582716465, -0.006179111544042826, -0.01125849224627018, -0.020193804055452347, 0.013148654252290726, 0.01674339920282364, 0.023163076490163803, -0.015327495522797108, 0.012213882990181446, 0.013506066985428333, 0.03016011230647564, 0.020853642374277115, 0.03590620681643486, 0.012358223088085651, 0.0024795490317046642, -0.024469006806612015, -0.022640705108642578, 0.02416658028960228, 0.008481672964990139, 0.01681213267147541, -0.033376824110746384, 0.03659353777766228, 0.00397965032607317, -0.018008088693022728, -0.01788436993956566, 0.0015439187409356236, 0.00474946154281497, 0.039342865347862244, 0.0001029386548907496, 0.0062753381207585335, 0.005766712594777346, -0.013347980566322803, -0.007546901702880859, 0.026434775441884995, -0.01899784617125988, -0.005464286543428898, 0.022365771234035492, 0.020028844475746155, -0.004161793272942305, 0.021513480693101883, -0.003959030378609896, -0.005031267646700144, -0.0009218835621140897, -0.002886792877689004, -0.032112136483192444, -0.018035583198070526, -0.028400544077157974, -0.008749731816351414, -0.00867412518709898, -0.0019296836107969284, -0.010289355181157589, -0.014488951303064823, -0.007794341072440147, 0.0009089960949495435, -0.03054501861333847, 0.019616445526480675, 0.0017801889916881919, -0.05132992938160896, -0.03277197480201721, -0.0002291821438120678, 0.027232080698013306, 0.025046365335583687, 0.0021049531642347574, -0.007863074541091919, 0.012681269086897373, 0.007292588707059622, 0.011038546450436115, -0.010928573086857796, 0.010674260556697845, -0.04025014117360115, 0.014708897098898888, -0.020564962178468704, -0.015781134366989136, -0.008364826440811157, -0.0043233162723481655, -0.0010971531737595797, -0.00169083580840379, -0.01146469172090292, 0.013664153404533863, 0.010509300976991653, 0.0064815375953912735, 0.009430190548300743, 0.021417254582047462, -0.009904448874294758, 0.023589221760630608, -0.03986523672938347, 0.020564962178468704, -0.008790971711277962, -0.013341107405722141, -0.018502967432141304, 0.01579488068819046, 0.0149838300421834, -0.004636052064597607, -0.012543803080916405, -0.009072777815163136, 0.0027355800848454237, 0.01519002951681614, 0.018118062987923622, 0.001972641795873642, 0.005172170698642731, 0.026118602603673935, -0.022228306159377098, -0.00480444822460413, 0.014062806032598019, 0.026805933564901352, -0.004931604489684105, -0.02692965418100357, -0.00692142965272069, 0.026599735021591187, 0.00780121423304081, -0.018956607207655907, 0.023877901956439018, 0.016509706154465675, -0.01233760267496109, -0.021829653531312943, 0.018695421516895294, -0.02826307713985443, 0.005790769122540951, -0.010378708131611347, -0.008571025915443897, -0.020413750782608986, -0.0014133256627246737, -0.008083020336925983, -0.00024636543821543455, -0.02848302386701107, -0.008715365082025528, -0.030490031465888023, 0.002422844059765339, 0.003398854983970523, -0.006643060594797134, 0.018021835014224052, -0.031232349574565887, -0.007161995861679316, 0.0011521396227180958, 0.003309501800686121, 0.010419948026537895, -0.013540433719754219, -0.011038546450436115, -0.01464016456156969, -0.022860649973154068, -0.01741698384284973, -0.030654991045594215, -0.008399193175137043, 0.00013864767970517278, 0.07131753116846085, 0.001580862794071436, -0.000639218429569155, -0.003890297142788768, 0.011141645722091198, 0.014543937519192696, -0.007828707806766033, 0.0022647578734904528, -0.003491644747555256, -0.023176822811365128, 0.016688412055373192, 0.0067289769649505615, 0.03180970996618271, 0.005347440019249916, -0.007691241335123777, -0.009739489294588566, 0.0003702999383676797, 0.031039897352457047, -0.01203517708927393, 0.005429919809103012, -0.03367925062775612, -0.04173477739095688, -0.015808628872036934, 0.04319192096590996, -0.0002762213989626616, 0.008639758452773094, -0.024688953533768654, 0.016550946980714798, 0.004350809380412102, 0.0028902296908199787, 0.02974771335721016, 0.007313208654522896, 0.03139730915427208, -0.004309569485485554, 0.012921835295855999, 0.004663545172661543, 0.0010146733839064837, 0.0021977429278194904, 0.00894218496978283, -0.045501355081796646, -0.023328036069869995, 0.015451215207576752, 0.032304588705301285, 0.011932077817618847, -0.003917790483683348, 0.00888032466173172, 0.003031132509931922, 0.01868167519569397, -0.014942590147256851, -0.022778170183300972, 0.01178086455911398, -0.003300910349935293, 0.003424630034714937, -0.015506202355027199, -0.03010512702167034, 0.011705257929861546, -0.01839299499988556, -0.020894881337881088, -0.0014004382537677884, 0.025128845125436783, -0.021142320707440376, -0.01116226613521576, 0.025678711012005806, 0.007216982543468475, 0.02848302386701107, 0.01700458489358425, 0.03288194537162781, 0.010234368033707142, -0.006113815121352673, -0.021211054176092148, -0.022723184898495674, 0.009107144549489021, -0.006780526600778103, 0.0013067893451079726, 0.041982218623161316, -0.004622305277734995, -0.012323856353759766, 0.017183290794491768, -0.009388950653374195, -0.0037837608251720667, -0.031259842216968536, 0.00754002807661891, 0.007498788181692362, 0.0027510449290275574, -0.0381881482899189, -0.02232453227043152, 0.0017647240310907364, 0.025843670591711998, -0.0012698451755568385, 0.032552026212215424, 0.003574124537408352, -0.00046480802120640874, -0.0035878713242709637, 0.0640593096613884, -0.012894341722130775, 0.025994883850216866, -0.007265095598995686, 0.003749394090846181, -0.023589221760630608, -0.0067495969124138355, -0.006694610230624676, -0.029252834618091583, 0.025486256927251816, 0.02629730850458145, -0.01560242846608162, 0.003082682378590107, -0.0029916109051555395, 0.016413480043411255, -0.007924933917820454, -0.017375744879245758, -0.007464421913027763, 0.03186469525098801, -0.0018712604651227593, -0.005962601862847805, 0.001567116123624146, -0.007814960554242134, 0.0053921169601380825, -0.04074501991271973, -0.010653640143573284, 0.01591860130429268, 0.007237602490931749, 0.01327237393707037, 0.013100541196763515, 0.001309366780333221, -0.015574934892356396, -0.00645404402166605, 0.007471295073628426, -0.011945824138820171, 0.00019213066843803972, 0.000364285777322948, -0.005588006228208542, -0.02756199985742569, -0.022860649973154068, -0.0033490234054625034, 0.00935458391904831, 0.02445526048541069, -0.0017131741624325514, -0.00935458391904831, 0.0035294480621814728, 0.03296442702412605, -0.015011323615908623, -0.013093668036162853, 0.0278781708329916, 0.01817304827272892, -0.05083505064249039, 0.020386256277561188, -0.00279056653380394, -0.006051955278962851, 0.029417794197797775, -0.0061997314915061, -0.01649595983326435, -0.007533154916018248, -0.0023042792454361916, -0.006189421284943819, 0.006505594123154879, -0.007952427491545677, 0.0011590130161494017, -0.0011186322662979364, 0.007210108917206526, 0.0027768199797719717, -0.015973588451743126, 0.004268329590559006, -0.003000202588737011, -0.0007332969689741731, 0.016124799847602844, -0.024977631866931915, 0.011918330565094948, -0.023520488291978836, 0.025733696296811104, -0.012523182667791843, -0.03799569234251976, -0.012846228666603565, -0.03791321441531181, -0.0013067893451079726, -0.011444072239100933, -0.012378842569887638, 0.009347710758447647, -0.02613234892487526, -0.008048653602600098, 0.014337738044559956, -0.0028575812466442585, 0.008756604976952076, 0.017430730164051056, -0.01560242846608162, 0.004168666433542967, 0.015066309832036495, -0.0035088281147181988, -0.039095424115657806, -0.0035706879571080208, -0.011189759708940983, -0.029472781345248222, -0.007168869022279978, -0.0129080880433321, 0.041597310453653336, 0.02074366994202137, -0.02350674197077751, -0.025554990395903587, -0.01661967858672142, -0.042862001806497574, -0.007361322175711393, -0.040387608110904694, 0.029582753777503967, 0.049267932772636414, 0.03752830997109413, 0.02011132426559925, 0.022723184898495674, -0.01373288594186306, 0.014269005507230759, -0.024125341325998306, -0.00738881528377533, -0.015300002880394459, -0.026269815862178802, 0.004639488644897938, -0.028565503656864166, -0.04893801361322403, -0.016605932265520096, 0.022063346579670906, 0.003601617878302932, 0.016660919412970543, 0.01769191585481167, -0.017100811004638672, 0.0002000779495574534, 0.002319744322448969, 0.007979920133948326, 0.03282696008682251, 0.015354989096522331, 0.011767118237912655, -0.029857687652111053, -0.00015916023403406143, 0.012090163305401802, -0.007808087393641472, -0.028840435668826103, 0.008839084766805172, 0.020276283845305443, 0.002515633823350072, 0.021403508260846138, -0.007835580967366695, -0.02826307713985443, -0.021101081743836403, -0.009711996652185917, 8.994378731586039e-05, 0.0011839288054034114, 0.00888032466173172, 0.021458493545651436, 0.0055570765398442745, 0.003800943959504366, -0.013911592774093151, 0.0026410717982798815, 0.011636524461209774, 0.007196362596005201, 0.01715579815208912, -0.033321838825941086, 0.0014279314782470465, -0.019877631217241287, 0.003879987169057131, 0.011457818560302258, -0.01525876298546791, -0.012275743298232555, 0.0055158366449177265, -0.018722914159297943, -0.023589221760630608, 0.01569865457713604, -0.009175877086818218, -0.020826149731874466, -0.017334504052996635, -0.0029778643511235714, -0.016152294352650642, 0.008192993700504303, 0.0034933630377054214, -0.009175877086818218, 0.0023523925337940454, -0.005539893172681332, 0.007636254653334618, -0.03365175798535347, 0.0052271573804318905, 0.01785687543451786, -0.023011863231658936, 0.0022492927964776754, 0.2041100114583969, 0.0067083570174872875, 0.02020755037665367, 0.012048923410475254, 0.012722508981823921, 0.014832616783678532, -0.009890702553093433, 0.01006940845400095, -0.015629921108484268, 0.004457345698028803, 0.015341242775321007, 0.002106671454384923, -0.024400273337960243, 0.000914151081815362, 6.411515641957521e-05, -0.009773856028914452, -0.032744478434324265, -0.017114557325839996, -0.011299732141196728, -0.005254650488495827, 0.0020293467678129673, -0.005838882178068161, -0.01582237519323826, -0.012165769934654236, 0.012612535618245602, 0.018035583198070526, 0.001982951769605279, 0.015904854983091354, 0.024826418608427048, 0.02448275312781334, -0.007512534968554974, 0.00692142965272069, 0.007271968759596348, -0.026819681748747826, -0.014131538569927216, -0.0052271573804318905, 0.022338278591632843, -0.007443801965564489, 0.0032218671403825283, 0.012048923410475254, -0.005746092647314072, -0.020908629521727562, 0.012564422562718391, -0.03510890156030655, -0.0029520895332098007, -0.0006125843501649797, -0.008935311809182167, 0.005189354065805674, 0.006017588544636965, 0.021101081743836403, -0.007780594285577536, 0.0016547509003430605, 0.023451756685972214, 0.010268734768033028, -0.0062753381207585335, -0.004811321385204792, -0.01754070445895195, 0.02743827924132347, -0.01182897761464119, -0.011017926037311554, -0.0003110175603069365, -0.007952427491545677, 0.00867412518709898, -0.0062959580682218075, -0.02511509880423546, 0.031287338584661484, 0.0013686491874977946, 0.04167979210615158, 0.009945688769221306, 0.0025070421397686005, -0.015066309832036495, -0.008351079188287258, -0.034751489758491516, 0.010715500451624393, -0.023520488291978836, -0.015423722565174103, 0.018860381096601486, 0.019231539219617844, 0.0454188771545887, 0.007361322175711393, 0.00764312781393528, -0.0070795160718262196, -0.03535633906722069, 0.005694542545825243, 0.009443936869502068, -0.017843129113316536, 0.021293533965945244, -0.0059247990138828754, 0.004120553378015757, -0.003976213745772839, -0.001869542058557272, 0.02290189079940319, 0.004563882015645504, -0.019671432673931122, 0.0012122811749577522, 0.005935108754783869, 0.0051240576431155205, 0.01659218594431877, -0.017210785299539566, -0.024688953533768654, -0.003811253933236003, 0.0537218414247036, 0.019327765330672264, 0.020290030166506767, -0.004993464332073927, 0.0025139155331999063, -0.014076552353799343, 0.004766644909977913, 0.009512670338153839, -0.017293265089392662, -0.0006108660018071532, -0.03425661101937294, 0.00991132203489542, -0.005075944121927023, -0.009519543498754501, 0.020276283845305443, 0.01824178174138069, -0.009375203400850296, 0.010083155706524849, 0.01994636468589306, 0.027520759031176567, -0.004574192222207785, 0.008708491921424866, -0.0011908020824193954, -0.011017926037311554, -0.019272780045866966, -0.005230593960732222, 0.010076281614601612, -0.027190839871764183, -0.03549380600452423, -0.010124395601451397, -0.021939625963568687, 0.021458493545651436, -0.003501954721286893, -0.010605527088046074, -0.017045825719833374, -0.01741698384284973, -0.010708627291023731, 0.013884099200367928, 0.0015482145827263594, 0.012928708456456661, 0.011038546450436115, -0.0016727934125810862, 0.011753370985388756, -0.007347575388848782, 0.009835716336965561, -0.009457683190703392, 0.0022905326914042234, -0.02496388554573059, -0.0036497311666607857, -0.0033387134317308664, 0.0061928583309054375, -0.010516174137592316, -0.016990838572382927, 0.033156879246234894, -0.026366041973233223, -0.023396769538521767, -0.014915096573531628, 0.004866308066993952, 0.025802429765462875, -0.06048518419265747, 0.01265377551317215, 0.04995526373386383, 0.012743128463625908, -0.01979515142738819, -0.00872223824262619, -0.17452725768089294, 0.00641624117270112, -0.00894218496978283, -0.012048923410475254, -0.021334774792194366, 0.023960381746292114, 0.006237534806132317, -0.01630350761115551, -0.01747197099030018, 0.0012492252280935645, 0.004952224437147379, 0.003879987169057131, -0.038270626217126846, -0.025857416912913322, 0.00024443233269266784, -0.022118331864476204, 0.010839220136404037, 0.027410786598920822, 0.04899299889802933, 0.012124530039727688, 0.020056337118148804, -0.029390301555395126, 0.007684367708861828, -0.0028438346926122904, 0.01686711795628071, 0.010213748551905155, -0.003007075982168317, 0.019932618364691734, 0.011011052876710892, -0.02622857503592968, 0.018406741321086884, -0.012413209304213524, 0.014708897098898888, 0.0017234841361641884, 0.012536928988993168, -0.014035312458872795, 0.007148249074816704, -0.021733427420258522, -0.011121026240289211, 0.024840164929628372, 0.03917790576815605, 0.00014143995940685272, 0.009327090345323086, 0.01027560792863369, 0.027671972289681435, 0.020661190152168274, 0.02518383227288723, -0.009773856028914452, 0.027355799451470375, -0.005007211118936539, 0.004165229853242636, -0.028400544077157974, 0.0048594349063932896, 0.0025482820346951485, 0.00913463719189167, 0.005106874275952578, 0.021540973335504532, 0.031479790806770325, 0.006271901540458202, -0.015148789621889591, 0.011794610880315304, -0.01560242846608162, -0.005718599539250135, 0.00299676600843668, -0.017513209953904152, -0.028153104707598686, 0.003893733723089099, 0.037445828318595886, 0.011567791923880577, 0.026379788294434547, 0.011980190873146057, 0.009959436021745205, -0.01038558129221201, 0.01022749487310648, -0.0005520132253877819, 0.006443734280765057, -0.026311054825782776, 0.009065904654562473, 0.03134232386946678, -0.004746024962514639, 0.0016229618340730667, 0.008083020336925983, 0.008481672964990139, -0.00949892308562994, -0.012633156031370163, -0.013334234245121479, -0.004443598911166191, -0.006663680542260408, 0.000670148350764066, -0.004539825487881899, 0.0201388169080019, -0.01633100025355816, -0.005546766333281994, -0.008495419286191463, 0.0012019712012261152, 0.015231269411742687, 0.01817304827272892, -0.0028129047714173794, -0.0023523925337940454, -0.013183020986616611, 0.004313006065785885, 0.008316713385283947, -0.027891919016838074, 0.017705664038658142, 0.02372668869793415, 0.009175877086818218, 0.012571295723319054, -0.006546834018081427, 0.03153477609157562, -0.024097846820950508, -0.0273145604878664, 0.011107279919087887, 0.04506146162748337, -3.4286036679986864e-05, -0.025335045531392097, 0.016825878992676735, -0.03576873987913132, -0.027740705758333206, 0.009746362455189228, -0.02974771335721016, 0.05383181571960449, -0.03186469525098801, -0.012028303928673267, -0.004093059804290533, 0.0008583053713664412, -0.017169544473290443, -0.10832346975803375, -0.033376824110746384, 0.019987603649497032, 0.022860649973154068, -0.007027965970337391, 0.007443801965564489, -0.00030264072120189667, 0.041184913367033005, 0.0170320775359869, 0.010763613507151604, -0.007237602490931749, 0.0022544478997588158, 0.0013377192663028836, -0.004099933430552483, 0.017788143828511238, -0.013327361084520817, 0.02074366994202137, -0.010791107080876827, -0.0030087942723184824, 0.03675849735736847, 0.0009614051668904722, -0.010907953605055809, 0.009361457079648972, 0.017389491200447083, -0.019767658784985542, -0.011890837922692299, -0.02952776849269867, 0.01219326350837946, 0.028318064287304878, 0.014598924666643143, 0.016537198796868324, -0.015135043300688267, 0.004725405015051365, -0.023300543427467346, -0.00038189865881577134, 0.009938815608620644, -0.02758949249982834, 0.007588141597807407, 0.0008183542522601783, -0.027080867439508438, 0.02130728028714657, -0.012378842569887638, 0.016757145524024963, -0.03194717690348625, -0.003883423749357462, 0.012296362780034542, -0.015684908255934715, 0.03389919549226761, 0.014042185619473457, -0.015066309832036495, -0.03013261966407299, -0.013822239823639393, -0.03637358918786049, -0.02648976258933544, 0.017389491200447083, 0.024111595004796982, 0.010007549077272415, -0.0018953169928863645, -0.016729652881622314, -0.004316442646086216, 0.008935311809182167, -0.005959165282547474, 0.004051819909363985, 0.029637740924954414, 0.005935108754783869, 0.019657684490084648, -0.0014081706758588552, -0.003907480277121067, -0.02083989605307579, 0.004347372800111771, -0.023699196055531502, -0.004398922435939312, -0.01608356088399887, 0.014241511933505535, -0.02156846784055233, 0.01776064932346344, 0.0033043469302356243, -0.0211835615336895, -0.003797507379204035, 0.006141308229416609, -0.013705393299460411, -0.013849732466042042, -0.005636119749397039, -0.0206474419683218, 0.0017509773606434464, 0.01947897858917713, 0.015121296048164368, -0.014447711408138275, 0.028647983446717262, -0.033954184502363205, 0.022846903651952744, 0.01798059605062008, 0.005120620597153902, 0.026723453775048256, -0.014406471513211727, 0.008997171185910702, -0.00759501475840807, -0.012729382142424583, 0.028812943026423454, 0.011327225714921951, -0.0053921169601380825, 0.010818599723279476, -0.04990027844905853, 0.002567183692008257, 0.02137601375579834, 0.010935446247458458, 0.020564962178468704, -0.026242323219776154, 0.004990027751773596, -0.006825203076004982, -0.0020791783463209867, 0.007381942123174667, -0.04148733988404274, 0.013031807728111744, 0.004316442646086216, 0.017114557325839996, -0.010811726562678814, -0.0017466815188527107, 0.030077632516622543, 0.0008840803639031947, 0.0041583566926419735, 0.0001758065482135862, -0.03466900810599327, -0.007526281755417585, -0.006220351438969374, 0.017994342371821404, -0.03928787633776665, 0.0011418296489864588, -0.011478438973426819, 0.0058869956992566586, -0.014035312458872795, -0.028345556929707527, 0.013925339095294476, 0.0013549025170505047, -0.00872223824262619, 0.028345556929707527, -0.015176283195614815, -0.031122377142310143, -0.004721968434751034, 0.0006190280546434224, 0.005711725912988186, 0.017939355224370956, -0.00945081003010273, -0.01868167519569397, 0.03180970996618271, -0.02477143332362175, -0.010742994025349617, -0.007278842385858297, -0.021925879642367363, -0.017843129113316536, -0.002292250981554389, 0.0050828177481889725, 0.05801079049706459, 0.014337738044559956, -0.03224959969520569, -0.017293265089392662, 0.0008716224692761898, -0.010048788972198963, 0.013567926362156868, 0.027960650622844696, 0.0041171167977154255, -0.0047769551165401936, 0.047810789197683334, -0.014145285822451115, -0.0008441291865892708, -0.00640593096613884, 0.012866848148405552, -0.027740705758333206, -0.047783296555280685, -0.012825608253479004, 0.001577426097355783, -0.02438652701675892, 0.0029623995069414377, -0.02353423647582531, 0.0309299249202013, 0.030490031465888023, 0.0129080880433321, 0.012165769934654236, -0.007354448549449444, -0.01255754940211773, 0.006045081652700901, 0.018090568482875824, 0.019080325961112976, -0.014736390672624111, -0.030407551676034927, 0.015932347625494003, 0.002189151244238019, 0.007052022963762283, -0.005828572437167168, 0.020248791202902794, 0.008667252026498318, -8.317786705447361e-05, -0.006196294911205769, 0.015423722565174103, -0.015904854983091354, 0.011870217509567738, -0.0070176562294363976, 0.025706203654408455, -0.013024934567511082, 0.017650676891207695, 0.010729246772825718, 0.02331428974866867, -0.013519813306629658, 0.027644479647278786, 0.01829676888883114, -0.021554719656705856, -0.01324488129466772, -0.004144609905779362, -0.015726149082183838, -0.012097037397325039, 0.023135583847761154, 0.02103234827518463, 0.008495419286191463, -0.020180057734251022, 0.014117792248725891, 0.0025895219296216965, -0.012997441925108433, -0.009773856028914452, 0.005704852752387524, -0.035796232521533966, -0.02867547608911991, 0.008598518557846546, 0.004873181227594614, 0.03981024771928787, 0.006189421284943819, -0.028565503656864166, 0.03552129864692688, -0.014928843826055527, 0.00830983929336071, -0.02283315733075142, 0.013485446572303772, -0.00686644297093153, -0.008680998347699642, -0.0027647914830595255, -0.0023764492943882942, -0.010110648348927498, -0.02474393881857395, -0.004333626013249159, -0.025348791852593422, 0.011409705504775047, -0.003350741695612669, 0.078520767390728, 0.04431914538145065, -0.030902430415153503, 0.009870082139968872, -0.008131133392453194, 0.01151280477643013, 0.024688953533768654, 0.005893868859857321, 0.021540973335504532, -0.012440702877938747, 0.016482213512063026, -0.0046532354317605495, -0.018984099850058556, -0.017925608903169632, -0.012880595400929451, -0.001893598702736199, -0.00020050753664691, 0.032332081347703934, -0.005508963018655777, 0.0041171167977154255, 0.01436523161828518, -0.007478168234229088, 0.006570890545845032, -0.0222008116543293, -0.040964964777231216, -0.0026170152705162764, 0.03695094957947731, 0.025348791852593422, -0.01164339855313301, -0.03843558579683304, 0.011292858980596066, -0.002302560955286026, -0.02433153986930847, -0.010990433394908905, -0.013726012781262398, 0.02467520534992218, -0.006498720962554216, -0.011389085091650486, 0.018063075840473175, 0.019231539219617844, 0.016784638166427612, 0.005941981915384531, -0.01608356088399887, -0.020894881337881088, 0.0022767861373722553, 0.003110175719484687, -0.006299394648522139, -0.006429987493902445, -0.006223788019269705], "f1a0779e-905c-4c66-9f14-c1fd473f6115": [0.0017515192739665508, -0.0021426179446280003, 0.013820596039295197, -0.03277779743075371, -0.015267927199602127, 0.0344521626830101, 0.00711604580283165, -0.040468521416187286, -0.02578236348927021, -0.04129151254892349, 0.000923205865547061, 0.03899281099438667, -0.0070805721916258335, -0.00962759181857109, -0.014402366243302822, -0.0020042702089995146, 0.018205158412456512, -0.01515441108494997, -0.012337790802121162, -0.008201544173061848, -0.026874957606196404, -0.0019031697884202003, -0.036126527935266495, -0.014224996790289879, -0.025044508278369904, 0.013813501223921776, 0.01235907431691885, -0.014175334013998508, -0.0038914766628295183, 0.02288770116865635, 0.0035367386881262064, -0.009982329793274403, -0.016190245747566223, -0.006541370414197445, -0.02539924718439579, -0.002085859887301922, 0.0016495321178808808, -0.0034728858154267073, 0.024576254189014435, 0.0018765644636005163, 0.022830942645668983, 0.00352432276122272, -0.009287042543292046, -0.010188077576458454, -0.01973762735724449, 0.011635408736765385, 0.006371095776557922, 0.0029478734359145164, -0.002061028266325593, 0.00241753994487226, -0.008109312504529953, -0.004824438132345676, -0.014657777734100819, 0.006264674477279186, -0.006825160700827837, -0.020149122923612595, 0.01875855028629303, -0.0004833306302316487, 0.011848252266645432, -0.00851371418684721, 0.013487141579389572, 0.003756676334887743, -0.02954258769750595, -0.00169564806856215, -0.012039810419082642, -0.017367975786328316, -0.013685795478522778, -0.014154049567878246, -0.025526951998472214, -0.0005241255275905132, 0.034594058990478516, 0.027243884280323982, 0.0011050091125071049, 0.004122056532651186, -0.017055807635188103, -0.018985582515597343, -0.010975596494972706, -0.011997241526842117, -0.014281755313277245, 0.004203646443784237, 0.014615208841860294, -0.014217901974916458, -0.02867702580988407, -0.010003614239394665, 0.02606615424156189, 0.024462739005684853, 0.036977898329496384, 0.004781869240105152, -0.02769794873893261, -0.0007032682187855244, 0.0066619813442230225, 0.0075417314656078815, 0.02175254002213478, 0.018432190641760826, 0.00759848952293396, 0.004253309685736895, 0.015310495160520077, 0.022646479308605194, -0.007172803860157728, -0.014941567555069923, -0.015466580167412758, -0.005416850559413433, -0.03047909587621689, -0.015438200905919075, -0.024703960865736008, -0.013912827707827091, 0.018020695075392723, -0.014125670306384563, 0.012720908038318157, 0.023497849702835083, -0.018588274717330933, 0.0228025633841753, -0.014615208841860294, -0.00615825317800045, 0.016573363915085793, -0.006498801521956921, 0.025541141629219055, -0.03618328273296356, -0.022093087434768677, -0.01135161891579628, 0.021525505930185318, -0.005310429260134697, 0.04469699785113335, -0.02337014488875866, 0.02348366007208824, 0.02694590389728546, 0.017836229875683784, -0.00711604580283165, 0.009095484390854836, -0.008130596950650215, -0.007399836555123329, 0.009854624047875404, 0.026420893147587776, 0.007761669345200062, -0.0007218919927254319, 0.009251569397747517, -0.015126031823456287, -0.0012114305282011628, -0.008776220493018627, -0.03788602724671364, 0.03453730046749115, 0.01389863807708025, 0.014799673110246658, -0.030252063646912575, -0.010010709054768085, 0.02974124066531658, -0.0012211858993396163, 0.014643588103353977, 0.021326852962374687, 0.006321432534605265, 0.014253376051783562, -0.020063985139131546, -0.008570471778512001, 0.00904582068324089, -0.0006740023382008076, 0.006658433936536312, 0.015111842192709446, 0.028904058039188385, -0.00622920086607337, -0.0003048530488740653, -0.0031536214519292116, 0.017949746921658516, -0.010422204621136189, -0.0012876992113888264, -0.006505896337330341, 0.036126527935266495, 0.02039034478366375, -0.030762886628508568, -0.008357629179954529, -0.012529348954558372, -0.009982329793274403, 0.033316999673843384, -0.03553056716918945, 0.013941206969320774, 0.016899721696972847, -0.007868090644478798, 0.009585022926330566, 0.0033611434046179056, -0.013402004726231098, -0.02704523131251335, 0.01357227936387062, -0.007513352669775486, 0.00981205515563488, 0.012955035082995892, -0.008002891205251217, -0.03413999453186989, 0.016615930944681168, 0.005537461489439011, 0.01837543211877346, -0.019028151407837868, 0.012806044891476631, 0.00457257404923439, -0.016090920194983482, -0.014281755313277245, -0.6179820895195007, -0.009975234977900982, 0.002539924578741193, -0.01188372541218996, -0.0003259156073909253, 0.006740023382008076, 0.02974124066531658, -0.0036538022104650736, -0.009755297563970089, 0.02058899775147438, 0.00449453154578805, 0.007034456357359886, -0.007016719318926334, -0.011046543717384338, -0.014884809963405132, -0.01201852597296238, -0.0005959599511697888, -0.02175254002213478, -0.01692810095846653, 0.00670809717848897, -0.023157302290201187, 0.031500741839408875, -0.005633240565657616, 0.006452685687690973, -0.004455510526895523, -0.024207327514886856, 0.026718871667981148, -0.016672689467668533, 0.0029123995918780565, 0.0012539990711957216, -0.029627725481987, 0.02310054376721382, -0.0004010757547803223, -0.0027705044485628605, 0.03802792355418205, -0.0077403848990798, -0.005168533883988857, 0.029854757711291313, 0.008889736607670784, 0.040752310305833817, -0.027059420943260193, -0.022263361141085625, 0.025910070165991783, 0.00600926298648119, -0.017822042107582092, -0.003657349618151784, 0.01409019622951746, 0.01197595801204443, -0.016857152804732323, -0.007619773969054222, -0.0016947612166404724, -0.010464773513376713, -0.01943964697420597, 0.003973066341131926, 4.9358477554051206e-05, -0.019368698820471764, 0.021227527409791946, -0.022178225219249725, -0.0014792578294873238, -0.0022259815596044064, 0.006317885126918554, 0.005313976667821407, -0.011309050023555756, -0.04932278394699097, -0.04239829629659653, 0.00037580064963549376, 0.005636787973344326, -0.027059420943260193, 0.0148138627409935, -0.01664431020617485, 0.02356879785656929, -0.008925209753215313, 0.0010065692476928234, -0.0070699299685657024, -0.0148138627409935, 0.015026705339550972, 0.03913470357656479, -0.005966694559901953, -0.009698539040982723, 0.015367253683507442, -0.002534603700041771, -0.015651043504476547, -0.016857152804732323, -0.012217179872095585, 0.031614258885383606, 0.025044508278369904, -0.012408738024532795, -0.007250846363604069, 0.00856337696313858, 0.008244113065302372, -0.0032529481686651707, 0.057666223496198654, -0.0006988340173847973, -0.014068912714719772, -0.015807129442691803, 0.03436702489852905, -0.022050518542528152, 0.003820529207587242, -0.02300121635198593, -0.022107277065515518, -0.021568074822425842, -0.0214687492698431, 0.007761669345200062, -0.0020273281261324883, 0.029372313991189003, 0.016105107963085175, -4.240228736307472e-05, -0.028889870271086693, 0.020376155152916908, -0.029514208436012268, 0.000619904778432101, -0.006481064949184656, -0.014984136447310448, -0.02290189079940319, 0.02107144147157669, -0.02290189079940319, 0.0008597964188084006, -0.005831893999129534, 0.014416555874049664, -0.01952478475868702, -0.003621875774115324, -0.005349450279027224, 0.014884809963405132, -0.0014783709775656462, 0.007020266726613045, 0.013323962688446045, 0.015920644626021385, 0.00622565345838666, 0.02356879785656929, 0.00019089343550149351, 0.02115657925605774, -0.015466580167412758, 0.006427853833884001, -0.001685005845502019, 0.03138722479343414, 0.01807745173573494, 0.019680868834257126, -0.00108904589433223, -0.0021089178044348955, -0.047563280910253525, -0.0029212681110948324, 0.0009773033671081066, 0.014657777734100819, -0.014430745504796505, 0.005005354527384043, -0.04455510154366493, -0.014210807159543037, 0.005917031317949295, -0.02510126680135727, 0.01134452410042286, -0.021142389625310898, -0.010017803870141506, -0.009209000505506992, 0.020943736657500267, -0.03263590484857559, -0.0003059615846723318, -0.000221378737478517, -0.04540647566318512, -0.015140221454203129, -0.030564233660697937, -0.02097211591899395, 0.01721189171075821, -0.008449860848486423, -0.0043242573738098145, -0.007960322313010693, -0.014154049567878246, -0.00034210053854621947, 0.0017639350844547153, -0.009223190136253834, -0.028350668027997017, 0.02666211500763893, 0.000157193309860304, 0.005597766954451799, 0.024377601221203804, -0.022348498925566673, 0.027882413938641548, -0.022731617093086243, 0.00011395960609661415, 0.0036431599874049425, -0.004505173768848181, 0.012210085056722164, 0.019170045852661133, -0.004867006558924913, -0.00016317951667588204, 0.03135884553194046, 0.015892265364527702, 0.020234260708093643, 0.009585022926330566, -0.026392513886094093, 0.017282839864492416, 0.007463689427822828, 0.002185186604037881, -0.003119921311736107, 0.007197635713964701, -0.023710694164037704, 0.0048776487819850445, -0.024363411590456963, 0.01149351429194212, -0.011635408736765385, 0.00866270437836647, 0.0028609626460820436, 0.02578236348927021, -0.010897553525865078, -0.0028857942670583725, 0.005980884190648794, -0.01284861285239458, 0.014657777734100819, -0.02258972078561783, 0.008442766033113003, -0.004196551628410816, -0.0059312209486961365, 0.0008425029227510095, -0.012706718407571316, 0.001990080578252673, 0.014260470867156982, 0.027371590957045555, 0.011763114482164383, 0.0057041882537305355, 0.0010145509149879217, 0.010840795934200287, 0.0006527180667035282, -0.0077403848990798, 0.040241487324237823, -0.00630014855414629, -0.009251569397747517, 0.022476205602288246, -0.01038673147559166, 0.019766006618738174, 0.0007666776655241847, -0.021043062210083008, 0.010393825359642506, 0.019170045852661133, 0.01342328917235136, 0.015040894970297813, 0.04674028977751732, 0.025257350876927376, 0.03876577690243721, -0.006594581063836813, 0.016119297593832016, 0.00010542372183408588, -0.00808802805840969, 0.017084186896681786, 0.019766006618738174, -0.015523338690400124, 0.021426180377602577, -0.00622565345838666, 0.003568665124475956, 0.006062473636120558, -0.01341619435697794, 0.022476205602288246, 0.012351980432868004, -0.0021035969257354736, -0.020716704428195953, -0.005959599744528532, 0.03422512859106064, -0.0208869781345129, 0.014629398472607136, 0.0284641832113266, 0.012784760445356369, 0.025725604966282845, 0.017467303201556206, -0.024689771234989166, 0.013430383987724781, -0.0006283298134803772, 0.028251340612769127, -0.004139793571084738, -0.009301232174038887, -0.015409822575747967, 0.0005813270108774304, -0.01346585713326931, -0.004402299411594868, -0.01634633168578148, -0.0020273281261324883, -0.0011360486969351768, -0.010642142035067081, 0.008634325116872787, -0.00663360208272934, 0.017722714692354202, -0.006459780503064394, 0.015580096282064915, -0.033714305609464645, -0.01962411031126976, 0.02193700335919857, 0.02395191602408886, 0.010053277015686035, -0.022462015971541405, -0.015253737568855286, -0.010947217233479023, 0.009287042543292046, 0.006534275598824024, -0.012550633400678635, -0.007208277937024832, -0.0004917556652799249, -0.005771588534116745, -0.007105403579771519, 0.00719054089859128, 0.05627565085887909, -0.018034884706139565, -0.008307965472340584, 0.00900325272232294, 0.0009595665032975376, -0.005998620763421059, -0.01874436065554619, -0.04086582735180855, 0.022263361141085625, -0.03646707534790039, -0.030280442908406258, -0.020518051460385323, -0.023512039333581924, -0.01694229058921337, -0.0009436032851226628, -0.005697093438357115, -0.03300483152270317, -0.008967778645455837, -0.010422204621136189, 0.016232814639806747, 0.010996880941092968, 0.01198305282741785, 0.023128923028707504, 0.018786929547786713, -0.017864609137177467, -0.02531410939991474, -0.0004321153392083943, 0.03780088946223259, 0.07213953882455826, 0.01704161800444126, -0.006832255516201258, 0.020134933292865753, -0.0020379703491926193, -0.030280442908406258, -0.0214687492698431, -0.010535720735788345, 0.03519001603126526, 0.0008416160708293319, -0.013068551197648048, 0.0071231406182050705, 0.006789687089622021, 0.0010925933020189404, 0.0010908195981755853, -0.013288488611578941, -0.010564099997282028, -0.013160782866179943, 0.004586763214319944, 0.0010571194579824805, 0.006133421324193478, -0.011614125221967697, 0.016715258359909058, 0.01836124248802662, 0.0394468754529953, 0.00947860162705183, 0.040355004370212555, 0.01264286506921053, 0.0065803914330899715, -0.010798227041959763, -0.027839845046401024, 0.013451668433845043, 0.002071670489385724, 0.025427626445889473, -0.027286453172564507, 0.01749568246304989, 0.008464050479233265, -0.010564099997282028, -0.028591889888048172, 0.013189162127673626, 0.013345246203243732, 0.032181840389966965, 0.008669798262417316, 0.004185909405350685, 0.003336311550810933, -0.026903336867690086, -0.019013961777091026, 0.020943736657500267, -0.009216095320880413, -0.010741469450294971, 0.014785483479499817, 0.021624833345413208, -0.012607390992343426, 0.020447103306651115, 0.0020113650243729353, -0.015225358307361603, -0.0034888489171862602, -0.0020415177568793297, -0.024108000099658966, -0.012096568942070007, -0.039304979145526886, -0.018403811380267143, -3.9734823076287284e-06, -0.0023040238302201033, -0.02327081747353077, -0.01091174315661192, -0.013770932331681252, -0.012706718407571316, -0.03243725001811981, 0.019411267712712288, -0.0011147643672302365, -0.04086582735180855, -0.02136942185461521, 8.724339568288997e-05, 0.029372313991189003, 0.015282116830348969, -0.0009427164332009852, -0.004703826736658812, 0.01235907431691885, 0.02029101736843586, 0.02365393564105034, -0.02856351062655449, 0.007020266726613045, -0.025044508278369904, 0.011231007985770702, -0.016502415761351585, -0.027456726878881454, -0.0009923797333613038, 0.0020574808586388826, 0.007790048141032457, -0.006019905209541321, 0.0027350306045264006, 0.015211168676614761, 0.005980884190648794, 0.013118213973939419, 0.00932251662015915, 0.01216042134910822, -0.0071763512678444386, 0.02308635413646698, -0.04370373114943504, 0.018205158412456512, -0.00678613968193531, -0.00914514809846878, -0.004373920615762472, 0.008478240109980106, 0.00685353996232152, -0.019084908068180084, -0.009712728671729565, -0.014657777734100819, -0.017382165417075157, 0.018318673595786095, 0.009875908493995667, 0.002085859887301922, 0.00504792295396328, 0.016190245747566223, -0.02260391041636467, -0.008542093448340893, 0.025058697909116745, 0.027187125757336617, -0.009684349410235882, -0.03615490347146988, -0.0203052069991827, 0.02839323692023754, 0.022731617093086243, -0.011465135030448437, 0.018630843609571457, 0.021000495180487633, -0.004065298475325108, -0.00531752360984683, 0.014728724956512451, -0.025541141629219055, 0.021142389625310898, -0.002978026168420911, -0.0038595502264797688, -0.018488949164748192, 0.0023341765627264977, -0.014161144383251667, 0.0050550177693367004, -0.018318673595786095, 0.02029101736843586, -0.03490622714161873, 0.01634633168578148, 0.005917031317949295, -0.006254032254219055, 0.0010455904994159937, -0.02799592912197113, -0.01644565723836422, 0.0008017080835998058, 0.002339497674256563, 0.027371590957045555, -0.0068499925546348095, 0.0016974217724055052, -0.018503138795495033, -0.011415471322834492, -0.02173835039138794, -0.03002503141760826, -0.016757827252149582, -0.001614058273844421, 0.05678647384047508, 0.01063504721969366, 0.008393103256821632, -0.0009657744085416198, 0.01015260349959135, 0.0035917230416089296, -0.014487503096461296, 0.0007538184290751815, -0.030933160334825516, -0.014898999594151974, 0.01857408508658409, -0.00027536542620509863, 0.021568074822425842, 0.033714305609464645, -0.01577875018119812, -0.011848252266645432, 0.004788964055478573, 0.020319396629929543, -0.013827690854668617, -0.015565906651318073, -0.0277972761541605, -0.03374268487095833, 0.009017442353069782, 0.029514208436012268, 0.015821319073438644, 0.017850419506430626, -0.02809525653719902, -0.0014570866478607059, 0.006119231693446636, 0.0025913617573678493, 0.02701685205101967, 0.008307965472340584, 0.02319987118244171, -0.012032715603709221, -0.0012939071748405695, 0.02153969556093216, -0.008946494199335575, -0.024476926773786545, 0.006530728191137314, -0.04390238597989082, -0.027059420943260193, 0.010805321857333183, 0.021709971129894257, 0.006019905209541321, 0.005427492782473564, 0.011429660953581333, 0.0031483005732297897, 0.02403705194592476, -0.0075417314656078815, -0.03201156482100487, 0.009592117741703987, -0.014324323274195194, 0.009691444225609303, -0.027243884280323982, -0.03135884553194046, 0.023242438212037086, -0.018162589520215988, -0.0048386272974312305, 0.019879521802067757, 0.013799311593174934, -0.007534636650234461, -0.025512762367725372, 0.021866055205464363, -0.004341993946582079, 0.04634298384189606, 0.014005059376358986, 0.030933160334825516, 0.023540418595075607, -0.0011280671460554004, -0.020901167765259743, -0.012763475999236107, 0.007981606759130955, -0.01235907431691885, 0.004214288201183081, 0.024590443819761276, -0.010656331665813923, -0.001633568899706006, 0.012472591362893581, -0.019780196249485016, -0.0113587137311697, -0.031983185559511185, 0.015055084601044655, 0.018432190641760826, 0.004313615150749683, -0.03181290999054909, -0.02942907065153122, -0.003973066341131926, 0.020943736657500267, 0.0042745936661958694, 0.014601019211113453, 0.00498052267357707, 0.0004310067743062973, -2.544137169024907e-05, 0.06073116138577461, -0.00608375808224082, 0.029514208436012268, -0.001828674809075892, 0.00022625637939199805, -0.020347775891423225, -0.00019333224918227643, -2.492866406100802e-05, -0.013827690854668617, 0.016034161671996117, 0.02798173949122429, -0.012430022470653057, 0.008478240109980106, 0.014984136447310448, 0.021099820733070374, -0.012869897298514843, -0.010478963144123554, -0.018730171024799347, 0.031302087008953094, 0.00918062124401331, 0.010486057959496975, -0.0010588931618258357, 0.009833339601755142, 0.013941206969320774, -0.03317510709166527, -0.01135161891579628, 0.009116768836975098, 4.5700242480961606e-05, 0.008570471778512001, 0.020248450338840485, 0.003646707395091653, 0.0015688291750848293, -0.008790409192442894, 0.008456955663859844, 0.0016220398247241974, 0.011798588559031487, -0.0030188211239874363, -0.0015173921128734946, -0.02625061757862568, -0.029400691390037537, 0.005250123795121908, 0.01533887442201376, 0.022845132276415825, -0.007006077095866203, -0.013040171936154366, -0.0004833306302316487, 0.02636413462460041, -0.01346585713326931, -0.014941567555069923, 0.03252238780260086, 0.013167877681553364, -0.04744976758956909, 0.02077346295118332, -0.009294137358665466, -0.005423945374786854, 0.02366812527179718, 0.0010464773513376713, -0.02569722570478916, -0.02078765071928501, 0.015466580167412758, -0.005863820668309927, 0.009982329793274403, -0.003792150178924203, -0.01925518363714218, 0.00740693137049675, 0.0004476351023185998, 0.0013808179646730423, -0.02058899775147438, -0.010571194812655449, -0.003568665124475956, 0.00442713126540184, 0.009421843104064465, -0.020645756274461746, -0.0021922814194113016, -0.015565906651318073, 0.016871342435479164, -0.0057041882537305355, -0.04197261109948158, -0.02759862318634987, -0.019851142540574074, -0.005069207400083542, -0.01865922287106514, -0.013813501223921776, 0.004852816928178072, -0.031699396669864655, -0.001910264603793621, 0.023625556379556656, -0.01187663059681654, 0.0033611434046179056, 0.026307376101613045, -0.010947217233479023, 0.0013852522242814302, 0.010337067767977715, -0.0042745936661958694, -0.02644927054643631, -0.009173526428639889, 0.005523271858692169, -0.024491116404533386, 0.00670809717848897, -0.012259747833013535, 0.03658059239387512, 0.021383611485362053, -0.024604633450508118, -0.013458763249218464, -0.007832616567611694, -0.056701336055994034, -0.013976680114865303, -0.04336318373680115, 0.0359562523663044, 0.04058203473687172, 0.0356157049536705, 0.02906014397740364, 0.03638193756341934, -0.004136246163398027, 0.01154317706823349, -0.020943736657500267, -0.016757827252149582, -0.035445429384708405, -0.02241944707930088, 0.01934031955897808, -0.030223684385418892, -0.06686103343963623, -0.008286681957542896, 0.020035607740283012, -0.010833701118826866, 0.027669569477438927, 0.015140221454203129, -0.023299196735024452, 0.0021727706771343946, -0.0020415177568793297, 0.010415109805762768, 0.013111119158565998, 0.011557366698980331, 0.02203632891178131, -0.019680868834257126, 0.006672623101621866, 0.022759994491934776, 0.007981606759130955, -0.030762886628508568, 0.0040546562522649765, 0.019836952909827232, -0.00546296639367938, 0.0041894568130373955, -0.016999049112200737, -0.03601301088929176, -0.014629398472607136, -0.018389621749520302, -0.008158976212143898, 0.007662342395633459, -0.015381443314254284, 0.0283790472894907, -0.010464773513376713, -0.01894301362335682, -0.03147236257791519, 0.009741107933223248, 0.01624700427055359, 0.004753490444272757, 0.010415109805762768, -0.024945182725787163, -0.0008713254355825484, -0.019993038848042488, 0.008769125677645206, 0.007449499797075987, -0.0004318936262279749, -0.018602464348077774, -0.00856337696313858, -0.0173112191259861, -0.011472229845821857, 0.03365755081176758, -0.016303762793540955, 0.005771588534116745, -0.018063263967633247, 0.0038134343922138214, -0.013536805287003517, -0.00037225327105261385, -0.0008908360032364726, -0.021411990746855736, -0.00013258335820864886, -0.0022809659130871296, -0.004129151348024607, -0.041518546640872955, 0.01877273991703987, 0.020759273320436478, -0.021184958517551422, -2.713192043302115e-05, 0.20852923393249512, 4.736307528219186e-05, 0.018517328426241875, 0.04038338363170624, 0.012586107477545738, 0.009712728671729565, -0.01807745173573494, 0.02009236440062523, -0.016786206513643265, -0.004459057468920946, 0.014366892166435719, 0.015949023887515068, -0.03272103890776634, -0.005505534820258617, 0.019113287329673767, -0.021908624097704887, -0.02634994499385357, -0.027910791337490082, 0.006761307828128338, -0.00021905076573602855, 0.0031908689998090267, -0.0011715225409716368, -0.009244474582374096, 0.0017772377468645573, 0.02501612901687622, 0.023810019716620445, 0.015239547938108444, 0.014686156995594501, 0.014168239198625088, 0.03624004125595093, -0.012394548393785954, -0.0160625409334898, 0.014111480675637722, -0.013323962688446045, -0.028790542855858803, 0.004703826736658812, 0.012834424152970314, 0.007818426936864853, 0.014444935135543346, 0.01617605611681938, 0.004044014029204845, -0.0227174274623394, 0.019311940297484398, -0.04588891938328743, 0.011599935591220856, -0.009655970148742199, -0.004143340978771448, -0.0058389888145029545, 0.01692810095846653, 0.024860044941306114, 0.0016787979984655976, -0.006552012171596289, 0.00967015977948904, 0.004476794507354498, -0.013856069184839725, 0.00033589263330213726, -0.004444868303835392, 0.009152242913842201, -0.0038524556439369917, 0.012855707667768002, -0.015381443314254284, 0.004852816928178072, 0.009230284951627254, 0.002578945830464363, -0.03138722479343414, 0.009017442353069782, -0.002043291460722685, 0.03201156482100487, 0.016119297593832016, -0.007662342395633459, -0.0110678281635046, -0.01010294072329998, -0.023157302290201187, 0.0098191499710083, -0.015239547938108444, -0.02356879785656929, 0.014842241071164608, 0.03876577690243721, 0.044186174869537354, 0.0031908689998090267, 0.0089890630915761, -0.0060270000249147415, -0.03425350785255432, -0.004469699691981077, 0.013586468063294888, -0.022178225219249725, 0.019794384017586708, -0.020376155152916908, 0.006552012171596289, -0.01312530878931284, -0.0025328299961984158, 0.020177502185106277, -0.0003930941456928849, -0.005888652056455612, -0.0006269995355978608, -0.004459057468920946, 0.009209000505506992, 0.014430745504796505, -0.015126031823456287, -0.01264286506921053, -0.02310054376721382, 0.04625784605741501, 0.015736181288957596, 0.03396971896290779, -0.010933027602732182, 0.007133782841265202, -0.0014402365777641535, 0.029202038422226906, 0.0025842669419944286, 0.007761669345200062, 0.001560847507789731, -0.03570083901286125, 0.012486780062317848, -0.006165347993373871, 0.010329972952604294, 0.0283790472894907, 0.015069273300468922, -0.008861357346177101, 0.004540647380053997, 0.019851142540574074, 0.030223684385418892, -0.008300870656967163, 0.0059347678907215595, -0.005682904273271561, -0.010557005181908607, -0.023994483053684235, -0.007247298955917358, 0.017921367660164833, -0.030620990321040154, -0.0309615395963192, -0.0026108722668141127, -0.010748564265668392, 0.02576817385852337, -0.008577566593885422, -0.008882641792297363, -0.004441320896148682, -0.01960992068052292, -0.01732540875673294, 0.019453836604952812, -0.008960683830082417, 0.007641058415174484, 0.0064846123568713665, 0.014054723083972931, 0.004228477831929922, -0.011231007985770702, 0.03181290999054909, -0.016686879098415375, 0.0026552146300673485, -0.02490261383354664, -0.027953360229730606, 0.003746034111827612, 0.02982637844979763, -0.012139136902987957, -0.003157168859615922, 0.03456567972898483, -0.02461882308125496, -0.029202038422226906, -0.016388898715376854, 0.015055084601044655, 0.002158581279218197, -0.05465804412961006, 0.009081294760107994, 0.040837448090314865, 0.012586107477545738, -0.030053410679101944, -0.012344885617494583, -0.18264754116535187, 0.004590310622006655, -0.005863820668309927, -0.000830087112262845, -0.007825521752238274, 0.023781640455126762, 0.010329972952604294, -0.02548438310623169, -0.01790717802941799, -0.01634633168578148, -0.0078113325871527195, 0.0008088028407655656, -0.036325179040431976, -0.032266974449157715, 0.012061094865202904, -0.023710694164037704, -0.0009005913161672652, 0.005168533883988857, 0.050174154341220856, 0.01404053345322609, 0.023696504533290863, -0.009911381639540195, -0.00228451332077384, -0.005274955183267593, 0.018219348043203354, 0.016701068729162216, 0.007917754352092743, 0.020177502185106277, 0.0017169322818517685, -0.035161636769771576, 0.018389621749520302, -0.0003669321886263788, 0.004075940698385239, -0.004292330704629421, 0.004214288201183081, -0.007697816472500563, 0.01010294072329998, -0.004945049062371254, -0.0065803914330899715, 0.019198425114154816, 0.0409509651362896, 0.0026977830566465855, 0.016715258359909058, 0.00020486123685259372, 0.038340091705322266, 0.01817677915096283, 0.02818039245903492, -0.026023585349321365, 0.01342328917235136, -0.011316144838929176, 0.008329249918460846, -0.025839122012257576, 0.0042852358892560005, -0.002061028266325593, 0.0006518312147818506, 0.01904234103858471, 0.014203712344169617, 0.016502415761351585, 0.0021372968330979347, -0.006874823942780495, 0.0027190675027668476, -0.002328855451196432, -0.016800396144390106, -0.009024537168443203, -0.004391657654196024, -0.027868224307894707, 0.01120972353965044, 0.03663734719157219, 0.0015528659569099545, 0.015424012206494808, 0.004544194787740707, 0.01867341250181198, 0.00394114013761282, 0.007470783777534962, -0.0006478404393419623, -0.008762030862271786, -0.02771213836967945, 0.00505147036164999, 0.032266974449157715, -0.0022348498459905386, -0.005541008897125721, 0.006367548368871212, 0.010670521296560764, -0.0077191004529595375, -0.017751093953847885, -0.009159336797893047, 0.003604138968512416, -0.00108904589433223, 0.007222467567771673, -0.010131319984793663, 0.007059287745505571, -0.01846056990325451, -0.015509149059653282, 0.006981245242059231, -0.00855628214776516, 0.013600657694041729, 0.011592840775847435, 0.0008828543941490352, -0.01072018500417471, -0.02771213836967945, 0.005331713240593672, -0.0028574152383953333, -0.027754707261919975, 0.008286681957542896, 0.04288074001669884, 0.001569716027006507, 0.021582264453172684, -0.0043668258003890514, 0.02703104168176651, -0.015892265364527702, -0.039106324315071106, 0.0018127115909010172, 0.025456003844738007, 0.000389546767110005, -0.021099820733070374, 0.031784530729055405, -0.0346224382519722, -0.03499136492609978, -0.0029123995918780565, -0.01617605611681938, 0.04963495209813118, -0.04134827107191086, -0.011152965016663074, 0.0029336840379983187, -0.006899655796587467, -0.009592117741703987, -0.10732955485582352, -0.026761440560221672, 0.029656102880835533, 0.011082017794251442, -0.017098374664783478, 0.013976680114865303, 0.00023523569689132273, 0.041802335530519485, 0.006115684751421213, 0.01877273991703987, -0.013877353630959988, -0.005012448877096176, -0.0032157006207853556, -0.010166793130338192, 0.011025259271264076, -0.005207554902881384, 0.004852816928178072, -0.01760919764637947, -0.0011156512191519141, 0.017864609137177467, 0.002566529903560877, -0.003621875774115324, 0.01042929943650961, 0.011578651145100594, -0.011798588559031487, -0.008875546976923943, -0.024760717526078224, 0.011138775385916233, 0.03243725001811981, 0.005030185915529728, 0.025087077170610428, -0.0203052069991827, 0.014118575491011143, -0.027953360229730606, -0.0032423061784356833, 0.0049202172085642815, -0.02048967219889164, 0.0058389888145029545, 0.0006278863875195384, -0.03405485674738884, 0.011748924851417542, 0.00020075957581866533, 0.007754574529826641, -0.03675086423754692, -0.0022437183652073145, 0.0009968139929696918, -0.025569520890712738, 0.0344521626830101, 0.010400920175015926, -0.0026995567604899406, -0.010081656277179718, -0.013735458254814148, -0.034395404160022736, -0.033033210784196854, 0.020901167765259743, 0.015580096282064915, 0.009741107933223248, 0.017353786155581474, -0.006307242903858423, 0.0007733289967291057, -0.011131680570542812, -0.0029922157991677523, -0.007584300357848406, 0.030734507367014885, 0.01702742837369442, 0.013387815095484257, 0.01634633168578148, -0.0032600429840385914, -0.011557366698980331, -0.007860995829105377, -0.02145455963909626, -0.001627360936254263, -0.025427626445889473, 0.012976318597793579, -0.02097211591899395, 0.011557366698980331, -0.009343801066279411, -0.019028151407837868, 0.009897192008793354, 0.009861718863248825, -0.0068925609812140465, -0.0074991630390286446, -0.007818426936864853, -0.023994483053684235, -0.009464411996304989, 0.008201544173061848, 0.017084186896681786, -0.018134210258722305, 0.021114010363817215, -0.03964552655816078, 0.01519697904586792, 0.03152912110090256, 0.01519697904586792, 0.02298702858388424, -0.02415056899189949, 0.015651043504476547, -0.003983708564192057, -0.003934045322239399, 0.015409822575747967, -0.005771588534116745, -0.009542454034090042, 0.01120972353965044, -0.05187689885497093, 0.0025044509675353765, 0.015651043504476547, 0.007612679153680801, 0.02365393564105034, -0.030620990321040154, -0.0002948760229628533, -0.0035810808185487986, -0.009925571270287037, 0.0011706356890499592, -0.03147236257791519, 0.01087627001106739, -0.022362688556313515, 0.01404762826859951, -0.02914527989923954, 0.003522549057379365, 0.020645756274461746, -0.001627360936254263, -0.0051082284189760685, 0.001239809556864202, -0.020276829600334167, -0.0007808671798557043, 0.008591756224632263, 0.02954258769750595, -0.01982276327908039, -0.004881196189671755, -0.003990803379565477, 0.01328139379620552, -0.00048155695549212396, -0.032579146325588226, 0.029457449913024902, -0.007240204140543938, -0.007236656732857227, 0.01712675392627716, 0.0025718510150909424, -0.03530353307723999, -0.01586388610303402, -0.005665167234838009, 0.010854985564947128, -0.0019226804142817855, -0.0031004108022898436, -0.004224930424243212, 0.023923536762595177, -0.00967015977948904, -0.023242438212037086, -0.016105107963085175, -0.01770852506160736, -0.022291740402579308, 0.0019297751132398844, 0.008499524556100368, 0.047875452786684036, 0.004373920615762472, -0.01721189171075821, -0.03135884553194046, -0.007084119599312544, -0.013827690854668617, 0.02068832516670227, 0.03039395809173584, 0.01634633168578148, -0.007797142956405878, 0.04762003943324089, -0.008605945855379105, -0.007233109325170517, -0.0010030219564214349, 0.010557005181908607, -0.02136942185461521, -0.04716597497463226, 0.0009542454499751329, -0.004483889322727919, -0.019354509189724922, 0.002105370396748185, -0.014955757185816765, 0.02808106690645218, 0.03039395809173584, 0.021568074822425842, 0.003820529207587242, -0.029514208436012268, -0.020518051460385323, -0.005427492782473564, 0.013011792674660683, 0.023512039333581924, -0.013061456382274628, -0.019198425114154816, 0.011862441897392273, 0.012898276560008526, 0.01087627001106739, -0.00871236715465784, 0.02125590667128563, 0.0036112337838858366, 0.004959238227456808, -0.013657416217029095, 0.004370373208075762, -0.020659945905208588, 0.011585745960474014, 0.006037642247974873, 0.014104385860264301, -0.005509082227945328, 0.005874462425708771, 0.013295583426952362, 0.026193859055638313, 0.0026729514356702566, 0.014842241071164608, 0.000845606904476881, -0.021000495180487633, -0.004923764616250992, 0.0004948596470057964, -0.020333586260676384, -0.020532239228487015, 0.030081789940595627, 0.018020695075392723, 0.023143112659454346, -0.02451949566602707, -0.005409755744040012, 0.006651339121162891, -0.019680868834257126, -0.007364362478256226, 0.00136396789457649, -0.018120020627975464, -0.029599346220493317, 0.009492791257798672, 0.0066123176366090775, 0.02877635322511196, 0.011337429285049438, -0.03470757231116295, 0.03493460640311241, -0.005995073355734348, 0.007903564721345901, -0.01515441108494997, 0.016601741313934326, -0.020078174769878387, -0.003990803379565477, -0.009379275143146515, -0.004437773488461971, -0.01423918642103672, -0.009258664213120937, -0.01091174315661192, -0.002747446531429887, 0.010180982761085033, 0.002827262505888939, 0.08928047865629196, 0.03255076706409454, -0.020915357396006584, 0.006541370414197445, -0.01328139379620552, 0.018049074336886406, 0.03206832334399223, -0.0005516177043318748, 0.009173526428639889, 0.011578651145100594, 0.02749929577112198, -0.010897553525865078, 0.0002669404202606529, -0.01617605611681938, -0.03504812344908714, -0.010819511488080025, 0.008208638988435268, 0.02077346295118332, -0.012408738024532795, 0.010046182200312614, 0.024547874927520752, -0.0160625409334898, 0.010535720735788345, -0.010571194812655449, -0.045832160860300064, -0.004955690819770098, 0.03172777220606804, 0.018134210258722305, 0.0009799639228731394, -0.023015405982732773, 0.016204435378313065, -0.011500608175992966, -0.022816753014922142, -0.0036786338314414024, -0.025725604966282845, 0.02348366007208824, -0.02298702858388424, -0.010159698314964771, 0.01009584590792656, 0.01501251570880413, 0.019865332171320915, 0.011266481131315231, -0.018503138795495033, -0.01236616913229227, 0.012245558202266693, 0.00793194305151701, -0.006967056076973677, -0.01487062033265829, -0.003785055363550782], "f8613859-5e96-4bcd-882f-aa600feab1ff": [0.002764615695923567, -0.003957129083573818, 0.029829632490873337, -0.03821417689323425, -0.014431091956794262, 0.015680711716413498, 0.0036783162504434586, -0.0384829118847847, -0.02327248826622963, -0.04090153053402901, -0.0027360625099390745, 0.039289120584726334, 0.0005928975297138095, -0.0016636402579024434, -0.009251217357814312, 0.012072939425706863, 0.026510749012231827, -0.020128283649683, -0.008102373220026493, -0.005431814584881067, -0.029829632490873337, 0.004387105815112591, -0.0189458467066288, -0.010030549950897694, -0.02452210709452629, 0.01429672446101904, -0.005569541826844215, -0.012220743112266064, -0.009459487162530422, 0.009345274418592453, 0.011629525572061539, 0.0021801162511110306, -0.016258493065834045, -0.005445251706987619, -0.023877141997218132, -0.002919138642027974, 0.0053008063696324825, -0.0015460684662684798, 0.01753498613834381, -0.005065662786364555, 0.018905537202954292, 0.0022808918729424477, 0.002351434901356697, -0.012697748839855194, -0.007034149952232838, 0.010003676638007164, 0.005734141916036606, -0.00017068898887373507, 0.009916337206959724, 0.0048036458902060986, -0.009775251150131226, 0.006123808678239584, -0.03547307476401329, 0.011898260563611984, 0.004209068603813648, -0.01500887330621481, 0.02695416286587715, 0.0014091813936829567, 0.016540665179491043, -0.0032113883644342422, 0.018851790577173233, 0.014847632497549057, -0.01918770931661129, 7.395473221549764e-05, -0.024831153452396393, -0.023379981517791748, -0.019160835072398186, 0.0026537622325122356, -0.01500887330621481, 0.0039201779291033745, 0.0343443863093853, 0.032651353627443314, 0.012449168600142002, 0.0069266557693481445, -0.02516707219183445, -0.009251217357814312, -0.0037354223895817995, -0.011300324462354183, -0.023487476631999016, 0.004192272666841745, 0.014337034896016121, -0.019913295283913612, -0.022116925567388535, -0.0025462680496275425, 0.030232734978199005, 2.5075849407585338e-05, 0.02956089749932289, 0.022116925567388535, -0.025798600167036057, -0.004911140073090792, 0.0015981360338628292, -0.0057979668490588665, 0.014404218643903732, -5.714564395020716e-06, 0.013033668510615826, 0.015828516334295273, 0.020007353276014328, 0.01305382326245308, -0.00207934039644897, -0.03103894181549549, -0.004659200552850962, 0.003199631115421653, -0.023245614022016525, -0.011051744222640991, -0.033027585595846176, -0.015317919664084911, 0.025919532403349876, -0.023205304518342018, 0.005257136654108763, 0.02273501642048359, -0.030367102473974228, 0.02179444208741188, -0.014578896574676037, -0.005559463985264301, 0.019456444308161736, -0.023971199989318848, 0.024186188355088234, -0.037703581154346466, -0.009486360475420952, -0.006587377283722162, 0.011481720954179764, -0.01282539777457714, 0.04098215326666832, -0.032355744391679764, 0.012180433608591557, 0.020800121128559113, 0.009190751239657402, -0.009412458166480064, 0.011320480145514011, -0.012025910429656506, -0.013100852258503437, 0.02014172077178955, 0.015882262960076332, 0.02594640478491783, -0.007403661031275988, 0.012644002214074135, -0.026215141639113426, 0.005502357613295317, -0.017964962869882584, -0.030340230092406273, 0.023259051144123077, 0.03329632058739662, 0.008196430280804634, -0.027975358068943024, -0.006308563984930515, 0.04289017245173454, -0.0016921933274716139, 0.00965431984513998, 0.010306003503501415, 0.007222264539450407, 0.015882262960076332, -0.02156601846218109, -0.020450765267014503, 0.01989985816180706, 0.005576259922236204, -0.010070860385894775, 0.01652722805738449, 0.018488997593522072, -0.002354794181883335, -0.0021482037845999002, -7.941341755213216e-05, 0.004531551152467728, 0.01468639075756073, -0.004911140073090792, -0.0016040145419538021, 0.0293190348893404, 0.009580417536199093, -0.0077933273278176785, 0.0066713569685816765, -0.015452287159860134, -0.003809324698522687, 0.02606733702123165, -0.03619866073131561, 0.014740138314664364, 0.013631604611873627, -0.0003997439343947917, 0.00411501107737422, 0.0061775557696819305, 0.006913218647241592, -0.03797231614589691, 0.010050704702734947, 0.0013915456365793943, 0.003386066295206547, 0.020182030275464058, 0.00213812617585063, -0.019711744040250778, 0.024911774322390556, 0.009761814028024673, -0.008182994090020657, -0.013282248750329018, 0.005808044224977493, 0.012590254656970501, -0.014350472018122673, -0.0004480323405005038, -0.6406652331352234, -0.004766694735735655, 0.011945289559662342, -0.02551642805337906, -0.02144508622586727, 0.003456609323620796, 0.027316955849528313, -0.002201950876042247, -0.010856911540031433, 0.022372223436832428, 0.008243459276854992, 0.01267759408801794, -0.016903458163142204, -0.011750456877052784, -0.02196912094950676, -0.021955683827400208, -0.004282970912754536, -0.028217218816280365, -0.014941689558327198, 0.021781006827950478, -0.024428050965070724, 0.027370702475309372, -0.008397982455790043, 0.00788066629320383, -0.019523628056049347, -0.01878460682928562, 0.02966839075088501, -0.019993916153907776, 0.007141644135117531, 0.006725104060024023, -0.013813001103699207, 0.011562341824173927, 0.021041983738541603, 0.01362488605082035, 0.04436821863055229, -0.022170672193169594, -0.010655359365046024, 0.012240898795425892, 0.016446607187390327, 0.03783794865012169, -0.03074333257973194, -0.01675565354526043, 0.018865227699279785, 0.016486918553709984, -0.018220262601971626, -0.005623288918286562, 0.0038429165724664927, 0.004471085499972105, -0.022587211802601814, -0.022654395550489426, -0.0011799164349213243, -0.011938570998609066, -0.02848595567047596, 0.0022221060935407877, 0.006056624464690685, -0.01146156620234251, 0.02097479999065399, -0.031603287905454636, 0.011884824372828007, 0.0013730700593441725, 0.003580899443477392, 0.0014704866334795952, -0.02462960220873356, -0.0373004786670208, -0.047404929995536804, 0.0009892822708934546, 0.011058462783694267, -0.028915932402014732, 0.0035473075695335865, -0.018677111715078354, 0.03743484616279602, -0.010070860385894775, 0.004571861587464809, -0.020343272015452385, -0.010191790759563446, 0.01166983600705862, 0.0299102533608675, -0.011394382454454899, -0.024683348834514618, 0.006594095379114151, -0.008250177837908268, -0.008505476638674736, -0.03031335584819317, -0.011535468511283398, 0.01793809048831463, 0.017212504521012306, -0.022587211802601814, -0.011871387250721455, 0.0195370651781559, 0.01883835345506668, 0.006090216804295778, 0.0331619530916214, -0.0180590208619833, -0.030232734978199005, -0.014578896574676037, 0.030770206823945045, -0.0075514656491577625, -0.0035641035065054893, -0.0139204952865839, -0.024078693240880966, -0.01676909066736698, -0.01895928382873535, 0.0065504261292517185, 0.004266174975782633, 0.027867862954735756, 0.002764615695923567, 0.009298245422542095, -0.005193312186747789, 0.028620323166251183, -0.019147399812936783, 0.004598734900355339, -0.002225465141236782, -0.016191309317946434, -0.01326209306716919, 0.026739174500107765, -0.02268126979470253, 0.009519952349364758, -0.004830519203096628, 0.008445010520517826, -0.02853970229625702, -0.00390674127265811, 0.0006017154082655907, 0.000264956324826926, -0.004084778483957052, 0.007255856413394213, 0.010615048930048943, 0.011925134807825089, -0.002245620358735323, 0.03189889341592789, -0.018703985959291458, 0.002574821235612035, -0.025301439687609673, 0.004447571467608213, 0.008814522065222263, 0.028862183913588524, -0.006701589561998844, 0.013718943111598492, -0.014404218643903732, -0.006070061586797237, -0.04375012591481209, -0.014767011627554893, -0.0007633765926584601, 0.0168765839189291, -0.011750456877052784, 0.002949371235445142, -0.03472061827778816, -0.019093651324510574, 0.010447089560329914, -0.02149883471429348, -0.012596973218023777, -0.013463645242154598, -0.001362992450594902, -0.013201627880334854, 0.02393089048564434, -0.0031324473675340414, 0.010144762694835663, 0.008834676817059517, -0.03837541863322258, -0.027263209223747253, -0.030286481603980064, -0.023500913754105568, 0.011824359185993671, -0.01995360478758812, -0.0019735258538275957, -0.005727423820644617, -0.0032164270523935556, 0.006973684299737215, -0.007450689561665058, -0.02155258134007454, -0.025677669793367386, 0.016688469797372818, -0.006715026218444109, 0.0094729233533144, 0.022761890664696693, -0.018260572105646133, 0.023890579119324684, -0.024253372102975845, -0.010735980235040188, -0.0005496478988789022, -0.01116595696657896, 0.01068895123898983, 0.020356709137558937, -0.012274490669369698, 0.003725344780832529, 0.044986311346292496, 0.009681194089353085, 0.016003195196390152, 0.006637765094637871, -0.013839874416589737, 0.0057912482880055904, 0.012086375616490841, -0.0009388944017700851, -0.009298245422542095, 0.00823002215474844, -0.015344792976975441, 0.017911216244101524, -0.03880539536476135, 0.009566981345415115, -0.012093094177544117, 0.014552023261785507, 0.016890021041035652, 0.030716458335518837, 0.003078700276091695, 0.008256896398961544, -0.005949130281805992, -0.01770966500043869, 0.02231847681105137, -0.025261130183935165, 0.016271930187940598, 0.006056624464690685, 0.005226904060691595, -0.00894217099994421, -0.0057946075685322285, -0.007336477283388376, 0.017010953277349472, 0.0355536974966526, 0.018865227699279785, 0.01854274421930313, -0.010709106922149658, 0.0079948790371418, 0.009459487162530422, -0.012086375616490841, 0.057778116315603256, -0.0011631204979494214, 0.012785088270902634, 0.0195370651781559, -0.005623288918286562, 0.0378916934132576, 0.0061775557696819305, -0.015492597594857216, 0.0022103488445281982, 0.024199625477194786, 0.02535518817603588, 0.006886345334351063, 0.044448837637901306, 0.027101967483758926, 0.021418213844299316, -0.018488997593522072, 0.024602727964520454, 0.005713987164199352, -0.003520434023812413, 0.023205304518342018, 0.008303924463689327, -0.02042389288544655, 0.019577376544475555, -0.0009741659159772098, 0.0005483882268890738, 0.02102854661643505, -0.012563381344079971, 0.028996553272008896, 0.015452287159860134, -0.0005139564746059477, -0.021041983738541603, -0.007497718557715416, 0.022466281428933144, -0.030716458335518837, 0.02227816730737686, 0.020531386137008667, 0.008458447642624378, 0.02681979537010193, 0.018677111715078354, -0.021041983738541603, 0.009036228992044926, -0.0009892822708934546, 0.012126686051487923, -0.003970565740019083, -0.003144204383715987, -0.03031335584819317, -0.00395376980304718, -0.007833637297153473, -0.002742780838161707, -0.02156601846218109, -0.010050704702734947, -0.007323040161281824, -0.014619207009673119, -0.0066780755296349525, -0.002510996535420418, 0.01576133258640766, -0.00817627552896738, 0.009143723174929619, -0.029641518369317055, -0.013517391867935658, 0.02706165798008442, 0.024777406826615334, 0.011575778014957905, -0.03144204616546631, -0.007914258167147636, -0.01355770230293274, 0.0004686074098572135, 0.01663472317159176, -0.016271930187940598, -0.006140604615211487, -0.005247059278190136, -0.017400618642568588, -9.757405496202409e-05, 0.014323597773909569, 0.044690702110528946, -0.014471402391791344, 0.0008599533466622233, 0.01781715825200081, -0.012798524461686611, 0.0056703174486756325, -0.015506033785641193, -0.034854985773563385, 0.02853970229625702, -0.02480427920818329, -0.024898337200284004, -0.03275884687900543, -0.024387739598751068, -0.01765591837465763, 0.003540589241310954, -0.014914816245436668, -0.031764525920152664, -0.010050704702734947, -0.01281868014484644, 0.01682283729314804, 0.0005021993420086801, 0.009835716336965561, 0.018757732585072517, 0.020813558250665665, 0.002015515696257353, -0.015613527968525887, 0.011884824372828007, 0.022721581161022186, 0.07529966533184052, 0.009855872020125389, -0.009519952349364758, 0.009432613849639893, 0.0009968404192477465, -0.019469881430268288, -0.033726297318935394, -0.009042946621775627, 0.036870501935482025, -0.005683754105120897, -0.014323597773909569, 0.009506515227258205, 0.022237855941057205, -0.013275530189275742, -0.01302694994956255, -0.009251217357814312, -0.01087034773081541, -0.010729261673986912, 0.014834195375442505, 0.01300007663667202, 0.014444529078900814, -0.010097733698785305, 0.02375621162354946, 0.025717979297041893, 0.03203326091170311, 0.0025681029073894024, 0.03853666037321091, 0.020047662779688835, -0.0038361982442438602, -0.01530448254197836, -0.021686948835849762, 0.018865227699279785, 6.560923793585971e-05, 0.012630565091967583, -0.03275884687900543, 0.017427492886781693, 0.0041754767298698425, -0.008606252260506153, -0.01254994422197342, 0.0035506668500602245, 0.009385584853589535, 0.04788865149021149, 0.014941689558327198, 0.008908579126000404, -0.0015704226680099964, -0.004508036654442549, -0.009251217357814312, 0.020155156031250954, -0.017548423260450363, -0.015721023082733154, 0.00470958836376667, 0.017508113756775856, -0.007222264539450407, 0.01918770931661129, -0.001527592889033258, -0.024495234712958336, -0.007947850041091442, -0.013436770997941494, -0.04114339500665665, -0.021955683827400208, -0.032651353627443314, -0.0024858026299625635, 0.0073969424702227116, 0.010903939604759216, -0.004084778483957052, -0.012509633786976337, 9.243028762284666e-05, -0.014189230278134346, -0.027491634711623192, 0.011495158076286316, -0.0013252015924081206, -0.04759304225444794, -0.02321874164044857, 0.004759976174682379, 0.019765490666031837, 0.016540665179491043, -0.02688697911798954, -0.0067922878079116344, 0.006940092425793409, 0.01238198485225439, 0.01989985816180706, -0.016003195196390152, -0.005475484300404787, -0.037273604422807693, 0.00657394016161561, -0.02476396970450878, -0.01948331855237484, -0.004901062231510878, -0.006993839517235756, 0.009614009410142899, -0.023299360647797585, -0.007739580236375332, 0.03103894181549549, 0.008975762873888016, 0.014847632497549057, 0.016863148659467697, 0.015425413846969604, -0.0046659186482429504, 0.016554102301597595, -0.04141212999820709, 0.014068299904465675, -0.006372388917952776, -0.012509633786976337, -0.02049107663333416, 0.015411976724863052, 0.02144508622586727, -0.019335513934493065, -0.0017585374880582094, 0.0020709424279630184, 0.0059289755299687386, 0.0077933273278176785, 0.00553594995290041, 0.006993839517235756, -0.0023144837468862534, 0.035741809755563736, -0.037327349185943604, 0.0069199372082948685, 0.01664816029369831, 0.031065816059708595, -0.016486918553709984, -0.026900416240096092, -0.022842511534690857, 0.026013588532805443, 0.009399021044373512, -0.009815561585128307, 0.014095173217356205, 0.01220058836042881, -0.007108051795512438, -0.014390782453119755, 0.009620727971196175, -0.019711744040250778, 0.0036346465349197388, -0.011562341824173927, -0.006886345334351063, -0.02227816730737686, 0.011790766380727291, -0.01593601144850254, -0.002556345658376813, -0.018986158072948456, 0.00018769489543046802, -0.022103488445281982, 0.0005446091527119279, 0.005646802950650454, -0.012670875526964664, 0.011871387250721455, -0.023232176899909973, -0.01705126278102398, 0.006002877373248339, 0.0016367667121812701, 0.010621767491102219, -0.010756134986877441, 0.0011228101793676615, -0.020638881251215935, -0.012476041913032532, 0.0007045906968414783, -0.019335513934493065, -0.024024946615099907, -0.014713265001773834, 0.0610029399394989, 0.0028469159733504057, 0.003994080238044262, 0.012140123173594475, 0.020921053364872932, -0.000686954939737916, -0.008989199995994568, -0.01296648383140564, -0.02528800442814827, -0.017078137025237083, 0.014780448749661446, 0.0006369869224727154, 0.02273501642048359, 0.011582496576011181, -0.002307765418663621, -0.001728304661810398, 0.010494118556380272, 0.037273604422807693, -0.01288586389273405, -0.01913396269083023, -0.03324257209897041, -0.03055521845817566, -0.0133292768150568, 0.032597608864307404, -0.002704150276258588, 0.02558361180126667, -0.02610764652490616, 0.0021465241443365812, 0.011441410519182682, -0.002977924421429634, 0.029749011620879173, 0.00974165927618742, 0.03227512538433075, -0.009620727971196175, 0.010843474417924881, 0.014350472018122673, -0.0021549221128225327, -0.022049741819500923, -0.004121729638427496, -0.04643748328089714, -0.021095730364322662, 0.021351030096411705, 0.03128080442547798, 0.004890984855592251, 7.657909736735746e-05, 0.013550983741879463, -0.004363591317087412, 0.017991837114095688, -0.022466281428933144, -0.0189458467066288, -0.0003073661355301738, -0.011790766380727291, 0.012906018644571304, -0.02712884172797203, -0.018986158072948456, 0.012166996486485004, -0.02800223045051098, -0.00408813776448369, 0.007222264539450407, 0.010346313938498497, -0.0048238011077046394, -0.016782527789473534, 0.022990316152572632, 0.015223861671984196, 0.039826590567827225, 0.011884824372828007, 0.03383379057049751, 0.0020927770528942347, -0.008008315227925777, -0.005398222710937262, -0.015452287159860134, 0.012395421043038368, -0.0031526023522019386, 0.002452210756018758, 0.03955785557627678, -0.015774769708514214, -0.011065181344747543, 0.014820759184658527, -0.0030870982445776463, 0.002804925898090005, -0.021109167486429214, 0.016150999814271927, 0.002185154939070344, 0.0037958878092467785, -0.044395092874765396, -0.02344716526567936, -0.004790208768099546, 0.0186502393335104, 0.004887625575065613, 0.014834195375442505, 0.0012512992834672332, -0.009331837296485901, 0.0035708220675587654, 0.03826792538166046, -0.013550983741879463, 0.024441486224532127, -0.011649680323898792, -0.009412458166480064, -0.018018709495663643, 0.0024908415507525206, 0.005989440716803074, -0.02551642805337906, 0.03227512538433075, 0.027572255581617355, -0.01623161882162094, 0.012731340713799, 0.008841395378112793, 0.013524110428988934, -0.009607291780412197, -0.0027797319926321507, -0.013134444132447243, 0.03128080442547798, 0.01231480110436678, -0.010944250039756298, -0.023957762867212296, -0.0019113806774839759, 0.015452287159860134, -0.03310820460319519, -0.01495512668043375, -0.00019535805040504783, -0.009936491958796978, 0.002826760755851865, 0.017575297504663467, 0.0026285683270543814, 0.0015158357564359903, -0.0031576412729918957, 0.009526670910418034, -0.009573699906468391, -0.008720465004444122, 0.008982481434941292, 0.010997997596859932, -0.017629044130444527, -0.028620323166251183, 0.001748459879308939, 0.0044240569695830345, 0.009889463894069195, 0.005643444135785103, -0.024253372102975845, -0.011535468511283398, 0.024656474590301514, -0.021068857982754707, -0.020289525389671326, 0.018287446349859238, 0.006076779682189226, -0.05476827919483185, 0.039772842079401016, -0.002452210756018758, 0.006782210431993008, 0.02131071873009205, 0.001646004500798881, -0.01854274421930313, -0.011475002393126488, 0.01736030913889408, 0.008377826772630215, 0.002107893582433462, 0.0024438127875328064, -0.0047935680486261845, 0.007040868047624826, -0.006530270911753178, -0.005236981436610222, -0.030823953449726105, -0.006002877373248339, -0.005939052905887365, -0.006510115694254637, 0.02274845354259014, -0.019940167665481567, 0.004652481991797686, -0.019872983917593956, 0.008350953459739685, -0.00402431283146143, -0.03310820460319519, -0.018287446349859238, -0.0266585536301136, -0.0033474357333034277, -0.003725344780832529, -0.015183551236987114, -0.002245620358735323, -0.02227816730737686, -0.009103412739932537, 0.02042389288544655, -0.010601612739264965, 0.01137422677129507, 0.025570176541805267, -0.006684793625026941, -0.0004618890234269202, 0.014202667400240898, -0.0026100927498191595, -0.02956089749932289, -0.006160759832710028, 0.0010959366336464882, -0.020477639511227608, 0.007376787252724171, -0.0004417338641360402, 0.036333028227090836, 0.013396460562944412, -0.03660176321864128, -0.02184819057583809, -0.009781969711184502, -0.054445795714855194, -0.006197710521519184, -0.03270510211586952, 0.03351130709052086, 0.04173460975289345, 0.03719298169016838, 0.016567539423704147, 0.04044468328356743, 0.003075340995565057, 0.011689990758895874, -0.025610486045479774, 0.003910100553184748, -0.020679190754890442, -0.011441410519182682, 0.009204188361763954, -0.01362488605082035, -0.04364263266324997, -0.01166983600705862, 0.03270510211586952, -0.0065504261292517185, 0.01663472317159176, 0.013221782632172108, -0.018932411447167397, 0.0014427732676267624, -0.004313203506171703, 0.007692551705986261, 0.02007453702390194, 0.027505069971084595, 0.022896258160471916, -0.026362944394350052, 0.004968245979398489, 0.011038308031857014, 0.00045433081686496735, -0.0225065927952528, 0.026671990752220154, 0.021834753453731537, -0.010641923174262047, 0.0023312799166888, -0.009674475528299809, -0.035741809755563736, -0.009808843024075031, -0.0018828276079148054, 0.0011186111951246858, 0.004524832591414452, 0.014484839513897896, 0.03351130709052086, 0.006224584300071001, -0.001518355100415647, -0.027626002207398415, 0.0030081572476774454, 0.018220262601971626, 0.00624809879809618, 0.006953529082238674, -0.024145878851413727, -0.005072381347417831, -0.028055978938937187, 0.0040747011080384254, 0.017494676634669304, -0.013584575615823269, -0.027505069971084595, 0.006876267492771149, -0.027343830093741417, -0.009902900084853172, 0.005979363340884447, 6.183014193084091e-05, -0.005814762786030769, -0.018381502479314804, -0.0029006630647927523, -0.018798042088747025, 0.006536989007145166, 0.0006823360454291105, -0.016433171927928925, -0.005132846534252167, -0.014148919843137264, -0.00457522040233016, -0.039826590567827225, 0.007564902305603027, 0.013839874416589737, -0.02179444208741188, -0.002012156415730715, 0.19639185070991516, 0.00487082963809371, 0.02174069546163082, 0.03861727938055992, 0.023191867396235466, -0.0023967840243130922, -0.010077578015625477, 0.02127040922641754, -0.012059502303600311, 0.004004157613962889, 0.0059256162494421005, 0.000252149417065084, -0.028700944036245346, -0.0009405739838257432, 0.00590546103194356, -0.013275530189275742, -0.03281259536743164, -0.02379652112722397, 0.0012756534852087498, -0.0013907058164477348, 0.019228018820285797, 0.010117888450622559, -0.02024921402335167, -0.001028752769343555, 0.022399097681045532, 0.014753574505448341, 0.005109332501888275, 0.018757732585072517, 0.018636802211403847, 0.021095730364322662, -0.006369029637426138, 0.00876077450811863, 0.01646004430949688, -1.512948983872775e-05, -0.024723658338189125, 0.003852994181215763, 0.030528344213962555, -0.006392544135451317, 0.02203630469739437, 0.020397018641233444, 0.014122046530246735, -0.01036646869033575, 0.017897779121994972, -0.03383379057049751, 0.011367508210241795, 0.017494676634669304, -0.013073978014290333, -0.007370069157332182, 0.021095730364322662, 0.016742216423153877, -0.008216585963964462, -0.009607291780412197, 0.02859344892203808, 0.0020709424279630184, -0.004561783745884895, 0.002707509323954582, -0.01663472317159176, 0.0133292768150568, -0.005038789007812738, 0.025691106915473938, -0.005153001751750708, -4.503417949308641e-05, 0.015385103411972523, 0.00894217099994421, -0.03421001881361008, 0.009278090670704842, -0.0032718537840992212, 0.02634950913488865, 0.008995918557047844, 0.0032130680046975613, -0.010715825483202934, -0.016715344041585922, -0.026282325387001038, 0.017158756032586098, -0.007826919667422771, -0.01495512668043375, 0.020383581519126892, 0.03458625078201294, 0.037999190390110016, 0.006322001107037067, 0.0139204952865839, 0.0067990063689649105, -0.03020586259663105, -0.0066646384075284, -0.004387105815112591, -0.03270510211586952, 0.019940167665481567, -0.021216662600636482, 0.008740619756281376, -0.013362868689000607, 0.00032185265445150435, 0.012623846530914307, -0.00753802852705121, -0.015707585960626602, 0.013799563981592655, -0.0009733260958455503, 0.007054304704070091, 0.0210151094943285, -0.010675515048205853, -0.013503954745829105, 0.0008251017425209284, 0.03421001881361008, 0.02049107663333416, 0.03055521845817566, 0.002000399399548769, 0.008223303593695164, -0.014175794087350368, 0.014471402391791344, 0.020504513755440712, -0.008357672020792961, -0.005105973221361637, -0.039342865347862244, 0.012738059274852276, -0.0159897580742836, 0.0006659599603153765, 0.019698306918144226, 0.02186162769794464, -0.013880184851586819, 0.012422295287251472, 0.013604731298983097, 0.01424297783523798, -0.010151480324566364, 0.003940333146601915, 0.0013050463749095798, -0.006594095379114151, -0.023769648745656013, -0.0034028622321784496, 0.014027989469468594, -0.028217218816280365, -0.033430688083171844, 0.007585057523101568, -0.02688697911798954, 0.018583055585622787, 0.003973925020545721, -0.001871070358902216, 0.00016491537098772824, -0.005781170912086964, -0.02245284430682659, 0.01029928494244814, 0.007712706923484802, 0.0002332539443159476, -0.0011270091636106372, 0.019456444308161736, 0.01121970359236002, -0.011327197775244713, 0.048587363213300705, -0.015479160472750664, 0.0072692930698394775, -0.025852348655462265, -0.007067741826176643, 0.010339595377445221, 0.009271372109651566, -0.006681434344500303, -0.017790285870432854, 0.025180509313941002, -0.02671230211853981, -0.037166111171245575, -0.01042693480849266, 0.009519952349364758, 0.007484281435608864, -0.03867102786898613, 0.014646080322563648, 0.04090153053402901, 0.029883379116654396, 0.00615740055218339, -0.011360790580511093, -0.17027077078819275, 0.004971605259925127, -0.000374549999833107, -0.0006768773309886456, -0.0029476915951818228, 0.025597048923373222, -0.0016795963747426867, -0.01824713498353958, -0.006090216804295778, -0.006012955214828253, -0.002453890396282077, -0.003537229960784316, -0.024441486224532127, -0.02711540460586548, 0.011380945332348347, -0.02523425593972206, 0.006180914584547281, 0.025906095281243324, 0.06154041364789009, 0.01752154901623726, 0.020773248746991158, -0.025019267573952675, -0.017615607008337975, -0.010655359365046024, 0.02629576064646244, 0.021525707095861435, 0.0012361829867586493, 0.01995360478758812, -0.007134925574064255, -0.027276646345853806, 0.020679190754890442, -0.006315282545983791, 0.018865227699279785, 0.0018761091632768512, -0.0027713340241461992, -0.012442450039088726, -0.009197469800710678, -0.019228018820285797, 0.0014259773306548595, 0.029104046523571014, 0.030367102473974228, 0.00843829195946455, 0.0057912482880055904, 0.011004715226590633, 0.015170115046203136, 0.025395497679710388, 0.03227512538433075, -0.02829783968627453, 0.026268888264894485, -0.0029594488441944122, 0.01305382326245308, -0.03391440957784653, 0.0017518190434202552, 0.011555623263120651, -0.0011883144034072757, 0.013745817355811596, 0.0034834828693419695, 0.02593296766281128, 0.01355770230293274, -0.011851232498884201, 0.0014326957752928138, -0.019617686048150063, -0.003604413941502571, -0.02410556748509407, -0.015519470907747746, -0.021525707095861435, 0.0036749569699168205, 0.027397576719522476, -0.004759976174682379, 0.016271930187940598, 0.02321874164044857, 0.012946329079568386, -0.0009892822708934546, 0.00829048827290535, -0.003537229960784316, -0.0003501958562992513, -0.022116925567388535, 0.010433652438223362, 0.015721023082733154, 0.005062303505837917, 0.00030652634450234473, 0.016070378944277763, 0.0139204952865839, -0.0041721174493432045, -0.012476041913032532, -0.016137562692165375, 0.011663117446005344, -0.006691512186080217, -0.0015779808163642883, -0.023850269615650177, 0.019752053543925285, -0.015129804611206055, -0.020464202389121056, 0.022600648924708366, 0.0020927770528942347, 0.010238819755613804, 0.009506515227258205, -0.001993680838495493, -0.009137004613876343, -0.014256414026021957, -0.0026588011533021927, 0.006103653460741043, -0.015882262960076332, 0.041062772274017334, 0.038294799625873566, 0.0207329373806715, 0.01569414883852005, 0.005072381347417831, 0.006819161586463451, -0.006980402860790491, -0.03163015842437744, 0.0025949764531105757, 0.04246019572019577, -0.006012955214828253, -0.028055978938937187, 0.030044620856642723, -0.02328592538833618, -0.017508113756775856, 0.012166996486485004, -0.012153559364378452, 0.045926883816719055, -0.031468916684389114, -0.004645763896405697, -0.0024253372102975845, -0.018045583739876747, -0.007383505813777447, -0.10964405536651611, -0.02634950913488865, 0.02262752316892147, 0.0153985396027565, -0.01918770931661129, 0.009190751239657402, -0.01314788032323122, 0.033027585595846176, 0.006264894735068083, 0.02445492334663868, -0.005324320401996374, -0.001834119320847094, -0.010252256877720356, -0.013456926681101322, 0.006701589561998844, -0.01113908365368843, 0.004874188918620348, -0.01682283729314804, -0.012946329079568386, 0.03883226960897446, 0.003765655215829611, -0.012785088270902634, 0.009493079036474228, 0.01018507219851017, -0.007558183744549751, -0.005750938318669796, -0.03369942307472229, 0.008700309321284294, 0.028351588174700737, 0.009916337206959724, 0.02221098355948925, -0.016567539423704147, 0.012845553457736969, -0.028055978938937187, -0.012025910429656506, -0.014068299904465675, -0.029534023255109787, 0.0033608723897486925, -0.005737501196563244, -0.031200183555483818, 0.01783059537410736, -0.005021993070840836, 0.02127040922641754, -0.03998783230781555, 0.005764374975115061, 0.018878662958741188, -0.02202286757528782, 0.038590408861637115, 0.015788206830620766, -0.011132365092635155, -0.008337516337633133, -0.018341192975640297, -0.024898337200284004, -0.03246323764324188, 0.012341674417257309, 0.015317919664084911, -0.008303924463689327, -0.00010843894415302202, -0.004232583101838827, 0.0024690066929906607, -0.001593097229488194, 0.006721744779497385, 0.004034390673041344, 0.017615607008337975, 0.004272893071174622, 0.010346313938498497, -0.00753802852705121, -0.005462047643959522, -0.016204746440052986, 0.0022808918729424477, -0.011495158076286316, -0.002225465141236782, -0.028217218816280365, 0.01918770931661129, -0.027196025475859642, 0.0065470668487250805, -0.0009800444822758436, -0.020800121128559113, 0.010406779125332832, 0.003327280515804887, -0.0139204952865839, -0.019765490666031837, 0.003769014263525605, -0.0313882976770401, 0.0010774610564112663, 0.009587136097252369, 0.01029928494244814, -0.002188514219596982, 0.01960424892604351, -0.04802301898598671, 0.01906677894294262, 0.02227816730737686, 0.009566981345415115, 0.0207329373806715, -0.014498276636004448, 0.0018693908350542188, 0.0022573776077479124, -0.007074459921568632, 0.015506033785641193, 0.0054284557700157166, 0.007900821976363659, 0.004555065650492907, -0.044744446873664856, -0.003624569159001112, 0.012052783742547035, 0.01830088160932064, 0.016433171927928925, -0.02878156490623951, 0.005230263341218233, -0.005206748843193054, -0.01605694182217121, -0.00010261284478474408, -0.0385097861289978, 0.023608407005667686, -0.0033423968125134706, 0.0031945924274623394, -0.02184819057583809, 0.0021969121880829334, 0.012052783742547035, 0.0024018229451030493, 0.014941689558327198, 0.012630565091967583, -0.021337592974305153, 0.006385825574398041, -0.017078137025237083, 0.013665196485817432, -0.03665551170706749, -0.00011169315985171124, -0.0021515630651265383, 0.009842434898018837, 0.0017954885261133313, -0.0473780557513237, 0.018502434715628624, 0.005462047643959522, -0.02174069546163082, 0.01823369786143303, -0.008545786142349243, -0.044744446873664856, -0.0019180991221219301, 0.001997040119022131, 0.015102931298315525, 0.010379905812442303, -0.011824359185993671, -0.014417655766010284, 0.019684869796037674, -0.021633202210068703, -0.028163472190499306, -0.013550983741879463, -0.01027241162955761, -0.014135483652353287, 0.0015452286461368203, 0.006503397133201361, 0.033027585595846176, 0.004753257613629103, -0.017306560650467873, -0.02634950913488865, -0.015774769708514214, -0.0006919937441125512, 0.021041983738541603, 0.010863629169762135, 0.013100852258503437, -0.00225065927952528, 0.04197647422552109, 0.004182195290923119, 0.006187633145600557, 0.00010576208296697587, 0.020464202389121056, -0.023057499900460243, -0.03958472982048988, -0.018045583739876747, 0.006090216804295778, -0.011152519844472408, 0.003019914263859391, -0.02328592538833618, 0.02671230211853981, 0.024481797590851784, 0.011743738315999508, 0.014498276636004448, -0.019039904698729515, -0.016365988180041313, -0.0005656040739268064, 0.016245055943727493, 0.011199548840522766, -0.005844995379447937, -0.019053341820836067, 0.016003195196390152, 0.011972162872552872, 0.0031156514305621386, -0.004185554105788469, 0.0207195021212101, 0.0054015819914639, 0.0062716128304600716, -0.009036228992044926, 0.006234661675989628, -0.03498935326933861, 0.0023648717906326056, -0.00028511148411780596, 0.010830037295818329, -0.01722594164311886, 0.012005754746496677, -0.0025328313931822777, 0.03154953941702843, -0.012785088270902634, 0.025664232671260834, 0.003742140717804432, -0.01878460682928562, -0.017790285870432854, -0.014068299904465675, -0.01764248125255108, -0.021767569705843925, 0.012502915225923061, 0.007847074419260025, 0.014753574505448341, -0.023541223257780075, 0.008935452438890934, 0.0022170671727508307, -0.020047662779688835, -0.005260495934635401, -0.006036469712853432, -0.025919532403349876, -0.023594969883561134, -0.005055585410445929, 0.012919455766677856, 0.023178430274128914, 0.010735980235040188, -0.027169151231646538, 0.03807980939745903, -0.0020826994441449642, -0.0016888341633602977, -0.014740138314664364, 0.011260014027357101, -0.024253372102975845, -0.009889463894069195, 0.01146156620234251, -0.0003800086851697415, -0.018045583739876747, -0.009049665182828903, -0.009761814028024673, -0.021297281607985497, 0.012590254656970501, 0.0031744372099637985, 0.06917250156402588, 0.02848595567047596, -0.009049665182828903, 0.006493319757282734, -0.0094729233533144, 0.007947850041091442, 0.01979236491024494, 0.00023031466116663069, 0.007753016892820597, -0.016715344041585922, 0.025892658159136772, -0.0072961668483912945, -0.004884266294538975, 0.0017736537847667933, -0.011226422153413296, -0.0025832192040979862, 0.007108051795512438, 0.02374277450144291, -0.011864668689668179, -0.0010589854791760445, 0.020464202389121056, 0.003957129083573818, -0.014874505810439587, -0.015788206830620766, -0.03187202289700508, -0.008532349951565266, 0.01633911393582821, 0.018865227699279785, -0.007719425018876791, -0.02695416286587715, 0.003312164219096303, -0.0006445451290346682, -0.012355111539363861, -0.00602303259074688, -0.01495512668043375, 0.028351588174700737, -0.015183551236987114, -0.013799563981592655, 0.0036279282066971064, 0.020101409405469894, 0.012993358075618744, 0.018865227699279785, -0.011024870909750462, -0.013665196485817432, -0.00811580941081047, 0.006180914584547281, 0.001381468027830124, -0.01424297783523798, 0.005179875530302525], "ea47314c-19e1-4116-ac9a-9b436f91fd74": [-0.007663845084607601, -0.009269668720662594, 0.02190260775387287, -0.023997759446501732, -0.002286403439939022, 0.022150717675685883, 0.0027361030224710703, -0.023556675761938095, -0.016843918710947037, -0.04289548099040985, -0.00033253643778152764, 0.036168940365314484, -0.010034674778580666, -0.012977536767721176, 0.005978764034807682, 0.012729426845908165, 0.01280523743480444, -0.025486420840024948, -0.02166828140616417, -0.00013826969370711595, -0.030655380338430405, -0.00548254419118166, -0.02046908251941204, -0.006860933266580105, -0.023653162643313408, -0.0013396221911534667, 0.011557795107364655, -0.022288557142019272, -0.006423295009881258, 0.003735435428097844, 0.011888609267771244, -0.008153173141181469, -0.01364605501294136, 0.005189636256545782, -0.022936400026082993, 0.0005474790814332664, 0.006068359594792128, -0.0030066119506955147, 0.014307682402431965, -0.002355322940275073, 0.019738536328077316, -0.005596261005848646, 0.0028532661963254213, -0.004989769775420427, -0.02206801436841488, 0.012095367535948753, -0.0034304666332900524, 0.002453533234074712, -0.00038401069468818605, 0.0002640477323438972, 0.002310525393113494, 0.008801016956567764, -0.018553121015429497, 0.012253882363438606, -0.009538454934954643, -0.02023475617170334, 0.013308349996805191, -0.009772781282663345, 0.01982123963534832, 0.0031117142643779516, 0.02242639660835266, 0.009903728030622005, -0.02035881206393242, -0.003078977344557643, -0.009669401682913303, -0.02416316606104374, -0.008649393916130066, -0.011840364895761013, -0.01652688905596733, -4.896378413832281e-06, 0.024480195716023445, 0.033935949206352234, 0.006585255730897188, 0.014983093366026878, -0.022095583379268646, -0.013170511461794376, -0.005062135402113199, -0.016209859400987625, -0.005327475257217884, 0.015658503398299217, 0.021061791107058525, -0.021999094635248184, -0.018305011093616486, -0.013349701650440693, 0.02875320427119732, 0.02545885369181633, 0.0238737054169178, 0.011261441744863987, 0.001965927891433239, -0.010062242858111858, 0.010227649472653866, -0.004686524160206318, 0.016637161374092102, 0.015644719824194908, 0.008752772584557533, 0.014597143977880478, 0.01823609136044979, 0.01345997303724289, -0.0042661153711378574, -0.017781224101781845, -0.020276108756661415, -0.007705196738243103, -0.025513987988233566, -0.01443173736333847, -0.03534190356731415, 0.007012556307017803, 0.021296117454767227, -0.0065887016244232655, 0.007718980778008699, 0.01746419444680214, -0.013907949440181255, 0.02886347472667694, -0.017147164791822433, -0.0006370743503794074, 0.017629601061344147, -0.01969718560576439, 0.04239925742149353, -0.038539767265319824, 0.003528676927089691, -0.031317006796598434, 0.011364821344614029, -0.004111046437174082, 0.03691326826810837, -0.02282612957060337, 0.01851177029311657, 0.02097908779978752, 0.012446857057511806, -0.02927699126303196, 0.008173849433660507, -0.015575801022350788, -0.004714091774076223, 0.02165449783205986, 0.025899937376379967, 0.015658503398299217, -0.02259180322289467, 0.007071137893944979, -0.01219874620437622, 0.014569575898349285, -0.01103400718420744, -0.03501109033823013, 0.026437509804964066, 0.03060024604201317, 0.00884926039725542, -0.026988865807652473, -0.0011061575496569276, 0.02285369671881199, 0.001559303025715053, 0.02584480121731758, 0.013907949440181255, 0.010744545608758926, 0.008256552740931511, -0.022150717675685883, -0.004142060410231352, 0.023777218535542488, -0.0072710043750703335, -0.006630053278058767, 0.007167625240981579, 0.01273631863296032, -0.011054683476686478, -0.007291680201888084, -0.006257887929677963, 0.010344812646508217, -0.007174517028033733, -0.0033960069995373487, 0.009407508186995983, 0.028698068112134933, 0.027471302077174187, -0.020717192441225052, -0.00847709458321333, -0.010944412089884281, -0.014404169283807278, 0.025941289961338043, -0.020538002252578735, 0.018966639414429665, 0.018870150670409203, -0.006230320315808058, 0.008890612050890923, -0.005089703015983105, -0.0042144255712628365, -0.04700307920575142, 0.025486420840024948, -0.0032547221053391695, 0.0006263057002797723, 0.01115117035806179, -0.01914582960307598, -0.034321896731853485, 0.03925653174519539, -0.001990049844607711, 0.01785014383494854, -0.007712088990956545, 0.015534449368715286, 0.0015636105090379715, -0.02521074190735817, -0.01823609136044979, -0.6254580020904541, -0.009614266455173492, 0.002663737628608942, -0.007084921933710575, -0.0101656224578619, 0.0012396889505907893, 0.026148047298192978, -0.0022226530127227306, -0.005282677710056305, 0.030352136120200157, 0.010517111048102379, 0.009359264746308327, -0.011316576972603798, -0.017422841861844063, -0.023529108613729477, -0.012536452151834965, -0.005623829085379839, -0.021213414147496223, -0.014927957206964493, 0.0014171566581353545, -0.024245869368314743, 0.02281234599649906, -0.010324137285351753, -8.749542030273005e-05, -0.009290345013141632, -0.017409058287739754, 0.0325024239718914, -0.011158062145113945, -0.002765393815934658, 0.010496435686945915, -0.026423726230859756, 0.03159268572926521, 0.009476426988840103, 0.006054575555026531, 0.040331676602363586, -0.00819452479481697, -0.01339794509112835, 0.02165449783205986, 0.02111692540347576, 0.030269432812929153, -0.03189593181014061, -0.020786112174391747, 0.011164954863488674, 0.009965755976736546, -0.02086881548166275, -0.0010045012459158897, 0.017753655090928078, -0.004545239266008139, -0.02980078011751175, -0.009207641705870628, -0.011723201721906662, -0.012887941673398018, -0.010599814355373383, 0.008249660953879356, -0.006268226075917482, -0.014059572480618954, 0.018566906452178955, -0.013680514879524708, 0.012887941673398018, -0.0044177379459142685, 0.012377937324345112, 0.011275225318968296, -0.012936185114085674, -0.05102797597646713, -0.04383278265595436, -0.008380607701838017, -0.0041282763704657555, -0.020813681185245514, 0.0007550989394076169, -0.010282785631716251, 0.029993753880262375, -0.010461975820362568, 0.0059201824478805065, 0.0013292842777445912, -0.005193082150071859, 0.004700308199971914, 0.03332945704460144, -0.006285456009209156, -0.0232534296810627, 0.018994206562638283, 0.00015420731506310403, -0.018194740638136864, -0.025486420840024948, -0.006285456009209156, 0.02202666364610195, 0.02769184298813343, -0.002818806329742074, -0.013990652747452259, 0.005689302459359169, 0.008587365970015526, -0.009352372027933598, 0.04711335152387619, 0.00439361622557044, -0.03073808364570141, -0.008890612050890923, 0.02665805257856846, -0.009903728030622005, -0.006340591236948967, -0.021048007532954216, -0.018704744055867195, -0.030820786952972412, -0.024604251608252525, -0.0003997329331468791, -0.015079580247402191, 0.036031100898981094, 0.0008701083133928478, 0.00442463019862771, -0.0075811417773365974, 0.02281234599649906, -0.018966639414429665, 0.009731429629027843, -0.0013982037780806422, -0.023804785683751106, -0.029580237343907356, 0.01416984386742115, -0.025279661640524864, 0.003351209219545126, -0.004369494505226612, 0.00030755315674468875, -0.0225642342120409, 0.005592815112322569, 0.0008231569663621485, 0.01823609136044979, -0.0034666494466364384, 0.006812689825892448, 0.006578363478183746, 0.00932480487972498, 0.006388835143297911, 0.014114707708358765, -0.0053550428710877895, 0.0027602247428148985, -0.028449958190321922, 0.005437746178358793, -0.004765781573951244, 0.03175809234380722, 0.008635609410703182, 0.02164071425795555, -0.0006728263688273728, -0.005000107455998659, -0.058995068073272705, 0.005348151084035635, -0.006388835143297911, 0.01259847916662693, -0.0152863385155797, 0.0025638043880462646, -0.0283396877348423, -0.016471752896904945, 0.016637161374092102, -0.01928366906940937, 0.010723870247602463, -0.026216967031359673, -0.005410178564488888, -0.014293898828327656, 0.02584480121731758, -0.002863604109734297, -0.00039800995728001, 0.011833473108708858, -0.04636901989579201, -0.024590468034148216, -0.033660270273685455, -0.016830135136842728, 0.02675453945994377, -0.02023475617170334, -0.005179298110306263, -0.015975533053278923, -0.006233766209334135, 0.0016394219128414989, -0.0010536063928157091, -0.010344812646508217, -0.033935949206352234, 0.021089358255267143, -0.007829251699149609, -0.008173849433660507, 0.0309586264193058, -0.03272296488285065, 0.031068898737430573, -0.01542417798191309, -0.01031035277992487, 0.0016644052229821682, -0.0047244299203157425, 0.016306346282362938, 0.027719411998987198, -0.009979539550840855, 0.0005285262013785541, 0.03297107666730881, 0.018153388053178787, 0.01102022361010313, 0.0013680515112355351, -0.01603066921234131, 0.019738536328077316, 0.008435742929577827, -0.0009114600252360106, -0.011413064785301685, -0.0026654605753719807, 8.017272921279073e-05, 0.003273674985393882, -0.021957743912935257, 0.003261613892391324, -0.014197411015629768, 0.018732313066720963, 0.002169240266084671, 0.02653399668633938, -0.018580690026283264, 0.01437660213559866, 0.003680299734696746, -0.01011737808585167, 0.014955525286495686, -0.018346363678574562, 0.012619155459105968, -5.518941907212138e-05, 0.007029786240309477, 0.006485322490334511, -0.00492085050791502, -0.0010062243090942502, 0.00873209722340107, 0.03255755826830864, 0.023143159225583076, 0.001319807837717235, 0.007071137893944979, 0.011233873665332794, 0.006743770558387041, -0.020648274570703506, 0.03663759306073189, -0.00416618213057518, 0.00257414230145514, 0.027236975729465485, 0.010716977529227734, 0.0361965075135231, -0.004248885437846184, -0.013404836878180504, 0.010682518593966961, 0.03071051649749279, 0.007484654430299997, 0.005847817286849022, 0.03230945020914078, 0.029111584648489952, 0.03594839572906494, -0.0069436365738511086, 0.021185845136642456, 0.007029786240309477, -0.0026137710083276033, 0.024356141686439514, 0.024452628567814827, -0.02875320427119732, 0.021158277988433838, -0.0026413388550281525, 0.003707867581397295, 0.018442850559949875, -0.010551570914685726, 0.004248885437846184, 0.0031323900911957026, 0.00015905321924947202, -0.020289892330765724, -0.01773987151682377, 0.02587237022817135, -0.028946178033947945, 0.021875040605664253, 0.0194077230989933, 0.0200969185680151, 0.0165544580668211, 0.024204518646001816, -0.017009325325489044, 0.01109603513032198, -0.0013895888114348054, 0.030269432812929153, -0.02268829010426998, -0.0024966078344732523, -0.01587904617190361, -0.009069802239537239, -0.009331696666777134, 0.0005991686484776437, -0.03330188989639282, -0.0003383515286259353, 0.0030600244645029306, -0.004621050786226988, -0.005299907177686691, 0.01773987151682377, -0.0017815683968365192, -0.005734100006520748, 0.02875320427119732, -0.023405052721500397, -0.009076694026589394, 0.026561563834547997, 0.013018888421356678, 0.0012655338505282998, -0.01809825375676155, -0.0008149727364070714, -0.015727423131465912, 0.0016824966296553612, 0.0035114469937980175, -0.002567250281572342, 0.009710753336548805, -0.006650729104876518, 0.007105597760528326, -0.015162283554673195, 0.017229868099093437, 0.05353664606809616, -0.017409058287739754, -0.021750984713435173, 0.005958088207989931, 0.0038560444954782724, 0.008635609410703182, -0.00760870985686779, -0.036031100898981094, 0.018456634134054184, -0.03018672950565815, -0.02993861772119999, -0.03175809234380722, -0.014417953789234161, -0.015548232942819595, 0.01299821212887764, -0.0225642342120409, -0.020551785826683044, -0.0019469751277938485, -0.026285886764526367, 0.011481983587145805, 0.008959531784057617, 0.017767440527677536, 0.035231634974479675, 0.00609937310218811, -0.009731429629027843, -0.024976417422294617, -0.011619823053479195, 0.04256466403603554, 0.07691413164138794, 0.014583360403776169, -0.01220563892275095, 0.015782559290528297, 0.00241218158043921, -0.019600698724389076, -0.016747431829571724, -0.019793672487139702, 0.03556244820356369, 0.001086343196220696, -0.01483147032558918, 0.003731989301741123, 0.01798798143863678, -0.004762335680425167, 0.012446857057511806, -0.0059718722477555275, -0.012694966979324818, -0.015120931901037693, -0.003911179956048727, 0.0021468414925038815, 0.033412158489227295, -0.011826581321656704, 0.02889104187488556, 0.02731967903673649, 0.040083564817905426, 0.005499773658812046, 0.04157222434878349, 0.025927504524588585, 0.009600482881069183, -0.009531563147902489, -0.02285369671881199, 0.020524218678474426, 0.008153173141181469, 0.013777002692222595, -0.0357278548181057, 0.024466412141919136, 0.006113157141953707, -0.007822359912097454, -0.011730094440281391, 0.01942150667309761, 0.0029049557633697987, 0.03581055626273155, 0.005703086499124765, -0.0027343800757080317, 0.0035321228206157684, -0.032116472721099854, -0.0018694406608119607, 0.02062070555984974, -0.01758824847638607, -0.009028450585901737, 0.01957312971353531, 0.010937520302832127, -0.01705067791044712, 0.020910168066620827, -0.008359932340681553, -0.012460640631616116, -0.004627942573279142, 0.0023622149601578712, -0.03159268572926521, -0.029552670195698738, -0.035231634974479675, -0.019917726516723633, -0.00028278521494939923, -0.012219422496855259, -0.01914582960307598, 0.007822359912097454, -0.004755443427711725, -0.013680514879524708, -0.03385324403643608, 0.02034502848982811, -0.003516616066917777, -0.05383989214897156, -0.027112919837236404, -0.0033494862727820873, 0.014142275787889957, 0.005751329939812422, -0.003094484331086278, 0.009600482881069183, 0.014721198938786983, 0.014666063711047173, 0.011302793398499489, -0.01851177029311657, -0.008284120820462704, -0.023405052721500397, 0.015493097715079784, -0.03137214481830597, -0.029469966888427734, -0.011399280279874802, 0.00636815931648016, -0.007594925817102194, -0.009579806588590145, -0.0139010576531291, 0.004545239266008139, 0.017271218821406364, 0.0011991987703368068, 0.01462471205741167, 0.013094699941575527, 0.007718980778008699, 0.014555792324244976, -0.029635373502969742, 0.020538002252578735, 0.005113824736326933, -0.006412956863641739, -0.018277443945407867, 0.011544011533260345, 0.006040791515260935, -0.015658503398299217, -0.010944412089884281, -0.005392948631197214, -0.012915508821606636, 0.010034674778580666, 0.010420624166727066, 0.0003461049636825919, -0.0009286899003200233, 0.021613147109746933, -0.01968340203166008, 0.0028704958967864513, 0.029966186732053757, 0.031068898737430573, 0.004310912918299437, -0.03294350579380989, -0.018277443945407867, 0.03148241341114044, 0.006667959038168192, -0.009207641705870628, 0.012874157167971134, 0.01587904617190361, -0.019118260592222214, -0.010365488938987255, 0.024245869368314743, -0.02296396717429161, 0.0013361762976273894, -0.01874609664082527, -0.014156059361994267, -0.027112919837236404, -0.019862592220306396, -0.023267213255167007, 0.004627942573279142, -0.007463978603482246, 0.0070263403467834, -0.02991105057299137, 0.01259847916662693, 0.009786564856767654, -0.004634834360331297, 0.004552131053060293, -0.027664275839924812, -0.015672288835048676, 0.0028498200699687004, 0.0024742090608924627, 0.018401499837636948, -0.003366716206073761, -0.010124270804226398, -0.00932480487972498, -0.01638904958963394, -0.014597143977880478, -0.012770778499543667, -0.01017940603196621, 0.009448859840631485, 0.05105554312467575, 0.011102926917374134, 0.01968340203166008, 0.004204087890684605, 0.005313691217452288, 0.0017970752669498324, -0.016085805371403694, 0.0012035062536597252, -0.01339794509112835, -0.02177855372428894, 0.0017359091434627771, 0.0007856820011511445, 0.017229868099093437, 0.011854149401187897, -0.005027675535529852, -0.022729642689228058, 0.0022019771859049797, 0.017615817487239838, -0.008098037913441658, -0.0033494862727820873, -0.03592082858085632, -0.030214296653866768, -0.004186857957392931, 0.018015550449490547, -0.005027675535529852, 0.005737545900046825, -0.021999094635248184, 0.008118714205920696, 0.014004436321556568, 0.008318580687046051, 0.02980078011751175, 0.008704529143869877, 0.035645149648189545, -0.00564450491219759, -0.01943529024720192, 0.012088475748896599, 0.008263444527983665, -0.016471752896904945, -0.00931791216135025, -0.04987012967467308, -0.026478860527276993, 0.010172514244914055, 0.014666063711047173, -0.0007210699841380119, 0.004379832651466131, -0.002519006608054042, -0.0075811417773365974, 0.011695634573698044, -0.01995907910168171, -0.02691994607448578, 0.0060373456217348576, 0.0037630032747983932, 0.009476426988840103, -0.020634489133954048, -0.02336370013654232, -0.003101376350969076, -0.02139260433614254, -0.0017307401867583394, 0.010896168649196625, 0.008663177490234375, -0.022081797942519188, -0.0078154681250453, 0.037988413125276566, 0.005010445602238178, 0.024907497689127922, 0.006905731279402971, 0.03545217588543892, 0.015382826328277588, 0.013528892770409584, -0.014390385709702969, -0.024245869368314743, 0.016457969322800636, -0.009386831894516945, 0.0165544580668211, 0.04209601506590843, -0.014293898828327656, -0.01233658567070961, 0.01521741971373558, -0.014266330748796463, -0.002863604109734297, -0.04319872334599495, 0.010317244566977024, -0.0012862096773460507, 0.006733432412147522, -0.035231634974479675, -0.03139971196651459, -0.011654282920062542, 0.03266783058643341, 0.00709181372076273, 0.013411729596555233, -0.0005448946030810475, 0.0004158859374001622, -0.0009683186071924865, 0.04093816503882408, -0.0034373586531728506, 0.02519695833325386, 0.002911847783252597, 0.008697637356817722, -0.01877366378903389, 0.003821584628894925, 0.008056686259806156, -0.02336370013654232, 0.030131593346595764, 0.020000429823994637, -0.012281449511647224, -0.010289677418768406, 0.01195063628256321, 0.00847709458321333, -0.012784562073647976, -0.00633714534342289, -0.007470870856195688, 0.0317305251955986, 0.0067920139990746975, -0.012515775859355927, 0.002229544799774885, 0.00918696541339159, 0.009276560507714748, -0.03181322664022446, -0.023294782266020775, -0.002136503579095006, 0.004538347013294697, 0.018608257174491882, 0.0030772543977946043, -0.010978871956467628, -0.007181408815085888, -0.009655618108808994, 0.002753332955762744, -0.007009110413491726, -0.0031117142643779516, 0.0050862571224570274, 0.007264112122356892, -0.03713381290435791, -0.025265878066420555, 0.009889944456517696, 0.014004436321556568, 0.014059572480618954, -0.006185522768646479, -0.004676186013966799, -0.004707199987024069, 0.024369925260543823, -0.018401499837636948, -0.0067403241991996765, 0.01874609664082527, 0.015534449368715286, -0.04237169027328491, 0.031454846262931824, -0.013632271438837051, 0.009235208854079247, 0.009373048320412636, -0.00479334918782115, -0.02180612087249756, -0.01443173736333847, 0.0010854817228391767, 0.005262001883238554, 0.008318580687046051, 0.005782343912869692, 0.0016885270597413182, 0.008435742929577827, -0.0028498200699687004, -0.003313303692266345, -0.02086881548166275, 0.008042902685701847, -0.004410846158862114, 0.008766557089984417, 0.01849798671901226, -0.013301458209753036, 0.01463849563151598, -0.021227197721600533, 0.010648058727383614, -0.012391720898449421, -0.03528676927089691, -0.014941741712391376, -0.0270302165299654, 0.008773448877036572, -0.013149835169315338, -0.009311020374298096, -0.0072503285482525826, -0.025486420840024948, -0.004714091774076223, 0.016609592363238335, -0.0017290172399953008, 0.002322586253285408, 0.009683186188340187, -0.009049126878380775, 0.0034287436865270138, -0.001618746086023748, -0.01359091978520155, -0.03716138005256653, -0.018139604479074478, -0.0050862571224570274, -0.024783441796898842, 0.007202084641903639, -0.005933966487646103, 0.03217161074280739, 0.022798560559749603, -0.019738536328077316, -0.021172061562538147, -0.013887273147702217, -0.053757186979055405, -0.013473756611347198, -0.03252999112010002, 0.03139971196651459, 0.03186836466193199, 0.02570696361362934, 0.02322586253285408, 0.02558290772140026, -0.007684520911425352, 0.01680256798863411, -0.04369494691491127, -0.01285348180681467, -0.019256100058555603, -0.02074476145207882, 0.015148499980568886, -0.029635373502969742, -0.05293015390634537, -0.011668066494166851, 0.018677176907658577, 0.006285456009209156, 0.019380155950784683, 0.013156726956367493, -0.0140526806935668, -0.014693631790578365, -0.0022967413533478975, 0.020841248333454132, 0.030903492122888565, 0.02140638791024685, 0.019655833020806313, -0.028256982564926147, 0.009118045680224895, 0.010351704433560371, -0.0004008098039776087, -0.024052895605564117, 0.012419288977980614, 0.014845253899693489, -0.011943744495511055, 0.0037664491683244705, -0.00020158945699222386, -0.0305726770311594, -0.02493506483733654, -0.0015584415523335338, -0.013335918076336384, 0.0047244299203157425, 0.009559130296111107, 0.037078674882650375, 0.003887058235704899, -0.02126854844391346, -0.0101656224578619, 0.005703086499124765, 0.006736878305673599, -0.007146949414163828, 0.011433740146458149, -0.021613147109746933, -0.004059357102960348, -0.012874157167971134, 0.015107148326933384, -0.004776119254529476, 0.004059357102960348, -0.013439296744763851, -0.0013542675878852606, -0.0279537383466959, -0.013342809863388538, 0.025569124147295952, -0.007746548857539892, -0.0001402080524712801, -0.003078977344557643, 0.0035028322599828243, -0.0011388942366465926, -0.0005763390799984336, 0.013149835169315338, -0.031179169192910194, 0.01042751595377922, -0.0003461049636825919, -0.007040123920887709, -0.03528676927089691, 0.022770993411540985, 0.017243651673197746, -0.007202084641903639, 0.010599814355373383, 0.19540049135684967, 0.009827916510403156, 0.012977536767721176, 0.026423726230859756, 0.014969308860599995, 0.006936744786798954, -0.008049794472754002, 0.015203635208308697, -0.006953974720090628, -0.0034252977930009365, 0.015947965905070305, 0.012488208711147308, -0.04016626998782158, -0.003220262238755822, 0.013342809863388538, -0.0033477633260190487, -0.035617582499980927, -0.015975533053278923, 0.005582477431744337, 0.007470870856195688, 0.015451746061444283, -0.010758329182863235, -0.007353707682341337, -0.0018746096175163984, 0.02311559021472931, 0.002929077483713627, -0.0012827636674046516, 0.01397686917334795, 0.013666731305420399, 0.028174279257655144, -0.012095367535948753, -0.01718851551413536, 0.017753655090928078, -0.007725873030722141, -0.015920398756861687, 0.011123603209853172, 0.017919063568115234, 0.012116042897105217, 0.010013999417424202, 0.010978871956467628, -0.004335034638643265, -0.013453081250190735, 0.00898020714521408, -0.03332945704460144, 0.0015257048653438687, 0.0033529323991388083, -0.004972539842128754, -0.018084470182657242, 0.008339256048202515, 0.02482479438185692, -0.0019883266650140285, -0.004638280253857374, 0.010537787340581417, 0.015093364752829075, -0.020648274570703506, -0.001981434877961874, -0.024507764726877213, 0.01248131599277258, -0.006843703333288431, 0.00871831364929676, -0.012577803805470467, -0.006095927208662033, 0.019242316484451294, -2.7837006200570613e-05, -0.034707844257354736, 0.007794792298227549, -0.00899399071931839, 0.042206283658742905, 0.016237428411841393, 0.003061747644096613, -0.021213414147496223, -0.0021330576855689287, -0.01809825375676155, 0.003976653330028057, -0.02242639660835266, -0.012763885781168938, 0.024245869368314743, 0.02875320427119732, 0.040221404284238815, 0.013025780208408833, 0.010682518593966961, -0.0119368527084589, -0.039697617292404175, -0.005389502737671137, 0.01082724891602993, -0.027485085651278496, 0.027402382344007492, -0.014500657096505165, 0.0095866983756423, -0.027912385761737823, 0.001445585978217423, 0.020510435104370117, -0.009276560507714748, -0.016306346282362938, -0.0011759385233744979, 0.0011621546000242233, 0.014900390058755875, 0.01140617299824953, -0.01206779945641756, -0.025927504524588585, -0.018167173489928246, 0.04766470566391945, 0.024342358112335205, 0.03492838889360428, -0.007539790123701096, 0.005582477431744337, -0.004117938224226236, 0.02573453076183796, 0.00018188278772868216, -0.0007615601643919945, -0.013949301093816757, -0.036665160208940506, 0.010227649472653866, -0.013797678053379059, 0.000643535575363785, 0.02416316606104374, 0.01587904617190361, -0.010069134645164013, 0.017243651673197746, 0.010144946165382862, 0.01463849563151598, -0.018139604479074478, 0.00072580820415169, -0.0023294780403375626, -0.01746419444680214, -0.025017768144607544, 0.005820249207317829, 0.02111692540347576, -0.024728305637836456, -0.02938726358115673, 0.0016437293961644173, -0.017822574824094772, 0.015410393476486206, -0.014803902246057987, -0.017781224101781845, -0.019986646249890327, -0.015575801022350788, -0.013342809863388538, 0.009166290052235126, 0.0002776162582449615, 0.006278563756495714, 0.001143201719969511, 0.020717192441225052, 0.010379272513091564, -0.013425513170659542, 0.025362364947795868, -0.007243436295539141, 0.014859038405120373, -0.02758157253265381, -0.020923951640725136, 0.013363485224545002, 0.013136051595211029, 0.001505028922110796, -0.0012801792472600937, 0.03018672950565815, -0.021296117454767227, -0.032860804349184036, -0.003966315649449825, 0.008759665302932262, -0.009855484589934349, -0.05469449236989021, 0.009958863258361816, 0.05237879976630211, 0.02232990972697735, -0.022895049303770065, -0.0022553896997123957, -0.17577221989631653, 0.0055238958448171616, 0.0037388813216239214, -0.0010760052828118205, -0.01024143397808075, 0.007925739511847496, -0.0012982705375179648, 0.000151838205056265, -0.008036009967327118, -0.011247658170759678, -0.0016394219128414989, -0.004369494505226612, -0.025927504524588585, -0.01734013855457306, 0.01969718560576439, -0.03374297171831131, 0.01122698187828064, 0.005137946456670761, 0.07106976211071014, 0.009276560507714748, 0.01614093966782093, -0.02151665836572647, -0.0058857230469584465, -0.00718830106779933, 0.012777670286595821, 0.023570459336042404, 0.0008059270912781358, 0.02124098129570484, -0.003373608225956559, -0.037271648645401, 0.02074476145207882, -0.012453748844563961, 0.01877366378903389, 0.0022519438061863184, 0.022867480292916298, -0.0013861429179087281, -0.002286403439939022, -0.004772673361003399, 0.00020428161951713264, 0.022770993411540985, 0.03164782002568245, 0.004869160708039999, 0.011716309934854507, 0.007360599469393492, 0.02729211002588272, 0.010337920859456062, 0.028119144961237907, -0.01743662729859352, 0.01707824505865574, -0.010151837952435017, 0.004865714814513922, -0.03324675187468529, -0.00042299326742067933, 0.0037664491683244705, -0.0037595571484416723, 0.009042235091328621, 0.007615601643919945, 0.029552670195698738, 0.006871271412819624, -0.014900390058755875, 0.0012138441670686007, -0.0037216513883322477, -0.011144278571009636, 0.0015627490356564522, -0.015920398756861687, -0.030379703268408775, 0.007146949414163828, 0.030682949349284172, 0.008449527435004711, 0.016830135136842728, 0.00860115047544241, 0.010847925208508968, 0.005734100006520748, 0.018043117597699165, 0.0022674505598843098, 6.035838305251673e-05, -0.016223642975091934, 0.0068781631998717785, 0.026272103190422058, 0.01024143397808075, -0.007457086816430092, 0.01694040559232235, 0.004255777224898338, -0.014707415364682674, -0.008697637356817722, -0.012501992285251617, 0.017533114179968834, 0.004979431629180908, 0.0007559604709967971, -0.023294782266020775, 0.007374383509159088, -0.02414938248693943, -0.011998879723250866, 0.012936185114085674, 0.009214533492922783, 0.015644719824194908, 0.013963084667921066, 0.0008666623616591096, 0.0027395489159971476, -0.023970192298293114, -0.0012259051436558366, 0.021709633991122246, -0.031151602044701576, 0.019848808646202087, 0.04951174929738045, 0.01214361097663641, 0.018608257174491882, -0.004576252773404121, 0.013887273147702217, -0.023074239492416382, -0.04110357165336609, 0.010227649472653866, 0.030655380338430405, 0.001741939689964056, -0.016595808789134026, 0.042344123125076294, -0.019214749336242676, -0.02059313841164112, 0.004676186013966799, -0.013728759251534939, 0.058223169296979904, -0.026878593489527702, -0.015644719824194908, 0.01122698187828064, 0.005737545900046825, -0.011206306517124176, -0.10740410536527634, -0.024383708834648132, 0.008249660953879356, 0.026216967031359673, -0.02088259905576706, 0.004335034638643265, -0.0115509033203125, 0.05643126368522644, 0.008614934049546719, 0.03159268572926521, -0.012708750553429127, -0.011220090091228485, -0.007967091165482998, 0.005120716989040375, 0.026547780260443687, -0.007753440644592047, 0.005220649763941765, -0.019104477018117905, 0.003680299734696746, 0.02570696361362934, -0.00624065799638629, -0.011764554306864738, 0.024232085794210434, -0.00049234350444749, -0.01175766158849001, -0.003053132677450776, -0.0361965075135231, 0.023928841575980186, 0.035093795508146286, 0.004390170332044363, 0.019504209980368614, -0.024452628567814827, 0.03184079751372337, -0.028835907578468323, -0.009538454934954643, 7.769593503326178e-05, -0.029855914413928986, 0.007532898336648941, -8.049578900681809e-05, -0.031978633254766464, 0.012956860475242138, -0.006764446385204792, 0.008690745569765568, -0.02296396717429161, -0.015437961556017399, 0.018415283411741257, -0.02638237364590168, 0.03407378867268562, 0.002923908643424511, -0.017919063568115234, -0.01694040559232235, -0.013129159808158875, -0.024080462753772736, -0.02716805599629879, 0.02452154830098152, 0.0038560444954782724, 0.016347698867321014, 0.01325321476906538, -0.014996876940131187, 0.006061467342078686, -0.0008950916235335171, 0.006340591236948967, -0.011585363186895847, 0.01877366378903389, -0.00023497232177760452, 0.01888393610715866, -0.0055445716716349125, -0.008911287412047386, -0.01629256270825863, 0.0007482070359401405, -0.01732635498046875, 0.005454976111650467, -0.03098619543015957, 0.008160065859556198, -0.010820357128977776, 0.009352372027933598, -0.007236544508486986, -0.008704529143869877, 0.006254442036151886, 0.0152863385155797, -0.008353039622306824, -0.012226314283907413, 0.0051827444694936275, -0.015355258248746395, -0.01523120328783989, 0.008339256048202515, 0.010055351071059704, 0.0017014495097100735, 0.028132928535342216, -0.03605866804718971, 0.021089358255267143, 0.021957743912935257, 0.009145613759756088, 0.009435075335204601, -0.02166828140616417, 0.009228317067027092, -0.0164028350263834, -0.002810191363096237, 0.017216084524989128, -0.011433740146458149, -0.008725205436348915, 0.00508281122893095, -0.04909823089838028, 0.0065680257976055145, 0.01718851551413536, 0.005813357420265675, 0.01747797802090645, -0.02675453945994377, -0.004324696958065033, 0.0009166289819404483, -0.017422841861844063, -0.00038379529723897576, -0.03018672950565815, 0.010710085742175579, -0.015451746061444283, 0.006106265354901552, -0.030517542734742165, 0.009276560507714748, 0.014514440670609474, -0.0002771854924503714, 0.0072847879491746426, -0.00011070190521422774, -0.020965304225683212, 0.00492085050791502, 0.001936637214384973, 0.028560228645801544, -0.02479722537100315, -0.0018608256941661239, -0.011537119746208191, 0.01311537530273199, -0.004872606601566076, -0.03228187933564186, 0.01654067263007164, -0.0020865369588136673, -0.0023949516471475363, 0.007849927991628647, 0.003659623907878995, -0.04341926798224449, -0.01627877913415432, -0.0038284766487777233, 0.008242769166827202, 0.003797462908551097, -0.007243436295539141, -0.020703408867120743, 0.023983975872397423, -0.0158652625977993, -0.03123430535197258, -0.02023475617170334, -0.011674958281219006, -0.030379703268408775, 0.0040421271696686745, 0.01391484122723341, 0.05998750776052475, 0.00435915682464838, -0.025417501106858253, -0.022509099915623665, -0.016899054870009422, -0.002348430920392275, 0.01798798143863678, 0.02941483072936535, 0.008559798821806908, 0.003390837926417589, 0.040331676602363586, 0.0008244491764344275, 0.004018004983663559, -0.0004130860907025635, -0.00036979603464715183, -0.020538002252578735, -0.05549395829439163, -0.0017471086466684937, -0.006540457718074322, -0.0279537383466959, 0.006443970836699009, -0.022798560559749603, 0.03429432958364487, 0.01391484122723341, 0.011447524651885033, 0.003004889003932476, -0.014197411015629768, -0.022247206419706345, -0.009862376376986504, 0.01523120328783989, 0.01785014383494854, -0.006640390958636999, -0.025238310918211937, 0.011902392841875553, 0.008614934049546719, -0.0006827335455454886, -0.005044905468821526, 0.02598264068365097, 0.018801232799887657, -0.0027567788492888212, -0.011385496705770493, 0.008111821487545967, -0.03633434697985649, -0.00015905321924947202, 0.009028450585901737, 0.027526436373591423, -0.023804785683751106, 0.008621825836598873, 0.016981758177280426, 0.040607351809740067, 0.008835475891828537, 0.025789666920900345, 0.006213090382516384, -0.012488208711147308, -0.011929960921406746, -0.0011328638065606356, -0.023832352831959724, -0.008359932340681553, 0.03716138005256653, 0.00271025812253356, 0.011619823053479195, -0.02401154488325119, 0.010524003766477108, 0.006561133544892073, -0.01796041429042816, -0.0058857230469584465, -0.003025564830750227, -0.03936680406332016, -0.0227158572524786, 0.013983760960400105, 0.01319118682295084, 0.03098619543015957, 0.015396609902381897, -0.044687386602163315, 0.038925718516111374, -0.0030479636043310165, 0.0034735414665192366, -0.011027115397155285, 0.014025112614035606, -0.012694966979324818, -0.021075574681162834, -0.013136051595211029, -0.0040559107437729836, -0.011764554306864738, -0.003237492172047496, -0.01666472852230072, -0.01694040559232235, 0.010317244566977024, -0.010034674778580666, 0.08755529671907425, 0.02100665494799614, -0.027871035039424896, 0.013625379651784897, -0.008676961064338684, 0.01638904958963394, 0.032116472721099854, -0.00432814285159111, 0.011192522011697292, -0.0014430014416575432, 0.030269432812929153, -0.0052172038704156876, 0.0036423939745873213, -0.01626499556005001, -0.022095583379268646, 0.00400422140955925, -0.0007365768542513251, 0.04686523973941803, -0.028835907578468323, 0.003399452893063426, 0.029442397877573967, -0.01503822859376669, 0.02140638791024685, -0.010875492356717587, -0.030655380338430405, 0.004476319532841444, 0.040248971432447433, 0.01786392740905285, 0.010248325765132904, -0.036802999675273895, 0.01391484122723341, -0.007029786240309477, -0.017298787832260132, -0.010282785631716251, -0.027140488848090172, 0.00859425775706768, -0.011571579612791538, -0.013956192880868912, 0.005582477431744337, 0.009366156533360481, 0.006971204653382301, 0.024328572675585747, -0.020262325182557106, -0.01168874278664589, 0.013790786266326904, -0.005234433803707361, -0.008325472474098206, -0.008794124238193035, -0.010551570914685726], "652073e8-08c5-49cc-bbc4-ca70d326cd91": [0.003983789589256048, 0.0022742378059774637, 0.027283968403935432, -0.021981429308652878, -0.007006925065070391, 0.015315381810069084, -0.01838672161102295, -0.036993809044361115, -0.019502321258187294, -0.039858557283878326, 0.0060393838211894035, 0.020673010498285294, -9.64097780524753e-05, -0.016183070838451385, -0.0121476324275136, 0.018965180963277817, 0.012629681266844273, -0.010770349763333797, 0.002076253527775407, -0.008497833274304867, -0.017863355576992035, -0.009028087370097637, -0.022862890735268593, -0.0113832401111722, -0.020480191335082054, 0.010253868997097015, 0.015177654102444649, -0.01780826412141323, -0.025286907330155373, 0.017078304663300514, 0.00603594072163105, -0.010632621124386787, -0.012670999392867088, -0.006655718199908733, -0.01698189415037632, -0.0020865830592811108, 0.008952336385846138, -0.001124206930398941, 0.01678907498717308, -0.005998065695166588, 0.026430051773786545, -0.001254187896847725, 0.0001970159646589309, -0.02191256545484066, -0.016775300726294518, 0.03255895897746086, 0.0012223382946103811, -0.014103373512625694, -0.00564341526478529, 0.005553891882300377, 0.003777197329327464, 0.007106778211891651, -0.027421696111559868, 0.00038499353104270995, -0.004841148387640715, -0.004992649424821138, 0.010687712579965591, -0.0020504293497651815, 0.015990249812602997, 0.007361575495451689, 0.015797430649399757, 0.0009976690635085106, -0.0003079517628066242, -0.005429936572909355, -0.020989786833524704, -0.017119621858000755, -0.015880068764090538, -0.011844630353152752, -0.0007721390575170517, -0.0045209298841655254, 0.040877748280763626, 0.02985948510468006, -0.011541628278791904, 0.02554859220981598, -0.010439801961183548, -0.02582404762506485, -0.0086837662383914, -0.018634632229804993, -0.016954347491264343, 0.011644924059510231, 0.010157458484172821, -0.021747291088104248, -0.03264159709215164, -0.01492974255234003, 0.028867842629551888, 0.0277109257876873, 0.020631693303585052, 0.01589384116232395, -0.0015821533743292093, 0.008360105566680431, 0.009289771318435669, -0.006559308152645826, 0.016375890001654625, 0.002348266774788499, -0.00444173626601696, 0.016692664474248886, 0.01244374830275774, 0.009227792732417583, -0.0011775766033679247, -0.02331739291548729, -0.005980849731713533, -0.0064422390423715115, -0.029281027615070343, -0.008656220510601997, -0.015439337119460106, -0.0028561397921293974, -0.0035637186374515295, -0.0015804317081347108, 0.0041180746629834175, 0.02499767765402794, -0.02586536668241024, 0.048425253480672836, -0.011789538897573948, -0.00318324426189065, 0.007127437274903059, -0.018483132123947144, 0.016871711239218712, -0.027325285598635674, -0.01539801899343729, -0.016678892076015472, 0.004307451192289591, -0.011803311295807362, 0.03878427669405937, -0.024901269003748894, 0.017904672771692276, 0.006194328423589468, 0.0055366759188473225, -0.004462395329028368, 0.011045806109905243, -0.008243036456406116, 0.02645759843289852, 0.003846061648800969, 0.012670999392867088, 0.011472763493657112, -0.012354224920272827, 0.0074717579409480095, -0.0025892911944538355, 0.0003623974625952542, -0.0032555516809225082, -0.0326966866850853, 0.027104921638965607, 0.029363663867115974, 0.013277003541588783, -0.023744352161884308, -0.010178118012845516, 0.025645000860095024, 0.0027476786635816097, 0.029170844703912735, 0.008773289620876312, -0.0009675410110503435, 0.018841225653886795, -0.036883626133203506, -0.014819560572504997, 0.012670999392867088, 0.016141751781105995, -0.008015784434974194, -0.0020400998182594776, 0.020025689154863358, -0.016141751781105995, 0.00694494741037488, -0.015742339193820953, -0.008187945000827312, -0.01197547186166048, 0.0053989477455616, -0.0039700171910226345, 0.03407397121191025, 0.009634091518819332, -0.005746711511164904, -0.0033054782543331385, -0.01804240234196186, 0.005870666820555925, 0.032503869384527206, -0.03600216656923294, 0.020907148718833923, 0.01666511967778206, 0.0141860106959939, 0.01254015788435936, 0.012016789987683296, -0.010770349763333797, -0.030300216749310493, 0.03126431256532669, -0.0101367998868227, -0.008215490728616714, 0.014833332970738411, -0.014027622528374195, -0.011941039934754372, 0.029005570337176323, 0.017794489860534668, -0.004751625005155802, -0.023523986339569092, 0.02280779927968979, 0.012099427171051502, -0.010942510329186916, -0.006975936237722635, -0.6187855005264282, 0.009386180900037289, 0.019943051040172577, -0.025341998785734177, 0.00579147320240736, -0.00685886712744832, 0.031126586720347404, -0.0074855308048427105, -7.84405492595397e-05, 0.032503869384527206, 0.012918910011649132, 0.010742804035544395, -0.00907629169523716, -0.013993190601468086, -0.016183070838451385, -0.030024759471416473, 0.0100335031747818, -0.017711853608489037, 0.00020433278405107558, 0.014792014844715595, -0.02939121052622795, 0.026939647272229195, -0.004813602659851313, 0.0011310933623462915, -0.004662101622670889, -0.0188963171094656, 0.02648514322936535, -0.02227065898478031, 0.011314376257359982, 0.028344474732875824, -0.02754565142095089, 0.020314916968345642, -0.0018748259171843529, 0.002496324712410569, 0.03859145566821098, -0.005760484375059605, -0.01964004896581173, 0.0155357476323843, 0.02191256545484066, 0.03627762198448181, -0.018207674846053123, -0.0107978954911232, 0.016334570944309235, 0.012808728031814098, -0.002272516256198287, 0.012292247265577316, 0.008229263126850128, 0.0015218972694128752, -0.013972532004117966, -0.024074899032711983, -0.0074235531501472, -0.023647941648960114, -0.0011689686216413975, -0.0027769459411501884, 0.003790970193222165, -0.004427963402122259, 0.0052026850171387196, -0.019378365948796272, 0.002534199971705675, -0.008208604529500008, 0.01414469163864851, 0.010556871071457863, -0.020562829449772835, -0.043219126760959625, -0.05423738807439804, 0.002380977151915431, 0.0036429124884307384, -0.020604146644473076, 0.009090065024793148, -0.0051751392893493176, 0.03162240609526634, -0.0059050992131233215, 0.011527854949235916, -0.018097493797540665, -0.007203187793493271, 0.013104843907058239, 0.03024512529373169, -0.009709842503070831, -0.021733518689870834, 0.016954347491264343, 0.013538687489926815, -0.013042866252362728, -0.025410862639546394, 0.0017267679795622826, 0.028509749099612236, 0.013924326747655869, -0.009179588407278061, -0.007891829125583172, 0.0034466495271772146, -0.012829386629164219, 0.006263192277401686, 0.034927885979413986, -0.0042282575741410255, -0.03148467838764191, 0.011672469787299633, 0.0347350649535656, -0.0005711418343707919, 0.006369931623339653, 0.00012417063408065587, -0.01694057509303093, -0.018607087433338165, -0.03145713359117508, 0.004641442093998194, 0.008931677788496017, 0.03313741832971573, 0.026003094390034676, -0.013662642799317837, -0.006170225795358419, 0.02218802273273468, -0.04038192331790924, -0.010873645544052124, 0.0026220015715807676, -0.022008975967764854, -0.0026650417130440474, 0.03638780489563942, -0.021747291088104248, -0.0005014169146306813, -0.0074028936214745045, -0.00029052054742351174, -0.010618848726153374, 0.010226323269307613, -0.007044800091534853, 0.005664074327796698, -0.027256421744823456, 0.002697752323001623, 0.012705431319773197, 0.009558340534567833, -0.002646104199811816, 0.02941875532269478, -0.003491411218419671, -0.002980095101520419, -0.03476261347532272, -0.0005384313990361989, -0.00855292472988367, 0.0215957909822464, -0.014323738403618336, 0.041924480348825455, -0.007313370238989592, -0.010673940181732178, -0.05591767281293869, -0.004176609218120575, -0.008635561913251877, 0.028316929936408997, -0.01815258339047432, -6.644312088610604e-05, -0.0323936864733696, -0.018180130049586296, 0.01114910189062357, -0.007099891547113657, -0.018056174740195274, -0.024047354236245155, -0.013703961856663227, -0.013490483164787292, 0.0187448151409626, -0.0019230308244004846, 0.01062573492527008, 0.010240095667541027, -0.0357542559504509, -0.006975936237722635, -0.02112751454114914, -0.023014390841126442, 0.02233952283859253, -0.0241437628865242, -0.004045767709612846, -0.01095628272742033, -0.01318748015910387, 0.004190382082015276, 0.0048067159950733185, -0.014915970154106617, -0.03415660932660103, 0.0087870629504323, -0.025851594284176826, 0.009393067099153996, 0.04167656973004341, -0.028344474732875824, 0.03916991502046585, -0.01925441063940525, -0.005533232819288969, 0.007623258978128433, -0.008738857693970203, 0.008993655443191528, 0.018441813066601753, -0.00993709359318018, -0.0019385252380743623, 0.012361111119389534, 0.010019730776548386, 0.020838284865021706, 0.009007427841424942, -0.025300681591033936, -0.014213556423783302, 0.01335964072495699, 0.014557876624166965, -0.013201253488659859, 0.005867223720997572, -0.017271123826503754, 0.010109254159033298, -0.03889445960521698, 0.005774257238954306, -0.02227065898478031, 0.014461467042565346, 0.02378566935658455, 0.018648406490683556, -0.004951330833137035, 0.005788030102849007, 0.011217966675758362, -0.014323738403618336, 0.018138810992240906, -0.01332520879805088, 0.01007482223212719, 0.01957118511199951, 0.007760987151414156, 0.0002657724835444242, 0.0017267679795622826, -0.008773289620876312, 0.005037411116063595, 0.024818630889058113, 0.021155059337615967, 0.017477715387940407, -0.010667053051292896, 0.018138810992240906, -0.0049031260423362255, -0.027022283524274826, 0.050849273800849915, -0.002696030540391803, -0.001962627749890089, 0.02121015079319477, -0.005219900980591774, 0.0374896302819252, 0.009689182974398136, -0.025025224313139915, -0.00226390827447176, 0.029666665941476822, 0.012016789987683296, 0.018882544711232185, 0.03090622089803219, 0.033550601452589035, 0.023220984265208244, -0.0160453412681818, 0.028165427967905998, -0.012629681266844273, -0.014158464968204498, 0.01520519983023405, 0.0036153667606413364, -0.01181708462536335, 0.03528597950935364, -0.007595713250339031, 0.014819560572504997, 0.011135329492390156, -0.012485066428780556, 0.015370473265647888, 0.015053698793053627, -0.0021244583185762167, -0.033082328736782074, -0.0035206784959882498, 0.02601686678826809, -0.02034246362745762, 0.026788145303726196, 0.02265629731118679, 0.011128443293273449, 0.006091032177209854, 0.013676416128873825, -0.020962240174412727, 0.007409780286252499, -0.0010303795570507646, 0.0025875696446746588, -0.008676880039274693, -0.0032538301311433315, -0.025369545444846153, -0.01638966239988804, -0.009634091518819332, 0.001842115423642099, -0.02856484055519104, 0.005023638252168894, 0.004076756536960602, -0.020879603922367096, 0.004500270821154118, 0.00123008550144732, 0.013504255563020706, -0.009282884187996387, 0.01921309158205986, -0.022794026881456375, -0.019708912819623947, 0.001255048788152635, 0.013380300253629684, 0.0048480345867574215, -0.017036985605955124, -0.01004039030522108, -0.000533266575075686, 0.020907148718833923, 0.014241102151572704, -0.00313503947108984, 0.005815575830638409, 0.0009064240730367601, -0.00921402033418417, -0.012650340795516968, 0.01662380062043667, 0.03861900418996811, -0.011851516552269459, 0.0080226706340909, 0.0128362737596035, 0.0068106623366475105, 0.018097493797540665, -0.022477250546216965, -0.026113277301192284, 0.04264066740870476, -0.01749148778617382, -0.02446053922176361, -0.018028628081083298, -0.011169761419296265, -0.021141286939382553, -0.015659702941775322, -0.005002978723496199, -0.027490559965372086, 0.010088594630360603, -0.024708449840545654, 0.01395187247544527, 0.009730501100420952, 0.015824977308511734, 0.029639121145009995, 0.006535205990076065, 0.007168755866587162, -0.04616651311516762, 0.0006042827153578401, 0.03889445960521698, 0.07878056168556213, 0.0026547121815383434, -0.020590374246239662, 0.013442277908325195, -0.0035878210328519344, -0.013469823636114597, -0.021499380469322205, -0.02042509987950325, 0.020810740068554878, -0.013366526924073696, -0.014943515881896019, 0.01787712797522545, 0.010749690234661102, -0.0017870240844786167, -0.00030579976737499237, -0.00453814584761858, -0.0014005241682752967, -0.013917440548539162, -0.015453110449016094, 0.01516388077288866, 0.011610492132604122, -0.006383704487234354, 0.014778241515159607, 0.02206406742334366, 0.04305385425686836, -0.004503713920712471, 0.03823336213827133, 0.030162489041686058, 0.004093972500413656, -0.025521045550704002, -0.02129278890788555, 0.028895387426018715, 0.010005957446992397, 0.016499845311045647, -0.03658062592148781, 0.012485066428780556, -0.004841148387640715, -0.003017970360815525, -0.02178861014544964, 0.014654286205768585, -0.003608480328693986, 0.0341290608048439, 0.005998065695166588, -0.01385546289384365, 0.011121557094156742, -0.011465877294540405, -0.012299133464694023, 0.029942123219370842, -0.01581120304763317, -0.004331553820520639, 0.005051183979958296, 0.013862349092960358, -0.017119621858000755, 0.03236614167690277, 0.003753094933927059, -0.013676416128873825, -0.0026650417130440474, -0.024873722344636917, -0.02895047888159752, -0.03509315848350525, -0.025755183771252632, -0.016761528328061104, -0.00516480952501297, -0.011018260382115841, -0.018910089507699013, -0.00536107225343585, 0.00284581002779305, -0.00907629169523716, -0.028867842629551888, 0.017284896224737167, -0.001423765905201435, -0.06445682048797607, -0.03360569477081299, 0.00477228406816721, 0.029997214674949646, 0.008470287546515465, 0.0052026850171387196, 0.002188157755881548, 0.014778241515159607, 0.006590296979993582, 0.007464871276170015, -0.025176724418997765, -0.004100858699530363, -0.01944722980260849, -0.002723576268181205, -0.026361187919974327, -0.038646548986434937, 0.005064956843852997, -0.008938563987612724, 0.0018490018555894494, -0.0036945603787899017, -0.02010832540690899, 0.014957288280129433, 0.0005216457648202777, 0.004290235228836536, 0.02269761636853218, 0.020879603922367096, -0.008112194016575813, 0.027655834332108498, -0.042750850319862366, 0.005089059006422758, 0.0021210152190178633, -0.019144227728247643, -0.018965180963277817, 0.015714794397354126, 0.006376818288117647, -0.006841651163995266, -0.007554394658654928, -0.007919374853372574, -0.00841519609093666, 0.005126934498548508, 0.0026512688491493464, 0.0038012999575585127, 0.005612426437437534, 0.01263656746596098, -0.027297740802168846, 0.009041859768331051, 0.012918910011649132, 0.03225595876574516, -0.00927599798887968, -0.0015399741241708398, -0.02176106534898281, 0.022256886586546898, 0.0024291821755468845, -0.009978411719202995, 0.010253868997097015, 0.02289043553173542, -0.021940112113952637, -0.026443826034665108, 0.004093972500413656, -0.00492034200578928, 0.004018221981823444, -0.01351802796125412, -0.009324203245341778, -0.019281955435872078, 0.006693593226373196, -0.0173675324767828, 0.01674775592982769, -0.020714329555630684, 0.005302537698298693, -0.026154596358537674, 0.017009438946843147, 0.01651361770927906, -0.01437882985919714, 0.022311978042125702, -0.028344474732875824, -0.02284911833703518, 0.004279905464500189, 0.004407304339110851, 0.025094088166952133, -0.017780717462301254, -0.011927266605198383, -0.01768430881202221, -0.01636211760342121, -0.0087870629504323, -0.014241102151572704, -0.020314916968345642, 0.0048067159950733185, 0.054485298693180084, 0.016458526253700256, 0.01634834334254265, 0.018028628081083298, 0.014089600183069706, 0.00579147320240736, -0.01991550624370575, -0.006345829460769892, -0.02378566935658455, -0.030740946531295776, 0.010914964601397514, -0.008773289620876312, 0.005757041275501251, 0.002830315614119172, -0.013635097071528435, 0.009090065024793148, 0.0022415274288505316, 0.026347415521740913, -0.023055709898471832, -0.00077299983240664, -0.03225595876574516, -0.045835964381694794, -0.01729866862297058, 0.04699287936091423, -0.003191852243617177, 0.0062528629787266254, -0.032063137739896774, 0.020865831524133682, 0.025479726493358612, 0.0010217714589089155, 0.030355308204889297, 0.016844166442751884, 0.026402506977319717, 0.0027855539228767157, -0.006363045424222946, 0.008539152331650257, -0.010570643469691277, -0.012003017589449883, -0.003980346489697695, -0.04784679785370827, -0.012078767642378807, 0.0167064368724823, 0.029666665941476822, -0.003983789589256048, -0.0023689260706305504, 0.0041731661185622215, 0.011610492132604122, 0.02335871197283268, -0.018496904522180557, -0.013772825710475445, 0.0038012999575585127, -0.020025689154863358, -0.0010200499091297388, -0.014461467042565346, -0.029281027615070343, 0.00010808440129039809, -0.013345868326723576, -0.004841148387640715, 0.01030896045267582, 0.01279495470225811, -0.02601686678826809, -0.016141751781105995, 0.028785206377506256, 0.012354224920272827, 0.0415663868188858, 0.013621324673295021, 0.027049830183386803, 0.0005612426321022213, 0.001605394994840026, -0.025562364608049393, -0.018965180963277817, 0.0033536830451339483, -0.013215025886893272, 0.0006447404157370329, 0.03663571551442146, -0.016210615634918213, -0.004031994845718145, 0.011589832603931427, -0.026705509051680565, -0.007891829125583172, -0.04437604546546936, 0.01964004896581173, 0.004782613832503557, -0.0017560352571308613, -0.02695341967046261, -0.02038378268480301, -0.011197307147085667, 0.027766017243266106, 0.012250928208231926, 0.018331630155444145, 0.0027494002133607864, -0.0060531566850841045, 0.010983828455209732, 0.036332715302705765, -0.005285321734845638, 0.01549442857503891, -0.000701983692124486, -0.014103373512625694, -0.02105865068733692, -0.00941372662782669, -0.006748684681952, -0.031126586720347404, -0.00021928921341896057, 0.020714329555630684, -0.005660631228238344, 0.01197547186166048, 0.007554394658654928, 0.012994660995900631, -0.0020314918365329504, -0.0015064028557389975, -0.00737534835934639, 0.030079850926995277, -0.006893299054354429, -0.013703961856663227, -0.000914171279873699, -0.008704425767064095, 0.007781646680086851, -0.027917517349123955, -0.01917177252471447, -0.008676880039274693, -0.009758046828210354, 0.013153048232197762, 0.015673475340008736, 0.0027614515274763107, -0.01211320050060749, -0.0020400998182594776, 0.010729030705988407, -0.017092077061533928, 0.015645930543541908, 0.010336505249142647, 0.0074855308048427105, -0.0341290608048439, -0.029942123219370842, 0.011700015515089035, 0.006628172472119331, 0.012781182304024696, -0.007113664411008358, -0.011982358060777187, 0.0055366759188473225, 0.025176724418997765, -0.005271548870950937, -0.009640977717936039, 0.020452646538615227, 0.009833797812461853, -0.044155679643154144, 0.025796502828598022, -0.007781646680086851, 0.0025978991761803627, 0.008277468383312225, -0.010067935101687908, -0.02985948510468006, -0.02864747680723667, 0.00014622867456637323, -0.0018731042509898543, 0.01615552417933941, 0.007099891547113657, 0.014227328822016716, 0.009503250010311604, 0.0021020774729549885, 0.0037978566251695156, -0.0411532036960125, 0.002482551848515868, 0.008077762089669704, 0.002253578510135412, -0.0007661134004592896, -0.017822036519646645, 0.010983828455209732, -0.002530756639316678, 0.022683843970298767, -0.007251392584294081, -0.045725781470537186, -0.04040947183966637, -0.03388115018606186, 0.003546502673998475, -0.007664577569812536, 0.0034328768961131573, 0.00792626105248928, -0.010570643469691277, -0.013917440548539162, 0.018951408565044403, -0.0035396162420511246, 0.01351802796125412, 0.015604611486196518, 0.0015554685378447175, 0.01205122284591198, 0.018441813066601753, -0.014599194750189781, -0.042833488434553146, -0.018483132123947144, -0.011872176080942154, -0.026664189994335175, -0.009041859768331051, -0.0107978954911232, 0.03580934554338455, 0.00935174897313118, -0.029446301981806755, -0.014351284131407738, -0.014571649953722954, -0.045285049825906754, -0.0024205741938203573, -0.007850510999560356, 0.02132033370435238, 0.0421723909676075, 0.02773847058415413, 0.011527854949235916, 0.03211823105812073, -0.013283890672028065, 0.02769715152680874, -0.03184277191758156, -0.0022656298242509365, -0.0167064368724823, -0.02735283225774765, 0.005023638252168894, -0.024556947872042656, -0.05181337147951126, -0.01172067504376173, 0.004028551280498505, -0.017546579241752625, 0.007409780286252499, 0.01800108328461647, -0.018772361800074577, -0.0002573796664364636, -0.012374883517622948, 0.00931042991578579, 0.032421231269836426, 0.02250479720532894, 0.02019096165895462, -0.016141751781105995, -0.0094481585547328, 0.005047740414738655, -0.003976903390139341, -0.026361187919974327, 0.017505262047052383, 0.01385546289384365, 1.2972549484402407e-05, 0.019791550934314728, -0.0016587646678090096, -0.011135329492390156, -0.008366991765797138, -0.015480656176805496, 0.013283890672028065, 0.0035172353964298964, 0.0188963171094656, 0.03872918710112572, -0.013648870401084423, 0.0029869815334677696, -0.004476168192923069, 0.01804240234196186, 0.008153513073921204, -0.006228760350495577, 0.008008898235857487, -0.03228350356221199, 0.0001921739603858441, -0.021981429308652878, 0.0024773869663476944, 0.015604611486196518, -0.003532729810103774, -0.008366991765797138, -0.014082713983952999, -0.019116681069135666, -0.011472763493657112, 0.015618383884429932, -0.010715258307754993, -0.014172237366437912, -0.0026547121815383434, 0.00031354697421193123, -0.022050293162465096, 0.009579000063240528, -0.004634555894881487, -0.0035361729096621275, 0.008008898235857487, -0.018180130049586296, -0.0004764536861330271, -0.04142865911126137, -0.00020088956807740033, 0.034845247864723206, -0.024832405149936676, -0.00531286746263504, 0.20780439674854279, 0.0034328768961131573, 0.007795419078320265, 0.0304103996604681, 0.02187124639749527, -0.004331553820520639, 0.013600665144622326, 0.0008388511487282813, -0.00935174897313118, -0.001164664514362812, 0.008807721547782421, 0.014020736329257488, -0.03955555707216263, -0.00039553834358230233, 0.025025224313139915, -0.01733998768031597, -0.04509223252534866, -0.013628210872411728, -0.0011087125167250633, 0.01056375727057457, -0.0036532420199364424, -0.0006567916134372354, -0.015411792322993279, -0.004369428846985102, 0.017794489860534668, 0.011885948479175568, 0.0009365521254949272, 0.022201795130968094, 0.02304193750023842, 0.02233952283859253, -0.012374883517622948, -0.00492034200578928, 0.007760987151414156, -0.008470287546515465, -0.016582481563091278, -0.011830857023596764, 0.005667517893016338, -0.019268183037638664, -0.0015201756032183766, 0.02645759843289852, 0.012739863246679306, -0.012581476010382175, 0.01277429610490799, -0.029914576560258865, 0.01365575660020113, -0.006800332572311163, -0.002961157588288188, 0.009565227665007114, 0.003725549438968301, 0.017615443095564842, 0.006283851806074381, 0.00034711824264377356, 0.022945526987314224, 0.010398482903838158, -0.00603594072163105, 0.018331630155444145, -0.007637031842023134, 0.012085654772818089, -0.014805787242949009, -0.003439763095229864, -0.015329155139625072, 0.008222376927733421, 0.011700015515089035, 0.004149063490331173, -0.0351482518017292, 0.019006500020623207, -0.004947887733578682, 0.040326833724975586, 0.006493887398391962, 0.0028130996506661177, -0.007017254829406738, -0.0014934907667338848, -0.033192507922649384, 0.002623723354190588, -0.015466882847249508, -0.017477715387940407, 0.013621324673295021, 0.012292247265577316, 0.04418322443962097, 0.026388734579086304, 0.0031798011623322964, 0.013201253488659859, -0.009434385225176811, -0.020328691229224205, 0.013318322598934174, -0.008911018259823322, 0.027848653495311737, -0.03349551185965538, -0.0024618925526738167, -0.011025146581232548, -0.002844088478013873, 0.009696069173514843, 0.0028526964597404003, -0.0148471063002944, -0.0018403938738629222, -0.0026684850454330444, 0.0026357744354754686, 0.008497833274304867, -0.015563293360173702, -0.043494582176208496, -0.020163416862487793, 0.04374249279499054, 0.029721757397055626, 0.031099040061235428, -0.012595249339938164, -0.004851477686315775, 0.0062528629787266254, 0.019323274493217468, 0.0087870629504323, -0.0038116294890642166, -0.01211320050060749, -0.03542370721697807, 0.009943979792296886, -0.0004648328758776188, -0.010591302998363972, 0.012140746228396893, 0.04112565889954567, 0.007974466308951378, 0.008387650363147259, 0.01581120304763317, 0.017629217356443405, -0.004042324144393206, 0.015508201904594898, -0.0013574841432273388, -0.011300603859126568, -0.025686319917440414, 0.007354688830673695, 0.017560353502631187, -0.01780826412141323, -0.034927885979413986, 0.014062055386602879, -0.020645465701818466, 0.022215567529201508, -0.01032961905002594, -0.003632582724094391, -0.011279944330453873, -0.0057949163019657135, -0.020011914893984795, 0.01062573492527008, -0.009269111789762974, 0.0037875270936638117, -0.0074304393492639065, 0.006531762424856424, 0.010157458484172821, -0.0030300216749310493, 0.011231739073991776, -0.010584416799247265, 0.009468818083405495, -0.009220906533300877, -0.006276965141296387, -0.0027855539228767157, 0.006325170397758484, -0.014041395857930183, -0.021568244323134422, 0.03258650377392769, -0.02014964446425438, -0.03063076362013817, -0.014433921314775944, 0.01632079854607582, 0.006672934163361788, -0.06655029207468033, 0.01428242027759552, 0.03682853654026985, 0.004111188463866711, -0.014254874549806118, -0.01520519983023405, -0.17519034445285797, 0.00019959837663918734, 0.005856893956661224, -0.012202723883092403, -0.0017353760777041316, 0.017753172665834427, -0.00424547353759408, 0.006731468718498945, -0.009530795738101006, -0.01095628272742033, -0.006638501770794392, -0.005529789719730616, -0.037269264459609985, -0.02539709024131298, 0.0055366759188473225, -0.02722887694835663, 0.011355694383382797, 0.02003946155309677, 0.059884246438741684, 0.01197547186166048, 0.01815258339047432, -0.027339057996869087, -0.013249457813799381, -0.004748181439936161, 0.0031935740262269974, 0.023069482296705246, -0.009344861842691898, 0.03594707325100899, -0.00805710256099701, -0.027104921638965607, 0.011700015515089035, -0.021816154941916466, 0.016527390107512474, 0.005715722683817148, -0.00763014517724514, 0.002253578510135412, -0.0011285109212622046, 0.0009847570909187198, -0.022821571677923203, 0.029060661792755127, 0.0482875257730484, 0.011403899639844894, 0.012058109045028687, 0.0202735997736454, 0.03266914188861847, 0.019901733845472336, 0.023262303322553635, -0.0290331169962883, 0.0003746638831216842, 0.006128907203674316, 0.012960229068994522, -0.02977684885263443, 0.007884942926466465, 0.0035912643652409315, 0.017794489860534668, -0.0007725694449618459, 0.01698189415037632, 0.027986381202936172, 0.025713864713907242, -0.006579967215657234, 0.0093724075704813, 0.007382234558463097, -0.002021162072196603, -0.011885948479175568, -0.02695341967046261, -0.02473599463701248, -0.006555865053087473, 0.02731151320040226, 0.0054540387354791164, 0.014309966005384922, 0.0013876121956855059, 0.011534741148352623, 0.0024618925526738167, 0.012884478084743023, 0.01745017059147358, 0.0008134575327858329, -0.029363663867115974, 0.024157535284757614, 0.03655307739973068, 0.003594707464799285, 0.0003834871167782694, 0.02085205726325512, 0.0045760213397443295, -0.005946417339146137, -0.0173675324767828, -0.010253868997097015, 0.008738857693970203, 0.000789355079177767, 0.0005242281476967037, 0.001292924047447741, 0.023510213941335678, -0.019240638241171837, -0.022628752514719963, 0.0004349200171418488, -0.0003720815002452582, 0.0037427654024213552, 0.022518569603562355, 0.0015382524579763412, -0.0005720026674680412, -0.00907629169523716, 0.015329155139625072, 0.0155357476323843, -0.03164995461702347, 0.031760137528181076, 0.027683379128575325, 0.02191256545484066, 0.02105865068733692, 0.003808186389505863, 0.02985948510468006, -0.006132350768893957, -0.05156546086072922, 0.0009210577118210495, 0.025892911478877068, 0.002773502841591835, -0.02777978964149952, 0.048067159950733185, -0.01651361770927906, -0.007099891547113657, 0.008181058801710606, -0.019144227728247643, 0.04754379391670227, -0.02401980757713318, -0.0056055402383208275, -0.001659625442698598, -0.0002991285582538694, -0.019392138347029686, -0.11646301299333572, -0.024322809651494026, 0.03732435777783394, 0.019750231876969337, 0.0021520040463656187, 0.008539152331650257, -0.004138734191656113, 0.046855151653289795, 0.003808186389505863, 0.02050773799419403, -0.017753172665834427, -0.0086837662383914, -0.004662101622670889, -0.007822965271770954, 0.026595326140522957, -0.006507660262286663, -0.005323197226971388, -0.013366526924073696, 0.0005728634423576295, 0.032614052295684814, 0.0008470288012176752, -0.00675901398062706, 0.008084648288786411, 0.006934617646038532, -0.014530330896377563, -0.01662380062043667, -0.028812751173973083, 0.022284431383013725, 0.01968136802315712, 0.0042144847102463245, 0.04327421635389328, -0.024157535284757614, 0.004324667155742645, -0.03897709771990776, 0.0011362581280991435, -0.006869196891784668, -0.021609563380479813, 0.0015769884921610355, 0.010384710505604744, -0.026746828109025955, 0.013924326747655869, -0.00212273676879704, -0.007774760015308857, -0.04068492725491524, -0.01007482223212719, -0.0010054162703454494, -0.01787712797522545, 0.03324760124087334, 0.011589832603931427, -0.0030059192795306444, -0.021747291088104248, -0.020204735919833183, -0.03776508942246437, -0.031209222972393036, 0.018731042742729187, 0.0241437628865242, 0.013414732180535793, -0.009868229739367962, -0.01516388077288866, 0.012264701537787914, 0.008911018259823322, 0.0021210152190178633, -0.024584494531154633, 0.0227664802223444, 0.012560817413032055, 0.026319868862628937, -0.009806252084672451, -0.013380300253629684, -0.017395079135894775, 0.0013721177820116282, -0.026994738727808, 0.009806252084672451, -0.021774837747216225, 0.007829851470887661, -0.029473846778273582, 0.009475704282522202, -0.007568167522549629, -0.010212549939751625, 0.019116681069135666, 0.008697539567947388, -0.0074855308048427105, -0.01643098145723343, 0.005612426437437534, 0.0038598342798650265, 0.01046734768897295, 0.0014556155074387789, 0.012278473936021328, -0.017794489860534668, 0.015150108374655247, -0.034845247864723206, 0.006631615571677685, 0.033908694982528687, 0.024818630889058113, 0.0030162488110363483, 0.005619312636554241, 0.02331739291548729, -0.017271123826503754, -0.02550727315247059, 0.010591302998363972, 0.014027622528374195, -0.006245976313948631, 0.008463401347398758, -0.03768245130777359, -0.008635561913251877, 0.010143686085939407, 0.007492417003959417, 0.009826910682022572, -0.023289848119020462, 0.0006357019883580506, -0.002919838996604085, 0.0037565382663160563, 0.0008022671099752188, -0.012230269610881805, 0.014640513807535172, -0.015701021999120712, 0.001281733624637127, -0.02848220430314541, -0.0030868344474583864, 0.010522439144551754, -0.01081855408847332, 0.0014082713751122355, 0.0068244352005422115, -0.01600402407348156, -0.005061513278633356, 0.020246053114533424, 0.01611420512199402, -0.02652646228671074, 0.007306484039872885, -0.020755648612976074, 0.011576060205698013, -0.014544104225933552, -0.05071154236793518, 0.020879603922367096, 0.0064422390423715115, -0.011644924059510231, 0.012429974973201752, 0.000417703966377303, -0.043962858617305756, -0.0023895851336419582, -0.0033536830451339483, 0.00940683949738741, 0.019185546785593033, -0.01269854512065649, -0.027876198291778564, 0.008594242855906487, -0.02590668573975563, -0.02503899671137333, -0.0014117145910859108, -0.007836737670004368, -0.03454224765300751, 0.007223846856504679, 0.004007892217487097, 0.05208882689476013, 0.01795976422727108, -0.018992725759744644, -0.01897895336151123, 0.0021279016509652138, 0.00037617029738612473, 0.004899682942777872, 0.03305478021502495, 0.013869235292077065, 0.006765900645405054, 0.045918602496385574, -0.0007480366039089859, 0.0029732086695730686, 0.0003727270814124495, 0.005140707362443209, -0.015935158357024193, -0.042199939489364624, -0.011410785838961601, 0.00011254980927333236, -0.02289043553173542, -0.0014418426435440779, -0.015356700867414474, 0.04410058632493019, 0.016224388033151627, 0.011996131390333176, 0.003608480328693986, -0.01152096875011921, -0.021774837747216225, 0.005250889807939529, 0.024983905255794525, 0.009558340534567833, -0.01936459355056286, -0.014020736329257488, 0.01815258339047432, 0.0182352215051651, 0.005784586537629366, -0.005336970090866089, 0.034018877893686295, 0.0047929431311786175, -0.0005534954252652824, -0.005608983337879181, 0.0022880106698721647, -0.013208139687776566, 0.015039925463497639, 0.003725549438968301, 0.016871711239218712, -0.009427499026060104, 0.015521974302828312, 0.005151036661118269, 0.035588979721069336, -0.0002216564171249047, 0.012746750377118587, 0.002637496218085289, -0.015026153065264225, -0.024281492456793785, -0.00035551105975173414, -0.031016403809189796, -0.011906608007848263, 0.030740946531295776, 0.0075268493965268135, 0.006042827386409044, -0.006097918376326561, 0.0155357476323843, 0.011768879368901253, -0.019736459478735924, 0.0034122176002711058, -0.0003710055025294423, -0.02773847058415413, -0.028867842629551888, 0.007478644140064716, 0.020989786833524704, 0.02401980757713318, 0.011858402751386166, -0.02331739291548729, 0.029997214674949646, -0.010963168926537037, 0.013648870401084423, -0.016458526253700256, 0.004042324144393206, -0.019144227728247643, -0.019901733845472336, -0.005619312636554241, -0.0019436900038272142, 0.0012645175447687507, -0.025934230536222458, -0.014833332970738411, -0.0075406222604215145, 0.01706453040242195, 0.006934617646038532, 0.06820303201675415, 0.027049830183386803, -0.00960654579102993, 0.010839213617146015, -0.02375812456011772, -0.00246017100289464, 0.014557876624166965, 0.0017534528160467744, -0.012884478084743023, -0.019901733845472336, 0.02892293408513069, -0.010047276504337788, -0.014723150990903378, -0.011906608007848263, -0.0074855308048427105, 0.004765397869050503, 0.008539152331650257, 0.03377096727490425, -0.01968136802315712, 0.008718198165297508, 0.017119621858000755, -0.004135291092097759, 0.013876121491193771, -0.0031849658116698265, -0.03908728063106537, -0.0067555708810687065, 0.03641534969210625, 0.01929572783410549, -0.0017026655841618776, -0.024129990488290787, 0.0120718814432621, 0.0067693437449634075, -0.035396162420511246, -0.020480191335082054, -0.014778241515159607, 0.01627947948873043, -0.0007329725776799023, -0.015659702941775322, 0.00045192084508016706, 0.017436396330595016, 0.010515552014112473, 0.016375890001654625, -0.014557876624166965, -0.016871711239218712, -0.009909547865390778, -0.002623723354190588, -0.009778706356883049, -0.017202259972691536, 0.002296618651598692], "5bd4e401-4e7b-4124-bba6-800f7b04c425": [-0.0018695457838475704, -0.0050778621807694435, 0.033023007214069366, -0.013103723526000977, -0.01267775148153305, 0.019702915102243423, -0.011704100295901299, -0.03137321025133133, -0.01832357607781887, -0.041623592376708984, 0.014117944054305553, 0.0251526590436697, 0.005500453524291515, 0.0006376908859238029, -0.013644641265273094, 0.02024383284151554, 0.024976860731840134, -0.00977708213031292, 0.010547889396548271, -0.012873833999037743, -0.030210236087441444, 0.00488854106515646, -0.005365224555134773, 0.006075178273022175, -0.02127157710492611, 0.005750628188252449, 0.010128677822649479, -0.01844528317451477, -0.02507152035832405, 0.01787731982767582, 0.0070724948309361935, -0.014077374711632729, -0.013184861280024052, 0.003891224507242441, -0.02499038353562355, 0.00488854106515646, -0.017201172187924385, -0.006964311469346285, 0.012867072597146034, -0.003735710633918643, 0.03375324606895447, -0.007004880346357822, -0.011846090666949749, -0.006575527135282755, -0.009127981029450893, 0.017458109185099602, -0.001538233831524849, -0.014104421250522137, -0.0012195996241644025, 0.005331417080014944, -0.0027485364116728306, -0.01237348560243845, -0.025964034721255302, 0.016809007152915, -0.005385508760809898, -0.013130770064890385, 0.017647430300712585, 0.0016295136883854866, -0.0010235171066597104, 0.012664228677749634, 0.019689392298460007, 0.0010902866488322616, -0.006447059102356434, 0.006223930511623621, -0.011041476391255856, -0.01983814500272274, -0.006906839087605476, -0.007944724522531033, -0.011460687033832073, -0.01149449497461319, 0.04408476874232292, 0.027438035234808922, -0.00873581599444151, 0.019540641456842422, -0.023097172379493713, -0.0073159076273441315, -0.019527118653059006, 0.003786421613767743, -0.015078072436153889, -0.009384917095303535, 0.016011154279112816, -0.02375979721546173, -0.027356896549463272, -0.009702705778181553, 0.03088638372719288, 0.03959515318274498, 0.009635090827941895, 0.00920235738158226, -0.00483783008530736, 0.007856825366616249, 0.0050474354065954685, -0.0007496777107007802, 0.031805943697690964, -0.0029463095124810934, -0.0014063852140679955, 0.016673779115080833, 0.009526907466351986, 0.010547889396548271, -0.019608255475759506, -0.022853760048747063, -0.016173429787158966, -0.01376634743064642, -0.023367630317807198, -0.007255054544657469, -0.032130494713783264, 0.016132861375808716, -0.005355081986635923, -0.010547889396548271, 0.005730343516916037, 0.017525723204016685, -0.019811099395155907, 0.02426014468073845, -0.006115747150033712, -0.01729583367705345, 0.024395374581217766, -0.014753521420061588, 0.024936292320489883, -0.025828804820775986, -0.023218879476189613, -0.017282310873270035, 0.006230692379176617, -0.013847485184669495, 0.019080860540270805, -0.025693576782941818, 0.0159976314753294, 0.008235467597842216, 0.00991907250136137, -0.023367630317807198, 0.016227521002292633, -0.0120083661749959, 0.017336402088403702, 0.0007843301864340901, 0.01449658628553152, 0.001098738401196897, -0.005101527087390423, -0.0064402977004647255, -0.014685907401144505, 0.01023009978234768, -0.00361062353476882, -0.045058418065309525, 0.03407779708504677, 0.03743148222565651, 0.0035531511530280113, -0.026072219014167786, -0.003840513527393341, 0.015943540260195732, 0.004273247439414263, 0.019202567636966705, -0.003539628116413951, 0.013752824626863003, 0.01147420983761549, -0.026572566479444504, -0.011663530953228474, 0.009134742431342602, 0.019040292128920555, -0.008641155436635017, 0.009587761014699936, 0.01247490756213665, -0.012961733154952526, -0.012055695988237858, -0.014469539746642113, -0.0011866375571116805, 0.005300990305840969, -0.01885097101330757, -0.017160603776574135, 0.036376696079969406, 0.01149449497461319, -0.008796668611466885, -0.004692458547651768, 0.002145075472071767, 0.0036072428338229656, 0.020135650411248207, -0.01975700818002224, 0.011054999195039272, 0.02217761240899563, 0.007451137062162161, 0.025828804820775986, 0.0017934791976585984, 0.003563293255865574, -0.02842520922422409, 0.022677961736917496, 0.0017030446324497461, -0.0005138714914210141, 0.016700824722647667, -0.011480971239507198, -0.013340375386178493, 0.03927060216665268, 0.021812492981553078, -0.0031829606741666794, -0.011906944215297699, 0.010811585932970047, 0.010358568280935287, -0.008093476295471191, -0.019161999225616455, -0.6287623643875122, -0.008025861345231533, 0.00945253111422062, -0.015970585867762566, -0.005088004283607006, 0.00987850409001112, 0.02274557575583458, 0.0007733428501524031, -0.011068521998822689, 0.02961522713303566, 0.019121428951621056, 0.010831871069967747, -0.009628329426050186, -0.018134254962205887, 0.0002808121789712459, -0.014374879188835621, -0.00955395307391882, -0.028912033885717392, -0.005202949047088623, -0.005541022401303053, -0.025247318670153618, 0.03048069402575493, 0.0061495546251535416, -0.014009760692715645, -0.00013871572446078062, -0.016836054623126984, 0.02507152035832405, -0.0245441272854805, 0.007505228742957115, 0.008242228999733925, -0.02175840176641941, 0.007342953700572252, 0.01528091635555029, 0.022096475586295128, 0.05117078498005867, -0.01444249413907528, -0.009560714475810528, 0.01194075122475624, 0.03048069402575493, 0.036133281886577606, -0.015578420832753181, -0.014794090762734413, 0.01460476964712143, 0.01429374236613512, 0.007031925953924656, 0.010439706034958363, 0.012116549536585808, 0.001283833640627563, -0.011210513301193714, -0.012157117947936058, -0.006413251627236605, -0.00620702700689435, -0.005557926371693611, 0.003989265765994787, 0.009310540743172169, -0.0018188346875831485, 0.014212604612112045, -0.01779618300497532, 0.01413146685808897, -0.014591246843338013, 0.004516660235822201, 0.019297227263450623, -0.0316707119345665, -0.025341980159282684, -0.035159628838300705, 0.01075749471783638, 0.0162004753947258, -0.023651612922549248, 0.013522935099899769, -0.002954761264845729, 0.03951401636004448, -0.005395650863647461, 0.008695246651768684, -0.0161193385720253, -0.017458109185099602, 0.014834659174084663, 0.028154749423265457, -0.018783356994390488, -0.012535760179162025, 0.008458595722913742, 0.004087307024747133, -0.013306567445397377, -0.015416145324707031, -0.024719925597310066, 0.022759098559617996, 0.011764952912926674, -0.014794090762734413, -0.014699430204927921, -0.007728357333689928, -0.012407292611896992, 0.01409089844673872, 0.021866586059331894, 0.0015424597077071667, -0.037972401827573776, -0.00283305486664176, 0.0319141261279583, 0.008032623678445816, -0.012245017103850842, -0.018823925405740738, -0.01496988907456398, -0.013157815672457218, -0.014307265169918537, 0.010885962285101414, 0.01085891667753458, 0.025490732863545418, 0.025585392490029335, -0.0037492336705327034, -0.004641747567802668, 0.03234685957431793, -0.018458805978298187, -0.011014430783689022, -0.006007563788443804, -0.0170118510723114, -0.006146173924207687, 0.014036806300282478, -0.019811099395155907, 0.004361146595329046, -0.011440402828156948, 0.018499374389648438, -0.013597310520708561, 0.0050643389113247395, -0.0159976314753294, 0.010527604259550571, -0.004922348074615002, -0.002300589345395565, 0.016917191445827484, 0.007390283979475498, 0.00899951346218586, 0.023543428629636765, -0.007214485667645931, -0.01008134800940752, -0.03299596160650253, 0.003941935487091541, -0.009898788295686245, 0.029804548248648643, -0.018026072531938553, 0.033482786267995834, -0.01396919135004282, -0.005148857366293669, -0.048493243753910065, -0.006906839087605476, -0.0018222155049443245, 0.013955668546259403, -0.013333613984286785, -0.002423986094072461, -0.02691064029932022, -0.021988291293382645, 0.011203750967979431, -0.004567371215671301, -0.018391191959381104, -0.016254568472504616, -0.011163182556629181, -0.014523631893098354, 0.021542035043239594, 0.004891921766102314, -0.0018272865563631058, 0.007011641748249531, -0.04459863901138306, -0.009222641587257385, -0.017769135534763336, -0.024273667484521866, 0.026559043675661087, -0.03186003491282463, 0.003130559343844652, -0.005936568137258291, -0.01065607275813818, 0.007004880346357822, -0.0012500262819230556, -0.021663742139935493, -0.038675595074892044, 0.015848878771066666, -0.005632302258163691, -0.003972362261265516, 0.02834407053887844, -0.02319183386862278, 0.02135271392762661, -0.0333746038377285, -0.006267880089581013, 0.007863586768507957, 0.0031153461895883083, 0.0010547889396548271, 0.015470237471163273, -0.004868256393820047, -0.0004462568322196603, 0.0340237021446228, 0.017458109185099602, 0.008296320214867592, 0.02266443893313408, -0.021014640107750893, 0.007917677983641624, 0.025044474750757217, 0.002567667281255126, -0.004300293046981096, 0.0027722015511244535, -0.021203961223363876, 0.0171335581690073, -0.018418237566947937, 0.00013216555817052722, 0.0011883279075846076, 0.01464533805847168, 0.003586958395317197, 0.016633208841085434, -0.002716419519856572, 0.009215880185365677, 0.009290256537497044, -0.021122824400663376, 0.02200181409716606, -0.01417203526943922, 0.03096752054989338, 0.0169307142496109, 0.0012939758598804474, 0.007937963120639324, -0.000382234196877107, -0.005361843854188919, 0.018742786720395088, 0.02626154012978077, 0.017850274220108986, 0.025585392490029335, -0.0004094913601875305, 0.013232192024588585, 0.015618989244103432, -0.004320577718317509, 0.023097172379493713, -0.0006736111827194691, -0.0020639379508793354, 0.032833684235811234, 0.0012990469112992287, 0.027992475777864456, 0.01532148476690054, -0.027018822729587555, 0.009384917095303535, 0.028803851455450058, 0.003854036331176758, 0.015497283078730106, 0.04424704238772392, 0.027059393003582954, 0.029425906017422676, -0.01876983419060707, 0.0332123264670372, -0.011548586189746857, -0.006203646305948496, 0.013286283239722252, 0.013509411364793777, -0.02278614416718483, 0.02785724587738514, -0.0042631053365767, 0.0252337958663702, 0.016389796510338783, -0.010879200883209705, 0.02343524619936943, 0.012941448949277401, -0.003793183248490095, -0.013813678175210953, -0.006971072871237993, 0.008309843018651009, -0.017498677596449852, 0.01409089844673872, 0.018296530470252037, 0.019364843145012856, 0.018837448209524155, 0.009188834577798843, -0.012670990079641342, 0.014347833581268787, 0.006000802386552095, 0.01544319186359644, 0.01372577901929617, -0.00783654022961855, -0.02769497036933899, -6.148709508124739e-05, -0.010487035848200321, -0.001781646627932787, -0.01282650325447321, -0.009526907466351986, 0.005439600441604853, -0.01636275090277195, 0.00649438938125968, -0.00030426602461375296, 0.020433153957128525, -0.0071874395944178104, 0.01532148476690054, -0.02646438404917717, -0.021176915615797043, 0.007768926210701466, 0.026883594691753387, 0.01237348560243845, -0.017322879284620285, 0.001065776334144175, -0.01392862293869257, 0.018634604290127754, 0.011095567606389523, -0.009520146064460278, 0.017268788069486618, -0.011027953587472439, -0.008573540486395359, -0.011704100295901299, 0.019892236217856407, 0.03951401636004448, -0.02040610834956169, 0.014266695827245712, 0.018472328782081604, -0.0007910917047411203, 0.00944576971232891, -0.028857942670583725, -0.02371922694146633, 0.03186003491282463, -0.028749758377671242, -0.018337098881602287, -0.015537852421402931, -0.007681027054786682, -0.02131214551627636, -0.012427576817572117, -0.012420815415680408, -0.01102119218558073, 0.0027299425564706326, -0.023611044511198997, 0.007437614258378744, 0.005561307072639465, -0.0027079677674919367, 0.04124495014548302, 0.009763559326529503, -0.0075119901448488235, -0.0159164946526289, -0.005253660026937723, 0.03951401636004448, 0.09628329426050186, 0.016376273706555367, -0.013042870908975601, 0.017971979454159737, 0.0028398162685334682, -0.029912732541561127, -0.02715405263006687, -0.0024037016555666924, 0.024936292320489883, -0.01294821035116911, -0.010825109668076038, 0.001218754448927939, 0.002241426380351186, -0.003368901088833809, 0.003769518109038472, -0.011109091341495514, 0.002342848340049386, -0.02028440125286579, -0.004722884856164455, 0.005791196599602699, 0.0078973937779665, 0.00063008425058797, 0.016822529956698418, 0.019851667806506157, 0.02229931950569153, 0.006524816155433655, 0.028317024931311607, 0.0161193385720253, 0.003002091543748975, -0.030670015141367912, -0.016809007152915, 0.025801759213209152, 0.016011154279112816, 0.015389099717140198, -0.030913429334759712, 0.028722712770104408, -0.016254568472504616, 0.00015340078971348703, -0.016470935195684433, 0.0066837104968726635, 0.011602678336203098, 0.038756731897592545, 0.004479472059756517, -0.014428971335291862, 0.010405898094177246, -0.030291372910141945, -0.007985292933881283, 0.025409594178199768, -0.028127703815698624, -0.0007091088918969035, 0.00742409098893404, 0.011508017778396606, -0.01852641999721527, 0.009236164391040802, 0.011210513301193714, -0.01628161408007145, 0.0020199883729219437, -0.006910219788551331, -0.04343566671013832, -0.025139136239886284, -0.006369302049279213, -0.014875228516757488, -0.0003450461372267455, -0.010108393616974354, -0.0245441272854805, 0.002711348468437791, 0.012069218792021275, -0.002072389703243971, -0.020257355645298958, 0.013002301566302776, 0.015537852421402931, -0.045464105904102325, -0.04081221669912338, 0.0027299425564706326, 0.030075006186962128, 0.010825109668076038, -0.010574935004115105, 0.006274641491472721, 0.005304371006786823, 0.016065247356891632, 0.00965537503361702, -0.014036806300282478, 0.005402412265539169, -0.03621441870927811, -0.004496376030147076, -0.027316328138113022, -0.03153548389673233, -0.00037800829159095883, -0.008235467597842216, 0.0028060090262442827, 0.0029632130172103643, -0.017282310873270035, -0.0038472749292850494, 0.005956852808594704, -0.0036275272723287344, 0.031562529504299164, 0.026193924248218536, -0.0056796325370669365, 0.018918585032224655, -0.036593060940504074, 0.0156730804592371, -0.011933989822864532, -0.016024677082896233, -0.0169307142496109, 0.02078475058078766, 0.008330128155648708, -0.006842604838311672, -0.002278614556416869, -0.00352272461168468, -0.0081002376973629, 0.003813467686995864, -0.004107591230422258, 0.00362414657138288, -0.011109091341495514, 0.014036806300282478, -0.028560437262058258, 0.007052210625261068, 0.02666722796857357, 0.015267393551766872, 0.0048209261149168015, -0.019581209868192673, -0.019121428951621056, 0.025017429143190384, 0.0037221878301352262, -0.005044054705649614, 0.002758678747341037, 0.031102750450372696, -0.024963337928056717, -0.01739049330353737, 0.015105118043720722, -0.010061063803732395, 0.0021569081582129, -0.021812492981553078, -0.024733448401093483, -0.017336402088403702, 0.007701311260461807, -0.011758191511034966, 0.013306567445397377, -0.017687998712062836, -0.012123310938477516, -0.011589155532419682, 0.006528196856379509, 0.013691971078515053, -0.008134045638144016, 0.010588457807898521, -0.025639483705163002, -0.0242195762693882, 0.01294821035116911, 0.017160603776574135, 0.00470260065048933, -0.02793838270008564, -0.008647916838526726, -0.009925833903253078, 0.004029834643006325, -0.005689774639904499, -0.01065607275813818, -0.0010809896048158407, 0.008316604420542717, 0.05960909649729729, 0.01351617369800806, 0.0029615226667374372, 0.004847972188144922, 0.01315105427056551, 0.015808310359716415, -0.016349228098988533, -0.0034060892648994923, -0.02339467778801918, -0.026329154148697853, 0.0029175730887800455, 0.007173916790634394, 0.00708601763471961, -0.008316604420542717, -0.009567475877702236, 0.002319183200597763, 0.0009981616167351604, 0.02741098962724209, -0.013698732480406761, -0.009939356707036495, -0.03299596160650253, -0.04183996096253395, -0.007180678192526102, 0.04700572043657303, -0.010128677822649479, 0.015132163651287556, -0.025991080328822136, 0.009526907466351986, 0.020054511725902557, 0.006991357076913118, 0.020068034529685974, 0.029101355001330376, 0.03945992514491081, 0.0031812703236937523, -0.002031821059063077, 0.00945253111422062, -0.017660953104496002, -0.0341048426926136, -0.00031377433333545923, -0.031643666326999664, -0.013374182395637035, 0.007004880346357822, 0.023827411234378815, 0.008106999099254608, -0.008316604420542717, 0.005601875483989716, 0.010946815833449364, 0.024273667484521866, -0.013015824370086193, -0.013955668546259403, 0.004408476874232292, -0.021163392812013626, 0.006950788665562868, -0.024855153635144234, -0.03618737310171127, -0.0006579752662219107, -0.01133221946656704, -0.012055695988237858, 0.016754915937781334, 0.011508017778396606, -0.03104865737259388, -0.008702008053660393, 0.02192067727446556, 0.011453925631940365, 0.037323299795389175, 0.007119825109839439, 0.028479300439357758, 0.014834659174084663, 0.00448961416259408, -0.016132861375808716, -0.018174823373556137, -0.002096054842695594, -0.014307265169918537, 0.004283389542251825, 0.027099961414933205, -0.006382825318723917, -0.001528936787508428, 0.006088701542466879, -0.019256658852100372, 0.016389796510338783, -0.03326641768217087, 0.015226824209094048, -0.018053118139505386, -0.010270669125020504, -0.038188766688108444, -0.005882476456463337, -0.015199778601527214, 0.02167726494371891, 0.014253173023462296, 0.014388402923941612, -0.007234769873321056, -0.010973861441016197, 0.01247490756213665, 0.0343482531607151, -0.004256343934684992, 0.025747667998075485, 0.0010150652378797531, -0.013475604355335236, -0.011399834416806698, -0.004381430801004171, -0.00459103612229228, -0.027992475777864456, 0.012332916259765625, 0.014672384597361088, -0.0244224201887846, 0.003032518085092306, 0.008323366753757, 0.026883594691753387, -0.007369999308139086, 0.003816848387941718, -0.01059521920979023, 0.025531301274895668, -0.015064549632370472, -0.010777778923511505, -0.007606650702655315, -0.019905759021639824, 0.013529696501791477, -0.028803851455450058, -0.019648823887109756, -0.012698035687208176, 0.007018403150141239, 0.008384219370782375, 0.018661649897694588, -0.0029006695840507746, 0.008985989727079868, -0.0036004814319312572, 0.011609439738094807, -0.01349588856101036, 0.016633208841085434, 0.007924439385533333, 0.00045766681432724, -0.03518667444586754, -0.024963337928056717, -0.001884759054519236, -0.009763559326529503, 0.012495191767811775, 0.002011536620557308, 6.983328057685867e-05, -0.012812980450689793, 0.024679355323314667, -0.013955668546259403, -0.00971622858196497, 0.021988291293382645, 0.01023009978234768, -0.03586282208561897, 0.03618737310171127, 0.010358568280935287, -0.00224480708129704, 0.031319115310907364, -0.007092779502272606, -0.028235888108611107, -0.017742089927196503, 0.007255054544657469, -0.0026978254318237305, 0.0030375891365110874, -0.00478711910545826, 0.016254568472504616, 0.006964311469346285, 0.001954064005985856, 0.0025304791051894426, -0.028776805847883224, -0.0034787750337272882, -0.011886660009622574, -0.001321866875514388, 0.00039110862417146564, -0.007478183135390282, 0.011190228164196014, -0.016944237053394318, 0.026396768167614937, -0.009425485506653786, -0.039243556559085846, -0.03299596160650253, -0.016809007152915, -0.004597797989845276, -0.0078973937779665, -0.0005164070753380656, 0.0007855980074964464, -0.026978254318237305, -0.01023009978234768, 0.02307012677192688, -0.005280706100165844, 0.001331163919530809, 0.013610834255814552, -0.006453820504248142, 0.0046890778467059135, 0.013245714828372002, -0.008296320214867592, -0.039000142365694046, -0.024598218500614166, -0.010034017264842987, -0.026410290971398354, 0.010716925375163555, 0.007464659865945578, 0.039703335613012314, 0.022921374067664146, -0.032211631536483765, -0.009439008310437202, -0.014726475812494755, -0.0497373528778553, -0.014699430204927921, -0.030291372910141945, 0.0338614284992218, 0.038513317704200745, 0.030453648418188095, 0.017769135534763336, 0.02143385075032711, 0.00017389649292454123, 0.015402622520923615, -0.032833684235811234, -0.004557229112833738, -0.015118640847504139, -0.014307265169918537, -0.011521540582180023, -0.026653705164790154, -0.03664715215563774, 0.0020554859656840563, 0.014996934682130814, -0.014104421250522137, 0.012461384758353233, 0.02246159501373768, -0.01856699027121067, 0.004935871344059706, -0.005628921557217836, 0.006991357076913118, 0.02601812593638897, 0.01079806312918663, 0.01959473267197609, -0.02175840176641941, 0.007532274816185236, 0.009175310842692852, -0.005652586929500103, -0.021379759535193443, 0.004256343934684992, 0.027884291484951973, -0.014794090762734413, 0.006335495039820671, 0.01372577901929617, -0.010940054431557655, -0.00366133451461792, -0.02426014468073845, 0.018174823373556137, -0.00176136230584234, 0.013590549118816853, 0.03821581229567528, -0.021812492981553078, 0.002569357631728053, -0.017160603776574135, 0.013407989405095577, 0.02028440125286579, -0.002449341583997011, 0.017079466953873634, -0.01575421914458275, 0.00488854106515646, -0.0343482531607151, 0.0050474354065954685, 0.009411962702870369, -0.01901324652135372, -0.014929319731891155, -0.0010801444295793772, -0.03437529876828194, -0.012596613727509975, 0.0035700546577572823, 0.0011291650589555502, -0.008052907884120941, 0.002058866899460554, -0.005608637351542711, -0.0037255685310810804, 0.0014452636241912842, 4.1625284211477265e-05, -0.011846090666949749, 0.0026251396629959345, -0.023448769003152847, -0.0009998519672080874, -0.06106957420706749, 0.006142793223261833, 0.023218879476189613, -0.028749758377671242, 0.0011688886443153024, 0.19516299664974213, 0.0051454766653478146, 0.02810065820813179, 0.013367420993745327, 0.02585585042834282, 0.008668201044201851, 0.01607877016067505, 0.00034694778150878847, -0.013022585771977901, 0.002473006723448634, 0.008702008053660393, 0.001452870317734778, -0.038675595074892044, -0.001454560668207705, 0.012772412039339542, -0.012075981125235558, -0.023651612922549248, -0.005297609604895115, 0.006058274768292904, -0.005294228903949261, -0.0017529104370623827, -0.0164033193141222, -0.011819045059382915, -0.012285586446523666, 0.02102816291153431, 0.01039237529039383, -0.0006495234556496143, 0.020554861053824425, 0.01444249413907528, 0.021460898220539093, 0.0009761868277564645, -0.006061655469238758, 0.016065247356891632, -0.019418934360146523, -0.02212352119386196, -0.008884567767381668, 0.017579814419150352, -0.02642381377518177, 0.007741880137473345, 0.0019439219031482935, 0.010297714732587337, -0.024476511403918266, 0.0121097881346941, -0.03643078729510307, -0.0036782382521778345, -0.020149173215031624, -0.013347136788070202, -0.0014461087994277477, 0.0009254758479073644, 0.014239650219678879, -0.009310540743172169, -0.0008363089873455465, 0.031021611765027046, -0.0014511799672618508, 0.005449742544442415, 0.009641852229833603, -0.003887843806296587, 0.025125613436102867, -0.0016886764205992222, -0.0029649033676832914, -1.530574263597373e-05, 0.0032928346190601587, -0.0019828001968562603, -0.007437614258378744, -0.025098565965890884, 0.021325668320059776, -0.008194898255169392, 0.03553827106952667, 0.005973756313323975, 0.0023090410977602005, -0.0036072428338229656, -0.012238255701959133, -0.03050774149596691, -0.0033638300374150276, -0.016957759857177734, -0.010534366592764854, 0.020013943314552307, 0.02046019956469536, 0.03778307884931564, 0.014307265169918537, 0.006163077428936958, 0.011582393199205399, -0.020771227777004242, -0.012846788391470909, 0.024395374581217766, -0.006930503994226456, 0.022055907174944878, -0.03518667444586754, 0.010723687708377838, -0.007099540904164314, -0.00908065028488636, 0.012096265330910683, 0.014050329104065895, -0.033401649445295334, 0.004482852760702372, 0.005121811758726835, 0.020189741626381874, 0.017079466953873634, -0.016186952590942383, -0.03770194202661514, -0.012339677661657333, 0.027681447565555573, 0.023056603968143463, 0.03526781499385834, -0.012711558490991592, -0.0023529906757175922, 0.0055511645041406155, 0.006541719660162926, 0.018296530470252037, -0.006365921348333359, -0.011399834416806698, -0.045139554888010025, 0.016700824722647667, -0.017363447695970535, -0.006612715311348438, 0.02347581461071968, 0.019743485376238823, -0.008654678240418434, 0.022015336900949478, -0.012177403084933758, 0.029344769194722176, -0.0011528301984071732, 0.01860755868256092, 0.006244215182960033, -0.02270500734448433, -0.02888498827815056, -0.006163077428936958, 0.011548586189746857, -0.028939079493284225, -0.03169775754213333, 0.01922961324453354, -0.01329304464161396, 0.016863100230693817, -0.004969678353518248, -0.01709298975765705, -0.014942842535674572, -0.028560437262058258, -0.0034331351052969694, 0.021217484027147293, -0.002907430985942483, 0.021650219336152077, -0.015253870747983456, 0.0007213640492409468, 0.0008418026845902205, 0.004729646258056164, 0.01901324652135372, -0.006622857414186001, 0.015578420832753181, -0.024273667484521866, -0.006521435454487801, 0.0075593204237520695, -0.0011359264608472586, -0.015767741948366165, 0.0007708072662353516, 0.03713398054242134, -0.01889153942465782, -0.032211631536483765, -0.013888053596019745, -0.0025524538941681385, 0.005000105127692223, -0.052577171474695206, 0.018512897193431854, 0.040758125483989716, 0.018864493817090988, -0.016497980803251266, -0.016673779115080833, -0.17125444114208221, 0.0005252814735285938, 0.00013787054922431707, -0.01521330140531063, -0.004648508969694376, 0.02929067611694336, 0.01116994395852089, -0.009486339055001736, 0.006991357076913118, -0.0025034332647919655, 0.01247490756213665, -0.014929319731891155, -0.03986561298370361, -0.021501466631889343, 0.004729646258056164, -0.023746272549033165, 0.018932107836008072, 0.03145434707403183, 0.06263823062181473, 0.0007551714079454541, 0.00971622858196497, -0.024449465796351433, -0.013901577331125736, -0.0018475709948688745, 0.012184164486825466, 0.03050774149596691, -0.0074443756602704525, 0.01763390749692917, 0.005939949303865433, -0.03096752054989338, 0.013482365757226944, -0.015821833163499832, 0.0004741479060612619, 0.001759671838954091, -0.006244215182960033, -0.010006971657276154, 0.0007657361566089094, -0.011602678336203098, -0.020541338250041008, 0.032211631536483765, 0.04216451197862625, 0.00449975673109293, 0.016511503607034683, 0.020554861053824425, 0.029074309393763542, 0.01091977022588253, 0.020974071696400642, -0.015429668128490448, 0.016308659687638283, 0.00014832969463896006, 0.02499038353562355, -0.016092292964458466, 0.0071874395944178104, 0.0019473026040941477, 0.0045775133185088634, -0.002391868969425559, 0.008810192346572876, 0.028154749423265457, 0.012812980450689793, -0.01644388772547245, 0.009540430270135403, -0.013786631636321545, -0.0032319813035428524, -0.012752127833664417, -0.017850274220108986, -0.02618040144443512, -0.0025287887547165155, 0.032833684235811234, -0.003908128011971712, 0.022677961736917496, 0.02032497152686119, 0.018553465604782104, 0.00664652232080698, 0.024233099073171616, -0.0027789631858468056, 0.0007302384474314749, -0.022055907174944878, 0.02119043841958046, 0.018418237566947937, -0.008330128155648708, -0.007694549858570099, 0.023611044511198997, 0.017160603776574135, 0.006321971770375967, -0.021812492981553078, -0.013901577331125736, -0.00940520130097866, -0.0172552652657032, -0.011027953587472439, -0.0024172246921807528, 0.016430364921689034, -0.02499038353562355, -0.015051026828587055, 0.008377457968890667, 0.004026453942060471, 0.0031204172410070896, 0.016809007152915, 0.004492994863539934, -0.004104210529476404, 0.010412659496068954, -0.0004441438941285014, 0.019662346690893173, -0.04589683935046196, 0.020013943314552307, 0.030372511595487595, 0.016335705295205116, 0.029101355001330376, -0.016335705295205116, 0.020311448723077774, -0.01002049446105957, -0.027221668511629105, 0.0035328667145222425, 0.029588181525468826, 0.00766074238345027, -0.04127199575304985, 0.039243556559085846, -0.013874530792236328, -0.00688317371532321, 0.008884567767381668, -0.02969636395573616, 0.04294884204864502, -0.025531301274895668, -0.006477485876530409, 0.005936568137258291, 0.006247595883905888, -0.02561243809759617, -0.10510025173425674, -0.012806219048798084, 0.030534787103533745, 0.017363447695970535, 0.002297208644449711, -0.005963614210486412, 0.009790604934096336, 0.05206329748034477, 0.016254568472504616, 0.0123126320540905, -0.012954971753060818, -0.0025980938225984573, -0.0004673864459618926, -0.008005577139556408, 0.002662327839061618, -0.011514779180288315, 0.009094174019992352, -0.017620384693145752, -0.0021670502610504627, 0.03921651095151901, -0.010568173602223396, -0.011325458064675331, 0.015037503093481064, 0.01876983419060707, -0.001160436891950667, 0.002082532038912177, -0.033888474106788635, 0.01914847642183304, 0.016809007152915, 0.010459990240633488, 0.03407779708504677, -0.024273667484521866, 0.002589642070233822, -0.02985863946378231, 0.00732266902923584, 0.005300990305840969, -0.02654552087187767, 0.010000210255384445, 0.011413357220590115, -0.028560437262058258, 0.007153632584959269, -0.0021839539986103773, 0.011264604516327381, -0.03218458592891693, -0.018918585032224655, 0.004367907997220755, -0.022353410720825195, 0.029101355001330376, 0.016470935195684433, -0.009019797667860985, -0.0324820876121521, -0.0050474354065954685, -0.05173874646425247, -0.02937181480228901, 0.02192067727446556, 0.034862127155065536, 0.01840471476316452, -0.00030933713424019516, -0.01065607275813818, 0.0027671304997056723, 0.00449975673109293, -0.0058250040747225285, -0.0012246707919985056, 0.009641852229833603, 0.0018695457838475704, 0.026937685906887054, -0.001783336978405714, -0.022028861567378044, -0.023827411234378815, -0.015051026828587055, -0.019540641456842422, -0.004442283883690834, -0.029020218178629875, 0.02004098892211914, -0.04089335352182388, 0.0006178290932439268, -0.004280008841305971, -0.02266443893313408, 0.005598494783043861, 0.018864493817090988, -0.008823715150356293, -0.013746063224971294, 0.008073192089796066, -0.020771227777004242, 0.0026504951529204845, 0.016430364921689034, 0.015808310359716415, -0.028235888108611107, 0.022515686228871346, -0.05668814107775688, 0.018878016620874405, 0.022894328460097313, 0.003992646466940641, 0.011136136949062347, -0.000964354258030653, 0.009391678497195244, -0.0081002376973629, -0.03034546598792076, 0.013888053596019745, 0.013475604355335236, 0.007566081825643778, 0.011251081712543964, -0.05652586743235588, -0.006453820504248142, 0.02601812593638897, 0.009824411943554878, 0.020541338250041008, -0.02078475058078766, 0.003739091567695141, -0.008019099943339825, 0.005946710705757141, 0.00257104798220098, -0.04000084102153778, 0.0028939079493284225, -0.008985989727079868, 0.006041371263563633, -0.04630252718925476, 0.005348320584744215, -3.1720788683742285e-05, -0.016335705295205116, -0.000893358897883445, -0.003766137408092618, -0.008931898511946201, -0.00586895365267992, 0.003837132826447487, 0.01741754077374935, -0.03583577647805214, 0.010669595561921597, -0.01890506222844124, 0.006000802386552095, -0.024774016812443733, -0.04311111569404602, 0.022677961736917496, 0.009837934747338295, -0.015727173537015915, 0.027627356350421906, -0.009256448596715927, -0.041299041360616684, 0.016876623034477234, -0.001763052656315267, 0.004459187854081392, 0.025085043162107468, -0.015145686455070972, -0.03856740891933441, 0.021366236731410027, -0.035403043031692505, -0.02175840176641941, -0.015389099717140198, 0.004574132617563009, -0.009134742431342602, 0.009844696149230003, 0.011568870395421982, 0.055281758308410645, 0.013583787716925144, -0.041867006570100784, -0.013820439577102661, -0.010426182299852371, -0.0067817517556250095, 0.009364631958305836, 0.013509411364793777, 0.00883723795413971, 0.00940520130097866, 0.03726920858025551, -0.010365329682826996, 0.010561412200331688, 0.0049020638689398766, 0.022272273898124695, -0.022961942479014397, -0.04870961233973503, -0.02400320954620838, -0.0014106110902503133, -0.018783356994390488, 0.019811099395155907, -0.026599612087011337, 0.028857942670583725, 0.025085043162107468, 0.010777778923511505, 0.004266486037522554, -0.006230692379176617, -0.014834659174084663, -0.00386079796589911, 0.02246159501373768, 0.012738604098558426, -0.018594035878777504, -0.019094383344054222, 0.011129375547170639, 0.025369025766849518, 0.007329430431127548, -0.01779618300497532, 0.0327255018055439, 0.004634985700249672, 0.00016628984303679317, -0.00649438938125968, 0.009858219884335995, -0.028776805847883224, 0.003563293255865574, 0.004259724635630846, 0.004307054914534092, -0.0004122382088098675, 0.0024324378464370966, 0.01894563063979149, 0.03689056634902954, -0.007464659865945578, 0.005088004283607006, 0.018026072531938553, 0.004070403520017862, -0.01159591693431139, -0.0046586510725319386, -0.019824622198939323, -0.011426880024373531, 0.03148139268159866, 0.0023834172170609236, 0.02052781544625759, -0.015402622520923615, 0.00688317371532321, 0.019256658852100372, -0.020974071696400642, -0.023773320019245148, 0.0030189952813088894, -0.017769135534763336, -0.03042660281062126, -0.006071797572076321, 0.012941448949277401, 0.014685907401144505, 0.01668730191886425, -0.019500071182847023, 0.022475117817521095, -0.01816130056977272, -0.0013260927516967058, -0.012197687290608883, 0.017606861889362335, -0.0321575403213501, -0.019621778279542923, -0.001206076703965664, -0.006453820504248142, -0.005950091406702995, -0.016944237053394318, -0.0032607177272439003, -0.019743485376238823, 0.011413357220590115, 0.019216090440750122, 0.07935258001089096, 0.019946329295635223, -0.013475604355335236, 0.014712953008711338, -0.014712953008711338, -0.008573540486395359, 0.01824243925511837, -0.005909522529691458, -0.005754008889198303, -0.023002512753009796, 0.013833962380886078, -0.01860755868256092, 0.0037019033916294575, -0.007545797619968653, -0.011149659752845764, -0.012758889235556126, 0.013996237888932228, 0.024692878127098083, -0.01730935648083687, 0.016592640429735184, 0.01947302557528019, -0.006345637142658234, 0.016673779115080833, -0.008729054592549801, -0.04032539203763008, -0.014915796928107738, 0.03805353865027428, 0.010777778923511505, -0.006278022658079863, -0.0348350815474987, 0.011974559165537357, 0.015307961963117123, -0.019527118653059006, -0.01583535596728325, -0.00548016931861639, 0.005960233509540558, -0.00991907250136137, -0.03570054844021797, 0.00991907250136137, 0.01906733773648739, 0.009472815319895744, 0.013232192024588585, -0.011913705617189407, -0.014564200304448605, 0.009844696149230003, -0.004425380378961563, -0.026045171543955803, -0.00732266902923584, 0.003864178666844964], "5b9c6817-960a-4fbb-ada8-c91eaea375f9": [-0.0011645285412669182, 0.0009343018755316734, 0.014252289198338985, -0.023374291136860847, -0.011472824960947037, 0.012370291166007519, -0.008358485996723175, -0.020762264728546143, -0.02720526233315468, -0.03804182633757591, 0.015712345018982887, 0.03667553514242172, 0.007025682367384434, -0.01551142055541277, -0.012055507861077785, 0.014855065383017063, 0.022624170407652855, -0.022557195276021957, 0.0049628508277237415, -0.009028236381709576, -0.019904984161257744, -0.018726222217082977, -0.023923486471176147, -0.014252289198338985, -0.019864797592163086, 0.007795895449817181, 0.013475378975272179, -0.018980728462338448, -0.020668499171733856, 0.032201603055000305, -0.008847403340041637, -0.012048810720443726, -0.02578539215028286, -0.0027392792981117964, -0.023749351501464844, 0.016395490616559982, 0.003502794774249196, -0.005314469803124666, 0.007273490075021982, -0.005297726020216942, 0.02028004266321659, 0.008398670703172684, -0.003069131402298808, -0.0007551436428911984, -0.01030745916068554, 0.025437122210860252, 0.000748446153011173, 0.0018753012409433722, -0.0017647924832999706, 0.006285607814788818, -0.014279079623520374, -0.008365183137357235, -0.021498989313840866, 0.02216874063014984, -0.015832901000976562, -0.023735955357551575, 0.011928255669772625, -0.0064731379970908165, 0.012966368347406387, -0.0033939604181796312, -0.0044136554934084415, 0.001455032848753035, -0.01595345512032509, -0.0033152648247778416, -0.01481487974524498, -0.023427870124578476, -0.0030842009000480175, -0.0010682520223781466, -0.026200637221336365, -0.015216730535030365, 0.02549070119857788, 0.028986798599362373, -0.008713453076779842, 0.01998535357415676, -0.008813915774226189, -0.02879926934838295, -0.004745182115584612, -0.015390865504741669, -0.003298521041870117, 0.010870049707591534, 0.008673268370330334, -0.02441910095512867, -0.02656230330467224, -0.019262023270130157, 0.03713096305727959, 0.028986798599362373, 0.015270310454070568, -0.004859039559960365, -0.007815987803041935, 0.01997195929288864, 0.0067845722660422325, 0.008291510865092278, 0.02629440277814865, 0.02032022923231125, 0.0020611570216715336, 0.02684359811246395, 0.005408234894275665, -0.002203478943556547, -0.008767032995820045, -0.016797341406345367, -0.02143201418220997, 0.011151344515383244, -0.012390383519232273, -0.014024574309587479, -0.028879638761281967, 0.00030641083139926195, 0.012832419015467167, -0.008391973562538624, 0.0040854779072105885, 0.011419245041906834, -0.041256628930568695, 0.013575841672718525, -0.021056953817605972, -0.003080852096900344, 0.014305870048701763, -0.017346536740660667, 0.019369183108210564, -0.029415439814329147, 0.003492748597636819, 0.0016668414464220405, -0.004273008089512587, -0.025316566228866577, 0.03817577660083771, -0.02278491109609604, 0.018565481528639793, 0.0016869339160621166, 0.010294063948094845, -0.014359449967741966, 0.006653970573097467, -0.015404260717332363, 0.013877229765057564, 0.00945017859339714, 0.009222463704645634, 0.015297099947929382, -0.02879926934838295, -0.0036333962343633175, -0.00811067782342434, 0.01097051240503788, -0.01123841293156147, -0.03568430244922638, 0.02389669604599476, 0.03099605068564415, -0.002457984257489443, -0.03643442317843437, -0.011044184677302837, 0.028611740097403526, 0.006533415522426367, 0.014399634674191475, 0.014185314066708088, 0.01261809840798378, 0.014466609805822372, -0.023414475843310356, -0.017949312925338745, 0.03096926026046276, 0.014640744775533676, -0.00972477626055479, 0.003134432015940547, 0.012865906581282616, -0.02305280975997448, -0.011539800092577934, -0.018753012642264366, 0.0014232196845114231, -0.0008932796772569418, -0.0070591699331998825, -0.007226607296615839, 0.025584466755390167, 0.01839134655892849, -0.006674063391983509, -0.0022637564688920975, -0.017708200961351395, -0.014855065383017063, 0.02610687166452408, -0.03257666155695915, 0.01589987613260746, 0.019315602257847786, -0.011827792972326279, 0.02440570667386055, 0.002583562396466732, -0.003293497720733285, -0.027593718841671944, 0.022972440347075462, -0.00277109257876873, -0.006533415522426367, 0.009222463704645634, -0.007394045125693083, -0.025035271421074867, 0.02847778983414173, 0.011385757476091385, -0.0017413512105122209, -0.02302602119743824, 0.014895250089466572, 0.005321167409420013, -0.00515372958034277, 0.007675339933484793, -0.6262434720993042, 0.007126144599169493, 0.022664355114102364, -0.017078636214137077, 0.007420835085213184, 0.010186904110014439, 0.03209444135427475, -0.008204443380236626, 0.006442999467253685, 0.03209444135427475, 0.004577744286507368, 0.014948830008506775, -0.016087405383586884, -0.018043076619505882, -0.0033889373298734426, -0.028343839570879936, -0.005116893444210291, -0.020092513412237167, 0.007521297316998243, 0.0005090103368274868, -0.028638528659939766, 0.017734991386532784, -0.003383914241567254, -0.010327551513910294, -0.007119447458535433, -0.015471234917640686, 0.02144540846347809, -0.021177509799599648, 0.001677724882028997, 0.014774695038795471, -0.023735955357551575, 0.03520208224654198, 0.010206996463239193, 0.020480968058109283, 0.03887231647968292, -0.0018133493140339851, -0.013254361227154732, 0.014747904613614082, 0.018190423026680946, 0.05065992474555969, -0.02223571576178074, -0.011867977678775787, 0.013689699582755566, 0.012879300862550735, -0.002049436327069998, 0.003606606274843216, -0.0038678087294101715, 0.015457840636372566, -0.027299027889966965, -0.03048704005777836, -0.0019439506577327847, -0.008793823421001434, -0.00013551981828641146, 0.009376506321132183, -0.0029787151142954826, -0.0032851260621100664, 0.022959046065807343, -0.030085189267992973, -0.004202683921903372, 0.001007137238048017, 0.023106390610337257, 0.010803074575960636, -0.023414475843310356, -0.038524046540260315, -0.04227465018630028, 0.028692109510302544, 0.0055086975917220116, -0.0040419441647827625, 0.006540113128721714, -0.008820613846182823, 0.03447875380516052, 0.001518659177236259, -0.0015914945397526026, -0.01835116185247898, -0.0024864485021680593, 0.018712827935814857, 0.01918165199458599, -0.008599596098065376, -0.019128073006868362, 0.008050400763750076, 5.337073889677413e-05, -0.011486220173537731, -0.010662427172064781, -0.009764961898326874, 0.005739761516451836, -0.002258733380585909, -0.01414512936025858, -0.005304423626512289, 0.012363593094050884, 0.012008626013994217, 0.013636118732392788, 0.028638528659939766, -0.009088513441383839, -0.02794198878109455, -0.001074949512258172, 0.014346054755151272, -7.456206367351115e-05, 0.002836393192410469, -0.012531030923128128, -0.018793197348713875, -0.03244271129369736, -0.03683627396821976, 0.017708200961351395, -0.005940686445683241, 0.022369664162397385, 0.013354823924601078, 0.0010037884349003434, -0.01675715669989586, 0.025664838030934334, -0.022959046065807343, -0.0035195385571569204, -0.0006693318719044328, -0.027071313932538033, -0.020360413938760757, 0.020400598645210266, -0.023762745782732964, 0.010863352566957474, -0.007045774720609188, 0.002350824186578393, -0.022985834628343582, -0.001693631405942142, -0.009798449464142323, 0.016288330778479576, -0.006998892407864332, 0.012531030923128128, 0.0060043130069971085, 0.00263546803034842, -0.00012945019989274442, 0.017118820920586586, 0.0004884992376901209, 0.0009669521823525429, -0.03640763461589813, 0.004082128871232271, 0.0018200468039140105, 0.02987086959183216, -0.0013428496895357966, 0.028718899935483932, -0.0042763566598296165, -0.007655247580260038, -0.0450340211391449, 0.005729714874178171, 0.0010816470021381974, 0.008767032995820045, -0.019328998401761055, -0.014279079623520374, -0.012591307982802391, -0.01865924708545208, 0.012142575345933437, -0.01508278027176857, -0.02306620590388775, -0.015792716294527054, -0.011077672243118286, -0.011111159808933735, 0.03123716078698635, -0.008023610338568687, 0.00713284220546484, -0.0038544137496501207, -0.03876515477895737, -0.00444714305922389, -0.018002891913056374, -0.013689699582755566, 0.0025517491158097982, -0.022275900468230247, -0.006205237936228514, -0.004524164367467165, -0.011044184677302837, -0.017962707206606865, 0.008713453076779842, -0.020976584404706955, -0.033889371901750565, 0.00554553372785449, 0.00466146320104599, 0.02439231052994728, 0.03707738593220711, -0.019931772723793983, 0.02737939916551113, -0.014640744775533676, -0.020132698118686676, 0.007420835085213184, -0.012276525609195232, 0.02191423438489437, 0.013823648914694786, -0.0008840705850161612, 0.0018853475339710712, 0.030353089794516563, 0.008485738188028336, 0.012263130396604538, 0.014948830008506775, -0.01438623946160078, -0.00384101876989007, 0.02632119320333004, 0.003290149150416255, 0.00036145595367997885, 0.00047761580208316445, -0.013770068995654583, 0.010334249585866928, -0.03155864030122757, 0.003576467512175441, -0.015042594633996487, 0.02992445044219494, 0.009255951270461082, 0.011579984799027443, -0.014747904613614082, -0.003218150930479169, 0.0005981708527542651, -0.020186278969049454, 0.01398438960313797, -0.026816807687282562, 0.020655103027820587, 0.006664016749709845, -0.003109316574409604, -0.007394045125693083, -0.0012206202372908592, -0.01262479554861784, 0.01615438051521778, 0.03182654082775116, 0.014922039583325386, 0.0038343213964253664, -0.0011846211273223162, -0.0019489738624542952, 0.023173365741968155, -0.00030410857289098203, 0.04031897708773613, 0.0040017589926719666, 0.0063324905931949615, 0.02445928566157818, -0.005779946222901344, 0.028183098882436752, 0.012591307982802391, -0.028424208983778954, 0.0025651443284004927, 0.03348752111196518, 0.02687038853764534, 0.01548463013023138, 0.03930095583200455, 0.02492811158299446, 0.04382846876978874, -0.013535656966269016, 0.032201603055000305, -0.008867495693266392, -0.01398438960313797, -0.00023838930064812303, 0.02224911004304886, -0.019851403310894966, 0.03871157765388489, 0.007313674781471491, 0.01892714761197567, 0.0028229982126504183, -0.01805647276341915, 0.03889910504221916, 0.01151970773935318, 0.00783608015626669, -0.022436639294028282, -0.01591327041387558, 0.02740618772804737, -0.016395490616559982, 0.027004338800907135, 0.009503758512437344, 0.006379372905939817, 0.01151301059871912, 0.011044184677302837, -0.023173365741968155, 0.012798931449651718, 0.001992507604882121, 0.018525296822190285, -0.009845331311225891, -0.009409993886947632, -0.011861280538141727, -0.0007421672344207764, -0.017467090860009193, -0.0056928787380456924, -0.023749351501464844, 0.010314157232642174, 0.00932292640209198, 0.000406036211643368, 0.003449214855208993, 0.0020544594153761864, 0.012631493620574474, -0.007755710277706385, 0.01493543479591608, -0.02716507762670517, -0.02492811158299446, 0.026723042130470276, 0.023695770651102066, 0.0014257312286645174, -0.022878674790263176, -0.012330105528235435, -0.02005232870578766, 0.005870362743735313, 0.001815023715607822, 0.00499968696385622, -0.003196384059265256, -0.02275812067091465, -0.010555267333984375, -0.017480487003922462, 0.02629440277814865, 0.04878462105989456, -0.01493543479591608, -0.012959671206772327, 0.01785554736852646, 0.007052472326904535, 0.017734991386532784, -0.02029343880712986, -0.02195441909134388, 0.026414956897497177, -0.022289294749498367, -0.02716507762670517, -0.03461270406842232, 0.0069787995889782906, -0.015524815768003464, 0.006737689487636089, -0.018860172480344772, -0.008666571229696274, -0.004105570260435343, -0.0020912957843393087, 0.020092513412237167, 0.00822453573346138, 0.009088513441383839, 0.03351431339979172, 0.010113231837749481, 0.003918040078133345, -0.022329479455947876, 0.009738171473145485, 0.03509492427110672, 0.062367163598537445, 0.021525779739022255, 0.0051403348334133625, 0.009590825997292995, -0.007126144599169493, -0.02409762144088745, -0.03206765279173851, 0.002402729820460081, 0.03300530090928078, 0.0010983907850459218, -0.01757425256073475, 0.008700058795511723, 0.012142575345933437, -0.009456876665353775, 0.0030322952661663294, -0.00893447082489729, -0.007025682367384434, -0.023441266268491745, -0.006573600694537163, 0.011620170436799526, 0.02109713852405548, 0.003951527643948793, 0.024807557463645935, 0.019020913168787956, 0.018592271953821182, -0.005900501273572445, 0.0329517237842083, 0.016288330778479576, -0.0066908071748912334, -0.021003374829888344, -0.020199673250317574, 0.016368700191378593, 0.004524164367467165, 0.010608847253024578, -0.020119303837418556, 0.01647586189210415, 0.0014232196845114231, -0.015256915241479874, -0.009885516948997974, -0.00774231506511569, 0.010756191797554493, 0.030620990321040154, 0.005224053282290697, -0.0058268290013074875, 0.0032014071475714445, -0.028986798599362373, 0.008793823421001434, 0.022356269881129265, -0.016261540353298187, 0.007514600176364183, 0.007126144599169493, 0.0031193627510219812, -0.02632119320333004, 0.015283705666661263, 0.0032148021273314953, -0.008740243501961231, -0.004068734124302864, -0.003606606274843216, -0.03702380508184433, -0.033889371901750565, -0.031183581799268723, -0.017493881285190582, 0.0017212586244568229, -0.003961573820561171, -0.007353859953582287, -0.0030322952661663294, -0.003918040078133345, -0.009631011635065079, -0.03244271129369736, 0.00740743987262249, -0.001520333462394774, -0.03919379785656929, -0.03584504500031471, 0.001876975642517209, 0.02855815924704075, 0.008251325227320194, -0.004440445452928543, 0.008371880277991295, 0.00865317601710558, 0.014747904613614082, 0.01703845150768757, -0.014761299826204777, -0.0044538406655192375, -0.02802235819399357, 0.004216079134494066, -0.016931291669607162, -0.023762745782732964, -0.0017430254956707358, -0.007795895449817181, -0.010233786888420582, 0.002131480723619461, -0.01262479554861784, -0.0002693652641028166, 0.004249566700309515, -0.0039012962952256203, 0.03378221392631531, 0.013401706703007221, 0.008532620966434479, 0.013341428712010384, -0.04369451850652695, 0.014587164856493473, -0.009142093360424042, -0.015725741162896156, -0.024218175560235977, 0.0018652549479156733, -0.00515372958034277, -0.015270310454070568, -0.007139539811760187, -0.007661945186555386, -0.011894768103957176, 0.011814397759735584, 0.005013082176446915, 0.015350679866969585, 0.003109316574409604, 0.011184832081198692, -0.009798449464142323, -0.002677327487617731, 0.023722561076283455, 0.020936399698257446, -0.005997615400701761, -0.003449214855208993, -0.015792716294527054, 0.03613973408937454, -0.006067939102649689, 0.0027543487958610058, 0.014734510332345963, 0.017935916781425476, -0.01453358493745327, -0.01058205682784319, 0.01398438960313797, -0.024311941117048264, 0.00691852206364274, -0.009972584433853626, -0.018753012642264366, -0.007581575307995081, -0.00762176001444459, -0.012082298286259174, 0.007025682367384434, -0.020132698118686676, -0.0026438399218022823, -0.02057473361492157, 0.00960422120988369, 0.003469307441264391, -0.0003696185303851962, 0.029522599652409554, -0.025664838030934334, -0.023990461602807045, 0.01650265045464039, -0.005401537287980318, 0.004169196356087923, -0.027084708213806152, -0.007936542853713036, -0.03212122991681099, -0.012450660578906536, -0.0022553845774382353, -0.01729295589029789, -0.018552087247371674, 0.011446035467088223, 0.05593755841255188, 0.017761781811714172, 0.0014675906859338284, 0.008432158268988132, 0.028102729469537735, 0.019422762095928192, -0.01813684217631817, 0.0028430905658751726, -0.02581218257546425, -0.01703845150768757, 0.023709166795015335, -0.00291006569750607, 0.024753976613283157, -0.007380649913102388, -0.00959752406924963, -0.003556374926120043, 0.02329391986131668, 0.03512171283364296, -0.00784277729690075, -0.006499927956610918, -0.051436834037303925, -0.04326587915420532, -0.0043198904022574425, 0.03970280662178993, -0.006898429710417986, 0.01977103389799595, -0.035791464149951935, 0.0007957472698763013, 0.015444445423781872, 0.0034626098349690437, 0.020909609273076057, 0.028424208983778954, 0.03512171283364296, -0.0044571892358362675, -5.6091601436492056e-05, 0.01670357584953308, -0.006546810735017061, -0.020400598645210266, -0.014600560069084167, -0.0499098040163517, -0.026763228699564934, 0.010910234414041042, 0.00890098325908184, 0.0074744150042533875, -0.015725741162896156, 0.006536764558404684, -0.006808013189584017, 0.02877247892320156, -0.03482702374458313, -0.01944955252110958, 0.0014315915759652853, -0.01398438960313797, -0.012705165892839432, -0.01080977264791727, -0.018525296822190285, 0.007454322651028633, -0.007360557559877634, -0.014573769643902779, 0.015980245545506477, 0.014828274957835674, -0.0350145548582077, -0.0038142288103699684, 0.04610561951994896, 0.014975620433688164, 0.04256933927536011, 0.021311460062861443, 0.03429122269153595, 0.016623206436634064, 0.0006743549602106214, -0.008452250622212887, -0.03043346107006073, 0.01813684217631817, -0.00679796701297164, 0.007313674781471491, 0.03348752111196518, -0.009671196341514587, -0.007970030419528484, 0.024472681805491447, -0.010997302830219269, -0.001186295528896153, -0.03292493149638176, 0.01675715669989586, 0.008827310986816883, -0.007648549973964691, -0.033567894250154495, -0.02053454890847206, -0.014091549441218376, 0.03656837344169617, 0.0045509543269872665, 0.013810254633426666, -0.0007015636074356735, 0.0028631831519305706, 0.01811005175113678, 0.0417388491332531, -0.023133181035518646, 0.019141467288136482, -0.0328177735209465, -0.0015772623009979725, -0.014520189724862576, 0.008921075612306595, 0.0033152648247778416, -0.02498169243335724, 0.009490364231169224, 0.031049631536006927, -0.0015161476330831647, -0.014801484532654285, 0.009624313563108444, 0.008546016179025173, -0.008921075612306595, 0.007916450500488281, -0.010916932485997677, 0.030835309997200966, 0.003995061386376619, -0.013569144532084465, 0.010950420051813126, -0.005773249082267284, 0.010561964474618435, -0.012243038043379784, -0.008311603218317032, -0.008673268370330334, 0.014426425099372864, 0.01865924708545208, 0.017922522500157356, 0.004333285614848137, -0.015096175484359264, -0.011841188184916973, 0.00542497867718339, -0.006945312023162842, -0.001751397387124598, -0.0057866438291966915, -0.0015956804854795337, -0.038256146013736725, -0.02632119320333004, 0.02116411365568638, 0.0035697699058800936, 0.025664838030934334, -0.006409511901438236, -0.008840706199407578, 0.0035831648856401443, 0.031987279653549194, -0.014667535200715065, -0.01438623946160078, 0.029495809227228165, 0.009309531189501286, -0.027888407930731773, 0.01750727742910385, -0.0008606293122284114, -1.9817811335087754e-05, 0.010736099444329739, -0.010943721979856491, -0.02253040485084057, -0.021311460062861443, -0.004540908150374889, -0.00315285031683743, 0.014037969522178173, -0.007340464740991592, -0.0046480679884552956, 0.01041461993008852, -0.002888298826292157, 0.002290546428412199, -0.02499508671462536, 0.00719311973080039, -0.0018635806627571583, 0.0009384878212586045, 0.014560374431312084, -0.026388168334960938, 0.008030307479202747, -0.011707237921655178, 0.023119784891605377, -0.008311603218317032, -0.025075456127524376, -0.02113732509315014, -0.03857762739062309, 0.010381132364273071, 0.0076083652675151825, -0.0032549870666116476, 0.003616652451455593, -0.018270792439579964, -0.012256433255970478, 0.014908645302057266, -0.008452250622212887, 0.005026476923376322, 0.0004608720191754401, -0.024526260793209076, 0.0018719525542110205, 0.028584949672222137, -0.008023610338568687, -0.050311654806137085, -0.009436783380806446, -0.00987881887704134, -0.02081584371626377, -8.115491800708696e-05, -0.009590825997292995, 0.06434962153434753, 0.019570108503103256, -0.013756673783063889, -0.03260345011949539, -0.02057473361492157, -0.055241018533706665, -0.011894768103957176, -0.026200637221336365, 0.030915681272745132, 0.03463949263095856, 0.04053329676389694, 0.006727643311023712, 0.022610774263739586, -0.0026203985325992107, 0.007152935024350882, -0.034666284918785095, 0.0019221837865188718, -0.014091549441218376, -0.02957618050277233, 0.0009125350043177605, -0.014788090251386166, -0.046212781220674515, -0.004460537806153297, 0.008023610338568687, -0.026254218071699142, 0.019637083634734154, 0.009557339362800121, -0.01951652765274048, 0.00041901262011379004, -0.00542163010686636, 0.009805146604776382, 0.02033362351357937, 0.027084708213806152, 0.030620990321040154, -0.011861280538141727, 0.009034933522343636, -0.004058687947690487, -0.011158042587339878, -0.024204781278967857, 0.022034790366888046, 0.021807074546813965, -0.0014140106504783034, 0.018485112115740776, 0.01809665746986866, -0.018270792439579964, -0.00570292491465807, -0.01725277118384838, -0.0014860087540000677, 0.015216730535030365, 0.024553051218390465, 0.03300530090928078, -0.01125180721282959, 0.0029586225282400846, -0.027312424033880234, -0.0057464586570858955, 0.015966851264238358, 0.011446035467088223, 0.012604703195393085, -0.026187242940068245, 0.003449214855208993, -0.023494845256209373, -0.0028012313414365053, 0.010434712283313274, -0.008204443380236626, -0.009503758512437344, 0.012986461631953716, -0.033862583339214325, -0.02167312428355217, 0.0035061435773968697, -0.019583502784371376, -0.013475378975272179, -0.008860798552632332, 0.005073359701782465, -0.015283705666661263, -0.0009903934551402926, -0.0027543487958610058, -0.005093452055007219, -0.004624627064913511, -0.0031662452965974808, -0.0038678087294101715, -0.045382291078567505, 0.009215766564011574, 0.008720151148736477, -0.015417654998600483, 0.016261540353298187, 0.1967458873987198, 0.0019071144051849842, 0.009122001007199287, 0.0024630073457956314, 0.01731974631547928, 0.003492748597636819, 0.002679001772776246, 0.009363111108541489, -0.002320685191079974, -0.004206032957881689, 0.019663874059915543, 0.007862870581448078, -0.028343839570879936, -0.00020500642131082714, 0.0028832757379859686, -0.01585969142615795, -0.03656837344169617, -0.01702505722641945, -0.004758576862514019, 0.010950420051813126, -5.8812460338231176e-05, -0.013354823924601078, -0.014506794512271881, -0.0028196494095027447, 0.015739135444164276, 0.010494989342987537, 0.003502794774249196, 0.019409367814660072, 0.025852367281913757, 0.021003374829888344, 0.003985015209764242, 0.0051034982316195965, 0.016020430251955986, 0.0036635349970310926, -0.014359449967741966, -0.009316228330135345, 0.01438623946160078, -0.009644406847655773, -0.006844849791377783, 0.00762176001444459, 0.015297099947929382, -0.01868603751063347, 0.014212104491889477, -0.03212122991681099, 0.006851546932011843, -0.022945649921894073, -0.023802930489182472, 0.006838152185082436, 0.01084326021373272, 0.011713935062289238, -0.012658283114433289, 0.0027677437756210566, 0.007862870581448078, -0.0013746628537774086, 0.001100902329199016, 0.01650265045464039, -0.006275561638176441, 0.009664499200880527, -0.002181712072342634, 0.0039113424718379974, -0.012825720943510532, -0.004309844225645065, -0.0013512215809896588, 0.00027669064002111554, -0.025316566228866577, 0.0328177735209465, -0.005850270390510559, 0.031371109187603, 0.007045774720609188, 0.010622242465615273, -0.008150862529873848, 0.005666088778525591, -0.03072815015912056, -0.0023792884312570095, -0.009336321614682674, -0.018739618360996246, 0.030915681272745132, 0.02245003543794155, 0.04602525010704994, 0.009242556057870388, 0.013461983762681484, 0.010441409423947334, -0.02606668695807457, -0.014439819380640984, 0.015565000474452972, -0.0037506024818867445, 0.030299510806798935, -0.02802235819399357, 0.002372591057792306, -0.015404260717332363, -0.011660355143249035, 0.020440783351659775, 0.005622555036097765, -0.02251701056957245, -0.004892527125775814, 0.016395490616559982, 0.028397418558597565, 0.019047703593969345, -0.012256433255970478, -0.034425172954797745, -0.0009058374562300742, 0.05792002007365227, 0.02799556963145733, 0.029710130766034126, -0.006637226790189743, 0.009416691027581692, -0.003018900053575635, 0.007099354639649391, 0.008566108532249928, -0.009182278998196125, 0.004259612876921892, -0.05127609521150589, 0.01978442817926407, -0.014453214593231678, -0.011037487536668777, 0.017882337793707848, 0.018043076619505882, -0.006851546932011843, 0.023762745782732964, 0.009637708775699139, 0.01058205682784319, 0.013810254633426666, 0.008686663582921028, -0.003630047431215644, -0.024767370894551277, -0.025356752797961235, 0.008733545430004597, 0.02030683308839798, -0.02630779705941677, -0.01588647998869419, 0.014908645302057266, -0.015846295282244682, 0.02445928566157818, -0.019101282581686974, -0.013823648914694786, -0.021807074546813965, -0.01758764684200287, -0.0037204637192189693, -0.011854583397507668, -0.0066070882603526115, 0.027566928416490555, 0.001920509384945035, -0.01026057731360197, 0.009363111108541489, -0.015042594633996487, 0.029227908700704575, -0.013810254633426666, 0.012705165892839432, -0.01867264322936535, -0.01438623946160078, 0.00438686553388834, -0.004956153221428394, -0.011767514981329441, -0.007119447458535433, 0.03297851234674454, -0.02636137790977955, -0.04463217034935951, -0.0038376699667423964, 0.01426568441092968, 0.027299027889966965, -0.06584986299276352, 0.02116411365568638, 0.03123716078698635, 0.011003999970853329, -0.01950313337147236, -0.0007584923878312111, -0.16877710819244385, 0.000247807678533718, 0.00987881887704134, -0.00904832873493433, -0.00521065853536129, 0.029763709753751755, 0.002476402325555682, -0.023735955357551575, -0.015323890373110771, 0.001671864534728229, 0.016944685950875282, -0.019409367814660072, -0.03761318698525429, -0.03595220297574997, 0.008338392712175846, -0.010193602181971073, 0.004350029397755861, 0.035818252712488174, 0.04425710812211037, -0.0008639780571684241, 0.02165973000228405, -0.02581218257546425, -0.015498025342822075, -0.005833526607602835, 0.016234751790761948, 0.012939578853547573, 0.0012834093067795038, 0.03072815015912056, -0.010247182101011276, -0.03600578382611275, 0.012323408387601376, -0.011318782344460487, 0.029254699125885963, -0.014332659542560577, -0.004015153739601374, -0.012658283114433289, 0.0026304449420422316, -0.026950757950544357, -0.012269828468561172, 0.023146575316786766, 0.03163900971412659, 0.019677268341183662, 0.020708683878183365, 0.019570108503103256, 0.023709166795015335, 0.010528476908802986, 0.04715043306350708, -0.019101282581686974, 0.027339212596416473, -0.0036333962343633175, 0.009637708775699139, -0.026990942656993866, 0.0012189458357170224, 0.01247075293213129, 0.02271793596446514, 0.016623206436634064, 0.01947634294629097, 0.015524815768003464, 0.025691626593470573, -0.015283705666661263, 0.014841670170426369, -0.010662427172064781, 0.007983425632119179, -0.005491953808814287, -0.004058687947690487, -0.025410331785678864, -0.004031897522509098, 0.025289777666330338, -0.0016852595144882798, 0.011050882749259472, 0.007146237418055534, 0.004011805169284344, 0.01548463013023138, 0.006489881779998541, 0.028156308457255363, 0.001602377975359559, -0.02574520744383335, 0.0024864485021680593, 0.013220873661339283, 0.0010841585462912917, 0.002699094358831644, 0.01725277118384838, 0.013535656966269016, -0.0038510651793330908, -0.010220391675829887, -0.0016911198617890477, -0.0037573000881820917, 0.0025517491158097982, -0.0043165418319404125, 0.000885744986589998, 0.026964152231812477, -0.015698950737714767, -0.01194165088236332, 0.008418763056397438, 0.00658029830083251, 0.004011805169284344, 0.024057436734437943, -0.0034760048147290945, -0.011861280538141727, -0.013495471328496933, -0.0004499885835684836, 0.011874675750732422, -0.03075494058430195, 0.031987279653549194, 0.037720344960689545, 0.02056133933365345, 0.007548087742179632, 0.0030222488567233086, 0.03019235096871853, -0.01782875694334507, -0.024780767038464546, -0.001054856926202774, 0.04589129984378815, 0.008144165389239788, -0.028317049145698547, 0.04251575842499733, -0.01493543479591608, -0.01868603751063347, 0.005615857429802418, -0.030915681272745132, 0.03699701651930809, -0.028933219611644745, -0.023936880752444267, 0.012330105528235435, 0.0036467912141233683, -0.01331463921815157, -0.10994623601436615, -0.02634798176586628, 0.011533102951943874, 0.014573769643902779, -0.006771177053451538, 0.008271417580544949, 0.014721115119755268, 0.03804182633757591, -0.0035798160824924707, 0.020360413938760757, -0.006181796547025442, 0.015310495160520077, 0.0008078864775598049, -0.027017733082175255, 0.005803387612104416, -0.015712345018982887, 0.010916932485997677, -0.00920906849205494, -0.016100801527500153, 0.03713096305727959, 0.005455117207020521, -0.011446035467088223, 0.014801484532654285, -0.0026856993790715933, -0.0016517720650881529, -0.01674376055598259, -0.02169991470873356, 0.02028004266321659, 0.018284186720848083, 0.01140584982931614, 0.012477451004087925, -0.02005232870578766, 0.015055989846587181, -0.02333410643041134, 0.001826744293794036, -0.008700058795511723, -0.02965654991567135, 0.0009686265839263797, 0.00554888229817152, -0.006282259244471788, 0.01892714761197567, -0.007454322651028633, 0.005475210025906563, -0.03102284111082554, -0.007005589548498392, -0.0002465518773533404, -0.03254987299442291, 0.019543318077921867, -0.004135708790272474, -0.011995230801403522, -0.023481450974941254, -0.016234751790761948, -0.04141736775636673, -0.01809665746986866, -0.0003763160202652216, 0.024204781278967857, 0.01695808209478855, 0.010119928978383541, -0.02057473361492157, 0.009215766564011574, -0.007728920318186283, -0.00405199034139514, 0.0010146719869226217, 0.020387204363942146, -0.005254192277789116, 0.02608008310198784, -0.003353775478899479, -0.016248146072030067, -0.020454179495573044, 0.00023818000045139343, -0.017734991386532784, -0.0016835852293297648, -0.014078154228627682, 0.014466609805822372, -0.02853136882185936, 0.012095693498849869, -0.00041503598913550377, -0.02745976857841015, 0.014332659542560577, 0.026790017262101173, -0.011285294778645039, -0.011988532729446888, -0.005806736182421446, -0.029174329712986946, 0.011010697111487389, 0.003807531204074621, 0.020681893453001976, -0.01125180721282959, 0.02523619681596756, -0.03839009627699852, 0.01923523284494877, 0.029442230239510536, 0.006463091820478439, 0.008733545430004597, -0.01360263116657734, 0.014238894917070866, -0.02108374424278736, -0.02388330176472664, 0.02005232870578766, 0.021458804607391357, 0.00017863500397652388, 0.0006797966780140996, -0.052776336669921875, 0.010200299322605133, 0.009195673279464245, 0.002339103491976857, 0.008954563178122044, -0.006466440390795469, 0.01344858855009079, -0.013703093864023685, -0.0012666655238717794, 0.0055522313341498375, -0.02281169965863228, 0.01056866254657507, 0.004684904590249062, 0.004765274468809366, -0.030594199895858765, -0.006134914234280586, 0.009778356179594994, 0.0023776141460984945, 0.015270310454070568, 0.016007035970687866, -0.014841670170426369, -0.0014885204145684838, -0.005036523565649986, 0.020628314465284348, -0.03646121546626091, -0.0031076420564204454, -0.02547730691730976, 0.0037204637192189693, -0.009430086240172386, -0.03190691024065018, 0.0058301775716245174, 0.0052809822373092175, -0.005890455096960068, 0.008519225753843784, -0.019007517024874687, -0.03228197246789932, 0.004366772715002298, 0.0004083384701516479, 0.015765925869345665, 0.017065241932868958, -0.015377470292150974, -0.02382972091436386, 0.03273740038275719, -0.022838490083813667, -0.031183581799268723, -0.012135878205299377, -0.02357521653175354, -0.029281489551067352, 0.0018970681121572852, 0.013743279501795769, 0.04739154130220413, 0.007916450500488281, -0.020079119130969048, -0.02661588229238987, -0.0043165418319404125, -0.004293100442737341, 0.012430568225681782, 0.00920906849205494, 0.015498025342822075, 0.0013127109268680215, 0.035550352185964584, -0.0002350405411561951, 0.025838973000645638, -0.007380649913102388, 0.00487913191318512, -0.03630047291517258, -0.05347287654876709, -0.01619456522166729, 0.01137236226350069, -0.016100801527500153, 0.011137950234115124, -0.024901321157813072, 0.043506987392902374, 0.02107034996151924, 0.01273865345865488, 0.00959752406924963, 0.007119447458535433, -0.01919504813849926, 0.003090898273512721, 0.03021913953125477, 0.026950757950544357, -0.02108374424278736, -0.03072815015912056, 0.021458804607391357, 0.012376988306641579, 0.01896733231842518, -0.02796877920627594, 0.028718899935483932, 0.003573118709027767, -0.010950420051813126, -0.0035094923805445433, 0.010166811756789684, -0.02962975949048996, 0.011439337395131588, 0.01084326021373272, 0.009651103988289833, -0.024874532595276833, 0.012102390639483929, 0.012926183640956879, 0.027486559003591537, 0.005311121232807636, 0.018471717834472656, 0.014667535200715065, -0.008834008127450943, -0.019395973533391953, 0.00603780010715127, -0.03327320143580437, -0.001942276256158948, 0.02006572298705578, 0.023749351501464844, -0.001942276256158948, -0.02001214399933815, 0.0025249591562896967, 0.006288956850767136, -0.03070135973393917, -0.009302834048867226, -0.0006178448093123734, -0.01695808209478855, -0.026937363669276237, -0.0018434880767017603, 0.00013457797467708588, 0.008760335855185986, 0.016944685950875282, -0.00862638559192419, 0.02168652042746544, -0.011298689991235733, 0.012604703195393085, -0.022074975073337555, 0.007996819913387299, -0.013957599177956581, -0.015471234917640686, 0.0018284186953678727, -0.004400260280817747, -0.01014671940356493, -0.017935916781425476, -0.019422762095928192, -0.015270310454070568, 0.0010891816345974803, -0.0038544137496501207, 0.08095943182706833, 0.03857762739062309, -0.00691852206364274, 0.004380167927592993, -0.02554428204894066, 0.0008505830774083734, 0.02470039576292038, 0.0016517720650881529, 0.0015010782517492771, -0.007427532691508532, 0.019355788826942444, -0.011285294778645039, -0.00609807763248682, -0.005321167409420013, -0.02005232870578766, -0.007561482489109039, 0.01084995735436678, 0.018793197348713875, -0.010756191797554493, 0.01097720954567194, 0.03260345011949539, -0.008278115652501583, 0.023454660549759865, -0.028424208983778954, -0.02855815924704075, -0.01112455502152443, 0.032228391617536545, 0.008572805672883987, 0.002859834348782897, -0.022959046065807343, 0.016569625586271286, 0.001218108576722443, -0.035255663096904755, -0.014131734147667885, -0.02823667973279953, 0.01979782246053219, -0.02053454890847206, -0.01978442817926407, 0.00356642110273242, 0.01249084621667862, 0.01860566809773445, 0.025852367281913757, -0.01620796136558056, -0.020668499171733856, -0.010240484029054642, -0.0029686689376831055, -0.017949312925338745, -0.009222463704645634, 0.009249254129827023], "94bd416e-81de-4df9-9af5-eeec685ecf1c": [0.005181487649679184, 0.008346805348992348, 0.024386709555983543, -0.03019437938928604, -0.016046784818172455, 0.01155340950936079, -0.0038637518882751465, -0.026987774297595024, -0.013810418546199799, -0.04131427779793739, 0.00670221634209156, 0.017464296892285347, 0.021014956757426262, -0.004906242713332176, -0.009021155536174774, 0.017808353528380394, 0.02975398674607277, 0.0015680365031585097, 0.0032220869325101376, -0.006106998771429062, -0.02219851128757, 0.0062755863182246685, -0.011794249527156353, -0.007644930388778448, -0.01725786365568638, 0.011436430737376213, 0.020285557955503464, -0.0025167716667056084, -0.021001195535063744, 0.042662978172302246, 0.0022174427285790443, -0.006451055407524109, -0.027455691248178482, 0.004534661769866943, -0.01874418556690216, 0.018345080316066742, 0.004682606086134911, -0.002296575577929616, 0.0015276098856702447, -0.00018471521616447717, 0.0073421611450612545, 0.018826760351657867, 0.0010347492061555386, -0.007603643927723169, -0.009626694954931736, 0.03391018509864807, -0.00992946419864893, 0.0035300173331052065, -0.015413721092045307, 0.011890584602952003, -0.003963528200984001, -0.016390841454267502, -0.028019942343235016, 0.0027765340637415648, -0.005756061524152756, -0.013225523754954338, 0.020478229969739914, -1.755224548105616e-05, 0.00988817773759365, -0.011278164573013783, 0.006354719400405884, 0.006839838810265064, -0.01959744468331337, -0.002257009269669652, -0.010658863931894302, -0.024070177227258682, -0.01243419386446476, -0.01530362293124199, -0.0002657834847923368, -0.021372776478528976, 0.03060724586248398, 0.039277464151382446, -0.013920516707003117, 0.011635983362793922, -0.001519868616014719, -0.01562015525996685, -0.016762422397732735, -0.02010664902627468, -0.004692927468568087, 0.008484427817165852, 0.015289860777556896, -0.019900215789675713, -0.023726120591163635, -0.008044036105275154, 0.017588157206773758, 0.03371751680970192, 0.03619471937417984, 0.002731806831434369, -0.019157053902745247, 0.004813347477465868, 0.005635641980916262, 0.019377250224351883, 0.030965065583586693, 0.007445377763360739, 0.0010811968240886927, 0.023781169205904007, 0.004627557005733252, 0.0005909166648052633, 0.011271283961832523, -0.029120923951268196, -0.01874418556690216, -0.004238773137331009, -0.025542737916111946, -0.009413380175828934, -0.022239798679947853, -0.019046954810619354, 0.014932041987776756, -0.00021697049669455737, 0.003956647124141455, 0.007170132827013731, -0.030552197247743607, 0.02455185540020466, -0.0034440034069120884, 0.012943397276103497, 0.00953723955899477, -0.01914329081773758, 0.02310681901872158, -0.018730424344539642, -0.0018837081734091043, -0.018124883994460106, -0.003290898399427533, -0.01246859971433878, 0.03924994170665741, -0.0368553102016449, 0.016390841454267502, -0.003660758724436164, 0.002365386812016368, -0.001372784492559731, 0.01331497821956873, -0.010328569449484348, 0.023519687354564667, -1.103399245039327e-05, 0.01952863484621048, 0.015193524770438671, -0.020684663206338882, -0.002719764830544591, -0.011346976272761822, 0.01041802391409874, -0.01919833943247795, -0.03333217278122902, 0.01745053380727768, 0.04538790509104729, 0.007651811465620995, -0.03404780849814415, -0.0003717958170454949, 0.0326991081237793, -0.001451057381927967, 0.018372604623436928, 0.004400479607284069, 0.01607430912554264, 0.025006011128425598, -0.01860656403005123, -0.012179592624306679, 0.004840871784836054, 0.009317044168710709, -0.0023275406565517187, -0.0005264061037451029, 0.02036813087761402, -0.016900043934583664, -0.005539305973798037, -0.01680370792746544, 0.0022879743482917547, -0.011704794131219387, -0.004369514528661966, 0.0066884541884064674, 0.030359525233507156, 0.0218131672590971, -0.0030982268508523703, -0.01526233647018671, -0.011340094730257988, 0.003819024655967951, 0.029120923951268196, -0.014821944758296013, 0.003284017089754343, 0.02031308226287365, 0.012503005564212799, 0.02029932104051113, -0.001560295233502984, -0.0048752776347100735, -0.015854112803936005, 0.008642693981528282, -0.0037467728834599257, 0.008794078603386879, 0.017656968906521797, -0.029203496873378754, -0.009158778004348278, 0.03319454938173294, 0.015964211896061897, 0.0013581621460616589, -0.012386025860905647, 0.004335109144449234, 0.004104591440409422, -0.0019421976758167148, -0.009667981415987015, -0.6222739219665527, 0.005783585831522942, 0.010748318396508694, -0.008972987532615662, 0.009158778004348278, 0.022707713767886162, 0.027263019233942032, -0.00787888839840889, -0.006045068614184856, 0.028088754042983055, 0.014340265654027462, 0.009131253696978092, 0.005078270565718412, -0.004149318672716618, -0.008807840757071972, -0.03597452491521835, 0.0017607080517336726, -0.019501110538840294, 0.001485462998971343, -0.004355752374976873, -0.03272663429379463, 0.0323963388800621, 0.0026664361357688904, 0.0015499735018238425, 0.00787200778722763, -0.030442100018262863, 0.032644059509038925, -0.024042652919888496, 0.0006666090339422226, 0.015000853687524796, -0.028653007000684738, 0.01142954919487238, 0.0031653176993131638, -6.494062108686194e-05, 0.04522275552153587, -0.013108544051647186, -0.023863743990659714, 0.007782552856951952, 0.026740053668618202, 0.03971785679459572, -0.026850152760744095, 0.0025425758212804794, 0.002305177040398121, 0.006894887890666723, -0.007541713770478964, 0.002432477893307805, 0.013645271770656109, 0.01361086592078209, -0.01438155211508274, -0.02857043407857418, 0.008167896419763565, -0.013659033924341202, -0.0039738500490784645, 0.015468770638108253, 0.016033021733164787, -0.0033579892478883266, 0.02715292200446129, -0.018372604623436928, 0.005756061524152756, 0.017367960885167122, 0.01659727469086647, 0.009055561386048794, -0.02441423386335373, -0.03696540743112564, -0.05989331752061844, 0.011271283961832523, -0.00026922402321361005, -0.02928606979548931, 0.01246859971433878, -9.983008203562349e-05, 0.02272147685289383, -0.001199896214529872, -0.008367449045181274, -0.004262857139110565, -0.0014768615365028381, 0.010156541131436825, 0.0197763554751873, -0.009268876165151596, -0.0069327340461313725, 0.015455007553100586, -0.002890072762966156, -0.001983484486117959, -0.007755028549581766, -0.0023447435814887285, 0.030166855081915855, 0.010122135281562805, -0.017987262457609177, -0.0022810930386185646, -0.009103729389607906, 0.006499222945421934, 0.019487347453832626, 0.02160673402249813, -0.009255114011466503, -0.010307925753295422, 0.011381381191313267, 0.03814895823597908, -0.0031618771608918905, 0.006127642467617989, -0.00019557449559215456, -0.014987091533839703, -0.020450705662369728, -0.028928251937031746, 0.015661442652344704, -0.0015585749642923474, 0.03652501478791237, 0.024689478799700737, -0.016253218054771423, -0.015854112803936005, 0.012461718171834946, -0.02245999313890934, -0.004280060064047575, -0.006760705728083849, -0.01416135672479868, -0.019556159153580666, 0.02694648690521717, -0.024854624643921852, 0.005831753835082054, 0.005817991681396961, 0.006612761877477169, -0.008016510866582394, -0.00992946419864893, -0.01191122829914093, 0.008966106921434402, -0.0031274715438485146, 0.009998274967074394, 0.023684833198785782, 0.007314636372029781, 0.003223807318136096, 0.021703070029616356, -0.0030001706909388304, 0.0045725079253315926, -0.02609322778880596, 0.010514359921216965, -0.003715807804837823, 0.02813004143536091, -0.013672796078026295, 0.03542403504252434, -0.005215893033891916, 0.00619989400729537, -0.05780145525932312, 0.010307925753295422, -0.005969376303255558, 0.008945463225245476, -0.03272663429379463, -0.009420260787010193, -0.01360398530960083, -0.019432298839092255, 0.0055496278218925, -0.009881296195089817, -0.02115258015692234, -0.023726120591163635, -0.009392736479640007, 0.00047565781278535724, 0.027496976777911186, -0.00020826156833209097, 0.008305518887937069, 0.01461551059037447, -0.03567175567150116, -0.011574053205549717, -0.021785642951726913, -0.008181658573448658, 0.0024049533531069756, -0.023079294711351395, -0.014395314268767834, -0.010755199007689953, -0.0025064500514417887, -0.015922924503684044, 0.010225352831184864, -0.02317563071846962, -0.03137793391942978, 0.012172711081802845, -0.0003733010671567172, 0.009612932801246643, 0.029203496873378754, -0.010424905456602573, 0.01416135672479868, -0.009282638318836689, -0.00862893182784319, -0.0008012210601009429, -0.004476172383874655, 0.011140542104840279, 0.01633579283952713, -0.0072733499109745026, 0.003278856398537755, 0.028019942343235016, 0.0014200923033058643, 0.025033535435795784, 0.010369855910539627, -0.024579379707574844, 0.0016334071988239884, 0.00739032868295908, -0.004627557005733252, -0.015716491267085075, 0.0006119901081547141, -0.032121095806360245, 0.016886282712221146, -0.01874418556690216, 0.0024496805854141712, 0.0009280918166041374, 0.02708411030471325, 0.01706519164144993, 0.013989328406751156, -0.008167896419763565, 0.005398243200033903, -0.0008665917557664216, -0.02122139185667038, 0.019735068082809448, -0.02207465097308159, 0.012475480325520039, 0.021703070029616356, 0.0020144495647400618, 0.0015723372343927622, 0.01392739824950695, -0.013081019744277, 0.005683809518814087, 0.023849980905652046, 0.012028207071125507, 0.01361086592078209, -0.0020574566442519426, 0.009268876165151596, 0.015785301104187965, 0.0023413030430674553, 0.03289178013801575, 0.0021090649534016848, 0.005845515988767147, 0.0158128272742033, -0.007039391435682774, 0.026162039488554, 0.014918279834091663, -0.02804746851325035, -0.012908991426229477, 0.023712359368801117, 0.005649404134601355, 0.021042481064796448, 0.0395527109503746, 0.029836559668183327, 0.036222245544195175, -0.011436430737376213, 0.035368986427783966, -0.0017237219726666808, 0.01360398530960083, 0.015083427540957928, 0.032644059509038925, -0.015468770638108253, 0.02980903536081314, -0.0003588937106542289, 0.02434542216360569, 0.002129708416759968, -0.02539135329425335, 0.026671241968870163, 0.016611037775874138, -0.0024273169692605734, -0.022349895909428596, -0.001119903172366321, 0.023739883676171303, -0.021854454651474953, 0.017560632899403572, 0.018400128930807114, 0.008112846873700619, 0.02583174593746662, 0.015867875888943672, -0.01207637507468462, 0.012853942811489105, -0.006647167261689901, 0.0029261985328048468, -0.0038947169668972492, -0.016308266669511795, -0.01914329081773758, -0.0005590914515778422, -0.024882150813937187, 0.0003872783563565463, -0.026451047509908676, 0.021386537700891495, -0.006213656160980463, -0.02200583927333355, -0.005467054434120655, 0.00972991157323122, 0.004799584858119488, -0.011670389212667942, 0.013356264680624008, -0.03327712416648865, -0.01574401557445526, 0.014987091533839703, 0.023643547669053078, 0.005384480580687523, -0.008016510866582394, -0.009110610000789165, -0.016445890069007874, 0.011966276913881302, 0.015372434630990028, -0.0031704786233603954, 0.004483053460717201, 0.000947014894336462, -0.011491479352116585, -0.011071731336414814, 0.002215722342953086, 0.033882662653923035, -0.013383788987994194, -0.004782382398843765, 0.02797865681350231, 0.00024126945936586708, 0.0193910114467144, -0.012310333549976349, -0.028088754042983055, 0.02804746851325035, -0.02179940603673458, -0.02440047077834606, -0.036469966173172, -0.011801130138337612, -0.03000170737504959, 0.00836056750267744, -0.015578867867588997, -0.0024858065880835056, 0.007383447606116533, -0.014959567226469517, 0.01376913208514452, -0.0034663670230656862, -0.012640628032386303, 0.015289860777556896, 0.019046954810619354, 0.005277823191136122, -0.016968855634331703, 0.0028315831441432238, 0.02473076432943344, 0.07349041849374771, 0.026712529361248016, 0.008904176764190197, 0.02102871984243393, 0.004889039788395166, -0.023271966725587845, -0.04054359346628189, -0.011009801179170609, 0.038314107805490494, 0.00585583783686161, -0.031790800392627716, 0.016776183620095253, 0.012551172636449337, -0.00452433992177248, 0.01490451768040657, -0.006230859085917473, -0.0016488897381350398, -0.014849469065666199, -0.0015637357719242573, 0.015193524770438671, 0.0072183008305728436, -0.007658692542463541, 0.01802854984998703, 0.009557883255183697, 0.021703070029616356, 0.026960249990224838, 0.02544640190899372, 0.013321858830749989, 0.010280401445925236, -0.03184584900736809, -0.017753303050994873, 0.019680019468069077, 0.013012208044528961, 0.016115596517920494, -0.029010824859142303, 0.017932213842868805, 0.01125752180814743, -0.015702728182077408, -0.02440047077834606, 0.012289689853787422, 0.009172540158033371, 0.03132288530468941, 0.010424905456602573, -0.0005754341254942119, 0.0134457191452384, -0.019886452704668045, -0.013308096677064896, 0.03258901089429855, -0.019803879782557487, -0.01028728298842907, 0.014835706911981106, 0.01021847128868103, 0.00025653696502558887, 0.025804221630096436, 0.0016987778944894671, -0.02506105974316597, -0.020808523520827293, -0.009619813412427902, -0.04841559752821922, -0.017354197800159454, -0.031598128378391266, -0.022831574082374573, 0.00118011306039989, -0.013218642212450504, -0.009454666636884212, -0.028212614357471466, 0.01211078092455864, -0.020684663206338882, -0.008697742596268654, 0.010961633175611496, -0.0015972813125699759, -0.03958023339509964, -0.026960249990224838, -0.0030707023106515408, 0.02656114473938942, 0.006213656160980463, -0.003261653473600745, 0.009881296195089817, 0.011484598740935326, 0.004789263475686312, 0.0071219648234546185, -0.030221903696656227, 0.019102005288004875, -0.014003090560436249, 0.000657577533274889, -0.014876993373036385, -0.028653007000684738, 0.0006747804000042379, -0.017161527648568153, 0.013700321316719055, -0.0033218632452189922, -0.008415616117417812, -0.0034044368658214808, 0.0005883362609893084, 0.018262507393956184, 0.016514701768755913, 0.019060717895627022, -0.001813176553696394, 0.02512986958026886, -0.042084962129592896, 0.01178048737347126, -0.023450875654816628, -0.03242386505007744, -0.021496636793017387, 0.01473937090486288, 0.009282638318836689, -0.019157053902745247, -0.01979011669754982, -0.006303111091256142, -0.00944090448319912, 0.005800788756459951, 0.0077756717801094055, -0.013425076380372047, -0.011353856883943081, 0.008656456135213375, -0.023313254117965698, 0.0012188194086775184, 0.020547041669487953, 0.025405116379261017, -0.012220879085361958, -5.7683184422785416e-05, -0.0073421611450612545, 0.02603817917406559, -0.003053499385714531, 0.009757435880601406, 0.00973679218441248, 0.012220879085361958, -0.03528641164302826, -0.014959567226469517, -0.0066196429543197155, -0.00690176896750927, -0.0014295538421720266, -0.029120923951268196, -0.016377078369259834, -0.004056423436850309, -0.0033321850933134556, -0.0027902964502573013, -0.0037605350371450186, -0.025006011128425598, -0.015166000463068485, -0.028625482693314552, 0.001257525640539825, -0.0017263023182749748, -0.020147936418652534, 0.015482532791793346, -0.026781341060996056, -0.019322199746966362, 0.00028685692814178765, 0.004851193632930517, 0.019900215789675713, -0.038314107805490494, -0.0038018219638615847, -0.031735751777887344, -0.004455528687685728, -0.0029520029202103615, -0.01717528887093067, -0.008505071513354778, -0.0026526739820837975, 0.05331496149301529, 0.03104763850569725, 0.0035368986427783966, -0.0011009800946339965, 0.01094098947942257, 0.012330977246165276, -0.009427142329514027, 0.0007332699606195092, -0.0201204102486372, -0.019225865602493286, 0.013789775781333447, 0.007954580709338188, 0.01018406543880701, -0.013707201927900314, -0.00704627251252532, 0.0009143295465037227, 2.0092349586775526e-05, 0.011739199981093407, -0.01559263002127409, -0.008092203177511692, -0.029726462438702583, -0.034983642399311066, 0.009592289105057716, 0.02296919748187065, -0.016555987298488617, -0.0007349902298301458, -0.022418707609176636, 0.011216234415769577, 0.0007336999988183379, 0.0069189718924462795, 0.017367960885167122, 0.001030448591336608, 0.039800431579351425, 0.005783585831522942, 0.0038465491961687803, 0.011856179684400558, 0.0022552888840436935, -0.013321858830749989, -0.012681914493441582, -0.049186285585165024, -0.015248574316501617, -0.006547390948981047, 0.020216746255755424, 0.02127644047141075, -0.012289689853787422, -0.0004455528687685728, 0.0087527921423316, 0.019707543775439262, -0.021758118644356728, -0.02168930694460869, 0.003019093768671155, -0.006612761877477169, 0.00030707023688592017, -0.010108373127877712, -0.015386196784675121, -0.0010725954780355096, -0.013425076380372047, -0.022817812860012054, 0.014106307178735733, 0.019542396068572998, -0.025817982852458954, -0.013748488388955593, 0.028735579922795296, -0.002527093281969428, 0.034598298370838165, 0.023616023361682892, 0.032836731523275375, 0.020670901983976364, -0.013418194837868214, -0.006148285698145628, -0.036607589572668076, 0.006186131853610277, -0.010713912546634674, -0.0015172881539911032, 0.0376259945333004, -0.0047514173202216625, 0.0017159807030111551, 0.012626864947378635, -0.016638562083244324, -0.0035042131785303354, -0.034405626356601715, 0.01162222120910883, 0.0071082026697695255, 0.001353001338429749, -0.04921381175518036, -0.027111634612083435, -0.017078952863812447, 0.02707034721970558, 0.016239456832408905, 0.016624798998236656, 0.0011964556761085987, 0.001988645177334547, 0.00756923807784915, 0.04458969458937645, -0.025804221630096436, 0.01886804588139057, -0.0065749152563512325, -0.004259416833519936, -0.017546869814395905, -0.0026475130580365658, -0.005301907192915678, -0.01461551059037447, 0.012461718171834946, 0.02923102118074894, -0.0071770139038562775, -0.0035885069519281387, 0.00823670718818903, 0.005178046878427267, -0.008780316449701786, -0.006791670806705952, -0.01409254502505064, 0.029258545488119125, -0.010768961161375046, -0.022239798679947853, -0.006475138943642378, -0.01933596283197403, 0.02947874180972576, -0.022886622697114944, -0.006244621239602566, -0.009557883255183697, 0.003244450781494379, 0.008064678870141506, 0.0028659887611865997, 0.0036401154939085245, -0.006822635885328054, 0.005415445659309626, 0.00227937288582325, -0.016624798998236656, 0.0021314285695552826, 0.0021400300320237875, -0.01008773036301136, -0.027758460491895676, -0.013920516707003117, -0.002731806831434369, -0.0020884214900434017, 0.015372434630990028, 0.005346634425222874, -0.01745053380727768, 0.0008106825989671052, 0.02069842629134655, -0.016624798998236656, 0.005738858599215746, 0.03013933077454567, 0.012262165546417236, -0.04398415610194206, 0.023616023361682892, 0.002638911595568061, -0.014491650275886059, 0.025542737916111946, -0.01673489809036255, -0.02186821773648262, -0.029891610145568848, 0.005945292301476002, -0.008119728416204453, 0.019707543775439262, -0.01480818260461092, 0.008938581682741642, 0.0160054974257946, 9.773348574526608e-05, 0.000489420082885772, -0.01685875840485096, 0.005556508898735046, -0.004555305000394583, 0.01562015525996685, 0.009296400472521782, -0.02284533716738224, 0.01593668758869171, -0.020024076104164124, 0.01893685758113861, -0.0016488897381350398, -0.04613106697797775, -0.014725608751177788, -0.021579209715127945, -0.003120590467005968, 0.0064407335594296455, -0.0021314285695552826, -0.0022879743482917547, -0.02453809417784214, -0.02708411030471325, 0.02219851128757, -0.0026819186750799417, 0.0018579039024189115, 0.02200583927333355, -0.018716661259531975, 0.003788059577345848, 0.012881467118859291, -0.015234812162816525, -0.05003954470157623, -0.019349725916981697, -0.01816617138683796, -0.03410285711288452, -0.0024617225863039494, -0.0027851355262100697, 0.04888351634144783, 0.01771201752126217, -0.023863743990659714, -0.02402888983488083, -0.013597103767096996, -0.06633405387401581, -0.0015800785040482879, -0.02759331278502941, 0.0391673669219017, 0.0360846221446991, 0.030056755989789963, 0.005522103048861027, 0.021235153079032898, -0.009282638318836689, 0.026464808732271194, -0.03936003893613815, -0.001070875208824873, -0.015482532791793346, -0.02923102118074894, 0.012475480325520039, -0.0238912682980299, -0.050617560744285583, 0.006568034179508686, 0.014560461975634098, 0.0035472202580422163, 0.005153962876647711, 0.00522621488198638, -0.022638903930783272, 0.0001253655063919723, -0.012172711081802845, -0.006640286184847355, 0.03718560189008713, 0.015840351581573486, 0.016844995319843292, -0.02643728442490101, 0.008739029057323933, 0.0016566310077905655, -0.007349042221903801, -0.011897466145455837, 0.005246858112514019, 0.022473756223917007, -0.013810418546199799, 0.011670389212667942, 0.0021916385740041733, -0.02532254159450531, 0.0020884214900434017, -0.017464296892285347, 0.013156712055206299, 0.007892650552093983, 0.012950277887284756, 0.02396007999777794, -0.008381211198866367, 0.021661782637238503, -0.012640628032386303, 0.009261994622647762, 0.014271453954279423, 0.0012790291802957654, 0.025735409930348396, -0.03567175567150116, -0.0027816949877887964, -0.02089109644293785, 0.018771709874272346, 0.01940477453172207, -0.014477888122200966, -0.009117491543293, 0.0036366749554872513, -0.036414917558431625, -0.01194563414901495, 0.007094440516084433, -0.011766724288463593, -0.0005319970077835023, -0.007865126244723797, -0.014147594571113586, -0.008498189970850945, -0.002300016116350889, -0.007679336238652468, -0.018634088337421417, 0.002317219041287899, -0.00856012012809515, 0.006045068614184856, -0.041754670441150665, 0.007521070074290037, 0.02629966102540493, -0.01771201752126217, 0.014959567226469517, 0.1952037662267685, 0.005102354567497969, 0.018056074157357216, 0.014643034897744656, 0.01979011669754982, 0.0005031822947785258, -0.0029107159934937954, 0.012716320343315601, -0.004548423923552036, 0.004056423436850309, 0.010438667610287666, -0.011140542104840279, -0.025212444365024567, -0.002843625145033002, 0.02127644047141075, -0.011243758723139763, -0.044176824390888214, -0.017863402143120766, -0.013418194837868214, 0.006602440029382706, 0.014477888122200966, -0.006468257866799831, -0.0046963682398200035, -0.00470324931666255, 0.03151555359363556, 0.024882150813937187, -0.006127642467617989, 0.01361086592078209, 0.023973841220140457, 0.022927910089492798, -0.011608459055423737, -0.005680369213223457, 0.020615851506590843, -0.018441416323184967, -0.02141406200826168, -0.004169961903244257, 0.01438155211508274, -0.02479957602918148, -0.005952173378318548, 0.009984512813389301, 0.006991223432123661, -0.019501110538840294, 0.00862893182784319, -0.04337861388921738, 0.011532766744494438, -0.025680361315608025, -0.015413721092045307, 0.01025287713855505, 0.008546357974410057, 0.018331319093704224, -0.012344739399850368, 0.0008876651991158724, 0.029726462438702583, 0.004138996824622154, 0.005614998284727335, 0.0021434705704450607, -0.02199207805097103, 0.008339923806488514, -0.009509715251624584, -0.010514359921216965, 0.0002522362628951669, 0.011505241505801678, -0.0003169618430547416, 0.0012222599470987916, -0.027029061689972878, 0.01717528887093067, 0.011333214119076729, 0.028790628537535667, -0.0025649394374340773, 0.009014274924993515, 0.002501289127394557, -0.0031102688517421484, -0.033029403537511826, -0.005074830260127783, -0.012041970156133175, -0.002103904029354453, 0.030166855081915855, 0.019941501319408417, 0.04522275552153587, 0.017656968906521797, 0.00260278582572937, 0.010961633175611496, -0.0477825365960598, -0.011931871995329857, 0.01926715113222599, -0.01171167567372322, 0.020092885941267014, -0.01685875840485096, 0.004496815614402294, -0.017216576263308525, -0.019487347453832626, 0.02797865681350231, 0.002972646150738001, -0.026671241968870163, 0.002060897182673216, 0.01259246002882719, 0.023079294711351395, 0.028157565742731094, -0.0180835984647274, -0.02233613282442093, -0.00872526690363884, 0.05736106261610985, 0.01438155211508274, 0.029533790424466133, -0.005986579228192568, -0.0039050388149917126, -0.0007590741734020412, 0.013094781897962093, 0.004421123303472996, -0.0047617387026548386, -0.008890414610505104, -0.04406672716140747, 0.011140542104840279, -0.005632201209664345, -0.005683809518814087, 0.016487177461385727, 0.03784618899226189, -0.005456732586026192, 0.018702900037169456, -0.003416478866711259, 0.03333217278122902, 0.010046442970633507, 0.0075967623852193356, -0.002822981681674719, -0.015867875888943672, -0.03019437938928604, 0.0009530358947813511, 0.008938581682741642, -0.03079991787672043, -0.04205743968486786, 0.025143632665276527, -0.02285909838974476, 0.008284875191748142, -0.018056074157357216, -0.008766554296016693, -0.01645965315401554, -0.01633579283952713, -0.015854112803936005, -0.006991223432123661, 0.006905209273099899, 0.016129357740283012, 0.003991052974015474, 0.007183894980698824, 0.004913123790174723, -0.005081711336970329, 0.01480818260461092, -0.0020849809516221285, 0.0061964537017047405, -0.029781511053442955, -0.0026526739820837975, 0.008642693981528282, -0.004400479607284069, -0.015771539881825447, -0.008904176764190197, 0.04029587283730507, -0.03443315252661705, -0.05108547583222389, -0.023024246096611023, 0.013480124995112419, 0.0096955057233572, -0.04392910376191139, 0.003925682045519352, 0.05246170237660408, 0.022157223895192146, -0.01673489809036255, 0.005281263962388039, -0.17549622058868408, 0.009034917689859867, 0.007885769940912724, 0.005721655674278736, -0.0034904510248452425, 0.0387820228934288, 0.015289860777556896, -0.013342502526938915, -0.016500938683748245, 0.0013194557977840304, 0.01361086592078209, -0.0012730081798508763, -0.03754341974854469, -0.025418877601623535, 0.00260278582572937, -0.017739541828632355, -0.008697742596268654, 0.032066043466329575, 0.044286925345659256, 0.004276619758456945, 0.00836056750267744, -0.013225523754954338, -0.0029313594568520784, -0.006213656160980463, 0.016569750383496284, 0.022377420216798782, -0.012503005564212799, 0.03600204735994339, -0.010535003617405891, -0.03079991787672043, 0.020877335220575333, -0.01405813917517662, 0.02127644047141075, 0.007672455161809921, -0.002454841509461403, -0.009275756776332855, -0.004094269592314959, -0.02420779876410961, -0.003519695717841387, 0.019046954810619354, 0.02649233303964138, 0.016308266669511795, 0.029781511053442955, 0.008099084720015526, 0.013693439774215221, 0.014546699821949005, 0.03432305529713631, -0.013005327433347702, 0.0056769284419715405, 0.0016996379708871245, 0.012895229272544384, -0.015207287855446339, -0.0017736101290211082, 0.0049956971779465675, 0.019157053902745247, 0.009282638318836689, 0.024717003107070923, 0.01691380701959133, 0.016679847612977028, 0.0031997233163565397, 0.0007345601334236562, -0.025171156972646713, -0.0012618263717740774, -0.001027868129312992, -0.009592289105057716, -0.011188710108399391, 0.0013478404143825173, 0.01862032525241375, 0.0063443975523114204, 0.01312230620533228, 0.007617406081408262, 0.017216576263308525, 0.004390158224850893, 0.001640288275666535, 0.023382063955068588, 0.008154133334755898, -0.03399275988340378, -0.004348871298134327, 0.025597786530852318, -0.004792703781276941, 0.02343711443245411, 0.005783585831522942, 0.003394115250557661, 0.006007222458720207, -0.0019335963297635317, -0.010369855910539627, 0.008505071513354778, -0.006323754321783781, 0.004933767020702362, 0.0026561145205050707, 0.029836559668183327, -0.020258033648133278, 0.002809219527989626, 0.010362975299358368, 0.01533114816993475, 0.006506104022264481, 0.025295017287135124, -0.005652844440191984, -0.0054326485842466354, -0.0003044898039661348, -0.013273690827190876, 0.025295017287135124, -0.04577324539422989, 0.022212272509932518, 0.038369156420230865, 0.008821602910757065, 0.011484598740935326, 0.010658863931894302, 0.016748659312725067, -0.017780829221010208, -0.029065873473882675, 0.013218642212450504, 0.03591947630047798, -0.010342331603169441, -0.02167554572224617, 0.035258885473012924, -0.017656968906521797, -0.02532254159450531, 0.022212272509932518, -0.01789092645049095, 0.03605709969997406, -0.04836054891347885, -0.013851705938577652, -0.007603643927723169, 0.00405298313125968, -0.015207287855446339, -0.10883188247680664, -0.024909675121307373, 0.037460848689079285, 0.018799234181642532, -0.008511952124536037, 0.0037674163468182087, 0.011938752606511116, 0.0308549664914608, 0.004809906706213951, 0.021771881729364395, -0.00039050387567840517, -0.003117149928584695, 0.00872526690363884, -0.012220879085361958, 0.0175055842846632, 0.004132115747779608, 0.0058420756831765175, -0.013184236362576485, 0.008422497659921646, 0.02734559215605259, -0.0005350075080059469, -0.012152067385613918, 0.007665574084967375, 0.011333214119076729, -0.00520901195704937, -0.023478399962186813, -0.024372946470975876, 0.017684493213891983, 0.020464466884732246, 0.012158948928117752, 0.03696540743112564, -0.022872861474752426, 0.029203496873378754, -0.028653007000684738, -0.015647679567337036, -0.00040577136678621173, -0.028432810679078102, -0.01822122000157833, 0.01530362293124199, -0.030744869261980057, -0.0009186302777379751, -0.014519174583256245, 0.011085493490099907, -0.043901581317186356, -0.017615681514143944, 0.0016308267368003726, -0.013239285908639431, 0.029974183067679405, 0.023340778425335884, -0.005023221485316753, -0.016377078369259834, -0.024648191407322884, -0.0410115085542202, -0.03561670705676079, 0.024125225841999054, 0.021964551880955696, 0.00504386518150568, 0.0034835697151720524, -0.013789775781333447, 0.0005853257607668638, -0.008140371181070805, -0.0013891272246837616, 0.0014054698403924704, 0.019280914217233658, 0.0053638373501598835, 0.0197763554751873, 0.0015516937710344791, -0.010569408535957336, -0.007383447606116533, -0.0038327870424836874, -0.010762080550193787, -0.0033235836308449507, -0.022611377760767937, 0.01593668758869171, -0.024978484958410263, -0.003468087175861001, -0.010638220235705376, -0.025295017287135124, 0.005945292301476002, 0.008608288131654263, -0.010892821475863457, -0.020533278584480286, 0.002714604139328003, -0.020092885941267014, 0.018372604623436928, 0.01077584270387888, 0.025143632665276527, -0.020725950598716736, 0.009200064465403557, -0.040708739310503006, 0.029148448258638382, 0.026588669046759605, 0.017780829221010208, 0.013101663440465927, -0.0003631944127846509, 0.023395827040076256, -0.011195591650903225, -0.02394631691277027, 0.021111292764544487, 0.005642523057758808, -0.009523477405309677, -0.0016557708149775863, -0.05221398174762726, -0.002812660066410899, 0.009227589704096317, 4.873234502156265e-05, 0.013197998516261578, -0.02226732298731804, 0.004249094985425472, -0.007355923298746347, -0.0052537391893565655, 0.0011044206330552697, -0.02713915891945362, 0.023739883676171303, -0.019501110538840294, -0.0005737138562835753, -0.037323225289583206, -0.0043763960711658, 0.015468770638108253, 0.011897466145455837, 0.012124543078243732, 0.006836398039013147, -0.018565276637673378, 0.001715120510198176, 0.0030672617722302675, 0.014684322290122509, -0.03366246446967125, 0.01158781535923481, -0.02832271344959736, 0.01480818260461092, -0.018730424344539642, -0.04073626175522804, 0.01361086592078209, 0.008573882281780243, -0.006530188024044037, 0.015716491267085075, -0.01295715942978859, -0.04847064986824989, 0.004551864694803953, 0.014821944758296013, 0.01593668758869171, 0.01789092645049095, -0.03104763850569725, -0.026065703481435776, 0.019886452704668045, -0.027909845113754272, -0.024372946470975876, -0.009495953097939491, -0.028873203322291374, -0.02179940603673458, -0.0006988642853684723, -0.00420092698186636, 0.04310337081551552, 0.006165488623082638, -0.02961636520922184, -0.028033705428242683, 0.00872526690363884, -0.014340265654027462, 0.010170303285121918, 0.03181832283735275, 0.010025800205767155, -0.012000682763755322, 0.045415427535772324, -0.0024049533531069756, 0.02590055577456951, -0.01685875840485096, 0.032258715480566025, -0.02369859628379345, -0.04635126143693924, -0.00852571427822113, 0.011615339666604996, -0.02062961459159851, 0.00021406752057373524, -0.02760707587003708, 0.03079991787672043, 0.03415790572762489, 0.00807156041264534, 0.0074109723791480064, -0.008739029057323933, -0.015785301104187965, 0.00031373632373288274, 0.023271966725587845, 0.014106307178735733, -0.015083427540957928, -0.02375364489853382, 0.011188710108399391, 0.012509886175394058, 0.013431956991553307, -0.013776013627648354, 0.024703240022063255, 0.01018406543880701, 0.0069327340461313725, -0.01526233647018671, 0.00167555408552289, -0.015799064189195633, 0.017670730128884315, -0.008766554296016693, 0.017216576263308525, -0.013837943784892559, 0.007865126244723797, 0.013487005606293678, 0.026382235810160637, -0.013149830512702465, 0.014698084443807602, 0.005198690574616194, -0.022363657131791115, -0.0035042131785303354, -0.0008825043332763016, -0.028432810679078102, -0.01198003999888897, 0.03561670705676079, 0.015840351581573486, -0.0020213306415826082, -0.017932213842868805, 0.005652844440191984, 0.012785131111741066, -0.03165317699313164, -0.020079124718904495, -0.003922241739928722, -0.032781682908535004, -0.03834163025021553, 0.0010768960928544402, 0.002891792915761471, 0.01919833943247795, 0.0134457191452384, -0.027841033414006233, 0.024854624643921852, -0.015317385084927082, 0.030689820647239685, -0.023505924269557, 0.00856012012809515, -0.013659033924341202, 0.005941851995885372, -0.01263374648988247, -0.008732148446142673, -0.02349216304719448, -0.014044377021491528, -0.00960605125874281, -0.0151384761556983, 0.0030707023106515408, -0.008539476431906223, 0.08053669333457947, 0.02401512861251831, 0.0020798202604055405, 0.0012566655641421676, -0.015317385084927082, -0.001243763486854732, 0.019115766510367393, -0.0004674864758271724, 0.00021471262152772397, -0.0151384761556983, 0.021565446630120277, -0.021909503266215324, -0.006279027089476585, -0.007995868101716042, -0.011897466145455837, -0.011594696901738644, -0.010039562359452248, 0.02265266515314579, -0.010197828523814678, 0.01288834773004055, 0.02279028855264187, 0.005023221485316753, 0.01392739824950695, -0.016955092549324036, -0.028983300551772118, -0.01685875840485096, 0.023340778425335884, 0.022157223895192146, -0.0010665744775906205, -0.022404944524168968, 0.014656797051429749, 0.011546528898179531, -0.029368644580245018, -0.01113366149365902, -0.018909333273768425, 0.010039562359452248, -0.010335450991988182, -0.022666428238153458, -0.005092032719403505, 0.025226205587387085, 0.014175118878483772, 0.014030614867806435, -0.011766724288463593, -0.023671071976423264, -0.00553242489695549, -0.00652330694720149, -0.0077206226997077465, -0.00218131672590971, 0.0008842246606945992], "3b28057a-a366-494d-86cb-fb4ec55da5c2": [0.016822179779410362, 0.0037201594095677137, 0.02567453123629093, -0.021628517657518387, -0.007236660458147526, 0.018125593662261963, -0.006343957968056202, -0.02055591717362404, -0.007114465348422527, -0.03668566048145294, 0.014201776124536991, 0.016102587804198265, 0.008119179867208004, -0.006771640386432409, -0.016455596312880516, 0.011859705671668053, 0.023244207724928856, -0.014079581014811993, -0.003000566503033042, -0.011533851735293865, -0.030195746570825577, -0.00039755809120833874, -0.01152027491480112, -0.015858197584748268, -0.03030436486005783, 0.001315293600782752, 0.01668640784919262, -0.014310394413769245, -0.028865179046988487, 0.014717711135745049, 0.007372432854026556, -0.007671131752431393, -0.010617389343678951, -0.006666417233645916, -0.027941927313804626, -0.0010929665295407176, 0.0049828412011265755, -0.018994536250829697, 0.004049407318234444, -0.00867584627121687, 0.027330951765179634, 0.015586653724312782, -0.010461251251399517, -0.0059570069424808025, -0.0015325291315093637, 0.026380546391010284, -0.0031261558178812265, -0.002613615710288286, -0.00388648035004735, 0.009320764802396297, -0.00150876899715513, -0.018831610679626465, -0.02684217132627964, 0.0028647943399846554, -0.02684217132627964, -0.017908358946442604, 0.0007781446329317987, -0.007453896105289459, 0.022253070026636124, -0.014921369031071663, 0.012382428161799908, -0.00013693903747480363, -0.013584013096988201, -0.005047332961112261, -0.008302472531795502, -0.025742417201399803, -0.005447861272841692, -0.01630624569952488, -0.024058841168880463, -0.004779182840138674, 0.03244956582784653, 0.03595248982310295, -0.0029547433368861675, 0.02553875930607319, -0.012918728403747082, -0.0048674349673092365, -0.001638601184822619, -0.008791252970695496, -0.008030927740037441, 0.001771827694028616, 0.013604378327727318, -0.026339814066886902, -0.032096557319164276, -0.0022368477657437325, 0.03312842547893524, 0.015573075972497463, 0.026828594505786896, -0.0017904964042827487, -0.00288006872870028, 0.012830477207899094, 0.0018006793688982725, 0.012076941318809986, 0.02354290708899498, 0.007800115272402763, 0.007677920162677765, 0.02446615695953369, 0.022185184061527252, 0.007752595003694296, -0.012076941318809986, -0.01084820181131363, -0.017283806577324867, -0.0017769192345440388, -0.013780882582068443, -0.006523855961859226, -0.035518016666173935, -0.0014629459474235773, 0.026502741500735283, -0.01703941635787487, 0.0007132285390980542, 0.004507638514041901, -0.0382063090801239, 0.03673996776342392, -0.01008787751197815, 0.0037710738833993673, 0.019306812435388565, -0.022320955991744995, 0.027751846238970757, -0.02843070775270462, 0.008207431994378567, -0.007745806593447924, -0.004680748097598553, -0.01649632677435875, 0.04032435640692711, -0.02757534198462963, 0.023556483909487724, 0.01059702318161726, 0.008431456051766872, -0.0045992848463356495, 0.0038457487244158983, -0.026326237246394157, 0.006802189163863659, 0.009612674824893475, 0.01846502535045147, 0.01383519172668457, -0.02100396528840065, -0.003092212835326791, 0.0045042443089187145, -0.0008248163503594697, -0.002914011711254716, -0.022823313251137733, 0.02347502112388611, 0.028892332687973976, 0.010888934135437012, -0.032503873109817505, -0.004548369906842709, 0.01824778877198696, 0.0056684911251068115, 0.02074599824845791, 0.006377900950610638, 0.014731287956237793, 0.012375639751553535, -0.018329253420233727, -0.017406001687049866, -0.004287008661776781, 0.013495760969817638, 0.0017124273581430316, 0.004809731617569923, 0.01748746447265148, -0.014296816661953926, 0.0013899683253839612, -0.019361121580004692, 0.0015181034104898572, -0.008526496589183807, -0.005644730757921934, -0.015179337002336979, 0.03331850841641426, 0.00014351549907587469, 0.0007989347795955837, 0.007555725052952766, -0.0056481254287064075, 0.0032721110619604588, 0.01817990280687809, -0.01608901098370552, 0.00665623415261507, 0.030575908720493317, 0.003175373189151287, 0.015382994897663593, 0.0033841230906546116, -0.002902131760492921, -0.03521931916475296, 0.0186279509216547, 0.002983595011755824, 0.006211580242961645, 0.01932038925588131, -0.017718277871608734, -0.013142753392457962, 0.04268679395318031, 0.020379412919282913, -0.009171415120363235, -0.009510845877230167, -0.0015130118699744344, 0.005603999365121126, -0.002482934854924679, -0.014283239841461182, -0.6247695684432983, 0.019741283729672432, 0.026258351281285286, -0.020379412919282913, 0.0026781074702739716, 0.010821047239005566, 0.03665850684046745, -0.0037574968300759792, 0.0031108814291656017, 0.03652273118495941, 0.009110317565500736, 0.011180844157934189, -0.013543280772864819, -0.018980959430336952, -0.006612108089029789, -0.02437111735343933, -0.009633040055632591, -0.021900063380599022, -0.004528004210442305, 0.011357348412275314, -0.017365269362926483, 0.031743548810482025, 0.009605886414647102, -0.001934754429385066, 0.007297758013010025, -0.02027079649269581, 0.02503640204668045, -0.02008071355521679, 0.01853291131556034, 0.02881086990237236, -0.029163876548409462, 0.020569493994116783, -0.00576013745740056, 0.012857630848884583, 0.040405817329883575, -0.01286442019045353, -0.021411282941699028, 0.014799173921346664, 0.020990388467907906, 0.03988988324999809, -0.014758442528545856, -0.004100321792066097, 0.01891307346522808, 0.008078448474407196, 0.0019126913975924253, 0.006214974448084831, 0.006730908993631601, -0.006350746378302574, -0.014500475488603115, -0.018614374101161957, 0.001771827694028616, -0.00983669888228178, 0.00334339146502316, 0.0022521221544593573, 0.0008052990888245404, -0.00038079870864748955, 0.014541206881403923, -0.02354290708899498, 0.005016784183681011, -0.009252877905964851, 0.018383560702204704, 0.013787670992314816, -0.02712729386985302, -0.03486631065607071, -0.052625320851802826, 0.007453896105289459, -0.009062796831130981, -0.021302664652466774, 0.0002492693602107465, 0.0008511222549714148, 0.03921102359890938, -0.001266924780793488, 0.008356781676411629, -0.013746939599514008, -0.0032347736414521933, 0.007711863145232201, 0.01703941635787487, -0.005413918290287256, -0.014948523603379726, 0.00994531624019146, -0.003872903296723962, -0.007969830185174942, -0.009904584847390652, -0.011187632568180561, 0.02940826676785946, 0.006438998505473137, -0.006184425670653582, -0.006422027014195919, 0.0041614193469285965, -0.006024893373250961, -0.0008485764847137034, 0.03386159613728523, -0.016075434163212776, -0.0291910320520401, 0.002559306798502803, 0.026543473824858665, -0.0035368669778108597, -0.007888367399573326, -0.01149990875273943, -0.008567227981984615, -0.024289654567837715, -0.026977945119142532, 0.004660382401198149, 0.0036251188721507788, 0.028186317533254623, 0.01266076136380434, 0.0036353017203509808, -0.006771640386432409, 0.031336233019828796, -0.01983632519841194, -0.006153876893222332, 0.0032890825532376766, -0.007888367399573326, -0.022483883425593376, 0.016930798068642616, -0.022959085181355476, 0.00886592734605074, -0.00220120744779706, 0.0075149936601519585, -0.015396571718156338, -0.0009232512675225735, -0.020705265924334526, 0.007155197206884623, -0.0067580631002783775, 0.004582313355058432, 0.007386010140180588, -0.006381295155733824, -0.0028444284107536077, 0.022673964500427246, -0.009171415120363235, -0.004310768563300371, -0.03451330214738846, 0.011404868215322495, 0.005732982885092497, 0.022008679807186127, -0.003686216427013278, 0.04293118417263031, -0.01002677995711565, 0.001843108213506639, -0.05105036124587059, 0.004646805115044117, -0.001282199053093791, 0.014201776124536991, -0.023108435794711113, -0.00040625600377097726, -0.02328494004905224, -0.01592608354985714, 0.00684631522744894, -0.01659136824309826, -0.014799173921346664, -0.01181897334754467, -0.021601364016532898, -0.011920803226530552, 0.031010380014777184, -0.013889499939978123, 0.006493307650089264, 0.007433530408889055, -0.03424175828695297, -0.019252503290772438, -0.015776734799146652, -0.027738269418478012, 0.012314542196691036, -0.02671997621655464, 0.012015843763947487, -0.012321330606937408, -0.008207431994378567, -0.0014323971699923277, -0.0011642469326034188, -0.006438998505473137, -0.04108468070626259, 0.012375639751553535, -0.006978693418204784, 0.0013814825797453523, 0.03407883271574974, -0.015613807365298271, 0.026122579351067543, -0.02452046610414982, -0.0020841038785874844, -0.007555725052952766, 0.005203471053391695, 0.007005847524851561, 0.006058836355805397, 0.002191024599596858, -0.007969830185174942, 0.03616972640156746, 0.008988122455775738, 0.015220068395137787, 0.017623236402869225, -0.036088261753320694, 0.0032449564896523952, 0.033264197409152985, -0.0036386961583048105, -0.010237227194011211, 0.0025151807349175215, -0.008214220404624939, -0.0018753540934994817, -0.027453146874904633, 0.0038253827951848507, -0.015627384185791016, 0.0278876181691885, 0.02169640362262726, 0.006136905401945114, -0.013488972559571266, -0.004419386386871338, 0.013468606397509575, -0.018641529604792595, 0.018858764320611954, -0.009171415120363235, 0.019809169694781303, 0.013631532900035381, -0.0015910809161141515, -0.002900434425100684, 0.0020433722529560328, -0.008601171895861626, 0.009463325142860413, 0.03801622614264488, 0.012620029971003532, 0.0233799796551466, -0.01247068028897047, 0.015518766827881336, 0.006652839947491884, -0.010888934135437012, 0.04480484127998352, 0.0017972850473597646, -0.005855177994817495, 0.023108435794711113, 0.0033688487019389868, 0.03236810117959976, -0.0026102212723344564, -0.032666802406311035, -0.0018651711288839579, 0.027439570054411888, 0.02361079305410385, 0.009734869934618473, 0.04255102202296257, 0.036441270262002945, 0.030630217865109444, -0.015505190007388592, 0.03407883271574974, -0.008288895711302757, -0.00402225274592638, 0.012945882976055145, 0.02639412321150303, -0.024832742288708687, 0.04591817036271095, 0.008146334439516068, 0.02748030237853527, -0.0021655673626810312, -0.01751461997628212, 0.029299650341272354, 0.010950031690299511, -0.0032059219665825367, -0.02204941213130951, -0.007501416373997927, 0.021845754235982895, -0.016238359734416008, 0.02684217132627964, 0.013326045125722885, 0.013767304830253124, 0.021438436582684517, 0.009829910472035408, -0.015912506729364395, 0.016387710347771645, -0.004365077707916498, 0.006167454179376364, -0.01388271152973175, -0.01440543495118618, -0.02572884038090706, -0.01164247002452612, -0.012273810803890228, -0.0015681693330407143, -0.0187501460313797, 0.007603245321661234, 0.008818406611680984, -0.011051860637962818, 0.002639072947204113, 0.010610600933432579, 0.01543730404227972, -0.018831610679626465, 0.015206490643322468, -0.03215086832642555, -0.01763681322336197, 0.008316049352288246, 0.023936646059155464, 0.0052306256256997585, -0.025185750797390938, -0.01637413166463375, -0.029652656987309456, 0.026000384241342545, 0.008438244462013245, -0.011635680682957172, 0.008431456051766872, -0.00720271747559309, 0.0018685654504224658, -0.015179337002336979, 0.012076941318809986, 0.03798907250165939, -0.01758250594139099, -0.008146334439516068, 0.01656421273946762, 9.811665950110182e-05, 0.00758287962526083, -0.013047711923718452, -0.026353392750024796, 0.02211729809641838, -0.01779974065721035, -0.03277542069554329, -0.038342081010341644, -0.010983974672853947, -0.016007546335458755, -0.0024710549041628838, -0.005834812298417091, -0.01760965958237648, -0.004843674600124359, -0.011411656625568867, 0.022361688315868378, -0.008356781676411629, 0.01535584032535553, 0.018614374101161957, 0.005994344595819712, 0.005963795818388462, -0.020583072677254677, 0.004015463870018721, 0.03198793902993202, 0.07581522315740585, 0.00937507301568985, -0.0033993974793702364, 0.01856006495654583, -0.004246276803314686, -0.030358674004673958, -0.038124844431877136, -0.01659136824309826, 0.027996236458420753, -0.0013500852510333061, -0.014799173921346664, 0.010800682008266449, -0.0033094484824687243, -0.012368851341307163, -0.0036726391408592463, 0.0015155576402321458, -0.006357535254210234, -0.013251370750367641, -0.0071959285996854305, 0.005376580636948347, 0.025117864832282066, -0.006472941488027573, 0.0181527491658926, 0.002107864012941718, 0.016957953572273254, -0.00288006872870028, 0.029489731416106224, 0.017501041293144226, 0.0065272506326437, -0.018600797280669212, -0.01817990280687809, 0.0186279509216547, 0.02490062825381756, 0.017093725502490997, -0.02624477446079254, 0.015858197584748268, -0.010176129639148712, -0.0035708099603652954, -0.022606078535318375, 0.0013738453853875399, 0.0097280815243721, 0.014717711135745049, 0.0045449757017195225, -0.010515560396015644, -0.002457477618008852, -0.0123416967689991, 0.00497265812009573, 0.0229047778993845, -0.01086856797337532, -0.001718367449939251, 0.017691122367978096, 0.015858197584748268, -0.016414863988757133, 0.024764856323599815, -0.0043548946268856525, -0.007725440431386232, 0.014066004194319248, -0.02040656842291355, -0.03817915543913841, -0.023149166256189346, -0.02385518327355385, -0.014228930696845055, -0.0018804455175995827, -0.004745239857584238, -0.012097306549549103, -0.019347544759511948, 0.016917221248149872, -0.0109160877764225, -0.029625503346323967, 0.00622515706345439, 0.010311901569366455, -0.052299465984106064, -0.02579672634601593, -0.0043752603232860565, 0.030440136790275574, 0.019999250769615173, -0.0032296821009367704, 0.010692063719034195, 0.002915708813816309, 0.012334908358752728, 0.018383560702204704, -0.019714130088686943, 0.00298698921687901, -0.02608184702694416, 0.001744673354551196, -0.012728647328913212, -0.030928917229175568, -0.007664342876523733, 0.012022632174193859, -0.0031244587153196335, 0.0032975682988762856, -0.0013577224453911185, -0.005125402007251978, 0.007766172289848328, 0.008187065832316875, 0.023936646059155464, 0.027711113914847374, 8.316049934364855e-05, 0.02513144165277481, -0.029489731416106224, 0.003348483005538583, -0.01621120609343052, -0.016645677387714386, -0.02380087412893772, 0.02591892145574093, 0.002903828863054514, -0.00932755321264267, -0.01589892990887165, -0.011140112765133381, -0.010671698488295078, 0.007379221264272928, 0.00989779643714428, 0.015939660370349884, -0.010271170176565647, 0.02107185125350952, -0.02973412163555622, -0.005590422078967094, 0.027466723695397377, 0.027453146874904633, -0.0003332784108351916, -0.012362062931060791, -0.027941927313804626, 0.02522648312151432, 0.009062796831130981, -0.009660194627940655, 0.006476335693150759, 0.030385827645659447, -0.029842738062143326, -0.022198760882019997, 0.010040356777608395, -0.014419011771678925, 0.0155459214001894, -0.003594570094719529, -0.014636247418820858, -0.01054950337857008, -0.003764285473152995, -0.020922502502799034, 0.0051355850882828236, -0.028186317533254623, -0.015260799787938595, -0.010237227194011211, 0.008173489011824131, 0.012511411681771278, -0.01796266809105873, 0.018926650285720825, -0.025525180622935295, -0.015491613186895847, 0.009035642258822918, 0.007189140189439058, 0.013604378327727318, -0.024194613099098206, -0.00894739106297493, -0.02582387998700142, -0.009001699276268482, 0.002537243766710162, -0.027113717049360275, -0.014799173921346664, 0.004337923135608435, 0.06088027358055115, 0.03375297784805298, 0.0006932870019227266, -0.01564096286892891, 0.007576091215014458, 0.01111974660307169, -0.015382994897663593, -0.004877617582678795, -0.01608901098370552, -0.018261365592479706, 0.01356364693492651, 0.013217427767813206, 0.012205924838781357, 0.010053934529423714, -0.014663401991128922, 0.007616822607815266, 0.006965116132050753, 0.021031120792031288, -0.014934946782886982, -0.004796154331415892, -0.03225948289036751, -0.041519150137901306, -0.0025728840846568346, 0.0422523207962513, -0.007800115272402763, 0.026570627465844154, -0.025280790403485298, 0.016808602958917618, 0.005142373498529196, 0.0006084293709136546, 0.023122012615203857, 0.017107302322983742, 0.03225948289036751, 2.8506866556199384e-07, 0.004833491984754801, 0.012884785421192646, -0.01627909205853939, -0.02452046610414982, 0.001460400177165866, -0.04760174825787544, -0.010386576876044273, -0.0010250804480165243, 0.007990196347236633, 0.00131868792232126, -0.013516126200556755, 0.020202908664941788, 0.01111974660307169, 0.023488597944378853, -0.01872299239039421, -0.02100396528840065, 0.004178390838205814, -0.0027103533502668142, -0.0136451106518507, -0.02824062667787075, -0.013190273195505142, 0.009381861425936222, -0.016672831028699875, -0.014554784633219242, 0.016034701839089394, 0.014364703558385372, -0.021533478051424026, -0.003879691706970334, 0.028294935822486877, -0.004056195728480816, 0.0363054983317852, 0.011194420978426933, 0.04192646965384483, 0.020284373313188553, 0.004351500421762466, -0.017052993178367615, -0.031933631747961044, 0.011370925232768059, -0.013699418865144253, 0.0034689807798713446, 0.03424175828695297, -0.009001699276268482, 0.0010751464869827032, 0.013495760969817638, -0.012973037548363209, 0.00834320392459631, -0.037228748202323914, 0.019021691754460335, 0.007168774493038654, 0.004497455433011055, -0.04374581575393677, -0.017365269362926483, -0.014011695049703121, 0.026950789615511894, 0.0010751464869827032, 0.017270229756832123, -0.0022334533277899027, -0.003879691706970334, 0.01348218321800232, 0.0420079305768013, -0.013577223755419254, 0.03011428378522396, -0.009999625384807587, 0.007284180726855993, -0.0214791689068079, 0.001951725920662284, -0.005685462616384029, -0.027249488979578018, 0.015966815873980522, 0.02750745601952076, 0.005800868850201368, 0.006486518774181604, 0.009870641864836216, 0.01602112501859665, -0.010719218291342258, -0.003791439812630415, -0.00893381331115961, 0.028376398608088493, -0.007643977180123329, -0.006262494716793299, -0.0006563739152625203, -0.012063363566994667, 0.02347502112388611, -0.015776734799146652, -0.007155197206884623, -0.010671698488295078, 0.009904584847390652, 0.014296816661953926, 0.018071284517645836, 0.0009919859003275633, -0.0031006985809653997, -0.015844620764255524, 0.01226023305207491, -0.009537999518215656, 0.004297191277146339, 0.006452575791627169, -0.0017344903899356723, -0.02976127527654171, -0.034187451004981995, 0.005963795818388462, -0.012314542196691036, -0.0025847640354186296, -0.006204791367053986, -0.00989779643714428, 0.007304546423256397, 0.039455413818359375, -0.01130982767790556, -0.010895722545683384, 0.01817990280687809, 0.016537059098482132, -0.02883802354335785, 0.03573525324463844, -0.0038966634310781956, -0.009660194627940655, 0.02671997621655464, 0.00032945984276011586, -0.03353574499487877, -0.02710014022886753, 0.00353347253985703, 0.003499529557302594, 0.007942676544189453, -0.00899491086602211, 0.002846125513315201, 0.006649445742368698, 0.006001133006066084, 0.006503490265458822, -0.021628517657518387, -0.017215920612215996, 0.009870641864836216, 0.015518766827881336, -0.003265322418883443, -0.024479735642671585, 0.0037337366957217455, -0.02078673057258129, 0.02959834784269333, -0.015817465260624886, -0.03223232924938202, -0.03668566048145294, -0.040188584476709366, -0.004259854089468718, 0.00014860696683172137, -0.00019018721650354564, 0.007399586960673332, -0.014554784633219242, -0.01291193999350071, 0.02046087756752968, -0.014446166343986988, 0.006177636794745922, 0.010780315846204758, -0.007508204784244299, -0.003256836673244834, 0.011676413007080555, -0.016346978023648262, -0.0304944459348917, -0.009463325142860413, -0.006781823467463255, -0.02582387998700142, 0.001723458874039352, -0.005811051931232214, 0.04089459776878357, 0.01343466341495514, -0.021791445091366768, -0.01760965958237648, -0.023502174764871597, -0.07347993552684784, -0.0071959285996854305, -0.02636696957051754, 0.024004532024264336, 0.034567613154649734, 0.045456547290086746, 0.013387142680585384, 0.0200535599142313, -0.006364323664456606, 0.0037167652044445276, -0.035680945962667465, 0.003699793480336666, -0.020583072677254677, -0.03016859106719494, 0.00167169573251158, -0.017175188288092613, -0.042442403733730316, 0.00025520939379930496, 0.014880637638270855, -0.017528196796774864, 0.009537999518215656, 0.023597216233611107, -0.02807769924402237, 0.0035606271121650934, -0.012599663808941841, 0.01261324156075716, 0.02722233347594738, 0.01986347883939743, 0.02157420851290226, -0.0200535599142313, 0.005271357484161854, 0.022891199216246605, -0.013916654512286186, -0.029353957623243332, 0.012212713249027729, 0.024982092902064323, -0.01508429553359747, 0.01008787751197815, 0.0024388087913393974, -0.019157463684678078, -0.004337923135608435, -0.013441451825201511, 0.01054950337857008, -0.0034757694229483604, 0.016238359734416008, 0.022185184061527252, -0.010746372863650322, -0.006588348187506199, -0.013353199698030949, -0.007148408330976963, 0.019157463684678078, 0.008845561183989048, 0.005220442544668913, -0.03291119262576103, -0.005033755674958229, -0.017188765108585358, 0.009823122061789036, 0.017908358946442604, -0.008485765196383, -0.02515859715640545, 0.005342637654393911, -0.02166924998164177, -0.013631532900035381, 0.02100396528840065, 0.00020981054694857448, -0.0026017355266958475, -0.005705828312784433, -0.0030735440086573362, 0.00080826913472265, -0.0036692447029054165, -0.003457100596278906, -0.012728647328913212, 0.006326986476778984, -0.019252503290772438, 0.006333774887025356, -0.050045646727085114, 0.002133321249857545, 0.02418103627860546, -0.016414863988757133, 0.0002679380413610488, 0.20659103989601135, 0.0028664914425462484, 0.015966815873980522, 0.015002832747995853, 0.018790878355503082, -0.0006746183498762548, -0.0012618332402780652, 0.020827461034059525, -0.008010562509298325, 0.0014256085269153118, 0.013115598820149899, 0.009388650767505169, -0.03747313842177391, -0.0014205171028152108, 0.007148408330976963, -0.022008679807186127, -0.04016142711043358, -0.020311526954174042, -0.0021485956385731697, 0.014907792210578918, 0.011160477995872498, -0.0130545012652874, -0.016577791422605515, -0.012728647328913212, 0.031553469598293304, 0.02427607588469982, -0.010583446361124516, 0.018804455175995827, 0.019184617325663567, 0.020759575068950653, -0.009361496195197105, -0.001451914431527257, 0.018668683245778084, -0.002903828863054514, -0.029136722907423973, 0.010943242348730564, 0.011106169782578945, -0.024357540532946587, 0.0018312281463295221, 0.010542714968323708, 0.01261324156075716, -0.011615315452218056, 0.004891194868832827, -0.035490863025188446, 0.008431456051766872, -0.016577791422605515, -0.00584499491378665, 0.006316803395748138, -0.0022300591226667166, 0.018125593662261963, 0.00017268532246816903, -0.005716011393815279, 0.01219913549721241, -0.003348483005538583, 0.0029258918948471546, 0.014093158766627312, -0.022931931540369987, 0.01253177784383297, -0.0036353017203509808, -0.004840280395001173, -0.007209505885839462, 0.003699793480336666, -0.0022232704795897007, -0.006048653274774551, -0.020895346999168396, 0.02900095097720623, -0.0009147654636763036, 0.04141053184866905, 0.007806903682649136, 0.011886859312653542, -0.015016409568488598, 0.002723930636420846, -0.0297884289175272, 0.008119179867208004, -0.02591892145574093, -0.012409582734107971, 0.02786046452820301, 0.01248425804078579, 0.04904093220829964, 0.006785217672586441, 0.009639829397201538, 0.004731662571430206, -0.030087128281593323, -0.009273244068026543, 0.022266646847128868, -0.004877617582678795, 0.026312660425901413, -0.03397021442651749, 0.014663401991128922, -0.005960401613265276, -0.004365077707916498, 0.015301531180739403, -0.002459174720570445, -0.02465623989701271, 0.0008320292690768838, 0.005373186431825161, 0.011303039267659187, 0.01599396951496601, -0.01751461997628212, -0.02506355568766594, -0.016822179779410362, 0.05631832405924797, 0.0174467321485281, 0.03931964188814163, -0.0012957763392478228, 0.016034701839089394, 0.00443296367302537, 0.011791818775236607, 0.024343963712453842, -0.011017917655408382, -0.0064695472829043865, -0.04765605553984642, 0.019184617325663567, -0.015233645215630531, -0.008221008814871311, 0.027371684089303017, 0.02862078882753849, 8.453943155473098e-05, 0.007874789647758007, 0.02093607932329178, 0.028376398608088493, 0.009537999518215656, -0.00560060515999794, 0.0017107302555814385, -0.018030554056167603, -0.019347544759511948, 0.003927212208509445, 0.023814450949430466, -0.022103721275925636, -0.02525363676249981, 0.019469739869236946, -0.01570884883403778, 0.027548188343644142, -0.010624177753925323, -0.012436737306416035, -0.014609092846512794, -0.0024099573493003845, -0.014541206881403923, 0.017283806577324867, -0.003862720215693116, -9.954863344319165e-05, -0.01668640784919262, 0.006157271098345518, 0.012219501659274101, 0.0003143975918646902, 0.01516575925052166, -0.013156330212950706, 0.016903644427657127, -0.026407700031995773, -0.007942676544189453, 0.0016784843755885959, -0.004283613990992308, -0.011146901175379753, -0.020107869058847427, 0.02385518327355385, -0.03296549990773201, -0.03782614693045616, -0.008703000843524933, -0.0033977003768086433, 0.01995852030813694, -0.05501491203904152, -0.00823458656668663, 0.03885801509022713, 0.010013203136622906, -0.01608901098370552, -0.008112391456961632, -0.1720505803823471, 0.0012508017243817449, 0.0006487367209047079, -0.0023267967626452446, -0.004477089736610651, 0.023488597944378853, 0.008098814636468887, -0.015749579295516014, -0.016224782913923264, 0.0066188969649374485, -0.0018363195704296231, -0.014432589523494244, -0.030412981286644936, -0.028675097972154617, 0.014106735587120056, -0.01998567394912243, 0.003872903296723962, 0.020230064168572426, 0.05406450480222702, 0.005766925867646933, 0.011085803620517254, -0.03500208258628845, -0.018003398552536964, -0.003777862526476383, 0.009449748322367668, 0.014419011771678925, -0.0023929858580231667, 0.027276642620563507, -0.013142753392457962, -0.03731021285057068, 0.019401853904128075, -0.014256085269153118, 0.010461251251399517, 0.00013906047388445586, 0.004174996633082628, -0.008601171895861626, 0.011846127919852734, -0.010040356777608395, -0.011866494081914425, 0.03016859106719494, 0.02629908360540867, 0.01516575925052166, 0.01970055140554905, 0.013251370750367641, 0.022253070026636124, 0.011764665134251118, 0.041329070925712585, -0.02662493661046028, 0.019904211163520813, 0.01215161569416523, 0.013393932022154331, -0.025579489767551422, 0.0010148974834010005, 0.006428815424442291, 0.01649632677435875, 0.0037167652044445276, 0.010936453938484192, 0.02674713172018528, 0.018139172345399857, 0.010372999124228954, 0.008927024900913239, -0.02040656842291355, 0.005020178388804197, -0.006951538845896721, -0.02900095097720623, -0.014256085269153118, 0.0009011882357299328, 0.02662493661046028, 0.003353574313223362, 0.027738269418478012, 0.017881203442811966, 0.009795967489480972, 0.009028853848576546, 0.012287387624382973, 0.011907225474715233, 0.0024116544518619776, -0.02059664949774742, 0.011289461515843868, 0.02807769924402237, 0.0023505568969994783, 0.00899491086602211, 0.009986048564314842, 0.009734869934618473, -0.009843487292528152, -0.012558932416141033, -0.022959085181355476, 0.0034791636280715466, -0.003594570094719529, -0.0050812759436666965, 0.0003663729003164917, 0.03166208788752556, -0.01570884883403778, -0.018546488136053085, 0.011608527041971684, 0.016292668879032135, -0.001626721117645502, 0.013095232658088207, -0.007596456911414862, -0.009585520252585411, -0.002369225723668933, 0.001491797505877912, 0.01383519172668457, -0.04779182747006416, 0.042849719524383545, 0.0481719896197319, 0.02280973643064499, 0.021370550617575645, -0.004100321792066097, 0.023814450949430466, -0.01478559710085392, -0.028294935822486877, 0.007263815030455589, 0.04347427189350128, 0.0046434104442596436, -0.03258533775806427, 0.030385827645659447, -0.0033162368927150965, -0.01748746447265148, 0.013258159160614014, -0.03353574499487877, 0.036468423902988434, -0.03030436486005783, -0.01865510642528534, 0.007840846665203571, -0.0033909117337316275, -0.015532344579696655, -0.10660836100578308, -0.029652656987309456, 0.03242241218686104, 0.01951047033071518, -0.00016282062279060483, 0.014609092846512794, 0.006761457771062851, 0.039428260177373886, -0.002642467152327299, 0.014717711135745049, -0.016428440809249878, -0.0025728840846568346, -0.006965116132050753, -0.02366510219871998, 0.00045653415145352483, -0.010827836580574512, 0.00886592734605074, -0.020664535462856293, -0.009205358102917671, 0.04217085987329483, 0.004096927586942911, -0.01470413338392973, 0.008512919768691063, 0.004755422938615084, -0.009714503772556782, -0.015097873285412788, -0.017243074253201485, 0.019374698400497437, 0.023461442440748215, 0.002457477618008852, 0.016455596312880516, -0.02399095520377159, 0.015315108932554722, -0.030277209356427193, 0.009857065044343472, 0.009232512675225735, -0.030765989795327187, -0.004667170811444521, 0.009083162993192673, -0.029897047206759453, 0.015627384185791016, 0.0010997551726177335, -0.0036319075152277946, -0.030928917229175568, -0.009171415120363235, -0.0018125594360753894, -0.02772469073534012, 0.024248922243714333, 0.01394380908459425, -0.008831984363496304, -0.0297884289175272, -0.022864045575261116, -0.05053442716598511, -0.03320989012718201, 0.02043372206389904, 0.036848586052656174, 0.007352066691964865, 0.016143320128321648, -0.012171981856226921, 0.013624744489789009, 0.0014196685515344143, -0.009049220010638237, 0.0012541960459202528, 0.016034701839089394, 0.006272677332162857, 0.026027537882328033, -0.016767872497439384, -0.012287387624382973, -0.01872299239039421, -0.0036454845685511827, -0.020895346999168396, -0.0019839718006551266, -0.0226603876799345, 0.010203284211456776, -0.0291910320520401, 0.0010675092926248908, 0.006065624766051769, -0.020678112283349037, 0.009531211107969284, 0.016455596312880516, -0.005882332567125559, -0.01618405058979988, -0.0013492366997525096, -0.02748030237853527, 0.004473695531487465, 0.0012312844628468156, 0.016455596312880516, -0.008336415514349937, 0.01361116673797369, -0.02544371783733368, 0.013604378327727318, 0.03451330214738846, 0.0033111455850303173, 0.02366510219871998, -0.004877617582678795, -0.0020654352847486734, -0.010413730517029762, -0.011859705671668053, 0.028783714398741722, 0.03187932074069977, 0.006768246181309223, -0.0003542806953191757, -0.04488630220293999, -0.009633040055632591, 0.01564096286892891, 0.0015011318027973175, 0.01194795686751604, -0.018668683245778084, 0.006123328115791082, -0.0007344429614022374, 0.005444467067718506, 0.000230600664508529, -0.03991704061627388, 0.008852350525557995, -0.008478976786136627, 0.0023335854057222605, -0.03801622614264488, 0.0038185943849384785, 0.018166325986385345, -0.014419011771678925, 0.0074403188191354275, 0.005308694671839476, -0.017786163836717606, 0.0018380166729912162, 0.005149162374436855, 0.020162178203463554, -0.03106468915939331, -0.0040324353612959385, -0.026638513430953026, 0.008316049352288246, -0.017759008333086967, -0.0355994813144207, 0.01421535387635231, 0.00030548754148185253, -0.013787670992314816, 0.01856006495654583, -0.00771865202113986, -0.0413019172847271, 0.017881203442811966, -0.003489346709102392, 0.020759575068950653, 0.032666802406311035, -0.01732453890144825, -0.018356407061219215, 0.012545354664325714, -0.024887051433324814, -0.01964624412357807, -0.01505714189261198, -0.005189893767237663, -0.016387710347771645, 0.0009291913011111319, 0.006347352173179388, 0.0446147583425045, 0.0037507081869989634, -0.03263964504003525, -0.018220635131001472, 0.008248163387179375, -0.005424100905656815, 0.00494889821857214, 0.015627384185791016, 0.010013203136622906, -0.01209051813930273, 0.026326237246394157, -0.00013227185991127044, 0.013400720432400703, -0.0012872905936092138, 0.006191214080899954, -0.029842738062143326, -0.0486607700586319, -0.006941355764865875, -0.003161796135827899, -0.030467290431261063, -0.001007260289043188, -0.02401810884475708, 0.02731737494468689, 0.01760965958237648, 0.01133019383996725, 0.009015277028083801, -0.022198760882019997, -0.013556858524680138, 0.00456194719299674, 0.028539324179291725, 0.014446166343986988, -0.02662493661046028, -0.015464458614587784, 0.022741850465536118, 0.02081388421356678, 0.004018858540803194, 0.0018702626693993807, 0.014853483065962791, 0.001680181478150189, 0.00701263640075922, -0.009714503772556782, 0.008621537126600742, -0.023936646059155464, 0.020121445879340172, 0.005179711151868105, 0.01998567394912243, -0.02261965535581112, 0.02112616039812565, 0.008180277422070503, 0.018356407061219215, 0.0032381678465753794, 0.017310960218310356, 0.015423726290464401, -0.016156896948814392, -0.010753161273896694, -0.011588160879909992, -0.030956070870161057, -0.016767872497439384, 0.021044697612524033, 0.01238921657204628, -0.0025202722754329443, -0.01758250594139099, 0.013638321310281754, 0.005919669754803181, -0.023502174764871597, 0.003095607040449977, 0.005525930318981409, -0.02582387998700142, -0.022158030420541763, -0.00790194422006607, 0.011785030364990234, 0.026285506784915924, 0.005695645697414875, -0.025837456807494164, 0.029625503346323967, -0.013577223755419254, 0.010040356777608395, -0.02608184702694416, 0.01524722296744585, -0.024506889283657074, -0.024927783757448196, 0.002202904550358653, -0.009436170570552349, -0.012307753786444664, -0.0148942144587636, -0.018777301535010338, -0.01808486320078373, 0.003519895253702998, -0.003872903296723962, 0.07635831087827682, 0.025280790403485298, -0.021031120792031288, 0.0033298141788691282, -0.01627909205853939, 0.014011695049703121, 0.017935512587428093, -0.012552144005894661, 0.0028410342056304216, -0.004976052790880203, 0.02052876353263855, -0.010013203136622906, -0.0023488597944378853, -0.01034584455192089, -0.012375639751553535, -0.004005281254649162, -0.0024184430949389935, 0.016428440809249878, -0.022035835310816765, 0.019754860550165176, 0.025742417201399803, -0.008988122455775738, 0.012620029971003532, -0.008641903288662434, -0.03329135477542877, -0.009062796831130981, 0.028403552249073982, 0.02119404636323452, -0.006764851976186037, -0.03068452700972557, 0.02259250171482563, 0.010624177753925323, -0.018329253420233727, -0.027833309024572372, -0.008458610624074936, 0.016998684033751488, -0.0181527491658926, -0.01964624412357807, 0.010861779563128948, 0.013142753392457962, 0.020705265924334526, 0.00809202529489994, -0.016903644427657127, -0.026855750009417534, -0.02116689272224903, -8.300138870254159e-05, -0.02065095864236355, -0.013998118229210377, 0.014690556563436985], "84838ed9-c928-4a9e-acd8-8641b036fa23": [0.006485165562480688, -0.004267613869160414, 0.02797732502222061, -0.03175587207078934, -0.019978061318397522, 0.01962968520820141, -0.008595524355769157, -0.029370831325650215, -0.029263637959957123, -0.041724804788827896, 0.01887933537364006, 0.013211514800786972, 0.009922035038471222, 0.00178710522595793, -0.01153662707656622, 0.021478760987520218, 0.025123316794633865, -0.018611352890729904, -0.0008851781603880227, -0.00784517452120781, -0.01802179217338562, -0.016628285869956017, -0.02129117213189602, -0.004468600731343031, -0.016132518649101257, 0.013224913738667965, 0.01205249223858118, -0.01085327286273241, -0.018544357270002365, 0.02386379987001419, 0.003157163504511118, -0.011931899935007095, -0.021867334842681885, 0.0014806007966399193, -0.021116985008120537, 0.009573657996952534, 0.004609290976077318, -0.012983730062842369, 0.003215784439817071, -0.01593153178691864, 0.01942869834601879, 0.012467863969504833, -0.0147926090285182, 0.015489362180233002, -0.01147633045911789, 0.018611352890729904, 0.005671170074492693, -0.0019143966492265463, -0.004880622960627079, 0.013057424686849117, -0.022497091442346573, 0.0056343222968280315, -0.022162115201354027, 0.009721048176288605, -0.018906133249402046, -0.016373703256249428, 0.00861562229692936, -0.01436383742839098, 0.01716424897313118, -0.002842284506186843, 0.024640949442982674, 0.0005564814782701433, -0.01630670763552189, -0.011516528204083443, -0.010149819776415825, -0.020741809159517288, -0.0003701501991599798, -0.007222115993499756, -0.012508061714470387, -0.009928734973073006, 0.03698152303695679, 0.028379298746585846, -0.005091658793389797, 0.02213531732559204, -0.023381432518363, -0.021559154614806175, -0.0020266142673790455, -0.019468896090984344, -0.015583155676722527, 0.00582525972276926, 0.007001030724495649, -0.021130383014678955, -0.02859368361532688, -0.015944931656122208, 0.03510564565658569, 0.026918796822428703, 0.017700213938951492, -0.0005774175515398383, 0.0005334517336450517, 0.020835604518651962, -0.0005816047778353095, 0.006722999271005392, 0.011610321700572968, -0.0029578518588095903, 0.0032911545131355524, 0.023542221635580063, 0.022242508828639984, 0.00796576589345932, -0.0026211992371827364, -0.017673416063189507, -0.022470293566584587, 0.0031069167889654636, -0.0189463309943676, -0.00759729091078043, -0.040492087602615356, -0.006099941208958626, 0.004867224022746086, -0.0043647573329508305, 0.00448869913816452, 0.009553560055792332, -0.036311566829681396, 0.027816535905003548, -0.02718677744269371, -0.006522012874484062, 0.01636030338704586, -0.02502952329814434, 0.023327836766839027, -0.024386364966630936, -0.006448317784816027, -0.0005213088006712496, 0.0022778473794460297, -0.010478097945451736, 0.04362747445702553, -0.029129648581147194, 0.021304572001099586, -0.014605021104216576, 0.014136052690446377, 0.007242214400321245, 0.009298976510763168, -0.011335640214383602, -0.0027384415734559298, 0.007731281686574221, 0.010551792569458485, 0.009238680824637413, -0.013908267952501774, -0.00904439389705658, -0.004656187724322081, 0.005366340279579163, -0.009667452424764633, -0.045235369354486465, 0.02724037505686283, 0.035588014870882034, -0.001368383294902742, -0.025538688525557518, -0.0004886484821327031, 0.01740543358027935, 0.000955523457378149, 0.0299603920429945, 0.0005443385452963412, 0.009486564435064793, 0.011315541341900826, -0.027079585939645767, -0.011127954348921776, 0.008776411414146423, 0.02657041884958744, 0.007423102390021086, 0.005252447910606861, 0.01175101287662983, -0.012106088921427727, -0.011020760983228683, -0.004317860584706068, -0.0022125267423689365, -0.005265846848487854, -0.008950600400567055, -0.0112217478454113, 0.022282706573605537, 0.003731649834662676, -0.0029344032518565655, 0.004920820239931345, -0.0016732128569856286, -0.012045792303979397, 0.01374747883528471, -0.016521092504262924, 0.01021011546254158, 0.0158645361661911, 0.013111021369695663, 0.024935727939009666, 0.021076787263154984, -0.005403188057243824, -0.02945122681558132, 0.02829890325665474, -0.006709600333124399, -0.004729882813990116, 0.020447028800845146, -0.023140249773859978, -0.014806007966399193, 0.031032320111989975, 0.025726275518536568, 0.0013817823491990566, -0.006032945588231087, 0.009386071003973484, 0.015449164435267448, -0.010953766293823719, -0.014886402525007725, -0.6302937865257263, 0.00015032118244562298, 0.02103658951818943, -0.016949864104390144, -0.001971342833712697, 0.009245380759239197, 0.0436810739338398, -0.009553560055792332, -0.0023582419380545616, 0.024935727939009666, 0.01436383742839098, 0.0123673714697361, -0.02275167591869831, -0.01610572077333927, -0.014109254814684391, -0.03357814997434616, 0.0033246520906686783, -0.026342634111642838, 0.004800228402018547, -0.006900537293404341, -0.025310903787612915, 0.029076050966978073, -0.011369138024747372, -0.004709784407168627, 0.007771478965878487, -0.008307443000376225, 0.03880380094051361, -0.013988662511110306, -0.004150371998548508, 0.01661488600075245, -0.018785541877150536, 0.025270706042647362, 0.0033949974458664656, 0.01826297678053379, 0.04239475727081299, -0.012106088921427727, -0.020621217787265778, 0.01067238487303257, 0.02725377306342125, 0.05740175396203995, -0.009600456804037094, -0.012769344262778759, 0.015261577442288399, 0.005359640810638666, -0.00615018792450428, 0.003406721632927656, 0.009513362310826778, 0.00696753291413188, -0.010451299138367176, -0.026610616594552994, 0.0037450490053743124, -0.008354339748620987, -0.004418354015797377, 0.008937201462686062, -0.009754545986652374, -0.0018942980095744133, 0.019549289718270302, -0.03290819376707077, 0.003972833510488272, -0.007912170141935349, 0.013854671269655228, 0.022403297945857048, -0.03197025880217552, -0.044002652168273926, -0.0456373430788517, 0.0106388870626688, 0.002617849502712488, -0.02281867153942585, 0.004076676908880472, 0.0006565559888258576, 0.03690112754702568, 0.00013639866665471345, -0.0024754840414971113, -0.018102187663316727, -0.01292343344539404, 0.007121622562408447, 0.020822204649448395, -0.012561658397316933, -0.02182713709771633, 0.02276507392525673, -0.0013172992039471865, -0.011308842338621616, -0.014939998276531696, -0.005269196815788746, 0.026436427608132362, 0.009071191772818565, -0.007041228003799915, -0.006706250365823507, 0.0046997349709272385, -0.002053412375971675, 0.013640285469591618, 0.016212914139032364, -0.013975263573229313, -0.03465007618069649, 0.012963631190359592, 0.025431495159864426, -0.00046478136209771037, -0.013827873393893242, -0.0230062585324049, -0.017820805311203003, -0.02859368361532688, -0.02269807830452919, 0.0010953765595331788, -0.0008868530858308077, 0.027709342539310455, 0.034730471670627594, 0.0009865089086815715, -0.007865272462368011, 0.029236840084195137, -0.022899065166711807, -0.0022359751164913177, -0.0012536534341052175, -0.017807407304644585, -0.015542957931756973, 0.013204814866185188, -0.024868734180927277, 0.003338051261380315, -0.01092026848345995, 0.0063444748520851135, -0.020246043801307678, 0.005496981553733349, -0.02035323530435562, 0.0037852462846785784, -0.01581094041466713, 0.010324007831513882, 0.01254825945943594, 0.013908267952501774, -0.0034100713673979044, 0.025364499539136887, 0.00493756914511323, 0.011154752224683762, -0.032693807035684586, 0.006073142867535353, -0.0007516058976761997, 0.02663741447031498, -0.016655083745718002, 0.026784805580973625, -0.0056343222968280315, 0.0016045424854382873, -0.047272030264139175, -0.002448685932904482, -7.400910544674844e-05, 0.008139954879879951, -0.030362365767359734, -0.0018139034509658813, -0.024279173463582993, -0.01660148799419403, 0.007429801858961582, -0.00883000809699297, -0.027843333780765533, -0.027655746787786484, -0.022363102063536644, -0.016346903517842293, 0.027146579697728157, 0.0035373629070818424, 0.015462563373148441, 0.0008144141756929457, -0.042769934982061386, -0.009928734973073006, -0.016387101262807846, -0.019107120111584663, 0.02238989993929863, -0.03561481460928917, 0.0094731654971838, -0.014055658131837845, -0.014136052690446377, -0.0013139494694769382, 0.007979164831340313, -0.025806671008467674, -0.034221306443214417, 0.010397703386843204, -0.012709048576653004, 0.022684680297970772, 0.03408731520175934, -0.005198851693421602, 0.014953398145735264, -0.014618420042097569, -0.0035876096226274967, 0.0054098875261843204, -0.0055673266761004925, 0.021612752228975296, 0.015918133780360222, -0.0012796142837032676, -0.014189649373292923, 0.019978061318397522, 0.005383089184761047, 0.0187587421387434, 0.018169181421399117, -0.020433630794286728, -0.008441434241831303, 0.02129117213189602, 0.00535294134169817, 0.0039493851363658905, 0.012079290114343166, -0.018477361649274826, 0.005068210419267416, -0.025686077773571014, -0.004093425814062357, -0.00693403510376811, 0.02896885760128498, 0.005470183212310076, -0.0036613047122955322, -0.010685783810913563, -0.0032241588924080133, 0.0006833542138338089, -0.028674079105257988, 0.031889863312244415, -0.01808878779411316, 0.014189649373292923, 0.012729146517813206, 0.01673547923564911, 0.008689317852258682, 0.01042450126260519, -0.015154384076595306, 0.016521092504262924, 0.04132283106446266, 0.009794743731617928, 0.017941396683454514, -0.012655451893806458, 0.013064124621450901, 0.02547169290482998, -0.006113340146839619, 0.04453861340880394, -0.000684191647451371, 0.001184145687147975, 0.02393079549074173, -0.00018894828099291772, 0.031219907104969025, 0.006203784141689539, -0.03306898474693298, 0.006850291043519974, 0.03856261447072029, 0.01498019602149725, 0.012903335504233837, 0.03489126265048981, 0.02693219482898712, 0.027226975187659264, -0.015301774255931377, 0.03411411494016647, -0.020246043801307678, -0.006589008495211601, 0.0034335199743509293, 0.023636015132069588, -0.02023264393210411, 0.0402241051197052, 0.003178936894983053, 0.01325171161442995, 0.012005595490336418, -0.014524626545608044, 0.023716410622000694, 0.028888463973999023, 0.0005158654530532658, -0.0218405369669199, -0.011148053221404552, 0.021264374256134033, -0.008682617917656898, 0.02220231108367443, 0.012340572662651539, 0.010196716524660587, 0.00999572966247797, 0.008414636366069317, -0.018356770277023315, 0.009962232783436775, 0.010370904579758644, 0.01208599004894495, -0.006632555276155472, -0.004947618581354618, -0.026972392573952675, 0.0063176765106618404, 0.00032492823083885014, 0.008917102590203285, -0.01598512940108776, -0.006749797612428665, 0.012025694362819195, -0.009084590710699558, 0.01104085985571146, 0.002527405507862568, 0.020741809159517288, -0.008749613538384438, 0.03615077584981918, -0.01937510073184967, -0.018423765897750854, 0.020500626415014267, 0.021786939352750778, 0.004592542070895433, -0.02023264393210411, -0.004277663305401802, -0.01819598115980625, 0.020071854814887047, 0.0183835681527853, -0.004997864831238985, 0.009566958993673325, -0.01733843795955181, -0.0015224729431793094, -0.016145918518304825, 0.007945667020976543, 0.03850901871919632, -0.025444895029067993, 0.007483398541808128, 0.004559044260531664, -0.00934587325900793, -0.0002506050805095583, -0.01790120080113411, -0.018731944262981415, 0.023086652159690857, -0.022832069545984268, -0.01961628533899784, -0.034167710691690445, -0.005245748441666365, -0.0371423102915287, 0.0030198225285857916, -0.01870514638721943, -0.0014697139849886298, -0.0064516677521169186, -0.010531693696975708, 0.017566222697496414, 0.00286070816218853, -0.0021287822164595127, 0.0413496270775795, 0.01827637478709221, 0.004515497479587793, -0.029129648581147194, 0.0041671209037303925, 0.028459692373871803, 0.06854980438947678, 0.008662519045174122, -0.002534105209633708, 0.013057424686849117, -0.0032844548113644123, -0.00759729091078043, -0.016628285869956017, -0.008052860386669636, 0.015797540545463562, -0.0123673714697361, -0.031836267560720444, 0.008990797214210033, 0.007309210021048784, -0.0047265333123505116, 0.003570860717445612, -0.002785338321700692, 0.0013131119776517153, -0.014564824290573597, -0.009855039417743683, 0.009781344793736935, 0.025418097153306007, -0.00481362733989954, 0.021693145856261253, 0.011744312942028046, 0.027468159794807434, 0.0027032687794417143, 0.03341735899448395, 0.02307325415313244, -0.0038254435639828444, -0.013472797349095345, -0.01552955899387598, 0.010149819776415825, 0.02117058075964451, 0.012755945324897766, -0.03100552223622799, 0.017418833449482918, -0.016320105642080307, -0.014899801462888718, -0.018678348511457443, 0.011114555411040783, 0.023528823629021645, 0.03515924513339996, 0.0026295736897736788, -7.09733649273403e-05, -0.001139761065132916, -0.01386807020753622, -0.00224434956908226, 0.019147315993905067, -0.007536994758993387, 0.0082136495038867, 0.005279246252030134, 0.00987513829022646, -0.01636030338704586, 0.023033056408166885, 0.008930501528084278, -0.017874402925372124, 0.005158654414117336, 0.0006268267170526087, -0.032452624291181564, -0.02362261712551117, -0.026798203587532043, -0.009922035038471222, -0.0008642420871183276, -0.003962784539908171, -0.01386807020753622, -0.009828241541981697, 0.011998895555734634, -0.011295443400740623, -0.0313538983464241, 0.012963631190359592, 0.019026724621653557, -0.05198851600289345, -0.04169800505042076, 0.0073226094245910645, 0.021679747849702835, 0.022671280428767204, -0.010069425217807293, 0.010652286000549793, 0.002679820405319333, 0.003467017551884055, 0.02233630232512951, -0.018410366028547287, -0.010833173990249634, -0.037356697022914886, 0.0007361131720244884, -0.016346903517842293, -0.02535110153257847, -0.0030566700734198093, 0.003200710518285632, -0.012608555145561695, -0.008803210221230984, 6.458786083385348e-05, 0.014846204780042171, 0.009700950235128403, -0.003217459423467517, 0.026918796822428703, 0.016655083745718002, 0.002696569310501218, 0.01906692236661911, -0.028325701132416725, 0.009104689583182335, 0.001951244194060564, -0.026798203587532043, -0.017686814069747925, 0.012179783545434475, 0.0015467588091269135, -0.012588456273078918, -0.0012586781522259116, 0.004894021898508072, -0.0015291725285351276, 0.011945299804210663, 0.0015626702224835753, 0.011757711879909039, 0.0003347681777086109, 0.007114923093467951, -0.02288566529750824, -0.003952735103666782, 0.02423897571861744, 0.018316572532057762, -0.003034896682947874, -0.009386071003973484, -0.013003828935325146, 0.021934330463409424, -0.003778546815738082, -0.00962055567651987, 0.02139836549758911, 0.027521755546331406, -0.01106765866279602, -0.020098652690649033, -0.0020818854682147503, -0.012226680293679237, 0.005081609357148409, -0.0036646544467657804, -0.010578591376543045, -0.01100736204534769, 0.00796576589345932, -0.008240447379648685, 0.0027434660587459803, -0.0187587421387434, -0.006069793365895748, -0.02016564831137657, 0.007985864765942097, 0.013667084276676178, -0.012065891176462173, 0.030603548511862755, -0.025418097153306007, -0.00622723251581192, 0.011027460917830467, 0.012327173724770546, 0.010759478434920311, -0.013633586466312408, -0.013854671269655228, -0.01796819642186165, -0.02078200690448284, 0.007590591441839933, -0.02129117213189602, -0.0069072372280061245, 0.002388390013948083, 0.061850253492593765, 0.023448428139090538, 0.0035005153622478247, 0.008776411414146423, 0.020634617656469345, 0.005496981553733349, -0.016695281490683556, -0.012092689983546734, -0.013975263573229313, -0.014256644062697887, 0.02072841115295887, 0.01534197200089693, 0.004877272993326187, -0.0030198225285857916, -0.008253847248852253, 0.009942133910953999, 0.016253110021352768, 0.025297503918409348, -0.006187035236507654, -0.0062406319193542, -0.04132283106446266, -0.05552588030695915, -0.004883972462266684, 0.04188559204339981, -0.017914598807692528, 0.017753809690475464, -0.024640949442982674, 0.0064248694106936455, 0.008749613538384438, -0.00542998593300581, 0.024640949442982674, 0.015301774255931377, 0.033122580498456955, -0.0028690826147794724, -0.008200250566005707, 0.01519458182156086, -0.021545756608247757, -0.02023264393210411, -0.009419568814337254, -0.0351860411465168, -0.016387101262807846, 0.005677869543433189, 0.013459398411214352, 0.010431201197206974, -0.010337406769394875, -0.004964367486536503, 0.0029762755148112774, 0.019844070076942444, -0.022188913077116013, -0.019200913608074188, -0.00022129454009700567, -0.021880732849240303, 0.0056075239554047585, -0.017418833449482918, -0.022376500070095062, -0.005426636431366205, -0.01448442880064249, -0.02054082415997982, 0.021358167752623558, 0.008937201462686062, -0.03221144154667854, -0.005326143000274897, 0.032747406512498856, 0.016145918518304825, 0.043037913739681244, 0.009278878569602966, 0.028647279366850853, 0.0022878965828567743, -0.0002665165229700506, -0.009942133910953999, -0.0324794240295887, 0.0037885960191488266, -0.004036479629576206, 0.01319811586290598, 0.02682500146329403, -0.019964661449193954, 0.009077891707420349, 0.005031362641602755, -0.025176912546157837, 0.008850106969475746, -0.03432849794626236, 0.007885371334850788, 0.012688949704170227, -0.002508981851860881, -0.0348108671605587, -0.02583346888422966, 0.007121622562408447, 0.012400869280099869, 0.007309210021048784, 0.029236840084195137, 0.001246953965164721, -0.003915887326002121, 0.014002061448991299, 0.035266436636447906, -0.029263637959957123, 0.03727630153298378, -0.01930810511112213, -0.0056075239554047585, -0.01709725335240364, -0.009278878569602966, 0.0003866897022817284, -0.03202385455369949, 0.011027460917830467, 0.02029963955283165, 0.0020433629397302866, -0.0024034639354795218, 0.0025424796622246504, 0.01975027658045292, -0.00349046615883708, -0.0008483306155540049, -0.021920930594205856, 0.031273502856492996, -0.004662887658923864, -0.021425163373351097, 0.007195317652076483, -0.01292343344539404, 0.004080026410520077, -0.015516160055994987, -0.010980564169585705, -0.005389788653701544, 0.0069876317866146564, 0.00552042992785573, 0.00211538327857852, 0.002735091606155038, -0.01857115514576435, 0.0021287822164595127, 0.009097990579903126, -0.011583523824810982, 0.015006993897259235, 0.004961017519235611, -0.004394905641674995, -0.02977280505001545, -0.02324744127690792, 0.006093241740018129, -0.0054768831469118595, 0.019723478704690933, -0.005235699005424976, -0.019669881090521812, -0.010578591376543045, 0.031836267560720444, -0.011576823890209198, -0.011670617386698723, 0.018906133249402046, 0.02699919044971466, -0.029692409560084343, 0.023903997614979744, -0.00934587325900793, -0.0007218766259029508, 0.02934403344988823, -0.002574302488937974, -0.026168446987867355, -0.020138850435614586, -0.00502801313996315, -0.007416402921080589, 0.007369506172835827, 0.0026714459527283907, 0.009144887328147888, 0.0007545369444414973, 0.0014454281190410256, 0.007068026345223188, -0.018115585669875145, 0.0006837729015387595, -0.004877272993326187, 0.00041725640767253935, 0.0066895014606416225, -0.021264374256134033, -0.0024654348380863667, -0.027709342539310455, 0.031219907104969025, -0.004957667551934719, -0.04102804884314537, -0.026369431987404823, -0.04729883000254631, 0.008682617917656898, -0.004314510617405176, -0.0008035274222493172, 0.0034000221639871597, -0.018932931125164032, -0.009426267817616463, 0.01733843795955181, -0.014028859324753284, 0.0034150960855185986, 0.018986526876688004, -0.020902598276734352, 0.010411102324724197, 0.021183980628848076, -0.012776044197380543, -0.051023781299591064, -0.0014613395323976874, -0.010940366424620152, -0.03044275939464569, 0.0014018809888511896, -0.00929227750748396, 0.05509710684418678, 0.014350438490509987, -0.023609217256307602, -0.020942796021699905, -0.014524626545608044, -0.06860340386629105, 0.003932636231184006, -0.029933594167232513, 0.032318633049726486, 0.05011264234781265, 0.03818744048476219, 0.01021011546254158, 0.016346903517842293, 0.004562394227832556, 0.021947728469967842, -0.02461414970457554, 0.006749797612428665, -0.028647279366850853, -0.0328545980155468, -0.010257012210786343, -0.01881233975291252, -0.0409744530916214, -0.0012285301927477121, 0.006287528667598963, -0.031461089849472046, 0.0146988146007061, 0.01678907498717308, -0.023274241015315056, 0.01429684180766344, -0.01973687671124935, 0.02158595249056816, 0.028325701132416725, 0.03223823755979538, 0.014806007966399193, -0.024386364966630936, 0.005058160983026028, 0.0006352011696435511, -0.01082647405564785, -0.019361702725291252, 0.021076787263154984, 0.02515011467039585, 0.0029662263114005327, 0.012802842073142529, 0.0013650335604324937, 0.00039527349872514606, 0.0016053798608481884, -0.009339174255728722, 0.010612089186906815, 0.010283811017870903, 0.016400501132011414, 0.031595081090927124, -0.011449532583355904, 0.0021689797285944223, -0.018651550635695457, 0.0002801249793265015, 0.012769344262778759, 0.00882330909371376, 0.011529927141964436, -0.033980123698711395, -0.005235699005424976, -0.021639550104737282, 0.0029813002329319715, 0.01593153178691864, -0.009419568814337254, -0.010437900200486183, 0.008943900465965271, -0.03775867074728012, -0.02091599814593792, 0.005084959324449301, -0.00698093231767416, -0.012956931255757809, -0.016896268352866173, -0.007014429662376642, -0.0022979460190981627, -0.0015911433147266507, -0.0035474123433232307, -0.0024001142010092735, -0.004147022031247616, -0.01313781924545765, 0.00026505099958740175, -0.04033129662275314, 0.009158286266028881, 0.02017904818058014, -0.014243245124816895, -0.005788411945104599, 0.20505985617637634, -0.0015492711681872606, 0.006589008495211601, 0.021786939352750778, 0.02368961274623871, 0.001865824917331338, 0.002137156669050455, -0.0060094972141087055, -0.01472561340779066, -0.007168519776314497, 0.006247331388294697, 0.013486196286976337, -0.0405992791056633, -0.0015417342074215412, 0.0151677830144763, -0.02355562150478363, -0.0332297720015049, -0.010632187128067017, 0.002716667950153351, 0.01820937916636467, 0.00042395596392452717, -0.006334425415843725, -0.01451122760772705, -0.009915335103869438, 0.013372303918004036, 0.005775013007223606, -0.010712581686675549, 0.021304572001099586, 0.019978061318397522, 0.02134476974606514, 0.008588824421167374, -0.008066259324550629, 0.02084900252521038, -0.011489730328321457, -0.002892531221732497, -0.00796576589345932, 0.0037082014605402946, -0.0299603920429945, -0.007356106769293547, -0.0030449458863586187, 0.006900537293404341, -0.0027267171535640955, 0.008126555010676384, -0.02840609662234783, 0.004518846981227398, -0.01826297678053379, -0.01455142442137003, 0.001205081702210009, 0.0003665910626295954, 0.01175101287662983, -0.009674151428043842, -0.008119856007397175, 0.027079585939645767, -0.0031856365967541933, -0.006146837957203388, 0.013680483214557171, -0.020192446187138557, 0.017941396683454514, -0.0006892163073644042, -0.012796142138540745, -0.007704483810812235, 0.010451299138367176, 0.012441066093742847, -0.00399628235027194, -0.02977280505001545, 0.029692409560084343, -0.0019244459690526128, 0.03813384473323822, 0.014966797083616257, 0.013090922497212887, -0.01908032037317753, 0.0017569572664797306, -0.03186306357383728, -0.001433703931979835, -0.008160052821040154, -0.006712950300425291, 0.01819598115980625, 0.019455496221780777, 0.0371423102915287, 0.005560627207159996, 0.00836103968322277, 0.02012545056641102, -0.032640211284160614, 0.0012821265263482928, 0.032827798277139664, -0.004837075714021921, 0.02502952329814434, -0.03341735899448395, 0.010786277242004871, -0.011523228138685226, -0.002304645488038659, 0.012742546387016773, 0.007235514931380749, -0.0270661860704422, 0.005362990777939558, 0.003150463802739978, 0.02232290431857109, 0.009030994959175587, -0.02515011467039585, -0.03797305375337601, 0.004478649701923132, 0.039152175188064575, 0.017298240214586258, 0.042716335505247116, -0.0009002521401271224, 0.009975631721317768, -0.011603622697293758, 0.015784142538905144, 0.010873370803892612, -0.016695281490683556, 0.009674151428043842, -0.04301111772656441, 0.01999145932495594, -0.01251476164907217, -0.0189463309943676, 0.025806671008467674, 0.023153647780418396, -0.0040565780363976955, 0.020272841677069664, -0.003503865096718073, 0.017727011814713478, 0.013064124621450901, 0.0031018920708447695, -0.0009295627241954207, -0.00923198089003563, -0.027226975187659264, 0.0012101064203307033, 0.011275344528257847, -0.028674079105257988, -0.028620481491088867, 0.020406832918524742, -0.024011190980672836, 0.0218405369669199, -0.006069793365895748, -0.004696385469287634, -0.018155783414840698, -0.0052624973468482494, -0.0124812638387084, 0.01534197200089693, -0.003919237293303013, 0.005989398807287216, 0.010444600135087967, 0.016936464235186577, 0.0003157163446303457, -0.0024604101199656725, 0.01448442880064249, -0.016132518649101257, 0.0068402416072785854, -0.024520356208086014, -0.004880622960627079, 0.009205183014273643, -0.012092689983546734, -0.017727011814713478, -0.021076787263154984, 0.026838401332497597, -0.021264374256134033, -0.023354634642601013, -0.012474563904106617, 0.002222575945779681, 0.0168024729937315, -0.058152101933956146, 0.006421519443392754, 0.03738349303603172, -0.005550577770918608, -0.009680851362645626, -0.009573657996952534, -0.16861429810523987, 0.0006703738472424448, 0.008079658262431622, -0.01374747883528471, -0.0068268426693975925, 0.024707943201065063, 0.003343075979501009, -0.008273945190012455, -0.021800339221954346, 0.003879040013998747, 0.011483030393719673, -0.016065523028373718, -0.04164440929889679, -0.018664948642253876, 0.010169918648898602, -0.024828536435961723, -0.00033288393751718104, 0.02971920743584633, 0.05099698156118393, 0.0033966724295169115, 0.018102187663316727, -0.02386379987001419, -0.02146536111831665, -0.0018875985406339169, 0.014216447249054909, 0.012461164966225624, 0.0017787307733669877, 0.03837502747774124, -0.006692851427942514, -0.03569520637392998, 0.017110653221607208, -0.012166384607553482, 0.016695281490683556, 0.001580256619490683, 0.0011154751991853118, -0.010337406769394875, 0.005664470139890909, -0.0147926090285182, -0.01491320040076971, 0.028218509629368782, 0.036070384085178375, 0.012709048576653004, 0.015784142538905144, 0.021023191511631012, 0.03652595356106758, 0.016159316524863243, 0.040867261588573456, -0.018102187663316727, 0.025739675387740135, 0.008280645124614239, 0.017861003056168556, -0.018423765897750854, 0.007751380559056997, 0.015221379697322845, 0.011576823890209198, 0.0015291725285351276, 0.012749245390295982, 0.016775675117969513, 0.01316461805254221, -0.006830192171037197, 0.016990061849355698, -0.0057549141347408295, 0.008079658262431622, -0.010257012210786343, -0.01776720955967903, -0.03365854546427727, 0.0024168631061911583, 0.030281970277428627, -0.003550762077793479, 0.02461414970457554, 0.011449532583355904, 0.019589487463235855, 0.0028690826147794724, 0.011181551031768322, 0.01839696615934372, 0.01153662707656622, -0.01783420518040657, 0.015301774255931377, 0.025364499539136887, -0.006880438886582851, 0.008481631986796856, 0.021478760987520218, 0.012554958462715149, -0.008206949569284916, -0.013908267952501774, -0.01211948785930872, -0.0046997349709272385, 0.0012578406604006886, -0.002143856370821595, -0.003135389881208539, 0.027709342539310455, -0.016320105642080307, -0.019790474325418472, 0.002574302488937974, 0.01006272528320551, 0.004981116391718388, 0.015140985138714314, -0.002987999701872468, -0.013841272331774235, 0.00020873289031442255, 0.0018624751828610897, 0.017552822828292847, -0.03205065056681633, 0.02326084114611149, 0.02792372927069664, 0.018611352890729904, 0.021639550104737282, -0.0032894795294851065, 0.020433630794286728, -0.01987086795270443, -0.031514689326286316, 0.014886402525007725, 0.033551350235939026, 0.008421335369348526, -0.03389972820878029, 0.03561481460928917, -0.010257012210786343, -0.011730914004147053, -2.7216925445827655e-05, -0.028432894498109818, 0.031219907104969025, -0.027106383815407753, -0.02029963955283165, 0.005346241872757673, 0.0028774570673704147, -0.03063034638762474, -0.11598262935876846, -0.02663741447031498, 0.015918133780360222, 0.017686814069747925, -0.003277755342423916, 0.004193918779492378, 0.010317308828234673, 0.04212677478790283, -5.684150164597668e-05, 0.02430597133934498, -0.012755945324897766, 0.0011523227440193295, -0.00818015169352293, -0.011215047910809517, 0.008776411414146423, -0.017445631325244904, 0.008950600400567055, -0.011268644593656063, -0.009352573193609715, 0.03738349303603172, 0.0026211992371827364, -0.008474932052195072, 0.012628654018044472, 0.005785062443464994, 0.0003190661082044244, -0.013988662511110306, -0.02737436443567276, 0.009158286266028881, 0.014806007966399193, 0.015087388455867767, 0.027575351297855377, -0.01371398102492094, 0.006418169941753149, -0.02189413271844387, 0.014859603717923164, -0.004770080093294382, -0.018008392304182053, -0.0005862106918357313, 0.001993116457015276, -0.014350438490509987, 0.012179783545434475, -0.017740411683917046, 0.0030566700734198093, -0.03180946782231331, -0.005677869543433189, -0.007376205641776323, -0.025632482022047043, 0.018986526876688004, -0.002011540113016963, 0.002987999701872468, -0.036874327808618546, -0.02829890325665474, -0.043145108968019485, -0.035775601863861084, 0.005805160850286484, 0.02732076868414879, 0.006063093431293964, 0.008555326610803604, -0.01795479655265808, 0.008970698341727257, 0.01331200823187828, 0.004183869808912277, -0.007644187659025192, 0.02386379987001419, 0.005282595753669739, 0.025860266759991646, -0.011730914004147053, -0.012849738821387291, -0.012963631190359592, -0.00897739827632904, -0.023636015132069588, 0.0015894684474915266, -0.012327173724770546, 0.015033792704343796, -0.03242582827806473, -0.00618368573486805, -0.006002797745168209, -0.03456968441605568, 0.013030626811087132, 0.021116985008120537, -0.012682249769568443, -0.014122653752565384, 0.0020902599208056927, -0.03341735899448395, 0.005677869543433189, 0.004448501858860254, 0.020768608897924423, -0.004870573524385691, 0.032318633049726486, -0.033604945987463, 0.01567694917321205, 0.02557888627052307, 0.005225649569183588, 0.008943900465965271, 0.005048111546784639, 0.011851505376398563, -0.022523891180753708, -0.015181182883679867, 0.005945851560682058, 0.016708679497241974, 0.0026262239553034306, 0.008555326610803604, -0.035400427877902985, 0.005218950100243092, 0.02159935235977173, 0.0024855334777384996, 0.017378635704517365, -0.014739012345671654, 0.010960465297102928, -0.011737613007426262, -0.0009714348707348108, 0.003915887326002121, -0.021331369876861572, -0.000757467991206795, 0.00883000809699297, 7.107805140549317e-05, -0.0324794240295887, -0.0005506193265318871, 0.009138187393546104, -0.011047559790313244, -0.006431568879634142, 0.013379002921283245, -0.024895532056689262, 0.0013524718815460801, -0.011154752224683762, 0.019455496221780777, -0.037865862250328064, 0.004900721367448568, -0.01617271639406681, 0.004291062243282795, -0.016320105642080307, -0.04282353073358536, 0.016145918518304825, -0.004063277505338192, -0.011523228138685226, 0.018061989918351173, -0.009285577572882175, -0.029370831325650215, 0.014203048311173916, -0.00818015169352293, 0.020071854814887047, 0.015274976380169392, -0.011154752224683762, -0.027575351297855377, 0.02515011467039585, -0.03419450670480728, -0.01944209635257721, -0.01908032037317753, -0.009861739352345467, -0.021492158994078636, 0.0011447857832536101, 0.0032241588924080133, 0.05340882018208504, 0.021679747849702835, -0.029236840084195137, -0.006712950300425291, -0.007007730193436146, 0.007248914334923029, 0.014404034242033958, 0.019844070076942444, 0.01079297624528408, 0.001016656868159771, 0.02835249900817871, 0.0006820980343036354, 0.008407936431467533, -0.013151218183338642, -0.0032090849708765745, -0.024654347449541092, -0.053730398416519165, -0.01653449237346649, -0.004374806769192219, -0.02687859907746315, 0.012280276976525784, -0.02343503013253212, 0.03537362813949585, 0.005399838089942932, 0.005805160850286484, 0.008856805972754955, -0.003631156636402011, -0.00959375686943531, -0.005868806503713131, 0.03328336775302887, 0.01310432143509388, -0.01618611440062523, -0.027012590318918228, 0.007476699072867632, 0.024064786732196808, 0.00155680812895298, -0.013084223493933678, 0.031782668083906174, 0.011791209690272808, -0.007590591441839933, -0.008387837558984756, 0.008481631986796856, -0.03510564565658569, 0.018115585669875145, 0.0063042775727808475, 0.014618420042097569, -0.008943900465965271, 0.016346903517842293, 0.002468784572556615, 0.02945122681558132, 0.0010317309061065316, 0.015328573063015938, 0.017298240214586258, -0.0072824121452867985, 4.150581298745237e-05, -0.009540160186588764, -0.01846396178007126, -0.021076787263154984, 0.026222042739391327, 0.020648015663027763, 0.0051117572002112865, -0.023167047649621964, 0.008059559389948845, 0.004348008427768946, -0.011885003186762333, 0.0029210043139755726, 0.00572141632437706, -0.016896268352866173, -0.02103658951818943, -0.009104689583182335, 0.0029143046122044325, 0.024949127808213234, 0.015730544924736023, -0.0216529481112957, 0.02638283185660839, -0.024815136566758156, 0.0028573584277182817, -0.015542957931756973, 0.011355739086866379, -0.012822940945625305, -0.007684384938329458, 0.01512758620083332, -0.0036244571674615145, -0.017552822828292847, -0.022121917456388474, -0.01648089475929737, -0.028700876981019974, 0.013633586466312408, -0.0013256736565381289, 0.07626768946647644, 0.031648680567741394, 5.139811764820479e-05, -0.007255613803863525, -0.013841272331774235, 0.005888905376195908, 0.012956931255757809, 0.0004342146567068994, 0.003654605010524392, -0.007376205641776323, 0.017016859725117683, -0.008173451758921146, -0.014953398145735264, -0.009901936165988445, -0.01002922747284174, -0.004100125283002853, 0.004880622960627079, 0.027521755546331406, -0.02042023092508316, 0.013325407169759274, 0.03044275939464569, 0.006364573258906603, 0.01027711108326912, -0.023100052028894424, -0.027789738029241562, -0.020433630794286728, 0.032559819519519806, 0.012816241011023521, -0.006582309026271105, -0.024935727939009666, 0.01079297624528408, 0.006893837824463844, -0.022966060787439346, -0.013693882152438164, -0.01753942482173443, 0.006267429795116186, -0.0020701612811535597, -0.021076787263154984, -0.011563424952328205, 0.01079297624528408, 0.012715747579932213, 0.015006993897259235, -0.01512758620083332, -0.0170302577316761, 0.0010074449237436056, -0.008294044062495232, -0.021250976249575615, 0.006699550896883011, 0.008963999338448048], "bc7a6092-63e8-4c2a-8f18-563f5472822b": [0.011305801570415497, -0.007601700257509947, 0.012971265241503716, -0.0341109037399292, -0.006164287682622671, 0.011202141642570496, -0.014940796419978142, -0.0341109037399292, -0.002710697241127491, -0.045416705310344696, 0.005832577124238014, 0.034608468413352966, 0.00909439753741026, -0.022487211972475052, -0.01686195284128189, 0.0323970653116703, 0.027393763884902, -0.006762058008462191, 0.004042722284793854, 0.001651642145588994, -0.02149208076298237, 0.0011661698808893561, -0.020718088373541832, -0.013033460825681686, -0.01771887205541134, 0.011886294931173325, 0.0144432308152318, -0.010932627134025097, -0.025721389800310135, 0.0334751233458519, -0.003662637434899807, -0.010407418943941593, -0.01542454119771719, 0.011416371911764145, -0.0158806424587965, 0.004643947817385197, -0.013171673752367496, 0.014360303059220314, 0.018092047423124313, 0.00015408560284413397, 0.031761284917593, 0.019792063161730766, -0.0017466633580625057, -0.009018381126224995, -0.010061887092888355, 0.022017288953065872, 0.005314279347658157, -0.0037110119592398405, -0.0181196890771389, 0.0015574847348034382, -0.015079009346663952, -0.013130209408700466, -0.04298416152596474, 0.0085277259349823, -0.013883468694984913, -0.011409461498260498, 0.01697252318263054, -0.01542454119771719, 0.002902467269450426, 0.008278942666947842, 0.00365918199531734, -0.0012093613622710109, -0.0166269913315773, -0.0013847188092768192, -0.01893514394760132, -0.02645391784608364, -0.020027024671435356, -0.012943622656166553, -0.01729041337966919, -0.012404592707753181, 0.028941746801137924, 0.02074573189020157, 0.0022891482803970575, 0.008755777031183243, -0.016419673338532448, -0.012991996482014656, -0.008465529419481754, -0.021478258073329926, -0.020303450524806976, -0.009191147051751614, 0.015977391973137856, -0.016253817826509476, -0.03532717376947403, -0.012328575365245342, 0.035271890461444855, 0.028665320947766304, 0.010365954600274563, -0.011374907568097115, -0.013717614114284515, 0.010075707919895649, 0.029660452157258987, 0.0032497269567102194, 0.019584743306040764, 0.016654634848237038, 0.0013873103307560086, 0.016723740845918655, -0.002902467269450426, 0.016336744651198387, -0.012929800897836685, -0.023454701527953148, -0.014042413793504238, -0.007532593794167042, -0.014332660473883152, -0.008569189347326756, -0.027642546221613884, 0.0027590717654675245, 0.02370348386466503, -0.0017743059433996677, -0.008119997568428516, 0.013904200866818428, -0.02805718407034874, 0.03632230684161186, -0.011996865272521973, 0.004419351927936077, 0.010034244507551193, 0.003308467334136367, 0.035631243139505386, -0.030434444546699524, -0.0016645996365696192, -0.016170889139175415, 0.0014624635223299265, -0.01365541759878397, 0.04389636218547821, -0.010455792769789696, 0.023482343181967735, 0.0014754208968952298, 0.010725308209657669, -0.010600916109979153, 0.009522857144474983, -0.00651327520608902, 0.01176881417632103, 0.0013916294556111097, -0.0038112159818410873, 0.01564568094909191, -0.019778242334723473, 0.007988695986568928, -0.006506364326924086, 0.020496947690844536, -0.004011624492704868, -0.03748329356312752, 0.020856302231550217, 0.028361253440380096, 0.015466004610061646, -0.010359044186770916, -0.0021198377944529057, 0.032286494970321655, -0.00534537760540843, 0.025279108434915543, 0.015120472759008408, 0.004478092305362225, 0.014885511249303818, -0.01910099945962429, -0.018852217122912407, 0.008265121839940548, 0.022031109780073166, 0.0025880334433168173, 0.003952884115278721, 0.021436795592308044, -0.02436690405011177, -0.007097223773598671, -0.01349647343158722, 0.003146067261695862, -0.0022407739888876677, -0.012591179460287094, -0.008617564104497433, 0.04118739441037178, 0.006136645097285509, -0.004737241193652153, -0.004294960759580135, -0.014954617246985435, -0.0010581911774352193, 0.016530243679881096, -0.02447747439146042, 0.017981477081775665, 0.016101783141493797, 0.009073666296899319, 0.009847656823694706, -0.0034086715895682573, -0.001726795337162912, -0.033143412321805954, 0.02660595066845417, -0.0011791273718699813, -0.0061020920984447, 0.022431926801800728, -0.018727825954556465, -0.014152984134852886, 0.03977762535214424, 0.02483682706952095, -0.0037766629830002785, -0.011450924910604954, 0.00449882447719574, 0.008458619005978107, -0.0069970195181667805, 0.0067966110073029995, -0.6271541118621826, -0.0020006292033940554, 0.021409152075648308, -0.021920539438724518, -0.00835496000945568, 0.015231043100357056, 0.02212785929441452, -0.00652364082634449, -0.022542497143149376, 0.03438732773065567, 0.016322923824191093, -0.0016127697890624404, -0.01035213377326727, -0.020759552717208862, -0.004415896721184254, -0.03524424508213997, 6.08999835094437e-05, -0.025693746283650398, 0.00016607122961431742, 0.009916763752698898, -0.022058751434087753, 0.024892112240195274, -0.001241323072463274, -0.003223811974748969, -0.005193343386054039, -0.02059369720518589, 0.0211050845682621, -0.017124557867646217, -0.0009666252881288528, 0.02346852235496044, -0.011955400928854942, 0.017166022211313248, 0.012694839388132095, 0.023330308496952057, 0.04140853509306908, -0.010642380453646183, -0.01125742681324482, 0.01467819232493639, 0.01615706831216812, 0.037510935217142105, -0.02157500758767128, -0.01882457360625267, 0.01748391054570675, 0.017400983721017838, 0.001115203951485455, -0.006872627884149551, 0.017981477081775665, 0.007028117310255766, -0.012667196802794933, -0.006250670645385981, 0.001972986850887537, -0.007263079285621643, -0.004098007455468178, -0.0012456421973183751, 0.00459902873262763, 0.006492543034255505, 0.008320406079292297, -0.023689663037657738, -0.0019021527841687202, -0.005196798592805862, 0.018257901072502136, 0.013987128622829914, -0.015507468953728676, -0.04024754837155342, -0.04936958849430084, -0.0002492148196324706, -0.0019574377220124006, -0.011810277588665485, 0.01867254078388214, -0.006309411022812128, 0.030987294390797615, -0.011050107888877392, 0.0037490203976631165, -0.008603742346167564, -0.009681802242994308, 0.01607414148747921, 0.02172704227268696, -0.02648155950009823, -0.018796931952238083, 0.01677902601659298, -0.004136016126722097, -0.006952100433409214, -0.015092830173671246, -0.004453905392438173, 0.019087178632616997, -0.002019633539021015, -0.009439929388463497, -0.012273290194571018, 0.0009070210508070886, -0.003228995017707348, 0.006682585459202528, 0.027421405538916588, -0.012833052314817905, -0.01281232014298439, 0.0046646795235574245, 0.023053884506225586, -0.004357156343758106, -0.011195231229066849, -0.005770381540060043, -0.01092571672052145, -0.02176850475370884, -0.025099432095885277, 0.014830226078629494, 0.008396423421800137, 0.0332539826631546, 0.02822303958237171, -0.022293712943792343, -0.02503032609820366, 0.03355805203318596, -0.020427841693162918, -0.014415588229894638, -0.00015743293624836951, -0.025444963946938515, -0.0023738036397844553, 0.024159586057066917, -0.022625423967838287, 0.0014011316234245896, -0.010918806307017803, 0.008652117103338242, -0.006668764166533947, -0.014318838715553284, -0.012874515727162361, 0.021865254268050194, -0.008265121839940548, 0.008050891570746899, 0.015313970856368542, 0.011077750474214554, 0.0034397693816572428, 0.015604217536747456, -0.004782160744071007, -0.006081360392272472, -0.022625423967838287, 0.008976916782557964, -0.0050516752526164055, 0.036764588207006454, -0.01234239712357521, 0.031457219272851944, -0.01720748469233513, -0.0010875614825636148, -0.047572821378707886, -0.005856764502823353, 0.004751062486320734, 0.011278158985078335, -0.02841653861105442, -0.00046733178896829486, -0.026910018175840378, -0.007394381333142519, 0.006378517486155033, -0.006724049337208271, -0.0244083683937788, -0.024975040927529335, -0.005027488339692354, -0.006250670645385981, 0.012736303731799126, -0.010877341963350773, 0.0016861953772604465, 0.009004559367895126, -0.04099389538168907, -0.0037317436654120684, -0.024657150730490685, -0.009598874486982822, 0.012556626461446285, -0.01893514394760132, 0.004661224316805601, -0.018133509904146194, -0.004757973365485668, -0.005331556312739849, -0.0006051126401871443, -0.016557885333895683, -0.03588002547621727, 0.01173426117748022, -0.01720748469233513, 0.006312866695225239, 0.030627941712737083, -0.010773682035505772, 0.02624659799039364, -0.012287111952900887, -0.0029836674220860004, -0.00030428398167714477, -0.008272032253444195, 0.007726091891527176, 0.018658718094229698, -0.006119368597865105, 0.005887862294912338, 0.028153933584690094, 0.010835878551006317, 0.0053902966901659966, 0.0021215653978288174, -0.033696264028549194, 0.008196014910936356, 0.016571706160902977, 0.016917238011956215, -0.002225225092843175, 0.006167743355035782, -0.012059060856699944, 0.0026001271326094866, -0.036101166158914566, 0.0005753104924224317, -0.004951470997184515, 0.025210002437233925, 0.020566053688526154, 0.018948964774608612, -0.015079009346663952, 0.003835403360426426, 0.013130209408700466, -0.011340354569256306, 0.011326533742249012, -0.012314754538238049, 0.013952575623989105, 0.018686361610889435, -0.004066909663379192, -0.0022839654702693224, -0.001003769924864173, -0.004288049880415201, 0.01693105883896351, 0.02503032609820366, 0.023675840348005295, 0.026633594185113907, -0.0013570762239396572, 0.015783894807100296, 0.010027334094047546, -0.0015713060274720192, 0.04146381840109825, 0.007981785573065281, -0.0014374124584719539, 0.024076657369732857, -0.0051069604232907295, 0.027462869882583618, 0.008396423421800137, -0.02726937271654606, 0.0022234972566366196, 0.027753116562962532, 0.004021990578621626, 0.012991996482014656, 0.04630126431584358, 0.03065558336675167, 0.02330266684293747, -0.012459877878427505, 0.03488489240407944, -0.0007359827868640423, -0.0019487994723021984, -0.002817812142893672, 0.016958702355623245, -0.02451893873512745, 0.03167835995554924, -0.014360303059220314, 0.011644423007965088, 0.0033205607905983925, -0.02272217348217964, 0.03170600160956383, 0.02236282080411911, 0.007656985428184271, -0.022155500948429108, -0.021035978570580482, 0.031180791556835175, -0.006098636891692877, 0.04339879751205444, 0.008942363783717155, 0.01440176647156477, 0.017705051228404045, 0.009654159657657146, -0.017815621569752693, 0.01064929086714983, -0.011202141642570496, 0.003242816310375929, 0.0006115913274697959, -0.011637511663138866, -0.02451893873512745, 0.004136016126722097, -0.013468830846250057, 0.010200100019574165, -0.010068797506392002, 0.0016965613467618823, 0.008500083349645138, -0.0001069529025699012, 0.0048789093270897865, -0.003980526700615883, 0.0029802119825035334, -0.004405530635267496, 0.020303450524806976, -0.03549303114414215, -0.02063516154885292, 0.018479041755199432, 0.020759552717208862, 0.009488304145634174, -0.013759077526628971, -0.0069693769328296185, -0.020662803202867508, 0.024781543761491776, 0.008887078613042831, -0.018852217122912407, -0.01285378448665142, -0.009039112366735935, -0.00553196482360363, -0.004795982036739588, 0.013717614114284515, 0.03991583734750748, -0.01831318624317646, -0.008223657496273518, 0.025762854143977165, 0.010289938189089298, 0.009453751146793365, -0.02487829141318798, -0.01594974845647812, 0.03112550638616085, -0.01131962239742279, -0.030627941712737083, -0.017318055033683777, -0.0005817892379127443, -0.029052317142486572, -0.0015557570150122046, -0.004080730956047773, -0.028582392260432243, -0.007836662232875824, -0.021740863099694252, 0.0070523046888411045, 0.003308467334136367, 0.0006508955848403275, 0.02012377418577671, 0.004802892450243235, 0.002650229027494788, -0.014180626720190048, 0.0085277259349823, 0.02735229954123497, 0.06556811928749084, -0.0009234338067471981, -0.01116067823022604, 0.012307844124734402, -0.004485003184527159, -0.01355866901576519, -0.02547260746359825, -0.007276900578290224, 0.02543114311993122, 0.002192399464547634, -0.017304234206676483, 0.008583011105656624, -0.00021034250676166266, -0.002499922877177596, 0.006185019854456186, -0.008555368520319462, -0.008707402274012566, -0.020248165354132652, -0.012059060856699944, 0.009958227165043354, 0.007670806720852852, -0.007574057672172785, 0.02861003577709198, 0.002973301336169243, 0.019792063161730766, 0.005649445578455925, 0.04110446572303772, 0.019114820286631584, 0.007359827868640423, -0.021989645436406136, -0.021630292758345604, 0.02822303958237171, 0.010172457434237003, 0.003717922605574131, -0.015548932366073132, 0.023509984835982323, 0.0029266546480357647, -0.021229475736618042, -0.027932792901992798, 0.02283274382352829, 0.001993718557059765, 0.03654344752430916, -7.752870442345738e-05, -0.0023323397617787123, 0.016405850648880005, -0.025652283802628517, -0.01467819232493639, 0.025845780968666077, -0.004771794658154249, -0.005359198898077011, 0.01599121280014515, 0.020690446719527245, -0.014512336812913418, 0.022293712943792343, 0.003717922605574131, -0.01807822473347187, 0.007062670774757862, -0.013669239357113838, -0.03999876603484154, -0.029135243967175484, -0.021284760907292366, -0.02377258986234665, 0.005614892113953829, -0.01690341718494892, -0.020759552717208862, -0.00974399782717228, 0.007539504673331976, -0.004042722284793854, -0.020966870710253716, 0.017580660060048103, -0.0003934743581339717, -0.05860219895839691, -0.025873422622680664, -0.002152663189917803, 0.014926974661648273, 0.011658243834972382, 0.003294646041467786, 0.0038250372745096684, -0.007117955945432186, 0.0066653089597821236, 0.007795197889208794, -0.02935638464987278, 0.00600188784301281, -0.016806667670607567, 0.007705359719693661, -0.022335177287459373, -0.039860550314188004, -0.0009104763739742339, -0.002724518533796072, -0.007491129916161299, -0.004305326379835606, -0.01064929086714983, -0.006972832139581442, 0.005594160407781601, 0.01055254228413105, 0.024740079417824745, 0.03029623068869114, -0.019197748973965645, 0.025997815653681755, -0.026592129841446877, 0.009861478582024574, -0.018852217122912407, -0.01594974845647812, -0.01697252318263054, 0.018962787464261055, 0.006471811328083277, -0.008223657496273518, -0.007180151529610157, -0.0048927306197583675, -0.014844047836959362, 0.002693420508876443, 0.014609085395932198, 0.0011739444453269243, 0.0065685599111020565, 0.005998432636260986, -0.011886294931173325, 0.007988695986568928, 0.016958702355623245, 0.02628806233406067, -0.015396898612380028, -0.0035624331794679165, -0.018686361610889435, 0.03355805203318596, 0.01069075521081686, -0.0062368493527174, 0.007435845211148262, 0.014457051642239094, -0.017511554062366486, -0.020524591207504272, 0.011748082004487514, -0.013330617919564247, 0.0024118120782077312, -0.00966798048466444, -0.0006033849786035717, -0.012508252635598183, -0.009522857144474983, -0.01795383356511593, 0.008202925324440002, -0.005303913727402687, 0.00047424243530258536, -0.018658718094229698, 0.019640028476715088, 0.010739129036664963, -0.005639079492539167, 0.023357952013611794, -0.022293712943792343, -0.01615706831216812, 0.006682585459202528, -0.004108373541384935, 0.025514069944620132, -0.01275012455880642, -0.008804150857031345, -0.03803614526987076, -0.014049324207007885, -0.01192775834351778, -0.020096130669116974, -0.018257901072502136, 0.00017924464191310108, 0.05672250688076019, 0.013385903090238571, 0.019667671993374825, 0.006302500609308481, 0.014014771208167076, 0.015410719439387321, -0.01682049036026001, 0.003213446121662855, -0.019515637308359146, -0.015604217536747456, 0.006534006912261248, -0.009184235706925392, -0.006430347450077534, 0.0027953526005148888, -0.0065962024964392185, 0.01622617430984974, 0.0010668295435607433, 0.018340829759836197, -0.01335826050490141, -0.006312866695225239, -0.02460186555981636, -0.04102154076099396, -0.009951316751539707, 0.03930770233273506, -0.012729392386972904, 0.011153767816722393, -0.030434444546699524, -0.004415896721184254, 0.027324657887220383, -0.006789700593799353, 0.020856302231550217, 0.019626207649707794, 0.03029623068869114, -0.00014274784189183265, 0.0046508582308888435, 0.0053488328121602535, -0.013137119822204113, -0.0114578353241086, -0.015313970856368542, -0.04807038977742195, -0.016571706160902977, 0.0012240464566275477, 0.009011469781398773, 0.015258685685694218, -0.0206766240298748, 5.1316874305484816e-05, 0.011685886420309544, 0.01748391054570675, -0.014318838715553284, -0.037980858236551285, -0.00042478818795643747, -0.014788762666285038, -0.006257581524550915, -0.019087178632616997, -0.028831176459789276, 0.008230567909777164, -0.014118430204689503, 0.00033235843875445426, 0.018244080245494843, 0.01650260016322136, -0.03167835995554924, -0.01650260016322136, 0.025292929261922836, -0.004536833148449659, 0.03568652644753456, 0.018603432923555374, 0.03137429058551788, 0.00784357264637947, -0.008375691249966621, -0.020856302231550217, -0.022818922996520996, 0.017235128208994865, -0.013240779750049114, 0.001301791169680655, 0.03632230684161186, -0.018022939562797546, 0.0005718551692552865, 0.019681492820382118, -0.019640028476715088, 0.012867605313658714, -0.03400033339858055, 0.020953049883246422, 0.0069555556401610374, -0.0014961528358981013, -0.039749979972839355, -0.02758726105093956, -0.010904984548687935, 0.02703441120684147, 0.006509819533675909, 0.023399416357278824, -0.00011888454901054502, -0.007608611136674881, 0.008817972615361214, 0.04237602278590202, -0.013745255768299103, 0.020096130669116974, -0.0024290888104587793, -0.011706618592143059, -0.008023248985409737, 0.003344748169183731, 0.014125341549515724, -0.023910801857709885, 0.012086703442037106, 0.01925303414463997, -0.014650549739599228, 0.006157377269119024, -0.0014590081991627812, 0.012508252635598183, -0.018368471413850784, 0.0022321357391774654, -0.01528632827103138, 0.027407584711909294, 0.00012817070819437504, -0.014035503380000591, -0.006952100433409214, -0.003949428908526897, 0.008189104497432709, -0.01383509486913681, -0.017262769863009453, -0.017400983721017838, -0.004574841354042292, 0.010269206017255783, 0.001993718557059765, 0.011506210081279278, -0.007166330236941576, -0.004270773380994797, 0.009405376389622688, -0.01426355354487896, 0.000755850865971297, 0.011526942253112793, 0.007076492067426443, -0.03162307292222977, -0.029964519664645195, 0.010607827454805374, -0.013648507185280323, 0.021478258073329926, -0.00845170859247446, -0.001763939973898232, -0.003918331116437912, 0.023454701527953148, -0.014332660473883152, -0.010469614528119564, 0.02471243590116501, 0.021671757102012634, -0.03930770233273506, 0.027684010565280914, -0.002194127067923546, -0.0010987912537530065, 0.015438362024724483, -0.00745657691732049, -0.03297755867242813, -0.030821438878774643, 0.0016827400540933013, -0.01925303414463997, 0.010794414207339287, -0.008714312687516212, 0.010441971942782402, 0.015853000804781914, 0.003341292729601264, -0.0028489099349826574, -0.017857085913419724, -0.0022286802995949984, 0.01948799565434456, 0.004015079699456692, 0.007587878964841366, -0.018727825954556465, 0.01568714529275894, -0.0061020920984447, 0.017428625375032425, 0.00041075097396969795, -0.029605166986584663, -0.024823006242513657, -0.02715880237519741, -0.0003643201198428869, 0.009357001632452011, 0.001539344317279756, 0.0049825687892735004, -0.02078719437122345, -0.010400508530437946, 0.02471243590116501, -0.001185174216516316, 0.00885943602770567, 0.01771887205541134, -0.014042413793504238, 0.0026657781563699245, 0.0214229729026556, -0.01568714529275894, -0.05965261533856392, -0.019170105457305908, -0.01200377568602562, -0.021035978570580482, -0.0024273612070828676, -0.001451233634725213, 0.04265245050191879, 0.005013667047023773, -0.028775891289114952, -0.023606734350323677, -0.024767721071839333, -0.05788349360227585, -0.004916917998343706, -0.020524591207504272, 0.03148486092686653, 0.0326182059943676, 0.04820860177278519, 0.013786720111966133, 0.020883943885564804, -0.009032201953232288, 0.02302624098956585, -0.03491253778338432, 0.015935927629470825, -0.022888028994202614, -0.027241729199886322, 0.0028437268920242786, -0.021160369738936424, -0.05241026729345322, -0.012971265241503716, 0.011989954859018326, -0.01831318624317646, 0.01890750229358673, 0.013890380039811134, -0.030268589034676552, 0.004370977636426687, 0.0012585996882990003, 0.010241563431918621, 0.04005404934287071, 0.018990429118275642, 0.026218954473733902, -0.020842479541897774, 0.0114578353241086, 0.010331401601433754, -0.002501650480553508, -0.017083093523979187, -0.0006720594246871769, 0.027324657887220383, -0.01190702710300684, 0.01760830171406269, 0.009350091218948364, -0.008776508271694183, -0.003645360702648759, -0.011340354569256306, 0.011962312273681164, 0.005262449849396944, 0.010435061529278755, 0.024228692054748535, -0.0017509825993329287, 0.003593530971556902, -0.013005818240344524, 0.0140700563788414, 0.007774466183036566, -9.610103734303266e-05, 0.016751382499933243, -0.026979126036167145, -0.008693580515682697, -0.033032841980457306, 0.0025275652296841145, 0.0006560785695910454, -0.007442755624651909, -0.01386964786797762, -0.0017846719129011035, -0.028471823781728745, -0.010103350505232811, 0.02349616400897503, -0.020179059356451035, -0.0057911137118935585, -0.00468541169539094, 0.0018537782598286867, -0.00872122310101986, 0.014940796419978142, 0.009481393732130527, -0.00030212439014576375, -0.007802108768373728, -0.02503032609820366, 0.009702533483505249, -0.04889966547489166, -0.005155334714800119, 0.023800233379006386, -0.017262769863009453, -0.00013670102634932846, 0.19747835397720337, -0.003102875780314207, 0.016295280307531357, 0.04154674708843231, 0.02935638464987278, 0.0036695480812340975, 0.0007817657897248864, 0.01542454119771719, -0.0049065519124269485, 0.008797240443527699, -0.00026109250029549, 0.005048220045864582, -0.03576945513486862, 0.001614497508853674, 0.013061103411018848, -0.01467819232493639, -0.04033047705888748, -0.02138151042163372, -0.004723419900983572, 0.01957092247903347, 0.0036660926416516304, -0.013302975334227085, -0.015783894807100296, -0.0048236241564154625, 0.020925408229231834, 0.012660286389291286, 0.0028350886423140764, 0.021962003782391548, 0.02632952481508255, 0.021174190565943718, -0.003873411798849702, -0.00801633857190609, 0.012895247898995876, -0.016018856316804886, -0.009702533483505249, -0.0024515483528375626, 0.010407418943941593, -0.01670992001891136, -0.0011229783995077014, 0.01776033639907837, 0.020206701010465622, -0.007214704528450966, 0.003382756607607007, -0.03333691135048866, 0.005645989906042814, -0.013316797092556953, -0.02472625859081745, 0.005449037067592144, 0.0038665011525154114, 0.016875775530934334, -0.007387470453977585, 0.005652900785207748, 0.015410719439387321, 0.01328224316239357, 0.005538875237107277, 0.01854814775288105, -0.01615706831216812, 0.006772424094378948, -0.00960578490048647, -0.008748865686357021, -0.01514811534434557, 0.004478092305362225, -0.007069581188261509, -0.004564475268125534, -0.030268589034676552, 0.02180996909737587, -0.008285853080451488, 0.0323970653116703, -0.0025171993765980005, 0.007138687651604414, -0.016336744651198387, 0.019349781796336174, -0.03380683436989784, 0.003014765214174986, -0.02370348386466503, -0.008430976420640945, 0.01635056547820568, 0.024864470586180687, 0.05077935755252838, 0.020566053688526154, 0.004757973365485668, 0.008272032253444195, -0.012833052314817905, -0.027725474908947945, 0.021091263741254807, -0.0020092676859349012, 0.02204493060708046, -0.01984734833240509, 0.006734415423125029, -0.01646113581955433, 0.002099105855450034, 0.014747298322618008, 0.0057289176620543, -0.020814837887883186, -0.01011717226356268, -0.003004399361088872, 0.018382294103503227, 0.011264337226748466, -0.01552128978073597, -0.03991583734750748, -0.017539195716381073, 0.05014358088374138, 0.014415588229894638, 0.030821438878774643, -0.010331401601433754, -0.0011497571831569076, -0.008320406079292297, 0.02330266684293747, 0.022666888311505318, -0.0038388585671782494, -0.010200100019574165, -0.04693704470992088, 0.013876558281481266, -0.012819230556488037, -0.004104918334633112, 0.018561970442533493, 0.027891328558325768, -0.006696406751871109, 0.020662803202867508, -0.0056183477863669395, 0.02503032609820366, -0.007435845211148262, 0.00892163161188364, -0.0008456891519017518, -0.027297014370560646, -0.025845780968666077, 0.014650549739599228, 0.0064234365709125996, -0.027697831392288208, -0.03270113095641136, 0.0032048076391220093, -0.016087962314486504, 0.023413237184286118, -0.00671022804453969, 0.0007670806371606886, -0.007788287475705147, -0.006084815599024296, -0.014512336812913418, 0.013627775013446808, -0.0001885308010969311, 0.005594160407781601, 0.007290721405297518, 0.011126125231385231, -0.006264491938054562, 0.002738339826464653, 0.025569355115294456, -0.005988066550344229, 0.0034553182777017355, -0.028029542416334152, -0.007346006575971842, 0.008209836669266224, -0.003724833019077778, -0.01385582610964775, -0.01807822473347187, 0.03626701980829239, -0.007055759895592928, -0.05387532338500023, -0.0166269913315773, 0.013268422335386276, 0.011720439419150352, -0.06656324863433838, 0.010663112625479698, 0.03706865385174751, 0.0037766629830002785, -0.030959652736783028, -0.013372082263231277, -0.17669115960597992, 0.005559606943279505, -0.00295775244012475, -0.00539375189691782, -0.0048098028637468815, 0.022998599335551262, 0.008645206689834595, -0.011008644476532936, -0.012708661146461964, -0.006271402817219496, 0.0053350115194916725, -0.014885511249303818, -0.039086561650037766, -0.021989645436406136, 0.010559452697634697, -0.018244080245494843, -0.0025500250048935413, 0.038063786923885345, 0.05077935755252838, -0.0002744818339124322, 0.025790495797991753, -0.018962787464261055, -0.011872474104166031, -0.010835878551006317, 0.007898857817053795, 0.024975040927529335, -0.013351350091397762, 0.028554750606417656, -0.008610652759671211, -0.032286494970321655, 0.0053626541048288345, -0.009985869750380516, 0.016571706160902977, -0.0012940167216584086, -0.00997895933687687, -0.009619605727493763, 0.0024532759562134743, -0.010842788964509964, -0.021035978570580482, 0.025168538093566895, 0.029024673625826836, 0.006209206767380238, 0.009723265655338764, 0.012874515727162361, 0.019391246140003204, 0.02471243590116501, 0.029328741133213043, -0.014318838715553284, 0.016405850648880005, -0.007097223773598671, 0.013164762407541275, -0.014567621983587742, 0.007138687651604414, 0.004681956488639116, 0.020883943885564804, 0.00974399782717228, 0.01603267714381218, 0.02699294686317444, 0.011264337226748466, -0.01792619191110134, 0.005034398753196001, -0.01004115492105484, 0.008617564104497433, -0.017857085913419724, -0.021602649241685867, -0.032756417989730835, -0.0051069604232907295, 0.023883160203695297, -0.005725462455302477, 0.02255631797015667, 0.005086228717118502, 0.004502279683947563, 0.013337528333067894, 0.007173240650445223, 0.0129505330696702, 0.009211878292262554, -0.01764976605772972, 0.012169631198048592, 0.02990923449397087, -0.0009873572271317244, 0.0005999296554364264, 0.02027580700814724, 0.010068797506392002, -0.0022926037199795246, -0.013247690163552761, -0.010365954600274563, 0.005055130459368229, 0.00042522011790424585, -0.004813258536159992, -0.004858177620917559, 0.018520506098866463, -0.011070840060710907, -0.0014564166776835918, 0.00316334399394691, 0.006171198561787605, 0.004747607279568911, 0.018064403906464577, 0.005770381540060043, -0.00624030502513051, -0.008403333835303783, 0.013233869336545467, 0.020621338859200478, -0.05066878721117973, 0.017387161031365395, 0.050751715898513794, 0.022805100306868553, 0.01670992001891136, 0.01116067823022604, 0.023758769035339355, -0.007007385604083538, -0.05188506096601486, 0.017470089718699455, 0.027697831392288208, 0.009972048923373222, -0.030987294390797615, 0.03380683436989784, -0.018244080245494843, -0.020344914868474007, 0.0017475272761657834, -0.01769123040139675, 0.03535481542348862, -0.03364098072052002, -0.01897660829126835, 0.00032955099595710635, -0.003080416237935424, -0.010538720525801182, -0.09873917698860168, -0.01767740771174431, 0.02861003577709198, 0.006119368597865105, -0.005601070821285248, 0.007567147258669138, 0.0017656676936894655, 0.04707525670528412, -0.000487631798023358, 0.02244574762880802, -0.029743380844593048, -0.005874041002243757, -0.0024757354985922575, -0.018962787464261055, 0.011098482646048069, -0.0029784843791276217, 0.007891947403550148, -0.01318549457937479, -0.0018019485287368298, 0.03010273352265358, -0.0028195397462695837, -0.0027607993688434362, 0.012895247898995876, 0.012010686099529266, -0.006274858023971319, -0.015258685685694218, -0.03140193223953247, 0.01383509486913681, 0.019667671993374825, 0.003173709847033024, 0.03679222986102104, -0.029107602313160896, 0.024062836542725563, -0.02125711739063263, -0.0068380748853087425, -0.008265121839940548, -0.019031893461942673, -0.011976133100688457, 0.015562753193080425, -0.034249115735292435, 0.013593222014605999, -0.0034052161499857903, -0.00422585429623723, -0.038450781255960464, -0.01745626889169216, -0.003092509927228093, -0.021975824609398842, 0.02310916967689991, 0.017387161031365395, -0.00915659312158823, -0.022583959624171257, -0.03129136189818382, -0.050088293850421906, -0.031180791556835175, 0.02114654891192913, 0.019128642976284027, 0.007484219502657652, 0.006077904719859362, -0.0025171993765980005, -0.007380560040473938, 0.00260358233936131, -0.010904984548687935, -0.0007739912834949791, 0.01084969937801361, 0.01980588398873806, 0.016281459480524063, -0.010345223359763622, -0.015507468953728676, -0.016364388167858124, -0.004336424637585878, -0.018327008932828903, -0.0012430507922545075, -0.01611560396850109, 3.6544040540320566e-06, -0.028720606118440628, 0.0014495060313493013, -0.005117326509207487, -0.016806667670607567, 0.01190702710300684, 0.011409461498260498, 0.0003558977914508432, -0.024532759562134743, 0.008714312687516212, -0.019225390627980232, -0.003028586506843567, -9.059412695933133e-05, 0.017539195716381073, -0.012211094610393047, 0.028305968269705772, -0.04312237352132797, 0.016682276502251625, 0.026343347504734993, 0.0103383120149374, 0.006216117646545172, -0.009992780163884163, 0.01854814775288105, -0.011278158985078335, -0.007656985428184271, 0.014014771208167076, 0.0069417343474924564, 0.005822211503982544, 0.002245956799015403, -0.056142013520002365, 0.0003578414034564048, 0.026163669303059578, 0.00334993121214211, 0.010842788964509964, -0.019156284630298615, 0.004008169285953045, -0.005607981700450182, 0.007145598065108061, -0.004554109647870064, -0.014747298322618008, 0.00731836399063468, -0.02172704227268696, -0.00445045018568635, -0.03596295416355133, 0.00026260418235324323, -0.0033654801081866026, -0.004806347656995058, 0.008285853080451488, 0.002353071700781584, -0.009080576710402966, -0.012328575365245342, 0.0053211902268230915, 0.01980588398873806, -0.037980858236551285, 0.011941580101847649, -0.01635056547820568, 0.017857085913419724, -0.015853000804781914, -0.037787359207868576, 0.024256333708763123, 0.00468541169539094, -0.007656985428184271, 0.010580184869468212, -0.004747607279568911, -0.04279066249728203, 0.0009951316751539707, 0.002935292897745967, 0.018686361610889435, 0.020289629697799683, -0.021519722416996956, -0.01803676225244999, 0.014014771208167076, -0.023233560845255852, -0.014871690422296524, -0.011658243834972382, -0.005677088163793087, -0.024588044732809067, 0.004167113918811083, 0.011416371911764145, 0.05672250688076019, 0.010013512335717678, -0.026979126036167145, -0.017497731372714043, 0.01041432935744524, -3.997911335318349e-05, 0.005825666710734367, 0.01709691435098648, 0.02668887935578823, 0.0005105232703499496, 0.041049182415008545, 0.003717922605574131, 0.011077750474214554, -0.00651327520608902, 0.016516420990228653, -0.020953049883246422, -0.04826388508081436, -0.01944653131067753, 0.0016663272399455309, -0.030517371371388435, 0.01635056547820568, -0.012383860535919666, 0.03270113095641136, 0.02176850475370884, 0.012155809439718723, 0.01846522092819214, -0.0014529613545164466, -0.02668887935578823, 0.005566517822444439, 0.025279108434915543, 0.01965385116636753, -0.039832908660173416, -0.03292227163910866, 0.021132726222276688, 0.011989954859018326, 0.011665154248476028, -0.006779334507882595, 0.030987294390797615, 0.01639202982187271, -0.00208874000236392, -0.005632168613374233, 0.008866346441209316, -0.018285544589161873, 0.011526942253112793, 0.0121005242690444, 0.026149848476052284, -0.014857868663966656, 0.002935292897745967, 0.020496947690844536, 0.02758726105093956, 0.011036287061870098, 0.00910130888223648, 0.01041432935744524, -0.01850668527185917, -0.011098482646048069, 0.002290876116603613, -0.02954988181591034, -0.019584743306040764, 0.01941888965666294, 0.012549716047942638, 0.009578142315149307, -0.015355434268712997, -0.0056045264936983585, 0.013074924238026142, -0.037787359207868576, -0.009274073876440525, 0.009225700050592422, -0.025804316624999046, -0.028831176459789276, -0.003634994849562645, 0.013351350091397762, 0.034636110067367554, 0.008569189347326756, -0.0240904800593853, 0.027006767690181732, -0.01890750229358673, 0.012598090805113316, -0.018409935757517815, 0.008769597858190536, -0.022348998114466667, -0.028748247772455215, 0.008700491860508919, 0.0031408844515681267, -0.011817188933491707, -0.017083093523979187, -0.003056229092180729, -0.016806667670607567, 0.009716355241835117, 0.004008169285953045, 0.08668702840805054, 0.030158018693327904, -0.0029698461294174194, 0.010766771622002125, -0.01720748469233513, 0.0017276591388508677, 0.014719655737280846, 0.009046023711562157, -0.002206220757216215, -0.02121565490961075, 0.025914886966347694, -0.014609085395932198, -0.004802892450243235, 0.002178578171879053, -0.02421487122774124, 0.00307005038484931, 0.010172457434237003, 0.02200346626341343, -0.02016523852944374, 0.03046208620071411, 0.026702700182795525, 0.009515946730971336, 0.0144432308152318, -0.009419198147952557, -0.032562918961048126, -0.015396898612380028, 0.02711733803153038, 0.03364098072052002, 0.0028437268920242786, -0.01795383356511593, 0.02070426754653454, 0.0030337695498019457, -0.025555534288287163, -0.026357168331742287, -0.022501032799482346, 0.009909853339195251, -0.013848915696144104, -0.0259010661393404, 0.005884407088160515, 0.02927345596253872, 0.007518772501498461, 0.011520030908286572, -0.011008644476532936, -0.018796931952238083, -0.014063145965337753, 0.002434271853417158, -0.017580660060048103, -0.010220831260085106, 0.015175757929682732], "922bc878-0201-49ea-b751-5b4fde16bb6d": [0.0007779733859933913, 0.0024112022947520018, 0.021405430510640144, -0.017640933394432068, -0.0007706745527684689, 0.023782286792993546, -0.006155091803520918, -0.029868682846426964, -0.013649740256369114, -0.054489050060510635, 0.021336736157536507, 0.016637982800602913, 0.017434846609830856, -0.016899025067687035, 0.005251749884337187, 0.028494779020547867, 0.02386472001671791, -0.006014266517013311, 0.012337662279605865, -0.0072061289101839066, -0.01261244248598814, -0.003379805013537407, -0.0309128500521183, -0.011891143396496773, -0.029044339433312416, 0.01206975057721138, 0.01968805119395256, -0.00992645975202322, -0.024070806801319122, 0.024455498903989792, 0.008744901977479458, -0.01467329915612936, -0.016294507309794426, 0.009033421985805035, -0.020965781062841415, 0.016074681654572487, 0.0057360511273145676, 0.000501045782584697, 0.01079201977699995, -0.011932360008358955, 0.006388655863702297, 0.011898012831807137, -0.004685014020651579, -0.01228270586580038, -0.008662467822432518, 0.03278135880827904, 0.003436478553339839, 0.006704653613269329, -0.0060898312367498875, 0.005516226403415203, -0.015552598051726818, -0.0018290103180333972, -0.02680487558245659, 0.013058961369097233, -0.02224351279437542, -0.01622581109404564, 0.017943192273378372, -0.0028680255636572838, 0.009266985580325127, -0.007219867780804634, 0.009747851639986038, 0.01670667715370655, -0.01773710548877716, -0.007096216548234224, -0.01720128394663334, -0.03948601335287094, -0.007219867780804634, -0.005131532903760672, -0.010565325617790222, -0.02371359057724476, 0.030390765517950058, 0.0359138622879982, -0.005670790560543537, 0.0027598305605351925, -0.0006890989607200027, -0.019825441762804985, -0.009163942188024521, -0.018053105100989342, -0.011554536409676075, 0.0037748024333268404, 0.012076620012521744, -0.024757757782936096, -0.02478523552417755, -0.007233607117086649, 0.03635350987315178, 0.04132704436779022, 0.022216035053133965, 0.004952925723046064, -0.011451493948698044, 0.0060108317993581295, 0.0019938787445425987, 0.007164911832660437, 0.015882335603237152, 0.015264078043401241, 0.00906089972704649, 0.037397678941488266, 0.007721343077719212, 0.006508872378617525, -0.015003036707639694, -0.01915222778916359, -0.026324009522795677, -0.004482363350689411, -0.01595102995634079, -0.01263992115855217, -0.025376014411449432, -0.008051079697906971, 0.018959881737828255, 0.001088819233700633, -0.0011463515693321824, 0.01545642502605915, -0.03808462992310524, 0.03330344334244728, -0.018025625497102737, -0.0005993657978251576, 0.018245451152324677, -0.020800912752747536, 0.029154252260923386, -0.028412343934178352, 0.0008084569126367569, -0.013848956674337387, -0.004681579302996397, -0.018314145505428314, 0.04171174019575119, -0.02756052277982235, 0.019674312323331833, -0.0014726538211107254, 0.013278786092996597, -0.009912720881402493, 0.009486810304224491, -0.009184551425278187, 0.015772422775626183, 0.012358270585536957, 0.014384779147803783, 0.01141714584082365, -0.022765597328543663, -0.002977937925606966, -0.0018221407663077116, 0.002881764667108655, 0.0016237832605838776, -0.038716625422239304, 0.02593931555747986, 0.02474401891231537, 0.017008937895298004, -0.024757757782936096, 0.010778279975056648, 0.03715037554502487, -0.0009514288394711912, 0.01600598730146885, 0.000729457417037338, 0.00843577366322279, 0.006155091803520918, -0.031709715723991394, -0.017558498308062553, 0.00881359726190567, 0.01843779720366001, -0.001233937917277217, -0.0011240255553275347, 0.022216035053133965, -0.012660529464483261, -0.005852832924574614, -0.025953054428100586, 0.010544716380536556, -0.00840829499065876, -0.006107005290687084, 0.002675678813830018, 0.028357388451695442, 0.002440397860482335, -0.00922576803714037, -0.0051830545999109745, -0.005519661121070385, -0.004262538626790047, 0.025953054428100586, -0.01839658059179783, 0.014549648389220238, 0.014728255569934845, 0.01606094278395176, 0.019138488918542862, 0.0013026332017034292, -0.011520189233124256, -0.028659647330641747, 0.02273811772465706, -0.010462282225489616, 0.007343519479036331, 0.012056011706590652, -0.023892197757959366, -0.008827336132526398, 0.025623317807912827, 0.020265091210603714, 0.003395261475816369, -0.008147253654897213, 0.008209079504013062, -0.000926526787225157, -0.005296401679515839, -0.0037851068191230297, -0.6291383504867554, 0.003455369733273983, 0.013677218928933144, -0.02456541173160076, 0.008923509158194065, 0.02233968675136566, 0.029923638328909874, -0.005238010548055172, 0.0031840235460549593, 0.03547421097755432, 0.01735241338610649, 0.013876435346901417, -0.018781274557113647, -0.015126688405871391, -0.0003288783773314208, -0.028659647330641747, 0.0015233166050165892, -0.016569288447499275, 0.005760094616562128, 0.002972785849124193, -0.03844184800982475, 0.031709715723991394, 0.0026842658407986164, -0.0021638995967805386, 0.013704696670174599, -0.020691001787781715, 0.02907181717455387, -0.017723366618156433, 0.007865603081882, 0.028384866192936897, -0.02180386334657669, 0.020759696140885353, 0.020416220650076866, 0.0060486141592264175, 0.0451190210878849, -0.0010931127471849322, -0.01269487664103508, 0.026406442746520042, 0.020059004426002502, 0.039568446576595306, -0.023892197757959366, -0.002423224039375782, 0.022422119975090027, 0.002232594648376107, -0.004125148057937622, 0.01084697525948286, 0.015085470862686634, 0.0027254829183220863, -0.0143435625359416, -0.015483902767300606, 0.008064819499850273, -0.010482890531420708, 0.0022635075729340315, -0.005708572920411825, 0.013210090808570385, 4.797931978828274e-05, 0.026008011773228645, -0.018643883988261223, 0.010991235263645649, -0.0043071904219686985, 0.023741068318486214, 0.0062924823723733425, -0.018781274557113647, -0.04506406560540199, -0.04075000435113907, 0.006289047654718161, 0.004818969871848822, -0.023686112836003304, 0.014810689724981785, -0.010400456376373768, 0.033550746738910675, -0.004077061545103788, 0.0040736268274486065, -0.010352370329201221, -0.002673961455002427, 0.018094321712851524, 0.02592557668685913, -0.01358791533857584, -0.018685100600123405, 0.015140427276492119, -0.00263789645396173, -0.014535908587276936, -0.009479940868914127, -0.010228718630969524, 0.027148351073265076, 0.012330792844295502, -0.011053061112761497, -0.006749305408447981, -0.0007844135980121791, 0.0049014040268957615, 0.005914658773690462, 0.029044339433312416, -0.02062230557203293, -0.02229846827685833, 0.009280724450945854, 0.03954096883535385, -0.0042694080621004105, -0.007061868906021118, -0.018904924392700195, -0.016734156757593155, -0.02598053216934204, -0.02896190620958805, 0.015580076724290848, 0.00700004305690527, 0.03179214894771576, 0.017228761687874794, -0.007851864211261272, -0.007604561280459166, 0.017118848860263824, -0.033330921083688736, -0.007542735431343317, -0.0026482008397579193, -0.02044369839131832, -0.019715528935194016, 0.01735241338610649, -0.028879471123218536, 0.0165555477142334, -0.015593815594911575, 0.013615393079817295, -0.023521244525909424, -0.010647759772837162, -0.0003366065793670714, 0.017833279445767403, -0.004623188637197018, -0.0003393973456695676, 0.022806813940405846, 0.011767491698265076, 0.007020651828497648, 0.028165040537714958, -0.007824385538697243, 0.005241445265710354, -0.02978624776005745, 0.006227221805602312, -0.004760578740388155, 0.03742515668272972, 0.0027220482006669044, 0.03253405541181564, 0.008339599706232548, 0.004492667503654957, -0.044459547847509384, 0.003206349443644285, 0.0013026332017034292, 0.026131663471460342, -0.03478725999593735, -0.004011800978332758, -0.017503542825579643, -0.010599672794342041, 0.015071731992065907, -0.0028680255636572838, -0.01724250055849552, -0.022806813940405846, -0.00886855274438858, -0.00729543250054121, 0.014577126130461693, -0.011575144715607166, -0.0042694080621004105, 0.005567747633904219, -0.03212188556790352, -0.006271873600780964, -0.015909813344478607, -0.02229846827685833, -0.004478928633034229, -0.017324935644865036, -0.002977937925606966, -0.016033465042710304, -0.004090800415724516, -0.016637982800602913, 0.003154827980324626, -0.007522126659750938, -0.028357388451695442, 0.01827292889356613, -0.0027392220217734575, 0.007707603741437197, 0.03657333552837372, -0.01621207222342491, 0.020581088960170746, -0.01486564613878727, 0.004719361662864685, 0.002481614938005805, -0.0017319782637059689, 0.0064985682256519794, 0.010208110325038433, -0.0008033047779463232, 0.004678144585341215, 0.030940327793359756, 0.009081508032977581, 0.026214096695184708, 0.006897000130265951, -0.021515343338251114, -0.004070192109793425, 0.0328637957572937, 0.000587773509323597, -0.009768460877239704, 0.015525120310485363, -0.0074809095822274685, -0.0018582057673484087, -0.01599224843084812, 0.00020952042541466653, -0.015415207482874393, 0.01626702770590782, 0.023026637732982635, 0.01299026608467102, -0.022902987897396088, 0.008641858585178852, 0.014453474432229996, -0.023480026051402092, 0.02631027065217495, -0.01584111899137497, 0.017943192273378372, 0.01720128394663334, -0.006381785962730646, -0.00614135293290019, 0.006261569447815418, -0.011300364509224892, 0.010833236388862133, 0.030995285138487816, 0.01784701831638813, 0.013704696670174599, -0.005186489317566156, 0.004094235133379698, 0.009720373898744583, -0.002576070837676525, 0.035226911306381226, -0.002603548811748624, -0.0031428064685314894, 0.02793147787451744, -0.0034485000651329756, 0.02261446788907051, 0.004818969871848822, -0.028165040537714958, -0.007638908922672272, 0.025472188368439674, 0.0012176227755844593, 0.007851864211261272, 0.03937610238790512, 0.034155264496803284, 0.04116217792034149, -0.00783812440931797, 0.02896190620958805, -0.02077343501150608, -0.0015499358996748924, 0.008346469141542912, 0.022174818441271782, -0.026763658970594406, 0.037562549114227295, 0.00523457583039999, 0.019275879487395287, -0.008992204442620277, -0.028082607313990593, 0.01926214061677456, 0.02099326066672802, -0.004818969871848822, -0.01849275454878807, -0.010022632777690887, 0.026983482763171196, -0.016967719420790672, 0.013216961175203323, 0.014893123880028725, 0.006508872378617525, 0.013862695544958115, 0.007776299025863409, -0.01318261306732893, 0.009747851639986038, 0.0015799901448190212, 0.016088420525193214, -0.004788056947290897, -0.0206085667014122, -0.021680211648344994, -0.01396573893725872, -0.006704653613269329, 0.00040830724174156785, -0.026818614453077316, 0.0004817252338398248, 0.00519335875287652, -0.00523457583039999, 0.016844067722558975, 0.02088334783911705, 0.005725746974349022, -0.010620281100273132, 0.02984120510518551, -0.02765669673681259, -0.02180386334657669, 0.009576113894581795, 0.02609044499695301, -0.004255669191479683, -0.00963107030838728, -0.010977496393024921, -0.013320003636181355, 0.01152705866843462, 0.0030689591076225042, 0.0016203485429286957, -0.0026087011210620403, -0.005471574608236551, -0.0012502530589699745, -0.013924521394073963, 0.019220924004912376, 0.04599831998348236, -0.008580033667385578, -0.01226209755986929, 0.014068781398236752, 0.013745914213359356, 0.005121228750795126, -0.013237569481134415, -0.019344573840498924, 0.028577212244272232, -0.015442686155438423, -0.03352326899766922, -0.026433922350406647, 0.0009540048777125776, -0.02440054342150688, 0.005784137640148401, -0.012220880016684532, -0.020361263304948807, 0.0036751944571733475, -0.018836230039596558, 0.006818000692874193, -0.0022892681881785393, -0.005863137077540159, 0.037892285734415054, 0.00027263417723588645, 0.003470826195552945, -0.027917739003896713, -0.006797392386943102, 0.027038440108299255, 0.056934598833322525, -0.0013756218831986189, -0.011149234138429165, 0.009679156355559826, -0.0033540441654622555, -0.0211581289768219, -0.0292366873472929, -0.012681137770414352, 0.0201826561242342, 0.00405645277351141, -0.02695600502192974, 0.01103932224214077, -0.0062650041654706, -0.0015714032342657447, 0.011740013025701046, -0.004736535716801882, -0.010915670543909073, -0.01974300667643547, -0.007913690060377121, 0.015277817845344543, 0.02479897439479828, -0.013306264765560627, 0.028824515640735626, 0.022367164492607117, 0.028192520141601562, 0.0037198462523519993, 0.03893645107746124, 0.014123737812042236, 0.005780702922493219, -0.024373065680265427, -0.014068781398236752, 0.011726274155080318, 0.009232637472450733, 0.016953980550169945, -0.029264165088534355, 0.013636001385748386, -0.0028577211778610945, -0.007824385538697243, -0.026296531781554222, 0.014810689724981785, -0.00334374001249671, 0.029429033398628235, -0.0017517281230539083, -0.012536877766251564, 0.014151215553283691, -0.03206693008542061, -0.004001496825367212, 0.02424941398203373, -0.01478321198374033, 0.008744901977479458, 0.007632039021700621, 0.008037340827286243, -0.02136421389877796, 0.02614540234208107, 0.011437754146754742, -0.014467214234173298, -0.013663480058312416, -0.005368531681597233, -0.04572353884577751, -0.028412343934178352, -0.028632167726755142, -0.011616362258791924, -0.007017217110842466, -0.009589852765202522, -0.011389668099582195, -0.02132299728691578, 0.004715926945209503, -0.009047160856425762, -0.027409393340349197, -0.000835076323710382, 0.003530934453010559, -0.04495415464043617, -0.024057066068053246, 0.001971552846953273, 0.023796025663614273, 0.02587062120437622, -0.008971596136689186, 0.015277817845344543, -0.000973754795268178, 0.018163016065955162, 0.009892111644148827, -0.019619354978203773, -0.003970583900809288, -0.03217684105038643, -0.0008118916302919388, -0.022106122225522995, -0.026392703875899315, 0.004159495700150728, -0.0034433479886502028, 0.011128625832498074, -0.006529480684548616, -0.014357301406562328, 0.006258134730160236, -0.0011781230568885803, -0.002115812851116061, 0.0211581289768219, 0.025376014411449432, -0.0033317182678729296, 0.015593815594911575, -0.03470482677221298, 0.008882292546331882, -0.006951956544071436, -0.01735241338610649, -0.024853931739926338, 0.009782199747860432, 0.006337134167551994, -0.015044253319501877, -0.011430884711444378, 0.0032252406235784292, -0.01676163449883461, 0.0006281319656409323, 0.002138138748705387, 0.0045029716566205025, -0.009212029166519642, 0.015744945034384727, -0.02559584006667137, -0.003568716812878847, 0.01924840174615383, 0.032946228981018066, -0.006364612374454737, -0.005787572357803583, -0.02077343501150608, 0.03203945234417915, -0.002534853760153055, -0.010585933923721313, 0.0058940500020980835, 0.022119861096143723, -0.0325615368783474, -0.024043327197432518, 0.00840829499065876, -0.013952000066637993, 0.010991235263645649, -0.012310183607041836, -0.016953980550169945, -0.01149957999587059, -0.010647759772837162, -0.01648685336112976, 0.0012768724700435996, -0.017888236790895462, -0.0054578352719545364, -0.021295519545674324, 0.007659517228603363, 0.0031410891097038984, -0.013546697795391083, 0.013512350618839264, -0.02680487558245659, -0.029154252260923386, -0.0031428064685314894, -0.00023828654957469553, 0.012241488322615623, -0.0183828417211771, -0.004836143460124731, -0.01930335722863674, -0.007590821944177151, -0.007267954293638468, -0.01731119677424431, -0.014934341423213482, 0.003819454461336136, 0.05913284793496132, 0.026832353323698044, 0.00976159144192934, 0.009294463321566582, 0.023040378466248512, 0.007865603081882, -0.025376014411449432, -0.01301774475723505, -0.009266985580325127, -0.019949093461036682, 0.008641858585178852, -0.002940155565738678, 0.012007924728095531, 0.01084697525948286, -0.005488748196512461, 0.01692650280892849, 0.00618257001042366, 0.02299915999174118, -0.018053105100989342, -0.006790522951632738, -0.042453646659851074, -0.052812885493040085, -0.008497598581016064, 0.034265175461769104, -0.010462282225489616, 0.0005684529896825552, -0.03429265320301056, 0.0009333963389508426, 0.013258177787065506, -0.0011248842347413301, 0.024263152852654457, 0.01255748700350523, 0.04154687002301216, 0.0005937843234278262, 0.0013481437927111983, 0.017723366618156433, -0.017599716782569885, -0.01285287644714117, -0.012207141146063805, -0.05229080468416214, -0.020745957270264626, 0.00607609236612916, 0.007061868906021118, 0.009074638597667217, -0.0058150505647063255, 0.007357258349657059, 0.0103042833507061, 0.01827292889356613, -0.030115986242890358, -0.016459375619888306, 0.009988285601139069, -0.015607554465532303, -0.00010873165592784062, -0.01845153607428074, -0.014893123880028725, -0.003702672431245446, -0.011080539785325527, -0.00580474641174078, 0.017379891127347946, 0.01404817309230566, -0.020113961771130562, -0.007350388914346695, 0.03212188556790352, -0.002600114094093442, 0.029813727363944054, 0.02143291011452675, 0.03671072795987129, 0.014219910837709904, 0.0004941762308590114, -0.02358993887901306, -0.04055766016244888, 0.010833236388862133, -0.015236600302159786, 0.008257165551185608, 0.04149191454052925, 0.0023528113961219788, -0.002505658194422722, 0.013732175342738628, -0.013711566105484962, -0.002067726105451584, -0.032204318791627884, 0.01185679528862238, 0.0022446163929998875, 0.0005985071184113622, -0.03503456339240074, -0.02598053216934204, -0.010503499768674374, 0.026241574436426163, -0.0032698926515877247, 0.010421065613627434, 0.0009917872957885265, -0.007240476552397013, 0.015099209733307362, 0.04198652133345604, -0.010208110325038433, 0.019729267805814743, -0.013086440041661263, 0.010105066932737827, -0.017544759437441826, -0.00295561202801764, -0.0002880905813071877, -0.03212188556790352, 0.014714516699314117, 0.021762646734714508, -0.005148706957697868, -0.0031376543920487165, 0.018904924392700195, 0.009850895032286644, -0.002272094367071986, 0.006313091143965721, -0.006436742376536131, 0.027313221246004105, -0.0003621526120696217, -0.01827292889356613, 0.006192874163389206, -0.009493679739534855, 0.018685100600123405, -0.01834162510931492, -0.015717467293143272, -0.006282178219407797, 0.004083930980414152, 0.015195382758975029, 0.011176712810993195, 0.0010295696556568146, -0.00725421542301774, -0.01681658998131752, 0.009933329187333584, -0.012035403400659561, 0.008634989149868488, 0.005282662808895111, 0.018849968910217285, -0.025898098945617676, -0.015071731992065907, 0.00862125027924776, -0.004465189296752214, 0.013038353063166142, -0.007219867780804634, -0.010991235263645649, -0.004276277497410774, 0.025678273290395737, -0.0054166181944310665, -0.004355276934802532, 0.02467532455921173, 0.011746883392333984, -0.04294825345277786, 0.03247909992933273, 0.0007826961809769273, 0.006148222368210554, 0.015195382758975029, -0.0009960806928575039, -0.018808752298355103, -0.03305613994598389, 0.003070676466450095, -0.0017319782637059689, 0.019536921754479408, -0.0035996297374367714, 0.007741951383650303, 0.016019726172089577, 0.00259667937643826, 0.0008359350031241775, -0.023466287180781364, -0.008985335007309914, 0.0013146548299118876, 0.006354308221489191, 0.00263789645396173, -0.028082607313990593, 0.020416220650076866, -0.011307233944535255, 0.023246463388204575, -0.013326873071491718, -0.028137562796473503, -0.028769558295607567, -0.023383853957057, 0.0017689019441604614, -0.006014266517013311, 0.004427406936883926, -0.002009335206821561, -0.0162807684391737, -0.008353338576853275, 0.024826453998684883, 9.767602023202926e-05, -0.0045785363763570786, 0.020965781062841415, -0.02365863509476185, 0.001987009309232235, 0.01364287082105875, -0.008085427805781364, -0.040282879024744034, -0.01269487664103508, -0.0069656954146921635, -0.027684174478054047, 0.000973754795268178, 0.0017912279581651092, 0.047647006809711456, 0.010702715255320072, -0.014247389510273933, -0.029154252260923386, -0.01681658998131752, -0.05044976994395256, -0.0066909147426486015, -0.018369102850556374, 0.029703814536333084, 0.03432013466954231, 0.037452634423971176, 0.013443655334413052, 0.033330921083688736, 0.0013326873304322362, 0.015195382758975029, -0.050147511065006256, 0.006927913054823875, -0.013134526088833809, -0.02973129227757454, 0.005165880545973778, -0.019289618358016014, -0.0579238124191761, 0.006866087671369314, 0.008401425555348396, -0.025252364575862885, 0.0015344795538112521, 0.004695318639278412, -0.012351401150226593, 0.008222818374633789, -0.016047203913331032, 0.004180104471743107, 0.028329908847808838, 0.024386804550886154, 0.012049142271280289, -0.010785150341689587, -0.0007672397769056261, 0.008367078378796577, -0.006024571135640144, -0.020484915003180504, 0.01584111899137497, 0.01152705866843462, -0.010585933923721313, -0.001307785278186202, 0.004952925723046064, -0.012179662473499775, -0.009782199747860432, -0.0021295519545674324, -0.0010733628878369927, 0.011801838874816895, 0.014412257820367813, 0.023012898862361908, -0.01402069441974163, 0.003305957652628422, -0.005475009325891733, 0.007068738341331482, 0.020842131227254868, 0.012598703615367413, 0.010407325811684132, -0.025403494015336037, 0.005224271677434444, -0.022174818441271782, 0.009102117270231247, 0.018643883988261223, -0.015731206163764, -0.005828789435327053, -0.0037267159204930067, -0.023425070568919182, -0.011636970564723015, 0.010654629208147526, -0.015181643888354301, -0.014494691975414753, -0.0005431215977296233, 0.0017482934053987265, -0.004083930980414152, -0.0009445592877455056, 0.008312121964991093, -0.018588926643133163, -0.012124706991016865, -0.012090358883142471, 0.005406314041465521, -0.04050270467996597, 0.010991235263645649, 0.01790197566151619, -0.01622581109404564, 0.0051040551625192165, 0.2021288275718689, 0.002457571681588888, 0.010146284475922585, 0.02907181717455387, 0.02456541173160076, -0.00183416239451617, 0.012550617568194866, -0.0013584480620920658, -0.0053788358345627785, 0.007432823069393635, 0.006282178219407797, 0.0032613056246191263, -0.031489890068769455, -0.0022995725739747286, 0.01827292889356613, -0.022312209010124207, -0.046245623379945755, -0.027862781658768654, -0.0022360295988619328, 0.002601831452921033, 0.004867056384682655, -0.009562375023961067, -0.01779206283390522, -0.013876435346901417, 0.019220924004912376, 0.011245408095419407, -0.0041114091873168945, 0.0260354895144701, 0.02137795276939869, 0.02484019286930561, -0.002847417024895549, -0.00952115748077631, 0.022174818441271782, -0.006392090581357479, -0.0018410319462418556, -0.006481394171714783, 0.009260116145014763, -0.020375002175569534, 0.007790038362145424, 0.011128625832498074, 0.002447267295792699, -0.012742963619530201, 0.0017053588526323438, -0.03423769772052765, 0.004283146932721138, -0.010002024471759796, -0.01996283233165741, 0.009686026722192764, 0.016473114490509033, 0.01714632660150528, -0.009479940868914127, -3.775553705054335e-05, 0.0048224045895040035, -0.009005943313241005, -0.003379805013537407, 0.012523138895630836, -0.014549648389220238, 0.020704740658402443, -0.014123737812042236, -0.005962745286524296, -0.00783812440931797, 0.0023425070103257895, 0.0006534632993862033, -0.008971596136689186, -0.041409481316804886, 0.023905936628580093, -0.002234312007203698, 0.03808462992310524, 0.012426965869963169, 0.015827380120754242, -0.011176712810993195, 0.000131594279082492, -0.02772539108991623, 0.0007092781597748399, -0.016129638999700546, -0.00424536457285285, 0.015662509948015213, 0.025376014411449432, 0.04105226323008537, 0.004107974469661713, 0.014467214234173298, 0.0066909147426486015, -0.04069504886865616, -0.017283717170357704, 0.03478725999593735, -0.014920602552592754, 0.027739129960536957, -0.04055766016244888, 0.010991235263645649, -0.016789112240076065, -0.011183582246303558, 0.011046191677451134, 0.00876551028341055, -0.03118763118982315, -0.0030638067983090878, -0.0073641277849674225, 0.017324935644865036, 0.013251308351755142, -0.00023334908473771065, -0.034897174686193466, -0.015360252000391483, 0.05808867886662483, 0.008380817249417305, 0.04031035676598549, -0.006189439445734024, 0.0024163543712347746, -0.0023373549338430166, 0.02040248177945614, 0.005547139327973127, -0.012942180037498474, -0.0029487423598766327, -0.05435166135430336, 0.02479897439479828, -0.013842087239027023, -0.011190451681613922, 0.02224351279437542, 0.029483988881111145, 0.0037679329980164766, 0.01834162510931492, -0.0004666981694754213, 0.016802851110696793, 0.013739044778048992, 0.004180104471743107, 0.011101148091256618, -0.021171867847442627, -0.031325019896030426, 0.015854857861995697, 0.004726231098175049, -0.02723078615963459, -0.02984120510518551, 0.02782156504690647, -0.007446561940014362, 0.02995111607015133, -0.01503051444888115, -0.021226823329925537, -0.013148265890777111, -0.015044253319501877, -0.0038812800776213408, 0.009617331437766552, -0.0009093530243262649, 0.011980446986854076, -0.010572195053100586, 0.008154123090207577, 0.0010467434767633677, -0.003840063000097871, 0.016899025067687035, -0.010908801108598709, 0.009150203317403793, -0.03671072795987129, -0.02143291011452675, 0.015648771077394485, -0.00307926326058805, -0.011087409220635891, 0.00016422451881226152, 0.027958955615758896, -0.022875508293509483, -0.04382755234837532, -0.008792988024652004, 0.01768215000629425, 0.015689989551901817, -0.04822404682636261, 0.003147958545014262, 0.03910132125020027, 0.027272002771496773, -0.018520232290029526, -0.008009863086044788, -0.17520029842853546, 0.008188470266759396, 0.003609933890402317, 0.0013275351375341415, -0.005440661683678627, 0.02371359057724476, -0.0023528113961219788, -0.007982384413480759, -0.0013301112921908498, -0.012104097753763199, 0.013739044778048992, -0.014329823665320873, -0.02288924716413021, -0.02272437885403633, 0.007261084858328104, -0.018465274944901466, -0.006625654175877571, 0.024070806801319122, 0.06655193120241165, -0.00200761784799397, 0.009376897476613522, -0.021611517295241356, -0.010077589191496372, -0.0072061289101839066, 0.019894136115908623, 0.019358312711119652, 0.0038709756918251514, 0.04160182550549507, -0.00584596348926425, -0.02967633679509163, 0.015332773327827454, -0.012186532840132713, 0.029813727363944054, 0.0004662688297685236, -0.02051239274442196, 0.004224756266921759, 0.010366109199821949, -0.006972564850002527, -0.015291556715965271, 0.023452548310160637, 0.03651838004589081, 0.005725746974349022, 0.015167905017733574, 0.013058961369097233, 0.023191507905721664, 0.002825091127306223, 0.04300320893526077, -0.021281780675053596, 0.013326873071491718, 0.007549604866653681, 0.014522169716656208, -0.025623317807912827, -0.0007569355075247586, 0.008511338382959366, 0.004640362225472927, 0.002883482025936246, 0.018300406634807587, 0.012681137770414352, 0.019784223288297653, -0.009672286920249462, 0.012619311921298504, -0.007968645542860031, 0.002594962017610669, -0.010249326936900616, -0.018327884376049042, -0.028027649968862534, 0.005567747633904219, 0.018163016065955162, 0.004918578080832958, 0.014893123880028725, 0.0017637498676776886, 0.007178650703281164, -0.003055220004171133, 0.012736094184219837, 0.017613455653190613, 0.019921613857150078, -0.017063893377780914, 0.001506142783910036, 0.02170768938958645, 0.009184551425278187, -0.0019148793071508408, 0.013361221179366112, -0.0013412742409855127, -0.006756175309419632, -0.02066352218389511, -0.012035403400659561, 0.012420096434652805, -0.0004336386045906693, 0.0064504812471568584, 0.00935628917068243, 0.033990394324064255, -0.023562461137771606, -0.008456381969153881, 0.012756702490150928, 0.010318022221326828, 0.0026413314044475555, 0.01768215000629425, -0.007748821284621954, -0.0007835548603907228, -0.009754722006618977, 0.002507375553250313, 0.02440054342150688, -0.03835941106081009, 0.02571949176490307, 0.03866166993975639, 0.011636970564723015, 0.026612529531121254, -0.00508688110858202, 0.02305411733686924, -0.017833279445767403, -0.025430971756577492, 0.007048130035400391, 0.0378648079931736, 0.003568716812878847, -0.03223179653286934, 0.043745119124650955, -0.014412257820367813, -0.014989297837018967, 0.01000889390707016, -0.03225927799940109, 0.037727415561676025, -0.030610591173171997, -0.022586988285183907, -0.004454885143786669, 0.0063714818097651005, -0.005124663468450308, -0.10458160936832428, -0.024702802300453186, 0.031489890068769455, 0.016143377870321274, -0.002962481463328004, 0.011973577551543713, 0.006007397081702948, 0.04904839023947716, -0.009665417484939098, 0.030638068914413452, -0.008882292546331882, 0.004798361100256443, -0.009514288045465946, -0.024290630593895912, 0.023012898862361908, -0.01968805119395256, 0.009479940868914127, -0.014233649708330631, -0.0018221407663077116, 0.0295114666223526, -0.0023957458324730396, -0.00010390152601758018, 0.015497642569243908, -0.0038469324354082346, -0.012619311921298504, -0.02907181717455387, -0.024318108335137367, 0.011478971689939499, 0.023191507905721664, 0.01149957999587059, 0.028247475624084473, -0.0268598310649395, 0.011540797539055347, -0.024881409481167793, -0.0040358444675803185, -0.013491741381585598, -0.019124750047922134, -0.0022755293175578117, 0.010276805609464645, -0.031325019896030426, 0.006763044744729996, -0.0003992909914813936, 0.014975558035075665, -0.031599801033735275, 1.791174327081535e-05, -0.008614380843937397, -0.024166978895664215, 0.02007274329662323, 0.0017431412125006318, -0.0031565455719828606, -0.028934428468346596, -0.025018800050020218, -0.04160182550549507, -0.024881409481167793, 0.014192433096468449, 0.02130925841629505, 0.012138445861637592, 0.012461313046514988, -0.015154166147112846, 0.006745870690792799, -0.008504468947649002, -0.0031221979297697544, -3.692368045449257e-05, 0.026186618953943253, 0.012214010581374168, 0.017654672265052795, -0.018135538324713707, -0.00851820781826973, -0.021776385605335236, 0.0009900699369609356, -0.020581088960170746, 0.0038160195108503103, -0.02152908220887184, 0.0023356375750154257, -0.025128712877631187, -0.007123694755136967, 0.002084899926558137, -0.013807740062475204, 0.021790124475955963, 0.015044253319501877, -0.01066149864345789, -0.006903870031237602, -0.004200712777674198, -0.020732218399643898, 0.004248799290508032, 0.005265488754957914, 0.020952042192220688, -0.005646747071295977, 0.026282792910933495, -0.026873571798205376, 0.016885286197066307, 0.019660573452711105, 0.008264034986495972, 0.005677659995853901, -0.0002530989586375654, 0.01087445393204689, -0.016294507309794426, -0.010359239764511585, 0.022009950131177902, 0.0011274603893980384, -0.006622219458222389, -0.0033093923702836037, -0.0506695955991745, 0.0004396494186948985, 0.01915222778916359, 0.005691399332135916, 0.006505437660962343, -0.010421065613627434, -0.002617287915199995, -0.006230656523257494, -0.004355276934802532, -0.0025863752234727144, -0.019028576090931892, 0.008002993650734425, -0.013684088364243507, -0.010888192802667618, -0.031050240620970726, -0.01478321198374033, 0.023521244525909424, -0.0018925534095615149, 0.011980446986854076, 0.01388330478221178, -0.0201826561242342, -0.0065638283267617226, 0.0027958955615758896, 0.02690104953944683, -0.01904231496155262, 0.010118805803358555, -0.026653746142983437, 0.012681137770414352, -0.013058961369097233, -0.03585890680551529, 0.014934341423213482, 0.007810646668076515, -0.01467329915612936, 0.003929366823285818, -0.00014726538211107254, -0.035611603409051895, 0.0026275923009961843, -0.007831254974007607, 0.035336822271347046, -0.010922539979219437, -0.02457915060222149, -0.024318108335137367, 0.024015849456191063, -0.01817675493657589, -0.026131663471460342, -0.011602623388171196, -0.01177436113357544, -0.019990310072898865, -0.001530186040326953, 0.006003962364047766, 0.03640846908092499, 0.011348450556397438, -0.026021750643849373, -0.021089432761073112, 0.010269936174154282, 0.0071305641904473305, 0.011073669418692589, 0.030775459483265877, 0.014824428595602512, 0.013381829485297203, 0.042398691177368164, -0.010908801108598709, 0.010132545605301857, -0.0014743711799383163, 0.010352370329201221, -0.02365863509476185, -0.06226534768939018, -0.012289575301110744, 0.0019440747564658523, -0.03890897333621979, 0.013498610816895962, -0.014027564786374569, 0.023012898862361908, 0.024977583438158035, 0.01567624881863594, 0.007652647793292999, 0.002105508465319872, -0.009644809179008007, 0.003613368608057499, 0.031819626688957214, 0.002545157913118601, -0.02337011508643627, -0.03162727877497673, 0.01385582610964775, 0.009830286726355553, 0.0061379182152450085, -0.007968645542860031, 0.02495010383427143, 0.00255546229891479, 0.005626138765364885, -0.0035240650177001953, 0.0027443740982562304, -0.020320046693086624, 0.0057394858449697495, 0.0008677065488882363, 0.014384779147803783, -0.014906863681972027, 0.006938217673450708, 0.008655598387122154, 0.0359138622879982, 0.00930820219218731, 0.017132587730884552, 0.016514331102371216, -0.020086482167243958, -0.01731119677424431, 0.01639067940413952, -0.04226130247116089, -0.016885286197066307, 0.01022184919565916, 0.014357301406562328, 0.0015765553107485175, -0.02446923777461052, 0.008078558370471, 0.014371040277183056, -0.02387845888733864, -0.011176712810993195, 0.006460785865783691, -0.04143695905804634, -0.02538975328207016, 0.0037129768170416355, 0.0022514858283102512, 0.030390765517950058, 0.009644809179008007, -0.025362275540828705, 0.025183668360114098, -0.002175921108573675, 0.01915222778916359, -0.01643189787864685, 0.00733664957806468, -0.01801188662648201, -0.0139176519587636, -0.008367078378796577, -0.011355319991707802, -0.02408454567193985, -0.012207141146063805, -0.02593931555747986, -0.016074681654572487, 0.0033918265253305435, 0.00519335875287652, 0.0824342668056488, 0.02809634618461132, -0.006443611811846495, 0.0019921613857150078, -0.02424941398203373, -0.0023820067290216684, 0.019894136115908623, -0.005162445828318596, -0.0002898079692386091, -0.013546697795391083, 0.01198731642216444, -0.018973620608448982, -0.008676206693053246, -0.011245408095419407, -0.021817602217197418, -0.0003127779345959425, -0.006038310006260872, 0.010455412790179253, -0.013251308351755142, 0.01470077782869339, 0.015497642569243908, -0.007006912492215633, 0.009823416359722614, -0.027299480512738228, -0.03456743434071541, -0.004609449300915003, 0.03596881777048111, 0.010503499768674374, -0.004087365698069334, -0.027244525030255318, 0.024290630593895912, 0.008373947814106941, -0.026983482763171196, -0.016940241679549217, -0.02690104953944683, 0.013423046097159386, -0.014961819164454937, -0.02885199338197708, -0.0021724863909184933, 0.01595102995634079, -0.0024507020134478807, 0.012392617762088776, -0.007068738341331482, -0.019028576090931892, 0.0037301506381481886, -0.009321941994130611, -0.02121308445930481, -0.00832586083561182, 0.0012665682006627321], "5f6282df-c993-4ad6-ab4e-cc53ae5c1557": [-0.022332165390253067, -0.0043221330270171165, 0.017618359997868538, -0.04301518574357033, -0.01741221733391285, 0.01286332681775093, -0.009029066190123558, -0.036748435348272324, -0.010485810227692127, -0.047165531665086746, 0.013605441898107529, 0.013687899336218834, 0.018923932686448097, -0.01827801764011383, -0.01914381980895996, 0.009448223747313023, 0.02432488091289997, -0.029299801215529442, 0.0050024050287902355, -0.0045248400419950485, -0.0294097438454628, 0.0018174946308135986, -0.019762247800827026, -0.008444993756711483, -0.016381502151489258, 0.017384732142090797, 0.01948739029467106, -0.016216587275266647, -0.03454957902431488, 0.01888270489871502, 0.007056964095681906, -0.018374217674136162, -0.013955885544419289, -0.009599395096302032, -0.012890812940895557, 0.012973270379006863, 0.007235621567815542, -0.0032158317044377327, 0.017851989716291428, -0.005565862637013197, 0.021548820659518242, 0.006881742738187313, -0.002528688171878457, -0.00863739475607872, -0.01455370057374239, 0.04012918472290039, 0.011915069073438644, -0.010595753788948059, -0.016628874465823174, 0.0009851920185610652, 0.000949117005802691, -0.022428365424275398, -0.04243798553943634, 0.006514120846986771, 0.003038892289623618, -0.009393252432346344, 0.021699992939829826, 0.0006587988464161754, 0.006555349566042423, -0.012512884102761745, 0.012560984119772911, -0.00016867226804606616, -0.013096955604851246, 0.0006978801684454083, -0.012052497826516628, -0.02054559253156185, 0.0006768364110030234, -0.010286538861691952, -0.0048203119076788425, -0.011221054010093212, 0.03573146462440491, 0.035703979432582855, 0.0022555487230420113, 0.0014223870821297169, -0.0127671267837286, -0.015694359317421913, -0.004157218616455793, -0.009585652500391006, -0.008554937317967415, 0.0009285027044825256, 0.020394420251250267, -0.015598158352077007, -0.02960214391350746, 0.00430151866748929, 0.029162371531128883, 0.01941867731511593, 0.018126847222447395, 0.00968872383236885, -0.006033120211213827, 0.010746925137937069, 0.004724111873656511, 0.017164845019578934, 0.03762798011302948, 0.006459149532020092, 0.008664879947900772, 0.017316017299890518, 0.01323438435792923, 0.02088916301727295, -0.028310313820838928, -0.03144368901848793, -0.025039510801434517, -0.015062186866998672, -0.01249914150685072, -0.00994296744465828, -0.03202088922262192, -0.008987837471067905, 0.01243042666465044, -0.021328935399651527, 0.0011458118679001927, 0.018016904592514038, -0.040788840502500534, 0.03257060423493385, -0.0015546622453257442, 0.0034202570095658302, 0.018305504694581032, -0.02743077091872692, 0.03471449017524719, -0.03125128895044327, -0.011056140065193176, -0.02161753550171852, 0.0026695525739341974, -0.012334226630628109, 0.03779289498925209, -0.016615130007267, 0.02306053787469864, -0.009118394926190376, 0.004167525563389063, -0.0010229849722236395, 0.016450216993689537, -0.01547447219491005, 0.009798667393624783, 0.015529444441199303, 0.010142238810658455, 0.02315673790872097, -0.00509516941383481, -0.0042156255804002285, -0.010520167648792267, -0.01398337073624134, 0.00017511424084659666, -0.023005565628409386, 0.009523809887468815, 0.020476877689361572, 0.012224284000694752, -0.044526901096105576, -0.017865732312202454, 0.031031401827931404, -0.0036659108009189367, 0.012492269277572632, 0.005119219422340393, -0.0011750154662877321, 0.013969628140330315, -0.03380746394395828, -0.023940080776810646, -0.006905792746692896, 0.020902907475829124, 0.004964611958712339, -0.001182745792903006, 0.024379853159189224, -0.02877757139503956, -0.004614168778061867, -0.007812822237610817, 0.010032296180725098, 0.0025441490579396486, -0.007139421533793211, -0.007785336580127478, 0.04738542065024376, 0.005593348294496536, -0.009496323764324188, -0.011750154197216034, -0.010904967784881592, -0.01533704437315464, 0.025369340553879738, -0.022607022896409035, 0.006253006402403116, 0.017618359997868538, 0.009358895011246204, 0.023445338010787964, 0.016532674431800842, -0.009798667393624783, -0.02252456545829773, 0.03427471965551376, 0.004043839871883392, 0.002461691852658987, 0.011839482933282852, -0.024008795619010925, -0.00875420868396759, 0.0309764314442873, 0.007345564663410187, -0.016230329871177673, -0.003573146415874362, 0.0035868892446160316, 0.004023225512355566, -0.008616779930889606, -0.020669277757406235, -0.6156806349754333, 0.004507661797106266, 0.009819281287491322, -0.002839620690792799, 0.00044492544839158654, 0.019789734855294228, 0.012079983949661255, -0.008108293637633324, -0.01134474016726017, 0.03141620382666588, 0.014430014416575432, 0.019404932856559753, -0.009331408888101578, -0.014210128225386143, 0.006081220228224993, -0.018662817776203156, -0.018291760236024857, -0.02014704793691635, -0.002650656271725893, -0.0013588264118880033, -0.033972375094890594, 0.024970795959234238, -0.002166219986975193, 0.0008511990890838206, 0.003186628222465515, -0.0162715595215559, 0.03356008976697922, -0.017659589648246765, 0.0002239658497273922, 0.023404108360409737, -0.02369271032512188, 0.0073249503038823605, 0.005352848209440708, 0.008513708598911762, 0.038782380521297455, -0.007228750269860029, -0.016683844849467278, 0.02626262605190277, 0.021562565118074417, 0.05046382173895836, -0.013907785527408123, -0.0017728303791955113, 0.022112280130386353, 0.0059712775982916355, 0.0023156737443059683, 0.006191163323819637, 0.006411049049347639, 0.005638012662529945, -0.00850683730095625, -0.020064592361450195, -0.00029933691257610917, -0.012018140405416489, -0.004858104977756739, -0.004545454401522875, 0.014265099540352821, -0.007709750439971685, 0.012938912957906723, -0.026523740962147713, 0.012677798047661781, 0.006191163323819637, 0.005053940694779158, 0.005160448141396046, -0.01401772815734148, -0.039249639958143234, -0.05359719693660736, 0.005799491424113512, 0.007455507293343544, -0.024338623508810997, 0.003755239536985755, -0.005249776877462864, 0.02943722903728485, 0.0018947983626276255, -0.01021095272153616, -0.009606266394257545, -0.01928124763071537, 0.033065348863601685, 0.018168075010180473, 0.0031711675692349672, -0.02108156308531761, 0.005098605062812567, 0.0037689823657274246, 0.01050642505288124, -0.02172747813165188, -0.014292585663497448, 0.03504431992769241, 0.010533910244703293, -0.021507592871785164, -0.009606266394257545, 0.0027073456440120935, 0.0002617587451823056, 0.009949838742613792, 0.025341853499412537, -0.016216587275266647, -0.01827801764011383, 0.0018432625802233815, 0.04458187147974968, -0.011255411431193352, 0.004981790669262409, -0.004191575571894646, -0.012911426834762096, -0.024778395891189575, -0.016587644815444946, 0.005040198098868132, 0.004655397497117519, 0.028447743505239487, 0.02817288599908352, 0.006929842755198479, -0.02383013814687729, 0.022469593212008476, -0.025383083149790764, 0.004445818718522787, -0.008527451194822788, -0.007366179022938013, -0.034769464284181595, 0.013859685510396957, -0.02378891035914421, -0.010437710210680962, -0.0033824641723185778, 0.026757368817925453, -0.014677385799586773, -0.0013321995502337813, -0.007963993586599827, 0.008039579726755619, 0.010004810057580471, 0.00014966845628805459, 0.008417508564889431, 0.01874527521431446, 0.0005733353900723159, 0.016189102083444595, -0.018456675112247467, -0.00352161074988544, -0.02864014357328415, 0.011619597673416138, -0.011303511448204517, 0.021713735535740852, -0.023335395380854607, 0.039414554834365845, -0.0023328522220253944, 0.006094963289797306, -0.045626331120729446, -0.011976911686360836, 0.006727135274559259, 0.022565793246030807, -0.018497904762625694, 0.0038205180317163467, -0.03938706964254379, -0.023142995312809944, -0.003157424507662654, -0.004383975639939308, 0.002061430597677827, -0.014663643203675747, -0.021576307713985443, -0.008994708769023418, 0.025108225643634796, -0.018154332414269447, 0.0030835566576570272, 0.015598158352077007, -0.03782038018107414, -0.005088298115879297, -0.022771937772631645, -0.0232529379427433, 0.0056002200581133366, -0.012485397979617119, 0.004150346852838993, -0.016725074499845505, -0.008025836199522018, -0.005160448141396046, 0.009620009921491146, -0.029519686475396156, -0.035841409116983414, 0.01258159801363945, -0.0006373256328515708, -0.0021524771582335234, 0.026551226153969765, -0.010595753788948059, 0.023115508258342743, -0.03114134632050991, -0.016463959589600563, -0.0026351953856647015, 0.003823953913524747, 0.0018587232334539294, 0.018800247460603714, -0.014196385629475117, -0.016092902049422264, 0.029052428901195526, 0.003131656674668193, 0.02312925085425377, 0.011695182882249355, -0.03427471965551376, 0.01423761434853077, 0.01071256771683693, 0.0035456607583910227, -0.009035937488079071, -0.003392771352082491, -0.03224077448248863, 0.006297670770436525, -0.029052428901195526, -0.0033635676372796297, -0.0065381708554923534, 0.026345083490014076, 0.009008452296257019, 0.007105064112693071, 0.0008524874574504793, -0.002916924422606826, 0.0018243661615997553, -0.018071874976158142, 0.012554112821817398, -0.02068302035331726, 0.028722601011395454, -0.005418126937001944, -0.00446986872702837, -0.016395244747400284, -0.002561327535659075, -0.0174397025257349, 0.01532330084592104, 0.03419226408004761, 0.02525939606130123, 0.01485604327172041, -0.007379921618849039, -0.0065381708554923534, -0.001932591199874878, 0.010533910244703293, 0.03592386469244957, -0.009262694977223873, -0.003703703638166189, 0.026015253737568855, -0.0018329554004594684, 0.032268259674310684, 0.01548821572214365, -0.0008430392481386662, 0.0013356353156268597, 0.023706452921032906, 0.007242492865771055, 0.01911633275449276, 0.03141620382666588, 0.0348244346678257, 0.02850271388888359, -0.015818044543266296, 0.03727066516876221, -0.003555967938154936, -0.025644196197390556, 0.006050298921763897, 0.019775990396738052, -0.009022194892168045, 0.033670034259557724, 0.007586064748466015, 0.022510822862386703, -0.0044526900164783, -0.017590874806046486, 0.02289562299847603, 0.02018827758729458, 0.011172953993082047, -0.001431835349649191, -0.0065381708554923534, 0.008877894841134548, -0.006730570923537016, 0.02229093573987484, 0.014677385799586773, 0.03529169410467148, 0.009200852364301682, 0.011138596571981907, -0.0123960692435503, 0.010918711312115192, -0.024118738248944283, 0.00495430501177907, 0.006898920983076096, -0.0076410360634326935, -0.026152683421969414, -0.002600838430225849, -0.005455919541418552, 0.0058578988537192345, -0.00974369514733553, 0.012196797877550125, -0.019226277247071266, 0.00863739475607872, -0.011262282729148865, 0.026125198230147362, 0.022565793246030807, -0.00591630581766367, 0.019322477281093597, -0.03325774893164635, -0.014065828174352646, 0.033202774822711945, 0.012574726715683937, -0.004569504410028458, -0.03067408874630928, -0.0059781488962471485, -0.004036968108266592, 0.00464509055018425, -0.002451384672895074, -0.0009027348132804036, -0.0012798048555850983, -0.00255617406219244, 0.0011114546796306968, -0.005596783943474293, 0.007888407446444035, 0.02560296840965748, -0.019528619945049286, -0.011008039116859436, 0.014127671718597412, 0.009681852534413338, 0.005720470100641251, -0.009606266394257545, -0.026138940826058388, 0.032158318907022476, -0.01510341465473175, -0.020971620455384254, -0.027485741302371025, -0.023651480674743652, -0.025080738589167595, 0.013660413213074207, -0.0006137050804682076, -0.018621589988470078, -0.0051089124754071236, -0.011853226460516453, 0.017219817265868187, -0.0034855357371270657, -0.00558991264551878, 0.022442108020186424, 0.012643441557884216, 0.014814814552664757, -0.026207655668258667, 0.0022229093592613935, 0.0316910594701767, 0.05761011317372322, 0.023885110393166542, 0.003255342599004507, 0.009936095215380192, -0.014622414484620094, -0.021301450207829475, -0.03559403494000435, -0.029629629105329514, 0.04820999130606651, 0.012664055451750755, -0.020435649901628494, 0.010011681355535984, 0.013474884442985058, 0.000914759817533195, 0.01019033882766962, -0.006380127742886543, -0.0003188775444868952, -0.02282690815627575, -0.012354840524494648, 0.005352848209440708, -0.0001638407848076895, -0.00557960569858551, 0.017989417538046837, 0.020806707441806793, 0.024682195857167244, 0.02198859304189682, 0.028887514024972916, 0.010925582610070705, 0.007847179658710957, -0.02268948033452034, -0.023569023236632347, 0.030921459197998047, -0.008843537420034409, 0.025877825915813446, -0.020243247970938683, 0.02700474113225937, 0.007998351007699966, -0.008183879777789116, -0.01767333224415779, 0.004981790669262409, -0.01757713221013546, 0.02883254364132881, 0.0009104651981033385, -0.016999932006001472, 0.0051982407458126545, -0.006424792110919952, 0.001667182077653706, 0.023678965866565704, -0.010052910074591637, -0.015364529564976692, 0.025204425677657127, 0.009606266394257545, -0.013076341710984707, 0.02051810547709465, -0.00027743421378545463, -0.014196385629475117, 0.0007026043022051454, 0.006050298921763897, -0.03438466414809227, -0.009523809887468815, -0.020009620115160942, -0.006088091991841793, -0.006283927708864212, -0.011166082695126534, -0.01265031285583973, -0.029684601351618767, 0.0004917370970360935, -0.014691129326820374, -0.017261045053601265, 0.007091321516782045, 0.006861128378659487, -0.049776677042245865, -0.021713735535740852, 0.0010367278009653091, 0.029767058789730072, 0.019569847732782364, -0.003796468023210764, 0.00042001649853773415, 0.00239813094958663, 0.022414622828364372, 0.017494674772024155, -0.028722601011395454, -0.009963581338524818, -0.022029822692275047, -0.003751803655177355, -0.012753384187817574, -0.02716965600848198, -0.004212189931422472, -0.014196385629475117, 0.00751047907397151, -0.014897271990776062, -0.0089053800329566, -0.024668453261256218, -0.0004852951387874782, -0.0009027348132804036, 0.007441764697432518, 0.039551980793476105, -0.008554937317967415, 0.01988593488931656, -0.04557136073708534, 0.010478938929736614, -0.021974850445985794, -0.025438053533434868, -0.010252181440591812, 0.006586270872503519, 0.01631278730928898, -0.02108156308531761, -0.0031969354022294283, -0.01713735982775688, -0.015378272160887718, 0.01897890493273735, 0.013193155638873577, -0.014457500539720058, -0.009248952381312847, 0.015927987173199654, -0.02065553516149521, -0.003851439571008086, 0.03485191985964775, 0.01771456003189087, -0.0040197898633778095, -0.015886759385466576, -0.011502782814204693, 0.03471449017524719, -0.007242492865771055, 0.004531711805611849, 0.0271009411662817, 0.016395244747400284, -0.03633615002036095, -0.01774204708635807, 0.0004998969379812479, -0.014677385799586773, 0.010939325205981731, -0.022002335637807846, -0.01934996247291565, -0.01418264303356409, 0.007957122288644314, -0.00800522230565548, 0.0025510203558951616, -0.012952655553817749, -0.018827732652425766, -0.01510341465473175, 0.004133168607950211, -0.0030303029343485832, -0.011564625427126884, 0.0247921384871006, -0.021631278097629547, -0.02007833495736122, 0.012519755400717258, 0.0028945922385901213, 0.013254999183118343, -0.02312925085425377, 0.0019703840371221304, -0.020504362881183624, -0.0181818176060915, -0.00461073312908411, -0.03589637950062752, -0.018319247290492058, 0.020160792395472527, 0.0479901060461998, 0.0060399919748306274, 0.016134129837155342, 0.007235621567815542, 0.0220573078840971, 0.009640623815357685, -0.012402940541505814, -0.0073249503038823605, -0.027746856212615967, -0.017865732312202454, 0.005902563221752644, -0.009248952381312847, 0.010904967784881592, -0.01717858947813511, 0.003126503201201558, -0.004998969379812479, -0.0017470624297857285, 0.021837422624230385, -0.01147529762238264, 0.005751391407102346, -0.01972102001309395, -0.029657116159796715, 0.014663643203675747, 0.049336906522512436, 0.0007133408798836172, -0.0003822236030828208, -0.0348244346678257, 0.0017762660281732678, 0.011269154027104378, -0.006005634553730488, 0.03111385926604271, 0.0063423351384699345, 0.03345014899969101, -0.0014953961363062263, -0.008238851092755795, 0.022277193143963814, -0.010939325205981731, -0.018071874976158142, -0.016793787479400635, -0.060633547604084015, -0.025273138657212257, -0.0007051810389384627, 0.02723837085068226, 0.015570673160254955, -0.016999932006001472, 0.01643647439777851, 0.014911014586687088, 0.030784031376242638, -0.005881948862224817, -0.017068644985556602, 0.021260220557451248, -0.025273138657212257, 0.009791795164346695, -0.006867999676615, -0.00863739475607872, 0.006981378421187401, 0.012272384017705917, -0.017989417538046837, 0.020160792395472527, 0.016092902049422264, -0.022332165390253067, -0.006620627827942371, 0.030261801555752754, 0.012512884102761745, 0.021699992939829826, 0.01610664464533329, 0.016848759725689888, 0.011866969056427479, -0.011337868869304657, -0.016999932006001472, -0.027843056246638298, 0.00897409487515688, -0.021906135603785515, -0.010444581508636475, 0.03762798011302948, -0.0009456812986172736, -0.010204081423580647, 0.01080876775085926, -0.022675737738609314, 0.002487459685653448, -0.03622620925307274, 0.019404932856559753, 0.016230329871177673, -0.002863670699298382, -0.044856730848550797, -0.018827732652425766, -0.007744107861071825, 0.02366522327065468, -0.0023345702793449163, 0.021301450207829475, 0.004950869362801313, -0.004737854935228825, 0.004899333696812391, 0.049336906522512436, -0.005517762620002031, 0.016120387241244316, -0.026180168613791466, 0.006115577649325132, -0.02268948033452034, -0.00909090880304575, -0.0010410224786028266, -0.01737098954617977, -0.004531711805611849, 0.01416889950633049, -0.01547447219491005, -0.0070294784381985664, 0.006094963289797306, 0.021535078063607216, -0.000991204520687461, -0.013138184323906898, -0.03479694947600365, 0.02910740114748478, -0.00912526622414589, 0.009674981236457825, -0.001899951952509582, -0.003415103303268552, 0.030536659061908722, -0.029492201283574104, -0.011763897724449635, -0.014320071786642075, 0.01532330084592104, 0.022029822692275047, 0.014539957046508789, 0.012141826562583447, -0.005211983807384968, -0.011763897724449635, 0.009283308871090412, -0.013749741949141026, 0.003617810783907771, 0.0013442245544865727, -0.0016156462952494621, -0.03968941047787666, -0.020669277757406235, -0.0019051054259762168, 0.0008408919093199074, 0.007991479709744453, -0.004943997599184513, -0.016051672399044037, 0.0010642135748639703, 0.03235071897506714, -0.011399711482226849, 1.3575111552199814e-05, 0.02101285010576248, 0.012320484034717083, -0.031388718634843826, 0.026221398264169693, 0.011269154027104378, -0.01274651288986206, 0.021136535331606865, -0.002908335067331791, -0.038947295397520065, -0.021397650241851807, 0.023967565968632698, -0.0007236480596475303, 0.01510341465473175, 0.0028035456780344248, 0.022579537704586983, 0.009606266394257545, -0.011537140235304832, -0.003461485495790839, -0.01902013272047043, -0.004968047607690096, -0.010740053839981556, 0.012286126613616943, 0.0018947983626276255, -0.02700474113225937, 0.005469662602990866, -0.01149591151624918, 0.030124373733997345, -0.006878307089209557, -0.04656084626913071, -0.019762247800827026, -0.02495705336332321, -0.014072699472308159, -0.008376279845833778, 0.008204493671655655, -0.004748161882162094, -0.018003160133957863, -0.005363155156373978, 0.01243042666465044, -0.003727753646671772, 0.012554112821817398, 0.011248540133237839, -0.020669277757406235, -0.015144643373787403, 0.015625644475221634, 0.0010891224956139922, -0.03837009519338608, -0.009468837641179562, -0.017164845019578934, -0.029217343777418137, -0.0027674706652760506, -0.0062736207619309425, 0.05126090720295906, 0.009626881219446659, -0.02723837085068226, -0.01888270489871502, -0.018332989886403084, -0.03050917387008667, -0.0018089053919538856, -0.030234316363930702, 0.018387962132692337, 0.029189858585596085, 0.02817288599908352, 0.012856455519795418, 0.028255343437194824, -0.029052428901195526, 0.018759019672870636, -0.03083900175988674, -0.02219473570585251, -0.022442108020186424, -0.037243179976940155, -0.0031625782139599323, -0.028695113956928253, -0.0479901060461998, 0.016848759725689888, 0.0007794784614816308, -0.012822098098695278, 0.0016044802032411098, 0.022016078233718872, -0.009833023883402348, -0.005881948862224817, -0.01724730245769024, 0.010252181440591812, 0.034632034599781036, 0.0076341647654771805, 8.261827315436676e-05, -0.033972375094890594, -0.00200130557641387, 0.014649900607764721, -0.006998557131737471, -0.03246065974235535, 0.00893973745405674, 0.022180993109941483, 9.169071563519537e-05, 0.009565037675201893, -0.01245104055851698, -0.010265924967825413, 0.008231979794800282, -0.007709750439971685, 0.001925719785504043, 0.008561808615922928, 0.01811310462653637, 0.02656496874988079, 0.0010461760684847832, 0.009166494943201542, -0.011887582950294018, 0.01517212949693203, 0.018731532618403435, 0.011111111380159855, 0.022263450548052788, -0.014457500539720058, -0.006874870974570513, -0.01834673248231411, 0.005658627022057772, 0.009145880118012428, -0.005466226954013109, -0.011193567886948586, -0.0020425342954695225, -0.03268054872751236, 0.001017831382341683, 0.012554112821817398, -0.01164708286523819, -0.012093726545572281, 0.001053047482855618, -0.015556929633021355, 0.01052703894674778, 0.0011372225126251578, -0.0026729884557425976, -0.021864907816052437, -0.0028379028663039207, -0.01258159801363945, 0.013839070685207844, -0.05049130693078041, 0.00043826873297803104, 0.021837422624230385, -0.026853568851947784, 0.004016354214400053, 0.2201058268547058, -0.01229986920952797, 0.0189514197409153, 0.0026558097451925278, 0.0014764997176826, 0.0024410774931311607, -0.016958702355623245, -0.002916924422606826, -0.013804714195430279, 0.01825053244829178, 0.022607022896409035, -0.00327939260751009, -0.033367689698934555, -0.0022555487230420113, 0.009145880118012428, -0.013928399421274662, -0.023101765662431717, -0.018662817776203156, -0.011695182882249355, 0.0011294921860098839, 0.0031024531926959753, 0.004535147454589605, -0.03356008976697922, -0.006527863442897797, 0.03405483439564705, 0.030399231240153313, 0.020435649901628494, -0.0016783480532467365, 0.02088916301727295, 0.0309489443898201, -0.013784099370241165, -0.00750360731035471, 0.021878650411963463, -0.013990242965519428, -0.023912595584988594, 0.004418333061039448, 0.02730708383023739, -0.016821274533867836, 0.001855287584476173, -0.0008550642523914576, -0.006455713417381048, -0.018923932686448097, 0.02957465872168541, -0.03760049492120743, 0.010423967614769936, -0.005170755088329315, -0.009654366411268711, -0.0030595066491514444, 0.002849927870556712, 0.03485191985964775, -0.01370164193212986, -0.0030096888076514006, 0.004263725597411394, -0.006256442051380873, 0.0021095306146889925, -0.006483199540525675, -0.011702054180204868, -0.004205318633466959, -0.009585652500391006, 0.00812203623354435, -0.004851233214139938, 0.003305160440504551, -0.006149934604763985, -0.004658833146095276, -0.030289286747574806, 0.029822029173374176, 0.0049955337308347225, 0.019872190430760384, 0.004263725597411394, -0.004528276156634092, 0.002537277527153492, -0.0083075650036335, -0.028557686135172844, 0.002873977879062295, -0.013000755570828915, -0.018800247460603714, 0.02686731331050396, 0.02028447762131691, 0.04361987113952637, -0.0015228819102048874, 0.012334226630628109, 0.0027760600205510855, -0.035099294036626816, -0.01495224330574274, 0.002755445661023259, -0.016848759725689888, 0.019748505204916, -0.019157562404870987, 0.004414897412061691, -0.014265099540352821, -0.01888270489871502, 0.009922352619469166, 0.00191713054664433, -0.020971620455384254, -0.0092901811003685, 0.0005441317916847765, 0.011468425393104553, 0.011805126443505287, 0.00013646241859532893, -0.034439634531736374, -0.008582422509789467, 0.06486634910106659, 0.006823335308581591, 0.03281797468662262, 0.0007434034487232566, 0.011578368954360485, -0.003494124859571457, 0.00574795575812459, -0.005710162688046694, -0.0040197898633778095, 0.008032708428800106, -0.05307496711611748, 0.02642754092812538, -0.006503813434392214, -0.002978767268359661, 0.014718614518642426, 0.036803409457206726, -0.01601044461131096, -0.001138940453529358, 0.005497148260474205, 0.010444581508636475, 0.007455507293343544, -0.0026197347324341536, 0.015501958318054676, -0.02499828301370144, -0.02329416573047638, -0.015282072126865387, 0.017425959929823875, -0.024517280980944633, -0.013687899336218834, 0.002607709728181362, -0.00909090880304575, 0.021232735365629196, -0.002760599134489894, -0.002702191937714815, -0.012712155468761921, -0.0178107600659132, -0.0007481275242753327, 0.00039940219721756876, -0.00015589568647556007, 0.007132549770176411, 0.012725898064672947, 0.009702466428279877, 0.0027829313185065985, 0.002496049040928483, 0.026551226153969765, -0.02569916844367981, 0.007689136080443859, -0.03251563385128975, -0.0047069331631064415, 0.0060983989387750626, 0.00576513446867466, -0.02259328030049801, -0.009963581338524818, 0.031168831512331963, -0.012925170361995697, -0.05269016698002815, -0.01643647439777851, 0.017494674772024155, 0.018896447494626045, -0.05018896609544754, 0.009620009921491146, 0.052415311336517334, 0.020366935059428215, -0.013577956706285477, 0.001968666212633252, -0.17458942532539368, 0.0032879819627851248, 0.016532674431800842, -0.004590118769556284, -0.003032020991668105, 0.029162371531128883, 0.02383013814687729, -0.003717446466907859, -0.021906135603785515, -0.003004535101354122, 0.013811585493385792, 0.00167491240426898, -0.03410980477929115, -0.013653541915118694, 0.014113928191363811, -0.027691883966326714, -0.003219267586246133, 0.03922215476632118, 0.0449666753411293, 0.016683844849467278, 0.015556929633021355, -0.01708238758146763, -0.005315055139362812, -0.010238438844680786, 0.003004535101354122, 0.016024187207221985, 0.001132069039158523, 0.022428365424275398, 0.010279667563736439, -0.03317528963088989, 0.007469250354915857, 0.003281110431998968, 0.024434823542833328, 0.0009345152066089213, -0.007221878506243229, 0.0036452964413911104, -0.001855287584476173, -0.000733525725081563, -0.004112554248422384, 0.02208479307591915, 0.02777434140443802, 0.010726310312747955, 0.010836253874003887, -0.00652442779392004, 0.010135367512702942, 0.018566617742180824, 0.04348244518041611, -0.006393870804458857, 0.01021095272153616, 0.014265099540352821, 0.017659589648246765, -0.018566617742180824, 0.00813577976077795, -0.002131862798705697, 0.01401772815734148, 0.02623514086008072, 0.016532674431800842, 0.02175496518611908, 0.0023809524718672037, -0.0060606058686971664, -0.0001597608788870275, -0.011454682797193527, 0.0020923521369695663, -0.0011526832822710276, -0.017096132040023804, -0.02075173519551754, -0.0051982407458126545, 0.017096132040023804, -0.0039132824167609215, 0.023500308394432068, 0.0005540094571188092, 0.015666872262954712, 0.01296639908105135, 0.009248952381312847, 0.01708238758146763, -0.005211983807384968, -0.03913969546556473, 0.00524634076282382, 0.024682195857167244, -0.0002563904272392392, 0.026125198230147362, 0.019693534821271896, 0.009056552313268185, 0.003981996793299913, -0.0061739846132695675, -0.011516525410115719, -0.004992098081856966, -0.013330584391951561, -0.0013691334752365947, 0.010547653771936893, 0.04007421061396599, -0.01594172976911068, -0.014003985561430454, 0.0022744450252503157, 0.008376279845833778, 0.0002054988726740703, 0.023486565798521042, 0.015859272330999374, 0.008589294739067554, -0.018827732652425766, -0.0083213085308671, 0.020779220387339592, -0.035209234803915024, 0.013797841966152191, 0.0356764942407608, 0.007592936046421528, 0.013289356604218483, 0.010265924967825413, 0.05131588131189346, -0.020202020183205605, -0.0213151928037405, 0.012183055281639099, 0.032927919179201126, -0.0032381638884544373, -0.03314780443906784, 0.02810417115688324, 0.003652167972177267, -0.011880711652338505, 0.01343365665525198, -0.005050505045801401, 0.04114615544676781, -0.036308664828538895, -0.027925513684749603, -0.004243111237883568, -0.00766852218657732, -0.008912251330912113, -0.11884834617376328, -0.028612656518816948, 0.031196316704154015, 0.020902907475829124, -0.004418333061039448, 0.010575138963758945, 0.00592317758128047, 0.024805881083011627, -0.009448223747313023, 0.025204425677657127, -0.02747199870646, 0.010925582610070705, -0.00797086488455534, -0.030564144253730774, 0.01293204165995121, 0.0013141620438545942, -0.001699821325019002, -0.02068302035331726, -0.011949426494538784, 0.02663368359208107, 0.0040197898633778095, -0.013529856689274311, 0.0016474266303703189, 0.019130075350403786, -0.007063835859298706, -0.026317598298192024, -0.021205250173807144, 0.005163883790373802, 0.022345907986164093, 0.00463821878656745, 0.020669277757406235, -0.020737992599606514, 0.022703222930431366, -0.028062941506505013, 0.009042808786034584, -0.016793787479400635, -0.009283308871090412, -0.009338281117379665, 0.009846767410635948, -0.024311138316988945, 0.008362537249922752, 0.012588469311594963, 0.005854463204741478, -0.04845736175775528, -0.0015890194335952401, -0.008658008649945259, -0.013145055621862411, 0.02600151114165783, 0.00264034909196198, 0.022112280130386353, -0.038012780249118805, -0.011269154027104378, -0.04241050034761429, -0.01533704437315464, 0.030151858925819397, 0.016230329871177673, 0.02306053787469864, 0.016367759555578232, -0.034934379160404205, 0.008912251330912113, -0.00191713054664433, 0.017054902389645576, -0.011042396537959576, 0.031828489154577255, 0.020875420421361923, 0.02523191086947918, 0.011784511618316174, 0.0039132824167609215, 0.00431182561442256, 0.0028361850418150425, -0.022909365594387054, 0.003449460491538048, -0.019569847732782364, 0.008314437232911587, -0.019542362540960312, -0.005301312543451786, 0.00622552027925849, -0.018896447494626045, 0.015254586935043335, 0.013907785527408123, -0.00856867991387844, -0.011688311584293842, -0.0072699785232543945, -0.033670034259557724, 0.0003641860675998032, 0.006723699625581503, 0.025355596095323563, -0.014567443169653416, 0.019734762609004974, -0.03699580952525139, 0.007805950473994017, 0.02413248084485531, -0.009496323764324188, 0.014567443169653416, -0.006864564027637243, 0.01259534154087305, -0.009956710040569305, 0.002824160037562251, 0.01984470523893833, 0.007050092797726393, -0.0013751459773629904, 0.00327939260751009, -0.04551638662815094, -0.0031093244906514883, 0.028530199080705643, 0.010664467699825764, 0.01168144028633833, -0.026276368647813797, 0.01495224330574274, -0.012547241523861885, 0.0083213085308671, 0.004823747556656599, -0.02182367816567421, 0.020160792395472527, -0.01951487734913826, 0.016161616891622543, -0.026276368647813797, -0.0039064111188054085, 0.014155156910419464, 0.0005600220174528658, 0.011076753959059715, -0.004225932992994785, -0.005201676860451698, 0.004717240575700998, 0.014787329360842705, 0.012787741608917713, -0.0271009411662817, 0.00025939667830243707, -0.01102865394204855, 0.017590874806046486, -0.014718614518642426, -0.031526144593954086, -0.005847591441124678, 0.010121623985469341, 0.0011432350147515535, 0.014416271820664406, -0.008376279845833778, -0.03232323378324509, 0.012815226800739765, 0.009317666292190552, 0.01967979036271572, 0.022881880402565002, -0.012904555536806583, -0.02896997146308422, 0.02880505658686161, -0.017302274703979492, -0.014306328259408474, -0.003428846364840865, -0.029162371531128883, -0.00909090880304575, -0.00524634076282382, -0.001699821325019002, 0.04370233044028282, 0.01603792980313301, -0.02369271032512188, -0.02292310819029808, -0.012904555536806583, 0.013502370566129684, 0.020435649901628494, 0.02877757139503956, 0.008925994858145714, -0.011743282899260521, 0.023335395380854607, -0.010547653771936893, 0.018621589988470078, -0.003968254197388887, 0.017769532278180122, -0.02245585061609745, -0.04526901617646217, -0.023101765662431717, 0.013007626868784428, -0.012162440456449986, 0.002770906314253807, -0.01851164735853672, 0.026056483387947083, 0.03375248983502388, 0.021864907816052437, 0.0037586751859635115, -0.01827801764011383, -0.006242698989808559, 0.005868205800652504, 0.017425959929823875, 0.021741222590208054, -0.03375248983502388, -0.025204425677657127, 0.02880505658686161, 0.023678965866565704, 0.011001167818903923, -0.0033773104660212994, 0.019226277247071266, 0.01005978137254715, 0.00704322149977088, -0.009310794994235039, 0.011544011533260345, -0.0204906202852726, 0.016518929973244667, -0.013096955604851246, 0.021645022556185722, -0.007826564833521843, 0.005998763255774975, 0.02663368359208107, 0.022510822862386703, -0.0008061052649281919, 0.016079159453511238, 0.0181818176060915, -0.017755789682269096, -0.01871779002249241, 0.0006437675911001861, -0.014732358045876026, -0.02649625577032566, 0.020600562915205956, 0.006809592712670565, 0.003538789227604866, -0.0251906830817461, -0.0006454854737967253, 0.011990655213594437, -0.00990861002355814, -0.006507249549031258, 0.003002817276865244, -0.033972375094890594, -0.025974025949835777, -0.01192881166934967, 0.017151102423667908, 0.012368584051728249, 0.003789596725255251, -0.03331271931529045, 0.016161616891622543, -0.008280079811811447, 0.014457500539720058, -0.0076410360634326935, 0.0006493506371043622, -0.026290111243724823, -0.006318284664303064, -0.015034700743854046, -0.0014275406720116735, -0.016463959589600563, -0.014649900607764721, 0.002458255970850587, -0.012526626698672771, 0.0006115577416494489, -0.0013313406379893422, 0.0804232805967331, 0.02640005573630333, -0.011447811499238014, -0.0027245241217315197, -0.010155981406569481, 0.015392015688121319, 0.019459905102849007, 0.010898096486926079, 0.018401704728603363, -0.013639799319207668, 0.0324881449341774, -0.02402253821492195, -0.005734212696552277, -0.017604617401957512, -0.012519755400717258, -0.006909228395670652, -0.004109118599444628, 0.0006871435325592756, 0.0014335531741380692, 0.01727478951215744, 0.008994708769023418, 0.005820105783641338, 0.01533704437315464, -0.0054215625859797, -0.018429189920425415, -0.01981722004711628, 0.023404108360409737, 0.02088916301727295, -0.02088916301727295, -0.019899677485227585, 0.0063560777343809605, 0.004748161882162094, -0.029629629105329514, -0.019102590158581734, -0.01713735982775688, 0.011172953993082047, -0.011172953993082047, -0.018896447494626045, 0.01533704437315464, 0.02663368359208107, 0.019858447834849358, 0.01757713221013546, -0.01704115979373455, -0.008946608752012253, -0.006888614036142826, -0.01196316909044981, 0.02065553516149521, -0.012602212838828564, 0.008671751245856285], "0294ad83-fd66-4219-9f09-778575cf809c": [-0.004736501257866621, 0.006484662648290396, 0.01072719506919384, -0.039713744074106216, -0.009522049687802792, 0.02762025035917759, -0.012107506394386292, -0.03934939578175545, -0.015807023271918297, -0.047336988151073456, 0.010706175118684769, 0.015232476405799389, 0.01127371471375227, -0.006134329829365015, -0.004974727984517813, 0.016101302579045296, 0.021958868950605392, -0.015596822835505009, -0.00024063493765424937, -0.0064180996268987656, -0.026555238291621208, 0.0019338378915563226, -0.029091648757457733, -0.030352845788002014, -0.012548926286399364, 0.00438616843894124, 0.00891947653144598, -0.01694210059940815, -0.02470547892153263, 0.026639318093657494, -0.005223464220762253, -0.004358141683042049, -0.022785654291510582, -0.0035243495367467403, -0.02121616341173649, 0.01032781507819891, 0.0005285648512654006, -0.009073623456060886, 0.015442675910890102, -0.016872035339474678, 0.014300591312348843, 0.021902816370129585, -0.007945551536977291, -0.010369854979217052, -0.013880191370844841, 0.021104056388139725, -0.012590966187417507, -0.004967721179127693, -0.006561736110597849, 0.009199743159115314, -0.021496430039405823, 0.0001358634908683598, -0.022323215380311012, 0.01230369322001934, -0.010082582011818886, -0.010460942052304745, 0.008758323267102242, 0.005314550828188658, -0.0031162116210907698, 0.009017569944262505, -0.00945198256522417, -0.00010356718121329322, -0.011708127334713936, -0.0034612894523888826, -0.007945551536977291, -0.019114166498184204, -0.02254742942750454, -0.007258898578584194, -0.018946005031466484, -0.01389420498162508, 0.038312412798404694, 0.025083839893341064, 0.0007904387312009931, 0.008625197224318981, -0.01565287634730339, -0.017166314646601677, -0.015162410214543343, -0.018049152567982674, -0.004039338789880276, -0.0064776563085615635, 0.010187681764364243, -0.019436471164226532, -0.030689166858792305, -0.0013251344207674265, 0.04215206205844879, 0.03803214430809021, 0.027311956509947777, 0.007931537926197052, -0.01004754938185215, -0.0034717994276434183, 0.016465649008750916, 0.004288075491786003, 0.030717192217707634, 0.017782900482416153, 0.011659080162644386, 0.024130932986736298, 0.005808520130813122, 0.0042845718562603, -0.012163559906184673, -0.020613590255379677, -0.022225122898817062, 0.012843205593526363, -0.011967373080551624, -0.006884042639285326, -0.016031235456466675, -0.0068174791522324085, 0.022533414885401726, 0.00010778212163131684, 0.0028271868359297514, 0.014300591312348843, -0.03080127201974392, 0.019114166498184204, -0.0007413920830003917, -0.010453934781253338, 0.009458989836275578, -0.0053250608034431934, 0.01890396513044834, -0.024186987429857254, 0.0006844630115665495, -0.016325514763593674, 0.013789105229079723, -0.022897761315107346, 0.03169812634587288, -0.024215012788772583, 0.01966068521142006, 0.0065687429159879684, 0.003664482617750764, -0.019338378682732582, 0.010832294821739197, -0.02247736230492592, 0.028012622147798538, 0.013333671726286411, 0.010930388234555721, 0.00788949802517891, -0.015036290511488914, 0.0034647928550839424, -0.004929184447973967, 0.0076792980544269085, -0.008281870745122433, -0.037219371646642685, 0.03531356155872345, 0.02764827571809292, 0.026204904541373253, -0.019856872037053108, -0.001862019649706781, 0.038872942328453064, 0.004105902276933193, 0.03080127201974392, 0.007518145255744457, 0.010096595622599125, 0.01614334248006344, -0.024032840505242348, -0.022309202700853348, 0.01691407524049282, 0.004578851629048586, 0.005146391224116087, 0.00859016366302967, 0.022631509229540825, -0.017264407128095627, 0.0010282271541655064, -0.0270877443253994, 0.0028779851272702217, -0.008155751042068005, -0.010355842299759388, -0.009017569944262505, 0.037023186683654785, 4.48590399173554e-05, -0.016031235456466675, 0.0015686157857999206, -0.007987591437995434, -0.015933142974972725, 0.02317802794277668, -0.0342765748500824, 0.00524798734113574, 0.0013908217661082745, 0.0006805217708460987, 0.02390672080218792, 0.016619795933365822, -0.007335972040891647, -0.024957718327641487, 0.02764827571809292, 0.0007173066842369735, -0.0035331076942384243, 0.015596822835505009, -0.022757628932595253, -0.01926831156015396, 0.01800711266696453, 0.023402240127325058, 0.0009169965051114559, -0.018119219690561295, 0.01774086058139801, 0.006067766807973385, -0.010026528500020504, 0.002319204155355692, -0.6156891584396362, 0.0009222514927387238, 0.01191832683980465, -0.014237530529499054, -0.006530206184834242, 0.028867434710264206, 0.017166314646601677, -0.01477003749459982, -0.012044446542859077, 0.03730345144867897, 0.006085283122956753, 0.014798063784837723, -0.006933088880032301, -0.0056648836471140385, -0.011680100113153458, -0.03688305243849754, -0.003867675783112645, -0.01548471674323082, 0.015624849125742912, 0.0020336827728897333, -0.030717192217707634, 0.02606477215886116, 0.005237477365881205, -0.011168614029884338, 0.00023537995002698153, -0.018245339393615723, 0.024285079911351204, -0.027199849486351013, -0.0031004466582089663, 0.021033989265561104, -0.025392131879925728, 0.022407295182347298, 0.02055753767490387, 0.0058926003985106945, 0.04495472460985184, -0.0017560438718646765, -0.013473805040121078, 0.024593373760581017, 0.011308747343719006, 0.0401901975274086, -0.030296793207526207, -0.006586259230971336, 0.012822185643017292, 0.016129329800605774, -0.0015624848892912269, 0.00554577074944973, 0.004200492054224014, 0.004967721179127693, -0.011154601350426674, -0.02247736230492592, 0.012310699559748173, -0.006134329829365015, -0.006621292792260647, 0.0031547481194138527, -0.004722488112747669, 0.0015327066648751497, 0.008653223514556885, -0.026975637301802635, 0.006926082540303469, 0.00017658970318734646, 0.007441071793437004, 0.011462894268333912, -0.029792314395308495, -0.03242681920528412, -0.050588078796863556, 0.021930841729044914, -0.009585109539330006, -0.012429812923073769, 0.00891947653144598, -0.0012629502452909946, 0.0272839292883873, 0.005069317761808634, -0.007546171545982361, -0.0059731765650212765, -0.004151445347815752, 0.02513989247381687, 0.034332629293203354, -0.015807023271918297, -0.021104056388139725, 0.017054207623004913, -0.005678897257894278, -0.015764983370900154, -0.004873131401836872, -0.009003556333482265, 0.03150193765759468, 0.02101997658610344, -0.01422351785004139, 0.000213265186175704, 0.013060412369668484, 0.006467146333307028, 0.00840799044817686, 0.032118525356054306, -0.027760382741689682, -0.019618645310401917, -0.001065012183971703, 0.03761174529790878, -0.002009159419685602, 0.0008946627494879067, -0.0018129730597138405, -0.016521701589226723, -0.02563035860657692, -0.03147391229867935, 0.004529804922640324, 0.004624394699931145, 0.022729601711034775, 0.02424304001033306, -0.01624143496155739, -0.014069370925426483, 0.014924183487892151, -0.011834247037768364, -0.02506982535123825, 0.012583959847688675, -0.010643115267157555, -0.012240633368492126, 0.015274516306817532, -0.027508143335580826, -0.0008355440804734826, -0.0036189393140375614, 0.013999304734170437, -0.01628347486257553, 0.011792207136750221, -0.003380713053047657, 0.024229027330875397, -0.006113309878855944, 0.010720187798142433, 0.009760275483131409, 0.01839948631823063, 0.003505081171169877, 0.006719385739415884, -0.013396731577813625, -0.007258898578584194, -0.024411199614405632, 0.007476104889065027, -0.003321156371384859, 0.035593826323747635, -0.011890300549566746, 0.02257545478641987, -0.005139384418725967, 0.0008727669483050704, -0.05019570514559746, 0.0052024442702531815, 0.009241783060133457, 0.01285021286457777, -0.027564195916056633, 0.0047119781374931335, -0.027760382741689682, -0.015568796545267105, 0.007623245008289814, -0.010096595622599125, -0.020375363528728485, -0.011511940509080887, -0.008926483802497387, -0.008471050299704075, 0.03152996674180031, -0.008611183613538742, 0.004081378690898418, -0.002779891947284341, -0.04108704626560211, -0.01285021286457777, -0.019800817593932152, -0.014461743645370007, 0.00945198256522417, -0.011133581399917603, -0.016129329800605774, 0.0035190945491194725, -0.02589661069214344, -0.013634958304464817, 0.019814832136034966, -0.004018318839371204, -0.02917572855949402, -0.0011315754381939769, -0.012752119451761246, 0.00683849910274148, 0.034332629293203354, -0.030016526579856873, 0.021230176091194153, -0.0070031555369496346, -0.009045597165822983, 0.006537212990224361, 0.002436565700918436, 0.01691407524049282, 0.009059609845280647, -0.004806567914783955, -0.0006437367992475629, 0.026415104046463966, 0.003138983156532049, 0.022000908851623535, 0.005952156614512205, -0.028699275106191635, 0.009585109539330006, 0.01366298459470272, 0.01946449838578701, -0.007188831921666861, 0.004838097840547562, -0.012731099501252174, 0.0077843982726335526, -0.025476211681962013, 0.0016369307413697243, -0.004077875521034002, 0.027704330161213875, 0.013053406029939651, 0.013782097958028316, -0.008625197224318981, -0.006193886511027813, 0.014419703744351864, -0.011497926898300648, 0.017656780779361725, -0.00647415267303586, 0.019058112055063248, 0.015358596108853817, -0.006162356585264206, -0.011098547838628292, -0.0028762335423380136, -0.0022806674242019653, 0.0110074607655406, 0.02606477215886116, 0.01420950423926115, 0.018063167110085487, -0.00910164974629879, 0.0030391383916139603, 0.012625999748706818, -0.0023629956413060427, 0.039377424865961075, 0.010264755226671696, -0.006933088880032301, 0.022141043096780777, 0.005854063667356968, 0.022869734093546867, -0.00022815432748757303, -0.01893199235200882, -0.0003595291927922517, 0.022967828437685966, 0.008793356828391552, 0.007476104889065027, 0.04750514775514603, 0.027213864028453827, 0.037583719938993454, -0.015905115753412247, 0.02818078175187111, -0.015807023271918297, -0.0005644739721901715, 0.015596822835505009, 0.018960019573569298, -0.02334618754684925, 0.033407751470804214, 0.008365950547158718, 0.012212606146931648, 0.0003636893816292286, -0.01694210059940815, 0.033940255641937256, -0.002828938653692603, -0.0015817532548680902, -0.032118525356054306, -0.016619795933365822, 0.026302997022867203, -0.010685155168175697, 0.02048747055232525, 0.016900060698390007, 0.00596967339515686, 0.009739255532622337, 0.011392827145755291, -0.029792314395308495, 0.004119915422052145, -0.018623700365424156, 0.0199970044195652, -0.004473751876503229, -0.004722488112747669, -0.028040649369359016, 0.005339073948562145, -0.015358596108853817, 0.0034647928550839424, -0.028923487290740013, 0.010481962002813816, 0.003569892840459943, -0.002038937760517001, 0.0070031555369496346, 0.0019390928791835904, 0.0030671649146825075, -0.005594816990196705, 0.011070521548390388, -0.024579359218478203, -0.02523798495531082, 0.01577899605035782, 0.01628347486257553, 0.005682400427758694, -0.014069370925426483, -0.01681598089635372, 0.00010843899508472532, 0.022463347762823105, 0.005507234018296003, 0.000366754800779745, -0.019674697890877724, -0.007861471734941006, 0.0036855025682598352, -0.00807167124003172, 0.01510635670274496, 0.04431011155247688, -0.02284170873463154, -0.019982991740107536, 0.019114166498184204, 0.01750263385474682, 0.008001604117453098, -0.021930841729044914, -0.01754467375576496, 0.028895461931824684, -0.021370310336351395, -0.023556387051939964, -0.020571550354361534, 0.0010002005146816373, -0.01708223484456539, -0.008232824504375458, -0.011708127334713936, -0.013550878502428532, -0.022267162799835205, -0.00882138404995203, 0.00640058284625411, -0.014034338295459747, -0.007420051842927933, 0.02135629579424858, 0.01162404753267765, 0.005833043716847897, -0.03371604159474373, 0.015176422894001007, 0.028727302327752113, 0.06580653786659241, 0.009907416068017483, -0.013985291123390198, 0.00045893614878878, -0.012429812923073769, -0.012394779361784458, -0.02732596918940544, -0.0110074607655406, 0.03237076476216316, 0.0033439279068261385, -0.025686411187052727, 0.011329767294228077, 0.0023910223972052336, -0.0038536624051630497, 0.011448880657553673, 0.002653772011399269, -0.0062499395571649075, -0.014475757256150246, -0.025083839893341064, 0.016605781391263008, 0.0008793356828391552, -0.0031564999371767044, 0.022309202700853348, 0.011504934169352055, 0.02686353027820587, 0.007728344760835171, 0.021734656766057014, 0.006362046115100384, 0.01155398041009903, -0.022729601711034775, -0.018988044932484627, 0.013340678997337818, 0.007237878628075123, 0.014882143586874008, -0.011014468036592007, 0.016535714268684387, 0.009697215631604195, -0.022799668833613396, -0.019842857494950294, 0.0076162382028996944, -0.0037310458719730377, 0.023318160325288773, -0.0037345492746680975, -0.017348486930131912, 0.0124368192628026, -0.02645714394748211, -0.0025504238437861204, 0.011329767294228077, -0.027480116114020348, 0.007833444513380527, 0.018623700365424156, 0.020109111443161964, 0.00788949802517891, 0.022407295182347298, 0.008246837183833122, -0.014230524189770222, -0.005745460279285908, -0.024327119812369347, -0.03623843938112259, -0.04913069307804108, -0.026835503056645393, -0.018189286813139915, -0.009697215631604195, -0.007868478074669838, -0.017362501472234726, -0.02764827571809292, 0.004631401505321264, -0.0067859492264688015, -0.020515497773885727, 0.013866177760064602, 0.006348032969981432, -0.047336988151073456, -0.021902816370129585, 0.012955312617123127, 0.033575911074876785, 0.01750263385474682, -0.012527906335890293, 0.012058460153639317, 0.006926082540303469, 0.013424758799374104, 0.018525606021285057, -0.022785654291510582, 0.004298585467040539, -0.012219613417983055, 0.010937394574284554, -0.015596822835505009, -0.027438076213002205, 0.004270558711141348, -0.007637258153408766, 0.004424705170094967, -0.005065814591944218, -0.0144056910648942, 0.00933287013322115, 0.012163559906184673, 0.0007676670793443918, 0.020697670057415962, 0.01740454137325287, -0.0021878292318433523, 0.024943705648183823, -0.027339983731508255, 0.006302489899098873, -0.006088786758482456, -0.022855721414089203, -0.01316551212221384, 0.009178723208606243, 0.00024829848553054035, -0.009557083249092102, -0.0003787975001614541, -0.006680849473923445, -0.009395929984748363, 0.006964618805795908, 0.018749820068478584, -0.005086834542453289, 0.003231821348890662, 6.278623186517507e-05, -0.015358596108853817, -0.0004725115722976625, 0.02351434715092182, 0.018329419195652008, -0.0017577955732122064, -0.005493220407515764, -0.029736259952187538, 0.04327312484383583, 0.008653223514556885, 0.002835945226252079, 0.01677394099533558, 0.022687561810016632, -0.015624849125742912, -0.01813323423266411, -0.008576150983572006, -0.003867675783112645, 0.007230871822685003, -0.013810125179588795, 0.005321557633578777, -0.006008210126310587, -0.004627898335456848, -0.022925788536667824, 0.013186532072722912, -0.019254298880696297, 0.000945898937061429, -0.015891103073954582, 0.006498676259070635, 0.006228919606655836, 0.005489717237651348, 0.014111410826444626, -0.028124729171395302, -0.029399940744042397, 0.003352686297148466, -0.0036749925930052996, 0.018917979672551155, -0.022771641612052917, -0.00882138404995203, -0.026134837418794632, -0.018889952450990677, -0.013726044446229935, -0.01521846279501915, -0.008464043959975243, 0.012296686880290508, 0.04784146696329117, 0.0015668640844523907, 0.013431765139102936, 0.012583959847688675, 0.022771641612052917, 0.004119915422052145, -0.007476104889065027, 0.0047119781374931335, -0.023724546656012535, -0.02378060109913349, 0.005559783894568682, 0.00038667998160235584, 0.004260048735886812, -0.004337121732532978, -0.017614740878343582, 0.0058190301060676575, 0.0027308452408760786, 0.03133377805352211, -0.006894552614539862, 0.005458187311887741, -0.033239591866731644, -0.052802182734012604, -0.00011407716374378651, 0.042460352182388306, -0.011603027582168579, 0.006372556090354919, -0.01740454137325287, 0.006610782817006111, 0.012142539955675602, 0.006123819854110479, 0.025280024856328964, 0.019436471164226532, 0.03438868373632431, -0.00651619303971529, 0.010355842299759388, 0.0094309626147151, 0.0011315754381939769, -0.009206749498844147, -0.0082748644053936, -0.043917737901210785, -0.022323215380311012, -0.0007781770545989275, 0.029035594314336777, 0.008344930596649647, -0.016031235456466675, 0.009753269143402576, 0.008358944207429886, 0.026933597400784492, -0.018847912549972534, -0.027031689882278442, -0.005377610679715872, -0.021580509841442108, 0.011715133674442768, -0.013025378808379173, -0.0218187365680933, 0.02586858533322811, 0.004410692024976015, -0.006302489899098873, 0.014188484288752079, 0.014083384536206722, -0.03850859776139259, -0.011455886997282505, 0.026751423254609108, -0.006327013019472361, 0.038312412798404694, 0.014188484288752079, 0.02642911672592163, 0.00963415578007698, -0.0024295588955283165, -0.006891048979014158, -0.01790902018547058, -0.00032427694532088935, -0.017460593953728676, -0.00039850373286753893, 0.04024624824523926, -0.009017569944262505, -0.01568090356886387, 0.023556387051939964, -0.010019522160291672, -0.0012865978060290217, -0.05036386474967003, 0.024677453562617302, 0.014475757256150246, 0.00683149229735136, -0.034472763538360596, -0.02718583680689335, -0.020473457872867584, 0.03318353742361069, 0.006134329829365015, 0.013915224932134151, 0.0045263017527759075, -0.0021457893308252096, 0.015807023271918297, 0.04170363396406174, -0.010138635523617268, 0.016829995438456535, -0.012142539955675602, -0.005668387282639742, -0.020781749859452248, 0.001036985544487834, 0.010516994632780552, -0.012576952576637268, 0.005002754274755716, 0.021776696667075157, -0.013999304734170437, -0.014048350974917412, 0.005118364468216896, 0.0024330622982233763, -0.01055903546512127, -0.012513892725110054, -0.004876634571701288, 0.03225865960121155, -0.017993099987506866, -0.004004305694252253, -0.0022929292172193527, -0.015863075852394104, 0.018049152567982674, -0.013116465881466866, -0.010699167847633362, 0.0018094696570187807, 0.002522397320717573, 0.007791404612362385, 0.016787955537438393, 0.01382413785904646, -0.003233573166653514, -0.005773487035185099, 0.015526756644248962, -0.007532158400863409, -0.003443772904574871, -0.003979782108217478, 0.005472200457006693, -0.03870478272438049, -0.018329419195652008, 0.005486214067786932, 0.0004904661327600479, 0.017516646534204483, -0.007223865482956171, -0.007286925334483385, -0.0009616639581508934, 0.03724740073084831, -0.020347338169813156, -0.01493819709867239, 0.014377663843333721, 0.010930388234555721, -0.04125520959496498, 0.02162254974246025, 0.005447677336633205, -0.014062364585697651, 0.029287833720445633, -0.013691011816263199, -0.03096943348646164, -0.027045704424381256, 0.004796057939529419, -0.010453934781253338, 0.018077179789543152, -0.007286925334483385, -0.0009362648124806583, 0.012583959847688675, -0.004995747935026884, -0.008155751042068005, -0.023318160325288773, -0.0022158559877425432, 0.00734297838062048, 0.023626454174518585, 0.009704222902655602, -0.011504934169352055, 0.011974380351603031, -0.014377663843333721, 0.019240286201238632, -0.01989891193807125, -0.04307693988084793, -0.03094140626490116, -0.02691958285868168, -0.0012279170332476497, 0.0005929385079070926, 0.0026432620361447334, 0.0027308452408760786, -0.025153905153274536, -0.015568796545267105, 0.03337972238659859, 0.0007168687880039215, -0.0015659882919862866, 0.0168440081179142, -0.01558280922472477, -0.004512288141995668, 0.027438076213002205, -0.0008526227902621031, -0.0499434657394886, -0.0110074607655406, -0.016801968216896057, -0.03472500294446945, -0.00791051797568798, -0.015554782934486866, 0.04585157707333565, 0.020641617476940155, -0.022729601711034775, -0.02043141797184944, -0.025840558111667633, -0.0478694923222065, -0.0024943705648183823, -0.019240286201238632, 0.026148851960897446, 0.026373064145445824, 0.03183825686573982, 0.007672291714698076, 0.021930841729044914, -0.007896504364907742, 0.012499879114329815, -0.03707923740148544, -0.011301741003990173, -0.01912817917764187, -0.02582654543220997, 0.01618538238108158, -0.016465649008750916, -0.047365013509988785, 0.005146391224116087, 0.006029230076819658, -0.013578904792666435, 0.007840451784431934, 0.016535714268684387, -0.015989195555448532, -0.009522049687802792, -0.01069216150790453, 0.01638156920671463, 0.02858716808259487, 0.024523306638002396, 0.006670339498668909, -0.031950365751981735, 0.01870778016746044, -0.0013268860056996346, -0.004256545100361109, -0.012513892725110054, 0.018413498997688293, 0.020809777081012726, -0.01776888780295849, 0.011455886997282505, 0.013438771478831768, -0.008534110151231289, -0.015274516306817532, -0.008765330538153648, -0.00026450137374922633, 0.01191832683980465, 0.003191533265635371, 0.029568100348114967, -0.024453239515423775, 0.013214558362960815, -0.01366298459470272, 0.00015622659702785313, -0.0033351697493344545, 0.011715133674442768, 0.03150193765759468, -0.022435322403907776, -0.0029200250282883644, -0.02118813619017601, 0.017362501472234726, 0.008099697530269623, -0.015372609719634056, -0.003755569225177169, -0.007805418223142624, -0.02712978422641754, -0.02672339789569378, 0.015498729422688484, -0.024621399119496346, -0.013228571973741055, 0.005601823795586824, 0.0005828664288856089, -0.013599924743175507, 0.007448078598827124, -0.0019163212273269892, -0.008015617728233337, -0.009367902763187885, -0.0252660121768713, 0.01611531525850296, -0.054063379764556885, 0.009241783060133457, 0.019604632630944252, -0.018385473638772964, 0.009024576283991337, 0.20257651805877686, 0.0013277619145810604, 0.0238366536796093, 0.039041101932525635, 0.012878239154815674, 0.0015659882919862866, 0.016633808612823486, 0.00032208734774030745, -0.008190784603357315, 0.0004514915926847607, 0.02225314825773239, 0.003179271472617984, -0.022827694192528725, -0.0034052361734211445, 0.010608081705868244, -0.031221672892570496, -0.02917572855949402, -0.03256694972515106, -0.011680100113153458, 0.005857566837221384, 0.008323910646140575, -0.008492070250213146, -0.005342577584087849, -0.004400182049721479, 0.024593373760581017, 0.021832749247550964, 0.0046419114805758, 0.028124729171395302, 0.029259808361530304, 0.03422052413225174, -0.011182627640664577, -0.00403583562001586, 0.02208498865365982, -0.007244885433465242, -0.02536410465836525, 0.0032195597887039185, 0.02162254974246025, -0.02288374863564968, -0.00035033293534070253, 0.0221130158752203, -0.000979180564172566, -0.010902361012995243, 0.009346882812678814, -0.028306901454925537, 0.015064316801726818, -0.013782097958028316, -0.020879844203591347, -0.008471050299704075, 0.012661032378673553, 0.018063167110085487, -0.01210050005465746, 0.006547722965478897, 0.011175621300935745, 0.00420399522408843, 0.00025092597934417427, 0.019324366003274918, -0.011133581399917603, 0.004936191253364086, -0.016801968216896057, 0.005416147410869598, -0.012352739460766315, -0.0014407442649826407, -0.009858368895947933, 0.0013487818650901318, -0.02861519530415535, 0.014854117296636105, -0.002955058356747031, 0.020739709958434105, -5.7804936659522355e-05, 0.001956609543412924, -0.008211804553866386, 0.015162410214543343, -0.03116561844944954, -0.0016404340276494622, -0.00561233377084136, -0.01193934679031372, 0.013354691676795483, 0.02805466204881668, 0.05608129873871803, 0.02499975822865963, 0.002285922411829233, 0.014812077395617962, -0.01783895306289196, -0.015232476405799389, 0.023654481396079063, -0.001706121489405632, 0.026218917220830917, -0.032314710319042206, 0.003196788253262639, -0.03026876598596573, -0.014230524189770222, 0.019254298880696297, -0.0009292581235058606, -0.011596020311117172, 4.916293619317003e-06, -0.0006844630115665495, 0.0084220040589571, 0.015036290511488914, -0.007392025087028742, -0.033239591866731644, -0.012843205593526363, 0.05891198664903641, 0.012051453813910484, 0.028573155403137207, -0.017362501472234726, 0.011364800855517387, 0.011567994020879269, 0.0234442800283432, 0.008807370439171791, -0.002475102199241519, -0.005269007757306099, -0.03996598348021507, 0.02895151451230049, -0.0042670550756156445, -0.008225817233324051, 0.030324820429086685, 0.020585564896464348, -0.002997098257765174, 0.02062760479748249, -0.003951755817979574, 0.023962773382663727, -0.007392025087028742, 0.021398335695266724, 0.0002141410077456385, -0.029399940744042397, -0.03225865960121155, 0.012689059600234032, 0.005205947440117598, -0.03099745884537697, -0.0221130158752203, 0.013116465881466866, -0.017923032864928246, 0.03096943348646164, -0.016661835834383965, 0.0029690717346966267, -0.028208808973431587, -0.01774086058139801, -0.013452785089612007, 0.005360093899071217, -0.003604925936087966, 0.009746262803673744, -0.004995747935026884, 0.017054207623004913, 0.0013794359983876348, -0.006624795962125063, 0.018791859969496727, -0.009290830232203007, 0.009080629795789719, -0.022365255281329155, -0.008471050299704075, 0.02244933508336544, -0.006964618805795908, -0.01830139383673668, -0.012506886385381222, 0.03172615170478821, -0.025644371286034584, -0.04094691574573517, -0.004196988884359598, 0.021902816370129585, 0.007406038697808981, -0.054764047265052795, 0.00933287013322115, 0.03528553619980812, 0.012331719510257244, -0.02138432301580906, -0.0055107371881604195, -0.17970678210258484, 0.0019110662396997213, 0.012128526344895363, -0.006642312742769718, 0.01067814789712429, 0.023864680901169777, 0.0062499395571649075, -0.006901558954268694, -0.0064461263827979565, -0.004368651658296585, 0.012422806583344936, -0.0009870630456134677, -0.042096007615327835, -0.03026876598596573, 0.019142191857099533, -0.019436471164226532, -0.0046419114805758, 0.03183825686573982, 0.06283571571111679, -0.003913219086825848, 0.012675045989453793, -0.019282326102256775, -0.0077703846618533134, -0.014328617602586746, 0.01694210059940815, 0.01846955344080925, -0.0003087309014517814, 0.014545824378728867, -0.01420950423926115, -0.015232476405799389, 0.015512743033468723, -0.015624849125742912, 0.023458294570446014, -0.0014170968206599355, -0.0061098067089915276, -0.005065814591944218, -0.010061562061309814, -0.011455886997282505, -0.016465649008750916, 0.015512743033468723, 0.02735399641096592, 0.00809269119054079, 0.019688712432980537, 0.008926483802497387, 0.020109111443161964, 0.015316556207835674, 0.02937191352248192, -0.022827694192528725, 0.016970127820968628, 0.002588960574939847, 0.013648971915245056, -0.023682506754994392, -0.0032143048010766506, -0.00672989571467042, 0.019058112055063248, 0.01873580552637577, 0.004883641377091408, 0.03026876598596573, 0.015568796545267105, -0.015891103073954582, 0.005826036911457777, -0.019786804914474487, -0.002531155478209257, -0.023682506754994392, -0.02327612042427063, -0.03514540195465088, -0.0033071429934352636, 0.019156206399202347, 0.0029165218584239483, 0.009704222902655602, 0.007335972040891647, 0.008029631339013577, 0.01837145909667015, 0.00439317524433136, 0.026078784838318825, 0.005629850551486015, -0.028727302327752113, 0.009690209291875362, 0.017516646534204483, -0.0062919799238443375, 0.008281870745122433, 0.0185676459223032, 0.008001604117453098, 0.0099985022097826, -0.019576605409383774, 0.003569892840459943, -0.009171716868877411, -0.009494022466242313, -0.009444976225495338, -0.00021315569756552577, 0.0249717328697443, -0.004995747935026884, -0.010671141557395458, -0.0033088945783674717, 0.015526756644248962, 0.0186657402664423, 0.03402433544397354, -0.0006468021892942488, -0.001832241308875382, -0.013368705287575722, -0.00012414924276527017, 0.008562137372791767, -0.044282086193561554, 0.02579851821064949, 0.04582354798913002, 0.007406038697808981, 0.020641617476940155, 0.004946701228618622, 0.029287833720445633, -0.017726847901940346, -0.04159152880311012, -0.0010623846901580691, 0.03192233666777611, 0.005668387282639742, -0.041171129792928696, 0.04005006328225136, -0.01528852991759777, -0.01299735251814127, 0.013368705287575722, -0.01708223484456539, 0.038872942328453064, -0.037051212042570114, -0.016970127820968628, -0.0033964780159294605, -0.005829540081322193, -0.011105554178357124, -0.0974205881357193, -0.027143796905875206, 0.026555238291621208, 0.016956115141510963, -0.015807023271918297, 0.020347338169813156, 0.00347355124540627, 0.020935896784067154, -0.0022754124365746975, 0.0332956425845623, -0.01640959456562996, 0.0005570293869823217, -0.009557083249092102, -0.008856416679918766, 0.006183376535773277, 0.0028184286784380674, 0.0019040595507249236, -0.019240286201238632, -0.020011017099022865, 0.030913379043340683, 0.008576150983572006, -0.011511940509080887, 0.010965420864522457, 0.0084220040589571, -0.0048030647449195385, -0.020011017099022865, -0.020613590255379677, 0.021370310336351395, 0.010755221359431744, 0.014629904180765152, 0.03766779974102974, -0.02135629579424858, 0.01691407524049282, -0.036126334220170975, -0.008288877084851265, -0.01230369322001934, -0.012738105840981007, -0.005882090423256159, 0.016829995438456535, -0.02378060109913349, 0.0010185930877923965, -0.008667237125337124, 0.0032265663612633944, -0.0438336580991745, -0.008807370439171791, 0.0039097159169614315, -0.02596667781472206, 0.02443922683596611, 0.005013264250010252, -0.006067766807973385, -0.025658385828137398, -0.013775091618299484, -0.04313299432396889, -0.041030995547771454, 0.009823336265981197, 0.030352845788002014, 0.011855266988277435, 0.01382413785904646, -0.025658385828137398, 0.0059731765650212765, -0.011280721053481102, -0.008197790943086147, -0.004221512004733086, -0.008232824504375458, 0.0151203703135252, 0.023360200226306915, 0.012254646047949791, -0.008765330538153648, -0.010986440815031528, 0.020515497773885727, -0.023458294570446014, -0.0006910317461006343, -0.01621340960264206, 0.005689407233148813, -0.03152996674180031, 0.00336494785733521, 0.0003625946119427681, -0.01917021907866001, 0.008253844454884529, 0.011659080162644386, -0.013536864891648293, -0.016297489404678345, -0.006467146333307028, -0.018231326714158058, 0.003755569225177169, 0.0024838605895638466, 0.014910169877111912, -0.004116412252187729, 0.03783595934510231, -0.05067215859889984, 0.025013772770762444, 0.018679752945899963, 0.010439922101795673, 0.0009984489297494292, -0.02111807093024254, 0.0038396490272134542, -0.005962666589766741, -0.01281517930328846, 0.02895151451230049, 0.008695263415575027, -0.00043200430809520185, -0.00877233687788248, -0.056613802909851074, 0.007728344760835171, 0.006740405689924955, 0.004831091500818729, 0.00774235837161541, -0.02563035860657692, -0.004974727984517813, -0.006358542945235968, 0.008464043959975243, 0.0023367207031697035, -0.017320461571216583, 0.022967828437685966, -0.014952209778130054, 0.0013225069269537926, -0.02543417178094387, 0.004480758216232061, 0.008351937867701054, -0.001921576214954257, 0.021468402817845345, 0.01594715565443039, -0.02868526242673397, -0.0015388374449685216, 0.004543818533420563, 0.030296793207526207, -0.02052951045334339, 0.018988044932484627, -0.02490166574716568, 0.008141737431287766, -0.020515497773885727, -0.028867434710264206, 0.02307993546128273, 0.009045597165822983, -0.006390072870999575, 0.006071269977837801, 0.0017288931412622333, -0.05425956845283508, 0.0070627122186124325, 0.008127724751830101, 0.015148396603763103, 0.013613938353955746, -0.004732998088002205, -0.021146096289157867, 0.019086139276623726, -0.018889952450990677, -0.02546219900250435, -0.004456235095858574, -0.024887653067708015, -0.020347338169813156, -0.0023402241058647633, 0.0068770358338952065, 0.05599721893668175, 0.004666435066610575, -0.03253892436623573, -0.027844462543725967, -0.0034595378674566746, -0.004540314897894859, 0.00787548441439867, 0.027311956509947777, 0.010566041804850101, 0.0060957930982112885, 0.0436374731361866, 0.0036469660699367523, 0.018749820068478584, -0.006036236882209778, 0.033744070678949356, -0.036686867475509644, -0.06950605660676956, -0.004263551905751228, 0.007490118499845266, -0.01781092770397663, 0.009409942664206028, -0.020501483231782913, 0.02519594505429268, 0.022827694192528725, 0.005643863696604967, 0.000825909897685051, -0.016367554664611816, -0.02424304001033306, -0.003172264900058508, 0.031389832496643066, 0.014447730965912342, -0.026317011564970016, -0.018385473638772964, 0.014461743645370007, 0.024088893085718155, -0.009297836571931839, -0.014377663843333721, 0.035958174616098404, 0.011560987681150436, -0.0008469299064017832, -0.006526703014969826, 0.001648316509090364, -0.014854117296636105, -0.005493220407515764, 0.005931136664003134, 0.010005508549511433, -0.02778840996325016, 0.005934640299528837, 0.015666889026761055, 0.02094990946352482, -0.0018585162470117211, 0.025840558111667633, 0.016563741490244865, -0.015414649620652199, -0.019380418583750725, 0.01638156920671463, -0.037583719938993454, -0.01530254352837801, 0.021440375596284866, 0.01314449217170477, -0.0025469204410910606, -0.014230524189770222, 0.01530254352837801, 0.010460942052304745, -0.016325514763593674, -0.019352391362190247, 0.009045597165822983, -0.03060508705675602, -0.025840558111667633, -0.01241579931229353, 0.016886048018932343, 0.03192233666777611, 0.017054207623004913, -0.02400481328368187, 0.023598426952958107, -0.012296686880290508, 0.016661835834383965, -0.017600728198885918, 0.024229027330875397, -0.025223972275853157, -0.014195490628480911, -0.008863423950970173, -0.005826036911457777, -0.014342631213366985, -0.02111807093024254, -0.005521247163414955, -0.0015948907239362597, 0.016801968216896057, 0.002932286821305752, 0.09198341518640518, 0.033940255641937256, -0.014020324684679508, 0.0064180996268987656, -0.028895461931824684, 0.011813227087259293, 0.016619795933365822, 0.009858368895947933, 0.0008508711471222341, -0.012773139402270317, 0.017951060086488724, -0.003385968040674925, -0.0053881206549704075, -0.021244190633296967, -0.029287833720445633, -0.00986537616699934, 0.007069719024002552, 0.01966068521142006, -0.013270611874759197, 0.021860776469111443, 0.020963924005627632, -0.0013601676328107715, 0.01694210059940815, -0.02174866944551468, -0.040834806859493256, -0.008253844454884529, 0.03186628594994545, 0.021706629544496536, -0.005843553692102432, -0.02012312412261963, 0.024551333859562874, -0.006369052920490503, -0.016507688909769058, -0.009844356216490269, -0.015498729422688484, 0.022169068455696106, -0.014342631213366985, -0.03167009726166725, 0.01953456550836563, 0.01747460663318634, 0.008267857134342194, 0.0168440081179142, -0.016703875735402107, -0.02152445539832115, 0.014489770866930485, 0.0019425961654633284, -0.003902709111571312, -0.007826438173651695, 0.00605025002732873], "abb2f36a-947c-41fa-85ef-2275497140fe": [0.003101042238995433, -0.004573466721922159, 0.0230393223464489, -0.02266024798154831, -0.0029167698230594397, 0.034846797585487366, -0.0054579745046794415, -0.029652070254087448, -0.015780741348862648, -0.0443938672542572, 0.02996094711124897, 0.017956912517547607, 0.014994513243436813, -0.010003361850976944, -0.015808822587132454, 0.019697848707437515, 0.030241742730140686, -0.017002204433083534, -0.0046155862510204315, -0.010621113702654839, -0.01805519126355648, 0.00035033703898079693, -0.013064039871096611, 0.0052087679505348206, -0.023502634838223457, -0.006707517430186272, 0.0117372777312994, -0.0064161913469433784, -0.02334819734096527, 0.03695277124643326, 0.0060090371407568455, -0.004478698130697012, -0.019571490585803986, 0.018841419368982315, -0.009526008740067482, 0.015373587608337402, 0.010852769948542118, 0.0013232517521828413, 0.002858855528756976, -0.024050187319517136, 0.0367000550031662, 0.028865842148661613, 0.001818154938519001, -0.006159964948892593, -0.005057840142399073, 0.03939569741487503, 0.018715061247348785, -0.002184944925829768, -0.002760576782748103, -0.0006274038460105658, 0.010649193078279495, 0.00011440248636063188, -0.03622270002961159, 0.0010635153157636523, -0.005440424662083387, -0.006682947743684053, 0.011021248064935207, 0.01465755794197321, 0.00900653563439846, -0.015345508232712746, 0.0013908182736486197, -0.0035152165219187737, -0.018293866887688637, -0.007876330986618996, -0.01305701956152916, -0.025075092911720276, -0.02368515357375145, -0.003643329720944166, -0.017016245052218437, -0.016033459454774857, 0.04919547960162163, 0.03630694001913071, 0.005184198264032602, -0.009603227488696575, -0.01385026890784502, -0.02309548109769821, -0.012607745826244354, -0.017956912517547607, 0.002592099132016301, 0.01321145799010992, 0.0064337411895394325, -0.013681790791451931, -0.027518020942807198, 0.008199246600270271, 0.021958256140351295, 0.02044195681810379, 0.018504464998841286, 0.014699677005410194, -0.014067885465919971, 0.016230015084147453, 0.026942387223243713, 0.0069672539830207825, 0.01945917122066021, 0.01397662702947855, 0.004917442332953215, 0.013457153923809528, 0.008690640330314636, 0.01527530886232853, -0.002399051794782281, -0.026128079742193222, -0.01996460370719433, 0.0025605096016079187, -0.009476869367063046, -0.010417535901069641, -0.014643518254160881, -0.008852098137140274, 0.023867670446634293, -0.002671073190867901, -0.0019216984510421753, 0.011407342739403248, -0.03678429126739502, 0.02744782157242298, -0.00044488636194728315, 0.0029746838845312595, 0.016889886930584908, -0.027251264080405235, 0.017549756914377213, -0.04357955977320671, -0.005636982154101133, -0.02207057550549507, -0.004285650793462992, 0.00878891907632351, 0.028613124042749405, -0.03347089886665344, 0.014713716693222523, 0.008529182523488998, 0.008908256888389587, -0.012446288019418716, 0.012509467080235481, -0.01667928881943226, -0.0010029686382040381, -0.005917778238654137, 0.006142415106296539, 0.018869498744606972, -0.013386955484747887, 0.0018234198214486241, -0.006995333358645439, -0.004896382335573435, -0.019262613728642464, -0.024190586060285568, 0.014601398259401321, 0.03995728865265846, 0.0025078603066504, -0.01843426562845707, 0.0041908822022378445, 0.03392017260193825, -0.00026829191483557224, 0.0110984668135643, 0.009490909054875374, 0.015949219465255737, 0.021565143018960953, -0.014390801079571247, -0.022182893007993698, 0.012025093659758568, 0.027588218450546265, 0.019992683082818985, 0.007869311608374119, 0.027279343456029892, -0.005661551840603352, -0.003162466222420335, -0.012060193344950676, 0.0029659089632332325, -0.0043312800116837025, -0.0014662822941318154, -0.0074621569365262985, 0.03532415255904198, 0.020301559939980507, -0.011309063993394375, -0.011021248064935207, -0.01346417423337698, 0.004275120794773102, 0.013267616741359234, -0.025369929149746895, 0.0021182557102292776, 0.01903797686100006, 0.004787574056535959, 0.014601398259401321, -0.00016584520926699042, -0.012895561754703522, -0.025468207895755768, 0.012348009273409843, -0.000625210115686059, -0.001596150454133749, 0.019234534353017807, -0.022028455510735512, -0.02569284476339817, 0.021438784897327423, 0.007230500224977732, -0.0038574368227273226, -0.0033046193420886993, -0.015584184788167477, 0.01788671314716339, -0.009785745292901993, -0.011624959297478199, -0.6213456392288208, 0.01502259261906147, 0.02872544340789318, -0.023923829197883606, 0.002253388985991478, 0.018574664369225502, 0.015949219465255737, 0.007616594899445772, -0.010038461536169052, 0.03625078126788139, 0.009238192811608315, 0.017339160665869713, 0.008585341274738312, -0.011000188067555428, -0.0012258505448698997, -0.04004152864217758, -0.00044795757276006043, -0.01502259261906147, -0.010761511512100697, 0.004380419384688139, -0.017184723168611526, 0.026226358488202095, 0.00356435589492321, -0.006307383067905903, -0.0005712446290999651, -0.009315411560237408, 0.023741312325000763, -0.021902097389101982, 0.01382920891046524, 0.020877191796898842, -0.03170188143849373, 0.01122482493519783, 0.007342818658798933, 0.0019445131765678525, 0.049363959580659866, -0.005865129176527262, -0.018027111887931824, 0.0232639592140913, 0.022463690489530563, 0.044450026005506516, -0.02211269550025463, -0.004731414839625359, 0.01659505069255829, 0.010291177779436111, 0.003269519889727235, 0.010375416837632656, 0.01724088191986084, 0.009526008740067482, -0.00356435589492321, -0.015443786978721619, 0.011954895220696926, -0.013759010471403599, 0.005226317793130875, 0.010887869633734226, 0.016651209443807602, 0.011961914598941803, 0.02309548109769821, -0.02385362982749939, 0.001035435707308352, 0.012305890209972858, -0.004292670637369156, 0.01414510514587164, -0.023572834208607674, -0.038946423679590225, -0.040911994874477386, 0.01254456676542759, -0.002170905005186796, -0.012460327707231045, 0.02061043493449688, -0.00618804432451725, 0.025201452895998955, -0.002079646335914731, 0.008648520335555077, -0.02416250668466091, 0.0069356644526124, 0.014306562021374702, 0.018785260617733, -0.0010617603547871113, -0.01801307126879692, 0.019655728712677956, -0.01161091960966587, -0.011933835223317146, -0.020245401188731194, -0.025847282260656357, 0.03310586139559746, -0.0033467388711869717, -0.02163534052670002, -0.005605392623692751, -0.00462962593883276, -0.008058848790824413, 0.014966432936489582, 0.027728617191314697, -0.015864981338381767, -0.02517337165772915, 0.0004179036186542362, 0.028191931545734406, -0.0013688810868188739, 0.0057422807440161705, -0.004664725624024868, -0.012993840500712395, -0.020385798066854477, -0.02529972977936268, -0.002255143830552697, -0.00181639997754246, 0.027237223461270332, 0.019220493733882904, -0.015261269174516201, -0.0011846086708828807, 0.032628510147333145, -0.03653157502412796, -0.005461484659463167, -0.005994997452944517, -0.023488596081733704, -0.02261812798678875, 0.012502447701990604, -0.016763528808951378, 0.004303200636059046, 0.0033098843414336443, 0.013562452979385853, -0.0036468396428972483, -0.007679773960262537, -0.009533028118312359, 0.006353012286126614, -0.00019502168288454413, 0.008143087849020958, 0.019529370591044426, 0.016412533819675446, -0.009238192811608315, 0.02205653488636017, -0.0010538629721850157, -0.010614093393087387, -0.026268476620316505, 0.010242038406431675, -0.008388783782720566, 0.028402527794241905, -0.01502259261906147, 0.04209133982658386, -0.010206938721239567, -0.0033011094201356173, -0.03529607132077217, -0.012172511778771877, 0.01397662702947855, 0.008852098137140274, -0.04023808613419533, 0.004169822204858065, -0.010873829945921898, -0.03700892999768257, -0.006328442599624395, -0.024471381679177284, -0.02163534052670002, 0.0038574368227273226, -0.014910274185240269, -0.005296516697853804, 0.028220010921359062, -0.022842764854431152, 0.0009406669996678829, 0.011688138358294964, -0.054221730679273605, -0.015485906042158604, -0.02253388799726963, -0.016145776957273483, 0.0035661107394844294, -0.020413877442479134, -0.009785745292901993, -0.008423883467912674, -0.019220493733882904, 0.0065741389989852905, -0.00503678061068058, -0.008634480647742748, -0.03175804018974304, 0.01163197960704565, -0.003162466222420335, 0.012755163945257664, 0.03639117628335953, -0.003910086117684841, 0.02205653488636017, -0.023614954203367233, -0.0055562532506883144, 0.017732275649905205, 0.0033467388711869717, 0.004548897035419941, 0.0046155862510204315, -0.014517159201204777, -0.011660058982670307, 0.020961429923772812, -0.006472350563853979, 0.036335017532110214, 0.013962587341666222, -0.023067401722073555, 0.0022832234390079975, 0.0042786309495568275, -0.006458310876041651, -0.010515814647078514, -0.003171241143718362, -0.01882738061249256, 0.01474179606884718, -0.03178612142801285, 0.007111161947250366, -0.0024622310884296894, 0.03209499642252922, 0.023909790441393852, 0.010993167757987976, -0.0034064080100506544, 0.016019418835639954, 0.0007208563038147986, -0.019052017480134964, 0.019052017480134964, -0.013323776423931122, 0.01950129121541977, 0.018462345004081726, -0.01151966117322445, -0.021242227405309677, 0.009912103414535522, -0.014418880455195904, 0.005805459804832935, 0.04464658349752426, 0.00685844523832202, 0.008480043150484562, -0.00639162166044116, 0.01239714864641428, 0.030578697100281715, 0.0036643894854933023, 0.0529300682246685, -0.0029062398243695498, -0.001653187209740281, 0.03069101646542549, -0.004805123433470726, 0.024330984801054, 0.011856616474688053, -0.014250403270125389, 0.0032028306741267443, 0.013653711415827274, 0.005759830586612225, 0.0117372777312994, 0.0401257649064064, 0.022561969235539436, 0.023053361102938652, 0.0010573728941380978, 0.03397633135318756, -0.002248123986646533, -0.0005150854121893644, 0.009104814380407333, 0.02880968153476715, -0.006819835864007473, 0.033049702644348145, 0.002007692353799939, 0.025159332901239395, -0.006230163853615522, -0.019641688093543053, 0.022730445489287376, 0.01318337768316269, -0.0012477877316996455, -0.021410703659057617, -0.005945858079940081, 0.010670253075659275, -0.016974125057458878, 0.008458983153104782, 0.0224075298756361, 0.015331468544900417, 0.003931145649403334, 0.0069567239843308926, -0.014980473555624485, 0.00601605698466301, -0.013106158934533596, 0.010937009006738663, -0.00900653563439846, -0.0010020912159234285, -0.016272135078907013, -0.01096508838236332, -0.027124905958771706, -0.004573466721922159, -0.015064711682498455, -0.002755312016233802, -0.005542213562875986, -0.003120346926152706, -0.0069567239843308926, -0.0050683701410889626, 0.015359547920525074, -0.004875322803854942, 0.028697364032268524, -0.02529972977936268, -0.029202796518802643, 0.013000860810279846, 0.024401182308793068, 0.0027816365472972393, -0.014327622018754482, -0.002767596859484911, 0.0019199434900656343, 0.002767596859484911, 0.008409843780100346, -0.0038995561189949512, -0.015317428857088089, -0.009469849057495594, -0.01359053235501051, 0.002255143830552697, 0.0198382455855608, 0.03745820373296738, -0.021579181775450706, -0.003258989891037345, 0.012635825201869011, -0.0005694896099157631, 0.00925925187766552, -0.02236541174352169, -0.028360407799482346, 0.0362788587808609, -0.018251748755574226, -0.02108778804540634, -0.03268466889858246, -0.017999030649662018, -0.007693813648074865, -0.011660058982670307, -0.005815989803522825, -0.02619827911257744, -0.02061043493449688, -0.017956912517547607, 0.02402210794389248, -0.006145925261080265, -0.006156454794108868, 0.007230500224977732, -0.0033133942633867264, -0.0017119788099080324, -0.024681979790329933, 0.003878496354445815, 0.02134050615131855, 0.06817729771137238, 0.021944217383861542, 0.0015268289716914296, 0.011751317419111729, -0.013064039871096611, -0.024724097922444344, -0.027840934693813324, -0.018743140622973442, 0.04391651228070259, -0.008950375951826572, -0.011617939919233322, 0.010010382160544395, 0.012095293030142784, 0.000694970425684005, 0.0074902367778122425, 0.0014908518642187119, -0.010866809636354446, -0.01945917122066021, -0.009441769681870937, 0.016286175698041916, 0.004826183430850506, -0.020427918061614037, 0.03094373270869255, 0.016370413824915886, 0.015401666983962059, -0.0017514658393338323, 0.02744782157242298, 0.009343490935862064, -0.004043464083224535, -0.023334158584475517, -0.01912221685051918, 0.018869498744606972, 0.030606776475906372, 0.02393786981701851, -0.029202796518802643, 0.020750833675265312, 0.0015575409634038806, -0.002830775920301676, -0.01830790750682354, 0.008809978142380714, -0.004956051707267761, 0.02014712244272232, 0.009441769681870937, -0.008908256888389587, -0.004871812649071217, -0.005977447610348463, -0.009146933443844318, 0.02624039724469185, -0.026450995355844498, -0.007209440227597952, 0.022042496129870415, 0.012916621752083302, -0.014713716693222523, 0.016833728179335594, -0.012488408014178276, -0.015120871365070343, 0.006142415106296539, -0.00781315192580223, -0.03956417366862297, -0.030073264613747597, -0.026858149096369743, -0.017086444422602654, -0.012263770215213299, -0.008037788793444633, -0.021186066791415215, -0.02086315117776394, 0.0004843733040615916, -0.006040626671165228, -0.025664765387773514, 0.01711452379822731, -0.018111350014805794, -0.04400075227022171, -0.03709316626191139, 0.0036608795635402203, 0.025538407266139984, 0.02397998981177807, -0.009062695316970348, 0.014938353560864925, 0.004387439228594303, 0.011189725250005722, 0.019950564950704575, -0.031056052073836327, 0.004011874552816153, -0.02979246899485588, 0.0005703671486116946, -0.004057503771036863, -0.002499085385352373, 0.0026377285830676556, -0.005156118888407946, 0.010192899033427238, -0.024808337911963463, -0.005106979515403509, 0.005594862625002861, 0.012242711149156094, 0.0029553791973739862, 0.010698332451283932, 0.02837444841861725, 0.003801277605816722, 0.022772565484046936, -0.04186670109629631, -0.002844815608114004, -0.021649381145834923, -0.026998547837138176, -0.014517159201204777, 0.005658041685819626, 0.007405997719615698, -0.004134722985327244, 0.0011530190240591764, -0.005085919983685017, -0.003204585751518607, 0.01903797686100006, 0.000841949600726366, 0.00917501375079155, -0.00737089803442359, 0.012116353027522564, -0.02086315117776394, 0.00363279995508492, 0.02098950929939747, 0.0038574368227273226, -0.012706024572253227, -0.009975282475352287, -0.011674098670482635, 0.028149811550974846, 0.010003361850976944, 0.0014469774905592203, 0.010972108691930771, 0.015219150111079216, -0.03316202387213707, -0.02117202803492546, 0.011175685562193394, -0.017858633771538734, 0.015345508232712746, -0.008676600642502308, -0.01975400745868683, -0.0034678322263062, -0.0007164688431657851, -0.003260744968429208, -0.00536671606823802, -0.03021366335451603, -0.011540720239281654, -0.012481387704610825, 0.008936336264014244, 0.01766207627952099, -0.004892872646450996, 0.017788434401154518, -0.026479074731469154, -0.02880968153476715, 0.0037556481547653675, 0.005552743561565876, 0.03069101646542549, -0.018069230020046234, -0.011702178046107292, -0.019360892474651337, -0.0162159763276577, -0.003892536275088787, -0.020427918061614037, -0.012684964574873447, -0.012516487389802933, 0.05747896805405617, 0.01686180755496025, 0.0071357316337525845, 0.008571301586925983, 0.009476869367063046, 0.011147606186568737, -0.004580486565828323, -0.005594862625002861, -0.02393786981701851, -0.022842764854431152, 0.02129838615655899, -0.0071357316337525845, 0.007258579600602388, 0.0008630093070678413, -0.004724394995719194, -0.0012284830445423722, 0.01371689047664404, 0.027461860328912735, -0.007616594899445772, 0.001726896152831614, -0.017381280660629272, -0.05155416950583458, 0.0034028980880975723, 0.031645722687244415, -0.004752474371343851, 0.00569665152579546, -0.033302418887615204, -0.0038433969020843506, 0.005977447610348463, -0.0009819089900702238, 0.03647541627287865, 0.007918450981378555, 0.04006960615515709, 0.0008103600703179836, -0.0071954005397856236, 0.0117372777312994, -0.004984131082892418, -0.008171167224645615, -0.006763676647096872, -0.04284948855638504, -0.007413017563521862, 0.010803630575537682, 0.02847272716462612, -0.0012407678877934813, -0.014117024838924408, 0.010361377149820328, 0.01667928881943226, 0.023572834208607674, -0.021157987415790558, -0.006444271188229322, 0.009701506234705448, -0.02339031733572483, -0.0036503495648503304, -0.009905083104968071, -0.022253092378377914, 0.005380755756050348, 0.01073343213647604, -0.013597552664577961, 0.005240357480943203, 0.0062371836975216866, -0.023418396711349487, -0.0022288192994892597, 0.01908009685575962, -0.0004957806668244302, 0.02692834846675396, 0.0023920319508761168, 0.030101343989372253, 0.01989440619945526, -0.0016575746703892946, -0.002362197497859597, -0.023881711065769196, -0.001974347745999694, -0.01356947235763073, 0.00639162166044116, 0.026661591604351997, -0.004847242962568998, 0.009624287486076355, 0.019276654347777367, -0.006353012286126614, -0.0006133640417829156, -0.03720548748970032, 0.021270306780934334, 0.022519849240779877, -0.006500430405139923, -0.030017105862498283, -0.03029790148139, -0.00304137310013175, 0.033779773861169815, 0.008536201901733875, 0.02845868654549122, 0.0006725944695062935, -0.005801950115710497, 0.008908256888389587, 0.024780258536338806, -0.03552071005105972, 0.016033459454774857, -0.021747659891843796, -0.0036573694087564945, -0.012699004262685776, 0.0033186592627316713, -0.002318322891369462, -0.02939935401082039, 0.0072234803810715675, 0.015289348550140858, -0.012095293030142784, 0.007209440227597952, 0.009448789991438389, 0.013604572042822838, -0.01214443240314722, -0.01331675611436367, -0.017872672528028488, 0.034285206347703934, -0.027068745344877243, -0.002221799222752452, -0.007820172235369682, -0.0016128227580338717, 0.03055061772465706, -0.030915653333067894, -0.007974609732627869, -0.008206266909837723, -0.010831710882484913, 0.0013214967912063003, 0.0029623990412801504, 0.017942871898412704, -0.0036503495648503304, -0.0029202797450125217, 0.01056495402008295, -0.012502447701990604, 0.006447780877351761, 0.0038398869801312685, -0.0033046193420886993, -0.020498117431998253, -0.02931511588394642, -0.004724394995719194, 0.012530527077615261, 0.014868155121803284, 0.005233337637037039, -0.017788434401154518, -0.005735260900110006, 0.03546455129981041, -0.021523023024201393, -0.016356375068426132, 0.01792883314192295, 0.005205258261412382, -0.04776342213153839, 0.03406057134270668, 0.00021564264898188412, -0.006437251344323158, 0.030915653333067894, -0.008557261899113655, -0.015120871365070343, -0.01698816567659378, 0.016581011936068535, -0.010972108691930771, 0.006226654164493084, -0.0009301371756009758, 0.0224075298756361, 0.02312356047332287, 0.007995669730007648, 0.005061350297182798, -0.015120871365070343, -0.02184593863785267, -0.003643329720944166, 0.010038461536169052, 0.006746126804500818, -0.024597739800810814, 0.012867482379078865, -0.0069391741417348385, 0.02163534052670002, -0.01881333999335766, -0.042737171053886414, -0.02167746052145958, -0.024260785430669785, 0.008655540645122528, 0.00781315192580223, 0.0017154888482764363, -0.011161645874381065, -0.002502595540136099, -0.011000188067555428, 0.015162990428507328, -0.008929316885769367, 0.008578321896493435, 0.007932490669190884, -0.02441522292792797, -0.012362048961222172, 0.021157987415790558, -0.017521677538752556, -0.03389209136366844, -0.0003615250170696527, -0.030494458973407745, -0.038300592452287674, -0.00660572899505496, -0.015893060714006424, 0.058911025524139404, 0.004369889851659536, -0.011667079292237759, -0.025271650403738022, -0.03552071005105972, -0.05399709567427635, -0.00304137310013175, -0.02636675536632538, 0.03316202387213707, 0.03571726754307747, 0.033695533871650696, 0.013436094857752323, 0.024050187319517136, -0.009441769681870937, 0.03021366335451603, -0.021396664902567863, -0.015780741348862648, -0.022084614261984825, -0.032881226390600204, 0.01214443240314722, -0.012046153657138348, -0.03630694001913071, 0.01448907982558012, 0.02077891305088997, -0.02142474427819252, 0.008395804092288017, 0.027560139074921608, -0.007967590354382992, 0.004197902046144009, -0.018785260617733, -0.008058848790824413, 0.027237223461270332, 0.011912775225937366, 0.014461000449955463, -0.02743378095328808, 0.012179532088339329, 0.007735933177173138, -0.01555610541254282, -0.041894782334566116, 0.014966432936489582, 0.028627164661884308, -0.005735260900110006, 0.014159144833683968, -0.02082103304564953, -0.016159817576408386, 0.007167321164160967, -0.016665250062942505, 0.013351855799555779, -0.0055036041885614395, 0.017311081290245056, 0.022126734256744385, -0.007111161947250366, 0.02031559869647026, -0.00711818179115653, 0.0039241258054971695, 0.000473843450890854, 0.004689295310527086, 0.015738623216748238, -0.02709682658314705, -0.009975282475352287, -0.011575819924473763, 0.019262613728642464, 0.016145776957273483, -0.018378106877207756, -0.006216124165803194, 0.011154625564813614, -0.03251619264483452, -0.01681968756020069, 0.0258192028850317, -0.020638514310121536, -0.004748964216560125, -0.015359547920525074, -0.006296853069216013, 0.003885516431182623, 0.00601605698466301, -0.00025929766707122326, -0.01032627746462822, -0.0013759010471403599, -0.012088272720575333, -0.007988649420440197, -0.03532415255904198, -0.004836713429540396, 0.023446476086974144, -0.02389574982225895, 0.00025842018658295274, 0.20632898807525635, -0.002495575463399291, 0.016651209443807602, 0.020301559939980507, 0.008416864089667797, 0.00020302875782363117, -0.0039030660409480333, 0.01565438322722912, -0.00163739244453609, 0.010684292763471603, 0.018490424379706383, -0.0029904786497354507, -0.024766217917203903, -6.219195347512141e-05, 0.012727084569633007, -0.02360091358423233, -0.021649381145834923, -0.01177939772605896, -0.0056440019980072975, -0.006704007275402546, 0.02065255492925644, -0.010705351829528809, -0.01659505069255829, -0.0028957100585103035, 0.025580527260899544, 0.024850456044077873, 0.011667079292237759, 0.019683808088302612, 0.021621301770210266, 0.049363959580659866, -0.020554276183247566, -0.005693141371011734, 0.016145776957273483, -0.019023938104510307, -0.02313760109245777, 0.006170494947582483, 0.009034615010023117, -0.024724097922444344, 0.013548413291573524, 0.000582213222514838, 0.015528026036918163, -0.014994513243436813, 0.024316944181919098, -0.03568918630480766, 0.02215481363236904, -0.011681118980050087, -0.010080580599606037, -0.004233001731336117, 0.014327622018754482, 0.00640215165913105, -0.003129121847450733, 0.008704680018126965, 0.006753146648406982, -0.00043391776853241026, 0.023544754832983017, -0.011449461802840233, -0.019557449966669083, 0.004440088756382465, 0.006226654164493084, 0.0017523432616144419, 0.0006475860718637705, 0.011273964308202267, -0.004018894396722317, 0.00638109166175127, -0.026998547837138176, 0.030522538349032402, -0.004029424395412207, 0.040181923657655716, 0.013071059249341488, 0.0017207537312060595, -0.00712871178984642, 0.006121355574578047, -0.03153340518474579, -0.0047138649970293045, -0.004113662987947464, -0.007932490669190884, 0.027503980323672295, 0.028093652799725533, 0.055878426879644394, 0.010852769948542118, -0.007588515058159828, 0.007848251610994339, -0.021438784897327423, -0.011540720239281654, 0.009848924353718758, -0.01017885934561491, 0.022856803610920906, -0.020624475553631783, 0.006970763672143221, 0.0009389120386913419, -0.014755836687982082, 0.018321946263313293, 0.0037451183889061213, -0.01736724004149437, 0.004562937188893557, -0.020119043067097664, 0.004050483927130699, 0.009483888745307922, -0.0036784291733056307, -0.023614954203367233, -0.02027348056435585, 0.059135664254426956, 0.012635825201869011, 0.03473448008298874, -0.009968262165784836, 0.004612076096236706, -0.005875658709555864, 0.00712871178984642, 0.008550241589546204, -0.005331616383045912, -0.0014162654988467693, -0.044365786015987396, 0.02313760109245777, 0.00044576384243555367, -0.007342818658798933, 0.02211269550025463, 0.017718235030770302, -0.0034730969928205013, 0.0032361752819269896, -0.0004091287264600396, 0.013274637050926685, -0.005089429672807455, -0.010424556210637093, 0.0100314412266016, -0.0067987763322889805, -0.02291296422481537, 0.004780554212629795, 0.009097794070839882, -0.030241742730140686, -0.02671775035560131, 0.023909790441393852, -0.012713044881820679, 0.020385798066854477, -0.002572794444859028, 0.000947686901781708, -0.015331468544900417, -0.00451379781588912, -0.021523023024201393, -0.0025499798357486725, -0.009125874377787113, 0.009329451248049736, -0.00251839030534029, 0.009273291565477848, 0.004654195625334978, 0.005721221212297678, 0.014573318883776665, -0.010915949009358883, -0.01724088191986084, -0.025369929149746895, -0.013773050159215927, -0.007504276465624571, 0.01045263558626175, -0.012193571776151657, -0.015893060714006424, 0.036559656262397766, -0.03504335507750511, -0.04366379603743553, -0.03594190254807472, 0.0162159763276577, 0.013408014550805092, -0.050936415791511536, -0.005342146381735802, 0.034594081342220306, 0.030101343989372253, -0.011259924620389938, -0.000258858926827088, -0.17993415892124176, 0.0018409695476293564, 0.005731750745326281, -0.012860462069511414, 0.0021129907108843327, 0.02150898240506649, 0.012474367395043373, -0.009357530623674393, -0.038637544959783554, -0.009905083104968071, 0.014446960762143135, -0.0022744485177099705, -0.03872178494930267, -0.028262129053473473, 0.01945917122066021, -0.025847282260656357, -0.005001680925488472, 0.04296180605888367, 0.048802364617586136, 0.0036678994074463844, 0.018841419368982315, -0.02270236611366272, 0.0046155862510204315, -0.009638327173888683, 0.011112506501376629, 0.008115007542073727, -0.010740451514720917, 0.030999891459941864, -0.0065039400942623615, -0.03622270002961159, 0.011533700861036777, 0.003717038780450821, 0.015893060714006424, 0.00534565607085824, -0.016496771946549416, -0.0072234803810715675, -0.009708525612950325, -0.015261269174516201, -0.015864981338381767, 0.024724097922444344, 0.027503980323672295, 0.0006712782196700573, 0.01929069310426712, -0.002488555619493127, 0.0051385690458118916, 0.019529370591044426, 0.025187412276864052, -0.00834666471928358, 0.016454651951789856, 0.0056720818392932415, 0.022140774875879288, -0.023923829197883606, -0.007742953021079302, -0.003294089576229453, 0.011709198355674744, 0.022435611113905907, 0.003713528625667095, 0.019697848707437515, 0.006774206645786762, -0.018574664369225502, 0.002076136413961649, -0.022632166743278503, -0.004131212830543518, -0.006890034768730402, -0.04032232239842415, -0.027560139074921608, -0.011007208377122879, 0.019262613728642464, -0.010368396528065205, 0.02343243733048439, 0.01839214563369751, 0.009308391250669956, -0.0010828200029209256, 0.004148762673139572, 0.018841419368982315, -0.009196072816848755, -0.035661108791828156, 0.011681118980050087, 0.008508122526109219, -0.008044809103012085, 0.009139914065599442, 0.011674098670482635, 0.011288003996014595, -0.0072234803810715675, -0.008795938454568386, -0.004113662987947464, -0.0033853482455015182, -0.005721221212297678, 0.004801613744348288, -0.005201748106628656, 0.038132112473249435, -0.007932490669190884, 0.009968262165784836, -0.0016760018188506365, 0.005707181058824062, 0.019571490585803986, 0.032712750136852264, 0.014194243587553501, -0.0014338152250275016, -0.010768530890345573, -0.01868698187172413, 0.02479429729282856, -0.02002076432108879, 0.030325980857014656, 0.03434136509895325, 0.003387103322893381, 0.020133081823587418, 0.0017365484964102507, 0.03392017260193825, -0.03392017260193825, -0.02027348056435585, 0.00483320327475667, 0.042231738567352295, 0.005033270455896854, -0.013730930164456367, 0.04360763728618622, -0.0036468396428972483, -0.016889886930584908, 0.02086315117776394, -0.008276465348899364, 0.04515201598405838, -0.026942387223243713, -0.011056347750127316, -0.0029062398243695498, -0.01711452379822731, -0.004573466721922159, -0.12411188334226608, -0.01538762729614973, 0.02713894471526146, 0.010529854334890842, 0.004755984526127577, 0.001429427764378488, -0.0031273667700588703, 0.03613846004009247, 0.007771032862365246, 0.02650715410709381, -0.007792092394083738, -0.004071543924510479, -0.023530714213848114, -0.008831038139760494, 0.004984131082892418, -0.010663232766091824, -0.010417535901069641, -0.019796127453446388, -0.00497009139508009, 0.03874986618757248, -0.006223144009709358, -0.008831038139760494, 0.007314738817512989, -0.007044472731649876, -0.0011653038673102856, -0.018981818109750748, -0.022547928616404533, 0.01745147816836834, 0.0198382455855608, 0.010937009006738663, 0.025973642244935036, -0.0256086066365242, 0.010501774959266186, -0.021916138008236885, 0.015822861343622208, -0.005570292938500643, -0.02048407681286335, 0.002762331860139966, 0.007342818658798933, -0.01937493309378624, 0.014313582330942154, -0.0016742468578740954, 0.0209193117916584, -0.032123077660799026, 0.0006567997043021023, 0.0038995561189949512, -0.024611780419945717, 0.0375424399971962, 0.009266272187232971, 0.0023042832035571337, -0.029932865872979164, -0.025749005377292633, -0.045348573476076126, -0.0401257649064064, 0.012874502688646317, 0.009898063726723194, 0.005998507142066956, 0.011688138358294964, -0.02837444841861725, 0.011526680551469326, -0.010361377149820328, -0.008466003462672234, -0.0011758337495848536, 0.02424674481153488, 0.0007686793687753379, 0.015247229486703873, -0.013843248598277569, -9.668819257058203e-05, -0.0016996940830722451, 0.0014057356165722013, -0.02705470658838749, -0.005580822937190533, -0.02424674481153488, 0.015682462602853775, -0.01081767026335001, -0.0002724599908106029, 0.0015057692071422935, -0.012326950207352638, 0.0044295587576925755, 0.0232639592140913, -0.014159144833683968, -0.016356375068426132, 0.011646019294857979, -0.027363581582903862, 0.00726559991016984, 0.019066056236624718, 0.016286175698041916, -0.009048654697835445, 0.010403496213257313, -0.02125626616179943, 0.012467348016798496, 0.029287036508321762, 0.003629289800301194, 0.02845868654549122, -0.00399081502109766, -0.0053772456012666225, -0.004282141104340553, -0.002506105462089181, 0.01766207627952099, 0.011940855532884598, 0.0019322283333167434, 0.0010547403944656253, -0.056103065609931946, -0.00048174086259678006, 0.00938560999929905, 0.012944701127707958, -0.003023823257535696, -0.023502634838223457, 0.011337143369019032, -0.014699677005410194, 0.0042891609482467175, 0.0013048244873061776, -0.03571726754307747, 0.024120386689901352, 0.0017944626742973924, -0.0042505511082708836, -0.02987670712172985, -0.0023130581248551607, 0.022028455510735512, 0.002265673829242587, 0.0010608828160911798, 0.009104814380407333, -0.0109861483797431, -0.00575281074270606, 0.0019971623551100492, 0.021663421764969826, -0.015977298840880394, 0.008648520335555077, -0.022674286738038063, 0.0031519364565610886, -0.03453792259097099, -0.03684045001864433, 0.015682462602853775, -0.0019585529807955027, 0.000818696222268045, -0.001991897588595748, -0.017942871898412704, -0.0554853156208992, -0.0007669244077987969, 0.00429969048127532, 0.01453119982033968, 0.014215303584933281, -0.004036444239318371, -0.027939213439822197, 0.011266943998634815, -0.012074233032763004, -0.01933281309902668, -0.010361377149820328, -0.02117202803492546, -0.010164819657802582, -0.0009915613336488605, 0.0023428925778716803, 0.05236847698688507, 0.0011837311321869493, -0.02449946105480194, -0.013688811101019382, 0.0017909527523443103, -0.006458310876041651, 0.016960086300969124, 0.02223905362188816, 0.008423883467912674, 0.0016733694355934858, 0.02812173217535019, -0.0014583849115297198, 0.02744782157242298, -0.006665397901087999, 0.02590344287455082, -0.025749005377292633, -0.04602248594164848, -0.006749636959284544, 0.01395556703209877, -0.03647541627287865, -0.0012697249185293913, -0.020792953670024872, 0.01945917122066021, 0.023249918594956398, 0.008564282208681107, 0.020301559939980507, -0.02223905362188816, -0.0172830019146204, 0.00653903977945447, 0.026128079742193222, 0.016075577586889267, -0.02082103304564953, -0.001974347745999694, 0.028430607169866562, 0.014727756381034851, 0.012369069270789623, -0.0198522862046957, 0.01149860117584467, 0.00014259178715292364, -0.0004170261090621352, -0.021017590537667274, 0.0018901089206337929, -0.011056347750127316, 0.002492065541446209, 0.0003610862768255174, 0.028234049677848816, -0.005931817926466465, 0.006395131815224886, 0.014559279195964336, 0.023839591071009636, 0.007237520068883896, 0.011266943998634815, 0.0009117099107243121, -0.027363581582903862, -0.011266943998634815, 0.020877191796898842, -0.01382920891046524, -0.018532544374465942, 0.018490424379706383, 0.01592114008963108, -0.010361377149820328, -0.006019566673785448, 0.022351371124386787, 0.014390801079571247, -0.019487250596284866, 0.0010091110598295927, -0.007216460537165403, -0.025833243504166603, -0.02483641728758812, -0.006658378057181835, 0.021621301770210266, 0.022098654881119728, 0.00638109166175127, -0.015134911052882671, 0.02962399087846279, -0.029371274635195732, 0.014201263897120953, -0.02471005916595459, 0.016581011936068535, -0.01474179606884718, -0.006089766044169664, -0.0019445131765678525, -0.009020575322210789, -0.016103656962513924, -0.0281638503074646, -0.015570145100355148, -0.015233189798891544, 0.01753571815788746, -0.014952393248677254, 0.08289101719856262, 0.028922000899910927, -0.010150779969990253, 0.011210785247385502, -0.02018924057483673, -0.003724058624356985, 0.015177030116319656, 0.001110899611376226, -0.0038153172936290503, -0.0059107583947479725, 0.023994028568267822, -0.015036632306873798, -0.017942871898412704, -0.019178375601768494, -0.030719095841050148, -0.0034344876185059547, -0.007525335997343063, 0.010979128070175648, -0.02228117175400257, 0.005966917611658573, 0.025454169139266014, -0.00303084310144186, 0.008487062528729439, -0.01307807955890894, -0.03695277124643326, -0.030017105862498283, 0.01239714864641428, 0.019529370591044426, -0.01043157558888197, -0.01780247502028942, 0.00036591244861483574, -0.004176842514425516, -0.026436954736709595, -0.01592114008963108, -0.02739166095852852, 0.027967294678092003, -0.0014820770593360066, -0.0221969336271286, 0.008501102216541767, 0.013408014550805092, 0.020708713680505753, 0.01937493309378624, -0.024429263547062874, -0.026535233482718468, 0.01096508838236332, -0.005198238417506218, -0.012025093659758568, -0.013604572042822838, 0.0060967858880758286], "905ad1ac-118c-467b-8a79-3df2be677e83": [0.0068285344168543816, -0.0005796740879304707, 0.02012914977967739, -0.02983028069138527, -0.0026629187632352114, 0.023889385163784027, -0.0053048692643642426, -0.04503897204995155, -0.0199614055454731, -0.04800242930650711, 0.013838790357112885, 0.029159309342503548, 0.00338456267490983, -0.005266428459435701, -0.016676440834999084, 0.022058192640542984, 0.013042011298239231, 0.0007854212308302522, 0.0021719210781157017, -0.009505431167781353, -0.0076462808065116405, 0.004777178168296814, -0.008792524226009846, -0.010560814291238785, -0.02443454973399639, 0.004735242575407028, 0.015040947124361992, -0.016844183206558228, -0.02855823002755642, 0.021568942815065384, 0.015166754834353924, -0.012147381901741028, -0.02103775553405285, -0.006416166201233864, -0.03556149825453758, 0.024881863966584206, -0.002638456178829074, -0.007087138015776873, 0.015250626020133495, -0.0076952059753239155, 0.03010985255241394, 0.0015612321440130472, -0.008184456266462803, -0.005214008502662182, -0.010987160727381706, 0.03273782506585121, 0.01471944060176611, -0.001731596072204411, -0.012713514268398285, -0.005241965875029564, -0.012350071221590042, -0.0012956392019987106, -0.02475605718791485, 0.027020586654543877, -0.017626984044909477, -0.0182979553937912, 0.02885178104043007, 0.0076323021203279495, 0.005332826636731625, 0.0079747773706913, 0.005318847950547934, -0.002458482049405575, -0.008869405835866928, 0.0051231482066214085, -0.015250626020133495, -0.01896892674267292, -0.006052723154425621, -0.019486134871840477, -0.0023221909068524837, -0.008792524226009846, 0.02885178104043007, 0.02552487887442112, 0.001683544716797769, 0.005731216166168451, -0.020380763337016106, -0.009253816679120064, -0.021443134173750877, 0.00028044517966918647, -0.002841145498678088, 0.002007673028856516, 0.006527994759380817, -0.012650610879063606, -0.00638121971860528, -0.003952442202717066, 0.03377223759889603, 0.02893565222620964, 0.023218413814902306, 0.01963989809155464, -0.00731079513207078, 0.0100785531103611, 0.003994377795606852, 0.004406746011227369, 0.029578665271401405, 0.016257083043456078, -0.0013035021256655455, 0.020772162824869156, 0.0023484006524086, 0.010546835139393806, -0.022016257047653198, -0.0324862115085125, -0.01613127626478672, -0.00479465164244175, -0.016173211857676506, -0.014397933147847652, -0.02052054926753044, 0.0032954493071883917, 0.00787692703306675, -0.009694142267107964, 0.013733950443565845, 0.01857752725481987, -0.01143447495996952, 0.015614069066941738, -0.005336321424692869, 0.0006657296908088028, 0.01193071436136961, -0.01634095422923565, 0.03061308152973652, -0.02697865106165409, -0.030780823901295662, -0.018409784883260727, -0.003028108971193433, -0.007611334323883057, 0.027929194271564484, -0.027607686817646027, 0.023442070931196213, 0.01613127626478672, 0.0026664133183658123, -0.017878597602248192, 0.007303805556148291, -0.019094733521342278, 0.014845247380435467, 0.010630706325173378, 0.006856491323560476, 0.013866746798157692, -0.012315125204622746, 0.002739800838753581, -0.011846843175590038, -0.009708120487630367, -0.014971054159104824, -0.03958732634782791, 0.039056140929460526, 0.030585123226046562, 0.01750117726624012, -0.006776114460080862, -0.015460304915904999, 0.02219797857105732, -0.002336169360205531, 0.019695812836289406, 0.0031416849233210087, 0.009260806255042553, 0.022114107385277748, -0.028767907992005348, -0.021345285698771477, 0.009372634813189507, 0.018521612510085106, 0.009372634813189507, 0.014286104589700699, 0.021387221291661263, -0.004871533717960119, -0.0006159309996291995, -0.005951378494501114, 0.0061855195090174675, -9.910592052619904e-05, -0.010057585313916206, 0.016452783718705177, 0.04048195481300354, 0.010288232006132603, -0.018214084208011627, -0.01887107640504837, -0.019108712673187256, 0.01709579862654209, 0.01592159830033779, -0.03164749592542648, 0.010630706325173378, 0.016452783718705177, 0.00709063233807683, 0.025930257514119148, 0.0038650762289762497, -0.006901921704411507, -0.023819493129849434, 0.016257083043456078, -0.0030228670220822096, 0.0017735317815095186, 0.020366784185171127, 0.0055250320583581924, -0.004221529699862003, 0.017752790823578835, 0.0034736760426312685, -0.003077033907175064, -0.017766769975423813, 0.014146318659186363, 0.007268859539180994, -0.007153536193072796, -0.012294157408177853, -0.6222143769264221, 0.0028673552442342043, -0.012308135628700256, -0.016271062195301056, 0.002888323273509741, 0.0018504139734432101, 0.020199041813611984, 0.004004861693829298, 0.0042145405896008015, 0.033408794552087784, 0.013160829432308674, 0.022729163989424706, -0.012126414105296135, -0.01888505555689335, -0.011755982413887978, -0.0164388045668602, -0.014118361286818981, -0.02521735057234764, -0.010875332169234753, -0.002002430846914649, -0.02172270603477955, 0.02639155089855194, -0.005346805322915316, -0.0005770530551671982, 0.009274785406887531, -0.02258937805891037, 0.024476485326886177, -0.01748719811439514, -0.01050489954650402, 0.013908682391047478, -0.037210967391729355, 0.01109898928552866, 0.01662052609026432, 0.009868874214589596, 0.04682822898030281, -0.011721035465598106, -0.0091489776968956, 0.025762515142560005, 0.01759902760386467, 0.03497439622879028, -0.017850641161203384, -0.028711995109915733, 0.004529058467596769, -0.0003573273424990475, -0.01393663976341486, 0.008953277952969074, 0.023204434663057327, -0.010232317261397839, -0.0066503072157502174, -0.025482943281531334, 0.009798981249332428, -0.008037680760025978, -0.012741471640765667, -0.007611334323883057, 0.017249561846256256, -0.0006613613804802299, 0.022854970768094063, -0.024853907525539398, 0.01418126467615366, 0.001494833966717124, 0.009386613965034485, 0.012412975542247295, -0.03609268367290497, -0.03413568064570427, -0.059101417660713196, 0.014901161193847656, 0.01895494945347309, -0.018940970301628113, 0.014971054159104824, -0.0036623869091272354, 0.024224871769547462, -0.0018032363150268793, 0.0043228743597865105, -0.007499505765736103, 0.002940742764621973, 0.016215147450566292, 0.038776569068431854, -0.011742003262043, 0.0040293242782354355, 0.013796853832900524, 0.009477474726736546, -0.020967863500118256, -0.027020586654543877, -0.016592569649219513, 0.025566814467310905, 0.02513347938656807, -0.013321582227945328, -0.009798981249332428, -0.013258678838610649, -0.01839580573141575, 0.01520869042724371, 0.031731367111206055, -0.0002485565491952002, -0.0455981120467186, 0.012049532495439053, 0.03824538365006447, -0.018647419288754463, 0.010008660145103931, -0.006444123573601246, -0.014425890520215034, -0.027230264618992805, -0.01266458909958601, 0.011602217331528664, -0.0005875370115973055, 0.02296680025756359, 0.013810832984745502, 0.0036274404264986515, -0.01896892674267292, 0.02407110668718815, -0.03080878034234047, -0.013230721466243267, 0.0012921445304527879, -0.005909442901611328, -0.03061308152973652, 0.01632697694003582, -0.023218413814902306, 0.007625313010066748, -0.007254880852997303, 0.006045734044164419, -0.021960342302918434, 0.005559978540986776, -0.017668919637799263, 0.012049532495439053, 0.0030613080598413944, -0.006562941242009401, 0.007527463138103485, 0.011308667249977589, 0.009260806255042553, 0.018899034708738327, 0.00806563813239336, -6.972906703595072e-05, -0.033604495227336884, 0.015572133474051952, -0.0009059864096343517, 0.016942033544182777, -0.010211349464952946, 0.01868935488164425, -0.00042503606528043747, -0.009281774051487446, -0.04087335616350174, -0.009903821162879467, -0.01016941387206316, 0.018409784883260727, -0.030361466109752655, -0.0021457113325595856, -0.04322175681591034, -0.03441525250673294, 0.0057976143434643745, -0.010637695901095867, -0.010539846494793892, -0.006311326753348112, -0.0006871343357488513, -0.00625890726223588, 0.02855823002755642, -0.02493777871131897, -0.016648484393954277, 0.01485922560095787, -0.041991639882326126, 0.0051091695204377174, -0.0161452554166317, -0.024280786514282227, 0.0012432195944711566, -0.005234976764768362, -0.00044556710054166615, -0.01906677708029747, -0.0189829058945179, -0.004965888801962137, 0.004955404903739691, -0.021680770441889763, -0.029019523411989212, 0.016494719311594963, -0.013971586711704731, -0.0076462808065116405, 0.007268859539180994, -0.019486134871840477, 0.03832925483584404, -0.02668510004878044, -0.0015184227377176285, 0.0020443666726350784, -0.003361847484484315, 0.01075651403516531, 0.017445262521505356, -0.009456505998969078, -0.0028463874477893114, 0.040817439556121826, 0.012601685710251331, 0.023442070931196213, 0.008450048975646496, -0.01868935488164425, 0.005724226590245962, 0.018745269626379013, -0.005808098241686821, -0.007143052294850349, 0.014439868740737438, -0.031116308644413948, 0.019989363849163055, -0.028208766132593155, 0.0013270910130813718, -0.008813492022454739, 0.02689477987587452, 0.017850641161203384, 0.036819569766521454, -0.014062447473406792, 0.0017516902880743146, 0.0095893032848835, -0.013076957315206528, 0.015530197881162167, -0.03900022432208061, 0.027202308177947998, 0.018899034708738327, -0.003071791958063841, -0.0009059864096343517, 0.00613659480586648, -0.012468889355659485, 0.014411911368370056, 0.02932705171406269, 0.01530654076486826, 0.01691407710313797, -0.00782101321965456, 0.0002551090146880597, 0.016368912532925606, 0.00532933184877038, 0.03265395388007164, -0.0022610346786677837, -0.011797918006777763, 0.009987692348659039, 0.013356529176235199, 0.027537794783711433, 0.00859682448208332, -0.022854970768094063, 0.020408719778060913, 0.028572209179401398, 0.024462508037686348, 0.011672110296785831, 0.03997872769832611, 0.02120549976825714, 0.02110764943063259, -0.019975384697318077, 0.045905642211437225, -0.011811896227300167, -0.011818885803222656, 0.023050671443343163, 0.016187191009521484, -0.020408719778060913, 0.020870013162493706, -0.004668844398111105, 0.01495707593858242, 0.004116690717637539, -0.004584972746670246, 0.013125882484018803, 0.01217533927410841, 0.0031591581646353006, -0.017668919637799263, -0.007083643227815628, 0.00701375026255846, 0.0015568638918921351, 0.00874359905719757, 0.013468357734382153, 0.023022715002298355, 0.019905490800738335, 0.007422623690217733, -0.016061384230852127, 0.020352806895971298, -0.01074952445924282, 0.00796778779476881, -0.0069228895008563995, -0.008044670335948467, -0.02278507873415947, -0.0159495547413826, -0.026657143607735634, 0.0012860290007665753, -0.012909214943647385, 0.006003798451274633, -0.004557015839964151, 0.0004853186837863177, 0.00395593699067831, 0.0005377383204177022, 0.020674312487244606, -0.0018539086449891329, 0.010183392092585564, -0.031172223389148712, -0.023875407874584198, 0.022072171792387962, 0.009778013452887535, -0.0016302514122799039, -0.019975384697318077, -0.02759370766580105, 0.0076952059753239155, -0.012531792744994164, -0.00831725262105465, -0.01183985359966755, 0.0003946763463318348, -0.016285041347146034, 0.004455671180039644, -0.014733418822288513, 0.01402750052511692, 0.0495121143758297, -0.024127021431922913, 0.0036833547055721283, 0.00365539756603539, 0.0028061990160495043, 0.017473218962550163, 0.003718301188200712, -0.0227990560233593, 0.04118088260293007, -0.029159309342503548, -0.014845247380435467, -0.02061839960515499, -0.026559293270111084, -0.028320593759417534, -0.01582374796271324, -0.004640887025743723, -0.02885178104043007, 0.0033111751545220613, -0.013650079257786274, 0.015502240508794785, 0.026251764968037605, -0.012140393257141113, 0.025580793619155884, 0.01040704920887947, 0.014929118566215038, -0.03707118332386017, 0.0095893032848835, 0.03391202539205551, 0.085325226187706, 0.0206463560461998, -0.006468585692346096, 0.024881863966584206, -0.0015070651425048709, -0.02347002923488617, -0.032010938972234726, -0.02356787770986557, 0.03500235453248024, 0.00201640953309834, -0.018940970301628113, -0.009722099639475346, 0.013705993071198463, 0.0045220693573355675, 0.014481804333627224, -0.0077091846615076065, -0.010085542686283588, -0.01368502527475357, 0.003367089433595538, -0.00044360136962495744, -0.0005888474988751113, 0.0009671426960267127, 0.019318390637636185, 0.02131732739508152, 0.022156042978167534, 0.015390411950647831, 0.02453240007162094, 0.008666716516017914, 0.009812960401177406, -0.03712709620594978, -0.007394666317850351, 0.024308742955327034, 0.008631770499050617, 0.007352730724960566, -0.014153308235108852, 0.02658725157380104, 0.006168046500533819, -0.024224871769547462, -0.024406593292951584, 0.002301223110407591, 0.011937703937292099, 0.018717313185334206, 0.006430144887417555, -0.0008981234859675169, 0.0040293242782354355, -0.018311934545636177, -0.014307072386145592, 0.008603813126683235, -0.01888505555689335, -0.01300706434994936, 0.010980171151459217, 0.006255412474274635, -0.02991415187716484, 0.010211349464952946, 0.013796853832900524, -0.00747853796929121, -0.006825039628893137, 0.0025528373662382364, -0.037294838577508926, -0.02433669939637184, -0.018647419288754463, -0.0043508317321538925, -0.006842512637376785, -0.009973714128136635, -0.004826103337109089, -0.01427911501377821, 0.013258678838610649, -0.008149509318172932, -0.024504443630576134, 0.020101191475987434, 0.007988755591213703, -0.038077641278505325, -0.0330733098089695, 0.009512420743703842, 0.0334647111594677, 0.024490464478731155, -0.005755678750574589, -0.008387145586311817, -0.0066922432743012905, 0.013852768577635288, 0.004025829955935478, -0.010372103191912174, 0.01867537759244442, -0.03145179525017738, -0.012126414105296135, -0.02239367738366127, -0.02971845120191574, 0.00806563813239336, -0.012447921559214592, 0.007275848649442196, -0.010232317261397839, -0.00103878288064152, 0.012203296646475792, 0.017249561846256256, 0.00973607785999775, 0.014761376194655895, 0.0328776091337204, 0.0007072285516187549, 0.029355008155107498, -0.03790989890694618, -0.0006976182921789587, -0.0044521763920784, -0.002743295393884182, 4.95256572321523e-05, 0.008512952364981174, 0.0038056671619415283, -0.007226923480629921, -0.0007985261618159711, -0.008575855754315853, -0.014230189844965935, 0.0074156345799565315, -0.004113195929676294, 0.00266466592438519, 0.007751120254397392, 0.008820481598377228, -0.015795789659023285, 0.008149509318172932, 0.020115170627832413, 0.003774215467274189, -0.006437133997678757, -0.005895464215427637, -0.019010862335562706, 0.022547442466020584, 0.003914001397788525, -0.006402187515050173, 0.01613127626478672, 0.03100448101758957, -0.027230264618992805, -0.03883248195052147, 0.00020137886167503893, -0.008268327452242374, 0.01310491468757391, -0.012482868507504463, -0.025301221758127213, 0.004808629862964153, -0.0035575474612414837, 0.002178910421207547, 0.007471548859030008, -0.05121750012040138, 0.00010773332178359851, -0.002519638277590275, 0.01885709911584854, 0.007520473562180996, 0.007772088050842285, -0.002774747321382165, -0.019919469952583313, -0.03061308152973652, 0.018353870138525963, 0.022854970768094063, 0.018549570813775063, -0.028390487655997276, 0.0033373849000781775, -0.009079084731638432, -0.012650610879063606, -0.008002734743058681, -0.01994742825627327, -0.014230189844965935, -0.004158626310527325, 0.05555085837841034, 0.015152775682508945, 0.011078021489083767, 0.018158169463276863, 0.02100979909300804, 0.018311934545636177, -0.012804375030100346, -0.00880650244653225, -0.014579654671251774, -0.02337217889726162, 0.011238775216042995, -0.020856034010648727, 0.01660654880106449, 0.0020408721175044775, -0.002612246433272958, 0.003858086885884404, 0.006779609248042107, 0.010204359889030457, -0.015865683555603027, 0.00958231370896101, -0.029606623575091362, -0.04059378430247307, -0.007254880852997303, 0.02776145190000534, -0.025189394131302834, 0.00442072469741106, -0.04294218495488167, -0.018032362684607506, 0.02552487887442112, 0.014999011531472206, 0.028041021898388863, 0.015180733054876328, 0.036707740277051926, -0.0022470559924840927, -0.003791688708588481, 0.0213313065469265, -0.008673706091940403, -0.01993344910442829, 0.0010309199569746852, -0.04224325716495514, -0.01650869846343994, -0.004326369147747755, 0.02678295038640499, 0.005668312311172485, -0.004647876601666212, -0.0029092910699546337, 0.018311934545636177, 0.0093936026096344, -0.004679328296333551, -0.020660335198044777, 0.016592569649219513, -0.009449517354369164, -0.014104383066296577, -0.019793663173913956, -0.027258222922682762, -0.002933753654360771, 0.003599483286961913, -0.005172072909772396, 0.008813492022454739, 0.008624780923128128, -0.0313120111823082, -0.00723391305655241, 0.016396868973970413, 0.009931777603924274, 0.02805500105023384, 0.010141456499695778, 0.02317647822201252, 0.016382889822125435, -0.00796778779476881, -0.012126414105296135, -0.022323785349726677, -0.007800045423209667, -0.02221195586025715, 0.0022383194882422686, 0.03883248195052147, -0.00933069922029972, -0.006112132221460342, 0.005294385366141796, -0.011469420976936817, 0.014999011531472206, -0.037686239928007126, 0.018311934545636177, 0.02159689925611019, -0.006339284125715494, -0.033408794552087784, -0.021666793152689934, -0.008778545074164867, 0.01885709911584854, -0.005514548160135746, 0.005203524604439735, -0.007041707634925842, 0.00972908828407526, 0.014286104589700699, 0.04875727370381355, -0.016257083043456078, 0.01604740507900715, -0.013216743245720863, -0.022351741790771484, -0.02142915688455105, -0.00024134884006343782, -0.004717769101262093, -0.034079767763614655, 0.004263465758413076, 0.021261412650346756, -0.025580793619155884, 0.0013262173160910606, 0.010770492255687714, 0.008058648556470871, 0.0004079996724613011, -0.011567271314561367, -0.0199614055454731, 0.030277594923973083, -0.007611334323883057, -0.0037812048103660345, -0.013000075705349445, -0.00791187398135662, 0.020185062661767006, -0.026964671909809113, -0.0043508317321538925, -0.0010553824249655008, -0.0055984193459153175, 0.006140089128166437, 0.02776145190000534, -0.004717769101262093, 0.015474283136427402, 0.0036134617403149605, -8.075903315329924e-05, -0.013167818076908588, 0.0003658455389086157, 0.0076952059753239155, 0.006618855521082878, -0.0455981120467186, -0.038580868393182755, 0.005448149982839823, 0.01839580573141575, 0.00676912534981966, -0.008645748719573021, -0.007052191533148289, 0.00642665009945631, 0.049344372004270554, -0.010365113615989685, -0.0011995364911854267, 0.014397933147847652, -0.013160829432308674, -0.03891635313630104, 0.02728617936372757, 0.019038820639252663, -0.02816683053970337, 0.0161452554166317, -0.014649547636508942, -0.030053937807679176, -0.01769687607884407, 0.011790928430855274, -0.003169642062857747, -0.0008880763780325651, -0.00040909176459535956, 0.009568335488438606, 0.0017613004893064499, 0.0013707741163671017, -0.011301678605377674, -0.019597962498664856, -0.0020041782408952713, -0.0035313377156853676, 0.013118892908096313, 0.009225860238075256, -0.02005925588309765, 0.025566814467310905, -0.01505492627620697, 0.029019523411989212, -0.010980171151459217, -0.044256169348955154, -0.03393997997045517, -0.022715184837579727, 0.0033199116587638855, -0.017067840322852135, 0.016969989985227585, 0.005105674732476473, -0.013643089681863785, -0.01710977591574192, 0.026084022596478462, 0.0006216097972355783, 0.009889842011034489, 0.009009191766381264, -0.016299018636345863, 0.015516218729317188, 0.003774215467274189, -0.008135531097650528, -0.047583069652318954, -0.00898822396993637, -0.002208614954724908, -0.031927067786455154, -0.008953277952969074, -0.00542718218639493, 0.052643317729234695, 0.005699764005839825, -0.022253893315792084, -0.01168608944863081, 0.006122616119682789, -0.03880452737212181, -0.021163564175367355, -0.032793737947940826, 0.022058192640542984, 0.02893565222620964, 0.02952275238931179, 0.006716705393046141, 0.039251841604709625, -0.008638760074973106, 0.021261412650346756, -0.0322905108332634, 0.0020583453588187695, -0.00923983845859766, -0.022449592128396034, 0.014383953996002674, -0.022938841953873634, -0.03606472536921501, 0.007150041405111551, 0.018032362684607506, -0.026461442932486534, 0.00765327038243413, 0.0328776091337204, -0.018018383532762527, -0.013146850280463696, -0.020394742488861084, 0.00664681289345026, 0.02081409841775894, 0.009414570406079292, 0.013475347310304642, -0.018633441999554634, -0.0017866366542875767, 0.0251474566757679, -0.0043228743597865105, -0.015236647799611092, 0.018116233870387077, 0.02435067854821682, 0.001498328521847725, 0.019094733521342278, 0.001108675729483366, -0.008296284824609756, -0.004151637200266123, -0.010728556662797928, 0.0204506553709507, 0.0032954493071883917, 0.004983362276107073, 0.03804968297481537, -0.020171085372567177, 0.019206563010811806, -0.009463495574891567, 0.021471092477440834, 0.006115627009421587, -0.005493580363690853, 0.018507633358240128, -0.011455442756414413, 0.002888323273509741, -0.027649622410535812, 0.0016092834994196892, 0.02189045026898384, -0.018018383532762527, -0.009225860238075256, -0.0016590822488069534, -0.011546303518116474, -0.002949479501694441, 0.010120488703250885, -0.025049608200788498, -0.012734482064843178, 0.001713249133899808, -0.004193572793155909, -0.0031941046472638845, 0.00855488795787096, -0.004801640752702951, -0.022631313651800156, -0.004920458421111107, -0.010938235558569431, 0.010469953529536724, -0.05672505870461464, 0.0008767187828198075, 0.01295115053653717, -0.02022699825465679, 0.011029096320271492, 0.18272794783115387, -0.0084151029586792, 0.014915140345692635, 0.013384486548602581, 0.011658132076263428, -0.0051231482066214085, -0.006168046500533819, 0.01436997577548027, -0.011867810972034931, 0.006290358956903219, 0.013971586711704731, 0.008296284824609756, -0.03175932541489601, -0.0036309349816292524, 0.007450580596923828, -0.009645217098295689, -0.02971845120191574, -0.03022168017923832, -0.022239914163947105, -0.002205120399594307, 0.014635568484663963, -0.011015117168426514, -0.02600015141069889, -0.007296816445887089, 0.017459241673350334, 0.028907693922519684, 0.008526931516826153, 0.01789257675409317, 0.024294763803482056, 0.019793663173913956, -0.002019904088228941, -0.007939831353724003, 0.01462159026414156, -0.020939907059073448, -0.01350330375134945, -0.015683962032198906, 0.023204434663057327, -0.010672642849385738, 0.012042542919516563, 0.011043074540793896, -0.005874496418982744, -0.018423762172460556, 0.018899034708738327, -0.03069695271551609, 0.019877534359693527, -0.020171085372567177, -0.019416240975260735, -0.004305401351302862, 0.025287242606282234, 0.025650685653090477, -0.005172072909772396, 0.002701359800994396, 0.020268933847546577, 0.005898959003388882, 0.009554356336593628, 0.0003656271146610379, -0.00579411955550313, 0.02785930037498474, -0.00933069922029972, 0.02247755043208599, -0.012580717913806438, 0.005140621215105057, -0.00478766206651926, 0.005692774895578623, -0.04358519986271858, 0.026433486491441727, -0.010721567086875439, 0.0401185117661953, 0.011616196483373642, 0.0012432195944711566, -0.004679328296333551, -0.005724226590245962, -0.03237438201904297, 0.007191976998001337, -0.01820010505616665, -0.011874799616634846, 0.03237438201904297, 0.02523132972419262, 0.037602368742227554, 0.02669907920062542, 0.0005862265243194997, 0.0043648104183375835, -0.014006532728672028, -0.011140924878418446, 0.00011008128058165312, -0.0006801450508646667, 0.036819569766521454, -0.019192583858966827, 0.0058710016310215, -0.012378028593957424, -0.008785534650087357, 0.0025720580015331507, 0.0093936026096344, -0.004969383589923382, -0.009512420743703842, 0.005105674732476473, 0.011965660378336906, 0.012713514268398285, -0.0223098061978817, -0.0385529100894928, 0.0026751498226076365, 0.04632499814033508, 0.032989438623189926, 0.030976522713899612, -0.0040293242782354355, -0.004256476182490587, 0.0025545847602188587, 0.005640355404466391, 2.921303894254379e-05, -0.010616728104650974, 0.0045080906711518764, -0.04744328558444977, 0.012979107908904552, -0.0006604876834899187, -0.0076462808065116405, 0.017724834382534027, 0.016396868973970413, -0.0076812272891402245, -0.008289295248687267, 0.01158823911100626, 0.0015192964347079396, 0.003428245661780238, 0.011546303518116474, 0.004480133298784494, -0.013712982647120953, -0.026922736316919327, 0.004801640752702951, 0.006716705393046141, -0.029886195436120033, -0.020213020965456963, 0.013391475193202496, -0.005685785785317421, 0.006482564378529787, -0.006632834207266569, -0.018018383532762527, -0.015600090846419334, -0.01026726420968771, -0.019611941650509834, 0.0035103699192404747, -0.011602217331528664, 0.017235584557056427, -0.0059688519686460495, 0.004913469310849905, 0.005657828412950039, -0.001161969150416553, 0.021848512813448906, -0.0176130048930645, 0.01134361419826746, -0.03570128232240677, -0.014300082810223103, 0.004480133298784494, -0.004892501514405012, -0.0196678563952446, -0.008261337876319885, 0.017375368624925613, -0.02885178104043007, -0.03391202539205551, -0.009694142267107964, 0.014223200269043446, 0.01369201485067606, -0.0491207130253315, 0.00981994904577732, 0.03863678127527237, 0.0196678563952446, -0.022030234336853027, -0.010232317261397839, -0.17926125228405, 0.013810832984745502, 0.0011270226677879691, -0.012056521140038967, -0.00596186239272356, 0.02082807756960392, 0.004441692493855953, -0.01022532768547535, -0.02081409841775894, -0.01653665490448475, -0.007408645004034042, 0.00298093119636178, -0.03363245353102684, -0.024406593292951584, -0.005731216166168451, -0.0157538540661335, -0.006905416492372751, 0.005745194386690855, 0.052671272307634354, 0.004626908339560032, 0.006216971669346094, -0.010777481831610203, -0.012161361053586006, -0.006070196628570557, 0.022519486024975777, 0.01403449010103941, -0.017151711508631706, 0.02219797857105732, -0.006220465991646051, -0.026349615305662155, 0.013496315106749535, -0.005350299645215273, 0.016215147450566292, -0.0060771857388317585, 0.0012563244672492146, 0.0005338068585842848, -0.008834459818899632, -0.02641950733959675, -0.015572133474051952, 0.02268722839653492, 0.03947549685835838, 0.011022106744349003, 0.03844108432531357, 0.004986857064068317, 0.01359416451305151, 0.026433486491441727, 0.035645369440317154, -0.028907693922519684, 0.00645810179412365, -0.0010379093000665307, 0.026629187166690826, -0.030780823901295662, -0.001367279444821179, 0.002109017688781023, 0.014705461449921131, 0.027425965294241905, 0.00875058863312006, 0.016942033544182777, 0.003152168821543455, -0.012657600454986095, 0.008149509318172932, -0.01022532768547535, -0.008184456266462803, -0.015152775682508945, -0.015572133474051952, -0.025203371420502663, 0.005077717825770378, 0.006713211070746183, -0.0035313377156853676, 0.015502240508794785, -0.0002634087868500501, 0.022701207548379898, 0.0021229961421340704, 0.013237711042165756, -0.005829066038131714, 0.009889842011034489, -0.026922736316919327, 0.022743143141269684, 0.020115170627832413, 0.0017892576288431883, 0.0055040642619132996, 0.018228063359856606, 0.002109017688781023, 0.002722327597439289, -0.01418126467615366, -0.0026664133183658123, 0.0017420799704268575, -0.022547442466020584, -0.0001880555209936574, -0.006196003872901201, 0.026447465643286705, -0.004291422665119171, -0.002441008808091283, 0.0027729999274015427, -0.014845247380435467, 0.010742535814642906, 0.030668994411826134, 0.008240370079874992, -0.0015673477901145816, -0.02444852888584137, -0.005580946337431669, 0.01751515455543995, -0.024294763803482056, 0.014342018403112888, 0.022072171792387962, 0.01511084008961916, 0.00618202518671751, -0.02376357838511467, 0.03804968297481537, -0.02865608036518097, -0.03634429723024368, 0.014111371710896492, 0.02777542918920517, 0.008023702539503574, -0.027635643258690834, 0.03941958397626877, -0.00298093119636178, -0.015250626020133495, 0.02854425087571144, -0.01066565327346325, 0.04076152667403221, -0.032905567437410355, -0.01270652562379837, 0.016061384230852127, 0.013699004426598549, -0.01826999895274639, -0.11031892150640488, -0.013810832984745502, 0.02913135103881359, 0.0016276304377242923, -0.010036617517471313, 0.0076323021203279495, -0.0013768896460533142, 0.04009055346250534, 0.007492516655474901, 0.015320518985390663, -0.010980171151459217, 0.0036309349816292524, 0.0008989971247501671, -0.011769960634410381, 0.02443454973399639, -0.009701131843030453, 0.00508470693603158, -0.024951757863163948, -0.004833092447370291, 0.028795866295695305, 0.006594392936676741, -0.0001966829295270145, 0.013629111461341381, 0.0060771857388317585, 0.0031853679101914167, -0.019416240975260735, -0.03069695271551609, 0.01572589762508869, 0.02844640053808689, 0.0006438881391659379, 0.02983028069138527, -0.02854425087571144, 0.017067840322852135, -0.04506692662835121, 0.006353262811899185, -0.0017420799704268575, -0.020087212324142456, -0.0063986931927502155, 0.01993344910442829, -0.015907619148492813, 0.012252221815288067, 0.0025563319213688374, 0.010987160727381706, -0.029690494760870934, -0.002191141713410616, -0.005000835284590721, -0.012238242663443089, 0.0412927120923996, 0.0032325456850230694, -0.001660829526372254, -0.013517282903194427, -0.022547442466020584, -0.042299170047044754, -0.01986355520784855, 0.01719364896416664, 0.023819493129849434, 0.014635568484663963, 0.008568867109715939, -0.019192583858966827, -0.011714046820998192, -0.010651675052940845, -0.013111904263496399, -0.010805439203977585, 0.01875924877822399, 0.0019238014938309789, 0.013636100105941296, 0.004305401351302862, -0.0011296436423435807, -0.0007640165276825428, -0.0034824125468730927, -0.026559293270111084, 0.00423201359808445, -0.030836738646030426, 0.027020586654543877, -0.021275391802191734, 0.011846843175590038, 0.0005399225046858191, -0.02267324924468994, 0.01779472641646862, 0.005095190834254026, -0.009344677440822124, -0.01867537759244442, -0.012566739693284035, -0.029774365946650505, 0.008345209993422031, 0.02219797857105732, -6.132008275017142e-05, -0.02523132972419262, 0.020604420453310013, -0.03413568064570427, 0.014915140345692635, 0.022617334499955177, -0.00650353217497468, 0.006762135773897171, 0.005189546383917332, 0.017277520149946213, -0.010770492255687714, -0.02785930037498474, 0.01963989809155464, -0.0037812048103660345, -0.006112132221460342, 0.002301223110407591, -0.05622183158993721, 0.00825434923171997, 0.008820481598377228, 0.015040947124361992, 0.007583377417176962, -0.0502949133515358, 0.010106510482728481, -0.009456505998969078, 0.01091027818620205, 0.0020478612277656794, -0.034862566739320755, 0.017249561846256256, -0.012203296646475792, 0.011762971058487892, -0.029187265783548355, -0.0008343462250195444, 0.008631770499050617, -0.0057976143434643745, 0.006175035610795021, 0.002795715117827058, -0.009016181342303753, -0.007807034533470869, -0.002760768635198474, 0.013824811205267906, -0.007150041405111551, 0.015194711275398731, -0.02453240007162094, 0.010309199802577496, -0.01915064826607704, -0.030473295599222183, 0.01001564972102642, 0.005081212148070335, -0.01859150640666485, 0.016983969137072563, 9.68535096035339e-06, -0.05077018588781357, 0.012594697065651417, -0.0017551849596202374, 0.0017997416434809566, 0.013398464769124985, -0.02033882774412632, -0.04126475378870964, 0.018647419288754463, -0.02219797857105732, -0.009295753203332424, 0.003195851808413863, -0.010679631493985653, -0.0013559218496084213, 0.005843044724315405, 0.002722327597439289, 0.04431208595633507, 0.020702270790934563, -0.03164749592542648, -0.011147914454340935, 0.006367241032421589, 0.008373166434466839, 0.01701192744076252, 0.009309731423854828, 0.017235584557056427, 0.016396868973970413, 0.03958732634782791, 0.006727189756929874, 0.010134466923773289, 0.0020967863965779543, 0.024588314816355705, -0.027258222922682762, -0.05759173259139061, -0.014237179420888424, 0.02228184975683689, -0.022170020267367363, -0.0033111751545220613, -0.027915215119719505, 0.03089265152812004, 0.03500235453248024, 0.019430220127105713, 0.006108637433499098, -0.010155435651540756, -0.0100785531103611, 0.010721567086875439, 0.022058192640542984, 0.008974245749413967, -0.026084022596478462, -0.014223200269043446, 0.00972908828407526, 0.009107042104005814, 0.017473218962550163, -0.0032814706210047007, 0.01934634894132614, 0.006989287678152323, 0.011944692581892014, -0.010127478279173374, 0.00044775125570595264, -0.012657600454986095, 0.01227318961173296, 0.006681759376078844, 0.0073736985214054585, -0.0059059481136500835, -0.0015455062966793776, 0.034582994878292084, 0.017459241673350334, -0.004455671180039644, 0.006870470009744167, 0.008002734743058681, -0.026237785816192627, -0.02161087840795517, 0.014747397042810917, -0.03419159725308418, -0.016452783718705177, 0.03234642371535301, 0.012238242663443089, 0.001590936677530408, -0.02296680025756359, -0.0062624020501971245, 0.010868342593312263, -0.024518420919775963, -0.017654940485954285, -0.009952745400369167, -0.022030234336853027, -0.03841312602162361, 0.011979639530181885, 0.014062447473406792, 0.019611941650509834, 0.024085085839033127, -0.014383953996002674, 0.025664664804935455, 0.0032203143928200006, 0.011413507163524628, -0.03041738085448742, 0.009687152691185474, -0.028292637318372726, -0.005021803081035614, -0.010448985733091831, -0.011748992837965488, -0.021261412650346756, -0.023316264152526855, 0.0030927597545087337, -0.010218339040875435, 0.021638834848999977, 0.01820010505616665, 0.08940696716308594, 0.02620982937514782, -0.015068904496729374, 0.010106510482728481, -0.026028107851743698, 0.010120488703250885, 0.020408719778060913, -0.005186051595956087, -0.0025580793153494596, -0.006052723154425621, 0.03100448101758957, 0.006402187515050173, -0.010218339040875435, -0.012287167832255363, -0.013622121885418892, -0.00949145294725895, 0.000791100028436631, 0.013167818076908588, -0.009114031679928303, 0.009260806255042553, 0.023735621944069862, 0.002545848023146391, 0.0103231780230999, -0.01583772711455822, -0.024867886677384377, -0.011168882250785828, 0.04431208595633507, 0.0108124278485775, 0.013831800781190395, -0.021554963663220406, 0.025077564641833305, -0.0017569322371855378, -0.04898092895746231, -0.022058192640542984, -0.008240370079874992, 0.00884144939482212, -0.03312922269105911, -0.013021043501794338, 0.02022699825465679, 0.03469482436776161, 0.004193572793155909, 0.016844183206558228, -0.015040947124361992, -0.01818612776696682, 0.01149038877338171, -0.0012475878465920687, -0.01505492627620697, -0.012503836303949356, -0.004137658514082432], "bee4eada-eeec-40eb-bda2-271f40acfaba": [0.005683417432010174, 0.013842578046023846, 0.02919623628258705, -0.03470088914036751, -0.006941526662558317, 0.0003438298881519586, -0.01521874126046896, -0.0361580029129982, -0.01658141240477562, -0.035078659653663635, 0.01867263950407505, 0.027509763836860657, 0.007346280384808779, -0.011764842085540295, -0.026997074484825134, 0.005794724449515343, 0.02110116183757782, -0.014571134932339191, 0.0010489868000149727, -0.005487786140292883, -0.0268216822296381, 0.009329574182629585, -0.0037271075416356325, -0.015191757120192051, -0.013781865127384663, 0.021573374047875404, 0.007791509851813316, -0.016513952985405922, -0.01772821508347988, 0.03804685175418854, -0.0039058737456798553, -0.01024701539427042, -0.03159777447581291, 0.006010593380779028, -0.03559134528040886, 0.009012516587972641, -0.00918116420507431, -0.007150649558752775, 0.016176657751202583, -0.002485862700268626, 0.032110463827848434, 0.00392273860052228, -0.01536715030670166, -0.009336319752037525, -0.015259216539561749, 0.02954702451825142, -0.0021165248472243547, -0.006037576589733362, -0.015205249190330505, 0.00392611138522625, -0.009592663496732712, -0.017660755664110184, -0.015879839658737183, 0.021276555955410004, 0.009235131554305553, -0.02406935580074787, 0.012466415762901306, -0.021559882909059525, 0.0038350417744368315, -0.005352868232876062, 0.01341084111481905, 0.011036285199224949, -0.01988690160214901, -0.007015731651335955, -0.014813987538218498, -0.012412448413670063, -0.015259216539561749, 0.0010186302242800593, -0.01593380607664585, -0.009106959216296673, 0.04252612590789795, 0.030275579541921616, -0.008203009143471718, 0.017971066758036613, -0.022706685587763786, -0.017566312104463577, -0.006189359351992607, -0.0009722522227093577, -0.012129120528697968, -0.010064876638352871, 0.014544151723384857, -0.01923929527401924, -0.02590424008667469, -0.00519096665084362, 0.03189459443092346, 0.027954991906881332, 0.0211146529763937, 0.003474136348813772, -0.011899759992957115, 0.0019428179366514087, -0.005747503135353327, 0.002796173794195056, 0.039072226732969284, 0.013161242939531803, -0.009262114763259888, 0.020399589091539383, 0.0193337369710207, 0.006381617393344641, -0.005110016092658043, -0.0165949035435915, -0.004917758051306009, -0.007825239561498165, -0.020075784996151924, -0.006813354790210724, -0.02800896018743515, -0.004641176201403141, 0.008472844958305359, -0.014719544909894466, 0.016662362962961197, 0.017485361546278, -0.03100413642823696, 0.032973937690258026, -0.013141005299985409, -0.002711850218474865, 0.01327592320740223, -0.022382881492376328, 0.031246989965438843, -0.035105641931295395, -0.018267886713147163, -0.014044955372810364, 0.012378718703985214, -0.015164773911237717, 0.03227236494421959, -0.032973937690258026, 0.021236080676317215, 0.00979504082351923, 0.009268861263990402, -0.0004030672716908157, 0.011272392235696316, -0.017053624615073204, 0.016217133030295372, -0.005585601553320885, 0.023705078288912773, 0.0002734196023084223, -0.004152098670601845, -0.017336951568722725, -0.010894621722400188, 0.0062095969915390015, -0.019185326993465424, -0.0249733068048954, 0.03537547588348389, 0.022220980376005173, 0.010570818558335304, -0.028872434049844742, -0.0016839442541822791, 0.029169254004955292, 0.007953410968184471, 0.01894247531890869, 0.006408601067960262, 0.013842578046023846, 0.027563730254769325, -0.014098921790719032, -0.015704445540905, 0.0010473002912476659, -0.0003596405731514096, -0.0056227040477097034, 0.010145827196538448, 0.013572742231190205, -0.021344013512134552, -0.015259216539561749, -0.012378718703985214, -0.0016156419878825545, -0.0052449340000748634, -0.006189359351992607, 0.0001525204861536622, 0.037156395614147186, 0.002641018247231841, -0.00610840879380703, -0.008837123401463032, -0.010624785907566547, -0.0047423648647964, 0.025229649618268013, -0.025499485433101654, 0.015785396099090576, 0.018429787829518318, 0.0031419009901583195, 0.021519407629966736, 0.0016535876784473658, -0.023111438378691673, -0.012196579948067665, 0.031112071126699448, 0.0012370286276564002, 0.00293446471914649, 0.021276555955410004, -0.011575956828892231, -0.011063269339501858, 0.02320588193833828, 0.010921604931354523, -0.00467490591108799, -0.0138560701161623, 0.0002377928321948275, 0.005710400640964508, 0.007157395593822002, -0.0017143008299171925, -0.6204065680503845, 0.002087854780256748, 0.0043983240611851215, -0.009012516587972641, 0.017552820965647697, 0.005002081859856844, 0.04009760543704033, -0.013221955858170986, -0.00048612611135467887, 0.01783614791929722, 0.0154885770753026, 0.01116445753723383, -0.0032161057461053133, -0.011980710551142693, -0.005126880947500467, -0.02830577827990055, -0.012709267437458038, -0.03103112056851387, 0.0030272207222878933, 0.005487786140292883, -0.04015156999230385, 0.03308187425136566, 0.00655701057985425, -0.006536772940307856, 0.0108541464433074, -0.02320588193833828, 0.029466072097420692, -0.011589448899030685, -0.001974860904738307, 0.022126538679003716, -0.019751982763409615, 0.03791193291544914, 0.002947956556454301, 0.016513952985405922, 0.03640085458755493, -0.013579487800598145, -0.018497245386242867, 0.01932024583220482, 0.025472503155469894, 0.05445287004113197, -0.024204274639487267, 0.0014360325876623392, 0.009977179579436779, 0.012722759507596493, -0.007966903038322926, 0.00842562410980463, 0.019657541066408157, 0.009835516102612019, -0.009585917927324772, -0.018281377851963043, -0.005298901349306107, -0.005879048258066177, -0.01098906435072422, 0.010921604931354523, -0.004314000252634287, -0.004243168514221907, 0.027226435020565987, -0.021505916491150856, -0.004492766689509153, 0.0022295184899121523, 0.0034673905465751886, 0.01007162220776081, -0.04009760543704033, -0.036616723984479904, -0.05612585321068764, 0.02227494865655899, 0.016163166612386703, -0.027847057208418846, 0.00556199112907052, -0.013673930428922176, 0.018294868990778923, 2.7879523258889094e-05, 0.000669530185405165, -0.01718854159116745, -0.00380805809982121, 0.014220348559319973, 0.032407283782958984, -0.003942976240068674, -0.00932282768189907, 0.022679701447486877, 0.004539988003671169, -0.014274315908551216, -0.02587725594639778, -0.017903607338666916, 0.03410724923014641, 0.014341774396598339, -0.015124298632144928, -0.0015296319033950567, 0.0020507522858679295, 0.0006653139716945589, 0.015583019703626633, 0.03532151132822037, -0.020696409046649933, -0.011076760478317738, 0.000998392584733665, 0.03796590119600296, -0.01811947673559189, -0.0037743286229670048, -0.023138422518968582, -0.011926744133234024, -0.01984642632305622, -0.031166039407253265, -0.0023425123654305935, 0.00556536391377449, 0.01902342587709427, 0.022045588120818138, -0.002502727322280407, -0.018510738387703896, 0.023880470544099808, -0.04546733945608139, -0.0008988906047306955, -0.0035888166166841984, -0.02500028908252716, -0.026403436437249184, 0.021317031234502792, -0.0202241949737072, -0.00860101729631424, -0.0015195130836218596, 0.02052101492881775, -0.022072570398449898, -0.0005919523537158966, -0.003663021372631192, 0.013134258799254894, 0.004519750364124775, 0.010894621722400188, 0.021897178143262863, -0.0017539329128339887, -0.006189359351992607, 0.012115628458559513, -0.014436217024922371, -0.0017573058139532804, -0.021236080676317215, 0.012682284228503704, 0.008135550655424595, 0.011859284713864326, -0.018605180084705353, 0.01809249259531498, -0.0038451605942100286, -3.164773806929588e-05, -0.03402629867196083, -0.004091385751962662, 0.016635378822684288, 0.01718854159116745, -0.019940868020057678, -0.006654825992882252, -0.027199452742934227, -0.015178265981376171, 0.0011518617393448949, -0.016406018286943436, -0.007933173328638077, -0.016675854101777077, -0.014584627002477646, -0.010914859361946583, 0.04120393097400665, 0.009397032670676708, -0.0002458035887684673, 0.00934981182217598, -0.04225629195570946, -0.008007378317415714, -0.019225802272558212, -0.024959813803434372, 0.004769348539412022, -0.013741389848291874, -0.011987457051873207, -0.010267253033816814, -0.01717505045235157, -0.0028939892072230577, 0.002536456799134612, -0.015340167097747326, -0.030032727867364883, 0.01368742249906063, 0.005150491371750832, 0.009275606833398342, 0.022193998098373413, -0.021897178143262863, 0.027266910299658775, -0.0234892088919878, -0.023057471960783005, 0.013768373057246208, -0.001382065354846418, 0.010341458022594452, 0.008007378317415714, -0.020993227139115334, -0.0063141584396362305, 0.025148699060082436, 0.007906190119683743, 0.03348662704229355, 0.012331497855484486, -0.02680818922817707, -0.0027202824130654335, 0.013316398486495018, -0.0023694958072155714, -0.005389970727264881, -0.0001943661191035062, -0.02957400679588318, 0.015704445540905, -0.026700256392359734, -0.000974781927652657, -0.0017261060420423746, 0.018740098923444748, 0.005673298146575689, 0.016513952985405922, -0.008931566029787064, 0.008486337028443813, 0.007865714840590954, -0.014085430651903152, 0.018564704805612564, -0.01221681758761406, 0.010064876638352871, 0.014071938581764698, 0.010152572765946388, -0.0020406334660947323, -0.010624785907566547, -0.01221681758761406, 0.018767083063721657, 0.027631189674139023, 0.014530659653246403, 0.009086721576750278, 0.00474573764950037, -0.00044438589247874916, -0.00686057610437274, -0.005821708124130964, 0.027037549763917923, -0.006432211492210627, 0.001695749582722783, 0.0361580029129982, -0.005400089547038078, 0.033324725925922394, 0.006590740289539099, -0.029735907912254333, -0.002103033009916544, 0.030383514240384102, 0.02019721269607544, 0.011899759992957115, 0.04374038800597191, 0.030869219452142715, 0.0198599174618721, -0.019805949181318283, 0.026349468156695366, -0.0033375320490449667, -0.020089277997612953, 0.006610977929085493, 0.01602824777364731, -0.023016996681690216, 0.030275579541921616, 0.02203209511935711, 0.021640833467245102, 0.015002871863543987, 0.0019934121519327164, 0.027199452742934227, 0.011393818072974682, 0.007326042745262384, -0.018753590062260628, -0.0022463833447545767, 0.0036495295353233814, -0.010672006756067276, 0.01598777249455452, 0.00436459481716156, 0.011548973619937897, 0.01571793667972088, 0.020264670252799988, -0.012291022576391697, 0.02014324441552162, 0.004904266446828842, 0.003666394390165806, -0.00962639320641756, -0.007494690362364054, -0.019954359158873558, 0.002022082218900323, -0.023381274193525314, 0.008479591459035873, -0.007784763816744089, 0.008000632748007774, 0.013626709580421448, -0.0029665075708180666, 0.007663337513804436, 0.02474394626915455, 0.018294868990778923, -0.02319238893687725, 0.025971699506044388, -0.024190781638026237, -0.00887759868055582, 0.018888508901000023, 0.023745553568005562, 0.015879839658737183, -0.012716013938188553, -0.011751350946724415, -0.0011358401970937848, 0.016109198331832886, 0.006283801980316639, -0.009714090265333652, 0.00932282768189907, -0.01399098802357912, -0.002290231641381979, 0.0031891223043203354, 0.01894247531890869, 0.05040533468127251, -0.017269494011998177, -0.0009427389595657587, 0.009862499311566353, 0.012621571309864521, 0.0012336557265371084, -0.018605180084705353, -0.032704103738069534, 0.025755830109119415, -0.02895338460803032, -0.02320588193833828, -0.02925020456314087, -0.009451000019907951, -0.03823573887348175, -0.001409892225638032, -0.012108882889151573, -0.009127196855843067, -0.0075486572459340096, -0.014827478677034378, 0.0138560701161623, 0.005970117636024952, -0.0011864344123750925, 0.039611898362636566, 0.009909721091389656, 0.0016274473164230585, -0.021006720140576363, 0.017674246802926064, 0.04603399336338043, 0.07782065123319626, 0.008088328875601292, 0.0016164853004738688, 0.009228385053575039, -0.0027067908085882664, -0.029007352888584137, -0.02862958237528801, -0.01071922853589058, 0.03472787141799927, 0.0037068696692585945, -0.029439089819788933, 0.004732246045023203, 0.011805317364633083, -0.016068723052740097, 0.006708793342113495, -0.006435584742575884, -0.01040891744196415, -0.03580721467733383, -0.00829745177179575, 0.004266778938472271, -0.0073732640594244, -0.006850457284599543, 0.019671032205224037, 0.013302906416356564, 0.012830694206058979, 0.00949822086840868, 0.026066141203045845, 0.010166064836084843, 0.011360088363289833, -0.021937653422355652, -0.014247331768274307, 0.02773912437260151, 0.007413739338517189, 0.01898295059800148, -0.012378718703985214, 0.036346886307001114, -0.009997417218983173, -0.006540146190673113, -0.006192732136696577, -0.00031284091528505087, 0.005437192041426897, 0.033270757645368576, 0.005609212443232536, -0.0064153471030294895, 0.006826846394687891, 8.743313082959503e-05, -0.007123665884137154, 0.02288207784295082, -0.03265013545751572, 0.008169279433786869, -0.0006977785960771143, 0.001181375002488494, -0.0016999657964333892, 0.016095707193017006, 0.015893330797553062, -0.014220348559319973, -0.005922896321862936, -0.008047853596508503, -0.036886557936668396, -0.021168621256947517, -0.025715354830026627, -0.012844185344874859, -0.0030356531497091055, 0.005585601553320885, -0.008715697564184666, -0.02106068655848503, 0.013127513229846954, -0.014058446511626244, -0.02737484499812126, -0.0004907639231532812, 0.00274895248003304, -0.03621196746826172, -0.033189807087183, 0.006519908085465431, 0.04498163238167763, 0.017067115753889084, -0.00467490591108799, 0.0022008484229445457, -0.00587230222299695, 0.011697383597493172, 0.015178265981376171, -0.02224796451628208, -0.008547049947082996, -0.025526469573378563, -0.013707660138607025, -0.02165432646870613, -0.02798197604715824, -0.0022868586238473654, -0.010085114277899265, -0.004391578026115894, 0.005959998816251755, -0.007420485373586416, 0.01293862797319889, 0.020628949627280235, 0.011420801281929016, 0.024568552151322365, 0.0277121402323246, -0.011643416248261929, 0.019266277551651, -0.0420943908393383, 0.01597428135573864, -0.013781865127384663, -0.020035309717059135, -0.009572425857186317, 0.00886410754173994, 0.011866030283272266, -0.015556035563349724, -0.00648955162614584, -0.016338558867573738, -0.013404094614088535, 0.019671032205224037, 0.012884660623967648, 0.0072788214311003685, -0.0006682652747258544, 0.009437507949769497, -0.010564072988927364, 0.009329574182629585, 0.00857403315603733, 0.019104376435279846, 0.006398482248187065, -0.004347729962319136, -0.012985849753022194, 0.02498679794371128, -0.00154396693687886, -0.00511676212772727, 0.017890116199851036, 0.017701230943202972, -0.010017654858529568, -0.029439089819788933, 0.008722443133592606, -0.009477983228862286, 0.00962639320641756, -0.023893963545560837, -0.01899644173681736, -0.0031199767254292965, -0.010010909289121628, -0.0042971353977918625, 0.001309546991251409, -0.023300323635339737, -0.0002607710484880954, -0.019751982763409615, -0.0035281034652143717, 0.012628316879272461, -0.006729030981659889, 0.012581096030771732, -0.024312209337949753, -0.012749742716550827, 0.006658199243247509, 0.004850299097597599, -0.005747503135353327, -0.030491448938846588, -0.0013584548141807318, -0.008702205494046211, -0.0024926085025072098, -0.003571951761841774, -0.009849008172750473, -0.019185326993465424, 0.0007934860186651349, 0.06551613658666611, 0.008654984645545483, 0.007143903523683548, 0.006216343026608229, 0.01293188240379095, 0.01625760830938816, -0.010941842570900917, -0.006013966165482998, -0.021586867049336433, -0.024528076872229576, 0.016945689916610718, -0.006219715811312199, 0.017687737941741943, 0.0012943687615916133, -0.008466099388897419, 0.01600126549601555, 0.0063175312243402, 0.028494663536548615, -0.00798039510846138, -0.006833592429757118, -0.019698016345500946, -0.032380301505327225, -0.0020119633991271257, 0.03969285264611244, -0.0037979392800480127, 0.015704445540905, -0.027563730254769325, 0.008850615471601486, -0.0014486811123788357, 0.004570344462990761, 0.02466299571096897, 0.019832933321595192, 0.02409633994102478, 0.007555403281003237, 0.0032565812580287457, 0.019967852160334587, -0.014692560769617558, -0.0162306260317564, 0.002325647510588169, -0.051376741379499435, -0.030059712007641792, 0.006948272697627544, 0.0343770831823349, 0.016419511288404465, -0.012763234786689281, 0.010779941454529762, -0.010786687023937702, 0.018524229526519775, -0.022409865632653236, -0.013883053325116634, 0.003814804134890437, -0.007197870872914791, 0.005099897272884846, -0.005777859594672918, -0.027199452742934227, 0.004455664195120335, -0.006543518975377083, -0.019724998623132706, 0.012581096030771732, 0.01959008164703846, -0.015002871863543987, -0.008000632748007774, 0.022760652005672455, 0.008675222285091877, 0.04552130401134491, 0.018483754247426987, 0.033270757645368576, 0.018888508901000023, -0.004958233330398798, -0.011360088363289833, -0.02954702451825142, 0.005879048258066177, -0.01745837926864624, 0.0009343065903522074, 0.020116262137889862, -0.00196474208496511, -0.00436796760186553, 0.006054441444575787, -0.014193364419043064, 0.014733036048710346, -0.02231542393565178, 0.02656533755362034, 0.012007694691419601, -0.006189359351992607, -0.026754222810268402, -0.013606471940875053, -0.008337927050888538, 0.02528361789882183, -0.014827478677034378, 0.0002982950827572495, 0.007953410968184471, 0.004317373502999544, 0.01399098802357912, 0.0459260568022728, -0.020979736000299454, 0.017660755664110184, -0.02199161984026432, -0.013269176706671715, -0.02616058476269245, 0.0025415162090212107, -0.003254894632846117, -0.020359113812446594, -0.005477667320519686, 0.016689347103238106, -0.020318638533353806, 0.013829085975885391, 0.004590582102537155, 0.013565996661782265, 0.003415109822526574, 0.003369574900716543, -0.005673298146575689, 0.030491448938846588, -0.011953727342188358, -0.011852539144456387, 0.0103751877322793, -0.003663021372631192, 0.007872460409998894, -0.028089910745620728, -0.02050752379000187, -0.0012926822528243065, 0.003814804134890437, 0.005862183403223753, 0.021627342328429222, 0.012601333670318127, -0.0007686105091124773, -0.01991388387978077, 0.019482146948575974, -0.012237055227160454, 0.014233839698135853, 0.005160610191524029, -0.001971488120034337, -0.049865663051605225, -0.019967852160334587, 0.016176657751202583, 0.0029648211784660816, 0.019225802272558212, 0.01810598373413086, -0.016716329380869865, -0.007919681258499622, 0.03162476047873497, -0.008526812307536602, -0.007939919829368591, 0.015825871378183365, 0.013910037465393543, -0.04347055405378342, 0.02172178402543068, 0.0012994281714782119, -0.01923929527401924, 0.022099554538726807, -0.009707343764603138, -0.01505683921277523, -0.015569527633488178, 0.012547366321086884, -0.0026966717559844255, 0.013255685567855835, -0.007865714840590954, -0.009397032670676708, 0.013215210288763046, 0.0026376452296972275, -0.005217950325459242, -0.0165949035435915, -0.0016729821218177676, -0.006685182917863131, 0.005295528098940849, 0.008513320237398148, -0.01632506772875786, -0.00012606392556335777, -0.01718854159116745, 0.03351360931992531, -0.015299691818654537, -0.04190550372004509, -0.02679469808936119, -0.04544035345315933, -0.009147434495389462, -0.008236738853156567, 0.004222930874675512, 0.012452923692762852, -0.03014066256582737, -0.010813671164214611, 0.02830577827990055, 0.0013162929099053144, -0.00935655739158392, 0.008708951063454151, -0.00380468531511724, 0.006729030981659889, 0.015178265981376171, -0.012689029797911644, -0.04007061943411827, -0.018753590062260628, 0.0011720993788912892, -0.030329547822475433, -0.0020406334660947323, -0.0028484545182436705, 0.040178555995225906, 0.03135492280125618, -0.015596510842442513, -0.014813987538218498, -0.01810598373413086, -0.05037834867835045, -0.012992595322430134, -0.0252701248973608, 0.02978987619280815, 0.03184062987565994, 0.02050752379000187, 0.013471554033458233, 0.02954702451825142, -0.014706052839756012, 0.01783614791929722, -0.03402629867196083, -0.007575640920549631, -0.01683775521814823, -0.03130095824599266, 0.0032953701447695494, -0.02835974656045437, -0.036023084074258804, 0.0034454662818461657, 0.008479591459035873, -0.014044955372810364, 0.004644549451768398, 0.01745837926864624, -0.04004363715648651, -0.012243800796568394, -0.017067115753889084, 0.009248622693121433, 0.0459260568022728, 0.021829718723893166, 0.030950170010328293, -0.020129753276705742, 9.77627860265784e-05, 0.006509789265692234, -0.009208147414028645, -0.029034335166215897, 0.01354575902223587, 0.01569095440208912, -0.003148646792396903, 0.01521874126046896, -0.009558934718370438, -0.018294868990778923, 0.007076444569975138, -0.01892898418009281, 0.0015878152335062623, 0.001581069314852357, -0.004148725885897875, 0.03823573887348175, -0.0294930562376976, 0.011312867514789104, -0.018834540620446205, 0.010921604931354523, 0.012999340891838074, 0.017984557896852493, 0.012675538659095764, -0.0253375843167305, 0.007353026419878006, -0.012736251577734947, 0.00812880415469408, 0.02745579555630684, -0.023880470544099808, -0.005767740774899721, -0.0013517088955268264, -0.03459295257925987, -0.017957573756575584, 0.012371973134577274, 0.005207831505686045, -0.016203641891479492, -0.011825555004179478, -0.0018888508202508092, -0.009032754227519035, 0.007123665884137154, 0.011339850723743439, -0.021843209862709045, 0.006263564340770245, -0.00980178639292717, -0.003054204396903515, -0.04695143550634384, 0.001303644385188818, 0.021613849326968193, -0.0243796668946743, 0.025189174339175224, 0.20637044310569763, -0.00022345779871102422, 0.01810598373413086, 0.012898152694106102, 0.022720176726579666, 0.005602466408163309, 0.001086932490579784, 0.010665261186659336, -0.023057471960783005, -7.905346865300089e-05, 0.025769321247935295, 0.0014048328157514334, -0.04255311191082001, 0.0018955967389047146, 0.009768056683242321, -0.020237687975168228, -0.036373868584632874, -0.028467679396271706, -0.01478700339794159, 0.01055058091878891, -0.00856728758662939, -0.011967219412326813, -0.012702521868050098, 0.005153864622116089, 0.016945689916610718, 0.026093125343322754, -0.002526337979361415, 0.012689029797911644, 0.021303538233041763, 0.030923185870051384, 0.0001714933168841526, -0.007285567466169596, 0.009005771018564701, -0.00934981182217598, -0.016338558867573738, -0.015583019703626633, 0.014058446511626244, -0.006435584742575884, 0.004391578026115894, 0.0037271075416356325, -0.004533241968601942, -0.01779567264020443, 0.009869245812296867, -0.03672465682029724, 0.013950512744486332, -0.01328266877681017, -0.020925769582390785, 0.010442647151648998, 0.010901367291808128, 0.02288207784295082, -0.010698990896344185, -0.015434609726071358, 0.03105810470879078, -0.005986982490867376, 0.007089936640113592, 0.008466099388897419, -0.013458061963319778, 0.0154885770753026, -0.011859284713864326, 0.002113151829689741, -0.012203325517475605, 0.009302590042352676, -0.004637803416699171, -0.012439431622624397, -0.029385121539235115, 0.019819442182779312, -0.018780574202537537, 0.027658171951770782, 0.01371440663933754, 0.006803235970437527, -0.007717304863035679, -0.00519096665084362, -0.033918365836143494, 0.008749427273869514, -0.014017971232533455, -0.013221955858170986, 0.023016996681690216, 0.023394767194986343, 0.042984846979379654, 0.014071938581764698, 0.013120767660439014, 0.0038788900710642338, -0.03739924728870392, -0.014827478677034378, 0.020048802718520164, -0.011420801281929016, 0.024015389382839203, -0.02466299571096897, 0.00016759334539528936, -0.009869245812296867, -0.015205249190330505, 0.004459036979824305, 0.004428680520504713, -0.03397233039140701, -0.009248622693121433, 0.00542370043694973, 0.005484413355588913, 0.021856702864170074, -0.014436217024922371, -0.019428180530667305, -0.007326042745262384, 0.04606097564101219, 0.012641808949410915, 0.02439315989613533, -0.008850615471601486, -0.0012496771523728967, 0.0029294053092598915, 0.013444569893181324, 0.009295844472944736, -0.00624669948592782, -0.007332788780331612, -0.044387996196746826, 0.005042557138949633, -0.015798887237906456, -0.011211678385734558, 0.016986165195703506, 0.01963055692613125, -0.022841602563858032, 0.014341774396598339, 0.005224696360528469, 0.021897178143262863, -0.0012024559546262026, 0.014571134932339191, -0.0030474583618342876, -0.014948905445635319, -0.017957573756575584, 0.004199319984763861, 0.010914859361946583, -0.021222587674856186, -0.021613849326968193, 0.015906821936368942, -0.01492192130535841, 0.0077442885376513, -0.008243484422564507, -0.015515560284256935, -0.01930675469338894, -0.03016764670610428, -0.010874384082853794, -0.0007905346574261785, -0.0036697674077004194, 0.003909246530383825, -0.0014014597982168198, 0.001728635746985674, 0.005481040570884943, -0.009012516587972641, 0.019266277551651, -0.015610002912580967, 0.008513320237398148, -0.04228327423334122, -0.0147465281188488, 0.013343381695449352, 0.00020922817930113524, -0.008014123886823654, -0.012304513715207577, 0.031220005825161934, -0.011191440746188164, -0.027820074930787086, -0.017067115753889084, 0.0027405202854424715, 0.02806292660534382, -0.05070215463638306, 0.009518459439277649, 0.04195947200059891, 0.015299691818654537, -0.013060054741799831, -0.0051369997672736645, -0.17053624987602234, -0.0010734406532719731, -0.004273524973541498, 0.0030221613124012947, -0.0124866534024477, 0.018740098923444748, 0.011461276561021805, -0.011339850723743439, -0.014665577560663223, 0.009714090265333652, 0.00014155841199681163, -0.013471554033458233, -0.04303881525993347, -0.027010567486286163, 0.009262114763259888, -0.00775103410705924, 0.007784763816744089, 0.030275579541921616, 0.05310369282960892, 0.007015731651335955, 0.014733036048710346, -0.01430129911750555, -0.023947929963469505, -0.01055058091878891, 0.0051369997672736645, 0.020655933767557144, 0.002973253605887294, 0.022801127284765244, 0.01720203459262848, -0.025836780667304993, 0.021613849326968193, -0.014975888654589653, 0.025081241503357887, -0.004921130836009979, -0.0029395241290330887, -0.014490184374153614, 0.005099897272884846, -0.031813643872737885, -0.009228385053575039, 0.023934438824653625, 0.0392611138522625, 0.018618673086166382, 0.013977495953440666, 0.005005454644560814, 0.028386728838086128, -0.0011130728526040912, 0.028467679396271706, -0.014665577560663223, 0.00887759868055582, 0.009397032670676708, 0.008499829098582268, -0.038532555103302, -0.0023560042027384043, -0.005649687722325325, 0.015569527633488178, -0.002875438192859292, 0.011495006270706654, 0.043551504611968994, 0.016527444124221802, -0.009390287101268768, 0.012021186761558056, -0.012999340891838074, -0.0014065193245187402, -0.003851906396448612, -0.014584627002477646, -0.01991388387978077, -0.01036844216287136, 0.024609027430415154, 0.0026022293604910374, 0.01898295059800148, -0.0012454610550776124, 0.015245724469423294, 0.013532266952097416, 0.018767083063721657, 0.008445861749351025, 0.0031334685627371073, -0.024528076872229576, 0.012783472426235676, 0.02294953726232052, -0.01068549882620573, 0.00812205858528614, 0.016190150752663612, 0.008229993283748627, -0.006715539377182722, -0.01895596645772457, -0.01554254349321127, -0.012385464273393154, -0.011623178608715534, -0.011670399457216263, -0.014152889139950275, 0.027954991906881332, -0.02830577827990055, -0.02289557084441185, 0.008337927050888538, 0.0015077077550813556, 0.0138560701161623, 0.02168130874633789, -0.0012901525478810072, 0.004219557624310255, -0.002030514646321535, 0.013120767660439014, 0.013181480579078197, -0.03578023239970207, 0.030221613124012947, 0.036589737981557846, 0.015569527633488178, 0.023124931380152702, -0.0033662021160125732, 0.030032727867364883, -0.027320878580212593, -0.018848033621907234, 0.01341084111481905, 0.03435010090470314, 0.004391578026115894, -0.03291997313499451, 0.02895338460803032, -0.027334369719028473, -0.015704445540905, 0.023003505542874336, -0.021937653422355652, 0.04063727706670761, -0.031166039407253265, -0.013491791673004627, 0.005959998816251755, 0.004695143550634384, -0.018173443153500557, -0.0966012254357338, -0.027874041348695755, 0.03459295257925987, 0.01713457517325878, 0.01054383534938097, 0.010746211744844913, 0.011859284713864326, 0.03159777447581291, 0.016109198331832886, 0.026052650064229965, -0.005990355275571346, 0.003332472639158368, -0.0073732640594244, -0.022733669728040695, 0.006384990178048611, -0.014800495468080044, 0.003733853343874216, -0.010327966883778572, -0.0094847297295928, 0.026025665923953056, 0.007035969290882349, -0.007460960652679205, 0.019171835854649544, 0.012291022576391697, 0.0021688055712729692, -0.0011518617393448949, -0.017890116199851036, 0.016621887683868408, 0.027954991906881332, 0.016379034146666527, 0.03283902257680893, -0.024636011570692062, 0.014854462817311287, -0.018025033175945282, -0.0023087828885763884, -0.001051516504958272, -0.022679701447486877, -0.004162217490375042, 0.004216184839606285, -0.023961421102285385, 0.008108566515147686, -0.02351619303226471, 0.007622862234711647, -0.05207831412553787, -0.004526495933532715, -0.0015667342813685536, -0.03184062987565994, 0.039018262177705765, 0.00274895248003304, -0.0043713403865695, -0.04093409702181816, -0.01504334807395935, -0.04492766782641411, -0.023597143590450287, 0.01717505045235157, 0.02978987619280815, 0.014948905445635319, 0.00918116420507431, -0.022720176726579666, -0.007885952480137348, -0.007137157954275608, -0.0037979392800480127, 0.0034201692324131727, 0.02145194821059704, 0.006759387440979481, 0.029924793168902397, 0.0006168278632685542, -0.006017338950186968, -0.019414687529206276, -0.007299059070646763, -0.02383999526500702, -0.0026275264099240303, -0.01718854159116745, 0.014193364419043064, -0.031813643872737885, 0.0028332762885838747, -0.002445387188345194, -0.010732720606029034, 0.009774803183972836, 0.01840280368924141, -0.007791509851813316, -0.018591688945889473, 0.0060004740953445435, -0.004644549451768398, 0.004421934485435486, 0.006118527613580227, 0.016783788800239563, -0.014220348559319973, 0.016419511288404465, -0.03837065398693085, 0.02624153532087803, 0.031166039407253265, 0.005403462331742048, 0.01841629482805729, -0.012769980356097221, 0.002138448879122734, -0.018794065341353416, -0.021276555955410004, 0.017229018732905388, 0.005278663244098425, 0.0019394450355321169, 0.014625102281570435, -0.057367097586393356, 0.003217792371287942, 0.013626709580421448, 0.023354291915893555, 0.011946981772780418, -0.030599383637309074, 0.016163166612386703, -0.007730796467512846, 0.019819442182779312, 0.0010877756867557764, -0.02827879600226879, 0.008108566515147686, -0.01071248296648264, 0.006304039619863033, -0.02925020456314087, -0.00027320877416059375, 0.005447310861200094, 0.0012167909881100059, 0.006536772940307856, -0.0038586524315178394, -0.01628459244966507, -0.005760995205491781, -0.00890458282083273, 0.007204616907984018, -0.04751808941364288, 0.00580147048458457, -0.002313842298462987, 0.00519096665084362, -0.02830577827990055, -0.030221613124012947, 0.010132335126399994, 0.00843236967921257, -0.007157395593822002, 0.01783614791929722, -0.016352051869034767, -0.046546682715415955, 0.01461161021143198, -0.0030272207222878933, 0.015070331282913685, 0.011279137805104256, -0.01629808358848095, -0.027793090790510178, 0.024339191615581512, -0.019374212250113487, -0.02892640046775341, -0.004098131787031889, -0.014193364419043064, -0.027847057208418846, -0.0005712930578738451, 0.007042715325951576, 0.04932599142193794, 0.011818809434771538, -0.016163166612386703, -0.014679069630801678, -0.004698516335338354, -0.013842578046023846, -1.3333684364624787e-05, 0.029142269864678383, 0.012702521868050098, 0.004256660118699074, 0.05205133184790611, -0.026443911716341972, 0.007555403281003237, -0.007973648607730865, 0.008789902552962303, -0.029681941494345665, -0.04886727035045624, -0.0007441566558554769, 0.007062952965497971, -0.0011948668397963047, 0.011832301504909992, -0.017606787383556366, 0.03610403463244438, 0.03197554498910904, 0.013883053325116634, 0.0038586524315178394, -0.0020861683879047632, -0.011515243910253048, -0.00015757991059217602, 0.024447126314044, 0.010314474813640118, -0.02529710903763771, -0.01280371006578207, 0.008897836320102215, 0.012452923692762852, 0.013370365835726261, -0.028737515211105347, 0.025256633758544922, 0.00047600726247765124, 0.006890932563692331, -0.01683775521814823, 0.013451316393911839, -0.021802734583616257, 0.023866979405283928, -0.011009301990270615, 0.012392210774123669, -0.014044955372810364, 0.009477983228862286, 0.013215210288763046, 0.024177290499210358, -0.023624127730727196, 0.023138422518968582, 0.028089910745620728, -0.012142612598836422, -0.017229018732905388, 0.0024470738135278225, -0.014287807047367096, -0.017701230943202972, 0.020237687975168228, 0.005808216519653797, 0.005943134427070618, -0.011994202621281147, 0.000752167368773371, 0.0024926085025072098, -0.02954702451825142, -0.019994834437966347, -0.00012353422062005848, -0.017323460429906845, -0.029924793168902397, -0.008762918412685394, 0.0014107354218140244, 0.036751639097929, 0.008816885761916637, -0.02954702451825142, 0.028872434049844742, -0.011036285199224949, 0.0065873670391738415, -0.029088303446769714, 0.004421934485435486, -0.014409233815968037, -0.002175551373511553, 0.007258583791553974, 0.00012732877803500742, -0.008837123401463032, -0.01772821508347988, -0.010631531476974487, -0.010280745103955269, 0.0045501068234443665, 0.01115771196782589, 0.07690320909023285, 0.03337869420647621, -0.0011796884937211871, 0.0037068696692585945, -0.024447126314044, 0.004593954887241125, 0.008466099388897419, 0.002081108745187521, 0.0067964899353682995, -0.010705736465752125, 0.03173269331455231, -0.012318005785346031, -0.02234240621328354, -0.0024335819762200117, -0.008472844958305359, -0.004958233330398798, -0.006078052334487438, 0.01490843016654253, -0.017633771523833275, 0.022167013958096504, 0.015610002912580967, 0.005933015141636133, 0.020318638533353806, -0.019360721111297607, -0.0355643630027771, -0.0016704524168744683, 0.046303827315568924, 0.0046546682715415955, 0.002715223003178835, -0.037534166127443314, 0.0032397164031863213, 0.011036285199224949, -0.029681941494345665, -0.02319238893687725, -0.014395741745829582, 0.02467648684978485, -0.012237055227160454, -0.0271185003221035, 0.021344013512134552, 0.0398547537624836, 0.010037892498075962, 0.02015673741698265, -0.01478700339794159, -0.004428680520504713, -0.0002812195452861488, -0.020305145531892776, -0.009781548753380775, -0.014517167583107948, 0.015758411958813667], "8ccaa11a-a6f6-4e1d-ac0a-8591143a2432": [0.0015284406254068017, 0.01256642583757639, 0.010390685871243477, -0.025078628212213516, -0.0060256486758589745, 0.020415358245372772, -0.018612409010529518, -0.02830495871603489, -0.005422405898571014, -0.05471207574009895, 0.023167230188846588, 0.016199437901377678, 0.008309837430715561, -0.01380002312362194, -0.012098743580281734, 0.021947188302874565, 0.027179809287190437, -0.0012640983331948519, -0.006337436847388744, -0.008757185190916061, -0.004182030446827412, 0.000624847540166229, -0.014776056632399559, -0.0077201505191624165, -0.02380436286330223, 0.005663025192916393, 0.004869998432695866, -0.003934633452445269, -0.019303765147924423, 0.029145432636141777, 0.00933331623673439, -0.01691790670156479, -0.01196996122598648, 0.0021859074477106333, -0.029362328350543976, 0.01531829684972763, 0.002036791294813156, -0.018327731639146805, -0.004605656024068594, -0.013623794540762901, 0.018910640850663185, 0.010309349745512009, -0.0019588442519307137, -0.010682139545679092, -0.002843374153599143, 0.023058781400322914, 0.0033991707023233175, -0.0028399850707501173, -0.011590392328798771, 0.0007540533551946282, 0.0042260875925421715, -0.0075845904648303986, -0.026773128658533096, 0.009190978482365608, -0.004531098064035177, -0.00910964235663414, 0.025078628212213516, -0.001185304019600153, 0.005757917184382677, 0.0019283430883660913, 0.004280311521142721, 0.009082529693841934, -0.014586271718144417, -0.0009209617855958641, -0.013840691186487675, -0.02148628421127796, -0.014884504489600658, -0.011468388140201569, -0.010072118602693081, 0.002038485836237669, 0.02308589406311512, 0.04009869322180748, -0.004588711075484753, 0.007218577899038792, -0.02053736336529255, -0.007394806016236544, 0.004429427906870842, -0.00603920454159379, 0.006008703727275133, 0.004873387515544891, 0.018517516553401947, -0.019303765147924423, -0.0223267562687397, -0.0002183789329137653, 0.021947188302874565, 0.02380436286330223, 0.025973323732614517, 0.013264560140669346, -0.010370351374149323, -0.0046836030669510365, -0.002843374153599143, 0.003663513110950589, 0.02290966548025608, 0.017622819170355797, 0.005615578964352608, 0.018720855936408043, 0.009177422150969505, 0.0033127511851489544, -0.015087844803929329, -0.027708495035767555, -0.01905975677073002, -0.004314201883971691, -0.010749919340014458, -0.012939216569066048, -0.030799265950918198, 0.00013026483065914363, 0.011082042008638382, -0.007571034133434296, 0.005063171498477459, 0.022652100771665573, -0.02240809239447117, 0.02849474363029003, -0.008519954979419708, -0.020239129662513733, 0.00924520194530487, -0.0171890277415514, 0.029931681230664253, -0.03532697632908821, -0.008791076019406319, -0.008662293665111065, -0.006415383890271187, -0.013589904643595219, 0.02787116728723049, -0.021404948085546494, 0.006120540667325258, 0.010112786665558815, 0.014138923957943916, -0.013142556883394718, 0.008791076019406319, -0.013732243329286575, 0.00819461140781641, 0.021323611959815025, 0.008946970105171204, 0.007191465701907873, -0.02764071524143219, 0.010153454728424549, -0.01812439225614071, 0.007259245961904526, -0.012776544317603111, -0.03887864947319031, 0.02665112540125847, 0.02514640800654888, 0.009834888391196728, -0.031070386990904808, 0.00042002464761026204, 0.026285113766789436, 0.0024638057220727205, 0.01480316836386919, 0.008411507122218609, 0.00021551945246756077, 0.026515565812587738, -0.017311030998826027, -0.021282942965626717, 0.01493872795253992, 0.008953748270869255, 0.0037550160195678473, 0.0010116175981238484, 0.0125054232776165, -0.019479993730783463, 0.0012674874160438776, -0.0015733449254184961, 0.001705516129732132, -0.001780921476893127, -0.0041955867782235146, -0.015142068266868591, 0.038417745381593704, 0.01156328059732914, -0.01370513066649437, -0.005008947569876909, -0.015874093398451805, 0.0007303302991203964, 0.04609045013785362, -0.020523807033896446, 0.021730292588472366, 0.008364060893654823, 0.0002920897677540779, 0.03144995495676994, 0.011908958666026592, -0.0035889549180865288, -0.031016161665320396, 0.023506129160523415, 0.007733706384897232, 0.0031466898508369923, 0.03285977989435196, -0.01977822557091713, -0.020835595205426216, 0.039448004215955734, 0.005947701632976532, -0.0030094352550804615, -0.007767596747726202, 0.009916224516928196, 0.0026129218749701977, -0.007977714762091637, -0.01843618042767048, -0.6311680674552917, 0.008580957539379597, 0.008784297853708267, -0.01500650867819786, 0.01919531635940075, 0.016687454655766487, 0.025553088635206223, -0.008845299482345581, 0.0006828842451795936, 0.031043274328112602, 0.0009819638216868043, 0.009658660739660263, -0.014735388569533825, -0.016945019364356995, -0.00011999191337963566, -0.02192007564008236, 0.003910910338163376, -0.02674601785838604, -0.012552869506180286, 0.0037279040552675724, -0.028033839538693428, 0.0316939614713192, -0.006862732581794262, -0.009739996865391731, -0.002216408494859934, -0.016199437901377678, 0.024617722257971764, -0.01960199698805809, 0.0020706811919808388, 0.018924197182059288, -0.04066804423928261, 0.0021842129062861204, 0.020523807033896446, 0.016511226072907448, 0.04497885704040527, -0.013881359249353409, -0.010329683311283588, 0.016063878312706947, 0.01449138019233942, 0.04619889706373215, -0.023194340988993645, -0.01549452543258667, 0.016199437901377678, 0.011305716820061207, -0.001257320400327444, -0.00810649711638689, 0.006530610378831625, 0.02246231585741043, -0.016782347112894058, -0.028060950338840485, -0.0008603833266533911, -0.010465243831276894, -0.003999024163931608, 0.010804143734276295, 0.014654052443802357, -0.0009353650384582579, 0.02822362259030342, -0.0245634987950325, 0.006530610378831625, 0.012396975420415401, 0.02094404213130474, 0.022489428520202637, -0.01693146303296089, -0.04308101534843445, -0.05018436536192894, 0.017717711627483368, 0.0021655734162777662, -0.02277410589158535, 0.01754148304462433, -0.013454345054924488, 0.020550917834043503, 0.005913811270147562, 0.002001206623390317, -0.015196292661130428, -0.0060256486758589745, 0.014654052443802357, 0.030473921447992325, -0.006547555327415466, -0.0071372417733073235, 0.013339119032025337, 0.002346885157749057, -0.0023977202363312244, -0.029036983847618103, -0.01722969487309456, 0.030582370236516, 0.020428914576768875, -0.021404948085546494, -0.0030568812508136034, -0.012139411643147469, -0.00284167961217463, 0.010329683311283588, 0.03961067646741867, 0.0030263804364949465, -0.023736581206321716, -0.008784297853708267, 0.03546253591775894, 0.005503742024302483, -0.004758161026984453, -0.0018266730476170778, -0.006781396456062794, -0.020252685993909836, -0.03370025381445885, -0.0014894671039655805, 0.00198087259195745, 0.024536386132240295, 0.0019232595805078745, -0.010187345556914806, -0.004365036729723215, 0.019141092896461487, -0.014586271718144417, -0.004192197695374489, 0.009963670745491982, -0.016131658107042313, -0.025159964337944984, 0.01825995184481144, -0.020781371742486954, 0.0041006943210959435, 0.0023621355649083853, -0.0008565706666558981, -0.029497887939214706, -0.013366230763494968, -0.012024185620248318, 0.01870730146765709, -0.0050767273642122746, 0.00037173135206103325, 0.013474678620696068, 0.0006417926051653922, -0.005049615632742643, 0.006113762501627207, -0.01257320400327444, -0.004442983772605658, -0.02361457794904709, 0.008282724767923355, -0.0058358642272651196, 0.03090771473944187, -0.012424088083207607, 0.028820088133215904, -0.010099231265485287, -0.0071779098361730576, -0.0486660934984684, 0.0068051195703446865, 0.0013716992689296603, 0.01590120606124401, -0.02228608913719654, 0.0024570277892053127, -0.031856633722782135, -0.017311030998826027, 0.016131658107042313, -0.008492843247950077, -0.020076457411050797, -0.018734412267804146, -0.019005533307790756, -0.019086869433522224, 0.021459171548485756, -0.0007680329727008939, 0.005517297890037298, 0.012288527563214302, -0.04478907212615013, -0.004385370761156082, -0.016063878312706947, -0.021757403388619423, 0.00429725693538785, -0.005042837467044592, -0.014071143232285976, -0.01798883266746998, -0.012498646043241024, -0.008865633979439735, 0.014382931403815746, -0.02968767285346985, -0.034540727734565735, 0.014152479358017445, -0.002802706090733409, 0.0063781049102544785, 0.0392853319644928, -0.00492083327844739, 0.018598852679133415, -0.02898276038467884, -0.0050902836956083775, 0.01107526384294033, -0.00011173121311003342, 0.010390685871243477, 0.017690598964691162, -0.0029433497693389654, 0.0009362122509628534, 0.035923440009355545, 0.007252467796206474, 0.009265536442399025, 0.019398657605051994, -0.029525000602006912, 0.00538173783570528, 0.03711636736989021, 0.0074896980077028275, -0.0054698521271348, -0.00790315680205822, -0.017758378759026527, -0.0007201632834039629, -0.01938510127365589, -2.8012233087792993e-05, -0.0016699315747246146, 0.030284136533737183, 0.014138923957943916, 0.024265266954898834, -0.020171349868178368, -0.005022503435611725, 0.01306122075766325, -0.011908958666026592, 0.011420942842960358, -0.010844811797142029, 0.02263854444026947, 0.01276976615190506, -0.008242056705057621, 0.006923734676092863, 0.003663513110950589, -0.004151529632508755, 0.018815748393535614, 0.03980046138167381, 0.0020096790976822376, 0.008987638168036938, 0.0005248719244264066, 0.004473485052585602, 0.013122222386300564, -0.009170643985271454, 0.03372736647725105, -0.0037550160195678473, 0.008411507122218609, 0.018381956964731216, 0.008147165179252625, 0.040071580559015274, 0.0029009871650487185, -0.03763149678707123, 0.004964890424162149, 0.02102537825703621, 0.008655515499413013, -0.0027078138664364815, 0.03443227708339691, 0.03451361507177353, 0.03511007875204086, -0.022570764645934105, 0.031151723116636276, -0.0027230645064264536, -0.005198731552809477, 0.006344215013086796, 0.024224597960710526, -0.027844054624438286, 0.03071792982518673, -0.0038770202081650496, 0.01674167811870575, 0.005378348752856255, -0.013210336677730083, 0.023180784657597542, 0.019317321479320526, 0.0018741190433502197, -0.02754582278430462, -0.009414652362465858, 0.005493575241416693, -0.026217332109808922, 0.02343834936618805, 0.008960525505244732, 0.0002946315216831863, 0.016063878312706947, 0.020062902942299843, -0.016985686495900154, 0.009170643985271454, 0.0033720587380230427, 0.012613872066140175, -0.008458953350782394, -0.009977227076888084, -0.013949139043688774, -0.009970448911190033, -0.007774374447762966, 0.003697403008118272, -0.029280992224812508, 0.007184688001871109, 0.0010412713745608926, -0.004015969578176737, -0.001608082209713757, 0.012708763591945171, 0.016362110152840614, -0.006544166244566441, 0.015372521243989468, -0.028548967093229294, -0.009780664928257465, 0.023275677114725113, 0.03345624357461929, 0.004992002621293068, -0.025512419641017914, -0.009916224516928196, -0.019629109650850296, 0.012146188877522945, 0.007848932407796383, -0.013034108094871044, -0.0012945993803441525, 0.0018741190433502197, -0.0024570277892053127, -0.006357770878821611, 0.01290532574057579, 0.041644077748060226, -0.01724325120449066, -0.013650907203555107, 0.01816505938768387, 0.001960538560524583, 0.010912591591477394, -0.021689623594284058, -0.024387270212173462, 0.03914977237582207, -0.028630303218960762, -0.011556502431631088, -0.03128728270530701, -0.007266024127602577, -0.016619674861431122, -0.01165817305445671, -0.013732243329286575, -0.03814662620425224, -0.004151529632508755, -0.018720855936408043, 0.02215052768588066, 0.003534730989485979, 0.015657197684049606, 0.022448761388659477, 0.009272314608097076, 0.003643179079517722, -0.029362328350543976, 0.009658660739660263, 0.04305390268564224, 0.06262879073619843, 0.015996096655726433, -0.01256642583757639, 0.013515346683561802, -0.0013259476982057095, -0.020157793536782265, -0.0339442603290081, -0.013427232392132282, 0.03540831059217453, 0.004863220266997814, -0.00659839017316699, 0.0013005301589146256, 0.01611810177564621, -5.2503080951282755e-05, -0.006659392267465591, -0.01174628734588623, -0.007482920307666063, -0.02871163934469223, -0.01306122075766325, -0.0006803424912504852, 0.01576564460992813, -0.0021198217291384935, 0.013603460974991322, 0.01004500687122345, 0.0339171476662159, -0.003383920295163989, 0.014992952346801758, -0.0011971655767410994, 0.014572716318070889, -0.02120160683989525, -0.016280774027109146, 0.012342751957476139, 0.012308861128985882, 0.017256807535886765, -0.012342751957476139, 0.0198731180280447, 0.011570058763027191, -0.00801160465925932, -0.013142556883394718, 0.00022579237702302635, 0.005151285789906979, 0.01491161622107029, -0.00018120578897651285, -0.007476142141968012, -0.005188564769923687, -0.014274483546614647, -0.013359452597796917, 0.014789612032473087, -0.024617722257971764, -0.002609532792121172, 0.019452881067991257, 0.0027433985378593206, -0.004365036729723215, 0.011285382322967052, 0.0038329632952809334, -0.017785491421818733, 0.0016368888318538666, -0.015196292661130428, -0.041725412011146545, -0.02450927533209324, -0.02406192570924759, -0.012315639294683933, -0.0003878291172441095, -0.0049140555784106255, -0.0057138605043292046, -0.02045602723956108, -0.003450005780905485, 0.0016775568947196007, -0.00993655901402235, 0.021825183182954788, 0.0051309517584741116, -0.05289556831121445, -0.02911831997334957, 0.00040202055242843926, 0.025797097012400627, 0.007401584181934595, -0.0045073749497532845, 0.024888843297958374, 0.003866853192448616, 0.015575861558318138, 0.01670101098716259, -0.02960633672773838, 0.007659148424863815, -0.027925390750169754, -0.0014852308668196201, -0.02505151554942131, -0.01602320931851864, 0.004222698509693146, 0.0010717724217101932, 0.004897110164165497, -0.009102864190936089, -0.018151503056287766, -0.0035923440009355545, 0.012871435843408108, -0.00027705106185749173, 0.028033839538693428, 0.029660560190677643, -0.00421930942684412, 0.022340312600135803, -0.044273946434259415, 0.0038600752595812082, 0.0023163841105997562, -0.028142286464571953, -0.0035753988195210695, 0.02349257469177246, 0.005354626104235649, -0.006212044041603804, -0.0010387296788394451, -0.0018063390161842108, -0.01276976615190506, 0.009150310419499874, 0.005185175687074661, 0.00538173783570528, -0.007733706384897232, 0.016050321981310844, -0.011332828551530838, -0.00924520194530487, 0.03679102286696434, 0.019086869433522224, -0.0027857611421495676, -0.018544629216194153, -0.01285788044333458, 0.026176664978265762, 0.004971668589860201, -0.002787455450743437, 0.007693038322031498, 0.019398657605051994, -0.013962695375084877, -0.026556232944130898, 0.001130232703872025, -0.003038241760805249, 0.0035753988195210695, -0.03098905086517334, -0.011156599968671799, -0.009468876756727695, -0.00031305922311730683, -0.017649931833148003, 0.00962477084249258, -0.022028524428606033, -0.0029280991293489933, -0.026000436395406723, 0.001120912958867848, 0.0004280735447537154, -0.003255138173699379, 0.009265536442399025, -0.01862596534192562, -0.030419697985053062, -0.004463317804038525, 0.004375203978270292, 0.015209848992526531, -0.020686479285359383, -0.016633231192827225, -0.022760549560189247, -0.021459171548485756, -0.0023977202363312244, -0.011068486608564854, -0.018788635730743408, 0.015413189306855202, 0.06024292856454849, 0.018693745136260986, 0.007381250150501728, -0.002240131376311183, 0.012451199814677238, 0.010858368128538132, -0.01075669750571251, 0.0019435936119407415, -0.025864876806735992, -0.026000436395406723, 0.011536168865859509, -0.005917200352996588, 0.012356307357549667, -0.007516810204833746, -0.005663025192916393, 0.005656247027218342, 0.0030314638279378414, 0.022177640348672867, -0.010478799231350422, 0.005707082338631153, -0.027898278087377548, -0.03231753781437874, -0.0008226806530728936, 0.04121028631925583, -0.01035679504275322, 0.01695857383310795, -0.022516541182994843, 0.007306692190468311, 0.017202582210302353, -0.0075439224019646645, 0.0238856989890337, 0.026203777641057968, 0.0263393372297287, -0.0030026573222130537, -0.016890794038772583, 0.008763963356614113, -0.008763963356614113, -0.012803656049072742, 0.0022181030362844467, -0.04354191944003105, -0.020428914576768875, -0.004473485052585602, 0.018869971856474876, 0.011780177243053913, -0.004490430001169443, 0.009014749899506569, 0.0005837559001520276, 0.020252685993909836, -0.015535193495452404, -0.014328707940876484, -0.0037245152052491903, -0.0005913811619393528, -0.01781260408461094, -0.0198731180280447, -0.02392636612057686, 0.006693282164633274, -0.015589416958391666, 0.001490314374677837, 0.015616528689861298, 0.013569571077823639, -0.024495719000697136, 0.0032076919451355934, 0.010255125351250172, 0.00451076403260231, 0.049859024584293365, 0.006300157867372036, 0.01843618042767048, 0.022787660360336304, -0.0018707300769165158, -0.010377129539847374, -0.027518710121512413, -0.0077201505191624165, -0.011617504991590977, 0.004958112258464098, 0.04348769411444664, -0.010051785036921501, -0.006354381795972586, 0.010777032002806664, -0.004924222361296415, -0.0006900858716107905, -0.03562520816922188, 0.011671728454530239, 0.010892258025705814, -0.013291672803461552, -0.041318733245134354, -0.018056612461805344, -0.01888352818787098, 0.022448761388659477, 0.004656491335481405, 0.016402777284383774, 0.00200290116481483, 0.01228174939751625, 0.009272314608097076, 0.05238044261932373, -0.013691575266420841, 0.02522774413228035, -0.02090337499976158, 0.0007303302991203964, -0.017094135284423828, -0.003866853192448616, -0.010282237082719803, -0.009923002682626247, 0.004083749372512102, 0.020700035616755486, -0.016579005867242813, -0.016362110152840614, 0.01746014691889286, 0.021770959720015526, -0.00191139813978225, 0.0022316589020192623, -0.018287064507603645, 0.02919965609908104, -0.00288573675788939, -0.00665261410176754, 0.0032009140122681856, -0.011237936094403267, 0.010695695877075195, -0.030961938202381134, -0.02398058958351612, 0.0034279772080481052, 0.0015699559589847922, 0.018381956964731216, 0.0038770202081650496, 0.007428696379065514, 0.013108666054904461, -0.009014749899506569, 0.015928316861391068, -0.016050321981310844, 0.0008565706666558981, 0.0015208154218271375, 0.0008552998187951744, -0.04557532072067261, -0.03242598846554756, 0.003087382297962904, -0.004758161026984453, 0.012715541757643223, -0.0018758135847747326, -0.010878701694309711, 0.0006468761130236089, 0.029172543436288834, -0.00506994966417551, -0.017161915078759193, 0.025065071880817413, 0.005527465138584375, -0.04215920716524124, 0.028467630967497826, -0.006303546950221062, -0.0025586977135390043, 0.029308104887604713, -0.002823040122166276, -0.02736959420144558, -0.021540507674217224, 0.015277628786861897, 0.00306874280795455, 0.02330278977751732, -0.019940897822380066, 0.00790315680205822, 0.002329939976334572, 0.0008726684609428048, 0.003168718423694372, -0.015196292661130428, 0.0038499082438647747, -0.016416333615779877, 0.010973594151437283, 0.009570546448230743, -0.008492843247950077, 0.01390847098082304, -0.009523100219666958, 0.025932656601071358, -0.0020944043062627316, -0.039583563804626465, -0.024671947583556175, -0.04549398645758629, -0.004534487146884203, -0.008201388642191887, 0.014504935592412949, -0.007455808110535145, -0.01642988994717598, -0.018287064507603645, 0.02898276038467884, -0.0044226497411727905, 0.010566913522779942, 0.016402777284383774, 0.002972156275063753, 0.006994903553277254, 0.015264072455465794, -0.0030856879893690348, -0.02491595596075058, -0.012586759403347969, -0.01196318306028843, -0.030745042487978935, -0.0020266242790967226, -0.005208898801356554, 0.04850342124700546, 0.03112461045384407, -0.013034108094871044, -0.034269604831933975, -0.012491867877542973, -0.045114416629076004, -0.02067292295396328, -0.022272532805800438, 0.025037959218025208, 0.03486606851220131, 0.01968333311378956, 0.028033839538693428, 0.03464917466044426, -0.008391173556447029, 0.023072337731719017, -0.039854682981967926, -0.008140387013554573, -0.011319272220134735, -0.027166252955794334, -0.003934633452445269, -0.017256807535886765, -0.04535842686891556, 0.0010988845024257898, 0.006720394361764193, -0.016063878312706947, 0.014152479358017445, 0.02709847316145897, -0.019493550062179565, -0.004663269035518169, -0.018924197182059288, 0.008628403767943382, 0.025214187800884247, 0.016145214438438416, 0.016551895067095757, -0.02273343689739704, 0.007327026221901178, 0.016511226072907448, -0.016714565455913544, -0.0221098605543375, 0.017893940210342407, 0.016592562198638916, -0.0025654758792370558, 0.014776056632399559, 0.007774374447762966, -0.027898278087377548, 0.0032720831222832203, -0.01285788044333458, 0.009407874196767807, 0.007293135859072208, 0.027749162167310715, 0.04576510563492775, -0.021133827045559883, -0.007645592559129, -0.013725465163588524, 0.007774374447762966, 0.004229476675391197, 0.024183930829167366, 0.01196996122598648, -0.014748943969607353, 0.006733950227499008, -0.02339768223464489, 0.005541021004319191, 0.008763963356614113, 0.007693038322031498, -0.004951334558427334, -0.00041451750439591706, -0.026285113766789436, -0.01880219206213951, 0.02040180191397667, -0.006476385984569788, -0.008777519688010216, -0.0008324240334331989, 0.005459684878587723, -0.007232133764773607, 0.0014860781375318766, -0.003433060832321644, -0.020483138039708138, 0.015467412769794464, -0.016375666484236717, -0.0029874066822230816, -0.0607309453189373, 0.004093916621059179, 0.016904350370168686, -0.014762500301003456, 0.0049852244555950165, 0.2035571187734604, 0.005117395427078009, 0.024658391252160072, 0.03375447541475296, 0.015304740518331528, 0.0023163841105997562, -0.002611227333545685, 0.00173855887260288, -0.014355819672346115, 0.006550944410264492, 0.018924197182059288, 0.004249810706824064, -0.030934825539588928, -0.0075100320391356945, 0.006903400644659996, -0.005934145301580429, -0.03746882453560829, -0.03144995495676994, -0.004751383326947689, -0.006659392267465591, -0.0030585757922381163, -0.0030094352550804615, -0.02643422968685627, 0.004731049295514822, 0.020645810291171074, 0.016145214438438416, -0.0005185175687074661, 0.008397950790822506, 0.0125054232776165, 0.02647489681839943, -0.00013503061200026423, -0.0054122391156852245, 0.026949357241392136, -0.01228174939751625, -0.012546091340482235, -0.004229476675391197, 0.021093159914016724, -0.01968333311378956, 0.0024485550820827484, 0.006937290541827679, 0.002582420827820897, -0.02898276038467884, 0.019046200439333916, -0.05229910463094711, 0.01013989932835102, -0.0030314638279378414, -0.00861484743654728, 0.0016004570061340928, 0.011807288974523544, 0.024319490417838097, -0.017351698130369186, 0.0031822745222598314, 0.018964864313602448, -0.0073880283161997795, 0.0018198949983343482, 0.0010649943724274635, -0.0026773130521178246, 0.018070166930556297, -0.008770741522312164, 0.002738314913585782, 0.001779226935468614, 0.004558209795504808, -0.007943824864923954, 0.004229476675391197, -0.03763149678707123, 0.021038934588432312, -0.011888625100255013, 0.04964212700724602, 0.0008010757737793028, 0.013752576895058155, -0.011983517557382584, -0.004287089686840773, -0.03822796046733856, -0.0033246127422899008, -0.012688430026173592, -0.016579005867242813, 0.017161915078759193, 0.029145432636141777, 0.034811846911907196, 0.009014749899506569, 0.00511400680989027, 0.006422162055969238, -0.03375447541475296, -0.015236960723996162, -0.003300889628008008, -0.006994903553277254, 0.019276652485132217, -0.033591803163290024, 0.00451076403260231, -0.021418504416942596, -0.00537157105281949, 0.011021040380001068, 0.009617992676794529, -0.01638922281563282, 0.01136671844869852, -0.0007489698473364115, 0.01821928471326828, 0.034188270568847656, -0.01380002312362194, -0.03277844563126564, -0.008133608847856522, 0.03375447541475296, 0.018110835924744606, 0.035164304077625275, -0.0008650431991554797, 0.008431841619312763, -0.003473728895187378, 0.005320735741406679, 0.0053580147214233875, -0.009292648173868656, -0.0017538093961775303, -0.051729753613471985, 0.01911398023366928, -0.010716029442846775, -0.009143532253801823, 0.021228719502687454, 0.02215052768588066, -0.004792051389813423, 0.005913811270147562, 0.010621137917041779, 0.0267866849899292, -0.0021401557605713606, 0.007184688001871109, -0.001736864447593689, -0.01664678566157818, -0.021960744634270668, 0.0024451662320643663, 0.0067847855389118195, -0.028684526681900024, -0.025824207812547684, 0.006757673341780901, -0.019615553319454193, 0.019534217193722725, -0.005117395427078009, -0.009163865819573402, -0.007442252244800329, -0.027437373995780945, -0.014382931403815746, 0.004490430001169443, -0.0009319760138168931, 0.019046200439333916, -0.005120784509927034, 0.008431841619312763, -0.0032856392208486795, -0.010295793414115906, 0.022001411765813828, -0.01449138019233942, 0.007706594653427601, -0.025905543938279152, 0.001802949933335185, 0.018002387136220932, -0.007679482456296682, -0.006391661241650581, -0.005008947569876909, 0.0374959371984005, -0.02661045640707016, -0.03684524819254875, -0.012396975420415401, 0.01368479710072279, 0.0075100320391356945, -0.05487474799156189, 0.0015724977711215615, 0.040966276079416275, 0.01615876890718937, -0.01449138019233942, -0.02312656119465828, -0.17199870944023132, 0.0022519929334521294, 0.01897842064499855, -0.0029145432636141777, 0.005947701632976532, 0.02120160683989525, 0.016104545444250107, -0.016714565455913544, -0.007442252244800329, 0.0028196510393172503, -0.0016546810511499643, -0.012139411643147469, -0.026366448029875755, -0.021011823788285255, 0.024997292086482048, -0.033564694225788116, 0.021554064005613327, 0.02606821618974209, 0.06018870696425438, 0.0008065828587859869, -0.0005981591530144215, -0.020645810291171074, -0.008675849065184593, -0.0016148602589964867, 0.01728391833603382, 0.02112027071416378, -0.008458953350782394, 0.027789831161499023, 0.014125367626547813, -0.03128728270530701, 0.019940897822380066, -0.01750081591308117, 0.015128512866795063, -0.0041549187153577805, 0.009882334619760513, 0.00299249030649662, 0.004002413246780634, -0.005547799170017242, -0.015020064078271389, 0.026569789275527, 0.02968767285346985, 0.013142556883394718, 0.015833426266908646, 0.007808264344930649, 0.009197755716741085, 0.005652858410030603, 0.021174496039748192, -0.015250517055392265, 0.01439648773521185, 0.010614359751343727, 0.026949357241392136, -0.032344650477170944, -0.009889112785458565, 0.0025248078163713217, 0.009916224516928196, 0.0015894427197054029, 0.003494062926620245, 0.024089038372039795, -0.0001588595478096977, -0.010492355562746525, 0.005625746212899685, -0.013135778717696667, -6.966653245399357e-07, -0.015480969101190567, -0.017514370381832123, -0.018002387136220932, -0.008492843247950077, 0.016240105032920837, 0.0033923927694559097, 0.009977227076888084, -0.001507259439677, 0.011868290603160858, 0.009672217071056366, 0.022028524428606033, 0.008763963356614113, 0.006435717921704054, -0.014640496112406254, 0.002172351349145174, 0.023587465286254883, -0.005879921372979879, -0.007591368164867163, 0.009746775031089783, 0.00864195916801691, -0.004015969578176737, -0.016511226072907448, -0.0037651830352842808, 9.89694963209331e-05, -0.015521637164056301, 0.0011980128474533558, -0.006228988990187645, 0.021852295845746994, -0.019303765147924423, -0.005053004715591669, 0.012085187248885632, 0.010411019437015057, 0.00984166655689478, 0.025309080258011818, 0.004188808612525463, -0.0012463061138987541, -0.019832449033856392, 0.005378348752856255, 0.022448761388659477, -0.044626399874687195, 0.033158011734485626, 0.03603188693523407, 0.012241081334650517, 0.015033620409667492, -0.009014749899506569, 0.03386292606592178, -0.007340582087635994, -0.03231753781437874, 0.005679970141500235, 0.03283266723155975, -0.0068559544160962105, -0.03031124919652939, 0.05126884952187538, -0.027762718498706818, -0.013420455157756805, 0.014315151609480381, -0.0247803945094347, 0.04148140549659729, -0.03147706761956215, -0.020700035616755486, 0.011380274780094624, -0.0006485705962404609, 0.0008192916284315288, -0.11018329113721848, -0.031585514545440674, 0.04015291482210159, 0.009943337179720402, -0.017690598964691162, 0.013298450969159603, 0.0004511611186899245, 0.027708495035767555, 0.010085674934089184, 0.025431083515286446, -0.007686260621994734, 0.00511400680989027, -0.013949139043688774, -0.014125367626547813, 0.022164084017276764, 0.010092453099787235, 0.013237448409199715, -0.013718686997890472, -0.00761170219630003, 0.037794169038534164, -0.0027010359335690737, -0.012539314106106758, 0.012220747768878937, 0.013264560140669346, -0.0010666889138519764, -0.020442470908164978, -0.022963888943195343, 0.015467412769794464, 0.02080848254263401, 0.011827622540295124, 0.027166252955794334, -0.023072337731719017, 0.010031451471149921, -0.027898278087377548, -0.0075100320391356945, 0.0005375806940719485, -0.026908690109848976, -0.00429725693538785, -0.0037279040552675724, -0.020645810291171074, 0.013935583643615246, 0.0005909575265832245, 0.012647761963307858, -0.036004774272441864, -0.0020486528519541025, 0.0013793244725093246, -0.018314175307750702, 0.04568377137184143, 0.014559159986674786, -0.011529390700161457, -0.023153673857450485, -0.014233815483748913, -0.045033082365989685, -0.026732461526989937, 0.01691790670156479, 0.01946643739938736, 0.02148628421127796, -0.0010963426902890205, -0.014342263340950012, 0.019439324736595154, -0.01683657057583332, -0.006405217107385397, 6.9845249527134e-05, 0.011068486608564854, 0.0034652564208954573, 0.0065543330274522305, -0.0035686208866536617, -0.004229476675391197, -0.020103570073843002, -0.005852809641510248, -0.007537144236266613, 0.0006447579362429678, -0.023275677114725113, 0.020117126405239105, -0.011183712631464005, 0.003887187223881483, 0.00035520995152182877, -0.023546798154711723, -0.002324856584891677, 0.013223892077803612, -0.010411019437015057, -0.010153454728424549, -0.020564474165439606, -0.020212018862366676, 0.00761170219630003, 0.00883852131664753, 0.015291185118258, -0.022204753011465073, 0.026149552315473557, -0.05273289605975151, 0.007279579993337393, 0.012288527563214302, 6.227294215932488e-05, 0.006774618290364742, -0.0022028523962944746, 0.01268165186047554, -0.0078150425106287, -0.023723026737570763, 0.021459171548485756, 0.007320248056203127, -0.011644616723060608, -0.0023401069920510054, -0.04638868197798729, -0.007970936596393585, 0.024129707366228104, 0.009089307859539986, 0.02271988056600094, -0.028006726875901222, -0.0004960654187016189, -0.008065829053521156, 0.000569776224438101, -0.0075642564333975315, -0.02483461983501911, 0.01218685694038868, -0.02495662309229374, 0.007116907741874456, -0.024848176166415215, -0.014233815483748913, 0.015386076644062996, -0.0034211992751806974, 0.011827622540295124, 0.010438131168484688, -0.01256642583757639, -0.014477823860943317, -0.0014106727903708816, 0.009482432156801224, -0.025742871686816216, 0.003346641082316637, -0.014586271718144417, 0.022136973217129707, -0.00186734099406749, -0.04381303861737251, 0.017527926713228226, -0.006367938127368689, -0.007476142141968012, 0.0026586733292788267, -0.0022384370677173138, -0.03990890830755234, -0.0014725221553817391, -0.0015182736096903682, 0.00883852131664753, 0.015860537067055702, -0.020523807033896446, -0.032480210065841675, 0.01459982804954052, -0.014884504489600658, -0.025281967595219612, -0.010987150482833385, -0.016755234450101852, -0.019141092896461487, -0.001565719721838832, 0.009048639796674252, 0.05899577587842941, 0.010926147922873497, -0.019615553319454193, -0.028467630967497826, 0.0037550160195678473, -0.011570058763027191, 0.010295793414115906, 0.03218197822570801, 0.01390847098082304, 0.01449138019233942, 0.036818135529756546, -0.015399632975459099, 0.014816724695265293, -0.004243032541126013, 0.02425171062350273, -0.036601241677999496, -0.058507759124040604, -0.015819869935512543, 0.014613384380936623, -0.016538338735699654, 0.011556502431631088, -0.034052710980176926, 0.03294111788272858, 0.029443664476275444, 0.01572497747838497, 0.000582484994083643, -0.016090989112854004, -0.016145214438438416, 0.0021147383376955986, 0.013278116472065449, 0.022787660360336304, -0.010112786665558815, -0.018368400633335114, 0.01611810177564621, 0.03223620355129242, 0.01002467330545187, -0.029985904693603516, 0.02643422968685627, 0.01724325120449066, 0.0053919050842523575, -0.009380762465298176, 0.011725952848792076, -0.023872142657637596, 0.015155624598264694, -0.0011590393260121346, -0.0025586977135390043, -0.012620650231838226, 0.002909459639340639, 0.016457002609968185, 0.020117126405239105, -0.006842398550361395, 0.010804143734276295, 0.002390942070633173, -0.027003582566976547, -0.015155624598264694, 4.482486838242039e-05, -0.021174496039748192, -0.023424793034791946, 0.010892258025705814, 0.01670101098716259, 0.008919857442378998, -0.026366448029875755, 0.013474678620696068, 0.016551895067095757, -0.03608611226081848, -0.00799127109348774, 0.0005676581058651209, -0.016633231192827225, -0.026190221309661865, 0.006147652864456177, 0.0032907226122915745, 0.02822362259030342, 0.016185881569981575, -0.007360916119068861, 0.024319490417838097, -0.01199029479175806, 0.013298450969159603, -0.013264560140669346, 0.01817861571907997, -0.018924197182059288, -0.005374959670007229, -0.005134340841323137, -0.0007176215294748545, -0.019629109650850296, -0.0021384614519774914, -0.016863683238625526, -0.0011031207395717502, 0.0075303660705685616, -0.00975355226546526, 0.07482920587062836, 0.02040180191397667, -0.005812141578644514, 0.007076239679008722, -0.015833426266908646, -0.007591368164867163, 0.019669776782393456, -0.01306122075766325, -0.0030975493136793375, -0.005978202447295189, 0.03719770535826683, -0.012417309917509556, -0.007096573710441589, -0.006622113287448883, -0.007055905647575855, -0.005215676501393318, 0.0018080334411934018, 0.014504935592412949, -0.0050563933327794075, 0.014721832238137722, 0.024807507172226906, 0.007374471984803677, 0.011590392328798771, -0.025376860052347183, -0.033158011734485626, -0.002804400632157922, 0.034269604831933975, 0.016633231192827225, -0.005700304172933102, -0.03166685253381729, 0.021242275834083557, 0.010255125351250172, -0.032127756625413895, -0.01522340439260006, -0.023777250200510025, 0.022516541182994843, -0.019263098016381264, -0.01390847098082304, -0.00037067229277454317, 0.022557208314538002, 0.016009652987122536, 0.02151339501142502, -0.020700035616755486, -0.005171619821339846, 0.0044565401040017605, -0.006778007373213768, -0.005934145301580429, -0.016484113410115242, 0.009272314608097076], "37038a26-361a-4824-b412-45da3a50aa13": [-0.01377568393945694, 0.0017253922997042537, 0.029871337115764618, -0.034264180809259415, -0.012780429795384407, 0.026384517550468445, -0.014839575625956059, -0.038684479892253876, -0.0037236216012388468, -0.06325694918632507, 0.011332164518535137, 0.025505948811769485, 0.018326394259929657, -0.0010021175257861614, -0.012087184004485607, 0.016349615529179573, 0.02055027149617672, -0.008119896985590458, -0.0033083604648709297, -0.01828521303832531, -0.02849857322871685, -0.0010141291422769427, -0.02326834388077259, -0.0016824934864416718, -0.02635706216096878, 0.007289375178515911, 0.010515369474887848, -0.007385468576103449, -0.04258313030004501, 0.034071993082761765, -0.013576632365584373, -0.008497406728565693, -0.01380313839763403, -0.0004435742739588022, -0.029981158673763275, 0.013549177907407284, 0.008778823539614677, -0.00813362468034029, 0.01024768128991127, -0.0032929168082773685, 0.028828037902712822, 0.01198422722518444, -0.0077080680057406425, -0.01279415749013424, 0.009952536784112453, 0.03753135725855827, 0.0061225262470543385, -0.010371229611337185, -0.00310587789863348, 0.0012680904474109411, -0.0065034679137170315, -0.0055425334721803665, -0.032946329563856125, 0.007831617258489132, -0.01248528528958559, -0.020124714821577072, 0.032369766384363174, 0.004924789536744356, 0.006201460026204586, 0.003668711055070162, 0.011414529755711555, 0.010158451274037361, -0.010110404342412949, -0.005497918464243412, -0.012348009273409843, -0.029596785083413124, -0.009664256125688553, -0.018902955576777458, -0.019808979704976082, -0.01612997241318226, 0.04200656712055206, 0.03184811770915985, -0.009979992173612118, 0.0031796637922525406, -0.019369695335626602, -0.012299962341785431, -0.009952536784112453, -0.02238977514207363, -0.0069736395962536335, 0.009513252414762974, 0.009197516366839409, -0.019452061504125595, -0.028580939397215843, 0.00784534402191639, 0.028800582513213158, 0.021772032603621483, 0.01790083758533001, 0.0022684920113533735, -0.011586125940084457, 0.009101423434913158, -0.006774588953703642, -0.0025945233646780252, 0.029349688440561295, 0.012327417731285095, 0.01639079861342907, 0.025807958096265793, 0.01602015271782875, 0.01090660784393549, -0.006544650997966528, -0.01412573829293251, -0.02055027149617672, 0.009918217547237873, -0.018326394259929657, -0.009732894599437714, -0.029734062030911446, 0.01093406230211258, 0.008771959692239761, -0.011352756060659885, 0.006839795038104057, 0.009458341635763645, -0.038300108164548874, 0.03711953014135361, -0.008435633033514023, -0.00787966325879097, 0.015155310742557049, -0.024792112410068512, 0.02718072012066841, -0.03451127931475639, -0.018875500187277794, -0.015978969633579254, -0.006081343162804842, -0.005014019552618265, 0.02762000449001789, -0.03473092243075371, 0.022870242595672607, 0.006314713042229414, 0.00933479331433773, -0.011654763482511044, 0.004928221460431814, -0.01570441573858261, 0.0044580502435564995, 0.016226066276431084, 0.01248528528958559, 0.016377070918679237, -0.013350127264857292, 0.0035691855009645224, -0.008511134423315525, -0.005158159416168928, -0.023748811334371567, -0.02718072012066841, 0.02421555109322071, 0.03560949116945267, 0.009801533073186874, -0.017983203753829002, -0.007364877033978701, 0.02483329549431801, 0.011757721193134785, 0.025396127253770828, 0.006517195608466864, 0.012787293642759323, 0.026906168088316917, -0.02674143575131893, -0.010982109233736992, 0.013576632365584373, 0.013549177907407284, 0.007529608905315399, 0.005329755134880543, 0.022980064153671265, -0.018271485343575478, 0.011490032076835632, -0.006630448624491692, 0.01204600092023611, -0.0009137458400800824, 0.010700693354010582, -0.0055459653958678246, 0.03368762135505676, -0.001547791063785553, -0.006863818503916264, -0.014894486404955387, -7.394691783702001e-05, 0.008092441596090794, 0.032891418784856796, -0.015594595111906528, 0.010096676647663116, 0.016171155497431755, 0.00917692482471466, 0.015567139722406864, 0.018765678629279137, -0.006966775748878717, -0.030997004359960556, 0.018271485343575478, -0.00036228090175427496, -0.006263234186917543, 0.01314421184360981, -0.018628403544425964, -0.019644247367978096, 0.02168966643512249, 0.012725519016385078, 0.005240525584667921, -0.008854325860738754, 0.014166921377182007, 0.009273018687963486, -0.011943044140934944, -0.012190141715109348, -0.6294944882392883, 0.021607300266623497, 0.008675866760313511, -0.006647608242928982, 0.008346403017640114, 0.00447864132001996, 0.03096954897046089, -0.0006319002714008093, -0.006294121500104666, 0.02477838471531868, 0.03102445974946022, 0.012684336863458157, 0.005223365966230631, -0.01652807556092739, 0.0017811608267948031, -0.03247958794236183, -0.007282511331140995, -0.019397150725126266, -0.00926615484058857, 0.007735523395240307, -0.014249286614358425, 0.02679634653031826, 0.002345709828659892, 0.01210091169923544, -0.006403942592442036, -0.01656925678253174, 0.026260970160365105, -0.015676960349082947, 0.009025921113789082, 0.032369766384363174, -0.028278931975364685, 0.010570280253887177, 0.005741584114730358, 0.005868564825505018, 0.045054104179143906, -0.0061499811708927155, -0.018189119175076485, 0.016733989119529724, 0.03179320693016052, 0.04840364679694176, -0.018271485343575478, -0.008916100487112999, 0.01796947605907917, 0.002179262461140752, -0.011380210518836975, -0.003613800508901477, 0.000974662194494158, 0.005340050905942917, -0.009259290993213654, -0.037229351699352264, -0.0011265241773799062, -0.017955748364329338, -0.006400510668754578, -0.007460970431566238, 0.008408177644014359, 0.010261408984661102, 0.015498502179980278, -0.017379188910126686, 0.002237604698166251, -0.005552829243242741, 0.014372835867106915, 0.01847739890217781, -0.02648061141371727, -0.02951441891491413, -0.049529314041137695, 0.017118362709879875, -0.0018721064552664757, -0.026178603991866112, 0.010481051169335842, -0.0033615550491958857, 0.03283650800585747, -0.0036549833603203297, 0.005092953331768513, -0.020467907190322876, 7.914840534795076e-05, 0.006846658885478973, 0.033385612070560455, -0.010611463338136673, -0.0011874405900016427, 0.005793062970042229, 0.004653668962419033, -0.004035925026983023, -0.03201285004615784, -0.02314479649066925, 0.02446264959871769, 0.008456224575638771, -0.0201796256005764, -0.010625191032886505, 0.001404508831910789, -0.003111025784164667, -0.005384665448218584, 0.03928849473595619, -0.013356990180909634, -0.03585658594965935, -0.012217597104609013, 0.03423672541975975, -0.0021518070716410875, -0.0017090907786041498, -0.0104947779327631, -0.0177910178899765, -0.030557719990611076, -0.012636289931833744, -0.0016190031310543418, 0.006441693753004074, 0.01602015271782875, 0.014825847931206226, 0.0047223069705069065, 0.000374936091247946, 0.019657975062727928, -0.026247242465615273, -0.0048424238339066505, 0.0008871485479176044, -0.0075913830660283566, -0.015333770774304867, 0.01740664429962635, -0.024490104988217354, 0.01612997241318226, -0.018559765070676804, 0.0008764237863942981, -0.01299320813268423, 0.0019287329632788897, -0.010659510269761086, 0.009794669225811958, -0.013954143039882183, 0.0009635085007175803, 0.00908083189278841, 0.007296239025890827, -0.009533843956887722, 0.01828521303832531, -0.014880758710205555, -0.0032551658805459738, -0.024819567799568176, 0.013967870734632015, -0.013041255064308643, 0.013418764807283878, -0.015169038437306881, 0.03278159722685814, -0.0036515514366328716, -0.009499524720013142, -0.05112171918153763, 0.0012106059584766626, -0.0002979326236527413, 0.02396845445036888, -0.023227160796523094, 0.004866447299718857, -0.01991880126297474, -0.02395472675561905, 0.004887038841843605, -0.012361736968159676, -0.014949396252632141, -0.018642131239175797, -0.021566117182374, -0.015498502179980278, 0.02193676307797432, -0.0180243868380785, -0.006098502781242132, 0.017996931448578835, -0.04261058568954468, -0.022746693342924118, -0.027757281437516212, -0.025272579863667488, 0.009286746382713318, -0.01684381067752838, 0.005638626869767904, -0.016294704750180244, -0.011448848992586136, -0.00977407768368721, 0.0128627959638834, -0.005995545536279678, -0.028855493292212486, 0.01169594656676054, -0.00628725765272975, 0.006132821552455425, 0.03486819937825203, -0.0024263598024845123, 0.03058517538011074, -0.027963196858763695, -0.0031384809408336878, 0.0015040341531857848, 0.00046373673831112683, 0.004773785825818777, 0.010673237964510918, 0.0008451076573692262, -0.01500430703163147, 0.03234231099486351, 0.004135450813919306, 0.0245312862098217, 0.014578750357031822, -0.022787876427173615, -0.005353778135031462, 0.030173346400260925, 0.0027712667360901833, -0.006867250427603722, 0.009273018687963486, -0.01607506349682808, 0.008428769186139107, -0.03431909158825874, 0.008971010334789753, -0.016610439866781235, 0.018751952797174454, 0.013453084044158459, 0.01816166378557682, -0.013384445570409298, 0.003447352908551693, 0.006753997411578894, -0.029294777661561966, 0.02175830490887165, -0.0194108784198761, 0.011805768124759197, 0.013061846606433392, 0.0033598390873521566, -0.004907630383968353, 0.0049522449262440205, -0.008744504302740097, 0.012121503241360188, 0.03599386289715767, 0.01854603737592697, 0.009732894599437714, -0.006602993234992027, 0.011901861056685448, 0.005147863645106554, -0.009025921113789082, 0.03157356381416321, -0.0018789703026413918, -0.005563125014305115, 0.02913004532456398, -0.008215990848839283, 0.018697042018175125, -0.005676378030329943, -0.03215012699365616, 0.000804782728664577, 0.024133184924721718, 0.012059728614985943, 0.014400291256606579, 0.03451127931475639, 0.04002979025244713, 0.02970660664141178, -0.016377070918679237, 0.03651551529765129, -0.0031762318685650826, -0.01619861088693142, 0.020124714821577072, 0.01866958662867546, -0.021360203623771667, 0.036542970687150955, 0.0057381521910429, 0.026974806562066078, -0.0035691855009645224, -0.013562905602157116, 0.022993791848421097, -0.002810733625665307, 0.00256878393702209, -0.02042672410607338, 0.0018618108006194234, 0.020412996411323547, -0.019877618178725243, 0.02105819433927536, 0.014084555208683014, 0.008703322149813175, 0.01478466484695673, 0.009128878824412823, -0.00948579702526331, 0.008936692029237747, 0.0032997806556522846, 0.018642131239175797, -0.0005400967202149332, -0.013864913024008274, -0.014949396252632141, -0.008215990848839283, -0.011181159876286983, 0.007975757122039795, -0.02344680391252041, -0.008936692029237747, -0.005333187058568001, -0.014949396252632141, 0.010577144101262093, 0.006297553423792124, 0.02503920905292034, 0.0036652791313827038, 0.023062430322170258, -0.027537640184164047, -0.016884993761777878, 0.008922964334487915, 0.017104635015130043, 0.001604417571797967, -0.022225044667720795, -0.010021175257861614, -0.014757209457457066, 0.010920335538685322, -0.0017605694010853767, -0.004729170817881823, -0.0059200432151556015, -0.007454106584191322, -0.01821657456457615, -0.01191558875143528, 0.01853230968117714, 0.035774219781160355, -0.020138442516326904, 0.0049522449262440205, 0.00847681611776352, 0.005745016038417816, 0.02037181332707405, -0.008778823539614677, -0.0328090526163578, 0.03689988702535629, -0.02693362347781658, -0.01935596764087677, -0.029239866882562637, -0.018381305038928986, -0.015429863706231117, -0.0017391199944540858, -0.015539685264229774, -0.021895579993724823, 0.0013015515869483352, -0.005120408721268177, 0.018573492765426636, 0.0060847750864923, 0.01292456965893507, 0.0308871828019619, 0.01074873935431242, -0.0031333330553025007, -0.01828521303832531, -0.0005465315189212561, 0.03588404133915901, 0.07303103059530258, 0.007035413756966591, -0.014372835867106915, 0.017351733520627022, -0.015773054212331772, -0.03138137608766556, -0.03179320693016052, -0.022554507479071617, 0.029788972809910774, 0.0017005109693855047, -0.019026504829525948, 0.0019424606580287218, 0.0034730921033769846, 0.006445125676691532, 0.0038506020791828632, -0.009218107908964157, -0.020014895126223564, -0.02068754844367504, -0.0010939210187643766, 0.013658998534083366, 0.023295799270272255, -0.002591091440990567, 0.020632637664675713, 0.012725519016385078, 0.017955748364329338, -0.0037098939064890146, 0.021044466644525528, 0.01267747301608324, 0.0036618472076952457, -0.022362319752573967, -0.01570441573858261, 0.00983585137873888, 0.013727637007832527, 0.028031833469867706, -0.025313762947916985, 0.015402408316731453, 0.007069732993841171, -0.01544359140098095, -0.02705717273056507, 0.0004410003311932087, 0.00958875473588705, 0.03588404133915901, -0.000972946232650429, -0.003932967782020569, -0.0023851769510656595, -0.017928292974829674, 0.006527491379529238, 0.01570441573858261, -0.013020663522183895, 0.0035932089667767286, 0.011085066944360733, 0.02230740897357464, -0.007865935564041138, 0.0237625390291214, 0.012142094783484936, -0.01374136470258236, 0.008820006623864174, -0.008517998270690441, -0.029294777661561966, -0.024366555735468864, -0.0316559299826622, -0.0018961298046633601, -0.004849287681281567, -0.005130704492330551, -0.011956771835684776, -0.022279955446720123, -0.0014637092826887965, -0.007872799411416054, -0.02244468592107296, 0.020728731527924538, 0.007872799411416054, -0.049776412546634674, -0.028333842754364014, -0.0017485577845945954, 0.026315879076719284, 0.029102589935064316, -0.005202774424105883, 0.00958875473588705, 0.004777217749506235, 0.019630521535873413, 0.010007447563111782, -0.03374253213405609, 0.0013547461712732911, -0.03860211372375488, -0.011139977723360062, -0.029432052746415138, -0.008092441596090794, -0.005700401030480862, -0.0033135083504021168, 0.01074873935431242, -0.010728147812187672, -0.006692222785204649, 0.008113033138215542, 0.013700181618332863, 0.006771157030016184, 0.017241911962628365, 0.0324246771633625, -0.006826067343354225, 0.02428418956696987, -0.045054104179143906, 0.009547571651637554, -0.010302591137588024, -0.023405620828270912, -0.016226066276431084, 0.01656925678253174, 0.0025945233646780252, -0.015237676911056042, -0.004039356950670481, 0.002923986641690135, 0.0010338627034798265, 0.008126760832965374, 0.0100898128002882, 0.008744504302740097, -0.0066167209297418594, 0.012869659811258316, -0.03346797823905945, 0.00537436967715621, 0.026315879076719284, 0.024888206273317337, -0.0015383532736450434, -0.01696735993027687, -0.023185977712273598, 0.02540985494852066, 0.0027232200372964144, -0.009218107908964157, 0.007824753411114216, 0.02162102796137333, -0.034950561821460724, -0.01886177249252796, 0.0007335706031881273, -0.013816866092383862, 0.010288863442838192, -0.014537567272782326, -0.022732965648174286, -0.029047679156064987, 0.011750857345759869, -0.0031727999448776245, 0.004619349725544453, -0.0403592512011528, -0.010762467049062252, -0.013068710453808308, 0.008415041491389275, 0.018051842227578163, -0.01162730809301138, 0.014935668557882309, -0.030036069452762604, -0.014551294967532158, 0.009032784961163998, 0.006729973945766687, 0.03083227202296257, -0.018065569922327995, -0.0023920407984405756, -0.017928292974829674, -0.016926176846027374, -0.0074678342789411545, -0.01740664429962635, -0.016541803255677223, 0.0027197881136089563, 0.053125955164432526, 0.021264109760522842, 0.000684665865264833, 0.010364365763962269, 0.01816166378557682, 0.0015786782605573535, -0.01921869069337845, -0.00584797328338027, -0.022417230531573296, -0.02206031233072281, 0.012066592462360859, 0.0010415844153612852, 0.0093965670093894, -0.0037751002237200737, -0.0054224166087806225, 0.007104052230715752, -0.004615917801856995, 0.028828037902712822, -0.012842204421758652, 0.00992508139461279, -0.029981158673763275, -0.039755236357450485, -0.0043482291512191296, 0.05271412432193756, -0.0009343372657895088, 0.0025567724369466305, -0.03195793926715851, -0.0034130336716771126, 0.016184883192181587, 0.0020694411359727383, 0.029843881726264954, 0.01670653373003006, 0.021415112540125847, -0.0022032856941223145, 0.0005859985249117017, 0.013528586365282536, -0.017612557858228683, -0.009712303057312965, 0.0025636362843215466, -0.039261043071746826, 0.0012964037014171481, 0.000586427457164973, 0.021236654371023178, 0.009684847667813301, -0.007364877033978701, 0.01434538047760725, 0.0032328583765774965, 0.023721355944871902, -0.007371740881353617, -0.012142094783484936, 0.003274041460826993, -0.023433076217770576, -0.007989484816789627, -0.013899232260882854, -0.013041255064308643, 0.005844541359692812, 0.0034748080652207136, 0.003919240087270737, 0.016994813457131386, 0.013006935827434063, -0.019534427672624588, -0.0033066445030272007, 0.018312668427824974, -0.006733405869454145, 0.033193424344062805, 0.00423840805888176, 0.02830638736486435, 0.018491126596927643, -0.011531215161085129, -0.01702226884663105, -0.0187931340187788, 0.0006902427412569523, -0.0166378952562809, 0.0010527381673455238, 0.03777845576405525, -0.0035657535772770643, -0.0035932089667767286, 0.012814749032258987, -0.0008399597718380392, 0.009327929466962814, -0.041951656341552734, 0.01570441573858261, 0.010336910374462605, -0.007955165579915047, -0.039563048630952835, -0.01846367120742798, 0.0005246531218290329, 0.03341306746006012, 0.009149470366537571, 0.025011753663420677, 0.0053057316690683365, -0.003610368585214019, 0.0022667760495096445, 0.03898648917675018, -0.008744504302740097, 0.013624679297208786, -0.005631763022392988, -0.0039913104847073555, -0.014812120236456394, 0.0007460112683475018, -0.01405709981918335, -0.016116244718432426, 0.012986344285309315, 0.019150054082274437, -0.008620955981314182, 0.0018669585697352886, 0.010021175257861614, 0.013329535722732544, 0.0010072652949020267, -0.0016224350547417998, -0.020261991769075394, 0.026439428329467773, -0.011181159876286983, -0.005432712379842997, 0.004736034665256739, -0.014084555208683014, 0.02004235051572323, -0.022938881069421768, -0.004094267729669809, 0.004996859934180975, 0.004032493103295565, 0.011675355024635792, 0.022678056731820107, 0.004025629721581936, 0.002064293483272195, -0.001890981919132173, 0.013562905602157116, -0.015457319095730782, 0.01027513574808836, -0.005058634094893932, 0.0069736395962536335, -0.03014589101076126, -0.030420443043112755, 0.005762175656855106, 0.012952025048434734, 0.009842715226113796, -0.003275757422670722, -0.012890251353383064, 0.006239210721105337, 0.04527374729514122, -0.0008914383943192661, -0.007255055941641331, 0.006908433046191931, 0.0053091635927557945, -0.03783336654305458, 0.032507043331861496, 0.0010261408751830459, -0.0033546912018209696, 0.027345452457666397, -0.011448848992586136, -0.023474259302020073, -0.018395032733678818, 0.010206498205661774, 0.006709382403641939, 0.016473164781928062, -0.009904489852488041, 0.013405037112534046, 0.010460459627211094, 0.0023079589009284973, 0.0016816355055198073, -0.02907513454556465, -0.019342239946126938, -0.012155822478234768, 0.0067780208773911, 0.0015366373118013144, -0.0320403054356575, 0.011009564623236656, -0.0128627959638834, 0.02874567173421383, -0.013054982759058475, -0.02609623782336712, -0.04173201695084572, -0.032891418784856796, -0.005961226299405098, -0.005552829243242741, 0.0004641657287720591, 0.0013487403048202395, -0.010535961017012596, -0.013096165843307972, 0.03618605062365532, -0.009815260767936707, 0.010487914085388184, 0.0037030300591140985, -0.003847170155495405, 0.0045713032595813274, 0.02344680391252041, -0.013240305706858635, -0.029596785083413124, -0.0050757937133312225, -0.0023920407984405756, -0.026823801919817924, -0.012650017626583576, -0.01383745763450861, 0.0451364703476429, 0.007261919789016247, -0.018367577344179153, -0.035582035779953, -0.0046879881992936134, -0.041896749287843704, -0.010185906663537025, -0.018765678629279137, 0.02207404002547264, 0.03544475883245468, 0.047387801110744476, 0.008929828181862831, 0.04711325094103813, -0.008449360728263855, 0.022540779784321785, -0.030502809211611748, -0.017983203753829002, -0.012306826189160347, -0.019905073568224907, 0.0030749905854463577, -0.020014895126223564, -0.037421539425849915, 0.008243446238338947, 0.0032517339568585157, -0.0292673222720623, 0.006311281118541956, 0.016679078340530396, -0.03083227202296257, -0.005336618982255459, -0.016116244718432426, 0.013604087755084038, 0.023213433101773262, 0.024915661662817, 0.013912959955632687, -0.028100471943616867, 0.0011617012787610292, 0.009863306768238544, -0.008943554945290089, -0.03000861406326294, 0.029020223766565323, 0.020536543801426888, -0.02100328356027603, 0.006891273893415928, -0.009513252414762974, -0.018257757648825645, 0.007011390291154385, -0.013061846606433392, 0.013851185329258442, 0.009424022398889065, 0.0073511493392288685, 0.028635850176215172, -0.014386563561856747, -0.00019594056357163936, -0.012801021337509155, 0.003502263454720378, 0.014304197393357754, 0.007735523395240307, 0.005944066680967808, -0.03176575154066086, -0.002416064031422138, -0.01702226884663105, 0.0013573201140388846, 0.025766775012016296, -0.003836874384433031, -0.009602481499314308, 0.0004259857232682407, -0.02219758927822113, -0.014359108172357082, 0.010378093458712101, -0.01402278058230877, -0.012567651458084583, -0.001256078714504838, -0.003320372197777033, -0.015045490115880966, -0.006479444447904825, -0.006465716753154993, -0.015210221521556377, 0.002754107117652893, -0.02970660664141178, 0.018573492765426636, -0.03983760252594948, 0.0010861993068829179, 0.019877618178725243, -0.019204962998628616, 0.0026048191357403994, 0.18845300376415253, -0.005031178705394268, 0.013185394927859306, 0.02661788836121559, 0.023034974932670593, 0.008634683676064014, 0.0004946239059790969, 0.011133113875985146, -0.019204962998628616, 0.0036515514366328716, 0.007502153515815735, -0.0021655347663909197, -0.035087838768959045, -0.007632566150277853, 0.014249286614358425, -0.016912449151277542, -0.027441546320915222, -0.01972661353647709, 0.004413435235619545, -0.010474187321960926, 0.002922270679846406, -0.004876743070781231, -0.012526468373835087, -0.0072413282468914986, 0.0267277080565691, 0.00617743656039238, 0.004447754472494125, 0.02288397029042244, 0.015429863706231117, 0.024009637534618378, -0.0024229278787970543, -0.012952025048434734, 0.02523139677941799, -0.011743993498384953, -0.017104635015130043, 0.005014019552618265, 0.014386563561856747, -0.007900254800915718, 0.002515589352697134, 0.01726936735212803, -0.0027266519609838724, -0.025176486000418663, 0.022156406193971634, -0.049199849367141724, 0.017543919384479523, -0.021964218467473984, -0.007056005299091339, 0.00606761546805501, 0.006894705817103386, 0.014372835867106915, -0.004101131577044725, -0.0008905804133974016, 0.017543919384479523, -0.0017674332484602928, -0.0015048921341076493, 0.0031178893987089396, -0.00633873650804162, 0.012128367088735104, -0.01632216013967991, 0.0015100400196388364, 0.002930850489065051, 0.005353778135031462, 0.0047188750468194485, 0.0007601678953506052, -0.033632710576057434, 0.024297917261719704, 0.005106681026518345, 0.027400363236665726, 0.011325300671160221, 0.01676144450902939, -0.011943044140934944, 0.0006619294872507453, -0.035472214221954346, -0.0017966044833883643, -0.007248192094266415, -0.0036172321997582912, 0.02193676307797432, 0.018436215817928314, 0.04810164123773575, 0.008929828181862831, 0.0025104416999965906, 0.005515078082680702, -0.030722450464963913, -0.007460970431566238, 0.009122014977037907, -0.008401313796639442, 0.031353920698165894, -0.03171084076166153, 0.0060058413073420525, -0.003613800508901477, -0.0060092732310295105, 0.009801533073186874, -0.0038849213160574436, -0.017392916604876518, -0.0016370207304134965, -0.017008541151881218, 0.014427746646106243, 0.022485869005322456, -0.01589660346508026, -0.046619053930044174, -0.0074472432024776936, 0.04362643137574196, 0.009279882535338402, 0.046371955424547195, -0.0006456279079429805, 0.013356990180909634, -0.0002260770124848932, 0.0038231469225138426, 0.003030375810340047, -0.005875428672879934, 0.013068710453808308, -0.04596012830734253, 0.020399268716573715, -0.012368600815534592, -0.011366482824087143, 0.01684381067752838, 0.03330324590206146, -0.0020437019411474466, -0.004066812340170145, 0.008270901627838612, 0.0191775094717741, 0.012430375441908836, 0.01538868062198162, -0.004550711717456579, -0.003963855095207691, -0.025547131896018982, -0.0036995981354266405, 0.026274695992469788, -0.036048773676157, -0.016363343223929405, 0.017873384058475494, -0.0340445376932621, 0.014757209457457066, -0.001289539854042232, -0.0007910550921224058, -0.01645943708717823, -0.00933479331433773, -0.015278859995305538, 0.0036240960471332073, -0.004547279793769121, 0.011798904277384281, 0.0030629788525402546, 0.0034713761415332556, 0.013343263417482376, 0.013761956244707108, 0.02339189313352108, -0.021456295624375343, 0.02011098712682724, -0.020769914612174034, -0.0007069733110256493, 0.005563125014305115, 0.00879255123436451, -0.016692806035280228, -0.007309966720640659, 0.04420299082994461, -0.02388608828186989, -0.03146374225616455, -0.02207404002547264, 0.0100898128002882, 0.014036508277058601, -0.05282394587993622, 0.006136253476142883, 0.04178692772984505, 0.011304709129035473, 0.0006572105921804905, -0.007865935564041138, -0.1746155470609665, 0.007275647483766079, 0.01134589221328497, -0.0032328583765774965, 0.00039895944064483047, 0.024050820618867874, 0.009657392278313637, -0.014153193682432175, -0.024750929325819016, -0.00019615505880210549, 0.004564439412206411, -0.005844541359692812, -0.03670769929885864, -0.033824898302555084, 0.01317853108048439, -0.028278931975364685, -0.00999371986836195, 0.03352288901805878, 0.059742674231529236, 0.001664476003497839, 0.013439356349408627, -0.020715003833174706, -0.012142094783484936, -0.0035091270692646503, 0.005844541359692812, 0.011599852703511715, -0.0012715223710983992, 0.030612630769610405, -7.453677972080186e-05, -0.037613723427057266, 0.01500430703163147, -0.010206498205661774, 0.01100270077586174, 1.0074530109704938e-05, -0.011853814125061035, 0.003203687258064747, 0.006469148676842451, -0.013858049176633358, -0.017434099689126015, 0.019246146082878113, 0.03637823835015297, 0.010611463338136673, 0.009458341635763645, 0.014688570983707905, 0.02168966643512249, 0.02044045180082321, 0.031189190223813057, -0.025327490642666817, 0.01292456965893507, 0.0046021901071071625, 0.009801533073186874, -0.019259873777627945, 0.011517487466335297, -0.0006340452237054706, 0.020715003833174706, 0.009279882535338402, 0.014688570983707905, 0.022032856941223145, 0.00639707874506712, -0.0012638005428016186, 0.0030166481155902147, -0.016363343223929405, -0.0035125589929521084, -0.0055734203197062016, -0.029541874304413795, -0.020001167431473732, -0.0011702810879796743, 0.03506038337945938, 0.0036858704406768084, 0.02729054167866707, 0.006733405869454145, 0.02447637729346752, -0.004032493103295565, 0.006699086632579565, 0.00666819978505373, 0.006222051568329334, -0.026219787076115608, 0.011709674261510372, 0.030502809211611748, 0.005096385255455971, 0.009293610230088234, 0.018120480701327324, 0.0047188750468194485, -0.001696221181191504, -0.007522745057940483, -0.01039868500083685, 0.00908083189278841, -0.008291492238640785, 0.004121723119169474, -0.005412120837718248, 0.033632710576057434, -0.01684381067752838, -0.011359619908034801, 0.004736034665256739, 0.013631543144583702, 0.004190361127257347, 0.011860677972435951, 0.004053084645420313, -0.0069702076725661755, -0.00655837869271636, -0.009348521009087563, 0.018189119175076485, -0.02825147658586502, 0.030475353822112083, 0.023487986996769905, 0.01670653373003006, 0.028169110417366028, -0.0034662282560020685, 0.03492310643196106, -0.01575932651758194, -0.028031833469867706, 0.013851185329258442, 0.029843881726264954, -0.003730485215783119, -0.0372018963098526, 0.02181321568787098, 0.0034078857861459255, -0.013123621232807636, 0.010391821153461933, -0.029102589935064316, 0.046811241656541824, -0.0490625724196434, -0.015676960349082947, 0.006246074568480253, -0.011558670550584793, -0.014592478051781654, -0.12036392092704773, -0.021140560507774353, 0.03917867690324783, 0.017763562500476837, 0.007316830568015575, 0.008140488527715206, 0.006987367291003466, 0.028910404071211815, 0.008634683676064014, 0.029404597356915474, -0.030338076874613762, 0.00537436967715621, -0.0013650419423356652, -0.020563999190926552, 0.01619861088693142, -0.011249798350036144, 0.008483679965138435, -0.019506972283124924, -0.008634683676064014, 0.040194518864154816, -0.0009755201754160225, -0.004382547922432423, 0.0030046366155147552, 0.008552317507565022, -0.01538868062198162, -0.01928732916712761, -0.021538661792874336, 0.01589660346508026, 0.01872449740767479, 0.01002803910523653, 0.024888206273317337, -0.022430958226323128, 0.013885504566133022, -0.03316596895456314, 0.00838758610188961, -0.010625191032886505, -0.023940999060869217, 0.0001941173686645925, 0.0038883532397449017, -0.018834317103028297, 0.018765678629279137, 0.005261116661131382, 0.007035413756966591, -0.03739408403635025, 0.0015683824894949794, -0.008497406728565693, -0.019259873777627945, 0.04134764149785042, 0.006280393805354834, -0.004430594854056835, -0.03096954897046089, -0.029541874304413795, -0.04856837913393974, -0.031683385372161865, 0.024037092924118042, 0.026370789855718613, 0.012210733257234097, 0.006572105921804905, -0.02288397029042244, 0.00992508139461279, -0.006918728817254305, -0.004053084645420313, -0.011428257450461388, 0.009698575362563133, 0.009753486141562462, 0.01279415749013424, -0.0156357791274786, -0.00803753174841404, -0.012059728614985943, -0.004633077420294285, -0.035280026495456696, -0.007371740881353617, -0.03083227202296257, 0.00995940063148737, -0.015910331159830093, 0.0030097842682152987, 0.002802153816446662, -0.024860750883817673, 0.019191237166523933, 0.009595618583261967, -0.01021336205303669, -0.00904651265591383, -0.000343190913554281, -0.02370762825012207, 0.0023131067864596844, 0.0026597296819090843, 0.008737640455365181, -0.020083533599972725, 0.015841692686080933, -0.034401457756757736, 0.019699158146977425, 0.034895651042461395, 2.8313250368228182e-05, 0.010501641780138016, -0.0062700980342924595, 0.005340050905942917, -0.01030945498496294, -0.018106753006577492, 0.009533843956887722, 0.017296822741627693, 0.005020883399993181, 0.010913471691310406, -0.037613723427057266, -0.012327417731285095, 0.024064546450972557, 0.009911353699862957, 0.019191237166523933, -0.02888294868171215, 0.007543336600065231, -0.007049141451716423, 0.010645782575011253, -0.013858049176633358, -0.03525257110595703, 0.020536543801426888, -0.005679809954017401, -0.011016428470611572, -0.023282071575522423, -0.0011565533932298422, 0.004996859934180975, -0.006901569198817015, -0.0011702810879796743, 0.007632566150277853, -0.01560832280665636, -0.0008343829540535808, 0.012217597104609013, 0.02207404002547264, -0.02035808563232422, 0.004948813002556562, -0.013061846606433392, 0.01056341640651226, -0.020412996411323547, -0.03333070129156113, 0.009822123683989048, 0.02086600847542286, -0.011558670550584793, 0.0018292076420038939, -0.003318656235933304, -0.0482938252389431, 0.003950127400457859, 0.009931945241987705, 0.00546703115105629, 0.020454179495573044, -0.010728147812187672, -0.023089885711669922, 0.013205986469984055, -0.02118174359202385, -0.01872449740767479, -0.004495800938457251, -0.013356990180909634, -0.013658998534083366, -0.0017571374773979187, 0.0024949980434030294, 0.04881547763943672, 0.01151062361896038, -0.0172144565731287, -0.02793574146926403, 6.375843804562464e-05, 0.0008266611257568002, 0.013288352638483047, 0.03132646903395653, 0.0006267524440772831, 0.007728659547865391, 0.04123781993985176, -0.0019630519673228264, 0.0069770715199410915, 0.0005649780505336821, 0.014619933441281319, -0.020907191559672356, -0.05051770433783531, -0.019973712041974068, 0.012217597104609013, -0.03409944847226143, 0.013254033401608467, -0.0267277080565691, 0.030530264601111412, 0.02086600847542286, 0.013370717875659466, 0.005041474476456642, -0.015169038437306881, -0.013157939538359642, 0.0037579406052827835, 0.031353920698165894, 0.014661116525530815, -0.02130529284477234, -0.017365461215376854, 0.014578750357031822, 0.03215012699365616, 0.01621233858168125, -0.008325811475515366, 0.024188095703721046, 0.012464694678783417, 0.005521941930055618, -0.004653668962419033, -0.001429390162229538, -0.021799487993121147, 0.020907191559672356, -0.007371740881353617, 0.007296239025890827, -0.015580867417156696, 0.009238699451088905, 0.012341145426034927, 0.027441546320915222, -0.0005538243567571044, 0.010776194743812084, 0.005861700978130102, -0.017983203753829002, -0.011016428470611572, -0.0014190945075824857, -0.03569185733795166, -0.029926247894763947, 0.004856151528656483, 0.013878640718758106, -0.0010201350087299943, -0.028100471943616867, 0.0033066445030272007, 0.006366191431879997, -0.025176486000418663, -0.0034816719125956297, -0.0002595381229184568, -0.015484774485230446, -0.020124714821577072, 0.0008378148195333779, 0.0007339995936490595, 0.020014895126223564, 0.0061568450182676315, -0.017694924026727676, 0.03179320693016052, -0.015718143433332443, 0.01753019168972969, -0.024764657020568848, 0.002819313434883952, -0.021030738949775696, 0.005834245588630438, 0.0031316170934587717, -0.007309966720640659, -0.023364437744021416, -0.024627380073070526, -0.019946256652474403, -0.017255639657378197, 0.005116976797580719, -0.00655837869271636, 0.07165826112031937, 0.024874478578567505, -0.01835384964942932, 0.011091930791735649, -0.019836435094475746, 0.004536984022706747, 0.013164803385734558, -0.0067402697168290615, -0.009073968045413494, -0.008950418792665005, 0.03333070129156113, -0.013576632365584373, -0.012286234647035599, -0.016871266067028046, -0.018930410966277122, 0.004684556275606155, 0.004780649673193693, 0.020728731527924538, -0.012725519016385078, 0.009424022398889065, 0.01823030225932598, 0.0007824752829037607, 0.006060751620680094, -0.011462576687335968, -0.03387980908155441, -0.017928292974829674, 0.03857465833425522, 0.014510111883282661, -0.012540196068584919, -0.024050820618867874, 0.019328512251377106, -0.002639138139784336, -0.026562977582216263, -0.022856514900922775, -0.01658298447728157, 0.0207973700016737, -0.007076596841216087, -0.021703394129872322, 0.008593500591814518, 0.03247958794236183, 0.010220225900411606, 0.021772032603621483, -0.013713909313082695, 0.0009043080499395728, -0.010261408984661102, -0.016157427802681923, -0.004355092998594046, -0.014153193682432175, 0.0060367281548678875], "63f92bda-3680-476a-89b7-240dad4835c4": [0.008782521821558475, 0.0061532286927104, 0.010325951501727104, -0.03302665427327156, -0.007409825921058655, 0.01439623348414898, -0.016786500811576843, -0.040593553334474564, -0.00991619098931551, -0.04297016188502312, 0.015775758773088455, 0.0060815210454165936, 0.015966979786753654, -0.008932767435908318, 0.003440276486799121, 0.014874286949634552, 0.02279631234705448, -0.012668412178754807, 0.011022543534636497, -0.012886950746178627, -0.031660787761211395, 0.0002625024935696274, -0.01565283164381981, -0.005678590387105942, -0.02779538556933403, 0.011534743010997772, 0.016349423676729202, -0.005200536921620369, -0.028355389833450317, 0.0290383230894804, 0.0004027172108180821, 0.011077177710831165, -0.017387481406331062, 0.005190292838960886, -0.036441318690776825, 0.007826415821909904, -0.0045244330540299416, -0.011329863220453262, 0.008222516626119614, -0.007874220609664917, 0.024749502539634705, 0.02589683048427105, 0.0066346968524158, -0.005712736863642931, 0.00022238015662878752, 0.022304601967334747, -0.0016663571586832404, -0.008236175402998924, -0.008263492956757545, 0.004923949018120766, -0.005876640789210796, 0.0014725748915225267, -0.04176820069551468, 0.008898620493710041, -0.025446094572544098, -0.013904521241784096, 0.018521150574088097, 0.007266410160809755, 0.013945497572422028, 0.0024790477473288774, -0.0005557369440793991, -0.004462969023734331, -0.01861676201224327, -0.0029656377155333757, -0.01171913556754589, -0.01857578568160534, -0.004049794282764196, -0.01492892112582922, -0.016171859577298164, -0.012060602195560932, 0.019559210166335106, 0.02754952944815159, -0.008925938047468662, -0.004476627800613642, -0.0007580559467896819, -0.004910290241241455, -0.007327874191105366, -0.014573796652257442, -0.012675241567194462, 0.005309806205332279, 0.016390398144721985, -0.025186579674482346, -0.03299933671951294, 0.0020231897942721844, 0.0346110574901104, 0.026019757613539696, 0.022714361548423767, -0.0015656246105208993, -0.012572801671922207, 0.012067431584000587, 0.02212703786790371, 0.01430062297731638, 0.03676912933588028, 0.009164964780211449, 0.019504575058817863, 0.03761596605181694, 0.0017337969038635492, 0.0032336891163140535, -0.018316270783543587, -0.02906564064323902, -0.029311496764421463, 0.0039371103048324585, -0.015065507963299751, -0.008099588565528393, -0.024080228060483932, -0.009199111722409725, 0.009561065584421158, -0.0040122331120073795, -0.008311297744512558, 0.00866642314940691, -0.032261766493320465, 0.04239649698138237, -0.003510277019813657, -0.008393250405788422, 0.0173055287450552, -0.019531892612576485, 0.02342461235821247, -0.012975732795894146, 0.0024022178258746862, -0.006125911604613066, -0.0012600119225680828, -0.017646996304392815, 0.04499164596199989, -0.013330857269465923, 0.03160615265369415, 0.01607625000178814, 0.012026455253362656, -0.002173435175791383, 0.004596141166985035, -0.01328305248171091, -0.0034556423779577017, 0.015311364084482193, 0.004606384783983231, 0.01882164180278778, -0.016868451610207558, 0.024544622749090195, -0.014382574707269669, 0.013112318702042103, -0.00847520213574171, -0.02611536905169487, 0.010633271187543869, 0.03198859468102455, 0.018125049769878387, -0.01688211038708687, 0.01178742852061987, 0.02671634964644909, -0.0009467162890359759, 0.024285107851028442, 0.019327012822031975, 0.016417715698480606, 0.0022861191537231207, -0.018644079566001892, -0.012989390641450882, 0.0040395502001047134, 0.017592361196875572, 0.018671395257115364, -0.012040114030241966, 0.025446094572544098, -0.0027761238161474466, -0.004613214172422886, -0.008359103463590145, -0.006088350433856249, 0.010045948438346386, -0.01171913556754589, -0.002685635117813945, 0.03578570485115051, 0.01181474607437849, -0.008632277138531208, -0.005712736863642931, -0.011842062696814537, -0.013774764724075794, 0.02649781107902527, -0.020938733592629433, 0.007860561832785606, 0.026470493525266647, 0.013276223093271255, 0.01966847851872444, 0.00010889584518736228, -0.003933695610612631, -0.02420315518975258, 0.01347427349537611, 0.0031346636824309826, -0.006344450172036886, 0.01712796650826931, -0.01607625000178814, -0.0015767222503200173, 0.030622728168964386, 0.030240286141633987, -0.0009928143117576838, -0.0036229609977453947, 0.002940027741715312, 0.001971969846636057, -0.018275294452905655, -0.007484948728233576, -0.6333249807357788, 0.005262000951915979, 0.03305397182703018, -0.00412150239571929, 0.01034643966704607, 0.006583476904779673, 0.012634266167879105, -0.009062524884939194, -0.008946426212787628, 0.04305211454629898, 0.016581621021032333, 0.016445033252239227, -0.013125977478921413, 0.0007051285938359797, 0.00196001841686666, -0.029775891453027725, 0.005924446042627096, -0.03234371915459633, -0.01494257990270853, 0.006699575576931238, -0.011575719341635704, 0.02760416269302368, 0.003404422430321574, 0.015721123665571213, 0.0018319685477763414, -0.017619678750634193, 0.021840207278728485, -0.01316012442111969, -0.0025524632073938847, 0.014573796652257442, -0.014068425633013248, 0.012907438911497593, 0.012497679330408573, 0.009335697628557682, 0.05184829607605934, 0.0022673385683447123, -0.023711442947387695, 0.005343953147530556, 0.01920408383011818, 0.03504813462495804, -0.03234371915459633, -0.001726113841868937, 0.017264554277062416, 0.0095200901851058, -0.012456702999770641, 0.006252254359424114, -0.003127834526821971, 0.010305463336408138, -0.01608990877866745, -0.02025580033659935, 0.016636254265904427, -0.007136652711778879, -0.02108898013830185, 0.0037356449756771326, 0.0017944072606042027, -0.017701631411910057, 0.01380208134651184, -0.030841266736388206, 0.0035478384234011173, 0.008878132328391075, 0.012798169627785683, 0.004234186373651028, -0.009636188857257366, -0.030049065127968788, -0.04747752100229263, 0.0060063982382416725, -0.0045449212193489075, -0.01863042078912258, 0.019695796072483063, -0.006228351499885321, 0.025241214781999588, 0.002817099681124091, -0.0082703223451972, -0.0008673252887092531, -0.013371833600103855, 0.00866642314940691, 0.026893911883234978, -0.02111629769206047, -0.02089775912463665, 0.010230340994894505, -0.003974671941250563, -0.0032917384523898363, -0.02529584802687168, 0.0012676948681473732, 0.02862856350839138, -0.0006910430965945125, -0.016253812238574028, -0.00590054364874959, -0.0003508569789119065, 0.01064692996442318, 0.010981567203998566, 0.03731547296047211, -0.022304601967334747, -0.024517305195331573, -0.005617126356810331, 0.027522211894392967, -0.0035205211024731398, -0.018534809350967407, -0.011118154041469097, -0.015270388685166836, -0.025842195376753807, -0.02819148637354374, 0.01734650507569313, -0.0016936745960265398, 0.027317332103848457, 0.02630659006536007, -0.006617623381316662, -0.02361583337187767, 0.01816602610051632, -0.020747512578964233, -0.013822569511830807, -0.00031628349097445607, -0.01924506016075611, -0.01757870241999626, 0.02066556178033352, -0.024940723553299904, 0.006327376700937748, 0.0027402697596699, 0.005617126356810331, -0.011760110966861248, -0.009963996708393097, 0.006740551441907883, 0.017646996304392815, -0.009670334868133068, -0.0047190687619149685, 0.010162047110497952, -0.0035444237291812897, 0.013610860332846642, 0.022195331752300262, -0.011200105771422386, 0.0032268597278743982, -0.023984616622328758, -0.007491778116673231, -0.00022707531752530485, 0.013685982674360275, -0.006952260620892048, 0.030595410615205765, -0.009069354273378849, 0.0011669622035697103, -0.04676727205514908, 0.012019625864923, -0.003375397762283683, 0.010264487005770206, -0.028136851266026497, -0.0035888145212084055, -0.029611987993121147, -0.027276355773210526, 0.006972748786211014, -0.0023527052253484726, -0.010414732620120049, -0.015748441219329834, -0.01651332713663578, -0.0147103825584054, 0.029311496764421463, -0.006235180888324976, 0.012060602195560932, 0.020856782793998718, -0.034993503242731094, -0.015516243875026703, -0.017701631411910057, -0.027727091684937477, -0.01034643966704607, -0.008413737639784813, 0.007184457965195179, -0.007560071535408497, -0.009854727424681187, -0.0003931134706363082, -0.005330294370651245, -0.02399827539920807, -0.031005170196294785, 0.007635194342583418, -0.0015383071731776, 0.010858639143407345, 0.02567829191684723, -0.0007691535865888, 0.01419135369360447, -0.009363015182316303, -0.00266856187954545, -0.0012079383013769984, -0.008229346014559269, 0.0006189082632772624, 0.017455775290727615, -0.013105489313602448, -0.004186381120234728, 0.019327012822031975, 0.008202028460800648, 0.016854792833328247, 0.021170930936932564, -0.013597201555967331, 0.004811265040189028, 0.027003182098269463, 0.01815236732363701, -0.015762099996209145, -0.003906378522515297, -0.02487242966890335, 0.012108406983315945, -0.02317875623703003, -0.007437143474817276, -0.009888874366879463, 0.019736772403120995, 0.006784942001104355, 0.034337885677814484, 0.0020573365036398172, 0.011159129440784454, 0.016144542023539543, -0.02484511211514473, 0.014341599307954311, -0.0007751293014734983, 0.013979644514620304, 0.032507624477148056, -0.01003911904990673, 1.7273410776397213e-05, 0.0165406446903944, -0.024517305195331573, 0.0030885657761245966, 0.024804137647151947, 0.005104926414787769, 0.012053772807121277, -0.005794689059257507, 0.009909361600875854, 0.00992984976619482, -0.005760542117059231, 0.04343455657362938, 0.00358198513276875, -0.009499602019786835, 0.01960018463432789, -0.011678159236907959, 0.023533880710601807, 0.001525502186268568, -0.022905582562088966, -0.0013291588984429836, 0.011575719341635704, 0.021430445834994316, 0.013522079214453697, 0.02800026535987854, 0.03824426233768463, 0.03655058890581131, -0.006651770323514938, 0.04348919168114662, 0.009356185793876648, -0.0007102506351657212, 0.0044595543295145035, 0.01711430773139, -0.028765149414539337, 0.025241214781999588, 0.0033873491920530796, 0.021252883598208427, -0.0015050142537802458, -0.01356988400220871, 0.03496618568897247, 0.008686911314725876, 0.003506862325593829, -0.01856212690472603, -0.010530831292271614, 0.020132873207330704, -0.019941652193665504, 0.009670334868133068, 0.018548468127846718, -0.0008425689302384853, 0.007232263684272766, 0.024585599079728127, -0.006269327364861965, 0.0121152363717556, -0.007047871593385935, 0.01856212690472603, 0.005685419775545597, -0.007566900923848152, -0.02901100553572178, 0.002875149017199874, -0.0146147720515728, -0.014860628172755241, -0.031824689358472824, 0.00030710655846633017, 0.009793262928724289, -0.007587388623505831, -0.005466880742460489, -0.0061737168580293655, 0.008673252537846565, -0.0030492970254272223, 0.02214069664478302, -0.024312425404787064, -0.011104495264589787, 0.02670269086956978, 0.018685054033994675, 0.004141990561038256, -0.033518366515636444, 0.0028563684318214655, -0.025828536599874496, 0.008523006923496723, 0.0144235510379076, -0.014669407159090042, -0.008686911314725876, -0.007430314086377621, -0.02005092054605484, -0.00886447448283434, -0.0010764736216515303, 0.04365309700369835, -0.020774830132722855, -0.008331785909831524, 0.018002120777964592, -0.003909793216735125, 0.010366926901042461, -0.012163042090833187, -0.034392520785331726, 0.03466569259762764, -0.011889868415892124, -0.025978781282901764, -0.014805993996560574, -0.007389338221400976, -0.030158333480358124, 0.008202028460800648, 0.003240518504753709, -0.023547539487481117, -0.006583476904779673, 0.009895702823996544, 0.005388343706727028, -0.007669340819120407, 0.0025985611137002707, 0.014437209814786911, 0.000650920788757503, -0.0009825702290982008, -0.006204449106007814, 0.017892852425575256, 0.035430580377578735, 0.06834796071052551, 0.015488927252590656, 0.0011831818846985698, 0.02107532136142254, -0.01171913556754589, -0.020747512578964233, -0.03431056812405586, -0.009294722229242325, 0.03073199838399887, 0.006508354097604752, -0.019135789945721626, 0.007676170207560062, 0.013918180018663406, -0.00015910211368463933, 0.015065507963299751, -0.0064434753730893135, -0.0030014917720109224, -0.014683065935969353, -0.006160058081150055, 0.0098069217056036, 0.014765017665922642, -0.0031534445006400347, 0.029530035331845284, 0.00888496171683073, 0.010284975171089172, 0.0165406446903944, 0.02655244618654251, 0.004783947486430407, 0.0014853798784315586, -0.02696220576763153, -0.029584670439362526, 0.013911350630223751, 0.01856212690472603, 0.014368915930390358, -0.012886950746178627, 0.02279631234705448, 0.005658102221786976, -0.0067883566953241825, -0.025022676214575768, 0.001792699913494289, 0.0022007524967193604, 0.013180612586438656, 0.010052777826786041, -0.016759183257818222, 0.0007661657873541117, -0.022441187873482704, -0.006064447574317455, 0.02697586454451084, -0.0016928209224715829, -0.004299065098166466, 0.018288953229784966, 0.0071639702655375, -0.02110263891518116, 0.015611855313181877, -0.010954249650239944, -0.023096803575754166, -0.005716151557862759, -0.01242938544601202, -0.025186579674482346, -0.021580692380666733, -0.03849012032151222, -0.006815674249082804, 0.0038005237001925707, -0.008529836311936378, -0.020843124017119408, -0.02175825461745262, 0.0221133790910244, -0.010189364664256573, -0.024981699883937836, 0.0109610790386796, 0.007389338221400976, -0.04889802262187004, -0.03368226811289787, -0.011999137699604034, 0.016240153461694717, 0.01128888688981533, -0.004107843618839979, 0.011063518933951855, 0.014573796652257442, 0.02148508094251156, 0.005203951615840197, -0.024271449074149132, 0.0034812523517757654, -0.029775891453027725, -0.0024875844828784466, -0.008017636835575104, -0.03299933671951294, 0.012408898212015629, -0.004900046158581972, -0.0037254011258482933, -0.008386421017348766, -0.0053917584009468555, -0.010394244454801083, 0.004958095494657755, 0.018889933824539185, 0.018862618133425713, 0.022181672975420952, -0.003126127179712057, 0.022850947454571724, -0.041467707604169846, -0.0003649424761533737, -0.010626441799104214, -0.01453282032161951, -0.01921774260699749, 0.019081156700849533, 0.009123988449573517, 0.007239092607051134, -0.0031329563353210688, -0.01119327638298273, -0.013009878806769848, 0.014573796652257442, -0.00029046006966382265, -0.0008647642680443823, 0.0066825021058321, 0.015038191340863705, -0.01647235080599785, -0.018493833020329475, 0.026224637404084206, 0.02319241501390934, -0.010804004967212677, -0.0050468770787119865, -0.03947354480624199, 0.03764328360557556, 0.006095179356634617, -0.002016360405832529, 0.013501591049134731, 0.021662643179297447, -0.012395239435136318, -0.012572801671922207, -0.0030919804703444242, -0.011432303115725517, 0.015434292145073414, -0.025323165580630302, -0.015789417549967766, -0.012777681462466717, 0.008536665700376034, -0.015939662232995033, -0.007443972863256931, -0.027890995144844055, -0.00022771557269152254, -0.026825619861483574, -0.0012856218963861465, 0.013597201555967331, -0.00813373550772667, 0.036058876663446426, -0.028246121481060982, -0.01647235080599785, 0.0027675870805978775, 0.011753281578421593, 0.02235923521220684, -0.0221133790910244, -0.002306607086211443, -0.04073014110326767, -0.026456834748387337, 0.006658599711954594, -0.020624585449695587, -0.013303540647029877, -0.0030441752169281244, 0.050427794456481934, 0.016363080590963364, -0.008721058256924152, -0.003913207910954952, 0.018234318122267723, -0.005244927480816841, -0.007341532967984676, -0.0022434359416365623, -0.012190358713269234, -0.01431428175419569, 0.012764022685587406, -0.011534743010997772, 0.0052244397811591625, -0.003687839722260833, -0.019887017086148262, 0.009158135391771793, 0.0032353964634239674, 0.016048932448029518, -0.007594218011945486, 0.0064264023676514626, -0.03160615265369415, -0.03196127712726593, -0.0009953752160072327, 0.04559262469410896, -0.0019770918879657984, 0.009123988449573517, -0.01839822344481945, 0.002315143821761012, 0.006685916800051928, -0.009007889777421951, 0.018234318122267723, 0.00046482146717607975, 0.030185651034116745, -0.006395670119673014, -0.004715654533356428, 0.008454713970422745, -0.0051595610566437244, -0.008782521821558475, -0.006549329962581396, -0.034993503242731094, -0.015379657968878746, -0.011753281578421593, 0.015488927252590656, 0.010428391396999359, -0.024107545614242554, 0.019682137295603752, -0.0006411036010831594, 0.02399827539920807, -0.013023537583649158, -0.028956370428204536, -0.012565972283482552, -0.014546479098498821, 0.004937607795000076, -0.02879246696829796, -0.020993368700146675, 0.020351411774754524, -0.022400211542844772, 0.005190292838960886, 0.019927993416786194, 0.010093754157423973, -0.01755138486623764, -0.011862550862133503, 0.025623656809329987, -0.012825487181544304, 0.02737196534872055, 0.012668412178754807, 0.033327143639326096, 0.020966051146388054, -0.004196625202894211, -0.009226428344845772, -0.016581621021032333, 0.00674396613612771, -0.004715654533356428, 0.0066961608827114105, 0.04239649698138237, -0.01607625000178814, 0.004643946420401335, 0.019272377714514732, -0.005422490183264017, 0.003274664981290698, -0.04488237574696541, 0.012600119225680828, 0.009547407738864422, -0.009233257733285427, -0.03261689469218254, -0.02738562412559986, -0.016445033252239227, 0.028710516169667244, 0.005603467579931021, 0.022304601967334747, -0.004217112902551889, 0.0010594002669677138, 0.011145471595227718, 0.044609203934669495, -0.013699641451239586, 0.01899920403957367, -0.010797175578773022, -0.0053917584009468555, -0.025350483134388924, -0.009438137523829937, 0.005719566252082586, -0.015966979786753654, 0.01797480322420597, 0.019791405647993088, -0.005565906409174204, 0.006576647516340017, 0.004370773211121559, 0.018316270783543587, -0.005343953147530556, 0.0024346571881324053, -0.012668412178754807, 0.024708526208996773, -0.021799230948090553, -0.016376739367842674, 0.0031995424069464207, -0.017168942838907242, 0.009526919573545456, -0.007491778116673231, -0.012190358713269234, -0.003619546303525567, -0.0023100217804312706, 0.023943640291690826, 0.01943628117442131, -0.0006218961207196116, -0.01776992343366146, 0.0025746584869921207, 0.00983423925936222, -0.011063518933951855, 0.006218107417225838, 0.009363015182316303, 0.018753347918391228, -0.027686115354299545, -0.025186579674482346, 0.011739622801542282, -0.003327592508867383, 0.009158135391771793, -0.014860628172755241, -0.017715290188789368, -0.0028119778726249933, 0.031223710626363754, -0.006204449106007814, -0.0002443620760459453, 0.012716217897832394, -0.0026344151701778173, -0.03051345981657505, 0.02336997725069523, 0.0023851445876061916, 0.006576647516340017, 0.024968041107058525, -0.008195199072360992, -0.02320607379078865, -0.03212518244981766, -0.006935187615454197, -0.006733722053468227, 0.017879193648695946, -0.011985478922724724, 0.006177131552249193, 0.0054839542135596275, 0.0022792897652834654, -0.003464179113507271, -0.012504508718848228, 0.002907588379457593, 0.015079166740179062, 0.009294722229242325, -0.0005932982894591987, -0.028054898604750633, 0.004876143764704466, -0.010155217722058296, 0.018138708546757698, -0.00805178377777338, -0.03223445266485214, -0.030349554494023323, -0.020788488909602165, -0.0034488129895180464, -0.009369844570755959, -0.0025541705545037985, -0.003773206379264593, -0.018480174243450165, -0.018343588337302208, 0.028519293293356895, -0.010168876498937607, 0.0016006248770281672, 0.016854792833328247, -0.008768863044679165, 0.003909793216735125, 0.01565283164381981, -0.005473710130900145, -0.04297016188502312, -0.0059961541555821896, -0.0032661284785717726, -0.02341095358133316, -0.006757624913007021, -0.0147103825584054, 0.051301948726177216, 0.014464527368545532, -0.019286036491394043, -0.019996287301182747, -0.02343827113509178, -0.052777085453271866, 0.0007721414440311491, -0.021362153813242912, 0.020132873207330704, 0.034337885677814484, 0.04215064272284508, 0.008188369683921337, 0.0269212294369936, -0.01587137021124363, 0.02214069664478302, -0.035403262823820114, -0.0020300191827118397, -0.020105555653572083, -0.018207000568509102, -0.007191287353634834, 0.0030492970254272223, -0.043762363493442535, 0.005695663392543793, 0.020406046882271767, -0.009547407738864422, 0.019094815477728844, 0.023055827245116234, -0.019777748733758926, -0.008878132328391075, -0.010817662812769413, 0.00792885571718216, 0.031633470207452774, 0.017660655081272125, 0.007532753981649876, -0.017865534871816635, 0.020774830132722855, -0.010004973039031029, -0.004995657131075859, -0.01674552448093891, 0.014915263280272484, 0.03253494203090668, -0.021990451961755753, 0.007348362356424332, 0.002113678492605686, -0.01669088937342167, -0.0002094684459734708, -0.012244993820786476, 0.010967908427119255, 0.016431374475359917, 0.01056497823446989, 0.031442247331142426, -0.017865534871816635, -0.0007892147987149656, -0.0119240153580904, -0.0032268597278743982, 0.020624585449695587, 0.023137779906392097, 0.008577642031013966, -0.03567643463611603, -0.007348362356424332, -0.025377800688147545, 0.0047019957564771175, 0.0010235462104901671, -0.009567894972860813, -0.02190849930047989, 0.013153295032680035, -0.021730937063694, -0.012927927076816559, 0.0028427098877727985, -0.013767935335636139, -0.009683993645012379, -0.004900046158581972, -0.008645934984087944, -0.01001180149614811, -0.00931521039456129, -0.007177629042416811, -0.026593422517180443, -0.002117093186825514, -0.015789417549967766, 0.002593439072370529, -0.04092136397957802, -0.0026122198905795813, 0.008441055193543434, -0.015830393880605698, 0.0031892983242869377, 0.20914149284362793, -0.005190292838960886, 0.007744463626295328, 0.01674552448093891, 0.02570560947060585, 0.003517106408253312, 0.0036571077071130276, 0.0067712836898863316, -0.011507425457239151, -0.0037390596698969603, 0.005244927480816841, -1.5499384971917607e-05, -0.03925500437617302, 0.00010724186722654849, 0.0019514819141477346, -0.017168942838907242, -0.043735045939683914, -0.029120275750756264, -0.009875215590000153, 0.009260575287044048, 0.01863042078912258, 0.0005817738128826022, -0.01983238197863102, -0.009335697628557682, 0.03447447344660759, 0.010954249650239944, -0.0008613496320322156, 0.011131812818348408, 0.03403739631175995, 0.02651146985590458, -0.01241572666913271, -3.219923746655695e-05, 0.013952326960861683, -0.012791340239346027, -0.016212835907936096, 0.005412246100604534, 0.020528974011540413, -0.011917185969650745, 0.0056717609986662865, 0.027290014550089836, 0.01774260587990284, -0.018466515466570854, 0.013761105947196484, -0.054661981761455536, 0.014041108079254627, -0.008755204267799854, -0.0065185981802642345, -0.0017944072606042027, 0.008379591628909111, 0.03996525704860687, -0.004681507591158152, 0.013262564316391945, 0.029366131871938705, -0.002525145886465907, 0.01483331061899662, 0.012081089429557323, -0.013344516046345234, 0.012982562184333801, -0.016649913042783737, -0.017387481406331062, -0.005497612990438938, -0.010168876498937607, 0.0004078392230439931, -0.006515183486044407, -0.02259143255650997, 0.02462657354772091, -0.0050639500841498375, 0.0288471020758152, -0.010032289661467075, 0.011418644338846207, -0.014123060740530491, 5.730237171519548e-05, -0.02425779029726982, 0.0014870872255414724, -0.012197188101708889, 0.0034232030156999826, 0.01981872320175171, 0.018534809350967407, 0.04387163370847702, 0.016977721825242043, 0.0014315989101305604, -0.0001526996202301234, -0.02589683048427105, -0.02610171027481556, 0.015133801847696304, -0.029393449425697327, 0.025022676214575768, -0.020310435444116592, 0.001146474271081388, -0.02130751870572567, -0.004664434120059013, 0.01669088937342167, -0.008092759177088737, -0.03319055587053299, 0.005255171563476324, 0.0008775692549534142, 0.025541704148054123, 0.0030663704965263605, -0.027290014550089836, -0.031688105314970016, -0.0071434821002185345, 0.04747752100229263, 0.0030475896783173084, 0.04706776142120361, -0.005425904877483845, 0.011855721473693848, -0.012688900344073772, 0.008065441623330116, 0.011138642206788063, -0.01085180975496769, -0.002984418533742428, -0.036031559109687805, 0.02046068198978901, -0.013952326960861683, -0.017933828756213188, 0.02024214342236519, 0.006501524709165096, 0.006156643386930227, 0.01608990877866745, 0.008010807447135448, 0.015270388685166836, 0.005722980946302414, -0.004042964894324541, -0.002547341166064143, -0.004425407852977514, -0.032070547342300415, 0.00983423925936222, 0.01158254873007536, -0.02588317170739174, -0.03739742562174797, 0.0145191615447402, -0.014765017665922642, 0.023875348269939423, -0.008092759177088737, 0.005128828808665276, -0.006935187615454197, -0.008550324477255344, -0.016608936712145805, 0.004947851411998272, -0.007642023265361786, 0.012606948614120483, 0.007013724651187658, 0.009847898036241531, 0.007293727248907089, -0.005268830340355635, 0.018657736480236053, -0.006040544714778662, 0.0031534445006400347, -0.029967112466692924, 0.0013001342304050922, 0.004456139635294676, -0.007327874191105366, -0.011124983429908752, -0.018930910155177116, 0.036878395825624466, -0.021389471367001534, -0.048378992825746536, -0.0213484950363636, 0.009670334868133068, 0.03504813462495804, -0.056492242962121964, 0.012723047286272049, 0.0438443161547184, 0.010892786085605621, -0.013044025748968124, -0.003363446332514286, -0.173847496509552, -0.0001346659119008109, 0.000879276602063328, -0.007717146072536707, 0.004906875547021627, 0.02233191765844822, 0.010052777826786041, -0.023738760501146317, -0.014751358889043331, -0.00616688746958971, 0.006952260620892048, -0.018958227708935738, -0.03887256234884262, -0.022236308082938194, 0.01056497823446989, -0.02529584802687168, 8.232547406805679e-05, 0.02901100553572178, 0.0380803607404232, 0.003325885161757469, 0.018029438331723213, -0.013467444106936455, -0.0030988098587840796, -0.014259646646678448, 0.008823498152196407, 0.022441187873482704, -0.000403570884373039, 0.018002120777964592, -0.008632277138531208, -0.022523140534758568, 0.013371833600103855, -0.0043673585169017315, 0.017005039379000664, 0.011637182906270027, 0.006822503637522459, -0.0026634398382157087, -0.0006496402784250677, -0.022891923785209656, -0.0017440408701077104, 0.021143615245819092, 0.03780718520283699, 0.02047434076666832, 0.03534862771630287, 0.014136718586087227, -0.003471008501946926, 0.0265387874096632, 0.0347476452589035, -0.016212835907936096, 0.0238480307161808, 0.007109335623681545, 0.026893911883234978, -0.012613778002560139, -0.0003371983184479177, 0.0053268796764314175, 0.02048799768090248, 0.005108341109007597, 0.014027449302375317, 0.024489987641572952, 0.003872231813147664, -0.0011541572166606784, 0.00023753273126203567, -0.019750431180000305, -0.005630785133689642, -0.015010873787105083, -0.023151438683271408, -0.018889933824539185, -0.012326945550739765, 0.021771913394331932, -0.0020334338769316673, 0.007771780714392662, -0.001470013870857656, -0.012531825341284275, 0.016007956117391586, 0.01565283164381981, 0.012449873611330986, 0.008809839375317097, -0.010141558945178986, 0.0035000331699848175, 0.02002360299229622, 0.00047037028707563877, 0.006163472775369883, 0.009342527016997337, 0.005975666455924511, 0.00736885005608201, -0.0073005566373467445, -0.015844052657485008, 0.007184457965195179, -0.009171794168651104, 0.008249834179878235, -0.0031568591948598623, 0.016649913042783737, -0.02175825461745262, -0.00941082090139389, 0.011951332911849022, 0.003274664981290698, 0.001458916231058538, 0.022427529096603394, 0.011842062696814537, -0.012046943418681622, -0.0013897692551836371, 0.011254740878939629, 0.02214069664478302, -0.0555088184773922, 0.03496618568897247, 0.043953586369752884, 0.011978649534285069, 0.022482164204120636, 0.011575719341635704, 0.01611722633242607, -0.016417715698480606, -0.03827157989144325, 0.016827475279569626, 0.02342461235821247, 0.00888496171683073, -0.02901100553572178, 0.027317332103848457, -0.017237236723303795, -0.011985478922724724, 0.010824492201209068, -0.01378842256963253, 0.0351300872862339, -0.03764328360557556, -0.020829465240240097, -0.0037936943117529154, 0.006228351499885321, -0.0009407405741512775, -0.11932210624217987, -0.02215435542166233, 0.03234371915459633, 0.017906511202454567, -0.018043097108602524, 0.008215687237679958, 0.011862550862133503, 0.03496618568897247, 0.009499602019786835, 0.02862856350839138, -0.01962750218808651, -0.00021021539578214288, 0.0061054234392941, -0.016021614894270897, -0.0027231965214014053, -0.008659593760967255, 0.0036912544164806604, -0.022891923785209656, -0.009738628752529621, 0.03887256234884262, 0.0053166355937719345, -0.011725964024662971, 0.012484020553529263, 0.013180612586438656, -0.011958161368966103, -0.022905582562088966, -0.027699774131178856, 0.0207065362483263, 0.011309375055134296, -0.001169523224234581, 0.024175837635993958, -0.03198859468102455, 0.01410940196365118, -0.02168996073305607, -0.003687839722260833, -0.004223942290991545, -0.028109533712267876, 0.003342958400025964, 0.013761105947196484, -0.019968969747424126, 0.022632408887147903, 0.0041829664260149, 0.009786433540284634, -0.027931971475481987, -0.0032661284785717726, -0.003896134439855814, -0.02088410034775734, 0.019286036491394043, 0.00402589188888669, -0.008659593760967255, -0.01919042505323887, -0.02278265357017517, -0.05116536095738411, -0.031660787761211395, 0.009424479678273201, 0.018698712810873985, 0.004244430456310511, 0.018452856689691544, -0.017250895500183105, 0.006501524709165096, -0.011029372923076153, 0.002250265097245574, -0.015803076326847076, -0.0017568458570167422, 0.011862550862133503, 0.020160190761089325, -0.01296890340745449, -0.010312292724847794, -0.016622595489025116, 0.01419135369360447, -0.015830393880605698, 0.017032356932759285, -0.03575838729739189, 0.004312723875045776, -0.0329447016119957, -0.0066825021058321, 0.0042922357097268105, -0.03157883509993553, 0.01002546027302742, 0.015475268475711346, -0.01606259122490883, -0.01400013267993927, -0.016199177131056786, -0.03054077737033367, 0.018726030364632607, 0.004944437183439732, 0.022004110738635063, -0.011971820145845413, 0.02132117748260498, -0.036031559109687805, 0.014587454497814178, 0.02133483625948429, 0.00011919320240849629, 0.012716217897832394, -0.0006611648132093251, 0.01450550276786089, -0.0037254011258482933, -0.007443972863256931, 0.02759050391614437, 0.001978799235075712, 0.0010474489536136389, -0.0008583617745898664, -0.04116721823811531, 0.0056717609986662865, -0.0016680645057931542, 0.0065185981802642345, 0.016376739367842674, -0.02377973683178425, 0.0032917384523898363, -0.0014222086174413562, -0.0003132956335321069, -0.011343521997332573, -0.017483092844486237, 0.022236308082938194, -0.01939530484378338, -0.013959156349301338, -0.03201591223478317, -0.007628364954143763, 0.020788488909602165, 0.003095395164564252, 0.01074254047125578, 0.019135789945721626, -0.030322236940264702, -0.00362979038618505, -0.0003632351290434599, 0.024899747222661972, -0.02237289398908615, -0.001536599942483008, -0.022099720314145088, 0.017196260392665863, -0.0042000398971140385, -0.03947354480624199, 0.00794251449406147, 0.0012847682228311896, -0.017920169979333878, 0.027412941679358482, -0.007498607505112886, -0.05083755403757095, 0.0005600053118541837, 0.00443565146997571, 0.016445033252239227, 0.01400013267993927, -0.021471422165632248, -0.024162178859114647, 0.012921097688376904, -0.036414001137018204, -0.01566649042069912, -0.004824923817068338, -0.029530035331845284, -0.003913207910954952, 0.004848826210945845, -0.0031141757499426603, 0.043325286358594894, 0.012989390641450882, -0.01671820692718029, -0.013884034007787704, -0.005787859670817852, 0.0027368550654500723, 0.015229412354528904, 0.022687043994665146, 0.019996287301182747, -0.0029673450626432896, 0.04318870231509209, -0.005726395640522242, 0.00847520213574171, -0.0030680778436362743, 0.02529584802687168, -0.016813818365335464, -0.05070096626877785, -0.006474207621067762, 0.0016561131924390793, -0.02468120865523815, 0.011145471595227718, -0.014983556233346462, 0.027317332103848457, 0.030622728168964386, 0.008946426212787628, 0.004391260910779238, -0.001402574242092669, -0.018903592601418495, 0.006221522111445665, 0.021020686253905296, 0.005893714260309935, -0.011548401787877083, -0.026648057624697685, 0.008727887645363808, 0.014327940531075, 0.015161118470132351, -0.0009620822384022176, 0.008891791105270386, 0.03160615265369415, 0.005722980946302414, -0.009861556813120842, -0.00014448307047132403, -0.01984604075551033, 0.014560137875378132, 0.01128888688981533, -0.0007657389505766332, -0.0207065362483263, 0.0023680711165070534, 0.006228351499885321, 0.016185518354177475, 0.012518167495727539, 0.01589868776500225, 0.015120143070816994, -0.012866463512182236, -0.00969765242189169, 0.004309309180825949, -0.04496432840824127, -0.02024214342236519, 0.02107532136142254, 0.011964990757405758, 0.008311297744512558, -0.012313286773860455, 0.022413870319724083, 0.015447950921952724, -0.036878395825624466, -0.005972251761704683, -0.00362979038618505, -0.03193395957350731, -0.027262696996331215, -0.0006043959292583168, 0.008024466224014759, 0.019736772403120995, 0.009540578350424767, -0.015092825517058372, 0.03133298084139824, -0.009779605083167553, 0.020733853802084923, -0.013105489313602448, 0.014245987869799137, -0.023697784170508385, -0.007402996998280287, -0.0014879408990964293, -0.005142487585544586, -0.013658666051924229, -0.009451796300709248, -0.00813373550772667, -0.013125977478921413, 0.011145471595227718, 0.004299065098166466, 0.07588754594326019, 0.03472032770514488, 0.000957813928835094, -0.001481965184211731, -0.017264554277062416, 0.010428391396999359, 0.020337752997875214, -0.010271316394209862, -0.003841499797999859, -0.026388542726635933, 0.030458824709057808, -0.02046068198978901, -0.0035136917140334845, -0.021389471367001534, -0.025309506803750992, -0.014450868591666222, 0.006890797056257725, 0.019286036491394043, -0.008536665700376034, 0.0055693211033940315, 0.023151438683271408, 0.015406974591314793, 0.002617341699078679, -0.0036980838049203157, -0.02569195069372654, -0.015980638563632965, 0.027522211894392967, 0.031442247331142426, 0.00039844890125095844, -0.018261635676026344, 0.015092825517058372, 0.008331785909831524, -0.03567643463611603, -0.020433364436030388, -0.014560137875378132, 0.019736772403120995, -0.003407837124541402, -0.015188436023890972, 0.01606259122490883, 0.027330990880727768, 0.03570375218987465, 0.018971886485815048, -0.021730937063694, -0.028491975739598274, -0.008611788973212242, 0.005524930078536272, -0.008482031524181366, -0.0008609227952547371, 0.004944437183439732], "f565e74a-3b4b-425b-98ec-027ab439c3d9": [-0.006562662776559591, 0.0027151615358889103, 0.011975457891821861, -0.01943557895720005, -0.015214720740914345, 0.020122695714235306, -0.0035495171323418617, -0.03407536447048187, -0.014625763520598412, -0.040385618805885315, 0.02730236016213894, 0.035982463508844376, 0.018790530040860176, -0.006776510272175074, -0.00168098125141114, 0.012844869866967201, 0.02428746223449707, -0.008750217035412788, 0.015116561204195023, -0.017851004377007484, -0.01729009300470352, -0.01992637664079666, -0.026825586333870888, -0.01455564983189106, -0.012459243647754192, 0.0013610864989459515, 0.019295351579785347, -0.011288341134786606, -0.02287116087973118, 0.021945657208561897, 0.00967572070658207, -0.009893073700368404, -0.025942150503396988, -0.016490794718265533, -0.026292720809578896, -0.0002137379051418975, -0.0064890431240201, -0.011610864661633968, -0.0019211213802918792, -0.013714282773435116, 0.02822786383330822, 0.015284834429621696, -0.008140225894749165, -0.008329533971846104, -0.009184923954308033, 0.02302541211247444, 0.0014609987847507, 0.000983347767032683, -0.010250655002892017, 0.0005517089157365263, -0.01194741204380989, -0.012879926711320877, -0.02779315784573555, 0.005577562376856804, -0.010061347857117653, -0.01764066144824028, 8.004216397239361e-06, 0.0013987726997584105, -0.004059595987200737, 0.0009886062471196055, 0.02292725257575512, 0.010587201453745365, -0.008140225894749165, -0.00619456497952342, -0.01944960094988346, -0.027610860764980316, -0.017865026369690895, -0.020403150469064713, -0.016154246404767036, -0.007880804128944874, 0.04018929973244667, 0.02302541211247444, -0.004557404667139053, 0.013665203005075455, -0.005815949756652117, -0.019211214035749435, -0.004669587127864361, -0.013174405321478844, -0.01323750801384449, 0.008771250955760479, 0.024806303903460503, -0.03659946471452713, -0.028045568615198135, 0.013251530937850475, 0.041198939085006714, 0.02116038091480732, 0.03957229480147362, 0.0032340046018362045, -0.014723923057317734, 0.015298857353627682, 0.004638035781681538, 0.015607358887791634, 0.03317790850996971, 0.012452231720089912, 0.008308499120175838, 0.020879926159977913, -0.0058720409870147705, 0.008518841117620468, -0.003943908028304577, -0.017836980521678925, -0.012634528800845146, -0.00280630961060524, -0.003723049070686102, -0.015705518424510956, -0.02686765417456627, -0.007677474059164524, 0.016098156571388245, -0.005234003998339176, -0.021749338135123253, 0.009093775413930416, -0.031495172530412674, 0.03090621531009674, 0.000879053259268403, 0.014057841151952744, 0.004122698679566383, -0.009402276948094368, 0.007333916146308184, -0.036795783787965775, -0.014695877209305763, -0.023109547793865204, -0.002247151220217347, -0.004820331931114197, 0.03228044882416725, -0.020164763554930687, 0.02606835588812828, 0.013139348477125168, 0.008196317590773106, -0.006976334843784571, 0.0034794032108038664, -0.016476770862936974, 0.0021244517993181944, 0.0024049074854701757, 0.0075723035261034966, 0.02205783873796463, -0.012354073114693165, -0.0016494299052283168, -0.008028043434023857, -0.003600349882617593, -0.004855388775467873, -0.035000868141651154, 0.027680976316332817, 0.02770902030169964, 0.016631022095680237, -0.012017525732517242, -0.013328656554222107, 0.030737942084670067, -0.010713406838476658, -0.0030709896236658096, -0.0016406656941398978, 0.017794912680983543, 0.020585447549819946, -0.017851004377007484, -0.03435581922531128, -0.013300610706210136, 0.0021139346063137054, 0.009332162328064442, -0.00016465815133415163, 0.00595968309789896, -0.02958807349205017, -0.016238383948802948, -0.010012268088757992, -0.006429446395486593, 0.0073689729906618595, -0.014513581059873104, 5.554337258217856e-05, 0.04473268240690231, 0.012781767174601555, -0.0216792244464159, -0.0037966687232255936, -0.012010514736175537, -0.011218227446079254, 0.017416298389434814, -0.03270113095641136, 0.01215074211359024, 0.011372477747499943, 0.0180753692984581, 0.0037405777256935835, -0.002348816255107522, -0.00013420241884887218, -0.03135494515299797, 0.04548991098999977, -0.009858016856014729, 0.022618750110268593, 0.027652930468320847, -0.02159508690237999, -0.018804553896188736, 0.035085003823041916, 0.024497803300619125, 0.0012681855587288737, -0.00996318832039833, 0.00879929680377245, 0.0038632769137620926, -5.614591282210313e-05, 0.005076247733086348, -0.6241821646690369, -0.002166520105674863, 0.020865902304649353, -0.00903067272156477, -0.007284836377948523, 0.030317258089780807, 0.01037686038762331, -0.006212093401700258, -0.017346182838082314, 0.04776160046458244, 0.008764239959418774, 0.017037682235240936, -0.013546009548008442, -0.006969323847442865, 0.003666958073154092, -0.024133211001753807, -0.0032217346597462893, -0.0009517964790575206, -0.007467132527381182, 0.000122808909509331, -0.03536546230316162, 0.02430148422718048, 0.004837860353291035, 0.00841367058455944, 0.00864504650235176, -0.021496927365660667, 0.02292725257575512, -0.010727429762482643, -0.009016649797558784, 0.024133211001753807, -0.02124451845884323, 0.0023382992949336767, 0.009142855182290077, 0.01499035581946373, 0.04680805280804634, -0.00011130584607599303, -0.0049605597741901875, 0.01761261746287346, 0.020571423694491386, 0.05129534378647804, -0.02198772504925728, -0.011800172738730907, 0.01985626295208931, 0.013987726531922817, 0.0002743207151070237, -0.002243645489215851, 0.007446098141372204, 0.013517963699996471, -0.013104291632771492, -0.029279572889208794, 0.017430320382118225, -0.012368095107376575, -0.01146362628787756, -0.0068150730803608894, 0.015677472576498985, 0.0013812442775815725, 0.02597019635140896, -0.008455738425254822, 0.007649428676813841, -0.0026695874985307455, 0.004059595987200737, 0.003866782644763589, -0.030289214104413986, -0.030345303937792778, -0.047481145709753036, 0.001233128597959876, 0.004476773552596569, -0.017444342374801636, 0.0083575788885355, 0.011779138818383217, 0.024399643763899803, -0.0019737067632377148, 0.0019368970533832908, -0.005591585300862789, -0.01215775404125452, 0.009633652865886688, 0.01166695635765791, 0.00115425034891814, -0.022127952426671982, 0.01581769995391369, -0.014653809368610382, -0.011645922437310219, -0.029784392565488815, -0.014597717672586441, 0.029363710433244705, 0.010425940155982971, -0.0278632715344429, -0.014170023612678051, 0.011120067909359932, 0.006064854096621275, -0.008490795269608498, 0.03558982536196709, -0.012080628424882889, -0.012613493949174881, 0.010545133613049984, 0.017977209761738777, -0.008266431279480457, -0.0059351432137191296, -0.0011218227446079254, -0.0110429422929883, -0.0031744076404720545, -0.029335664585232735, 0.009549516253173351, 0.0061735305935144424, 0.020627515390515327, 0.025044692680239677, -0.010180541314184666, -0.022324271500110626, 0.020080626010894775, -0.020992107689380646, -0.015593335963785648, -0.005489919800311327, -0.015537244267761707, -0.021763360127806664, 0.02424539253115654, -0.02421734854578972, -0.00046362829743884504, -0.004950042814016342, 0.0034969316329807043, -0.004830848891288042, -0.0024978083092719316, 0.0013409287203103304, 0.012858892790973186, -0.0003691936144605279, 0.006783521734178066, 0.026376856490969658, 0.011772126890718937, -0.004985099658370018, 0.027933385223150253, -0.00841367058455944, 0.001335670123808086, -0.029279572889208794, 0.005780892912298441, -0.008098158054053783, 0.026194561272859573, -0.009787903167307377, 0.04153548553586006, 0.000663891201838851, 0.0071656424552202225, -0.05782996118068695, 0.005672215949743986, 0.00025043817004188895, 0.010131461545825005, -0.040301479399204254, 0.014226114377379417, -0.021847497671842575, -0.024133211001753807, 0.006229621823877096, -0.02034705877304077, -0.019547760486602783, -0.009149866178631783, -0.0005850130110047758, -0.006944783963263035, 0.02376861870288849, -0.018313756212592125, 0.0013496929313987494, 0.0020420679356902838, -0.0565398633480072, -0.02475021407008171, -0.010257665999233723, -0.01592988334596157, 0.010355825535953045, 0.0039649419486522675, -0.00858895480632782, -0.008736194111406803, -0.015523222275078297, -0.011961434967815876, 0.0031568792182952166, -0.016532862558960915, -0.025030668824911118, 0.015326903201639652, -0.028424182906746864, 0.0043856254778802395, 0.026741448789834976, -0.01633654348552227, 0.021398767828941345, -0.024049075320363045, 0.004567922092974186, -0.00018120066670235246, 0.005907097831368446, 0.006671339273452759, 0.012171776033937931, 0.0011700260220095515, -0.006972829345613718, 0.026713402941823006, -0.014429444447159767, 0.01757054775953293, 0.006411917973309755, -0.03228044882416725, 0.007824713364243507, 0.010215598158538342, -0.020851880311965942, -0.0007296229596249759, -0.014205080457031727, -0.025002622976899147, 0.003999999258667231, -0.023572299629449844, 0.005560033954679966, -0.004532864782959223, 0.02776511199772358, 0.0125714261084795, 0.018411915749311447, -0.01107098814100027, -0.009851005859673023, 0.008539875037968159, -0.00812620297074318, 0.016855387017130852, -0.020599469542503357, 0.025843990966677666, 0.016056086868047714, -0.005738824140280485, -0.008063101209700108, 0.001394390594214201, -0.006790533196181059, 0.012045571580529213, 0.04058193787932396, 0.028802799060940742, 0.018187550827860832, 0.006674845237284899, 0.024483781307935715, 0.01367221400141716, -0.0012778261443600059, 0.034664321690797806, 0.004802803508937359, -0.006990357767790556, 0.008736194111406803, 0.009654686786234379, 0.03169149160385132, 0.005563539452850819, -0.02036108262836933, -0.002667834749445319, 0.021903589367866516, 0.0188886895775795, 0.01320946216583252, 0.05208062008023262, 0.01849605143070221, 0.03839438408613205, 0.0014960557455196977, 0.021749338135123253, 0.005777386948466301, -0.003458369057625532, 0.008504818193614483, 0.032869406044483185, -0.022226111963391304, 0.03037334978580475, -0.010496053844690323, 0.010741452686488628, 0.005682733375579119, -0.024049075320363045, 0.029447846114635468, 0.02033303678035736, 0.006366343703120947, -0.020375104621052742, 0.006057842634618282, 0.034159500151872635, -0.01522874366492033, 0.012837858870625496, 0.003992987796664238, 0.02331988885998726, 0.028396137058734894, 0.006892198231071234, -0.018664324656128883, 0.025900082662701607, -0.012087639421224594, 0.021538997069001198, -0.003503943094983697, 0.006475020665675402, -0.023964937776327133, 0.0018755473429337144, -0.01635056547820568, -0.004869411699473858, -0.03931988775730133, 0.006678350735455751, -0.0017730057006701827, 0.016995614394545555, 0.0007879051845520735, 0.0034741447307169437, -0.002878176514059305, 0.000377300544641912, 0.01587379164993763, -0.03264503926038742, -0.028830843046307564, 0.021020153537392616, 0.004420682787895203, -0.0021174403373152018, -0.029672211036086082, -0.006681856699287891, -0.01189132034778595, 0.00275021861307323, -0.0005696755833923817, -0.005353197921067476, 0.0029272560495883226, 0.006653810851275921, -0.005044696386903524, -0.0015328655717894435, 0.024932509288191795, 0.03659946471452713, -0.010040313005447388, -0.005563539452850819, 0.007249779533594847, -0.00552497711032629, 0.015621380880475044, -0.014499559067189693, -0.01169500220566988, 0.033233996480703354, -0.015789654105901718, -0.028045568615198135, -0.039516206830739975, -0.005794915370643139, -0.024567916989326477, 0.01674320362508297, 0.0011998245026916265, -0.015060469508171082, -0.0020105165895074606, -0.03718842193484306, 0.023277821019291878, -0.010909725911915302, -0.005570550914853811, 0.014240137301385403, 0.005942154675722122, 0.014282205142080784, -0.034131456166505814, -0.002031550742685795, 0.02956002950668335, 0.06758981943130493, 0.020809810608625412, -0.00216126162558794, 0.02686765417456627, -0.01594390533864498, -0.020879926159977913, -0.007936895824968815, -0.026138469576835632, 0.027063973248004913, 0.00011251093383179978, -0.025002622976899147, 0.007761611137539148, 0.011610864661633968, 0.001938649918884039, 0.026222605258226395, -0.009577561169862747, 0.0062226103618741035, -0.02432953007519245, -0.008652057498693466, 0.010299734771251678, -0.003276072908192873, -0.010636281222105026, 0.007404029835015535, 0.025030668824911118, 0.02644697017967701, 0.0008168271742761135, 0.03045748732984066, 0.020122695714235306, 0.017879050225019455, -0.018902713432908058, -0.0255495123565197, 0.017360206693410873, 0.020879926159977913, 0.022787023335695267, -0.019337419420480728, 0.020936015993356705, 0.015270811505615711, -0.020178785547614098, -0.01901489496231079, 0.014611740596592426, -0.009528481401503086, 0.016883431002497673, 0.013167394325137138, -0.01858018897473812, 0.008883433416485786, -0.025787899270653725, -0.003106046700850129, 0.024876419454813004, -0.012879926711320877, -0.006965817883610725, 0.00949342455714941, 0.016869409009814262, -0.020529355853796005, 0.01541103981435299, -0.0046064844354987144, -0.003235757350921631, -0.010208587162196636, -0.009542504325509071, -0.03957229480147362, -0.026124445721507072, -0.024834349751472473, -0.020907970145344734, -0.017276069149374962, -0.01011743862181902, -0.004031550604850054, -0.02817177213728428, 0.0037616118788719177, 0.004921996966004372, -0.006275195628404617, 0.015985973179340363, 0.012045571580529213, -0.020823834463953972, -0.034664321690797806, 0.000955302151851356, 0.021356699988245964, 0.01904294081032276, -0.010215598158538342, 0.016925500705838203, 0.0037686231080442667, 0.010895702987909317, 0.009381242096424103, -0.028774753212928772, -0.003996493294835091, -0.013356701470911503, -0.0002997370029333979, -0.0143733536824584, -0.03087816946208477, 0.0038457484915852547, -0.006755476351827383, 0.01412094384431839, 0.0007037684554234147, 0.003055213950574398, 0.005672215949743986, 0.014184045605361462, 0.024427689611911774, 0.021300608292222023, 0.039011385291814804, -0.0014688866212964058, 0.019183168187737465, -0.03788956254720688, 0.009479401633143425, 0.007144608534872532, -0.016140224412083626, -0.024806303903460503, 0.0035968441516160965, 0.024385621771216393, -0.008245397359132767, -0.0011481154942885041, 0.006106922402977943, -0.00885538849979639, 0.01810341328382492, 0.02243645489215851, -0.0009623135556466877, -0.00885538849979639, 0.0011717788875102997, -0.00879929680377245, 0.0051989471539855, 0.01988430693745613, 0.024385621771216393, 0.0037020149175077677, -0.01813145913183689, -0.01681331731379032, 0.025815945118665695, -0.02432953007519245, 0.006773004774004221, 0.016084132716059685, 0.0150184016674757, -0.021510951220989227, -0.01946362480521202, 0.007460121065378189, -0.018439961597323418, -0.002722172997891903, -0.009437333792448044, -0.009822960011661053, -0.023656437173485756, 0.0021542501635849476, -0.02200174890458584, -0.01588781364262104, -0.02420332469046116, 0.006688868161290884, -0.0095144584774971, -0.0006700261728838086, 0.016434703022241592, -0.009318140335381031, 0.0220858845859766, -0.02776511199772358, -0.006650305353105068, -0.0003943908086512238, 0.01717790961265564, 0.022324271500110626, -0.019730057567358017, -0.013770373538136482, -0.03042944148182869, -0.015467130579054356, -0.0004583697591442615, -0.021370721980929375, -0.022198066115379333, 0.0014198068529367447, 0.049191925674676895, 0.0143733536824584, 0.014962310902774334, 0.0015232248697429895, 0.004883434623479843, 0.0016485535306856036, -0.00792287290096283, 0.001212970819324255, -0.015957927331328392, -0.019631898030638695, 0.016210338100790977, -0.00967572070658207, -0.007249779533594847, -0.0008028043666854501, -0.005686238873749971, 0.007481155451387167, -0.0017405780963599682, 0.02155301906168461, -0.014737945981323719, 0.0007918491028249264, -0.02606835588812828, -0.05213671177625656, 0.0027099030558019876, 0.04223662614822388, -0.004192812368273735, 0.01125328429043293, -0.013917612843215466, -0.011113055981695652, 0.016168270260095596, -0.009177912026643753, 0.02604031004011631, 0.02078176662325859, 0.036879923194646835, 0.010727429762482643, -0.0005872040637768805, 0.007747588213533163, -0.027568792924284935, -0.016042064875364304, -0.008659069426357746, -0.037356697022914886, -0.017794912680983543, -0.011134090833365917, 0.008203328587114811, 0.0008667833171784878, -0.012508323416113853, 0.00409114733338356, 0.010453985072672367, 0.0059386491775512695, -0.021538997069001198, -0.03845047205686569, -0.008168271742761135, -0.01901489496231079, 0.0008295353036373854, -0.022380363196134567, -0.021062221378087997, 0.018285710364580154, 0.002904469147324562, 0.00046362829743884504, 0.011344431899487972, 0.012087639421224594, -0.03177562728524208, -0.030345303937792778, 0.035533733665943146, -0.0070148976519703865, 0.05415599048137665, 0.013728305697441101, 0.0398247055709362, 0.010951794683933258, 0.0004358018341008574, -0.015425062738358974, -0.018397891893982887, 0.004403154365718365, -0.014681855216622353, 0.00176774722058326, 0.036823831498622894, -0.01583172380924225, -0.0006086764624342322, 0.02029096893966198, -0.01937948726117611, 0.001852760324254632, -0.05440840125083923, 0.01720595546066761, 0.0018422432476654649, -0.012192810885608196, -0.03298158943653107, -0.028480274602770805, -0.030709896236658096, 0.018832599744200706, 0.001843996113166213, 0.02870463952422142, -0.00508325919508934, 0.006850129924714565, -0.002091147704049945, 0.048827335238456726, -0.02648903802037239, 0.026306742802262306, 0.00020179663260933012, 0.006338298320770264, -0.034608229994773865, -0.0010297981789335608, -0.004354074597358704, -0.018229618668556213, 0.0030148986261337996, 0.02869061566889286, -0.014892196282744408, -0.006180542055517435, -0.0008120068232528865, 0.008371601812541485, -0.019169146195054054, -0.014064852148294449, -0.0009509200463071465, 0.03045748732984066, -0.012234878726303577, -0.01146362628787756, -0.0022681853733956814, -0.004848377779126167, 0.014050829224288464, -0.03216826543211937, -0.013833476230502129, 0.008420681580901146, 0.0006231374572962523, 0.009325151331722736, 0.018664324656128883, 0.009745834395289421, 0.0003604293742682785, -0.0039018397219479084, 0.005724801681935787, -0.022184044122695923, 0.007035932037979364, 0.00417878944426775, -0.0003569236723706126, -0.0422646701335907, -0.024007005617022514, 0.007817702367901802, 0.008308499120175838, 0.022829093039035797, -0.01944960094988346, -0.009836982935667038, 0.0018159504979848862, 0.02953198365867138, -0.009900085628032684, 0.009121821261942387, 0.0037475889548659325, 0.004985099658370018, -0.03486064076423645, 0.02389482408761978, -0.007025414612144232, 0.0007234879885800183, 0.0171919334679842, -0.003170901909470558, -0.022155998274683952, -0.002702891593798995, 0.018243642523884773, -0.00797195266932249, -0.0014127955073490739, 0.005419806111603975, 0.005721295718103647, 0.019183168187737465, 0.0010823836782947183, -0.005423311609774828, -0.02734442800283432, 0.004816826432943344, 0.01326555386185646, 0.012606482952833176, 0.02165117859840393, -0.026573175564408302, 0.01210166234523058, -0.0031183166429400444, 0.013805430382490158, -0.0005267308442853391, -0.050089385360479355, -0.02737247385084629, -0.029027162119746208, -0.0006275195628404617, -0.016560908406972885, 0.010902714915573597, -0.0012848376063629985, -0.02330586686730385, -0.009577561169862747, 0.022758977487683296, 0.003531988710165024, 0.0066643282771110535, 0.017486412078142166, -0.021847497671842575, -0.006120945326983929, 0.01452760398387909, 8.80806110217236e-05, -0.02382471039891243, -0.012017525732517242, -0.03514109551906586, -0.025367215275764465, -0.009458367712795734, -0.004248903598636389, 0.043891314417123795, 0.007537246216088533, -0.021412791684269905, -0.0193654652684927, -0.015116561204195023, -0.028382115066051483, -0.015004378743469715, -0.02420332469046116, 0.010643293149769306, 0.044368088245391846, 0.025703763589262962, -0.0026573175564408302, 0.02341804839670658, -0.014282205142080784, 0.01845398359000683, -0.03749692440032959, -0.008673091419041157, -0.01499035581946373, -0.018762484192848206, 0.01145661436021328, -0.01592988334596157, -0.049163881689310074, 0.0033006127923727036, 0.012269935570657253, -0.009339174255728722, 0.004827343393117189, 0.02381068654358387, -0.010517087765038013, 0.01034881453961134, -0.007887816056609154, -0.012136719189584255, 0.045630138367414474, 0.02247852273285389, 0.003905345220118761, -0.03931988775730133, 0.015284834429621696, 0.008098158054053783, 0.0033479395788162947, -0.019702011719346046, 0.01594390533864498, 0.03340227156877518, 0.0029728300869464874, 0.007123574148863554, 0.013384747318923473, -0.030261168256402016, -0.008455738425254822, -0.014794036746025085, 0.016687113791704178, 0.009458367712795734, 0.0033847494050860405, 0.017023660242557526, -0.012010514736175537, -0.002312006428837776, -0.01940753310918808, 0.007663451600819826, 0.020417174324393272, 0.007859770208597183, 0.0300368033349514, -0.02476423606276512, -0.011645922437310219, -0.0031849248334765434, 0.009177912026643753, 0.001451358082704246, -0.015607358887791634, -0.013777385465800762, 0.001126204850152135, -0.03525327891111374, -0.004220857750624418, 0.02386677823960781, -0.010902714915573597, -0.0021507444325834513, -0.0085959667339921, -0.0014829094288870692, -0.0013838735176250339, 0.009388254024088383, -0.011765115894377232, -0.006916738115251064, -0.026166515424847603, -0.006068359594792128, 0.005353197921067476, -0.052725668996572495, 0.004585450515151024, 0.021721292287111282, -0.009766869246959686, 0.00013025851512793452, 0.2106783092021942, -0.013069234788417816, -0.002215599874034524, 0.020178785547614098, 0.0032638029661029577, -0.014836105518043041, -0.0030324270483106375, 0.001194565906189382, -0.008981592953205109, 0.009248025715351105, 0.007467132527381182, -0.006404906511306763, -0.02344609424471855, -0.006348815280944109, 0.017963185906410217, -0.020978085696697235, -0.033766862004995346, -0.017752844840288162, -0.023123571649193764, 0.013973704539239407, 0.0043049948289990425, -0.010187552310526371, -0.025843990966677666, -0.00970376655459404, 0.02556353434920311, 0.014310250990092754, 0.017093773931264877, 0.01639263518154621, 0.0018878172850236297, 0.030513577163219452, -0.006131462287157774, -0.01893075741827488, 0.024161256849765778, -0.015256788581609726, -0.031130580231547356, 0.0034618747886270285, 0.0171919334679842, -0.0050306739285588264, 0.012312004342675209, 0.016028042882680893, -0.0034215592313557863, -0.01772479899227619, -0.0036459239199757576, -0.02953198365867138, 0.012297981418669224, -0.01280280202627182, -0.012781767174601555, -0.004883434623479843, 0.019155122339725494, 0.028101658448576927, -0.023586323484778404, -0.01125328429043293, 0.012052582576870918, -0.0005569674540311098, 0.013111302629113197, 0.009353197179734707, -0.017023660242557526, 0.019085008651018143, -0.021342677995562553, -0.002645047614350915, -0.00972480047494173, 0.01148466020822525, 0.004497807938605547, -0.0004152058681938797, -0.026769494637846947, 0.026797540485858917, -0.004147238563746214, 0.022170022130012512, 0.005538999568670988, 0.00303768552839756, -0.004161261022090912, -0.0003464065957814455, -0.024483781307935715, -0.0026205077301710844, -0.0003334793436806649, -0.0012410164345055819, 0.00928308255970478, 0.024581940844655037, 0.04504118114709854, 0.004929008428007364, 0.01391060184687376, -0.0017896577483043075, -0.026194561272859573, -0.010299734771251678, -0.0005337421898730099, -0.0007769498624838889, 0.024497803300619125, -0.01769675314426422, 0.008378613740205765, 0.005924626253545284, -0.005416300147771835, 0.01856616511940956, -0.002015775302425027, -0.006934266537427902, -0.005549516528844833, -0.006047325674444437, 0.011211215518414974, 0.022366341203451157, -0.01166695635765791, -0.04181594029068947, -0.010867657139897346, 0.0396844781935215, 0.009921119548380375, 0.017879050225019455, -0.011267307214438915, -0.0004097282071597874, -0.0013058717595413327, 0.015621380880475044, 0.026306742802262306, 0.008960559032857418, -0.002953548915684223, -0.0467519611120224, 0.011449603363871574, -0.006913232617080212, -0.001528483466245234, 0.02383873239159584, 0.020122695714235306, -0.011085011065006256, 0.005304118152707815, 0.018299732357263565, 0.0259561724960804, 0.00033457487006671727, 0.004343557171523571, 0.010979839600622654, -0.03528132289648056, -0.026671335101127625, 0.0063593327067792416, 0.007141102571040392, -0.02556353434920311, -0.028550388291478157, 0.010979839600622654, -0.01845398359000683, 0.013630146160721779, -0.009297105483710766, 0.004007010720670223, -0.011982468888163567, -0.012269935570657253, -0.008420681580901146, 0.002743207151070237, -0.008911479264497757, 0.008210339583456516, 0.00540578318759799, 0.016434703022241592, 0.007326904684305191, -0.0014066605363041162, 0.021721292287111282, -0.005875546485185623, 0.0014084134018048644, -0.03163539990782738, -0.01815950497984886, 0.008876422420144081, -0.008028043434023857, -0.0159018374979496, -0.0026397891342639923, 0.031915854662656784, -0.026643289253115654, -0.04708850756287575, -0.033794909715652466, 0.006415423471480608, 0.018271688371896744, -0.053595080971717834, -0.0006450480432249606, 0.03889920189976692, 0.01801927760243416, -0.02685363218188286, -0.005784398410469294, -0.18005254864692688, 0.006468009203672409, 0.005479402840137482, -0.009549516253173351, 0.0039649419486522675, 0.012403151951730251, 0.009163889102637768, -0.009577561169862747, -0.007446098141372204, -0.003333916887640953, 0.010313757695257664, -0.00949342455714941, -0.03472041338682175, -0.037300605326890945, -0.015354948118329048, -0.029335664585232735, -0.005086764693260193, 0.038141973316669464, 0.04324626550078392, 0.006681856699287891, 0.020907970145344734, -0.02916739135980606, -0.00143207679502666, -0.0068816812708973885, 0.016042064875364304, 0.022198066115379333, -0.013665203005075455, 0.029027162119746208, 0.002082383492961526, -0.03222435712814331, 0.013048200868070126, -0.00406310148537159, 0.016476770862936974, 0.010776509530842304, -0.011673967353999615, -0.01391060184687376, -0.006618754006922245, -0.0028571421280503273, -0.002820332534611225, 0.025423306971788406, 0.03744083270430565, 0.01150569412857294, 0.015579313039779663, 0.019070986658334732, 0.008105169050395489, 0.021973703056573868, 0.02770902030169964, -0.012697630561888218, 0.020515331998467445, -0.013553020544350147, -0.0022787023335695267, -0.017879050225019455, -0.013980715535581112, -0.0016468006651848555, 0.0010595966596156359, 0.010678349994122982, 0.0029553016647696495, 0.020150739699602127, -0.006867658346891403, 0.00406310148537159, 0.014962310902774334, -0.02379666455090046, 0.007516212295740843, -0.011589830741286278, -0.016518838703632355, -0.019505692645907402, 0.004578439053148031, 0.010054335929453373, -0.006699385121464729, 0.01385451015084982, 0.005693250335752964, 0.020950039848685265, 0.014625763520598412, 0.01100087445229292, 0.033374227583408356, 0.0010254160733893514, -0.03539350628852844, -0.00972480047494173, 0.019127076491713524, -0.002082383492961526, 0.0216792244464159, 0.02559158019721508, 0.0018545131897553802, -0.006997369229793549, -0.01123225037008524, 0.010531110689043999, 0.022787023335695267, -0.008273442275822163, 0.0011481154942885041, 0.006853635888546705, 0.019309373572468758, -0.021875543519854546, -0.0028028038796037436, 0.009640663862228394, 0.01729009300470352, 0.0026327776722609997, 0.019183168187737465, 0.00818229466676712, 0.01325854193419218, 0.0017081503756344318, -0.004459245130419731, 0.024946533143520355, -0.023992983624339104, 0.029419800266623497, 0.022815069183707237, 0.009591584093868732, 0.029812438413500786, -0.004462751094251871, 0.01629447564482689, -0.020080626010894775, -0.02869061566889286, 0.013356701470911503, 0.023502185940742493, 0.013503940775990486, -0.031579308211803436, 0.03934793174266815, -0.013363713398575783, -0.02783522568643093, 0.02030499093234539, -0.01894478127360344, 0.02913934551179409, -0.035085003823041916, -0.02780717983841896, -0.005507448222488165, -0.0009780891705304384, -0.026264674961566925, -0.1088728979229927, -0.021384745836257935, 0.031130580231547356, 0.025437330827116966, -0.012746710330247879, 0.0092410147190094, 0.00864504650235176, 0.019533738493919373, -0.0025731809437274933, 0.024399643763899803, -0.02648903802037239, -0.003926379606127739, -0.0018510074587538838, -0.01764066144824028, 0.016504816710948944, -0.009626640938222408, 0.012136719189584255, -0.013335667550563812, -0.015284834429621696, 0.04105871170759201, 0.004227869212627411, 0.0013505694223567843, 0.009065729565918446, 0.014282205142080784, -0.013482906855642796, -0.022843115031719208, -0.030653806403279305, 0.00905170664191246, 0.01388956792652607, 0.004476773552596569, 0.039544250816106796, -0.01677124947309494, 0.01811743713915348, -0.02599824219942093, -0.0012296228669583797, -0.017051706090569496, -0.03707624226808548, -0.006145485211163759, 0.010685360990464687, -0.019085008651018143, 0.00473619531840086, -0.003589832689613104, -0.00032887811539694667, -0.03306572511792183, -0.0004728307540062815, -0.005998245906084776, -0.02911129966378212, 0.024483781307935715, 0.00616651913151145, -0.012304993346333504, -0.01806134544312954, -0.009360208176076412, -0.040750209242105484, -0.016098156571388245, 0.03124276176095009, 0.012417174875736237, 0.01771077699959278, 0.027049949392676353, -0.015789654105901718, 0.01194040011614561, -0.011162135750055313, -0.002636283403262496, -0.011183170601725578, 0.01434530783444643, 0.012536369264125824, 0.015733564272522926, 0.0007453986327163875, -0.013735316693782806, -0.0060893939808011055, 0.0048729171976447105, -0.01772479899227619, 0.009893073700368404, -0.013482906855642796, -0.000295793084660545, -0.029896575957536697, 0.006345309782773256, 0.006597719620913267, -0.022268181666731834, 0.007270813453942537, 0.014751968905329704, -0.0008207710925489664, -0.010047324933111668, 0.01060823630541563, -0.03185976669192314, 0.017836980521678925, -0.0009772127959877253, 0.020950039848685265, -0.009163889102637768, 0.025928126648068428, -0.047060463577508926, -0.006071865558624268, 0.02648903802037239, 0.013475894927978516, 0.01808939129114151, 0.0058860634453594685, 0.01768273115158081, -0.012094651348888874, -0.013048200868070126, 0.024988600984215736, -0.00015950917440932244, -0.00817528273910284, -0.012248901650309563, -0.038170017302036285, 0.014569672755897045, 0.008932513184845448, 0.00242594163864851, -0.0031884305644780397, -0.023628391325473785, -0.00231025367975235, 0.009633652865886688, -0.008631023578345776, -0.0010622258996590972, -0.020529355853796005, 0.01901489496231079, -0.003926379606127739, 0.004886940121650696, -0.02998071163892746, 0.016154246404767036, 0.0038702883757650852, -0.01083961222320795, 0.021272562444210052, 0.00475722923874855, -0.01499035581946373, 0.009942153468728065, 0.0036354067269712687, 0.0278632715344429, -0.012473266571760178, 0.016939522698521614, -0.028830843046307564, 0.010860646143555641, -0.014541626907885075, -0.038674838840961456, 0.01238912995904684, -0.000525854411534965, 0.002264679642394185, 0.0013321645092219114, -0.0028992106672376394, -0.035561781376600266, 0.02686765417456627, 0.0001966476411325857, 0.02075372077524662, 0.028410160914063454, -0.02432953007519245, -0.022380363196134567, 0.00947239063680172, -0.024806303903460503, -0.02956002950668335, -0.006299735512584448, -0.0190289169549942, -0.013314633630216122, -0.00651358300819993, -0.0067309364676475525, 0.03842242807149887, 0.012283958494663239, -0.027077995240688324, -0.023684483021497726, 0.002304995199665427, -0.008652057498693466, 0.015214720740914345, 0.0242594163864851, 0.0005407535936683416, -0.00838562473654747, 0.042545124888420105, -0.007207710761576891, 0.0259561724960804, -0.012066605500876904, 0.03567396104335785, -0.021875543519854546, -0.02911129966378212, -0.010446974076330662, -0.008680103346705437, -0.008939525112509727, 0.012494300492107868, -0.018187550827860832, 0.031130580231547356, 0.027989476919174194, 0.008708149194717407, 0.01592988334596157, -0.010026290081441402, -0.024553894996643066, 0.007712531369179487, 0.020879926159977913, 0.011540750972926617, -0.03306572511792183, -0.009332162328064442, 0.026250651106238365, 0.025226987898349762, 0.010573179461061954, -0.0021332160104066133, 0.039488159120082855, 0.018636280670762062, -0.0015302363317459822, -0.003996493294835091, 0.006341803818941116, -0.02299736626446247, 0.003880805568769574, 0.010005256161093712, 0.0110429422929883, -0.02510078251361847, 0.019519714638590813, 0.031158626079559326, 0.022688863798975945, -0.008203328587114811, 0.015088515356183052, 0.0022576681803911924, -0.018776508048176765, -0.01591585949063301, 0.014170023612678051, -0.039488159120082855, -0.031579308211803436, 0.012206833809614182, 0.008378613740205765, -0.004774758126586676, -0.012312004342675209, 0.003915862645953894, 0.011190181598067284, -0.02207186259329319, 0.005114810541272163, -0.006141979247331619, -0.03317790850996971, -0.027232246473431587, 0.0004018403997179121, 0.01628045178949833, 0.019702011719346046, -0.0006954424316063523, -0.038226108998060226, 0.0273163840174675, -0.000630148861091584, 0.028157750144600868, -0.006755476351827383, 0.023067479953169823, -0.013244519010186195, -0.0033321641385555267, 0.0028992106672376394, -0.01013847254216671, -0.013272564858198166, -0.005454862955957651, -0.008259419351816177, -0.015999997034668922, 0.024021029472351074, -0.004028044641017914, 0.070674829185009, 0.03185976669192314, -0.009605607017874718, -0.0034618747886270285, -0.01581769995391369, 0.005437334533780813, 0.004392636939883232, 0.008932513184845448, 0.0013575807679444551, -0.0199123527854681, 0.021763360127806664, -0.025843990966677666, 0.015130584128201008, -0.01806134544312954, -0.014780014753341675, -0.006545134354382753, -0.0007221733685582876, 0.015509199351072311, 0.003908851183950901, 0.016518838703632355, 0.0184820294380188, 0.004448728170245886, 0.014261171221733093, -0.022240135818719864, -0.02646099403500557, -0.01499035581946373, 0.027120064944028854, 0.011877298355102539, -0.002292725257575512, -0.02207186259329319, 0.025507444515824318, 0.0015127077931538224, -0.0316634476184845, -0.0056021022610366344, -0.01365819200873375, 0.016112178564071655, -0.005219981539994478, -0.01721997931599617, 0.012879926711320877, 0.017879050225019455, 0.0015889566857367754, 0.0011191933881491423, -0.008287465199828148, -0.011169147677719593, -0.009276071563363075, -0.007049954496324062, 0.00140315480530262, -0.0150184016674757, 0.008771250955760479], "d3a7ae68-5174-4258-8292-0a9451e8b916": [0.0029714542906731367, 0.006954687647521496, 0.01158884447067976, -0.02779112569987774, -0.016671912744641304, 0.015677399933338165, -0.01476576179265976, -0.029503898695111275, 0.011547406204044819, -0.04389671981334686, 0.012320916168391705, 0.018495187163352966, 0.016160843893885612, -0.01740398444235325, -0.01377124898135662, 0.01979357935488224, 0.01088439766317606, -0.02288762293756008, -0.007127346470952034, -0.01564977504312992, -0.017804553732275963, 0.01377124898135662, -0.01160956360399723, -0.01029735803604126, -0.015359708108007908, -0.005048537161201239, 0.007914669811725616, -0.006923609413206577, -0.031023293733596802, 0.03886890038847923, 0.015083453617990017, -0.010380234569311142, -0.02388213574886322, 5.595217226073146e-05, -0.030636539682745934, 0.003447992028668523, -0.004603077657520771, -0.00041394896106794477, 0.009889883920550346, -0.018674751743674278, 0.023633508011698723, 0.021230099722743034, 0.00062286586035043, -0.018260372802615166, -0.008978246711194515, 0.03129955008625984, 0.02049802802503109, -0.006232975050806999, -0.012162070721387863, 0.004585811868309975, -0.003732878714799881, -0.019724516198039055, -0.03221118450164795, 0.010587424039840698, 0.006274412851780653, -0.024614207446575165, 0.019683077931404114, -0.007907763123512268, 0.019102945923805237, 0.00027862779097631574, 1.0150436537514906e-05, 0.007735104765743017, -0.02100909687578678, -0.006643902510404587, -0.022404177114367485, -0.022873809561133385, -0.01814987137913704, -0.017666425555944443, -0.019724516198039055, -0.015829339623451233, 0.025788286700844765, 0.027777312323451042, -0.0101108867675066, 0.008688179776072502, -0.006550666876137257, -0.01116755697876215, -0.010255919769406319, -0.024807585403323174, 0.0007346622878685594, 0.0037743167486041784, 0.02454514428973198, -0.010179949924349785, -0.03746000677347183, 0.004281932953745127, 0.03792963922023773, 0.0187990665435791, 0.022929059341549873, 0.008308331482112408, -0.014461883343756199, 0.00020762195345014334, 0.007472663652151823, 0.007631509564816952, 0.02397882379591465, 0.008998965844511986, 0.005725358612835407, 0.022998124361038208, -0.0011231440585106611, 0.0070686424151062965, -0.02035989984869957, -0.03400683403015137, -0.012231133878231049, -0.0003986255032941699, -0.018108433112502098, -0.007845605723559856, -0.027114303782582283, -0.023150062188506126, 0.020940033718943596, -0.007534820586442947, -0.011112306267023087, 0.020857157185673714, -0.044918857514858246, 0.022542305290699005, 0.006612823810428381, 0.008784868754446507, 0.0008192649693228304, -0.01687910407781601, 0.02689330093562603, -0.032515063881874084, -0.015787901356816292, -0.0183432474732399, -0.005493996199220419, -0.012320916168391705, 0.03826114162802696, -0.016105592250823975, 0.01885431818664074, 0.001537524745799601, 0.01460000965744257, -0.0004972566966898739, 0.01015232503414154, -0.016906728968024254, -0.004268120042979717, -0.008957527577877045, 0.012686952948570251, 0.013128958642482758, -0.010331889614462852, -0.0037881294265389442, -0.014503320679068565, -0.0015133525012061, -0.018122244626283646, -0.033923957496881485, 0.0300840325653553, 0.02754249796271324, 0.025263404473662376, -0.018881943076848984, 0.0018060087459161878, 0.030719416216015816, 0.00212197401560843, 0.018453748896718025, 0.010214481502771378, 0.010829146020114422, 0.016948167234659195, -0.01683766581118107, -0.0235091932117939, -0.008121860213577747, 0.0188128799200058, 0.019241072237491608, 0.007831793278455734, 0.01627134531736374, -0.019531138241291046, 0.00380194210447371, 0.0007994092302396894, 0.0042715733870863914, 0.009233781136572361, -0.003960787784308195, 0.009516941383481026, 0.04972567409276962, 0.01189272291958332, -0.025277215987443924, -0.011278058402240276, -0.01283198595046997, -0.0055596064776182175, 0.02454514428973198, -0.04000154137611389, 0.012610983103513718, 0.016865290701389313, 0.017431611195206642, 0.005449105054140091, 0.014171816408634186, -0.009979666210711002, -0.03273606672883034, 0.019489701837301254, 0.006581745110452175, -0.00039474069490097463, 0.013301617465913296, -0.029724901542067528, -0.018357060849666595, 0.025594908744096756, 0.01566358655691147, -0.009620536118745804, 0.001096382038667798, 0.0048378934152424335, 0.003011165652424097, -0.027487246319651604, -0.011036336421966553, -0.6196923851966858, 0.014254692941904068, 0.015594523400068283, -0.018674751743674278, 0.0012500481680035591, 0.017652614042162895, 0.012355448678135872, -0.01500057801604271, -0.013764342293143272, 0.01500057801604271, 0.010808427818119526, 0.02077428065240383, 0.00944787822663784, -0.00907493568956852, 0.016671912744641304, -0.025000963360071182, -0.009820820763707161, -0.0352776013314724, -0.01730729639530182, 0.0016480261692777276, -0.015401145443320274, 0.018039368093013763, 0.0003463962930254638, -0.0010937921470031142, 0.008280705660581589, -0.012093007564544678, 0.04154856130480766, -0.008211642503738403, 6.442323501687497e-05, 0.0195173267275095, -0.027114303782582283, 0.011243526823818684, 0.0034894300624728203, 0.00631239777430892, 0.046244874596595764, -0.006236427929252386, -0.021685918793082237, 0.024614207446575165, 0.024393204599618912, 0.044974107295274734, -0.024241264909505844, -0.01785980351269245, 0.02636841870844364, 0.01225185301154852, -0.0026710282545536757, 0.0020494575146585703, 0.0062882257625460625, 0.01015232503414154, -0.010394047014415264, -0.025967851281166077, 0.014227067120373249, -0.020332274958491325, -0.008833212777972221, 0.00848789606243372, 0.0023999542463570833, -0.004171431530267, 0.01133330911397934, -0.011015617288649082, 0.015180142596364021, 0.005583778489381075, 0.00961363036185503, 0.006395273841917515, -0.016934353858232498, -0.03867552429437637, -0.05950505658984184, 0.0022566476836800575, -0.0012871697545051575, -0.03132717311382294, 0.01504201628267765, -0.0065990108996629715, 0.018467562273144722, -0.012231133878231049, 0.004820627626031637, -0.014917701482772827, 0.007631509564816952, 0.019006257876753807, 0.014903889037668705, 0.0006479013245552778, -0.024199826642870903, -0.009655067697167397, -0.004413153510540724, -0.003639643080532551, -0.02683805115520954, -0.013356868177652359, 0.03320569917559624, 0.01566358655691147, -0.015967465937137604, -0.012617889791727066, -0.003891724394634366, 0.0025018230080604553, 0.006018878426402807, 0.038150642067193985, -0.009807007387280464, -0.018495187163352966, 0.0016462996136397123, 0.02718336693942547, -0.014123472385108471, 0.006761310156434774, -0.008246174082159996, -0.00799063965678215, -0.011581937782466412, -0.028564635664224625, -0.008163297548890114, 0.0038675523828715086, 0.025884974747896194, 0.012396886013448238, 0.0027556309942156076, -0.0375981330871582, 0.01799793168902397, -0.03629974275827408, 0.005121053662151098, -0.007935388945043087, -0.00973103754222393, -0.017707863822579384, 0.012949394062161446, -0.023992637172341347, -0.005083068739622831, -0.011982506141066551, -0.0002941670536529273, -0.03328857570886612, -0.02290143445134163, -0.008391207084059715, 0.00886083859950304, -0.00011406257544877008, 0.0031872775871306658, 0.011312590911984444, 0.008867745287716389, 0.006264053285121918, 0.0039020839612931013, -0.015304457396268845, 0.006157005205750465, -0.024420829489827156, 0.0047066728584468365, 0.0006638722843490541, 0.015014390461146832, -0.019572576507925987, 0.030636539682745934, -0.0021409664768725634, 0.003601658158004284, -0.05212907865643501, -0.005369681864976883, 0.019669266417622566, 0.010987992398440838, -0.02487664856016636, 0.002422400051727891, -0.022542305290699005, -0.017293483018875122, -0.003264973871409893, -0.003501516068354249, 0.009579097852110863, -0.0031631053425371647, -0.01707248017191887, -0.010400952771306038, 0.02718336693942547, -0.012320916168391705, -0.002581245731562376, 0.006761310156434774, -0.04428347572684288, -0.00463070347905159, -0.0267966128885746, -0.016395660117268562, 0.016492348164319992, -0.011326403357088566, -0.003202816704288125, -0.014696698635816574, -0.004126540385186672, -0.004126540385186672, -0.0014425624394789338, -0.016561411321163177, -0.02124391309916973, 0.01105014979839325, -0.004734298214316368, -0.0002315783203812316, 0.024144576862454414, 0.00038028054405003786, 0.022500867024064064, -0.02556728385388851, -0.01631278358399868, 0.006906343623995781, -0.0015211221762001514, 0.007300004828721285, 0.020152710378170013, -0.018453748896718025, -0.015111079439520836, 0.019627828150987625, 0.0077558234333992004, 0.025967851281166077, 0.013177303597331047, -0.03367533162236214, -0.0058600325137376785, 0.026782799512147903, 0.003701800014823675, -0.011381654068827629, 0.006371101830154657, -0.024186015129089355, 0.008253080770373344, -0.029172394424676895, 0.004440778866410255, -0.008335956372320652, 0.0183432474732399, 0.01961401477456093, 0.022072672843933105, -0.017555924132466316, -0.0016454362776130438, 0.013992251828312874, -0.025498220697045326, 0.011319496668875217, -0.02270805649459362, 0.01754211261868477, 0.01983501762151718, -0.004637609701603651, -0.01631278358399868, -0.006927062291651964, 0.002320531290024519, 0.010470016859471798, 0.027293868362903595, 0.020277023315429688, 0.01669953763484955, -0.003998772706836462, 0.003729425370693207, 0.0055596064776182175, -0.006343476474285126, 0.03472509607672691, -0.0026727549266070127, -0.01678241416811943, 0.03210068494081497, -0.0058151413686573505, 0.02933814749121666, 0.006402180530130863, -0.025028588250279427, -0.0034583513624966145, 0.017431611195206642, -0.008114953525364399, 0.014095846563577652, 0.044974107295274734, 0.0371561273932457, 0.03309519588947296, -0.007196409627795219, 0.030912792310118675, 0.0032528876326978207, -0.013757435604929924, 0.017238233238458633, 0.013287805020809174, -0.01664428785443306, 0.03823351860046387, 0.0010480376658961177, 0.029448648914694786, 0.0049553015269339085, -0.02881326526403427, 0.024614207446575165, 0.01520776841789484, 0.00917162373661995, -0.020290836691856384, 0.005172851029783487, 0.024987149983644485, -0.02323293872177601, 0.023536818102002144, 0.012914862483739853, 0.010877490974962711, 0.018205121159553528, 0.004378621932119131, -0.020277023315429688, 0.0014762309147045016, -0.017555924132466316, 0.010442391037940979, -0.006108660716563463, -0.013474276289343834, -0.037211377173662186, -0.01785980351269245, -0.0187990665435791, -0.011202088557183743, -0.01955876499414444, -0.0022808199282735586, -0.0006232974701561034, -0.0014347928809002042, -0.009848445653915405, 0.006084488704800606, 0.024710897356271744, 0.0009366728481836617, 0.009848445653915405, -0.03859264776110649, -0.01895100623369217, 0.023094812408089638, 0.01083605270832777, 0.006488509476184845, -0.026879489421844482, -0.01795649342238903, -0.007161878049373627, 0.012403792701661587, 0.003646549303084612, -0.012003225274384022, -0.005034724250435829, -0.004060930106788874, -0.009206155315041542, -0.004623796790838242, 0.010021104477345943, 0.04047117382287979, -0.016519973054528236, -0.011664814315736294, 0.017500674352049828, -0.0008719258476048708, 0.0133983064442873, -0.012569544836878777, -0.027376744896173477, 0.023329628631472588, -0.013294710777699947, -0.009572192095220089, -0.013301617465913296, -0.02566397190093994, -0.016934353858232498, 0.007631509564816952, 0.015124891884624958, -0.02323293872177601, -0.00631239777430892, -0.01983501762151718, 0.02454514428973198, 0.019765954464673996, -0.002374055562540889, 0.008149485103785992, 0.014627635478973389, 0.007507195230573416, -0.033868707716464996, -0.0069823130033910275, 0.03649311885237694, 0.06547213345766068, 0.002810881705954671, 0.005932549014687538, 0.016229907050728798, -0.005528527777642012, -0.019641641527414322, -0.027252431958913803, -0.016713351011276245, 0.028951391577720642, 0.0199731457978487, -0.0073276301845908165, 0.010304264724254608, 0.02012508548796177, 0.0012284658150747418, 0.004931129049509764, -0.01125734020024538, -0.005183210596442223, -0.021920733153820038, -0.0014149370836094022, 0.004938035737723112, 0.007341443095356226, -0.01570502482354641, 0.028039753437042236, 0.020981471985578537, 0.017086293548345566, 0.014724324457347393, 0.011319496668875217, 0.009869164787232876, -0.005152132362127304, -0.02030465006828308, -0.010946554131805897, 0.01932394877076149, 0.006274412851780653, 0.02605072781443596, -0.015083453617990017, 0.027722062543034554, 0.0007212812197394669, -0.014054409228265285, -0.024158388376235962, 0.005386947654187679, -0.0064194463193416595, 0.033868707716464996, 0.0030146189965307713, -0.009551472961902618, -0.003594751702621579, -0.013957720249891281, 0.00032654055394232273, 0.0199731457978487, -0.010235200636088848, 0.0012733570765703917, 0.022321302443742752, 0.013446650467813015, -0.023951198905706406, 0.02450370602309704, 0.012044662609696388, -0.019102945923805237, 0.015235393308103085, 0.004806815180927515, -0.03464221954345703, -0.026078352704644203, -0.02045658975839615, -0.01564977504312992, -0.0006578292232006788, -0.017224419862031937, -0.010773895308375359, -0.01500057801604271, 0.008715805597603321, -0.00380194210447371, -0.013156584464013577, -0.008259986527264118, 0.004603077657520771, -0.049477044492959976, -0.027611561119556427, 0.011043243110179901, 0.02544296905398369, 0.025650158524513245, 0.006319303996860981, -0.0025070025585591793, 0.013170396909117699, 0.014779575169086456, 0.011298777535557747, -0.01824655942618847, 0.0015340715181082487, -0.03121667169034481, 0.008902276866137981, -0.024130763486027718, -0.020511839538812637, 0.013094427064061165, -0.003960787784308195, 0.002874765545129776, -0.00311994063667953, -0.011547406204044819, 0.010587424039840698, -0.005369681864976883, 0.011816754005849361, 0.01744542270898819, 0.03873077407479286, -0.008556959219276905, 0.026589421555399895, -0.04964279755949974, -0.0007230078335851431, -0.02270805649459362, -0.00977938249707222, -0.020801905542612076, -0.0026485826820135117, 0.0032995054498314857, -0.008550053462386131, 0.003532594535499811, -0.007410506252199411, -0.002558800159022212, 0.01631278358399868, 0.00041653882362879813, 0.012797454372048378, 0.012535013258457184, 0.020746655762195587, -0.022680431604385376, -0.01299773808568716, 0.021741168573498726, 0.02223842591047287, -0.007963013835251331, -0.004319917876273394, -0.013826499693095684, 0.0176388006657362, -0.007251660339534283, -0.0035533136688172817, 0.015414958819746971, 0.02716955542564392, -0.022155549377202988, -0.011519780382514, 0.013501901179552078, -0.017196794971823692, 0.02638223208487034, -0.025125278159976006, -0.009461690671741962, -0.01645090989768505, 0.0034272728953510523, -0.018412310630083084, 0.00043898445437662303, -0.027445808053016663, 0.00370870647020638, -0.014088940806686878, 0.007500289008021355, 0.007041017059236765, -0.01715535670518875, -0.004627250134944916, -0.028371259570121765, -0.012783641926944256, 0.012162070721387863, 0.005255727097392082, 0.014613823033869267, -0.014323756098747253, -0.011388559825718403, -0.01758355088531971, -0.018536625429987907, -0.003332310589030385, -0.015276831574738026, -0.0228047464042902, 0.016202282160520554, 0.05605188384652138, 0.01678241416811943, 0.0031544724479317665, -0.00559413805603981, 0.025512032210826874, -0.009876071475446224, -0.007431225385516882, -0.005846219602972269, -0.03583011031150818, -0.026824237778782845, 0.02534628100693226, -0.005456011276692152, 0.0012077467981725931, -0.007762730121612549, -0.003584392135962844, 0.01319111604243517, 0.001899244380183518, 0.0221002995967865, -0.014558572322130203, 0.010207575745880604, -0.022556116804480553, -0.04516748711466789, -0.002475924091413617, 0.05088593810796738, -0.003332310589030385, 0.0006448798230849206, -0.028951391577720642, -0.00040617931517772377, 0.009558379650115967, 0.007313817739486694, 0.032515063881874084, 0.005763343535363674, 0.027059054002165794, -0.01589840278029442, 0.006212255917489529, 0.00760388420894742, -0.014448069967329502, -0.002774623455479741, -0.0007661724812351167, -0.0404435470700264, -0.01537352055311203, 0.004534014500677586, 0.04110655561089516, 0.01026973221451044, -0.017707863822579384, 0.0032580674160271883, 0.00792157556861639, 0.018633315339684486, -0.011250433512032032, -0.013736717402935028, 0.012334729544818401, -0.01928251050412655, -0.010221388190984726, -0.017790740355849266, -0.015180142596364021, 0.0015133525012061, 0.003822661004960537, 0.0009289031731896102, 0.014986765570938587, 0.01566358655691147, -0.012099913321435452, -0.01194106787443161, 0.023965012282133102, 0.0006772532942704856, 0.024434642866253853, 0.01144381146878004, 0.03193493187427521, 0.017141545191407204, 0.003240801626816392, -0.016423285007476807, -0.012535013258457184, 0.009751756675541401, -0.008688179776072502, -0.008315237239003181, 0.040968429297208786, -0.0007458850741386414, 0.006647355388849974, 0.010511454194784164, -0.012866517528891563, 0.007348349317908287, -0.044835980981588364, 0.005466370843350887, 0.012465950101613998, -0.02049802802503109, -0.04141043499112129, -0.023909760639071465, -0.010987992398440838, 0.03132717311382294, 0.003456624923273921, 0.017694052308797836, 0.0018180948682129383, 0.002384415129199624, 0.0038986308500170708, 0.052211955189704895, -0.0038744586054235697, 0.016575224697589874, 0.004772283136844635, -0.004268120042979717, -0.03295706957578659, -0.00324943452142179, -0.011416185647249222, -0.011360934935510159, 0.014738136902451515, 0.025083839893341064, -0.012728391215205193, -0.004634156357496977, 0.022266050800681114, 0.019945519044995308, -0.001548747532069683, -0.008909182623028755, -0.022155549377202988, 0.03375820815563202, -0.01635422185063362, 0.005376588553190231, -0.006782029289752245, -0.01062886230647564, 0.02026321180164814, -0.02886851504445076, -0.009461690671741962, 0.0025035494472831488, -0.0015055828262120485, 0.01321183517575264, 0.019158195704221725, 0.004534014500677586, 0.005014005117118359, -0.01805318146944046, 0.013225647620856762, -0.016326595097780228, 0.0022549210116267204, 0.0018716190243139863, 0.005597591400146484, -0.04522273689508438, -0.02368875779211521, -0.0070513766258955, 0.0008641562308184803, 0.0076660411432385445, 0.003318497911095619, -0.02914476953446865, 0.006495416164398193, 0.03212830796837807, -0.005752983968704939, -0.00012399045226629823, 0.015014390461146832, 0.00262095732614398, -0.03254269063472748, 0.0202217735350132, 0.014227067120373249, -0.008833212777972221, 0.01725204661488533, -0.01358477771282196, -0.02120247483253479, -0.012541919946670532, 0.01520776841789484, -0.010994899086654186, 0.027100492268800735, -0.01500057801604271, 0.0029593680519610643, -0.003256340976804495, -0.008405019529163837, 0.0020736295264214277, -0.02556728385388851, 0.006861452013254166, 0.005031271371990442, 0.006201896350830793, 0.0162160936743021, -0.024379393085837364, 0.011126119643449783, 0.00994513463228941, 0.02515290305018425, -0.007721291854977608, -0.031520552933216095, -0.023025749251246452, -0.029697276651859283, -0.008266893215477467, 0.009496222250163555, 0.014240880496799946, -0.002191037405282259, -0.028923766687512398, -0.01715535670518875, 0.020194148644804955, -0.009440971538424492, 0.011222807690501213, 0.0005589821957983077, -0.011851285584270954, -0.007521008141338825, 0.024186015129089355, 0.006550666876137257, -0.0375981330871582, -0.012700765393674374, -0.0061190202832221985, -0.022873809561133385, -0.002619230654090643, -0.0014166636392474174, 0.05204620212316513, 0.012030850164592266, -0.016519973054528236, -0.01584315113723278, -0.02623029239475727, -0.04450447857379913, -0.008688179776072502, -0.020981471985578537, 0.012065381743013859, 0.0540628544986248, 0.04754326865077019, 0.004054023418575525, 0.03610636293888092, -0.01464144792407751, 0.03257031366229057, -0.029227646067738533, -0.012231133878231049, -0.0036534557584673166, -0.036272116005420685, -0.00391244376078248, -0.025829724967479706, -0.044311098754405975, 0.011685533449053764, 0.014821012504398823, -0.018647126853466034, 0.0028022488113492727, 0.02464183233678341, -0.00937881413847208, -0.00040833756793290377, -0.019199633970856667, -0.017334921285510063, 0.02834363281726837, 0.015484021976590157, 0.016492348164319992, -0.021934546530246735, -0.010449297726154327, 0.014102753251791, 0.0010419945465400815, -0.031520552933216095, 0.022445615381002426, 0.00917162373661995, -0.019765954464673996, 0.019724516198039055, -0.00289721111766994, -0.009289031848311424, -0.011208995245397091, -0.010097074322402477, 0.010518360882997513, -0.004185243975371122, 0.010421671904623508, 0.02331581525504589, -0.0010912022553384304, 0.002168591832742095, -0.0114023732021451, 0.017707863822579384, 0.01758355088531971, 0.01965545304119587, 0.02313625067472458, -0.02928289584815502, -0.007693666499108076, -0.00311994063667953, 0.01701723039150238, 0.00813567265868187, -0.015870777890086174, -0.0038053952157497406, 0.011340215802192688, -0.022873809561133385, -0.0021944905165582895, 0.017611175775527954, -0.007997545413672924, -0.006063769571483135, 0.003991866484284401, 0.0013536432525143027, 0.00012571703700814396, -0.0036672684364020824, -0.008729618042707443, -0.011478343047201633, -0.0023878682404756546, -0.012838892638683319, 0.005373135209083557, -0.05149369686841965, -0.011126119643449783, 0.01107086893171072, -0.028592262417078018, -0.0009280398953706026, 0.20851631462574005, -0.00980010163038969, 0.025028588250279427, 0.026202667504549026, 0.025415344163775444, 0.006868358701467514, -0.010021104477345943, 0.00886083859950304, -0.008246174082159996, 0.011692439205944538, 0.009820820763707161, -0.009558379650115967, -0.02665848471224308, -0.0013605497078970075, 0.015511646866798401, -0.02834363281726837, -0.015926027670502663, -0.01768023893237114, -0.019683077931404114, 0.006450524553656578, 0.014420445077121258, 3.067387660848908e-05, -0.025277215987443924, -0.013812687247991562, 0.03207305818796158, 0.025415344163775444, 0.013474276289343834, 0.008536240085959435, 0.022362740710377693, 0.031161421909928322, -0.021271537989377975, 0.002482830546796322, 0.011954880319535732, -0.033785831183195114, -0.007997545413672924, -0.007811074610799551, 0.0348079688847065, -0.008570772595703602, 0.02200360968708992, 0.020083647221326828, 0.0015789627796038985, -0.03400683403015137, 0.010760082863271236, -0.045996248722076416, 0.029503898695111275, -0.009137092158198357, 0.003347849939018488, 0.002192764077335596, 0.017694052308797836, 0.027017615735530853, -0.012735296972095966, -0.0030008063185960054, 0.028785638511180878, 0.007748917210847139, 0.013598590157926083, 0.003356482833623886, -0.0012828533072024584, 0.02660323493182659, -0.006322757340967655, -2.1730702428612858e-05, -0.002320531290024519, -0.0014434257755056024, -0.0028005221392959356, 0.004996739327907562, -0.034393589943647385, 0.027583936229348183, -0.012369261123239994, 0.012825079262256622, 0.0072309416718780994, 0.013812687247991562, 0.005338603630661964, -0.00743813207373023, -0.03375820815563202, -0.0024034075904637575, -0.008729618042707443, -0.015787901356816292, 0.02053946442902088, 0.0209262203425169, 0.043703339993953705, 0.005058896727859974, 0.003549860557541251, 0.0008969613700173795, -0.021824045106768608, -0.013529527001082897, 0.0056839208118617535, -0.019765954464673996, 0.022970497608184814, -0.027625374495983124, 0.0008883284172043204, -0.017169170081615448, -0.004534014500677586, 0.006364195607602596, 0.005179757717996836, -0.007389787584543228, -0.00239822780713439, 0.0028005221392959356, -0.00286095286719501, 0.01588458940386772, -0.00919234286993742, -0.024476081132888794, -0.01553927268832922, 0.04616199806332588, 0.018881943076848984, 0.022155549377202988, -0.00380194210447371, -0.005107240751385689, -0.0023999542463570833, 0.004299198742955923, 0.004748111125081778, -0.00685109244659543, -0.010476922616362572, -0.04132755845785141, 0.025926413014531136, 0.0029921731911599636, -0.0009556652512401342, 0.02636841870844364, 0.017224419862031937, 0.00808732770383358, 0.004634156357496977, 0.007493382785469294, 0.007728198077529669, -0.008377394638955593, -0.0030698697082698345, 8.255238935817033e-05, -0.020746655762195587, -0.015428771264851093, -0.007306911516934633, 0.01487626414746046, -0.016865290701389313, -0.013805780559778214, -0.00037941723712719977, -0.018702378496527672, 0.01768023893237114, -0.0006979723111726344, -0.005020911805331707, -0.019199633970856667, -0.01715535670518875, -0.015912214294075966, 0.00926140695810318, 0.01566358655691147, 0.009323563426733017, 0.005936002358794212, 0.007880138233304024, 0.005155585240572691, -0.010214481502771378, 0.011119212955236435, -0.007085908204317093, 0.004755017347633839, -0.015180142596364021, -0.014821012504398823, 0.0053904009982943535, 0.017459236085414886, -0.007887043990194798, -0.010794614441692829, 0.036603618413209915, -0.023150062188506126, -0.04312320798635483, -0.033868707716464996, 0.018591877073049545, 0.01321183517575264, -0.052957840263843536, 0.016326595097780228, 0.054421987384557724, 0.009268312714993954, -0.019779767841100693, -0.005742624402046204, -0.17624987661838531, 0.0003051740350201726, 0.0014926334843039513, 0.00019877319573424757, -0.006447071675211191, 0.016796227544546127, 0.009606723673641682, -0.014572384767234325, -0.006346929352730513, 0.001978667452931404, -0.013743623159825802, -0.013833405449986458, -0.04461497813463211, -0.017694052308797836, 0.004212869331240654, -0.01460000965744257, 0.012907955795526505, 0.03154817596077919, 0.059118300676345825, 0.004927676171064377, 0.013854124583303928, -0.02975252829492092, 0.008032076992094517, -0.0029023909009993076, 0.017970304936170578, 0.03370295464992523, -0.0101108867675066, 0.021354414522647858, 0.007396693807095289, -0.023564442992210388, 0.010870584286749363, -0.003050877247005701, 0.007134252693504095, 0.0028989375568926334, -0.020746655762195587, -0.0018612595740705729, 0.0050450838170945644, -0.002384415129199624, -0.013722904026508331, 0.020042208954691887, 0.0347803458571434, 0.02266661822795868, 0.013881750404834747, -0.0025933319702744484, 0.019199633970856667, 0.01805318146944046, 0.027210993692278862, -0.011312590911984444, 0.014517134055495262, -0.0020097459200769663, 0.02656179666519165, -0.02544296905398369, 0.004972567316144705, 0.0035084225237369537, 0.010697925463318825, 0.01928251050412655, -0.002488010097295046, 0.012963206507265568, 0.005583778489381075, -0.007445038296282291, 0.004696313291788101, -0.01989026926457882, -0.016464723274111748, -0.01842612400650978, -0.019061507657170296, -0.02495952509343624, -0.007272379472851753, 0.006174270994961262, -0.0013622762635350227, 0.018163682892918587, -0.0008058839594013989, 0.021091973409056664, 0.016008904203772545, 0.002016652375459671, 0.009254500269889832, -0.005069255828857422, -0.037681009620428085, 0.001685147755779326, 0.023813072592020035, -0.005304071586579084, 0.0027349120937287807, 0.025981664657592773, 0.007306911516934633, -0.01574646309018135, 0.010615049861371517, 0.003929709549993277, 0.021561603993177414, -0.010235200636088848, 0.0003466120979283005, -0.004116180818527937, 0.019627828150987625, -0.01866094022989273, -0.006581745110452175, 0.01370909158140421, -0.0030232518911361694, 0.006844186224043369, 0.029448648914694786, 0.007272379472851753, 0.00424394803121686, -0.015967465937137604, -0.004167978186160326, 0.00485515920445323, -0.03135479986667633, 0.036133989691734314, 0.031713929027318954, 0.004879331681877375, 0.012762922793626785, 0.006395273841917515, 0.039752911776304245, -0.00973103754222393, -0.04433872550725937, 0.019779767841100693, 0.023011935874819756, 0.004720485769212246, -0.02826075628399849, 0.05143844708800316, -0.015953652560710907, -0.01687910407781601, 0.02435176633298397, -0.020511839538812637, 0.03273606672883034, -0.027777312323451042, -0.024144576862454414, -0.003194183809682727, -0.004561639856547117, -0.029089517891407013, -0.10934122651815414, -0.011968692764639854, 0.038150642067193985, 0.01504201628267765, -0.0004104957915842533, 0.023039560765028, 0.00513486610725522, 0.0432613343000412, 0.015691211447119713, 0.03229406103491783, -0.029863029718399048, 0.010186856612563133, -0.0006051683449186385, -0.01908913254737854, 0.013336149044334888, -5.6599641538923606e-05, 0.0022877261508256197, -0.018467562273144722, -0.013591683469712734, 0.022500867024064064, 0.004969113972038031, -0.008847026154398918, 0.0003653887251857668, 0.01781836524605751, 5.972907820250839e-05, -0.018909567967057228, -0.031658679246902466, 0.007341443095356226, 0.016091780737042427, 0.015318269841372967, 0.017707863822579384, -0.02256993018090725, 0.01102252397686243, -0.028426509350538254, 0.0017956492956727743, -0.02407551370561123, -0.023909760639071465, 0.002368875779211521, 0.017182981595396996, -0.025070026516914368, 0.014917701482772827, 0.005386947654187679, 0.015097266994416714, -0.036272116005420685, -0.01443425752222538, -0.013667653314769268, -0.027017615735530853, 0.04265357553958893, 0.01393700111657381, -0.007859419099986553, -0.0223351139575243, -0.013550246134400368, -0.051355570554733276, -0.025042401626706123, 0.0270314272493124, 0.034062083810567856, 0.015718838199973106, 0.012914862483739853, -0.0371561273932457, 0.008722711354494095, -0.0056459358893334866, 0.00027690120623447, -0.005998159293085337, 0.01513870432972908, -0.0070513766258955, 0.009468596428632736, -0.021547790616750717, 0.0070686424151062965, 0.015359708108007908, 0.005159038584679365, -0.030111657455563545, 0.002374055562540889, -0.018398499116301537, 0.017928866669535637, -0.021271537989377975, 0.00688562449067831, -0.0006099164602346718, -0.027846377342939377, 0.005656295455992222, 0.015815526247024536, -0.007914669811725616, -0.014903889037668705, -0.012093007564544678, -0.02464183233678341, 0.009137092158198357, 0.0033374903723597527, 0.011360934935510159, -0.00498292688280344, 0.023067187517881393, -0.043979596346616745, 0.019393011927604675, 0.020207960158586502, 0.017044855281710625, 0.023992637172341347, -0.007521008141338825, 0.003988413140177727, -0.007880138233304024, -0.015622149221599102, 0.01748686097562313, 0.00444423221051693, -0.00343245267868042, -0.01832943595945835, -0.05298546701669693, 0.0009314930648542941, 0.003327131038531661, 0.01314277108758688, 0.018840504810214043, -0.030194533988833427, -0.0077558234333992004, -0.008978246711194515, 0.0008917815866880119, -0.01170625165104866, -0.01801174320280552, 0.017417797818779945, -0.0108153335750103, 0.0008775372407399118, -0.010870584286749363, -0.015635961666703224, 0.009123279713094234, 0.0017041402170434594, 0.0071480656042695045, 0.012914862483739853, -0.0038053952157497406, -0.0053904009982943535, 0.0032753334380686283, 0.02243180386722088, -0.015055828727781773, 0.005756437312811613, -0.007154971826821566, 0.01838468573987484, -0.022597555071115494, -0.05259871110320091, 0.01636803336441517, 0.010076355189085007, 0.0066266367211937904, 0.0121068200096488, -0.007286192383617163, -0.05823428928852081, 0.008978246711194515, 0.017376359552145004, 0.029724901542067528, 0.0077903554774820805, -0.01500057801604271, -0.02290143445134163, 0.028219319880008698, -0.01389556284993887, -0.0002046004228759557, 0.006098301149904728, -0.017569737508893013, -0.016561411321163177, 0.0020270117092877626, -0.0035136023070663214, 0.047791894525289536, 0.0209262203425169, -0.023191500455141068, -0.00921306200325489, -0.004558186512440443, -0.006409086752682924, 0.013391399756073952, 0.020042208954691887, 0.012431418523192406, 0.002465564524754882, 0.03873077407479286, 0.0026399497874081135, 0.011084681376814842, -0.003239074954763055, 0.016989605501294136, -0.013757435604929924, -0.050609685480594635, -0.017901241779327393, 0.0024966432247310877, -0.026437481865286827, 0.009164717979729176, -0.016202282160520554, 0.025470593944191933, 0.011312590911984444, 0.01687910407781601, 0.0034065539948642254, -0.011195182800292969, -0.001876798807643354, 0.002008019248023629, 0.015635961666703224, 0.024849023669958115, -0.03408971056342125, -0.030222158879041672, 0.020705217495560646, 0.012528106570243835, 0.011512874625623226, -0.001072209794074297, 0.02392357401549816, 0.02331581525504589, -0.003278786549344659, -0.013529527001082897, 0.0008550916681997478, -0.0037605040706694126, 0.015608335845172405, -0.003465257817879319, 0.0173901729285717, -0.015815526247024536, 0.01142309233546257, 0.0072378478944301605, 0.018495187163352966, -0.0048758783377707005, 0.011098493821918964, -0.006989219691604376, -0.019172009080648422, -0.030829917639493942, -0.002917930018156767, -0.015580710954964161, -0.03447646647691727, 0.02120247483253479, 0.01936538703739643, 0.008598397485911846, -0.0206775926053524, -0.004319917876273394, 0.01299773808568716, -0.018881943076848984, -0.014613823033869267, -0.0017188162310048938, -0.027100492268800735, -0.03395158424973488, -0.0007376837893389165, 0.017666425555944443, 0.02722480520606041, 0.015815526247024536, -0.025622533634305, 0.02106434665620327, -0.020898595452308655, 0.010124699212610722, -0.01295629981905222, 0.01245904341340065, -0.01483482588082552, -0.021934546530246735, 0.001823274651542306, -0.0010100527433678508, -0.010290451347827911, -0.00907493568956852, 0.0038813650608062744, -0.00996585376560688, 0.017293483018875122, 0.006277866195887327, 0.08663316816091537, 0.03088516741991043, -0.018964819610118866, 0.010394047014415264, -0.02323293872177601, 0.003808848327025771, 0.016285156831145287, -0.0026019648648798466, 0.005348962731659412, -0.01064958143979311, 0.02227986417710781, -0.011823659762740135, -0.007935388945043087, -0.03254269063472748, -0.010055636055767536, -0.0034220931120216846, 0.004934582393616438, 0.017321109771728516, -0.01460000965744257, 0.024531330913305283, 0.01998695731163025, 0.010842959396541119, 0.0035429541021585464, -0.017169170081615448, -0.039752911776304245, -0.00937881413847208, 0.02440701797604561, 0.021423477679491043, -0.006650808732956648, -0.030829917639493942, 0.017279671505093575, -0.006043050438165665, -0.02783256396651268, -0.02487664856016636, -0.014489508233964443, 0.03475271910429001, -0.01928251050412655, -0.009765569120645523, 0.01476576179265976, 0.02450370602309704, 0.0073621622286736965, 0.012210414744913578, -0.02665848471224308, -0.01377124898135662, -0.003494609845802188, 0.004016038496047258, -0.005286805797368288, -0.023343440145254135, -0.006681887432932854], "07ac6a79-985c-411a-b6c6-5801e689afcf": [-0.01261853612959385, 0.0010648627066984773, 0.006621952168643475, -0.03254693001508713, -0.017524201422929764, 0.01209044735878706, -0.007073606830090284, -0.04063502326607704, -0.013236955739557743, -0.035771049559116364, 0.017760450020432472, 0.03793898969888687, 0.01769096590578556, -0.0012368388706818223, -0.009477798826992512, 0.015050522983074188, 0.02818324975669384, -0.007104875054210424, 0.010679895058274269, -0.013904014602303505, -0.0201229527592659, -0.00453044380992651, -0.022360380738973618, -0.02255493961274624, -0.01869155466556549, 0.0047875395976006985, 0.019970083609223366, -0.010818866081535816, -0.011840300634503365, 0.029267221689224243, 0.005294782109558582, -0.010325520299375057, -0.024514425545930862, -0.00871346052736044, -0.031351782381534576, 0.00012322788825258613, -0.009067836217582226, -0.010422799736261368, 0.0026612882502377033, -0.013056294061243534, 0.019150158390402794, 0.014230595901608467, -0.0007534815813414752, -0.01731574535369873, -0.010999527759850025, 0.022846776992082596, 0.006555940955877304, 0.012007065117359161, -0.018038392066955566, 0.010950888507068157, 0.0014539805706590414, -0.019080672413110733, -0.030045457184314728, 0.017649274319410324, -0.007198680192232132, -0.014953243546187878, 0.0038842300418764353, -0.001841361285187304, -0.0059375218115746975, -0.0017961958656087518, 0.01418890431523323, 0.006180720403790474, -0.018344128504395485, -0.008039453066885471, -0.017524201422929764, -0.024847954511642456, -0.014522434212267399, -0.017885524779558182, -0.018358023837208748, -0.003192851087078452, 0.028544574975967407, 0.02661288157105446, -0.00865092407912016, 0.017454715445637703, -0.010804968886077404, -0.024722881615161896, -0.002503209048882127, -0.011791660450398922, -0.0122224697843194, 0.002433723770081997, 0.022110233083367348, -0.03324178233742714, -0.0252370722591877, 0.004294193349778652, 0.035409726202487946, 0.01817736215889454, 0.04238605126738548, -0.0006978933233767748, -0.006868625059723854, 0.007893533445894718, 0.00442274147644639, 0.0169961117208004, 0.033213987946510315, 0.013410668820142746, -0.012465668842196465, 0.01461971364915371, 0.0010570456506684422, 0.00573601434007287, -0.012514308094978333, -0.025042513385415077, -0.013236955739557743, -0.008379930630326271, -0.004526969511061907, -0.005986161530017853, -0.023972438648343086, -0.0077337175607681274, 0.012722764164209366, -0.01780214160680771, -0.01625956781208515, 0.01912236399948597, -0.029795309528708458, 0.0258624404668808, -0.005444175563752651, 0.01717677339911461, 0.0011378222843632102, -0.008310445584356785, 0.009873866103589535, -0.022360380738973618, -0.016329053789377213, -0.016078906133770943, -0.00984607171267271, -0.010798020288348198, 0.0350206084549427, -0.02630714699625969, 0.019733835011720657, 0.011631844565272331, 0.010179600678384304, -0.00376610504463315, 0.012646330520510674, -0.016398537904024124, 0.011166293174028397, 0.009644564241170883, 0.010304674506187439, 0.012701918371021748, -0.009561181999742985, -0.007525261491537094, -0.005194028373807669, 0.0059583671391010284, -0.002411141060292721, -0.031462959945201874, 0.02550111711025238, 0.028544574975967407, 0.013959603384137154, -0.02255493961274624, -0.006337062455713749, 0.0275717806071043, -0.00802555587142706, 0.00456171203404665, -0.0048743961378932, 0.005927098914980888, 0.03074031136929989, -0.01831633411347866, -0.029656339436769485, -0.0017961958656087518, 0.009637615643441677, 0.0010787597857415676, 0.006788717117160559, 0.012757507152855396, -0.02862795628607273, -0.01617618463933468, -0.004877870436757803, -0.00947085116058588, 0.0040023550391197205, -0.015384052880108356, -0.007824048399925232, 0.042219288647174835, 0.012173830531537533, -0.018163464963436127, -0.012368389405310154, -0.02237427607178688, -0.0201229527592659, 0.026585087180137634, -0.04235825687646866, 0.0005445912829600275, 0.021095747128129005, 0.0045026494190096855, 0.009971145540475845, 0.008838534355163574, -0.007289011497050524, -0.020512070506811142, 0.03249134123325348, -0.007615592330694199, 0.006899893283843994, 0.025292661041021347, -0.0264878086745739, -0.012945117428898811, 0.03132398799061775, 0.013910963200032711, 0.0024041924625635147, -0.01719067059457302, 0.005746436771005392, 0.0050446349196136, 0.003929395694285631, -0.003988457843661308, -0.6288144588470459, -0.00045947174658067524, 0.020984569564461708, -0.006830408237874508, -0.0027481447905302048, 0.0201785396784544, 0.014480743557214737, -0.01106206513941288, -0.009922505356371403, 0.04180237650871277, 0.00965151283890009, 0.019344717264175415, -0.011465080082416534, 0.000334398151608184, 0.007747614290565252, -0.027405014261603355, -0.0061494517140090466, -0.007323754020035267, -5.089257683721371e-05, 0.007712871767580509, -0.031157223507761955, 0.03288045898079872, 0.0033596158027648926, 0.007070132531225681, 0.009804380126297474, -0.017955008894205093, 0.02857236936688423, -0.019330820068717003, -0.007163937669247389, 0.018705451861023903, -0.016773758456110954, 0.014327875338494778, 0.003192851087078452, 0.0038911786396056414, 0.05105782300233841, -0.0064343418926000595, -0.007560004014521837, 0.01867765747010708, 0.0264878086745739, 0.0604800321161747, -0.028766928240656853, -0.0017006534617394209, 0.02192957140505314, 0.008386879228055477, -0.004183017183095217, -0.0037348365876823664, 0.0064308675937354565, 0.019719937816262245, -0.016301259398460388, -0.02024802565574646, 0.0008724752115085721, -0.020275820046663284, -0.011096807196736336, 0.002445883583277464, 0.012458720244467258, 0.003026086138561368, 0.017468612641096115, -0.009887762367725372, 0.009081732481718063, -0.000403014913899824, 0.0016954421298578382, 0.009165115654468536, -0.03112942911684513, -0.03693840280175209, -0.0578673854470253, 0.00794217362999916, -0.0024371980689466, -0.016648685559630394, 0.019164053723216057, -0.005694322753697634, 0.016023317351937294, 0.0019733833614736795, 0.007504415698349476, -0.008796842768788338, -0.011687432415783405, 0.016481921076774597, 0.015787066891789436, -0.012861735187470913, -0.011520667932927608, 0.018983392044901848, -0.012820043601095676, -0.012576845474541187, -0.020970672369003296, -0.00940136518329382, 0.03699399158358574, 0.007525261491537094, -0.016718171536922455, -0.01805228926241398, 0.001299375668168068, 0.008324342779815197, 0.0028593214228749275, 0.03210222348570824, -0.0021714165341109037, -0.021470967680215836, 0.00479796202853322, 0.027849720790982246, -0.013195264153182507, -0.008275702595710754, 0.002121039666235447, -0.009512541815638542, -0.008630078285932541, -0.02675185352563858, 0.012764455750584602, 0.013292543590068817, 0.021790599450469017, 0.012034859508275986, -0.002593540120869875, -0.023541631177067757, 0.010408902540802956, -0.02281898260116577, -0.0009762689005583525, -0.003720939625054598, -0.014911551959812641, -0.025959720835089684, 0.013612176291644573, -0.020400892943143845, -0.01874714344739914, -0.0015694999601691961, 0.0014539805706590414, -0.01471699308604002, 0.002261747606098652, -0.0030660403426736593, 0.015231184661388397, 0.008352137170732021, 0.0016554880421608686, 0.01712118647992611, 0.009005298838019371, 0.0034429982770234346, 0.017287950962781906, -0.02249935083091259, -0.0009345777216367424, -0.028461191803216934, 0.007754562888294458, -0.01053397636860609, 0.022471556439995766, -0.023847365751862526, 0.02987869270145893, 1.3727424629905727e-05, -0.0018535212147980928, -0.04163561016321182, 0.005603991914540529, 0.00701454421505332, 0.01712118647992611, -0.027599573135375977, 0.0025813800748437643, -0.032602518796920776, -0.02375008724629879, 0.004485278390347958, -0.01817736215889454, -0.0011673535918816924, -0.011687432415783405, 0.0010631255572661757, -0.005954892840236425, 0.037661049515008926, -0.024736778810620308, 0.0025205803103744984, 0.009290188550949097, -0.03788340464234352, -0.0103741604834795, -0.017107289284467697, -0.01669037714600563, 0.013778941705822945, -0.006681014783680439, -0.00656288955360651, -0.006236308719962835, -0.01944199576973915, -0.015300669707357883, 0.004203862510621548, -0.02862795628607273, -0.028544574975967407, 0.01617618463933468, -0.01625956781208515, 0.00781015120446682, 0.028961487114429474, -0.0195531714707613, 0.025195380672812462, -0.024264277890324593, -0.008171475492417812, 0.005610940512269735, 0.004846601746976376, 0.008602283895015717, 0.002035920275375247, -0.0103741604834795, -0.004127428866922855, 0.03454810753464699, 0.0012307589640840888, 0.018719349056482315, 0.009040041826665401, -0.02650170587003231, 0.009880813769996166, 0.020887291058897972, -0.0064343418926000595, 0.004071840550750494, -0.007476621773093939, -0.029545163735747337, -0.0010839712340384722, -0.02493133768439293, 0.0030451947823166847, -0.002233953448012471, 0.0239863358438015, 0.012173830531537533, 0.010582615621387959, -0.006559415254741907, -0.002864532871171832, 0.003472529351711273, -0.006882522255182266, 0.0163707435131073, -0.026209866628050804, 0.015397949144244194, 0.015161699615418911, -0.014195852912962437, -0.0029548637103289366, 0.0030886230524629354, -0.005972264334559441, 0.00767118064686656, 0.04132987558841705, 0.025973616167902946, 0.006684489082545042, 0.009978093206882477, 0.018358023837208748, 0.014272287487983704, 0.005722117144614458, 0.03187987208366394, -0.00576728256419301, 0.001077022636309266, 0.023666704073548317, 0.007622540928423405, 0.029295016080141068, 0.010429748333990574, -0.014550228603184223, -0.01543964073061943, 0.02369449846446514, 0.0123058520257473, 0.013904014602303505, 0.05000164359807968, 0.02037309855222702, 0.04449840635061264, -0.008602283895015717, 0.018163464963436127, 0.004551289137452841, -0.015703685581684113, 0.008289599791169167, 0.03493722528219223, -0.018010597676038742, 0.03793898969888687, 0.0074488273821771145, 0.018733246251940727, -0.0033596158027648926, -0.018483098596334457, 0.028085971251130104, 0.012555999681353569, 0.008852431550621986, -0.0214292760938406, -0.00414132559671998, 0.024097513407468796, -0.029017074033617973, 0.020637143403291702, 0.004791013430804014, 0.017635377123951912, 0.023652806878089905, 0.01128441747277975, -0.02055376209318638, 0.022902365773916245, -0.017287950962781906, 0.023777879774570465, -0.004891767166554928, 0.0017492931801825762, -0.02131810039281845, -0.003568071871995926, -0.011777764186263084, -0.0040023550391197205, -0.02794700115919113, 0.0014722205232828856, 0.0030347718857228756, 0.023152513429522514, -0.0030208746902644634, 0.010971734300255775, 0.004742373712360859, -0.010040630586445332, 0.016759861260652542, -0.03427016735076904, -0.0182468481361866, 0.021915674209594727, 0.022846776992082596, 0.0031997994519770145, -0.027099279686808586, -0.01409162487834692, -0.018955597653985023, 0.006451712921261787, 0.0011239252053201199, -0.005819396581500769, -0.0026334940921515226, -0.001130873803049326, -0.006528147030621767, -0.004919561557471752, 0.012590741738677025, 0.03974561020731926, -0.01065210159868002, -0.01755199395120144, 0.008414673618972301, -0.0076086437329649925, 0.017079494893550873, -0.007914379239082336, -0.0337698720395565, 0.022221408784389496, -0.022290894761681557, -0.02249935083091259, -0.039022963494062424, 0.002704716520383954, -0.01755199395120144, 0.01742692105472088, -0.004457483999431133, -0.011152395978569984, -0.004360204562544823, -0.030212221667170525, 0.02412530779838562, -0.01049923337996006, -0.0005254828138276935, 0.0208039078861475, 0.011131550185382366, 0.0033874099608510733, -0.023889057338237762, 0.007441879250109196, 0.040162522345781326, 0.0754888653755188, 0.013639970682561398, 0.0015981625765562057, 0.01365386787801981, -0.0010214344365522265, -0.011791660450398922, -0.01396655198186636, -0.020289717242121696, 0.03668825700879097, -0.003759156446903944, -0.025459425523877144, 0.007247319910675287, 0.009255446493625641, -0.004495700821280479, 0.01386927254498005, -0.009491696022450924, 0.007077081128954887, -0.019344717264175415, -0.01912236399948597, 0.005687374621629715, 0.0002692556590773165, -0.01118713803589344, 0.02199905551970005, 0.01688493601977825, 0.022832879796624184, 0.0078726876527071, 0.03204663470387459, 0.015675891190767288, 0.010978682897984982, -0.01330644078552723, -0.032018840312957764, 0.01402908843010664, 0.01096478570252657, 0.020970672369003296, -0.007837945595383644, 0.02219361439347267, 0.0026908195577561855, -0.004353255964815617, -0.020859496667981148, 0.009818277321755886, -0.00545459846034646, 0.030351193621754646, 0.013466257601976395, -0.002310387324541807, 0.012097395956516266, -0.015328464098274708, -0.00309383450075984, 0.025598395615816116, -0.020400892943143845, -0.0069520073011517525, 0.016606993973255157, 0.008824637159705162, -0.017204567790031433, 0.011103755794465542, -0.004936933051794767, -0.016912730410695076, -0.014633610844612122, -0.011409491300582886, -0.05230855941772461, -0.024361558258533478, -0.025598395615816116, -0.02349993959069252, -0.005089800339192152, -0.0010848396923393011, -0.009477798826992512, -0.029850898310542107, 0.007511364296078682, -0.01587045006453991, -0.010603461414575577, 0.009012247435748577, 0.009484747424721718, -0.028905898332595825, -0.02998986840248108, -0.014953243546187878, 0.026543397456407547, 0.014494639821350574, -0.006257154047489166, 0.01028382871299982, -0.000296181213343516, 0.011444234289228916, 0.003953715320676565, -0.03868943452835083, -0.0029861321672797203, -0.010867506265640259, 0.009790482930839062, -0.0138136837631464, -0.028350016102194786, 0.0013341184239834547, -0.003552437527105212, 0.008970556780695915, 0.004728476982563734, -0.009644564241170883, 0.008011658675968647, 0.008873277343809605, 0.022388173267245293, 0.018510892987251282, 0.03549310937523842, 0.006163348909467459, 0.022346483543515205, -0.03810575604438782, -0.0005311284912750125, 0.004075314849615097, -0.019886702299118042, -0.015967728570103645, -0.00047944879042916, 0.010728535242378712, -0.009665410034358501, -0.0005393798928707838, -6.975676114961971e-06, -0.01486986130475998, 0.01905287802219391, 0.009081732481718063, 0.003404781222343445, -0.005864562001079321, 0.0017145505407825112, -0.012646330520510674, 0.01040195394307375, 0.033658694475889206, 0.02156824618577957, -0.004624248947948217, -0.010728535242378712, -0.01065210159868002, 0.022860674187541008, -0.0169405248016119, 0.009943351149559021, 0.014911551959812641, 0.008734306320548058, -0.0244449395686388, -0.0182468481361866, 0.011166293174028397, -0.01799670048058033, 0.008880225010216236, -0.012569896876811981, -0.006375279277563095, -0.020261922851204872, -0.001673727878369391, -0.014209750108420849, -0.00906088761985302, -0.03304722532629967, -0.0012559473980218172, -0.021776702255010605, -0.00806029886007309, 0.01343846321105957, -0.016356846317648888, 0.02187398262321949, -0.02155435085296631, -0.012312800623476505, -0.001624219585210085, 0.004638145677745342, 0.01906677521765232, -0.01930302567780018, -0.009561181999742985, -0.029767517000436783, -0.01687103882431984, -0.002112354151904583, -0.01396655198186636, -0.017774347215890884, 0.012826992198824883, 0.053642675280570984, 0.016148390248417854, 0.020095158368349075, -4.462261131266132e-05, 0.006674066185951233, 0.0006848648190498352, -0.01047143992036581, 0.0015799227403476834, -0.022346483543515205, -0.02387516014277935, 0.014383464120328426, 0.0016216139774769545, -0.007858791388571262, -0.00435673026368022, -0.002322547137737274, 0.013695558533072472, -0.002602225635200739, 0.0231942031532526, -0.010721586644649506, -0.0019264807924628258, -0.02400023303925991, -0.03791119530797005, 0.005253090988844633, 0.036521490663290024, 0.0006709677400067449, 0.018274642527103424, -0.014842066913843155, -0.017454715445637703, 0.005180131644010544, -0.007247319910675287, 0.03288045898079872, 0.019845010712742805, 0.031852077692747116, 0.015606405213475227, -0.006441290490329266, 0.002197473542764783, -0.023221997544169426, -0.02525096945464611, -0.004235131200402975, -0.03991237282752991, -0.017579788342118263, -0.006427393294870853, 0.02024802565574646, 0.01215993333607912, -0.01324390433728695, 0.015147802419960499, 0.002605699934065342, 0.005676951725035906, -0.024166997522115707, -0.04355340451002121, -0.003175479592755437, -0.01905287802219391, 0.005034212488681078, -0.008101989515125751, -0.016857141628861427, 0.00959592405706644, 0.009783534333109856, -0.010721586644649506, 0.015425743535161018, 0.008956659585237503, -0.017357435077428818, -0.015953831374645233, 0.030267810449004173, -0.003090360201895237, 0.040718402713537216, 0.007837945595383644, 0.03693840280175209, 0.024083616212010384, 0.009255446493625641, -0.006819985341280699, -0.013897066004574299, 0.013605227693915367, -0.011075962334871292, -0.004725002683699131, 0.03112942911684513, -0.018149567767977715, -0.014181956648826599, 0.02623766101896763, -0.01674596406519413, -0.003013926325365901, -0.04155222699046135, 0.010804968886077404, -0.0014313978608697653, -0.0012846101308241487, -0.03226898983120918, -0.022596629336476326, -0.028294427320361137, 0.02355552837252617, -0.0018135671271011233, 0.02732163295149803, -0.010756329633295536, 0.003613237291574478, -0.0010909197153523564, 0.05180826410651207, -0.020261922851204872, 0.021165231242775917, -0.02167942374944687, 0.006833882536739111, -0.030851487070322037, 0.004957778379321098, -0.003220645245164633, -0.008873277343809605, 0.00428377091884613, 0.022860674187541008, -0.011673536151647568, -0.01040195394307375, -0.0015556028811261058, 0.0023017015773802996, -0.011520667932927608, -0.012569896876811981, -0.009477798826992512, 0.028141560032963753, -0.00856754183769226, -0.0036306085530668497, 0.002025497378781438, -0.007021492812782526, 0.019539276137948036, -0.02469508722424507, -0.02031751163303852, -0.0001780561578925699, 0.010582615621387959, 0.007928276434540749, 0.011868095025420189, 0.01090919692069292, 0.0033821985125541687, -0.009998939000070095, 0.009317982941865921, -0.02280508540570736, 0.013514896854758263, 0.0005954024381935596, -0.014633610844612122, -0.03813355043530464, -0.02124861441552639, 0.015842655673623085, 0.0005185342743061483, 0.018469201400876045, -0.011416439898312092, -0.012271109968423843, 0.001100473920814693, 0.0270019993185997, -0.01140254270285368, 0.0007513101445510983, 0.024028027430176735, 0.00016557051276322454, -0.030267810449004173, 0.021901777014136314, 0.0046589914709329605, -0.0009884288301691413, 0.019858907908201218, 0.006246731150895357, -0.0208039078861475, -0.01049923337996006, 0.020220231264829636, -0.0031876396387815475, 0.016287362203001976, -0.0071083493530750275, -0.0035958660300821066, 0.013355080969631672, 0.010269932448863983, -0.003602814394980669, -0.0128478379920125, -0.001050965627655387, 0.0017927215667441487, 0.024222586303949356, 0.02094287984073162, -0.02049817331135273, 0.0064378161914646626, -0.006753974128514528, 0.016384640708565712, -0.005524083971977234, -0.044276054948568344, -0.027405014261603355, -0.03354751691222191, -0.00393634382635355, -0.014383464120328426, 0.0003452552482485771, -0.00047510594595223665, -0.018761038780212402, -0.009582026861608028, 0.025709573179483414, -0.01022129226475954, -0.0007912642322480679, 0.018524790182709694, -0.011235778219997883, -0.01343846321105957, 0.014564125798642635, -0.002150570973753929, -0.030962664633989334, -0.006319690961390734, -0.030795898288488388, -0.02893369272351265, -0.008456365205347538, -0.009151218459010124, 0.043414436280727386, 0.013334235176444054, -0.023138616234064102, -0.02124861441552639, -0.01147202868014574, -0.034659285098314285, -0.008588386699557304, -0.023277586326003075, 0.03157413378357887, 0.0376332551240921, 0.020609349012374878, 0.0033874099608510733, 0.027919206768274307, -0.016732068732380867, 0.025167588144540787, -0.022707806900143623, -0.01090919692069292, -0.02532045543193817, -0.01613449491560459, 0.0061459774151444435, -0.013910963200032711, -0.045026496052742004, 0.006198091432452202, 0.008393827825784683, -0.006177246104925871, 0.012736661359667778, 0.016857141628861427, -0.02094287984073162, 0.008143681101500988, -0.01090919692069292, -0.0005849796580150723, 0.044526200741529465, 0.015550817362964153, 0.0008646580972708762, -0.02650170587003231, 0.01688493601977825, 0.007573901209980249, -0.001073548337444663, -0.02400023303925991, 0.026140382513403893, 0.023083027452230453, -0.008518901653587818, 0.007063183933496475, 0.007650334853678942, -0.018900010734796524, -4.987472834727669e-07, -0.014633610844612122, 0.009012247435748577, 0.004916087258607149, 0.007462724577635527, 0.024889646098017693, -0.01756589114665985, 0.0018813153728842735, -0.02675185352563858, 0.007969968020915985, 0.025779057294130325, 0.005819396581500769, 0.021776702255010605, -0.02848898619413376, 0.0013610438909381628, -0.013563537038862705, 0.008706511929631233, 0.013049345463514328, -0.015411846339702606, -0.011513719335198402, -0.0035541746765375137, -0.047027673572301865, -0.00667059188708663, 0.015536920167505741, -0.0017110762419179082, -0.003606288693845272, -0.0034534209407866, 0.0007265559979714453, 0.006851253565400839, -0.002621334046125412, -0.007302908226847649, -0.015008831396698952, -0.01937250979244709, -0.01337592676281929, 0.004551289137452841, -0.04755575954914093, 0.002854109974578023, 0.022541042417287827, -0.013320337980985641, 0.004759745206683874, 0.21490423381328583, -0.016092803329229355, 0.01043669693171978, 0.024653395637869835, 0.020748320966959, -0.015453537926077843, -0.003946766722947359, 0.006253679748624563, -0.014140265062451363, 0.0020411317236721516, 0.015536920167505741, -0.008150629699230194, -0.027029793709516525, -0.007212577387690544, 0.014675302430987358, -0.02355552837252617, -0.03760546073317528, -0.03043457493185997, -0.013799786567687988, 0.010589564219117165, 0.0030121891759335995, -0.004731951281428337, -0.02780802920460701, -0.0008142812293954194, 0.031101634725928307, 0.019775524735450745, 0.019400304183363914, 0.02219361439347267, 0.013688609935343266, 0.03268590196967125, -0.009512541815638542, -0.02092898264527321, 0.02192957140505314, -0.010631255805492401, -0.02775244228541851, 0.0013037185417488217, 0.017829935997724533, -0.0048431274481117725, 0.013097984716296196, 0.015703685581684113, -0.0017180248396471143, -0.01999787800014019, 0.0014487691223621368, -0.04449840635061264, 0.013459309004247189, -0.00984607171267271, -0.007678129244595766, 0.007775408681482077, 0.018510892987251282, 0.034659285098314285, -0.024264277890324593, -0.010728535242378712, 0.013771993108093739, -0.011458131484687328, 0.005680426023900509, 0.00874820351600647, -0.010971734300255775, 0.00918596051633358, -0.018080083653330803, -0.012792249210178852, -0.008511953055858612, 0.005659580230712891, 0.006368330679833889, -0.0011543250875547528, -0.03229678049683571, 0.0301288403570652, -0.009880813769996166, 0.023666704073548317, 0.013104933314025402, -0.002861058572307229, -0.0044991751201450825, -0.002042868873104453, -0.021220820024609566, 0.002134936861693859, -0.009929453954100609, -0.009554233402013779, 0.011451182886958122, 0.03318619355559349, 0.04105193540453911, 0.003679248271510005, 0.015536920167505741, -0.006986750289797783, -0.024153102189302444, -0.024597806856036186, 0.009269343689084053, -0.004245553631335497, 0.025973616167902946, -0.011576256714761257, 0.004443586803972721, -0.00721952598541975, -0.0014461635146290064, 0.017649274319410324, 0.001806618645787239, -0.015314566902816296, -0.009880813769996166, -0.0027064536698162556, 0.01212519034743309, 0.023569423705339432, -0.011270521208643913, -0.030323399230837822, -0.009450005367398262, 0.0339922234416008, 0.007587798405438662, 0.02550111711025238, -0.008866328746080399, 0.010957837104797363, 0.0028332644142210484, 0.020901188254356384, 0.006524672731757164, 0.0025466373190283775, -0.0006705334526486695, -0.04269178956747055, 0.0220546443015337, -0.00953338760882616, 0.0062779998406767845, 0.028155457228422165, 0.01862206868827343, -0.00940136518329382, 0.009241549298167229, 0.00749746710062027, 0.03468707948923111, 0.0013949180720373988, 0.013480154797434807, 0.0022982272785156965, -0.01924743689596653, -0.03560428321361542, 0.004203862510621548, 0.006687963381409645, -0.01969214342534542, -0.02298574708402157, 0.002609174232929945, -0.015592508018016815, 0.017885524779558182, -0.009311034344136715, -0.0021905251778662205, -0.02149876207113266, -0.014425154775381088, -0.018983392044901848, -0.0033630901016294956, -0.0075322100892663, 0.008553644642233849, 0.0040093036368489265, 0.010103167034685612, -0.004558237735182047, -0.0006640192004851997, 0.0277385450899601, -0.012347543612122536, 0.005173183046281338, -0.03549310937523842, -0.011423388496041298, 0.01880273036658764, -0.0030504059977829456, -0.011492873542010784, -0.015953831374645233, 0.027891412377357483, -0.028600161895155907, -0.050335176289081573, -0.03062913380563259, 0.007441879250109196, 0.019858907908201218, -0.04830620437860489, 0.009894710965454578, 0.037466492503881454, 0.02630714699625969, -0.02543163113296032, -0.005729065742343664, -0.17810480296611786, 0.005409433040767908, 0.009741843678057194, 0.00542333023622632, -0.004068366251885891, 0.01713508367538452, 0.012625484727323055, -0.005718642845749855, -0.010304674506187439, -0.006545518059283495, 0.0035784945357590914, -0.010659050196409225, -0.04030149430036545, -0.03354751691222191, -0.001784035935997963, -0.025153690949082375, 0.0018587326630949974, 0.039717815816402435, 0.052530910819768906, 0.0019907548557966948, 0.003908549901098013, -0.028766928240656853, -0.0029982919804751873, -0.008018607273697853, 0.01642633229494095, 0.015856552869081497, -0.005576197989284992, 0.024458836764097214, 0.00908868107944727, -0.03427016735076904, 0.022360380738973618, -0.0072681657038629055, 0.015606405213475227, -0.0008160183788277209, -0.009380519390106201, -0.016106700524687767, -0.006917264778167009, -0.018330231308937073, -0.0023399186320602894, 0.019164053723216057, 0.039273109287023544, 0.013000705279409885, 0.01987280510365963, 0.0040058293379843235, 0.014494639821350574, 0.01974773220717907, 0.03488163650035858, -0.007851842790842056, 0.01819125935435295, -0.016301259398460388, 0.009978093206882477, -0.013355080969631672, 0.003991932142525911, -0.0025466373190283775, 0.007997761480510235, 0.008511953055858612, 0.006896418984979391, 0.016634788364171982, -0.0018100929446518421, -0.008755152113735676, 0.015133905224502087, -0.025848543271422386, 0.005030738189816475, -0.011624895967543125, -0.013639970682561398, -0.02224920317530632, -0.0017414761241525412, 0.011944528669118881, 0.0004379747260827571, 0.013382875360548496, 0.0077406661584973335, 0.017760450020432472, 0.023291483521461487, 0.012639381922781467, 0.02786361798644066, -0.0005784654058516026, -0.041413258761167526, -0.0022860674653202295, 0.01655140519142151, -0.008310445584356785, 0.013459309004247189, 0.029406191781163216, 0.00018294184701517224, -0.0003769579343497753, -0.008727357722818851, 0.0018535212147980928, 0.020456481724977493, -0.010443645529448986, 0.0010865768417716026, 0.0029687609057873487, 0.029267221689224243, -0.01399434544146061, -0.004228182602673769, 0.01931692287325859, 0.021026261150836945, 0.01471699308604002, 0.024389350786805153, 0.0038807557430118322, 0.0048153335228562355, -0.005002943798899651, -0.004989046603441238, 0.021290306001901627, -0.03716075420379639, 0.01894170232117176, 0.025195380672812462, 0.014105522073805332, 0.02130420319736004, -0.0134732061997056, 0.028905898332595825, -0.016148390248417854, -0.022276997566223145, 0.013313389383256435, 0.03179648891091347, -0.00016915335436351597, -0.0350206084549427, 0.03307501971721649, -0.02081780508160591, -0.02030361443758011, 0.02848898619413376, -0.017955008894205093, 0.030212221667170525, -0.040718402713537216, -0.02843339741230011, -0.00048813445027917624, -0.002803733106702566, -0.014042985625565052, -0.11662418395280838, -0.02437545359134674, 0.03460369631648064, 0.014828169718384743, -0.012952066026628017, 0.010388056747615337, 0.018844421952962875, 0.02543163113296032, 0.009192909114062786, 0.02625155821442604, -0.018733246251940727, 0.007024967111647129, -0.002018548781052232, -0.02124861441552639, 0.00908868107944727, -0.0075808498077094555, 0.0005302599165588617, -0.013514896854758263, -0.014327875338494778, 0.03643810749053955, 0.0044783297926187515, -0.01181250624358654, 0.01705170050263405, 0.018413612619042397, -0.005166234448552132, -0.020984569564461708, -0.027349427342414856, 0.014140265062451363, 0.01396655198186636, -9.901660087052733e-05, 0.02600141055881977, -0.01742692105472088, 0.013820632360875607, -0.0220546443015337, -0.0035507003776729107, -0.004857024643570185, -0.03663266822695732, -0.00847026240080595, 0.006159874610602856, -0.012854786589741707, 0.001527808723039925, 0.000825138296931982, 0.01174996979534626, -0.0364936962723732, 0.002042868873104453, -0.0018135671271011233, -0.03474266454577446, 0.040523845702409744, 0.008505004458129406, 0.0027464076410979033, -0.024653395637869835, -0.016579199582338333, -0.04544340819120407, -0.02192957140505314, 0.018149567767977715, 0.01931692287325859, 0.019011186435818672, 0.025570601224899292, -0.018288539722561836, 0.006708808708935976, -0.021582143381237984, 0.010137910023331642, -0.007553055416792631, 0.0163151565939188, 0.007997761480510235, 0.026724059134721756, 0.005246142391115427, -0.013737250119447708, 0.003998880740255117, -0.00095889758085832, -0.02274949848651886, 0.010631255805492401, -0.022290894761681557, 0.009866917505860329, -0.02049817331135273, 0.0039849840104579926, -0.003939818125218153, -0.02787751518189907, 0.016106700524687767, 0.012465668842196465, -0.006649746093899012, -0.013118830509483814, 0.0009675832698121667, -0.023777879774570465, 0.006885996554046869, 0.0069520073011517525, 0.01687103882431984, -0.005742962472140789, 0.016037214547395706, -0.04405369982123375, 0.00856754183769226, 0.030573546886444092, 0.010728535242378712, 0.015453537926077843, -0.010353314690291882, 0.009012247435748577, -0.02349993959069252, -0.016148390248417854, 0.031018251553177834, -0.00047858021571300924, -0.001127399504184723, -0.010381108149886131, -0.043914731591939926, 0.010325520299375057, 0.012139087542891502, 0.011708278208971024, 0.004123954568058252, -0.020470378920435905, 0.01606500893831253, 0.003335295943543315, -0.007650334853678942, -0.008164526894688606, -0.016301259398460388, 0.020720526576042175, -0.01819125935435295, 0.0014461635146290064, -0.03885619714856148, 0.0013766781194135547, 0.0037348365876823664, -0.005367741920053959, 0.01481427252292633, 0.011305263265967369, -0.00021138740703463554, 0.002558797365054488, 0.0021679424680769444, 0.02568177878856659, -0.023277586326003075, 0.006222411524504423, -0.02144317328929901, 0.01040195394307375, -0.015384052880108356, -0.03499281406402588, 0.010631255805492401, 0.0077615114860236645, 0.00021768451551906765, 0.002482363488525152, 0.0020046518184244633, -0.039022963494062424, 0.022610526531934738, 0.0025205803103744984, 0.022165820002555847, 0.02344435080885887, -0.028085971251130104, -0.022791188210248947, 0.019636554643511772, -0.01719067059457302, -0.015425743535161018, -0.0019542749505490065, -0.020790010690689087, -0.012549051083624363, -0.0058089736849069595, 0.0023017015773802996, 0.04991826415061951, 0.011367800645530224, -0.013890117406845093, -0.029600750654935837, -0.0019646978471428156, -0.0020046518184244633, 0.012048756703734398, 0.02786361798644066, -0.0015521285822615027, -0.010943939909338951, 0.03760546073317528, -0.008289599791169167, 0.027210455387830734, -0.006903367582708597, 0.02568177878856659, -0.022346483543515205, -0.03938428685069084, -0.006854727864265442, -0.004308090545237064, -0.014383464120328426, 0.015272876247763634, -0.013327286578714848, 0.03062913380563259, 0.02898927964270115, 0.015481332316994667, 0.007441879250109196, -0.018858319148421288, -0.019886702299118042, 0.004832705017179251, 0.023583320900797844, 0.02019243687391281, -0.03843928501009941, -0.013466257601976395, 0.012910374440252781, 0.02650170587003231, 0.012458720244467258, -0.01002673339098692, 0.03788340464234352, 0.012757507152855396, 0.0035437520127743483, -0.013382875360548496, 0.013097984716296196, -0.02811376564204693, 0.005166234448552132, 0.003915498498827219, 0.01806618645787239, -0.02462560124695301, 0.010554822161793709, 0.021846188232302666, 0.025014718994498253, -0.013521845452487469, 0.012493462301790714, 0.011145447380840778, -0.01805228926241398, -0.014272287487983704, 0.007983864285051823, -0.03716075420379639, -0.027349427342414856, 0.02312471903860569, 0.010742432437837124, 0.007400187663733959, -0.017732657492160797, 0.007275114301592112, 0.016148390248417854, -0.010575667954981327, -0.01033941749483347, 0.00670186011120677, -0.027974795550107956, -0.020859496667981148, -0.00030226120725274086, 0.01215993333607912, 0.022040747106075287, 0.01215993333607912, -0.03418678417801857, 0.02512589655816555, -0.0028853784315288067, 0.014355669729411602, -0.014647508040070534, 0.015425743535161018, -0.01906677521765232, 0.0005011629546061158, -0.009561181999742985, -0.007914379239082336, -0.01587045006453991, -0.009067836217582226, -0.014536331407725811, -0.005458072759211063, 0.013876221142709255, -0.011096807196736336, 0.07104180008172989, 0.030851487070322037, -0.003258862067013979, -0.005617889109998941, -0.018093980848789215, 0.002207896439358592, 0.011610998772084713, 0.011270521208643913, 0.003392621409147978, -0.020581554621458054, 0.019664349034428596, -0.024166997522115707, 0.0041864910162985325, -0.014911551959812641, -0.01799670048058033, -0.0043497816659510136, -0.008928865194320679, 0.00045035179937258363, -0.004863973241299391, 0.018510892987251282, 0.0201785396784544, 0.0014678776497021317, 0.014223647303879261, -0.02412530779838562, -0.02493133768439293, -0.013862323947250843, 0.022082438692450523, 0.010151807218790054, 0.0010223028948530555, -0.028711339458823204, 0.026849132031202316, 0.006319690961390734, -0.027696853503584862, -0.008977504447102547, -0.017607582733035088, 0.01499493420124054, -0.013570485636591911, -0.012368389405310154, 0.01742692105472088, 0.03224119544029236, 0.009665410034358501, 0.01115934457629919, -0.005086326505988836, -0.010582615621387959, -0.006813036743551493, -0.013570485636591911, -0.00352290621958673, -0.009269343689084053, 0.020539864897727966], "802e9005-13d7-4173-bc27-09ab95ea375a": [-0.003984319977462292, 0.010476893745362759, 0.022123368456959724, -0.02396932989358902, 0.004914346616715193, 0.017994612455368042, -0.011068729683756828, -0.04940415918827057, -0.008701388724148273, -0.040723904967308044, 0.018713269382715225, 0.017163224518299103, 0.0034682254772633314, -0.006464391481131315, -0.009673689492046833, 0.024420252069830894, 0.025547558441758156, -0.006383366417139769, 0.005463907960802317, -0.013682669028639793, -0.034100987017154694, -0.00030670632258988917, -0.025674380362033844, -0.021080609411001205, -0.02112288400530815, 0.006563031114637852, 0.01623319648206234, -0.021785175427794456, -0.029789043590426445, 0.027337154373526573, 0.0026967257726937532, -0.004995371680706739, -0.021404709666967392, 0.0001012262946460396, -0.022940663620829582, 0.012971057556569576, -0.003374870400875807, 0.0001919942005770281, 0.013379705138504505, -0.008236374706029892, 0.010124611668288708, 0.02495572157204151, -0.0060346066020429134, -0.016754575073719025, -0.005594253074377775, 0.030831800773739815, -0.00489673251286149, 0.003272708272561431, -0.012872418388724327, 0.016219105571508408, -0.006718035321682692, -0.009694825857877731, -0.02598438784480095, -0.00048350830911658704, -0.008335013873875141, -0.01902327872812748, 0.01490861363708973, 0.004537404049187899, 0.010427574627101421, 0.0017543690046295524, 0.007679767906665802, -0.0057633486576378345, -0.006073357537388802, 0.007722041569650173, -0.014337914995849133, -0.02529391460120678, -0.006749740801751614, -0.007517717778682709, -0.015444083139300346, -0.01603591814637184, 0.04357035085558891, 0.024349795654416084, -0.011928299441933632, 0.01080099493265152, -0.009885058738291264, -0.007193617522716522, -0.02251792512834072, -0.0322127491235733, -0.01303446851670742, -0.0008710195543244481, 0.010857359506189823, -0.028661739081144333, -0.017318228259682655, 0.006425640545785427, 0.03815928474068642, 0.026646681129932404, 0.022602472454309464, 0.00018803101556841284, -0.008088416419923306, -0.001280548400245607, -0.0026826343964785337, 0.012358085252344608, 0.029845409095287323, 0.020939696580171585, 0.00016006855003070086, 0.018065068870782852, 0.010089382529258728, -0.00026751484256237745, -0.01424632128328085, -0.025209365412592888, -0.028238998726010323, 0.008377287536859512, -0.010723492130637169, -0.014584513381123543, -0.02312385104596615, 0.0020679007284343243, 0.014866339042782784, 0.012132624164223671, 0.005904261954128742, 0.024716170504689217, -0.021165158599615097, 0.02034786157310009, -0.013196518644690514, -0.009293223731219769, 0.006707466673105955, -0.01439428050071001, 0.025885749608278275, -0.024265248328447342, -0.0005883125122636557, -0.021503349766135216, 0.0026509289164096117, -0.022982938215136528, 0.03796200826764107, -0.025279821828007698, 0.026435310021042824, 0.011343509890139103, 0.008574566803872585, -0.0204183179885149, -0.0009106513462029397, -0.019699661061167717, 0.025477102026343346, 0.01999557949602604, 0.00498480349779129, 0.0022581336088478565, -0.023236582055687904, 0.009701871313154697, -0.01062485296279192, 0.008729570545256138, -0.009131173603236675, -0.03365006670355797, 0.028168542310595512, 0.04165393486618996, 0.02396932989358902, -0.013865855522453785, 0.0071619120426476, 0.02695668861269951, 0.000777224195189774, 0.017233680933713913, 0.006707466673105955, 0.012513089925050735, 0.012343993410468102, -0.016078192740678787, -0.02753443270921707, 0.0023743868805468082, 0.01041348371654749, 0.014936796389520168, 0.0006050459342077374, 0.0172054972499609, -0.02412433549761772, 0.0037905643694102764, -0.014753608964383602, -0.0030859983526170254, -0.0010330696823075414, -0.0013192995684221387, -0.011533742770552635, 0.03725744038820267, 0.020460592582821846, -0.014098362997174263, -0.01638820208609104, -0.012308765202760696, -0.010110519826412201, 0.020361952483654022, -0.021587897092103958, 0.017994612455368042, 0.013795399107038975, -0.00264916755259037, 0.01874145120382309, 0.00370249361731112, -0.0028482074849307537, -0.014499965123832226, 0.02084105834364891, 0.004727636929601431, -0.009117081761360168, 0.016698211431503296, -0.010709401220083237, -0.014302686788141727, 0.03855384513735771, 0.026012571528553963, -0.003913863096386194, -0.017459141090512276, 0.009060717187821865, 0.006418595090508461, -0.006312910001724958, -0.005016508977860212, -0.6231744289398193, -0.004202735144644976, 0.01902327872812748, -0.011808523908257484, -0.00594301288947463, 0.02577301859855652, 0.010857359506189823, -0.008518201299011707, -0.008652068674564362, 0.04047026112675667, 0.018220072612166405, 0.008694342337548733, -0.02124970592558384, -0.006767354905605316, 0.00377999572083354, -0.035566482692956924, 0.004505698569118977, -0.021855631843209267, 0.007362713105976582, 0.013499481603503227, -0.01874145120382309, 0.036271050572395325, 0.008074324578046799, -0.012224217876791954, 0.0013210609322413802, -0.010688263922929764, 0.023955238983035088, -0.009842785075306892, -0.002032672520726919, 0.028238998726010323, -0.030719071626663208, 0.023532498627901077, 0.013090833090245724, 0.0073274848982691765, 0.0451485812664032, -0.0034294743090867996, -0.02195427194237709, 0.02836582064628601, 0.01561317965388298, 0.047064997255802155, -0.034805554896593094, -0.00982164777815342, 0.01292878296226263, 0.01264695730060339, -0.00839137937873602, -0.0037553359288722277, 0.007242937106639147, 0.004646611865609884, -0.01678275875747204, -0.018234163522720337, 0.015852730721235275, -0.00780658982694149, -0.004012502729892731, 0.01292878296226263, 0.0028799129649996758, -0.005682323593646288, 0.025040270760655403, -0.020263314247131348, 0.0021084132604300976, 0.012167852371931076, 0.005347654689103365, 0.00708793243393302, -0.01999557949602604, -0.033340055495500565, -0.051884230226278305, 0.013471298851072788, -0.010399391874670982, -0.010131657123565674, 0.003839883953332901, -0.005418111570179462, 0.024377979338169098, -0.008800027891993523, -0.007228845730423927, -0.016345927491784096, -0.0001919942005770281, 0.02647758461534977, 0.03322732448577881, -0.01488043088465929, -0.007094977889209986, 0.017233680933713913, -0.004459901712834835, -0.007531809154897928, -0.0015095323324203491, -0.0004562063841149211, 0.0282953642308712, 0.0034136215690523386, -0.012456724420189857, -0.004326034337282181, -0.00812364462763071, -0.00100224488414824, 0.019685570150613785, 0.03644014522433281, 0.0018547696527093649, -0.021221524104475975, -0.002275747712701559, 0.04241486266255379, -0.009384817443788052, -8.344701927853748e-05, -0.0009212198783643544, -0.022334737703204155, -0.020249223336577415, -0.01679684966802597, 0.012611729092895985, -0.0025276299566030502, 0.028464460745453835, 0.01791006326675415, -0.013851764611899853, -0.012196035124361515, 0.012590591795742512, -0.01978420838713646, -0.017318228259682655, 0.0001305648620473221, -0.023715686053037643, -0.02585756592452526, 0.018346894532442093, -0.02822490781545639, 0.0018776679644361138, -0.006573599297553301, 0.013992677442729473, -0.018515991047024727, -0.0033766317646950483, -0.013358568772673607, 0.013478344306349754, -0.003949091769754887, -0.0028499688487499952, 0.005858465097844601, 0.010286661796271801, 0.0057633486576378345, 0.00015918785356916487, -0.004452856257557869, -0.012752641923725605, -0.02375796064734459, 0.0022070524282753468, -0.001155487960204482, 0.02243337593972683, -0.007595219649374485, 0.024758443236351013, -0.006890654098242521, 0.002562858397141099, -0.055097050964832306, 0.0009317883523181081, 0.008109552785754204, 0.010180976241827011, -0.016148649156093597, 0.003843406680971384, -0.029732678085565567, -0.015035435557365417, 0.01254831813275814, 0.0019586931448429823, -0.013224701397120953, -0.012710368260741234, -0.005065828561782837, -0.014936796389520168, 0.033480968326330185, -0.01637411117553711, -0.002645644824951887, 0.012456724420189857, -0.024702079594135284, -0.0060416520573198795, -0.017529597505927086, -0.01819189079105854, 0.014070180244743824, -0.005971195641905069, -0.013612212613224983, -0.009384817443788052, -0.015401809476315975, -0.006020515225827694, 0.013379705138504505, -0.009878013283014297, -0.04968598484992981, 0.011604199185967445, -0.0034999309573322535, 0.00329384533688426, 0.023222491145133972, -0.012611729092895985, 0.016613662242889404, -0.006894176825881004, -0.01080099493265152, 0.008285694755613804, 0.0038892035372555256, 0.009420045651495457, 0.005499136634171009, -0.00301378034055233, 0.0015297885984182358, 0.03443918004631996, 0.009687780402600765, 0.03562285006046295, 0.015627270564436913, -0.016345927491784096, 0.00012164769577793777, 0.01796642877161503, 0.011146231554448605, -0.010822131298482418, 0.002377909841015935, -0.0333118736743927, 0.007524763233959675, -0.032720036804676056, -0.0009740623063407838, -0.00982164777815342, 0.03311459347605705, 0.01750141568481922, 0.02153153158724308, -0.009314360097050667, 0.0009053671383298934, 0.0066581470891833305, -0.018276438117027283, 0.019770117476582527, -0.003681356552988291, 0.012188989669084549, 0.012696276418864727, -0.014415416866540909, -0.004544449970126152, 0.002240519504994154, -0.007412032689899206, 0.006954065058380365, 0.018093250691890717, 0.018558263778686523, 0.008158872835338116, -0.010216204449534416, 0.007130206562578678, 0.011942391283810139, -0.001005767728202045, 0.027548525482416153, -0.003706016344949603, -0.004963666200637817, 0.02272929437458515, -0.0007943980162963271, 0.007848863489925861, -0.009384817443788052, -0.030127236619591713, -0.004185121040791273, 0.021756993606686592, 0.012210126034915447, 0.0030912826769053936, 0.04523312672972679, 0.027957173064351082, 0.03486191853880882, -0.003272708272561431, 0.027365338057279587, 0.007235891185700893, -0.0021401187404990196, 0.002238757908344269, 0.01803688518702984, -0.028943564742803574, 0.04368308186531067, 0.004857981577515602, 0.031818192452192307, 0.003406575880944729, -0.02089742384850979, 0.01376017089933157, 0.009553913027048111, -0.009257995523512363, -0.027139876037836075, -0.011695792898535728, 0.0220247283577919, -0.025899840518832207, 0.017050493508577347, 0.0003547048836480826, 0.015697726979851723, 0.020587414503097534, 0.007221799809485674, -0.008870484307408333, 0.019333286210894585, -0.008659114129841328, 0.025378461927175522, -0.013217655010521412, -0.015655452385544777, -0.020037852227687836, 0.00026487273862585425, -0.012682185508310795, 0.0033607790246605873, -0.019615113735198975, 0.0009185777162201703, 0.0016627754084765911, 0.008095461875200272, 0.007200662977993488, 0.012611729092895985, 0.012076258659362793, -0.005368791986256838, 0.019615113735198975, -0.029986321926116943, -0.035087380558252335, 0.023673413321375847, 0.016331836581230164, 0.0011519651161506772, -0.004692408721894026, -0.014669060707092285, -0.010399391874670982, 0.013527664355933666, 0.005446293856948614, 0.002923948224633932, -0.012336947955191135, -0.005717551801353693, -0.003211058909073472, -0.012759687379002571, 0.008130690082907677, 0.033340055495500565, -0.026026662439107895, -0.009525730274617672, 0.003096567001193762, 0.012639910914003849, 0.01902327872812748, -0.028478551656007767, -0.04249941185116768, 0.022813841700553894, -0.02306748554110527, -0.02605484426021576, -0.014330869540572166, -0.009575050324201584, -0.026801684871315956, 0.003776472993195057, -0.010892587713897228, -0.010815085843205452, -0.015655452385544777, -0.004801616072654724, 0.018177799880504608, -0.017656419426202774, -0.007714996114373207, 0.01909373514354229, 0.0008661756291985512, -0.00811659824103117, -0.019065551459789276, 0.003167023416608572, 0.024758443236351013, 0.07575491815805435, 0.015993645414710045, -0.0017253055702894926, 0.015274987556040287, -0.011350556276738644, -0.014640877954661846, -0.02167244628071785, -0.01059667021036148, 0.035848312079906464, 0.01125191617757082, -0.02473026141524315, -0.006228362210094929, 0.0024377978406846523, -0.004333079792559147, 0.01215376053005457, -0.007098501082509756, -0.012358085252344608, -0.01624728925526142, -0.017106859013438225, 0.008081370033323765, 0.012555363588035107, -0.0024536505807191133, 0.035425569862127304, 0.007454306818544865, 0.016768667846918106, 0.00708793243393302, 0.020263314247131348, -0.00019760870782192796, -0.006555985193699598, -0.029563583433628082, -0.007855908945202827, 0.0191641915589571, 0.002164778532460332, 0.02306748554110527, -0.021686537191271782, 0.016529114916920662, 0.008010913617908955, 0.003596808761358261, -0.019671479240059853, 0.0028217863291502, 0.0038257925771176815, 0.032100021839141846, 0.0013008046662434936, -0.003980797249823809, 0.01582454890012741, -0.031057262793183327, -0.0022968847770243883, 0.023602956905961037, -0.024194791913032532, -0.018840091302990913, 0.012921737506985664, 0.009687780402600765, -0.0005759825580753386, 0.014781791716814041, 0.0016381156165152788, -0.015556814149022102, -0.016050010919570923, -0.014197002165019512, -0.03742653876543045, -0.023659320548176765, -0.026505766436457634, -0.03917386010289192, -0.007362713105976582, -0.010406437329947948, -0.010744629427790642, -0.033199142664670944, 0.002039718208834529, -0.007722041569650173, -0.009229812771081924, 0.008652068674564362, 0.005974718369543552, -0.04235849902033806, -0.025040270760655403, -0.00538640609011054, 0.024645714089274406, 0.013492436148226261, 0.00794750265777111, 0.0040759132243692875, 0.002370864152908325, 0.014542238786816597, 0.007390895858407021, -0.03046542778611183, -0.0015253850724548101, -0.019460108131170273, 0.014154727570712566, -0.015500448644161224, -0.01776915043592453, 0.004357739817351103, -0.0076093110255897045, 0.005879601929336786, 0.004188643768429756, -0.007651585154235363, 0.0060944948345422745, 0.007644539698958397, 0.014725426211953163, 0.023786142468452454, 0.028802651911973953, 0.007799543906003237, 0.02181335911154747, -0.037398356944322586, 0.010709401220083237, -0.020812874659895897, -0.015866823494434357, -0.025758927688002586, 0.004287283401936293, -0.006052220705896616, -0.011421012692153454, 0.008525246754288673, -0.014168819412589073, -0.011244870722293854, -0.0044387648813426495, 0.014154727570712566, -0.002346204360947013, 0.002508254488930106, 0.010688263922929764, -0.027294881641864777, 0.0034946466330438852, 0.022954754531383514, 0.014514056965708733, -0.018868273124098778, -0.014274504035711288, -0.013393796980381012, 0.03246639296412468, -0.004230917897075415, 0.002746045356616378, 0.015782274305820465, 0.023292947560548782, -0.024420252069830894, -0.01776915043592453, 0.012527180835604668, -0.002355011412873864, 0.005104579497128725, -0.026590315625071526, -0.020432408899068832, 0.0012312288163229823, -0.008525246754288673, -0.01473951805382967, -0.01473951805382967, -0.023447951301932335, -0.01076576579362154, -0.026590315625071526, 0.011399875394999981, 0.005030600354075432, -0.01059667021036148, 0.01651502400636673, -0.024265248328447342, -0.023997513577342033, -0.0011281861225143075, 0.0044669476337730885, 0.023377494886517525, -0.029507217928767204, -0.0041005732491612434, -0.03458009287714958, -0.005499136634171009, -0.005995855201035738, -0.01149851456284523, -0.011033501476049423, 0.005650618113577366, 0.056196171790361404, 0.006841334514319897, 0.004336602985858917, 0.010490985587239265, 0.025406643748283386, 0.006327001377940178, -0.01840326003730297, 0.003258617129176855, -0.01985466480255127, -0.02801353856921196, 0.00801795907318592, 0.0047452510334551334, 0.003418905893340707, 0.003140602260828018, -0.011688747443258762, 0.005256061442196369, 0.0016927194083109498, 0.013922221027314663, -0.01588091440498829, -0.0022334738168865442, -0.030352696776390076, -0.05053146183490753, -0.007764315698295832, 0.035791944712400436, -0.0044704703614115715, 0.0003146326926071197, -0.02976086176931858, -0.0038293153047561646, 0.007898183539509773, 0.009617323987185955, 0.03269185498356819, 0.009596186690032482, 0.037454720586538315, 0.00025958847254514694, -0.0036919249687343836, 0.013668577186763287, 0.004523312672972679, -0.027844442054629326, -0.012942874804139137, -0.04458492621779442, -0.022940663620829582, -0.007729087490588427, 0.032100021839141846, 0.01838916912674904, -0.010737583972513676, 0.012484907172620296, -0.002592802280560136, 0.021968362852931023, -0.035425569862127304, -0.026393037289381027, 0.007700904738157988, -0.025110727176070213, -0.0004711784131359309, -0.016543205827474594, -0.017332319170236588, 0.007595219649374485, -0.004738205578178167, -0.001589676714502275, 0.01602182723581791, 0.01582454890012741, -0.02027740515768528, -0.011385784484446049, 0.015289079397916794, 0.00700338464230299, 0.02244746871292591, 0.0064009809866547585, 0.026928506791591644, 0.025603923946619034, -0.0019939213525503874, -0.005981764290481806, -0.01810734160244465, 0.0043401257134974, -0.014528147876262665, 0.00451274449005723, 0.03677833825349808, -0.02089742384850979, -0.006397457793354988, 0.01978420838713646, -0.0009238619823008776, 0.011413967236876488, -0.03714471310377121, 0.023927057161927223, 0.007105546537786722, -0.005245492793619633, -0.042330317199230194, -0.02502617985010147, -0.02089742384850979, 0.0383283831179142, 0.0085041094571352, 0.016205014660954475, -0.006971679162234068, 0.011216687969863415, 0.01059667021036148, 0.0340164378285408, -0.003632036969065666, 0.010822131298482418, -0.013703805394470692, 0.008947986178100109, -0.008877529762685299, -0.004787525162100792, 0.0010612523183226585, -0.00999778974801302, 0.025448918342590332, 0.024082060903310776, -0.026223940774798393, -0.001557971234433353, 0.009701871313154697, 0.015148165635764599, -0.00377295003272593, -0.0060064238496124744, -0.015923188999295235, 0.033480968326330185, -0.015401809476315975, -0.010004835203289986, 0.005132762249559164, -0.010244387201964855, 0.028027629479765892, -0.01692367158830166, -0.006756786722689867, -0.0038892035372555256, -0.012590591795742512, 0.00870843417942524, 0.0172054972499609, 0.014866339042782784, -0.003156455000862479, -0.00170769146643579, 0.0060134693048894405, -0.01118850614875555, 0.0070245214737951756, 0.0008996425312943757, 0.006869517266750336, -0.04021661728620529, -0.01439428050071001, 0.006689852569252253, 0.0025205842684954405, 0.014584513381123543, -0.007792498450726271, -0.02995814010500908, 0.010392346419394016, 0.023307038471102715, -0.007729087490588427, -0.0050552599132061005, 0.03136727213859558, 0.012639910914003849, -0.04929142817854881, 0.02105242758989334, 0.009779374115169048, -0.009081853553652763, 0.028041720390319824, -0.01439428050071001, -0.02020694874227047, -0.038018371909856796, 0.005950058810412884, -0.006295295897871256, 0.018276438117027283, -0.008912757970392704, 0.009532775729894638, 0.0053335633128881454, 0.004407059401273727, -0.005034123081713915, -0.013119015842676163, 0.0020538093522191048, -0.005752780009061098, 0.020108308643102646, -0.0027918422129005194, -0.010505076497793198, 0.009744145907461643, -0.009504592977464199, 0.011660564690828323, -0.008645023219287395, -0.031029080972075462, -0.030634522438049316, -0.024138426408171654, -0.01004006341099739, 0.0067744008265435696, -0.008884575217962265, -0.015232713893055916, -0.012365130707621574, -0.015359535813331604, 0.011935345828533173, -0.0024184223730117083, -0.007996822707355022, 0.012407404370605946, -0.022334737703204155, -0.010533259250223637, 0.024842992424964905, -0.008215237408876419, -0.04850231483578682, -0.005710506346076727, -0.018149616196751595, -0.0299017746001482, -0.008208191953599453, -0.007679767906665802, 0.04599405825138092, 0.020460592582821846, -0.018417350947856903, -0.026111209765076637, -0.016120467334985733, -0.052363332360982895, -0.015627270564436913, -0.026745319366455078, 0.02787262573838234, 0.02725260704755783, 0.04030116647481918, 0.00797568541020155, 0.030155418440699577, -0.011808523908257484, 0.020925605669617653, -0.03443918004631996, -0.020319679751992226, -0.02146107517182827, -0.02953539974987507, 0.019333286210894585, -0.02070014551281929, -0.045120395720005035, 0.013429025188088417, 0.010420529171824455, -0.008208191953599453, 0.002407853724434972, 0.007105546537786722, -0.01345016248524189, -0.011167368851602077, -0.01986875757575035, 0.01159715373069048, 0.040103890001773834, 0.010025972500443459, 0.0016733439406380057, -0.0175577811896801, 0.0135206189006567, -0.004304897505789995, -0.006281204521656036, -0.01511998288333416, 0.018840091302990913, 0.02647758461534977, -0.007954548113048077, 0.012759687379002571, 0.0011176175903528929, -0.017050493508577347, -0.0016988844145089388, -0.007056226953864098, 0.001666298252530396, -0.001066536526195705, 0.01344311609864235, 0.030578158795833588, -0.015697726979851723, 0.014781791716814041, -0.01603591814637184, 0.007070318330079317, 0.013739034533500671, 0.0057633486576378345, 0.03562285006046295, -0.02509663626551628, -0.010223250836133957, -0.011230779811739922, 0.024561164900660515, 0.01658548042178154, -0.019178282469511032, -0.003963182680308819, -0.00989210419356823, -0.03252276033163071, -0.012033984996378422, 0.020657870918512344, -0.014401325955986977, -0.008701388724148273, -0.0020027284044772387, -0.006954065058380365, 0.001171340700238943, -0.0043823993764817715, -0.0038363609928637743, -0.011244870722293854, -0.005615389905869961, -0.013217655010521412, 0.006305864546447992, -0.046444982290267944, -0.0017596532125025988, 0.019882848486304283, -0.029845409095287323, 0.007954548113048077, 0.20460592210292816, -0.017106859013438225, 0.030268149450421333, 0.01812143437564373, 0.019417835399508476, -0.004861504305154085, 0.007729087490588427, 0.006732126697897911, -0.0067109898664057255, -0.0008300666231662035, 0.02389887347817421, 0.004850935656577349, -0.039540234953165054, 0.0022581336088478565, 0.0022299508564174175, -0.023743869736790657, -0.03999115899205208, -0.017895972356200218, -0.0004176754446234554, -0.002059093676507473, 0.010547351092100143, -0.013126062229275703, -0.010737583972513676, -0.001573823974467814, 0.03136727213859558, 0.02752034179866314, 0.006555985193699598, 0.014337914995849133, 0.015866823494434357, 0.044415831565856934, 0.0017261863686144352, -0.005012986250221729, 0.02384250797331333, -0.009060717187821865, -0.0066792843863368034, -0.007348621729761362, 0.010441665537655354, -0.00522787868976593, 0.012823098339140415, 0.01502134371548891, 0.00547095388174057, -0.02243337593972683, 0.005935967434197664, -0.04636043310165405, 0.009173447266221046, -0.01069530937820673, -0.01950238272547722, -0.008616840466856956, 0.01020915899425745, 0.0268862321972847, -0.0005231401300989091, 0.013252883218228817, 0.030296331271529198, 0.010089382529258728, -0.004058299120515585, 0.009708917699754238, -0.011413967236876488, 0.0026738273445516825, -0.02054513990879059, -0.003765904577448964, -0.0127174137160182, -0.009701871313154697, 0.003674310864880681, -0.001599364448338747, -0.0300990529358387, 0.029929956421256065, 0.007679767906665802, 0.02333522029221058, -0.0043401257134974, 0.0008150946232490242, -0.0006301460671238601, 0.0032480484806001186, -0.02737942896783352, 0.0032410030253231525, -0.013041513971984386, -0.005904261954128742, 0.02195427194237709, 0.021235615015029907, 0.040949366986751556, 2.9641305445693433e-05, 0.005016508977860212, 0.002592802280560136, -0.017656419426202774, -0.00979346502572298, 0.011942391283810139, -0.007235891185700893, 0.03255094215273857, -0.025561649352312088, 0.014626787044107914, -0.017726877704262733, -0.02347613498568535, 0.010808040387928486, 0.0027425226289778948, -0.017952337861061096, -0.003549250541254878, -0.0041358014568686485, 0.019840573891997337, 0.01658548042178154, -0.0007177764782682061, -0.03204365447163582, -0.015838639810681343, 0.052447881549596786, 0.021799268200993538, 0.03455191105604172, 0.006668715737760067, 0.0024571733083575964, -0.007140774745494127, 0.011709884740412235, -0.0024976858403533697, 0.0011845513945445418, -0.013992677442729473, -0.045684050768613815, 0.016571389511227608, -0.005326517857611179, -0.014295641332864761, 0.03658105805516243, 0.020531048998236656, 0.00482627609744668, 0.011421012692153454, -0.007249982561916113, 0.023884782567620277, 0.00409705052152276, 0.004051253665238619, 0.008687296882271767, -0.019911030307412148, -0.034326449036598206, -0.002270463388413191, 0.0031036126893013716, -0.03846929594874382, -0.0066546243615448475, 0.01805097796022892, -0.014753608964383602, 0.01734641194343567, -0.004178075585514307, 0.00588664785027504, -0.024617530405521393, -0.013527664355933666, -0.011491469107568264, 0.004769910592585802, -0.0009326690342277288, 0.011322373524308205, 0.005076396744698286, -0.00023008478456176817, -0.0016328314086422324, -0.004068867769092321, 0.01769869402050972, -0.0013941596262156963, 0.004431719426065683, -0.011702838353812695, -0.018487807363271713, 0.01617683283984661, 0.0014549284242093563, -0.02432161383330822, -0.007588174194097519, 0.036468327045440674, -0.019347378984093666, -0.03644014522433281, -0.021855631843209267, 0.011139186099171638, 0.01490861363708973, -0.05129239335656166, 0.028267182409763336, 0.0387229397892952, 0.013633348979055882, -0.025448918342590332, -0.002687918720766902, -0.1816089004278183, 0.012449678964912891, 0.006792014930397272, -0.009420045651495457, 0.004347171168774366, 0.03162091597914696, 0.0030560544691979885, -0.00491082388907671, -0.011505560018122196, 0.0029292325489223003, 0.023250672966241837, -0.011195551604032516, -0.022842025384306908, -0.021362436935305595, 0.006834288593381643, -0.031113628298044205, 0.008497064001858234, 0.03136727213859558, 0.059127166867256165, -0.0019181804964318871, -0.003991365432739258, -0.018290529027581215, -0.0020027284044772387, -0.011089866049587727, 0.014499965123832226, 0.010519168339669704, -0.013393796980381012, 0.026801684871315956, 0.0015905573964118958, -0.024067969992756844, 0.019333286210894585, -0.020742418244481087, 0.020319679751992226, 0.0019199419766664505, 0.005189127288758755, -0.013379705138504505, 0.006570076569914818, -0.01651502400636673, -0.011646473780274391, 0.013555847108364105, 0.034946467727422714, 0.004833321552723646, 0.0284926425665617, -0.004600815009325743, 0.010399391874670982, 0.031198175624012947, 0.03443918004631996, -0.018008703365921974, 0.022052912041544914, -0.005044691264629364, 0.004857981577515602, -0.008060233667492867, 0.008490018546581268, -0.005780962761491537, 0.02695668861269951, 0.011893071234226227, -0.0032321957405656576, 0.03708834573626518, -0.0011678178561851382, -0.009617323987185955, 0.012654002755880356, -0.019615113735198975, 0.0028746286407113075, -0.005559024401009083, -0.00940595380961895, -0.028196725994348526, -0.02591393142938614, 0.01888236403465271, -0.005921876057982445, 0.012484907172620296, 0.0021207432728260756, 0.006788492202758789, 0.022109275683760643, 0.007954548113048077, 0.025533465668559074, 0.011801478452980518, -0.02711169421672821, 0.002339158672839403, 0.024208882823586464, 0.0036919249687343836, 0.017036402598023415, 0.00571402907371521, 0.010364163666963577, -0.007961594499647617, -0.011759203858673573, -0.004491607192903757, 0.0018759066006168723, -0.001232109498232603, -5.245712964097038e-05, 0.01264695730060339, 0.024448435753583908, -0.019770117476582527, 0.013492436148226261, 0.0019305103924125433, 0.006150859873741865, 0.014063134789466858, 0.03638378158211708, -0.007524763233959675, -0.0035140221007168293, -0.01407722570002079, -0.006330524105578661, 0.016543205827474594, -0.04252759367227554, 0.021277889609336853, 0.029450852423906326, 0.017938246950507164, 0.025336187332868576, -0.005428679753094912, 0.034382812678813934, -0.017952337861061096, -0.022193824872374535, 0.007827726192772388, 0.036130137741565704, 0.011653519235551357, -0.03421371802687645, 0.04309124872088432, -0.007813635282218456, -0.026773503050208092, 0.019882848486304283, -0.017318228259682655, 0.046867720782756805, -0.04061117395758629, -0.024983905255794525, 0.008814118802547455, 0.0037940870970487595, -0.017825515940785408, -0.0989210456609726, -0.02654804103076458, 0.029169026762247086, 0.015063618309795856, 0.0010621330002322793, 0.02850673347711563, 0.005266629625111818, 0.032015472650527954, 0.0009221005602739751, 0.035228293389081955, -0.015274987556040287, -0.0006856306572444737, -0.006637010257691145, -0.025871658697724342, 0.005337086506187916, -0.007257028482854366, 0.006802583113312721, -0.02334931306540966, -0.006228362210094929, 0.02654804103076458, 0.0002017920633079484, -0.012266491539776325, 0.010441665537655354, 0.016148649156093597, 0.0071619120426476, -0.020164674147963524, -0.019812392070889473, 0.011702838353812695, 0.014669060707092285, 0.01665593683719635, 0.04548677057027817, -0.0186146292835474, 0.024377979338169098, -0.03610195592045784, -0.006090971641242504, -0.010237341746687889, -0.017585963010787964, -0.016331836581230164, 0.0186146292835474, -0.018727360293269157, 0.007940457202494144, -0.0035069764126092196, 0.013189473189413548, -0.031113628298044205, -0.00459729228168726, 0.007285210769623518, -0.02103833667933941, 0.039540234953165054, 0.006295295897871256, -0.006922359578311443, -0.02481480874121189, -0.023532498627901077, -0.036271050572395325, -0.03173364698886871, 0.016825033351778984, 0.02418069913983345, 0.019601022824645042, 0.012351039797067642, -0.0038187468890100718, 0.007426124066114426, -0.0149508873000741, 0.012428541667759418, -0.007912274450063705, 0.005203218664973974, 0.015697726979851723, 0.015796367079019547, 0.0014038474764674902, -0.006700421217828989, -0.006855425890535116, 0.0022052910644561052, -0.018501900136470795, 0.005203218664973974, -0.031198175624012947, 0.013654486276209354, -0.01847371645271778, -0.0055555016733706, -0.0014743040082976222, -0.015782274305820465, 0.007799543906003237, 0.009384817443788052, -0.011632381938397884, -0.01177329570055008, -0.005844373721629381, -0.035087380558252335, 0.006133245769888163, 0.00916640181094408, 0.009842785075306892, -0.00747544365003705, 0.017881881445646286, -0.0284926425665617, 0.02425115741789341, 0.020094217732548714, 0.007204185705631971, 0.013069696724414825, -0.007376804482191801, 0.007193617522716522, -0.00979346502572298, -0.022052912041544914, 0.019741935655474663, 0.0063446154817938805, -0.006083926185965538, 0.005745734553784132, -0.06093085557222366, -0.0034241899847984314, 0.00996960699558258, 0.006471437402069569, 0.01125896256417036, -0.03193092346191406, -0.00021511275554075837, -0.011026456020772457, 0.011195551604032516, -0.006453823298215866, -0.02375796064734459, 0.025660287588834763, -0.006707466673105955, -0.0057281204499304295, -0.03796200826764107, -0.012625820003449917, 0.012689230963587761, 0.006327001377940178, 0.007028044201433659, 0.0037623816169798374, -0.010335980914533138, -0.0003238801145926118, 0.00015731634630355984, 0.02250383235514164, -0.017924156039953232, 0.01257650088518858, -0.009800511412322521, 0.008884575217962265, -0.017318228259682655, -0.028253091499209404, 0.0157540924847126, -0.0008613317622803152, -0.013605166226625443, 0.0036954479292035103, -0.011413967236876488, -0.05644981563091278, -0.0014593320665881038, 0.013781308196485043, 0.024222973734140396, 0.014964978210628033, -0.015627270564436913, -0.02939448691904545, 0.010216204449534416, -0.023941148072481155, -0.030014505609869957, -0.013266975060105324, -0.03398825600743294, -0.01692367158830166, 0.003277992596849799, 0.0017068107845261693, 0.05371610075235367, -0.0008613317622803152, -0.038779303431510925, -0.01979830116033554, -0.002185915596783161, 0.00587255647405982, 0.01118145976215601, 0.03032451495528221, 0.010878496803343296, 0.01833280362188816, 0.04607860743999481, 0.005477999337017536, 0.012661048211157322, -0.005280721001327038, 0.033199142664670944, -0.030549975112080574, -0.05532250925898552, -0.009222767315804958, 0.020051945000886917, -0.016839124262332916, 0.009173447266221046, -0.020051945000886917, 0.03283276781439781, 0.026505766436457634, 0.005439248401671648, 0.0010498031042516232, -0.01327402051538229, -0.021165158599615097, 0.006749740801751614, 0.028591282665729523, 0.010561442002654076, -0.02320839837193489, -0.01803688518702984, 0.014443599618971348, 0.017684603109955788, 0.003927954472601414, -0.01582454890012741, 0.032579123973846436, 0.0206155963242054, 0.005407542921602726, -0.002709055785089731, 0.0014117738464847207, -0.016839124262332916, 0.002837639069184661, 0.007870000787079334, 0.009715963155031204, -0.02550528384745121, 0.00691883685067296, 0.01519043929874897, 0.01693776249885559, -0.0067109898664057255, 0.01327402051538229, 0.013844719156622887, -0.022278372198343277, -0.013534709811210632, 0.02020694874227047, -0.03159273415803909, -0.015007252804934978, 0.026801684871315956, 3.2971478503895923e-05, 0.009391862899065018, -0.013245837762951851, 0.009370725601911545, 0.008137735538184643, -0.017952337861061096, -0.010018926113843918, -0.002085514832288027, -0.024363886564970016, -0.029789043590426445, 0.0019428402883931994, 0.01978420838713646, 0.014697243459522724, 0.022348828613758087, -0.024434342980384827, 0.020869240164756775, -0.015148165635764599, 0.014366097748279572, -0.021686537191271782, 0.015415900386869907, -0.020037852227687836, -0.0041287560015916824, -0.008997306227684021, -0.0033414035569876432, -0.020869240164756775, -0.016458658501505852, -0.008687296882271767, -0.024899357929825783, 0.007595219649374485, 0.002687918720766902, 0.0862952247262001, 0.03350915014743805, -0.01943192631006241, 0.008172963745892048, -0.023391585797071457, 0.008130690082907677, 0.02160198986530304, -0.0037271534092724323, 0.00042097808909602463, -0.019262829795479774, 0.020742418244481087, -0.019882848486304283, -0.011632381938397884, -0.018205981701612473, -0.02739351987838745, -0.0018442011205479503, -0.00783477257937193, 0.016219105571508408, -0.0066792843863368034, 0.013633348979055882, 0.007870000787079334, 0.003348449245095253, 0.01069530937820673, -0.014380188658833504, -0.0319027416408062, -0.02112288400530815, 0.029225392267107964, 0.003924431744962931, -0.0016865545185282826, -0.01630365289747715, 0.01972784474492073, -0.0016046487726271152, -0.03539738804101944, -0.017994612455368042, -0.02306748554110527, 0.013788353651762009, -0.01519043929874897, -0.025068452581763268, 0.002982074860483408, 0.03018360026180744, 0.013252883218228817, 0.026562131941318512, -0.01713504083454609, -0.013006285764276981, -0.0004562063841149211, -0.00034413638059049845, -0.007827726192772388, -0.0014399564824998379, -0.004315465688705444], "e9416f76-31dd-45d1-88e8-dbefa2b7a04a": [-0.00020479009253904223, -0.00108758092392236, 0.005653335712850094, -0.019222036004066467, -0.0015584026696160436, 0.021793313324451447, -0.015969717875123024, -0.032745566219091415, -0.01777656190097332, -0.0361090749502182, 0.010292059741914272, 0.028242355212569237, 0.015719540417194366, -0.0035389813128858805, -0.010000184178352356, 0.02255774848163128, 0.025365304201841354, -0.016414480283856392, 0.005510873161256313, -0.0014185459585860372, -0.014996802434325218, -0.007262121420353651, -0.01859659142792225, -0.013509631156921387, -0.017540281638503075, 0.01408643089234829, 0.024350693449378014, -0.008658950217068195, -0.01990307681262493, 0.033023543655872345, 0.0034364776220172644, -0.01045884471386671, -0.025490393862128258, 0.012098902836441994, -0.017637573182582855, 0.01794334687292576, -0.0003261874080635607, 0.007665186654776335, 0.020973285660147667, -0.016414480283856392, 0.017734864726662636, 0.022863522171974182, -0.004329475108534098, -0.01505239773541689, -0.008992522023618221, 0.01741519197821617, 0.006789562292397022, 0.0007192627526819706, -0.0071057602763175964, 0.013162161223590374, -0.013593023642897606, 0.0028857376892119646, -0.020875994116067886, 0.020778702571988106, -0.01285638753324747, -0.01897185854613781, 0.021306855604052544, 0.0038986126892268658, 0.006303104571998119, 0.011570748873054981, -0.00453795725479722, -0.004270405508577824, -0.01861048862338066, -0.003697080072015524, -0.01266875397413969, -0.022627241909503937, -0.010736821219325066, -0.024183906614780426, -0.014899510890245438, -0.01990307681262493, 0.023905931040644646, 0.028033873066306114, 0.0006115470896475017, 0.014565939083695412, -0.007984858937561512, -0.010834112763404846, -0.011244126595556736, -0.025365304201841354, -0.0009598856559023261, -0.005177301820367575, 0.013711163774132729, -0.016914837062358856, -0.02329438365995884, -0.0017217134591192007, 0.03157806769013405, 0.03230080381035805, 0.020778702571988106, 0.005840969737619162, -0.015886325389146805, -0.0067687141709029675, 0.01970849372446537, 0.020556321367621422, 0.03185604140162468, 0.028881700709462166, -0.009687461890280247, 0.011084291152656078, 0.00759569276124239, 0.004593552555888891, -0.010347654111683369, -0.017192812636494637, -0.021890604868531227, 0.0030490485951304436, 0.0013238604879006743, -0.011188531294465065, -0.01797114498913288, -0.01013917289674282, 0.016692455857992172, -0.007713832426816225, -0.017067722976207733, 0.01813792996108532, -0.03396866098046303, 0.018012840300798416, 0.0022568171843886375, 0.007901466451585293, -0.00039502987056039274, -0.006869480479508638, 0.023711347952485085, -0.013738960959017277, -0.0063274274580180645, -0.021042779088020325, 0.0009077651775442064, -0.0178738534450531, 0.03216181695461273, -0.021668225526809692, 0.01630328968167305, 0.014857814647257328, -0.000329444941598922, -0.017262306064367294, 0.007185677997767925, -0.01538596861064434, 0.03766573965549469, 0.011862623505294323, 0.01785995438694954, 0.013523529283702374, -0.026685690507292747, 0.014677129685878754, -0.013565226458013058, 0.008902180008590221, -0.013148262165486813, -0.03382967412471771, 0.029076283797621727, 0.03694300353527069, 0.016261592507362366, -0.020194951444864273, 0.0018190051196143031, 0.03666502609848976, -0.00994458980858326, 0.014899510890245438, 0.00510780792683363, 0.01123717799782753, 0.016720253974199295, -0.018832869827747345, -0.018624387681484222, 0.0071057602763175964, 0.014482546597719193, 0.005337138194590807, 0.004815933294594288, 0.026782982051372528, -0.026310423389077187, -0.005330188665539026, -0.013321996666491032, 0.0034972848370671272, -0.010153071023523808, -0.013189958408474922, -0.0007175254286266863, 0.0375545509159565, 0.019388822838664055, -0.021709920838475227, -0.02303030714392662, -0.019458316266536713, -0.014211520552635193, 0.015455462038516998, -0.029799021780490875, 0.005768000613898039, 0.01542766485363245, 0.0020049014128744602, 0.011674989946186543, 0.010966151021420956, -0.0031063812784850597, -0.025393102318048477, 0.01676194928586483, -0.014023886062204838, -0.0030559981241822243, 0.023322181776165962, -0.02266893908381462, -0.01822132244706154, 0.02910408191382885, 0.02090379036962986, -0.006636675447225571, -0.010653427802026272, 0.013752860017120838, 0.002164737554267049, -0.006087673362344503, 0.00037830788642168045, -0.6280032396316528, -0.0025921256747096777, 0.010556136257946491, -0.014468647539615631, 0.0018937111599370837, 0.03143908083438873, 0.02376694232225418, 0.006414294708520174, -0.00033878316753543913, 0.03407984972000122, 0.01036850269883871, 0.007352463901042938, -0.006292680278420448, -0.0046317740343511105, -0.012675703503191471, -0.0379159189760685, -0.004478887189179659, -0.011445659212768078, 0.004280829336494207, 0.004374646581709385, -0.026685690507292747, 0.027227744460105896, 0.007727731019258499, -0.00875624269247055, 0.006174540612846613, -0.01538596861064434, 0.006622776854783297, -0.02568497695028782, 0.004788135644048452, 0.03702639415860176, -0.03021598421037197, 0.010208666324615479, 0.01266180444508791, 0.005125181283801794, 0.04519888758659363, -0.0009251387091353536, -0.006080723833292723, 0.012835538946092129, 0.012501968070864677, 0.039750561118125916, -0.03021598421037197, -0.0017373496666550636, 0.019833583384752274, 0.006066824775189161, -0.009437283501029015, 0.0008200290612876415, 0.015372069552540779, 0.01431576069444418, -0.016553467139601707, -0.027325036004185677, 0.012995375320315361, -0.012828589417040348, -0.007053639739751816, -0.0030785836279392242, 0.011355317197740078, 0.006911176722496748, 0.023780841380357742, -0.020320041105151176, -0.0005611639353446662, 0.005500448867678642, 0.007171779405325651, 0.01674805022776127, -0.012564512901008129, -0.041501808911561966, -0.04027871415019035, 0.01303012203425169, -0.014802219346165657, -0.010848010890185833, 0.016984330490231514, -0.0008678061421960592, 0.018860667943954468, -0.010347654111683369, -0.007512299809604883, 0.0007079700008034706, -0.0021942725870758295, 0.019847482442855835, 0.025393102318048477, -0.009854246862232685, -0.006459466181695461, 0.016914837062358856, -0.006685321684926748, -0.008645052090287209, -0.004861104302108288, -0.006845157593488693, 0.04025091603398323, 0.010743769817054272, -0.01647007465362549, -0.013148262165486813, -0.0038117452058941126, -0.007957061752676964, 0.00883963517844677, 0.0357477068901062, -0.009430333971977234, -0.017178913578391075, 0.004746439401060343, 0.039000023156404495, -0.008172492496669292, -0.004478887189179659, 0.016914837062358856, -0.02054242230951786, -0.017151115462183952, -0.02688027359545231, 0.013572175055742264, -0.0024027545005083084, 0.028992891311645508, 0.028325749561190605, -0.01630328968167305, -0.0038360680919140577, 0.004385070409625769, -0.01970849372446537, -0.004548381548374891, 0.00031684915302321315, -0.024017121642827988, -0.031828247010707855, 0.009506776928901672, -0.02432289533317089, -0.006483789067715406, -0.0003618030750658363, 0.009423384442925453, -0.014510344713926315, -0.013572175055742264, -0.009541524574160576, 0.00520509947091341, -0.002362795639783144, 0.018207425251603127, 0.020014267414808273, 0.01035460364073515, 0.00317761255428195, 0.010305957868695259, -0.004371171817183495, -0.0030872703064233065, -0.021320754662156105, 0.007015417795628309, -0.0017668845830485225, 0.0315224714577198, -0.0032297330908477306, 0.021404147148132324, -0.009291346184909344, 0.008867432363331318, -0.049702100455760956, -0.004023701883852482, 0.009763904847204685, 0.015872426331043243, -0.04205776005983353, 0.009242700412869453, -0.03360729292035103, -0.0126201082020998, 0.0038881886284798384, -0.003198460675776005, -0.015344272367656231, -0.012550613842904568, -0.015219182707369328, -0.008610304445028305, 0.03041056916117668, -0.024156110361218452, -0.0014958580723032355, 0.005990381818264723, -0.03749895468354225, -0.005430954974144697, -0.026491107419133186, -0.007950112223625183, 0.002750224433839321, -0.014927308075129986, -0.011258025653660297, -0.007213475648313761, -0.012918932363390923, -0.02561548352241516, 0.014468647539615631, -0.017734864726662636, -0.027033161371946335, 0.02027834579348564, -0.008658950217068195, 0.010021032765507698, 0.02257164753973484, -0.017929447814822197, 0.02209908701479435, -0.018916262313723564, -0.00040740848635323346, -0.0006480314186774194, 0.007380261551588774, 0.010208666324615479, 0.016136502847075462, 0.0029083234257996082, -0.0010867122327908874, 0.03769353777170181, 0.003408679971471429, 0.02558768540620804, 0.010611731559038162, -0.035858895629644394, -0.001130145974457264, 0.0034521138295531273, 0.005104333162307739, -0.017929447814822197, -0.006334376987069845, -0.023433372378349304, -0.0057818996720016, -0.02127905935049057, 0.011112088337540627, 0.00884658470749855, 0.022307569161057472, 0.019472215324640274, 0.019736291840672493, -0.02008376270532608, -0.0021925352048128843, 0.007581793703138828, -0.014524242840707302, 0.012154498137533665, -0.02173771895468235, 0.014913409017026424, 0.018930161371827126, -0.005510873161256313, -0.0019354075193405151, -0.003988954704254866, -0.009242700412869453, 0.012953679077327251, 0.01951391063630581, 0.02486494742333889, 0.013280300423502922, 0.0013255977537482977, 0.011431761085987091, 0.015622247941792011, 0.010014083236455917, 0.028965093195438385, 0.009833399206399918, 0.0025226317811757326, 0.021112272515892982, 0.004065398126840591, 0.017067722976207733, 0.002720689633861184, -0.02329438365995884, -0.0007987464778125286, 0.018402008339762688, 0.015177486464381218, 0.00220122211612761, 0.040584489703178406, 0.023627955466508865, 0.05481685698032379, -0.005799273028969765, 0.030549556016921997, -0.004148791078478098, 0.000770948885474354, 0.009590170346200466, 0.029687831178307533, -0.008186391554772854, 0.03641485050320625, -0.005045263562351465, 0.03021598421037197, -0.006758290342986584, -0.035052765160799026, 0.011000897735357285, 0.01036850269883871, -0.008387924171984196, -0.0227662306278944, -0.01017391961067915, 0.027283338829874992, -0.010069678537547588, 0.019486114382743835, 0.011890420690178871, 0.005507398396730423, 0.01520528458058834, 0.006285731215029955, -0.022168582305312157, 0.003370458260178566, 0.0010980049846693873, 0.021848909556865692, -0.010778517462313175, -0.016094807535409927, -0.02247435599565506, 0.005910463631153107, -0.019847482442855835, 0.010097475722432137, -0.019639000296592712, 0.010792415589094162, -0.005462227389216423, 0.007776377256959677, 0.01160549558699131, 0.0023801689967513084, 0.0072343237698078156, -0.008492165245115757, 0.013460985384881496, -0.02394762821495533, -0.016261592507362366, 0.027936581522226334, 0.01923593506217003, -0.0011223278706893325, -0.0005086091114208102, -0.0026598824188113213, -0.00025235002976842225, 8.360994979739189e-05, 0.005576892290264368, -0.009034218266606331, -0.0072343237698078156, -0.005403157323598862, 0.0005307603278197348, -0.008068251423537731, 0.016233794391155243, 0.04261371120810509, -0.022516051307320595, -0.015441563911736012, 0.013245553709566593, 0.012050257064402103, 0.010973100550472736, -0.01142481155693531, -0.01923593506217003, 0.02006986364722252, -0.025379203259944916, -0.01779046095907688, -0.013891847804188728, 0.003995904233306646, -0.020306142047047615, 0.01040324941277504, 0.0021716870833188295, -0.018346412107348442, -0.01934712566435337, -0.01045189518481493, 0.001895448425784707, 0.006959822494536638, -0.015900224447250366, 0.0138571010902524, 0.0017191075021401048, 0.007957061752676964, -0.021056678146123886, 0.014211520552635193, 0.023558462038636208, 0.06276696920394897, 0.022905217483639717, -0.0025903882924467325, 0.013572175055742264, -0.0011318832403048873, -0.01692873425781727, -0.02954884245991707, -0.016080908477306366, 0.027700303122401237, 0.001964942552149296, -0.017276205122470856, 0.001669593038968742, 0.012196194380521774, -0.0045866030268371105, 0.014718825928866863, -0.007547046989202499, -0.01505239773541689, -0.012467221356928349, -0.018026739358901978, 0.005295441951602697, 0.015441563911736012, -0.009437283501029015, 0.03546972945332527, 0.004975769203156233, 0.021237362176179886, 0.010674276389181614, 0.029159676283597946, 0.006727017927914858, 0.006921601016074419, -0.009784753434360027, -0.016178200021386147, 0.015872426331043243, -0.002616448560729623, 0.021126171573996544, -0.007567895110696554, 0.024350693449378014, 0.007526198867708445, -0.017262306064367294, -0.02340557426214218, -0.0028944246005266905, -0.00264945812523365, 0.030994318425655365, 0.00520509947091341, -0.013349794782698154, 0.016233794391155243, -0.03399645909667015, -0.010521389544010162, 0.027408428490161896, -0.00884658470749855, -0.001197033911012113, 0.015497159212827682, 0.011348367668688297, -0.00592088745906949, 0.02504563331604004, 0.004256506450474262, -0.010333755984902382, -0.006247509270906448, -0.011501254513859749, -0.04797864705324173, -0.03396866098046303, -0.01630328968167305, -0.029270866885781288, 0.0003891663218382746, -0.011661090888082981, -0.011966864578425884, -0.03496937453746796, 0.005670709069818258, -0.004107094369828701, -0.009617967531085014, 0.02347506769001484, -0.003658858360722661, -0.04436495900154114, -0.03327371925115585, -0.00444761523976922, 0.015858527272939682, 0.02442018687725067, -0.005625538062304258, 0.009965437464416027, 0.002204696647822857, 0.015107992105185986, -0.009555422700941563, -0.03266217187047005, -0.004451090004295111, -0.01399608887732029, 0.026282625272870064, -0.008165542967617512, -0.024628669023513794, 0.014774421229958534, 0.0037630994338542223, 0.005959109403192997, 0.00322278356179595, -0.02091768942773342, -0.005625538062304258, 0.002786708762869239, 0.013634719885885715, 0.016192099079489708, 0.028575927019119263, 0.005632487591356039, 0.024531377479434013, -0.03510836139321327, 0.013579124584794044, -0.017832156270742416, -0.006956348195672035, -0.016803646460175514, -0.0029795547015964985, 0.009145408868789673, -0.00435032369568944, -0.007408058736473322, -0.005271119065582752, -0.012905033305287361, -0.0005255482974462211, 0.005097384098917246, -0.004051499534398317, 0.002383643761277199, 0.012085003778338432, -0.014552040956914425, -0.001203983323648572, 0.029159676283597946, 0.009430333971977234, -0.008200290612876415, -0.006417769473046064, -0.014996802434325218, 0.02810336835682392, 0.0065428586676716805, 0.007470603566616774, 0.009534575045108795, 0.014468647539615631, -0.030049199238419533, -0.019680697470903397, 0.00921490229666233, -0.02319709211587906, 0.00898557249456644, -0.011813977733254433, -0.0021768989972770214, -0.0008426145650446415, -0.02164042741060257, -0.00453448249027133, -0.006341326050460339, -0.017345698550343513, 0.0016417953884229064, -0.03113330528140068, -0.003578940173611045, 0.0012917194981127977, -0.0020935062784701586, 0.004291253630071878, -0.026921970769762993, -0.028409142047166824, -0.005750627256929874, 0.00034095486626029015, 0.026213131844997406, -0.03057735413312912, -0.011188531294465065, -0.030799735337495804, -0.011876522563397884, -0.021529236808419228, -0.02025054767727852, -0.014774421229958534, -0.004899326246231794, 0.05184251442551613, 0.016442276537418365, 0.014454749412834644, 0.015983616933226585, 0.026491107419133186, 0.015969717875123024, -0.013169110752642155, 0.012467221356928349, -0.021862808614969254, -0.011292772367596626, 0.011730585247278214, 0.0065532829612493515, 0.00511475745588541, 0.009708309546113014, -0.0010545712430030107, 0.0031359160784631968, -0.004989668261259794, 0.007296868599951267, -0.004131417255848646, -0.006914651487022638, -0.0280755702406168, -0.04578263685107231, -0.009451182559132576, 0.031633663922548294, -0.01417677290737629, -0.004979243967682123, -0.022877419367432594, -0.00635869987308979, 0.010722922161221504, -0.010910555720329285, 0.02190450392663479, 0.0021473641972988844, 0.03305133804678917, 0.0017842580564320087, -0.012237890623509884, 0.009485929273068905, 0.00440244423225522, -0.018818970769643784, -0.007352463901042938, -0.04695013538002968, -0.01943051815032959, -0.0006697482895106077, 0.02283572405576706, 0.012863337062299252, -0.014718825928866863, 0.0069737215526402, 0.0205285232514143, 0.022627241909503937, -0.03730437159538269, -0.026310423389077187, 0.002618185942992568, -0.011716686189174652, 0.010917505249381065, -0.010563085786998272, -0.03710978850722313, 0.013801505789160728, -0.0018659135093912482, -0.0029013738967478275, 0.02918747439980507, 0.01437135599553585, -0.02854812890291214, -0.023794740438461304, 0.02414221130311489, -0.00715788034722209, 0.03802710771560669, 0.015900224447250366, 0.023975424468517303, 0.031272292137145996, 0.004569229669868946, -0.016873139888048172, -0.02072310633957386, 0.013280300423502922, -0.009729158133268356, -0.0006423850427381694, 0.04116823896765709, -0.010299008339643478, -0.0028683643322438, 0.011341418139636517, 0.0038186945021152496, 0.00880488846451044, -0.03766573965549469, 0.013933544047176838, 0.020862095057964325, 0.000582012115046382, -0.03268996998667717, -0.032467588782310486, -0.028033873066306114, 0.021390248090028763, -0.003068159567192197, 0.01371811330318451, -0.008221138268709183, 0.010375452227890491, 0.010799365118145943, 0.042780496180057526, -0.014996802434325218, 0.018360311165452003, -0.0018276917980983853, 0.0055907913483679295, -0.015219182707369328, 0.0018919737776741385, 0.011223278939723969, -0.004881952423602343, 0.014329659752547741, 0.03280116245150566, -0.015789033845067024, -0.0027380629908293486, 0.004683894570916891, 0.008686748333275318, -0.01962510123848915, -0.0058201211504638195, -0.013968290761113167, 0.03516395762562752, -0.014343558810651302, -0.0061467429623007774, -0.0036310607101768255, -0.006455991417169571, 0.019764089956879616, -0.02126516029238701, -0.01573343761265278, 0.00879793893545866, -0.0023106751032173634, 0.010632580146193504, 0.006164116784930229, 0.01552495639771223, -0.004572704434394836, 0.000755312736146152, 0.005531721282750368, -0.0017173701198771596, -0.004711692221462727, -0.0018190051196143031, 0.008631153032183647, -0.02854812890291214, -0.01566394418478012, 0.006459466181695461, 0.00315502705052495, 0.008679798804223537, -0.006872955244034529, -0.006984145380556583, 0.009492878802120686, 0.026213131844997406, -0.01877727545797825, -0.0019440943142399192, 0.029076283797621727, 0.01422541867941618, -0.0427527017891407, 0.021626528352499008, 0.006685321684926748, -0.011487355455756187, 0.01731790043413639, -0.016344984993338585, -0.007255172356963158, -0.02073700539767742, 0.006105046719312668, -0.004037600476294756, 0.02808946929872036, -0.005236371885985136, 0.006407345645129681, 0.01869388297200203, -0.0008921290282160044, -0.00026299129240214825, -0.012418575584888458, 0.0069389743730425835, 0.0072760204784572124, 0.017637573182582855, 0.007637389004230499, -0.013454035855829716, 0.014649332500994205, -0.008311480283737183, 0.008137745782732964, -0.014899510890245438, -0.04736709967255592, -0.02118176780641079, -0.019402720034122467, -0.00022194642224349082, 0.005531721282750368, 5.1116083341185004e-05, -0.005444854032248259, -0.01380845531821251, -0.01776266284286976, 0.024712061509490013, -0.004013277590274811, 0.0020639714784920216, 0.017554180696606636, -0.029687831178307533, -0.014941207133233547, 0.023155396804213524, -0.0076860347762703896, -0.04758948087692261, -0.010055779479444027, -0.012098902836441994, -0.021070577204227448, 0.0023176243994385004, -0.009708309546113014, 0.049868885427713394, 0.007776377256959677, -0.01906915009021759, -0.02974342554807663, -0.023711347952485085, -0.04367002099752426, -0.009041167795658112, -0.02126516029238701, 0.036164671182632446, 0.03377407789230347, 0.04303067550063133, 0.0023593208752572536, 0.020778702571988106, -0.02193230204284191, 0.013488782569766045, -0.05103638395667076, -0.0029100605752319098, -0.025921257212758064, -0.009909842163324356, 0.008304531686007977, -0.013148262165486813, -0.049590907990932465, 0.013634719885885715, 0.003526819869875908, -0.01514968927949667, 0.002199484733864665, 0.009541524574160576, -0.014746624045073986, 0.008464367128908634, -0.005218998529016972, -0.003120279870927334, 0.03894443064928055, 0.023502865806221962, 0.0003607172111514956, -0.030160389840602875, 0.015789033845067024, 0.006692270748317242, -0.00884658470749855, -0.01261315867304802, 0.014468647539615631, 0.01833251304924488, -0.00897862296551466, 0.008492165245115757, -0.0014281014446169138, -0.02239096164703369, -0.004006328526884317, -0.019472215324640274, -0.000744019984267652, 0.007845871150493622, 0.012356030754745007, 0.018568793311715126, -0.008061302825808525, 0.010980050079524517, -0.0020865569822490215, 0.003280116245150566, 0.01767927035689354, 0.0013325471663847566, 0.024823252111673355, -0.025476494804024696, -0.01760977692902088, -0.010611731559038162, 0.02043123170733452, -0.007929263636469841, -0.0009902892634272575, -0.012001611292362213, -0.008707595989108086, -0.04586603119969368, -0.019764089956879616, 0.025754470378160477, -0.019652899354696274, -0.002687679836526513, -0.0017486424185335636, -0.007790275849401951, -0.007512299809604883, -0.0016348459757864475, -0.013287249952554703, -0.015177486464381218, -0.0019249834585934877, -0.008054353296756744, 0.008471316657960415, -0.0501190610229969, 0.0035858897026628256, 0.029326461255550385, -0.028659319505095482, 0.0069737215526402, 0.19891957938671112, 0.0003880804870277643, 0.025949053466320038, 0.04511549696326256, 0.023600157350301743, -0.019222036004066467, 0.009048117324709892, 0.007091861218214035, 0.00040132776484824717, 0.011904319748282433, 0.020500725135207176, 1.917871122714132e-05, -0.026477208361029625, 0.0006059007137082517, 0.012779943645000458, -0.019277632236480713, -0.03822169080376625, -0.012098902836441994, -0.020306142047047615, 0.007143981754779816, 0.012432473711669445, -0.010834112763404846, -0.017359597608447075, -0.007032791618257761, 0.040389902889728546, 0.025170721113681793, -0.003130704164505005, 0.023780841380357742, 0.025823965668678284, 0.02200179547071457, -0.006032078061252832, -0.012418575584888458, 0.022529950365424156, -0.0021108798682689667, -0.020973285660147667, 0.0007852820563130081, 0.016011415049433708, -0.01658126525580883, -0.001282164012081921, 0.018124030902981758, -0.0027536991983652115, -0.019861381500959396, -0.005000092089176178, -0.02736673131585121, 0.01667855679988861, -0.01794334687292576, -0.015358170494437218, -0.0013968291459605098, 0.012029409408569336, 0.01399608887732029, -0.0009789965115487576, 0.007533147931098938, 0.012383827939629555, 0.008471316657960415, -0.0013108303537592292, 0.009374738670885563, -0.006139793898910284, 0.0028805257752537727, -0.008026555180549622, -0.011536001227796078, -0.007553996052592993, 0.0055907913483679295, -0.008116897195577621, 0.003330499166622758, -0.037081990391016006, 0.030632948502898216, -0.01437135599553585, 0.019472215324640274, 0.0072899190708994865, -0.007394160144031048, -0.0032140968833118677, -0.002282877452671528, -0.041029248386621475, 0.01035460364073515, -0.020653612911701202, -0.011939066462218761, 0.012828589417040348, 0.029131878167390823, 0.045087698847055435, 0.010465794242918491, -0.0035476679913699627, 0.0052989162504673, -0.019291531294584274, -0.01804063841700554, 0.0182352215051651, -0.009666613303124905, 0.022502152249217033, -0.021862808614969254, 0.007449755445122719, -0.015983616933226585, -0.015552754513919353, 0.016900938004255295, -0.00041392355342395604, -0.005229422356933355, -0.0006832127692177892, -0.0017581979045644403, 0.0029100605752319098, 0.012696551159024239, -0.01713721640408039, -0.02661619707942009, -0.014718825928866863, 0.05654030665755272, 0.008332328870892525, 0.02175161801278591, -0.002953494433313608, 0.012071105651557446, 0.0012300435919314623, 0.020097659900784492, 0.002018800238147378, 0.012647905386984348, -0.0014567676698789, -0.03672062233090401, 0.019096948206424713, -0.013217756524682045, -0.004253032151609659, 0.03021598421037197, 0.023502865806221962, -0.002635559532791376, 0.013836252503097057, -0.009374738670885563, 0.024823252111673355, 0.0008230694220401347, 0.007470603566616774, 0.0067687141709029675, -0.02229367010295391, -0.02551819197833538, 0.0017043399857357144, 0.0016278966795653105, -0.036331456154584885, -0.02571277506649494, 0.0033913066145032644, -0.023002509027719498, 0.025810066610574722, -0.008784039877355099, -0.006831259001046419, -0.02754741534590721, -0.007143981754779816, -0.004673470743000507, -0.00935389008373022, -0.0032540559768676758, 0.00902031920850277, 0.003954207990318537, 0.0002899202227126807, 0.0009703097748570144, -0.005813172087073326, 0.02496223896741867, -0.00773468054831028, 0.004590077791363001, -0.030188187956809998, -0.012342131696641445, 0.011271924711763859, -0.003466012654826045, 0.003651909064501524, -0.0012057207059115171, 0.03519175574183464, -0.02763080969452858, -0.04639418423175812, -0.02624092996120453, 0.013926594518125057, 0.01631718873977661, -0.05323239415884018, 0.01574733667075634, 0.03730437159538269, 0.012091953307390213, -0.028200659900903702, 0.0013499206397682428, -0.17846055328845978, 0.01666465774178505, 0.002050072653219104, 0.005785374436527491, -0.009763904847204685, 0.020778702571988106, 0.004221759736537933, -0.004308626987040043, -0.012050257064402103, 0.00255564134567976, 0.01161244511604309, -0.02357235923409462, -0.04597721993923187, -0.02227977104485035, 0.014468647539615631, -0.022807925939559937, -0.0006905964692123234, 0.03619246929883957, 0.05367715656757355, -0.009631866589188576, 0.008603355847299099, -0.010854960419237614, -0.009194054640829563, -0.009402535855770111, 0.012967578135430813, 0.02339167520403862, -0.012960628606379032, 0.03002140112221241, -0.002119566546753049, -0.030883127823472023, 0.010076628066599369, -0.015399867668747902, 0.013530478812754154, 0.009381688199937344, -0.001069338759407401, -0.003340923460200429, -0.01380845531821251, -0.01667855679988861, -0.007408058736473322, 0.012008560821413994, 0.03930579870939255, 0.014211520552635193, 0.03644264489412308, 0.006049451418220997, 0.0003433437377680093, 0.013280300423502922, 0.03077193722128868, -0.015455462038516998, 0.01546936109662056, -0.012425525113940239, 0.007929263636469841, -0.015705641359090805, -0.004141841549426317, -0.0002269412943860516, 0.02118176780641079, 0.015177486464381218, 0.010194768197834492, 0.025003936141729355, 0.009882044978439808, -0.005357986316084862, 0.009617967531085014, -0.02422560378909111, 0.009750005789101124, -0.014635433442890644, -0.018179627135396004, -0.038916632533073425, -0.005854868330061436, 0.012467221356928349, 0.0014593737432733178, 0.011355317197740078, 0.0014072532067075372, 0.001557533978484571, 0.02145974338054657, 0.009006420150399208, 0.02191840298473835, -0.001476747216656804, -0.035692110657691956, 0.0059869070537388325, 0.021709920838475227, 0.0021265160758048296, 0.008478266187012196, 0.01869388297200203, 0.006859056651592255, 0.000634566938970238, -0.013919644989073277, 0.0025921256747096777, 0.003797846380621195, 0.006466415245085955, 0.0010224302532151341, 0.006775663699954748, 0.027950480580329895, -0.009624917060136795, 0.003201935440301895, 0.0018207423854619265, 0.003565041581168771, 0.01628939062356949, 0.022321468219161034, 0.00506958644837141, 0.007463654037564993, -0.010771567933261395, 0.0016305026365444064, 0.010806314647197723, -0.03722097724676132, 0.013648618943989277, 0.04016752541065216, 0.01247417088598013, 0.0040306514129042625, -0.0015471099177375436, 0.03730437159538269, -0.015775134786963463, -0.0441981740295887, 0.018638286739587784, 0.02293301559984684, 0.003493810072541237, -0.026143638417124748, 0.03747115656733513, -0.008047403767704964, -0.0322452113032341, 0.022363165393471718, -0.022057391703128815, 0.03263437747955322, -0.03635925427079201, -0.021696021780371666, 0.002103930339217186, 0.004888901952654123, -0.015580551698803902, -0.10335145890712738, -0.02597685158252716, 0.03583109751343727, 0.005086959805339575, -0.014426951296627522, 0.024628669023513794, 0.0068243094719946384, 0.03469139710068703, -0.010521389544010162, 0.029771223664283752, -0.006574131082743406, 0.0026755183935165405, 0.0015922809252515435, -0.022502152249217033, 0.016650758683681488, -0.0033339739311486483, -0.0004280395223759115, -0.020306142047047615, -0.007950112223625183, 0.03157806769013405, 0.0070501649752259254, -0.006136319134384394, 0.009333042427897453, 0.006879904773086309, -0.012105852365493774, -0.023183193057775497, -0.03427443280816078, 0.012995375320315361, 0.014454749412834644, 0.004496261011809111, 0.02946544997394085, -0.02063971385359764, 0.02533750794827938, -0.02708875574171543, -0.013940493576228619, -0.013648618943989277, -0.03480258956551552, -0.022863522171974182, 0.01897185854613781, -0.027116553857922554, 0.003978530876338482, -0.004736015107482672, 0.005403157323598862, -0.026755183935165405, -0.005260694772005081, -0.002475723158568144, -0.01824912056326866, 0.027464022859930992, 0.008784039877355099, -0.00888133142143488, -0.030883127823472023, -0.03141128271818161, -0.0329679474234581, -0.03694300353527069, 0.01658126525580883, 0.020862095057964325, 0.024892745539546013, 0.019013553857803345, -0.017665371298789978, 0.004826357122510672, -0.012036358006298542, -0.00568460812792182, -0.014385255053639412, 0.007887567393481731, 0.006747866049408913, 0.021501438692212105, -0.0025521665811538696, -0.010743769817054272, -0.011848724447190762, 0.002656407654285431, -0.022404860705137253, 0.013933544047176838, -0.01748468726873398, 0.0038152197375893593, -0.02136245183646679, 0.012731297872960567, -0.0005685476935468614, -0.01656736619770527, 0.017832156270742416, 0.004562280140817165, -0.011112088337540627, -0.014329659752547741, -1.5188236829999369e-05, -0.022057391703128815, -0.0015670893481001258, 0.0014706664951518178, 0.013141312636435032, -0.007470603566616774, 0.02854812890291214, -0.05606774613261223, 0.018818970769643784, 0.012300435453653336, 0.008033504709601402, 0.012974526733160019, -0.0008056958904489875, 0.012210093438625336, -0.012772995047271252, -0.005889615509659052, 0.014426951296627522, -0.006532434839755297, -0.0033669837284833193, 0.0019493063446134329, -0.06287816166877747, 0.007359412964433432, 0.017554180696606636, 0.003346135374158621, -0.0017026026034727693, -0.024100514128804207, 0.010764618404209614, -0.0011423074174672365, -0.00029752112459391356, -0.00453795725479722, -0.019319327548146248, 0.006984145380556583, -0.021404147148132324, 0.000966835068538785, -0.025448698550462723, -0.0030473112128674984, 0.004635248798877001, 0.0008317561587318778, 0.017290104180574417, 0.003829118562862277, -0.007998757995665073, -0.016136502847075462, 0.0046421983279287815, 0.029799021780490875, -0.02607414312660694, 0.0074011096730828285, -0.0283813439309597, 0.006004280410706997, -0.023419473320245743, -0.03727657347917557, 0.022238075733184814, -0.002017062855884433, -0.0010910555720329285, 0.0022342316806316376, -0.0031480775214731693, -0.04350323602557182, 0.0016244219150394201, 0.009062015451490879, 0.01136921625584364, 0.015274778008460999, -0.01795724593102932, -0.013711163774132729, 0.010743769817054272, -0.014385255053639412, -0.01418372243642807, -0.013558276928961277, -0.03168925642967224, -0.017985044047236443, 0.0010441471822559834, 0.006143268197774887, 0.06115470826625824, -0.0026511955074965954, -0.033579494804143906, -0.014941207133233547, 0.011542950756847858, -0.00787366833537817, 0.019361024722456932, 0.027464022859930992, 0.018207425251603127, 0.011966864578425884, 0.03399645909667015, 0.0023037255741655827, 0.01776266284286976, -0.006518535781651735, 0.03658163547515869, -0.03113330528140068, -0.0512031689286232, -0.0259629525244236, 0.002128253225237131, -0.024545276537537575, 0.009409485384821892, -0.035692110657691956, 0.034135445952415466, 0.030883127823472023, 0.016150401905179024, 0.008380974642932415, -0.008380974642932415, -0.02690807171165943, -0.003978530876338482, 0.027380630373954773, 0.0283813439309597, -0.02090379036962986, -0.03469139710068703, 0.008902180008590221, -0.0012387302704155445, 0.013363693840801716, -0.015107992105185986, 0.027741998434066772, 0.010326806455850601, 0.007943162694573402, 0.0014619797002524137, 0.006063350476324558, -0.007512299809604883, 0.009458131156861782, 0.001486302586272359, 0.009624917060136795, -0.02109837345778942, 0.019402720034122467, 0.01702602580189705, 0.0211956650018692, -0.018805071711540222, 0.021890604868531227, 0.007359412964433432, -0.02954884245991707, -0.02144584432244301, 0.020556321367621422, -0.036164671182632446, -0.014899510890245438, 0.03644264489412308, 0.028520332649350166, 0.010479693301022053, -0.006761764641851187, -0.005357986316084862, 0.02098718471825123, -0.02404491975903511, -0.010778517462313175, -0.014155925251543522, -0.03280116245150566, -0.03002140112221241, -0.0028092944994568825, 0.017151115462183952, 0.03299574553966522, 0.02209908701479435, -0.030883127823472023, 0.02671348862349987, -0.020611915737390518, 0.0234889667481184, -0.017429091036319733, 0.01906915009021759, -0.018096234649419785, -0.020764803513884544, -0.007241273298859596, -0.0005094778025522828, -0.010625630617141724, -0.008679798804223537, -0.02043123170733452, -0.019486114382743835, 0.02144584432244301, -0.00506611168384552, 0.08834075182676315, 0.03811050206422806, -0.01943051815032959, 0.008610304445028305, -0.02522631734609604, -0.005493499804288149, 0.010556136257946491, 0.0068382080644369125, -0.004197436850517988, -0.013968290761113167, 0.014329659752547741, -0.020611915737390518, 0.0021404146682471037, -0.015636146068572998, -0.01731790043413639, -0.00037787354085594416, -0.0022342316806316376, 0.0182352215051651, -0.004861104302108288, 0.0231275986880064, 0.015580551698803902, -0.002472248626872897, 0.01741519197821617, -0.022363165393471718, -0.04064008221030235, -0.014148975722491741, 0.019597304984927177, 0.00870064739137888, 0.0021160917822271585, -0.03168925642967224, 0.02504563331604004, 0.0027467499021440744, -0.02938205748796463, 0.0007739892462268472, -0.02396152727305889, 0.010827163234353065, -0.01556665264070034, -0.018582692369818687, 0.014871712774038315, 0.026963666081428528, 0.010653427802026272, 0.007859770208597183, -0.012161447666585445, -0.014524242840707302, -0.0007626964943483472, -0.006386497523635626, -0.010980050079524517, -0.011091239750385284, -0.005476125981658697], "d8b2233a-0cbd-4e1e-8f13-144507e0ba90": [-0.0010650679469108582, -0.002222674433141947, 0.01384937483817339, -0.02220928482711315, -0.006226282101124525, 0.02234896644949913, -0.016663948073983192, -0.03204283118247986, -0.0074589671567082405, -0.04696076363325119, 0.020281687378883362, 0.021245485171675682, 0.015672212466597557, -0.013968103565275669, -0.016202999278903008, 0.02417878806591034, 0.022502614185214043, -0.012312883511185646, -0.004270747769623995, -0.007940866984426975, -0.010119890794157982, 0.00417646300047636, -0.02132929489016533, -0.013549060560762882, -0.04011639207601547, 0.011446860618889332, 0.024597831070423126, -0.010971945710480213, -0.027587004005908966, 0.034920260310173035, 0.005545337218791246, -0.012773830443620682, -0.015127455815672874, 0.005674541927874088, -0.026804791763424873, 0.012340819463133812, 0.0029106035362929106, -0.008506574667990208, 0.01276684645563364, -0.003156791441142559, 0.013171921484172344, 0.011237339116632938, -0.009225932881236076, -0.01582586206495762, -0.016873469576239586, 0.025743214413523674, 0.0032737741712480783, 0.008499590680003166, 0.0018472817027941346, -0.0016892675776034594, 0.002629495458677411, -0.0035304382909089327, -0.020435335114598274, 0.011167499236762524, -0.006868815049529076, -0.008164356462657452, 0.006418343633413315, 0.0018333136104047298, 0.016035383567214012, 0.004305667709559202, 0.015937605872750282, 0.01611919142305851, -0.011921776458621025, -0.022907689213752747, -0.03162378817796707, -0.031484104692935944, -0.009037363342940807, -0.014079848304390907, -0.011523685418069363, -0.028103824704885483, 0.02842509001493454, 0.032657425850629807, 0.004392968490719795, 0.007137700915336609, -0.02924920804798603, -0.006690721493214369, 0.0052275629714131355, -0.022376902401447296, -0.012389708310365677, -0.002760446397587657, 0.010119890794157982, -0.022837849333882332, -0.032741233706474304, 0.011907808482646942, 0.018801067024469376, 0.015406818129122257, 0.012620181776583195, 0.0046478863805532455, -0.012103362008929253, 0.00972179975360632, 0.010238619521260262, 0.01435921061784029, 0.02036549523472786, 0.01664998009800911, 0.007926899008452892, -0.0008590383804403245, 0.00338551914319396, 0.011118610389530659, -0.008387845940887928, -0.02032359130680561, -0.015462690964341164, -0.004511697683483362, -0.010992897674441338, -0.006180885713547468, -0.018326152116060257, -0.008778952993452549, 0.01694330945611, -0.02016994170844555, 0.01621696911752224, -0.002746478421613574, -0.028439059853553772, 0.02693050354719162, 0.0042742397636175156, 0.00429519172757864, 0.008967522531747818, -0.017250608652830124, 0.03235012665390968, -0.03078570030629635, 0.005206610541790724, -0.015378882177174091, 0.0009358629467897117, -0.006673261523246765, 0.024541957303881645, -0.03455708920955658, 0.009093235246837139, 0.013248746283352375, 0.0041869389824569225, -0.01155860535800457, 0.004916772246360779, -0.020142005756497383, 0.013695725239813328, 0.005765334703028202, 0.01674775592982769, 0.014184609055519104, -0.014848094433546066, 0.006980559788644314, -0.02089628390967846, -2.5985584215959534e-05, 0.005824699066579342, -0.03693166747689247, 0.022502614185214043, 0.02307530678808689, 0.019094398245215416, -0.028774293139576912, 0.0006455882685258985, 0.04483761265873909, -0.013011288829147816, 0.01722267083823681, 0.007933882996439934, 0.007570712361484766, 0.016147127375006676, -0.024891160428524017, -0.010015130043029785, 0.01136305183172226, 0.01334652304649353, -0.010343380272388458, -0.01341636385768652, 0.017446162179112434, -0.019457567483186722, 0.0010057034669443965, -0.01158654224127531, -0.00499359704554081, -0.005852635484188795, -0.005482480861246586, -0.0004092217714060098, 0.034249790012836456, 0.005091373808681965, -0.013130017556250095, -0.001601093914359808, -0.02282388135790825, -0.015532530844211578, 0.011041785590350628, -0.03668024018406868, 0.010385285131633282, 0.010853216052055359, 0.01780933141708374, 0.013632869347929955, 0.0019677565433084965, -0.025463853031396866, -0.01713886298239231, 0.024681638926267624, -0.01025957241654396, 0.003380281152203679, 0.020784538239240646, -0.02046327106654644, -0.020742634311318398, 0.03634500503540039, -0.004637410398572683, 0.0028756833635270596, 0.0012885575415566564, 0.011020833626389503, 0.0006621754146181047, -0.021371198818087578, -0.00923990085721016, -0.6159374713897705, 0.0010868930257856846, 0.018060758709907532, -0.027908271178603172, 0.008695144206285477, 0.0159236378967762, 0.020253749564290047, 0.0033628209494054317, -0.005224070977419615, 0.02486322447657585, 0.009875449351966381, 0.017208702862262726, -0.002962983911857009, -0.0011514954967424273, -0.015127455815672874, -0.026581300422549248, -0.0008957046666182578, -0.020826442167162895, -0.020058196038007736, 0.007556743919849396, -0.030478402972221375, 0.027531132102012634, 0.011167499236762524, -0.017055055126547813, -0.001084274030290544, -0.01688743755221367, 0.020044228062033653, -0.014694444835186005, 0.003317424561828375, 0.030729828402400017, -0.021804209798574448, 0.01935979165136814, 0.013751598075032234, 0.00259457528591156, 0.053497835993766785, -0.008792920969426632, -0.012431612238287926, 0.02510068193078041, 0.024290531873703003, 0.04112209752202034, -0.03475264087319374, -0.0021510878577828407, 0.013842390850186348, 0.007801185827702284, -0.003900592913851142, 0.005705970339477062, 0.007926899008452892, 0.009156092070043087, -0.007249445654451847, -0.016580138355493546, 0.0005517401150427759, -0.01373064611107111, -0.010727503336966038, 0.0035182160791009665, 0.018032820895314217, -0.0035740884486585855, 0.011858919635415077, -0.01949947327375412, -0.008283085189759731, 0.009770688600838184, 0.006369455251842737, 0.012850655242800713, -0.017585841938853264, -0.027237802743911743, -0.0592806302011013, 0.010685599409043789, 0.00027085025794804096, -0.023997202515602112, 0.01201955322176218, -0.00026364796212874353, 0.0350320041179657, -0.004392968490719795, 0.007689441088587046, -0.01073448732495308, -0.005957396235316992, 0.02630193904042244, 0.03005935810506344, -0.0020341051276773214, -0.015281105414032936, 0.005849143490195274, -0.00791991502046585, 0.007815154269337654, -0.024681638926267624, 0.006086600944399834, 0.0445861853659153, 0.021776273846626282, -0.032266318798065186, -0.0048364559188485146, -0.0025771150831133127, 0.0005923348944634199, 0.011202419176697731, 0.033719003200531006, -0.0058910478837788105, -0.019317887723445892, 0.011691302992403507, 0.04749155044555664, 0.0013130017323419452, -0.002832032972946763, -0.008311022073030472, -0.022670231759548187, -0.019038524478673935, -0.019527409225702286, 0.011956696398556232, 0.003820276353508234, 0.02519845962524414, 0.015015711076557636, -0.014114768244326115, -0.014484923332929611, 0.027447324246168137, -0.03779768943786621, -0.010420205071568489, 0.007127224933356047, -0.016524266451597214, -0.020309623330831528, 0.021413102746009827, -0.023326732218265533, -0.006180885713547468, -0.017502034083008766, 0.019052492454648018, -0.0145547641441226, -0.013556044548749924, -0.0013645091094076633, 0.011397972702980042, -0.004805027507245541, 0.00214759586378932, 0.02708415314555168, 0.008331974036991596, -0.003350598970428109, 0.023047370836138725, -0.007092304527759552, -0.012822719290852547, -0.0033575829584151506, 0.007368174847215414, -0.0023344194050878286, 0.018982652574777603, -0.0011593525996431708, 0.030003486201167107, -0.006750085856765509, -0.002016644924879074, -0.05062040686607361, -0.0064672320149838924, -0.009142124094069004, 0.008324990049004555, -0.028830165043473244, 0.025994641706347466, -0.027153993025422096, -0.01093004085123539, -0.0035932946484535933, -0.006837386637926102, -0.007235477678477764, -0.007424047216773033, -0.02301943488419056, -0.0087370490655303, 0.025030842050909996, -0.006603421177715063, 0.004075194243341684, 0.005349783692508936, -0.04165288433432579, -0.010902104899287224, -0.02008613385260105, -0.01392619963735342, 0.007507855538278818, -0.02056104876101017, 0.004466301295906305, -0.026274003088474274, -0.0195972491055727, -0.0014212545938789845, 0.0064358036033809185, -0.003111395053565502, -0.025449885055422783, 0.014876030385494232, -0.013297634199261665, 0.019317887723445892, 0.018074726685881615, -0.020728666335344315, 0.018521705642342567, -0.013472235761582851, -0.009896401315927505, -0.0036491670180112123, -0.002852985169738531, 0.015043647959828377, 0.019178206101059914, -0.004808519501239061, -0.003551390254870057, 0.02828541025519371, 0.0039285290986299515, 0.021273421123623848, 0.017529970034956932, -0.029752060770988464, 0.0008948316099122167, 0.01257129292935133, -0.0002453148190397769, -0.013339539058506489, -0.00474217114970088, -0.03296472504734993, 0.008331974036991596, -0.026762885972857475, 0.004654870368540287, 0.004385984502732754, 0.014624604023993015, 0.017990916967391968, 0.024695606902241707, -0.005213594529777765, 0.007113256957381964, 0.009253868833184242, -0.018689323216676712, 0.01616109535098076, -0.02726573869585991, 0.02103596366941929, 0.009512278251349926, -0.0005360259674489498, 0.0037713879719376564, -0.0007376904832199216, -0.0057164463214576244, 0.0021598180755972862, 0.051709920167922974, 0.011747174896299839, 0.012969383969902992, -0.0007145557901822031, 0.009197995997965336, 0.02040739916265011, 0.00029660394648090005, 0.033132340759038925, 0.009617039002478123, -0.010538933798670769, 0.0014273655833676457, 0.0015006981557235122, 0.020812474191188812, 0.01607728749513626, -0.0158398300409317, -0.008876729756593704, 0.022516582161188126, 0.011607494205236435, 0.005719938315451145, 0.03941798955202103, 0.0291095282882452, 0.032070767134428024, -0.009931321255862713, 0.03855196759104729, -0.015169360674917698, 0.0032353620044887066, 0.011481781490147114, 0.014219529926776886, -0.007654520682990551, 0.02944476157426834, -0.005552321206778288, 0.005272958893328905, -0.01170527096837759, -0.018130598589777946, 0.02244674228131771, 0.021874049678444862, 0.00972179975360632, -0.027377482503652573, -0.004480269271880388, 0.02412291429936886, -0.024094978347420692, 0.02104993164539337, 0.010699567385017872, 0.00696309981867671, 0.02016994170844555, 0.012312883511185646, -0.038049113005399704, 0.014443019405007362, -0.0019363283645361662, 0.01132114790380001, -0.00751483952626586, -0.020016292110085487, -0.027712717652320862, -0.017404256388545036, -0.0021493418607860804, 0.005646605975925922, -0.027307642623782158, 0.012305899523198605, -3.131910852971487e-05, -0.009952274151146412, 0.0108811529353261, 0.012012569233775139, 0.005066929385066032, -0.006236758083105087, 0.02229309268295765, -0.028550803661346436, -0.02022581361234188, 0.016957277432084084, 0.023675935342907906, 0.004832963924854994, -0.021608656272292137, 0.007759281434118748, -0.02046327106654644, 0.021119773387908936, 0.0034972638823091984, -0.006952623371034861, -0.012655101716518402, -0.005066929385066032, 0.004738679155707359, -0.01873122714459896, 0.016328712925314903, 0.048664871603250504, -0.012501453049480915, 0.0003666627162601799, 0.006791990250349045, -0.001180304796434939, 0.010483061894774437, -0.011118610389530659, -0.017655683681368828, 0.029333017766475677, -0.021650560200214386, -0.009763704612851143, -0.029025718569755554, -0.011062738485634327, -0.018130598589777946, 0.0019258522661402822, -0.013884294778108597, -0.01361191738396883, 0.00524851493537426, -0.03329996019601822, 0.014973807148635387, 0.012710974551737309, -0.008611335419118404, 0.014443019405007362, 0.0005006692372262478, 0.0041031306609511375, -0.030562210828065872, 0.0027115580160170794, 0.026092417538166046, 0.06537072360515594, 0.02248864620923996, -0.003399487119168043, 0.018605513498187065, -0.009058315306901932, -0.020672792568802834, -0.028690485283732414, -0.013018272817134857, 0.025086713954806328, 0.010287508368492126, -0.018996620550751686, 0.0055139088071882725, 0.005793271120637655, -0.0024531481321901083, -0.007654520682990551, -0.0035444062668830156, -0.005835175514221191, -0.026274003088474274, -0.006275170482695103, -0.0001758016733219847, 0.006910719443112612, -0.00808753166347742, 0.021706432104110718, 0.015155392698943615, 0.02461179904639721, 0.027545100077986717, 0.042211610823869705, 0.005929459817707539, 0.020100101828575134, -0.013842390850186348, -0.009882433339953423, 0.008730065077543259, 0.014331274665892124, 0.019052492454648018, -0.01588173396885395, 0.025561628863215446, 0.006030728574842215, -0.009882433339953423, -0.03581421822309494, 0.0145547641441226, -0.0034169473219662905, 0.025757182389497757, 0.006240250077098608, -0.015336977317929268, 0.004207891412079334, -0.026720982044935226, -0.015993477776646614, 0.03179140388965607, -0.013842390850186348, -0.005709462333470583, 0.015756020322442055, 0.010524965822696686, -0.014540796168148518, 0.019234078004956245, 0.0025352109223604202, -0.014889998361468315, -0.01150971744209528, -0.00941450148820877, -0.02095215581357479, -0.03662436828017235, -0.019345823675394058, -0.01288557518273592, 0.00064864382147789, -0.01049702987074852, -0.0026172734797000885, -0.02708415314555168, 0.0019171221647411585, 0.006833894643932581, -0.021343262866139412, 0.008548479527235031, -0.001869979896582663, -0.04684901982545853, -0.04271446168422699, -0.004197414964437485, 0.02630193904042244, 0.006449772045016289, -0.007752297446131706, 0.0030467926990240812, 0.004197414964437485, 0.02413688227534294, 0.004392968490719795, -0.0297241248190403, -0.00041009479900822043, -0.012676053680479527, 0.003010126296430826, 0.00014972061035223305, -0.03218251094222069, 0.01291351206600666, -0.0059748562052845955, 0.013199858367443085, -0.010622742585837841, -0.00923990085721016, 0.002882667351514101, 0.003785356180742383, -0.0076475366950035095, 0.00595041224732995, 0.03324408829212189, 0.0008778080227784812, 0.013772550038993359, -0.047268062829971313, 0.0058910478837788105, 0.0060761249624192715, -0.013318587094545364, -0.018284248188138008, 0.014373178593814373, 0.019471537321805954, -0.0008402687381021678, -0.012655101716518402, -0.014387146569788456, -0.0012082409812137485, 0.004637410398572683, 0.0021912462543696165, -0.006900242995470762, -0.0069142114371061325, 0.013996039517223835, -0.026148289442062378, 0.00045221735490486026, 0.024346403777599335, 0.013304619118571281, -0.008338958024978638, -0.0048364559188485146, -0.006358979269862175, 0.03422185406088829, 0.0020987074822187424, -0.006379931233823299, 0.009672911837697029, 0.021315326914191246, -0.028159696608781815, -0.027098121121525764, 0.00217727804556489, -0.009826560504734516, 0.006509136408567429, -0.010001162067055702, 0.0043021757155656815, -0.01708299107849598, 0.014638572931289673, -0.00587707944214344, 0.002016644924879074, -0.02693050354719162, 0.00010579747322481126, -0.02480735257267952, 0.007584680337458849, 0.011307179927825928, -0.005272958893328905, 0.007368174847215414, -0.030087295919656754, -0.026567332446575165, -0.003844720544293523, 0.007759281434118748, 0.028075888752937317, -0.01901058852672577, -0.023661967366933823, -0.017990916967391968, -0.025114649906754494, -0.016971245408058167, -0.014680476859211922, -0.02364799939095974, 0.00618786970153451, 0.05911301448941231, 0.028508899733424187, 0.012494469061493874, 0.012745894491672516, 0.01882900297641754, 0.008555463515222073, -0.009624022990465164, -0.0007176113431341946, -0.01057385466992855, -0.032405998557806015, 0.0019642645493149757, 0.009037363342940807, 0.007064368575811386, 0.006379931233823299, -0.009819576516747475, -0.003991385456174612, -0.009449422359466553, 0.02008613385260105, -0.018256312236189842, -0.005224070977419615, -0.01867535524070263, -0.035590726882219315, 0.002840762957930565, 0.037183091044425964, 0.0019188682781532407, 0.0006307471776381135, -0.026050513610243797, 0.002784890588372946, 0.009547199122607708, -0.01751600205898285, 0.024011170491576195, 0.009177044034004211, 0.0391944982111454, 0.0016630773898214102, -0.0003991822013631463, 0.01664998009800911, 0.014030960388481617, -0.01892678067088127, -0.0033069485798478127, -0.03556279093027115, -0.025212427601218224, 0.002011406933888793, 0.01723664067685604, 0.019345823675394058, -0.0017294258577749133, 0.012054473161697388, 0.01435921061784029, 0.009742752648890018, -0.02679082192480564, -0.010091954842209816, 0.001053718850016594, -0.006942147389054298, 0.00020024586410727352, -0.019275983795523643, -0.022656263783574104, 0.015742052346467972, -0.007549759931862354, 0.006746593862771988, 0.012389708310365677, 0.014184609055519104, -0.01776742748916149, -0.023871488869190216, 0.022837849333882332, 0.004145034588873386, 0.024206724017858505, 0.008918634615838528, 0.02866254933178425, 0.026609238237142563, 0.005094865802675486, -0.019331855699419975, -0.019178206101059914, 0.009763704612851143, -0.011789079755544662, 0.0009053077083081007, 0.04000464826822281, -0.010413221083581448, -0.0010999881196767092, 0.02282388135790825, -0.0108811529353261, -0.007521823979914188, -0.046402040868997574, 0.022139444947242737, 0.018703291192650795, -0.009973226115107536, -0.03416598215699196, -0.01963915303349495, -0.018563609570264816, 0.011481781490147114, -0.002922825748100877, 0.032210446894168854, 0.020183909684419632, -0.008834825828671455, 0.0017049816669896245, 0.05738097056746483, -0.007612616289407015, 0.021119773387908936, -0.022795945405960083, -0.01727854460477829, -0.027279706671833992, 0.005964380223304033, 0.004906296264380217, -0.015769988298416138, 0.018270280212163925, 0.0369875393807888, -0.014401114545762539, 0.0028390169609338045, 0.015560467727482319, 0.018158534541726112, -0.002451402135193348, -0.01568618044257164, -0.026134321466088295, 0.033327896147966385, -0.009072283282876015, -0.007829122245311737, -0.014247465878725052, -0.006561516784131527, 0.02726573869585991, -0.02307530678808689, -0.017529970034956932, -0.001931090373545885, 0.009812592528760433, 0.00293853972107172, 0.018521705642342567, 0.009519262239336967, 0.014638572931289673, 0.002975206123664975, -0.0018909319769591093, -0.010671631433069706, 0.0018472817027941346, -0.004284715745598078, 0.00815737247467041, -0.03262948989868164, -0.018018852919340134, -0.006676753517240286, 0.005527876783162355, 0.013870326802134514, 0.0014264925848692656, -0.021943891420960426, 0.01723664067685604, 0.026511460542678833, -0.010999881662428379, -0.008639272302389145, 0.018368056043982506, -0.0004941216902807355, -0.048385512083768845, 0.0232708603143692, -0.004965660627931356, -0.003064252668991685, 0.01095797773450613, -0.0004993596812710166, -0.015895701944828033, -0.014903966337442398, 0.013625885359942913, -0.005161214154213667, 0.018451865762472153, -0.009651959873735905, 0.012047489173710346, 0.01252240501344204, 0.0014413336757570505, -0.006715165916830301, -0.024192756041884422, -0.0005849143490195274, 0.010685599409043789, 0.003918053116649389, 0.002893143566325307, -0.017362352460622787, 0.01597950980067253, -0.014205561019480228, 0.020630888640880585, -0.008052611723542213, -0.0391106903553009, -0.03162378817796707, -0.030282849445939064, 0.0041869389824569225, -0.014065880328416824, 0.0047666155733168125, -0.005178674589842558, -0.016147127375006676, -0.016929341480135918, 0.014226513914763927, 0.008052611723542213, 0.007270398084074259, 0.017795363441109657, -0.00967989582568407, -0.010902104899287224, 0.021971827372908592, -0.0014107784954831004, -0.025170521810650826, -0.008003723807632923, -0.014387146569788456, -0.03508787602186203, -0.009400533512234688, 0.0009009426576085389, 0.04684901982545853, 0.012243042699992657, -0.011858919635415077, -0.0238016489893198, -0.016426490619778633, -0.04648584872484207, -0.010203699581325054, -0.015867765992879868, 0.02944476157426834, 0.0339704267680645, 0.028411122038960457, 0.008359909988939762, 0.033663131296634674, -0.011530669406056404, 0.019038524478673935, -0.0291095282882452, -0.0026225114706903696, -0.027908271178603172, -0.02832731418311596, 0.004871376324445009, -0.01810266263782978, -0.06168314442038536, 0.002121405676007271, 0.010294492356479168, -0.01421254500746727, 0.007808169815689325, 0.02476544678211212, -0.013255730271339417, -0.002755208406597376, -0.00563612999394536, 0.008059595711529255, 0.037518326193094254, 0.026916535571217537, 0.012431612238287926, -0.028634611517190933, 0.009393549524247646, 0.020281687378883362, 0.0005534861120395362, -0.004406936466693878, 0.008834825828671455, 0.019625185057520866, -0.007556743919849396, 0.017879173159599304, -3.391084464965388e-05, -0.02417878806591034, -0.011411940678954124, -0.017823299393057823, 0.011921776458621025, 0.004190430976450443, 0.02514258585870266, 0.040619246661663055, -0.0047805835492908955, 0.008730065077543259, -0.003663135226815939, 0.0023239431902766228, 0.025366075336933136, 0.005999300628900528, 0.019345823675394058, -0.03508787602186203, 0.009896401315927505, -0.021357230842113495, 0.01158654224127531, 0.0068967510014772415, -0.011907808482646942, -0.0075776963494718075, -0.010531949810683727, -0.013709694147109985, -0.01296239998191595, 0.0184937696903944, -0.022837849333882332, -0.007612616289407015, -0.010601790621876717, 0.005143754184246063, -0.004651378374546766, 0.0011279244208708405, -0.007549759931862354, -0.012152249924838543, 0.004637410398572683, -0.012731926515698433, -0.017152830958366394, -0.04589919000864029, 0.006439295597374439, 0.019485505297780037, -0.017837269231677055, -0.006631357129663229, 0.21421483159065247, -0.0068269106559455395, 0.019708994776010513, 0.02514258585870266, 0.008862761780619621, -0.016230937093496323, -0.01206145714968443, 0.009533231146633625, -0.003090442856773734, 0.018689323216676712, 0.008653240278363228, -0.010776392184197903, -0.03556279093027115, -0.007431031204760075, 0.014065880328416824, -0.011670351028442383, -0.03170759603381157, -0.01867535524070263, -0.010077986866235733, -0.004906296264380217, 0.014058896340429783, -0.0003967814554926008, -0.01853567361831665, -0.014526828192174435, 0.039697349071502686, 0.018703291192650795, 0.004923756700009108, 0.02394132874906063, 0.011377020739018917, 0.03338376805186272, -0.012906528078019619, -0.011069722473621368, 0.014876030385494232, -0.014582700096070766, -0.019373759627342224, -0.010168779641389847, 0.014177625067532063, -0.026092417538166046, 0.0079618189483881, 0.016636012122035027, 0.012047489173710346, -0.0195972491055727, 0.015588403679430485, -0.030534274876117706, 0.008373877964913845, -0.009966242127120495, 0.0008913396159186959, 0.006840878631919622, 0.017446162179112434, 0.024458149448037148, 0.001747758942656219, 0.00499708903953433, 0.017390288412570953, 0.021538816392421722, 0.0018507736967876554, -0.005363751668483019, -0.0009332439512945712, 0.00487486831843853, -0.01625887304544449, 0.00023309272364713252, -0.0092468848451972, 0.003935513086616993, 0.00023091021284926683, 0.01435921061784029, -0.0435246117413044, 0.011425908654928207, -0.004791059531271458, 0.03528343141078949, 0.0020079149398952723, 0.0006473343237303197, -0.022712135687470436, -0.009058315306901932, -0.036177389323711395, -0.004522173665463924, -0.010909088887274265, -0.008324990049004555, 0.025715278461575508, 0.03316027671098709, 0.043999526649713516, 0.010050050914287567, 0.003865672741085291, -0.004291699733585119, -0.02905365638434887, -0.014652540907263756, 0.006526596378535032, -0.02610638551414013, 0.023326732218265533, -0.018759163096547127, -0.0021021997090429068, -0.018954716622829437, -0.013716678135097027, 0.01631474494934082, -0.0025544168893247843, -0.012543356977403164, 0.0072564296424388885, -0.001986962743103504, -0.005091373808681965, 0.009910369291901588, -0.022041667252779007, -0.025952735915780067, -0.010140843689441681, 0.061180293560028076, 0.0264555886387825, 0.035981833934783936, -0.0184937696903944, 0.007092304527759552, -0.005325339734554291, 0.01713886298239231, 0.014889998361468315, 0.0010004654759541154, -0.008290069177746773, -0.032741233706474304, 0.020533112809062004, -0.004455824848264456, -0.007008496206253767, 0.022083571180701256, 0.01416365709155798, -0.0074589671567082405, 0.010937024839222431, 0.0013976834015920758, 0.02899778261780739, -0.005548829212784767, 0.012501453049480915, -0.0019415663555264473, -0.012773830443620682, -0.005915491841733456, -0.0002730327832978219, 0.01625887304544449, -0.020644856616854668, -0.032405998557806015, 0.008988474495708942, -0.023103242740035057, 0.023159116506576538, -0.012927480041980743, 0.005332323722541332, -0.01175415888428688, -0.020435335114598274, -0.0158398300409317, 0.010678615421056747, -0.010769408196210861, 0.011656382121145725, 0.008408798836171627, 0.019904548302292824, -0.003977417480200529, -0.009686879813671112, 0.021021995693445206, -0.009079267270863056, 0.01459666807204485, -0.024625767022371292, -0.01131416391581297, 0.003656151005998254, 0.003956465516239405, -0.0015565705252811313, -0.004906296264380217, 0.042742397636175156, -0.024067042395472527, -0.040032584220170975, -0.020114069804549217, 0.013632869347929955, 0.022223252803087234, -0.05659875646233559, 0.009260852821171284, 0.0540565624833107, 0.03117680735886097, -0.026078449562191963, -0.006306598894298077, -0.17879173159599304, 0.015113487839698792, -0.0026434636674821377, -0.0032301240134984255, -0.00025819166330620646, 0.016803627833724022, 0.007535791955888271, -0.016566170379519463, -0.012606213800609112, -0.01713886298239231, -0.002103945706039667, -0.0034832959063351154, -0.038216732442379, -0.025324171409010887, 0.0119008244946599, -0.016189031302928925, 0.0054126400500535965, 0.03489232435822487, 0.05517400801181793, 0.0036142468452453613, 0.01542078610509634, -0.012850655242800713, -0.0027150502428412437, -0.01659410633146763, 0.0050704218447208405, 0.02852286770939827, 0.006823418661952019, 0.026916535571217537, 0.007368174847215414, -0.027866367250680923, 0.009086251258850098, -0.019317887723445892, 0.017879173159599304, -0.003195203607901931, 0.009617039002478123, -0.007493887562304735, -0.006310090888291597, -0.030003486201167107, -0.009924337267875671, 0.022181348875164986, 0.01549062691628933, 0.013185889460146427, 0.016901405528187752, 0.01732044853270054, 0.01201955322176218, 0.03581421822309494, 0.03614945337176323, -0.009393549524247646, 0.011230355128645897, -0.018130598589777946, 0.0038063081447035074, -0.02866254933178425, -0.007989754900336266, 0.007312302011996508, 0.021748337894678116, 0.011607494205236435, 0.02138516679406166, 0.029221272096037865, -0.004012337885797024, -0.00815737247467041, -0.002325689187273383, -0.01542078610509634, -0.016775691881775856, -0.01757187396287918, -0.016384584829211235, -0.02258642390370369, 0.0030625066719949245, 0.025170521810650826, 0.0014553017681464553, 0.022321030497550964, -0.011949712410569191, 0.02148294262588024, 0.006208822131156921, 0.014051912352442741, 0.01459666807204485, -0.0021947382483631372, -0.02769874967634678, -0.004808519501239061, 0.02639971673488617, -0.00808753166347742, 0.006533580366522074, 0.01373064611107111, 0.01081131212413311, 0.00037975781015120447, -0.02003026008605957, -0.004756139125674963, 0.0002640844613779336, -0.002198230242356658, 0.0014011753955855966, 0.004330112133175135, 0.03455708920955658, -0.025421949103474617, 0.005807239096611738, 0.018116630613803864, -0.009777672588825226, 0.0031794896349310875, 0.02524036355316639, 0.0025631471071392298, 0.006303106900304556, -0.008960538543760777, 0.0026434636674821377, 0.013842390850186348, -0.04257477819919586, 0.012536372989416122, 0.02775462158024311, 0.012319867499172688, 0.01354207657277584, -0.0020393431186676025, 0.032126639038324356, -0.02292165718972683, -0.023033402860164642, 0.004358048550784588, 0.030562210828065872, -0.00839482992887497, -0.02866254933178425, 0.039557669311761856, -0.00047840754268690944, -0.023438477888703346, 0.022963562980294228, -0.02215341292321682, 0.04251890629529953, -0.02842509001493454, -0.0191083662211895, -0.0031288552563637495, 0.006086600944399834, 0.0025107667315751314, -0.11280640214681625, -0.02669304609298706, 0.03321614861488342, 0.017250608652830124, -0.01820043846964836, 0.015043647959828377, 0.015281105414032936, 0.0350320041179657, 0.007354206405580044, 0.019429631531238556, -0.027740653604269028, 0.00293853972107172, -0.0006473343237303197, -0.007640552707016468, 0.017725523561239243, -0.007382142823189497, -0.005143754184246063, -0.01189384050667286, -0.0019677565433084965, 0.038831327110528946, -0.004902804270386696, -0.0046618543565273285, 0.010937024839222431, 0.0092468848451972, -0.00620183814316988, -0.019192174077033997, -0.02244674228131771, 0.023857520893216133, 0.02109183557331562, -0.0030066343024373055, 0.03785356134176254, -0.02008613385260105, 0.014973807148635387, -0.028606675565242767, -0.000557414663489908, -0.010825280100107193, -0.02842509001493454, -0.013695725239813328, 0.013304619118571281, -0.041289713233709335, 0.0008481257827952504, 0.00436852453276515, 0.0025701310951262712, -0.024737510830163956, -0.0040018619038164616, 0.0007704282179474831, -0.026232099160552025, 0.050648342818021774, 0.011397972702980042, -0.002461878350004554, -0.02799207903444767, -0.01568618044257164, -0.03701547533273697, -0.02403910644352436, 0.035059940069913864, 0.020435335114598274, 0.014184609055519104, 0.009274820797145367, -0.01732044853270054, 0.015853798016905785, -0.011530669406056404, -0.016677916049957275, -0.010322428308427334, 0.01136305183172226, 0.01522523257881403, 0.008897681720554829, -0.003121871268376708, 0.0013767312048003078, -0.02075660228729248, 0.002891397336497903, -0.020616920664906502, -0.00442788889631629, -0.033858682960271835, 0.0048364559188485146, -0.03131648898124695, -0.002397275762632489, -0.01003608200699091, -0.02364799939095974, -0.0015321263344958425, 0.00979862455278635, -0.015965541824698448, -0.013046208769083023, 0.002741240430623293, -0.0381329245865345, 0.013283666223287582, 0.0072773820720613, 0.020002324134111404, -0.010280524380505085, 0.016496330499649048, -0.046988699585199356, 0.005171690136194229, 0.025310203433036804, 0.0035863106604665518, 0.008946570567786694, 0.0031375852413475513, 0.012515421025454998, -0.01146781351417303, -0.005258990917354822, 0.019681058824062347, -0.008625304326415062, -0.006509136408567429, -0.007032940164208412, -0.04047956317663193, 0.0028756833635270596, 0.011425908654928207, 0.014170641079545021, 0.0023833077866584063, -0.01834012009203434, -0.0018961700843647122, 0.006631357129663229, 0.003970433492213488, -0.0070294481702148914, -0.025114649906754494, 0.0072564296424388885, -0.027475260198116302, -0.002395529765635729, -0.026246067136526108, -0.022600391879677773, 0.014373178593814373, 0.003952973522245884, 0.002488068537786603, 0.007148176897317171, -0.01901058852672577, -0.004159003030508757, 0.0018839479889720678, 0.018116630613803864, -0.016677916049957275, -0.0025160047225654125, -0.026246067136526108, 0.025156553834676743, -0.01522523257881403, -0.03536723926663399, 0.015546499751508236, 0.012347803451120853, -0.008178324438631535, 0.00417297100648284, -0.006631357129663229, -0.050368983298540115, -0.009463390335440636, 0.012801767326891422, 0.018326152116060257, 0.0059923166409134865, -0.031595852226018906, -0.02211150713264942, 0.010916072875261307, -0.021077867597341537, -0.0201280377805233, -0.008059595711529255, -0.025882896035909653, -0.009596087038516998, 0.005416132044047117, 0.013178905472159386, 0.05168198421597481, 0.014903966337442398, -0.02944476157426834, -0.03841228410601616, -0.00028241760446690023, -0.014820157550275326, 0.012012569233775139, 0.03978116065263748, 0.005723430309444666, 0.014275401830673218, 0.046793147921562195, -0.0019433124689385295, 0.00536724366247654, -0.016468394547700882, 0.01442905142903328, -0.032797105610370636, -0.059001270681619644, -0.01607728749513626, 0.017781395465135574, -0.010888136923313141, -0.0011768126860260963, -0.022963562980294228, 0.0184937696903944, 0.022027699276804924, 0.011356067843735218, -0.007479919586330652, -0.025212427601218224, -0.01479222159832716, 0.00575485872104764, 0.02219531685113907, 0.03327202424407005, -0.017362352460622787, -0.020114069804549217, 0.012431612238287926, 0.009421485476195812, 0.010510997846722603, -0.0003304329584352672, 0.025687342509627342, 0.006662785541266203, 0.00721452571451664, -0.00994529016315937, 0.0005827317945659161, -0.030562210828065872, 0.015141424722969532, -0.002278546802699566, 0.020630888640880585, -0.02427656389772892, 0.0021964842453598976, 0.009072283282876015, 0.018074726685881615, -0.007465951610356569, 0.017655683681368828, 0.00240076775662601, -0.013814454898238182, -0.009386565536260605, 0.014680476859211922, -0.022809913381934166, -0.01568618044257164, 0.03514374792575836, 0.01155860535800457, 0.006460248026996851, -0.021832145750522614, 0.005918983835726976, 0.02142707072198391, -0.029416825622320175, 0.0009349899482913315, -0.01602141559123993, -0.02610638551414013, -0.01525316946208477, 0.005073913838714361, 0.008443718776106834, 0.01881503500044346, 0.011265275999903679, -0.025463853031396866, 0.021245485171675682, -0.011139562353491783, 0.022069603204727173, -0.011160515248775482, 0.015267137438058853, -0.030757764354348183, 0.0003454922989476472, -0.00032279413426294923, 0.002072517294436693, -0.01916423812508583, -0.002362355589866638, -0.018591545522212982, -0.02195785939693451, 0.000250771117862314, -0.013116049580276012, 0.07755091041326523, 0.027768589556217194, -0.009805608540773392, 0.00012734982010442764, -0.020644856616854668, 0.0030118722934275866, 0.020784538239240646, 0.00161069689784199, 0.010923056863248348, -0.013360491022467613, 0.029221272096037865, -0.008478638716042042, -0.012843671254813671, -0.030226975679397583, -0.019080430269241333, 0.010441157035529613, 0.004110114648938179, 0.02075660228729248, -0.0012518912553787231, 0.01384937483817339, 0.013500171713531017, 0.01588173396885395, 0.020575016736984253, -0.008869745768606663, -0.03198695555329323, -0.027279706671833992, 0.038440220057964325, 0.025813056156039238, 0.006055172998458147, -0.039306242018938065, 0.012487485073506832, 0.007521823979914188, -0.032852981239557266, -0.009952274151146412, -0.0075776963494718075, 0.01704108715057373, -0.016538234427571297, -0.030757764354348183, 0.017502034083008766, 0.01838202401995659, 0.011698286980390549, 0.03025491163134575, -0.01751600205898285, -0.016636012122035027, 0.012340819463133812, -0.005258990917354822, 0.0010091954609379172, -0.014401114545762539, 0.007996738888323307], "df2706de-7a67-4837-9162-5b9e36d1a8ed": [-0.01306453812867403, 0.001630487386137247, 0.027133511379361153, -0.0189053975045681, -0.004447721876204014, 0.00137593864928931, -0.012266493402421474, -0.05316627025604248, -0.011041908524930477, -0.04936867952346802, 0.009638451039791107, 0.029472606256604195, 0.0062605212442576885, -0.016139760613441467, 0.000820403452962637, 0.01817614957690239, 0.011275817640125751, -0.011537246406078339, -0.00642907340079546, 0.0008423324907198548, -0.03194929659366608, 0.0004366455541457981, -0.021368328481912613, -0.014268483966588974, -0.02420276217162609, 0.004750428255647421, 0.008221234194934368, -0.012947583571076393, -0.01558938529342413, 0.017832165583968163, 0.018217427656054497, -0.0101200295612216, -0.029472606256604195, 0.01330532692372799, -0.02714727073907852, 0.013979537412524223, -0.005744543857872486, -0.013938259333372116, 0.014516153372824192, -0.016359910368919373, 0.008111158385872841, 0.025069603696465492, 0.008303790353238583, 0.0006183124496601522, -0.01388322189450264, 0.026706969365477562, -0.007512625306844711, 0.005455596838146448, -0.019098028540611267, 0.007120482623577118, -0.00885416567325592, -0.009074315428733826, -0.016717655584216118, 0.014282243326306343, -0.02113441936671734, -0.013594274409115314, 0.00568950641900301, 0.013250289484858513, -0.0015591105911880732, -0.004475240595638752, -0.0006011131918057799, -0.0016691855853423476, -0.017089158296585083, -0.002223860938102007, -0.008303790353238583, -0.019373217597603798, -0.017612015828490257, -0.004908661358058453, -0.0251108817756176, -0.0038595080841332674, 0.02733990177512169, 0.03134388476610184, -0.005710145458579063, 0.009638451039791107, -0.015699461102485657, -0.011894989758729935, -0.006525389384478331, -0.016153519973158836, -0.009349503554403782, 0.003271294292062521, 0.01740562543272972, -0.023363439366221428, -0.027821481227874756, -0.008819767273962498, 0.03541666269302368, 0.035499218851327896, 0.025798849761486053, 0.005318003240972757, 0.0025609659496694803, -0.014846378937363625, 0.018836600705981255, 0.024106446653604507, 0.04020492732524872, 0.023542311042547226, 0.014461115933954716, 0.026651931926608086, 0.0017766808159649372, 0.001958992797881365, 0.004488999955356121, -0.011929388158023357, -0.022950656712055206, 0.0021808629389852285, -0.0012005064636468887, -0.017653293907642365, -0.00930134579539299, -0.015341716818511486, 0.011234539560973644, -0.010649765841662884, 0.006807456724345684, 0.020033666864037514, -0.03470117226243019, 0.01951081119477749, 0.007670858409255743, -0.01770833134651184, 0.0071273623034358025, -0.01137901283800602, 0.015988407656550407, -0.022496597841382027, -0.0034450064413249493, -0.0240651685744524, 0.00521136773750186, -0.011262058280408382, 0.039214253425598145, -0.027821481227874756, 0.017226751893758774, 0.021093139424920082, 0.008977999910712242, -0.020308855921030045, 0.004774507135152817, -0.019166825339198112, 0.029940426349639893, 0.024766895920038223, 0.018685247749090195, 0.027105992659926414, -0.022978175431489944, 0.009218789637088776, -0.012452245689928532, 0.0042826090939342976, -0.014805100858211517, -0.026404263451695442, 0.020625321194529533, 0.033435311168432236, 0.017612015828490257, -0.023005696013569832, 0.010615367442369461, 0.03057335875928402, -0.005163209978491068, 0.010071870870888233, 0.008462022989988327, 0.008936721831560135, 0.005097853019833565, -0.015080288052558899, -0.01417216844856739, 0.012362808920443058, 0.002039829036220908, 0.0047194696962833405, 0.006697381846606731, 0.01847885735332966, -0.02494576945900917, -0.003604959463700652, -0.015892092138528824, 0.010986870154738426, -0.016222316771745682, -0.010945592075586319, -0.004361725877970457, 0.037122827023267746, 0.011055667884647846, -0.023886295035481453, -0.03349034860730171, -0.01726802997291088, -0.008083639666438103, 0.023239605128765106, -0.03159155324101448, 0.013085177168250084, 0.01787344366312027, 0.021093139424920082, 0.01757073774933815, -0.00199683103710413, -0.0038044704124331474, -0.0140345748513937, 0.02453298680484295, -0.0017001442611217499, -0.008441383950412273, 0.015465551055967808, -0.023005696013569832, -0.012899424880743027, 0.03885651007294655, 0.028592005372047424, 0.005734224338084459, 0.0004660992417484522, 0.017790887504816055, -0.007595181465148926, -0.009948036633431911, -0.004485560115426779, -0.6208235621452332, 0.0013415402499958873, 0.012637997046113014, -0.0020295095164328814, -0.005858059041202068, 0.020570283755660057, 0.01858893223106861, -0.004602515138685703, -0.009507736191153526, 0.03445350378751755, 0.014282243326306343, 0.012376568280160427, -0.008998638950288296, -0.0068384152837097645, -0.01469502504914999, -0.031233808025717735, -0.007560783065855503, -0.001277043134905398, -0.00965909007936716, -0.006102288141846657, -0.026982158422470093, 0.025950204581022263, 0.0028946311213076115, -0.014282243326306343, 0.0002652981784194708, -0.025165919214487076, 0.020295096561312675, -0.014805100858211517, 4.9501544708618894e-05, 0.03349034860730171, -0.027257345616817474, 0.01846509799361229, 0.018712766468524933, 0.016015926375985146, 0.04125064238905907, -0.01818990893661976, -0.012830628082156181, 0.026817046105861664, 0.008462022989988327, 0.03293997421860695, -0.031976815313100815, 0.00410029711201787, 0.010739201679825783, 0.010959351435303688, -0.015479310415685177, 0.004877702798694372, -0.010360818356275558, 0.014626228250563145, -0.017034120857715607, -0.017804646864533424, 0.0120325842872262, -0.011853711679577827, -0.009934277273714542, 0.013862582854926586, 0.013731868006289005, -0.0075401440262794495, 0.022785544395446777, -0.010546569712460041, 0.004169094376266003, 0.009129352867603302, 0.006360276602208614, -0.004509638994932175, -0.02391381375491619, -0.035196512937545776, -0.04826793074607849, 0.01981351710855961, -0.01418592780828476, 0.0004729789216071367, 0.005232006777077913, -0.007884128950536251, 0.01439231913536787, 0.003178418381139636, -0.003498324193060398, -0.00951461587101221, -0.01730930805206299, 0.030903583392500877, 0.029197419062256813, -0.011956906877458096, -0.009294466115534306, 0.0028155145701020956, -0.001962432637810707, -0.012947583571076393, -0.010388337075710297, -0.008977999910712242, 0.03142644092440605, 0.003907666075974703, -0.004578436259180307, -0.005156330298632383, -0.0030803827103227377, 0.00820059422403574, 0.011028148233890533, 0.028454411774873734, -0.0022720186971127987, -0.021767349913716316, -0.003376209642738104, 0.05165274068713188, -0.007237437646836042, -0.011000629514455795, -0.023005696013569832, -0.009920517913997173, -0.03252718970179558, -0.028729600831866264, 0.020418930798768997, 0.0009683168609626591, 0.02999546378850937, 0.01506652869284153, -0.016607580706477165, -0.001640806905925274, 0.006370596121996641, -0.01934569887816906, -0.012238974682986736, 0.005280164536088705, -0.018244946375489235, -0.017955999821424484, 0.012754951603710651, -0.02687208354473114, 0.0017336828168481588, 0.009390781633555889, 0.013848823495209217, -0.005462476518005133, -0.012122020125389099, -0.01113822404295206, 0.020129982382059097, 0.012796229682862759, 0.00017682962061371654, 0.009934277273714542, 0.017226751893758774, 0.01042273547500372, 0.00450275931507349, -0.020900508388876915, -0.006370596121996641, -0.009844841435551643, 0.004079658072441816, -0.004475240595638752, 0.041718460619449615, -0.0009949756786227226, 0.013896981254220009, -0.01100750919431448, -0.0005538153345696628, -0.05916536599397659, 0.0011196701088920236, 0.0004267559852451086, 0.011310216039419174, -0.022042537108063698, 0.002770796651020646, -0.03858132287859917, -0.00598533358424902, 0.00812491774559021, -0.004227571655064821, -0.013628672808408737, -0.008090519346296787, -0.01336724404245615, -0.005287044681608677, 0.030931102111935616, -0.013456680811941624, -0.005751424003392458, 0.014158409088850021, -0.03296749293804169, -0.010863035917282104, -0.020584043115377426, -0.020941786468029022, -0.001290802494622767, -0.013546116650104523, -0.015616904012858868, -9.73906644503586e-05, -0.013952018693089485, -0.011385892517864704, 0.015176603570580482, -0.009920517913997173, -0.04125064238905907, 0.013257169164717197, -0.007423189468681812, 0.0035636811517179012, 0.01565818302333355, -0.023225845769047737, 0.012156418524682522, -0.013621793128550053, -0.017089158296585083, -0.003056303830817342, -0.002438851399347186, 0.003273014212027192, 0.013167733326554298, -0.012933824211359024, -0.0013905580854043365, 0.03778327628970146, 0.014529912732541561, 0.032252002507448196, 0.014887657016515732, -0.02908734418451786, 0.005376480519771576, 0.019868554547429085, 0.010532810352742672, -0.01817614957690239, -0.011434050276875496, -0.007065445184707642, -0.00154965091496706, -0.03252718970179558, -0.008503301069140434, -0.0035017640329897404, 0.030628396198153496, 0.004021180793642998, 0.02229020744562149, 0.0006303518894128501, 0.008393226191401482, 0.008902323432266712, -0.01931818015873432, 0.01593337021768093, -0.0059371753595769405, 0.018561413511633873, 0.013250289484858513, -0.00820059422403574, 0.00017263731569983065, -0.011874350719153881, -0.015410513617098331, 0.013050778768956661, 0.02746373601257801, 0.013167733326554298, 0.0106428861618042, -0.008310670033097267, 0.016029685735702515, 0.012624237686395645, 0.010739201679825783, 0.015905851498246193, 0.014997731894254684, -0.004777946975082159, 0.008585857227444649, -0.0008470622706227005, 0.014337281696498394, -0.0032884934917092323, -0.016332391649484634, -0.0074644675478339195, 0.00989987887442112, 0.02010246366262436, -0.0011987865436822176, 0.03635229915380478, 0.02996794506907463, 0.049836501479148865, -0.009328864514827728, 0.02628042921423912, 0.003259254852309823, 0.005225127097219229, 0.009535254910588264, 0.03371049836277962, -0.031371403485536575, 0.03382057324051857, 0.005713585298508406, 0.010869915597140789, 0.00521136773750186, -0.023583589121699333, 0.004506199155002832, -0.0008191135129891336, -0.003035664791241288, -0.03915921598672867, -0.001409477205015719, 0.02036389335989952, -0.019153065979480743, 0.007148001343011856, 0.012679275125265121, 0.012149538844823837, 0.02065283991396427, 0.01173675712198019, -0.009211909957230091, 0.016043445095419884, -0.02242780104279518, 0.01418592780828476, -0.013339725323021412, -0.011255178600549698, -0.021079380065202713, -0.007588301785290241, -0.012307771481573582, 0.01904299110174179, -0.017667053267359734, 0.008764729835093021, 0.004564676433801651, -0.004175974056124687, 0.0028499129693955183, 0.018699007108807564, 0.005682626739144325, -0.0020415489561855793, 0.023542311042547226, -0.020611561834812164, -0.02156095951795578, 0.03117877058684826, 0.019414495676755905, 0.006680182181298733, -0.009796683676540852, -0.010580969043076038, -0.010525930672883987, 0.012665515765547752, 0.005651668179780245, -0.0033710498828440905, 0.0023150169290602207, 0.005256085656583309, -0.0033744897227734327, -0.02142336592078209, 0.007794692646712065, 0.044360265135765076, -0.02435411512851715, -0.024257799610495567, 0.012025704607367516, 0.0037012752145528793, 0.0076639787293970585, -0.01122765988111496, -0.03489380702376366, 0.014419837854802608, -0.028399374336004257, -0.009617811068892479, -0.025014566257596016, -0.0036083993036299944, -0.022868100553750992, 0.0032678544521331787, -0.013594274409115314, -0.004991217516362667, -0.016607580706477165, -0.01829998381435871, 0.016456227749586105, -0.0016038285102695227, -0.004124376457184553, 0.024422911927103996, 0.005001537036150694, -0.000541775836609304, -0.008104278706014156, 0.00752638466656208, 0.03792086988687515, 0.06362340599298477, 0.008675293065607548, 0.002567845629528165, 0.012871906161308289, -0.0056860665790736675, -0.027546292170882225, -0.0318942591547966, -0.008207473903894424, 0.03673756495118141, 0.010904313996434212, -0.022042537108063698, 0.0024543306790292263, 0.016566302627325058, -0.004375485237687826, 0.011200141161680222, -0.010353938676416874, -0.01188811007887125, -0.010821757838129997, -0.0199511107057333, 0.01755697838962078, 0.021492162719368935, -0.014240965247154236, 0.03010553866624832, 0.01565818302333355, 0.019111787900328636, 0.01145468931645155, 0.018547654151916504, -0.002738117938861251, 0.005121931899338961, -0.023968853056430817, 0.001840317971073091, 0.018726525828242302, 0.012342169880867004, 0.028027871623635292, -0.023280883207917213, 0.022799303755164146, 0.0008969400660134852, -0.011860591359436512, -0.025895167142152786, 0.0018764364067465067, -0.01696532405912876, 0.018795322626829147, 0.005280164536088705, -0.010470893234014511, 0.019992388784885406, -0.024698099121451378, 0.0033022528514266014, 0.023569829761981964, -0.00908119510859251, -0.003496604273095727, 0.020639080554246902, 0.008654654026031494, -0.008462022989988327, 0.022111335769295692, -0.01224585436284542, -0.009583412669599056, -0.022813063114881516, -0.010821757838129997, -0.03544418141245842, -0.027243586257100105, -0.026706969365477562, -0.02098306454718113, 0.0028155145701020956, -0.013917620293796062, -0.024918250739574432, -0.034921325743198395, -0.0018764364067465067, -0.008338188752532005, -0.015094047412276268, 0.007003528065979481, -0.005139131098985672, -0.03885651007294655, -0.02820674329996109, 0.00959029234945774, 0.03117877058684826, 0.013408523052930832, 0.0010577528737485409, 0.013731868006289005, 0.002306417329236865, 0.020872989669442177, 0.010188826359808445, -0.012933824211359024, -0.0024938888382166624, -0.010959351435303688, 0.017983518540859222, -0.00960405170917511, -0.02391381375491619, -0.0016571461455896497, -0.01728178933262825, -0.006432513240724802, 0.0052732848562300205, -0.014103371649980545, 0.010305780917406082, 0.009865480475127697, 0.0018162390915676951, 0.0129888616502285, 0.011853711679577827, -0.00021133558766450733, 0.022386522963643074, -0.03205937147140503, 0.02125825360417366, -0.010663525201380253, -0.014736303128302097, -0.01773585006594658, 0.006583866663277149, 0.01284438744187355, -0.010739201679825783, 0.005214807577431202, -0.027546292170882225, -0.01567194238305092, 0.003591200103983283, 0.011413411237299442, -0.0015333116753026843, 0.0012813429348170757, 0.011330855078995228, -0.005173529498279095, 0.00885416567325592, 0.025578700006008148, 0.002168823266401887, -0.02080419287085533, -0.012493523769080639, -0.005778942722827196, 0.03321516141295433, 0.002175703179091215, 0.0028137946501374245, 0.03525155037641525, 0.03126132860779762, -0.02733990177512169, -0.018066074699163437, 0.0130782974883914, -0.003071783110499382, 0.013188372366130352, -0.034646134823560715, -0.01905675046145916, 0.00410029711201787, -0.0229093786329031, -0.010553449392318726, -0.009253188036382198, -0.014763821847736835, -0.020776674151420593, -0.03486628830432892, 0.006742099765688181, 0.009789803996682167, 0.006449712440371513, 0.009033037349581718, -0.02775268442928791, -0.02658313512802124, -0.003441566601395607, 0.004550917074084282, 0.026995917782187462, -0.020941786468029022, -0.0071411216631531715, -0.02392757311463356, -0.012156418524682522, -0.009982435032725334, -0.004599075298756361, -0.017226751893758774, 0.01300262100994587, 0.05478987842798233, 0.02125825360417366, 0.014282243326306343, 0.010787359438836575, 0.007099843584001064, 0.014144649729132652, -0.002886031521484256, 0.004530278034508228, -0.01876780390739441, -0.027862759307026863, 0.005682626739144325, -0.0026435223408043385, 0.007856610231101513, 0.0006866793846711516, -0.012734312564134598, -0.0003708584699779749, -0.012920064851641655, 0.014240965247154236, -0.002856792649254203, -0.005290484521538019, -0.029637720435857773, -0.03547170013189316, 0.019689682871103287, 0.02098306454718113, -0.021602237597107887, 0.009411420673131943, -0.02257915399968624, -0.014626228250563145, 0.012514162808656693, -0.0015272919554263353, 0.04931364208459854, 0.008131797425448895, 0.03409576043486595, 0.012238974682986736, -0.02125825360417366, 0.009205030277371407, 0.0073406328447163105, -0.01744690351188183, -0.004506199155002832, -0.050744619220495224, -0.01831374503672123, -0.0042688497342169285, 0.021505922079086304, 0.012355929240584373, -0.009349503554403782, 0.015080288052558899, 0.007595181465148926, 0.026252910494804382, -0.024409152567386627, -0.024120206013321877, 0.0048433043994009495, -0.014282243326306343, 0.004203492775559425, -0.019730960950255394, -0.018217427656054497, 0.011551005765795708, 0.003811350092291832, -0.005507194437086582, 0.011495967395603657, 0.0209968239068985, -0.02050148695707321, 7.97614484326914e-05, 0.02054276503622532, 0.007020727265626192, 0.017942240461707115, 0.011110705323517323, 0.03428839147090912, 0.021175697445869446, 0.0008367427508346736, -0.00855833850800991, -0.01934569887816906, -0.0034811249934136868, -0.014117131009697914, 0.006343077402561903, 0.04444282129406929, -0.014075852930545807, -0.005761743523180485, 0.011688599362969398, -0.010580969043076038, 0.01278247032314539, -0.04595635086297989, 0.020556524395942688, 0.00988611951470375, 0.006793697364628315, -0.03200433403253555, -0.02878463827073574, -0.031508997082710266, 0.018520135432481766, 0.012431605719029903, 0.0009519775630906224, -0.005152890458703041, 0.011709238402545452, -0.0012899425346404314, 0.041580867022275925, -0.005658547859638929, 0.02169855311512947, -0.011757396161556244, 0.002941068960353732, -0.014502394013106823, -0.0019830716773867607, 0.006700821686536074, -0.005417758598923683, 0.01381442416459322, 0.026060279458761215, -0.012197696603834629, -0.01963464543223381, -0.0013484199298545718, 0.007767173927277327, -0.00981044303625822, 0.0018506376072764397, -0.009253188036382198, 0.036544930189847946, -0.004815785679966211, -0.01669013686478138, 0.012128899805247784, -0.006133246701210737, 0.027972834184765816, -0.0063877953216433525, -0.010175067000091076, -0.00863401498645544, -0.01357363536953926, 0.011344614438712597, 0.007629580330103636, 0.006374035961925983, -0.012576079927384853, -0.010099390521645546, 0.002727798419073224, -0.01010627020150423, -0.004488999955356121, -0.004802025854587555, 0.008241873234510422, -0.041745979338884354, -0.0129888616502285, 0.004347966518253088, 4.00688404624816e-05, 0.015726979821920395, -0.002287497976794839, -0.009108713828027248, -0.0013252010103315115, 0.0334077924489975, -0.02183614671230316, 0.015878332778811455, 0.03693019598722458, 0.0074507081881165504, -0.053661610931158066, 0.016786452382802963, 0.004492439795285463, 0.007409430108964443, 0.019827276468276978, -0.007237437646836042, -0.02084547095000744, -0.03577440604567528, 0.014777581207454205, 0.004915541037917137, 0.023432236164808273, 0.005462476518005133, 0.007946046069264412, 0.007471347227692604, -0.0021602236665785313, -0.0246430616825819, -0.01773585006594658, 0.004936180077493191, 0.0008130937931127846, 0.025331031531095505, 0.0047710672952234745, -0.008578977547585964, 0.0009562774212099612, -0.017102917656302452, 0.020019907504320145, 0.002886031521484256, -0.037122827023267746, -0.016607580706477165, -0.029362531378865242, -0.0018213988514617085, -0.004145015496760607, 0.005637908820062876, -0.009088074788451195, -0.008434504270553589, -0.022702988237142563, 0.02672072872519493, -0.014598709531128407, -0.00266072154045105, 0.01210826076567173, -0.020625321194529533, -0.005262965336441994, 0.008365707471966743, 0.00039343247772194445, -0.03737049549818039, 0.0047332290560007095, -0.02527599409222603, -0.029059825465083122, 0.0011549285845831037, 0.0006415314273908734, 0.059715740382671356, 0.012940703891217709, -0.006150445900857449, -0.01951081119477749, -0.023377198725938797, -0.04345214366912842, -0.011833072640001774, -0.024175243452191353, 0.04207620397210121, 0.014027695171535015, 0.021671034395694733, 0.006442832760512829, 0.03899410367012024, -0.01641494780778885, 0.016015926375985146, -0.03827861323952675, -0.013360364362597466, -0.016483746469020844, -0.023390958085656166, 0.016731414943933487, -0.022359004244208336, -0.05911032482981682, 0.015107806771993637, 0.004554356914013624, -0.015506829135119915, 0.0009829362388700247, 0.010230104438960552, 0.005049695260822773, -0.0033160122111439705, -0.014433597214519978, 0.01025762315839529, 0.029307493939995766, 0.01003747247159481, 0.0044305226765573025, -0.018726525828242302, 0.010787359438836575, 9.045722254086286e-05, -0.011950027197599411, -0.006449712440371513, 0.013711228966712952, 0.022083817049860954, -0.006865934003144503, 0.006501310504972935, 0.011640441603958607, -0.021079380065202713, -0.00849642138928175, -0.009796683676540852, -0.006205483339726925, 0.00752638466656208, 0.020584043115377426, 0.03401320427656174, -0.016607580706477165, 0.012328410521149635, -0.006700821686536074, -0.0004609394527506083, 0.014722543768584728, 0.015465551055967808, 0.02892223186790943, -0.02468433976173401, -3.0686524041811936e-06, -0.010016833432018757, 0.009136232547461987, -0.00190911500249058, -0.005517514422535896, -0.0025386069901287556, -0.015396754257380962, -0.03764568269252777, -0.014612468890845776, 0.026624413207173347, -0.015451791696250439, 0.0021378647070378065, 0.003512083552777767, -0.011337734758853912, 0.006401554681360722, -0.0033555706031620502, 0.0036462375428527594, -0.02775268442928791, -0.00833130907267332, -0.004709150176495314, 0.0056723072193562984, -0.04196612909436226, 0.014598709531128407, 0.018107352778315544, -0.0129888616502285, -0.0004957679193466902, 0.20396915078163147, -0.00892984215170145, 0.02216637320816517, 0.017199233174324036, 0.01241096667945385, -0.006363716442137957, 6.594159458472859e-06, 0.011241419240832329, -0.0016631658654659986, 0.009026157669723034, 0.02656937576830387, -0.013346605002880096, -0.036104630678892136, -0.0008509320905432105, 0.002227300778031349, -0.021382087841629982, -0.045736201107501984, -0.01218393724411726, -0.023514792323112488, 0.01093183271586895, 0.005699825938791037, -0.007423189468681812, -0.014516153372824192, -0.008840406313538551, 0.03717786446213722, 0.021051861345767975, 0.0023528551682829857, 0.003298813011497259, 0.017612015828490257, 0.03101365827023983, -0.010766720399260521, -0.013147094286978245, 0.02244156040251255, -0.018286224454641342, -0.02527599409222603, 0.0012159858597442508, 0.014860138297080994, -0.00694161094725132, -0.012851267121732235, 0.03216944634914398, -0.01040897611528635, -0.008984879590570927, 0.0017680812161415815, -0.04391996189951897, 0.028000352904200554, 0.000745156779885292, -0.005827100481837988, -0.006504750344902277, -0.0025265675503760576, 0.033297717571258545, -0.016222316771745682, -0.002065628068521619, 0.02656937576830387, 0.0021825828589498997, -0.017240511253476143, 0.006532269064337015, -0.016070963814854622, -0.0019108349224552512, -0.01889163814485073, -0.011351494118571281, -0.0003110911347903311, -0.0015470710350200534, 0.0005280164768919349, 0.0006578706670552492, -0.03379305452108383, 0.023212086409330368, -0.0037425532937049866, 0.03280237689614296, 0.016428709030151367, 0.005589751061052084, -0.005696386098861694, 0.005637908820062876, -0.030243132263422012, -0.004915541037917137, -0.022868100553750992, -0.01951081119477749, 0.02275802567601204, 0.027353661134839058, 0.050744619220495224, 0.0076639787293970585, 0.0130782974883914, 0.001907395082525909, -0.021464643999934196, -0.014887657016515732, 0.003295373171567917, -0.02245531976222992, 0.018575172871351242, -0.017749609425663948, 0.006580426823347807, -0.0313163660466671, -0.00778781296685338, 0.024918250739574432, -0.009638451039791107, -0.0007025887025520205, -0.005582871381193399, -0.0048949019983410835, 0.014055213890969753, 0.015300438739359379, -0.01276871096342802, -0.025482384487986565, -0.01113822404295206, 0.04507575184106827, 0.027271104976534843, 0.04204868525266647, 0.000512107159011066, 0.0065873065032064915, -0.0062226830050349236, 0.01744690351188183, -0.010697923600673676, -0.009700368158519268, -0.003164659021422267, -0.042296357452869415, 0.02334968000650406, 0.004540597554296255, -0.013903860934078693, 0.03604959324002266, 0.016717655584216118, 0.0004708290216512978, 0.009721007198095322, -0.008276271633803844, 0.023225845769047737, 0.004169094376266003, -0.0028241141699254513, 0.0018661168869584799, -0.018286224454641342, -0.022097576409578323, 7.105433178367093e-05, 0.01005123183131218, -0.023666145280003548, -0.015135325491428375, 0.013525477610528469, -0.00952837523072958, 0.02584012970328331, -0.008448263630270958, -0.010264502838253975, -0.016580061987042427, -0.014653746969997883, -0.00931510515511036, -0.003192177740857005, -0.011035028845071793, 0.011131344363093376, 0.0024956087581813335, 0.006050690542906523, -0.0052732848562300205, -0.00996179599314928, 0.005087533500045538, -0.0064256335608661175, 0.005228566937148571, -0.023363439366221428, -0.015892092138528824, 0.010587848722934723, 0.006095408461987972, 0.00190911500249058, 0.0062226830050349236, 0.04298432543873787, -0.012087621726095676, -0.05228567123413086, -0.025289753451943398, 0.005318003240972757, 0.023445995524525642, -0.04301184415817261, -0.010739201679825783, 0.05883513763546944, 0.01418592780828476, -0.023721182718873024, 0.017625775188207626, -0.17567984759807587, 0.0058855777606368065, 0.01696532405912876, -0.0014464556006714702, 0.002290938049554825, 0.023239605128765106, 0.013752507045865059, -0.007333753164857626, -0.009466458112001419, -0.011915628798305988, 0.017914721742272377, -0.012527922168374062, -0.014860138297080994, -0.025069603696465492, 0.012039463967084885, -0.020872989669442177, -0.0058099012821912766, 0.026638172566890717, 0.0628528818488121, -0.009954916313290596, 0.009198150597512722, -0.017777128145098686, -0.011461568996310234, -0.01071856264024973, 0.01505276933312416, 0.02378997951745987, 0.0003291503235232085, 0.02262043207883835, -0.0020157501567155123, -0.028316818177700043, 0.014351041056215763, -0.02939005009829998, 0.010519050993025303, 0.004052139353007078, 0.016194798052310944, -0.0006316418875940144, -0.005207927897572517, -0.022565394639968872, -0.002392413327470422, 0.012177057564258575, 0.02007494494318962, 0.006126367021352053, 0.027656367048621178, -0.003787271212786436, 0.00900551863014698, 0.017323067411780357, 0.015548107214272022, -0.010828637517988682, 0.005589751061052084, -0.020061185583472252, 0.00997555535286665, -0.016607580706477165, 0.0043548461981117725, 0.003962703514844179, 0.012307771481573582, 0.007588301785290241, 0.0024698099587112665, 0.033985685557127, 0.015919610857963562, -0.010243863798677921, -0.00025476363953202963, -0.005359281320124865, -0.004526838194578886, -0.0040555791929364204, -0.011606043204665184, -0.04136071726679802, -0.013030139729380608, 0.0069622499868273735, 0.008358827792108059, 0.005964694079011679, -0.009879239834845066, -0.011998185887932777, 0.02451922744512558, -0.010952471755445004, 0.02570253424346447, 0.005225127097219229, -0.024010131135582924, -0.007684617768973112, 0.028894713148474693, 0.006105727981775999, 0.018671488389372826, 0.018272465094923973, 0.0027088792994618416, 0.0017465822165831923, -0.007065445184707642, -0.004014301113784313, -0.004182853735983372, 0.0016700455453246832, 0.004660992417484522, -0.0047710672952234745, 0.021671034395694733, -0.017680812627077103, 0.010883674956858158, 0.0023734942078590393, 0.0003953673876821995, 0.004313567653298378, 0.027573810890316963, -0.006814336404204369, -0.004406443797051907, -0.021148178726434708, -0.0038319893646985292, 0.021450884640216827, -0.03533410653471947, 0.019565848633646965, 0.039076659828424454, 0.010677284561097622, 0.025179678574204445, -0.0038595080841332674, 0.027821481227874756, -0.028536967933177948, -0.029802832752466202, 0.004788266494870186, 0.022661710157990456, 0.012679275125265121, -0.02052900567650795, 0.030683433637022972, -0.02007494494318962, -0.015988407656550407, 0.01728178933262825, -0.0060094124637544155, 0.03637981787323952, -0.03998477756977081, -0.023583589121699333, 0.002994386712089181, 0.001077531953342259, -0.014488634653389454, -0.1046263799071312, -0.013470440171658993, 0.02922493778169155, 0.02350103296339512, -0.002729518339037895, 0.00886792503297329, 0.011317095719277859, 0.03516899421811104, -0.008351948112249374, 0.03588448092341423, -0.019552089273929596, 0.009039917029440403, 0.008427624590694904, 0.007877249270677567, 0.007719016168266535, -0.007698377128690481, 0.006109167821705341, -0.032252002507448196, -0.004564676433801651, 0.04287425056099892, 0.013016380369663239, -0.00930134579539299, 0.01655254326760769, 0.015410513617098331, -0.005813341122120619, -0.011592283844947815, -0.020253818482160568, 0.018368782475590706, 0.023679904639720917, 0.011310216039419174, 0.02630794793367386, -0.026679450646042824, 0.038911547511816025, -0.032554708421230316, -0.01799727790057659, -0.008145556785166264, -0.02052900567650795, -0.008806007914245129, 0.008971120230853558, -0.028674563392996788, 0.009218789637088776, -0.00789788831025362, 0.005507194437086582, -0.03010553866624832, 0.0018953555263578892, 0.0015728699509054422, -0.031398922204971313, 0.04042508080601692, -0.0015728699509054422, -0.007884128950536251, -0.020611561834812164, -0.02157471887767315, -0.027119752019643784, -0.028426893055438995, 0.01567194238305092, 0.004888022318482399, 0.031674109399318695, 0.009645330719649792, -0.022689228877425194, -0.0013802385656163096, -0.01799727790057659, 0.0059371753595769405, -0.01543803233653307, 0.020473968237638474, 0.001239204779267311, 0.024106446653604507, 0.0017921602120622993, -0.007058565504848957, -0.009831082075834274, 0.011757396161556244, -0.019992388784885406, 0.01558938529342413, -0.017983518540859222, 0.008393226191401482, -0.022702988237142563, -0.00892984215170145, -0.0018420378910377622, -0.012734312564134598, 0.008400105871260166, 0.022978175431489944, -0.018809081986546516, -0.009948036633431911, -0.004272289574146271, -0.020473968237638474, 0.004365165717899799, 0.003494884353131056, 0.014997731894254684, -0.009631571359932423, 0.02747749537229538, -0.039516959339380264, 0.011110705323517323, 0.033462829887866974, -0.004451161716133356, 0.01744690351188183, -0.012686154805123806, 0.00045792959281243384, -0.008262512274086475, -0.007381910923868418, 0.021230734884738922, -0.02110689878463745, -0.0011334294686093926, -0.0060162921436131, -0.05718401074409485, 0.0034088881220668554, 0.017460662871599197, 0.008592736907303333, 0.008510180748999119, -0.01933193951845169, 0.008544579148292542, -0.007189279887825251, -0.0012753232149407268, -0.006446272600442171, -0.024574264883995056, 0.027573810890316963, -0.034040722995996475, -0.004162214696407318, -0.04339710623025894, -0.013780025765299797, 0.006023171823471785, 0.011716118082404137, 0.010381457395851612, 0.010849276557564735, -0.011530366726219654, 0.019675923511385918, 0.009989314712584019, 0.03101365827023983, -0.0053076837211847305, 0.011028148233890533, -0.018107352778315544, 0.011936267837882042, -0.008413865230977535, -0.03321516141295433, 0.012995741330087185, 0.009370142593979836, -0.003574000671505928, 0.013635552488267422, -0.015190362930297852, -0.046754397451877594, 0.0017302428605034947, 0.00988611951470375, 0.0005447857547551394, 0.01454367209225893, -0.02008870430290699, -0.024257799610495567, 0.030600877478718758, -0.004454601556062698, -0.016139760613441467, -0.003494884353131056, -0.03260974586009979, -0.025757571682333946, 0.004609394818544388, -0.005403999239206314, 0.05418446660041809, -0.002356295008212328, -0.02289561927318573, -0.032995011657476425, -0.010223224759101868, -0.0002019835083046928, 0.01563066430389881, 0.029582682996988297, 0.011640441603958607, -0.004151895176619291, 0.03992974013090134, -0.0030253452714532614, 0.015713220462203026, -0.00402462063357234, 0.033462829887866974, -0.03200433403253555, -0.05756927654147148, -0.008448263630270958, -0.0008883404079824686, -0.020625321194529533, 0.006205483339726925, -0.03335275501012802, 0.042296357452869415, 0.026197873055934906, 0.012775590643286705, -0.005603510420769453, -0.01863021031022072, -0.022180132567882538, -0.0022187011782079935, 0.021519681438803673, 0.024271558970212936, -0.014970213174819946, -0.02850944921374321, 0.012500403448939323, 0.013552996329963207, 0.01611224189400673, -0.011427170597016811, 0.01713043637573719, 0.026211632415652275, 0.001891915686428547, -0.01078047975897789, 0.004987777676433325, -0.013119575567543507, -0.007691497448831797, -0.007416309788823128, 0.013057658448815346, -0.022248929366469383, 0.003904226003214717, 0.011000629514455795, 0.026651931926608086, -0.006370596121996641, 0.025028325617313385, 0.00029324693605303764, -0.01728178933262825, -0.008881684392690659, 0.014681265689432621, -0.03249967098236084, -0.0199511107057333, 0.03646237403154373, 0.012417846359312534, 0.00952837523072958, -0.018396301195025444, 0.007643339689821005, 0.019717201590538025, -0.03216944634914398, -0.006171084940433502, -0.007932286709547043, -0.027546292170882225, -0.04425019025802612, -0.0030666233506053686, 0.012232095003128052, 0.011110705323517323, 0.006642343942075968, -0.02966523915529251, 0.009755405597388744, -0.009115593507885933, 0.01831374503672123, -0.007767173927277327, 0.01564442366361618, -0.02966523915529251, -0.004124376457184553, -0.005744543857872486, -0.00900551863014698, -0.018547654151916504, -0.013126455247402191, -0.018382541835308075, -0.012713673524558544, 0.01714419573545456, -0.0062226830050349236, 0.09554518014192581, 0.02955516241490841, -0.022482838481664658, 0.026555616408586502, -0.018079834058880806, 0.004867383278906345, 0.023432236164808273, -0.016731414943933487, -0.006184844300150871, -0.00479514617472887, 0.026665691286325455, -0.0197722390294075, -0.00849642138928175, -0.024023890495300293, -0.025441106408834457, 0.00013856132864020765, -0.0031440199818462133, 0.0208179522305727, -0.013477319851517677, 0.011757396161556244, 0.01743314415216446, -0.005992213264107704, 0.02022629976272583, -0.007471347227692604, -0.027725165709853172, -0.012665515765547752, 0.033160123974084854, 0.013773146085441113, -0.002741557778790593, -0.03511395677924156, 0.01860269159078598, 0.009913638234138489, -0.030188094824552536, -0.007223678287118673, -0.020928027108311653, 0.010154427960515022, -0.01567194238305092, -0.0106428861618042, 0.02538606896996498, 0.021671034395694733, 0.014942694455385208, 0.03805846348404884, -0.016566302627325058, -0.012424726039171219, 0.016772693023085594, -0.010821757838129997, -0.00025433365954086185, 0.0005331762367859483, -0.0012632837751880288], "343f4d90-69d0-4aed-87d9-6c7896f18cdf": [0.0034058853052556515, 0.004005912691354752, 0.021676629781723022, -0.02517019771039486, -0.017027707770466805, 0.026586880907416344, -0.007826142944395542, -0.0261054839938879, -0.023093312978744507, -0.03133208304643631, 0.011140907183289528, 0.018279340118169785, -0.005367578938603401, -0.007241589482873678, -0.011636058799922466, 0.01972353272140026, 0.023258361965417862, -0.013403474353253841, 0.007200327236205339, -0.00905026774853468, -0.016023650765419006, -0.015308431349694729, -0.01708272472023964, -0.024083614349365234, -0.02153908647596836, 0.008898971602320671, 0.021594103425741196, -0.005941817071288824, -0.006000272464007139, 0.03017672896385193, 0.003562339348718524, -0.007145310286432505, -0.024785079061985016, -0.002063130959868431, -0.02836117334663868, 0.001356508582830429, 0.016367506235837936, -0.00023532587510999292, 0.010556353256106377, -0.011546656489372253, 0.024647537618875504, 0.004604220390319824, -0.011704829521477222, -0.0038374236319214106, -0.02050752192735672, 0.03504571691155434, 7.374081178568304e-06, 0.0021473753731697798, -0.013389719650149345, 0.0036104791797697544, -1.995971797441598e-05, 0.0008746815728954971, -0.030726896598935127, 0.020562538877129555, -0.02552780695259571, -0.011436622589826584, 0.008672026917338371, -0.012220612727105618, 0.010446319356560707, 0.0011596515541896224, 0.00672236829996109, 0.009476647712290287, -0.00990302860736847, -0.00030130308005027473, -0.02357470989227295, -0.025789136067032814, -0.008445082232356071, -0.015693549066781998, -0.017123986035585403, -0.007186572998762131, 0.04104255139827728, 0.026050467044115067, -0.00771610951051116, 0.011883634142577648, -0.020204929634928703, -0.013499753549695015, -0.002210988663136959, -0.012447556480765343, -0.008754552341997623, 0.0042947507463395596, 0.011649812571704388, -0.023437168449163437, -0.0015808740863576531, -0.004817410837858915, 0.024523749947547913, 0.032542452216148376, 0.0223093219101429, -0.0007212361670099199, -0.01924213394522667, 0.008273155428469181, 0.009964922443032265, 0.006313180550932884, 0.011931774206459522, 0.017385317012667656, 0.012165595777332783, 0.00624097092077136, 0.010288146324455738, -0.001688328804448247, -0.0024207402020692825, -0.010817683301866055, -0.03881436958909035, 0.0027525604236871004, -0.0063234963454306126, -0.016119929030537605, -0.022639423608779907, -0.008534485474228859, 0.01970977708697319, -0.0033371143508702517, 0.011464131064713001, 0.016092421486973763, -0.03466060012578964, 0.024771325290203094, -0.009015882387757301, -0.01212433259934187, 0.009325351566076279, -0.029213935136795044, 0.017234019935131073, -0.0330100953578949, -0.0037652140017598867, -0.013547893613576889, 0.013286563567817211, -0.017839206382632256, 0.02631179615855217, -0.024867605417966843, 0.009215318597853184, 0.006522932555526495, 0.0021611296106129885, -0.012234366498887539, 0.003806476714089513, -0.01242692582309246, 0.012839552015066147, 0.030231745913624763, 0.001519839745014906, 0.0031651866156607866, -0.024179894477128983, -0.013300317339599133, -0.013417228125035763, 0.016546310856938362, -0.0030413989443331957, -0.030039187520742416, 0.019159609451889992, 0.032542452216148376, 0.011037750169634819, -0.018375620245933533, 0.013073372654616833, 0.02789353020489216, -0.0027233329601585865, 0.025926679372787476, -0.002042499603703618, -0.000398871983634308, 0.022378094494342804, -0.023781022056937218, -0.015088364481925964, 0.014606967568397522, 0.018526915460824966, 0.0073653776198625565, 0.0035382695496082306, 0.020466258749365807, -0.016903920099139214, 0.001519839745014906, -0.0033113250974565744, 0.018939541652798653, -0.008864586241543293, 0.004607659298926592, 0.0022986717522144318, 0.03600851073861122, 0.010460074059665203, -0.010590738616883755, -0.004889620468020439, -0.0011957563692703843, -0.0027233329601585865, 0.03757649287581444, -0.02770097181200981, 0.015487235970795155, -0.004243172705173492, -0.0018843262223526835, 0.022144272923469543, 0.006760192569345236, -0.007372254505753517, -0.01543221902102232, 0.028278648853302002, -0.005859292112290859, -0.01607866771519184, 0.024179894477128983, -0.018389374017715454, -0.035705920308828354, 0.029076391831040382, 0.02016366645693779, 0.01231001503765583, -0.0017536613158881664, 0.007626707199960947, 0.007104047574102879, -0.011766723357141018, 0.0061412532813847065, -0.6320332884788513, 0.012860182672739029, 0.0075304280035197735, -0.031167032197117805, 0.004360083490610123, 0.019874827936291695, 0.027425887063145638, 0.002912453142926097, -0.009352860040962696, 0.011821740306913853, 0.018664458766579628, 0.011127152480185032, -0.013492876663804054, -0.0028127352707087994, -0.008672026917338371, -0.034578073769807816, 0.0011304238578304648, -0.020933901891112328, -0.011023996397852898, 0.002082043094560504, -0.02380853146314621, 0.02528023160994053, -0.004628290422260761, -0.003503883956000209, -0.003099854337051511, -0.026944490149617195, 0.031497132033109665, -0.02723332867026329, -0.008754552341997623, 0.012942708097398281, -0.033422719687223434, 0.009765486232936382, 0.008513853885233402, 0.012048684991896152, 0.04753453657031059, -0.004683307372033596, -0.0256515946239233, 0.009923660196363926, 0.012069315649569035, 0.05023036152124405, -0.01650504767894745, -0.01698644459247589, 0.019104592502117157, 0.0016290138009935617, -0.020094895735383034, -0.010714526288211346, 0.006828963290899992, 0.007193449884653091, -0.014882051385939121, -0.02174540050327778, 0.005642663221806288, -0.013596032746136189, -0.001076266635209322, -0.00390275614336133, 0.0073585002683103085, 0.007172818761318922, 0.024523749947547913, -0.009380368515849113, -0.0035520237870514393, -0.0010255479719489813, 0.008740798570215702, 0.01661508157849312, -0.008231892250478268, -0.04588403180241585, -0.03314763680100441, 0.0032098880037665367, -0.008101227693259716, -0.024565013125538826, 0.01722026616334915, -0.004703938495367765, 0.03823669254779816, -0.009036513976752758, -0.003450586460530758, -0.017068970948457718, -0.008603256195783615, 0.017742926254868507, 0.03204730153083801, -0.004473555833101273, -0.00854823924601078, 0.0117392148822546, -0.006106867454946041, -0.01733030006289482, -0.022144272923469543, 0.006787701044231653, 0.03111201524734497, 0.01321779191493988, -0.01554225292056799, -0.004012789577245712, -0.0015318747609853745, 0.0006344127468764782, 0.00427411962300539, 0.03292756900191307, -0.0053778947331011295, -0.028553731739521027, -1.85863120805152e-06, 0.04354581609368324, -0.003024206031113863, 0.011051504872739315, -0.006990575231611729, -0.01594112440943718, -0.028416190296411514, -0.04021729901432991, 0.009648575447499752, 0.009834257885813713, 0.01767415553331375, 0.009662330150604248, -0.009724223986268044, -0.00878206081688404, 0.014263112097978592, 0.000908637244720012, 0.006443845573812723, 0.007447902578860521, -0.03438551723957062, -0.015335939824581146, 0.014950822107493877, -0.02484009601175785, 0.007310360670089722, -0.005085617769509554, 0.007537304889410734, -0.0067911394871771336, 0.006650158669799566, 0.002315864432603121, 0.00624097092077136, -0.011581041850149632, 0.010398180224001408, 0.014593212865293026, 0.015886107459664345, -0.0031823795288801193, 0.018746983259916306, -0.0033474299125373363, -0.007819266058504581, -0.033560264855623245, 0.010212497785687447, -0.0028849446680396795, 0.02893885038793087, 0.007640461437404156, 0.023175837472081184, -0.014620721340179443, 0.00020523855346255004, -0.04024480655789375, 0.0014364549424499273, 0.007289729546755552, 0.017729172483086586, -0.023175837472081184, 0.01281892042607069, -0.010453197173774242, -0.014056799001991749, 0.011560410261154175, -0.008995250798761845, -0.022845735773444176, 0.008073719218373299, 0.002094077877700329, -0.015074609778821468, 0.012144964188337326, -0.0011072135530412197, 0.0067911394871771336, -0.0009602155187167227, -0.04599406570196152, -0.0008837077766656876, -0.02664189785718918, -0.016546310856938362, 0.015858599916100502, -0.016243718564510345, -0.01305274199694395, -0.019530972465872765, -0.00024026879691518843, -0.026903226971626282, 0.0006464477046392858, 0.004377276170998812, -0.03991470858454704, 0.010226252488791943, -0.007681724149733782, 0.010638878680765629, 0.03135959059000015, -0.013822977431118488, 0.006736122537404299, -0.02345092222094536, -0.014717000536620617, 0.002568598138168454, 0.003192695090547204, 0.004033421166241169, 0.01733030006289482, 0.0022161465603858232, 0.007709232624620199, 0.03488066792488098, 0.009923660196363926, 0.02290075272321701, 0.010583861730992794, -0.031277064234018326, -0.0013272808864712715, 0.029874136671423912, 0.0008794095483608544, 0.003024206031113863, 0.0008226734935306013, -0.009387245401740074, -0.007145310286432505, -0.02893885038793087, 0.009490402415394783, 0.0024981077294796705, 0.01561102457344532, 0.009352860040962696, 0.010267514735460281, -0.016601327806711197, -0.007049030624330044, 0.01258509885519743, -0.02357470989227295, 0.013224669732153416, -0.009222195483744144, 0.008121859282255173, 0.012055561877787113, 0.00732411490753293, 0.0006180796190164983, 0.0009584962390363216, -0.00990302860736847, 0.016793886199593544, 0.03749396651983261, 0.013960519805550575, 0.006399144418537617, 0.0005540366400964558, 0.013541015796363354, 0.002800700254738331, 0.0009043390746228397, 0.028773799538612366, 0.0027422448620200157, -0.0017742926720529795, 0.025197705253958702, 0.004889620468020439, 0.029544034972786903, 0.0028660327661782503, -0.020411241799592972, 0.002094077877700329, 0.026903226971626282, 0.017495350912213326, 0.020369980484247208, 0.03204730153083801, 0.02484009601175785, 0.03961211442947388, -0.012110578827559948, 0.02014991268515587, -0.003954334184527397, 9.676298941485584e-05, 0.023946072906255722, 0.023189591243863106, -0.0222130436450243, 0.03215733543038368, 0.0031634673941880465, 0.0066020190715789795, -0.005793959368020296, -0.022625669836997986, 0.01572105847299099, 0.009813626296818256, -0.006636404432356358, -0.009579804725944996, -0.007255343720316887, 0.022391848266124725, -0.005429472774267197, 0.007867406122386456, 0.003823669394478202, 0.0003954334242735058, 0.010934594087302685, 0.016835149377584457, -0.013822977431118488, 0.011491639539599419, 0.0010900208726525307, 0.01115466095507145, -0.00854136236011982, -0.03636611998081207, -0.025018900632858276, 0.0015146819641813636, -0.013341580517590046, 0.0146894920617342, -0.010707649402320385, 0.004655798897147179, -0.015583516098558903, -0.006533247884362936, 0.006474792491644621, 0.007379131857305765, 0.018650703132152557, -0.0015361729310825467, 0.003412762423977256, -0.02540401928126812, -0.008128736168146133, 0.006763631012290716, 0.01583109237253666, 0.005281615070998669, -0.01756412163376808, -0.009600436314940453, -0.00963482167571783, 0.02473006211221218, 0.002804138697683811, -0.010810806415975094, -0.017632892355322838, -0.016436276957392693, -0.005226598586887121, 0.003497007070109248, 0.01847189851105213, 0.040382348001003265, -0.027384623885154724, -0.014868296682834625, 0.004807095043361187, 0.006959628313779831, 0.006701737176626921, -0.00035567517625167966, -0.03493568301200867, 0.030121712014079094, -0.009765486232936382, -0.022873245179653168, -0.026916982606053352, 0.0012971935793757439, -0.016119929030537605, -0.006983698345720768, -0.015597269870340824, -0.01935216784477234, 0.004511379636824131, -0.018980804830789566, 0.007833020761609077, 0.007200327236205339, -0.0036276718601584435, 0.043023157864809036, 0.008871463127434254, 0.009827380068600178, -0.019641006365418434, 0.006519493646919727, 0.03551336005330086, 0.06728557497262955, 0.020548785105347633, 0.006364759057760239, 0.012798288837075233, -0.010955225676298141, -0.022735703736543655, -0.028526224195957184, -0.014799525961279869, 0.021140215918421745, 0.016931427642703056, -0.03155215084552765, 0.0044426084496080875, 0.009332229383289814, -0.0038167922757565975, -0.0037067586090415716, 0.014799525961279869, -0.005553260911256075, -0.02060380019247532, -0.014606967568397522, 0.013458491303026676, 0.02108519896864891, -0.01316277589648962, 0.032514944672584534, 0.017715416848659515, 0.024358699098229408, 0.0023880740627646446, 0.020920148119330406, 0.002393231960013509, 0.01298397034406662, -0.03339521214365959, -0.015803582966327667, 0.02118147723376751, 0.013259055092930794, 0.022295568138360977, 0.002955435076728463, 0.020933901891112328, 7.83882278483361e-05, -0.02439996227622032, -0.02153908647596836, 0.003919948823750019, 0.013795468956232071, 0.013877994380891323, 0.003399008186534047, -0.012791411951184273, 0.003954334184527397, -0.010460074059665203, -0.01618870161473751, 0.018705720081925392, -0.015445973724126816, -0.008369434624910355, 0.021621612831950188, 0.01293583121150732, -0.015294677577912807, 0.020906394347548485, 0.014043044298887253, -0.0061515686102211475, -0.00016429829702246934, -0.01099648792296648, -0.036641206592321396, -0.04043736681342125, -0.029929153621196747, -0.01356164738535881, -0.008183753117918968, -0.009930537082254887, -0.004614536184817553, -0.03408292308449745, 0.0004008061659988016, 0.009339106269180775, -0.026160500943660736, 0.004831165075302124, 0.012048684991896152, -0.04690184444189072, -0.026724422350525856, -0.0050581092946231365, 0.04236295446753502, 0.01430437434464693, -0.007509796880185604, 0.021346528083086014, -0.009703592397272587, 0.0144144082441926, 0.009999307803809643, -0.01877449080348015, 0.004315382335335016, -0.024303682148456573, -0.0066192117519676685, -0.013135267421603203, -0.022034239023923874, -0.005584207829087973, 0.002288356190547347, 0.002601264277473092, -0.010178112424910069, -0.010281269438564777, 0.005831783637404442, -0.010350040160119534, -0.0014751385897397995, 0.01430437434464693, 0.03804413601756096, -0.00785365141928196, 0.01492331363260746, -0.03779656067490578, 0.008266277611255646, 0.0025771944783627987, -0.0195859894156456, -0.017481597140431404, 0.018540669232606888, -0.005903993267565966, -0.0163124892860651, -0.0031084506772458553, -0.013430982828140259, -0.0163124892860651, 0.013472245074808598, 0.013568524271249771, -0.013802345842123032, -0.004036859609186649, 0.02291450835764408, -0.01959974318742752, 0.011374728754162788, 0.018636949360370636, 0.024468732997775078, -0.004012789577245712, -0.01629873365163803, -0.011828617192804813, 0.03796160966157913, 0.01499208528548479, -0.009765486232936382, 0.01195928268134594, 0.02266693115234375, -0.021043935790657997, -0.03031427040696144, -0.0009662329684942961, -0.012777657248079777, 0.015322186052799225, -0.027590937912464142, -0.005157827399671078, -0.008568870835006237, -0.010432565584778786, -0.0119661595672369, -0.01195928268134594, -0.030121712014079094, 0.0012017737608402967, -0.007262221071869135, 0.009476647712290287, 0.011649812571704388, -0.009469770826399326, -0.0033302372321486473, -0.027178311720490456, -0.028883833438158035, 0.0051887743175029755, 0.010549476370215416, 0.026944490149617195, -0.021332774311304092, -0.007372254505753517, -0.015583516098558903, -0.009229072369635105, -0.005405403207987547, -0.009951168671250343, 0.0002912023337557912, 0.012681378051638603, 0.05229349061846733, -0.0013960519572719932, 0.00900900550186634, 0.016326243057847023, 0.008747675456106663, 0.0065848263911902905, -0.010721404105424881, -0.011787354946136475, -0.02402859926223755, -0.01924213394522667, 0.012873937375843525, 0.006371635943651199, -0.005329755134880543, -0.0016264348523691297, -0.012096824124455452, 0.006901172921061516, -0.0005282475030981004, 0.023726005107164383, -0.014029290527105331, 0.0024087054189294577, -0.043930936604738235, -0.04758955538272858, -0.00016462065104860812, 0.03419295698404312, -0.0019616936333477497, 0.013176529668271542, -0.022625669836997986, -0.003999035339802504, -0.000399301789002493, -0.008816446177661419, 0.029076391831040382, 0.014455670490860939, 0.03991470858454704, 0.0008338487823493779, -0.02379477769136429, 0.005725188180804253, -0.016436276957392693, -0.014579459093511105, -0.003139397595077753, -0.044701170176267624, -0.008018702268600464, 0.004298189654946327, 0.019420938566327095, 0.012626361101865768, -0.014400654472410679, 0.00427411962300539, 0.006185954436659813, 0.004796779248863459, -0.010542599484324455, -0.01995735429227352, 0.008692658506333828, -0.014029290527105331, 0.0050168465822935104, -0.014634475111961365, -0.027192065492272377, 0.011195924133062363, -0.01789422333240509, -0.013149021193385124, 0.018073027953505516, 0.005790520925074816, -0.02871878258883953, 0.0020493767224252224, 0.03510073572397232, 0.004824287723749876, 0.04104255139827728, 0.007640461437404156, 0.020796360448002815, 0.022130517289042473, 0.005780205130577087, -0.025087673217058182, -0.019572235643863678, 0.0009636540780775249, -0.008768306113779545, 0.007214081007987261, 0.0330100953578949, -0.0067429994232952595, -0.010343163274228573, 0.01270200964063406, -0.008238769136369228, 0.009297843091189861, -0.04269305616617203, -0.0039818426594138145, 0.02131902053952217, -0.006739560980349779, -0.04852484166622162, -0.01618870161473751, -0.009944290854036808, 0.01900831237435341, 0.00878206081688404, 0.01618870161473751, 0.005924624390900135, 0.003806476714089513, 0.01127157174050808, 0.03746645897626877, -0.015927370637655258, 0.019407184794545174, -0.010439442470669746, 0.012736395001411438, -0.024097369983792305, 0.008390066213905811, -0.01026063784956932, -0.02940649352967739, 0.015638532117009163, 0.032542452216148376, -0.0010814244160428643, -0.00830754078924656, 0.03006669506430626, 0.00940100010484457, -0.02074134349822998, -0.005941817071288824, -0.020232437178492546, 0.026916982606053352, -0.02017742022871971, -0.008445082232356071, -0.01665634475648403, 0.0016565222758799791, 0.01744033396244049, -0.016147438436746597, -0.01122343260794878, -0.0036517418920993805, -0.00023296187282539904, 0.011973036453127861, 0.012344400398433208, 0.005742381326854229, -0.005422595888376236, -0.007599199190735817, 0.01550099067389965, -0.007145310286432505, -0.003436832223087549, -0.013066495768725872, -0.001989202108234167, -0.03919948637485504, -0.01526716910302639, 0.00927721243351698, 0.0045732734724879265, 0.004903374705463648, -0.00341792032122612, -0.01618870161473751, 0.016381260007619858, 0.03383534774184227, -0.01406367588788271, -0.01123030949383974, 0.02644933946430683, -0.006216901354491711, -0.048717398196458817, 0.02609173022210598, -0.00045775718172080815, 0.005570453591644764, 0.015624778345227242, -0.000557475199457258, -0.019173363223671913, -0.03647615388035774, 0.008630764670670033, -0.004126261919736862, 0.02039748802781105, -0.008960865437984467, -0.008644518442451954, 0.005618593189865351, 0.01367855817079544, 0.0018430636264383793, -0.009504156187176704, 0.008149366825819016, -0.009710469283163548, 0.014428162015974522, 0.010212497785687447, -0.01475826371461153, 0.008830200880765915, -0.0018069588113576174, 0.02382228523492813, -0.022034239023923874, -0.030561845749616623, -0.03177221491932869, -0.026394322514533997, -0.013417228125035763, -0.00646447716280818, 0.0064472840167582035, -0.005357263144105673, -0.03331268951296806, -0.013252178207039833, 0.026160500943660736, -0.0026786315720528364, 0.005965887103229761, 0.005852414760738611, -0.016945181414484978, -0.0007500340580008924, 0.01606491208076477, -0.0012361592380329967, -0.04159272089600563, -0.005687364377081394, -0.011347220279276371, -0.037301406264305115, -0.01764664612710476, -0.012213734909892082, 0.05254106968641281, 0.017000198364257812, -0.01002681627869606, -0.013375965878367424, -0.023492183536291122, -0.058152783662080765, -0.004820849280804396, -0.004047175403684378, 0.01629873365163803, 0.022034239023923874, 0.03779656067490578, -0.0006997452583163977, 0.026036713272333145, -0.011993668042123318, 0.013183406554162502, -0.028993867337703705, 3.914038825314492e-05, -0.02517019771039486, -0.032404910773038864, -0.004611097741872072, -0.0223093219101429, -0.034578073769807816, -0.0006528949597850442, -0.007386008743196726, -0.004305066540837288, -0.0001244325831066817, 0.003436832223087549, -0.01573481224477291, -0.004109069239348173, -0.009215318597853184, 0.00916717853397131, 0.03710884973406792, 0.025005146861076355, -0.006677667144685984, -0.023726005107164383, 0.0009266896522603929, 0.006051850970834494, -0.011704829521477222, -0.018485654145479202, 0.011278449557721615, 0.011787354946136475, -0.0006103428895585239, 0.025706611573696136, -0.006020903587341309, -0.02404235303401947, 0.00011991948849754408, -0.005388210527598858, 0.009834257885813713, -0.0024774763733148575, 0.018169306218624115, 0.02643558382987976, -0.009387245401740074, 0.0019616936333477497, -0.01752285845577717, 0.005027162376791239, -0.007722986862063408, -0.0008145069004967809, 0.014194341376423836, -0.04582901671528816, -0.005553260911256075, -0.017137741670012474, 0.005577330477535725, 0.007798634935170412, -0.007537304889410734, 0.01383673120290041, -0.008727043867111206, -0.00939412321895361, -0.01087957713752985, 0.016931427642703056, -0.018416881561279297, -0.02778349630534649, -0.003086100099608302, -0.01026063784956932, -0.00830754078924656, -0.004016228020191193, -0.0016126807313412428, -0.012660746462643147, 0.013809222728013992, -0.022047992795705795, 0.0069321198388934135, -0.043683357536792755, 0.004246611148118973, 0.026119237765669823, -0.01402241364121437, 0.0010693895164877176, 0.21148467063903809, 3.3364696719218045e-05, 0.01333470270037651, 0.024647537618875504, 0.014551950618624687, -0.01235815417021513, 0.0006047552451491356, 0.01584484614431858, -0.005291930865496397, -0.002807577373459935, 0.01607866771519184, -0.006024342495948076, -0.013348457403481007, 0.003433393780142069, 0.015528499148786068, -0.02105768956243992, -0.03493568301200867, -0.026944490149617195, -0.005006531253457069, 0.014538195915520191, 0.014008658938109875, -0.018279340118169785, -0.01259197574108839, -0.011952404864132404, 0.0346330925822258, 0.027150804176926613, -0.012220612727105618, 0.03884187713265419, 0.025266477838158607, 0.020094895735383034, 0.010047447867691517, -0.014235603623092175, 0.027068277820944786, -0.01321091502904892, -0.00695275142788887, -0.02413863129913807, 0.006185954436659813, -0.017275283113121986, -0.002205830765888095, 0.02655937150120735, 0.01383673120290041, -0.003381815506145358, 0.00832129456102848, -0.029461510479450226, 0.010150603950023651, -0.007420394103974104, -0.013142144307494164, 0.0018465021857991815, 0.010184990242123604, 0.024551257491111755, 0.01013685017824173, 0.0011794231832027435, 0.007984316907823086, 0.0043016280978918076, -0.012268751859664917, 0.008169998414814472, -0.0190358217805624, 0.008644518442451954, -0.00683584064245224, 0.0011304238578304648, 0.004583589266985655, 0.002853997750207782, -0.003861493431031704, -0.007055907975882292, -0.022405602037906647, 0.03177221491932869, 0.008493222296237946, 0.042087871581315994, 0.009689838625490665, 0.0072347125969827175, -0.004924005828797817, 0.0015860318671911955, -0.03108450584113598, -0.0030362410470843315, -0.0004788183141499758, -0.011587918736040592, 0.026738177984952927, 0.018279340118169785, 0.04453612118959427, 0.016216209158301353, 0.004339451901614666, 0.0037652140017598867, -0.03793410211801529, -0.0013694032095372677, 0.01293583121150732, -0.014703246764838696, 0.03779656067490578, -0.03006669506430626, 0.003338833572342992, -0.01834811083972454, -0.008362557739019394, 0.026903226971626282, 0.003321640891954303, -0.01628497987985611, 0.006798016373068094, 0.010693895630538464, 0.019187116995453835, 0.01799050159752369, -0.013541015796363354, -0.037659015506505966, -0.004353206139057875, 0.05105561390519142, 0.031194539740681648, 0.027508413419127464, -0.006828963290899992, 0.010838314890861511, -0.0009971800027415156, 0.023643480613827705, 0.014345637522637844, -0.025940433144569397, -0.001261948375031352, -0.048002179712057114, 0.016835149377584457, -0.011347220279276371, 0.0026872281450778246, 0.021951712667942047, 0.015322186052799225, 0.004349767696112394, 0.018073027953505516, 0.007427271455526352, 0.012406294234097004, -0.0012224051170051098, 0.016381260007619858, 0.000817515654489398, -0.011670444160699844, -0.02561033144593239, -0.019090838730335236, 0.025472790002822876, -0.027824759483337402, -0.023065803572535515, 0.005446665920317173, -0.0223093219101429, 0.01464822981506586, -0.001930746715515852, 0.0015645410167053342, -0.026146745309233665, -0.020755097270011902, -0.003754898440092802, 0.0013436140725389123, 0.0015267168637365103, 0.0029416808392852545, 0.006966505665332079, 0.00281789293512702, -0.0006155007285997272, -0.0005772468284703791, 0.013204038143157959, -0.005202528554946184, 0.0163124892860651, -0.02825113944709301, -0.02507391758263111, 0.01430437434464693, 0.004951514303684235, -0.01064575556665659, 0.004050613846629858, 0.025211460888385773, -0.030259253457188606, -0.042665548622608185, -0.031249556690454483, 0.008018702268600464, 0.017467841506004333, -0.04841480776667595, 0.012578221969306469, 0.04673679172992706, 0.012186226435005665, -0.012378785759210587, -0.0015542253386229277, -0.17528361082077026, 0.008974619209766388, 0.017467841506004333, 0.0025153004098683596, 0.010466950945556164, 0.020823867991566658, 0.015115872956812382, -0.009930537082254887, -0.03212982416152954, -0.0005742381326854229, 0.0067326840944588184, -0.011587918736040592, -0.033642787486314774, -0.018746983259916306, 0.016202455386519432, -0.016670098528265953, 0.007165941409766674, 0.02595418691635132, 0.06161884590983391, 0.004906813148409128, 0.011051504872739315, -0.03111201524734497, -0.006258164066821337, -0.01639501377940178, 0.006344127468764782, 0.021951712667942047, 0.005481051281094551, 0.028773799538612366, -0.0018241516081616282, -0.019654760137200356, 0.014565704390406609, -0.014469425193965435, 0.019338414072990417, -0.0053538247011601925, 0.004373837728053331, -0.014978330582380295, -0.0002013701741816476, -0.02951652742922306, -0.0023347765672951937, 0.015363448299467564, 0.03361527994275093, 0.03064437210559845, 0.0117392148822546, 0.007874283008277416, 0.006182515528053045, 0.020796360448002815, 0.04558144137263298, -0.027645954862236977, 0.0031359591521322727, -0.00020685036724898964, 0.002042499603703618, -0.027150804176926613, -0.002415582537651062, 0.00489993579685688, 0.014799525961279869, 0.005291930865496397, 0.015294677577912807, 0.023753514513373375, -0.004122823476791382, -0.004033421166241169, 0.01224812027066946, -0.006344127468764782, -0.006007149815559387, -0.01775668002665043, -0.019627252593636513, -0.02653186395764351, 0.005553260911256075, 0.01744033396244049, 0.010824560187757015, 0.014111815951764584, 0.005020285490900278, 0.0017983624711632729, 0.014125569723546505, 0.014276865869760513, 0.01900831237435341, -0.0024344944395124912, -0.012461311183869839, -0.009999307803809643, 0.022254304960370064, -0.007193449884653091, -0.007722986862063408, 0.025472790002822876, 0.012853305786848068, -0.004518256988376379, -0.01869196631014347, -0.008685781620442867, -0.010982734151184559, 0.00022243130661081523, 0.00549480551853776, -0.007296606432646513, 0.027425887063145638, -0.011305958032608032, -0.024289928376674652, 0.017454087734222412, 0.0015929089859127998, 0.008231892250478268, 0.015322186052799225, 0.0009696715278550982, -0.002154252491891384, -0.009737977758049965, 0.007186572998762131, 0.01687641069293022, -0.05545695871114731, 0.024289928376674652, 0.04291312396526337, 0.024454979225993156, 0.015473482199013233, 0.001318684546276927, 0.02607797458767891, -0.023217100650072098, -0.03394538164138794, 0.01684890314936638, 0.03620107099413872, -0.0005639224546030164, -0.02086513116955757, 0.04316069930791855, -0.004023105371743441, -0.026738177984952927, 0.01332782581448555, -0.022034239023923874, 0.0426105298101902, -0.03837423399090767, -0.03691628947854042, 0.004439170006662607, 0.01383673120290041, -0.023959826678037643, -0.11586543172597885, -0.014263112097978592, 0.023093312978744507, 0.00967608392238617, -0.0072278352454304695, 0.020411241799592972, 0.009380368515849113, 0.024881359189748764, -0.009662330150604248, 0.021043935790657997, -0.010212497785687447, -0.007502919528633356, 0.00027186048100702465, -0.02108519896864891, -0.0012481942540034652, -0.0032580276019871235, 0.02439996227622032, -0.02573411911725998, -0.015198398381471634, 0.03944706544280052, 0.009538542479276657, -0.0031118891201913357, 0.0038924403488636017, -0.003992158453911543, 0.002896979684010148, -0.0038752476684749126, -0.025995450094342232, 0.009868643246591091, 0.00928408931940794, 0.018306849524378777, 0.02951652742922306, -0.016326243057847023, 0.004305066540837288, -0.01766040176153183, 0.002802419476211071, -0.012117455713450909, -0.029131408780813217, 0.002874629106372595, 0.0121931042522192, -0.023299625143408775, 0.0020132719073444605, -0.0102468840777874, -0.004545764997601509, -0.04148268699645996, -0.0023811969440430403, 0.009022759273648262, -0.02847120724618435, 0.024867605417966843, 0.011237186379730701, -0.009270334616303444, -0.04068494215607643, -0.025486543774604797, -0.04104255139827728, -0.027274591848254204, 0.01719275861978531, 0.021360281854867935, 0.013032110407948494, 0.011835494078695774, -0.023615973070263863, 0.014510687440633774, -0.011663567274808884, 0.00013410350948106498, 0.00155938311945647, 0.016945181414484978, 0.010205620899796486, 0.011539778672158718, -0.012688254937529564, 0.012543836608529091, -0.006963066756725311, -0.005168143194168806, -0.024908866733312607, -1.930827238538768e-06, -0.02299703285098076, 0.016229962930083275, -0.031029488891363144, 0.001725293230265379, -0.02346467599272728, -0.012990848161280155, 0.009201563894748688, 0.018141798675060272, -0.012461311183869839, -0.01242692582309246, 0.0020700080785900354, -0.020548785105347633, 0.011161538772284985, 0.008637641556560993, 0.024551257491111755, -0.014854542911052704, 0.019283397123217583, -0.0321023166179657, 0.01891203410923481, 0.0050581092946231365, -0.003954334184527397, 0.010047447867691517, -0.011581041850149632, 0.002474037930369377, -0.0042947507463395596, -0.02222679741680622, 0.01309400424361229, 0.018059272319078445, -0.008266277611255646, 0.0026287727523595095, -0.0453338623046875, 0.0011097925016656518, 0.009992430917918682, -0.0017338896868750453, 0.01025376096367836, -0.020562538877129555, -0.012014299631118774, -0.00017289466632064432, 0.006887418683618307, 0.008837077766656876, -0.009490402415394783, 0.023877302184700966, -0.007310360670089722, -0.001614399952813983, -0.03152463957667351, -0.003992158453911543, 0.01664258912205696, -0.0036139176227152348, 0.00997867714613676, 0.010934594087302685, -0.033340197056531906, -0.004514818079769611, 0.008788937702775002, 0.029791610315442085, -0.02005363255739212, 0.021607857197523117, -0.017687909305095673, 0.017110232263803482, -0.007289729546755552, -0.03521076962351799, 0.005642663221806288, 0.004535449668765068, -0.01616119220852852, 0.012777657248079777, -0.009545419365167618, -0.04104255139827728, 0.017577875405550003, 0.006179077085107565, 0.018416881561279297, 0.010748912580311298, -0.01730279065668583, -0.013169652782380581, 0.016477538272738457, -0.01157416496425867, -0.014978330582380295, -0.002972627757117152, -0.011649812571704388, -0.02257065288722515, -0.003634548978880048, 0.011532901786267757, 0.07086166739463806, 0.001392613397911191, -0.018059272319078445, -0.022611916065216064, 0.005460419692099094, 0.0016651186160743237, 0.01935216784477234, 0.02858124114573002, 0.0016255752416327596, 0.004256926942616701, 0.02518395148217678, -0.013919256627559662, 0.011216554790735245, 0.00207688519731164, 0.005955571308732033, -0.02653186395764351, -0.02973659336566925, -0.009242827072739601, 0.007028399500995874, -0.011305958032608032, 0.02371225133538246, -0.030479321256279945, 0.032652486115694046, 0.011766723357141018, 0.013988028280436993, 0.015047101303935051, -0.024289928376674652, -0.01778418943285942, -0.010687018744647503, 0.03680625557899475, 0.009641698561608791, -0.021374037489295006, -0.014221848919987679, 0.01756412163376808, 0.012447556480765343, 0.019063329324126244, -0.007674847263842821, 0.03974965587258339, 0.0030895385425537825, -0.000575097743421793, -0.010687018744647503, 0.012371908873319626, -0.010618247091770172, -0.000576387217734009, 0.0033938505221158266, 0.015445973724126816, -0.018939541652798653, 0.01913210190832615, 0.023409659042954445, 0.043133191764354706, -0.01583109237253666, 0.0077023557387292385, 0.005652979016304016, -0.03427548334002495, -0.016670098528265953, 0.0026064221747219563, -0.0027147363871335983, -0.011264694854617119, 0.010845191776752472, 0.025211460888385773, 0.0008888655574992299, -0.019090838730335236, 0.019324660301208496, 0.018870770931243896, -0.020218683406710625, -0.013169652782380581, 0.005732065532356501, -0.027150804176926613, -0.03774154186248779, 0.00044486261322163045, 0.006395705975592136, 0.014221848919987679, 0.022061746567487717, -0.014703246764838696, 0.022515635937452316, -0.012138087302446365, 0.012798288837075233, -0.004225980024784803, 0.014744509011507034, -0.012715763412415981, -0.009724223986268044, 0.009373491629958153, 0.015569761395454407, -0.017742926254868507, -0.01149851642549038, -0.001430437434464693, -0.0181280430406332, 0.004208787344396114, 0.003662057453766465, 0.07476786524057388, 0.023547200486063957, -0.00940100010484457, 0.014620721340179443, -0.03380784019827843, -0.0033164829947054386, 0.02929645963013172, -0.012282506562769413, 0.00575269665569067, -0.014455670490860939, 0.018843263387680054, -0.005312561988830566, -0.01030190009623766, -0.007496042642742395, -0.015294677577912807, -0.0010289865313097835, -0.0024207402020692825, 0.020548785105347633, 0.0026132992934435606, 0.017013953998684883, 0.018829507753252983, 0.00452857231721282, 0.004834603518247604, -0.01573481224477291, -0.04120760038495064, -0.016119929030537605, 0.026353059336543083, 0.02243310958147049, -0.008506976999342442, -0.024193648248910904, 0.023175837472081184, 0.00951103400439024, -0.04043736681342125, -0.006247848272323608, -0.03636611998081207, 0.018155552446842194, -0.01475826371461153, -0.030671879649162292, 0.0064713540486991405, 0.005959009751677513, 0.013850485906004906, 0.004456362687051296, -0.01573481224477291, -0.014249357394874096, -0.013596032746136189, 0.004937760066241026, -0.003251150483265519, -0.02450999617576599, 5.6252556532854214e-05], "55c04431-65ee-4d04-ad9d-e26261ad8eed": [-0.007083510514348745, 0.0029169393237680197, 0.01295813824981451, -0.04343828558921814, -0.018649395555257797, 0.024394985288381577, -0.020768336951732635, -0.03852125629782677, -0.019640952348709106, -0.037244461476802826, 0.022832944989204407, 0.026568258181214333, 0.023335514590144157, -0.009711812250316143, -0.016856446862220764, -0.004047720227390528, 0.01859506405889988, -0.010289087891578674, 0.022194547578692436, -0.003232743125408888, -0.025603868067264557, -0.0091956602409482, -0.005803317297250032, -0.01583772525191307, -0.02178705856204033, 0.015307988971471786, 0.015851307660341263, -0.004207320045679808, -0.021556148305535316, 0.025658199563622475, 0.00010357002611272037, -0.017236769199371338, -0.026283016428351402, 0.007178591098636389, -0.020985664799809456, 0.026038523763418198, 0.011314600706100464, 0.004893259145319462, 0.016014302149415016, -0.008604801259934902, 0.021026412025094032, 0.008638759143650532, -0.006132703740149736, -0.01345391571521759, -0.017223184928297997, 0.006322864908725023, 0.013189048506319523, -0.01597355306148529, -0.0057252151891589165, 0.0011978467227891088, 0.0009542025509290397, 0.01760350912809372, -0.034473538398742676, 0.015457401983439922, -0.016150131821632385, -0.015457401983439922, 0.016639119014143944, 0.0032072749454528093, -0.00674393679946661, -0.0015603417996317148, -0.0006184488884173334, 0.010458874516189098, -0.004180154297500849, -0.0076811606995761395, -0.02328118309378624, -0.02590269409120083, -0.009623522870242596, -0.015566064976155758, -0.023471344262361526, -0.012285782024264336, 0.020496677607297897, 0.024327071383595467, 0.009358655661344528, 0.028225379064679146, -0.023172520101070404, -0.024870388209819794, -0.013141508214175701, -0.012659313157200813, 0.003431393764913082, 0.00113162980414927, 0.0045978301204741, -0.027654893696308136, -0.012625356204807758, 0.0056505086831748486, 0.02321326918900013, 0.005850857589393854, 0.02966517210006714, 0.0048593017272651196, -0.02457156404852867, 0.002641884610056877, 0.019070466980338097, 0.021420318633317947, 0.03640231862664223, 0.007416293025016785, 0.011199145577847958, 0.024394985288381577, 0.004984944127500057, 0.004811761435121298, -0.010268713347613811, -0.014085523784160614, -0.030860472470521927, -0.001473750569857657, -0.015294406563043594, -0.009154911153018475, -0.04563872516155243, -0.0008939281688071787, 0.02059175819158554, -0.01185112725943327, -0.002691122703254223, 0.017087357118725777, -0.014737505465745926, 0.014914083294570446, 0.00837389100342989, -0.019505122676491737, -0.0028167651034891605, -0.017304683104157448, 0.023335514590144157, -0.03507118672132492, -0.03607632592320442, -0.006166661158204079, -0.0031987857073545456, -0.025603868067264557, 0.0275462307035923, -0.027953719720244408, 0.024816056713461876, 0.009942722506821156, 0.0035689212381839752, -0.01114481408149004, 0.005076629109680653, -0.029230516403913498, 0.032137271016836166, 0.014397931285202503, 0.001008534338325262, 0.01830982230603695, -0.014968415722250938, -0.0019101029029116035, -0.022045133635401726, -0.002888075541704893, -0.02435423620045185, -0.0349353589117527, 0.04186266288161278, 0.02064608968794346, 0.012890223413705826, -0.02222171239554882, -0.011796795763075352, 0.01704660803079605, 0.013827446848154068, 0.007592871319502592, 0.010390959680080414, 0.017861584201455116, 0.027274571359157562, -0.012632147409021854, -0.007993568666279316, -0.0010866363300010562, 0.02689424902200699, 0.010214381851255894, 0.004516332410275936, 0.024394985288381577, -0.026228684931993484, -0.0074366675689816475, -0.013182257302105427, 0.007171799894422293, 0.0021291279699653387, -0.004353336989879608, 0.003434789599850774, 0.04102052003145218, 0.014479429461061954, -0.0015408163890242577, -0.010662619024515152, -0.021637646481394768, -0.0043125879019498825, 0.021950053051114082, -0.040151212364435196, -0.0007784730405546725, -0.0004405970685184002, -0.001273401896469295, 0.025440873578190804, 0.017481261864304543, -0.0014567718608304858, -0.023172520101070404, 0.025169214233756065, -0.0031342667061835527, -0.0026537696830928326, 0.035315681248903275, -0.01810607686638832, -0.010567538440227509, 0.014221352525055408, 0.014778253622353077, -0.008509720675647259, -0.004533310886472464, 0.011368932202458382, 0.01288343220949173, -0.0033465002197772264, -0.009317906573414803, -0.6376382112503052, 0.0007198965759016573, 0.010567538440227509, -0.03178411349654198, 0.01867656223475933, 0.018893888220191002, 0.008292393758893013, 0.0033210322726517916, -0.010567538440227509, 0.02358000911772251, 0.0023311744444072247, 0.021691977977752686, 0.008027525618672371, -0.0030680496711283922, -0.004869488999247551, -0.020836250856518745, -0.0026588633190840483, -0.010003846138715744, 0.005052858963608742, 0.013256963342428207, -0.03501685708761215, 0.02271069958806038, 0.007205757312476635, -0.005524866748601198, 0.0002744181256275624, -0.008149772882461548, 0.01704660803079605, -0.027926553040742874, 0.0036436275113373995, 0.030561646446585655, -0.03189277648925781, -0.01590563915669918, 0.013155090622603893, 0.015172159299254417, 0.039010245352983475, -0.0026724461931735277, -0.015674728900194168, 0.013026053085923195, 0.02136598713696003, 0.04495957866311073, -0.01788875088095665, -0.007165008224546909, 0.021379569545388222, 0.0008400208316743374, -0.0006269382429309189, -0.0005552032380364835, 0.009603148326277733, 0.009922347962856293, -0.014737505465745926, -0.02123015746474266, 0.009263575077056885, -0.0017437117639929056, 0.0008752516005188227, -0.012598189525306225, 0.006455298978835344, 0.016924360767006874, 0.017277518287301064, -0.01867656223475933, 0.010472457855939865, -0.0024347444996237755, 0.01401760894805193, -0.0012589700054377317, -0.021596897393465042, -0.03713579475879669, -0.048599809408187866, 0.007341586519032717, -0.0035010064020752907, -0.017196020111441612, 0.017236769199371338, -0.0012784955324605107, 0.02549520507454872, -0.00404432462528348, 3.4885906643467024e-06, -0.0070631359703838825, -0.005715027917176485, 0.016707032918930054, 0.03249042481184006, 0.0058882106095552444, -0.00918886810541153, 0.01298530399799347, -0.002984854159876704, -0.014099106192588806, -0.04159100353717804, 0.00432956637814641, 0.037787776440382004, 0.026432428508996964, -0.01917913183569908, 0.00505625456571579, 0.016000719740986824, -0.009202451445162296, 0.007973194122314453, 0.027423983439803123, -9.189717093249783e-05, -0.035533007234334946, -0.006258346140384674, 0.020333683118224144, -0.010227964259684086, 0.002687727101147175, 0.007586079649627209, -0.013386000879108906, -0.0159599706530571, -0.050311263650655746, 0.004587642848491669, -0.01001063734292984, 0.020252184942364693, 0.025454455986618996, 0.006920515093952417, -0.018839556723833084, 0.021379569545388222, -0.010954652912914753, -0.017630673944950104, -0.016204463317990303, -0.008944375440478325, -0.01472392212599516, 0.020551009103655815, -0.023294765502214432, -0.002118940930813551, -0.022900860756635666, 0.018825974315404892, -0.025033384561538696, 0.007620037067681551, -0.015049912966787815, -0.01103615015745163, 0.0018693540478125215, 0.008285601623356342, 0.021039996296167374, 0.009283948689699173, -0.005494304932653904, 0.008027525618672371, -0.0032446281984448433, -0.00916170235723257, -0.0329250805079937, 0.016299545764923096, 0.0014015911146998405, 0.004754033870995045, -0.022099466994404793, 0.023254018276929855, -0.007294046226888895, 0.010778074152767658, -0.04892580211162567, -0.007511373609304428, 0.009148119948804379, 0.016313128173351288, -0.031050633639097214, 0.019342126324772835, -0.0269621629267931, -0.04224298894405365, 0.0009032664238475263, -0.027356069535017014, -0.023946747183799744, -0.012401237152516842, -0.0069816382601857185, -0.0067303539253771305, 0.014370765537023544, -0.029583673924207687, 0.0001366784708807245, 0.0004995980416424572, -0.032273098826408386, -0.004703097976744175, -0.020632507279515266, -0.0107509084045887, -0.0018082307651638985, -0.01604146882891655, -0.011728880926966667, -0.011158396489918232, -0.01873089373111725, -0.004034137353301048, 0.010017428547143936, -0.023946747183799744, -0.025943443179130554, 0.03129512444138527, -0.0012844380689784884, 0.007328003644943237, 0.025033384561538696, -0.004006971605122089, 0.02059175819158554, -0.0293935127556324, -0.009134536609053612, 0.018825974315404892, -0.009345072321593761, -0.0021528981160372496, 0.008564052172005177, -0.0053992243483662605, -0.0068186428397893906, 0.03335973620414734, 0.008414640091359615, 0.014112689532339573, 0.03585899993777275, -0.03651098161935806, -0.0035791085101664066, 0.02123015746474266, 0.0063466355204582214, -0.011233103461563587, -0.00901229027658701, -0.013141508214175701, 0.012890223413705826, -0.024965468794107437, 0.006587732583284378, 0.0066794175654649734, 0.021039996296167374, 0.016272379085421562, 0.006417945958673954, -0.026147186756134033, -0.013236588798463345, 0.005120773799717426, -0.019274212419986725, -0.005032484419643879, -0.01731826551258564, 0.0376247838139534, 0.012292573228478432, 0.0054807220585644245, -0.01195979118347168, -0.011042941361665726, 0.000786537944804877, 0.007586079649627209, 0.042052824050188065, 0.019410042092204094, -0.0003104978532064706, 0.0018812391208484769, 0.015525316819548607, 0.008598010055720806, -0.0033210322726517916, 0.03159395232796669, -0.001556097180582583, -0.015538899227976799, 0.028415540233254433, 0.0011214426485821605, 0.031756944954395294, -0.007402710150927305, -0.008312768302857876, 0.009338281117379665, 0.01575622707605362, 0.010547163896262646, 0.013365627266466618, 0.03683697059750557, 0.02591627649962902, 0.042052824050188065, -0.01689719408750534, 0.03230026364326477, 0.004828740376979113, -0.016448957845568657, 0.02279219776391983, 0.03431054204702377, -0.0238516665995121, 0.022887278348207474, -0.009868016466498375, 0.025386542081832886, -0.00784415565431118, -0.018214741721749306, 0.017128104344010353, 0.017291100695729256, 0.000393056747270748, -0.02208588272333145, 0.0003266276034992188, 0.02697574719786644, -0.01401760894805193, 0.00702917855232954, 0.012306156568229198, 0.012910597957670689, 0.014343599788844585, -0.011681340634822845, -0.01610938273370266, 0.005772755481302738, 0.001675796927884221, 0.019695283845067024, -0.007076718844473362, -0.012251824140548706, -0.0031563390512019396, -0.0032633047085255384, -0.0011969978222623467, 0.0033651769626885653, -0.015552482567727566, 0.01640820875763893, -0.006044414360076189, 0.008428223431110382, 0.0001280830183532089, 0.003956035245209932, 0.0034263001289218664, -0.010859571397304535, 0.013256963342428207, -0.030860472470521927, -0.024041829630732536, 0.009514858946204185, 0.00795281957834959, -0.00038095941999927163, -0.027002912014722824, -0.008890043012797832, -0.003979805391281843, 0.011552302166819572, 0.006703187711536884, -0.010309462435543537, -0.0022360938601195812, -0.001719941501505673, -0.008686299435794353, -0.014044774696230888, 0.024164075031876564, 0.039010245352983475, -0.02299594134092331, 0.0024177657905966043, 0.021107910200953484, -0.0023956934455782175, 0.0054297856986522675, -0.01224503293633461, -0.033685725182294846, 0.04308513179421425, -0.039798054844141006, -0.018771642819046974, -0.021202990785241127, 0.004696306306868792, -0.01988544501364231, 0.0206596739590168, 0.006801664363592863, -0.02080908603966236, -0.009779727086424828, -0.011912250891327858, 0.0034874235279858112, 0.005341496784240007, 0.004360128194093704, 0.025372957810759544, 0.007246505934745073, 0.030208488926291466, -0.03278925269842148, 0.015416652895510197, 0.03833109512925148, 0.06883841007947922, 0.01896180398762226, 0.002609624993056059, 0.01358974538743496, -0.018988970667123795, -0.00939940381795168, -0.023308349773287773, -0.009881598874926567, 0.023539260029792786, 0.009093787521123886, -0.01203449722379446, -0.004835531581193209, 0.012469151988625526, 0.007117467932403088, 0.007273671682924032, -0.01203449722379446, -0.01716885343194008, -0.01824190653860569, -0.026568258181214333, 0.0017861584201455116, 0.017359014600515366, -0.008333141915500164, 0.011409681290388107, 0.017426930367946625, 0.010370585136115551, -0.007803407032042742, 0.0339302197098732, 0.0040952605195343494, 0.011056524701416492, -0.032110102474689484, -0.024381402879953384, 0.024734558537602425, 0.015199325978755951, 0.02279219776391983, 0.004285422153770924, 0.020618924871087074, 0.008991915732622147, -0.026228684931993484, -0.007158217020332813, -0.009066621772944927, 0.005110586527734995, 0.021026412025094032, -0.003640231676399708, -0.006295699160546064, 0.004567268304526806, -0.01195979118347168, -0.004428043030202389, 0.008720256388187408, -0.000989857828244567, -0.0028558161575347185, 0.01277476828545332, 0.005776151083409786, -0.012421611696481705, 0.007993568666279316, 0.002565480535849929, -0.006961264181882143, 0.0022513745352625847, 0.0009805194567888975, -0.04273197427392006, -0.03664680942893028, -0.007891695946455002, -0.015144993551075459, 0.00536187132820487, -0.013012469746172428, -0.013691618107259274, -0.03189277648925781, -0.01739976368844509, -0.0019067071843892336, -0.027641311287879944, -0.0008769494597800076, -0.00026486761635169387, -0.03952639549970627, -0.030697476118803024, -0.0056437174789607525, 0.04137367755174637, 0.021461067721247673, -0.0021291279699653387, 0.008020734414458275, -0.008047900162637234, 0.01946437358856201, -0.007409501355141401, -0.016313128173351288, 0.009969888255000114, -0.022765031084418297, 0.011307809501886368, -0.009182076901197433, -0.025074133649468422, 0.010119300335645676, -0.004380502738058567, 0.013046427629888058, 0.0035451510921120644, 0.0009533535921946168, -0.0020663070026785135, 0.004737055394798517, 0.010119300335645676, 0.01669345051050186, 0.030344318598508835, -0.004913633689284325, 0.02868719957768917, -0.04088469222187996, -0.004417855758219957, -0.02072758786380291, -0.00021987406944390386, -0.028795862570405006, -0.0030408839229494333, 0.007192173972725868, 0.010207589715719223, 0.0057252151891589165, -0.019151965156197548, -0.0030035306699573994, 0.0046385787427425385, 0.004159779753535986, 0.017997413873672485, 0.014886917546391487, 0.03534284606575966, -0.009114162065088749, -0.0037353122606873512, 0.03982521966099739, 0.005945938173681498, -0.013019261881709099, -0.010261922143399715, -0.01788875088095665, 0.018160410225391388, 0.004360128194093704, -0.0018795413197949529, 0.022982358932495117, 0.004981548525393009, -0.02314535342156887, -0.01001063734292984, -0.011647382751107216, -0.020469510927796364, 0.024367820471525192, -0.030778974294662476, -0.004906842019408941, -0.010309462435543537, 0.013202630914747715, -0.024164075031876564, -0.0011783213121816516, -0.028632868081331253, -0.008421431295573711, -0.002122336532920599, -0.00982726737856865, 0.01430285070091486, 0.005385641474276781, 0.009562399238348007, -0.02144748531281948, -0.010064968839287758, 0.0007856889860704541, 0.0060274358838796616, 0.016842862591147423, -0.011579467914998531, -0.016992274671792984, -0.01231973897665739, -0.0230095237493515, -0.011654174886643887, -0.033685725182294846, -0.006608107127249241, 0.006523213814944029, 0.05829804018139839, 0.018445651978254318, 0.012496317736804485, -0.007246505934745073, 0.02541370689868927, 0.025291459634900093, -0.010560747236013412, 0.012632147409021854, -0.022669950500130653, -0.020428763702511787, 0.007205757312476635, -0.00010744328756118193, -8.192218956537545e-05, -0.0053482879884541035, 0.009107370860874653, 0.000991555629298091, 0.004984944127500057, 0.019776782020926476, -0.00775586673989892, 0.0014482825063169003, -0.025142047554254532, -0.03621215373277664, -0.004220902919769287, 0.04917029291391373, -5.78867293370422e-05, -0.0018150222022086382, -0.025957025587558746, -0.01358974538743496, 0.027600562199950218, 0.010655827820301056, 0.013718783855438232, 0.001796345692127943, 0.03917323797941208, -0.0029390116687864065, -0.015796976163983345, 0.017304683104157448, 0.010737325064837933, -0.022452622652053833, 0.0013642379781231284, -0.04267764091491699, -0.01156588550657034, -0.006543587893247604, 0.02590269409120083, 0.023172520101070404, -0.028306875377893448, 0.013657660223543644, 0.02647317759692669, 0.019858278334140778, -0.033604227006435394, -0.013345252722501755, 0.014886917546391487, -0.009249991737306118, -0.006231180392205715, -0.004737055394798517, -0.021922888234257698, 0.01341316755861044, -0.00018092918617185205, 0.007178591098636389, 0.025454455986618996, 0.020483095198869705, -0.01480542030185461, -0.013623703271150589, 0.006078371778130531, -0.008441805839538574, 0.04821948707103729, -0.006360218394547701, 0.0066522518172860146, 0.013039635494351387, 0.006414549890905619, 0.0006600467022508383, -0.020605340600013733, 0.014438680373132229, -0.02250695414841175, -0.0013854613061994314, 0.03827676549553871, -0.01669345051050186, -0.01782083511352539, 0.006777894217520952, -0.009412987157702446, 0.01153192762285471, -0.019790364429354668, 0.013467499054968357, 0.020754754543304443, -0.010384168475866318, -0.025821195915341377, -0.008109023794531822, -0.014683173038065434, 0.021202990785241127, 0.010920695029199123, 0.018513565883040428, -0.010913903824985027, 0.01619088090956211, -0.004407668486237526, 0.0550924614071846, -0.017943082377314568, 0.01335204392671585, -0.010764490813016891, -0.015294406563043594, -0.012727227993309498, 0.0014890313614159822, -0.00979330949485302, -0.009222825989127159, -0.0032157644163817167, 0.0159599706530571, -0.008924000896513462, -0.012204283848404884, 0.004465396050363779, 0.02109432779252529, -0.022683532908558846, -0.006709979381412268, -0.004102052189409733, 0.02769564278423786, -0.015742644667625427, 0.0023617360275238752, 0.004917029291391373, -0.0027335695922374725, 0.022452622652053833, -0.01775292120873928, -0.025508787482976913, 0.008020734414458275, 0.013053218834102154, 0.019817529246211052, 0.033957384526729584, 0.008754214271903038, 0.01061507873237133, 0.002521335845813155, 0.011586260050535202, -0.007124259602278471, 0.00827201921492815, -0.012835891917347908, -0.003538359422236681, -0.027926553040742874, -0.024367820471525192, -0.0019525496754795313, 0.008367099799215794, 0.00958956591784954, 0.0008608197094872594, -0.005541845224797726, 0.018690144643187523, 0.039933886379003525, 0.003979805391281843, -0.010839197784662247, 0.017929499968886375, 0.0008718558819964528, -0.05145223066210747, 0.023973913863301277, 0.0011401191586628556, -0.012503108941018581, 0.039091743528842926, -0.022398291155695915, -0.015498150140047073, -0.01888030581176281, 0.009596357122063637, 0.007165008224546909, 0.016720617190003395, -0.007049553096294403, 0.019708866253495216, 0.012835891917347908, -0.0040680947713553905, 0.011830752715468407, -0.0020289537496864796, 0.008849294856190681, -3.048205871891696e-05, 0.00529056042432785, 0.016136549413204193, -0.029719503596425056, 0.021135076880455017, -0.0007822932675480843, 0.008808545768260956, -0.011083690449595451, -0.060579974204301834, -0.024653062224388123, -0.03691846877336502, -0.008068274706602097, 0.011830752715468407, 0.013182257302105427, 0.008604801259934902, -0.019138382747769356, -0.009453736245632172, 0.024014662951231003, 0.016082217916846275, 0.011301017366349697, 0.010812031105160713, -0.01761709153652191, -0.009895182214677334, 0.013902153819799423, 0.0026690505910664797, -0.02434065379202366, -0.005599572788923979, -0.021950053051114082, -0.02143390104174614, -0.002993343397974968, -0.014004025608301163, 0.04572022333741188, 0.002565480535849929, -0.02193647064268589, -0.029692336916923523, -0.009745769202709198, -0.03615782409906387, -0.022683532908558846, 0.00023600381973665208, 0.030996300280094147, 0.03431054204702377, 0.03713579475879669, 0.01064224448055029, 0.02726098895072937, -0.01674778200685978, 0.012109203264117241, -0.03259909152984619, -0.01760350912809372, -0.007959610782563686, -0.029284849762916565, -0.005935750901699066, -0.018567897379398346, -0.04642653837800026, 0.004601225722581148, -0.002180064097046852, -0.034826695919036865, 0.00597989559173584, 0.017549175769090652, -0.017087357118725777, 0.0007750773220323026, -0.01916554756462574, 0.004261652007699013, 0.01625879667699337, 0.01590563915669918, 0.0020272559486329556, -0.036456648260354996, 0.0014644121984019876, 0.01745409518480301, -0.011728880926966667, -0.015307988971471786, 0.025726115331053734, 0.023226851597428322, -0.005134356673806906, 0.018078912049531937, 0.0029407094698399305, -0.017589924857020378, -0.0023124979343265295, -0.025726115331053734, 0.014791836962103844, -0.0006833923980593681, 0.003475538454949856, 0.02761414647102356, -0.00024555434356443584, 0.014764671213924885, -0.0008612441597506404, -8.521181007381529e-05, 0.0033465002197772264, 0.007653994485735893, 0.013515039347112179, -0.027423983439803123, -0.002176668494939804, -0.010907111689448357, 0.004176758229732513, 0.012197492644190788, -0.015307988971471786, -0.0020747962407767773, 0.00795281957834959, -0.014819002710282803, -0.011912250891327858, 0.01733184978365898, -0.031077798455953598, -0.02121657505631447, -0.011497970670461655, -0.0066013154573738575, 0.0010764490580186248, 0.0076064541935920715, -0.019613785669207573, -0.022194547578692436, -0.0004588491574395448, 0.0005195480189286172, 0.007042761892080307, -0.03819526731967926, -0.004251464735716581, 0.02286011166870594, -0.022805780172348022, 0.006628481671214104, 0.19200864434242249, -0.009562399238348007, 0.02677200175821781, 0.027356069535017014, 0.015796976163983345, -1.5479792637052014e-05, -0.0046895151026546955, 0.012503108941018581, -0.013841030187904835, 0.003979805391281843, 0.009514858946204185, 0.001154551049694419, -0.016014302149415016, 0.0011044639395549893, 0.006404362618923187, -0.020034857094287872, -0.036375150084495544, -0.01873089373111725, -0.019559454172849655, -0.007531748153269291, 0.0060546016320586205, -0.014493011869490147, -0.024897554889321327, -0.012604981660842896, 0.03265342116355896, 0.008530095219612122, 0.004156384151428938, 0.017589924857020378, 0.018119661137461662, 0.018119661137461662, -0.01182396151125431, -0.009569191373884678, 0.006479069124907255, 0.004869488999247551, -0.013223005458712578, -0.007002012804150581, 0.0050155059434473515, -0.020048439502716064, 0.018622230738401413, 0.008156564086675644, -0.004237881861627102, -0.01135534979403019, -0.0048525105230510235, -0.036103490740060806, 0.01498199813067913, -0.019545871764421463, -0.018187575042247772, -0.0023294766433537006, 0.006299094762653112, 0.017073772847652435, -0.01825549080967903, 0.0058916062116622925, 0.011267060413956642, 0.014506595209240913, 0.0022921233903616667, 0.03200143948197365, 0.0063500311225652695, 0.018921054899692535, -0.017277518287301064, 0.010119300335645676, -0.015538899227976799, 0.012903806753456593, -0.01014646701514721, -0.002609624993056059, -0.016720617190003395, 0.03273491933941841, 0.005901793483644724, 0.021963637322187424, -0.0001949366123881191, -0.007246505934745073, -0.0021070558577775955, 0.00022072299907449633, -0.037244461476802826, 0.001877843402326107, 0.0008913813508115709, -0.004265047609806061, 0.030208488926291466, 0.00990197341889143, 0.030778974294662476, 0.01384782139211893, -0.0005399224464781582, -0.013650869019329548, -0.0018948221113532782, -0.0017505032010376453, -0.011939416639506817, -0.007205757312476635, 0.01174925547093153, -0.028524203225970268, -0.0066522518172860146, -0.014248519204556942, -0.012734019197523594, 0.010370585136115551, 0.006869579199701548, -0.013678034767508507, 0.004010367207229137, -0.005626738537102938, 0.005426390096545219, 0.008068274706602097, -0.024965468794107437, -0.025250712409615517, -0.008312768302857876, 0.052566032856702805, 0.018282655626535416, 0.02739681862294674, -0.0027182886842638254, 0.0007003710488788784, -0.006631877273321152, 0.010805239900946617, 0.011362140998244286, -0.002730173757299781, 0.01973603293299675, -0.034038882702589035, 0.01896180398762226, -0.013922528363764286, -0.01788875088095665, 0.021107910200953484, 0.030969135463237762, -0.0019338730489835143, 0.0023464553523808718, 0.025685366243124008, 0.010234755463898182, 0.008516511879861355, 2.2005977371009067e-05, 0.012007331475615501, -0.019817529246211052, -0.025237128138542175, -0.00117492547724396, 0.013053218834102154, -0.04153667390346527, -0.0238516665995121, 0.0010161747923120856, -0.022955192252993584, 0.026378097012639046, 0.00958956591784954, -2.4632368877064437e-05, -0.02180064097046852, -0.026609007269144058, -0.0029407094698399305, -0.0006651402800343931, 0.005324517842382193, 0.01809249445796013, 0.008672716096043587, -0.002407578518614173, 0.01195979118347168, 0.009888391010463238, 0.006383988540619612, -0.014547343365848064, 0.01472392212599516, -0.027383236214518547, -0.023525675758719444, 0.013752740807831287, -0.011382515542209148, -0.010947860777378082, -0.01387498714029789, 0.03754328563809395, -0.03759761527180672, -0.03469086438417435, -0.01924704574048519, 8.876672654878348e-05, 0.015077078714966774, -0.03428337723016739, 0.009338281117379665, 0.047811999917030334, 0.0025366167537868023, -0.0091956602409482, -0.013474290259182453, -0.1729924976825714, 0.00982726737856865, 0.005046067293733358, 0.008604801259934902, 0.006686209235340357, 0.03683697059750557, 0.011205936782062054, -0.017698589712381363, 0.0069748470559716225, -0.013392793014645576, -0.0044518131762743, -0.021067161113023758, -0.05006676912307739, -0.029638005420565605, 0.00440087728202343, -0.014927666634321213, 0.01568831130862236, 0.02655467577278614, 0.043329622596502304, 0.00566069595515728, 0.015457401983439922, -0.02017068676650524, -0.0037862483877688646, -0.01674778200685978, 0.004519728012382984, 0.020211435854434967, -0.005922168027609587, 0.023267600685358047, 0.004669140558689833, -0.03542434424161911, 0.015538899227976799, 0.006458694580942392, 0.00488307187333703, -0.008217686787247658, -0.0183913204818964, -0.010234755463898182, -0.01022117305546999, -0.018486401066184044, -0.01472392212599516, 0.006574149709194899, 0.0320829376578331, 0.0025994377210736275, 0.007090302184224129, 0.0061089335940778255, -0.00205951533280313, 0.024231990799307823, 0.028986023738980293, -0.015158576890826225, 0.009134536609053612, 0.002568876137956977, 0.011667757295072079, -0.02363434061408043, -0.0024347444996237755, 0.006088559050112963, 0.032979413866996765, 0.0025552932638674974, 0.023688672110438347, 0.01837773621082306, -0.004798178561031818, -0.01589205674827099, 0.0013430145336315036, -0.004448417574167252, -0.010879945941269398, -0.007613245863467455, -0.016503289341926575, -0.016978692263364792, -0.011423264630138874, 0.016720617190003395, -0.00404432462528348, 0.01292418036609888, 0.002770922612398863, 0.008550469763576984, 0.022180963307619095, 0.007912070490419865, 0.008577635511755943, 0.0037862483877688646, -0.02641884610056877, -0.0022785405162721872, 0.0230095237493515, 0.00029012339655309916, 0.004628391470760107, 0.03466369956731796, 0.01050641480833292, -0.003434789599850774, 0.005823691375553608, 0.005256603006273508, -0.009596357122063637, -0.002952594542875886, 0.006988429930061102, -0.001717394799925387, 0.026989329606294632, 0.0006074127159081399, -0.017277518287301064, 0.00452651921659708, 0.0089036263525486, -0.0033821556717157364, 0.018364153802394867, -0.0006396722164936364, 0.006360218394547701, -0.016870029270648956, 0.005918772425502539, -0.011919042095541954, -0.03920040652155876, 0.009569191373884678, 0.03708146512508392, 0.018228324130177498, 0.007959610782563686, 0.00536187132820487, 0.050311263650655746, -0.022955192252993584, -0.029366346076130867, 0.001596846035681665, 0.023824501782655716, 0.021556148305535316, -0.015144993551075459, 0.014669590629637241, -0.013779906556010246, -0.0367826409637928, 0.023620756343007088, -0.0011197447311133146, 0.03153961896896362, -0.0332510732114315, -0.008550469763576984, -0.005844065919518471, 0.009358655661344528, -0.0005989233613945544, -0.11099989712238312, -0.014275684952735901, 0.02925768308341503, 0.01153871975839138, -0.005243020132184029, 0.009331488981842995, 0.005881418939679861, 0.016707032918930054, 0.018051745370030403, 0.03455503657460213, -0.0037624782416969538, 0.0064858607947826385, 0.008401056751608849, -0.018214741721749306, 0.016707032918930054, 0.0024975656997412443, 0.00997667945921421, -0.01760350912809372, -0.02904035523533821, 0.031974274665117264, 0.008577635511755943, 0.0038100185338407755, 0.007042761892080307, 0.0061360993422567844, -0.009881598874926567, -0.008849294856190681, -0.03414754569530487, 0.026636172086000443, 0.021420318633317947, -0.009738977998495102, 0.021746309474110603, -0.015389487147331238, 0.0021987406071275473, -0.03045298345386982, 0.00837389100342989, -0.010832405649125576, -0.021338820457458496, -0.008394265547394753, 0.009209242649376392, -0.013745949603617191, 0.015864890068769455, -0.0038915162440389395, 0.011885085143148899, -0.022058717906475067, 0.004750638268887997, -0.007165008224546909, -0.01966811716556549, 0.012591398321092129, 0.007660786155611277, -0.01624521240592003, -0.007823781110346317, -0.012537066824734211, -0.0505557544529438, -0.013508248142898083, 0.024530814960598946, 0.02882302924990654, 0.020197853446006775, 0.018472816795110703, -0.0169651098549366, 0.008210895583033562, -0.007334795314818621, -0.001051830011419952, -0.007653994485735893, 0.014384347945451736, 0.010173632763326168, 0.014044774696230888, -0.010961444117128849, 0.0015832630451768637, -0.017589924857020378, -0.0007092849118635058, -0.03974372521042824, 0.010784865356981754, -0.02121657505631447, 0.016381042078137398, -0.01174925547093153, 0.007538539357483387, -0.009182076901197433, -0.023688672110438347, 0.012088828720152378, 0.014425097033381462, -0.013990442268550396, -0.01153192762285471, -0.010676202364265919, -0.02242545783519745, -0.0006392477662302554, 0.011294226162135601, 0.016353877261281013, -0.012516692280769348, 0.025223545730113983, -0.046698197722435, 0.03607632592320442, 0.018486401066184044, -0.019002553075551987, 0.017915915697813034, -0.025753280147910118, 0.000545016024261713, -0.004502749070525169, -0.011314600706100464, 0.013406375423073769, 0.004828740376979113, 0.006754124071449041, -0.008937584236264229, -0.05764605849981308, 0.0037115421146154404, 0.02966517210006714, 0.015987137332558632, 0.018907472491264343, -0.023620756343007088, -0.0014975207159295678, -0.0022140215151011944, -0.013175465166568756, 0.00018846348393708467, -0.026989329606294632, 0.017589924857020378, -0.018119661137461662, 0.004465396050363779, -0.016516871750354767, -0.0029186373576521873, 0.007830573245882988, 0.008910417556762695, 0.029284849762916565, 0.009338281117379665, -0.007097093388438225, -0.007457041647285223, 0.007640411611646414, 0.01430285070091486, -0.025658199563622475, 0.0013311294605955482, -0.024693811312317848, 0.01114481408149004, -0.031485289335250854, -0.036239322274923325, 0.011464012786746025, -0.0003898732247762382, 0.002730173757299781, 0.016978692263364792, -0.007423084229230881, -0.03110496513545513, 0.007171799894422293, 0.010920695029199123, 0.014642424881458282, 0.016788531094789505, -0.013949694111943245, -0.022615619003772736, 0.023607173934578896, -0.0024551190435886383, -0.006319469306617975, 0.0015000675339251757, -0.0001575834903633222, -0.021352404728531837, -0.011301017366349697, 0.0012810423504561186, 0.05050142481923103, 0.011552302166819572, -0.01966811716556549, -0.03045298345386982, 0.0020883791148662567, -0.0025960421189665794, 0.014710339717566967, 0.03422904387116432, 0.017522010952234268, -0.010051386430859566, 0.035044021904468536, -0.005314330570399761, 0.02761414647102356, -0.0024279530625790358, 0.02307743951678276, -0.03287074714899063, -0.03235459700226784, -0.024299904704093933, 0.008957957848906517, -0.02689424902200699, 0.007205757312476635, -0.02391958236694336, 0.015715477988123894, 0.028850194066762924, 0.0056403218768537045, 0.009019081480801105, -0.016122967004776, 0.0033600833266973495, -0.0013914038427174091, 0.022194547578692436, 0.030425816774368286, -0.023688672110438347, -0.011905459687113762, 0.022099466994404793, 0.0035281723830848932, 0.010594704188406467, -0.014479429461061954, 0.02449006587266922, -0.0044789789244532585, 0.004944195505231619, 0.0009236408513970673, -0.004743846599012613, -0.029067521914839745, 0.0014423399697989225, -0.009311115369200706, 0.005854253191500902, -0.02265636809170246, -0.009487693198025227, 0.01156588550657034, 0.025739697739481926, -0.014710339717566967, 0.017589924857020378, 0.014438680373132229, -0.02996399626135826, -0.028198212385177612, -0.004485770594328642, -0.028143880888819695, -0.017630673944950104, 0.01901613548398018, 0.01733184978365898, 9.847641922533512e-05, -0.010472457855939865, 0.005025693215429783, 0.010832405649125576, -0.020822668448090553, -0.005521470680832863, 0.009216034784913063, -0.052783358842134476, -0.04036853834986687, 0.01667986810207367, 0.013331669382750988, 0.019274212419986725, 0.025685366243124008, -0.02398749627172947, 0.023240434005856514, -0.01902971789240837, 0.02988249808549881, -0.015294406563043594, 0.02400108054280281, -0.018269073218107224, -0.019274212419986725, -0.005259999074041843, 0.011966582387685776, -0.018581481650471687, -0.024164075031876564, -0.014465846121311188, -0.0004520576912909746, 0.0017055097268894315, 0.008523304015398026, 0.07590154558420181, 0.021596897393465042, -0.0206596739590168, -0.0020714004058390856, -0.03431054204702377, 0.012829099781811237, 0.024802474305033684, 0.0008336537866853178, -0.007789824157953262, -0.01576980948448181, 0.010608287528157234, -0.005878023337572813, -0.002993343397974968, -0.013284129090607166, 0.005134356673806906, -0.004787991289049387, -0.0025807612109929323, 0.0015442121075466275, 0.0054841176606714725, 0.019274212419986725, 0.01193262543529272, 0.013630494475364685, 0.010635453276336193, -0.005776151083409786, -0.030724642798304558, -0.01619088090956211, 0.022248879075050354, 0.001635048072785139, -0.007097093388438225, -0.02072758786380291, 0.01522649172693491, -0.00011110431660199538, -0.022316792979836464, -0.008305976167321205, -0.01662553660571575, 0.0215018168091774, -0.00029436807380989194, -0.015593231655657291, 0.03463653102517128, 0.026609007269144058, 0.009711812250316143, 0.00536187132820487, -0.016720617190003395, -0.006788081489503384, -0.013936110772192478, 0.004991735797375441, -0.009419778361916542, -0.009114162065088749, -0.004152988083660603], "9dfaab70-7d70-4e42-86f2-a3c2d961207c": [0.00203943089582026, -0.006496616639196873, 0.011789634823799133, -0.013584474101662636, 0.004209075588732958, 0.007552404887974262, -0.02328364923596382, -0.027675727382302284, -0.020242977887392044, -0.0342075377702713, 0.011937445029616356, 0.03465800732374191, 0.020637139678001404, -0.021763313561677933, -0.010607152245938778, 0.014978114515542984, 0.022410864010453224, -0.007672060746699572, 0.004905895795673132, -0.0007223350694403052, -0.030097002163529396, -0.004620832856744528, -0.015414507128298283, -0.022326400503516197, -0.020580830052495003, 0.011001313105225563, 0.019454656168818474, -0.012831345200538635, -0.016695531085133553, 0.03947240114212036, 0.002686980878934264, 0.009776598773896694, -0.013500011526048183, 0.004557485692203045, -0.018398867920041084, 0.010445264168083668, -0.0001143770496128127, 0.010051103308796883, 0.028942672535777092, -0.013155120424926281, 0.021495847031474113, 0.014766957610845566, -0.0011024188715964556, -0.016737760975956917, -0.0019127362174913287, 0.012233065441250801, -0.0005230550304986537, -0.003290539840236306, -0.01263426523655653, 0.011106891557574272, -0.00034775023232214153, 0.0013276536483317614, -0.03125132992863655, 0.016062056645751, -0.0020464693661779165, -0.012423107400536537, 0.02014443837106228, -0.0010214750654995441, 0.006429750006645918, 0.012226027436554432, 0.0005622071912512183, 0.005711813922971487, -0.006742967292666435, -0.003973282873630524, -0.01842702366411686, -0.026549553498625755, -0.01599167101085186, -0.011120968498289585, -0.021763313561677933, -0.01437279675155878, 0.03868407756090164, 0.02600054442882538, 0.002289300784468651, 0.004318173509091139, -0.01604798063635826, -0.016160598024725914, -0.023705963045358658, -0.022284168750047684, 0.005155765451490879, 0.00028352311346679926, 0.01677999272942543, -0.021833699196577072, -0.02933683432638645, 0.007390517275780439, 0.028731515631079674, 0.0269014835357666, 0.023072490468621254, -0.002825993113219738, -0.01822994276881218, 0.00018047379853669554, 0.01670960709452629, 0.01579459197819233, 0.020285209640860558, 0.018722644075751305, 0.006690177600830793, -4.132420872338116e-05, -0.0012352721532806754, 0.007242707069963217, -0.0004093378665857017, -0.019384270533919334, -0.028407741338014603, 0.0016408708179369569, 0.0023473689798265696, -0.010740885511040688, -0.020313365384936333, -0.026141315698623657, 0.024789907038211823, 0.0057681226171553135, -0.006637388374656439, 0.007981758564710617, -0.029196063056588173, 0.03322213515639305, 0.007601674646139145, 0.004807355348020792, 0.013126966543495655, -0.012936924584209919, 0.0418655201792717, -0.020031820982694626, -0.0044519067741930485, -0.03206780552864075, 0.0010249943006783724, -0.018863415345549583, 0.04079565405845642, -0.012627226300537586, 0.018441099673509598, 0.007672060746699572, 0.00048566257464699447, -0.006584599148482084, 0.00815772358328104, -0.008312571793794632, 0.025226298719644547, 0.0022840218152850866, 0.008988277055323124, 0.022945797070860863, -0.015442661941051483, 0.014555799774825573, -0.002986120991408825, 0.01071976963430643, -0.00799583550542593, -0.04231598973274231, 0.024395745247602463, 0.032743509858846664, 0.027802422642707825, -0.011036505922675133, 0.007749485317617655, 0.040373340249061584, -0.006697216536849737, 0.022847255691885948, -0.002565565286204219, -0.005219113081693649, 0.02143953926861286, -0.030941631644964218, -0.017878012731671333, 0.008523729629814625, 0.02165069617331028, 0.029759149998426437, 0.008678578771650791, 0.016962997615337372, -0.03232119604945183, 0.008298494853079319, -0.016498450189828873, 0.013148082420229912, -0.004004956688731909, 0.0004328731447458267, -0.005845547188073397, 0.03930347412824631, 0.013443702831864357, -0.02027113363146782, -0.01421090867370367, -0.019581351429224014, -0.026873327791690826, 0.020088130608201027, -0.03085717000067234, 0.010684576816856861, 0.01685038022696972, 0.01382378675043583, 0.009368360042572021, -7.148565782699734e-05, -0.0015194551087915897, -0.03133579343557358, 0.021073531359434128, 0.0012651861179620028, -0.0017763635842129588, 0.014598031528294086, -0.021566232666373253, -0.017469774931669235, 0.03426384553313255, 0.033925995230674744, -0.011353242211043835, -0.01089573372155428, -0.0036671042907983065, 0.006598676089197397, 0.004603236448019743, 0.01188113633543253, -0.629756510257721, 0.004652506671845913, 0.016273215413093567, -0.024663211777806282, 0.0021414903458207846, 0.0292242169380188, 0.011184316128492355, 0.00439207861199975, -0.011472898535430431, 0.02526853047311306, 0.010614190250635147, -0.003916974179446697, -0.003846588311716914, -0.002567325020208955, -0.01441502757370472, -0.036882199347019196, -0.004941088613122702, -0.01749792881309986, -0.002817194676026702, 0.012908769771456718, -0.026859251782298088, 0.02512775920331478, -0.0007676460081711411, 0.006123571656644344, 0.010600113309919834, -0.022284168750047684, 0.023410342633724213, -0.030434854328632355, -0.002563805552199483, 0.02512775920331478, -0.028309199959039688, 0.01586497761309147, 0.008622270077466965, -0.00029254131368361413, 0.04363924637436867, -0.004335769917815924, -0.006999875418841839, 0.009037546813488007, 0.00799583550542593, 0.042681995779275894, -0.02072160318493843, 0.0010698653059080243, 0.02243901789188385, 0.0234244205057621, -0.007566481828689575, 0.003376762615516782, 0.009846984408795834, -0.006306574679911137, -0.013542243279516697, -0.01572420448064804, 0.006000396329909563, -0.003909935709089041, 3.4972981666214764e-05, 0.006127090658992529, 0.01540043018758297, 0.0040401495061814785, 0.018793029710650444, -0.02001774311065674, 0.0039451285265386105, 0.0015132963890209794, 0.0059616840444505215, 0.007517211604863405, -0.02414235658943653, -0.028731515631079674, -0.03572787344455719, 0.01796247623860836, -0.008256263099610806, -0.009762520901858807, 0.006454384885728359, -0.002708096755668521, 0.015484893694519997, -0.008734887465834618, -0.0005837628850713372, -0.006440307945013046, -0.0027186544612050056, 0.019778432324528694, 0.023452574387192726, -0.012958040460944176, -0.0119444839656353, 0.017751319333910942, -0.0059616840444505215, -0.017483852803707123, -0.02100314572453499, -0.008242186158895493, 0.04265384376049042, 0.012416069395840168, -0.017075615003705025, -0.010642345063388348, 0.0035298517905175686, -0.00085562834283337, 0.007812832482159138, 0.024184588342905045, -0.009854023344814777, -0.006436788477003574, 0.00582443131133914, 0.038205455988645554, -0.008734887465834618, 0.018187711015343666, 0.0011288134846836329, -0.0061165327206254005, -0.012690573930740356, -0.029167907312512398, 0.01055788155645132, -0.003362685441970825, 0.02098906971514225, 0.040176261216402054, -0.013514088466763496, -0.012261220254004002, 0.018497409299016, -0.012085255235433578, -0.008565961383283138, 0.004318173509091139, -0.02842181734740734, -0.02863297611474991, 0.020904606208205223, -0.02179146744310856, -0.0028330315835773945, -0.0037339709233492613, -0.0004742248565889895, -0.006933009251952171, -0.0027151352260261774, -0.014365757815539837, 0.00671129347756505, 0.006113013718277216, 0.01375340111553669, 0.017610546201467514, 0.023593345656991005, 0.003744528628885746, 0.008319610729813576, -0.004378001671284437, 0.002125653438270092, -0.017483852803707123, 0.0036495078820735216, 0.002398398704826832, 0.04118981584906578, -0.002130932407453656, 0.020974991843104362, -0.007196955848485231, 0.004905895795673132, -0.0467362217605114, 0.0011384915560483932, 0.008763042278587818, 0.015808667987585068, -0.03133579343557358, 0.008685617707669735, -0.03719189763069153, -0.015555279329419136, 0.012331605888903141, -0.0031884803902357817, -0.009424668736755848, -0.012951001524925232, -0.004934050142765045, -0.002338570775464177, 0.022340478375554085, -0.01789209060370922, 0.009030507877469063, 0.01875079795718193, -0.038655925542116165, -0.01908865012228489, -0.029308680444955826, -0.0006629470153711736, 0.010184836573898792, -0.0036917394027113914, -0.011282856576144695, -0.017582392320036888, -0.011662940494716167, -0.02073567919433117, 0.010754962451756, -0.026662170886993408, -0.025887925177812576, 0.011655901558697224, -0.015006269328296185, 0.01089573372155428, 0.018061015754938126, -0.0031321716960519552, 0.017920244485139847, -0.005293018184602261, -0.009896254166960716, 0.008080299012362957, -0.0008446305291727185, 0.013668937608599663, 0.023649655282497406, 0.00314272940158844, 0.006581079680472612, 0.04321692883968353, 0.002336811274290085, 0.01585089974105358, 0.009692135266959667, -0.03403861075639725, -0.004448387306183577, 0.005507695022970438, 0.011423627845942974, -0.014323526062071323, -0.006929489783942699, -0.039782099425792694, -0.0008543086005374789, -0.0283514317125082, 0.0016567076090723276, 0.00990329310297966, 0.02236863225698471, 0.013239583931863308, 0.019651737064123154, -0.009523209184408188, 0.0002163266035495326, 0.0035914394538849592, -0.011036505922675133, 0.01181778870522976, -0.02170700579881668, 0.02585977129638195, 0.021566232666373253, 0.004912934266030788, -0.010839425027370453, -0.002586680930107832, -0.004810874816030264, 0.007946565747261047, 0.01882118359208107, 0.028309199959039688, 0.00401551416143775, 0.005694217514246702, 0.018398867920041084, 0.015639742836356163, -0.0059264907613396645, 0.04088011756539345, 0.0057399682700634, -0.006781679578125477, 0.019919203594326973, -0.0028277526143938303, 0.030913477763533592, 0.009502093307673931, -0.017976554110646248, -0.006908373907208443, 0.029787303879857063, 0.008833427913486958, 0.025324838235974312, 0.03913454711437225, 0.027225257828831673, 0.04448387399315834, -0.009452823549509048, 0.03263089433312416, 0.00467362254858017, 0.002287541050463915, 0.0030899401754140854, 0.036150187253952026, -0.013661898672580719, 0.02797134779393673, -0.009628788568079472, 0.015147040598094463, -0.009713251143693924, -0.03834622725844383, 0.006605714559555054, 0.01010037399828434, 0.008305533789098263, -0.023903043940663338, -0.014978114515542984, 0.03660065680742264, -0.009600633755326271, 0.01880710758268833, 0.005697736982256174, 0.016948919743299484, 0.024846214801073074, 0.006179880350828171, -0.022748716175556183, 0.009495055302977562, -0.015836821869015694, 0.009241665713489056, -0.013197352178394794, -0.016737760975956917, -0.021031299605965614, 0.007063223049044609, -0.024846214801073074, 0.009431707672774792, -0.0025268530007451773, 0.01257091760635376, 0.011177277192473412, -0.002174923662096262, -0.0015168156241998076, 0.0006163163343444467, 0.003329252125695348, -0.008826388977468014, 0.02152400091290474, -0.026296164840459824, -0.028914518654346466, 0.012986194342374802, 0.006915412377566099, -0.00203943089582026, -0.02310064621269703, 0.003881781129166484, -0.015161118470132351, 0.019919203594326973, -0.003515774616971612, -0.005701255984604359, -0.005507695022970438, -0.005236709490418434, -0.019581351429224014, -0.013183275237679482, 0.017483852803707123, 0.03952870890498161, -0.0165829136967659, -0.019046418368816376, 0.01069161482155323, 0.012162679806351662, 0.010811271145939827, -0.010501572862267494, -0.01815955713391304, 0.02716894820332527, -0.012352721765637398, -0.02546561136841774, -0.023846736177802086, 0.0007887617684900761, -0.022523481398820877, 0.008052144199609756, -0.006387518253177404, -0.014907728880643845, -0.0238326583057642, -0.02138322964310646, 0.004223152529448271, 0.009326129220426083, -0.01692076586186886, 0.033391062170267105, 0.001090101315639913, 0.003906416241079569, -0.016695531085133553, 0.005630870349705219, 0.02553599700331688, 0.0518321618437767, 0.011501052416861057, -0.0016408708179369569, 0.009825868532061577, -0.0003006796760018915, -0.025761231780052185, -0.028773747384548187, -0.0041351704858243465, 0.03572787344455719, 0.014330564998090267, -0.022157475352287292, 0.002664105501025915, 0.013612628914415836, -0.01946873404085636, 0.0006765842554159462, 0.004121093079447746, -0.007101935334503651, -0.018638180568814278, -0.009424668736755848, 0.012936924584209919, 0.007848025299608707, -0.017075615003705025, 0.03150472044944763, 0.010832387022674084, 0.019299807026982307, 0.01704745925962925, 0.042344145476818085, 0.011332126334309578, 0.007299015764147043, -0.032349348068237305, -0.022875411435961723, 0.02065121755003929, 0.014682494103908539, 0.017357157543301582, -0.01710376888513565, 0.025704922154545784, 0.0031075365841388702, -0.02433943748474121, -0.025296684354543686, -0.0035421692300587893, -0.01789209060370922, 0.0269014835357666, 0.0008978598634712398, -0.015217427164316177, 0.011458820663392544, -0.01349297259002924, -0.01451356802135706, 0.02303025871515274, -0.007056184113025665, -0.003350367769598961, 0.026099083945155144, 0.011113930493593216, -0.013119927607476711, 0.032602738589048386, -0.005060744471848011, -0.002540930174291134, -0.0031374504324048758, -0.005208555143326521, -0.035136628895998, -0.024367591366171837, -0.02625393308699131, -0.02112984098494053, -0.001084822346456349, -0.01737123541533947, -0.010783116333186626, -0.020820142701268196, -0.0019584870897233486, -0.018525563180446625, -0.01683630235493183, 0.004515253938734531, -0.004789758939296007, -0.0409364253282547, -0.02395935356616974, -0.0020992588251829147, 0.022861333563923836, 0.015273735858500004, -0.0032993380445986986, 0.0009748444426804781, -0.00983994547277689, 0.010311530902981758, 0.010529727675020695, -0.020440058782696724, -0.0009510891977697611, -0.013317008502781391, 0.011233585886657238, -0.0022136359475553036, -0.019426502287387848, 0.013232544995844364, -0.008080299012362957, -0.007013952825218439, 0.0032887801062315702, -0.016301369294524193, 0.007404594216495752, 0.001573124434798956, 0.008453343994915485, 0.015893131494522095, 0.024635057896375656, -0.011247663758695126, 0.029196063056588173, -0.03950055316090584, 0.008671539835631847, -0.026605861261487007, -0.014027905650436878, -0.009861061349511147, 0.007140647154301405, 0.003309895982965827, -0.004782720468938351, -0.0031110558193176985, -0.009614710696041584, -0.007404594216495752, 0.0051979972049593925, 0.008298494853079319, -0.011311010457575321, 0.0014904210111126304, 0.005004435777664185, -0.018835261464118958, 0.008896774612367153, 0.020763834938406944, 0.012725766748189926, -0.023255493491888046, -0.00025536876637488604, -0.015118886716663837, 0.03719189763069153, -0.00016991590382531285, -0.004617313854396343, 0.025887925177812576, 0.0126976128667593, -0.017427543178200722, -0.0126976128667593, 0.0067359283566474915, -0.01690668798983097, 0.006633868906646967, -0.010712730698287487, -0.005782200023531914, -0.023579269647598267, -0.006616272497922182, -0.014598031528294086, -0.006841507274657488, -0.014485414139926434, -0.004810874816030264, -0.02981545776128769, 0.007299015764147043, 0.010367839597165585, 0.0008912612101994455, 0.010945004411041737, -0.027281565591692924, -0.023016182705760002, -0.00911497138440609, 0.005173361860215664, 0.020637139678001404, -0.02125653438270092, -0.012282336130738258, -0.0238326583057642, -0.02453651651740074, -0.018764875829219818, -0.021622542291879654, -0.016667375341057777, 0.0008063582354225218, 0.05712517723441124, 0.007763562258332968, 0.007341247051954269, 0.007077299989759922, 0.008016951382160187, 0.021552156656980515, -0.02112984098494053, 0.001319735194556415, -0.02177739143371582, -0.019398348405957222, 0.004888299386948347, 0.008488536812365055, -0.0008631068631075323, -0.004483580589294434, -0.0069611635990440845, 0.0013769237557426095, 0.007890257053077221, 0.012648342177271843, -0.005528810899704695, 0.0004363924381323159, -0.030237773433327675, -0.05101568624377251, -0.0036143148317933083, 0.04090827330946922, -0.004765124060213566, -0.013711169362068176, -0.01026930008083582, -0.012880615890026093, 0.010536765679717064, -0.005099456757307053, 0.04149951413273811, 0.016681453213095665, 0.030547471717000008, -0.004124612547457218, 0.005444347858428955, 0.013162159360945225, 0.006989317946135998, -0.007791716605424881, -0.011184316128492355, -0.04763716086745262, -0.006802794989198446, 0.0060567050240933895, 0.02678886614739895, 0.00708785792812705, -0.021073531359434128, 0.006415672600269318, 0.020003667101264, 0.01817363314330578, -0.03454538807272911, -0.03243381157517433, -0.0015317726647481322, -0.0219181627035141, -0.0052613443695008755, -0.017455697059631348, -0.014907728880643845, 0.013535204343497753, -0.00792544987052679, -0.0005798036581836641, 0.015822745859622955, 0.009107932448387146, -0.029139753431081772, -0.03184257075190544, 0.02310064621269703, -0.01382378675043583, 0.03271535784006119, 0.010374878533184528, 0.022734638303518295, 0.020876452326774597, -0.0007597275543957949, -0.013915288262069225, -0.022945797070860863, 0.015963517129421234, -0.0029491682071238756, 5.347677142708562e-05, 0.045384813100099564, -0.01503442320972681, -0.003216634737327695, 0.019187189638614655, -0.004261864814907312, -0.003047708421945572, -0.05211370438337326, 0.013612628914415836, 0.008108452893793583, -0.014020866714417934, -0.03564340993762016, -0.03302505239844322, -0.02079198881983757, 0.030350390821695328, -0.0019461695337668061, 0.02034151926636696, 0.007805794011801481, 0.006155245006084442, 0.001083942479453981, 0.05140984430909157, -0.022284168750047684, 0.020608985796570778, -0.013049541972577572, -0.007313092704862356, -0.019074572250247, 0.0006132369744591415, 0.009854023344814777, -0.013999750837683678, 0.013049541972577572, 0.024240896105766296, -0.012416069395840168, -0.010529727675020695, 0.002238270826637745, 0.012718727812170982, -0.01921534538269043, -0.009994794614613056, -0.023705963045358658, 0.031814418733119965, -0.010550843551754951, -0.0028383105527609587, 0.0033063767477869987, -0.0012185554951429367, 0.013739323243498802, -0.014288333244621754, -0.024494286626577377, -0.006690177600830793, -0.004786239936947823, 0.008699694648385048, 0.005254305899143219, 0.012993233278393745, -0.0067359283566474915, -0.00016386712377425283, 0.005402116104960442, -0.006531809456646442, -0.01533004455268383, -0.0021907605696469545, 0.005507695022970438, -0.03277166560292244, -0.010332646779716015, 0.01828625053167343, 0.010621229186654091, 0.027000023052096367, -0.011451782658696175, -0.012584995478391647, 0.0021626062225550413, 0.02303025871515274, -0.021031299605965614, 0.012275297194719315, 0.02559230476617813, 0.007467941846698523, -0.040711190551519394, 0.029702840372920036, 0.0014789833221584558, -0.01624506153166294, 0.013148082420229912, -0.015625664964318275, -0.02442389912903309, -0.023241417482495308, 0.018764875829219818, -0.017329003661870956, 0.017455697059631348, -0.003751567332074046, 0.017540160566568375, 0.014182754792273045, -0.006876700557768345, -0.006345286965370178, -0.019229421392083168, 0.004765124060213566, 0.007622790522873402, 0.007105454336851835, 0.014921805821359158, -0.006992836948484182, 0.0034805817995220423, -0.0010892214486375451, 0.010740885511040688, -0.010395994409918785, -0.03147656470537186, -0.023480728268623352, -0.02440982311964035, -0.012528686784207821, 0.017582392320036888, -0.002335051540285349, -0.009199433960020542, -0.022748716175556183, -0.009276858530938625, 0.010255222208797932, -0.0019584870897233486, 0.01724454015493393, 0.006654984783381224, -0.026296164840459824, -0.012993233278393745, 0.02328364923596382, -0.006605714559555054, -0.05045259743928909, 0.0015361717669293284, -0.009361322037875652, -0.03871223330497742, -0.016343601047992706, -0.013281815685331821, 0.045384813100099564, 0.014056059531867504, -0.028252892196178436, -0.020355595275759697, -0.023241417482495308, -0.04910118877887726, -0.020214824005961418, -0.0195391196757555, 0.029055289924144745, 0.038515154272317886, 0.03640357777476311, -0.002825993113219738, 0.02723933570086956, -0.021735159680247307, 0.012753921560943127, -0.03237750381231308, -0.00554640730842948, -0.011698133312165737, -0.02571900002658367, 0.008354803547263145, -0.013331085443496704, -0.05335249751806259, -0.008720810525119305, 0.0021150957327336073, -0.015315967611968517, 0.014260179363191128, 0.015766436234116554, -0.010403032414615154, -0.0042935386300086975, 0.0022065972443670034, 0.003403157228603959, 0.042090754956007004, 0.014583953656256199, 0.0017059777164831758, -0.03136394917964935, 0.019820664077997208, -0.0069752405397593975, -0.006581079680472612, -0.015484893694519997, 0.007284938357770443, 0.0156538188457489, -0.007749485317617655, 0.005778680555522442, 0.002317455131560564, -0.012810230255126953, -0.0062150731682777405, 0.002824233379215002, 0.0030881804414093494, 0.000809877528809011, 0.0047510466538369656, 0.019440580159425735, 0.0070737809874117374, 0.017146000638604164, -0.004385040141642094, 0.008833427913486958, 0.0037374901585280895, 8.567281474824995e-05, 0.04009179770946503, -0.026943713426589966, -0.010381917469203472, -0.018258096650242805, 0.012549801729619503, -0.0008982997969724238, -0.0030864207074046135, -0.01599167101085186, -0.010121488943696022, -0.04149951413273811, -0.006271381862461567, 0.016005748882889748, -0.02632431872189045, -0.015611588023602962, -0.012753921560943127, -0.012507570907473564, -0.012204911559820175, 0.014766957610845566, -0.0009590075933374465, -0.024114202708005905, -0.004712334368377924, -0.006267862394452095, 0.002106297528371215, -0.027098562568426132, -0.009234627708792686, 0.02763349562883377, -0.014795111492276192, 0.008368880487978458, 0.21723897755146027, 0.007235668133944273, 0.02100314572453499, 0.03691035509109497, 0.019975513219833374, -0.0002494299551472068, 0.007003394886851311, 0.0009862821316346526, -0.01045934110879898, 0.010198913514614105, 0.016568835824728012, -0.00792544987052679, -0.025254452601075172, -0.0028823018074035645, 0.014119407162070274, -0.029899921268224716, -0.040373340249061584, -0.02027113363146782, -0.015583433210849762, 0.004624352324754, 0.022593867033720016, -0.010466380044817924, -0.01171221025288105, -0.0007786437636241317, 0.03361629694700241, 0.010487495921552181, -0.0029456489719450474, 0.02645101398229599, 0.023579269647598267, 0.028675206005573273, -0.016216905787587166, -0.012211949564516544, 0.008551884442567825, -0.0030916996765881777, -0.017216386273503304, -0.008235148154199123, 0.022847255691885948, -0.01862410269677639, 0.01236679870635271, 0.01362670585513115, 0.0018599468749016523, -0.011852981522679329, -0.010466380044817924, -0.0283514317125082, 0.012127486988902092, -0.01586497761309147, -0.010015910491347313, -0.002268184907734394, 0.016892610117793083, 0.012085255235433578, -0.00918535701930523, 0.01835663802921772, 0.020482290536165237, 0.021481771022081375, -0.0010373118566349149, 0.01835663802921772, -0.011669978499412537, -0.0010047584073618054, -0.015147040598094463, 0.0024177548475563526, -0.01751200668513775, 0.00703858770430088, -0.011240624822676182, -0.0022805023472756147, -0.03533371165394783, 0.022551635280251503, 0.0033169344533234835, 0.01573828235268593, -0.004772162530571222, -0.003769163740798831, 0.006253785453736782, 0.009530248120427132, -0.026802942156791687, 0.006834468804299831, -0.008319610729813576, -0.0002817634667735547, 0.002917494624853134, 0.032405659556388855, 0.05157877132296562, 0.008080299012362957, 0.0024371109902858734, 0.0003675462503451854, -0.005300056654959917, -0.02777426689863205, 0.011662940494716167, -0.008537807501852512, 0.02132692188024521, -0.01319031324237585, 0.00582443131133914, -0.01987697184085846, -0.015527124516665936, 0.012352721765637398, -0.0019461695337668061, -0.011860020458698273, -0.00846038293093443, -0.0001308737409999594, 0.005715333390980959, 0.0180891714990139, -0.015696050599217415, -0.024254973977804184, -0.019201267510652542, 0.04028887674212456, 0.019243499264121056, 0.02829512394964695, -0.010276338085532188, 0.007397555746138096, -0.009797714650630951, 0.014049021527171135, 0.012444223277270794, 0.004758085589855909, -0.006243227515369654, -0.033982302993535995, 0.013774516060948372, -0.013443702831864357, -0.009593594819307327, 0.019792508333921432, 0.017230462282896042, 0.002806636970490217, 0.0014429105212911963, 0.010670498944818974, 0.025887925177812576, 0.002130932407453656, 0.006841507274657488, 0.010339685715734959, -0.02480398304760456, -0.03040669858455658, -0.0012678256025537848, -0.0038536267820745707, -0.03415123000741005, -0.0195391196757555, -0.012986194342374802, -0.01441502757370472, 0.01948281191289425, -0.013373317196965218, -0.003355646738782525, -0.01986289583146572, -0.01378859393298626, -0.013253660872578621, -0.007665022276341915, 0.004803836345672607, 0.007749485317617655, 0.014851420186460018, 0.0072145527228713036, -0.006588118150830269, 0.011888175271451473, 0.006989317946135998, -0.014365757815539837, 0.00338028185069561, -0.0342075377702713, -0.020313365384936333, 0.007833948358893394, -0.0032483083195984364, -0.012183795683085918, -0.00727086141705513, 0.03277166560292244, -0.03733266890048981, -0.050565216690301895, -0.02519814483821392, 0.01855371706187725, 0.0165266040712595, -0.05349326878786087, 0.013507050462067127, 0.04651098698377609, 0.015470815822482109, -0.024508362635970116, 0.0024371109902858734, -0.18165187537670135, 0.004202037118375301, -0.007559443358331919, -0.0013637264491990209, -0.004458945244550705, 0.02401566132903099, 0.010663460940122604, -0.011268778704106808, -0.025479687377810478, 0.005391558166593313, 0.005556965246796608, -0.0040999772027134895, -0.05087491124868393, -0.0165266040712595, 0.01071976963430643, -0.020637139678001404, -0.004300577100366354, 0.04073934629559517, 0.05045259743928909, -0.00727086141705513, 0.009093855507671833, -0.024170510470867157, 0.00047554459888488054, -0.009663981385529041, 0.0006884618778713048, 0.015175195410847664, -0.005880740005522966, 0.03198334202170372, 0.005275421775877476, -0.017005227506160736, 0.0015000990824773908, -0.014851420186460018, 0.02566269040107727, -0.0039416090585291386, -0.010227068327367306, -0.008002874441444874, -0.015484893694519997, -0.015513047575950623, -0.016794070601463318, 0.019299807026982307, 0.022002626210451126, 0.011451782658696175, 0.025254452601075172, 0.0033890800550580025, 0.006440307945013046, 0.01672368496656418, 0.030097002163529396, -0.014978114515542984, 0.008734887465834618, -0.006739447824656963, 0.008580038323998451, -0.009361322037875652, -0.005915933288633823, -0.007679099217057228, 0.020299287512898445, 0.020411904901266098, 0.017258618026971817, 0.02632431872189045, 0.007855064235627651, -0.016864456236362457, 0.007742446847259998, -0.025873849168419838, -0.005894817411899567, -0.004328731447458267, -0.021594388410449028, -0.01941242441534996, -0.014724725857377052, 0.01928573101758957, -0.0037621252704411745, 0.013901211321353912, 0.0036459884140640497, 0.009889216162264347, 0.030040692538022995, -0.007756523787975311, 0.027732037007808685, -0.008516691625118256, -0.022213783115148544, 0.006028550677001476, 0.026225779205560684, -0.0007887617684900761, 0.006785198580473661, 0.027788344770669937, 0.007967681623995304, -0.0010487495455890894, -0.014013828709721565, 0.0019092169823125005, 0.0011657661525532603, 0.009917370043694973, 0.006003915332257748, 0.00638399925082922, 0.026366550475358963, -0.021608464419841766, 0.014295372180640697, -0.002521574031561613, 0.010916849598288536, 0.009122009389102459, 0.017680931836366653, -0.005321172531694174, 0.010839425027370453, -0.011571438051760197, -0.006637388374656439, 0.024466130882501602, -0.03837437927722931, 0.008763042278587818, 0.03567156195640564, 0.0180891714990139, 0.02112984098494053, 0.011353242211043835, 0.03533371165394783, -0.0069259703159332275, -0.04493434354662895, 0.016470296308398247, 0.016230983659625053, 0.013014349155128002, -0.02763349562883377, 0.019961435347795486, -0.008389996364712715, -0.02442389912903309, 0.01017075963318348, -0.004152766894549131, 0.034320153295993805, -0.04285092279314995, -0.027028176933526993, -0.0099736787378788, 0.016160598024725914, -0.009593594819307327, -0.11013982445001602, -0.020552676171064377, 0.03189887851476669, 0.00508537981659174, -0.005384519696235657, 0.007798755541443825, 0.003635430708527565, 0.0223827101290226, 0.00891789048910141, 0.021467693150043488, -0.019327962771058083, 0.0006858223932795227, 0.007147686090320349, -0.012176756747066975, 0.009473939426243305, -0.00047598450328223407, 0.008727848529815674, -0.014823266305029392, -0.009220549836754799, 0.03423568978905678, 0.002753847511485219, -0.002108057029545307, 0.00798879750072956, 0.005145207513123751, -0.020440058782696724, -0.0238326583057642, -0.02883005514740944, 0.008199954405426979, 0.015062578022480011, 0.01592128537595272, 0.038008373230695724, -0.012542763724923134, 0.022410864010453224, -0.01960950531065464, -0.00993848592042923, -0.024860292673110962, -0.0134507417678833, -0.018863415345549583, 0.02552191913127899, -0.02559230476617813, 0.008565961383283138, -0.00836184248328209, 0.012035985477268696, -0.033053208142519, -0.015907209366559982, 0.007657983805984259, -0.01789209060370922, 0.03125132992863655, 0.0071336086839437485, -0.005606235004961491, -0.031617335975170135, -0.019201267510652542, -0.02100314572453499, -0.03271535784006119, 0.026873327791690826, 0.0067359283566474915, 0.014837343245744705, 0.01946873404085636, -0.02217155136168003, 0.006588118150830269, -0.004617313854396343, 0.00022589467698708177, -0.010564920492470264, 0.024198664352297783, 0.00836184248328209, 0.008713771589100361, 0.003533371025696397, -0.008580038323998451, -0.0018370713805779815, 0.012057101354002953, -0.024325359612703323, 0.006454384885728359, -0.015189272351562977, 0.012233065441250801, -0.01889156922698021, -0.0005947606987319887, -0.014365757815539837, 0.009093855507671833, 0.007665022276341915, 0.010712730698287487, -0.009797714650630951, -0.01651252619922161, 0.01749792881309986, -0.019961435347795486, -0.0005507695022970438, 0.006640907842665911, 0.01724454015493393, -0.010874617844820023, 0.028787823393940926, -0.046623606234788895, 0.01692076586186886, 0.026014620438218117, 0.006665542721748352, 0.004599716980010271, -0.019004186615347862, 0.01908865012228489, -0.004297058098018169, 0.010804232209920883, 0.016230983659625053, -0.004923492204397917, -0.010093335062265396, 0.007538327481597662, -0.05416897311806679, 0.010093335062265396, 0.014161638915538788, 0.011472898535430431, 0.0126976128667593, -0.018764875829219818, 0.005201516207307577, -0.009431707672774792, 0.0014737043529748917, -0.004772162530571222, -0.013077695854008198, 0.015006269328296185, -0.017357157543301582, 0.0009660461801104248, -0.02421274222433567, -0.010128527879714966, 0.014555799774825573, 0.003243029350414872, 0.008249225094914436, 0.00816476158797741, 0.0015872016083449125, -0.008636347018182278, 0.012951001524925232, 0.017807627096772194, -0.016174674034118652, 0.015710128471255302, -0.024226820096373558, 0.011796672828495502, -0.01378859393298626, -0.03868407756090164, 0.021467693150043488, 0.004634910263121128, 0.002935091033577919, 0.006947086192667484, -0.008199954405426979, -0.041555821895599365, -0.0008666261564940214, -0.001041710958816111, 0.013936404138803482, 0.010712730698287487, -0.011268778704106808, -0.021411383524537086, 0.014056059531867504, -0.004328731447458267, -0.020848296582698822, -0.006317132618278265, -0.017188232392072678, -0.02363557741045952, 0.007524250540882349, 0.012352721765637398, 0.040232568979263306, 0.0063734413124620914, -0.016132444143295288, -0.017343079671263695, 0.0056731016375124454, -0.018525563180446625, 0.004670103080570698, 0.022805023938417435, 0.009678058326244354, -0.005937048699706793, 0.04420233145356178, 0.0019760834984481335, 0.015752360224723816, 0.0003303737030364573, 0.033193979412317276, -0.02618354745209217, -0.04749638959765434, -0.02355111576616764, 0.0016135962214320898, -0.020355595275759697, 0.009882177226245403, -0.012204911559820175, 0.02836550958454609, 0.02652139961719513, 0.01471064891666174, 0.01256387960165739, -0.012620188295841217, -0.02514183521270752, -0.006841507274657488, 0.02091868221759796, 0.011824827641248703, -0.03541817516088486, -0.03631911426782608, 0.003096978645771742, 0.010142604820430279, 0.015287812799215317, -0.0015889612259343266, 0.019257577136158943, 0.02118614874780178, 0.003174403216689825, 0.0027204141952097416, 0.0067711216397583485, -0.011078737676143646, -0.0059124138206243515, 0.008199954405426979, 0.00898123811930418, -0.02283317968249321, 0.006327690556645393, 0.015118886716663837, 0.02494475618004799, -0.008136607706546783, 0.025240376591682434, 0.0030424296855926514, -0.02374819479882717, -0.007700215093791485, 0.011120968498289585, -0.0165829136967659, -0.013295892626047134, 0.032152269035577774, 0.014119407162070274, 0.00039020171971060336, -0.024198664352297783, -0.004543408285826445, 0.020102206617593765, -0.027732037007808685, 0.004022553097456694, -0.0045961979776620865, -0.04172474890947342, -0.03454538807272911, -0.0004282540758140385, 0.007474980317056179, 0.02407197095453739, 0.011106891557574272, -0.022030780091881752, 0.019525041803717613, -0.011740364134311676, 0.024325359612703323, -0.022129319608211517, 0.011071698740124702, -0.019032342359423637, -0.025817539542913437, -0.010297453962266445, 0.008495575748383999, -0.019623583182692528, -0.01717415452003479, -0.009248704649508, -0.01533004455268383, 0.018187711015343666, -0.005535849370062351, 0.09043177962303162, 0.04048595577478409, -0.023663733154535294, 0.0028805420733988285, -0.025043295696377754, -0.004585640039294958, 0.011219508945941925, 0.011198393069207668, 0.012240104377269745, -0.03403861075639725, 0.009621749632060528, -0.017329003661870956, -0.01338739413768053, -0.011726287193596363, -0.01573828235268593, -0.0024863812141120434, 0.0007645665900781751, 0.012521647848188877, -0.007200475316494703, 0.018764875829219818, 0.022537557408213615, -0.011282856576144695, 0.01782170496881008, -0.006394557189196348, -0.029984384775161743, -0.015175195410847664, 0.027732037007808685, 0.016357678920030594, 0.004367443732917309, -0.008650424890220165, 0.02566269040107727, -0.003705816576257348, -0.04118981584906578, -0.00722159119322896, -0.019060496240854263, 0.012592033483088017, -0.01513296365737915, -0.016470296308398247, 0.0180328618735075, 0.012838384136557579, 0.0058173928409814835, 0.01533004455268383, -0.008136607706546783, -0.017286771908402443, -0.007411633152514696, 0.001851148554123938, -0.010818309150636196, -0.0036459884140640497, -0.00025558873312547803], "fb76762e-5f96-4e30-b458-26837b628208": [0.005808528047055006, 0.0049894643016159534, 0.022688070312142372, -0.022060120478272438, 0.00395198306068778, 0.018565448001027107, -0.010135915130376816, -0.02595067396759987, -0.0010630766628310084, -0.04799714311957359, 0.01384217943996191, 0.024844937026500702, 0.014333617873489857, -0.004576519597321749, -0.011637533083558083, 0.014497430995106697, 0.026810690760612488, -0.01395138818770647, 0.004713030066341162, -0.0009427766781300306, -0.02227853797376156, -0.0026790215633809566, -0.013480426743626595, -0.006890374701470137, -0.02433984912931919, 0.015930792316794395, 0.011091490276157856, -0.011466894298791885, -0.020681362599134445, 0.02264711633324623, 0.004392229951918125, -0.006433064118027687, -0.02293378859758377, 0.0021790512837469578, -0.023930316790938377, -0.0013343915343284607, -0.002752395812422037, -0.009815115481615067, -0.00016562581004109234, -0.013480426743626595, 0.023083951324224472, 0.02337062358856201, -0.004603821784257889, -0.01554856263101101, -0.001904323580674827, 0.024135082960128784, 0.008279371075332165, -0.002324093831703067, -0.012954859994351864, 0.002632949035614729, -0.0035014981403946877, -0.0063102045096457005, -0.039260461926460266, -0.0020254766568541527, -0.004685727879405022, -0.019780393689870834, 0.016640648245811462, -0.003088553436100483, 0.017773685976862907, -0.003272842848673463, 0.004050953313708305, 0.0078084091655910015, -0.0183606818318367, 0.0005392170278355479, -0.011111966334283352, -0.02823040261864662, -0.009507966227829456, -0.013091371394693851, -0.012681839056313038, -0.021500427275896072, 0.03956078737974167, 0.022305840626358986, 0.0036584853660315275, 0.01560316700488329, -0.025295423343777657, -0.011221175082027912, -0.006115676835179329, -0.013036767020821571, -0.003781344974413514, -0.005143038462847471, 0.01119387336075306, -0.02066771127283573, -0.03754042834043503, 0.002436714945361018, 0.02548653818666935, 0.015903489664196968, 0.024926844984292984, -0.0002713149006012827, -0.02700180560350418, 0.012060715816915035, 0.006364808883517981, 0.007624119520187378, 0.02537732943892479, 0.013378043659031391, 0.010729736648499966, 0.02130931243300438, 0.006361396051943302, 0.007999523542821407, -0.013917260803282261, -0.021623287349939346, -0.007426179014146328, -0.005149864125996828, -0.007706026080995798, -0.008525090292096138, -0.015712374821305275, -0.01774638332426548, 0.02401222288608551, -0.004225004464387894, 0.009077957831323147, 0.01886577159166336, -0.02973201870918274, 0.034974027425050735, 0.0001218997422256507, 0.002653425792232156, 0.008818588219583035, -0.010067660361528397, 0.01745971105992794, -0.03005964495241642, -0.008968749083578587, -0.00997210294008255, 0.0022234171628952026, -0.019589276984333992, 0.026128137484192848, -0.032161910086870193, 0.01276374515146017, 0.008115557953715324, 0.00849778763949871, -0.013821703381836414, 0.000716254289727658, -0.014429175294935703, 0.011951507069170475, 0.003364987438544631, 0.009207643568515778, 0.01474315021187067, -0.015384749509394169, -0.0020578980911523104, -0.009446537122130394, -0.0012533384142443538, -0.011951507069170475, -0.02044929563999176, 0.03229841962456703, 0.03571118414402008, 0.01724129542708397, -0.025582095608115196, 0.009746859781444073, 0.02689259685575962, -0.0018190044211223722, 0.019029583781957626, 0.010497668758034706, 0.014784103259444237, 0.023083951324224472, -0.020285481587052345, -0.018961329013109207, 0.004846128169447184, 0.015070775523781776, 0.006364808883517981, 0.007665073033422232, 0.03658485412597656, -0.016749856993556023, -0.01276374515146017, -0.01412885170429945, 0.0003013899258803576, -0.006767515558749437, -0.0064979069866240025, -0.007890315726399422, 0.04578566923737526, 0.005665191914886236, -0.009316851384937763, -0.008279371075332165, -0.006351158022880554, 0.0004389670502860099, 0.029458997771143913, -0.02937709167599678, 0.02091343142092228, 0.01560316700488329, 0.005272723734378815, 0.009480664506554604, 0.0025800513103604317, 0.004617472644895315, -0.028967559337615967, 0.022592512890696526, -0.0029127958696335554, -0.0029998214449733496, 0.034291476011276245, -0.020135320723056793, -0.025213517248630524, 0.03450988978147507, 0.02062675915658474, -0.011985634453594685, -0.0067606898956000805, 0.003047600155696273, 0.0023923490662127733, -0.01290708128362894, -0.0020783746149390936, -0.6334093809127808, -0.0036038809921592474, 0.016681600362062454, -0.023097600787878036, -0.006047421600669622, 0.01576698012650013, 0.017705431208014488, -0.002080081030726433, -0.011350859887897968, 0.032926369458436966, 0.009507966227829456, 0.005033830180764198, -0.014661243185400963, -0.016326673328876495, -0.014224409125745296, -0.031015219166874886, -0.004395642783492804, -0.022619813680648804, -0.004532153252512217, 0.016586042940616608, -0.023629993200302124, 0.021650588139891624, -0.0012994107091799378, -0.0004816266300622374, -0.0029400980565696955, -0.027124665677547455, 0.019548324868083, -0.013255183584988117, -0.0006949244998395443, 0.03530165180563927, -0.03647564351558685, 0.009159864857792854, 0.016900017857551575, 0.011821822263300419, 0.04297355189919472, -0.012654537335038185, -0.01659969426691532, 0.02214202657341957, 0.012777396477758884, 0.048543184995651245, -0.0282577034085989, -0.0024776682257652283, 0.02502240240573883, 0.017323201522231102, -0.0027694597374647856, 0.0052624852396547794, 0.022920137271285057, 0.0053887576796114445, -0.01407424733042717, -0.018838468939065933, 0.004880255553871393, -0.019316256046295166, -0.005682255607098341, -0.004535566084086895, 0.013794400729238987, -0.005009940825402737, 0.014333617873489857, -0.018306078389286995, -0.0019196809735149145, -0.0035322129260748625, 0.008381754159927368, 0.014715847559273243, -0.025459235534071922, -0.036994386464357376, -0.05083656683564186, 0.005518442951142788, -0.00645354064181447, -0.0280119851231575, 0.004074842669069767, -0.0030134725384414196, 0.02300204336643219, -0.013849005103111267, -0.0012226235121488571, -0.020108018070459366, -0.004211353603750467, 0.01948007009923458, 0.023643644526600838, -0.013323439285159111, -0.010954979807138443, 0.007856187410652637, -0.007658247370272875, -0.008832238614559174, -0.014511081390082836, -0.007323796395212412, 0.040297944098711014, 0.015289192087948322, -0.013453124091029167, -0.014360920526087284, 0.012477072887122631, -0.003576579038053751, 0.015644120052456856, 0.028994861990213394, -0.017978452146053314, -0.018988631665706635, 3.0208313546609133e-05, 0.04725998640060425, -0.010948154143989086, -0.0018138851737603545, -0.006334093865007162, -0.010552273131906986, -0.02570495568215847, -0.03300827369093895, 0.013541855849325657, 0.0014666363131254911, 0.036120716482400894, 0.01576698012650013, -0.005692494101822376, -0.008723030798137188, 0.019643882289528847, -0.03470100834965706, -0.006514970678836107, -0.009118910878896713, -0.01968483440577984, -0.02350713312625885, 0.03030536323785782, -0.018374333158135414, 0.004910970572382212, -0.007282842881977558, 0.011917379684746265, -0.016476834192872047, -0.0034264172427356243, -0.01655874215066433, -0.002318974584341049, 0.0027814044151455164, 0.007030298467725515, 0.01922069862484932, 0.03172507509589195, -0.004706204403191805, 0.021623287349939346, -0.008736681193113327, -0.005221532192081213, -0.02044929563999176, 0.0030271236319094896, -0.0008071191841736436, 0.02552749030292034, -0.00864112377166748, 0.02937709167599678, -0.007753804791718721, 0.0036653107963502407, -0.04646822437644005, -0.007487609051167965, 0.0011245064670220017, 0.009228119626641273, -0.019425464794039726, 0.01821052096784115, -0.031588565558195114, -0.02735673449933529, -0.0007055894238874316, -0.007665073033422232, -0.030032342299818993, -0.007514911238104105, -0.011241652071475983, -0.00251520867459476, 0.01871560886502266, -0.01659969426691532, 0.006224885582923889, 0.011528324335813522, -0.04556725546717644, -0.004453659988939762, -0.023425227031111717, -0.016927320510149002, 0.0008830532315187156, -0.01623111590743065, -0.011384988203644753, -0.019671184942126274, -0.004310323856770992, -0.0036926129832863808, 0.0016355682164430618, -0.021118197590112686, -0.035410862416028976, 0.007016647141426802, -0.002482787473127246, 0.008661600761115551, 0.0101700434461236, -0.0015186809469014406, 0.022005517035722733, -0.021391218528151512, -0.008088256232440472, 0.0017746384255588055, -0.01728224754333496, 0.022155677899718285, 0.012094843201339245, -0.007589992135763168, -0.010661481879651546, 0.029704716056585312, -0.00023612075892742723, 0.02066771127283573, 0.012306435033679008, -0.037676937878131866, 0.0033684002701193094, 0.013473601080477238, 0.008095080964267254, -0.013651064597070217, 0.003938332200050354, -0.026332903653383255, 0.01513903122395277, -0.028203099966049194, 0.007979047484695911, 0.012292783707380295, 0.028066588565707207, 0.02937709167599678, 0.012620409019291401, -0.0199442058801651, -0.0022950852289795876, 0.004750570748001337, -0.019862299785017967, 0.008907319977879524, -0.02236044406890869, 0.03319938853383064, 0.011521498672664165, -0.0009615468443371356, -0.004511676728725433, 0.0037847578059881926, -0.011091490276157856, 0.016476834192872047, 0.033062878996133804, 0.016135558485984802, 0.020490247756242752, -0.0053887576796114445, 0.007460306864231825, 0.011234826408326626, -0.004610646981745958, 0.03049647808074951, 0.006852834485471249, -0.0008041330147534609, 0.023602690547704697, -0.005484315101057291, 0.021623287349939346, 0.007187285460531712, -0.02537732943892479, -0.007910791784524918, 0.028421517461538315, 0.01886577159166336, 0.015862537547945976, 0.03784075006842613, 0.01965753361582756, 0.03500133007764816, -0.009501141496002674, 0.023097600787878036, 0.0025902895722538233, -0.007951744832098484, 0.007255540695041418, 0.027916427701711655, -0.015507609583437443, 0.027766264975070953, -0.010791166685521603, 0.010859422385692596, -0.002001587301492691, -0.02638750895857811, 0.014279013499617577, 0.014511081390082836, -0.00454580457881093, -0.034427985548973083, -0.01113926898688078, 0.028558026999235153, -0.00988337118178606, 0.019753091037273407, 0.004910970572382212, 0.00974003504961729, 0.025240818038582802, 0.011316732503473759, -0.016722554340958595, 0.016435882076621056, -0.00824524275958538, 0.012436119839549065, -0.003436655504629016, -0.022456001490354538, -0.03628452867269516, -0.00920081790536642, -0.012688664719462395, 0.004873429890722036, -0.014661243185400963, 0.006255600601434708, -0.006921089719980955, -0.014497430995106697, -0.0005076489760540426, -0.001006765989586711, -0.0027387449517846107, -0.0035799916367977858, 0.02286553382873535, -0.025582095608115196, -0.017009226605296135, 0.01110514160245657, 0.02095438353717327, 0.011214349418878555, -0.01937086135149002, -0.008252068422734737, -0.002167106606066227, 0.02069501392543316, 0.002549336291849613, 0.0010946447728201747, -0.012941209599375725, -0.007822060026228428, -0.0004816266300622374, 0.005392170511186123, 0.020544853061437607, 0.04417484626173973, -0.0290494654327631, -0.007603642996400595, 0.009978928603231907, 0.007433004677295685, 0.021909959614276886, -0.01829242706298828, -0.03265334665775299, 0.033636223524808884, -0.013514554128050804, -0.023875711485743523, -0.03142474964261055, -0.01752796769142151, -0.02671513333916664, 0.009364630095660686, 0.004395642783492804, -0.018060358241200447, -0.011801345273852348, -0.023561738431453705, 0.02012166939675808, 0.012217703275382519, -0.006197583395987749, 0.0211318489164114, -0.003958808723837137, 0.002673902316018939, -0.013453124091029167, 0.01173309050500393, 0.029240580275654793, 0.07491704076528549, 0.01330296229571104, -0.0029281533788889647, 0.018592750653624535, -0.011862775310873985, -0.02772531285881996, -0.015111728571355343, -0.021159149706363678, 0.03199809417128563, 0.009391932748258114, -0.014374570921063423, 0.008723030798137188, 0.0041669877246022224, -0.006450128275901079, 0.0058119408786296844, -0.00946701318025589, -0.007992698810994625, -0.018811166286468506, 0.0008856127969920635, 0.002240481087937951, 0.009460187517106533, -0.00500311516225338, 0.021049940958619118, 0.007678723894059658, 0.02029913291335106, 0.009159864857792854, 0.025459235534071922, 0.008470485918223858, 0.0002683287311811, -0.02660592459142208, -0.023643644526600838, 0.016722554340958595, 0.010251949541270733, 0.01492061372846365, -0.01760987378656864, 0.022169329226017, 0.005392170511186123, -0.026414809748530388, -0.030005039647221565, 0.0019213873893022537, 0.005525268614292145, 0.032817158848047256, 0.005006527993828058, -0.007514911238104105, 0.011596579104661942, -0.02066771127283573, -0.012088017538189888, 0.022415047511458397, -0.003808647161349654, -0.004951923619955778, 0.028639933094382286, 0.01792384870350361, -0.011344035156071186, 0.02595067396759987, 0.0005763308727182448, -0.005272723734378815, 0.0059757535345852375, -0.007740153465420008, -0.03177968040108681, -0.013794400729238987, -0.03186158463358879, -0.0199442058801651, -0.005620826035737991, -0.014319966547191143, -0.012395166791975498, -0.03491942211985588, -0.0056413025595247746, 0.0018889660714194179, -0.029813924804329872, 0.0191524438560009, -0.0014145915629342198, -0.048543184995651245, -0.03210730478167534, -0.0008126649190671742, 0.0290494654327631, 0.01739145629107952, 6.937513535376638e-05, -3.722048131749034e-05, 0.007508085574954748, 0.014606638811528683, 0.000525139388628304, -0.021555030718445778, -0.0036584853660315275, -0.026974502950906754, 0.012019762769341469, -0.012347388081252575, -0.025568444281816483, 0.0013250064803287387, -0.022264886647462845, 0.004781285300850868, 0.002153455512598157, -0.010736562311649323, 0.000601073435973376, -0.003103910945355892, 0.011030060239136219, 0.032052699476480484, 0.023206809535622597, -0.012067541480064392, 0.02599162794649601, -0.038141075521707535, 0.013562332838773727, -0.02040834166109562, -0.018783865496516228, -0.02271537110209465, 0.0024008809123188257, 0.004815413150936365, 0.0012746681459248066, 0.013637413270771503, -0.022838231176137924, -0.0005409234436228871, 0.006357983220368624, 0.011821822263300419, 0.003088553436100483, 0.0017695192946121097, 0.011241652071475983, -0.015930792316794395, 0.00237187254242599, 0.02012166939675808, 0.01670890301465988, -0.009228119626641273, -0.009985754266381264, -0.006549098063260317, 0.03794996067881584, 0.012702316045761108, -0.008040477521717548, 0.0064262389205396175, 0.01922069862484932, -0.01897498033940792, -0.027097363024950027, 0.007712851744145155, -0.013043592683970928, 0.004883668385446072, -0.0171730387955904, -0.0102929025888443, -0.013712494634091854, 0.008518264628946781, -0.007665073033422232, -0.00018716890190262347, -0.02487223967909813, -0.0004957042983733118, -0.011146094650030136, 0.011596579104661942, 0.004416119307279587, -0.007125855889171362, 0.011207523755729198, -0.02412143163383007, -0.02304299734532833, 0.008252068422734737, 0.0033155023120343685, 0.025623047724366188, -0.019930554553866386, -0.01864735409617424, -0.0199442058801651, -0.008627472445368767, -0.010101787745952606, -0.019575627520680428, -0.013637413270771503, -0.010245123878121376, 0.06148439645767212, 0.008832238614559174, -0.0002862457768060267, 0.00961034931242466, 0.01842893660068512, 0.018442587926983833, -0.012804699130356312, 0.002977638505399227, -0.026155440136790276, -0.02473573014140129, 0.004074842669069767, 0.0004645627923309803, -0.006054247263818979, -0.0006825532182119787, -0.009815115481615067, 0.02170519344508648, 0.00497581297531724, 0.01937086135149002, -0.022988392040133476, -0.0020647235214710236, -0.0282577034085989, -0.043355781584978104, -0.007589992135763168, 0.04319196939468384, -0.006835770793259144, -0.00477104727178812, -0.021268358454108238, -0.004098732024431229, 0.011323558166623116, -0.008996051736176014, 0.026728784665465355, 0.007153158076107502, 0.0288037471473217, -0.004760808777064085, -0.013118673115968704, 0.01043623872101307, -0.0024913193192332983, -0.004695966374129057, -0.004190877079963684, -0.0435468964278698, -0.001695291604846716, -0.007938094437122345, 0.02480398491024971, 0.005248834379017353, -0.019070537760853767, 0.013398519717156887, 0.012122145853936672, 0.02894025668501854, -0.02469477616250515, -0.024667473509907722, 0.008402230218052864, -0.009248596616089344, 0.0008711085538379848, -0.020312784239649773, -0.008914145641028881, 0.02027183026075363, -0.012791047804057598, -0.0035663405433297157, 0.02170519344508648, 0.02109089493751526, -0.02790277637541294, -0.015958094969391823, 0.017828291282057762, 0.0035014981403946877, 0.03557467460632324, 0.01502982247620821, 0.024571916088461876, 0.008620647713541985, -0.0012175043812021613, -0.0049894643016159534, -0.023780154064297676, 0.012675013393163681, -0.02236044406890869, 0.0022643704432994127, 0.03524705022573471, -0.008176987990736961, -0.0030390683095902205, 0.010961804538965225, -0.005395583342760801, 0.012743269093334675, -0.03481021523475647, 0.029650112614035606, 0.017719082534313202, -0.005900672636926174, -0.04589487984776497, -0.03560197725892067, -0.006194170564413071, 0.014606638811528683, 0.0038632513023912907, 0.020613107830286026, -0.00576757499948144, 0.0034810216166079044, 0.0054160598665475845, 0.042864345014095306, -0.01710478402674198, 0.017869243398308754, -0.010989107191562653, -0.005160102620720863, -0.016831763088703156, -0.008484136313199997, -0.0007405702490359545, -0.01447012834250927, 0.00923494528979063, 0.02271537110209465, -0.025800513103604317, -0.005573047325015068, 0.012954859994351864, 0.020817873999476433, -0.01441552396863699, -0.01434726919978857, -0.02451731264591217, 0.02940439246594906, -0.014033294282853603, 0.000447925558546558, -0.0138080520555377, -0.0027233874425292015, 0.030769499018788338, -0.016940971836447716, -0.010381634347140789, -0.006306791678071022, -0.002457191701978445, 0.009364630095660686, 0.018265124410390854, 0.011350859887897968, 0.0005938213435001671, -0.001916268258355558, 0.01560316700488329, -0.007992698810994625, -1.809032619348727e-05, 0.0007563543040305376, -0.002291672397404909, -0.024203337728977203, -0.01932990737259388, -0.0007845096406526864, -0.0011159745045006275, 0.012088017538189888, 0.004139685537666082, -0.0004521915107034147, 0.0018224171362817287, 0.041553840041160583, -0.014661243185400963, -0.0030510129872709513, 0.025513840839266777, 0.00012104654888389632, -0.044338658452034, 0.026797039434313774, 0.010838945396244526, -0.008647949434816837, 0.03289906680583954, -0.004378579091280699, -0.01609460450708866, -0.013917260803282261, 0.010340681299567223, 0.00693815341219306, 0.030769499018788338, -0.014538384042680264, 0.011030060239136219, 0.019821345806121826, -0.003424710826948285, -0.004119208548218012, -0.013760273344814777, -0.0009077957947738469, 0.002619297942146659, 0.017992103472352028, 0.013180103152990341, -0.012224528007209301, 0.014770451933145523, -0.001609972445294261, 0.014087898656725883, -0.011937855742871761, -0.02973201870918274, -0.035110536962747574, -0.02429889515042305, -0.014429175294935703, -0.0018548384541645646, 0.001340363873168826, 0.007549038622528315, -0.024790333583950996, -0.01339169405400753, 0.022660767659544945, 0.0039007917512208223, 0.007876664400100708, 0.0175689198076725, -0.012456596828997135, 0.00017575746460352093, 0.02803928777575493, 0.0016620170790702105, -0.052392784506082535, -0.013671541586518288, -0.01767812855541706, -0.026578623801469803, -0.00446389801800251, -0.010477191768586636, 0.04791523888707161, 0.008265719749033451, -0.02480398491024971, -0.025500189512968063, -0.028558026999235153, -0.04207258298993111, -0.01346677541732788, -0.013705668970942497, 0.03074219822883606, 0.03942427411675453, 0.03568388149142265, 0.012695490382611752, 0.02581416256725788, -0.010333855636417866, 0.02394396811723709, -0.03502863273024559, -0.006477429997175932, -0.016285719349980354, -0.023984920233488083, -0.0035595151130110025, -0.010873072780668736, -0.033499713987112045, 0.0007606202852912247, 0.00849778763949871, -0.0193981621414423, 0.005306851584464312, 0.021268358454108238, -0.01897498033940792, -0.005764162167906761, -0.018947677686810493, 0.0016014404827728868, 0.0356292799115181, 0.01713208667933941, 0.016927320510149002, -0.033390503376722336, 0.012115320190787315, 0.01926165260374546, -0.0023087363224476576, -0.01002670731395483, 0.010129090398550034, 0.027315780520439148, 0.003597055561840534, 0.011855949647724628, -0.0009538681479170918, -0.030086945742368698, -0.003853013040497899, -0.01025877520442009, 0.006013294216245413, 0.006136153358966112, 0.013548681512475014, 0.022769976407289505, -0.0052897874265909195, 0.017254944890737534, -0.012593107298016548, 0.011111966334283352, 0.01124847773462534, 0.009801464155316353, 0.019643882289528847, -0.03923315927386284, -0.010859422385692596, -0.01774638332426548, 0.0035014981403946877, 0.005340978968888521, -0.0032233577221632004, -0.01315962616354227, -0.009187166579067707, -0.022264886647462845, -0.01684541441500187, 0.018265124410390854, -0.015275541692972183, 7.326782360905781e-05, -0.0038018214982002974, -0.008757158182561398, -0.012067541480064392, 0.005904085468500853, -0.015016171149909496, -0.012081191875040531, 0.009480664506554604, -0.011384988203644753, 0.012722792103886604, -0.043355781584978104, -0.0036721364594995975, 0.0197940431535244, -0.018661005422472954, 0.004334213212132454, 0.1974489986896515, -0.009426060132682323, 0.025677653029561043, 0.024667473509907722, 0.00880493689328432, -0.0031192682217806578, -0.004842715337872505, 0.012756920419633389, 0.0004182771663181484, 0.014647592790424824, 0.017951149493455887, -0.009187166579067707, -0.022169329226017, -0.0026977916713804007, 0.007098553702235222, -0.018278775736689568, -0.037813447415828705, -0.018237821757793427, -0.007951744832098484, 0.012142621912062168, 0.013767099007964134, -0.013705668970942497, -0.016067303717136383, -0.008067779242992401, 0.04327387362718582, 0.02836691215634346, 0.007685549557209015, 0.023425227031111717, 0.02354808710515499, 0.0274659413844347, -0.002482787473127246, -0.00036772555904462934, 0.018838468939065933, -0.009153039194643497, -0.013405345380306244, -0.010504494421184063, 0.011098315939307213, -0.012067541480064392, 0.010606877505779266, 0.019166095182299614, 0.0034878470469266176, -0.021432172507047653, 0.0011833766475319862, -0.04351959377527237, 0.01620381325483322, -0.009760511107742786, -0.008054127916693687, -0.002496438566595316, 0.01011543907225132, 0.022592512890696526, -0.006221472751349211, 0.012715966440737247, 0.012995813973248005, 0.010354332625865936, -0.0053785196505486965, 0.017091132700443268, -0.016067303717136383, 0.005791464354842901, -0.01616286113858223, 0.008176987990736961, -0.0042045279406011105, 0.002559574553743005, 0.0075831664726138115, 2.3782713469699956e-05, -0.03382733836770058, 0.030605686828494072, 0.0055150301195681095, 0.015166332945227623, 0.00545360054820776, -0.008320324122905731, 0.0038905534893274307, -0.0036857875529676676, -0.03388194367289543, 0.01846989057958126, -0.005446774885058403, -0.00037625746335834265, 0.017091132700443268, 0.022879185155034065, 0.06082914397120476, 0.01842893660068512, 0.0033086768817156553, 0.01724129542708397, -0.01531649474054575, -0.01627206988632679, 0.00993797555565834, -0.008941447362303734, 0.027943730354309082, -0.023807456716895103, 0.007992698810994625, -0.01706383004784584, -0.004951923619955778, 0.006023532245308161, 0.010579574853181839, -0.01609460450708866, 0.005555983167141676, -0.003521974664181471, 0.00011155479296576232, 0.007467132527381182, -0.015193634666502476, -0.026524018496274948, -0.016900017857551575, 0.04193606972694397, 0.02566400170326233, 0.0280119851231575, -0.01139181386679411, 0.007835711352527142, 0.002243893686681986, 0.007235064171254635, 0.01395138818770647, 0.0027097363490611315, -0.0013139150105416775, -0.04633171483874321, 0.020544853061437607, -0.009985754266381264, -0.004893906880170107, 0.03052378073334694, 0.03653024882078171, -0.0058119408786296844, 0.006289727985858917, 0.005985992029309273, 0.017473362386226654, -0.007323796395212412, 0.011180222034454346, 0.0012226235121488571, -0.012504375539720058, -0.027698010206222534, -0.002259251195937395, 0.007037123665213585, -0.03936966881155968, -0.015480306930840015, 0.00968543067574501, -0.010327030904591084, 0.022688070312142372, -0.007494434714317322, 0.0014120320556685328, -0.012006111443042755, -0.012586281634867191, -0.01651778817176819, -0.002127859741449356, 0.0034076471347361803, 0.009098434820771217, -0.00517375348135829, 0.007958570495247841, 0.0015673128655180335, 0.0035014981403946877, 0.018893074244260788, -0.01893402636051178, 0.008129209280014038, -0.027206571772694588, -0.013828528113663197, 0.009746859781444073, 0.007323796395212412, -0.013009464368224144, -0.012033413164317608, 0.0295955091714859, -0.0199442058801651, -0.05247469246387482, -0.028285006061196327, 0.020381039008498192, 0.015043472871184349, -0.05583285540342331, 0.007671898230910301, 0.04657743126153946, 0.019015932455658913, -0.014538384042680264, -0.009501141496002674, -0.17396916449069977, 0.000499970221426338, -0.0006253893952816725, -0.00957622192800045, -0.01133720949292183, 0.025800513103604317, 0.003870076732710004, -0.012272306717932224, -0.019425464794039726, -0.0025100894272327423, 0.0019657532684504986, -0.013603285886347294, -0.04360150173306465, -0.018347030505537987, 0.007733328267931938, -0.022483304142951965, 0.003187523689121008, 0.028639933094382286, 0.050017502158880234, -0.005358043126761913, 0.020831525325775146, -0.028721841052174568, -0.010927677154541016, -0.01886577159166336, 0.007842537015676498, 0.019589276984333992, -0.006648068316280842, 0.023930316790938377, 0.004736919421702623, -0.02812119387090206, 0.013678367249667645, -0.004102144856005907, 0.010893549770116806, -0.004655012860894203, -0.0007537947385571897, -0.01085259672254324, -0.016353975981473923, -0.023411575704813004, -0.012101668864488602, 0.024503661319613457, 0.035083238035440445, 0.004405881278216839, 0.011521498672664165, 0.007187285460531712, 0.007637770846486092, 0.028721841052174568, 0.031015219166874886, -0.01818321831524372, 0.014606638811528683, -0.005402409005910158, 0.012401992455124855, -0.02973201870918274, 0.006743625737726688, 0.006047421600669622, 0.017227644100785255, 0.01445647794753313, 0.016244767233729362, 0.03573848679661751, -0.003484434215351939, -0.0013488958356902003, -0.00014216304407455027, -0.012750094756484032, -0.004085081163793802, -0.011002758517861366, -0.02148677594959736, -0.027875473722815514, -0.012620409019291401, 0.029868530109524727, -0.01060005184262991, 0.019521022215485573, 0.01739145629107952, 0.0030458937399089336, 0.013139150105416775, 0.0081906383857131, 0.010784341022372246, 0.0018343618139624596, -0.0207359679043293, 0.007992698810994625, 0.03797726333141327, -0.008968749083578587, 0.011453242972493172, 0.005102085415273905, 0.012401992455124855, -0.003022004384547472, -0.008217941038310528, -0.013671541586518288, -0.005914323963224888, -0.0012055597035214305, -0.007753804791718721, -0.013036767020821571, 0.02891295589506626, -0.025008751079440117, -0.0009001170983538032, 0.0009760511456988752, 0.0001225396408699453, 0.00255616195499897, 0.025431932881474495, 0.011753566563129425, -0.0008186372579075396, -0.012968511320650578, 0.004863191861659288, 0.002858191728591919, -0.03420956805348396, 0.023452529683709145, 0.031260937452316284, 0.011152920313179493, 0.01735050417482853, -0.007351098116487265, 0.03494672477245331, -0.02027183026075363, -0.03229841962456703, 0.013186928816139698, 0.020135320723056793, -0.0007781106978654861, -0.029540903866291046, 0.02645576372742653, -0.010873072780668736, -0.027370383962988853, 0.009726383723318577, -0.01781463995575905, 0.040052223950624466, -0.044912002980709076, -0.01423806045204401, 0.0042693703435361385, -0.0029076768551021814, -0.01961657963693142, -0.10920851677656174, -0.023930316790938377, 0.029923133552074432, 0.008866366930305958, -0.004470723681151867, 0.020886128768324852, 0.009603523649275303, 0.028967559337615967, 0.0092554222792387, 0.03019615449011326, -0.01968483440577984, 0.0049894643016159534, 0.0035595151130110025, -0.021650588139891624, 0.02087247744202614, -0.0013685192679986358, 0.00480517465621233, -0.01800575479865074, -0.010634179227054119, 0.0359296016395092, -0.001110002165660262, -0.006716324016451836, -0.002402587328106165, 0.013739796355366707, -0.007112204562872648, -0.02354808710515499, -0.032052699476480484, 0.003607293823733926, 0.017200341448187828, 0.003917855676263571, 0.03330859914422035, -0.01767812855541706, 0.018947677686810493, -0.027629755437374115, 0.0015724319964647293, -0.007139506749808788, -0.025827813893556595, -0.014360920526087284, 0.009426060132682323, -0.021677890792489052, 0.006702672690153122, 0.006071310956031084, 0.017118435353040695, -0.03822297975420952, -0.008013174869120121, 0.0021636937744915485, -0.02504970319569111, 0.0319707952439785, 0.013255183584988117, -0.004852953366935253, -0.027670707553625107, -0.02750689536333084, -0.05160102620720863, -0.026837993413209915, 0.030250759795308113, 0.029185976833105087, 0.008654775097966194, 0.008955098688602448, -0.021582333371043205, 0.006972281262278557, -0.01085259672254324, -0.006119089666754007, -0.0001602933625690639, 0.016394928097724915, 0.01407424733042717, 0.008006349205970764, -0.0017123554134741426, -0.003941745031625032, -0.018333379179239273, 0.005358043126761913, -0.02145947329699993, -0.0007358777220360935, -0.018565448001027107, 0.006149804685264826, -0.023711899295449257, -0.002885493915528059, -0.005753923673182726, -0.012326911091804504, 0.006743625737726688, 0.02566400170326233, -0.006979106925427914, -0.018442587926983833, 0.01481140498071909, -0.020886128768324852, 0.007303319405764341, 0.0015656064497306943, 0.01099593285471201, -0.016586042940616608, 0.024790333583950996, -0.04272783175110817, 0.018620051443576813, 0.026373857632279396, 0.0047915237955749035, 0.020831525325775146, -0.018633702769875526, 0.0034929662942886353, 0.003122681053355336, -0.001096351188607514, 0.015903489664196968, 0.006265838630497456, -0.0004918649210594594, 0.0039007917512208223, -0.05269310995936394, 0.00272680027410388, 0.01440187357366085, 0.00500311516225338, 0.022838231176137924, -0.018742911517620087, -0.0023343320935964584, -0.006934741046279669, -0.0012072660028934479, -0.014197107404470444, -0.024216989055275917, 0.01344629842787981, -0.00474374508485198, -0.0014197106938809156, -0.016135558485984802, -0.006583225913345814, 0.023739201948046684, 0.003115855623036623, 0.010948154143989086, 9.865027095656842e-05, -0.017077481374144554, -0.010647830553352833, 0.010197345167398453, 0.019521022215485573, -0.01441552396863699, 0.01605365239083767, -0.014620290137827396, 0.011528324335813522, -0.014265362173318863, -0.03855060786008835, 0.01076386496424675, 0.010013055987656116, -0.005907498300075531, 0.016681600362062454, -0.0007363043259829283, -0.043355781584978104, 0.02145947329699993, 0.0029400980565696955, 0.0105659244582057, 0.022851882502436638, -0.018374333158135414, -0.01463394146412611, 0.01513903122395277, -0.016217464581131935, -0.012272306717932224, -0.011821822263300419, -0.018893074244260788, -0.012012937106192112, 0.006375047378242016, 0.006320443004369736, 0.04952606186270714, 0.0050543067045509815, -0.02891295589506626, -0.022401398047804832, 0.002291672397404909, -0.012012937106192112, 0.007944920100271702, 0.035902298986911774, 0.0033274469897150993, -0.005904085468500853, 0.0449393056333065, -0.005115736275911331, 0.006132740993052721, -0.00810190662741661, 0.029568206518888474, -0.01649048551917076, -0.04794253781437874, -0.023698247969150543, 0.011931031011044979, -0.02372555062174797, -0.0005746245151385665, -0.02869453839957714, 0.03041457198560238, 0.017050180584192276, 0.01076386496424675, 0.017364153638482094, -0.013405345380306244, -0.01919339783489704, 0.006883549503982067, 0.021718844771385193, 0.012292783707380295, -0.01470219623297453, -0.016749856993556023, 0.013337090611457825, 0.014906962402164936, 0.013275660574436188, -0.007364749442785978, 0.029813924804329872, 0.004979225806891918, 0.014169804751873016, -0.002812119433656335, 0.007112204562872648, -0.014947915449738503, 0.019302604719996452, 0.0035868172999471426, 0.013029941357672215, -0.021268358454108238, 0.012545328587293625, 0.016749856993556023, 0.011739915236830711, -0.007091728039085865, 0.015357447788119316, 0.006723149213939905, -0.026360206305980682, -0.01825147308409214, 0.009910672903060913, -0.0268243420869112, -0.019125141203403473, 0.012668187730014324, 0.012934383936226368, 0.007685549557209015, -0.010961804538965225, 0.003334272652864456, 0.008231592364609241, -0.03265334665775299, -0.007235064171254635, -0.006125915329903364, -0.0332539938390255, -0.02711101435124874, 0.003521974664181471, 0.015739677473902702, 0.01976674236357212, 0.01882481761276722, -0.03300827369093895, 0.027056410908699036, -0.01829242706298828, 0.019534673541784286, -0.01879751682281494, 0.020763268694281578, -0.028612632304430008, -0.010825294069945812, -0.003593642730265856, 0.007712851744145155, -0.014046945609152317, -0.018620051443576813, -0.001803646911866963, -0.015302843414247036, 0.008054127916693687, -0.0009513085824437439, 0.08496422320604324, 0.032598741352558136, -0.016476834192872047, 0.008811762556433678, -0.02671513333916664, 0.0016219171229749918, 0.0110846646130085, 0.012995813973248005, -0.00036815216299146414, -0.020258180797100067, 0.022701719775795937, -0.011951507069170475, -0.009856068529188633, -0.012408818118274212, -0.021254707127809525, -0.009767336770892143, 0.004808587487787008, 0.01526189036667347, 0.0035185618326067924, 0.013255183584988117, 0.02803928777575493, 0.01389678381383419, 0.009746859781444073, -0.01386265642940998, -0.04149923846125603, -0.01842893660068512, 0.03330859914422035, 0.020203575491905212, -0.01673620566725731, -0.019712137058377266, 0.019466418772935867, -0.014538384042680264, -0.0288037471473217, -0.022619813680648804, -0.018019406124949455, 0.030250759795308113, -0.012081191875040531, -0.02638750895857811, 0.011705787852406502, 0.026141788810491562, 0.017555268481373787, 0.014647592790424824, -0.012770570814609528, -0.00562423886731267, -0.004153336398303509, 0.0015101489843800664, -0.000898410682566464, -0.012245004996657372, -0.0004133713082410395], "806ac9c6-f9f4-4b6a-ac29-457e0f5cf879": [0.0019156238995492458, -0.008874526247382164, 0.024870585650205612, -0.023391498252749443, -0.008073353208601475, 0.019022710621356964, -0.021939801052212715, -0.02780137024819851, -0.016872555017471313, -0.03686762973666191, 0.013263855129480362, 0.033197302371263504, 0.023418888449668884, -0.0020885264966636896, -0.015270210802555084, 0.010620671324431896, 0.032156459987163544, -0.010490566492080688, 0.005683531519025564, -0.011599881574511528, -0.03864801302552223, -0.010798709467053413, -0.01666712760925293, -0.012798217125236988, -0.027938323095440865, 0.009340164251625538, 0.019488349556922913, -0.015256515704095364, -0.03738804906606674, 0.02094004675745964, -0.0036977191921323538, -0.01931031048297882, -0.0010630942415446043, -0.01270235050469637, -0.021323513239622116, 0.008422582410275936, 0.009079954586923122, 0.0011307145468890667, 0.014434799551963806, -0.009997537359595299, 0.02792462706565857, 0.006015641149133444, -0.0002381690574111417, -0.013407655991613865, -0.01010025106370449, 0.023240849375724792, 0.010031775571405888, -0.002319633960723877, -0.011606729589402676, 0.0001372735423501581, -0.012318883091211319, 0.0022066482342779636, -0.0338272824883461, 0.02143307588994503, -0.015790630131959915, -0.01282560732215643, 0.011291738599538803, -0.0013173124752938747, 0.006032760255038738, 0.009032021276652813, 0.007306419312953949, 0.004105153027921915, -0.0006843348382972181, -0.006087541580200195, -0.018803587183356285, -0.025788167491555214, -0.01743406057357788, -0.023720184341073036, -0.011476624757051468, -0.023391498252749443, 0.034977685660123825, 0.020063551142811775, 0.002359007950872183, 0.00043161454959772527, -0.02708921581506729, -0.007641952950507402, -0.013517217710614204, -0.021364599466323853, -0.012736587785184383, 0.009819498285651207, 0.010860337875783443, -0.02044701762497425, -0.040483176708221436, 0.006423075217753649, 0.032731663435697556, 0.023733878508210182, 0.0137637322768569, 0.005156264174729586, -0.003237216267734766, 0.013695255853235722, 0.0025986749678850174, 0.014119809493422508, 0.020611360669136047, 0.01743406057357788, 0.02389822155237198, 0.020364845171570778, 0.008004876784980297, 0.013051578775048256, -0.01514695305377245, -0.02402147836983204, -0.019734863191843033, 0.002115917159244418, -0.015092172659933567, -0.011086310259997845, -0.03489551320672035, -0.0046769301407039165, 0.020803093910217285, -0.008155524730682373, 0.003981895744800568, 0.01980333961546421, -0.03538854047656059, 0.03555288538336754, -0.0045707919634878635, 0.012818759307265282, 0.01703689806163311, -0.009662003256380558, 0.03426552936434746, -0.029773486778140068, -0.014955219812691212, -0.011189023964107037, 0.00633405614644289, -0.02303542010486126, 0.03538854047656059, -0.017735356464982033, 0.02854091301560402, 0.014448495581746101, 0.009429183788597584, -0.00902517419308424, 0.009764717891812325, -0.013291246257722378, 0.012757130898535252, 0.0017701118486002088, 0.011908025480806828, 0.018680328503251076, -0.01851598545908928, -0.0017178986454382539, -0.008463668636977673, 0.004040100611746311, -0.0036018523387610912, -0.02859569527208805, 0.020625056698918343, 0.027020741254091263, 0.02192610502243042, -0.026733139529824257, -0.0059471651911735535, 0.024432336911559105, -0.0069469185546040535, 0.011168481782078743, 0.0067346422001719475, 0.008347258903086185, 0.01139445323497057, -0.034922901540994644, -0.011401300318539143, -0.003625818993896246, 0.02402147836983204, 0.01955682598054409, 0.006419651210308075, 0.011113700456917286, -0.014681315049529076, 0.0029496157076209784, -0.017844919115304947, 0.011476624757051468, 0.013976008631289005, -0.004841273184865713, -0.006320360582321882, 0.04144184663891792, 0.016133012250065804, -0.006635351572185755, -0.004656387027353048, -0.00551234045997262, -0.0071831620298326015, 0.022473914548754692, -0.024733632802963257, 0.004430415574461222, 0.019543129950761795, 0.007888467982411385, 0.002067983616143465, 0.009367555379867554, -0.0056458692997694016, -0.04541346803307533, 0.025569044053554535, -0.0020868147257715464, -0.005279521457850933, 0.02392561174929142, -0.022432830184698105, -0.022378047928214073, 0.026514016091823578, 0.020214198157191277, 0.0023110744077712297, -0.008621163666248322, 0.00688871368765831, 0.011271195486187935, -0.002281971974298358, -0.0022717006504535675, -0.637212872505188, 0.00822400115430355, 0.013722646981477737, -0.012661264277994633, -0.00953189842402935, 0.009709936566650867, 0.020159417763352394, -0.008299325592815876, -0.006303241476416588, 0.030458249151706696, 0.023227155208587646, 0.01565367728471756, 2.0636503904825076e-05, -0.0035915810149163008, -0.009620917029678822, -0.027472684159874916, -0.0005906079313717782, -0.03500507399439812, -0.01179161574691534, 0.011860092170536518, -0.026431843638420105, 0.03511463850736618, -0.0014491293113678694, 0.006200527306646109, 0.017365584149956703, -0.022610867395997047, 0.01765318587422371, -0.015078476630151272, 0.002785272663459182, 0.029006551951169968, -0.005173382814973593, 0.005200773477554321, -0.00023388929548673332, 0.01103837601840496, 0.047741662710905075, -0.006351175252348185, -0.009757869876921177, 0.01317483652383089, 0.009997537359595299, 0.030211735516786575, -0.018433814868330956, -0.02072092331945896, 0.02152894251048565, 0.001255683833733201, 0.0036497858818620443, 0.0015099019510671496, 0.00644361786544323, 0.00859377346932888, -0.009935908019542694, -0.02130981907248497, 0.014708705246448517, -0.0044954679906368256, -0.004656387027353048, -0.01001123245805502, -4.132650701649254e-06, 0.0020953742787241936, 0.024487117305397987, -0.01933770254254341, 0.0210633035749197, -0.005262402351945639, 0.011120547540485859, 0.015338687226176262, -0.02767811343073845, -0.02832178957760334, -0.04283875972032547, 0.003584733232855797, 0.0013164564734324813, -0.029061334207654, -0.0012959135929122567, -0.0070530567318201065, 0.03851106017827988, -0.009292230941355228, 0.010504261590540409, -0.009360707364976406, -0.0209126565605402, 0.02121395245194435, 0.01464022882282734, -0.015256515704095364, -0.013092665001749992, 0.00858007837086916, -0.01574954390525818, -0.0026294891722500324, -0.02251500077545643, -0.007347505073994398, 0.03453943505883217, 0.0056458692997694016, -0.008422582410275936, -0.023692792281508446, -0.0034306617453694344, 0.009292230941355228, -0.0023059388622641563, 0.031170403584837914, -0.02158372290432453, -0.025897730141878128, 0.005211045034229755, 0.024459727108478546, 0.004053795710206032, -0.0016271675704047084, 0.0013900684425607324, -0.01780383288860321, -0.019296616315841675, -0.021172866225242615, 0.012483226135373116, 0.0028092393185943365, 0.03032129630446434, 0.014708705246448517, -0.004704320337623358, -0.01288723573088646, 0.014571752399206161, -0.022775210440158844, -0.00045408334699459374, 9.394090011483058e-05, -0.019118577241897583, -0.019118577241897583, 0.01758470945060253, -0.01863924413919449, -0.002502808114513755, -0.008326715789735317, 0.016749298200011253, -0.010874032974243164, 0.0030386350117623806, -0.004998768679797649, 0.010415242053568363, -0.006525789387524128, 0.009682546369731426, 0.014243066310882568, 0.0033176757860928774, 0.0028058155439794064, 0.023569535464048386, -0.010476871393620968, -0.009929060935974121, -0.04385221004486084, 0.008669096976518631, -0.014133504591882229, 0.025486871600151062, -0.007943248376250267, 0.03390945494174957, -0.008265087381005287, -0.002102221827954054, -0.05006985738873482, -0.007518695667386055, 0.0023042268585413694, 0.020282674580812454, -0.023569535464048386, 0.006635351572185755, -0.03642938286066055, -0.01802295632660389, 0.0005773406592197716, 0.0007408277597278357, -0.014736095443367958, -0.012257254682481289, -0.007155771367251873, -0.0023641434963792562, 0.021022217348217964, -0.0238297451287508, 0.003202978055924177, 0.02419951744377613, -0.038702793419361115, -0.014188284985721111, -0.02081678993999958, -0.024651460349559784, 0.0027082369197160006, -0.025144489482045174, 0.009203212335705757, -0.010545346885919571, -0.007409133482724428, 0.005187078379094601, -5.665342177962884e-05, -0.028431352227926254, -0.016735602170228958, 0.018488595262169838, 0.0010810692328959703, -0.0016759569989517331, 0.028486132621765137, -0.001688796328380704, 0.02066614106297493, -0.018379034474492073, -0.0051768068224191666, 0.005810212343931198, -0.005611631087958813, 0.005686955060809851, 0.018118824809789658, 0.002687694039195776, -0.0046666585840284824, 0.03264949098229408, 0.006090965121984482, 0.023816050961613655, 0.010874032974243164, -0.022432830184698105, 0.007525543216615915, 0.008367801085114479, 0.014201981015503407, -0.016680821776390076, 0.000309855182422325, -0.013859598897397518, 0.00947027001529932, -0.02389822155237198, 0.0035367999225854874, -0.005844450555741787, 0.01807773858308792, 0.012216168455779552, 0.008901916444301605, -0.0210633035749197, 0.005998522043228149, 0.0042284103110432625, -0.027869846671819687, 0.017721662297844887, -0.01709168031811714, 0.02066614106297493, 0.008525297045707703, -0.010689147748053074, -0.00970308855175972, 0.009798956103622913, -0.006364870350807905, 0.00902517419308424, 0.03684023767709732, 0.018187299370765686, 0.008463668636977673, -0.006970885209739208, 0.004331124946475029, 0.007039361633360386, -0.003817552700638771, 0.04817990958690643, -0.005810212343931198, 0.001453409087844193, 0.027500074356794357, -0.007641952950507402, 0.030622592195868492, 0.010648061521351337, -0.025815557688474655, 0.009983841329813004, 0.027637027204036713, 0.017886005342006683, 0.013839056715369225, 0.040702302008867264, 0.022761516273021698, 0.030759545043110847, 0.001924183452501893, 0.03292339667677879, -0.0016845165519043803, -0.009894822724163532, -0.00044723571045324206, 0.02435016632080078, -0.0209126565605402, 0.02854091301560402, 0.0013036171440035105, 0.01706428825855255, -0.007902163080871105, -0.025500567629933357, 0.01933770254254341, 0.0127639789134264, -0.0007211408228613436, -0.02220001071691513, -0.0072037046775221825, 0.01992659829556942, -0.014503275975584984, 0.02693856880068779, 0.008518449030816555, 0.015612591989338398, 0.0027818488888442516, 0.00959352683275938, -0.01718754693865776, 0.011819005943834782, -0.005043277982622385, 0.01605083979666233, 0.0011469776509329677, -0.010175575502216816, -0.023816050961613655, -0.006224493961781263, 0.002766441786661744, 0.0023316172882914543, -0.022775210440158844, 0.0049850731156766415, 0.00046949050738476217, 0.008018572814762592, 0.0031105349771678448, 0.005758855026215315, 0.008449972607195377, -0.008621163666248322, 0.018995320424437523, -0.028951771557331085, -0.017886005342006683, 0.019995074719190598, 0.015667373314499855, 0.0034392212983220816, -0.015886496752500534, -0.009463422000408173, -0.012058673426508904, 0.016489088535308838, 0.002934208605438471, -0.007819991558790207, -0.006354598794132471, -0.009970146231353283, -0.01503739133477211, 0.002066271845251322, 0.010278290137648582, 0.028403962031006813, -0.017488842830061913, -0.01039469987154007, 0.017639489844441414, 0.001015160814858973, 0.007785753346979618, -0.016160402446985245, -0.02503492869436741, 0.024377556517720222, -0.018283167853951454, -0.021843934431672096, -0.017844919115304947, -0.006132050883024931, -0.028239618986845016, 0.006433346774429083, -0.003964776638895273, -0.027486378327012062, -0.010223508812487125, -0.025377308949828148, 0.007730972021818161, -0.0020388811826705933, 0.0016913641011342406, 0.029718706384301186, 0.011236957274377346, 0.013455589301884174, -0.027513770386576653, 0.007059904746711254, 0.03511463850736618, 0.08129504323005676, 0.016283659264445305, -0.004088033922016621, 0.012579092755913734, 0.004064067266881466, -0.0210633035749197, -0.0408940352499485, -0.015393467620015144, 0.038456279784440994, 0.008538992144167423, -0.024774719029664993, 0.021980885416269302, 0.014599143527448177, 0.0025575889740139246, 0.015557810664176941, -0.01177792064845562, -0.006775727961212397, -0.017721662297844887, -0.013921228237450123, 8.634431287646294e-05, 0.013674713671207428, 0.006498399190604687, 0.01574954390525818, 0.013044731691479683, 0.027102911844849586, 0.007922705262899399, 0.03404640778899193, 0.021871324628591537, -0.004950834903866053, -0.025911424309015274, -0.021145476028323174, 0.02054288424551487, 0.0077789053320884705, 0.013167988508939743, -0.01371579896658659, 0.023994088172912598, -0.00921005941927433, -0.007368047721683979, -0.023624317720532417, -0.0011974789667874575, -0.0048789349384605885, 0.026103157550096512, 0.004403024911880493, -0.008614316582679749, -0.0012873540399596095, -0.02051549404859543, -0.0027048131451010704, 0.025171881541609764, -0.0018865215824916959, -0.012161387130618095, 0.018255775794386864, 0.012811912223696709, -0.0225971732288599, 0.02244652435183525, 0.013756885193288326, -0.012880388647317886, 0.007511848118156195, -0.005337725859135389, -0.051768068224191666, -0.02195349521934986, -0.020132025703787804, -0.01223671156913042, -0.003766195382922888, -0.004659811034798622, -0.015722153708338737, -0.017392976209521294, 0.003334794891998172, 0.0016066246898844838, -0.016858860850334167, 0.010750776156783104, 0.015352382324635983, -0.05190502107143402, -0.02708921581506729, -0.008449972607195377, 0.025171881541609764, 0.026240110397338867, -0.009230602532625198, 0.008525297045707703, -0.0037593478336930275, 0.008860831148922443, 0.012743435800075531, -0.013277551159262657, 0.00039288264815695584, -0.028034189715981483, -0.0045707919634878635, -0.013188531622290611, -0.03908625990152359, -0.0009381250711157918, -0.0031053994316607714, 0.009538745507597923, -0.006974309217184782, 0.0015586913796141744, 0.008888221345841885, 0.012654416263103485, 0.01056588999927044, 0.014763486571609974, 0.025500567629933357, -0.004180477000772953, 0.01989920809864998, -0.03815498203039169, 0.006464160978794098, -0.0029547514859586954, -0.015475639142096043, -0.023391498252749443, 0.007963791489601135, 0.010894576087594032, -0.013791123405098915, -0.008176067844033241, -0.0029907014686614275, -0.011209567077457905, 0.004594758618623018, 0.014708705246448517, -0.009189517237246037, -0.009744174778461456, 0.019351396709680557, -0.02315867878496647, 0.0062963939271867275, 0.017379280179739, 0.03158126026391983, 0.00023239137954078615, -0.006337479688227177, -0.025623824447393417, 0.04256485775113106, 0.002463434124365449, -0.0005863281548954546, 0.006929799448698759, 0.025938814505934715, -0.03201950713992119, -0.021638505160808563, 0.008600620552897453, -0.015571506693959236, -0.004022981505841017, -0.01057958509773016, -0.020186807960271835, -0.030732154846191406, -0.007888467982411385, -0.005573969334363937, 0.006183408200740814, -0.02057027444243431, -0.0024874010123312473, -0.019091187044978142, 0.01183954905718565, 0.004522858187556267, -0.004940563812851906, 0.030403468757867813, -0.030403468757867813, -0.007094142492860556, 0.013647322542965412, 0.00616628909483552, 0.028403962031006813, -0.015913886949419975, -0.007559781428426504, -0.022378047928214073, -0.0182968620210886, -0.005413049831986427, -0.02691117860376835, -0.007313266862183809, 0.012065520510077477, 0.05015202984213829, 0.016091926023364067, 0.014982610009610653, 1.8830976841854863e-05, 0.014681315049529076, 0.004478348884731531, -0.019269226118922234, -0.010702842846512794, -0.03158126026391983, -0.015913886949419975, 0.013866446912288666, -0.01577693596482277, 0.008169220760464668, 0.012339426204562187, -0.0039031479973345995, 0.01036046165972948, -0.005276097450405359, 0.017173850908875465, -0.011586186476051807, -0.0035676141269505024, -0.0378262959420681, -0.04694733768701553, -0.00275617022998631, 0.03916843235492706, -0.014017094857990742, 0.014078723266720772, -0.021364599466323853, 0.0002629917289596051, 0.016708211973309517, -0.010428937152028084, 0.02244652435183525, 0.01543455384671688, 0.025363614782691002, -0.010312528349459171, -0.004539977293461561, 0.008408887311816216, -0.017639489844441414, -0.008326715789735317, -0.009401793591678143, -0.04787861555814743, -0.01333233155310154, -0.005642445757985115, 0.021296123042702675, 0.012291491962969303, -0.010798709467053413, 0.010613823309540749, 0.01740667037665844, 0.028267009183764458, -0.019543129950761795, -0.029526973143219948, 0.002240886213257909, -0.024925366044044495, -0.013770580291748047, -0.024254297837615013, -0.014023941941559315, 0.013428199104964733, -0.011045224033296108, -0.0049576829187572, 0.024747326970100403, 0.010381003841757774, -0.020994827151298523, -0.012647569179534912, 0.02272043004631996, -0.005293216556310654, 0.029061334207654, 0.006970885209739208, 0.033717721700668335, 0.02313128672540188, -0.0061457459814846516, -0.01789969950914383, -0.019502045586705208, 0.011257500387728214, -0.014393714256584644, 0.00777205778285861, 0.034922901540994644, -0.01780383288860321, 0.0015843699220567942, 0.02076200768351555, -0.019693778827786446, 0.00479676341637969, -0.03267688304185867, 0.01706428825855255, 0.0062963939271867275, -0.020282674580812454, -0.031006060540676117, -0.024103650823235512, -0.003930538427084684, 0.038456279784440994, 0.014352628029882908, 0.03149908781051636, -0.002460010349750519, 0.004392753355205059, 0.010750776156783104, 0.030184345319867134, -0.023720184341073036, 0.029417410492897034, -0.00771042937412858, -0.0018351643811911345, -0.024089954793453217, 0.0016451426781713963, -0.004615301266312599, -0.009018326178193092, 0.017146460711956024, 0.01172998733818531, -0.01750253699719906, -0.00015995631110854447, 0.001029712031595409, 0.017762746661901474, -0.006782575510442257, -0.012264101766049862, -0.015763239935040474, 0.027883540838956833, -0.0006958902231417596, -0.0035265283659100533, -0.010127642191946507, -0.012928321957588196, 0.019844425842165947, -0.025486871600151062, -0.01955682598054409, -0.0007754938560537994, 0.0069161043502390385, 0.009525050409138203, 0.009237450547516346, 0.002829782199114561, -0.005892383866012096, -0.0033929997589439154, 0.012264101766049862, -0.013024188578128815, -0.004646115470677614, 0.002470281906425953, 0.0037935860455036163, -0.024226907640695572, -0.018954234197735786, 0.004649539478123188, 0.003817552700638771, 0.011182176880538464, -0.009751022793352604, -0.011771072633564472, -0.0004964530235156417, 0.036182865500450134, 0.003766195382922888, -0.009319622069597244, 0.021076999604701996, 0.003273166250437498, -0.03311512991786003, 0.019392482936382294, 0.010709689930081367, -0.00045408334699459374, 0.009271688759326935, -0.010230355896055698, -0.021693285554647446, -0.02063875086605549, 0.008819744922220707, 0.005063821095973253, 0.0034272377379238605, -0.004937139805406332, 0.007059904746711254, 0.011819005943834782, 0.0028092393185943365, 0.012976255267858505, -0.009853736497461796, -0.013037883676588535, -0.0021963766776025295, 0.0013695255620405078, 0.001857419149018824, -0.01968008279800415, -0.007008547428995371, -0.014722400344908237, 0.01371579896658659, -0.01832425221800804, -0.02432277426123619, -0.02528144232928753, -0.027253558859229088, -0.009175821207463741, 0.008477363735437393, 0.0096893934533, -0.008675944991409779, -0.018844671547412872, -0.012188778258860111, 0.01679038442671299, -0.003964776638895273, 0.013257008045911789, 0.00638883700594306, -0.013969161547720432, 0.0021638504695147276, 0.012798217125236988, -0.006361446343362331, -0.035744618624448776, -0.010675451718270779, -0.008997783064842224, -0.024829499423503876, -0.0030762969981878996, -0.01542085874825716, 0.061245184391736984, -0.0004192032210994512, -0.02958175353705883, -0.011983348987996578, -0.021761761978268623, -0.03610069677233696, -0.02103591337800026, -0.008860831148922443, 0.022802600637078285, 0.048015568405389786, 0.03788108006119728, -0.00148764718323946, 0.02666466310620308, -0.02555534802377224, 0.013517217710614204, -0.043441351503133774, -0.011113700456917286, -0.014311542734503746, -0.020214198157191277, 0.0016699653351679444, -0.024089954793453217, -0.03908625990152359, 0.004707744345068932, -0.001415747101418674, -0.009066259488463402, 0.0015912175877019763, 0.013092665001749992, -0.004680353682488203, -0.010716537944972515, -0.014393714256584644, -0.00035308083170093596, 0.032211244106292725, 0.014448495581746101, 0.006378565449267626, -0.02315867878496647, 0.003807281143963337, 0.013832208700478077, -0.001557835377752781, -0.026637272909283638, 0.010285137221217155, 0.03963407129049301, -0.016352135688066483, 0.0024891127832233906, 0.0015561234904453158, -0.015982363373041153, -0.0052521307952702045, -0.01792708970606327, 0.012448987923562527, -0.006717523094266653, 0.005806788802146912, 0.02466515637934208, -0.006227917969226837, -0.004029829055070877, -0.011175328865647316, 0.01239420659840107, 0.014859353192150593, 0.011846396140754223, 0.0066113849170506, -0.03248514607548714, -0.01417458988726139, -0.0182968620210886, 0.003810704918578267, 0.01051795668900013, -0.013120055198669434, -0.008374649100005627, 0.004242105409502983, -0.029965220019221306, -0.0221452284604311, 0.013476132415235043, -0.01716015674173832, -0.010983595624566078, -0.006998275872319937, -0.0064025321044027805, 0.0007451075362041593, -0.011243805289268494, -0.004687201231718063, -0.014338932931423187, -0.002615793840959668, -0.005094635300338268, 0.00825823936611414, -0.04787861555814743, 0.0036155476700514555, 0.01128489151597023, -0.016283659264445305, 0.004680353682488203, 0.21485118567943573, 0.0010553906904533505, 0.01820099540054798, 0.03336164355278015, 0.021200256422162056, -0.008059658110141754, -0.0011375622125342488, 0.003156756516546011, -0.011127395555377007, -0.0012043266324326396, 0.00916212610900402, -0.00012571817205753177, -0.0275274645537138, -0.006292970385402441, 0.011990197002887726, -0.022980639711022377, -0.041469234973192215, -0.020460711792111397, 0.0011820717481896281, 0.009251145645976067, 0.02130981907248497, -0.0068852901458740234, -0.029718706384301186, -0.011510862968862057, 0.03500507399439812, 0.026020986959338188, -0.004372210707515478, 0.02419951744377613, 0.029444800689816475, 0.022501306608319283, -0.006433346774429083, -0.007648800499737263, 0.0216795913875103, -0.010305680334568024, -0.012414749711751938, 0.006762032862752676, 0.020583970472216606, -0.016872555017471313, 0.00518023082986474, 0.016009753569960594, 0.015256515704095364, -0.010921967215836048, 0.008792354725301266, -0.04012710228562355, 0.017666880041360855, -0.021693285554647446, -0.014831962063908577, 5.01267786603421e-05, 0.020132025703787804, 0.01360623724758625, 0.005580816883593798, -0.003728533396497369, 0.01620148867368698, -0.008408887311816216, 0.007340657524764538, 0.01010025106370449, -0.017913395538926125, 0.016653431579470634, -0.011175328865647316, -0.002619217848405242, 0.004670082125812769, 0.008032267913222313, 0.005368540529161692, -0.0006214222521521151, -0.03374511003494263, 0.03130735456943512, -0.0015133258420974016, 0.03437509387731552, 0.0022323266603052616, 2.607983333291486e-05, -0.004913173150271177, 0.0006873306701891124, -0.026253806427121162, -0.0028879870660603046, -0.012510616332292557, -0.012086063623428345, 0.021049609407782555, 0.021748065948486328, 0.04516695439815521, 0.005498645361512899, 0.0011726563097909093, 0.003446068847551942, -0.015324991196393967, -0.017379280179739, 0.015968669205904007, -0.00787477195262909, 0.026527710258960724, -0.033936843276023865, 0.015735849738121033, -0.01333233155310154, -0.007806295994669199, 0.0036566334310919046, 0.0024771294556558132, -0.018584461882710457, -0.0023384650703519583, -0.002804103773087263, 0.009319622069597244, 0.01323646493256092, -0.0035265283659100533, -0.037004582583904266, -0.017968175932765007, 0.04267441853880882, 0.015407162718474865, 0.03829193487763405, -0.011723139323294163, 0.01311320811510086, -0.0038620622362941504, 0.01056588999927044, 0.011928567662835121, -0.007169466465711594, -0.0048789349384605885, -0.0473581962287426, 0.02595251053571701, -0.01925553008913994, -0.0025627247523516417, 0.03032129630446434, 0.03284122422337532, -0.000998897710815072, 0.0057417359203100204, 0.00107422168366611, 0.011442386545240879, 0.009559288620948792, -0.0011307145468890667, 0.0050706686452031136, -0.014571752399206161, -0.03440248221158981, 0.012757130898535252, 0.007922705262899399, -0.03004739247262478, -0.018379034474492073, 0.0007887611864134669, -0.020775703713297844, 0.012695502489805222, -0.013359722681343555, 0.010161880403757095, -0.011380758136510849, -0.01842011883854866, -0.013722646981477737, 0.00578282168135047, 2.5598359570722096e-05, 0.006152593996375799, 0.008977239951491356, 0.004854968283325434, 0.007833686657249928, 0.015886496752500534, 0.024651460349559784, -0.015722153708338737, 0.010846642777323723, -0.024678852409124374, -0.021446771919727325, 0.008429430425167084, 0.005245283246040344, -0.013510370627045631, -0.005789669696241617, 0.030485639348626137, -0.020748313516378403, -0.04513956606388092, -0.014380019158124924, 0.010120794177055359, 0.0042284103110432625, -0.061519090086221695, 0.024747326970100403, 0.040209271013736725, 0.011647815816104412, -0.017475146800279617, -0.0025284867733716965, -0.1749705970287323, -0.002362431725487113, -0.01003862265497446, -0.008121286518871784, 0.012428444810211658, 0.027130302041769028, -0.0005679251626133919, -0.010278290137648582, -0.007121533155441284, -0.006998275872319937, -0.0021587146911770105, -0.018680328503251076, -0.042017046362161636, -0.022651953622698784, 0.003040346782654524, -0.01590019278228283, -0.0023795508313924074, 0.03204689919948578, 0.05379496514797211, -0.00034323736326768994, 0.014188284985721111, -0.012051825411617756, -0.01039469987154007, -0.019721169024705887, 0.010127642191946507, 0.02309020236134529, -0.005101482849568129, 0.029636533930897713, -0.0003462331951595843, -0.03240297734737396, 0.012092911638319492, -0.000727560487575829, 0.01185324415564537, 0.0014414257602766156, -0.009908517822623253, -0.006525789387524128, 0.0055842408910393715, -0.01820099540054798, -0.020008768886327744, 0.015886496752500534, 0.030458249151706696, 0.02333671599626541, 0.022501306608319283, 0.020337454974651337, 0.022871077060699463, 0.02859569527208805, 0.035059854388237, -0.025117099285125732, 0.014421104453504086, 0.004748830106109381, 0.020186807960271835, -0.019296616315841675, -0.008203458040952682, 0.002393245929852128, 0.006231341511011124, 0.018721414729952812, 0.007922705262899399, 0.023569535464048386, 0.006299817934632301, -0.009045716375112534, 0.01059328019618988, -0.017214937135577202, -0.008333563804626465, -0.01382536068558693, -0.023720184341073036, -0.017762746661901474, 0.00023174940724857152, 0.01694103144109249, -0.008367801085114479, 0.019132273271679878, 0.013462436385452747, 0.010613823309540749, 0.0119148725643754, 0.011031528934836388, 0.011955958791077137, -0.0022425982169806957, -0.019392482936382294, 0.005906079430133104, 0.028034189715981483, -0.0039031479973345995, 0.0010827812366187572, 0.02076200768351555, 0.01133282482624054, -0.0033964235335588455, -0.012551702558994293, -0.008682792074978352, 0.005775974132120609, -0.003529952373355627, 0.0061457459814846516, -0.00027540302835404873, 0.029061334207654, -0.014790876768529415, -0.008230849169194698, 0.011510862968862057, 0.011250653304159641, 0.0005739168263971806, 0.020803093910217285, 0.00771042937412858, -0.007724124472588301, -0.006974309217184782, -0.011675206013023853, 0.021474162116646767, -0.04037361592054367, 0.028486132621765137, 0.04393438249826431, 0.011688901111483574, 0.025144489482045174, -0.004779644310474396, 0.039004091173410416, -0.02281629666686058, -0.044454801827669144, 0.01706428825855255, 0.02745898813009262, 0.00875126849859953, -0.01706428825855255, 0.03451204672455788, -0.010141337290406227, -0.017173850908875465, 0.00567325996235013, -0.01731080375611782, 0.028212226927280426, -0.04314005747437477, -0.01492782961577177, -0.0016305914614349604, -0.006183408200740814, -0.002254581544548273, -0.10194748640060425, -0.028239618986845016, 0.030896497890353203, 0.0034974259324371815, 0.0024428912438452244, 0.014886743389070034, 0.017872309312224388, 0.03642938286066055, 0.00010132349416380748, 0.017379280179739, -0.016160402446985245, 0.013085816986858845, -0.00020371693244669586, -0.03108823113143444, 0.012907778844237328, -0.01136021502315998, 0.004450958222150803, -0.014831962063908577, -0.015996059402823448, 0.03330686315894127, 0.002899970393627882, -0.005187078379094601, 0.014941524714231491, 0.004392753355205059, -0.009730479680001736, -0.017543623223900795, -0.04179792106151581, 0.00688871368765831, 0.022090448066592216, -0.003516257042065263, 0.0408940352499485, -0.030923888087272644, 0.011894330382347107, -0.030129563063383102, -0.0031738756224513054, -0.008128134533762932, -0.011079462245106697, -0.006892137695103884, 0.020652446895837784, -0.019885512068867683, 0.014407409355044365, 0.002826358424499631, 0.004854968283325434, -0.02856830507516861, -0.00478991586714983, 0.005317183211445808, -0.036484163254499435, 0.03223863244056702, 0.004355091601610184, -0.0002004001144086942, -0.03434770181775093, -0.024459727108478546, -0.045002613216638565, -0.01777644269168377, 0.02284368686378002, 0.02503492869436741, 0.009545593522489071, 0.017488842830061913, -0.0099153658375144, -0.00854584015905857, -0.001990947872400284, 0.008313020691275597, 0.00036463618744164705, 0.01933770254254341, 0.011120547540485859, 0.0050912112928926945, -0.0026020987424999475, -0.006662742234766483, -0.008408887311816216, 0.0009004630846902728, -0.032430365681648254, -0.0024908247869461775, -0.025514261797070503, 0.007881619967520237, -0.026212720200419426, 0.002172410022467375, 0.012455835938453674, -0.017762746661901474, 0.010305680334568024, 0.025295138359069824, -0.006022488698363304, -0.01632474549114704, -0.00030536140548065305, -0.018118824809789658, 0.0008807761478237808, 0.006214222405105829, 0.01355830393731594, -0.0010254322551190853, 0.015311296097934246, -0.03489551320672035, 0.013784275390207767, 0.027623331174254417, -0.005618478637188673, 0.022980639711022377, -0.004906325601041317, 0.012038130313158035, -0.004868663381785154, -0.014790876768529415, 0.016982117667794228, 0.017214937135577202, 0.0056355977430939674, -0.006662742234766483, -0.04913857951760292, -0.0015176056185737252, 0.01554411556571722, 0.012894083745777607, 0.011716291308403015, -0.02518557570874691, 0.006149169988930225, -0.007621409837156534, -0.006919528357684612, -0.0019310311181470752, -0.02140568569302559, 0.031225183978676796, -0.010305680334568024, 0.0007095854380168021, -0.031006060540676117, 0.0029324968345463276, 0.014366324059665203, 0.0001959063665708527, 0.005844450555741787, -0.006731218192726374, -0.01417458988726139, -0.01185324415564537, 0.005662988405674696, 0.02051549404859543, -0.018625548109412193, 0.00435851514339447, -0.023761268705129623, 0.00733380950987339, -0.010298832319676876, -0.04012710228562355, 0.004718015901744366, 0.004464653320610523, -0.006104660220444202, 0.002179257571697235, -0.0009680834482423961, -0.036703284829854965, -0.0001231503119925037, -0.008497906848788261, 0.02955436334013939, 0.021611114963889122, -0.004991920664906502, -0.023391498252749443, 0.021857628598809242, -0.02398039400577545, -0.0275274645537138, -0.006272427272051573, -0.007066752295941114, -0.020871570333838463, -0.00170677131973207, 0.014599143527448177, 0.05187762901186943, 0.012455835938453674, -0.02632228285074234, -0.01731080375611782, -0.003844943130388856, -0.002004643203690648, 0.014133504591882229, 0.02328193560242653, 0.0008773523732088506, -0.001927607343532145, 0.04412611573934555, -0.005395930726081133, 0.016461698338389397, 0.0004926012479700148, 0.026527710258960724, -0.018228385597467422, -0.03727848827838898, -0.021597418934106827, 0.011045224033296108, -0.032156459987163544, 0.01583171635866165, -0.014886743389070034, 0.017173850908875465, 0.026609882712364197, 0.021350903436541557, 0.004848120734095573, -0.014215676113963127, -0.013010493479669094, -0.004324276931583881, 0.029910439625382423, 0.01965269260108471, -0.03631981834769249, -0.031937338411808014, 0.011860092170536518, 0.017968175932765007, 0.005193925928324461, 0.0031721636187285185, 0.023268239572644234, 0.016105622053146362, 0.005591088440269232, -0.005098059307783842, 0.0018283167155459523, -0.02506231889128685, 0.0132227698341012, 0.0022391744423657656, 0.013482979498803616, -0.00776521023362875, 0.00528294499963522, 0.02315867878496647, 0.03377250209450722, 0.012161387130618095, 0.016899945214390755, 0.006751761306077242, -0.02054288424551487, -0.005570545326918364, 0.0025610129814594984, -0.029992610216140747, -0.02832178957760334, 0.0229121632874012, 0.006710675545036793, 0.004088033922016621, -0.03034868836402893, 0.00638883700594306, 0.01172998733818531, -0.029965220019221306, -0.0044954679906368256, -0.004033253062516451, -0.038976699113845825, -0.02619902417063713, 0.0016032009152695537, 0.013585694134235382, 0.012983103282749653, 0.0055602737702429295, -0.024555593729019165, 0.02189871482551098, -0.0119148725643754, 0.018858367577195168, -0.01694103144109249, 0.010230355896055698, -0.029116114601492882, -0.01915966346859932, -0.009319622069597244, 0.0020868147257715464, -0.018406424671411514, -0.009394945576786995, -0.007909010164439678, -0.010969900526106358, 0.003233792260289192, 0.0007421117043122649, 0.07954204827547073, 0.022117838263511658, -0.011545101180672646, 0.0016117604682222009, -0.022994335740804672, -0.004022981505841017, 0.021624809131026268, 0.007210552226752043, -0.009347012266516685, -0.012312035076320171, 0.018557071685791016, -0.0155304204672575, -0.006717523094266653, -0.005193925928324461, -0.012962560169398785, 0.0017649761866778135, 0.004255800973623991, 0.0067346422001719475, -0.0004771940875798464, 0.024007784202694893, 0.0238297451287508, 0.0044098724611103535, 0.0031088232062757015, -0.012229863554239273, -0.021693285554647446, -0.01617409661412239, 0.02765072137117386, 0.02345997467637062, -0.006409379653632641, -0.015982363373041153, 0.019940292462706566, -0.0015552674885839224, -0.013482979498803616, -0.008484210819005966, -0.014421104453504086, 0.0272124744951725, -0.011880634352564812, -0.017338193953037262, 0.007676191162317991, 0.014106113463640213, 0.0221452284604311, 0.010586433112621307, -0.014010246843099594, -0.013866446912288666, -0.01755731925368309, 0.0030660254415124655, -0.007073599845170975, -0.008347258903086185, -0.0017161867581307888], "da25c223-a805-482a-bb28-b3862f33b028": [-0.01523586641997099, 0.0003608378756325692, 0.011567972600460052, -0.018099645152688026, -0.010037332773208618, 0.01299280859529972, 0.004655403550714254, -0.04034683108329773, -0.006799710914492607, -0.049460139125585556, 0.030302446335554123, 5.9239569964120165e-05, 0.023389875888824463, -0.013296115212142467, -0.010460550896823406, 0.015123008750379086, 0.025421325117349625, -0.016519630327820778, 0.010636892169713974, -0.014382376335561275, -0.026042046025395393, -0.005776932928711176, -0.014883184805512428, -0.015969445928931236, -0.024772390723228455, 0.014558716677129269, 0.02099163830280304, -0.0015526829520240426, -0.028623679652810097, 0.009719918482005596, 0.009959742426872253, -0.007794274482876062, -0.0311488825827837, 0.00381954712793231, -0.012999862432479858, 0.00684555945917964, 0.0006511393003165722, -0.0005541517748497427, 0.02046966925263405, -0.018720366060733795, 0.019919484853744507, 0.01644909381866455, -0.0074486457742750645, -0.009367236867547035, -0.008302136324346066, 0.04029040411114693, 0.011857172474265099, 0.0062354193069040775, -0.006856139749288559, 0.002708598505705595, 0.00036127871135249734, -0.01248494628816843, -0.03631214797496796, 0.01265423372387886, 0.006842032540589571, -0.013613528572022915, -0.006002649199217558, -0.0044543747790157795, 0.020935209468007088, 0.0021213828586041927, 0.0068067642860114574, 0.013542992994189262, -0.01271771639585495, -0.0030771512538194656, -0.0278477780520916, -0.017083920538425446, -0.002236004453152418, -0.011257612146437168, -0.009324914775788784, -0.008739462122321129, 0.03374462202191353, 0.022077899426221848, 0.002858488354831934, -0.0027897153049707413, -0.006708013359457254, -0.01777517795562744, -0.019947700202465057, -0.01657605916261673, -0.001620574272237718, -0.0018110225209966302, 0.0035250575747340918, -0.02821456827223301, -0.03171317279338837, 0.0003484940098132938, 0.03707394376397133, 0.020695384591817856, 0.026027938351035118, -0.001415136968716979, -0.004697725642472506, 0.011970030143857002, 0.015786049887537956, 0.023079516366124153, 0.00975518673658371, 0.004750628024339676, 0.008210439234972, 0.020018236711621284, -0.0070360079407691956, 0.023601485416293144, -0.006186043843626976, -0.019863056018948555, -0.0023541529662907124, 0.007462752982974052, -0.013253793120384216, -0.005135051440447569, -0.014826755039393902, -0.020455561578273773, 0.012372087687253952, -0.0010130793089047074, 0.0019732562359422445, 0.012153425253927708, -0.04686439782381058, 0.03673536702990532, -0.012569589540362358, 0.0038724495097994804, 0.01706981286406517, -0.014713897369801998, 0.02923029288649559, -0.03571964427828789, 0.003981780726462603, -0.023545056581497192, -0.009868045337498188, -0.018099645152688026, 0.021682895720005035, -0.013902728445827961, 0.012957540340721607, 0.010735643096268177, -0.002546364674344659, -0.0029713467229157686, 0.01574372872710228, -0.013042183592915535, 0.025139179080724716, 0.007773113436996937, 0.0038653959054499865, 0.011793689802289009, -0.009973850101232529, -0.007314626593142748, -0.0006207205005921423, 0.015983551740646362, -0.003946512471884489, -0.05058871954679489, 0.029032791033387184, 0.03143102675676346, 0.012026459909975529, -0.010390014387667179, 0.010573409497737885, 0.029371365904808044, -0.011497436091303825, 0.009734026156365871, 0.005963854491710663, 0.0002219692978542298, 0.015123008750379086, -0.02722705714404583, -0.015461583621799946, -0.00895107164978981, 0.016420878469944, 0.022515224292874336, 0.005515947937965393, 0.018325362354516983, -0.02719884365797043, 0.0011744314106181264, -0.007342841476202011, 0.008436155505478382, 0.0029484224505722523, -0.011095378547906876, 0.005205587949603796, 0.04195506125688553, 0.007476860657334328, -0.008605442941188812, -0.012400302104651928, -0.004232184961438179, -0.019961806014180183, 0.015856586396694183, -0.031967103481292725, 0.011962976306676865, 0.015546226873993874, 0.004895227495580912, 0.017478924244642258, 0.0018480542348697782, -0.01129993423819542, -0.020243952050805092, 0.036283932626247406, -0.0015773706836625934, 0.005678182002156973, 0.01818428933620453, -0.016350341960787773, -0.010333585552871227, 0.020921101793646812, 0.012576643377542496, -0.0050821490585803986, -0.011843064799904823, 0.016336234286427498, -0.00024511406081728637, 0.007244090083986521, 0.005748718045651913, -0.625234842300415, -0.0021319633815437555, 0.014953721314668655, -0.019284656271338463, -0.0030260123312473297, 0.03323676064610481, 0.002877885941416025, -0.009296700358390808, -0.00888758897781372, 0.038174308836460114, 0.0013428371166810393, 0.01901661790907383, -0.006253053434193134, -0.01777517795562744, -0.004912861622869968, -0.036283932626247406, -0.0032041168306022882, -0.02151360735297203, -0.005455992184579372, 0.005783986300230026, -0.02432095818221569, 0.029992084950208664, 0.0005329908453859389, -0.012463785707950592, 0.0015879510901868343, -0.02870832197368145, 0.036001790314912796, -0.017267314717173576, -0.0053678215481340885, 0.01907304860651493, -0.03408319875597954, 0.01790214329957962, 0.01510890107601881, 0.0019785466138273478, 0.04553831368684769, 0.002643352374434471, -0.03574785590171814, 0.003985307645052671, 0.015094793401658535, 0.039528608322143555, -0.033659979701042175, 0.006799710914492607, 0.027734920382499695, 0.0073216804303228855, 0.008485531434416771, 0.00878178421407938, 0.028595464304089546, 0.010361799970269203, 0.006157829426229, -0.02252933196723461, 0.005025719758123159, -0.0345064178109169, -0.0054418849758803844, 0.0031212365720421076, -0.005032773595303297, 0.007582664955407381, -0.0007710512145422399, -0.01966555416584015, 0.007043061312288046, -0.00182512984611094, -0.004200443625450134, 0.032051749527454376, -0.01032653171569109, -0.0229384433478117, -0.03916181996464729, 0.010121976025402546, 0.007371055893599987, -0.025237930938601494, 0.027678491547703743, -0.00941661186516285, 0.025421325117349625, -0.0011162388836964965, -0.004285087343305349, -0.012343873269855976, -0.005590011365711689, 0.032672468572854996, 0.019143585115671158, -0.024532565847039223, -0.024828819558024406, 0.011046003550291061, -0.014283625409007072, -0.008725355379283428, -0.010933144949376583, 0.0016540790675207973, 0.017859822139143944, 0.023389875888824463, -0.0027579739689826965, -0.0022236607037484646, -0.001029831706546247, 0.001906246761791408, 0.008238653652369976, 0.027311701327562332, -0.016406770795583725, -0.019609125331044197, 0.011314041912555695, 0.047456901520490646, -0.0022818532306700945, 0.009790454991161823, -0.008429102599620819, -0.02182396873831749, -0.017112135887145996, -0.009176787920296192, 0.006739754695445299, 0.005378401838243008, 0.035945359617471695, 0.026719195768237114, -0.002569289179518819, -0.010890822857618332, 0.020695384591817856, -0.017648212611675262, -0.0018709785072132945, 0.008541960269212723, -0.02515328675508499, -0.02416577748954296, 0.0139238890260458, -0.02694491297006607, -0.019115369766950607, -0.012915218248963356, 0.017239101231098175, -0.005561796482652426, 0.011800742708146572, -0.01335254404693842, 0.0055547431111335754, 0.003071861108765006, 0.010869662277400494, 0.007575611583888531, 0.012506106868386269, -0.0021707583218812943, 0.01379692368209362, 0.004990451503545046, -0.008450263179838657, -0.02457488887012005, 0.003595594083890319, 0.003463338129222393, 0.024828819558024406, -0.0010747986380010843, 0.023657914251089096, -0.004948129877448082, -0.0006048497743904591, -0.04311186075210571, -0.006584574934095144, 0.007032481022179127, 0.025364896282553673, -0.02540721744298935, 0.008499638177454472, -0.029653510078787804, -0.010876716114580631, -0.006803237833082676, -0.01362763624638319, -0.024490244686603546, -0.0026257182471454144, -0.010961359366774559, -0.006330643780529499, 0.041560057550668716, -0.006644530687481165, -0.0005620871088467538, 0.009910366497933865, -0.04130612686276436, -0.012999862432479858, -0.038258954882621765, -0.013387812301516533, 0.012661287561058998, -0.00867597945034504, -0.01886143907904625, -0.012329766526818275, -0.02252933196723461, -0.00814695656299591, -0.0031423973850905895, -0.011624402366578579, -0.0393311083316803, 0.005977961700409651, -0.011433953419327736, -0.0013904491206631064, 0.019143585115671158, -0.014234249480068684, 0.028595464304089546, -0.014812648296356201, -0.01688641868531704, -0.004186336416751146, -0.004397945944219828, 0.0023841310758143663, 0.02842617779970169, -0.02185218222439289, -0.003167085349559784, 0.03309568762779236, -0.0005938285030424595, 0.03351890668272972, -0.0024423236027359962, -0.029286721721291542, 0.008217493072152138, -6.216022302396595e-05, 0.0037172692827880383, -0.012731824070215225, -0.0030559904407709837, -0.013190310448408127, 0.009515362791717052, -0.03831538185477257, 0.003130053635686636, -0.018381791189312935, 0.02725527249276638, 0.021076282486319542, 0.003503896528854966, -0.004814110696315765, -0.010213673114776611, -0.0012193983420729637, -0.014220141805708408, 0.01753535307943821, -0.017422495409846306, 0.014657467603683472, 0.004302721470594406, -0.005681708455085754, -0.0044543747790157795, -0.0005986778414808214, -0.016011767089366913, 0.005177373066544533, 0.01477032620459795, 0.022049684077501297, 0.02039913274347782, -0.0034192530438303947, -0.007265251129865646, 0.010890822857618332, -0.006115507800132036, 0.03797680884599686, 0.005392509046941996, -0.016829989850521088, 0.02444792352616787, 0.0004545190604403615, 0.02197914756834507, 0.013387812301516533, -0.013324329629540443, 0.008929911069571972, 0.03357533738017082, 0.01242146361619234, 0.009162681177258492, 0.031007809564471245, 0.03160031512379646, 0.029738154262304306, -0.007512128911912441, 0.04618724808096886, -0.006157829426229, 0.0015747256111353636, -0.004895227495580912, 0.013811031356453896, -0.0189178679138422, 0.04175756126642227, 0.015588548965752125, 0.02413756214082241, -0.004655403550714254, -0.03487320616841316, 0.020441453903913498, 0.006947837304323912, -0.002045556204393506, -0.020977530628442764, -0.021993255242705345, 0.027805456891655922, -0.00713123194873333, 0.019482159987092018, 0.014798540621995926, 0.019496265798807144, 0.02145717851817608, 0.015842480584979057, -0.014996042475104332, 0.025576505810022354, -0.030387088656425476, 0.021076282486319542, -0.010425282642245293, -0.0057663521729409695, -0.020328596234321594, 0.00022527569672092795, -0.017521247267723083, 0.00530081195756793, -0.014657467603683472, 0.007053642068058252, -0.0012290971353650093, 0.008429102599620819, 0.010552247986197472, -0.0040558441542088985, 0.0004397504962980747, -0.021866289898753166, 0.013091559521853924, -0.03224924951791763, -0.02145717851817608, 0.013373705558478832, 0.004948129877448082, 0.0015182964270934463, -0.022218972444534302, -0.008922857232391834, -0.009571792557835579, -0.0005074213840998709, 0.007519182283431292, -0.0068914080038666725, 0.003595594083890319, -0.011229397729039192, -0.010516979731619358, -0.00398883456364274, 0.021894505247473717, 0.035014279186725616, -0.02278326265513897, -0.020102879032492638, 0.031684961169958115, 0.008259815163910389, 0.0197219830006361, -0.013451294973492622, -0.025576505810022354, 0.008859374560415745, -0.0021707583218812943, -0.02808760292828083, -0.0328981876373291, -0.01953858882188797, -0.023968275636434555, 0.004535491578280926, -0.01592712290585041, -0.01580015756189823, -0.016858205199241638, -0.014255410060286522, -0.0008455553324893117, -0.005113890394568443, -0.0010501109063625336, 0.026352405548095703, -0.011659669689834118, 0.005036300513893366, -0.027988851070404053, 0.010481712408363819, 0.026846161112189293, 0.06195919215679169, 0.035663213580846786, -0.006715067196637392, 0.005918005481362343, -0.007173554040491581, -0.012633073143661022, -0.03281354159116745, -0.021781645715236664, 0.034986063838005066, -0.007575611583888531, -0.016308020800352097, 0.010714482516050339, 0.013232632540166378, -0.001755475183017552, 0.019961806014180183, -0.0065210917964577675, -0.008880535140633583, -0.02465953305363655, -0.014459965750575066, 0.005142104811966419, 0.002045556204393506, -0.0011991191422566772, 0.010658052749931812, 0.02408113330602646, 0.026959018781781197, 0.014615146443247795, 0.02528025209903717, 0.011257612146437168, 0.009028661996126175, -0.017055707052350044, -0.022740941494703293, 0.018198397010564804, 0.004147541243582964, 0.02283969335258007, -0.01855107769370079, 0.02312183752655983, -0.0006939020240679383, -0.003609701292589307, -0.015094793401658535, -0.0002187731151934713, 0.0012114630080759525, 0.03286997228860855, 0.0016144022811204195, -0.021584143862128258, 0.01129993423819542, -0.017676426097750664, 0.003371640807017684, 0.013994425535202026, -0.007928293198347092, -0.010502872988581657, 0.0213302131742239, 0.02089288830757141, -0.014742111787199974, 0.017831606790423393, 0.016688916832208633, -0.005597064737230539, -0.002429979620501399, -0.006034390535205603, -0.030697450041770935, -0.036566078662872314, -0.024038812145590782, -0.023389875888824463, 0.002364733489230275, -0.014742111787199974, -0.0014239539159461856, -0.028651893138885498, -0.005205587949603796, 0.002124909544363618, -0.007773113436996937, 0.015546226873993874, -0.001080970629118383, -0.05084265023469925, -0.012633073143661022, 0.019341086968779564, 0.019651446491479874, 0.017493031919002533, 0.0010412938427180052, -0.0008349748677574098, 0.0024282161612063646, 0.006796183995902538, 0.01595533825457096, -0.03413962572813034, -0.0021266730036586523, -0.011208237148821354, 0.016900526359677315, -0.0021213828586041927, -0.018692150712013245, 0.009635275229811668, -0.01477032620459795, 0.009726972319185734, -0.01660427264869213, -0.0014742112252861261, -0.009804562665522099, -0.0008336523314937949, 0.004073478281497955, 0.009381343610584736, 0.014516395516693592, 0.006168409716337919, 0.031007809564471245, -0.038851458579301834, 0.001987363677471876, -0.0041299075819551945, -0.01328906137496233, -0.02398238331079483, -0.0026292449329048395, 0.012576643377542496, -0.01557444129139185, 0.010220726951956749, -0.0018568712985143065, -0.008901695720851421, 0.001114475424401462, 0.011377524584531784, -0.005004559177905321, -0.00797766912728548, 0.001902719959616661, -0.018776794895529747, 0.014241303317248821, 0.03899253159761429, 0.021428965032100677, -0.00941661186516285, 0.005734610836952925, -0.013416026718914509, 0.024222206324338913, -0.0028673054184764624, -0.016745345667004585, 0.028045279905200005, 0.01870625838637352, -0.027396345511078835, -0.02164057269692421, 0.015701407566666603, -0.013867460191249847, 0.015560334548354149, -0.01654784381389618, -0.0018674517050385475, -0.02164057269692421, -0.01824071817100048, -0.006983105558902025, -0.013317275792360306, -0.021428965032100677, -0.00797766912728548, -0.020906994119286537, 0.01396621111780405, -0.005293758120387793, -0.0030947853811085224, 0.0017977970419451594, -0.027763133868575096, -0.017083920538425446, 0.00814695656299591, 0.015264080837368965, 0.0361146479845047, -0.02413756214082241, -0.023545056581497192, -0.01305629126727581, -0.021654680371284485, -0.021273784339427948, -0.009346075356006622, -0.006820871960371733, -0.0036996351554989815, 0.05676770955324173, 0.005237329285591841, 0.012372087687253952, 0.013324329629540443, 0.029061004519462585, 0.006186043843626976, -0.009889205917716026, -0.004546072334051132, -0.018452327698469162, -0.028383854776620865, 0.005276123993098736, -0.007371055893599987, 0.0075473967008292675, -0.009712864644825459, -0.006817345041781664, 0.004800003487616777, 3.26230947393924e-05, 0.014170766808092594, -0.005858049727976322, 0.00472946697846055, -0.016181055456399918, -0.047795478254556656, -0.010136083699762821, 0.0459897443652153, -0.02654990740120411, 0.006499931216239929, -0.029032791033387184, -0.00793534703552723, 0.016322126612067223, 0.0013798687141388655, 0.015179437585175037, 0.005046880804002285, 0.03769466280937195, -0.008203385397791862, -0.015094793401658535, 0.004690671805292368, -0.0024000017438083887, -0.022797370329499245, -0.0135641535744071, -0.04830333963036537, -0.006288321688771248, 0.0028020592872053385, 0.023474520072340965, 0.012689501978456974, -0.028976360335946083, -0.019834840670228004, 0.015941230580210686, 0.029032791033387184, -0.02154182270169258, -0.029794583097100258, -0.0019662026315927505, -0.020173415541648865, 0.0032517288345843554, -0.007229982875287533, -0.01706981286406517, 0.024532565847039223, 0.01629391312599182, -0.0036855279467999935, 0.002546364674344659, 0.022980766370892525, -0.033011045306921005, -0.019341086968779564, 0.006436448078602552, 0.005113890394568443, 0.02296665869653225, 0.0029625296592712402, 0.008344458416104317, 0.009783401153981686, 0.009896259754896164, -0.014544609934091568, -0.021428965032100677, 0.010044385679066181, -0.008203385397791862, 0.01678766869008541, 0.0426039956510067, 0.005787513218820095, -0.009007500484585762, 0.024193990975618362, -0.009614113718271255, 0.006178990472108126, -0.044099368155002594, 0.004408526234328747, 0.015729621052742004, -0.004098165780305862, -0.026860268786549568, -0.03058459237217903, -0.0036749474238604307, 0.033603549003601074, 0.0023559164255857468, 0.01322557870298624, 0.004800003487616777, 0.0072370367124676704, 0.0016399717424064875, 0.04229363799095154, -0.013620582409203053, 0.024038812145590782, -0.0045143309980630875, -0.0073216804303228855, -0.02985101193189621, 0.004383838269859552, -0.002195446053519845, -0.018297147005796432, 0.005491260439157486, 0.022613976150751114, -0.010742696933448315, 0.0010474658338353038, 0.007942400872707367, 0.021443070843815804, -0.010855554603040218, -0.01907304860651493, -0.011737260036170483, 0.026973126456141472, -0.020018236711621284, 0.011765474453568459, -0.008252761326730251, -0.013197364285588264, 0.020780028775334358, -0.028412070125341415, -0.012689501978456974, 0.007667308673262596, -0.014883184805512428, 0.0045989747159183025, 0.0156167633831501, 0.017182672396302223, -0.012343873269855976, -0.005092729348689318, 0.004581340588629246, 0.005149158649146557, 0.005773406010121107, -0.010686267167329788, 0.001095959567464888, -0.031684961169958115, -0.022430581972002983, -0.00952241662889719, 0.003327555488795042, 0.005642913747578859, -0.008485531434416771, -0.028144031763076782, 0.0008667162619531155, 0.024645425379276276, -0.007815435528755188, 0.0005885382415726781, 0.01907304860651493, -0.004147541243582964, -0.04237828031182289, 0.028722429648041725, 0.009797508828341961, -0.007885972037911415, 0.023841310292482376, -0.02089288830757141, -0.013514777645468712, -0.03120531141757965, 0.01901661790907383, -0.003629098879173398, 0.023841310292482376, -0.006870247423648834, 0.019947700202465057, 0.008245707489550114, 0.0038724495097994804, -0.004299194552004337, -0.019933592528104782, 0.009049822576344013, -0.009621167555451393, 0.009635275229811668, 0.008859374560415745, -0.012111103162169456, 0.0008354157325811684, -0.004891700576990843, 0.021471286192536354, -0.015306402929127216, -0.036650724709033966, -0.022740941494703293, -0.02614079788327217, -0.010361799970269203, 0.002378840697929263, -0.006947837304323912, 0.0035021333023905754, -0.023375770077109337, -0.002294196980074048, 0.02083645761013031, -0.010312424972653389, 0.014474073424935341, 0.005371348466724157, -0.02185218222439289, -0.006993685849010944, 0.024024704471230507, -0.003470391733571887, -0.035917144268751144, -0.02111860364675522, -0.013091559521853924, -0.036650724709033966, -0.011455114930868149, -0.011497436091303825, 0.0409393385052681, 0.0067644426599144936, -0.016646595671772957, -0.01836768351495266, -0.04299900308251381, -0.04951656609773636, -0.01571551337838173, -0.0049833981320261955, 0.029992084950208664, 0.029992084950208664, 0.027974743396043777, -0.017210885882377625, 0.027579739689826965, -0.022275401279330254, 0.020610742270946503, -0.026846161112189293, -0.011723153293132782, -0.010319477878510952, -0.029992084950208664, 0.007159446366131306, -0.013239686377346516, -0.040487904101610184, 0.0040840585716068745, 0.0031935363076627254, -0.008407941088080406, 0.0033875114750117064, 0.026930805295705795, -0.0035673794336616993, -0.011765474453568459, -0.013472456485033035, 0.011631455272436142, 0.043817222118377686, 0.031007809564471245, 0.018819116055965424, -0.03261604160070419, 0.0038830297999083996, 0.0023559164255857468, -0.008915803395211697, -0.004330936353653669, 0.017422495409846306, 0.037920378148555756, -0.0035374013241380453, 0.02595740184187889, 0.009310807101428509, -0.018254825845360756, -0.0014689209638163447, -0.014459965750575066, 0.008182224817574024, 0.0003916975692845881, 0.008563121780753136, 0.02824278175830841, -0.008915803395211697, 0.011899493634700775, 0.000586333975661546, 0.0011612058151513338, -0.004017048981040716, 0.00501513946801424, 0.02346041239798069, -0.03157209977507591, -0.0021460705902427435, -0.018776794895529747, 0.009367236867547035, -0.007476860657334328, -0.0009002210572361946, -0.0057663521729409695, -0.013380758464336395, -0.02111860364675522, -0.015419261530041695, 0.013282007537782192, -0.027170628309249878, -0.011631455272436142, -0.002174285240471363, 0.0024458502884954214, 0.0035391647834330797, -0.004556652624160051, -0.005057461094111204, -0.008979286067187786, -0.005406616721302271, -0.00041903043165802956, -0.0049692909233272076, -0.053353749215602875, -0.005695815663784742, 0.02252933196723461, -0.018805010244250298, 0.016773561015725136, 0.20167772471904755, -0.006365912035107613, 0.015320510603487492, 0.006242473144084215, 0.00324820214882493, -0.013585314154624939, -0.007575611583888531, 0.011998244561254978, -0.013077451847493649, 0.015913017094135284, 0.015052472241222858, 0.0016549607971683145, -0.02688848227262497, -0.004433214198797941, 0.007272304967045784, -0.024151669815182686, -0.04900870472192764, -0.018847331404685974, -0.017394281923770905, 0.015913017094135284, 0.006524618715047836, -0.002786188619211316, -0.004665984306484461, -0.0005334316520020366, 0.03916181996464729, 0.03377283737063408, 0.01571551337838173, 0.034619275480508804, 0.018198397010564804, 0.03540928289294243, -0.012104049324989319, -0.008704193867743015, 0.020540205761790276, -0.008668925613164902, 0.002675093710422516, -0.005212641321122646, 0.013387812301516533, -0.005903898272663355, 0.009099198505282402, 0.014107284136116505, -0.0022818532306700945, -0.01386040635406971, 0.009642328135669231, -0.03738430142402649, 0.015461583621799946, 0.004941076040267944, -0.03018958680331707, -0.0031459243036806583, 0.021076282486319542, 0.02777724154293537, -0.00905687641352415, 0.018381791189312935, 0.02398238331079483, 0.010121976025402546, -0.0007644384750165045, 0.01493961364030838, -0.017944464460015297, 0.005230275448411703, -0.016039982438087463, -0.002038502600044012, -0.016181055456399918, -0.0036961084697395563, -0.002066717017441988, 0.004680091515183449, -0.02827099710702896, 0.024123456329107285, -0.005022192839533091, 0.023347554728388786, 0.012851735576987267, -0.008344458416104317, 0.0005329908453859389, -0.0031212365720421076, -0.022853799164295197, -0.0011462167603895068, 0.008993393741548061, -0.019242335110902786, 0.009324914775788784, 0.0213302131742239, 0.03380105271935463, 0.017859822139143944, 0.002317121485248208, -0.0002118296833941713, -0.000938134384341538, -0.02015930786728859, 0.00353387463837862, -0.023700237274169922, 0.03535285219550133, -0.006066131871193647, 0.023841310292482376, -0.04003647342324257, -0.01623748429119587, -0.00012498171417973936, 0.0027438667602837086, -0.010460550896823406, -0.009494202211499214, 0.011088324710726738, 0.00547009939327836, 0.018043216317892075, 0.0012432043440639973, -0.033659979701042175, -0.015659084543585777, 0.06336992233991623, 0.016124624758958817, 0.025477753952145576, -0.01587069407105446, -0.0007653201464563608, 0.011398685164749622, 0.009670543484389782, 0.017154457047581673, -0.010629838332533836, -0.0005753126461058855, -0.04068540781736374, 0.022613976150751114, -0.014911399222910404, 0.006669218651950359, 0.03803323581814766, -0.0015888328198343515, 0.0019662026315927505, 0.00020664966723416, 0.0022412948310375214, 0.020878780633211136, -0.004147541243582964, 0.007462752982974052, 0.014784433878958225, -0.02154182270169258, -0.02296665869653225, -0.0004902281216345727, 0.0115115437656641, -0.017083920538425446, -0.016985170543193817, 0.016378557309508324, -0.02034270390868187, 0.010220726951956749, -0.014424697495996952, -0.013204418122768402, -0.025689363479614258, -0.006873773876577616, -0.013606475666165352, -0.00091256492305547, 0.010876716114580631, 0.005657020956277847, 0.007512128911912441, 0.012188693508505821, 0.001019251300022006, -0.015757836401462555, -0.0013728151097893715, -0.013881566934287548, 0.007836596108973026, -0.027339916676282883, -0.02195093408226967, 0.009698757901787758, -0.0017290239920839667, -0.018819116055965424, -0.016533736139535904, 0.04178577661514282, -0.029738154262304306, -0.05146337300539017, -0.021781645715236664, 0.02015930786728859, 0.007138285785913467, -0.06111275404691696, 0.017112135887145996, 0.030104944482445717, 0.010058493353426456, -0.032051749527454376, -0.00020180028514005244, -0.18158896267414093, -0.002331228693947196, 0.004680091515183449, -0.0021425436716526747, 0.012259230017662048, 0.008541960269212723, 0.021908611059188843, -3.0308618079288863e-05, -0.02151360735297203, -0.004281560890376568, 0.003489789320155978, -0.011335202492773533, -0.04133434221148491, -0.018508756533265114, 0.004493169952183962, -0.023573271930217743, 0.005597064737230539, 0.03507070615887642, 0.05355124920606613, 0.0025304940063506365, -0.0024793550837785006, -0.027156520634889603, -0.00043556239688768983, -0.011716099455952644, 0.0018427639733999968, 0.038597527891397476, -0.018748579546809196, 0.027692599222064018, 0.011567972600460052, -0.012280390597879887, 0.005022192839533091, -0.007328733801841736, 0.023107731714844704, 0.007709630765020847, 0.005325499456375837, -0.0063094827346503735, -0.0028902296908199787, -0.025971509516239166, 0.003928878344595432, 0.014629253186285496, 0.0180291086435318, 0.012745930813252926, 0.012703608721494675, 0.007582664955407381, 0.005068041849881411, 0.010270102880895138, 0.029709940776228905, -0.010516979731619358, 0.005251436494290829, -0.003609701292589307, -0.003950039390474558, -0.024984000250697136, -0.007378109265118837, -0.00032689221552573144, 0.019947700202465057, 0.01413549855351448, -0.0035321111790835857, 0.03741251677274704, 0.01339486613869667, -0.007596772164106369, 0.014100230298936367, -0.0213302131742239, 0.002990744076669216, 0.002213080180808902, -0.026225440204143524, -0.02707187831401825, 0.010051439516246319, 0.013959157280623913, 5.1689970860024914e-05, 0.012978700920939445, -0.008182224817574024, -0.0066797989420592785, 0.021965041756629944, 0.0036678938195109367, 0.026959018781781197, 0.0025058062747120857, -0.036283932626247406, 0.018410004675388336, 0.02244468778371811, -0.003967673517763615, -0.000193313870113343, 0.0311488825827837, 0.014008533209562302, 0.003599120769649744, -0.004630716051906347, -0.002599267056211829, -0.008393834345042706, -0.004419106524437666, 0.006284794770181179, 0.0010562828974798322, 0.033688195049762726, -0.021598251536488533, -0.015306402929127216, 0.02200736291706562, 0.006499931216239929, 0.014699789695441723, 0.02278326265513897, -0.002246584976091981, 0.011144754476845264, -0.006133141461759806, -0.0024141089525073767, 0.023545056581497192, -0.03769466280937195, 0.019806627184152603, 0.047400474548339844, 0.008915803395211697, 0.009035714901983738, 0.002470538020133972, 0.03521177917718887, -0.02777724154293537, -0.03210817649960518, 0.019397515803575516, 0.02148539386689663, -0.0016761217266321182, -0.021259676665067673, 0.04570759832859039, 0.003405145602300763, -0.022275401279330254, 0.009995010681450367, -0.005907425191253424, 0.03899253159761429, -0.04325293377041817, -0.006930203177034855, -0.013535939157009125, 0.002206026576459408, -0.0073498948477208614, -0.11105253547430038, -0.025082750245928764, 0.02746688202023506, 0.005798093508929014, -0.008471423760056496, 0.01691463403403759, 0.014333000406622887, 0.010453497059643269, 0.005671128164976835, 0.03160031512379646, -0.016674809157848358, -0.0035603258293122053, -0.004348570480942726, -0.015348725020885468, -0.0021425436716526747, -0.009430719539523125, -0.002089641522616148, -0.0063941264525055885, -0.01769053377211094, 0.032277464866638184, -0.010270102880895138, -0.0036820010282099247, 0.008224546909332275, 0.01620926894247532, -0.00884526688605547, -0.020046450197696686, -0.017577676102519035, 0.00924732442945242, 0.01870625838637352, -0.0025957401376217604, 0.032023534178733826, -0.006803237833082676, 0.01855107769370079, -0.02561882697045803, 0.004246292635798454, -0.016533736139535904, -0.01901661790907383, -0.011906547471880913, 0.038174308836460114, -0.02925850637257099, 0.010749750770628452, -0.002077297540381551, 0.01032653171569109, -0.0427732840180397, 0.009021608158946037, 0.005258489865809679, -0.028948146849870682, 0.042208991944789886, 0.0034386503975838423, -0.008577228523790836, -0.03555035591125488, -0.00176693731918931, -0.043450433760881424, -0.03021780215203762, 0.01759178377687931, 0.00730051938444376, 0.017619997262954712, 0.016025874763727188, -0.021316105499863625, -0.01100368145853281, -0.016815882176160812, 0.010058493353426456, 0.00763909425586462, 0.015659084543585777, 0.01117296889424324, 0.019030725583434105, -0.005233802367001772, 0.006069658789783716, -0.005262016784399748, -0.007356948684900999, -0.029371365904808044, 0.00159764988347888, -0.03047173283994198, -0.0016108754789456725, -0.022740941494703293, -0.008584282360970974, -0.0005184426554478705, -0.008993393741548061, 0.007942400872707367, 0.021682895720005035, -0.01580015756189823, -0.014756218530237675, 0.0038618689868599176, -0.019002512097358704, 0.008062312379479408, 0.011617348529398441, 0.029992084950208664, 0.0007719329441897571, 0.03876681625843048, -0.03710215538740158, 0.023897739127278328, 0.01920001395046711, -0.009832777082920074, 6.0947873862460256e-05, -0.009070983156561852, 0.0074204313568770885, 0.0012811176711693406, -0.016505522653460503, 0.021809861063957214, 0.0064928773790597916, -0.0070642223581671715, -0.010933144949376583, -0.047090113162994385, 0.009557684883475304, 0.006242473144084215, 0.009395451284945011, 0.008972232230007648, -0.02346041239798069, 0.010961359366774559, -0.004475535824894905, -0.005166792776435614, -0.006355331279337406, 0.002814403036609292, 0.030358875170350075, -0.0025375476107001305, 0.009494202211499214, -0.019609125331044197, 0.0016558424104005098, 0.010333585552871227, 7.670835475437343e-05, 0.008422048762440681, -0.0037842788733541965, -0.017704641446471214, -0.0017457763897255063, 0.006376492325216532, 0.013084505684673786, -0.006831452250480652, 0.01402969378978014, -0.017916250973939896, 0.017831606790423393, -0.009240270592272282, -0.037920378148555756, 0.011567972600460052, 0.006164883263409138, -0.0028390910010784864, 0.007187661249190569, -0.0007670835475437343, -0.04559474065899849, 0.013493617065250874, 0.0023664969485253096, 0.02925850637257099, 0.026197226718068123, -0.015475690364837646, -0.024038812145590782, 0.013155042193830013, -0.026564015075564384, -0.018635721877217293, 0.0015421024290844798, -0.01860750839114189, -0.01860750839114189, -0.0008508455357514322, 0.007850703783333302, 0.046807967126369476, 0.007780167274177074, -0.03312390297651291, -0.02707187831401825, -0.007138285785913467, -0.010883769951760769, 0.005724030546844006, 0.02891993150115013, 0.01225217618048191, 0.005706396419554949, 0.03151567280292511, -0.0006445265607908368, 0.0039006639271974564, -0.009769294410943985, 0.013578260317444801, -0.013408973813056946, -0.040487904101610184, -0.015461583621799946, 0.024715961888432503, -0.012456731870770454, 0.02052609808743, -0.011285827495157719, 0.028623679652810097, 0.012597804889082909, 0.02642294205725193, 0.005893317982554436, -0.020723599940538406, -0.008802944794297218, 0.007963561452925205, 0.041503630578517914, 0.013133881613612175, -0.02870832197368145, -0.028299210593104362, 0.013232632540166378, 0.012894057668745518, -0.0025128598790615797, -0.012858789414167404, 0.026803839951753616, 0.011335202492773533, 0.0008966942550614476, -0.010813233442604542, 0.009931528009474277, -0.007364002056419849, -0.004493169952183962, 0.0011647326173260808, 0.018635721877217293, -0.005646440200507641, 0.022980766370892525, 0.012089942581951618, 0.023911846801638603, -0.004641296342015266, 0.012357980944216251, 0.01694284752011299, -0.030104944482445717, -0.024377387017011642, 0.017493031919002533, -0.025421325117349625, -0.022218972444534302, 0.010016171261668205, 0.006775022950023413, -0.0020349756814539433, -0.008400887250900269, 0.021372534334659576, 0.014615146443247795, -0.035606782883405685, -0.015207652002573013, 0.005773406010121107, -0.03873860090970993, -0.033321402966976166, 0.005547689273953438, 0.03357533738017082, 0.019595017656683922, 0.015151223167777061, -0.005801620427519083, 0.023474520072340965, -0.00014691414253320545, 0.01925644278526306, -0.00912035908550024, 0.013338437303900719, -0.01688641868531704, -0.020596634596586227, -0.0014248356455937028, 0.012915218248963356, -0.016618380323052406, -0.013472456485033035, 0.0036890546325594187, -0.020596634596586227, 0.008711247704923153, -0.0005373993190005422, 0.08176581561565399, 0.029314935207366943, -0.012795306742191315, -0.0012246886035427451, -0.012640126049518585, 0.009607059881091118, 0.00810463447123766, -0.0014424697728827596, 0.010509926825761795, -0.01855107769370079, 0.028948146849870682, -0.00935312919318676, -0.003376931184902787, -0.01888965256512165, -0.02491346374154091, -0.009000447578728199, 0.0007084501557983458, 0.004175756126642227, -0.019453944638371468, 0.005801620427519083, 0.012936379760503769, 0.01282352115958929, 0.013380758464336395, -0.011991191655397415, -0.02956886775791645, -0.015997659415006638, 0.020723599940538406, 0.01574372872710228, -0.014072015881538391, -0.015546226873993874, 0.02432095818221569, -0.01003027893602848, -0.03261604160070419, -0.011151808314025402, -0.008330350741744041, 0.02876475267112255, -0.012964594177901745, -0.00827392190694809, 0.02530846744775772, 0.02478649839758873, 0.003570906352251768, 0.006090819835662842, -0.013930942863225937, -0.030951380729675293, -0.004027629736810923, 0.0019520954228937626, -0.00871830154210329, -0.014713897369801998, -0.012626019306480885], "ecb9caf5-ef92-4595-affa-0b60ab364b41": [0.011609666049480438, 0.012769226916134357, 0.01849675551056862, -0.00870022177696228, -0.013703904114663601, 0.02673315443098545, -0.02234790474176407, -0.02968476340174675, -0.024414032697677612, -0.04118198901414871, 0.028152737766504288, 0.025046519935131073, 0.014153673313558102, -0.009058631956577301, -0.0018816514639183879, 0.020099058747291565, 0.023078778758645058, -0.004972057417035103, 0.01470182929188013, -0.0037843857426196337, -0.01770966127514839, -0.0030904060695320368, -0.010260358452796936, -0.019635234028100967, -0.016388462856411934, 0.021996522322297096, 0.017302056774497032, -0.0009557594312354922, -0.02239007130265236, 0.04410548880696297, 0.0237955991178751, -0.008573724888265133, -0.025004353374242783, -0.0003057024732697755, -0.03139951080083847, 0.0014248546212911606, 0.0008507840102538466, -0.00034523295471444726, 0.011012316681444645, -0.004933405201882124, 0.031287066638469696, 0.02112509496510029, -0.0008384856628254056, -0.0005793413147330284, -0.011954020708799362, 0.027267254889011383, 0.00469095166772604, 0.006089452654123306, -0.008320729248225689, -0.00951542891561985, 0.0018640822963789105, -0.00427280692383647, -0.027492139488458633, 0.017147449776530266, -0.023767488077282906, -0.01189779955893755, 0.018117263913154602, -0.006707885302603245, 0.020773712545633316, 0.0006487392820417881, 0.0034259760286659002, 0.009557594545185566, -0.02416103705763817, -0.0034628710709512234, -0.019972560927271843, -0.0274218637496233, -0.00251589622348547, -0.009023494087159634, -0.013204941526055336, -0.013514157384634018, 0.031202735379338264, 0.02094237692654133, -0.0062440610490739346, 0.007196306250989437, -0.01772371493279934, -0.020000671967864037, -0.012502176687121391, -0.010660934261977673, -0.005762667395174503, 0.0012526774080470204, 0.014898602850735188, -0.023683156818151474, -0.034154344350099564, -0.006613011937588453, 0.028110571205615997, 0.02165919542312622, 0.028813336044549942, 0.0032590695191174746, -0.009016466327011585, -0.004339569713920355, 0.0025352223310619593, 0.013464963994920254, 0.01780804805457592, 0.017681550234556198, 0.014786160551011562, 0.019860118627548218, 0.003264340106397867, 0.016346298158168793, -0.007653103210031986, -0.014743994921445847, -0.01912924461066723, -0.006173784378916025, -0.010843653231859207, -0.008932134136557579, -0.03288936987519264, -0.007814738899469376, 0.01654307171702385, -0.016964729875326157, 0.008208286948502064, 0.015137542970478535, -0.04264373704791069, 0.03134328871965408, 0.014884548261761665, -0.018103208392858505, 0.00048666427028365433, -0.026156887412071228, 0.03210227191448212, -0.031005961820483208, -0.009599760174751282, -0.00802556797862053, 0.003299478441476822, -0.006996018812060356, 0.039804570376873016, -0.03575664758682251, 0.025903891772031784, 0.014982935041189194, -0.0034892247058451176, -0.01260056346654892, 0.008735360577702522, -0.0055940039455890656, 0.023725323379039764, 0.016304131597280502, 0.016782011836767197, 0.013970954343676567, -0.01603708043694496, -0.008693194016814232, -0.020956430584192276, 0.014378557913005352, -0.0019150327425450087, -0.03109029307961464, 0.015980860218405724, 0.041491203010082245, 0.010541464202105999, -0.011553444899618626, -0.005864568054676056, 0.03249582275748253, 0.00011321093916194513, 0.014898602850735188, 0.005021250806748867, 0.000683877500705421, 0.0072665829211473465, -0.01044307742267847, -0.01835620403289795, 0.011939965188503265, 0.0251449067145586, 0.0057661812752485275, 0.0042868624441325665, 0.0062651438638567924, -0.02473730407655239, -0.005509672220796347, -0.016529016196727753, 0.005260190926492214, -0.001575948903337121, 0.0015610152622684836, -0.010520381852984428, 0.03390134871006012, 0.0022664149291813374, -0.015306206420063972, -0.0031835222616791725, -0.026227163150906563, -0.008524530567228794, 0.04241885244846344, -0.026592601090669632, 0.02094237692654133, 0.016880398616194725, 0.0051793730817735195, 0.023556658998131752, 0.004891239572316408, 0.0033908376935869455, -0.024526474997401237, 0.008524530567228794, -0.003408406861126423, -0.001162196509540081, 0.019297907128930092, -0.017231781035661697, -0.0233458299189806, 0.024357810616493225, 0.01825781725347042, 0.013514157384634018, -0.002076668431982398, -0.004480122588574886, 0.0069222282618284225, -0.016107358038425446, -0.00030284750391729176, -0.621131181716919, -0.00026683081523515284, 0.01731611229479313, -0.01654307171702385, 0.0074211908504366875, 0.026156887412071228, 0.021181315183639526, -0.0036016670055687428, -5.54250436834991e-05, 0.018229706212878227, 0.00591376144438982, 0.013886622153222561, -0.014575331471860409, -0.012207016348838806, -0.009213239885866642, -0.02982531674206257, -0.005548323970288038, -0.017203669995069504, -0.016641458496451378, 0.011209090240299702, -0.015741920098662376, 0.026803430169820786, -0.008180176839232445, -0.010485243052244186, 0.005846999119967222, -0.023865874856710434, 0.022151131182909012, -0.030556192621588707, 0.007055753376334906, 0.02175758220255375, -0.0260585006326437, 0.008875912986695766, 0.005435881670564413, 0.012410817667841911, 0.04725387319922447, -0.0007954413304105401, -0.01012683380395174, 0.010000335983932018, 0.015151598490774632, 0.043711937963962555, -0.03924235701560974, -0.010281441733241081, 0.018328092992305756, 0.016191689297556877, -0.007758517749607563, 0.0015127001097425818, -0.0013168045552447438, 0.016416573897004128, -0.018567033112049103, -0.031933609396219254, -0.013577406294643879, -0.006841410417109728, -0.014209894463419914, 0.009719230234622955, 0.01158155594021082, -0.0018394856015220284, 0.030415639281272888, -0.016458740457892418, 0.00845425482839346, -0.004975571297109127, 0.01740044355392456, 0.012902752496302128, -0.015896528959274292, -0.03792116045951843, -0.04205341637134552, 0.0031852792017161846, 0.0019853091798722744, -0.021631084382534027, -0.0007321925368160009, -0.006613011937588453, 0.016922565177083015, -0.015292150899767876, -0.009620843455195427, -0.01389364991337061, 0.00026683081523515284, 0.02473730407655239, 0.030612412840127945, -0.02302255854010582, -0.019452515989542007, 0.009466235525906086, -0.01328224502503872, -0.018370259553194046, -0.024315644055604935, -0.0007976375054568052, 0.042306412011384964, 0.014111506752669811, -0.02234790474176407, -0.024891911074519157, -0.005977010354399681, 0.009402986615896225, 0.015418648719787598, 0.028293291106820107, -0.007639048155397177, -0.01334549393504858, 0.01709122769534588, 0.0269580390304327, -0.01870758645236492, -0.003592882538214326, 0.0008345326059497893, -0.007660130970180035, -0.015488925389945507, -0.03139951080083847, 0.021715417504310608, 0.00831370148807764, 0.029516100883483887, 0.019916340708732605, -0.008763470686972141, -0.001344036776572466, -6.407233740901574e-05, -0.019719567149877548, -0.008433171547949314, -0.006159729324281216, -0.02872900478541851, -0.016107358038425446, 0.03317047655582428, -0.023303663358092308, 0.0013264676090329885, -0.01141992025077343, 0.003724650712683797, -0.015460814349353313, -0.0030868921894580126, -0.01434341911226511, 0.010618768632411957, -0.00633190618827939, 0.0031729808542877436, 0.016978785395622253, 0.0019958505872637033, -0.00042143897735513747, 0.030471859499812126, -0.010302525013685226, 0.003324075136333704, -0.0353349894285202, 0.0008468310115858912, 0.003434760496020317, 0.019058967009186745, -0.017344223335385323, 0.028082462027668953, -0.0056396834552288055, -0.0021908676717430353, -0.04177230969071388, 0.005994579289108515, -0.00644786236807704, 0.011918882839381695, -0.01884813793003559, 0.00890402402728796, -0.01205240748822689, -0.02451241947710514, 0.005815374664962292, -0.008953217417001724, -0.01681012287735939, -0.007554716430604458, -0.003422462148591876, -0.00863697286695242, 0.02917877398431301, -0.00854561384767294, -0.0016181147657334805, 0.01035171840339899, -0.045792121440172195, -0.010569575242698193, -0.023177167400717735, -0.01164480485022068, -0.0037351923529058695, -0.007287665735930204, -0.009079715237021446, -0.011946992948651314, -0.007357942406088114, -0.009431096725165844, 0.008355867117643356, -0.017737770453095436, -0.030781077221035957, 0.0190308578312397, -0.007540660910308361, 0.022080853581428528, 0.027702968567609787, -0.01447694469243288, 0.02120942622423172, -0.02565089613199234, -0.012277292087674141, -0.00630028173327446, -0.006360016763210297, 0.00831370148807764, 0.015362427569925785, 0.0020327456295490265, -0.0003254677285440266, 0.03449167311191559, 0.003889800515025854, 0.017302056774497032, 0.005579948425292969, -0.015615423209965229, -0.000855615537147969, 0.016739845275878906, 0.005537782795727253, -0.015573256649076939, -0.005358577705919743, -0.029010109603405, -0.001978281419724226, -0.01260056346654892, 0.0066165258176624775, -0.013169802725315094, 0.03702162206172943, 0.017456665635108948, 0.018468646332621574, -0.0224322360008955, -0.0037457337602972984, 0.007491467520594597, -0.01794859953224659, 0.0158684179186821, -0.013106553815305233, 0.027435917407274246, 0.024624861776828766, -0.0019607124850153923, 0.001503915642388165, -0.004135767929255962, 0.004560940433293581, 0.019607124850153923, 0.02434375509619713, 0.024484308436512947, 0.014617497101426125, 0.006781675387173891, 0.00969814695417881, 0.013366577215492725, -0.004585537128150463, 0.03204605355858803, 0.00992303155362606, 0.006293254438787699, 0.019775787368416786, -0.001980038359761238, 0.029150662943720818, 0.010084668174386024, -0.012024297378957272, -0.008166121318936348, 0.01912924461066723, 0.020562883466482162, 0.014982935041189194, 0.0425875149667263, 0.030471859499812126, 0.03198983147740364, -0.003837093012407422, 0.02125159278512001, 0.00068519520573318, -0.005485075525939465, 0.004455525893718004, 0.01121611800044775, -0.019930396229028702, 0.03561609610915184, 0.007428218610584736, 0.02618499845266342, 0.0006685045664198697, -0.020366109907627106, 0.03266448527574539, 0.011370726861059666, 0.00015559641178697348, -0.03494144231081009, -0.006131618749350309, 0.024132926017045975, -0.024371866136789322, 0.019677400588989258, 0.017512885853648186, 0.016529016196727753, 0.015699755400419235, 0.004276320803910494, -0.008419116027653217, 0.005555351730436087, -0.01219296082854271, 0.022825784981250763, 0.0015943965408951044, -0.006901145447045565, -0.025130851194262505, -0.004448498133569956, -0.008974299766123295, -0.0061808121390640736, -0.015137542970478535, -0.008264508098363876, -0.0020872100722044706, -0.0008055435610003769, 0.0028637645300477743, -0.003239743411540985, 0.017878323793411255, -0.010590657591819763, 0.019297907128930092, -0.046522997319698334, -0.016065191477537155, 0.02510274015367031, 0.011251256801187992, 0.011715080589056015, -0.013675793074071407, -0.007273610681295395, -0.013823374174535275, 0.02473730407655239, 0.020872099325060844, -0.014982935041189194, 0.01617763377726078, 0.013900677673518658, -0.009262433275580406, -0.002139917341992259, 0.019297907128930092, 0.03946724161505699, -0.029909648001194, -0.013036278076469898, 0.012586508877575397, -0.0039425077848136425, 0.01289572473615408, -0.005281273741275072, -0.027295365929603577, 0.029712874442338943, -0.02343016117811203, -0.01502510067075491, -0.051723454147577286, -0.013233051635324955, -0.017526941373944283, -0.0013949871063232422, -0.0005297085735946894, -0.009367847815155983, -0.003801954910159111, -0.020590994507074356, 0.019832009449601173, -0.0004677774850279093, 0.0063354200683534145, 0.025229237973690033, 0.004933405201882124, 0.005558865610510111, -0.019382240250706673, 0.008053679019212723, 0.026536380872130394, 0.07606720924377441, 0.01302925031632185, -0.00892510637640953, 0.015292150899767876, -0.0003311776672489941, -0.02310688979923725, -0.020408274605870247, -0.01785021275281906, 0.035728536546230316, -0.0013431583065539598, -0.02047855220735073, 0.0033890807535499334, 0.013331438414752483, -0.00831370148807764, -0.0011982130818068981, -0.006328392308205366, -0.013767153024673462, -0.014575331471860409, -0.002245331881567836, 0.02070343680679798, 0.010098722763359547, -0.006929256021976471, 0.019747676327824593, 0.004610133823007345, 0.021954357624053955, 0.013064388185739517, 0.029347436502575874, 0.005309384316205978, 0.00870022177696228, -0.026803430169820786, -0.022235462442040443, 0.0099722258746624, 0.018791917711496353, 0.01970551162958145, -0.01019711047410965, 0.019002746790647507, -0.00793420895934105, -0.019916340708732605, -0.017020951956510544, -0.01243892777711153, 0.005453451070934534, 0.02823706902563572, 0.0103095518425107, 0.005274245981127024, 0.0014582358999177814, -0.016388462856411934, -0.006651664152741432, 0.022179242223501205, -0.02864467352628708, 8.531998173566535e-05, 0.014132590033113956, 0.013577406294643879, -0.01470182929188013, 0.01395689882338047, 0.01221404317766428, -0.021912191063165665, -0.024554584175348282, -0.014659663662314415, -0.035953421145677567, -0.026705043390393257, -0.013584434054791927, -0.025116795673966408, 0.001662037568166852, 0.0029516101349145174, -0.00825045257806778, -0.030471859499812126, 0.003826551605015993, -0.004842046182602644, -0.0303594172000885, 0.003299478441476822, -0.009803562425076962, -0.04770364239811897, -0.027745135128498077, 0.006785189267247915, 0.024231312796473503, 0.03064052388072014, 0.0019326017936691642, 7.460007964255055e-06, 0.0013510644203051925, 0.011616693809628487, 0.014491000212728977, -0.03778060898184776, 0.007660130970180035, -0.02465297095477581, 0.011946992948651314, -0.013429826125502586, -0.02116726152598858, 0.00030328670982271433, -0.019185464829206467, 0.007498495280742645, -0.0024649458937346935, 0.0015364184509962797, 0.012340540997684002, -0.0010831354884430766, 0.007920153439044952, 0.02116726152598858, 0.03229904547333717, 0.00967706460505724, 0.01780804805457592, -0.0480409674346447, 0.016866343095898628, -0.014195838943123817, -0.02080182358622551, -0.019283851608633995, -0.002334934426471591, 0.01082959771156311, -0.0033170476090162992, -0.0025352223310619593, -0.016964729875326157, -0.012488122098147869, 0.013970954343676567, 0.005558865610510111, -0.0013370091328397393, -0.008095844648778439, 0.01650090515613556, -0.003302992321550846, 0.0004324196488596499, 0.02080182358622551, 0.01341577060520649, 0.0005490346229635179, -0.012017269618809223, -0.008932134136557579, 0.025187073275446892, 0.004399304743856192, -0.004733117762953043, -0.002872548997402191, 0.00740010803565383, -0.019733620807528496, -0.019789842888712883, 0.008327757008373737, -0.021771637722849846, 0.007596882060170174, -0.007962319999933243, -0.011715080589056015, -0.018862193450331688, -0.0007616208167746663, -0.01137775368988514, -0.0006887090275995433, -0.03272070735692978, -0.0023156083188951015, -0.020773712545633316, -0.007779601030051708, -0.002661719685420394, -0.008060706779360771, 0.006391641218215227, -0.02546817809343338, -0.023486383259296417, 0.012537315487861633, 0.0030236435122787952, 0.02397831715643406, -0.012853559106588364, -0.015362427569925785, -0.012228098697960377, -0.01334549393504858, 0.0013018709141761065, -0.022825784981250763, -0.014259087853133678, 0.004620675463229418, 0.051864005625247955, 0.014287197962403297, -0.0025984710082411766, -0.0008477094233967364, 0.028700893744826317, 0.012424873188138008, -0.0044203875586390495, -0.011145842261612415, -0.02047855220735073, -0.021996522322297096, 0.013366577215492725, -0.0029656654223799706, 0.003327589016407728, -0.0003981599002145231, -0.007294693496078253, 0.00822234246879816, -0.011954020708799362, 0.0210688728839159, -0.014125562272965908, -0.004719062242656946, -0.0371621772646904, -0.03887692093849182, 0.009424068965017796, 0.04272807016968727, -0.005759153515100479, -0.011623721569776535, -0.022418180480599403, -0.0002065468142973259, 0.017737770453095436, -0.00562914228066802, 0.025299515575170517, 0.014013119973242283, 0.03204605355858803, 0.01562947779893875, -0.0007163803675211966, 0.00630028173327446, 0.0020011214073747396, -0.02021150104701519, -0.007716352120041847, -0.03494144231081009, -0.013612544164061546, -0.0029024165123701096, 0.022263573482632637, 0.00017261647735722363, -0.028433844447135925, 0.015502980910241604, 0.006036745384335518, 0.015292150899767876, -0.012403789907693863, -0.028152737766504288, 0.012874642387032509, -0.013064388185739517, 0.013619571924209595, -0.013900677673518658, -0.02275550737977028, 0.008559669367969036, -0.007322804071009159, -0.020323943346738815, 0.021546753123402596, 0.0167679563164711, -0.020815879106521606, -0.020717492327094078, 0.027295365929603577, 0.0072033340111374855, 0.043205950409173965, 0.0077444626949727535, 0.02239007130265236, 0.029150662943720818, 0.00544993719086051, -0.004244696348905563, -0.030921628698706627, -0.0006979327881708741, -0.01758316345512867, 0.003006074344739318, 0.0376119464635849, 0.0012043623719364405, -0.007849877700209618, 0.0143855856731534, -0.021518642082810402, 0.005309384316205978, -0.03879258781671524, 0.008594807237386703, 0.011616693809628487, 0.001614601002074778, -0.03139951080083847, -0.024905966594815254, -0.014758050441741943, 0.02265712060034275, 0.004343083593994379, 0.020422330126166344, -0.006718426942825317, -0.00075766775989905, 0.007470384705811739, 0.045707788318395615, -0.008974299766123295, 0.018061041831970215, -0.004610133823007345, 0.00935379322618246, -0.0344354510307312, 0.0009478533756919205, -0.004803393967449665, -0.00944515224546194, 0.00564319733530283, 0.01762532815337181, -0.026269329711794853, -0.0021469448693096638, 0.005548323970288038, 0.017976710572838783, -0.011701026000082493, -0.007259555160999298, -0.009283516556024551, 0.029881538823246956, -0.009213239885866642, -0.01762532815337181, 0.007730407174676657, -0.0032309589441865683, 0.015587312169373035, -0.030668634921312332, -0.015460814349353313, -0.008398033678531647, 0.003921424970030785, 0.016486849635839462, 0.015278096310794353, 0.01666956953704357, 0.00222600600682199, -0.013619571924209595, 0.0039881872944533825, -0.016613347455859184, 0.006563818547874689, 0.0034171913284808397, 0.009641925804316998, -0.030190754681825638, -0.012853559106588364, -0.007020615506917238, -0.0008815299952402711, 0.007913125678896904, -0.001576827373355627, -0.01703500747680664, 0.0021170773543417454, 0.03198983147740364, -0.0011024614796042442, -0.007856904529035091, 0.031005961820483208, 0.004940432962030172, -0.04101332277059555, 0.015278096310794353, -0.0007383417687378824, -0.0017068388406187296, 0.016107358038425446, -0.008046651259064674, -0.023992372676730156, -0.0339856818318367, 0.01835620403289795, 0.0028075433801859617, 0.019817953929305077, -0.014230976812541485, 0.007101433351635933, 0.022685231640934944, -0.002517653163522482, -0.00040540716145187616, -0.019058967009186745, 0.0007128665456548333, 0.0056150867603719234, 0.016458740457892418, 0.024259423837065697, -0.023373940959572792, 0.007379025220870972, 0.0005916397203691304, 0.028897667303681374, -0.014617497101426125, -0.04340272396802902, -0.025271404534578323, -0.03814604505896568, 0.0023665588814765215, -0.00999330822378397, 0.0007185764843598008, -0.00020643702009692788, -0.022544678300619125, -0.012698951177299023, 0.02714075706899166, -0.002760106697678566, 0.004648786038160324, 0.017006896436214447, -0.0215326976031065, -0.02179974876344204, 0.018426479771733284, -0.017049061134457588, -0.04708520695567131, -0.005896192509680986, -0.014273143373429775, -0.0357847586274147, -0.002642393810674548, -0.0002089625777443871, 0.05824510380625725, 0.0024280506186187267, -0.016079246997833252, -0.02292417176067829, -0.015938693657517433, -0.03356402367353439, -0.01962117850780487, -0.021785693243145943, 0.017063116654753685, 0.03544742986559868, 0.04407737776637077, 0.0050071957521140575, 0.04761930927634239, -0.011932937428355217, 0.01681012287735939, -0.033873237669467926, -0.0021908676717430353, -0.023219332098960876, -0.015460814349353313, 0.004353624768555164, -0.01595274917781353, -0.04517368972301483, -0.0016673082718625665, 0.0035366613883525133, -0.0203942209482193, 0.01554514653980732, 0.004381735343486071, -0.015488925389945507, 0.0024104814510792494, -0.008946189656853676, -0.007779601030051708, 0.041940972208976746, 0.02510274015367031, 0.014462889172136784, -0.017864268273115158, -0.0009425826137885451, 0.005393716040998697, -0.012818421237170696, -0.02184191532433033, 0.011848606169223785, 0.033423468470573425, -0.006563818547874689, 0.008622918277978897, 0.00040277178050018847, -0.016374407336115837, -0.00047744050971232355, -0.007828794419765472, 0.0005437638610601425, 0.0018921928713098168, 0.012319458648562431, 0.02709859237074852, -0.01672578975558281, 0.0037562751676887274, -0.01713339425623417, 0.0026072554755955935, 0.018637308850884438, 0.013289272785186768, 0.018595144152641296, -0.028307346627116203, -0.0008639608859084547, -0.01725989207625389, -0.004139281809329987, 0.011982131749391556, -0.015699755400419235, -0.016782011836767197, -0.003225688124075532, -0.021968411281704903, -0.011019344441592693, 0.00491583626717329, -0.008644000627100468, -0.007414163555949926, -0.010913929902017117, -0.007217389531433582, -0.010590657591819763, -0.006360016763210297, 0.0032731248065829277, -0.021602975204586983, -0.0021205912344157696, -0.0116729149594903, 0.00033622878254391253, -0.05681146681308746, -0.00624054716899991, 0.024554584175348282, -0.011834550648927689, 0.00032327158260159194, 0.2071186900138855, -0.003137842519208789, 0.018342148512601852, 0.03747139126062393, 0.01790643483400345, 0.007449301425367594, -0.0006891482626087964, 0.010429021902382374, -0.005284787621349096, -0.0023033099714666605, 0.009402986615896225, -0.002628338523209095, -0.03272070735692978, -0.0016427115770056844, 0.021265648305416107, -0.01595274917781353, -0.039495352655649185, -0.016655514016747475, -0.01890436001121998, -0.005896192509680986, 0.008580751717090607, 0.0014345176750794053, -0.021560808643698692, -0.004230641294270754, 0.03322669491171837, 0.023275554180145264, 0.000831018784083426, 0.01157452818006277, 0.01917140930891037, 0.02754835970699787, -0.004648786038160324, -0.00012869371857959777, 0.02610066533088684, -0.013401715084910393, 0.008257480338215828, -0.012045379728078842, 0.007941236719489098, -0.01831403747200966, 0.01103339996188879, 0.014357474632561207, 0.010984205640852451, -0.02035205438733101, 0.005428854376077652, -0.03322669491171837, 0.017414499074220657, -0.003424219088628888, -0.01286761462688446, 0.0026722613256424665, 0.012558397836983204, 0.023584770038723946, -0.009965198114514351, -0.0037843857426196337, 0.00976842362433672, 0.013197913765907288, 0.005516699980944395, 0.003724650712683797, -0.021898135542869568, 0.006194867193698883, -0.011300450190901756, 0.004030353389680386, -0.003079864662140608, 0.00352260610088706, -0.007751490455120802, 0.0039038558024913073, -0.033423468470573425, 0.03272070735692978, -0.0061808121390640736, 0.03991701081395149, 0.007962319999933243, -0.008320729248225689, -0.016065191477537155, -0.00829261913895607, -0.03496955335140228, 0.005098555237054825, -0.013584434054791927, -0.00427280692383647, 0.010850680992007256, 0.012495148926973343, 0.04736631363630295, 0.016079246997833252, 0.016697680577635765, 0.01067498978227377, -0.022446291521191597, -0.019916340708732605, -0.004276320803910494, -0.012966001406311989, 0.030977850779891014, -0.01762532815337181, 0.01051335409283638, -0.023416105657815933, -0.00644786236807704, 0.013675793074071407, 0.0048806979320943356, -0.016079246997833252, 0.0023279066663235426, -0.001807861146517098, 0.006637608632445335, 0.021321868523955345, -0.0014389099087566137, -0.04140687361359596, -0.010696073062717915, 0.03617830574512482, 0.008559669367969036, 0.023359885439276695, -0.008433171547949314, 0.01803293265402317, -0.004209558013826609, 0.008412088267505169, 0.00938190333545208, -0.011068537831306458, -0.0010014391737058759, -0.040816549211740494, 0.02347232773900032, 0.0024122383911162615, 5.9734964452218264e-05, 0.020113114267587662, 0.01780804805457592, -0.00990194920450449, 0.009410014376044273, 0.005326953250914812, 0.041491203010082245, 0.009810589253902435, 0.006057828199118376, 0.004673382733017206, -0.014954824000597, -0.031202735379338264, -0.005471020005643368, 0.018061041831970215, -0.019972560927271843, -0.04331839084625244, 0.00725252740085125, -0.028560340404510498, 0.02143431082367897, -0.00801854021847248, -0.0025141392834484577, -0.0154045931994915, -0.01780804805457592, -0.021335924044251442, 0.007653103210031986, -0.0010831354884430766, 0.019874174147844315, 0.009487317875027657, 0.0031958206091076136, 0.005541296675801277, -0.008658056147396564, 0.016458740457892418, -0.005147748626768589, 0.006992504931986332, -0.02506057545542717, -0.02805435098707676, 0.014715884812176228, -0.0034523296635597944, -0.010407939553260803, 0.0005824159015901387, 0.04514557868242264, -0.02732347697019577, -0.050458475947380066, -0.011244229041039944, 0.0067430236376821995, 0.008405061438679695, -0.05003681778907776, -0.00036675512092188, 0.05242621526122093, 0.01799076609313488, -0.022361960262060165, -0.005815374664962292, -0.18058231472969055, 0.0057661812752485275, 0.01015494391322136, 0.002603741828352213, 0.004708520602434874, 0.031062182039022446, 0.01418178342282772, -0.018918415531516075, -0.008918078616261482, -0.0004084817483089864, 0.00953651126474142, -0.021040763705968857, -0.030303196981549263, -0.02954421192407608, 0.011567500419914722, -0.01872164011001587, -0.005541296675801277, 0.02373937889933586, 0.04643866419792175, 0.0057486118748784065, 0.01477210596203804, -0.02373937889933586, -0.008840775117278099, -0.008707249537110329, 0.026072556152939796, 0.0339856818318367, 0.002447376726195216, 0.031230846419930458, 0.00890402402728796, -0.039129916578531265, 0.015165654011070728, -0.0050528752617537975, 0.012607591226696968, 0.006693829782307148, 0.004388763103634119, -0.012987084686756134, 0.004687437787652016, -0.003153654746711254, -0.007962319999933243, 0.021912191063165665, 0.03477277606725693, 0.01517970860004425, 0.014519110321998596, 0.013844456523656845, -0.0027179408352822065, 0.02220735140144825, 0.024976244196295738, -0.0037351923529058695, 0.024765413254499435, -0.0027811897452920675, 0.018609197810292244, -0.02573522925376892, 0.0027196977753192186, 0.012410817667841911, 0.014828327111899853, 0.006349475588649511, 0.008264508098363876, 0.030415639281272888, -0.0032309589441865683, -0.0024912995286285877, 0.006848438177257776, -0.02414698153734207, 0.010429021902382374, -0.003383810166269541, -0.016486849635839462, -0.016261965036392212, -0.005586976185441017, 0.010927984490990639, -0.0006579631008207798, 0.016599291935563087, 0.007674186024814844, 0.0014318822650238872, 0.015896528959274292, 0.022376015782356262, 0.008686167187988758, 0.008967272937297821, -0.025538453832268715, -0.0008894360507838428, 0.02239007130265236, 0.0022769563365727663, 0.00838397815823555, 0.01603708043694496, 0.008946189656853676, -0.0019888230599462986, -0.008749415166676044, -0.000586808193475008, 0.001125301350839436, -0.01547486986964941, 0.005372633226215839, 0.0016883912030607462, 0.04129442945122719, -0.028925778344273567, -0.008629946038126945, 0.009304598905146122, -0.002310337731614709, 0.007182251196354628, 0.028349511325359344, 0.005565893370658159, -0.0052707321010529995, -0.0008692315896041691, -0.003396108513697982, 0.023233387619256973, -0.04528613016009331, 0.03266448527574539, 0.029487989842891693, 0.010562547482550144, 0.024090759456157684, -0.003387324046343565, 0.033648353070020676, -0.012094574049115181, -0.02047855220735073, 0.009466235525906086, 0.03412623330950737, 0.013528212904930115, -0.029010109603405, 0.029881538823246956, -0.014336391352117062, -0.022769562900066376, 0.018918415531516075, -0.031034070998430252, 0.03345157951116562, -0.028152737766504288, -0.02872900478541851, -0.0015249985735863447, -0.002630095463246107, -0.021996522322297096, -0.11682754009962082, -0.021715417504310608, 0.03196172043681145, -0.009754368104040623, -0.012530287727713585, 0.013886622153222561, 6.385272718034685e-05, 0.03466033563017845, 0.01754099689424038, 0.03190549835562706, -0.011321532540023327, 0.012762200087308884, -0.00586808193475008, -0.014174755662679672, -0.00435011088848114, -0.01848270185291767, 0.01627602055668831, -0.02130781300365925, 0.002066127024590969, 0.03266448527574539, 0.003615722293034196, -0.010780404321849346, 0.016472795978188515, 0.01080851536244154, -0.005045847501605749, -0.011483168229460716, -0.027618637308478355, 0.01380229089409113, 0.01577003113925457, 0.006064855959266424, 0.01709122769534588, -0.02542601153254509, 0.011743191629648209, -0.033423468470573425, -0.00591376144438982, -0.004926377907395363, -0.02298039197921753, -0.0073298318311572075, 0.0027724052779376507, -0.037864942103624344, 0.01547486986964941, -0.004399304743856192, 0.017245836555957794, -0.04241885244846344, -0.0025492776185274124, 0.005562379490584135, -0.018567033112049103, 0.04137876257300377, 0.0016286562895402312, -0.0029867482371628284, -0.03688107058405876, -0.012874642387032509, -0.04278429225087166, -0.02923499420285225, 0.01980389840900898, 0.007442274130880833, 0.006416237913072109, 0.01772371493279934, -0.009417041204869747, 0.018637308850884438, -0.010703099891543388, -0.011975103989243507, 0.015418648719787598, 0.015938693657517433, 0.00801854021847248, 0.016163578256964684, -0.008974299766123295, -0.012228098697960377, -0.011876716278493404, -0.008580751717090607, -0.022671176120638847, 0.003956562839448452, -0.020056894049048424, 0.015784086659550667, -0.017639383673667908, 0.006988991051912308, -0.0016304132295772433, -0.019789842888712883, 0.006946824956685305, 0.01371093187481165, -0.01735827885568142, -0.011546417139470577, 0.0031483841594308615, -0.03553176298737526, 0.01499699056148529, -0.0009988037636503577, 0.012544342316687107, -0.015587312169373035, 0.029066331684589386, -0.03651563450694084, 0.015193764120340347, 0.016964729875326157, 0.002809300320222974, 0.012094574049115181, 0.0018640822963789105, 0.008798609487712383, -0.008911051787436008, -0.015741920098662376, 0.03094973973929882, -0.00019413864356465638, -0.005463992245495319, -0.008967272937297821, -0.04084466025233269, 0.0018781375838443637, 0.0070311566814780235, 0.006946824956685305, 0.01821565069258213, -0.020056894049048424, 0.005095041356980801, 0.0021047790069133043, 0.0022541165817528963, -0.0005582583835348487, -0.029937759041786194, 0.0052250525914132595, -0.018328092992305756, -0.003900341922417283, -0.03159628435969353, -0.006419751793146133, 0.0058751096948981285, -0.008405061438679695, 0.024090759456157684, -0.0012772741029039025, -0.013317383825778961, -0.009880865924060345, -0.00205558561719954, 0.025411957874894142, -0.028110571205615997, 0.009325682185590267, -0.022910116240382195, 0.005428854376077652, -0.006844924297183752, -0.04851884767413139, 0.009810589253902435, 0.0021961384918540716, -0.0010673232609406114, 0.008166121318936348, -0.013071415945887566, -0.039495352655649185, 0.002062613144516945, 0.00924837775528431, 0.0181313194334507, 0.022137075662612915, -0.01957901380956173, -0.0054604788310825825, 0.0224322360008955, -0.022629011422395706, -0.014392612501978874, -0.010372800752520561, -0.016613347455859184, -0.022080853581428528, 0.002723211655393243, 0.006321365013718605, 0.03584098070859909, 0.01605113595724106, -0.026114720851182938, -0.023317718878388405, -0.01770966127514839, -0.028293291106820107, 0.013668765313923359, 0.014069341123104095, 0.00445201201364398, 0.00983167253434658, 0.041716087609529495, -0.004462553188204765, 0.003582341130822897, -0.009332709945738316, 0.029937759041786194, -0.025903891772031784, -0.03769627586007118, -0.016866343095898628, -0.00047831895062699914, -0.02075965702533722, 0.02420320175588131, -0.02909444272518158, 0.03280503675341606, 0.01821565069258213, 0.01312060933560133, -0.0027934880927205086, -0.006841410417109728, -0.0031940636690706015, 0.004297403618693352, 0.034463562071323395, 0.018693530932068825, -0.026578545570373535, -0.02352854795753956, 0.017189614474773407, 0.008896996267139912, 0.009367847815155983, -0.012298375368118286, 0.016796067357063293, 0.01524998527020216, 0.0067254542373120785, -0.00012452104419935495, 0.004705007188022137, -0.020141225308179855, 0.019044913351535797, 3.108908458671067e-06, 0.015306206420063972, -0.011026372201740742, 0.009171074256300926, 0.008911051787436008, 0.03027508594095707, -0.006374072283506393, 0.023219332098960876, 0.007800683844834566, -0.025454122573137283, -0.019550902768969536, 0.007653103210031986, -0.019283851608633995, -0.009374875575304031, 0.016023026779294014, 0.016233855858445168, 0.0016462253406643867, -0.015348372049629688, 0.0076179648749530315, 0.008559669367969036, -0.02084398828446865, -0.004729603882879019, -0.011932937428355217, -0.026156887412071228, -0.033788908272981644, -0.009283516556024551, 0.014364502392709255, 0.02298039197921753, 0.006911687087267637, -0.03280503675341606, 0.02895388938486576, -0.0061808121390640736, 0.022896060720086098, -0.0063108233734965324, 0.01799076609313488, -0.01662740297615528, -0.005000167991966009, -0.0018307010177522898, -0.007189278956502676, -0.017119338735938072, -0.01472993940114975, -0.02610066533088684, -0.025187073275446892, 0.013043305836617947, -0.0006078911246731877, 0.08719899505376816, 0.034154344350099564, -0.006307309493422508, 0.010949067771434784, -0.034098122268915176, -0.0016646729782223701, 0.026662876829504967, -0.006219463888555765, -0.0004563575785141438, -0.008566697128117085, 0.030443750321865082, -0.018749751150608063, 0.00112442288082093, -0.007990430109202862, -0.0073298318311572075, -0.006001607049256563, -0.0016304132295772433, -0.0004655813390854746, -0.0042868624441325665, 0.016978785395622253, 0.025004353374242783, 0.021364035084843636, 0.009367847815155983, -0.028532231226563454, -0.04241885244846344, -0.025622786954045296, 0.033507801592350006, 0.017695605754852295, -0.01389364991337061, -0.034238677471876144, 0.022151131182909012, 0.001429246854968369, -0.037274617701768875, -0.017330167815089226, -0.016866343095898628, 0.016374407336115837, -0.01890436001121998, -0.023275554180145264, 0.00017031053721439093, 0.030415639281272888, 0.0061386460438370705, -0.0020257181022316217, -0.012157822027802467, -0.009634898975491524, -0.002614283235743642, -0.005903220269829035, -0.01658523827791214, -0.01790643483400345, -0.010429021902382374], "22b17438-5a36-49c6-9fe5-1e599edb22be": [0.0026702869217842817, -0.0024917114060372114, 0.01731681078672409, -0.03490065038204193, -0.013531678356230259, 0.013685219921171665, -0.010267253033816814, -0.03829191252589226, -0.02432631328701973, -0.044673897325992584, 0.018678655847907066, 0.025728214532136917, 0.016796104609966278, -0.01160239614546299, -0.007697101682424545, 0.012076372280716896, 0.024072635918855667, -0.011789316311478615, 0.010387415997684002, -0.008264537900686264, -0.021989813074469566, -0.01082801353186369, -0.019065847620368004, -0.008384700864553452, -0.01806449145078659, 0.006875988561660051, 0.004829881247133017, -0.008431430906057358, -0.028572069481015205, 0.03228376805782318, -0.0008928771712817252, -0.0019226064905524254, -0.014553063549101353, 0.008251186460256577, -0.019493093714118004, 0.005430696066468954, 0.005347249563783407, 0.0022413721308112144, 0.01267051137983799, -0.005400655325502157, 0.023084629327058792, 0.017770759761333466, -0.005520818289369345, -0.008251186460256577, -0.008912082761526108, 0.02395247295498848, 0.010974879376590252, -0.006916042882949114, -1.1643389370874502e-05, 0.000896215031389147, -0.005016801413148642, 0.0026752937119454145, -0.04042814299464226, 0.0066323247738182545, -0.016702644526958466, -0.015794746577739716, 0.020547857508063316, 0.0032694325782358646, 0.017570488154888153, 0.005747792311012745, -0.0027353751938790083, 0.00039032084168866277, -0.006341931410133839, 0.0001223533763550222, -0.009526248089969158, -0.025968540459871292, -0.01683615893125534, -0.010173792950809002, -0.020721426233649254, -0.010861392132937908, 0.024887073785066605, 0.032951340079307556, 0.0016680947737768292, 0.02181624434888363, -0.009092326276004314, -0.015300743281841278, -0.0009729857556521893, -0.02843855507671833, -0.0047531104646623135, 0.010641093365848064, 0.0010939831845462322, -0.025407779961824417, -0.048091866075992584, 0.013611786998808384, 0.019906988367438316, 0.015634529292583466, 0.011889452114701271, -0.0033328516874462366, -0.015581123530864716, 0.012129778042435646, 0.007677074521780014, 0.0008645053603686392, 0.03751752898097038, 0.017143242061138153, 0.005417344626039267, 0.020080557093024254, 0.007596965879201889, 0.007343288976699114, -0.01283072866499424, -0.01993369124829769, -0.024980533868074417, 0.006705757696181536, 0.0024349677842110395, -0.012103075161576271, -0.026756273582577705, -0.001959322951734066, 0.021669378504157066, -0.011902803555130959, -0.004446027800440788, 0.012890810146927834, -0.030014025047421455, 0.028518663719296455, -0.0011790985008701682, -0.0017857543425634503, -0.001847504754550755, -0.012496942654252052, 0.021348943933844566, -0.033164963126182556, -0.0007856484735384583, -0.012490266934037209, -0.00386190228164196, -0.01518058031797409, 0.029640184715390205, -0.026128757745027542, 0.023885715752840042, 0.008691783994436264, 0.00938605796545744, -0.008818622678518295, 0.007543560583144426, -0.023551929742097855, 0.015901558101177216, 0.00997352134436369, 0.007556912023574114, 0.026422487571835518, -0.022256840020418167, 0.011996263638138771, -0.018371572718024254, 0.006034848280251026, -0.018424978479743004, -0.03009413368999958, 0.02174948714673519, 0.023084629327058792, 0.019533148035407066, -0.022951114922761917, 0.0020511141046881676, 0.021522512659430504, -0.011488908901810646, 0.017971031367778778, 0.0004948375280946493, 0.011956209316849709, 0.026903139427304268, -0.00815105065703392, -0.010974879376590252, 0.010888095013797283, 0.025688160210847855, -0.001955985091626644, 0.0037050230894237757, 0.01923941634595394, -0.024499882012605667, 0.00268530729226768, -0.006922718603163958, 0.00965308677405119, 0.0049133277498185635, -0.003838537260890007, -0.0025768268387764692, 0.03372572362422943, 0.019813528284430504, -0.01467322651296854, 0.0016597501235082746, -0.013565056957304478, -0.01822470687329769, 0.022684086114168167, -0.020547857508063316, 0.017063133418560028, 0.005070207174867392, 0.011949533596634865, 0.02181624434888363, 0.008538242429494858, -0.005691048689186573, -0.035781845450401306, 0.02245711162686348, 0.0010021920315921307, -0.00024303782265633345, 0.016422264277935028, -0.02101515792310238, -0.03287123143672943, 0.024820316582918167, 0.01504706684499979, -0.0077438317239284515, -0.012570375576615334, 0.007009502965956926, 0.013725274242460728, -0.00900554284453392, 0.0059981318190693855, -0.6400143504142761, 0.0038051586598157883, 0.01977347396314144, -0.018024437129497528, 0.00919246207922697, 0.022977817803621292, 0.015995018184185028, 0.005183694418519735, 0.000992178451269865, 0.02945326454937458, 0.012924188748002052, 0.011368745937943459, -0.00744342477992177, -0.010247225873172283, -0.0026986587326973677, -0.02747725136578083, -0.006114956922829151, -0.014152520336210728, -0.016662590205669403, 0.02096175216138363, -0.016649238765239716, 0.02384566143155098, 0.007403370458632708, 0.006665703374892473, -0.0005465743597596884, -0.018251409754157066, 0.012450212612748146, -0.022951114922761917, 0.002745388774201274, 0.027557360008358955, -0.027770983055233955, 0.008451458066701889, 0.006328579969704151, 0.00935267936438322, 0.03922651335597038, -0.007897373288869858, -0.01672934740781784, 0.009646411053836346, 0.014259331859648228, 0.053699467331171036, -0.03105543553829193, -0.008297916501760483, 0.014005654491484165, 0.004032133147120476, -0.018144600093364716, 0.003349540987983346, -0.001795767922885716, 0.0047798133455216885, -0.008998867124319077, -0.03399275243282318, 0.0076904259622097015, -0.013738625682890415, -0.0011014933697879314, 0.00538730388507247, 0.007530209142714739, 0.002314804820343852, 0.00940608512610197, -0.015113824047148228, 0.009152407757937908, -0.002092837356030941, 0.017303459346294403, 0.00625514704734087, -0.015701286494731903, -0.027250276878476143, -0.04913327842950821, 0.01849173568189144, 0.0034480078611522913, -0.019546499475836754, 0.011882776394486427, 0.005237100180238485, 0.018051140010356903, -0.002805470023304224, 0.0039052944630384445, -0.016315452754497528, 0.0017774096922948956, 0.0020511141046881676, 0.03797147795557976, -0.009325976483523846, -0.02174948714673519, 0.004148958250880241, -0.004773137625306845, -0.011836046352982521, -0.016115181148052216, -0.009065624326467514, 0.03949354216456413, 0.016061775386333466, -0.027223573997616768, -0.000762700685299933, 0.0010606045834720135, 0.0006955262506380677, -0.000644623942207545, 0.022216785699129105, -0.008378025144338608, -0.018905630335211754, -6.753948400728405e-05, 0.029533373191952705, -0.0025968539994210005, 0.0019276132807135582, 0.0010155434720218182, -0.02052115462720394, -0.013237946666777134, -0.032203659415245056, 0.012984270229935646, 0.01630210131406784, 0.022497165948152542, 0.024499882012605667, 0.0026986587326973677, -0.01154899038374424, 0.02437971904873848, -0.017383567988872528, 0.0017306796507909894, 0.004105566069483757, -0.014379494823515415, -0.02041434310376644, 0.010220522992312908, -0.024393070489168167, -0.003488062182441354, -0.013885491527616978, 0.025007236748933792, -0.008798595517873764, 0.0066056218929588795, -0.008831974118947983, 0.00755023630335927, -0.013191216625273228, 0.00018629422993399203, 0.018905630335211754, 0.008164402097463608, 0.015460960566997528, 0.016916267573833466, -0.010180468671023846, -0.0016514054732397199, -0.02651594765484333, 0.008972164243459702, -0.00045937279355712235, 0.02117537520825863, -0.01962660811841488, 0.036102280020713806, -0.011408800259232521, -0.0031158910132944584, -0.05239102989435196, 0.0019159307703375816, 0.0047531104646623135, 0.01882552169263363, -0.02464674785733223, 0.00046396235120482743, -0.023111332207918167, -0.026702867820858955, 0.015834800899028778, -0.01608847826719284, -0.026382433250546455, -0.016715995967388153, -0.014526360668241978, -0.01582144945859909, 0.02502058818936348, -0.012543672695755959, 0.0017290107207372785, -0.0008294578292407095, -0.04875943809747696, -0.011695856228470802, -0.02363203838467598, -0.018571844324469566, 0.011322015896439552, -0.01811789721250534, 0.001648067613132298, 0.0015479319263249636, -0.01887892745435238, -0.014699929393827915, 0.015367500483989716, -0.016315452754497528, -0.02833174355328083, 0.014966958202421665, -0.003291128436103463, 0.011021609418094158, 0.024940479546785355, -0.002348183421418071, 0.020828237757086754, -0.027824388816952705, -0.0076904259622097015, 0.007823940366506577, -0.010621066205203533, 0.0039854031056165695, 0.01774405688047409, 0.004843232687562704, -0.004793164785951376, 0.02721022255718708, 0.0014611475635319948, 0.010020251385867596, 0.018091194331645966, -0.03265760838985443, 0.0012024635216221213, 0.023004520684480667, 0.01058101188391447, -0.012022966518998146, -0.003179310355335474, -0.021135320886969566, 0.009699816815555096, -0.024633396416902542, 0.008024211972951889, -0.004546163138002157, 0.026596056297421455, 0.020828237757086754, 0.010500903241336346, -0.013511651195585728, 0.0006137487362138927, -0.005040166433900595, -0.018785467371344566, 0.01499366108328104, -0.025634754449129105, 0.025941837579011917, 0.019386282190680504, 0.00294065335765481, -0.016529075801372528, -0.004899976309388876, 0.001264213933609426, 0.006315228529274464, 0.028305040672421455, 0.009639735333621502, 0.01218985952436924, -0.006572243291884661, 0.008331295102834702, 0.01608847826719284, 0.0021111955866217613, 0.04838559776544571, 0.004018781706690788, -0.01678275316953659, 0.028358446434140205, -0.0053672767244279385, 0.033699020743370056, 0.006665703374892473, -0.02747725136578083, 0.013832085765898228, 0.027557360008358955, 0.017503730952739716, 0.01312445942312479, 0.035995468497276306, 0.03845212981104851, 0.04389951750636101, -0.01504706684499979, 0.03871915861964226, -0.0013401502510532737, -0.005030152853578329, 0.02219008281826973, 0.015460960566997528, -0.02196311019361019, 0.04120252653956413, -0.004429338499903679, 0.017396919429302216, -0.000523626571521163, -0.02062796615064144, 0.023284900933504105, 0.014659875072538853, 0.007710453122854233, -0.02475355938076973, -0.014806740917265415, 0.014392846263945103, -0.017704002559185028, 0.017570488154888153, 0.012450212612748146, 0.0038752537220716476, 0.011395448818802834, 0.00767039880156517, -0.01413916889578104, 0.009285922162234783, -0.011301988735795021, 0.014499657787382603, -0.010467524640262127, -0.002254723571240902, -0.020561208948493004, -0.005444047506898642, -0.017824165523052216, 0.008531566709280014, -0.024740207940340042, 0.0005649325903505087, -0.006048199720680714, -0.00526380306109786, -0.009452815167605877, 0.004499433562159538, -0.003014086280018091, -0.008478160947561264, 0.025100696831941605, -0.033164963126182556, -0.018625250086188316, 0.01891898177564144, 0.017463676631450653, -0.007002827245742083, -0.026342378929257393, -0.0010731215588748455, -0.019119253382086754, 0.011001582257449627, -0.0059981318190693855, -0.01008033286780119, -0.004933354910463095, -0.0048599219880998135, -0.00472974544391036, -0.0014711611438542604, 0.025941837579011917, 0.03687665984034538, -0.028305040672421455, -0.014486306346952915, 0.0038485508412122726, -0.004168985411524773, 0.022817600518465042, -0.013004297390580177, -0.019920339807868004, 0.026449190452694893, -0.017490379512310028, -0.02705000527203083, -0.026275621727108955, -0.00011911982437595725, -0.020027151331305504, 0.001690625329501927, -0.004365919157862663, -0.016021721065044403, -0.0036816580686718225, -0.0034980757627636194, 0.010761256329715252, 0.0010998244397342205, -0.0052871680818498135, 0.02206992171704769, 0.004062173888087273, 0.02084158919751644, -0.022710788995027542, 0.016382209956645966, 0.023017872124910355, 0.06056210398674011, 0.014860146678984165, 0.001962660811841488, 0.013084406033158302, -0.004572866018861532, -0.007356640417128801, -0.028839098289608955, -0.017784111201763153, 0.03244398534297943, 0.010320658795535564, -0.027717577293515205, 0.014219277538359165, 0.003668306628242135, -0.010020251385867596, -0.0006909367511980236, 0.0020210733637213707, -0.00469302898272872, -0.013651841320097446, 0.0008987184264697134, 0.021202078089118004, 0.015954963862895966, -0.0042524319142103195, 0.02432631328701973, 0.0025401103775948286, 0.017089836299419403, -0.0029289708472788334, 0.031776413321495056, 0.003049133811146021, 0.009199137799441814, -0.02186965011060238, -0.01747702807188034, 0.017650596797466278, 0.00761699303984642, 0.019426336511969566, -0.01031398307532072, 0.026155460625886917, 0.015901558101177216, -0.024526584893465042, -0.016328804194927216, 0.00044101456296630204, 0.0009646411053836346, 0.021562566980719566, -0.002039431594312191, -0.004168985411524773, 0.00040701014222577214, -0.02550124004483223, 0.004015443846583366, 0.018959036096930504, -0.007396694738417864, 0.0006450411747209728, 0.02176283858716488, 0.024446476250886917, -0.016595833003520966, 0.024847019463777542, 0.0021078577265143394, -0.002017735503613949, 0.004472730681300163, -0.020347585901618004, -0.03781126067042351, -0.03858564421534538, -0.019493093714118004, -0.034233078360557556, -0.004085538908839226, -0.01349829975515604, -0.011328691616654396, -0.02672957070171833, -0.000578701205085963, -0.005984780378639698, -0.02833174355328083, 0.011829370632767677, -0.0024833667557686567, -0.053966496139764786, -0.03078840672969818, 0.0038719158619642258, 0.020174017176032066, 0.016582481563091278, -5.194542245590128e-05, 0.0024049270432442427, 0.0018658629851415753, 0.01875876449048519, 0.00884532555937767, -0.022657383233308792, 0.0004113910545129329, -0.01973341964185238, 0.005844590254127979, -0.008057590574026108, -0.012770647183060646, 0.006732460577040911, -0.006295201368629932, 0.01823805831372738, -0.01186942495405674, -0.009853358380496502, 0.001319288625381887, 0.011582368984818459, 0.006488797254860401, 0.016181938350200653, 0.024259556084871292, 0.00701617868617177, 0.020441045984625816, -0.04357908293604851, 0.004559514578431845, -0.028465257957577705, -0.010714526288211346, -0.01272391714155674, 0.01371192280203104, 0.009666438214480877, 0.008598323911428452, -0.013091081753373146, -0.0019526472315192223, -0.00510358577594161, 0.002007721923291683, 0.006996151525527239, -0.0035214407835155725, -0.0016922942595556378, 0.01893233321607113, -0.019159307703375816, -0.008932109922170639, 0.032577499747276306, 0.021776190027594566, -0.013111107982695103, -0.012750620022416115, -0.022710788995027542, 0.030174242332577705, -0.002289770869538188, -0.002500056056305766, 0.01504706684499979, 0.01850508712232113, -0.02074812911450863, -0.017463676631450653, 0.005140302237123251, -0.02062796615064144, 0.004532812163233757, -0.019332876428961754, -0.0023832309525460005, -0.021242132410407066, 0.003127573523670435, -0.015848152339458466, 0.001102327834814787, -0.029479967430233955, -0.0019443025812506676, -0.020441045984625816, 0.00014175468822941184, 0.00029414877644740045, -0.006428715772926807, 0.01827811263501644, -0.021722784265875816, -0.026048649102449417, -0.0039587002247571945, 0.004522798582911491, 0.019960394129157066, -0.03821180388331413, -0.006929394323378801, -0.024887073785066605, -0.02020072005689144, -0.004219053313136101, -0.026582704856991768, -0.02053450606763363, 0.0014060728717595339, 0.05751797929406166, 0.01635550707578659, 0.006034848280251026, 0.007143017370253801, 0.026395784690976143, 0.01445960346609354, -0.004950044211000204, 0.00499677425250411, -0.011502260342240334, -0.024766910821199417, 0.012356752529740334, -0.00039365870179608464, 0.00755023630335927, -0.01272391714155674, 1.8645068848854862e-05, -0.007042881567031145, -0.007102963048964739, 0.017543785274028778, -0.01100825797766447, 0.0025651443284004927, -0.030227648094296455, -0.04544828087091446, -0.010267253033816814, 0.052204109728336334, -0.0027103412430733442, -0.00739001901820302, -0.01877211593091488, -0.005620953626930714, 0.0022981155198067427, -0.008391376584768295, 0.022911060601472855, 0.005617615766823292, 0.03068159520626068, -0.005557534284889698, 0.001043915282934904, 0.010394091717898846, -0.006018158979713917, -0.010107035748660564, 0.0020778169855475426, -0.03735731169581413, -0.005036828573793173, 0.00020194044918753207, 0.023057926446199417, 0.015808098018169403, -0.02988051064312458, 0.02212332747876644, 0.015153877437114716, 0.012864107266068459, -0.01881217025220394, -0.015901558101177216, 0.0037984829396009445, -0.013064378872513771, -0.0011423820396885276, -0.018091194331645966, -0.02630232460796833, 0.028572069481015205, -0.012677187100052834, -0.0027270305436104536, 0.01849173568189144, 0.015033715404570103, -0.02678297646343708, -0.01790427416563034, 0.03271101415157318, -0.008404728025197983, 0.05084226280450821, 0.00614833552390337, 0.02747725136578083, 0.015300743281841278, -0.01392554584890604, -0.00820445641875267, -0.01550101488828659, 0.016382209956645966, -0.012623781338334084, -0.00043976286542601883, 0.04555509239435196, -0.0010656113736331463, -0.008351322263479233, 0.019052496179938316, 0.004896638449281454, 0.010661120526492596, -0.04213712736964226, 0.014953606761991978, 0.017356865108013153, -0.01024055015295744, -0.03631589934229851, -0.027023302391171455, -0.01478003803640604, 0.02170943282544613, 0.006722446996718645, 0.029800402000546455, -0.0011690849205479026, 0.001957654021680355, 0.01624869555234909, 0.036262497305870056, -0.01726340502500534, 0.005711075849831104, -0.011301988735795021, 0.0007789727533236146, -0.02190970443189144, 0.008551593869924545, 0.0067124334163963795, -0.010374064557254314, 0.018785467371344566, 0.018785467371344566, -0.01381873432546854, 0.003558157244697213, 0.013565056957304478, 0.01323127094656229, -0.012436861172318459, -0.007296558935195208, -0.00799083337187767, 0.03142927587032318, -0.0016814462142065167, -0.01095485221594572, -0.0037951450794935226, -0.007436749059706926, 0.016075126826763153, -0.01982687972486019, -0.01935957930982113, -0.005337235983461142, 0.0032694325782358646, 0.01592826098203659, 0.023178089410066605, 0.006929394323378801, 0.0024132716935127974, -0.0032761082984507084, 0.011428827419877052, -0.005434033926576376, 0.00247168424539268, 0.010961527936160564, 0.01176261343061924, -0.029533373191952705, -0.014659875072538853, 0.0039052944630384445, -0.0014444582629948854, 0.008671756833791733, -0.0076637230813503265, -0.01467322651296854, 0.002712010173127055, 0.03116224706172943, -0.0057845087721943855, -0.008584972470998764, 0.020561208948493004, 0.004839894827455282, -0.03671644255518913, 0.019159307703375816, -0.006422040052711964, 0.0008465643622912467, 0.034179672598838806, -0.010467524640262127, -0.022203434258699417, -0.026649462059140205, 0.008304592221975327, -0.006338593550026417, 0.013077730312943459, -0.0019776811823248863, 0.0013943903613835573, 0.017169944941997528, -0.0015554421115666628, 0.011742586269974709, -0.01651572436094284, -0.0052070594392716885, 0.008538242429494858, 0.016382209956645966, -0.0022346964105963707, -0.02048110030591488, 0.019386282190680504, -0.008411403745412827, 0.012056345120072365, -0.02116202376782894, -0.04416654631495476, -0.01518058031797409, -0.022336948662996292, 0.0036249144468456507, -0.003351209918037057, 0.01344489399343729, -0.0008524056174792349, -0.027824388816952705, -0.01328467670828104, 0.03287123143672943, -0.00490665202960372, 0.011569017544388771, 0.019266119226813316, -0.013792031444609165, -0.0035781844053417444, 0.03997419402003288, -0.0019192686304450035, -0.04240415617823601, -0.004389284178614616, -0.014806740917265415, -0.03036116063594818, -0.007863994687795639, -0.012597078457474709, 0.04630277305841446, 0.002014397643506527, -0.024620044976472855, -0.029746996238827705, -0.020133962854743004, -0.04387281462550163, 0.007249828893691301, -0.011956209316849709, 0.02496718242764473, 0.034873947501182556, 0.03516767919063568, 0.0047531104646623135, 0.02341841533780098, -0.026649462059140205, 0.007957454770803452, -0.04307172819972038, -0.008451458066701889, -0.015020363964140415, -0.024993885308504105, 0.006745812017470598, -0.00961970817297697, -0.03746412321925163, 0.002638577250763774, 0.011235231533646584, -0.023178089410066605, 0.005600926466286182, 0.020441045984625816, -0.011675829067826271, -0.005193707998842001, -0.010981555096805096, 0.00825786218047142, 0.023244846612215042, 0.02913282997906208, 0.002992390189319849, -0.028358446434140205, 0.019439687952399254, 0.009159083478152752, -0.021842947229743004, -0.019813528284430504, 0.02966688759624958, 0.022523868829011917, -0.011956209316849709, 0.00935267936438322, 0.009913439862430096, -0.023672092705965042, -0.010200495831668377, -0.012036317959427834, 0.014472954906523228, 0.0038185101002454758, 0.022417057305574417, 0.028999315574765205, 0.0018408290343359113, 0.012283319607377052, -0.0030908570624887943, -0.004616258200258017, 0.008090969175100327, 0.007450100500136614, 0.01013373862951994, -0.033058151602745056, 0.004452703520655632, -0.015754692256450653, 0.012249941006302834, 0.016115181148052216, -0.011288637295365334, -0.012496942654252052, -0.0008620019652880728, -0.027236925438046455, -0.01854514144361019, 0.019800176844000816, -0.02988051064312458, -0.011742586269974709, -0.003488062182441354, -0.007476803380995989, -0.0003154276346322149, -0.004269121214747429, -0.007343288976699114, -0.01036738883703947, -0.009586329571902752, -0.024085987359285355, 0.008237835019826889, -0.03388594090938568, 0.010654444806277752, 0.029426561668515205, -0.02427290752530098, -0.0006225106189958751, 0.20603933930397034, -0.007730480283498764, 0.015247337520122528, 0.017837516963481903, 0.016382209956645966, -0.0015813105273991823, -0.0006020662258379161, 0.008945461362600327, -0.012790674343705177, 0.00038656574906781316, 0.00927924644201994, 0.006929394323378801, -0.022523868829011917, 0.0017623893218114972, 0.00922584068030119, -0.026796327903866768, -0.032844528555870056, -0.02132224105298519, -0.02100180648267269, 0.00348138646222651, 0.02080153487622738, 5.285811857902445e-05, -0.015260688960552216, -0.003838537260890007, 0.03575514256954193, 0.01047420036047697, 0.0055708857253193855, 0.021469106897711754, 0.02384566143155098, 0.02235030010342598, -0.007196423131972551, -0.0026252258103340864, 0.02201651595532894, -0.007957454770803452, -0.01614188402891159, 0.00717639597132802, 0.016849510371685028, -0.01742362231016159, 0.007209774572402239, 0.018892278894782066, 0.0020561208948493004, -0.014953606761991978, 0.00717639597132802, -0.04235075041651726, 0.012857431545853615, -0.01440619770437479, -0.014005654491484165, 0.0010898108594119549, 0.0036849959287792444, 0.018531790003180504, -0.011261934414505959, 0.0022647371515631676, 0.01988028548657894, 0.005036828573793173, 0.0054473853670060635, 0.03174971044063568, -0.006351944990456104, 0.012009615078568459, -0.008144374936819077, -0.004866597708314657, -0.012430185452103615, -0.001712321420200169, -0.004743096884340048, 0.014820092357695103, -0.030815109610557556, 0.033966049551963806, 0.002368210582062602, 0.016542427241802216, 0.0028171525336802006, 0.012523645535111427, -0.012376779690384865, -0.003024099860340357, -0.03893278166651726, 4.3340005504433066e-05, -0.009659762494266033, -0.008978839963674545, 0.025634754449129105, 0.024139393121004105, 0.04040144011378288, 0.010033602826297283, -0.001431106822565198, 0.013037675991654396, -0.022470463067293167, -0.015901558101177216, -0.0019192686304450035, -0.009572978131473064, 0.024633396416902542, -0.024259556084871292, 0.004462717100977898, -0.02304457500576973, -0.007056233007460833, 0.014392846263945103, 0.0021328916773200035, -0.01052760612219572, -0.0006529685924760997, -0.009285922162234783, 0.006799217779189348, 0.01914595626294613, -0.02448653057217598, -0.033752426505088806, -0.0007581111276522279, 0.04827878624200821, 0.01968001388013363, 0.03671644255518913, -0.0036349280271679163, 0.01539420336484909, -0.00598811823874712, 0.005510804709047079, 0.02267073467373848, -0.008337970823049545, 0.0017473689513280988, -0.03495405614376068, 0.025634754449129105, -0.016101829707622528, -0.025207508355379105, 0.018945684656500816, 0.006028172560036182, 0.00231146696023643, 0.008084293454885483, 0.00620174128562212, 0.01360511127859354, -7.619705138495192e-05, -0.008484836667776108, 0.003514765063300729, -0.009986872784793377, -0.02907942421734333, -0.0020744791254401207, 0.01829146407544613, -0.03564833104610443, -0.017663948237895966, 0.0006417033146135509, -0.033218368887901306, 0.028358446434140205, -0.009132380597293377, 3.8593989302171394e-05, -0.01859854720532894, -0.013084406033158302, -0.015687935054302216, -0.0018842212157323956, -0.0008344646194018424, 0.016822807490825653, 0.006492135114967823, 0.004295824095606804, 0.005347249563783407, -0.009593005292117596, 0.02977369911968708, -0.016796104609966278, 0.02459334209561348, -0.034126266837120056, -0.011715883389115334, 0.009960169903934002, -0.0066590276546776295, -0.0036249144468456507, -0.023778904229402542, 0.03730390593409538, -0.024406421929597855, -0.03794477507472038, -0.013364785350859165, 0.002583502558991313, 0.020975103601813316, -0.05548856034874916, 0.0027987943030893803, 0.04865262657403946, 0.01534079760313034, -0.014312737621366978, -0.018518438562750816, -0.16929619014263153, 0.013064378872513771, 0.016702644526958466, -0.009639735333621502, -0.0018842212157323956, 0.034019455313682556, 0.019546499475836754, -0.016609184443950653, -0.01994704268872738, 0.004589555319398642, -0.00038781744660809636, -0.014633172191679478, -0.04093549773097038, -0.02400587871670723, 0.01317786518484354, -0.022630680352449417, -0.0059981318190693855, 0.031669601798057556, 0.052844975143671036, 0.005217073019593954, 0.012583727017045021, -0.02010725997388363, -0.00722980173304677, -0.008872028440237045, 4.09409221902024e-05, 0.02544783428311348, 0.0032827837858349085, 0.026102054864168167, 0.004095552489161491, -0.023872364312410355, 0.012423509731888771, -0.00499677425250411, 0.016221992671489716, 0.007309910375624895, -0.017063133418560028, -0.01667594164609909, -0.00938605796545744, -0.011235231533646584, -0.011795992031693459, 0.02053450606763363, 0.03420637547969818, -9.919698641169816e-05, 0.019266119226813316, 0.01678275316953659, 0.0015103810001164675, 0.027196871116757393, 0.03004072792828083, -0.01603507250547409, 0.016288749873638153, -9.971852705348283e-05, 0.006058213301002979, -0.024927128106355667, 0.004045484587550163, -0.004292486235499382, 0.017984382808208466, 0.010627741925418377, 0.007042881567031145, 0.02037428878247738, -0.0003141759370919317, -0.00646877009421587, 0.00021988143271300942, -0.012523645535111427, 0.013318055309355259, -0.01042079459875822, -0.02293776348233223, -0.02037428878247738, -0.008745189756155014, 0.02907942421734333, 0.008825298398733139, 0.01989363692700863, 0.004866597708314657, 0.003231047187000513, 0.014286034740507603, 0.006288525648415089, 0.014152520336210728, -0.0007631179178133607, -0.025421131402254105, 0.004526136443018913, 0.03757093474268913, -0.00512027507647872, -0.005450723227113485, 0.01312445942312479, 0.004452703520655632, -0.002857206854969263, -0.00922584068030119, -0.004078863188624382, 0.0026719558518379927, 0.00047564483247697353, 0.004032133147120476, -0.008725162595510483, 0.026702867820858955, -0.01966666243970394, -0.014486306346952915, 0.012637132778763771, 0.015140525996685028, 0.008251186460256577, 0.013471596874296665, 0.00418233685195446, 0.0036349280271679163, -0.01555442065000534, 0.0005369780119508505, 0.005791184492409229, -0.04229734465479851, 0.03458021581172943, 0.03078840672969818, 0.012049669399857521, 0.005617615766823292, -0.0011774295708164573, 0.03388594090938568, -0.006448742933571339, -0.03538130223751068, 0.01704978197813034, 0.026102054864168167, 0.014753335155546665, -0.033164963126182556, 0.023271549493074417, -0.014953606761991978, -0.033752426505088806, 0.014820092357695103, -0.01419257465749979, 0.028251634910702705, -0.04090879485011101, -0.004379270598292351, -0.0002968607877846807, 0.0027370441239327192, -0.009719843976199627, -0.09586329758167267, -0.02185629867017269, 0.02934645302593708, 0.017076484858989716, -0.00825786218047142, 0.02245711162686348, 0.00961970817297697, 0.022230137139558792, -0.0014744990039616823, 0.029960619285702705, -0.017129890620708466, 0.02014731429517269, -0.0021595945581793785, -0.027276979759335518, 0.011355394497513771, -0.0048065162263810635, 0.008551593869924545, -0.025634754449129105, -0.02169608138501644, 0.03121565282344818, 0.0006279346416704357, -0.020227422937750816, 0.007984157651662827, 0.013224595226347446, -0.016635887324810028, -0.01882552169263363, -0.027503954246640205, 0.00494336849078536, 0.022230137139558792, 0.008544918149709702, 0.012930864468216896, -0.025861728936433792, 0.007483479101210833, -0.024633396416902542, 0.01082801353186369, -0.028038011863827705, -0.02859877236187458, 0.0032744393683969975, 0.018358221277594566, -0.02566145732998848, 0.013751977123320103, -0.0026836383622139692, 0.006665703374892473, -0.02048110030591488, 7.95349114923738e-05, -0.0009946818463504314, -0.026502596214413643, 0.03271101415157318, 0.00981330405920744, -0.016288749873638153, -0.026969896629452705, -0.032791122794151306, -0.04470060020685196, -0.026449190452694893, 0.02101515792310238, 0.02213667891919613, 0.019279470667243004, -0.0009554619900882244, -0.01834486983716488, 0.004212377592921257, -0.00938605796545744, -0.0058646174147725105, -0.006331917829811573, 0.005247113760560751, 0.012763971462845802, 0.019319524988532066, -0.01403235737234354, -0.004432676360011101, -0.01758383959531784, 0.005190370138734579, -0.02453993633389473, -0.0010564322583377361, -0.023138035088777542, 0.012750620022416115, -0.019706716760993004, -0.0011357063194736838, 0.0014461271930485964, -0.01939963363111019, 0.012063020840287209, 0.012470239773392677, -0.009926791302859783, -0.01229667104780674, 0.005400655325502157, -0.031402572989463806, 0.014446252025663853, 0.0077705346047878265, 0.023498523980379105, -0.01309775747358799, 0.024766910821199417, -0.03839872404932976, 0.025207508355379105, 0.01512717455625534, 0.007323261816054583, 0.0055007911287248135, -0.00690936716273427, 0.0022664060816168785, -0.006635662633925676, -0.00505018001422286, 0.027236925438046455, 0.012476915493607521, 0.005694386549293995, -0.011609071865677834, -0.04891965538263321, -0.004876611288636923, 0.010273928754031658, 0.005654332228004932, 0.01381873432546854, -0.02096175216138363, 0.006014821119606495, 0.008711811155080795, 0.0024149406235665083, -0.01013373862951994, -0.034500107169151306, 0.013725274242460728, -0.012850755825638771, -0.00467633968219161, -0.023498523980379105, -0.0052871680818498135, 0.009699816815555096, -0.003256081137806177, 0.022737491875886917, 0.01117515005171299, -0.027330385521054268, -0.002767084864899516, -0.014152520336210728, 0.027063356712460518, -0.026075351983308792, 0.005857941694557667, -0.02437971904873848, 0.00927924644201994, -0.01850508712232113, -0.03882597014307976, 0.017717353999614716, 0.005230424460023642, 0.0031459317542612553, 0.021883001551032066, -0.011916154995560646, -0.04333875700831413, 0.023618686944246292, 0.00788402184844017, 0.020280828699469566, 0.01909255050122738, -0.017610542476177216, -0.02907942421734333, 0.014539712108671665, -0.012289995327591896, -0.010807986371219158, 0.0010914797894656658, -0.01988028548657894, -0.005160329397767782, -0.0039854031056165695, 0.00836467370390892, 0.05036161094903946, 0.009926791302859783, -0.017997734248638153, -0.02133559249341488, 0.00712299020960927, -0.011208528652787209, 0.008090969175100327, 0.03078840672969818, 0.011261934414505959, 0.008324619382619858, 0.03909299895167351, -0.012443536892533302, 0.01499366108328104, -0.007276531774550676, 0.015260688960552216, -0.03287123143672943, -0.050228096544742584, -0.020547857508063316, -0.0008323784568347037, -0.016769401729106903, 0.022644031792879105, -0.02315138652920723, 0.025327671319246292, 0.020654669031500816, 0.006902691442519426, 0.00873851403594017, -0.0018959036096930504, -0.010160441510379314, 0.0008499022223986685, 0.025087345391511917, 0.01870535872876644, -0.01871871016919613, -0.02373884990811348, 0.024980533868074417, 0.011956209316849709, 0.012743944302201271, -0.0034480078611522913, 0.026863085106015205, 0.009292597882449627, 0.0010372395627200603, 0.00531720882281661, 0.00831126794219017, -0.01855849288403988, 0.006862637121230364, -0.00788402184844017, 0.0020844927057623863, -0.01662253588438034, 0.008972164243459702, 0.012103075161576271, 0.020400991663336754, -0.0012441867729648948, 0.017877571284770966, 0.0022330274805426598, -0.025955189019441605, -0.02117537520825863, 0.00917243491858244, -0.034660324454307556, -0.016542427241802216, 0.01753043383359909, 0.023698795586824417, -0.004549500998109579, -0.011749261990189552, 0.007603641599416733, 0.01715659350156784, -0.025781620293855667, -0.0023047912400215864, -0.009052272886037827, -0.033966049551963806, -0.030548080801963806, -0.0010856385342776775, 0.010427470318973064, 0.010714526288211346, 0.019746771082282066, -0.02731703408062458, 0.022630680352449417, -0.010387415997684002, 0.023391712456941605, -0.013685219921171665, 0.015073769725859165, -0.01603507250547409, -0.009366030804812908, -0.00572108943015337, 0.010220522992312908, -0.01833151839673519, -0.017663948237895966, -0.011795992031693459, -0.014713280834257603, 0.013451569713652134, 0.004382608458399773, 0.08341976255178452, 0.03212355077266693, -0.0021562566980719566, 0.01077460777014494, -0.029159532859921455, 0.007056233007460833, 0.011695856228470802, 0.0005970594356767833, 0.004559514578431845, -0.016262046992778778, 0.026769625023007393, -0.018024437129497528, -0.017076484858989716, -0.01779746264219284, -0.01245688833296299, -0.014579766429960728, 0.014953606761991978, 0.020174017176032066, 0.0031142220832407475, 0.01261710561811924, 0.015621177852153778, 0.01646231859922409, -0.00024741876404732466, -0.016796104609966278, -0.027717577293515205, -0.016288749873638153, 0.02190970443189144, 0.012283319607377052, -0.0037684424314647913, -0.021469106897711754, 0.020935049280524254, -0.006699081975966692, -0.027717577293515205, -0.008344646543264389, -0.02582167461514473, 0.017503730952739716, -0.01667594164609909, -0.021415701135993004, 0.01176261343061924, 0.035621628165245056, 0.006538865156471729, 0.01635550707578659, -0.015487663447856903, -0.01955985091626644, -0.020975103601813316, -0.0029807076789438725, -0.0033962710294872522, -0.024246204644441605, -0.003701685229316354], "062c1b51-1d17-41d4-864d-786a1007ab0e": [-0.007974464446306229, -0.010033728554844856, 0.020067457109689713, -0.01748301275074482, 0.001204116502776742, 0.017925269901752472, -0.020910510793328285, -0.03922275826334953, -0.016405008733272552, -0.03518715128302574, 0.009453264996409416, 0.020191842690110207, -0.004242912866175175, -0.0017483012052252889, -0.009487816132605076, 0.01120847649872303, 0.025402193889021873, -0.012493789196014404, -0.0016498296754434705, 0.0003066437493544072, -0.04126819968223572, -0.014497770927846432, -0.01661231741309166, 0.001725842826999724, -0.016764342784881592, 0.0049823131412267685, 0.01973576471209526, -0.02353641949594021, -0.025816811248660088, 0.019058555364608765, 0.005884104873985052, 0.005891014821827412, -0.014815643429756165, 0.005904835648834705, -0.017635038122534752, 0.006651145871728659, 0.01668141968548298, 0.0037971995770931244, 0.02869148924946785, -0.00848582573235035, 0.01195478718727827, 0.020426791161298752, 0.002544711111113429, -0.01031704992055893, -0.02049589529633522, 0.026245249435305595, -0.0017863077810034156, 0.0026414550375193357, -0.002254479331895709, 0.015119696035981178, -0.004035604186356068, -0.0042947400361299515, -0.03101334348320961, 0.005303640849888325, -0.016335904598236084, -0.011719837784767151, 0.017635038122534752, 0.007774066645652056, 0.00915612280368805, -0.006906826514750719, -0.017469191923737526, -0.007711873855441809, -0.009916254319250584, -0.0009147485252469778, -0.016004212200641632, -0.01180967129766941, -0.023301469162106514, -0.011077181436121464, -0.016239160671830177, -0.012493789196014404, 0.020150380209088326, 0.0199845340102911, -0.0029161388520151377, 0.022651903331279755, -0.014580694027245045, -0.014857104979455471, -0.012327942065894604, -0.032810017466545105, -0.005217262543737888, -0.003624442731961608, 0.004526234231889248, -0.007456193678081036, -0.03579525649547577, 0.0004871748387813568, 0.02652166038751602, 0.023494957014918327, 0.02216818369925022, -0.0044053043238818645, -0.01135359238833189, -0.007027756422758102, 0.010545089840888977, 0.01095279585570097, 0.027917537838220596, 0.023605521768331528, 0.013219368644058704, 0.007207423448562622, 0.017165139317512512, 0.014594514854252338, 0.002739926567301154, -0.0275720227509737, -0.029106104746460915, 0.01289458479732275, -0.005738988518714905, -0.011913325637578964, -0.013461228460073471, -0.012742559425532818, 0.024683525785803795, -0.007069217972457409, -0.01332993246614933, 0.002321854466572404, -0.03325227275490761, 0.027406176552176476, -0.014387206174433231, 0.015838364139199257, 0.0017949455650523305, -0.01071784645318985, 0.011505618691444397, -0.01683344505727291, -0.013253919780254364, -0.007794797420501709, 0.010669474489986897, -0.014262820594012737, 0.034800175577402115, -0.012072261422872543, 0.017538294196128845, 0.01835370808839798, 0.009239045903086662, -0.012051531113684177, 0.007635861169546843, -0.019017094746232033, 0.025816811248660088, 0.012963688001036644, 0.014774181880056858, 0.022513696923851967, -0.027033021673560143, 0.0290231816470623, -0.01108409184962511, -0.0055005839094519615, -0.01440102607011795, -0.023840470239520073, 0.012839303351938725, 0.029299592599272728, 0.023550238460302353, -0.02641109563410282, -0.008693134412169456, 0.03753664717078209, -0.004080521408468485, 0.0199845340102911, 0.02216818369925022, 0.011671464890241623, 0.031870219856500626, -0.0010900968918576837, -0.020827587693929672, -0.002332220086827874, 0.020081277936697006, 0.016059493646025658, -0.006409286055713892, 0.01668141968548298, -0.016695240512490273, -0.005604238249361515, 0.000754516338929534, 0.004090886563062668, 0.0025343457236886024, -0.0047404528595507145, -0.004021783825010061, 0.03656920790672302, 0.009916254319250584, -0.021739745512604713, -0.013779100961983204, -0.023564059287309647, -0.010503627359867096, 0.017386268824338913, -0.03043287992477417, 0.007394001353532076, 0.002358133438974619, 0.0010330870281904936, 0.015644876286387444, -0.002603448461741209, -0.004588427022099495, -0.037094391882419586, 0.018478091806173325, 0.001696474151685834, 0.0025257079396396875, 0.009950805455446243, -0.027157405391335487, -0.01766267977654934, 0.027848433703184128, 0.013723818585276604, -0.008679313585162163, -0.019486993551254272, 0.01031704992055893, 0.004014873411506414, -0.00975731760263443, 0.006620049476623535, -0.6364092826843262, -0.0043327463790774345, 0.01639118790626526, -0.0055351355113089085, -0.007470014039427042, 0.01781470514833927, 0.009370341897010803, -0.00039863685378804803, -0.004097796976566315, 0.03308642655611038, 0.013578702695667744, 0.010869872756302357, -0.004291284829378128, -0.003589891130104661, 0.0058979252353310585, -0.025512758642435074, -0.006271080579608679, -0.009708945639431477, 0.012016979046165943, 0.02201615646481514, -0.025872094556689262, 0.0314832404255867, 0.008347620256245136, 0.0007484698435291648, -0.010780039243400097, -0.02771022915840149, 0.010648743249475956, -0.016087135300040245, -0.0024376017972826958, 0.0212145633995533, -0.024310370907187462, 0.0168610867112875, 0.018630119040608406, 0.003379127709195018, 0.03894634544849396, -0.007559848017990589, -0.0031700916588306427, 0.016004212200641632, 0.015423747710883617, 0.04392175003886223, -0.0290231816470623, -0.015548133291304111, 0.02567860670387745, 0.02822158858180046, -0.01599039137363434, -0.004353477153927088, 0.021408051252365112, -0.011450336314737797, -0.010323960334062576, -0.02161535993218422, 0.0025619869120419025, -0.01233485247939825, -0.006343638524413109, 0.006139785051345825, 0.006388555280864239, -0.005908290855586529, 0.00993698462843895, -0.01001299824565649, 0.01335066370666027, -0.0006867092452012002, 0.003900853917002678, -0.004159989301115274, -0.02771022915840149, -0.026687506586313248, -0.054204247891902924, 0.012922226451337337, 0.0006875729886814952, -0.009494726546108723, 0.004007963463664055, 0.004913209937512875, 0.018505733460187912, -0.010531269013881683, 0.009017917327582836, -0.007235064636915922, -0.010095921345055103, 0.0069932048209011555, 0.02701920084655285, 0.0022976684849709272, -0.019929252564907074, 0.020371509715914726, -0.0187545046210289, -0.005694071762263775, -0.01857483573257923, -0.006768620572984219, 0.021228384226560593, 0.01104262936860323, -0.009930074214935303, -0.016170058399438858, -0.006036130711436272, 0.004899389576166868, 0.004073610994964838, 0.03424735367298126, -0.007843169383704662, -0.017068395391106606, 0.003586436156183481, 0.030267031863331795, -0.004747363273054361, 0.000170489598531276, 0.003016337752342224, -0.010386153124272823, -0.01878214441239834, -0.04126819968223572, 0.006889550480991602, -0.010766218416392803, 0.025167245417833328, 0.01300514955073595, 0.002356406068429351, -0.012521429918706417, 0.03427499532699585, -0.0035691603552550077, -0.000688868691213429, -0.0017742147902026772, -0.01088369358330965, -0.02717122621834278, 0.014428667724132538, -0.02469734661281109, -0.004951216746121645, -0.0006836859975010157, 0.01040688343346119, -0.002530890516936779, -0.00023063064145389944, -0.020012175664305687, 0.007780977059155703, 0.002036805497482419, 0.00944635458290577, -0.0007419914472848177, 5.35546823812183e-05, 0.0042601884342730045, 0.010399973951280117, -0.012597442604601383, -0.013378304429352283, -0.03413679078221321, 0.0002623747568577528, -0.004139258526265621, 0.02303887903690338, -0.011871863156557083, 0.023812830448150635, -0.002777933143079281, 0.00814031157642603, -0.05265634506940842, -0.0021646455861628056, 0.007117589935660362, 0.014007140882313251, -0.02938251756131649, 0.0010313595412299037, -0.030736932530999184, -0.019887790083885193, 0.018906529992818832, -0.00863094162195921, -0.015174978412687778, -0.01115319412201643, -0.012003159150481224, -0.013025880791246891, 0.02724033035337925, -0.012327942065894604, 0.010178844444453716, 0.0028228498995304108, -0.03983086347579956, -0.010344691574573517, -0.019210582599043846, -0.011657644994556904, 0.006637325510382652, -0.011906415224075317, 0.0008581705624237657, 0.0040045082569122314, -0.01358561310917139, -0.004837196785956621, 0.005866828840225935, -0.003014610381796956, -0.023702265694737434, 0.007407821714878082, -0.0006258123903535306, 0.0016809259541332722, 0.016308264806866646, -0.002667368622496724, 0.027074482291936874, -0.023370571434497833, -0.010496717877686024, -0.00028116206522099674, -0.002211289945989847, 0.0014477039221674204, 0.007045031990855932, -0.0013855114812031388, -0.003918129485100508, 0.03797890618443489, -0.004370753187686205, 0.01828460395336151, 0.00915612280368805, -0.03820003569126129, 0.004453676287084818, -0.0036728146951645613, 0.004868293181061745, -0.014290462248027325, -0.008333799429237843, -0.016584675759077072, 4.202854688628577e-05, -0.032450683414936066, -0.004111617337912321, -0.0026017208583652973, 0.024724986404180527, 0.01574162021279335, 0.013668537139892578, 0.008230145089328289, -0.002090360037982464, -0.0013138172216713428, -0.0034015860874205828, 0.0075736683793365955, -0.028884977102279663, 0.029576005414128304, 0.002862584078684449, 0.0015738166403025389, -0.018851248547434807, -0.004394939169287682, -0.015354645438492298, 0.0032201912254095078, 0.019887790083885193, 0.007698053494095802, -0.0009562101913616061, -0.017275704070925713, 0.0010063097579404712, 0.009024827741086483, -0.0026414550375193357, 0.04544201120734215, -0.001623916090466082, 0.014055512845516205, 0.02158772014081478, 0.012666545808315277, 0.03043287992477417, 0.005832277704030275, -0.024420933797955513, 0.007235064636915922, 0.02999062091112137, 0.01672288030385971, 0.005455667153000832, 0.036513928323984146, 0.012846212834119797, 0.03457904979586601, -0.008029746823012829, 0.03275473415851593, 0.001559132244437933, -0.006170881446450949, 0.004329291172325611, 0.028857335448265076, -0.013412856496870518, 0.03902927041053772, -0.0017465736018493772, 0.016156237572431564, 0.009708945639431477, -0.012618173845112324, 0.027157405391335487, 0.013012059964239597, 0.005334737244993448, -0.01962519995868206, -0.0059704831801354885, 0.015713980421423912, -0.02060646004974842, 0.02114546112716198, -0.0045504202134907246, 0.009515457786619663, 0.01911383867263794, 0.017026932910084724, -0.006675331853330135, 0.002123184036463499, -0.01002681814134121, 0.01297059841454029, 0.00023581334971822798, -0.01144342590123415, -0.019791046157479286, -0.007089948747307062, -0.004277464002370834, 0.020689383149147034, -0.018657760694622993, 0.014898566529154778, -0.0062330737709999084, -0.008852070197463036, -0.0008905625436455011, 0.008361440151929855, 0.005569686647504568, -0.007072673179209232, 0.022610440850257874, -0.03242304176092148, -0.013606344349682331, 0.026535481214523315, 0.023550238460302353, -0.004211816471070051, -0.02353641949594021, -0.010890603996813297, -0.010586551390588284, -0.0006534534622915089, 0.000942389655392617, -0.0031700916588306427, 0.0015237170737236738, -0.016750521957874298, -0.01198933832347393, 0.006184701807796955, 0.013523420318961143, 0.027737868949770927, -0.016045672819018364, -0.010849141515791416, 0.007200513035058975, 0.007587489206343889, 0.008237055502831936, -0.015755441039800644, -0.02375754714012146, 0.02060646004974842, -0.014304282143712044, -0.027102123945951462, -0.03753664717078209, -0.013723818585276604, -0.01969430223107338, 0.002596538281068206, 0.0025481663178652525, -0.015313183888792992, -0.01416607666760683, -0.0037730135954916477, 0.014870925806462765, 0.01095279585570097, -0.006132874637842178, 0.020979614928364754, 0.01810493692755699, 0.01599039137363434, -0.01091824471950531, 0.00016077201871667057, 0.023453494533896446, 0.07164579629898071, 0.026604583486914635, -0.006208887789398432, 0.015022952109575272, -0.01373072899878025, -0.03319699317216873, -0.047929711639881134, -0.021573899313807487, 0.02618996612727642, 0.010344691574573517, -0.027033021673560143, 0.014304282143712044, 0.015824545174837112, -0.006816992536187172, 0.0024065054021775723, -0.003125174669548869, -0.012438506819307804, -0.018519554287195206, -0.0026362724602222443, -0.013502690009772778, 0.0198739692568779, -0.008098850026726723, 0.03808947280049324, 0.016349725425243378, 0.01882360689342022, 0.002268299926072359, 0.029189029708504677, 0.020938152447342873, 0.0008318251348100603, -0.008174862712621689, -0.007704963907599449, 0.024724986404180527, 0.024310370907187462, 0.021808847784996033, -0.025485118851065636, 0.014027871191501617, -0.0019659751560539007, -0.026424916461110115, -0.0233291108161211, 0.000942389655392617, -0.014000230468809605, 0.023840470239520073, 0.00917685404419899, -0.015658697113394737, 0.0011782030342146754, -0.01104262936860323, 0.005103243049234152, 0.01904473640024662, -0.003536336589604616, 0.004415669944137335, 0.013633985072374344, 0.008934994228184223, -0.016805805265903473, 0.014318102970719337, -0.007649681530892849, -0.004619522951543331, -0.0028453082777559757, -0.014276641421020031, -0.029106104746460915, -0.04828904569149017, -0.04162753373384476, -0.009909343905746937, 0.01019266527146101, -0.013281560502946377, -0.011747478507459164, -0.030958060175180435, 0.002682916820049286, -0.02390957437455654, -0.02002599649131298, 0.012583622708916664, -0.002691554604098201, -0.04253969341516495, -0.01683344505727291, 0.0009415258537046611, 0.040245480835437775, 0.0226657222956419, -0.007311077788472176, 0.007096859160810709, -0.0007627223385497928, 0.017330985516309738, -0.004958127159625292, -0.017579756677150726, -0.0008957452373579144, -0.0076911430805921555, 0.007228154223412275, -0.009335789829492569, -0.02759966440498829, 0.004826831631362438, -0.009708945639431477, 0.012058441527187824, -0.013862024992704391, -0.023052698001265526, 0.01668141968548298, 0.013613254763185978, 0.014331923797726631, 0.012742559425532818, 0.022679543122649193, 0.01599039137363434, 0.017787065356969833, -0.051523059606552124, 0.0061605158261954784, -0.0199845340102911, -0.01503677200525999, -0.017386268824338913, 0.0048026456497609615, 0.009778047911822796, -0.003016337752342224, -0.00032651080982759595, -0.01162309292703867, -0.013426676392555237, 0.011581631377339363, 0.014884746633470058, -0.006049951538443565, 0.0015781355323269963, -0.0006871410878375173, -0.016460290178656578, 0.006906826514750719, 0.0244485754519701, 0.008409812115132809, -0.012251929379999638, -0.013696177862584591, -0.010911334306001663, 0.03864229470491409, 0.008230145089328289, -0.004156534094363451, 0.014539232477545738, 0.0232185460627079, -0.016156237572431564, -0.004857928026467562, 0.012473057955503464, -0.008858980610966682, 0.004889023955911398, -0.017939090728759766, -0.015022952109575272, -0.01846427284181118, -0.015755441039800644, -0.005300185643136501, -0.003413679078221321, -0.025844452902674675, -0.014553052373230457, -0.02158772014081478, 0.0023702264297753572, 0.01046216581016779, -0.018367528915405273, 0.01969430223107338, -0.02594119682908058, -0.03007354401051998, 0.009280508384108543, 0.006001579575240612, 0.014663617126643658, -0.022278746590018272, -0.013951858505606651, -0.03659684956073761, -0.021490974351763725, -0.006906826514750719, -0.02234785072505474, -0.01603185385465622, 0.0022752101067453623, 0.05624968931078911, 0.005148159805685282, 0.009550008922815323, -0.0025326181203126907, 0.015174978412687778, 0.017745602875947952, -0.005072146654129028, 0.003645173506811261, -0.022389311343431473, -0.021850310266017914, 0.013951858505606651, 0.0055731418542563915, 0.020412972196936607, -0.012735649012029171, 0.009895523078739643, -0.005251813679933548, 0.017068395391106606, 0.009916254319250584, -0.005804636515676975, -0.01636354625225067, -0.023052698001265526, -0.052683986723423004, -0.0021352770272642374, 0.030128827318549156, -0.004754273686558008, 0.009460175409913063, -0.03123447299003601, -0.0027796607464551926, 0.012721828185021877, -0.0007566758431494236, 0.029354875907301903, 0.001740527106449008, 0.032699450850486755, 0.004654074553400278, -0.0017526200972497463, 0.01614241674542427, 0.0028539462946355343, -0.012355582788586617, -0.01344049721956253, -0.055226970463991165, -0.005732078570872545, 0.011291399598121643, 0.02230638824403286, 0.012784020975232124, -0.01991543173789978, 0.003582980949431658, 0.004066700581461191, 0.022403132170438766, -0.03159380704164505, -0.008651671931147575, 0.003900853917002678, -0.02005363628268242, -0.003610622137784958, -0.023771367967128754, -0.016557034105062485, 0.01726188324391842, 0.013834383338689804, 0.003717731451615691, 0.023564059287309647, 0.012507609091699123, -0.02139423042535782, -0.013910396955907345, 0.021463334560394287, 7.801059837220237e-06, 0.03333519771695137, 0.01126375887542963, 0.03278237581253052, 0.01610095612704754, 0.004857928026467562, -0.01209990307688713, -0.012652724981307983, 0.017579756677150726, -0.011436515487730503, -0.0029904244001954794, 0.028857335448265076, -0.023439675569534302, -0.007836258970201015, 0.02625907026231289, 0.0028522186912596226, 0.0170822162181139, -0.03198078274726868, 0.033749815076589584, 0.023094160482287407, 0.009895523078739643, -0.03134503588080406, -0.030930420383810997, -0.02306651882827282, 0.019791046157479286, 0.01167837530374527, 0.024642063304781914, 0.004747363273054361, 0.0002088200708385557, 0.0008378716302104294, 0.022099079564213753, -0.025816811248660088, 0.027627306059002876, -0.013689267449080944, 0.01897563226521015, -0.02404777891933918, 0.013122624717652798, -0.0023166718892753124, -0.018561016768217087, 0.014718899503350258, 0.02263808250427246, -0.013281560502946377, -0.005182710941880941, 0.0015202618669718504, 0.025623323395848274, -0.017690319567918777, -0.00932196993380785, -0.014705078676342964, 0.03778541833162308, 0.002349495654925704, -0.011913325637578964, 0.007939913310110569, -0.015368466265499592, 0.02730943262577057, -0.014373385347425938, -0.01167837530374527, -0.0020385331008583307, -0.006706428248435259, 0.009950805455446243, 0.016004212200641632, 0.006526760756969452, -0.0035553397610783577, 0.0010097648482769728, -0.0002967102045658976, -0.0027710229624062777, -0.006499119568616152, 0.002622451866045594, -0.005445301998406649, -0.03427499532699585, -0.021269846707582474, 0.016128597781062126, 0.0022527517285197973, 0.025291630998253822, -0.009784958325326443, 0.002290758304297924, 0.001493484596721828, 0.034800175577402115, -0.009404893033206463, -0.01777324452996254, 0.022251106798648834, 0.017109856009483337, -0.04491683095693588, 0.024130702018737793, 0.0037661034148186445, 0.0016567399725317955, 0.01603185385465622, -0.014034781605005264, -0.027558201923966408, -0.01581072434782982, 0.01715131849050522, 0.008478915318846703, 0.011049539782106876, -0.009515457786619663, -0.005217262543737888, 0.0060430411249399185, -0.002596538281068206, -0.005068691447377205, -0.018671579658985138, -0.00013129535363987088, 0.003380855079740286, 0.014483950100839138, 0.005220717750489712, -0.019901610910892487, 0.003487964626401663, -0.002043715678155422, 0.016805805265903473, -0.025346912443637848, -0.051163725554943085, -0.02567860670387745, -0.019597558304667473, -0.0057908156886696815, 0.0015919561265036464, -0.007483834866434336, 0.003430954646319151, -0.02894025854766369, -0.028304513543844223, 0.03123447299003601, -0.008907352574169636, 0.006015399936586618, 0.020993435755372047, -0.023080339655280113, -0.008354530669748783, 0.017358627170324326, -0.009135392494499683, -0.03797890618443489, 0.0035207883920520544, -0.015188798308372498, -0.028083384037017822, -0.003095806110650301, -0.012555981054902077, 0.04428108409047127, 0.02056499756872654, -0.028746770694851875, -0.030018262565135956, -0.03286529704928398, -0.04090886563062668, -8.351723226951435e-05, -0.032450683414936066, 0.02844271808862686, 0.03413679078221321, 0.03325227275490761, -0.0031839122530072927, 0.03007354401051998, -0.01726188324391842, 0.018630119040608406, -0.0399690680205822, -0.01451159082353115, -0.026065582409501076, -0.022803928703069687, 0.008693134412169456, -0.0214356929063797, -0.04126819968223572, 0.012866944074630737, 0.01723424158990383, -0.017275704070925713, 0.010033728554844856, 0.023729907348752022, -0.019030915573239326, -0.005507494322955608, -0.0009087020298466086, 0.017607396468520164, 0.024310370907187462, 0.023743726313114166, 0.009480905719101429, -0.031676728278398514, 0.006768620572984219, 0.007394001353532076, -0.006827358156442642, -0.024185985326766968, 0.03173201158642769, 0.02869148924946785, -0.009287417866289616, 0.007297257427126169, -0.001043452532030642, -0.026963917538523674, -0.005196531768888235, -0.012251929379999638, -0.004692080896347761, 0.0047300877049565315, 0.014442488551139832, 0.02270718477666378, 0.0034689612220972776, 0.007711873855441809, -0.012348673306405544, -0.0014122887514531612, 0.021974695846438408, 0.008174862712621689, 0.019417891278862953, -0.0247802697122097, -0.022223465144634247, -0.015133515931665897, 0.013074252754449844, 0.00939107220619917, 0.0001468434784328565, -0.010641833767294884, 0.012652724981307983, -0.033279914408922195, -0.019210582599043846, 0.016225341707468033, -0.02212672121822834, 0.0037799240089952946, 0.0023028512950986624, -0.012341762892901897, 0.005075601860880852, -0.01031704992055893, 0.0022302933502942324, -0.023591700941324234, -0.023881932720541954, -0.011692196130752563, -0.004654074553400278, -0.0379512645304203, 0.01393112726509571, 0.019169120118021965, -0.02777933143079281, 0.007331808563321829, 0.19990062713623047, -0.015299363061785698, 0.017787065356969833, 0.014304282143712044, 0.010178844444453716, -0.015617236495018005, -0.005186166148632765, 0.005638789851218462, -0.00819559395313263, 0.0016014577122405171, 0.023522598668932915, 0.017455371096730232, -0.03043287992477417, 0.0017673044931143522, 0.013198637403547764, -0.027585843577980995, -0.0366244912147522, -0.020426791161298752, -0.017109856009483337, 0.013018970377743244, 0.01799437217414379, -0.0057182577438652515, -0.014034781605005264, 0.004350021947175264, 0.04762566089630127, 0.017621217295527458, 0.002066174056380987, 0.023951034992933273, 0.024766448885202408, 0.020219484344124794, -0.00961220171302557, -0.018809786066412926, 0.021643001586198807, 0.003900853917002678, -0.024973757565021515, 0.011740568093955517, 0.01944553107023239, -0.0047750044614076614, 0.007967554964125156, 0.011706016957759857, 0.009874791838228703, -0.016405008733272552, -0.007062307558953762, -0.03449612483382225, 0.025222526863217354, -0.012175915762782097, -0.0033255729358643293, -0.005106697790324688, 0.006792806554585695, 0.007456193678081036, -0.004111617337912321, -0.0019884335342794657, 0.006416196469217539, -0.007058852352201939, -0.0032080982346087694, 0.024531498551368713, -0.020578818395733833, 0.0028608564753085375, -0.015188798308372498, 0.005908290855586529, -0.009335789829492569, 0.0021888315677642822, -0.0011782030342146754, 0.011077181436121464, -0.025623323395848274, 0.023481136187911034, -0.004242912866175175, 0.01752447336912155, 0.0006150150438770652, 0.0005929885082878172, -0.017800884321331978, 0.0004552147875074297, -0.02818012796342373, 0.01097352709621191, -0.01297059841454029, -0.014345744624733925, 0.030349956825375557, 0.021781207993626595, 0.057327695190906525, 0.012086082249879837, 0.024572961032390594, 0.0009043830796144903, -0.021739745512604713, -0.014027871191501617, -0.001485710497945547, -0.01900327391922474, 0.023301469162106514, -0.01817404106259346, -0.004871748387813568, -0.011526349000632763, -0.010524358600378036, 0.028663847595453262, -0.00955691933631897, -0.004916665144264698, -0.004816466011106968, 0.0011419240618124604, 0.012984419241547585, 0.004211816471070051, -0.007483834866434336, -0.01303970068693161, -0.015313183888792992, 0.05144013464450836, 0.014387206174433231, 0.02815248630940914, -0.01378601137548685, 0.01274946890771389, 0.002746836980804801, 0.0018744138069450855, 0.007642771117389202, 0.003690090263262391, -0.008589480072259903, -0.03806183114647865, 0.026604583486914635, -0.008838250301778316, -0.007615129929035902, 0.02786225453019142, 0.02495993673801422, -0.005780450534075499, 0.005379654001444578, -0.0010978709906339645, 0.020509716123342514, -0.009508547373116016, -5.796808181912638e-06, 0.012590533122420311, -0.01690254919230938, -0.01766267977654934, 0.01474654022604227, 0.015617236495018005, -0.025554221123456955, -0.014179897494614124, 0.012839303351938725, -0.02230638824403286, 0.02999062091112137, -0.028719129040837288, 0.0020160747226327658, -0.023439675569534302, 0.0006733205518685281, -0.01015811413526535, -0.0043051051907241344, -0.0002623747568577528, 0.003441320266574621, -0.01291531603783369, 0.0026742788031697273, 0.005887559615075588, -0.015092054381966591, 0.0186439398676157, -0.0029126836452633142, 0.012321031652390957, -0.02520870603621006, -0.006637325510382652, 0.007988285273313522, 0.0006642508087679744, -0.024531498551368713, -0.0029852415900677443, 0.02811102569103241, -0.027765510603785515, -0.04112999513745308, -0.021408051252365112, 0.013737639412283897, 0.014442488551139832, -0.03764721378684044, 0.0048130108043551445, 0.041986871510744095, 0.005984303541481495, -0.004913209937512875, 0.008043567650020123, -0.17701376974582672, 0.007808618247509003, 0.008527287282049656, 0.001508168876171112, -0.012673456221818924, 0.01567251794040203, 0.006060316693037748, -0.005300185643136501, -0.027696408331394196, -0.00020018221403006464, 0.019970713183283806, -0.01737244799733162, -0.04312015697360039, -0.027046840637922287, 0.00816104281693697, -0.008319978602230549, -0.0032927491702139378, 0.021062538027763367, 0.05495055764913559, 0.008513466455042362, 0.005369288846850395, -0.023660803213715553, -0.000543320900760591, 0.005248358938843012, 0.0024566049687564373, 0.008582569658756256, -0.011160104535520077, 0.022624261677265167, -0.017745602875947952, -0.033279914408922195, 0.008858980610966682, -0.007497655227780342, 0.011630003340542316, 0.017939090728759766, 0.007072673179209232, -0.01207917183637619, -0.0005554138915613294, -0.019210582599043846, -0.0004828559176530689, 0.006720248609781265, 0.025982657447457314, 0.008782967925071716, 0.021352769806981087, 0.007794797420501709, 0.01254907064139843, 0.025955017656087875, 0.03203606605529785, -0.008333799429237843, 0.027337074279785156, -0.000602058251388371, 0.0007627223385497928, -0.017869988456368446, -0.001160063548013568, 0.0012853123480454087, 0.02081376686692238, 0.02974185161292553, 0.005669885780662298, 0.030930420383810997, 0.0008089347975328565, -0.02357788011431694, 0.018768323585391045, -0.006599318701773882, 0.0018968723015859723, -0.010945885442197323, -0.01893417164683342, -0.01886506751179695, -0.004799190443009138, 0.017178960144519806, 0.0010201303521171212, 0.016018033027648926, 0.00990243349224329, 0.004526234231889248, 0.009204494766891003, -0.005472942721098661, 0.022914493456482887, -0.01104262936860323, -0.035270076245069504, 0.0007242838619276881, 0.021781207993626595, 0.002639727434143424, 0.0018329521408304572, 0.025512758642435074, 0.014663617126643658, -0.0062952665612101555, 0.002746836980804801, -0.006720248609781265, 0.00011909438035218045, 0.01017193403095007, -0.0021473700180649757, -0.00830615870654583, 0.025761529803276062, -0.01839516870677471, -0.001160063548013568, 0.0023304924834519625, 0.016529392451047897, 0.014774181880056858, 0.01922440342605114, 0.007656591944396496, 0.0019832507241517305, -0.007898451760411263, -0.003240922000259161, 0.017455371096730232, -0.02759966440498829, 0.019348787143826485, 0.034192074090242386, 0.011249938048422337, 0.0033843102864921093, -0.0018191315466538072, 0.04295431077480316, -0.011616183444857597, -0.03253360465168953, 0.0036002565175294876, 0.01474654022604227, 0.01451159082353115, -0.021173102781176567, 0.03206370770931244, -0.003983777482062578, -0.024075420573353767, 0.013661626726388931, -0.0069932048209011555, 0.03913983330130577, -0.03902927041053772, -0.020882871001958847, 0.010033728554844856, -0.004857928026467562, -0.025305449962615967, -0.11139373481273651, -0.022403132170438766, 0.020717022940516472, 0.006457658018916845, -0.0031286298763006926, 0.006661511491984129, 0.005358923226594925, 0.0343855619430542, -0.012106813490390778, 0.033749815076589584, -0.02567860670387745, 0.010586551390588284, 0.00839599221944809, -0.019970713183283806, 0.005217262543737888, -0.006409286055713892, 0.003104443894699216, -0.017759423702955246, -0.019307326525449753, 0.040134914219379425, 0.0013570064911618829, -0.01991543173789978, 0.024462396278977394, 0.015216439962387085, -0.004090886563062668, -0.017496831715106964, -0.02625907026231289, 0.007193603087216616, 0.016584675759077072, 0.0009579377365298569, 0.03784070163965225, -0.025872094556689262, 0.02382665127515793, -0.026093222200870514, -0.011706016957759857, -0.003748827613890171, -0.013212458230555058, -9.616358511266299e-06, 0.004954671952873468, -0.02136659063398838, 0.015824545174837112, -0.006709883455187082, 0.011049539782106876, -0.011401964351534843, -0.002036805497482419, -0.0013682356802746654, -0.03325227275490761, 0.041434045881032944, -0.013447407633066177, -0.012694187462329865, -0.02683953382074833, -0.02408924140036106, -0.038614653050899506, -0.028055742383003235, 0.01712367683649063, 0.016529392451047897, 0.007276526186615229, 0.017538294196128845, -0.02513960376381874, -0.0009380707051604986, -0.0034896922297775745, -0.004819921217858791, -0.020689383149147034, 0.024655884131789207, 0.03383273631334305, 0.010413793846964836, -0.010151203721761703, -0.009688214398920536, -0.007739515043795109, 0.0245591402053833, -0.019279684871435165, 0.02525016851723194, -0.01929350569844246, 0.017925269901752472, -0.011395053938031197, 0.003942315466701984, -0.002213017549365759, -0.012196647003293037, 0.018146399408578873, 0.026203786954283714, -0.018035834655165672, -0.016004212200641632, 0.0006508621154353023, -0.031179189682006836, 0.014027871191501617, 0.015064413659274578, 0.0021698283962905407, -0.006647690664976835, 0.018118757754564285, -0.038504086434841156, 0.007387090940028429, 0.03499366343021393, 0.006699517834931612, 0.035822898149490356, -0.01137432362884283, 0.01224501896649599, 0.0034689612220972776, -0.01187877357006073, 0.02212672121822834, -0.0005666430806741118, 0.002290758304297924, 0.0021698283962905407, -0.045828986912965775, 0.011726747266948223, 0.01280475128442049, 0.004719722084701061, 0.010766218416392803, -0.018049655482172966, 0.009252866730093956, 0.007165961898863316, 0.01024794764816761, -0.011001167818903923, -0.012922226451337337, 0.017358627170324326, 0.00790536217391491, -0.005009953863918781, -0.020288586616516113, -0.010980437509715557, 0.008029746823012829, -0.0009095657733269036, 0.009860971942543983, 0.007221244275569916, 0.0019279684638604522, 0.007083038333803415, 0.010310139507055283, 0.029548363760113716, -0.01204462070018053, -0.006557857152074575, -0.004277464002370834, 0.0004720586002804339, -0.010089010931551456, -0.030349956825375557, 0.01247996836900711, -0.0005636198329739273, -0.005842642858624458, 0.009708945639431477, -0.013012059964239597, -0.04157225415110588, 0.008243965916335583, 0.005942841991782188, 0.018478091806173325, 0.021643001586198807, -0.008824429474771023, -0.013343753293156624, 0.004236002452671528, -0.02594119682908058, -0.031040985137224197, -0.011291399598121643, -0.0289126168936491, -0.020399151369929314, 0.0030647097155451775, -0.0014917569933459163, 0.044087596237659454, 0.004166899714618921, -0.02844271808862686, -0.029078464955091476, -0.01222428772598505, 0.0026708238292485476, 0.023481136187911034, 0.02782079391181469, 0.01668141968548298, -0.007003570441156626, 0.04898007586598396, 0.015755441039800644, 0.012148275040090084, -9.211458745994605e-06, 0.021808847784996033, -0.031897857785224915, -0.056498460471630096, -0.019998354837298393, 0.005459122359752655, -0.017621217295527458, -0.002862584078684449, -0.024130702018737793, 0.019376428797841072, 0.007856990210711956, 0.012846212834119797, 0.012818572111427784, -0.013737639412283897, -0.0260102991014719, 0.0009527550428174436, 0.027102123945951462, 0.01922440342605114, -0.021532436832785606, -0.01915529929101467, 0.015866005793213844, 0.005047960672527552, 0.013917306438088417, -0.006519850343465805, 0.006022310350090265, 0.003683180082589388, 0.0038663025479763746, -0.020703203976154327, 0.008706954307854176, -0.019749583676457405, 0.002935142023488879, 0.010413793846964836, 0.00024164390924852341, -0.0214356929063797, 0.017648858949542046, 0.021960875019431114, 0.008782967925071716, -0.00016519891505595297, 0.02793135680258274, 0.005016864277422428, -0.025346912443637848, -0.017869988456368446, 0.015479030087590218, -0.040715377777814865, -0.014207538217306137, 0.02560950256884098, 0.011505618691444397, -0.003344576107338071, -0.025333091616630554, 0.001755211502313614, 0.008506556041538715, -0.018146399408578873, -0.006329817697405815, -0.01039306353777647, -0.025236347690224648, -0.025443656370043755, -0.009225226007401943, 0.01625298149883747, 0.003918129485100508, 0.01907237619161606, -0.04541436955332756, 0.037232596427202225, -0.005725168157368898, 0.02081376686692238, -0.017344806343317032, 0.021684464067220688, -0.021200742572546005, -0.013758370652794838, -0.0033238453324884176, 0.004965037107467651, -0.021698283031582832, -0.018588656559586525, -0.018851248547434807, -0.014898566529154778, 0.016170058399438858, 0.008458184078335762, 0.0848582535982132, 0.03007354401051998, -0.013233188539743423, 0.015105875208973885, -0.01929350569844246, 0.010109742172062397, 0.019846327602863312, 0.01766267977654934, 0.007311077788472176, -0.019970713183283806, 0.02404777891933918, -0.01737244799733162, -0.018091116100549698, -0.01621152088046074, -0.021808847784996033, -0.01178894005715847, 0.016529392451047897, 0.019086197018623352, -0.008755326271057129, 0.012196647003293037, 0.014000230468809605, 0.002045443281531334, 0.017386268824338913, -0.01166455540806055, -0.039692655205726624, -0.009978446178138256, 0.0242274459451437, 0.021573899313807487, -0.0010304957395419478, 0.0006517259171232581, 0.006309086922556162, -0.006678787060081959, -0.026245249435305595, -0.004073610994964838, -0.03739844262599945, 0.01578308269381523, -0.030018262565135956, -0.017800884321331978, 0.009950805455446243, 0.030239392071962357, 0.01773178204894066, 0.038255318999290466, -0.006827358156442642, -0.023881932720541954, -0.028166307136416435, -0.0026431826408952475, -0.0034240444656461477, -0.022099079564213753, -0.01309498306363821], "885f2991-1d81-459e-97c2-c2654ff84e24": [-0.007951503619551659, -0.0003845441387966275, 0.020631665363907814, -0.017524652183055878, -0.007862926460802555, 0.016039280220866203, -0.003439178690314293, -0.03335952386260033, -0.02634148672223091, -0.05420922487974167, 0.011957917362451553, 0.029244091361761093, 0.012291785329580307, -0.011855713091790676, -0.0044901808723807335, 0.01419960055500269, 0.026614030823111534, -0.01854669488966465, 0.007324650418013334, -0.0013661324046552181, -0.030225254595279694, -0.004578758031129837, -0.012700602412223816, -0.011385572142899036, -0.02288016304373741, 0.008496594615280628, 0.009082566015422344, -0.007631263695657253, -0.031696997582912445, 0.028017638251185417, -0.0016190883470699191, 0.0039144293405115604, -0.01337515190243721, 5.9852131926163565e-06, -0.026327859610319138, 0.005699600093066692, 0.012298598885536194, -0.008012826554477215, -0.0026113230269402266, -0.01681603491306305, 0.00855791661888361, 0.021803610026836395, 0.0017953909700736403, -0.013981564901769161, -0.01640721596777439, 0.030634071677923203, 0.012795993126928806, 0.00014734470460098237, -0.0008180612348951399, 0.004701403435319662, -0.0009981965413317084, -0.0008959920960478485, -0.026395995169878006, 0.011780763044953346, -0.006074349395930767, -0.0170749519020319, 0.020304610952734947, 0.008046894334256649, 0.02407936193048954, -0.0004616233054548502, -0.0023336675949394703, -0.0027407819870859385, -0.013954310677945614, 0.012898198328912258, 0.004115431569516659, -0.019582366570830345, -0.0242292620241642, -0.021340282633900642, -0.014676555059850216, -0.008264930918812752, 0.014335873536765575, 0.03758397325873375, -0.006677355617284775, 0.00929378904402256, -0.008414831012487411, -0.022621246054768562, 0.0013755011605098844, -0.0351310670375824, 0.007385972887277603, 0.020686175674200058, 0.006619439925998449, -0.025292187929153442, -0.022634873166680336, 0.0013261024141684175, 0.012598398141562939, 0.015139881521463394, 0.024842487648129463, 0.0005267786327749491, -0.006772746331989765, 0.003469840157777071, -0.0016727456822991371, 0.004916032776236534, 0.024597197771072388, 0.0030967940110713243, -0.0017178859561681747, 0.007140682078897953, 0.0043300604447722435, 0.007515431847423315, -0.0011216935236006975, -0.024542689323425293, -0.019814031198620796, 0.0069737485609948635, -0.013518238440155983, -0.011228859424591064, -0.02625972218811512, -0.009259720332920551, 0.020331867039203644, -0.005365732125937939, -0.007038477808237076, 0.023806815966963768, -0.03142445161938667, 0.031206415966153145, -0.011099399998784065, -0.0005008016596548259, 0.00663988059386611, -0.027745094150304794, 0.005662125069648027, -0.03275992348790169, -0.005999399349093437, -0.020686175674200058, 0.0031598201021552086, -0.004779760260134935, 0.037447698414325714, -0.03074309043586254, 0.020795192569494247, 0.019159922376275063, 0.0071747503243386745, -0.004336874466389418, 0.004674148745834827, -0.021626455709338188, 0.02260761894285679, 0.007140682078897953, 0.014662927947938442, 0.01610741764307022, -0.02418838068842888, 0.01865571364760399, -0.016788778826594353, -0.005658718291670084, -0.014662927947938442, -0.022866535931825638, 0.011692185886204243, 0.021054111421108246, 0.005110220983624458, -0.03603046387434006, 0.012066935189068317, 0.02551022358238697, -0.0005450902390293777, 0.024801606312394142, 0.013191184028983116, 0.01753827929496765, 0.015848498791456223, -0.009021244011819363, -0.007494990713894367, 0.0009820141131058335, 0.022934671491384506, 0.0012741484679281712, 0.004088176880031824, 0.028044892475008965, -0.01278917957097292, 0.004064328968524933, -0.004200601950287819, -0.00647976016625762, -0.009934269823133945, -0.007965131662786007, -0.0017170342616736889, 0.035594392567873, 0.01974589377641678, -0.0074268546886742115, -0.005198798142373562, -0.015753109008073807, -0.008326253853738308, 0.0175655335187912, -0.01745651476085186, 0.008442085236310959, 0.020604411140084267, 0.01613467186689377, 0.028044892475008965, 0.0003204534586984664, -0.0035056115593761206, -0.029489383101463318, 0.016148298978805542, -0.007508618291467428, 0.01527615450322628, 0.01948697678744793, -0.023575153201818466, -0.021503809839487076, 0.03251463174819946, 0.00224849721416831, -0.0162981990724802, -0.011085772886872292, 0.015017236582934856, 0.0134705426171422, -0.029598399996757507, -0.0032075154595077038, -0.6305603981018066, 0.014649300836026669, 0.018178759142756462, -0.008142285980284214, 0.014513027854263783, 0.013879360631108284, 0.026246095076203346, 0.001624198630452156, -0.009600401856005192, 0.028426457196474075, 0.008033267222344875, 0.009280161932110786, -0.005955110769718885, 0.0010791083332151175, 0.0010390783427283168, -0.031806014478206635, 0.002577254781499505, -0.020822446793317795, -0.01576673611998558, 0.02516954205930233, -0.013061725534498692, 0.03374108672142029, 0.009736674837768078, 0.0057166339829564095, -0.007229259237647057, -0.02095871977508068, 0.028699001297354698, -0.014363127760589123, 0.008087776601314545, 0.02035912126302719, -0.02238958142697811, 0.006295792292803526, 0.0037134273443371058, -0.000532740552444011, 0.04235351085662842, 0.008789580315351486, -0.014063328504562378, 0.0031495995353907347, 0.01473106350749731, 0.047531869262456894, -0.035839684307575226, -0.0021003009751439095, 0.016938678920269012, 0.0013678357936441898, 0.001986172515898943, -0.0119851715862751, 0.008067335933446884, 0.0047967941500246525, 0.0034953912254422903, -0.029407618567347527, -0.0006822145078331232, -0.00671483064070344, 0.005365732125937939, 0.016693389043211937, 0.0007192636257968843, 0.0024597197771072388, 0.002108817920088768, -0.02208978310227394, 0.007658517919480801, 0.0024409822653979063, 0.002108817920088768, -0.004970541689544916, -0.019323449581861496, -0.028344692662358284, -0.05164730176329613, 0.013538679108023643, -0.003449399257078767, -0.03502205014228821, 0.016012025997042656, 0.004524249117821455, 0.02587815932929516, 0.0008189129293896258, 0.012721044011414051, -0.00739278644323349, -0.0024018038529902697, -0.00047695398097857833, 0.036357518285512924, -0.007181563880294561, -0.03077034465968609, 0.018110623583197594, -0.021285774186253548, -0.003638477297499776, -0.024161124601960182, -0.013518238440155983, 0.038728661835193634, 0.0004335170960985124, -0.02521042339503765, -0.010738277807831764, 0.0043300604447722435, -0.000769088277593255, -0.0031921847257763147, 0.029598399996757507, -0.021653709933161736, -0.018464932218194008, -0.010520242154598236, 0.03619399294257164, 0.0030848700553178787, 0.0030303611420094967, 0.005685972515493631, -0.02298918180167675, -0.010009219869971275, -0.024542689323425293, 0.015698598697781563, 0.009348297491669655, 0.031288180500268936, 0.0197867751121521, -0.00788336805999279, -0.009505011141300201, 0.04606012627482414, -0.014812827110290527, 0.0017953909700736403, 0.006626253481954336, -0.007862926460802555, -0.031315434724092484, 0.0264505036175251, -0.019609620794653893, -0.004285771865397692, -0.004871744196861982, 0.011031263507902622, -0.006803407799452543, 0.011787576600909233, -0.02196713723242283, 0.0024937877897173166, 0.0001274361420655623, -0.00091472954954952, 0.018519440665841103, 0.00016533693997189403, 0.0004888778203167021, 0.020141085609793663, -0.015357918106019497, -0.0037849703803658485, -0.026177959516644478, 0.002490381011739373, 0.00722244568169117, 0.022743890061974525, -0.013368338346481323, 0.02788136713206768, 0.0007213928620330989, -0.003539679804816842, -0.048703812062740326, 0.011535472236573696, 0.0040915836580097675, 0.018573950976133347, -0.028835274279117584, -0.005593988578766584, -0.02260761894285679, -0.033195994794368744, 0.011951103806495667, -0.026286976411938667, -0.013293388299643993, -0.010056914761662483, -0.021122246980667114, -0.01595751754939556, 0.02418838068842888, -0.009518638253211975, 0.013313828967511654, 0.015303408727049828, -0.02908056415617466, -0.017224851995706558, -0.026164332404732704, -0.01295952033251524, -0.00023507016885560006, -0.024951506406068802, 0.00506933918222785, -0.009675351902842522, -0.02288016304373741, -0.00921883899718523, 0.01454028207808733, -0.0136000020429492, -0.018601205199956894, 0.003965531475841999, 0.00034749502083286643, 0.020032066851854324, 0.03196954354643822, -0.0012187877437099814, 0.028617238625884056, -0.018151504918932915, -0.021013228222727776, -0.0014700402971357107, -0.006827255245298147, -0.005665531847625971, 0.020413629710674286, -0.006765932776033878, -0.008346694521605968, 0.02196713723242283, 0.008346694521605968, 0.02377956174314022, 0.012462126091122627, -0.030797598883509636, -0.0017885774141177535, 0.025646496564149857, 0.006684169173240662, -0.017769942060112953, 2.8292526621953584e-05, -0.01711583323776722, -0.002008316805586219, -0.020999601110816002, 0.008578358218073845, -0.007965131662786007, 0.025115033611655235, 0.01794709637761116, 0.02031823992729187, -0.004384569823741913, -0.0003238602657802403, -0.00335741532035172, -0.01011823769658804, 0.009402806870639324, -0.0326509065926075, 0.01689779758453369, -0.0024716435000300407, -0.001926553319208324, -0.01497635431587696, 0.008959921076893806, -0.007324650418013334, 0.007474550046026707, 0.025333069264888763, 0.010465732775628567, 0.004588978365063667, -0.006510421633720398, 0.012925452552735806, 0.014526654966175556, -0.005321443546563387, 0.03695711866021156, 0.004459519404917955, -0.0005787325208075345, 0.023275353014469147, 0.0033233470749109983, 0.0257282592356205, 0.0016531564760953188, -0.026505013927817345, -0.012046494521200657, 0.026927458122372627, 0.021204011514782906, -0.0014061625115573406, 0.035539884120225906, 0.029707418754696846, 0.04164489358663559, -0.004139279015362263, 0.04011864215135574, 0.0035873751621693373, 0.0034511026460677385, 0.006326453760266304, 0.010813227854669094, -0.01377034280449152, 0.03349579498171806, 0.004043888300657272, 0.029734672978520393, -0.0025687378365546465, -0.00994789693504572, 0.026041686534881592, 0.015562326647341251, 0.007590381894260645, -0.043171148747205734, -0.0065989987924695015, 0.008939480409026146, -0.02317996323108673, 0.020495394244790077, 0.007835672236979008, 0.009021244011819363, 0.013490983285009861, 0.0029928861185908318, -0.017470141872763634, 0.012945893220603466, 0.0013618739321827888, 0.014226855710148811, -0.004282365087419748, -0.004442485515028238, -0.021926255896687508, -0.010077356360852718, -0.018001604825258255, 0.006254910491406918, -0.016802407801151276, 0.008551103062927723, -0.0025789581704884768, -0.003369339043274522, -0.004248297307640314, 0.007774349767714739, 0.01055430993437767, -0.0009121744660660625, 0.02080881968140602, -0.038728661835193634, -0.014703809283673763, 0.012577957473695278, 0.023956716060638428, -0.003781563602387905, -0.02867174707353115, -0.002129258820787072, -0.025115033611655235, 0.0048172352835536, -0.007535872515290976, -0.010295392014086246, 0.010840482078492641, -0.0008333919104188681, -0.011351504363119602, -0.006919239182025194, 0.02091783843934536, 0.03946453332901001, -0.01880561374127865, -0.0175655335187912, 0.004057515412569046, -0.001570541295222938, 0.019105413928627968, -0.021735474467277527, -0.030225254595279694, 0.03382284939289093, -0.0197867751121521, -0.015289781615138054, -0.02525130659341812, -0.015671344473958015, -0.003754309145733714, -0.011862526647746563, -0.008162726648151875, -0.014962727203965187, 0.004623046610504389, -0.002207615412771702, 0.012073748745024204, 0.0010731464717537165, 0.02303006313741207, 0.02256673574447632, 0.01394068356603384, -0.0024818640667945147, -0.007535872515290976, 0.005658718291670084, 0.018369540572166443, 0.06639198958873749, 0.016788778826594353, -0.0067454916425049305, 0.015793990343809128, -0.0010876253945752978, -0.003873547539114952, -0.04289860278367996, -0.02412024326622486, 0.029434872791171074, 0.010527055710554123, -0.02531944215297699, 0.015712225809693336, 0.008448898792266846, -0.008040080778300762, 0.006912425626069307, -0.004626453388482332, -0.008353508077561855, -0.014649300836026669, 0.007024850696325302, 0.0075495000928640366, 0.026981966570019722, -0.005260121077299118, 0.025373950600624084, 0.0064150309190154076, 0.017919842153787613, 0.01004328764975071, 0.029026055708527565, 0.011596795171499252, 0.0023183368612080812, -0.02215791866183281, -0.015221645124256611, 0.02117675542831421, 0.013906614854931831, 0.019282568246126175, -0.02799038402736187, 0.015535072423517704, 0.014758318662643433, -0.009034871123731136, -0.016202807426452637, -0.00335741532035172, 0.012652907520532608, 0.024365535005927086, 0.009361924603581429, 0.0011157315457239747, 0.0070521049201488495, -0.019664131104946136, 0.006616032682359219, 0.03330501541495323, -0.007018037140369415, -0.012577957473695278, 0.009402806870639324, 0.009205211885273457, -0.017470141872763634, 0.014962727203965187, -0.0007133017061278224, -0.019609620794653893, 0.005600802134722471, -0.010561123490333557, -0.0405547134578228, -0.025414831936359406, -0.020440883934497833, -0.024433670565485954, -0.0029315634164959192, -0.0013312125811353326, -0.012496193870902061, -0.025046896189451218, 0.009130261838436127, -0.020495394244790077, -0.026505013927817345, 0.016884170472621918, 0.01196473091840744, -0.044070545583963394, -0.044261328876018524, -0.0010808117222040892, 0.00746773649007082, 0.00889859814196825, -0.009539078921079636, -0.0032943892292678356, 0.009409620426595211, 0.01700681634247303, 0.003958717919886112, -0.030933871865272522, -0.005777956452220678, -0.010377155616879463, 0.0013806114438921213, -0.005934670101851225, -0.021190382540225983, -0.004282365087419748, -0.0175655335187912, 0.009266533888876438, -0.007290582172572613, -0.014485773630440235, -0.0001430861884728074, 0.014553909189999104, 0.005512224975973368, 0.026205213740468025, 0.024324651807546616, 0.021721845492720604, 0.015398799441754818, -0.042380765080451965, -0.009995592758059502, -0.02012745663523674, -0.01956873945891857, -0.013456915505230427, 0.00902805756777525, 0.0032041086815297604, 0.002430761931464076, -0.00996833760291338, 0.0005659569869749248, -0.007011223118752241, 0.014867336489260197, 0.0101386783644557, 0.0011796093313023448, 0.008932666853070259, 0.006193588022142649, -0.020004812628030777, -0.005127255339175463, 0.03616673871874809, 0.031506218016147614, -0.006953307427465916, -0.022280564531683922, -0.024624451994895935, 0.02317996323108673, 0.00931422971189022, 0.00788336805999279, -0.0030439882539212704, 0.021422047168016434, -0.03638477250933647, -0.01587575301527977, 0.00035494743497110903, -0.020563529804348946, 0.008701003156602383, -0.011385572142899036, -0.010772345587611198, -0.012741484679281712, 0.0037645294796675444, -0.0034868742804974318, 0.006830662023276091, -0.027676956728100777, -0.008884971030056477, -0.016611624509096146, -0.006881764158606529, -0.0037134273443371058, -0.019650503993034363, 0.009450501762330532, -0.028562728315591812, -0.02839920111000538, 0.002301302971318364, 0.0019555112812668085, 0.019691385328769684, -0.026464130729436874, -0.01295952033251524, -0.019854912534356117, -0.02630060538649559, -0.014172346331179142, -0.022716635838150978, -0.006919239182025194, 0.002941783983260393, 0.0573434941470623, 0.027418039739131927, 0.011460522189736366, 0.010717837139964104, 0.014812827110290527, 0.009791183285415173, -0.0034085174556821585, -0.004939880222082138, -0.021803610026836395, -0.019854912534356117, 0.0182877779006958, 0.005031864158809185, 0.018001604825258255, -0.011058518663048744, 0.00303376791998744, -0.012400803156197071, 0.016652507707476616, 0.02317996323108673, -0.005968738347291946, -0.006275351624935865, -0.016734270378947258, -0.041781168431043625, 0.004384569823741913, 0.039301007986068726, -0.004282365087419748, -0.0062378766015172005, -0.021803610026836395, 0.004841082729399204, 0.002430761931464076, -0.0047422852367162704, 0.02531944215297699, 0.017919842153787613, 0.0336320698261261, 0.011480963788926601, 0.0010680361883714795, 0.0007780311862006783, -0.003928056452423334, -0.02069980278611183, -0.0027186376973986626, -0.046250905841588974, -0.0064525059424340725, 0.007781163323670626, 0.02159920148551464, 0.017211224883794785, -0.01738837920129299, 0.015235272236168385, 0.007924249395728111, 0.01057475060224533, -0.02886252850294113, -0.02382044307887554, 0.0010152305476367474, -0.009900202043354511, 0.003703206777572632, -0.013197997584939003, -0.024065734818577766, 0.013668137602508068, -0.005645090714097023, -0.005375952459871769, 0.009137075394392014, 0.01738837920129299, -0.018274150788784027, -0.01952785812318325, 0.02681843936443329, -0.012503007426857948, 0.04115431383252144, 0.016938678920269012, 0.042162731289863586, 0.015357918106019497, 0.001511773793026805, 0.00031002008472569287, -0.02132665552198887, 0.021926255896687508, -0.009620842523872852, -0.006847696378827095, 0.032187577337026596, -0.011296994984149933, -0.018941886723041534, 0.01598477177321911, -0.012843688949942589, -0.006166333332657814, -0.03769299015402794, 0.013797597028315067, 0.020781565457582474, 0.007167936768382788, -0.030797598883509636, -0.02700922265648842, -0.01655711606144905, 0.01933707669377327, 0.0058120246976614, 0.027322648093104362, 0.0044527058489620686, 0.0027475955430418253, 0.0086533073335886, 0.037911027669906616, -0.015153508633375168, 0.01865571364760399, -0.006265130825340748, -0.00564168393611908, -0.030525054782629013, -0.0012366734445095062, -0.006115231197327375, -0.010349901393055916, 0.018682967871427536, 0.014431264251470566, -0.010390782728791237, 0.007958317175507545, 0.016911424696445465, 0.005604208912700415, -0.00989338755607605, -0.004135872237384319, -0.02313908189535141, 0.03066132590174675, -0.01223046239465475, -0.0036997999995946884, -0.005750702228397131, -0.018424050882458687, 0.024665333330631256, -0.030497798696160316, -0.013143488205969334, -0.007311022840440273, 0.01591663435101509, 0.019609620794653893, 0.018464932218194008, 0.014049701392650604, 0.005348698236048222, 0.007781163323670626, 0.002943487372249365, -0.001877154572866857, 0.003481763880699873, 0.002480160677805543, -0.004054108634591103, -0.026423249393701553, -0.014894590713083744, -0.003292685840278864, 0.0037577159237116575, 0.005246493499726057, -0.010922245681285858, -0.018178759142756462, 0.003921242896467447, 0.028235675767064095, -0.013879360631108284, -0.007113427855074406, 0.022852908819913864, 0.009089379571378231, -0.03581243008375168, 0.027022849768400192, -0.0012886273907497525, -0.007617636118084192, 0.025782769545912743, 0.0005851202877238393, -0.017878960818052292, -0.011446895077824593, 0.01587575301527977, 0.004425451625138521, 0.01700681634247303, 0.0019078159239143133, 0.006244690157473087, 0.007917435839772224, -0.004094990435987711, 0.007508618291467428, -0.013197997584939003, -0.013266134075820446, -0.006534269545227289, 0.023166336119174957, 0.019923048093914986, -0.023152709007263184, 0.006524048745632172, -0.015535072423517704, 0.025946296751499176, -0.016870543360710144, -0.049903012812137604, -0.02132665552198887, -0.01850581355392933, -0.001769839902408421, -0.0018277557101100683, 0.0075495000928640366, -0.009763929061591625, -0.025046896189451218, -0.025442088022828102, 0.029434872791171074, -0.015398799441754818, 0.019991185516119003, 0.017170343548059464, -0.004902405198663473, 0.004691183101385832, 0.02110861986875534, -0.005617836490273476, -0.04725932329893112, -0.0031002007890492678, -0.004149499349296093, -0.02690020389854908, -0.02117675542831421, -0.023956716060638428, 0.04606012627482414, 0.00855791661888361, -0.02008657529950142, -0.02987094596028328, -0.020222848281264305, -0.049712229520082474, 0.003597595728933811, -0.019541485235095024, 0.02788136713206768, 0.042380765080451965, 0.04096353054046631, -0.0005276303272694349, 0.03676633909344673, -0.011501404456794262, 0.00936873909085989, -0.03412264958024025, -0.015671344473958015, -0.02696833945810795, -0.011106213554739952, 0.0011361724464222789, -0.013661324046552181, -0.04126333072781563, 0.0016003509517759085, 0.01933707669377327, -0.013838478364050388, 0.010622446425259113, 0.016352707520127296, -0.033659324049949646, 0.00269990018568933, -0.013020843267440796, -0.0006030061049386859, 0.0182877779006958, 0.02095871977508068, 0.017279360443353653, -0.012714230455458164, 0.015112627297639847, 0.007999199442565441, -0.025155914947390556, -0.03183326870203018, 0.018560323864221573, 0.01809699647128582, -0.002021944150328636, 0.0015024050371721387, -0.003340381197631359, -0.03543086722493172, -0.007242886815220118, -0.022076155990362167, 0.01647535338997841, 0.0006711423629894853, 0.015903007239103317, 0.027172747999429703, -0.00031875004060566425, 0.010084169916808605, -0.016270944848656654, -0.010581564158201218, 0.02106773853302002, 0.007862926460802555, 0.025632869452238083, -0.03987335041165352, -0.010186374187469482, -0.01816513203084469, 0.013947497121989727, 0.01386573351919651, -0.010418036952614784, -0.02129940129816532, 0.010445292107760906, -0.028344692662358284, -0.017810823395848274, 0.015698598697781563, -0.011051705107092857, -0.004789980594068766, -0.006483166944235563, -0.010499800555408001, -0.004227856174111366, -0.017211224883794785, -0.004118838347494602, -0.018669340759515762, -0.003502204781398177, -0.028344692662358284, -0.0017800603527575731, -0.039900604635477066, 0.0210268571972847, 0.029625654220581055, -0.023043690249323845, 0.004997796379029751, 0.19797678291797638, -0.020331867039203644, 0.011358317919075489, 0.026682168245315552, 0.02230781875550747, -0.012652907520532608, 0.0013618739321827888, 0.009579961188137531, -0.02080881968140602, -0.009361924603581429, 0.011296994984149933, 0.0054270545952022076, -0.02521042339503765, 0.0017562126740813255, 0.01903727650642395, -0.009934269823133945, -0.0326509065926075, -0.02690020389854908, -0.009859319776296616, -0.0024954911787062883, 0.02106773853302002, -0.0010135271586477757, -0.012475753203034401, 0.003958717919886112, 0.022812027484178543, 0.0076108225621283054, -0.008762326091527939, 0.024283770471811295, 0.005096593871712685, 0.019882166758179665, -0.014117837883532047, -0.014390382915735245, 0.017442887648940086, 0.006425251252949238, -0.026477759703993797, 0.004524249117821455, 0.01194429025053978, -0.0063094194047153, 0.006796594243496656, 0.01790621504187584, 0.010261324234306812, -0.015412426553666592, 0.006370742339640856, -0.04338918253779411, 0.012782366015017033, -0.014404010027647018, -0.008925852365791798, 0.0053725456818938255, 0.013327457010746002, 0.004190381150692701, -0.015630463138222694, -0.01478557288646698, 0.014158719219267368, -0.01032945979386568, 0.005730261094868183, 0.01925531215965748, -0.004020040389150381, 0.009811624884605408, -0.01469018217176199, -0.006377555895596743, -0.009859319776296616, -0.005089780315756798, 0.014485773630440235, 0.008796393871307373, -0.034449703991413116, 0.02238958142697811, 0.0037372750230133533, 0.017878960818052292, -0.0034255515784025192, -0.000828707532491535, -0.013736274093389511, -0.013981564901769161, -0.03837435320019722, 0.004278958309441805, -0.010397596284747124, -0.006626253481954336, 0.023915834724903107, 0.019664131104946136, 0.04758637771010399, 0.01790621504187584, 0.007992385886609554, 0.014172346331179142, -0.037829264998435974, -0.01933707669377327, 0.00889859814196825, -0.023561526089906693, 0.030688580125570297, -0.017579160630702972, 0.007263327483087778, -0.015562326647341251, -0.0091438889503479, 0.019691385328769684, 0.002383066341280937, -0.018451305106282234, 0.009770742617547512, 0.0010663327993825078, 0.012319039553403854, 0.02132665552198887, -0.0182877779006958, -0.02758156694471836, -0.007215632125735283, 0.04183567687869072, 0.011406013742089272, 0.03889219090342522, -0.006483166944235563, 0.012244089506566525, 0.0047729467041790485, -0.0012077155988663435, 0.020113829523324966, -0.011017636395990849, 0.00236603245139122, -0.03567615523934364, 0.0301707461476326, -0.013068539090454578, -0.008735070936381817, 0.024365535005927086, 0.014581164345145226, 0.0014896293869242072, 0.022866535931825638, 0.008333067409694195, 0.019732266664505005, 0.008687376044690609, 0.0012605212396010756, 0.01173988077789545, -0.008258117362856865, -0.02433827891945839, -0.004626453388482332, 0.024556316435337067, -0.024556316435337067, -0.03066132590174675, 0.020250102505087852, -0.029053309932351112, 0.021871745586395264, -0.01469018217176199, 0.001877154572866857, -0.007985572330653667, -0.006241283379495144, -0.01801523193717003, 0.00731783639639616, 0.0011957917595282197, 0.019555112347006798, 0.0010510021820664406, 0.0051340688951313496, 0.011133468709886074, -0.011521845124661922, 0.029516637325286865, -0.02121763862669468, 0.01345010194927454, -0.034476958215236664, -0.004653708077967167, 0.007038477808237076, -0.0012520041782408953, -0.01051342859864235, -0.017633669078350067, 0.0365755558013916, -0.03829259052872658, -0.050802409648895264, -0.009511824697256088, 0.019405212253332138, 0.009430061094462872, -0.046932268887758255, 0.011324250139296055, 0.04210822284221649, 0.009177956730127335, -0.001866934122517705, -0.028726255521178246, -0.17290262877941132, 0.012216835282742977, 0.005692786071449518, -0.005018237046897411, 0.009177956730127335, 0.018001604825258255, 0.018573950976133347, -0.02392946183681488, -0.007140682078897953, 0.015671344473958015, 0.004469740204513073, -0.008687376044690609, -0.03066132590174675, -0.03330501541495323, -0.0029196396935731173, -0.02313908189535141, -0.0002089867484755814, 0.041781168431043625, 0.0593058206140995, 0.011685372330248356, 0.019159922376275063, -0.033468540757894516, -0.0008265782380476594, 0.007311022840440273, 0.0044527058489620686, 0.024406416341662407, 0.012666534632444382, 0.011201604269444942, -0.0020968939643353224, -0.030034473165869713, 0.02442004345357418, -0.013347897678613663, 0.009307416155934334, 0.005668938625603914, -0.0012698899954557419, -0.006271944846957922, -0.005028457380831242, -0.01839679665863514, -0.007140682078897953, 0.02595992386341095, 0.024583570659160614, 0.007072546053677797, 0.026246095076203346, 0.0030661325436085463, 0.006592185236513615, 0.027595194056630135, 0.025537477806210518, -0.010056914761662483, 0.02636874094605446, 0.006224249489605427, 0.002355811884626746, -0.031887780874967575, 0.005842686165124178, 0.01006372831761837, 0.025183169171214104, 0.016080161556601524, 0.019350703805685043, 0.008285371586680412, 0.006517235189676285, -0.009075752459466457, 6.967999070184305e-05, -0.012993589043617249, 0.007604009006172419, -0.0038599204272031784, -0.03420441225171089, -0.011678558774292469, 0.013150302693247795, 0.026464130729436874, 0.005495191086083651, 0.012264530174434185, 0.025837277993559837, 0.015943890437483788, 0.01478557288646698, 0.00522945960983634, 0.012775552459061146, -0.0011344690574333072, -0.022062527015805244, -0.004721844103187323, 0.024202007800340652, -0.000360483507392928, -0.010131864808499813, 0.026096194982528687, 0.005100000649690628, 0.003597595728933811, -0.00853747595101595, -0.002108817920088768, 0.017442887648940086, -0.015112627297639847, 0.002701603574678302, -0.003502204781398177, 0.035158321261405945, -0.017579160630702972, -0.01974589377641678, 0.013995192013680935, 0.027513429522514343, 0.00739278644323349, 0.019050903618335724, 0.001060370821505785, -0.006684169173240662, -0.017660923302173615, -0.010070542804896832, 0.011406013742089272, -0.034476958215236664, 0.02829018421471119, 0.04567856341600418, 0.015589580871164799, 0.008237676694989204, -0.002694790018722415, 0.02388858050107956, -0.01203968096524477, -0.04194469377398491, 0.008203607983887196, 0.018710222095251083, -0.003001403296366334, -0.030933871865272522, 0.03480401262640953, 0.00885771680623293, -0.030988380312919617, 0.013490983285009861, -0.01726573333144188, 0.02976192720234394, -0.040609221905469894, -0.020345494151115417, 0.0015543588669970632, -0.007406413555145264, -0.01030901912599802, -0.12482566386461258, -0.03894669935107231, 0.0316697433590889, 0.0062685380689799786, -0.009361924603581429, 0.015507817268371582, 0.009375552646815777, 0.029353110119700432, 0.00448677409440279, 0.037447698414325714, -0.012434870935976505, 0.014213228598237038, -0.0023524051066488028, -0.009770742617547512, 0.006949900649487972, -0.009286975488066673, 0.008830461651086807, -0.018573950976133347, -0.011951103806495667, 0.03622124716639519, -0.002711823908612132, -0.009852506220340729, 0.014989981427788734, 0.004364128690212965, -0.009620842523872852, -0.005689379293471575, -0.018342286348342896, 0.020781565457582474, 0.02185811847448349, 0.014090582728385925, 0.023220844566822052, -0.010717837139964104, -1.5104429621715099e-05, -0.032487377524375916, -0.0028038080781698227, -0.0013031064299866557, -0.024856114760041237, -0.009573147632181644, 0.0077334679663181305, -0.016734270378947258, 0.007815231569111347, -0.006953307427465916, 0.008135472424328327, -0.02521042339503765, 0.0006536824512295425, 0.006728457752615213, -0.015521444380283356, 0.0455150343477726, 0.012400803156197071, -0.01194429025053978, -0.028317438438534737, -0.01602565310895443, -0.04976673796772957, -0.029843691736459732, 0.0316152349114418, 0.01572585292160511, 0.008101403713226318, -0.0025244492571800947, -0.01715671643614769, 0.017102206125855446, -0.015071745030581951, -0.01644809916615486, -0.01888737641274929, 0.007385972887277603, 0.01625731587409973, 0.011290181428194046, -0.007944690063595772, -0.005934670101851225, -0.013177556917071342, 0.004493587650358677, -0.01944609545171261, 0.010581564158201218, -0.02437916211783886, 0.02809940278530121, -0.004745692014694214, -0.0023592186626046896, -0.004197194706648588, -0.027717839926481247, 0.02110861986875534, 0.004592385143041611, -0.019691385328769684, -0.00931422971189022, 0.001587575301527977, -0.030307017266750336, 0.006421844474971294, 0.007896995171904564, 0.011460522189736366, -0.011692185886204243, 0.02527856081724167, -0.033577557653188705, 0.013913428410887718, 0.03284168615937233, 0.0008129510097205639, 0.005042084958404303, -0.0036350705195218325, 0.012148698791861534, -0.013245693407952785, -0.028726255521178246, 0.037447698414325714, 0.014908218756318092, -0.008176353760063648, 0.004105210769921541, -0.034558720886707306, 0.007535872515290976, 0.01047935988754034, -0.0047422852367162704, 0.0058256518095731735, -0.018573950976133347, 0.013858919963240623, 0.0044901808723807335, 0.004892184864729643, -0.004922846332192421, -0.015139881521463394, 0.003163226880133152, -0.007944690063595772, -0.00889859814196825, -0.017211224883794785, 0.006135672330856323, 0.006731864530593157, 0.0031172349117696285, 0.007406413555145264, 0.00739278644323349, -0.016189180314540863, -0.006588778458535671, -0.0058767544105648994, 0.030906617641448975, -0.02546934224665165, 0.0015415833331644535, -0.023111825808882713, -0.003292685840278864, -0.018192386254668236, -0.02946212701499462, 0.01377034280449152, 0.008183167316019535, -0.007501804735511541, 0.013497796840965748, -0.004347094800323248, -0.045351509004831314, 0.00746773649007082, 0.01036352850496769, 0.010963127948343754, 0.03393186628818512, -0.01989579387009144, -0.01850581355392933, 0.005338477436453104, -0.023616034537553787, -0.01986853964626789, -0.0217491015791893, -0.02189899981021881, -0.004381163045763969, 0.006551303435117006, 0.005563327576965094, 0.04439759999513626, 0.006081162951886654, -0.02600080519914627, -0.03750221058726311, -0.0020355714950710535, -0.0073587181977927685, 0.005692786071449518, 0.025455715134739876, 0.002626653527840972, 0.0002936247910838574, 0.03191503509879112, -0.0012511524837464094, 0.005120441317558289, -0.0009343187557533383, 0.01918717660009861, -0.03303246945142746, -0.054045699536800385, -0.009511824697256088, 0.0014453408075496554, -0.019705012440681458, 0.012128258123993874, -0.017620041966438293, 0.03305972367525101, 0.02339799888432026, 0.0017340683843940496, 0.011351504363119602, -0.01644809916615486, -0.009000802412629128, -0.0005118738044984639, 0.0207679383456707, 0.014145092107355595, -0.008810020983219147, -0.020222848281264305, 0.020454511046409607, 0.027022849768400192, 0.0055565135553479195, -0.011937476694583893, 0.017729060724377632, 0.009511824697256088, 0.004415230825543404, 0.0035260524600744247, 0.005590581800788641, -0.016161926090717316, 0.006806814577430487, 0.0020679361186921597, 0.0015271044103428721, -0.025782769545912743, 0.0026811626739799976, 0.015507817268371582, 0.019541485235095024, 0.0014410823350772262, 0.018451305106282234, 0.008442085236310959, -0.033959124237298965, -0.012353107333183289, 0.007249700371176004, -0.029707418754696846, -0.02211703732609749, 0.0232480987906456, 0.025346696376800537, -0.008673748932778835, -0.026872949674725533, 0.001414679572917521, 0.006380962673574686, -0.025564732030034065, -0.0038122248370200396, -0.021912628784775734, -0.019473349675536156, -0.027554312720894814, -0.0029673350509256124, 0.003422144800424576, 0.012482566758990288, 0.01922805793583393, -0.03136994317173958, 0.030198000371456146, -0.01488096360117197, 0.032787177711725235, -0.013497796840965748, 0.016693389043211937, 0.0008474449859932065, -0.0015373248606920242, -0.0018379761604592204, -0.004313026554882526, -0.023534271866083145, -0.023234471678733826, -0.012577957473695278, -0.015507817268371582, 0.010731464251875877, 0.006503608077764511, 0.07565852999687195, 0.031070144847035408, -0.005062525626271963, -9.906376362778246e-05, -0.019514231011271477, 0.0029503009282052517, 0.01726573333144188, 0.006070942617952824, -0.0024716435000300407, -0.014185973443090916, 0.01371583342552185, -0.021353909745812416, -0.004953507799655199, -0.02501964196562767, -0.013197997584939003, -0.009205211885273457, -0.0006707165157422423, 0.017592787742614746, -0.007283768616616726, 0.0035362730268388987, 0.03292345255613327, -0.001630160491913557, 0.006786373443901539, -0.01561683602631092, -0.02005932107567787, -0.012073748745024204, 0.01986853964626789, 0.020304610952734947, -0.005989179015159607, -0.02497876062989235, 0.01692505180835724, 0.0027731466107070446, -0.022634873166680336, -0.009866133332252502, -0.01854669488966465, 0.021422047168016434, -0.012421243824064732, -0.02531944215297699, 0.02279840037226677, 0.03066132590174675, 0.02303006313741207, 0.023493390530347824, -0.012993589043617249, -0.02178998291492462, -0.016679761931300163, -0.004387976601719856, -0.0038122248370200396, -0.020195594057440758, -0.012155512347817421], "8f63b22d-fc3f-4988-9c9e-fd21d1915eb4": [0.00023532462364528328, 0.003377151908352971, 0.023628201335668564, -0.03012155182659626, -0.008974107913672924, 0.012085221707820892, -0.01550812553614378, -0.04270156845450401, -0.028250815346837044, -0.0435420460999012, 0.020035848021507263, 0.021472789347171783, 0.0068458071909844875, -0.011007515713572502, -0.0070355916395783424, 0.021838802844285965, 0.01965627819299698, -0.01746019721031189, 0.00014858705981168896, 0.006100224331021309, -0.026014067232608795, -0.003832974238321185, -0.018653130158782005, -0.008160743862390518, -0.020090071484446526, 0.012369899079203606, 0.011366751044988632, -0.013386602513492107, -0.027491677552461624, 0.02688165381550789, -0.0007998071378096938, -0.00947568193078041, -0.013535719364881516, 0.017039960250258446, -0.033375002443790436, 0.017433084547519684, 0.0036635235883295536, -0.004124429542571306, 0.012478346936404705, -0.0034500155597925186, 0.008567426353693008, 0.008669096045196056, 0.00045963493175804615, 0.0008425934356637299, -0.019059810787439346, 0.022055698558688164, 0.010912623256444931, -0.01142775360494852, -0.01710774004459381, -0.0055105360224843025, -0.010492385365068913, -0.007984515279531479, -0.020171407610177994, 0.02383154258131981, -0.030311336740851402, -0.016890842467546463, 0.024699129164218903, 0.0016945067327469587, 0.0015928363427519798, -0.007401605136692524, -0.009414679370820522, 0.000622307590674609, -0.015020107850432396, 0.009516349993646145, -0.017039960250258446, -0.021418564021587372, -0.012580017559230328, -0.01124474685639143, -0.026502083986997604, -0.012024219147861004, 0.026773205026984215, 0.02621740847826004, -0.0035245739854872227, 0.006076501216739416, -0.02558027394115925, -0.005676597356796265, -0.00940112303942442, -0.011495533399283886, -0.0016978956991806626, 0.00013842001499142498, 0.0036635235883295536, -0.01373906061053276, -0.01647060550749302, -0.0015945307677611709, 0.049804940819740295, 0.025756502524018288, 0.00974002480506897, 0.004398939199745655, -0.006578075233846903, -0.0036059103440493345, 0.007848954759538174, 0.02423822320997715, 0.037767164409160614, 0.014938770793378353, 0.0058494373224675655, 0.022963954135775566, 0.013034145347774029, 0.007821843028068542, -0.0077676186338067055, -0.017270412296056747, -0.026773205026984215, 0.009577351622283459, 0.003222951665520668, -0.015318340621888638, -0.020727206021547318, -0.01560301799327135, 0.009685800410807133, -0.011502311564981937, 0.008275970816612244, 0.02145923301577568, -0.025756502524018288, 0.03513729199767113, 0.003799084108322859, -0.0023909490555524826, 0.008960551582276821, -0.01656549796462059, 0.029931766912341118, -0.037767164409160614, -0.0023621423169970512, -0.016795950010418892, -0.0038634752854704857, -0.0237908735871315, 0.03695380315184593, -0.030826466158032417, 0.02011718414723873, 0.02509225532412529, 0.0021943862084299326, -0.007211820688098669, 0.009929809719324112, -0.02186591364443302, 0.01461342629045248, 0.0011971689527854323, 0.01876157894730568, 0.022435268387198448, -0.016551941633224487, 0.011122741736471653, -0.01506077591329813, -0.004910680465400219, -0.010878733359277248, -0.01895136386156082, 0.021025439724326134, 0.025309152901172638, 0.018924251198768616, -0.015128555707633495, 0.0037211368326097727, 0.03218207135796547, -0.006191727705299854, 0.0061341142281889915, 0.009638354182243347, 0.006933921482414007, 0.012844360433518887, -0.009441791102290154, -0.012708799913525581, 0.013833953067660332, 0.016687501221895218, 0.0017860101070255041, 0.0030179163441061974, 0.01420674379914999, -0.022340375930070877, -0.003914310596883297, -0.028359264135360718, 0.012729134410619736, -0.014057627879083157, -0.015196336433291435, -0.0057409885339438915, 0.03462216258049011, 0.028874393552541733, -0.024577125906944275, -0.00983491726219654, -0.018110888078808784, 0.006120558362454176, 0.006988145876675844, -0.02639363706111908, 0.010404271073639393, 0.014016959816217422, 0.0002821353555191308, 0.021242335438728333, -0.0027925469912588596, 9.340968244941905e-05, -0.022096367552876472, 0.006245951633900404, -0.0015165834920480847, -0.016145259141921997, 0.028467712923884392, -0.03253452852368355, -0.027898358181118965, 0.04717506840825081, 0.028467712923884392, -0.0005748614203184843, -0.0009319786913692951, 0.005219080485403538, 0.008479311130940914, -0.013251041993498802, -0.011841212399303913, -0.6346402168273926, 0.013176484033465385, 0.00473445188254118, -0.0048835682682693005, 0.0031077254097908735, 0.005524091888219118, 0.030311336740851402, -0.0030738352797925472, 0.001428469200618565, 0.02347908541560173, 0.015128555707633495, 0.016592608764767647, 0.004049871116876602, -0.01880224607884884, -0.012288562953472137, -0.02499736286699772, -0.022475937381386757, -0.018205780535936356, -0.015535237267613411, 0.003414431121200323, -0.032615866512060165, 0.026136072352528572, 0.006496738642454147, -0.010953291319310665, 0.006456070579588413, -0.026271631941199303, 0.015657242387533188, -0.011800544336438179, 0.003731303848326206, 0.02841348759829998, -0.025282040238380432, 0.021201668307185173, 0.016443492844700813, 0.005493590608239174, 0.038851648569107056, -0.0033059825655072927, -0.00870976410806179, 0.02010362781584263, 0.011231190524995327, 0.044545192271471024, -0.026691868901252747, -0.0034313760697841644, 0.017677094787359238, 0.009028331376612186, -0.013162927702069283, 0.002589206211268902, -0.0012073360849171877, 0.012356342747807503, -0.016904398798942566, -0.019547829404473305, 0.008336973376572132, -0.005327529273927212, -0.0031517825555056334, 0.011075295507907867, 0.001402204274199903, 0.006961033679544926, 0.024441564455628395, -0.01151586789637804, 0.004334548022598028, -0.004548056051135063, 0.009597686119377613, 0.009089333936572075, -0.028928618878126144, -0.04717506840825081, -0.05175701156258583, 0.014776098541915417, -0.015304784290492535, -0.011190522462129593, 0.002404504921287298, -0.010702504776418209, 0.02154056914150715, -0.008601316250860691, 0.00496151577681303, -0.0064730155281722546, -0.004419273696839809, 0.02315373905003071, 0.02155412547290325, -0.005405476316809654, -0.007781174965202808, 0.010587277822196484, -0.012349564582109451, -0.012539349496364594, -0.012674910016357899, -0.0021299950312823057, 0.03565242141485214, 0.02006295882165432, -0.018015995621681213, 0.0004166368453297764, -0.0021723576355725527, -0.001453886739909649, 0.0006939005106687546, 0.04394872486591339, -0.010722838342189789, -0.02311307191848755, -0.0001904201926663518, 0.044328294694423676, -0.0075032757595181465, -0.0007549027213826776, -0.012966365553438663, -0.019019143655896187, -0.02854904904961586, -0.03079935349524021, 0.008770766668021679, -0.011380307376384735, 0.012376677244901657, 0.021703241392970085, 0.004446385428309441, -0.01790754683315754, 0.018124444410204887, -0.0195207167416811, -0.005469867493957281, 0.004988627973943949, -0.01598258689045906, -0.028765946626663208, 0.012803692370653152, -0.02760012447834015, -0.00018258309864904732, -0.0037618048954755068, 0.015413233079016209, -0.024428008124232292, -0.0017233133548870683, -0.016592608764767647, 0.02827792800962925, 0.018165111541748047, -0.001172598684206605, 0.00879787839949131, 0.008052296005189419, 0.01261390745639801, 0.0030721407383680344, -0.010268710553646088, -0.010871955193579197, -0.010878733359277248, 0.008499645628035069, -0.0068254731595516205, 0.028169479221105576, -0.0011310832342132926, 0.03749604523181915, -0.006720413453876972, 0.006045999936759472, -0.042349111288785934, 0.005961274728178978, 0.01214622426778078, 0.014762542210519314, -0.017988882958889008, 0.010092481970787048, -0.03689957782626152, -0.016416380181908607, 0.009631576016545296, 0.0025536215398460627, -0.011936104856431484, -0.012803692370653152, -0.027179887518286705, -0.011902214959263802, 0.017717761918902397, -0.019534273073077202, -0.0015589462127536535, 0.006042610853910446, -0.03559819608926773, -0.00730671314522624, -0.016755282878875732, -0.019940955564379692, 0.0009048665524460375, -0.01666039042174816, -0.009489237330853939, 0.0036499674897640944, -0.010017924010753632, -0.020862767472863197, 0.00879787839949131, 0.008181078359484673, -0.03809250891208649, 0.01652482897043228, -0.002002906985580921, -0.001452192198485136, 0.012200448662042618, -0.02387220971286297, 0.032751426100730896, -0.01652482897043228, -0.01695862226188183, -0.006903420202434063, -0.0032110901083797216, -0.00024316171766258776, 0.026583421975374222, -0.004365049302577972, 0.0003634716849774122, 0.02532270736992359, 0.009509571827948093, 0.026149626821279526, 0.017202632501721382, -0.022923287004232407, 0.01488454733043909, 0.02280128188431263, 0.008370863273739815, 0.0015741967363283038, -0.007869289256632328, -0.016673946753144264, -0.0016436715377494693, -0.03304965794086456, -0.0064526814967393875, 0.003417819971218705, 0.02617673948407173, 0.004785286728292704, 0.023492641746997833, -0.01868024282157421, -0.0038939763326197863, 0.018341340124607086, -0.021757466718554497, 0.010553387925028801, -0.0031314482912421227, 0.024766910821199417, -0.0025756501127034426, -0.004558222834020853, -0.014152520336210728, -0.01178698893636465, -0.008133632130920887, 0.006032444071024656, 0.03445948660373688, 0.02365531399846077, 0.011976773850619793, -0.0012624075170606375, 0.017026403918862343, 0.010505941696465015, -0.000896394019946456, 0.022055698558688164, 0.005707098636776209, -0.009360454976558685, 0.019683388993144035, 0.0023180851712822914, 0.005327529273927212, -0.0016512967413291335, -0.020591644570231438, 0.001163278822787106, 0.012905362993478775, 0.02903706766664982, 0.006855973973870277, 0.041861094534397125, 0.03622177615761757, 0.043514933437108994, -0.009028331376612186, 0.02051030844449997, 0.008648762479424477, -0.01364416815340519, 0.004914069548249245, 0.02101188339293003, -0.02155412547290325, 0.021621905267238617, 0.003985479939728975, 0.023370636627078056, -0.0030568900983780622, -0.0130205899477005, 0.01047882903367281, 0.018124444410204887, 0.006974589545279741, -0.027098551392555237, -0.005727432668209076, 0.014748986810445786, -0.013237486593425274, 0.01454564556479454, 0.012539349496364594, 0.005032685119658709, 0.012315674684941769, 0.001213266747072339, -0.009624797850847244, 0.01691795513033867, -0.007171152159571648, 0.018463345244526863, -0.012871473096311092, -0.005564759951084852, -0.020971214398741722, -0.0027112106326967478, -0.026922322809696198, 0.0037516378797590733, -0.01373228244483471, 0.005100465379655361, 0.001400509849190712, -0.008099742233753204, 0.002504481002688408, 0.010261932387948036, 0.006994923576712608, -0.013440826907753944, 0.0159283634275198, -0.038173846900463104, -0.027410339564085007, 0.02778990939259529, 0.017717761918902397, 0.00304163945838809, -0.013833953067660332, -0.021472789347171783, -0.017527977004647255, 0.015630129724740982, -0.004514165688306093, 0.0009099501185119152, -0.0007023730431683362, -0.017853323370218277, -0.008092964068055153, -0.009191004559397697, 0.010065370239317417, 0.049669381231069565, -0.02903706766664982, -0.021418564021587372, 0.002487535821273923, 0.0016123231034725904, 0.0013242569984868169, 0.0008709764224477112, -0.04348782077431679, 0.014857434667646885, -0.03774005174636841, -0.023018179461359978, -0.021852359175682068, -0.0023773929569870234, -0.008377641439437866, 0.015521681867539883, 0.007015257608145475, -0.011393862776458263, -0.011346416547894478, -0.008120075799524784, 0.020442528650164604, 0.0006282383692450821, -0.002091021277010441, 0.02778990939259529, -0.007943847216665745, 0.000676108174957335, -0.022814838215708733, 0.013786506839096546, 0.03356478735804558, 0.06295431405305862, 0.023357080295681953, 0.005693542305380106, 0.02351975254714489, 0.0043006581254303455, -0.02643430419266224, -0.031124699860811234, -0.0023180851712822914, 0.04297269135713577, 0.010106038302183151, -0.022597940638661385, 0.005219080485403538, 0.020306969061493874, 0.0017106045270338655, 0.011109186336398125, -0.007232154719531536, -0.027817022055387497, -0.01934448815882206, -0.021120332181453705, 0.004436218645423651, 0.03809250891208649, -0.0056698196567595005, 0.034134142100811005, 0.005876549053937197, 0.004083761014044285, -0.0003736387297976762, 0.02383154258131981, -0.0007328741485252976, -0.000501997594255954, -0.018029551953077316, 0.005432588513940573, 0.010770284570753574, 0.01367127988487482, 0.023099515587091446, -0.02015785127878189, 0.023397749289870262, -0.0032093957997858524, -0.009089333936572075, -0.028982842341065407, -0.006781416013836861, -0.004314213991165161, 0.012424123473465443, -0.0026569864712655544, -0.012620685622096062, 0.007042369805276394, -0.024834690615534782, 0.0013420493341982365, 0.020808542147278786, -0.016538385301828384, -0.0011759876506403089, 0.011502311564981937, 0.008411531336605549, -0.02450934424996376, 0.01550812553614378, -0.013210373930633068, -0.007659170310944319, -0.0016275737434625626, -0.006066333968192339, -0.03280565142631531, -0.018124444410204887, -0.019358044490218163, -0.014708317816257477, -0.0044396077282726765, -0.014220300130546093, -0.020252743735909462, -0.039610788226127625, 0.004287101794034243, -0.0008108214824460447, -0.01580635830760002, 0.01364416815340519, 0.0036296334583312273, -0.03757737949490547, -0.023289300501346588, 0.01198355108499527, 0.02347908541560173, 0.019466493278741837, -0.001094651292078197, 0.004188820719718933, 0.001828372711315751, 0.015304784290492535, 0.01321715209633112, -0.019737614318728447, -0.0034703498240560293, -0.006889864336699247, 0.024089107289910316, -0.021852359175682068, -0.0395023413002491, 0.0005879938253201544, -0.006296786945313215, 0.00023807819525245577, 0.0077879526652395725, -0.014911659061908722, -0.005659652408212423, 0.007476163562387228, -0.005625762045383453, 0.01340015884488821, 0.02841348759829998, 0.020889878273010254, 0.01533189695328474, -0.019181815907359123, 0.024848246946930885, -0.01169209647923708, -0.004941181745380163, -0.01575213484466076, 0.003045028541237116, 0.004327770322561264, -0.0016436715377494693, 0.0005100464913994074, -0.03060956858098507, -0.013169705867767334, 0.00922489445656538, 0.0018165111541748047, -0.004436218645423651, 0.005388531368225813, 0.02163546159863472, -0.011278636753559113, 0.005317362025380135, 0.02787124551832676, 0.012180114164948463, -0.011048183776438236, -0.017446640878915787, -0.013359490782022476, 0.03280565142631531, 0.007408383302390575, 0.0004354882112238556, 0.0038871983997523785, 0.02544471248984337, -0.027261223644018173, -0.02410266362130642, 0.024116219952702522, -0.00727282278239727, 0.01250545959919691, -0.023858655244112015, -0.010783840902149677, -0.01180732250213623, -0.01728396862745285, -0.0071643744595348835, -0.003380540991201997, -0.03370035067200661, -0.006323899142444134, -0.02631230093538761, 0.006855973973870277, 0.004022758919745684, -0.010038257576525211, 8.573145169066265e-05, -0.026244519278407097, -0.023451972752809525, -0.0016546858241781592, 0.003914310596883297, 0.022069254890084267, -0.027532344684004784, -0.002721377881243825, -0.024902470409870148, -0.011854768730700016, -0.012939252890646458, -0.01912759244441986, -0.0029314965941011906, 0.013135815970599651, 0.06333388388156891, 0.01560301799327135, 0.005480034742504358, 0.021025439724326134, 0.027369672432541847, 0.00958412978798151, -0.020659426227211952, 0.008411531336605549, -0.011346416547894478, -0.02082209847867489, -0.002504481002688408, -0.0047242846339941025, 0.008784322999417782, 0.01093295682221651, -0.007049147970974445, 0.0014903186820447445, -0.005283472128212452, 0.02029341273009777, -0.015128555707633495, 0.0033229277469217777, -0.033781684935092926, -0.04267445579171181, 0.002936580218374729, 0.02392643503844738, -0.008499645628035069, 0.008248859085142612, -0.02472624182701111, -0.01602325588464737, 0.008133632130920887, -0.0017741485498845577, 0.025295596569776535, 0.006750914733856916, 0.03600487858057022, 0.011075295507907867, -0.01728396862745285, 0.014328748919069767, -0.002799325156956911, -0.01741952821612358, 0.004419273696839809, -0.056176286190748215, -0.01598258689045906, -0.013772950507700443, 0.02051030844449997, 0.011868325062096119, -0.010146706365048885, 0.0159283634275198, 0.01584702730178833, 0.024536456912755966, -0.013251041993498802, -0.026678314432501793, 0.012275006622076035, -0.01880224607884884, -0.0029145516455173492, -0.014857434667646885, -0.012796914204955101, 0.00902155414223671, -0.008364085108041763, -0.012078443542122841, 0.012268228456377983, 0.012830805033445358, -0.021106775850057602, -0.001789399073459208, 0.021418564021587372, 0.005313972942531109, 0.024400897324085236, 0.009902697056531906, 0.039393890649080276, 0.021608348935842514, -0.0017910936148837209, -0.004832732956856489, -0.016402825713157654, 0.012397010810673237, -0.017134852707386017, -0.0032653145026415586, 0.040288589894771576, -0.02149990200996399, 0.003317844122648239, 0.006401846185326576, -0.0029772482812404633, -0.0012124195927754045, -0.035462636500597, 0.0125664621591568, 0.019046254456043243, -0.004036314785480499, -0.03893298655748367, -0.02631230093538761, -0.018910694867372513, 0.024888914078474045, 0.013861064799129963, 0.011204078793525696, -0.001500485697761178, 0.01821933686733246, 0.003738081781193614, 0.04140018671751022, -0.008099742233753204, 0.02571583352982998, -0.011502311564981937, 0.0004179077222943306, -0.013691614381968975, 0.010248376987874508, 0.0006807680474594235, -0.014938770793378353, -0.0022316654212772846, 0.02976909466087818, -0.0002607422065921128, 0.0039007544983178377, -0.001242920639924705, 0.020903434604406357, -0.00904866587370634, -0.008574203588068485, -0.0042091547511518, 0.029606420546770096, -0.0029314965941011906, -0.005405476316809654, 0.007489719428122044, -0.007977737113833427, 0.02936241216957569, -0.01403051521629095, -0.01516922377049923, -0.0008862270042300224, -0.0022977511398494244, 0.01728396862745285, 0.00492762541398406, 0.004520943854004145, -0.011346416547894478, -0.016809506341814995, 0.004287101794034243, -0.0022181093227118254, 0.002763740485534072, -0.0062391734682023525, 0.015087887644767761, -0.041047729551792145, -0.010350046679377556, 0.0024773688055574894, 0.008513201959431171, 0.00974002480506897, -0.0008332736906595528, -0.01171920821070671, 0.01330526638776064, 0.03999035805463791, -0.01998162269592285, -0.004032926168292761, 0.0363573357462883, 0.015860583633184433, -0.04584657400846481, 0.013264598324894905, 0.010743172839283943, -0.018639573827385902, 0.011007515713572502, -0.015087887644767761, -0.016131704673171043, -0.03047400899231434, -0.0012259755749255419, 0.0006278147338889539, 0.017717761918902397, -0.008831769227981567, 0.0008468297310173512, 0.00956379622220993, 0.004514165688306093, -0.003795695025473833, 0.0007239779806695879, -0.004236266948282719, 0.004168486688286066, 0.023180851712822914, -0.0027925469912588596, -0.014464309439063072, 0.0067170243710279465, -0.007909957319498062, 0.01746019721031189, -0.019995179027318954, -0.030284224078059196, -0.026854543015360832, -0.028359264135360718, -0.007923513650894165, 0.004985238891094923, 0.008750432170927525, 0.0006739900563843548, -0.018924251198768616, -0.019778281450271606, 0.02581072598695755, -0.01750086434185505, -0.007998071610927582, 0.005639318376779556, -0.01899203099310398, -0.006893253419548273, 0.010675392113626003, -0.008879215456545353, -0.04167130962014198, -0.006412013433873653, -0.004663282539695501, -0.025661610066890717, -0.005578316282480955, -0.007476163562387228, 0.06615354120731354, 0.00456839008256793, -0.013583165593445301, -0.03174827620387077, -0.01961560919880867, -0.0430811382830143, -0.007713394705206156, -0.03020288795232773, 0.03210073336958885, 0.021350784227252007, 0.03288698568940163, 0.013169705867767334, 0.04115618020296097, -0.02002229169011116, 0.018517568707466125, -0.04196954146027565, -0.009441791102290154, -0.015304784290492535, -0.021405009552836418, 0.00576810073107481, -0.014708317816257477, -0.038309406489133835, 0.019019143655896187, 0.007205042522400618, -0.015562349930405617, -0.0023977269884198904, 0.019358044490218163, -0.0052766939625144005, -0.012824026867747307, -0.015128555707633495, 0.01695862226188183, 0.024631349369883537, 0.011461643502116203, 0.0064323474653065205, -0.021920138970017433, 0.008011627942323685, 0.012932474724948406, -0.011915771290659904, -0.02258438616991043, 0.009557018056511879, 0.024563569575548172, -0.007564277853816748, 0.008513201959431171, -0.0024604236241430044, -0.022814838215708733, -0.0004104942490812391, -0.019425824284553528, -0.006723802536725998, 0.014220300130546093, 0.009590907953679562, 0.041725534945726395, -0.011861546896398067, 0.002074076095595956, 0.003951589576900005, -0.0008036197978071868, 0.016091035678982735, 0.004161708522588015, 0.015047219581902027, -0.02303173579275608, -0.005866382271051407, -0.010017924010753632, 0.009536683559417725, 0.01133286114782095, -0.02136434055864811, -0.009767136536538601, 0.0013954262249171734, -0.02661053277552128, -0.013854286633431911, 0.020889878273010254, -0.01695862226188183, -0.014437196776270866, 4.0271010220749304e-05, -0.011617537587881088, 0.017649982124567032, -0.009462125599384308, 0.00739482743665576, -0.021405009552836418, -0.0077879526652395725, -0.007862511090934277, 0.01171243004500866, -0.038444969803094864, 0.021852359175682068, 0.018707353621721268, -0.015901250764727592, 0.013874621130526066, 0.1979183852672577, 0.0010124677792191505, 0.024360228329896927, 0.022747058421373367, 0.016687501221895218, -0.0050970762968063354, 0.0027569623198360205, 0.01588769443333149, -0.013630611822009087, 0.012830805033445358, 0.029118403792381287, -0.0015530154341831803, -0.02854904904961586, 0.000540971290320158, 0.005710487719625235, -0.019236039370298386, -0.04031570255756378, -0.023845098912715912, -0.021310117095708847, -0.00016055451123975217, 0.016267264261841774, -0.006303565111011267, -0.016999291256070137, -0.022245483472943306, 0.03253452852368355, 0.031666941940784454, -0.001811427646316588, 0.01971050165593624, 0.0102077079936862, 0.029904654249548912, 0.00107431726064533, -0.007367715239524841, 0.013569609262049198, -0.01584702730178833, -0.0219879187643528, -0.0016470605041831732, 0.013766172342002392, -0.008004849776625633, -0.008201412856578827, 0.016890842467546463, -0.0027586568612605333, -0.01755508966743946, 0.007652392145246267, -0.0377129428088665, 0.021581238135695457, -0.01750086434185505, -0.0008506423910148442, 0.0030484176240861416, -0.00012422852159943432, 0.022991066798567772, 0.0014987911563366652, 0.001452192198485136, 0.00700170174241066, -0.0024570347741246223, -0.005639318376779556, 0.015359008684754372, -0.008269192650914192, 0.006215450819581747, -0.009326565079391003, -0.007062703836709261, 0.005602039396762848, -0.003095863852649927, 0.002706127241253853, 0.0007006785017438233, -0.03698091581463814, 0.01912759244441986, -0.004541277885437012, 0.024929583072662354, 0.009773914702236652, -0.004195598419755697, -0.011793767102062702, -0.00042023765854537487, -0.03798406198620796, 0.006581463851034641, -0.01560301799327135, -0.012715578079223633, 0.026813874021172523, 0.025065142661333084, 0.04750041291117668, 0.006754303816705942, 0.00696781137958169, 0.0039922576397657394, -0.0210932195186615, -0.00035182194551452994, 0.00567998643964529, -0.017297524958848953, 0.018924251198768616, -0.025512492284178734, 0.013806840404868126, -0.028738833963871002, 0.0018707354320213199, 0.01580635830760002, 0.0016030033584684134, -0.012932474724948406, -0.0047446186654269695, 0.0016902704956009984, 0.0030890856869518757, 0.012905362993478775, -0.01872090995311737, -0.017988882958889008, -0.013949179090559483, 0.03665556758642197, 0.024902470409870148, 0.04538566619157791, 0.0032500638626515865, 0.0102077079936862, -0.001569113228470087, 0.011488755233585835, 0.00197410024702549, -0.003924477379769087, 0.00843864306807518, -0.04481631517410278, 0.027261223644018173, -0.007571056019514799, -0.0058799381367862225, 0.03719780966639519, 0.023194408044219017, -0.013007033616304398, 0.013711947947740555, -0.00013979680079501122, 0.021201668307185173, 0.009170670062303543, -0.012627463787794113, 0.0020808542612940073, -0.01759575679898262, -0.022462381049990654, 0.00904188770800829, 0.014911659061908722, -0.024360228329896927, -0.01057372149080038, 0.011854768730700016, -0.012464791536331177, 0.02868460863828659, -0.006693301256746054, -0.00012804116704501212, -0.030962025746703148, -0.01714840717613697, 0.004290490876883268, -0.00021753230248577893, -0.00814718846231699, 0.016687501221895218, 0.014681206084787846, 0.0025976786855608225, 0.0006769554456695914, -0.007943847216665745, 0.010072147473692894, -0.014301636256277561, 0.015182780101895332, -0.027627237141132355, -0.015399676747620106, 0.0034737386740744114, -0.0018402342684566975, -0.017256855964660645, -0.01800243929028511, 0.034893281757831573, -0.030013103038072586, -0.043026912957429886, -0.014586313627660275, 0.007686282508075237, 0.015738578513264656, -0.05736921727657318, 0.003297510091215372, 0.045982133597135544, 0.010424605570733547, -0.023411303758621216, 0.00394820049405098, -0.172433003783226, 0.005537647753953934, 0.011095630005002022, -0.0030704461969435215, -0.007442273665219545, 0.025702277198433876, 0.003277176059782505, -0.01454564556479454, -0.021567681804299355, -0.011346416547894478, 0.004070205148309469, -0.008940217085182667, -0.032561641186475754, -0.030962025746703148, 0.013562832027673721, -0.009658688679337502, 0.0007244016160257161, 0.036113325506448746, 0.06528595089912415, 0.0036296334583312273, 0.012247894890606403, -0.008872437290847301, -0.01420674379914999, -0.012946031056344509, 0.022191260010004044, 0.020266300067305565, -0.006910198368132114, 0.013359490782022476, 0.0013945790706202388, -0.030636681243777275, 0.010350046679377556, -0.016009699553251266, 0.0029467472340911627, 0.005469867493957281, 0.004968293476849794, -0.0006803444703109562, -0.002567177638411522, -0.016728170216083527, 0.0017436473863199353, 0.023045292124152184, 0.026014067232608795, 0.013569609262049198, 0.028250815346837044, 0.008635206148028374, 0.003738081781193614, 0.02375020645558834, 0.026203852146863937, -0.008472533896565437, 0.014586313627660275, -0.00910966843366623, 0.009767136536538601, -0.02998599037528038, -0.0057748788967728615, 0.012803692370653152, 0.01844978891313076, 0.023180851712822914, 0.008479311130940914, 0.03307677060365677, 0.0015597933670505881, -0.004232877865433693, 0.0072389324195683, -0.010749951004981995, 0.0003484329499769956, -0.006062944885343313, -0.011685318313539028, -0.032154958695173264, -0.010844842530786991, 0.004558222834020853, -0.0031992285512387753, 0.014382973313331604, 0.006622132379561663, 0.000954007264226675, 0.015535237267613411, 0.007537165656685829, 0.020252743735909462, 0.010763506405055523, -0.017785541713237762, -0.0008701292099431157, 0.03421548008918762, 0.0077676186338067055, 0.00012857069668825716, 0.015006551519036293, 0.007645614445209503, 0.003954978659749031, -0.0079641817137599, -0.010160261765122414, -0.004768341779708862, -0.0030399449169635773, -0.0077879526652395725, -0.007530387956649065, 0.02235393226146698, -0.0009438402485102415, -0.008499645628035069, 0.004995405673980713, 0.016050366684794426, 0.001659769332036376, 0.029253963381052017, -0.00696781137958169, 0.008675874210894108, -0.026014067232608795, -0.008899549022316933, 0.019046254456043243, -0.04318958520889282, 0.020632313564419746, 0.05221791937947273, 0.01523700449615717, 0.0052970279939472675, -0.009984033182263374, 0.04156285896897316, -0.03345634043216705, -0.033185217529535294, 0.012329231016337872, 0.030853578820824623, 0.01135319471359253, -0.022923287004232407, 0.02760012447834015, -0.006961033679544926, -0.020618757233023643, 0.011109186336398125, -0.017853323370218277, 0.03676401823759079, -0.034595049917697906, -0.02204214408993721, -0.0011683623306453228, 0.0014970967313274741, -0.00294505269266665, -0.10438161343336105, -0.019114036113023758, 0.018978474661707878, 0.015860583633184433, -0.007096594199538231, 0.013962735421955585, 0.01695862226188183, 0.030636681243777275, 0.011305748485028744, 0.03595065325498581, -0.00664246641099453, 0.008730098605155945, 0.0018537903670221567, -0.008486089296638966, 0.010180596262216568, -0.007062703836709261, -0.000976035837084055, -0.01948004961013794, -0.004822566173970699, 0.036465782672166824, 0.002743406454101205, -0.008533535525202751, 0.017338192090392113, 0.002546843606978655, 0.00826241448521614, -0.004076983314007521, -0.019913842901587486, 0.03448659926652908, 0.012946031056344509, 0.017812654376029968, 0.028711721301078796, -0.027532344684004784, 0.031260259449481964, -0.03429681435227394, -0.009001219645142555, -0.005785045679658651, -0.01652482897043228, -0.005818936042487621, 0.006747525651007891, -0.024400897324085236, 0.017270412296056747, 0.0025417599827051163, -0.006015498656779528, -0.02949797362089157, 0.00799129344522953, 0.005134355276823044, -0.023912878707051277, 0.04478920251131058, 0.007232154719531536, -0.003921088296920061, -0.03619466349482536, -0.02549893781542778, -0.033185217529535294, -0.02608184702694416, 0.014410085044801235, 0.01588769443333149, 0.024129776284098625, 0.016633277758955956, -0.01804310828447342, -0.0035177958197891712, -0.008472533896565437, -3.42872845067177e-05, -0.012078443542122841, 0.016457049176096916, 0.011224412359297276, 0.017663538455963135, -0.0002062002895399928, -0.003778749844059348, -0.014111852273344994, 0.00949601549655199, -0.03134159743785858, -0.0007222834974527359, -0.025919174775481224, 0.019561385735869408, -0.009685800410807133, -0.0033500397112220526, -0.003324622055515647, -0.023370636627078056, 0.012966365553438663, 0.01189543679356575, -0.010255154222249985, -0.006489960476756096, 0.000761257135309279, -0.025512492284178734, -0.0035652420483529568, 0.007659170310944319, 0.015209891833364964, -0.016592608764767647, 0.028250815346837044, -0.033103883266448975, 0.024089107289910316, 0.033510565757751465, -0.0012996866134926677, 0.013135815970599651, -0.018504012376070023, 0.008004849776625633, -0.0032653145026415586, -0.01171920821070671, 0.02212348021566868, -0.0017080627148970962, 0.0015885999891906977, -0.014179632067680359, -0.054305549710989, 0.0005363113596104085, 0.017758430913090706, 0.0019435991998761892, 0.016443492844700813, -0.023682424798607826, 0.00730671314522624, -0.007516831625252962, -0.001453886739909649, -0.021621905267238617, -0.026230962947010994, 0.022055698558688164, -0.014166075736284256, 0.0012403789442032576, -0.034405265003442764, -0.013054479844868183, 0.005893494468182325, 0.00659840926527977, 0.01809733174741268, 0.007286378648132086, -0.012275006622076035, -0.001609781407751143, 0.003595743328332901, 0.03391724452376366, -0.021621905267238617, 0.012973143719136715, -0.011319304816424847, 0.011434530839323997, -0.025173591449856758, -0.03210073336958885, 0.006286619696766138, 0.001591141801327467, 0.0009565490181557834, 0.016185928136110306, -0.0020215464755892754, -0.044057175517082214, 0.0077676186338067055, -0.006778026930987835, 0.015874138101935387, 0.014599869959056377, -0.0006621284992434084, -0.022828394547104836, 0.014898102730512619, -0.007510053925216198, -0.024048438295722008, -0.013447605073451996, -0.013840731233358383, -0.019859619438648224, 0.014599869959056377, -0.0006985603831708431, 0.04934403672814369, 0.00835052877664566, -0.02396710216999054, -0.023275744169950485, -0.009096112102270126, 0.005100465379655361, 0.0006434888928197324, 0.02316729538142681, 0.011258302256464958, -0.0019147925777360797, 0.035489749163389206, -0.00571387680247426, 0.014762542210519314, -0.004836122039705515, 0.016009699553251266, -0.024848246946930885, -0.05731499567627907, -0.013711947947740555, 0.016185928136110306, -0.027952583506703377, 0.004049871116876602, -0.025065142661333084, 0.030989138409495354, 0.023451972752809525, 0.015779245644807816, 0.001320868032053113, -0.017392417415976524, -0.013013811782002449, -0.0014564285520464182, 0.02661053277552128, 0.011888658627867699, -0.025729389861226082, -0.020225632935762405, 0.016823062673211098, 0.0033314002212136984, 0.024441564455628395, -0.01907336711883545, 0.01259357389062643, 0.016823062673211098, 0.005324140191078186, -0.0027806854341179132, -0.0015631824498996139, -0.00992303155362606, 0.00386008620262146, -0.0004494679160416126, 0.012891806662082672, -0.0168366190046072, 0.004673449322581291, 0.025756502524018288, 0.020456084981560707, -0.00532075110822916, 0.022245483472943306, 0.005832491908222437, -0.01895136386156082, -0.009360454976558685, 0.010919401422142982, -0.026474973186850548, -0.021025439724326134, 0.02787124551832676, 0.018924251198768616, 0.008580981753766537, -0.023045292124152184, -0.0017199242720380425, 0.015630129724740982, -0.02998599037528038, -0.009536683559417725, -0.01478965487331152, -0.032561641186475754, -0.029064178466796875, 0.005147911142557859, 0.00691358745098114, 0.013949179090559483, 0.012430901639163494, -0.018734466284513474, 0.028250815346837044, -0.019371600821614265, 0.02105255052447319, -0.018910694867372513, 0.015155668370425701, -0.03020288795232773, -0.009712912142276764, -0.009028331376612186, -0.006737358868122101, -0.014382973313331604, -0.00417526438832283, -0.010451717302203178, -0.01625370793044567, 0.018192224204540253, -0.00780828669667244, 0.08757210522890091, 0.022028587758541107, -0.025959841907024384, 0.015819914638996124, -0.01800243929028511, 0.013149372301995754, 0.028793057426810265, -0.012742690742015839, -0.0032060067169368267, -0.013101926073431969, 0.020537421107292175, -0.016687501221895218, -0.02343841642141342, -0.022150591015815735, -0.026190295815467834, -0.007015257608145475, 0.0050835199654102325, 0.017514420673251152, -0.02015785127878189, 0.013589943759143353, 0.003541518934071064, -0.01736530475318432, 0.012383455410599709, -0.0016038506291806698, -0.028494825586676598, -0.014301636256277561, 0.03798406198620796, 0.019913842901587486, -0.0006608575931750238, -0.015833470970392227, 0.024577125906944275, -0.006174782291054726, -0.02315373905003071, -0.014640538021922112, -0.03047400899231434, 0.007157596293836832, -0.005639318376779556, -0.019913842901587486, 0.01714840717613697, 0.03429681435227394, 0.015223448164761066, 0.025431156158447266, -0.016362156718969345, -0.007421939168125391, -0.0014140658313408494, -0.009265562519431114, -0.013386602513492107, -0.0074829417280852795, -0.005069964099675417], "4471364f-327d-492d-b746-8f962831fd94": [0.0028507790993899107, -0.0007815247518010437, 0.00839899480342865, -0.03245288133621216, -0.011967696249485016, 0.008043519221246243, -0.012797140516340733, -0.04446936771273613, -0.006970120128244162, -0.04656040295958519, 0.014121463522315025, 0.026165831834077835, 0.01274137943983078, -0.005781714804470539, -0.01664464734494686, 0.01692345179617405, 0.02117522619664669, -0.002845551585778594, 0.0058827814646065235, 0.007172253914177418, -0.022959576919674873, -0.002939648227766156, -0.005865356419235468, -0.016254320740699768, -0.029776353389024734, 0.003005864331498742, 0.0024430272169411182, -0.007437118329107761, -0.022332265973091125, 0.026458576321601868, 0.015376085415482521, -0.01047609094530344, -0.01347324252128601, 0.006011728662997484, -0.036244627088308334, 0.01039941981434822, -0.005987333133816719, 0.007959877140820026, 0.022848054766654968, -0.006869053468108177, 0.026667680591344833, 0.0101415254175663, -0.004474817309528589, -0.012636828236281872, -0.024395421147346497, 0.022527428343892097, 0.018345355987548828, -0.01055276207625866, -0.020171528682112694, 0.0007048533880151808, -0.006112795323133469, -0.014302686788141727, -0.021063704043626785, 0.006415995769202709, -0.010664284229278564, -0.007064216770231724, 0.029525429010391235, -0.002903055166825652, 0.011542519554495811, 0.0007802178151905537, 0.0029013126622885466, 0.0021938453428447247, -0.015222743153572083, -0.0014358448097482324, -0.010664284229278564, -0.005039397161453962, -0.013912360183894634, -0.014637252315878868, -0.01908418908715248, -0.009416632354259491, 0.02868901565670967, 0.034153588116168976, -0.00527638103812933, 0.006185981910675764, -0.01585005410015583, -0.01980908215045929, -0.0013034124858677387, -0.022987456992268562, -0.00046786933671683073, -0.003396191168576479, 0.00650660740211606, -0.01781562715768814, -0.032564401626586914, 0.002012622309848666, 0.033707503229379654, 0.02222074382007122, 0.003746439702808857, 0.008196861483156681, -0.02060367539525032, -0.003512940602377057, 0.01240681391209364, 0.025050612166523933, 0.02792230248451233, 0.02212316170334816, 0.008545367047190666, 0.010915208607912064, 0.0015857024118304253, -0.005440178792923689, -0.004767562262713909, -0.020073946565389633, -0.01682586967945099, 0.005380932707339525, -0.004913934972137213, -0.010057883337140083, -0.024716045707464218, -0.025064552202820778, 0.012065278366208076, 0.0006046579219400883, 0.010043943300843239, 0.03791745379567146, -0.03521304950118065, 0.030640648677945137, 0.012462574988603592, 0.002835096325725317, 0.018972666934132576, -0.011382206343114376, 0.029999397695064545, -0.028605373576283455, -0.009604825638234615, -0.033261414617300034, 0.0026608433108776808, -0.019572097808122635, 0.04918116703629494, -0.015599128790199757, 0.013034124858677387, 0.008865993469953537, 0.0037673499900847673, -0.0030076068360358477, 0.015334264375269413, -0.007339536678045988, 0.030529126524925232, 0.0038649316411465406, 0.013696286827325821, 0.007067701779305935, -0.014832415618002415, 0.01017637550830841, -0.01093611866235733, -4.577544814310386e-07, -0.01435844786465168, -0.027211349457502365, 0.023754170164465904, 0.0340978279709816, 0.020520033314824104, -0.01809443160891533, -0.010796716436743736, 0.03747136518359184, -0.009960302151739597, 0.02371235005557537, 0.023628707975149155, 0.013731136918067932, 0.013431421481072903, -0.017871389165520668, -0.02418631687760353, 0.006952695082873106, 0.018693862482905388, 0.010148495435714722, 0.019474515691399574, 0.014288746751844883, -0.023572945967316628, -0.008719620294868946, -0.009054185822606087, 0.007485909387469292, -0.006998000666499138, -0.008461725898087025, 0.003185344859957695, 0.03596581891179085, 0.010559732094407082, -0.014748774468898773, -0.03100309520959854, -0.007088612299412489, -0.012887752614915371, 0.020966121926903725, -0.02608218975365162, 0.0009871432557702065, 0.015919754281640053, 0.011019759811460972, 0.02025516889989376, -0.0018209439003840089, -0.01101278979331255, -0.020046066492795944, 0.04260137677192688, 0.0028734321240335703, 0.00556912599131465, 0.025217894464731216, -0.022959576919674873, -0.012908662669360638, 0.028089584782719612, 0.008677800185978413, 0.006468271836638451, -0.0018732198514044285, 0.006224317476153374, 0.013947210274636745, -0.018331415951251984, -0.010483060963451862, -0.6231845021247864, 0.006656464654952288, 0.007360447198152542, -0.009660586714744568, 0.014142374508082867, 0.01632402092218399, 0.019446635618805885, -0.0008647305658087134, -0.008294443599879742, 0.02332202158868313, 0.013745076954364777, 0.004875598940998316, -0.008914783596992493, -0.009346931241452694, -0.00582353537902236, -0.02608218975365162, 0.0031208712607622147, -0.024869389832019806, -0.010183345526456833, 0.016909511759877205, -0.029525429010391235, 0.0363282673060894, -0.011974666267633438, -0.0068307179026305676, 0.010573672130703926, -0.014846356585621834, 0.014302686788141727, -0.011166132986545563, 0.011730712838470936, 0.026709500700235367, -0.03150494396686554, 0.01930723339319229, 0.004471332300454378, 0.002382038626819849, 0.042712897062301636, -0.01255318708717823, -0.003155722049996257, 0.01854052022099495, 0.02237408608198166, 0.04023153334856033, -0.02799200266599655, -0.012650768272578716, 0.011270684190094471, 0.016533125191926956, -0.015989456325769424, 0.00786229595541954, 0.0034885453060269356, 0.008705680258572102, -0.014198134653270245, -0.02538517862558365, 0.013717196881771088, -0.012755320407450199, 0.0045026978477835655, -0.007513789460062981, 0.021035823971033096, 0.0050254566594958305, 0.013814778067171574, -0.022388026118278503, 0.0026765260845422745, -0.010580642148852348, 0.020520033314824104, 0.00814807042479515, -0.01806655153632164, -0.047368936240673065, -0.046894967555999756, 0.018470818176865578, -0.01076186541467905, -0.019878782331943512, 0.0011945043224841356, -0.011368266306817532, 0.022875934839248657, -0.01240681391209364, -0.007437118329107761, -0.008629009127616882, -0.013919330202043056, 0.023949332535266876, 0.03666283190250397, -0.0068481434136629105, -0.01215588953346014, 0.00959088560193777, 0.00044260264257900417, 0.004189042374491692, -0.020310930907726288, -0.013312929309904575, 0.05261046811938286, -0.005603976547718048, -0.004317989572882652, -0.013180497102439404, 0.004520122893154621, 0.004948785528540611, 0.011207953095436096, 0.028549613431096077, -0.005607461556792259, -0.015306384302675724, 0.005624887067824602, 0.0365791916847229, -0.0015168724348768592, -0.006353264674544334, -0.012016487307846546, -0.012713499367237091, -0.02799200266599655, -0.02162131294608116, 0.02199769951403141, -0.0026434180326759815, 0.015822172164916992, 0.02446512132883072, -0.0016109690768644214, -0.01313867699354887, 0.009151767939329147, -0.019279353320598602, -0.006579793523997068, -0.0008520972332917154, -0.0162961408495903, -0.018554460257291794, 0.014637252315878868, -0.023809930309653282, -0.013048064894974232, -0.005642312578856945, 0.015710651874542236, -0.01980908215045929, -0.007046791724860668, -0.01111037191003561, -0.004140251316130161, -0.0019220106769353151, 0.005921117030084133, 0.014651193283498287, 0.01677010953426361, 0.0052694110199809074, 0.011709801852703094, -0.005056822206825018, -0.0022792292293161154, -0.012588037177920341, -0.0034711197949945927, -0.0009984697680920362, 0.024367541074752808, 0.0076671321876347065, 0.029107222333550453, -0.012825021520256996, -0.004610734526067972, -0.03618886321783066, 0.0025075008161365986, 0.013926300220191479, 0.010531852021813393, -0.03451603651046753, 0.005806110333651304, -0.04162555932998657, -0.02466028556227684, 0.006517062429338694, -0.00027292376034893095, -0.02187223732471466, -0.008385054767131805, -0.02123098634183407, 0.004687406122684479, 0.037666529417037964, -0.021063704043626785, -0.0071931639686226845, 0.008482635952532291, -0.024729987606406212, -0.003021547105163336, -0.029302386566996574, -0.019892724230885506, -0.0038475063629448414, -0.010392449796199799, 0.0021502820309251547, -0.017731986939907074, -0.021607372909784317, -0.01664464734494686, 0.021635252982378006, -0.021370388567447662, -0.033428698778152466, 0.006297503598034382, 0.00469089113175869, 0.013759017921984196, 0.029079342260956764, -0.010078794322907925, 0.022164981812238693, -0.02025516889989376, -0.006851628422737122, 0.002268774202093482, 0.0007911086431704462, 0.006889963988214731, 0.032508641481399536, -0.004450421780347824, -0.009395722299814224, 0.03036184422671795, 0.010998849757015705, 0.007841384969651699, 0.01304109487682581, -0.03203467279672623, -0.014456029050052166, 0.017662284895777702, 0.0057259537279605865, -0.004635130055248737, -0.012002547271549702, -0.026319174095988274, 0.0002241329348180443, -0.035352449864149094, 0.0033508853521198034, 0.004084490705281496, 0.026068249717354774, 0.011723741888999939, 0.015083339996635914, -0.010503971017897129, -0.0014001228846609592, 0.0033474003430455923, -0.010148495435714722, 0.013682345859706402, -0.017104675993323326, 0.02991575561463833, 0.010622463189065456, -0.011089460924267769, -0.004969695582985878, 0.003812655806541443, -0.002101491205394268, 0.00786229595541954, 0.01527850329875946, 0.01308988593518734, 0.011326445266604424, 0.00404963968321681, 0.007151343394070864, 0.02117522619664669, 0.0067401062697172165, 0.01460937224328518, -0.00029274504049681127, -0.0005136107211001217, 0.02463240548968315, 0.0014245182974264026, 0.021927999332547188, 0.006363719701766968, -0.02893994003534317, -0.00179480598308146, 0.020492153242230415, 0.0033177773002535105, 0.012302262708544731, 0.04209952801465988, 0.03153282403945923, 0.04881872236728668, -0.0037011338863521814, 0.024953030049800873, 0.0030999609734863043, -0.001991711789742112, -0.007499849423766136, 0.026737380772829056, -0.025203954428434372, 0.028633253648877144, -0.008719620294868946, 0.01727195829153061, -0.00043802850996144116, -0.023001397028565407, 0.008615069091320038, 0.019293293356895447, 0.002188617829233408, -0.02960907109081745, -0.0070363362319767475, 0.021983759477734566, -0.015836114063858986, 0.018178073689341545, 0.012490455992519855, 0.00814807042479515, 0.014072672463953495, -0.011298565194010735, -0.014971818774938583, 0.005572611000388861, 0.0035286233760416508, 0.012985333800315857, -0.013034124858677387, -0.009779078885912895, -0.029776353389024734, -0.009096006862819195, -0.011382206343114376, 0.008831142447888851, -0.01930723339319229, 0.019948484376072884, -0.01304109487682581, -0.006161586381494999, -0.006388115230947733, 0.01898660697042942, 0.004283139016479254, -0.006687830202281475, 0.0069875456392765045, -0.01494393777102232, -0.021565552800893784, 0.02209528163075447, 0.012448634952306747, 0.006551912985742092, -0.013814778067171574, -0.009326021187007427, -0.008008668199181557, 0.024144496768712997, 0.00037224797415547073, -0.004370265640318394, 0.0007959005888551474, -0.001495962031185627, -0.0031801173463463783, -0.017132556065917015, 0.015891874209046364, 0.030250322073698044, -0.016491305083036423, -0.025650043040513992, 0.017927149310708046, 0.013466272503137589, 0.0036418878007680178, -0.014051762409508228, -0.030306082218885422, 0.029553310945630074, -0.021704955026507378, -0.03340081498026848, -0.019223591312766075, -0.004182072356343269, -0.02421419881284237, 0.013201408088207245, 0.001871477346867323, -0.021886177361011505, -0.007332566659897566, -0.011591309681534767, 0.008433845825493336, 0.01338960137218237, 0.0001255710667464882, 0.017160436138510704, 0.011814353987574577, -0.002707891631871462, -0.016881631687283516, 0.02371235005557537, 0.029274504631757736, 0.06624402105808258, 0.018596280366182327, 0.009291170164942741, 0.013159587047994137, -0.010768835432827473, -0.03337293490767479, -0.036021582782268524, -0.010036973282694817, 0.03685799613595009, 0.01362658478319645, -0.017216196283698082, -0.00663206959143281, 0.0063741751946508884, 0.0021659648045897484, 0.008865993469953537, -0.0030285173561424017, -0.007541669998317957, -0.018275655806064606, -0.01826171576976776, 0.010232136584818363, 0.00781350489705801, -0.008385054767131805, 0.028089584782719612, 0.01128462515771389, 0.032954730093479156, 0.027559855952858925, 0.019000547006726265, -2.2625663405051455e-05, -0.004439966753125191, -0.01752288267016411, -0.009625735692679882, 0.030166679993271828, 0.012615918181836605, 0.027810780331492424, -0.009116916917264462, 0.03203467279672623, 0.002732287161052227, -0.012671678327023983, -0.015710651874542236, -0.010692164301872253, 0.006273108068853617, 0.02072913758456707, -0.000416029040934518, -0.006276593543589115, 0.009486333467066288, -0.02215104177594185, -0.013124736957252026, 0.02459058351814747, -0.013975091278553009, -0.004837263375520706, 0.026890724897384644, 0.010050913318991661, -0.013542943634092808, 0.025022732093930244, -0.004753622226417065, -0.014344507828354836, -0.007729863282293081, -0.013034124858677387, -0.03730408474802971, -0.016979213804006577, -0.021941939368844032, -0.0217746552079916, 0.003410131437703967, -0.013752046972513199, -0.017383480444550514, -0.04260137677192688, -0.0015944150509312749, -0.01342445146292448, -0.011047640815377235, 0.01405873242765665, 0.018303535878658295, -0.06429238617420197, -0.017759867012500763, -0.002784562995657325, 0.0390605553984642, 0.019070249050855637, 0.005454119294881821, 0.003896297188475728, 0.007339536678045988, 0.011068550869822502, 0.010064853355288506, -0.030891573056578636, 0.01739742048084736, -0.014253895729780197, 0.012023457325994968, -0.008078369311988354, -0.03220195695757866, 0.01139614637941122, -0.005983848124742508, 0.0162961408495903, 0.0021502820309251547, -0.009249350056052208, -0.009068126790225506, 0.009193588979542255, 0.012476515024900436, 0.007165283430367708, 0.012608947232365608, -0.002882144646719098, 0.019070249050855637, -0.03769440948963165, 0.008879933506250381, -0.026709500700235367, -0.01895872689783573, -0.01337566040456295, 0.0034066461957991123, 0.001671086298301816, -0.016059156507253647, -0.0051613738760352135, -0.025176074355840683, -0.011849204078316689, -0.000756693712901324, -0.0021607372909784317, -0.014651193283498287, -0.005847930908203125, 0.023154739290475845, -0.01809443160891533, -0.0022339236456900835, 0.03242500126361847, 0.015543368645012379, -0.021035823971033096, -0.009458453394472599, -0.019823022186756134, 0.02874477580189705, 0.0049453005194664, 0.012748350389301777, 0.004317989572882652, 0.022053461521863937, -0.015125161036849022, -0.024242078885436058, 0.014442089013755322, -0.004774532280862331, 0.003333460073918104, -0.020966121926903725, -0.009005395695567131, -0.013166557066142559, -0.016784049570560455, -0.015390025451779366, -0.0031679195817559958, -0.0250087920576334, -0.00806442927569151, -0.023600827902555466, -0.009339961223304272, -0.00954209454357624, -0.0012084445916116238, 0.01813625358045101, -0.026932545006275177, -0.02307109907269478, -0.010824596509337425, 0.011800413951277733, 0.020046066492795944, -0.013201408088207245, -0.013535973615944386, -0.041123710572719574, -0.03078005090355873, -0.014302686788141727, 0.0007754258695058525, -0.00011037838703487068, 0.01001606322824955, 0.0607236884534359, 0.014456029050052166, 0.02361476793885231, 0.014079643413424492, 0.018847204744815826, 0.009988182224333286, -0.01179344393312931, 0.005541245453059673, -0.009221469052135944, -0.02015758864581585, 0.010322747752070427, -0.009758168831467628, -0.0008865121635608375, -0.0024796202778816223, -0.010050913318991661, -0.002167707309126854, -0.016909511759877205, 0.012218620628118515, -0.0038544766139239073, 0.0022565764375030994, -0.023126859217882156, -0.03936723992228508, 0.006161586381494999, 0.029692713171243668, -0.009388752281665802, -0.0016719575505703688, -0.019321173429489136, -0.009040245786309242, 0.01380083803087473, -0.005537760443985462, 0.01711861602962017, 0.010754895396530628, 0.023433543741703033, 0.010970969684422016, -0.00679935235530138, 0.021217046305537224, 0.004157676827162504, -0.01590581424534321, 0.00671222573146224, -0.05447845906019211, -0.019446635618805885, 0.0008442558464594185, 0.02624947391450405, 0.02466028556227684, -0.0064264507964253426, 0.015125161036849022, 0.018331415951251984, 0.012950483709573746, -0.017871389165520668, -0.01711861602962017, 0.0046386150643229485, -0.021244926378130913, 0.002754939952865243, -0.0245069433003664, -0.006994515657424927, 0.007820474915206432, -0.005192739423364401, -0.01920965127646923, 0.031365539878606796, 0.016853751614689827, -0.024158436805009842, -0.007221044506877661, 0.016853751614689827, -0.009820899926126003, 0.03501788526773453, 0.01590581424534321, 0.01540396548807621, 0.01888902671635151, -0.0014602402225136757, -0.006726166233420372, -0.025817325338721275, 0.007001485675573349, -0.022011639550328255, 0.008078369311988354, 0.04000848904252052, -0.015836114063858986, 0.0009252834715880454, 0.01572459191083908, -0.0011370008578523993, -0.0044817873276770115, -0.026584038510918617, 0.018902966752648354, 0.017536822706460953, 0.008036548271775246, -0.03936723992228508, -0.02088247984647751, -0.02672344073653221, 0.019948484376072884, 0.00017000558727886528, 0.014999698847532272, -0.010852477513253689, 0.01308988593518734, 0.0038544766139239073, 0.049459975212812424, -0.017996851354837418, 0.00873356033116579, -0.01347324252128601, 0.0011404859833419323, -0.018205953761935234, -0.007437118329107761, -0.0029535884968936443, -0.023726290091872215, 0.006220832467079163, 0.025942787528038025, -0.013619614765048027, 0.0008307512034662068, 0.018080491572618484, 0.015180922113358974, -0.009214499033987522, -0.007855325937271118, -0.015334264375269413, 0.02846597135066986, -0.010963999666273594, 0.005001061130315065, 0.01141008734703064, 0.00285252183675766, 0.02643069624900818, -0.023851752281188965, -0.014121463522315025, -0.005541245453059673, 0.0009409662452526391, 0.013570824638009071, 0.003295124275609851, 0.0017129071056842804, -0.010469120927155018, -0.006698285695165396, -0.0004696118412539363, -0.015334264375269413, 0.0025493213906884193, 0.001977771520614624, -0.0005266797379590571, -0.029079342260956764, -0.016379782930016518, 0.002244378672912717, -0.006297503598034382, 0.012385903857648373, 0.002411661669611931, -0.0131874680519104, 0.013765987940132618, 0.03571489453315735, -0.01291563268750906, 0.003352627856656909, 0.021802537143230438, 0.014044792391359806, -0.05032426863908768, 0.021133404225111008, 0.009360871277749538, -0.014037822373211384, 0.026137951761484146, -0.008329293690621853, -0.009876660071313381, -0.023572945967316628, 0.010497000999748707, -0.004879084415733814, 0.019502395763993263, -0.0015168724348768592, -0.001291214837692678, 0.017773807048797607, 0.005896721966564655, -0.015947634354233742, -0.017648344859480858, -0.011953756213188171, 0.00012970958778169006, 0.0184150580316782, 0.01562700979411602, -0.009897571057081223, -0.005300776567310095, -0.0022600614465773106, 0.018610220402479172, -0.015808232128620148, -0.03571489453315735, -0.012713499367237091, -0.01971150003373623, -0.007534699980169535, 0.006889963988214731, 0.006959665101021528, -0.007360447198152542, -0.020115766674280167, -0.020743077620863914, 0.025524580851197243, -0.005802625324577093, -0.004767562262713909, 0.0195302776992321, -0.013466272503137589, -0.008294443599879742, 0.018875086680054665, 0.0005406199488788843, -0.05141160637140274, -0.007388327736407518, -0.017230138182640076, -0.03328929468989372, -0.0014027367578819394, -0.013807808049023151, 0.06462695449590683, 0.009569975547492504, -0.019599977880716324, -0.013689315877854824, -0.020520033314824104, -0.04104006662964821, -0.01364749576896429, -0.021816477179527283, 0.02963695116341114, 0.03841930255293846, 0.038781750947237015, 0.008705680258572102, 0.012190740555524826, -0.026193711906671524, 0.015431846491992474, -0.04301958158612251, 0.00017577772086951882, -0.029999397695064545, -0.02849385142326355, 0.006025669164955616, -0.017076794058084488, -0.04313110560178757, 0.004495727363973856, 0.016156738623976707, -0.014985758811235428, 0.0035042280796915293, 0.01936299353837967, 0.004903479479253292, -0.01128462515771389, -0.018805384635925293, -0.011591309681534767, 0.032954730093479156, 0.016254320740699768, 0.001644948380999267, -0.018847204744815826, 0.016407663002610207, 0.009834839962422848, -0.006889963988214731, -0.016686467453837395, -0.0007174867787398398, 0.01359870471060276, -0.0048163533210754395, 0.0034937728196382523, 0.0042761689983308315, -0.018930846825242043, -0.009012365713715553, -0.01794108934700489, -0.00016401564062107354, 0.009925451129674911, 0.012058308348059654, 0.04268501698970795, -0.0069666351191699505, 0.012936543673276901, -0.010420329868793488, 0.007785624358803034, 0.024256018921732903, 0.01529244426637888, 0.02804776467382908, -0.03571489453315735, 0.003035487374290824, -0.02799200266599655, 0.015543368645012379, 0.014100553467869759, -0.007848354987800121, -0.00991848111152649, -0.008280502632260323, -0.0393114797770977, -0.0037290144246071577, 0.02212316170334816, -0.02006000652909279, -0.0006983189377933741, -0.010106674395501614, -0.008886903524398804, 0.014037822373211384, -0.019920604303479195, -0.006663435138761997, -0.020269108936190605, -0.011800413951277733, -0.003309064544737339, 0.020324870944023132, -0.04257349297404289, 0.013201408088207245, 0.026040369644761086, -0.01635190285742283, -0.003439754480496049, 0.21021883189678192, -0.003579156706109643, 0.019153891131281853, 0.032090432941913605, 0.024130556732416153, 0.002538866363465786, 0.0001888466940727085, -0.009569975547492504, -0.008162010461091995, 0.010998849757015705, 0.016756169497966766, -0.002735772170126438, -0.028452031314373016, -0.00373598444275558, 0.011779502965509892, -0.012873812578618526, -0.02707194723188877, -0.027308931574225426, -0.018833264708518982, -0.003410131437703967, 0.012476515024900436, -0.003539078636094928, -0.03055700659751892, -0.006841172929853201, 0.03493424132466316, 0.022708652541041374, 0.002476135268807411, 0.011256744153797626, 0.015306384302675724, 0.019446635618805885, -0.008594158105552197, -0.019753320142626762, 0.018847204744815826, -0.006206891965121031, -0.014971818774938583, -0.015097280964255333, 0.02209528163075447, -0.010197285562753677, 0.003457179758697748, 0.0215237308293581, -0.0031888301018625498, -0.01540396548807621, 0.007897146046161652, -0.031867388635873795, 0.0220255795866251, -0.023224441334605217, -0.0045026978477835655, 0.0012720469385385513, 0.010929148644208908, 0.0335959792137146, -0.0023471880704164505, -0.0005480257095769048, 0.025440938770771027, 0.011814353987574577, -0.0014436861965805292, -0.0028734321240335703, -0.010239106602966785, 0.012811081483960152, -0.015111221000552177, -0.007099067326635122, -0.004973181057721376, -0.004387690685689449, -0.01077580638229847, 0.00011674951383611187, -0.028995700180530548, 0.02488332986831665, -0.005830505397170782, 0.028884178027510643, -0.00621386244893074, 0.000900888058822602, -0.013529003597795963, -0.007931997068226337, -0.05024062842130661, -0.0021467970218509436, -0.017731986939907074, -0.018624162301421165, 0.024395421147346497, 0.022109221667051315, 0.03627250716090202, 0.01506939996033907, 0.004439966753125191, 0.007200134452432394, -0.016156738623976707, -0.018652042374014854, 0.009305110201239586, -0.010343658737838268, 0.013633555732667446, -0.02406085468828678, 0.005865356419235468, -0.016756169497966766, -0.0007950293365865946, 0.018805384635925293, 0.005067277234047651, -0.0015438816044479609, -0.011828294023871422, -0.006858598440885544, 0.005332142114639282, 0.01622644066810608, -0.02110552415251732, -0.019767262041568756, -0.008817202411592007, 0.03978544846177101, 0.009939391165971756, 0.03518516570329666, -0.0167979896068573, 0.005590036511421204, 0.0017555990489199758, 0.012880782596766949, 0.0034641497768461704, -0.006238257512450218, 0.009151767939329147, -0.03036184422671795, 0.021063704043626785, -0.0018035186221823096, -0.006123250816017389, 0.034850601106882095, 0.009549064561724663, 0.0032219381537288427, 0.005293806549161673, -0.004610734526067972, 0.02868901565670967, -0.0028682046104222536, 0.0062173474580049515, 0.0004112370952498168, -0.021663133054971695, -0.017132556065917015, -0.028661133721470833, 0.00641948077827692, -0.021663133054971695, -0.022806232795119286, -0.007583491038531065, -0.01578035205602646, 0.026319174095988274, 0.0012380676344037056, -0.0022130131255835295, -0.010030003264546394, -0.010169405490159988, -0.019753320142626762, 0.004927875008434057, 0.00422389293089509, 0.010664284229278564, 0.013075945898890495, -0.0033874784130603075, -0.00971634779125452, 0.00898448470979929, 0.010085764341056347, -0.018596280366182327, -0.0016074839513748884, -0.016658587381243706, -0.015097280964255333, -0.001178821548819542, -0.00553079042583704, -0.012337112799286842, -0.004725741688162088, 0.035575494170188904, -0.02383781224489212, -0.05344688147306442, -0.027629556134343147, 0.012608947232365608, 0.014246925711631775, -0.045974913984537125, 0.0049766660667955875, 0.05626280978322029, 0.010329718701541424, -0.01494393777102232, -0.004548003431409597, -0.178658127784729, 0.011340385302901268, 0.007290745619684458, -0.011702831834554672, 0.011354326270520687, 0.024953030049800873, 0.02535729855298996, -0.011068550869822502, -0.016379782930016518, -0.007590461056679487, -0.0002962301077786833, -0.014456029050052166, -0.041123710572719574, -0.008357174694538116, 0.01562700979411602, -0.02991575561463833, 0.005701558198779821, 0.04377235472202301, 0.047341056168079376, 0.0014706953661516309, 0.0044817873276770115, -0.017704105004668236, -0.004286624025553465, -0.010998849757015705, 0.022806232795119286, -7.373080734396353e-05, 0.002228695899248123, 0.01338960137218237, 0.00010738341370597482, -0.029079342260956764, 0.02092430181801319, -0.014191164635121822, -0.004196012392640114, 0.0016057414468377829, -0.0006242613890208304, -0.0014480424579232931, 0.004931360017508268, -0.016616767272353172, -0.011277654208242893, 0.020533975213766098, 0.031170377507805824, 0.015933694317936897, 0.03446027636528015, -0.011256744153797626, 0.007416207809001207, 0.017481062561273575, 0.03289896622300148, -0.004401631187647581, 0.020617615431547165, 0.00028468584059737623, 0.03147706389427185, -0.01717437617480755, 0.010664284229278564, -0.005983848124742508, 0.02985999546945095, 0.008252622559666634, 0.01993454433977604, 0.02555246092379093, -0.005718983709812164, -0.008712650276720524, 0.014874236658215523, -0.015306384302675724, -0.007262865547090769, 0.0055865515023469925, -0.020743077620863914, -0.028661133721470833, -0.006070974748581648, 0.012093158438801765, 0.010336688719689846, 0.020338810980319977, -0.0005062049604021013, 0.009806958958506584, 0.014044792391359806, -0.002401206409558654, 0.039004791527986526, -0.004199497401714325, -0.026821022853255272, 0.007653192151337862, 0.04731317609548569, 0.0013670148327946663, 0.0014950907789170742, 0.007269835565239191, 0.013034124858677387, 0.0011099916882812977, -0.008029578253626823, 0.011152192018926144, -0.008817202411592007, -0.007897146046161652, -0.0036209775134921074, 0.005056822206825018, 0.023377783596515656, -0.01632402092218399, 0.010239106602966785, -9.059795047505759e-06, 0.010009092278778553, 0.012574097141623497, 0.03432087227702141, -0.0011378721101209521, 0.003371795639395714, -0.011939816176891327, 0.012818051502108574, 0.022834114730358124, -0.03387478366494179, 0.0015543368645012379, 0.04817747324705124, 0.01689557172358036, 0.020073946565389633, -0.0021032337099313736, 0.04742470011115074, -0.019042368978261948, -0.04176495969295502, 0.01481847558170557, 0.021244926378130913, 0.011207953095436096, -0.019669679924845695, 0.028633253648877144, -0.017773807048797607, -0.017676224932074547, -0.0014602402225136757, -0.00971634779125452, 0.03354021906852722, -0.04349355027079582, -0.015431846491992474, 0.005370477680116892, 0.0007959005888551474, -0.01844293810427189, -0.1129717081785202, -0.029748473316431046, 0.040175773203372955, 0.004335414618253708, -0.010343658737838268, 0.013682345859706402, 0.010134554468095303, 0.02428389899432659, 0.00041145490831695497, 0.02558034099638462, -0.006210376974195242, 0.012713499367237091, -0.0007327338680624962, -0.013640525750815868, 0.0030616254080086946, 0.006346294656395912, 0.006802837364375591, -0.023977214470505714, -0.004046154674142599, 0.034878481179475784, 0.00692481454461813, 0.00014343200018629432, -0.007241955026984215, 0.022931694984436035, -0.009869690053164959, -0.021189166232943535, -0.02893994003534317, 0.007785624358803034, 0.01304109487682581, 0.009911511093378067, 0.03674647584557533, -0.017230138182640076, 0.02868901565670967, -0.015836114063858986, -0.009409662336111069, -0.012148919515311718, -0.02376811020076275, -0.014860296621918678, 0.012225590646266937, -0.02428389899432659, -0.007743803784251213, -0.004492242354899645, 0.00814807042479515, -0.03412570804357529, 0.004129796288907528, 0.006701770704239607, -0.02187223732471466, 0.029525429010391235, 0.023029277101159096, -0.008949634619057178, -0.028354449197649956, -0.008559308014810085, -0.042768657207489014, -0.018624162301421165, 0.013271109201014042, 0.007841384969651699, 0.018373237922787666, 0.0069666351191699505, -0.019126009196043015, 0.003913722466677427, -0.012671678327023983, -0.001057715737260878, -0.008168981410562992, 0.025775505229830742, 0.009556034579873085, 0.024256018921732903, 0.011737682856619358, -0.005123038310557604, 0.001739916275255382, 0.007360447198152542, -0.029107222333550453, 0.008503546938300133, -0.016714349389076233, 0.013285049237310886, -0.02234620600938797, -0.0016911254497244954, -0.009639676660299301, -0.020464273169636726, 0.004101915750652552, 0.02018546871840954, -0.015139101073145866, -0.011026730760931969, 0.005942027550190687, -0.01948845572769642, -0.0005902820848859847, 0.016505245119333267, 0.008489606902003288, -0.013570824638009071, 0.02712770737707615, -0.042935941368341446, 0.012574097141623497, 0.022513488307595253, 0.0066250991076231, 0.011800413951277733, -0.00730468612164259, 0.007695012725889683, -0.009179648011922836, -0.009834839962422848, 0.013605674728751183, 0.00629053357988596, -0.008991454727947712, -0.01321534812450409, -0.060556404292583466, 0.0008677799487486482, 0.015738531947135925, 0.0008947891765274107, 0.015320324338972569, -0.03448815643787384, 0.005293806549161673, -0.02174677513539791, 0.004415571223944426, -0.020547915250062943, -0.015250623226165771, 0.020171528682112694, -0.02301533706486225, -0.014748774468898773, -0.031867388635873795, -0.02259713038802147, 0.003802200546488166, 0.0002404691476840526, 0.006820262875407934, 0.008036548271775246, 0.0011666239006444812, -0.006579793523997068, 0.015417906455695629, 0.019990304484963417, -0.014226015657186508, 0.01060155313462019, -0.020645495504140854, 0.004746651742607355, -0.028577493503689766, -0.03538032993674278, 0.011493728496134281, 0.00961876567453146, 0.0010298353154212236, 8.65819602040574e-05, -0.012532276101410389, -0.041569799184799194, -0.0066529796458780766, 0.0011718515306711197, 0.010385478846728802, 0.012093158438801765, -0.0042343479581177235, -0.03264804184436798, 0.0115703996270895, -0.014316626824438572, -0.01012758444994688, -0.002287941984832287, -0.024493003264069557, -0.02120310626924038, -0.0062661380507051945, 0.01174465287476778, 0.03365173935890198, 0.006635554600507021, -0.027113767340779305, -0.024423301219940186, 0.018972666934132576, -0.00515091884881258, 0.005854900926351547, 0.025440938770771027, 0.009186618961393833, 4.5496370148612186e-05, 0.033456578850746155, -0.0062661380507051945, 0.011180073022842407, -0.016881631687283516, 0.027908362448215485, -0.017034973949193954, -0.050380028784275055, -0.022137101739645004, -0.005380932707339525, -0.01597551628947258, 0.0069666351191699505, -0.014030852355062962, 0.040203653275966644, 0.030612768605351448, 0.032341357320547104, -0.006572823505848646, -0.015306384302675724, -0.013556883670389652, 0.0022408936638385057, 0.022861994802951813, 0.01141008734703064, -0.01911206915974617, -0.032062552869319916, 0.014219045639038086, 0.012316202744841576, 0.01774592697620392, -0.013577794656157494, 0.0252597164362669, 0.025873087346553802, 0.005457604303956032, -0.003042457392439246, -0.005935057532042265, -0.013020184822380543, 0.0052694110199809074, 0.00305814016610384, 0.011626160703599453, -0.014469970017671585, 0.0049766660667955875, 0.028089584782719612, 0.03457179665565491, -0.015947634354233742, 0.025789445266127586, -0.0023872661404311657, -0.02371235005557537, -0.007834414951503277, 0.018233833834528923, -0.02478574775159359, -0.013654465787112713, 0.03281532600522041, 0.014511790126562119, 0.012483485043048859, -0.022861994802951813, 0.005028941668570042, 0.021007942035794258, -0.021718895062804222, -0.009535124525427818, -0.0030546551570296288, -0.029553310945630074, -0.029079342260956764, -0.013075945898890495, 0.010169405490159988, 0.028228987008333206, 0.013117766007781029, -0.02608218975365162, 0.020394571125507355, -0.010977939702570438, 0.019042368978261948, -0.008629009127616882, 0.012560157105326653, -0.018122313544154167, -0.015557308681309223, -0.008852052502334118, -0.0013792125973850489, -0.018944786861538887, -0.007625311613082886, -0.002565004164353013, -0.03080793097615242, 0.016156738623976707, -0.0002554984821472317, 0.09312080591917038, 0.03655131161212921, -0.011298565194010735, 0.0076671321876347065, -0.017578642815351486, 0.002784562995657325, 0.009102976880967617, -0.0006935269921086729, 0.0029483609832823277, -0.015097280964255333, 0.021732835099101067, -0.024925149977207184, -0.01920965127646923, -0.015348205342888832, -0.011417057365179062, 0.0015081597957760096, -0.004101915750652552, 0.01481847558170557, -0.006893448997288942, 0.012887752614915371, 0.01736954040825367, 0.0035477911587804556, -0.006025669164955616, -0.022541368380188942, -0.036690711975097656, -0.01819201372563839, 0.01118704304099083, 0.03080793097615242, 0.003262016223743558, -0.01826171576976776, 0.021063704043626785, -0.0002916559751611203, -0.03663495182991028, -0.009047215804457664, -0.017327718436717987, 0.013619614765048027, -0.007973817177116871, -0.01752288267016411, 0.007409237790852785, 0.03917207568883896, 0.01174465287476778, 0.016839809715747833, -0.02187223732471466, -0.014748774468898773, 0.008085339330136776, 0.0008947891765274107, -0.001948148594237864, -0.01204436831176281, -0.0031975426245480776], "2040909c-b801-4465-a844-89283f6f469f": [0.004004345741122961, 0.003952609840780497, 0.015327573753893375, -0.034407712519168854, -0.0008488971507176757, 0.01792125776410103, -0.018169589340686798, -0.036118440330028534, -0.00921585876494646, -0.05049407482147217, 0.01877662166953087, 0.016693396493792534, 0.011216307058930397, -0.0021797989029437304, -0.01117491815239191, 0.019231896847486496, 0.014306655153632164, -0.014665355905890465, 0.015658682212233543, -0.006901546847075224, -0.022018728777766228, -0.004156103823333979, -0.022584373131394386, -0.010843809694051743, -0.015093037858605385, 0.009409005753695965, 0.013816890306770802, -0.016445064917206764, -0.021549656987190247, 0.02484694868326187, -0.004452722147107124, -0.021190956234931946, -0.016831358894705772, 0.010250573046505451, -0.025247037410736084, 0.012540741823613644, -0.012278614565730095, -0.0036732370499521494, 0.015341369435191154, -0.0074292514473199844, 0.019038749858736992, 0.005204614717513323, 0.001439115614630282, -0.0010847258381545544, -0.00946419034153223, 0.02748202160000801, 0.0017710865940898657, -0.007456843741238117, -0.0006872229860164225, 0.000452256528660655, -0.0027540656737983227, -0.016665805131196976, -0.0392087884247303, 0.010133305564522743, -0.014996464364230633, -0.01832134835422039, 0.018831806257367134, -0.007705175317823887, 0.004487212747335434, -0.00036042561987414956, 0.00029834272572770715, 0.014389432035386562, -0.02277751825749874, 0.008815769106149673, -0.019866522401571274, -0.027495818212628365, -0.013609946705400944, -0.020763274282217026, -0.016169141978025436, -0.023177608847618103, 0.031814027577638626, 0.02955145202577114, -0.007174021564424038, 0.012195836752653122, -0.02255677990615368, -0.017134875059127808, -0.013851380906999111, -0.028778864070773125, -0.01721765287220478, 0.0016512321308255196, 0.0003065342316403985, -0.027150912210345268, -0.03283494710922241, -0.005811647512018681, 0.03575973957777023, 0.02302584983408451, 0.019259490072727203, 0.006573887076228857, -0.0138996671885252, -0.004194043576717377, 0.014899891801178455, 0.0171072818338871, 0.03065514750778675, 0.020183835178613663, 8.008260192582384e-05, 0.014237673953175545, -0.0006751512992195785, -0.0029161707498133183, -0.0032541777472943068, -0.025040095672011375, -0.026792211458086967, -0.0008682980551384389, -0.002797178691253066, -0.010464414022862911, -0.024791764095425606, -0.007249901071190834, 0.023398347198963165, -0.009202062152326107, 0.00132098572794348, 0.021190956234931946, -0.02455722913146019, 0.02331557124853134, -0.007436149287968874, -0.009312432259321213, 0.008615723811089993, 2.6595400413498282e-05, 0.025426387786865234, -0.023191405460238457, -0.010154000483453274, -0.014706744812428951, 0.01195440348237753, -0.02167382277548313, 0.022336041554808617, -0.029854968190193176, 0.012457964941859245, 0.012271716259419918, 0.014251470565795898, -0.017479779198765755, 0.017162468284368515, -0.021756600588560104, 0.020749477669596672, 0.008477762341499329, 0.01101626269519329, 0.0072636972181499004, -0.01739700324833393, 0.00814665388315916, -0.013754807412624359, 0.0024246813263744116, 0.003212789073586464, -0.04238191246986389, 0.021508269011974335, 0.01803162693977356, 0.01582423597574234, -0.029744597151875496, 0.004704502876847982, 0.03413178771734238, -0.0053356788121163845, 0.017935054376721382, 0.013389208354055882, 0.024502042680978775, 0.013561660423874855, -0.014679152518510818, -0.006798075512051582, 0.0033869659528136253, 0.018045423552393913, 0.0010804146295413375, 0.0072636972181499004, 0.02537120319902897, -0.017121078446507454, -0.0013770328368991613, -0.01060237642377615, 0.00453549949452281, -0.007843137718737125, -0.008401882834732533, -0.004304413218051195, 0.04823150113224983, 0.011126631870865822, -0.015299981459975243, -0.014582579024136066, -0.021232346072793007, -0.008560539223253727, 0.007167123723775148, -0.026005828753113747, 0.0171072818338871, 0.02241881750524044, 0.007663786876946688, 0.01251314952969551, 0.010036732070147991, -0.016417473554611206, -0.02057012729346752, 0.013678927905857563, -0.0030161933973431587, -0.01103005837649107, 0.02595064416527748, -0.020473554730415344, -0.004159552976489067, 0.03620121628046036, 0.017231447622179985, -5.068485188530758e-05, -0.008050080388784409, 0.00816044956445694, 0.006570438388735056, -0.020487351343035698, -0.008532946929335594, -0.6282235383987427, 0.001969406846910715, 0.016238123178482056, -0.014679152518510818, 0.004383741412311792, 0.016169141978025436, 0.024184731766581535, -0.007118836976587772, -0.010698949918150902, 0.0292203426361084, 0.009367616847157478, 0.00791211798787117, -0.006694604177027941, -0.008650214411318302, -0.0044837635941803455, -0.026723230257630348, -0.001345129101537168, -0.015382758341729641, -0.0012821839191019535, 0.012071670964360237, -0.03142773360013962, 0.026847396045923233, 0.011099039576947689, -0.011326676234602928, 0.009988445788621902, -0.010657561011612415, 0.028668494895100594, -0.025688515976071358, 0.007581009529531002, 0.021894562989473343, -0.027164708822965622, 0.012216531671583652, 0.008746787905693054, 0.00396640645340085, 0.043292462825775146, -0.004100919235497713, -0.013947953470051289, 0.017948850989341736, 0.010788625106215477, 0.04779002070426941, -0.030489591881632805, -0.003423181129619479, 0.032779760658741, 0.008319105952978134, -0.002385017229244113, 0.004463069140911102, 0.007277493365108967, 0.0008088019676506519, -0.01650024950504303, -0.015506924130022526, 0.019480228424072266, -0.017700519412755966, -0.010305758565664291, 0.004690706729888916, -0.00023259523732122034, -0.0014210081426426768, 0.011154224164783955, -0.01611395739018917, 0.007801748812198639, 0.0018366185249760747, 0.009029610082507133, 0.007380964700132608, -0.01760394498705864, -0.03851898014545441, -0.05270146578550339, 0.0033783435355871916, -0.002928242553025484, -0.011795747093856335, 0.006618724670261145, 0.007132633123546839, 0.021480675786733627, -0.016155345365405083, 0.005477089900523424, -0.005949609447270632, -0.012106161564588547, 0.026364529505372047, 0.02933071181178093, -0.007084346376359463, -0.02723369002342224, 0.007601703982800245, -0.016527842730283737, -0.009760808199644089, -0.012658009305596352, -0.00787762738764286, 0.03838101774454117, 0.011023160070180893, -0.016403676941990852, -0.004245779011398554, -0.004656216129660606, 0.0035318261943757534, 0.0011537069221958518, 0.03540103882551193, 0.0003089054371230304, -0.023287978023290634, 0.0020539085380733013, 0.044782452285289764, -0.017121078446507454, -0.007298187352716923, -0.003362822812050581, -0.018900787457823753, -0.015769051387906075, -0.011609498411417007, 0.018445514142513275, 0.002352251438423991, 0.02836497873067856, 0.02615758776664734, -0.01746598444879055, -0.002319485414773226, 0.01188542228192091, -0.023895010352134705, -0.010416127741336823, -0.0015641436912119389, -0.014279062859714031, -0.020376980304718018, 0.017659129574894905, -0.020749477669596672, -0.006587683223187923, -0.006729094311594963, 0.012878748588263988, -0.016100160777568817, 0.006894649006426334, -0.00964354071766138, 0.008505354635417461, 0.00050571677275002, 0.010043630376458168, 0.01329263485968113, 0.005635745823383331, 0.013458188623189926, 0.013306430540978909, -0.005815096665173769, 0.005835790652781725, -0.02406056597828865, 0.008926138281822205, 0.0007906944374553859, 0.025081483647227287, -0.011023160070180893, 0.03531825914978981, -0.013478883542120457, -0.003452498000115156, -0.046989843249320984, -0.0029075483325868845, 0.015175815671682358, 0.020266611129045486, -0.024777967482805252, 0.013430596329271793, -0.01910773105919361, -0.01571386680006981, 0.00492869084700942, -0.008470864035189152, -0.002034938894212246, -0.0035801127087324858, -0.021301325410604477, -0.013485780917108059, 0.02626795694231987, -0.013947953470051289, 0.005039060488343239, 0.005201165564358234, -0.03374549373984337, 0.0064014350064098835, -0.027288874611258507, -0.024074360728263855, 0.01735561341047287, -0.017728110775351524, -0.01647265814244747, -0.007498232182115316, -0.017231447622179985, -0.007387863006442785, 0.010774828493595123, -0.01521720364689827, -0.034628450870513916, 0.010347146540880203, -0.002826495561748743, 0.008512252941727638, 0.020542535930871964, -0.0086433170363307, 0.024722782894968987, -0.01436183974146843, -0.013389208354055882, 0.005256350617855787, 0.0009631469147279859, 0.017948850989341736, 0.005963405594229698, -0.006018590182065964, 0.002593684708699584, 0.026543879881501198, 0.010788625106215477, 0.027330264449119568, 0.027468224987387657, -0.03338679298758507, -0.002166002755984664, 0.020970217883586884, -0.0007691379287280142, -0.007153327576816082, -0.0032817700412124395, -0.029717005789279938, 0.0024419266264885664, -0.03200717270374298, -0.0007066238904371858, -0.012927035801112652, 0.024405470117926598, 0.015024056658148766, 0.015120630152523518, -0.013658233918249607, -0.0028523635119199753, 0.00985738169401884, -0.014817113988101482, 0.004921793006360531, -0.01760394498705864, 0.0146101713180542, 0.016941728070378304, -2.8831893359893e-05, 0.0030127442441880703, -0.011319778859615326, -0.008422577753663063, 0.018514495342969894, 0.0260196253657341, 0.007774156052619219, 0.008519151248037815, 0.0018435165984556079, 0.009809095412492752, 0.0023884663823992014, 0.000982116675004363, 0.02640591934323311, 0.008201838470995426, -0.02579888515174389, 0.025040095672011375, -0.0006764447316527367, 0.006967078894376755, -0.0017529791221022606, -0.021301325410604477, -0.0014572232030332088, 0.020183835178613663, 0.010885198600590229, 0.009002017788589, 0.03360753133893013, 0.032200321555137634, 0.04630003124475479, -0.013554762117564678, 0.03371790051460266, -0.0056185005232691765, 0.0010105713736265898, 0.011140428483486176, 0.020901236683130264, -0.029413489624857903, 0.023715659976005554, -0.0020935726352036, 0.01191991288214922, -0.010374738834798336, -0.022501595318317413, 0.034380119293928146, 0.01127838995307684, -0.0012468311470001936, -0.02259816788136959, -0.01477572601288557, 0.029965337365865707, -0.010216083377599716, 0.015120630152523518, 0.017410799860954285, 0.011374963447451591, 0.009064100682735443, 0.01147843524813652, -0.015727663412690163, 0.010098814964294434, -0.006756687071174383, 0.02552296221256256, -0.008477762341499329, -0.009167572483420372, -0.023039646446704865, -0.007649990729987621, -0.016196733340620995, -0.00016673996287863702, -0.021149568259716034, 0.017259040847420692, 0.0033886905293911695, 3.166119131492451e-05, 0.008726093918085098, 0.012920137494802475, 0.014251470565795898, -0.015548312105238438, 0.023260386660695076, -0.03297290951013565, -0.025964440777897835, 0.022018728777766228, 0.020404573529958725, 0.007194716017693281, -0.02469518966972828, -0.011009364388883114, -0.018197182565927505, 0.006180695723742247, -0.014761929400265217, -0.003907772246748209, -0.0032645247410982847, -0.002071153838187456, 0.005573662929236889, -0.009850483387708664, 0.006322106812149286, 0.04566540941596031, -0.01368582621216774, -0.023370755836367607, 0.011899218894541264, 0.008905444294214249, 0.015368961729109287, -0.010933484882116318, -0.014486005529761314, 0.032062359154224396, -0.021894562989473343, -0.011988894082605839, -0.014334247447550297, 0.0028523635119199753, -0.023108627647161484, 0.007025712635368109, 0.0028765068855136633, -0.023963991552591324, -0.014817113988101482, -0.004832117352634668, 0.0053460258059203625, 0.011043854989111423, -0.003107593161985278, 0.01647265814244747, 0.0031576042529195547, 0.0020263162441551685, -0.022832704707980156, 0.006511804182082415, 0.034269750118255615, 0.06991911679506302, 0.0172866340726614, 0.006901546847075224, 0.01208546757698059, -0.0044251298531889915, -0.01546553522348404, -0.022474002093076706, -0.014058323577046394, 0.023039646446704865, 0.0055598667822778225, -0.02426750771701336, 0.01685895025730133, 0.012009588070213795, 0.0011468087323009968, 0.011726765893399715, -0.011333574540913105, -0.0002487626625224948, -0.009526273235678673, -0.0029161707498133183, 0.0018590373219922185, 0.008463965728878975, -0.005942711140960455, 0.023977788165211678, 0.014168692752718925, 0.014996464364230633, 0.012602824717760086, 0.037442874163389206, 0.0035128563176840544, 0.0035663165617734194, -0.017479779198765755, -0.00840878114104271, 0.014168692752718925, 0.007132633123546839, 0.032310690730810165, -0.014072119258344173, 0.02701295167207718, -0.0007096418412402272, -0.010685153305530548, -0.018873196095228195, 0.008981323800981045, -0.0020763275679200888, 0.02095642127096653, 0.0006497146096080542, -0.007174021564424038, 0.006822218652814627, -0.02174280397593975, -0.013561660423874855, 0.017507372424006462, -0.014637763611972332, -0.0056564402766525745, 0.02021142654120922, 0.0003188214614056051, 0.0007721558213233948, 0.017935054376721382, 0.009167572483420372, -0.01690034009516239, -0.010926586575806141, -0.007408556994050741, -0.04602411016821861, -0.03471122682094574, -0.013064997270703316, -0.024971114471554756, -0.00791211798787117, -0.011926811188459396, -0.023467328399419785, -0.020501146093010902, 0.0008238915470428765, -0.007105040829628706, -0.01717626303434372, 0.008546743541955948, 0.007332677952945232, -0.03970545157790184, -0.03644954785704613, -0.002012520097196102, 0.027247486636042595, 0.023191405460238457, -0.00010740553989307955, 0.0035318261943757534, 0.01236828975379467, 0.01678997091948986, 0.012264817953109741, -0.030986255034804344, 0.0012123406631872058, -0.01056788582354784, 0.014679152518510818, -0.00016824892372824252, -0.022501595318317413, 0.0034404261969029903, -0.0016667528543621302, -0.0025367755442857742, 0.014037628658115864, -0.014210081659257412, 0.002112542511895299, 0.00606687692925334, 0.009595254436135292, 0.019507821649312973, 0.02170141600072384, -0.0019676825031638145, 0.024391673505306244, -0.03319364786148071, 0.00885715801268816, -0.012568334117531776, -0.01208546757698059, -0.008739889599382877, 0.010181592777371407, -0.0021211651619523764, -0.011809543706476688, -0.014748132787644863, -0.017383206635713577, -0.011050752364099026, 0.008815769106149673, 0.01194060780107975, 0.004097470082342625, 0.004300964064896107, 0.006270370911806822, -0.01169227622449398, 0.0114922309294343, 0.02790970355272293, 0.0219221543520689, -0.013389208354055882, -0.007229206617921591, -0.014444616623222828, 0.03335919976234436, -0.0010097090853378177, 0.006691155023872852, 0.012954628095030785, 0.016403676941990852, -0.02561953477561474, -0.022653352469205856, 0.011623295024037361, -0.001511545735411346, 0.01600358635187149, -0.02615758776664734, -0.010809319093823433, -0.004545846488326788, -0.0056185005232691765, -0.0059875487349927425, 0.0016391604440286756, -0.021687619388103485, -0.00015941073070280254, -0.029109973460435867, 0.0018831806955859065, 0.009815992787480354, 0.0055115800350904465, 0.0017710865940898657, -0.02748202160000801, -0.02640591934323311, -0.007139531429857016, 0.009581457823514938, 0.018004035577178, -0.025854071602225304, -0.013927259482443333, -0.009512476623058319, -0.0006958456360734999, -0.015410350635647774, -0.02252918668091297, -0.018417920917272568, 0.007215410470962524, 0.056012555956840515, 0.014623966999351978, 0.013789298012852669, 0.0055012330412864685, 0.021825581789016724, 0.01478952169418335, -0.009836687706410885, 0.011340472847223282, -0.019231896847486496, -0.025081483647227287, 0.010712745599448681, 0.0007889699190855026, 0.009953955188393593, 0.0009070998639799654, -0.006973976735025644, 0.013451291248202324, -0.011237001046538353, 0.011802645400166512, -0.01085070800036192, -0.0037215237971395254, -0.029275527223944664, -0.039291564375162125, 0.006204838864505291, 0.038767311722040176, -0.009291737340390682, 0.014872298575937748, -0.019466431811451912, -0.01503785327076912, 0.009574559517204762, -0.004131960682570934, 0.026723230257630348, 0.009153775870800018, 0.03760842978954315, 0.0010786900529637933, -0.010478210635483265, 0.013334022834897041, -0.0052770450711250305, -0.02883404865860939, -0.0027592391707003117, -0.0456102229654789, -0.01625191792845726, -0.0064014350064098835, 0.02237742953002453, 0.010726542212069035, -0.01629330776631832, 0.0078086466528475285, 0.01757635362446308, 0.014513597823679447, -0.023081036284565926, -0.0260196253657341, 0.004763136617839336, -0.019769947975873947, -0.010250573046505451, -0.00994015857577324, -0.02356390282511711, 0.01103005837649107, -0.003983651287853718, -0.016652008518576622, 0.011699173599481583, 0.021535862237215042, -0.030324038118124008, -0.014803318306803703, 0.013182264752686024, -0.000933829986024648, 0.03689102828502655, 0.010312655940651894, 0.04536189138889313, 0.015672478824853897, -0.0007592219044454396, -0.01974235661327839, -0.017797091975808144, 0.009988445788621902, -0.02052873931825161, -0.000755772867705673, 0.024653801694512367, -0.014237673953175545, -0.007443047594279051, 0.01821097917854786, -0.013265042565762997, 0.007049855776131153, -0.035511408001184464, 0.02883404865860939, 0.01685895025730133, 0.011575007811188698, -0.046134479343891144, -0.021287530660629272, -0.017410799860954285, 0.025081483647227287, 0.009760808199644089, 0.008746787905693054, -0.008491558022797108, 0.0039974479004740715, 0.017314225435256958, 0.052977390587329865, -0.01656923070549965, 0.0245986171066761, -0.023067239671945572, -0.004442375153303146, -0.012471760623157024, 0.005152879282832146, -0.012699398212134838, -0.0010536843910813332, -0.0036387466825544834, 0.020901236683130264, -0.01478952169418335, 0.00024552916875109076, 0.002459171926602721, 0.021977338939905167, -0.016914136707782745, 0.002741993870586157, -0.008739889599382877, 0.030268853530287743, 0.0019676825031638145, -0.003338679438456893, 0.005673685576766729, -0.0044354768469929695, 0.011588804423809052, -0.020680496469140053, -0.00883646309375763, 0.0020504596177488565, 0.002457447350025177, 0.015548312105238438, 0.013230551965534687, 0.00926414504647255, -0.0005785779794678092, -0.003193819196894765, 0.00027980408049188554, -0.01229930855333805, 0.010291961953043938, -0.005311535205692053, 0.004283718764781952, -0.03785676136612892, -0.022267060354351997, -0.006860158406198025, -0.002402262529358268, 0.004256126470863819, -0.001796954544261098, -0.016417473554611206, 0.008988221175968647, 0.03713935986161232, -0.0010623070411384106, -0.0007100729271769524, 0.022584373131394386, 0.0026747374795377254, -0.04850742593407631, 0.016017382964491844, 0.008919240906834602, -0.010740337893366814, 0.01672098971903324, -0.0083742905408144, -0.02288788929581642, -0.022832704707980156, 0.016307102516293526, -0.004897649399936199, 0.022474002093076706, -0.012961525470018387, 0.0015719040529802442, 0.01261662133038044, 0.0033352302853018045, -0.002778208814561367, -0.009947056882083416, 0.009353820234537125, 0.00386638380587101, 0.015120630152523518, -0.007039508782327175, -0.024571023881435394, 0.012264817953109741, -0.015382758341729641, 0.02408815734088421, -0.010360943153500557, -0.04365116357803345, -0.03896045684814453, -0.019700966775417328, -0.0060944692231714725, -0.004887302406132221, 0.017617741599678993, -0.009153775870800018, -0.019218100234866142, -0.013706520199775696, 0.018555883318185806, -0.009160674177110195, 0.00418024742975831, 0.013347819447517395, -0.023329365998506546, -0.006418679840862751, 0.01803162693977356, -0.0011399106588214636, -0.0366978794336319, -0.011395657435059547, -0.007587907835841179, -0.025716109201312065, 0.005915118847042322, -0.008319105952978134, 0.052839428186416626, 0.003111042082309723, -0.018542086705565453, -0.032448653131723404, -0.021784193813800812, -0.043458014726638794, -0.012175142765045166, -0.011023160070180893, 0.03322124108672142, 0.03752565383911133, 0.04020211473107338, 0.007387863006442785, 0.025826478376984596, -0.021549656987190247, 0.013816890306770802, -0.0366978794336319, -0.015617293305695057, -0.011347371153533459, -0.022584373131394386, 0.0023125873412936926, -0.025936847552657127, -0.04732095077633858, 0.004652766976505518, -0.0022591270972043276, -0.016665805131196976, 0.006011692341417074, 0.009560763835906982, -0.014375636354088783, -0.003064479911699891, -0.017231447622179985, -0.002302240114659071, 0.0334971621632576, 0.013147774152457714, 0.012037180364131927, -0.024502042680978775, 0.00386638380587101, 0.013823787681758404, -0.004228534176945686, -0.020721886307001114, 0.017907461151480675, 0.020404573529958725, -0.005473640747368336, 0.0018297204514965415, 0.0048631587997078896, -0.012471760623157024, 0.013734112493693829, -0.013030506670475006, 0.012147550471127033, 0.008388087153434753, 0.01213375385850668, 0.03371790051460266, -0.014844706282019615, 0.024184731766581535, -0.01120940875262022, 0.0014261817559599876, 0.013623743318021297, 0.014872298575937748, 0.021756600588560104, -0.03471122682094574, -0.005456395447254181, -0.018624864518642426, 0.011837136000394821, 0.001113180536776781, -0.005397761706262827, -0.019507821649312973, -0.006749788764864206, -0.01971476338803768, -0.012720092199742794, 0.026971561834216118, -0.0245986171066761, -0.01144394464790821, 0.003862934885546565, 0.0007812095573171973, -0.0041250623762607574, 0.012126856483519077, -0.004487212747335434, -0.025260834023356438, -0.012713193893432617, -0.004745891317725182, 0.004452722147107124, -0.03755324333906174, 0.010147102177143097, 0.025785090401768684, -0.02359149418771267, 0.009174469858407974, 0.1971200406551361, 7.210668263724074e-05, 0.03239346668124199, 0.02786831557750702, 0.02102540247142315, -0.00910548958927393, 0.003493886673822999, 0.003931915853172541, -0.005980650894343853, 0.010036732070147991, 0.020404573529958725, 0.01350647583603859, -0.033911049365997314, 0.0041147153824567795, 0.014010036364197731, -0.025785090401768684, -0.042933762073516846, -0.02793729677796364, -0.014623966999351978, 0.012871850281953812, 0.006253125611692667, -0.014486005529761314, -0.013768603093922138, -0.009505579248070717, 0.030130891129374504, 0.026309344917535782, -0.008960628882050514, 0.035263076424598694, 0.028916826471686363, 0.02822701632976532, -0.0064704157412052155, 0.0014589476631954312, 0.013251245953142643, 7.06516148056835e-05, -0.021480675786733627, 0.00018603308126330376, 0.017728110775351524, -0.014389432035386562, 0.0014943004352971911, 0.011788848787546158, 0.0038767310325056314, -0.018900787457823753, -0.007684480864554644, -0.04469967260956764, 0.012030282989144325, -0.013844482600688934, -0.010423026047647, 0.0002634210977703333, 0.004832117352634668, 0.032779760658741, 0.006439374294131994, 0.00029316917061805725, 0.010712745599448681, 0.013644437305629253, -0.0009433148661628366, 0.007939710281789303, -0.005242554470896721, 0.007512028329074383, -0.012540741823613644, -0.014692948199808598, -0.011913014575839043, 0.008015589788556099, 0.003040336538106203, -0.004418231546878815, -0.03228309750556946, 0.013568558730185032, -0.012782175093889236, 0.027716556563973427, 0.009126183576881886, -0.008201838470995426, -0.006218635011464357, 0.009898770600557327, -0.03711176663637161, 0.006911893840879202, -0.015548312105238438, -0.013561660423874855, 0.01621052995324135, 0.023122424259781837, 0.04657595604658127, 0.01760394498705864, 0.003212789073586464, 0.005646093282848597, -0.026419714093208313, -0.014817113988101482, 0.01792125776410103, -0.015520719811320305, 0.017769500613212585, -0.023218996822834015, 0.011844034306704998, -0.023150015622377396, -0.0024281304795295, 0.024350285530090332, 0.000993326073512435, -0.012395882047712803, -0.008257023058831692, 0.009898770600557327, 0.009609050117433071, 0.0023901909589767456, -0.012947729788720608, -0.029854968190193176, -0.012554538436233997, 0.046244848519563675, 0.024101953953504562, 0.036366771906614304, -0.00442857900634408, -0.00011123182775918394, 0.0017952299676835537, 0.016776174306869507, -0.008870953693985939, 0.0008040595566853881, -0.0036146033089607954, -0.034380119293928146, 0.03264179825782776, -0.0018107506912201643, -0.0013140876544639468, 0.02604721672832966, 0.020652905106544495, 0.0027092278469353914, 0.019411247223615646, 0.0008889923337846994, 0.03068273887038231, 0.007187818177044392, 0.013306430540978909, 0.00855364091694355, -0.011312880553305149, -0.02640591934323311, -0.0018728335853666067, 0.018128201365470886, -0.03755324333906174, -0.0176453348249197, 0.008119061589241028, -0.002778208814561367, 0.030020521953701973, -0.005794402211904526, -0.008043182082474232, -0.02131512202322483, -0.0031782984733581543, 0.009133081883192062, 0.00020058374502696097, -0.0100712226703763, 0.00429406575858593, -0.00648766104131937, -9.436382242711261e-05, -0.01081621740013361, -0.015493127517402172, 0.015631088986992836, -0.02145308442413807, 0.005728870164602995, -0.02063910849392414, -0.030351631343364716, 0.011699173599481583, -0.00039362270035780966, -0.004983875900506973, 5.8148809330305085e-05, 0.03567696362733841, -0.03186921030282974, -0.05684032663702965, -0.02295687049627304, 0.005408108700066805, 0.021011605858802795, -0.05278424546122551, 0.013320227153599262, 0.04445134103298187, 0.01447220891714096, -0.024681394919753075, -0.0035145808942615986, -0.1763705611228943, 0.0036628900561481714, 0.016307102516293526, -0.0062462277710437775, -0.004383741412311792, 0.013002914376556873, 0.010512701235711575, -0.007077448535710573, -0.0017659130971878767, -0.010098814964294434, 0.010892096906900406, -0.006515253335237503, -0.038684532046318054, -0.02530222199857235, 0.006498008035123348, -0.022073913365602493, -0.0005837515345774591, 0.017079690471291542, 0.06318657845258713, 0.008050080388784409, 0.001647783094085753, -0.00921585876494646, -0.0052115130238235, -0.0016564057441428304, 0.009360718540847301, 0.02383982576429844, 0.004770034458488226, 0.020804662257432938, -0.005573662929236889, -0.03857416287064552, 0.01231310423463583, -0.0069498335942626, 0.01127838995307684, 0.004283718764781952, 0.007243002764880657, -0.010250573046505451, -0.008491558022797108, -0.03225550428032875, -0.007505130488425493, 0.017797091975808144, 0.028061462566256523, 0.0033886905293911695, 0.0302964448928833, -0.0051218378357589245, 0.019645782187581062, 0.021232346072793007, 0.030213668942451477, -0.017907461151480675, 0.01568627543747425, -0.013837584294378757, 0.011561212129890919, -0.03300049901008606, -0.004131960682570934, 0.004128511529415846, 0.01477572601288557, 0.014403228648006916, 0.016624415293335915, 0.03128977119922638, 0.019825132563710213, -0.008884750306606293, 0.0051908185705542564, -0.011085242964327335, 0.0016512321308255196, -0.008891647681593895, -0.015010260976850986, -0.020197629928588867, -0.005518478341400623, 0.015368961729109287, -0.0022125649265944958, 0.013823787681758404, 0.0010286788456141949, 0.012126856483519077, 0.016596823930740356, 0.002452273853123188, 0.011374963447451591, 0.004118164535611868, -0.0345732681453228, -0.006942935287952423, 0.03730491176247597, -0.00503561133518815, -0.0037629124708473682, 0.01322365365922451, 0.012071670964360237, 0.004676910117268562, -0.012050976976752281, -0.005677134729921818, 0.0049666306003928185, 0.006573887076228857, 0.0051804715767502785, -0.004652766976505518, 0.020252814516425133, -0.011533619835972786, 0.003921568859368563, 0.00202286709100008, 0.016403676941990852, 0.009574559517204762, 0.027826927602291107, -0.008726093918085098, 0.0003647369157988578, -0.012816665694117546, -0.0055115800350904465, 0.008739889599382877, -0.04999741166830063, 0.016086364164948463, 0.03862934932112694, 0.014748132787644863, 0.013678927905857563, -0.002069429261609912, 0.04594133049249649, -0.020859848707914352, -0.029661821201443672, 0.014554986730217934, 0.03128977119922638, -0.002226361073553562, -0.032559022307395935, 0.02872367948293686, -0.02698535844683647, -0.024295100942254066, 0.015506924130022526, -0.023646678775548935, 0.03664269670844078, -0.04522392898797989, -0.01347198523581028, -0.005377067252993584, 0.010202286764979362, -0.010036732070147991, -0.11081104725599289, -0.019700966775417328, 0.03217272832989693, 0.019438840448856354, -0.012257919646799564, 0.01643126830458641, 0.018873196095228195, 0.03247624635696411, -0.003135185455903411, 0.026971561834216118, -0.022267060354351997, 0.010236777365207672, 0.007829341106116772, -0.009726317599415779, 0.01647265814244747, -0.0065187024883925915, -0.007574111223220825, -0.020680496469140053, -0.014417024329304695, 0.028558125719428062, 0.006932588294148445, -0.0032938416115939617, 0.010671357624232769, 0.010078120976686478, -0.00013278838014230132, -0.02041837014257908, -0.024902133271098137, 0.020487351343035698, 0.010305758565664291, 0.0025195302441716194, 0.025316018611192703, -0.03040681593120098, 0.008870953693985939, -0.039181195199489594, -0.005915118847042322, -0.004062979482114315, -0.019976891577243805, -0.0009346922743134201, 0.012940831482410431, -0.027564799413084984, 0.012023384682834148, 0.001500336336903274, -0.0014029006706550717, -0.029358305037021637, 0.0030023970175534487, 0.0033335057087242603, -0.032669391483068466, 0.038794901221990585, 0.0037801575381308794, 0.003105868585407734, -0.029854968190193176, -0.019397450610995293, -0.03998137637972832, -0.03711176663637161, 0.016224326565861702, 0.02109438367187977, 0.01472054049372673, 0.01236828975379467, -0.014306655153632164, -0.0017986790044233203, -0.015258592553436756, 0.0007600841345265508, -0.00503561133518815, 0.0068774037063121796, 0.0068394639529287815, 0.02113577164709568, -0.0009295186609961092, -0.004049183335155249, -0.005587459076195955, 0.008505354635417461, -0.028075257316231728, 0.0010924861999228597, -0.023356959223747253, 0.004835566505789757, -0.031565696001052856, 0.004666563123464584, 0.0027937295380979776, -0.020763274282217026, 0.01123010367155075, 0.015106834471225739, -0.010416127741336823, -0.016031179577112198, -0.00574611546471715, -0.03308327868580818, 0.0008243226911872625, 0.020583923906087875, 0.01839032955467701, -0.004628623835742474, 0.016693396493792534, -0.04751409962773323, 0.012913239188492298, 0.025812681764364243, 0.002326383488252759, 0.012106161564588547, -0.0015244795940816402, 0.01096107717603445, -0.010167796164751053, -0.01667959988117218, 0.019797541201114655, 0.003838791511952877, 0.0017331470735371113, -0.005877179559320211, -0.058937348425388336, 0.0009450393845327199, 0.021866969764232635, 0.0059875487349927425, 0.013051201589405537, -0.025757497176527977, 0.0035628676414489746, 0.0012123406631872058, -0.002278096741065383, -0.013575456105172634, -0.019024953246116638, 0.014817113988101482, -0.01967337541282177, -0.0003910359228029847, -0.03294531628489494, -0.010664459317922592, 0.011402555741369724, 0.00581854535266757, 0.002309138188138604, -0.0006022901507094502, -0.01564488559961319, 0.002376394812017679, 0.004194043576717377, 0.0295790433883667, -0.01732802204787731, -0.004252677317708731, -0.009753910824656487, 0.01123010367155075, -0.01856967993080616, -0.027330264449119568, 0.019507821649312973, 0.005049407482147217, -0.006784279365092516, 0.011533619835972786, -0.00510459253564477, -0.0456102229654789, 0.008063876070082188, 0.002172900829464197, 0.016693396493792534, 0.018486902117729187, -0.01667959988117218, -0.023757049813866615, 0.020721886307001114, -0.021190956234931946, -0.0033404037822037935, -0.001267525483854115, -0.02309483103454113, -0.009526273235678673, 0.0026333488058298826, 0.004263024311512709, 0.05855105444788933, 0.002998948097229004, -0.03482159972190857, -0.02933071181178093, 0.011540518142282963, -0.006987773347645998, 0.014085915870964527, 0.032448653131723404, 0.021011605858802795, -0.001017469447106123, 0.041581735014915466, -0.013803093694150448, 0.006011692341417074, -0.016155345365405083, 0.03007570654153824, -0.027495818212628365, -0.0620276965200901, -0.013278838247060776, 0.00840878114104271, -0.017203856259584427, 0.001928018406033516, -0.02390880696475506, 0.03178643435239792, 0.029606636613607407, 0.01454119011759758, 0.005290841218084097, -0.018790418282151222, -0.02309483103454113, 0.011899218894541264, 0.021287530660629272, 0.013347819447517395, -0.023425940424203873, -0.02138410322368145, 0.010485108941793442, 0.013037404976785183, 0.014403228648006916, -0.004907996393740177, 0.032917723059654236, 0.019231896847486496, 0.002148757455870509, -0.006498008035123348, 0.0032214117236435413, -0.014899891801178455, 0.01195440348237753, 0.006653215270489454, 0.0055978065356612206, -0.02010105736553669, 0.010692051611840725, 0.025398796424269676, 0.020846052095294, -0.008222532458603382, 0.019769947975873947, 0.024226119741797447, -0.02466759830713272, -0.019576800987124443, 0.017093487083911896, -0.04569299891591072, -0.01663821190595627, 0.026709435507655144, 0.012092365883290768, 0.001476192963309586, -0.01521720364689827, 0.0007031748536974192, 0.017659129574894905, -0.02944108098745346, -0.015506924130022526, -0.007898322306573391, -0.028861641883850098, -0.029054788872599602, 0.005421904847025871, 0.006784279365092516, 0.01625191792845726, 0.00818114448338747, -0.03824305534362793, 0.024957317858934402, -0.0212047528475523, 0.03289012983441353, -0.012140652164816856, 0.030820701271295547, -0.02010105736553669, -0.008505354635417461, -0.009740114212036133, -0.0024177832528948784, -0.010678255930542946, -0.021591046825051308, -0.021784193813800812, -0.008939934894442558, 0.02059772051870823, -0.001558970077894628, 0.08454308658838272, 0.022860296070575714, -0.018376532942056656, 0.0074292514473199844, -0.027040543034672737, 0.006080673076212406, 0.020970217883586884, -0.0006997258169576526, -0.008795075118541718, -0.013782399706542492, 0.02295687049627304, -0.014058323577046394, -0.00691534299403429, -0.012816665694117546, -0.030599962919950485, -0.0007268870831467211, 0.004035387188196182, 0.018873196095228195, -0.011092141270637512, 0.028889233246445656, 0.018045423552393913, -0.004621725529432297, 0.015479331836104393, -0.017134875059127808, -0.040974702686071396, -0.017410799860954285, 0.042105987668037415, 0.006767034064978361, -0.005563315935432911, -0.01650024950504303, 0.016348492354154587, 0.0021056444384157658, -0.02444685809314251, -0.003659440902993083, -0.03007570654153824, 0.026750823482871056, -0.008098366670310497, -0.025854071602225304, 0.023122424259781837, 0.03101384826004505, 0.012161346152424812, 0.01717626303434372, -0.015175815671682358, -0.011540518142282963, 0.003856036812067032, 0.001266663195565343, -0.012823564000427723, -0.009381413459777832, -0.0019297428661957383], "4e6ed601-46ca-40c7-845d-fff5d9f17da9": [0.006209604907780886, 0.003459976753219962, 0.020338410511612892, -0.030969850718975067, 0.005526446271687746, 0.01823115535080433, -0.010176002979278564, -0.035782549530267715, -0.019984934478998184, -0.033960793167352676, 0.009034005925059319, 0.025640536099672318, 0.009992467239499092, 0.0018472468946129084, -0.012045341543853283, 0.008707721717655659, 0.021874666213989258, -0.011922985315322876, 0.012922232039272785, -0.006940346211194992, -0.04532637447118759, -0.01413900125771761, -0.020841432735323906, -0.00861255545169115, -0.027462290599942207, 0.019468316808342934, 0.016055922955274582, 0.0034531792625784874, -0.02498796582221985, 0.031024232506752014, 0.002402950543910265, -0.0033002332784235477, -0.029447190463542938, 0.008388234302401543, -0.03512997925281525, 0.015077070333063602, 0.008660138584673405, -0.004459223710000515, 0.007164666894823313, -0.01926438882946968, 0.01443809550255537, 0.015729639679193497, -0.015525711700320244, -0.007219047751277685, -0.014560452662408352, 0.03268284723162651, 0.004965644329786301, 0.00043270952301099896, -0.00346847390756011, 0.010169205255806446, -0.011290808208286762, -0.005536642856895924, -0.018978890031576157, 0.0007213949575088918, -0.007803641259670258, -0.025314250960946083, 0.021453216671943665, 0.002705443650484085, 0.009000018239021301, 0.009129172191023827, 0.0017928661545738578, 0.006865572649985552, -0.016558945178985596, -0.005302125588059425, -0.023478899151086807, -0.019808197394013405, -0.014519667252898216, -0.01628704182803631, -0.011678270995616913, -0.01428854838013649, 0.027734195813536644, 0.028413955122232437, 0.0014274953864514828, 0.007959986105561256, -0.020977383479475975, -0.01374474074691534, -0.005900314077734947, -0.02073267102241516, -0.0066956328228116035, -0.0015846897149458528, 0.011997758410871029, -0.02982785552740097, -0.0265378188341856, 0.01052268035709858, 0.028604287654161453, 0.0297462847083807, 0.02437618188560009, -0.006196009460836649, -0.014206977561116219, 0.005404089577496052, -0.006213003769516945, 0.012589149177074432, 0.03246532380580902, 0.010427513159811497, -0.0034038966987282038, 0.009795336984097958, 0.005373500287532806, 0.00312859402038157, -0.010638238862156868, -0.023832375183701515, -0.028033290058374405, 0.0022109183482825756, 0.0013960564974695444, -0.010583858005702496, -0.03363450989127159, -0.0037182855885475874, 0.015104260295629501, -0.008048354648053646, 0.0053293160162866116, 0.016518160700798035, -0.01882934384047985, 0.028713049367070198, -0.013669967651367188, 0.0052579413168132305, -0.006627656985074282, -0.012942624278366566, 0.016858039423823357, -0.02511032298207283, -0.008469806052744389, -0.01680365949869156, 0.01145395077764988, -0.01736106164753437, 0.04179162532091141, -0.02675534039735794, 0.020719075575470924, 0.01154231932014227, 0.0049384539015591145, -0.007987176068127155, 0.009271922521293163, -0.0236420426517725, 0.031024232506752014, 0.003028329461812973, 0.007103488780558109, 0.010318752378225327, -0.00952343363314867, 0.016164684668183327, -0.006665043532848358, 0.0034871671814471483, -0.008177508600056171, -0.03499402850866318, 0.02039279043674469, 0.03328103572130203, 0.02217376045882702, -0.019604269415140152, 0.001777571626007557, 0.030725138261914253, -0.006661645136773586, 0.027353530749678612, 0.0022907902020961046, 0.008673734031617641, 0.015158641152083874, -0.024702467024326324, -0.009904098697006702, -0.003912017215043306, 0.012004556134343147, 0.012113317847251892, -0.004085355903953314, 0.016463778913021088, -0.024267420172691345, 0.003408994758501649, -0.012881445698440075, 0.0024896198883652687, -0.0013391266111284494, -0.0007396634900942445, 0.002890678122639656, 0.042525764554739, 0.004778710659593344, -0.006284378468990326, -0.009836122393608093, -0.007531737443059683, 0.003956201486289501, 0.018802152946591377, -0.01745622791349888, 0.013608789071440697, 0.010114824399352074, 0.007531737443059683, 0.023533280938863754, 0.0183127261698246, 0.000853098405059427, -0.027788575738668442, 0.02051514759659767, -0.0006011624936945736, 0.007015119772404432, 0.028386764228343964, -0.016518160700798035, -0.03077951818704605, 0.03148647025227547, 0.013921478763222694, -0.011263618245720863, -0.008993220515549183, 0.01567525789141655, 0.018176773563027382, -0.018910914659500122, -0.0025524976663291454, -0.6221160888671875, 0.01874777302145958, 0.012731898576021194, -0.014084620401263237, 0.007443368434906006, 0.024430563673377037, 0.025015156716108322, -0.0028040087781846523, -0.013710753060877323, 0.038501590490341187, 0.01770094223320484, -0.000661491125356406, 0.00488067464902997, -0.006202807184308767, 0.0003844890743494034, -0.02003931626677513, -0.00572697538882494, -0.027897337451577187, -0.0017359362682327628, 0.0016025335062295198, -0.018258344382047653, 0.016450185328722, 0.012038543820381165, 0.003667303593829274, 0.01797284558415413, -0.022418474778532982, 0.01791846565902233, -0.017646562308073044, -0.005172971170395613, 0.03257408365607262, -0.016545351594686508, 0.017809703946113586, 0.015784019604325294, 0.013214528560638428, 0.04029615595936775, -0.011698664166033268, -0.017157133668661118, 0.019848983734846115, 0.014764380641281605, 0.03977953642606735, -0.025001561269164085, -0.006396538577973843, 0.013146552257239819, -0.004404842853546143, -0.01335727795958519, 0.006423729006201029, 0.011379176750779152, 0.015117855742573738, 0.008911649696528912, -0.031078612431883812, 0.018339917063713074, -0.015213022008538246, -0.00443883053958416, 0.007592915557324886, 0.002776818349957466, 0.006430526729673147, 0.015403354540467262, -0.01840789243578911, 0.00511859031394124, -0.0022958882618695498, 0.0016518160700798035, 0.024661680683493614, -0.021140526980161667, -0.03077951818704605, -0.04733846336603165, 0.01480516605079174, -0.00741617800667882, -0.021398834884166718, 0.0029331629630178213, 0.005621612537652254, 0.02168433368206024, -0.0012906937627121806, -0.010135216638445854, -0.003643512027338147, -0.0005047215963713825, 0.012908636592328548, 0.040459297597408295, -0.005689588375389576, -0.016830850392580032, 0.02619793824851513, -0.006090646609663963, -0.010685821995139122, -0.015824805945158005, -0.009686575271189213, 0.03616321459412575, 0.0018285535043105483, -0.023274971172213554, -0.0066004665568470955, -0.012290054932236671, -0.0017019483493641019, -0.005767760798335075, 0.02350609004497528, -0.01827193982899189, -0.01744263432919979, 0.010944130830466747, 0.04165567457675934, -0.004853484220802784, 0.002309483475983143, 0.004965644329786301, -0.022527236491441727, -0.025015156716108322, -0.020977383479475975, 0.01636861264705658, 0.00831346120685339, 0.02706803008913994, 0.028767429292201996, -0.02035200595855713, -0.022935092449188232, 0.02857709676027298, -0.03232936933636665, -0.013921478763222694, 0.0021429425105452538, -0.01771453768014908, -0.02233690395951271, 0.021657142788171768, -0.022540831938385963, 0.004659752827137709, -0.005913909059017897, 0.020447172224521637, 0.002431840170174837, 0.001170886098407209, -0.014071025885641575, 0.019971339032053947, -0.005047215614467859, 0.008775698021054268, 0.022268926724791527, 0.007157869637012482, 0.007905605249106884, 0.016953205689787865, -0.0010077437618747354, 0.0021922250743955374, -0.019713031128048897, 0.019903363659977913, 0.006009075790643692, 0.021765904501080513, -0.009754551574587822, 0.02419944480061531, -0.012745494022965431, -0.0011071586050093174, -0.05342911183834076, -0.001801363192498684, 0.007137476932257414, 0.01952269859611988, -0.033145081251859665, 0.0057881539687514305, -0.030833899974822998, -0.009740956127643585, 0.009958479553461075, -0.011188844218850136, -0.02606198564171791, -0.015117855742573738, -0.010040050372481346, -0.009441861882805824, 0.021072549745440483, 0.0015753430780023336, -0.002662958577275276, -0.0011003609979525208, -0.028930572792887688, -0.010135216638445854, -0.02598041482269764, -0.009958479553461075, 0.01978100650012493, -0.020623909309506416, -0.004347063135355711, -0.006692233961075544, -0.011188844218850136, -0.02130366861820221, 0.02164354920387268, -0.010869357734918594, -0.033879224210977554, 0.015960756689310074, -0.003266245359554887, 0.008809685707092285, 0.031024232506752014, -0.008802887983620167, 0.01835351064801216, -0.023791588842868805, -0.013663169927895069, -0.013975859619677067, -0.004129540175199509, 0.014750785194337368, 0.04083996266126633, -0.008666936308145523, -0.021806690841913223, 0.021099740639328957, -0.001113956212066114, 0.007321011740714312, 0.027557456865906715, -0.03039885312318802, 0.00876890029758215, 0.01839429698884487, 0.003247551852837205, -0.009441861882805824, 0.0006092346156947315, -0.02515110932290554, -0.0004669099289458245, -0.018027227371931076, 0.000746461097151041, 0.0004184770514257252, 0.016164684668183327, 0.024185849353671074, 0.016205471009016037, -0.008320258930325508, -0.006162021774798632, 0.004156730603426695, -0.011746247299015522, 0.01502268947660923, -0.012310448102653027, 0.01299020741134882, 0.01556649710983038, 0.0017622769810259342, -0.007980378344655037, 0.004445628263056278, -0.0038984217680990696, 0.0003330822510179132, 0.031024232506752014, 0.027394315227866173, 0.02632029540836811, 0.013166945427656174, -0.008564972318708897, 0.008564972318708897, -0.008544579148292542, 0.035265933722257614, 0.00412274245172739, -0.0024420367553830147, 0.020066505298018456, 2.6871750378631987e-05, 0.029936617240309715, -0.004105748608708382, -0.024281015619635582, -0.008496996015310287, 0.02134445495903492, 0.011732651852071285, -0.004489812534302473, 0.04007863253355026, 0.03200308606028557, 0.0377674475312233, -0.012983409687876701, 0.035048410296440125, -0.001492922194302082, -0.0009032306843437254, 0.011413165368139744, 0.020188862457871437, -0.0241586584597826, 0.03706049919128418, 0.006800995673984289, 0.020460765808820724, -0.004826293792575598, -0.018421487882733345, 0.023519685491919518, 0.0169668011367321, -0.006172217894345522, -0.020148077979683876, -0.009727360680699348, 0.013792323879897594, -0.01458764262497425, 0.014709999784827232, 0.009407874196767807, 0.0035415480379015207, 0.0067194243893027306, 0.005852730944752693, -0.017089158296585083, 0.009897300973534584, -0.0018115595448762178, 0.02350609004497528, -0.004432033281773329, -0.008354246616363525, -0.03374326974153519, 0.005104995332658291, -0.020284028723835945, -0.0026578602846711874, -0.020814241841435432, 0.00961180217564106, -0.0055570355616509914, 0.00526134017854929, -0.0009703569812700152, 0.01948191225528717, 0.007538535166531801, 0.004734526388347149, 0.011460748501121998, -0.026388270780444145, -0.020447172224521637, 0.020161671563982964, 0.016422994434833527, -0.007715272251516581, -0.018557438626885414, -0.004707335960119963, -0.012670720927417278, 0.0055638328194618225, 0.003274742281064391, -0.0102167883887887, -0.0018880325369536877, -0.008395032025873661, 0.00010180463141296059, 0.0034293876960873604, 0.014614833518862724, 0.034694936126470566, -0.024838419631123543, -0.00787841435521841, 0.01692601665854454, 0.0046325623989105225, 0.022608807310461998, -0.023057447746396065, -0.011018904857337475, 0.01999852992594242, -0.025273464620113373, -0.024974370375275612, -0.017741728574037552, -0.006987929809838533, -0.02073267102241516, 0.00026000809157267213, -0.010624644346535206, -0.006865572649985552, -0.0070830960758030415, -0.018761366605758667, 0.020161671563982964, 0.009081589058041573, -0.0037420771550387144, 0.021031765267252922, 0.00887766107916832, -0.002477724105119705, -0.03148647025227547, 0.00922433938831091, 0.021099740639328957, 0.07047748565673828, 0.012262864969670773, -0.0019084253581240773, 0.023193400353193283, -0.012827065773308277, -0.007776450831443071, -0.03303632140159607, -0.019984934478998184, 0.03167680278420448, 0.009768147021532059, -0.03969796746969223, -0.0018047619378194213, -0.0031693794298917055, -0.009598206728696823, 0.010223586112260818, -0.009944884106516838, -0.005856129806488752, -0.01593356765806675, 0.002156537724658847, 0.010876155458390713, 0.01702118292450905, 0.007069500628858805, 0.02263599820435047, -0.0025864855851978064, 0.015240211971104145, 0.01944112777709961, 0.022921497002243996, -0.004523800686001778, 0.016871634870767593, -0.02515110932290554, -0.0052579413168132305, 0.023519685491919518, 0.004466020967811346, 0.017075562849640846, -0.018897319212555885, 0.025382226333022118, 0.0027547262143343687, -0.01878855749964714, -0.02770700491964817, -0.0021769304294139147, 0.005037019494920969, 0.03542907536029816, -0.00110970763489604, -0.004459223710000515, 0.008061950094997883, -0.007701677270233631, -0.008354246616363525, 0.017524205148220062, -0.020814241841435432, 0.006923352368175983, 0.02065110020339489, 0.016137495636940002, -0.007232643198221922, 0.027394315227866173, 0.01078098826110363, -0.0033495158422738314, 0.004408241715282202, -0.01023718062788248, -0.0318671353161335, -0.03048042394220829, -0.022703973576426506, -0.01589278131723404, -0.009346695616841316, -0.0075249397195875645, -0.011997758410871029, -0.03406955674290657, 0.007259833626449108, 0.006566478405147791, -0.01311936229467392, 0.018815748393535614, 0.021222097799181938, -0.03909977898001671, -0.025654131546616554, -0.007796843536198139, 0.01912843808531761, 0.012765887193381786, -0.012038543820381165, 0.007239440456032753, 0.00580174895003438, 0.02342451922595501, 0.010638238862156868, -0.028114860877394676, 0.012718304060399532, -0.020066505298018456, 0.013044588267803192, -0.019373150542378426, -0.006026069633662701, -0.011317999102175236, -0.014261358417570591, 0.017252301797270775, -0.011440355330705643, -0.01153552159667015, -0.005917307920753956, 0.0023876558989286423, 0.010080835781991482, 0.00978174153715372, 0.02459370531141758, 0.0014071025652810931, 0.014125406742095947, -0.030235711485147476, 0.01882934384047985, -0.010855762287974358, -0.016939612105488777, -0.009659385308623314, 0.01839429698884487, 0.014152596704661846, -0.00991769414395094, -0.012704708613455296, -0.02350609004497528, -0.005533243995159864, 0.004700538236647844, 0.014764380641281605, -0.009271922521293163, 0.010706215165555477, 0.02142602577805519, -0.027136007323861122, -0.010747000575065613, 0.02459370531141758, 0.025341441854834557, -0.02251364104449749, -0.012861053459346294, -0.021235693246126175, 0.028549907729029655, 0.008089140057563782, -0.003568738466128707, -0.0031353915110230446, 0.021140526980161667, -0.03602726384997368, -0.029338428750634193, 0.00626738416031003, -0.015009094029664993, -0.00048135482938960195, -0.015729639679193497, -0.010101228952407837, -0.0020120886620134115, -0.009108779951930046, -0.011623891070485115, 0.0062537891790270805, -0.031404897570610046, -0.001355270855128765, -0.02615715190768242, 0.010984916239976883, 0.003691095160320401, -0.004476217553019524, 0.0030844095163047314, -0.02835957333445549, -0.014764380641281605, 0.003701291512697935, -0.006056658923625946, 0.018584629520773888, -0.03390641137957573, -0.013907883316278458, -0.030371662229299545, -0.01138597447425127, -0.017510609701275826, -0.01914203353226185, -0.016504565253853798, 0.0072258454747498035, 0.05114511772990227, 0.012283257208764553, -0.00019861728651449084, 0.01458764262497425, 0.03113299421966076, 0.002275495557114482, -0.01736106164753437, 0.007674486842006445, -0.024185849353671074, -0.013105766847729683, 0.01517223659902811, 0.001568545470945537, 0.0037522735074162483, -0.010488691739737988, -0.00924473162740469, 0.003653708379715681, -0.004353860858827829, 0.007259833626449108, -0.02398192137479782, 0.014818761497735977, -0.017429038882255554, -0.037250831723213196, -0.0009380683768540621, 0.03480369597673416, -0.01835351064801216, 0.001564297010190785, -0.03708769008517265, -0.009768147021532059, -0.0019611066672950983, 0.007987176068127155, 0.021290073171257973, 0.012949422001838684, 0.031404897570610046, -0.0022534034214913845, 0.006379544734954834, 0.008823281154036522, -0.02233690395951271, -0.0090272082015872, -0.008286270312964916, -0.0456254705786705, -0.010420716367661953, -0.00837463978677988, 0.023315757513046265, 0.009292314760386944, -0.025001561269164085, 0.008626150898635387, 0.01627344638109207, 0.03208465874195099, -0.01227646041661501, -0.025137513875961304, 0.007511344738304615, -0.01926438882946968, 0.0025558965280652046, -0.01983538828790188, -0.021276477724313736, 0.005458470433950424, -0.021711524575948715, -0.006974334362894297, 0.013241718523204327, 0.013187337666749954, -0.016001543030142784, -0.019767411053180695, 0.025558963418006897, 0.013554408214986324, 0.031839944422245026, 0.019862577319145203, 0.025123918429017067, 0.025749297812581062, -0.010407120920717716, -0.021358048543334007, -0.020882217213511467, 0.013989454135298729, -0.015620877966284752, 0.0034446821082383394, 0.03510279208421707, -0.007307416759431362, 0.0007366895442828536, 0.01465561892837286, -0.010386727750301361, 0.006488306447863579, -0.029365617781877518, 0.006518895272165537, 0.0233293529599905, -0.004476217553019524, -0.040160201489925385, -0.031187374144792557, -0.013622384518384933, 0.029773473739624023, 0.0058595286682248116, 0.02082783728837967, -0.0014257959555834532, 0.009659385308623314, 0.0023383733350783587, 0.04274328798055649, -0.01396226417273283, 0.023111829534173012, -0.002392754191532731, 0.002540601883083582, -0.02376439794898033, -0.00580174895003438, -0.009265124797821045, -0.00837463978677988, 0.017592180520296097, 0.01688523031771183, -0.015416949987411499, 0.003969796467572451, 0.011338391341269016, 0.00794639065861702, -0.013030992820858955, -0.007993973791599274, -0.014152596704661846, 0.02827800251543522, -0.017197920009493828, -0.0076201059855520725, 0.0008760403143242002, -0.013520420528948307, 0.014533261768519878, -0.022975876927375793, -0.012466792948544025, 0.0033495158422738314, 0.007939592935144901, 0.01749701425433159, 0.015457735396921635, 0.011712259612977505, 0.002350269118323922, -3.311172986286692e-05, 0.00549925584346056, -0.00603966461494565, 0.0006292025791481137, 0.0070830960758030415, -0.0017673751572147012, -0.029800664633512497, -0.01623266190290451, 0.0047753117978572845, -0.0020681689493358135, 0.0026561610866338015, -0.007939592935144901, -0.013064981438219547, 0.015158641152083874, 0.030208520591259003, -0.014709999784827232, -0.0067126271314918995, 0.03493964672088623, 0.014764380641281605, -0.046658705919981, 0.034178316593170166, -0.0003003688179887831, -0.028631478548049927, 0.015063474886119366, -0.007851224392652512, -0.0255045834928751, -0.027815766632556915, 0.009448659606277943, -0.005560434423387051, 0.022132975980639458, -1.136805167334387e-06, -0.0011725854128599167, 0.017170729115605354, 0.008055152371525764, -0.006379544734954834, -0.006522294133901596, -0.002029082737863064, -0.0007604811689816415, 0.01844867877662182, 0.00778324855491519, -0.01680365949869156, 0.023315757513046265, -0.008517389185726643, 0.02290790155529976, -0.01563447341322899, -0.04646837338805199, -0.02169792912900448, -0.036299169063568115, 0.006321765016764402, -0.01214730553328991, -0.0036944937892258167, 0.004143135156482458, -0.024090683087706566, -0.015240211971104145, 0.022486450150609016, -0.008741709403693676, 0.009577813558280468, 0.017388252541422844, -0.028468335047364235, -0.007579320576041937, 0.023832375183701515, 0.012561959214508533, -0.04192757606506348, -0.013309694826602936, -0.006168819032609463, -0.02502875216305256, -0.009353493340313435, -0.006236795336008072, 0.045299187302589417, 0.011610295623540878, -0.009876907803118229, -0.03956201300024986, -0.0276254341006279, -0.041846007108688354, 0.0013918079202994704, -0.011950175277888775, 0.025776486843824387, 0.04342304915189743, 0.03450460359454155, 0.010753798298537731, 0.024566514417529106, -0.0175378005951643, 0.015267402864992619, -0.03355293720960617, -0.01662692241370678, -0.0233837328851223, -0.011793830431997776, 0.0008480002288706601, -0.020419981330633163, -0.0419003888964653, 0.0010043449001386762, 0.004826293792575598, -0.01365637220442295, -0.00397319532930851, 0.023832375183701515, -0.01601513847708702, -0.001213371055200696, -0.01534897368401289, 0.006250390317291021, 0.03056199476122856, 0.013846704736351967, 0.0024556319694966078, -0.01922360435128212, 0.012194888666272163, 0.012799874879419804, -0.012086126953363419, -0.009040803648531437, 0.008129925467073917, 0.018693391233682632, -0.019944150000810623, 0.019672244787216187, 0.0013909582048654556, -0.016518160700798035, -0.014995498582720757, -0.009285517036914825, 0.01166467647999525, 0.0040785581804811954, 0.017605775967240334, 0.03069794736802578, -0.016178280115127563, 0.004673347808420658, 0.0013943570666015148, 0.008558174595236778, 0.008279472589492798, 0.009312707930803299, 0.02203780971467495, -0.03616321459412575, -0.0026034796610474586, -0.012929028831422329, 0.007518141996115446, 0.011494736187160015, -0.017388252541422844, -0.007314214017242193, -0.0033291231375187635, -0.02211938053369522, -0.014016645029187202, 0.011066487990319729, -0.009142767637968063, -0.015539306215941906, -0.0073889875784516335, -0.00891844742000103, 0.00041146704461425543, -0.006685436703264713, -0.004992834758013487, -0.009795336984097958, 0.006675240118056536, -0.027611838653683662, 0.016858039423823357, -0.04861641302704811, 0.012833862565457821, 0.0339336022734642, -0.023043854162096977, 0.011712259612977505, 0.2080608457326889, -0.002165034646168351, 0.030589185655117035, 0.0361088328063488, 0.019713031128048897, -0.007606511004269123, -0.0032679447904229164, -0.003796457778662443, -0.010726608335971832, 0.0003617596230469644, 0.010128418914973736, 0.012500780634582043, -0.0350756011903286, -0.0006538438610732555, 0.004714133217930794, -0.012106520123779774, -0.037740256637334824, -0.023043854162096977, -0.007749260403215885, 0.003993588034063578, 0.0031965698581188917, -0.011250022798776627, -0.014750785194337368, -0.005166173446923494, 0.029120905324816704, 0.022282522171735764, -0.011419963091611862, 0.024063492193818092, 0.02540941722691059, 0.020379194989800453, -0.007232643198221922, -0.01749701425433159, 0.02294868789613247, -0.023003067821264267, -0.01779610849916935, -0.006926751229912043, 0.0027411310002207756, -0.009645789861679077, -0.008129925467073917, 0.028604287654161453, 0.0005208658403716981, -0.025518178939819336, -3.0111230444163084e-05, -0.03839282691478729, 0.008388234302401543, -0.017510609701275826, -0.015580091625452042, 0.0002736032765824348, 0.010271169245243073, 0.020542338490486145, -0.0009236234473064542, -0.0023400727659463882, 0.02065110020339489, -0.004941852763295174, 0.005869724787771702, 0.005883320234715939, -0.00427568843588233, 0.0007978679495863616, -0.01082177460193634, -0.014900332316756248, -0.0004246373719070107, -0.005621612537652254, 0.005920706782490015, 0.002350269118323922, -0.036353547126054764, 0.03542907536029816, -0.007287024054676294, 0.029338428750634193, -0.0015082168392837048, 0.01458764262497425, -0.006308170035481453, -0.008966030552983284, -0.04464661702513695, -0.0012176195159554482, -0.003932409919798374, -0.009659385308623314, 0.014791570603847504, 0.016980396583676338, 0.046685896813869476, 0.005526446271687746, -0.0016322729643434286, 0.0023723612539470196, -0.04026896506547928, -0.010495489463210106, 0.020501552149653435, -0.01848946325480938, 0.02827800251543522, -0.023274971172213554, 0.020773455500602722, -0.008408627472817898, -0.012704708613455296, 0.022146571427583694, 0.004129540175199509, -0.008306663483381271, -0.0012125213397666812, -0.0031082010827958584, 0.016953205689787865, 0.01710275374352932, -0.023478899151086807, -0.025055941194295883, 0.002853291342034936, 0.03428708016872406, 0.02047436125576496, 0.031051423400640488, -0.009897300973534584, 0.004024177324026823, 0.0080959377810359, 0.015770424157381058, 0.015661662444472313, -0.010223586112260818, -0.0006984531064517796, -0.03700611740350723, 0.022826330736279488, -0.009122375398874283, 0.00197980017401278, 0.026429057121276855, 0.02065110020339489, 0.0047515202313661575, 0.00824548490345478, 0.003643512027338147, 0.03137770667672157, 0.017211515456438065, 0.008748507127165794, 0.009183553047478199, -0.02536863088607788, -0.027788575738668442, -0.0009771545883268118, 0.02069188468158245, -0.031105803325772285, -0.03129613772034645, 9.033369133248925e-05, -0.02277194894850254, 0.021018169820308685, -0.009190350770950317, -0.006804394535720348, -0.015117855742573738, -0.0172251109033823, -0.016722088679671288, 0.00495884707197547, -0.017197920009493828, 0.012133710086345673, 0.014370120130479336, 0.011950175277888775, -0.00967298075556755, -0.0068315849639475346, 0.02190185710787773, -0.007205452769994736, 0.017469823360443115, -0.027978908270597458, -0.011209237389266491, 0.01930517517030239, 0.010685821995139122, -0.013894287869334221, -0.020188862457871437, 0.047909460961818695, -0.02780217118561268, -0.04219948127865791, -0.02316620945930481, 0.012188090942800045, 0.00549925584346056, -0.04325990751385689, 0.0212085023522377, 0.04766475036740303, 0.010964524000883102, -0.023179804906249046, -0.00693694781512022, -0.17260457575321198, 0.01745622791349888, 0.006953941658139229, -0.0023451708257198334, -0.0072258454747498035, 0.022608807310461998, 0.013880692422389984, -0.011046094819903374, -0.025300655514001846, 0.012670720927417278, 0.00240804860368371, -0.011963770724833012, -0.05185206979513168, -0.021494001150131226, -0.0006687135901302099, -0.025001561269164085, -0.0035959286615252495, 0.03784902021288872, 0.07031434029340744, -0.006824787240475416, 0.012718304060399532, -0.017687346786260605, 0.002251703990623355, -0.00023048101866152138, 0.01853024959564209, 0.018258344382047653, -0.0035211551003158092, 0.023274971172213554, 0.009638992138206959, -0.03148647025227547, 0.019169222563505173, -0.0010264371521770954, 0.01502268947660923, -0.0025949825067073107, -0.00010929261043202132, -0.004139736294746399, -0.008293068036437035, -0.028196431696414948, 0.0009159761830233037, 0.021765904501080513, 0.036652643233537674, 0.0012541565811261535, 0.027027245610952377, 0.0018846337916329503, 0.008068747818470001, 0.027136007323861122, 0.03034447319805622, -0.006957340519875288, 0.009435064159333706, 0.011630687862634659, 0.005519648548215628, -0.029882235452532768, 0.0027700206264853477, -0.0037692675832659006, 0.022826330736279488, 0.007844426669180393, 0.014913927763700485, 0.019332366064190865, 0.00791920069605112, -0.004340265411883593, -0.007722069974988699, -0.015104260295629501, -0.0037556723691523075, -0.004863680340349674, -0.02568132057785988, -0.024960774928331375, 0.016259850934147835, 0.023098234087228775, 0.006124634761363268, 0.02047436125576496, 0.009448659606277943, 0.012929028831422329, 0.01779610849916935, 0.013282503932714462, 0.0233837328851223, 0.007552130147814751, -0.025858057662844658, -0.0013977558119222522, 0.028196431696414948, 1.8467690097168088e-05, -0.0004093427851330489, 0.01534897368401289, 0.0004473668523132801, -0.00026085777790285647, -0.02263599820435047, -0.0028600888326764107, 0.013370873406529427, -0.017564989626407623, -0.0017104452708736062, -0.001237162621691823, 0.030235711485147476, -0.013778728432953358, -0.0030521210283041, 0.0061586229130625725, 0.020025720819830894, 0.016953205689787865, 0.017469823360443115, -0.0042213075794279575, 0.0024998162407428026, -0.025164702907204628, -0.00297734746709466, 0.00032947101863101125, -0.04298800230026245, 0.026401866227388382, 0.04312395304441452, 0.009584611281752586, 0.009584611281752586, -0.0032203614246100187, 0.026388270780444145, -0.015226617455482483, -0.0377674475312233, 0.015580091625452042, 0.031758371740579605, 0.0039426060393452644, -0.04372214153409004, 0.03333541378378868, -0.00787841435521841, -0.03230218216776848, 0.01999852992594242, -0.018910914659500122, 0.04203633964061737, -0.04646837338805199, -0.029447190463542938, -0.001777571626007557, 0.001838749973103404, -0.013064981438219547, -0.09799415618181229, -0.03319946303963661, 0.033009130507707596, 0.013085373677313328, -0.005189965013414621, 0.017728133127093315, 0.003371607977896929, 0.03213903680443764, 0.005608017556369305, 0.026510627940297127, -0.017741728574037552, 0.00019075756426900625, -0.0028125056996941566, -0.029284046962857246, 0.018299130722880363, -0.007953188382089138, 0.00473112752661109, -0.029936617240309715, -0.012956219725310802, 0.03192151337862015, -0.00687237037345767, -0.011623891070485115, 0.016300637274980545, 0.0068315849639475346, -0.009842920117080212, -0.027081625536084175, -0.02528706006705761, 0.00939427874982357, 0.01190259214490652, -0.001336577464826405, 0.0413837693631649, -0.011358784511685371, 0.013010600581765175, -0.0251918938010931, 0.0024114474654197693, -0.00533611373975873, -0.028849001973867416, -0.009856515564024448, 0.014342929236590862, -0.02952876128256321, 0.004550991114228964, 0.0038338445592671633, 0.004595175385475159, -0.042716097086668015, -0.015906376764178276, 0.011617093347012997, -0.014968308620154858, 0.030290091410279274, 0.01242600753903389, -0.014315739274024963, -0.027503076940774918, -0.025042347609996796, -0.047039370983839035, -0.032927557826042175, 0.028821811079978943, 0.01145395077764988, 0.012024949304759502, -0.002436938462778926, -0.020882217213511467, 0.010006062686443329, -0.005937701091170311, -0.0014096515951678157, -0.00015730064478702843, 0.02169792912900448, 0.006607264280319214, 0.012392018921673298, 0.004452425986528397, 0.0028193031903356314, -0.007511344738304615, 0.007762855850160122, -0.022500045597553253, -0.009475850500166416, -0.028386764228343964, 0.028114860877394676, -0.0276254341006279, 0.005312322173267603, -0.00664465082809329, -0.016246257349848747, 0.0027700206264853477, 0.011154856532812119, -0.019726626574993134, -0.009040803648531437, -0.0075249397195875645, -0.022105785086750984, -0.0018081607995554805, 0.012031746096909046, 0.011800628155469894, -0.013411658816039562, 0.027652624994516373, -0.03814811259508133, 0.03004537895321846, 0.022962281480431557, 0.009679777547717094, 0.0012601044727489352, 0.002071567578241229, 0.005536642856895924, -0.0051865666173398495, -0.018326321616768837, 0.03401517495512962, 0.0038950229063630104, -0.0038950229063630104, -0.005767760798335075, -0.05198802053928375, 0.00787841435521841, 0.016939612105488777, 0.0032883374951779842, 0.007898807525634766, -0.022962281480431557, -0.001455535413697362, -0.004802502226084471, 0.000691655499394983, -0.007769653107970953, -0.025667725130915642, 0.01779610849916935, -0.008830077946186066, -0.004391247406601906, -0.0241586584597826, 0.007701677270233631, 0.010658632032573223, -0.0003460401785559952, 0.018625415861606598, -0.0009363689459860325, -0.011195641942322254, -0.014410905539989471, 0.00017429463332518935, 0.011229629628360271, -0.015077070333063602, 0.014383714646100998, -0.025599749758839607, -0.004330069292336702, -0.017782513052225113, -0.0515257827937603, 0.016681302338838577, 0.012222079560160637, -0.00764049869030714, 0.002715640002861619, -0.0006559680914506316, -0.037821829319000244, 0.013887490145862103, 0.005455071572214365, 0.013493229635059834, 0.010753798298537731, -0.007735665421932936, -0.021276477724313736, 0.02095019444823265, -0.026565007865428925, -0.020664693787693977, -0.0026374675799161196, -0.02027043327689171, -0.014478880912065506, -0.0019033271819353104, 0.01483235601335764, 0.05856809392571449, 0.011419963091611862, -0.030290091410279274, -0.023342948406934738, 0.01335727795958519, -0.012745494022965431, 0.009285517036914825, 0.037522733211517334, 0.007749260403215885, 0.001857443363405764, 0.03692454472184181, -0.00435046199709177, 0.010040050372481346, -0.01866620033979416, 0.03164961189031601, -0.028984952718019485, -0.06329922378063202, -0.006940346211194992, 0.008191104047000408, -0.027475886046886444, 0.014492476359009743, -0.02225533127784729, 0.03222060948610306, 0.02445775270462036, 0.01251437608152628, 0.005614814814180136, -0.010400323197245598, -0.02770700491964817, -0.0006151825073175132, 0.03303632140159607, 0.011685068719089031, -0.020487956702709198, -0.030670756474137306, 0.014465286396443844, 0.013234920799732208, 0.006899560801684856, -0.018978890031576157, 0.029637522995471954, 0.01623266190290451, -0.0004707335901912302, -0.0030079365242272615, 0.0012804972939193249, -0.008469806052744389, 0.012738696299493313, -0.009577813558280468, 0.014383714646100998, -0.015661662444472313, 0.011277212761342525, 0.016300637274980545, 0.02502875216305256, -0.01874777302145958, 0.02247285470366478, 0.021466810256242752, -0.03039885312318802, -0.01627344638109207, 0.012290054932236671, -0.029338428750634193, -0.023438114672899246, 0.014247762970626354, 0.01706196740269661, -0.006015873048454523, -0.022663187235593796, -0.0065528834238648415, 0.014628428034484386, -0.020406385883688927, -0.02243207022547722, -0.005213756579905748, -0.024403372779488564, -0.0318671353161335, -0.005682791117578745, 0.011182046495378017, 0.03338979557156563, 0.0031693794298917055, -0.026483437046408653, 0.030670756474137306, -0.01978100650012493, 0.012935826554894447, -0.016341423615813255, 0.016613326966762543, -0.021725120022892952, -0.004557788837701082, -0.006090646609663963, 0.0021531388629227877, -0.011882198974490166, -0.00580174895003438, -0.012602744624018669, -0.016178280115127563, 0.007157869637012482, 0.007830831222236156, 0.07580680400133133, 0.031622420996427536, -0.016422994434833527, 0.008762102574110031, -0.014261358417570591, 0.008136723190546036, 0.03018132969737053, 0.004132939036935568, 0.005104995332658291, -0.005509452428668737, 0.012466792948544025, -0.013425254262983799, -0.009598206728696823, -0.013432051055133343, -0.010787785984575748, -0.006593668833374977, 0.003216962795704603, 0.002302685985341668, -0.01676287315785885, 0.010685821995139122, 0.00837463978677988, 0.01160349790006876, -0.004618966951966286, -0.01563447341322899, -0.030534805729985237, -0.013404861092567444, 0.021276477724313736, 0.025096727535128593, -0.009978871792554855, -0.027774980291724205, 0.02939280867576599, 0.00937388651072979, -0.018503058701753616, -0.01926438882946968, 0.0006258037756197155, 0.02290790155529976, -0.01097132172435522, -0.01653175614774227, 0.002639167010784149, 0.02623872458934784, 0.014818761497735977, 0.01585199683904648, -0.013758336193859577, -0.018734177574515343, -0.0013926576357334852, -0.007334607187658548, -0.0007426374359056354, -0.01935955509543419, -0.004207712598145008], "83d4630e-f291-4ba1-b3d2-d3a21d27ab71": [0.011752225458621979, 0.009785441681742668, 0.006506314501166344, -0.0242939330637455, -0.006173900328576565, 0.017410190775990486, -0.01674536243081093, -0.024196980521082878, -0.0025658216327428818, -0.03595612943172455, 0.009238342754542828, 0.021149849519133568, 0.007025711238384247, -0.02029111422598362, -0.01714702881872654, 0.01317883562296629, 0.021011343225836754, 0.002371913520619273, 0.009570756927132607, -0.008130296133458614, -0.024667900055646896, 0.0016430261312052608, -0.010928114876151085, -0.020249562337994576, -0.019709387794137, 0.0031631283927708864, 0.02069278061389923, -0.01617748849093914, -0.027327213436365128, 0.01667610928416252, -0.000480009475722909, -0.023490600287914276, -0.016800764948129654, -0.006166975013911724, -0.014037572778761387, 0.019072260707616806, 0.00251388200558722, -0.0035526761785149574, 0.009314521215856075, 0.001520967809483409, 0.020651228725910187, 0.021052895113825798, 0.0002724670630414039, -0.02693939581513405, -0.00808181893080473, 0.020831286907196045, 0.00018763220577966422, -0.003909328952431679, -0.015914326533675194, 0.007139978930354118, -0.00671407300978899, -0.002456748392432928, -0.027022499591112137, 0.013296565972268581, -0.0005540236015804112, -0.008448859676718712, 0.021523816511034966, -0.010561074130237103, 0.0075277951546013355, -0.002567552961409092, 0.001674190047197044, -0.0051108673214912415, -0.02538813091814518, -0.002619492821395397, -0.007631674874573946, -0.045125219970941544, -0.023878416046500206, -0.0020585437305271626, -0.011586017906665802, -0.012763317674398422, 0.03590072691440582, 0.027313362807035446, -0.003074830863624811, -0.005692592356353998, -0.005848411470651627, -0.010477971285581589, -0.026219164952635765, -0.019917147234082222, 0.004858094267547131, 0.00392317958176136, 0.012881048023700714, -0.01872599683701992, -0.022188644856214523, 0.010519522242248058, 0.02569284290075302, 0.028158247470855713, 0.02185622975230217, 0.00035686910268850625, -0.012673289515078068, -0.0065374779514968395, 0.011530615389347076, 0.014515417627990246, 0.030748307704925537, 0.0175486970692873, 0.015097142197191715, 0.010561074130237103, -0.012874122709035873, 0.014252256602048874, -0.017770305275917053, -0.006433598697185516, -0.0024203904904425144, -0.015471108257770538, -0.013164984993636608, -0.017756454646587372, -0.027784282341599464, -0.012444754131138325, 0.01735478825867176, -0.005623339209705591, -0.005349790211766958, 0.02793663926422596, -0.02734106406569481, 0.012860272079706192, 0.00979929231107235, 0.012555559165775776, -0.00842808373272419, 0.0019183065742254257, 0.03781211003661156, -0.022174794226884842, -0.018601341173052788, -0.022119391709566116, 0.009432251565158367, -0.005678741727024317, 0.04584544897079468, -0.01871214620769024, 0.012195443734526634, 0.0067486995831131935, 0.004591470584273338, -0.015304901637136936, 0.01763180084526539, -0.001320999930612743, 0.018864503130316734, 0.003985506948083639, 0.011793776415288448, 0.01303340494632721, -0.016731511801481247, 0.004518754780292511, -0.008795124478638172, 0.016911569982767105, -0.004788841120898724, -0.02666238509118557, 0.01735478825867176, 0.02518037147819996, 0.010990442708134651, -0.0029917273204773664, -0.005148956552147865, 0.03587302565574646, -0.00945995282381773, 0.017230132594704628, 0.004037446808069944, -0.008171848021447659, 0.023352093994617462, -0.020706631243228912, -0.031911756843328476, 0.0170639269053936, 0.009736964479088783, 0.00935607310384512, 0.006558253895491362, 0.03227187320590019, -0.03047129698097706, -0.013220387510955334, -0.011953058652579784, 0.025457384064793587, -0.003107725875452161, -0.008351905271410942, -0.0038989409804344177, 0.03850463777780533, 0.003453990677371621, -0.022687265649437904, -0.027770431712269783, -0.009716188535094261, -0.0038089121226221323, 0.0275349710136652, -0.027410317212343216, 0.016011280938982964, 0.01783955842256546, 0.024196980521082878, 0.005789546296000481, 0.008282652124762535, 0.008248025551438332, -0.02695324644446373, 0.027784282341599464, 0.0023424809332937002, -0.008899003267288208, 0.011191275902092457, -0.017617950215935707, -0.02782583422958851, 0.02646847628057003, 0.014252256602048874, 0.004220967181026936, -0.004639947321265936, 0.01181455235928297, -0.005962678696960211, -0.007347737438976765, -0.0003040637238882482, -0.630700409412384, -0.0009669442661106586, 0.010415643453598022, -0.02795048989355564, -0.0012578066671267152, 0.02822750061750412, 0.014917084947228432, 0.006520165130496025, -0.023268990218639374, 0.02735491469502449, 0.017576398327946663, 0.015928177163004875, -0.012472455389797688, -0.011495988816022873, -0.019653987139463425, -0.025845199823379517, -0.00135995470918715, -0.005581787321716547, -0.003680794034153223, 0.008843601681292057, -0.0270502008497715, 0.009764665737748146, 0.0033050968777388334, 0.00409284932538867, 0.011205126531422138, -0.0042001912370324135, 0.03263198956847191, -0.01929387077689171, -0.012908749282360077, 0.049058787524700165, -0.03000037744641304, 0.015928177163004875, 0.008718946017324924, 0.00843500904738903, 0.04069302976131439, -0.014487716369330883, -0.020360365509986877, 0.018171973526477814, 0.002015260746702552, 0.051496490836143494, -0.016800764948129654, -0.02058197557926178, 0.018753698095679283, 0.015512660145759583, -0.013483548536896706, 0.0058276355266571045, 0.022091690450906754, -0.0029830706771463156, -0.011025069281458855, -0.016302144154906273, -0.0021277968771755695, -0.013372744433581829, -0.008802049793303013, -0.004065148066729307, 0.017271684482693672, 0.0024325097911059856, 0.026897843927145004, 0.00016912867431528866, -0.0038193000946193933, 0.006232765037566423, 0.010754982940852642, -0.0005613816902041435, -0.02430778369307518, -0.04227199777960777, -0.04368475824594498, -0.003729271236807108, -0.02441858872771263, -0.016717661172151566, 0.0036600183229893446, 0.0064647626131772995, 0.009030584245920181, 0.0008093938231468201, -0.005142031237483025, -0.013504324480891228, -0.0013080150820314884, 0.02903083525598049, 0.034848082810640335, -0.002655850490555167, -0.017673352733254433, 0.0022386014461517334, 0.008241100236773491, -0.003246231935918331, -0.01225084625184536, -0.01657915487885475, 0.033767737448215485, 0.010062453337013721, -0.01735478825867176, -0.016482200473546982, -0.0013530293945223093, -0.010214809328317642, 0.0016473544528707862, 0.032105665653944016, -0.015166395343840122, -0.007735554128885269, 0.011405960656702518, 0.04404487460851669, -0.0036392423789948225, 0.01294337585568428, 0.0034089763648808002, -0.00757627235725522, -0.032798197120428085, -0.0287261214107275, 0.023061230778694153, 0.01735478825867176, 0.02029111422598362, 0.02263186313211918, -0.014598521403968334, -0.015928177163004875, 0.0010474508162587881, -0.012063863687217236, -0.01063725259155035, -0.009189866483211517, -0.024280082434415817, -0.027521120384335518, 0.014737026765942574, -0.02677319012582302, 0.0011409423314034939, -0.004328309092670679, 0.0020879763178527355, -0.004369860980659723, -0.017133178189396858, -0.02351830154657364, 0.021690022200345993, 0.0034557220060378313, 0.003528437577188015, 0.008698170073330402, 0.021440712735056877, 0.005896888207644224, 0.009439176879823208, -0.005720293615013361, 0.00017464726988691837, -4.579892265610397e-05, 0.006994547788053751, 0.0005258895689621568, 0.03096991777420044, -0.008317278698086739, 0.022313298657536507, -0.018061168491840363, 0.009757740423083305, -0.03501429036259651, -0.005010450724512339, 0.008476560935378075, 0.00798486452549696, -0.03687026724219322, 0.006624044384807348, -0.02518037147819996, -0.011094322428107262, 0.009252193383872509, -0.004598395898938179, -0.010117855854332447, -0.007271559443324804, -0.010013976134359837, 0.006707147695124149, 0.02410002611577511, -0.030028076842427254, -0.01019403338432312, 0.011489063501358032, -0.04410027712583542, -0.0029449816793203354, -0.02371220849454403, -4.893694494967349e-05, -0.0027233720757067204, -0.0016698617255315185, -0.00891285389661789, 0.0005592175293713808, -0.011163574643433094, -0.02892003022134304, 0.024972612038254738, -0.006187750957906246, -0.01745174266397953, 0.013850589282810688, -0.012631737627089024, 0.004016670864075422, 0.025124968960881233, -0.0143076591193676, 0.014487716369330883, -0.014723176136612892, -0.015831222757697105, -0.0029848020058125257, -0.006973771844059229, 0.010817309841513634, 0.027077902108430862, -0.020803585648536682, -0.007756330072879791, 0.03914176672697067, 0.003128501819446683, 0.012195443734526634, 0.02587290108203888, -0.03687026724219322, 0.005744531750679016, 0.0053324769251048565, 0.01853208802640438, -0.007555496413260698, -0.009515355341136456, -0.020803585648536682, 0.004577619954943657, -0.02772887982428074, -0.0036773313768208027, 0.0013244625879451632, 0.019834043458104134, 0.009002882987260818, 0.029640261083841324, -0.019280020147562027, -0.002986533334478736, 0.009660786017775536, -0.020443469285964966, -0.0004144356062170118, -0.033379919826984406, 0.019820192828774452, 0.03085911273956299, -0.005031226668506861, -0.01911381259560585, -0.011260529048740864, -0.010353315621614456, 0.014612372033298016, 0.023158185184001923, 0.03301980346441269, 0.01515254471451044, 0.0010232123313471675, -0.0003453990793786943, 0.018268927931785583, 0.005315163638442755, 0.01745174266397953, -0.008303428068757057, -0.0052736117504537106, 0.02892003022134304, -0.004941197577863932, 0.02461249753832817, 0.01015248242765665, -0.0240307729691267, -0.004179415293037891, 0.021925482898950577, 0.001237030723132193, 0.018268927931785583, 0.05019453540444374, 0.01745174266397953, 0.025111118331551552, -0.009861619211733341, 0.015263349749147892, 0.014349211007356644, -0.0056268018670380116, 0.01504173967987299, 0.03238267824053764, -0.03227187320590019, 0.026094511151313782, 0.0020412306766957045, 0.019709387794137, -0.014847831800580025, -0.026413073763251305, 0.02292272448539734, -0.0017443086253479123, 0.006693297531455755, -0.009750815108418465, -0.013559726998209953, 0.03678716719150543, -0.01146828755736351, 0.006547865923494101, -0.005031226668506861, 0.009868544526398182, 0.024626348167657852, 0.012140041217207909, -0.006118497811257839, 0.010928114876151085, -0.0014759533805772662, -0.003100800793617964, -0.015277200378477573, -0.014612372033298016, -0.015304901637136936, -0.007320036645978689, -0.019737089052796364, 0.016731511801481247, -0.015304901637136936, 0.005948828067630529, 0.0030765621922910213, 0.0003064443008042872, -0.004466814920306206, 0.001920037902891636, 3.062278847210109e-05, -0.013061106204986572, 0.011087397113442421, -0.022895025089383125, -0.03185635432600975, 0.024917209520936012, 0.014501566998660564, 0.0026316118892282248, -0.005561011843383312, -0.022188644856214523, -0.010851936414837837, 0.009508430026471615, -0.0013616860378533602, 0.013158059678971767, -0.0019754404202103615, 0.0026506565045565367, -0.011440587230026722, 0.0030679055489599705, 0.010000125505030155, 0.03639934957027435, -0.01890605501830578, -0.004601858090609312, 0.008074893616139889, 0.017133178189396858, 0.01074113231152296, -0.014944786205887794, -0.021939333528280258, 0.021593069657683372, -0.01872599683701992, -0.03745199367403984, -0.013712083920836449, 0.0007172008045017719, -0.02527732588350773, 0.018365882337093353, 0.002692208392545581, -0.02558203786611557, -0.026122212409973145, -0.013213462196290493, 0.01705007627606392, 0.012770242989063263, -0.022991977632045746, 0.015720419585704803, 0.004380248952656984, 0.001913112704642117, -0.02637152187526226, 0.014238405972719193, 0.009653860703110695, 0.05049924924969673, -0.002470598788931966, -0.0061288857832551, 0.01705007627606392, -0.012860272079706192, -0.02145456336438656, -0.026496177539229393, -0.013268864713609219, 0.035429809242486954, 0.00819262396544218, -0.023379795253276825, 0.012617886997759342, 0.012610961683094501, -0.005294387694448233, 0.01813042163848877, -0.010367166250944138, -0.0022714966908097267, -0.016482200473546982, -0.009314521215856075, 0.017119327560067177, 0.0024394351057708263, -0.001055241795256734, 0.03880935162305832, 0.017770305275917053, 0.03922487050294876, 0.004934272263199091, 0.034155555069446564, 0.009245268069207668, -0.009182941168546677, -0.014432313852012157, -0.02548508532345295, 0.02135760895907879, -0.0011141067370772362, 0.014487716369330883, -0.00450490415096283, 0.0425490103662014, 0.016994673758745193, -0.014667774550616741, -0.012617886997759342, 0.00858043972402811, -0.013518175110220909, 0.023850714787840843, -0.012119265273213387, -0.005515997298061848, 0.009231417439877987, -0.026025258004665375, 0.008151072077453136, 0.03243808075785637, -0.009937797673046589, -0.0001921769289765507, 0.010588775388896465, 0.022521058097481728, -0.002596985548734665, 0.013469697907567024, -0.00553677324205637, -0.01862904243171215, -0.003930104896426201, -0.006610193755477667, -0.04950200766324997, -0.027174856513738632, -0.02069278061389923, -0.01909996196627617, -0.012763317674398422, -0.02098364196717739, -0.022133242338895798, -0.04174567759037018, 0.0024498230777680874, -0.008601215668022633, -0.01882295124232769, 0.0003525407810229808, 0.008407307788729668, -0.04869867116212845, -0.028366006910800934, -0.006776400841772556, 0.029169341549277306, 0.010457195341587067, -0.002986533334478736, -0.003355305176228285, -0.01353202573955059, 0.009556906297802925, 0.0023736448492854834, -0.024751003831624985, -0.009369923733174801, -0.01596972905099392, 0.00818569865077734, -0.0044218008406460285, -0.02333824336528778, 0.01155831664800644, 0.007084576413035393, 0.006755624897778034, 0.013338117860257626, -0.019252318888902664, 0.0003142352506984025, -0.011142798699438572, 0.007624749559909105, 0.006104647181928158, 0.03227187320590019, -0.005831098183989525, 0.02195318415760994, -0.033186011016368866, 0.007624749559909105, -0.039418775588274, -0.015817372128367424, -0.02538813091814518, -0.005422505550086498, 0.026703936979174614, -0.009342222474515438, -0.003691182006150484, -0.01801961660385132, -0.011440587230026722, 0.0002415196504443884, 0.0010829429375007749, -0.009736964479088783, 0.006028469186276197, -0.0031336958054453135, -0.01020095869898796, 0.011011218652129173, 0.026593131944537163, 0.015706568956375122, -0.027119453996419907, -0.005917664151638746, -0.01616363786160946, 0.023185886442661285, -0.002899967133998871, 0.0007016189047135413, 0.011246678419411182, 0.014972487464547157, -0.019072260707616806, -0.019944848492741585, 0.01338659506291151, -0.012209294363856316, 0.013151134364306927, -0.01793651282787323, -0.008829751051962376, -0.015900475904345512, -0.018975308164954185, -0.01919691637158394, -0.003964731004089117, -0.012507081963121891, 0.004297145176678896, -0.031800951808691025, 0.004896183498203754, 0.005938440095633268, -0.008344979956746101, 0.0024671361315995455, -0.02224404737353325, -0.02047117054462433, -0.0014231480890884995, 0.007299260701984167, 0.027493419125676155, -0.016399098560214043, 0.005148956552147865, -0.031053021550178528, -0.022091690450906754, -0.01656530424952507, -0.023379795253276825, -0.012929525226354599, 0.016800764948129654, 0.04692579805850983, 0.019972549751400948, 0.007223082240670919, 0.015110992826521397, 0.01929387077689171, 0.02164847031235695, -0.01627444289624691, 0.0012430903734639287, -0.021717723459005356, -0.009695412591099739, -0.00887130293995142, -0.012202369049191475, -0.009072136133909225, 0.011371334083378315, -0.007929462008178234, 0.010471045970916748, -0.01666225865483284, 0.0008976912940852344, -0.012050013057887554, 0.010131706483662128, -0.030803710222244263, -0.051801204681396484, -0.009570756927132607, 0.03786751255393028, 0.004584545269608498, -0.0010621671099215746, -0.031246930360794067, -0.004975824151188135, 0.009750815108418465, -0.0021710798610001802, 0.02282577194273472, 0.0018525163177400827, 0.029667962342500687, -0.004660723265260458, 0.0038643144071102142, 0.014764728024601936, 0.003537094220519066, -0.025443533435463905, -0.010658028535544872, -0.049751315265893936, -0.006499389186501503, -0.002319973660632968, 0.024570945650339127, 0.019460078328847885, -0.020554274320602417, 0.01617748849093914, 0.015761971473693848, 0.024972612038254738, -0.014515417627990246, -0.00654440326616168, 0.017701053991913795, -0.029280146583914757, 0.012874122709035873, -0.016482200473546982, -0.001474222051911056, 0.02439088746905327, -0.01142673660069704, -0.007133053615689278, 0.013504324480891228, 0.017424041405320168, -0.036122336983680725, -0.025360429659485817, 0.022521058097481728, -0.002778774593025446, 0.024557095021009445, 0.013940618373453617, 0.01627444289624691, 0.01696697250008583, 0.008026416413486004, -0.0068283407017588615, -0.011163574643433094, 0.005083166528493166, -0.0069010560400784016, 7.7260316174943e-05, 0.03806142136454582, -0.019764790311455727, -0.02009720541536808, 0.023268990218639374, 0.0013469698606058955, 0.01588662527501583, -0.02038806676864624, 0.025221923366189003, 0.020720481872558594, -0.011052770540118217, -0.037396591156721115, -0.012202369049191475, -0.02509726770222187, 0.01763180084526539, -0.00654440326616168, 0.013345043174922466, 0.0015529973898082972, 0.011163574643433094, 0.006786788813769817, 0.055734772235155106, -0.019058410078287125, 0.013954469002783298, -0.003954343032091856, 0.00010896518506342545, -0.00756934704259038, -0.006398972123861313, 0.0014413269236683846, -0.00029713843832723796, 0.018365882337093353, 0.017964214086532593, -0.013947543688118458, -0.012029237113893032, 0.008157997392117977, 0.01675921306014061, -0.019155364483594894, -0.011634495109319687, -0.01792266219854355, 0.029363250359892845, -0.010644177906215191, -0.005145493894815445, 0.004497978836297989, -0.007236932870000601, 0.020942091941833496, -0.024155428633093834, -0.022784220054745674, -0.008213399909436703, 0.0005410386365838349, 0.010962741449475288, 0.01764565147459507, 0.012853346765041351, -0.001656011096201837, -0.008497336879372597, 0.003708495292812586, -0.01470932550728321, -0.01338659506291151, 0.0017849947325885296, 0.007610898930579424, -0.033075205981731415, -0.009660786017775536, 0.003263545222580433, -0.008054117672145367, 0.012098490260541439, 0.0028134009335190058, -0.004463352262973785, 0.004051297437399626, 0.026316119357943535, -0.017576398327946663, -0.0033327981363981962, 0.03933567553758621, 0.01655145362019539, -0.0427706204354763, 0.015720419585704803, 0.011738374829292297, -0.007493169046938419, 0.007915611378848553, 0.0017088165041059256, -0.02272881753742695, -0.043961770832538605, 0.010415643453598022, -0.01588662527501583, 0.021302206441760063, -0.010561074130237103, 0.011586017906665802, 0.026523878797888756, -0.004588007926940918, -0.01626059226691723, -0.006367808673530817, 0.00019152768072672188, -0.003653093008324504, 0.004802691750228405, 0.005806859582662582, -0.01912766322493553, 0.014183003455400467, 0.010097079910337925, 0.007257708813995123, 0.001978902844712138, -0.031690146774053574, -0.024266231805086136, -0.017811857163906097, -0.009501504711806774, 0.009432251565158367, 0.01783955842256546, -0.009674636647105217, -0.029363250359892845, -0.010408718138933182, 0.015194096602499485, -0.007548571098595858, -0.0005020838580094278, 0.01157216727733612, -0.014515417627990246, -0.01785340905189514, 0.015526510775089264, 0.0032773956190794706, -0.05883730202913284, -0.022077839821577072, -0.027493419125676155, -0.03304750472307205, -0.0028393708635121584, -0.01308188121765852, 0.061108801513910294, 0.0017720097675919533, -0.020803585648536682, -0.02745186723768711, -0.014446164481341839, -0.03520819917321205, -0.01969553716480732, -0.018975308164954185, 0.017756454646587372, 0.037091877311468124, 0.051108673214912415, 0.0030990694649517536, 0.020955942571163177, -0.011821477673947811, 0.022521058097481728, -0.031690146774053574, -0.0034210956655442715, -0.01763180084526539, -0.01862904243171215, 0.011786851100623608, -0.02441858872771263, -0.05548546090722084, -0.0027129841037094593, 0.009771591052412987, -0.019169215112924576, -0.00029021312366239727, 0.01260403636842966, -0.01004860270768404, -0.01054029818624258, 0.004986212123185396, 0.0037327338941395283, 0.03947417810559273, 0.016011280938982964, 0.002006604103371501, -0.04379556328058243, 0.018656743690371513, 0.005045077297836542, -2.3318765670410357e-05, -0.022867323830723763, 0.01132285688072443, 0.006160049699246883, -0.014086049050092697, 0.0015486690681427717, 0.0039266422390937805, -0.011627569794654846, 0.0013469698606058955, -0.01455696951597929, -0.0017867260612547398, 0.009446102194488049, -0.0013963124947622418, 0.019681688398122787, -0.0003598988987505436, 0.007195380982011557, -0.011239753104746342, 0.01871214620769024, 0.001283776480704546, 0.005522922612726688, 0.02304738014936447, -0.030055778101086617, -0.015595763921737671, -0.013608204200863838, 0.00843500904738903, 0.00416556466370821, -0.02725796028971672, -0.011586017906665802, -0.008552739396691322, -0.029972676187753677, 0.00011578226985875517, 0.024917209520936012, -0.015332601964473724, -0.0012872391380369663, -0.013559726998209953, 0.00527014909312129, -0.004501441493630409, -0.0001046909746946767, -0.005429430864751339, -0.013892141170799732, -0.016205189749598503, -0.002448091749101877, 0.016052832826972008, -0.032687392085790634, 0.002654119161888957, 0.028781523928046227, -0.01201538648456335, 0.012043087743222713, 0.20266182720661163, 0.00970233790576458, 0.019681688398122787, 0.0380060188472271, 0.013559726998209953, -0.0020014101173728704, 0.002567552961409092, 0.002751073334366083, 0.006862966809421778, 0.0025658216327428818, 0.01270099077373743, -0.0015382810961455107, -0.01421070471405983, -0.0023459435906261206, 0.002037768019363284, -0.027881236746907234, -0.030166583135724068, -0.02440473809838295, -0.025249624624848366, -0.0025900602340698242, 0.014418463222682476, -0.004816542379558086, -0.013905991800129414, -0.005176657810807228, 0.027174856513738632, 0.015651166439056396, 0.010817309841513634, 0.008074893616139889, 0.023005828261375427, 0.03343532234430313, 0.0071538295596838, -0.014958636835217476, 0.016315994784235954, -0.019847894087433815, -0.004401024896651506, 0.003017697250470519, 0.026191463693976402, -0.011586017906665802, 0.018573639914393425, 0.01619133912026882, -0.0122577715665102, -0.019972549751400948, 0.0032202620059251785, -0.025526635348796844, 0.017493294551968575, -0.022701116278767586, -0.019764790311455727, 0.00671407300978899, -0.0023078543599694967, 0.039363376796245575, -0.009058285504579544, -0.0014300734037533402, -0.0005834560724906623, 0.015401855111122131, -0.0014292077394202352, 0.0015374154318124056, 0.01013863179832697, -0.007922536693513393, -0.022978127002716064, -0.006752162240445614, -0.008448859676718712, 0.0016196533106267452, -0.006135811097919941, 0.0009331834735348821, -0.027576522901654243, 0.017798006534576416, -0.00378813617862761, 0.012140041217207909, 0.002321704989299178, -0.0033172161784023046, 0.00450836680829525, 0.005290925037115812, -0.028504513204097748, -0.001456043217331171, -0.015014038421213627, -0.012230070307850838, 0.016094384714961052, 0.025221923366189003, 0.040139008313417435, 0.011018143966794014, 0.0005938440444879234, 0.005301313009113073, -0.008268801495432854, -0.021052895113825798, 0.01567886769771576, -0.014051422476768494, 0.017382489517331123, -0.01308880653232336, 0.00509355403482914, -0.025028014555573463, -0.002480986760929227, 0.011135873384773731, -0.0022680340334773064, -0.0006535747088491917, -0.011260529048740864, -0.011156649328768253, -0.007278484757989645, 0.012576335109770298, -0.014238405972719193, -0.0195985846221447, -0.02518037147819996, 0.048172350972890854, 0.022396402433514595, 0.013698233291506767, -0.017008524388074875, 0.007306186016649008, -0.004743827041238546, 0.0217592753469944, -0.006897593382745981, 0.005335939582437277, -0.010962741449475288, -0.04088693857192993, 0.020249562337994576, -0.0038089121226221323, 0.0032375752925872803, 0.01822737604379654, 0.024473991245031357, -0.0039958949200809, -0.008718946017324924, 0.003950880840420723, 0.025443533435463905, -0.003708495292812586, -0.0007985730189830065, 0.002757998649030924, -0.02969566360116005, -0.022368701174855232, -0.013054180890321732, 0.002056812634691596, -0.03803372010588646, -0.020166458562016487, 0.001646488788537681, -0.010166333056986332, 0.017230132594704628, -0.0024861807469278574, -0.007067263126373291, -0.015429556369781494, -0.011495988816022873, -0.005571399349719286, -0.0023805699311196804, -0.003968193661421537, 0.016689959913492203, -0.010166333056986332, -0.00022940039343666285, -0.017798006534576416, 0.001103718881495297, 0.032299574464559555, -0.004286757204681635, 0.02018030919134617, -0.028393708169460297, -0.015720419585704803, 0.01558191329240799, -0.008663543500006199, -0.008615066297352314, -0.00426251906901598, 0.028587616980075836, -0.026523878797888756, -0.03764590248465538, -0.03360152989625931, 0.01596972905099392, 0.004033984150737524, -0.03819992393255234, 0.00024476589169353247, 0.05398959666490555, 0.020457319915294647, -0.03182865306735039, 0.001740845968015492, -0.17784157395362854, 0.015540361404418945, 0.009473803453147411, -0.0029519067611545324, -0.01716087944805622, 0.04506981745362282, 0.010104005225002766, -0.006343570072203875, -0.010353315621614456, 0.005515997298061848, 0.004103237297385931, -0.009660786017775536, -0.04432188719511032, -0.016315994784235954, 0.0013954468304291368, -0.00216934853233397, 0.003805449465289712, 0.0298064686357975, 0.04928039759397507, 0.005072778556495905, 0.01734093762934208, -0.016509901732206345, 0.0035838400945067406, -0.011745300143957138, 0.018864503130316734, 0.027271810919046402, -0.011212051846086979, 0.029778767377138138, 0.010325614362955093, -0.03775670751929283, 0.0006531418766826391, -0.011696822941303253, 0.02519422210752964, 0.000599037972278893, -0.014986338093876839, -0.007624749559909105, -0.007292335387319326, -0.008275726810097694, -0.010020901449024677, 0.008171848021447659, 0.03761820122599602, 0.0056752790696918964, 0.019169215112924576, 0.005138568580150604, 0.008303428068757057, 0.018698295578360558, 0.02225789800286293, -0.013345043174922466, 0.006911444012075663, -0.002434241119772196, 0.026385372504591942, -0.011890730820596218, 0.006527090445160866, -0.012382427230477333, 0.025028014555573463, 0.019875595346093178, 0.0073754386976361275, 0.018601341173052788, -0.001502788974903524, -0.01861519180238247, -0.015124843455851078, -0.025817498564720154, -0.011108173057436943, -0.013365819118916988, -0.011454437859356403, -0.04008360579609871, -0.023088932037353516, 0.010761908255517483, 0.0006496792193502188, 0.009577682241797447, 0.003711957950145006, 0.0058172475546598434, 0.021440712735056877, 0.0020533499773591757, 0.023795312270522118, -0.008469635620713234, -0.04725820943713188, 0.0031267704907804728, 0.03678716719150543, 0.009861619211733341, 0.003386469092220068, 0.01146828755736351, 0.011786851100623608, 0.0007864537765271962, -0.02000025101006031, 0.001132285688072443, 0.0014240137534216046, 0.009674636647105217, -0.014224555343389511, 0.005162807181477547, 0.03443256393074989, -0.021634619683027267, 0.01053337287157774, -0.000370936089893803, 0.003417633008211851, 0.005502146668732166, 0.02549893409013748, 0.014349211007356644, 0.015955878421664238, -0.013054180890321732, 0.0012032699305564165, 0.027313362807035446, -0.04565154388546944, -0.0031129198614507914, 0.04440499097108841, 0.021149849519133568, 0.019958699122071266, -0.012167742475867271, 0.042881425470113754, -0.0008072296623140574, -0.03892015665769577, 0.01724398322403431, 0.01587277464568615, 0.0025086880195885897, -0.028892328962683678, 0.038975559175014496, -0.00891977921128273, -0.016897719353437424, 0.010526447556912899, -0.008684319444000721, 0.032798197120428085, -0.04174567759037018, -0.02441858872771263, 0.0038573890924453735, 0.004106699954718351, -0.0017616217955946922, -0.09097067266702652, -0.011336707510054111, 0.03731348738074303, 0.010789609514176846, -0.0068283407017588615, 0.02253490872681141, 0.009203716181218624, 0.022590311244130135, 0.015166395343840122, 0.02401692233979702, -0.017673352733254433, 0.008899003267288208, 0.005187045782804489, -0.006198138929903507, 0.014737026765942574, 0.001693234546110034, 0.0009721382521092892, -0.023975370451807976, -0.0008474829373881221, 0.019044559448957443, 0.011274379678070545, -0.01637139730155468, 0.016689959913492203, 0.00878127384930849, -0.008940555155277252, -0.0175486970692873, -0.0370364747941494, 0.012285472825169563, 0.013331192545592785, 0.0036011531483381987, 0.025928303599357605, -0.033186011016368866, 0.021025193855166435, -0.023199737071990967, -0.0037535096053034067, -0.012735617347061634, -0.012181593105196953, -0.017479443922638893, 0.0277565810829401, -0.012659438885748386, -0.000998973730020225, -0.00809566956013441, 0.012472455389797688, -0.03673176467418671, -0.007603973615914583, -0.007735554128885269, -0.0066655962727963924, 0.03903096169233322, 0.004117087461054325, -0.0039266422390937805, -0.018559789285063744, -0.01724398322403431, -0.029917273670434952, -0.027299512177705765, 0.024280082434415817, 0.014958636835217476, 0.018642893061041832, 0.01687001809477806, -0.010955816134810448, 0.0058276355266571045, -0.02166232094168663, -0.0009046166087500751, -0.019141513854265213, 0.01862904243171215, 0.016025131568312645, 0.0250003132969141, -0.0021918558049947023, -0.0026575818192213774, 0.007901761680841446, 0.012881048023700714, -0.024958761408925056, 0.006028469186276197, -0.01617748849093914, -0.005128180608153343, -0.017798006534576416, 0.0011262260377407074, 0.001951201818883419, -0.008725871331989765, 0.02077588438987732, 0.008822825737297535, -0.006835266016423702, -0.016440650448203087, 0.008829751051962376, -0.014349211007356644, -0.005277074407786131, 0.003774285549297929, 0.010519522242248058, -0.010249435901641846, 0.014238405972719193, -0.04382326453924179, 0.019349273294210434, 0.022895025089383125, 0.017493294551968575, 0.009653860703110695, -0.012770242989063263, 0.007333887275308371, -0.01687001809477806, -0.0007487974944524467, 0.01664840802550316, -0.014404612593352795, -0.018407432362437248, -0.009536130353808403, -0.06880972534418106, 0.00774247944355011, 0.0253742802888155, 0.011689897626638412, -0.0009617502801120281, -0.03000037744641304, 0.01558191329240799, 0.0017659501172602177, 0.007777106016874313, 0.00450836680829525, -0.015194096602499485, 0.004310995806008577, -0.011876880191266537, -0.005148956552147865, -0.0286153182387352, -0.010228659957647324, 0.010104005225002766, 0.012465530075132847, 0.01734093762934208, -0.004252131097018719, 0.0038089121226221323, -0.005297850351780653, 0.012950301170349121, 0.03684256598353386, -0.017507145181298256, 0.020124906674027443, -0.02301967889070511, 0.013019554316997528, -0.015014038421213627, -0.022271746769547462, 0.012514007277786732, 0.00519743375480175, 0.008954405784606934, 0.009065210819244385, -0.007700927555561066, -0.03786751255393028, -0.010997368022799492, 0.006752162240445614, 0.012867197394371033, 0.007167680189013481, -0.008732796646654606, -0.007354662753641605, 0.029640261083841324, -0.012022311799228191, -0.013719008304178715, -0.0036600183229893446, -0.01283257082104683, -0.023282840847969055, 0.014515417627990246, 0.009411475621163845, 0.040526825934648514, 0.007915611378848553, -0.03576222062110901, -0.02509726770222187, 0.00026705669006332755, -0.003331066807731986, -0.0011712404666468501, 0.03806142136454582, 0.020124906674027443, 0.006284704897552729, 0.05711983144283295, 0.0233243927359581, 0.020235711708664894, 0.000247146439505741, 0.02401692233979702, -0.0030765621922910213, -0.04952970892190933, -0.008663543500006199, 0.010464120656251907, -0.03157934546470642, 0.00054190430091694, -0.015097142197191715, 0.041911885142326355, 0.027978191152215004, 0.008386531844735146, -0.00378813617862761, 0.005869187414646149, -0.022202495485544205, 0.00025277325767092407, 0.0339062437415123, 0.01411375030875206, -0.03027738817036152, -0.029335549101233482, 0.024377036839723587, 0.012860272079706192, 0.02009720541536808, -0.019473928958177567, 0.022798070684075356, 0.02372605912387371, 0.011994610540568829, -0.01979249157011509, 0.007763255387544632, -0.0016863092314451933, 0.0026142988353967667, 0.012423979118466377, 0.00595229072496295, -0.020609676837921143, 0.016509901732206345, 0.03429405763745308, 0.023587552830576897, -0.011281304992735386, 0.01284642145037651, -0.0028428335208445787, -0.01627444289624691, -0.0029051611199975014, 0.017091628164052963, -0.03252118453383446, -0.015928177163004875, 0.022811921313405037, 0.021232953295111656, 0.01087271235883236, -0.026399223133921623, -0.019834043458104134, 0.009764665737748146, -0.005235522985458374, -0.0031977547332644463, 0.0024896434042602777, -0.02166232094168663, -0.02941865101456642, 0.002541583264246583, 0.005806859582662582, 0.02040191739797592, 0.015069440938532352, -0.022216346114873886, 0.02961255982518196, -0.01774260587990284, 0.015221797861158848, 0.00798486452549696, 0.010166333056986332, -0.030609803274273872, -0.012417053803801537, -0.006045782472938299, 0.005460594780743122, -0.007617824245244265, -0.02196703478693962, -0.005834560841321945, -0.018587490543723106, 0.019363123923540115, 0.0016430261312052608, 0.09606768935918808, 0.036011531949043274, -0.014764728024601936, 0.015166395343840122, -0.02903083525598049, -0.0020654690451920033, 0.013892141170799732, 0.01019403338432312, 0.005079703871160746, -0.03398934751749039, 0.024737153202295303, -0.0137674855068326, -0.005515997298061848, -0.00819262396544218, -0.01377441082149744, -0.012971077114343643, 0.015803523361682892, 0.00561295123770833, -0.005017376039177179, 0.0205681249499321, 0.025346579030156136, -0.00681102741509676, 0.013171910308301449, -0.004148251377046108, -0.025651291012763977, -0.006502851843833923, 0.029834169894456863, 0.014750877395272255, -0.00502430135384202, -0.012430903501808643, 0.02832445502281189, -0.014169152826070786, -0.02763192541897297, -0.00015473704843316227, -0.026510028168559074, -0.0008756169700063765, -0.008933629840612411, -0.028366006910800934, 0.007562421727925539, 0.034072451293468475, 0.0011868224246427417, 0.008275726810097694, -0.015637315809726715, -0.009307595901191235, 0.0025900602340698242, -0.005671816412359476, 0.009376849047839642, -0.01657915487885475, -0.0054640574380755424]}, "text_id_to_ref_doc_id": {"9edd272d-05a9-4bfb-afb5-924aa610c40d": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "1b8e8357-b0b8-4c29-a0c1-2224ede28488": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "e2cbe48e-ab64-4f6f-9c4d-834c8beb2df2": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "81444380-7cb4-4706-8f08-02dc8ef9d443": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "e87beadb-a87a-4450-b26e-6bc11fec887a": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "f156331b-003f-4068-b430-81ea09cd3acb": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "8aa627a8-d6cd-4c5d-bd90-eb2ebad5359e": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "e0807126-e648-46de-b5c2-910e4e173d82": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "8a4c4d19-0a4b-4938-81ef-11a4d2a82f3e": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "5753c053-763a-41fc-881d-6bf57c1d7753": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "5f2c5dca-49fb-4725-ae3e-4c1951067bdd": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "10e4af3c-d44a-4aff-a0dc-63907a78a16d": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "d9212f2b-877e-42b3-bc44-cf84c73b8311": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "5a34023f-6c80-4bc8-a9da-f80343581e69": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "7b2071b1-da20-49e8-a91e-a277a4a90d15": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "02544d89-afa8-46c7-b46f-ef0dcefed681": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "4e1099db-41c7-43c0-836f-0d8da4edc74e": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "f1a0779e-905c-4c66-9f14-c1fd473f6115": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "f8613859-5e96-4bcd-882f-aa600feab1ff": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "ea47314c-19e1-4116-ac9a-9b436f91fd74": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "652073e8-08c5-49cc-bbc4-ca70d326cd91": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "5bd4e401-4e7b-4124-bba6-800f7b04c425": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "5b9c6817-960a-4fbb-ada8-c91eaea375f9": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "94bd416e-81de-4df9-9af5-eeec685ecf1c": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "3b28057a-a366-494d-86cb-fb4ec55da5c2": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "84838ed9-c928-4a9e-acd8-8641b036fa23": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "bc7a6092-63e8-4c2a-8f18-563f5472822b": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "922bc878-0201-49ea-b751-5b4fde16bb6d": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "5f6282df-c993-4ad6-ab4e-cc53ae5c1557": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "0294ad83-fd66-4219-9f09-778575cf809c": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "abb2f36a-947c-41fa-85ef-2275497140fe": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "905ad1ac-118c-467b-8a79-3df2be677e83": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "bee4eada-eeec-40eb-bda2-271f40acfaba": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "8ccaa11a-a6f6-4e1d-ac0a-8591143a2432": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "37038a26-361a-4824-b412-45da3a50aa13": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "63f92bda-3680-476a-89b7-240dad4835c4": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "f565e74a-3b4b-425b-98ec-027ab439c3d9": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "d3a7ae68-5174-4258-8292-0a9451e8b916": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "07ac6a79-985c-411a-b6c6-5801e689afcf": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "802e9005-13d7-4173-bc27-09ab95ea375a": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "e9416f76-31dd-45d1-88e8-dbefa2b7a04a": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "d8b2233a-0cbd-4e1e-8f13-144507e0ba90": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "df2706de-7a67-4837-9162-5b9e36d1a8ed": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "343f4d90-69d0-4aed-87d9-6c7896f18cdf": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "55c04431-65ee-4d04-ad9d-e26261ad8eed": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "9dfaab70-7d70-4e42-86f2-a3c2d961207c": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "fb76762e-5f96-4e30-b458-26837b628208": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "806ac9c6-f9f4-4b6a-ac29-457e0f5cf879": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "da25c223-a805-482a-bb28-b3862f33b028": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "ecb9caf5-ef92-4595-affa-0b60ab364b41": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "22b17438-5a36-49c6-9fe5-1e599edb22be": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "062c1b51-1d17-41d4-864d-786a1007ab0e": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "885f2991-1d81-459e-97c2-c2654ff84e24": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "8f63b22d-fc3f-4988-9c9e-fd21d1915eb4": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "4471364f-327d-492d-b746-8f962831fd94": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "2040909c-b801-4465-a844-89283f6f469f": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "4e6ed601-46ca-40c7-845d-fff5d9f17da9": "755fceaa-f8be-4e0c-82f7-36d891f3a257", "83d4630e-f291-4ba1-b3d2-d3a21d27ab71": "755fceaa-f8be-4e0c-82f7-36d891f3a257"}} \ No newline at end of file diff --git a/index_v2/SplunkProducts/docstore.json b/index_v2/SplunkProducts/docstore.json new file mode 100644 index 0000000000000000000000000000000000000000..9dfe2c13f18cbe1c7ccf9325f820da263e26efe8 --- /dev/null +++ b/index_v2/SplunkProducts/docstore.json @@ -0,0 +1 @@ +{"docstore/metadata": {"10b39136-08ab-44a8-85cb-021f8824bcd8": {"doc_hash": "e4cd4e6872a736a45195772c25db5f16a81e651ab6593239e830b427f39d85e4"}, "0889e864-4b4a-4847-a9ef-7a522c4930c0": {"doc_hash": "c7d480ccf5f79776c05acc3b056df10bc98067f3f304bba481e99e1092343df9", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "ac706d57-0a59-412d-a131-e613fbcb9675": {"doc_hash": "3a785f83b46644e9eb2b5d81aeae2de3039710811d93d336e4c6a5c7ff52dd0c", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "1d2ca6d9-a9ca-4bae-8ac1-d4de60496017": {"doc_hash": "c2c24eb4c889b033bddcc0d405e49cf825d543f365a341d8f0a4656e83dd19f2", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "732ef8ef-1247-4ca7-9f4d-16452f459bd4": {"doc_hash": "10dda0df20ef0fbd401f2a106ce4415e3fcd2f4a213bcbcf66fb8eec30fccae9", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "bc86f2c5-666d-48fd-bfb5-1853077b08ba": {"doc_hash": "f5a71dd717ea810a8fbe2b9be845031120785e236523831b35a5a8c3d1a8b5a8", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "4f880336-617a-4346-a2a4-8689328dde85": {"doc_hash": "6184cdf59308808ce899004219d327715aea063e1282989537c1a56ca955e22f", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "6e982ddc-23a6-44dc-ba94-8a455805b490": {"doc_hash": "86513383cfc56b146563901fddfd7a6b3d5250d5413cc2415db4c6c3f3aa27a9", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "e7b6c090-bf1b-436b-9a00-6d96311cb2ce": {"doc_hash": "5e976a576785394fce31f87b389c2c9cec61bb2178a1641a5468fe9355bacc27", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "25003129-bbd9-42f7-9897-49ff1c2054bc": {"doc_hash": "dc33ba470050ada3a2e9ba2141c97b70204e3b643b95fc6378ff5a53429363ee", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "d4a49c63-7213-455a-8413-e4845faf8793": {"doc_hash": "37c1c970a05070895c4176396cdca43b0aa7eadccc54cca0e3d681d18d00492f", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "db579a1b-332d-49c2-99d8-6115a509c0e3": {"doc_hash": "16cd5ef77e56d6af482663067cfdff53332136f80d560ba87556f2be769b3d24", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "79fcf67d-8c85-4505-bb5a-34d28d00d262": {"doc_hash": "6ed1e38f243e788c63237cfef13336d3fd0c4cd4ebc34747ac0a50ed93a703b9", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "a6a7b0af-b576-416a-b269-bfdc135091ae": {"doc_hash": "36fec67f725e25a82ce89de5c6e44b417b3b5ca0a95024a6b35af45ef00bf213", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "4b795efd-0329-4d32-bbfb-e7cc78af7b08": {"doc_hash": "75432edca0089efdb325db8053127304b4da2922272112a417c2850b2d90286e", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "cf829ada-81c5-4f09-9ace-a6fb7e38d110": {"doc_hash": "3445f0e56b68efaf05f8b6191c0f6c43acf8dbea97ec465c121675a41a66bbcf", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "3e75e777-8fbf-4323-98b3-37de31796f7d": {"doc_hash": "c82236d2d3ee5ac48aa2bd60b008a8d5c06b89678b98a1418c933b2abda230f9", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "c1efcfe9-dfd0-4fa7-adce-4c600f051965": {"doc_hash": "afb0737fdb9f8adb59aa51bce1213a077af9a99340cf09efd45501d793179cb2", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "49b02c99-6e6c-4109-9edc-e6fee6834574": {"doc_hash": "9249cc5b0b29f43cfa09860aab0e2642b7473345137895b2ce22766d1bc4cc48", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "02bd4993-b5e3-4da6-b3d3-00f839c897d3": {"doc_hash": "4aaf0e028c40d014d10e1c87410d564f1c888ba398a3344c22f035855669de6a", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "2622fd48-4662-4176-9e01-2fafcc0d9147": {"doc_hash": "d3641ca763d9618082dba4a5335d4e81b1d55085caf7132734b8a107921fc03d", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "f0b5692b-ff9d-456c-a97a-d511f87d78b2": {"doc_hash": "f054ef8aafdbf3d50ea2a2ec9057885bb980c4eb77926c922132ebc29bd5fdb2", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "0eee8be4-f629-4578-9aa9-bea55eafae98": {"doc_hash": "4f2b0154a89cdbf3dbc16bef4212ea357a7e433c3a02ff6d485db631bdd922f2", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "002dfc10-c8dc-4dd2-aa67-f97c3f65cb8e": {"doc_hash": "ad3a375335c4585f110986aa2d85dccdf3e8d76aa58ceb62c74a4f6c9758d0c1", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "8ce2bd04-544d-4060-98a3-a6ca3e29e868": {"doc_hash": "fc71c48c006047c2c2afadd25c89f950d690eb8df4dd687eb85947632fa039a6", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "b263a9e2-496f-4680-857c-3759017d4fcd": {"doc_hash": "4a9cf09e5d33eaf1c0e8f6703951d4c7b910b178e28c46af063589196a902aaa", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "91bd5b07-7934-4456-94e3-30c014e306fd": {"doc_hash": "9de01c8325089fb322b5656d301e0f177aae1fcdbe9948b7994189f4c7925091", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "0906c897-2d71-433e-8780-c24e0112d357": {"doc_hash": "4f94d34c841675dae1913d07233ad0c4c6bfb6a2def8b31b503dbb411e735d0a", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "fd110e99-b3bc-4167-8b59-1c4c6697450f": {"doc_hash": "814fbd350bc523ea0a5f3987b862d2b6663c1dc0e018cf75fd575dd03c09b0b8", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "f57f536f-7e36-4634-abb1-690b53f0bd05": {"doc_hash": "28d41b7f894482126a59002f9ed04436f150c88600b79ba5de2617df72882ab0", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "c3314ab4-fc78-4c9f-961f-1144ee720d67": {"doc_hash": "f647f2ac8164bd1f350c28d49f9d7a4a52762a13ecd60def11ff28a35511e7e7", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "d54cbfeb-69b0-4286-9415-5d9ded2ab720": {"doc_hash": "0ee786f231024adc371f344f3104cee6b877a809033aae6b4790f2569a63c41c", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "b8517c43-bc1e-417d-a6d9-ae1d884c3a84": {"doc_hash": "8758463a19261efe611021c957f38bc1083201250c3a652fe647419841951cfc", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "9ee615c3-8c00-4109-b2e1-6bc8356d134f": {"doc_hash": "0fed55b8a74643e8cb77ff37a0fb998f370383f68a0356501ea3c965b5c8c26b", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}, "1a0b3f07-7ee5-4183-937e-6de0d1c392c6": {"doc_hash": "df8688f833ce8d0464900236ff824badfdf3505771e28ed1e8d5de8a7c1f6f66", "ref_doc_id": "10b39136-08ab-44a8-85cb-021f8824bcd8"}}, "docstore/data": {"0889e864-4b4a-4847-a9ef-7a522c4930c0": {"__data__": {"text": "Splunk Observability Cloud, G2.com, Akash r., Software Engineer, 5, It provides matrices and traceswith logs where debugging become more easy to, There should be some good tutorials for creating alerts as beginner it was bit tricky to use it\nSplunk Infrastructure Monitoring, G2.com, Zafar u., Country Business Lead Huawei Product line., 5, Monitoring and Correlation objective of SPLUNK is unmatched in the industry, Configuration is hard and not easy to understand\nSplunk Infrastructure Monitoring, G2.com, Verified User, nan, 4, The beauty ofthe splunk is it can accept any log source and any data format. The dashboard and other visualization are best in market.\n\nIt really add values to the business, The Splunk license is too costly. Overhead of managing large number of HFS and idxs.\nSplunk Infrastructure Monitoring, G2.com, Nikhil B., Platform Engineer, 4, The Dashboards are pretty much attractive. I like the idea of seeing all the resources in one dashboard., Nothing as of now. It may require good Documentation with more tutorials.\nSplunk Infrastructure Monitoring, G2.com, Verified User, nan, 5, I really love this product. It allows me to have eyes on glass for all of my different applications and services. They also offer an app which allows you to view this on mobile device too. Splunk has a wide range of products that works well together to provide high level views, Complicated to learn SPL language that is required for most Splunk deployments and instances\nSplunk Infrastructure Monitoring, G2.com, Mostafa F., Senior Enterprise solutions Consultant, 4, Horizontal Scalability in Architecture\n\nAbility to Deploy Your Own Analytics in Threat Detection\n\nOne Platform With Single Backend for Log Management, SIEM, UEBA, and SOAR\n\nSaaS Offering but without UEBA, No SaaS UEBA\n\nLimited Built-In Content in Threat Detection\n\nFlat Pricing - Priced by Number of Employees which is not practical as the number increases\n\nData Privacy With GDPR Specific Workflows in compliance\nSplunk Infrastructure Monitoring, G2.com, \nAnju A., Project Manager - Digital Foundation Platforms, 5, Senior Enterprise solutions Consultant, Too many technologies bring disruptions; difficult to find budget skills in marketplace\nSplunk Infrastructure Monitoring, G2.com, Verified User, nan, 4.5, Live dashboard on the data fetched and tips and suggestions for scripts., Not an easy plug-and-play integration for other data sources.\nSplunk Infrastructure Monitoring, G2.com, Verified User, nan, 3, Dashboard and reports\n\nEasy devices discovery, Alerting system\n\nAlerts throttling\n\nPoor threshold setting\nSplunk Infrastructure Monitoring, G2.com, Verified User, nan, 4, User interface is nice and clear. Interactivity is good. Created dashboards and data searching features. Recently started using this . Currently using microsoft powerBI for BI analytics but having some performance issues . We heard about splunk tools and trying to analyze features splunk provide . I have tried Splunk for charts and pivots., As I started using recently not aware of many features but used selective and found them easy to use and install. Mainly I used setting up dashboards and pivot with data. Main usage of the tool for me is for web analytics with large data. Performance is big concern as our data is quite large and we need to extract reports /charts for analytics.As on now I didn't find anything to dislike. Tool is easy to use and handle as per my needs. I do wish to learn commands /query to search datasets.\nSplunk Infrastructure Monitoring, G2.com, \nNikica G., nan, 5, It's very inovative and simple tool for monitoring cloud invorement that gives you so much useful data., Excellent product for every IT guy.\nSplunk Infrastructure Monitoring, G2.com, Verified User, nan, nan, Power to analyze the huge data and use it for business, Error/exception messages could be better and more specific.\nSplunk Infrastructure Monitoring, G2.com, Verified User, nan, 3.5, Doing any type of performance testing in a \"real environment\"", "doc_id": "0889e864-4b4a-4847-a9ef-7a522c4930c0", "embedding": null, "doc_hash": "c7d480ccf5f79776c05acc3b056df10bc98067f3f304bba481e99e1092343df9", "extra_info": null, "node_info": {"start": 0, "end": 4015, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "3": "ac706d57-0a59-412d-a131-e613fbcb9675"}}, "__type__": "1"}, "ac706d57-0a59-412d-a131-e613fbcb9675": {"__data__": {"text": "nan, 3.5, Doing any type of performance testing in a \"real environment\" is hard. Replicating your production environment on a development machine is near impossible to do exactly, and in general you don't want to poke around too much in your actual production environment. SignalFX is great for handling those situations where we want to get better visibility into bottlenecks in our production environment. Using their API to add traces to our code is very simple, and the dashboards are generally easy to read., Having to add traces to various functions in our software and merge in PRs can be a bit of a pain (especially without a continuous delivery environment). It would be nice if we could toggle our traces as needed.\n\nAdditionally, setting up new panels on the dashboard is not as intuitive for a first-time user as I would like, especially coming from a Kibana background.\nSplunk Infrastructure Monitoring, G2.com, John R., Director, Technical Operations, 4, Their visualizations of all different kinds of data are great. Their pricing model (data points per minute) really shows that they understand SaaS customers. This helps me manage spend by choosing what metrics I report and how often.\n\nSignalFlow has been very useful for more complex charts. Their recent improvements to detectors is very welcome. We use a long list of their integrations (redis, mongodb, ES, C* and more) are great. They open-source the collected plugins which allows us to make local changes.\n\nLike us, they are growing and looking to provide more and more features. We plan on using many of these new features as they are released / mature., The occasional \"Down for Maintenance\" pages (~2x / month) that require me to reload all of the wall-mount displays in the office. Occasional (less and less frequent) obviously bad data in charts. Usually fixed by a page reload.\n\nI still wish for more flexibility / features for building and reusing charts and dashboards, but they have implemented a lot of our requests.\nSplunk Infrastructure Monitoring, G2.com, \nTim R., Sr.Devops Eng, 5, While the product is excellent I have to say that what I like the best has been the top tier customer service. Every time I've had any kind of issue or question they have been quick to respond, polite, engaged, and actively seek to ensure I'm totally satisfied and everything is working.\n\nThey've also been very receptive to feedback and many of my suggestions have made it into the product., I wish it was easier to turn off metrics that I've got wired up to alerts. This doesn't come up often for me: mainly when I'm decommissioning a server.\nSplunk Infrastructure Monitoring, G2.com, Aaron \"Checo\" P., Product Manager, 5, Integrations and customizations with SignalFx are relatively easy, and the support provided by their teams is second to none. Since adopting SignalFX, we haven't seen any noticeable downtime events or impactful service interruptions, the company is responsive to feature requests and bug reports, and our own teams love the functionality of the SignalFX site., There are a few minor limitations that really fall into the \"would be nice\" category in terms of urgency. Graphs and detectors cannot process more than 10,000 metrics (or hosts) at a time, alerting is limited to a single condition (instead of \"alert when you see 'x' AND 'y' conditions concurrently\"), and a few other features we'd like to see are missing, BUT solutions to all of these concerns are in their roadmap, so we're not overly concerned about them.\nSplunk Infrastructure Monitoring, G2.com, \nElias S., Technical Lead, 4, SignalFx offers an extremely powerful paradigm, which really lets you analyze your data. It's pretty straightforward to ingest tremendous quantities of data, and then slice it on the fly however you want., The UI/UX are really really terrible, and need work. In particular, there are some pretty critical gotchas related to how timeseries are aggregated for display over long intervals (called rollups in their nomenclature) that aren't well exposed, and related to setting up detectors as realtime for alerting (called max delay in their", "doc_id": "ac706d57-0a59-412d-a131-e613fbcb9675", "embedding": null, "doc_hash": "3a785f83b46644e9eb2b5d81aeae2de3039710811d93d336e4c6a5c7ff52dd0c", "extra_info": null, "node_info": {"start": 3956, "end": 8083, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "0889e864-4b4a-4847-a9ef-7a522c4930c0", "3": "1d2ca6d9-a9ca-4bae-8ac1-d4de60496017"}}, "__type__": "1"}, "1d2ca6d9-a9ca-4bae-8ac1-d4de60496017": {"__data__": {"text": "and related to setting up detectors as realtime for alerting (called max delay in their nomenclature).\nSplunk Infrastructure Monitoring, G2.com, Stephen S., Software Engineer, 3.5, I love the amount of analytics power that SignalFX gives you. They definitely excel in clearly delivering and displaying lots of data. The pre-built dashboards and charts for common situations are also very helpful., While it is easy to work with something that is already present in SingalFX, it is very difficult to start from scratch. Graphs and charts will look great once you create them, but digging into any options beyond that basics can be challenging and is not well documented.\nSplunk Infrastructure Monitoring, G2.com, \nZach M., Technical Lead, 4, SignalFx makes it easy to visualize and alert on time series data. If you want to make charts of system load, requests per second, and so on, they will likely serve you well. Their tag/dimension model works well for our use case., SignalFx doesn't (yet) have a good story on ephemeral data. If you're monitoring docker containers that come into and out of existence frequently, you'll find pain points. Also, their metrics catalog can be very slow and unhelpful - this makes it difficult to find your data if you don't know its exact nomenclature.\nSplunk Infrastructure Monitoring, G2.com, \nDJ E., \nLead DevOps Engineer, 4, Simplifies collectd use, allowing users to leverage the power of collectd without all the headaches of attaining visualization and actionable alerts, SignalFX is somewhat difficult with newer integrations. A lot of iteration and support usually is needed when setting up a newer released integration, especially for very generic integrations such as StatsD.\nSplunk Infrastructure Monitoring, G2.com, Osman S., Member of technical staff, 4, Its a very well architected product. I love the ability to send metrics with high number of dimensions and then aggregate them in a lot of different ways (average, max, min, topk, percentiles)etc., The alerting system needs to improve. We are using it for alerting on our production system and there are times when the alerts behave funkily.. though a lot of these cases are gaps in our understanding emanating from unclear descriptions.\nSplunk Infrastructure Monitoring, G2.com, Verified User, nan, 3.5, I like thier customer support the best. They are pretty fast with resolving the issues or telling me what to do. I have been able to mail the SA's directly and they have been pretty fast, Few of the features i feel were not planned properly . E.g aws tags comes with the prefix aws_ , this screws up my dashboards as my application might be reporting with test while signalFx says aws_test and i cannot use both of them in the same dashboard.\n\nSignalFx mostly is playing catchup with leaders such as Datadog. As a product, i feel datadog is much more matured compared to signalFx.\nSplunk Infrastructure Monitoring, G2.com, \nLuca G., Software Engineer, 3,5, Detectors are great. They could use a faster preview and better explanation for algorithms used., The UI is not user friendly because:\n\n- Confusing when a dashboard is saved or not.\n\n- Not staightforward to move graphs from a dashboard to another.\nSplunk Infrastructure Monitoring, G2.com, \nBoban J., Senior Web Developer, 3, It's easy to setup alerts when things go wrong, easy to filter bigdata, dashboards are super-useful., Dashbords setup/find/update can be a pain, sometimes is stuck(freeze) when needs to introduce options in filtering. Please improve dashboards management ux.\nSplunk Infrastructure Monitoring, G2.com, Jishnu N., Service Operations Manager, 4, Very user friendly and easy to use and easy to set up. Value for money! Nice work on the GUI and time shift! Easily labelled fields and intuitive options., Response time when raising incidents with Signal Fx\nSplunk Infrastructure Monitoring, G2.com, Verified User, nan, 4.5, I've used a couple of other seeing platforms. It's almost always", "doc_id": "1d2ca6d9-a9ca-4bae-8ac1-d4de60496017", "embedding": null, "doc_hash": "c2c24eb4c889b033bddcc0d405e49cf825d543f365a341d8f0a4656e83dd19f2", "extra_info": null, "node_info": {"start": 8071, "end": 12046, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "ac706d57-0a59-412d-a131-e613fbcb9675", "3": "732ef8ef-1247-4ca7-9f4d-16452f459bd4"}}, "__type__": "1"}, "732ef8ef-1247-4ca7-9f4d-16452f459bd4": {"__data__": {"text": "4.5, I've used a couple of other seeing platforms. It's almost always impossible to create an alert against two signals, but with signalfx it's very easy., It's sometimes opaque why an alert didn't fire. Also, it's not a great for alerting on one off events.\nSplunk Infrastructure Monitoring, G2.com, Verified User, nan, 2, works mostly like how metrics systems work in big companies i've worked before (Amazon, Twitter), 1. It's not obvious how metrics in my stack(python/django) translate to metrics in singalfx\n\n2. the catalog is impossible to browse\n\n3. everything need to be done in the UI. I would love to be able to save configs in my codebase and to be able share config/code for templates\nSplunk Infrastructure Monitoring, G2.com, Verified User, nan, 4.5, We implemented SignalFX fairly quickly on our AWS environment. The data we collect is hard to get with tools like DataDog. The SignalFX team was extremely helpful while implementing the solution., User Interface could be lot better when compared to similar products in the market.\nSplunk Infrastructure Monitoring, G2.com, Verified User, nan, 5, very good performance and great features. the product is progressing and new features are always added. great alerting and visualizations., Alerting configuration is quite complex to define so you dont get bad alerts\nSplunk Infrastructure Monitoring, G2.com, \nMohit G., nan, 3.5, Support is awesome and so is general uptime, UX is sometimes confusing and graphs are not easily understandable.\nSplunk Infrastructure Monitoring, G2.com, Verified User, nan, 4.5, SignalFX dashboards have helped track several transactionsDashboards UI can be improved to facilitiate drilldown easily. Latency to load some of the dashboards is an occasional concerns., nan\nSplunk Infrastructure Monitoring, G2.com, Verified User, nan, 4, UI to visualize data points is sleek. Signalflow APIs allows programmatic access to data points ingested and you can use that to build customized monitoring on top it., Charts sometimes does not load in reasonable time if there are lot of metric time series.\nSplunk Infrastructure Monitoring, G2.com, Verified User, nan, 4, Love the ability to define metrics using statistical measures., Dashboard is a little cluttered, hard to organize dashboards and distribute across a number of users.\nSplunk APM, G2.com, Verified User, nan, 4.5, It is one of the best tool to track performance and logs for an application. It gives feasibility to end user to create different queries to get their required statistics for the application.\n\nOne of the best think i like most is that we have different timeline options and we can search with any key words and this tool will display related logs in quick response.\n\nOther thing that i like most is that we can have visualized dashboard for our statistics and logs as per our requirement which makes other to read same gor better understanding., Some time it is difficult to get proper logs and also if we are fetching results for longer time, this tool takes more time tome to display logs or results.\n\nBut overall it is one of the best monitoringTOOL which i ever used.\nSplunk APM, G2.com, \nKevin V., FEMA Housing Program Inspector, 4, Our QA and engineer team love the high quality data delivered from this tool. They've reported that in the past many things get missed, but with Splunk APM some of the smallest technically issues always get caught, which not only makes our products better, but makes our customers happier., It can be difficult to pull logs and data reports sometimes, and we wish that process was easier. We usually just pull broader reports so we dont have to do it as often, but sometimes we only want to focus on a specific log and its troublesome doing so.\nSplunk APM, G2.com, Prateek G., Development analyst, 4.5, This application is used for log monitoring. You can easily search, analyze and visualize the information from application and tool logs., There is nothing which I dislike about this application.\nSplunk", "doc_id": "732ef8ef-1247-4ca7-9f4d-16452f459bd4", "embedding": null, "doc_hash": "10dda0df20ef0fbd401f2a106ce4415e3fcd2f4a213bcbcf66fb8eec30fccae9", "extra_info": null, "node_info": {"start": 12062, "end": 16068, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "1d2ca6d9-a9ca-4bae-8ac1-d4de60496017", "3": "bc86f2c5-666d-48fd-bfb5-1853077b08ba"}}, "__type__": "1"}, "bc86f2c5-666d-48fd-bfb5-1853077b08ba": {"__data__": {"text": "application and tool logs., There is nothing which I dislike about this application.\nSplunk APM, G2.com, Verified User, nan, 5, Monitoring can be achieved at no infrastructure cost. The report, dashboard and alert functionality is awesome, Nothing as such. I like it as far. It satisfied all our needs.\nSplunk APM, G2.com, \nVivek P., Senior data engineer, 4, Splunk is having good features like filtering log, creating dashboards and Alerts\n\nReal-time log analysis\n\nReal-time alert and monitoring\n\nEasy to setup\n\nGood support\n\nAll logs in one place in a readable format\n\nHistorical log analysis\n\neasy to create Dashboard, Integration with other tools makes it complex.\nSplunk APM, G2.com, Jack J. K., Information Professional, 4.5, Detailed analysis of all types of information that is implemented in the different security systems that our company has, thanks to this we can collect hundreds of reports, which show us where we are failing and what improvements we can make to have a more secure environment of what it is currently, detecting all kinds of cybernetic holes, which can be an open door, to unscrupulous people, who try to access our information, the implementation of splunk is very adaptable, that can be deployed in the cloud, , for scanning and protection of this type of information, or in the physical equipment, where you can also perform the same process of monitoring and constant protection, Splunk support is very fast, and respond to any question almost immediately., It can take a long time to load certain features of the application when it is being used online, I have tested it on different computers and performed internet stability tests, and it also takes time to load, it seems that there was a bug, in certain features of the application , which slow down the load of these.\nSplunk APM, G2.com, \nAdam B., Director, Mobile Product Development, 3.5, Searching your logs is made simple with Splunk. Learn the syntax and go searching for clues to any problems you're setup to record for., Pricing. It's understood the sheer amount of events posting to Splunk, bit their pricing is a bit high for what they offer.\nSplunk APM, G2.com, Verified User, nan, 3.5, Log review, pattern search, alert, dashboard, statistics. The performance is very good. Relatively easy to teach yourself to use., Can be cumbersome when editing the date/time range. User and role management can be challenging depend on how things were setup.\nSplunk APM, G2.com, laura c., IT Specialist, 4.5, Excellent software through which we can search and analyze all our IT infrastructure sitting at a single place. It has an excellent customer support and the user community is really healthier. Absolutely neat and simple product. Monitoring work is simplified in the presence of lots of plugins. It provides users with wide range of information. After configuring, one can easily and quickly detect anything he wants. Most powerful software for analyzing, visualizing, transacting and creating auto alerts immediately., One of the cons of this software is that it is quite costly. Sometimes this software takes quite long time in loading but this is a minor issue that can be resolved. Another limitation is that as it is complex so it is not suitable for larger systems. It needs some improvements.\nSplunk APM, G2.com, Verified User, nan, 5, It is fast, simple and can track any details in Log just like Thanos's Snap., I am not sure if any one will dislike SPLUNK. But yea sometime it takes time to show the home page. Otherwise it rocks.\nSplunk APM, G2.com, Carlos Eduardo P., Coordenador de projetos, 4.5, The facility to index logs in format key-value and the easy way to create monitoring dashboards.\n\nThe team responsible for monitoring learned to use the tool very fast. :D, Expensive tool, you need to pay for indexed log volume/day.\nSplunk APM, G2.com, Verified User, nan, 4.5, The best part about Splunk Cloud is the online community and support that the Splunk team provides. Any question you have can be", "doc_id": "bc86f2c5-666d-48fd-bfb5-1853077b08ba", "embedding": null, "doc_hash": "f5a71dd717ea810a8fbe2b9be845031120785e236523831b35a5a8c3d1a8b5a8", "extra_info": null, "node_info": {"start": 16048, "end": 20062, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "732ef8ef-1247-4ca7-9f4d-16452f459bd4", "3": "4f880336-617a-4346-a2a4-8689328dde85"}}, "__type__": "1"}, "4f880336-617a-4346-a2a4-8689328dde85": {"__data__": {"text": "is the online community and support that the Splunk team provides. Any question you have can be answered by an expert in their online board in just minutes., I'm not a huge fan of the non-customizable UI in general of the Splunk platform. It can be difficult to customize the design component.\nSplunk APM, G2.com, Verified User, nan, 4.5, Ability to collect and index data and then performing search and analyze the data with ease, I feel Splunk dashboard for visualization could have been better with more customizable options and widgets.\nSplunk APM, G2.com, Jeff K., Local Support Engineer III, 5, Splunk takes the tedium out of sifting through lengthy log files. It helps to eliminate the possibility of missing important events in the volume of events in a log., At first it took some time to get familiar with the Splunk Programming Language. It didn't seem very intuitive.\nSplunk APM, G2.com, Verified User, nan, 4, Security and Manageability. It's a product with high compliance necessity, and they meet demand., With those security requirements come an additional level of restrictions in terms of vetting apps.\nSplunk APM, G2.com, Verified User, nan, 4, It has a lot of queries we can run. There is a huge leaving curve though, Being to the right questions takes time n gives a lot of results which have to sift thru\nSplunk APM, G2.com, Carlos Z., Associate Security Consultant, 4.5, Time to value data and versatility, dashboards and visualisations to enrich data, Nothing big, just some restrictions compared to the enterprise version\nSplunk APM, G2.com, Verified User, nan, 5, We moved our on prem splunk instance (100gb a day) to the cloud and its been amazing. Its so nice not having to manage the infrasturcture (except for heavy forwarders), Having to contact support to install splunk apps. Sometimes we have to wait for them vs doing it ourselves faster before.\nSplunk APM, G2.com, Verified User, nan, 3, It is good for capturing, indexing and correlating real time data in a searchable repository from which it can generate graphs, reports, alerts, dashboards and visualizations, Does not work effectively for small amounts of data. Data needs to be quite big and wide range\nSplunk APM, G2.com, Verified User, nan, 4.5, You start driving value of your business directly instead of spending time on infrastructure and setup., For app deployments we have to go trough Support which may take more time.\nSplunk on call, G2.com, \nJustin S., DevOps Engineer, 5, The Rules Engine is great - I've used annotations to attach runbook articles to our alerts. The timeline interface is simple and easy to understand., VictorOps was recently acquired by Splunk, which is notorious expensive, so I'm still a little worried about future price hikes. For now, however, Splunk has actually reduced the cost a bit for us.\nSplunk on call, G2.com, \njonathan m., nan, 4.5, VictorOps offers integrations into all of our production environment, both cloud and on-prem; as well as tie into our primary group-communication package. We are able to route these disparate alerts through a singe notification tool; so that we do not need to install or monitor a variety of apps. The fine-grained controls that are in place for each of our data teams is also wonderful. TeamA needs 15 minute escalation thresholds with a backup team member; while TeamB only requires an hour-long window. Management can be slotted anywhere in the escalation chain as required by each team., battery usage when on call; and the phone app doesn't have 100% feature parity of the web portal. But both of those may be the nature of the mobile beast.\nSplunk on call, G2.com, \nBrian A., Director IT & Cloud Operations, 5, Both the web and mobile app are fantastic that allow for full control whether you are on a computer, mobile app, or Slack., That the app wakes me up in the middle of the night! Truly don't have any dislikes with the solution. Support is always willing to", "doc_id": "4f880336-617a-4346-a2a4-8689328dde85", "embedding": null, "doc_hash": "6184cdf59308808ce899004219d327715aea063e1282989537c1a56ca955e22f", "extra_info": null, "node_info": {"start": 20063, "end": 24006, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "bc86f2c5-666d-48fd-bfb5-1853077b08ba", "3": "6e982ddc-23a6-44dc-ba94-8a455805b490"}}, "__type__": "1"}, "6e982ddc-23a6-44dc-ba94-8a455805b490": {"__data__": {"text": "Truly don't have any dislikes with the solution. Support is always willing to assist with any issues including finding a solution due to any specific business requirement you have.\nSplunk on call, G2.com, \nRoberto Enrique R., Operations Developer (DevOps), 5, The ability to handle incidents, escalations and grabbing point duty off my teammates from the mobile app is awesome. Also, the fact that alerts from VictorOps override my phone's sound profile means I can silent my phone and sleep tight while not being worried of missing a critial alert while asleep during 24 hours point duties.\n\nThe app is also light and have seen lots of improvement over time.\n\nWorking with the API is a bliss and it has many integrations with default tools like Zendesk.\n\nI love it. 1000% recommended., I would like to be able to schedule overrides and change regular scheduling from the mobile app for emergency schedule changes.\nSplunk on call, G2.com, Verified User, nan, 5, I use victorops on a daily basis with a team of other devops people, and by allowing us to schedule and customize our alerts whether that be though its many integration points or its various methods of alerting. Its easy for us to switch shifts and set up schedules. I enjoy the many different contact methods it supports so that I can set it to text me, send a push notification or call me., In general I enjoy the android app, it's completely functional, however i'd like it to reach feature parity with the website, i'd like to be able to do all the management stuff i need to do from the website from the app. Besides that, they could also introduce a dark mode on the web version of the application\nSplunk on call, G2.com, Mark B., Director Of Technical Operations, 5, VictorOps' transmogrifier and timeline are features that put them well ahead of other options when I last evaluated them against other providers. The ability to have a running stream of what has happened recently right at your fingertips when an alert goes off is invaluable to understanding the context of the problem.\n\nSimilarly, the ability to amend and modify alerts and information as they flow into the system is incredibly valuable for adding context that is specific to the alert, from links to runbooks and other information to embedded images showing relevant graph data.\n\nThe reports are also rather nice. With the ability to pull in every event around an issue to quickly generate postmortem reports that cover the key conversational points in the chat, the main events that were relevant and other incident milestones.\n\nVictorOps hits the right notes on the main areas you'd expect too, customizable alert sounds, flexible notification options, a reliable app, SSO support, etc. The override for covering for someone is simple, and even more so if you want to just \"take\" the shift of someone else., The SSO support isn't as strong as I\"d like. The scheduling for oncall rotations is one that seems to be really difficult to get right. Almost no-one has found a way to provide a solid solution there. They all work great for co-located teams, but for teams trying to handle on-call rotations for team members around the world things get really dicey -- especially if you want to try to avoid waking people up. I wish this were better supported by VictorOps.\n\nI wish the slack integration were better as well, so that we could more easily include VictorOps in conversations that happen in various slack channels instead of remembering to \"chat\" in its interface. This is not a simple one to solve, but it'd be great to have say, the ability to use commands to enable VictorOps to start tracking chat, then turn it off, etc for individual channels.\nSplunk on call, G2.com, Verified User, nan, nan, We can set up multiple escalation contacts and multiple methods to contact our users. Mobile App is excellent and is kept up to date, especially now that they have implemented Dark Mode. Easy to process tickets in both the mobile app and Web page. Integration with SSO/Last Pass is a winner for us as we don't have to remember our passwords in middle off crisis, Sometimes, instead of clearing out alerts we have", "doc_id": "6e982ddc-23a6-44dc-ba94-8a455805b490", "embedding": null, "doc_hash": "86513383cfc56b146563901fddfd7a6b3d5250d5413cc2415db4c6c3f3aa27a9", "extra_info": null, "node_info": {"start": 24021, "end": 28178, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "4f880336-617a-4346-a2a4-8689328dde85", "3": "e7b6c090-bf1b-436b-9a00-6d96311cb2ce"}}, "__type__": "1"}, "e7b6c090-bf1b-436b-9a00-6d96311cb2ce": {"__data__": {"text": "our passwords in middle off crisis, Sometimes, instead of clearing out alerts we have from Meraki, the all clear message will create a new alert we get paged on.\n\nWhen there a flood of alerts , our integrated messaging room can be flooded with messages as well, but that can be modified\nSplunk on call, G2.com, \nDarion F., Full Stack Developer, 4, This tool was really easy to set up and integrated into slack and email for my team. We were also able to transform the messages from our logging database and got a more specific use out of it., theres not much to dislike as it seems that combined with our other tools its just too great of a fit.\nSplunk on call, G2.com, \nJacques B., nan, 5, The fact that VictorOps has an Android app, and can be set for Push, SMS, Email, and Phone call notifications, as well as can be integrated with Slack. I find the web-portal a little bit sparse, and cumbersome, but the actual service works great., find the web-portal a little bit sparse, and cumbersome,\nSplunk on call, G2.com, \nPeter W., Chief Operating Officer, 5, Breadth of integrations couple with the smart way you can tailor alerts using their Transmogrifier, Some of the interface can seem a little cluttered.\nSplunk on call, G2.com, Verified User, nan, 5, Multiple team and personal escalation paths ensure that alerts are sent to the right person, not wasting anyone's time., I leave the desktop app running all the time, and sometimes I have to refresh to see the \"timeline\". This is a very minor problem, it does not detract from the overall app functionality (and it could be my browser).\nSplunk on call, G2.com, \nErnest M., nan, 4, More than just oncall scheduling, reaches deeper into the incident management process with chat integration, reporting, and the transmogrifier., The oncall calendaring is greatly lacking, you can't make by-hour, by-day schedules without crazy workarounds. Reporting's still pretty basic.\nSplunk on call, G2.com, S N., nan, 4, Great alternative to PagerDuty and other similar services. More reasonable pricing. Office telephone call-based alerts., The user interface can be hard to navigate.\nSplunk on call, G2.com, Verified User, nan, 5, Fully customisable and has a lot of sources to get alerts in to victor ops., More fluid setting of roster - we don't just have a simple rotation - it varies quite dramatically and requires someone to update the roster every few weeks.\nSplunk on call, G2.com, Verified User, nan, 5, Powerful on-call scheduling and reliable service. Customization works exactly as we need it for notifications and rotations., Being on call. Lack of integration with Autotask.\nSplunk on call, G2.com, Spencer H., Senior Product Manager, 1, I like that I can create incidents and respond to tickets., Not user friendly. Very difficult to configure. Some simple, helpful features are missing (versus competitors). My development teams do not want use it because of these issues.\nSplunk on call, G2.com, William C., Director of Client Information Services, 5, Easy: the people.\n\nI tested, built, deployed, configured, managed, and process-improved a critical VictorOps installation for a popular and growing Seattle-area website. I was there as a SQL DBA, but have a knack for the space after 20 years with folks like Microsoft Expedia, Zillow, Hewlett-Packard, BSU, Washington State, Allrecipes, and Wizards of the Coast. I've seen a lot of environments through a ton of seasons of growth and development and massive over-night site upgrades and painful outages. it may be the one time I will give myself permission to say, \"Been there, done that.\"\n\nVictorOps is the first time I worked so closely with a tool and the organization behind it. I was determined to put an end to the numbing deluge of alerts keeping folks on edge all hours of every day.\n\nWe", "doc_id": "e7b6c090-bf1b-436b-9a00-6d96311cb2ce", "embedding": null, "doc_hash": "5e976a576785394fce31f87b389c2c9cec61bb2178a1641a5468fe9355bacc27", "extra_info": null, "node_info": {"start": 28172, "end": 31981, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "6e982ddc-23a6-44dc-ba94-8a455805b490", "3": "25003129-bbd9-42f7-9897-49ff1c2054bc"}}, "__type__": "1"}, "25003129-bbd9-42f7-9897-49ff1c2054bc": {"__data__": {"text": "deluge of alerts keeping folks on edge all hours of every day.\n\nWe had multiple monitoring systems, including, ouch, SCOM, and had to knit it all together. I wanted clean, actionable alerts that would reliably escalate. I wanted historical data that could be used for Root Cause Analysis. I wanted a solution that would be effective from anywhere and any device.\n\nVictorOps delivered, and more.\n\nWe got things quieted just in time for the dust and noise of a major migration into the cloud. If you have done that work, you understand things can get a little hairy. To top things off, we also encountered a lovely DDOS that took us down for an entire Saturday.\n\nVictorOps was essential to both, and we were just barely cracking into the really good features.\n\nDid I mention the people? Send them an email and mention this review and say hello. You will know what I mean right away. VictorOps is good people building important solutions for our time., Well, it can be tough to be critical of something for which I have such affection. I will say the thing that comes to mind a year later was the difficulty of managing the calendars. I know I could have reached out for help earlier, and believe that would have made it easier. Still, most of what I worked with was (to it's credit) very intuitive. It seems (again from old memory) that sometimes I had to click in and out of different things to remember how to set up overrides or configure for multiple teams. Just before I left we were looking at extending the deployment into the coroporate IT space. I remember it was getting a bit tricky.\n\nThe other thing was the transmogrifier. That needed some development into a more robust rules engine. I wanted to nest things, and couldn't. I wanted to create conditional flows that were easy to track, but couldn't. I understood at the end that more development was underway, so feel confident it must be looking great a year later.\n\nI feel like there was one more thing. I'll write again if I think of it.\nSplunk on call, G2.com, \nValerie H., Service Delivery Consultant, 5, Support is ALWAYS willing & able to solve my issues & answer questions!, There has been nothing that I've disliked or had a negative experience with.\nSplunk on call, G2.com, \nDavid L., Director of Development, 5, VictorOps is an amazing company of great people! Anytime we've had issues with the platform they've reached out to us through various mediums including social media to keep us up to date and aware of what's happening. The service just works too. We have never really had any issues that caused any major issues with our day to day work., The only issue I've ever really had is that their UI isn't the greatest thing in the world, but they've been improving it quite a bit lately. Their API is still young as well and feels a little clunky at times. Again, it's something that they've been improving lately.\nSplunk on call, G2.com, \nScott P., Systems Architect, 4, Single pane of glass to see the current situation of systems. Having messages from various systems hit the same timeline makes it easier to spot wide spread issues., API can be a bit obtuse. There are some features that only appear to exist in the mobile app.\nSplunk on call, G2.com, Verified User, nan, 4, i like the separate columns for triggered, acknowledged and resolved alerts, i cannot easily search, and cannot delete comments\nSplunk on call, G2.com, \nCarlos G., Manager, Software Development, Delivery Pipeline Engineering, 4, What I like the best is the simplicity to set it up and to integrate with other tools. as well as the versatility to create different teams with different escalation schedules and paging policies. I also like having the ability to alter some of the alert fields using the transmogrifier., There are some limitations when integrating with other tools. E.g., I use Jira to manage issues, and I can set Jira up to trigger sending alerts to VictorOps. However, these alerts only contain limited information from Jira, I also miss the ability to communicate back to", "doc_id": "25003129-bbd9-42f7-9897-49ff1c2054bc", "embedding": null, "doc_hash": "dc33ba470050ada3a2e9ba2141c97b70204e3b643b95fc6378ff5a53429363ee", "extra_info": null, "node_info": {"start": 31999, "end": 36043, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "e7b6c090-bf1b-436b-9a00-6d96311cb2ce", "3": "d4a49c63-7213-455a-8413-e4845faf8793"}}, "__type__": "1"}, "d4a49c63-7213-455a-8413-e4845faf8793": {"__data__": {"text": "only contain limited information from Jira, I also miss the ability to communicate back to Jira. Another thing that I can't do, is to re-route issues to a different person, so when I acknowledge a case, I become the owner and I can't delegate it to a different person.\nSplunk on call, G2.com, J. Steven Y., Site Operations Manager, 5, The fact that I can combine escalation/rotation schedules directly into a tool with consolidated monitoring was exciting. The added bonus of being able to route between various escalation points and direct communications for incidents is simply mind-blolwing., The only thing thus far I have slight issue with is not having a tabbed view of environments. I would like an easier way of viewing what is production versus pre-prod alerts to better filter what takes precedence. I can do this in a round about way with transmogrification of incoming events and manual filtering, but I would like it to be simpler and built in.\nSplunk on call, G2.com, \nFilipe F., Cloud Engineer, 4, The incident timeline is always showing what are the recent events on our infrastructure. I also like the way it is easy to integrate external alerting tools like CloudWatch, Zabbix, NewRelic and even simple bash scripts can use just curl to create an alert.\n\nThe follow-the-sun team rotation is also awesome, we use that on our team and it was really simple to setup and get started using., It is a little bit expensive which makes difficult for smaller companies to use.\nSplunk on call, G2.com, \nMatthew F., IT Technical Support, 5, Instantaneous alerting for outage, ability to delegate alerts to team members., Since the calls use text to speech, its sometimes difficult to hear the name of the server which has an outage, though once aware you can just check the app.\nSplunk on call, G2.com, \nChad L., Director, Technical Operations, 4.5, VictorOps has given us a place to send all alerts. Continuous integration, infrastructure monitoring, Zendesk, etc. That means that we spend less time configuring alerts in multiple different applications and instead configure them once in VictorOps. It also means not having to alert 20 different people, only the on-call user will know (if we choose so) the alert is happening and this has fixed the alert fatigue we were experiencing., The on-call scheduling could use some tweaking. It works well for teams that hand off on-call on a consistent schedule, but we have one team that might hand off on-call multiple times during the day and the hours might not always be the same day to to day. Having a calendaring system (not unlike Outlook meetings) as an option would be handy.\nSplunk on call, G2.com, \nCameron H., Site Reliability Engineer, 4, I love their responsiveness to the community and their working directly with us to make the best of their solution. Web hooks and other features are coming along nicely. The company really does well in the DevOps realm and provides CI/CD on their product.\n\nAny time I have an issue or a feature request the team is quick to respond and to implement requests.\n\nThe team also is a leader in the DevOps community and they are willing to share their experiences with other teams out there.\n\nI also love the fact that they are a local company so we are able to collaborate with them in person., Nothing that I have disliked hasn't already been addressed. The one they are working on right now is the sms length sent from VO but that is more on the Nagios side of the house than VO.\nSplunk on call, G2.com, \nSky L., Senior DevOps Engineer, 4, The ChatOps nature of VictorOps is one of the biggest reasons we chose it over competitors. They are a growing company and very responsive to customers needs. Anytime we've ever had an issue or requested a feature they've replied immediately and kept us informed of their progress. Aso, integrations! The amount of integrations (DataDog, HipChat, StatusPage, etc.) already matches our existing needs and it continues to grow. On top of all that the Transmogrifier has been very useful", "doc_id": "d4a49c63-7213-455a-8413-e4845faf8793", "embedding": null, "doc_hash": "37c1c970a05070895c4176396cdca43b0aa7eadccc54cca0e3d681d18d00492f", "extra_info": null, "node_info": {"start": 36023, "end": 40051, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "25003129-bbd9-42f7-9897-49ff1c2054bc", "3": "db579a1b-332d-49c2-99d8-6115a509c0e3"}}, "__type__": "1"}, "db579a1b-332d-49c2-99d8-6115a509c0e3": {"__data__": {"text": "to grow. On top of all that the Transmogrifier has been very useful for us in amending alerts with critical information like graphs and Runbooks., The API is not as robust as I would like, but there are many built in integration's. That is being corrected though with many improvements being added and in the pipeline.\nSplunk on call, G2.com, \nAaron A., DevOps Consultant and Evangelist, 5, VictorOps has a very clean, streamlined approach to alerting and some excellent DevOps philosophies tied into product design that really create a top-notch product.\n\nMy favorite feature is the Transmorgrifier that allows you to attach annotations and runbooks directly to an alert. So in the same breath that you get alerted about a problem, all the tools you need to fix it, can be linked. Very, Very handy.\n\nThe timeline layout lends itself well to the ChatOps philosophy and quickly allows you to see exactly whats happening. If your response is completed in Chat as well, it can all be exported in a single PostMortem Review. Very handy for quickly getting from Problem to Fix to Review and improvement., The only real issue I have with VictorOps is the available API. There are some issues with the quality and quantity of the API currently published, but they are working on this now. They have also improved with the availability of outbound Webhooks that I have not yet had a chance to dive deeply into and incorporate in our own processes.\nSplunk on call, G2.com, Verified User, nan, 4.5, Hands down my favorite aspect of Victorops, besides the fact that it integrates with nearly every monitoring tool on earth, is the Ack Back feature. With our previous on-call tool, alerts would be routed to the on-call sysadmin and there was no way knowing if it was a single flap or a critical issue until we actually dug in and investigated.\n\nWith Victorops, when Zabbix sends a critical alert followed by an OK alert, it automagically resolves the alert and informs the on-call engineer that his services are no longer required. It saves a lot of time and stress and is hands down my favorite feature., The integration with our Zabbix server was not as easy as I had initially hoped. They have automated scripts that were supposed to set everything up, but I had to manually go in and edit their code to be compatible with our installation. I notified their support team of the issue and they said they would be addressing it.\nSplunk on call, G2.com, \nDave N., Director of DevOps, 5, VictorOps is the Cadillac of alert management. The timeline and 'social' aspects of VO are what differentiate it from simple \"beep this person at this time\" offerings and having used it for a few years now, it's hard to imagine operating any other way. Being on call can be stressful but being able to easily 'loop in' help via the chat/timeline features is absolute gold.\n\nIn addition, the ability to change (VO calls them \"transmogrify\" - thanks Calvin!) alerts on the fly is a great feature. For example, we transmogrify our alerts to include a link to a runbook, a direct link to the logs for the service and the status of whatever public cloud we are using. You can also re-route alerts dynamically to a different team., I think my only dislike is with the mobile app. The app generates alerts using push notification with a sound tied to the alert. Alerts have 2 status - alert (duh!) and resolved. Alas, there is only one sound you can associate with an alert. So you get woken up to RED ALERT but it's also RED ALERT when an issue is resolved. It would be great to have separate sounds per state.\nSplunk on call, G2.com, \nIan N., Cloud Services Engineer, 5, From an operation perspective victor ops has allowed my organization to go from purely a reactionary based operational agenda, to a proactive team with awareness filled to the brims. We have the capability to tune and modify our configuration to generate even more detailed reports surrounding events that occur during shifts. Honestly the best feature would have to be the seamless", "doc_id": "db579a1b-332d-49c2-99d8-6115a509c0e3", "embedding": null, "doc_hash": "16cd5ef77e56d6af482663067cfdff53332136f80d560ba87556f2be769b3d24", "extra_info": null, "node_info": {"start": 40073, "end": 44097, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "d4a49c63-7213-455a-8413-e4845faf8793", "3": "79fcf67d-8c85-4505-bb5a-34d28d00d262"}}, "__type__": "1"}, "79fcf67d-8c85-4505-bb5a-34d28d00d262": {"__data__": {"text": "events that occur during shifts. Honestly the best feature would have to be the seamless capabilities when switching from mobile to desktop/laptop interface. I love the ability to ack an alert on my mobile device and read the full details, and then go to my system and write up any annotations corresponding to the alert I received., So far you have the ability to isolate alerts to a specific team. I think a great addition would be the ability to boil down alerts to a specific team member. We have had several instances where there is only one resource available during a window, and since they are a member of multiple teams an alert was missed. Granted the alerts were not critical or customer impacting but the potential was there. Otherwise this is one of the most solid Alerting/On-Call/Dev tools I have utilized in quite some time.\nSplunk on call, G2.com, \nMike P., \nDevOps Specialist, 5, VictorOps was a great solution for us as it allowed all those on call to pick how they want to be alerted with custom options for phone numbers to call, email addresses to send to, sms and push alerts. Each individual doesn't have to worry about receiving a call at first if they are happy with sms or whatever works.\n\nThe other main plus of the platform is aggregating alerts into one timeline view. Logging into to VictorOps in the app allows us to details about the alert and what is happening around it. We have information such as new code deploys right in the timeline so we can determine if something we changed started the alert. We also use the transmogrifier to change alerts to have our runbooks and information about the cloud environments to see if they are having any issues. We also get collaboration on this timeline as everyone can post about the incident from victorops' interface or via integrated chatops., I would want the ability to post to different slack channels in their slack integration. Right now it only posts to a single channel.\nSplunk on call, G2.com, Stewart H., Principle Engineer, 3.5, My favorite aspect of their system is the ability to highly customize just about everything. We do this via a tool they provide called the transmogrifier which allows you to select fields on incoming data streams and perform actions/transformations on the data. This allows for everything from stopping the alert to adding data to the message. Their call rotation is pretty cool as well; way better than others that I have seen., The ramp up time is pretty heavy handed. It took us approximately a month to get it tuned correctly so that we weren't getting blasted by incorrect alerts. Once it was tuned though, I will say it is very good.\nSplunk on call, G2.com, \nDmitrii M., Lead Systems Engineer, 4.5, With Victorops you have a reliable method for delivery of notifications. You can be sure that notification was seen/acknowledged., Some articles in documentation are outdated (for example page about integration with Nagios XI).\n\nHard to use transmogrifier.\n\nSupport usually contact you during US business hours. I was never contacted during EMEA business hours. However we had no critical tickets filed with support.\nSplunk on call, G2.com, Verified User, nan, 4, very configurable, easy to start and manage calls, configuration of alerts can be a bit cumbersome\nSplunk on call, G2.com, John B., Cloud Architect, 5, Simple to use service that delivers exactly what is needed to handle all of our incident management needs., Some of the transformations have taken some testing to get right, but I really don't have a dislike. Sure I complain and have been known to use it's name as a swear word a few times. But don't shoot the messenger.\nSplunk on call, G2.com, \nLeland G., Associate DevOps Engineer, 4, The plugins, fantastic amount of them! We use them to integrate into all of our systems., Not a whole lot, possibly the interface could use a rework but I saw recent updates coming along to it.\nSplunk on call, G2.com, \nBrian C., Software Engineer, 5, The timeline and being about to talk with your team in the timeline. This helps most when you can not immediately jump on an issue and you", "doc_id": "79fcf67d-8c85-4505-bb5a-34d28d00d262", "embedding": null, "doc_hash": "6ed1e38f243e788c63237cfef13336d3fd0c4cd4ebc34747ac0a50ed93a703b9", "extra_info": null, "node_info": {"start": 44079, "end": 48197, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "db579a1b-332d-49c2-99d8-6115a509c0e3", "3": "a6a7b0af-b576-416a-b269-bfdc135091ae"}}, "__type__": "1"}, "a6a7b0af-b576-416a-b269-bfdc135091ae": {"__data__": {"text": "in the timeline. This helps most when you can not immediately jump on an issue and you see someone else already online that you can work with.\n\nThe APP on android\n\nThe chatops integration, I wish the transmongifier had better support of reg-ex. We are sending all email through victorops and we would like to extra very specific keys and mark as warning, or immediate action.\n\nWhen you have multiple teams integrating into victorops the ACK side of the tool gets busy, we have had many operates ack an alert for the wrong product and and not able to resolve this.\n\nAlso for chatops it would be nice to have specific routes go to different rooms.\nSplunk on call, G2.com, Dan S., Senior Lead Systems Reliability Engineer, 4.5, Easy post-mortems and reporting. Design is based on all incidents being actionable (no bad practices such as snoozing alerts by engineers). Good integrations with third parties. Highly responsive customer support. Ability to re-route an alert within app to another team or team member. Good escalation policies and page out policies that allow each user [engineer] to craft their own mechanisms and policy for getting contacted. Ability to transmogrify incoming alerts to desired formats., Hard to see on-call schedules far in advance.\nSplunk on call, G2.com, \nLuis E. C., Infrastructure Engineer, Value Pay Systems, 4.5, Alerts sorted by entity\n\nAcks\n\nRouting to the right team the first time, Splunk integration could be better. There are some limitations to the Splunk alerting though. I'd like to see an app for splunk on the splunk app store.\nSplunk on call, G2.com, Verified User, nan, 4, Flexibility of product, continuous releasing of new features and improvement of existing UI., Reporting is underdeveloped, administration can be difficult for larger companies.\nSplunk on call, G2.com, Stacey Y., System Administrator, 4.5, I like how tightly it integrates with Nagios for on-call; allowing paging to be fully acknowledged., I don't dislike anything at this point.\nSplunk on call, G2.com, Verified User, nan, 3.5, Many options for alerting. Scheduling is okay, but has a learning curve., Overriding on call is a a pain (one can not assign someone else on call unless admin). Scheduling intricate handoffs is difficult. Page loads are an issue with many teams/many users. Reporting could be more robust.\nSplunk Platform, G2.com, \nAnjali O., nan, 5, Splunk is very good and efficient tools for monitoring purpose. We can add customs third party apps also to splunk that makes it more efficient. We can add customs alert and dashboard which is also cool., There is nothing in particular that I don't like about splunk but if we want to specific speak for something than having splunk on legacy architecture is more painful to handle and manage as an admin.\nSplunk Platform, G2.com, Filippo S., Multilingual Support Specialist, 4, Easy to create quick report and custom logs, The dashboard could be more streamlined and intuitive\nSplunk Platform, G2.com, Verified User, Financial Services, 4, The Splunk tool is one of the most helpful tool for creating customise searching of big data from different system with correct logging and responses. Splunk is very efficient searching tool with different visualisation., I don't see any drawback expect the point that for some system is it able to display data for only 3 months or few months data. Apart from this cost is something which I would consider goes higer if we are accessing large data.\nSplunk Platform, G2.com, Verified User, Banking, 4.5, Splunk platform provides great insights on the back end calls and events that takes place when an application is submitted. The best part of Splunk is it has customization to various events., At times the values corresponding to the query does not reflect, this may be due to some Splunk platform being down. But it occurs at times and that could be resolved.\nSplunk Enterprise Security, G2.com, \nMohammed K., Senior Engineer -Cyber Security, 5, Searching, Apps", "doc_id": "a6a7b0af-b576-416a-b269-bfdc135091ae", "embedding": null, "doc_hash": "36fec67f725e25a82ce89de5c6e44b417b3b5ca0a95024a6b35af45ef00bf213", "extra_info": null, "node_info": {"start": 48202, "end": 52192, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "79fcf67d-8c85-4505-bb5a-34d28d00d262", "3": "4b795efd-0329-4d32-bbfb-e7cc78af7b08"}}, "__type__": "1"}, "4b795efd-0329-4d32-bbfb-e7cc78af7b08": {"__data__": {"text": "\nMohammed K., Senior Engineer -Cyber Security, 5, Searching, Apps for each type of devices, Incident Review and Response, Asset Center are few of the excellent features in Enterprise Security.\n\nAll these features are very user friendly and provide the easy incident investigation interface., Searching, Apps for each type of devices, Incident Review and Response, Asset Center are few of the excellent features in Enterprise Security.\n\nAll these features are very user friendly and provide the easy incident investigation interface.\nSplunk Enterprise Security, G2.com, Sherry K., Network Administrator, 4.5, I like splunk ES because it continuously monitors our system for potential threats and alerts us in real time so that we are able to prevent the threats before they ness up our system. I like its access anomalies dashboard which allows us to identify any breach and suspicious activity from users, this makes it easy for us to prevent any unauthorized and suspicious access and helps us protect our IT infrastructure and keep our sensitive data safe., I don't like that i can only monitor the privileged accounts for suspicious activity or access breach it would be very helpful if i can monitor all accounts thisbwould hwlp see which account have anomalies and may pose a threat to our system.\nSplunk Enterprise Security, G2.com, Verified User , Banking, 1.5, very nice visualization and Analytics Engine with easy to create Dashboards, many 3rd party integrations and a vast and active community to support in case spluk support did not answer., Lack of out-of-the-box features, another Toolbox additional to all other Splunk \"tools\" rather than an integrated Product. Integration, maintenance and customization effort needed are very high. The subscription fee is exploding, and we need to filter now the ingested logs dramatically ... which adds a new vulnerability. Splunk products have too many product vulnerabilities themself for a Security Product\nSplunk Enterprise Security, G2.com, \nKartik S., \nKartik S., 5, It's easy to deploy, the agent /forwarder is very lightweight, and it can parse almost all log sources, which makes it the best in the industry., Customer service needs improvement and the tool is a bit expensive, apart from that there are no issues with this product.\nSplunk Enterprise Security, G2.com, \nMubeen A., \nSOC - Security Engineering Lead, 5, Great product for security monitoring and reporting. Blazing fast searches, superb user interface and excellent visualization options. Also, reporting and other features are great as well., Scalability is an issue and licensing costs are very high which makes this great tool hard to procure for SMEs. Also, support can improve to enhance the overall experience.\nSplunk Enterprise Security, G2.com, \nSeereeram D., Information Technology Security Specialist, 4, Enterprise Security has a built-in Risk Analysis Dashboard. This allows an executive-level overview of what is going on in an understandable format which can be viewed by non-technical personnel. It incorporates MITRE, NIST as well as CIS identifiers for threat activity, allowing high-level classification of assets, identity, and communication behavior., If you are deploying this product for yourself, it is quite a challenge. Enterprise Security offers the single pane of glass for your investigation and monitoring needs, but to get everything onboarded can be daunting. The identity and assets enrichment was not straightforward and required a lot of manual work. For it to be optimized for full benefit, there is a layer of complexity along the journey\nSplunk Enterprise Security, G2.com, \nB M., Senior IT Security Engineer, 5, All the features were great. From the correlation rules to all the details in the reporting were actually great. Indeed a useful product when it comes to granular security., Nothing to be disliked of. However it could have been great if they had a handy dashboard template for different enterprises.\nSplunk Enterprise Security, G2.com, Seereeram D., IT Security Specialist, 5, Splunk Enterprise Security allows us to actively perform threat intelligence and analysis while providing results in an easy-to-understand manner., As with Splunk in general proper configuration and deployment requires a steep learning curve. In general, this is my only issue with", "doc_id": "4b795efd-0329-4d32-bbfb-e7cc78af7b08", "embedding": null, "doc_hash": "75432edca0089efdb325db8053127304b4da2922272112a417c2850b2d90286e", "extra_info": null, "node_info": {"start": 52206, "end": 56542, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "a6a7b0af-b576-416a-b269-bfdc135091ae", "3": "cf829ada-81c5-4f09-9ace-a6fb7e38d110"}}, "__type__": "1"}, "cf829ada-81c5-4f09-9ace-a6fb7e38d110": {"__data__": {"text": "deployment requires a steep learning curve. In general, this is my only issue with Splunk, the complexity of configuration and deployment.\nSplunk Enterprise Security, G2.com, \nRohit S., Technical Account Manager, 5, Splunk is a great SIEM solution and its integration with almost any network and security device makes it a unique player in market. Its apps and super fast search options are best in class, No problems with splunk so far. Its been working very good\nSplunk Enterprise Security, G2.com, \nNikhil P., Engineer trainee, 5, The best feature would be the user interface which is easy to navigate and understand. A little training on how to use the Splunk query language, and you are good to go! Easy to download or share the logs across various platforms and has a very insightful pictorial representation of data in graphs, tables, and various other forms., It has an overwhelming amount of features that may go unused in some cases. It would be better if Splunk could be altered according to a user's needs. Splunk doesn't use MFA as far as I know, so it would be better if it is included. If queries aren't precise, your job (output) will be running for a long time.\nSplunk Enterprise Security, G2.com, Verified User , nan, 3.5, The best thing I like about Splunk Enterprise Security is that it comes as an add-on on top of Splunk Enterprise.\n\nThis thing makes it easy to deploy and use if you are familiar with Splunk., I don't like that it doesn't come with many security use-cases and alerts out of the box and it's a bit difficult to configure it from scratch.\n\nThis product can't be highly customized, but it can be confusing for untrained personnel.\nSplunk Enterprise Security, G2.com, Verified User , nan, 5, You can customize all aspects of the platform, automate workflow actions, design rules with detailed drill down searches, enrich the notables with valuable context, and if you're willing to get creative and hack it a little bit, you can do unexpected things.\n\nIf you choose to follow this route, there is a great and active community ready to help you achieve even the weirdest of goals., Hard to ensure the logs are processed into CIM compliance, if this is not done right, the product becomes mediocre. This process can require professional services and lots of maintenance.\nSplunk Enterprise Security, G2.com, \nMunigala R., Cyber Security Specialist, 4.5, able tomonitor logsof end devices more deeply with every event been triggered in the console which helps for monitoring, no major dislikes but sometimes experiences timestamp issues with logs\nSplunk Enterprise Security, G2.com, \nvivek sagar s., DevOps Engineer, 4.5, Easy to search and analize the issue based on keywords., Queries can be lengthy sometimes. Otherwise output gets bigger and bigger.\nSplunk Enterprise Security, G2.com, \nVinay S., Application Development analyst, 5, The dashboard facility provided to view the different types of logs generated from our application and also the data gets stored. Which will help us to analyze. It also provides enhanced graphical user interface so that the end user will be able to easily navigate through the tool. Need to mention the charting capabilities of splunk which represents the data graphically which inturn makes the users to identify the variation in the logs generated by the application.this also feels very rich while using the same.It also helps I real time monitoring which provides us with the accurate and latest data which we will be able to figure it out. Also the BI dashboards adds the most value for splunk.we can use this for the SQL injection vulnerability fixes and the logs to store the same as well, It seems to be expensive and also felt the search operations on the dashboards can be made a bit faster than the usual speed. In simple words it will be easy if we optimize this dashboard search functionality. A problem that was we licensed it base don how much data we upload to them everyday.something changed I. One of our applications and it started changing the behaviour. Since the competition is very hight in the other business fileds it will be beneficial", "doc_id": "cf829ada-81c5-4f09-9ace-a6fb7e38d110", "embedding": null, "doc_hash": "3445f0e56b68efaf05f8b6191c0f6c43acf8dbea97ec465c121675a41a66bbcf", "extra_info": null, "node_info": {"start": 56531, "end": 60661, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "4b795efd-0329-4d32-bbfb-e7cc78af7b08", "3": "3e75e777-8fbf-4323-98b3-37de31796f7d"}}, "__type__": "1"}, "3e75e777-8fbf-4323-98b3-37de31796f7d": {"__data__": {"text": "Since the competition is very hight in the other business fileds it will be beneficial for Splunk to resolve these issues to keep up the top position and remain as a roller in this industry.\nSplunk Enterprise Security, G2.com, \nVerified User , nan, 5, The analysis and indexing of any data format. Integration support for almost all of the security devices available in the market. SOAR feature addition makes it one of a kind in the industry., Best product comes with a heavy price tag on it. Many SMB companies could not afford the price of the products and the add-ons.\nSplunk Enterprise Security, G2.com, \nScott R., VP of Technology and Infrastructure, 5, An enterprise level tool for log aggregation and management that enables an all inclusive approach to data mining for service management and compliance., Expensive licensing model compared to some other tools available.\nSplunk Enterprise Security, G2.com, \nVerified User, nan, 4, VP of Technology and Infrastructure, Too much features,took me sometime to understand the functionality\nSplunk Enterprise Security, G2.com, Verified User , nan, 5, Easy to manage dashboards and get the data you need right there, Navigation can be improved a bit to make it easier to use.\nSplunk Enterprise Security, G2.com, \nDanny S., Director of Planning, Engineering, and Innovation , 1.5, Nothing to add here. I hate the name as much as I hate the product., Everything but mostly the cost and licensing model for anything Splunk has to offer.\nSplunk Enterprise Security, G2.com, \nSunny K., Senior Technology Consultant, 5, The user interface(GUI), which is self-explanatory on every page or view. Also its security related investigation capabilities. It is real time., Splunk can be expensive for large data volumes\nSplunk Enterprise Security, G2.com, Verified User , nan, 5, I have been using splunk ES for about 1 year to support the SOC. I find the product produces a lot of information that increases the company's level of security, dont't find dislike for now. All is right\nSplunk Enterprise Security, G2.com, \nGopichand R., nan, 5, It will providing all the future details in Splunk ES. Where we can get details summary reports in alerts. Depend on alerts. Like source, destination, users, workstations, Event code, login types etc., There is nothing anything to dislike with this product. It's all in one.\nSplunk Enterprise Security, G2.com, Verified User , nan, 4.5, Flexibility the splunk SIEM is very versatile, Dashboards can be tricky to set up.\n\nHowever, once set up a great security tool.\nSplunk Enterprise Security, G2.com, Pathman P., \nSnr. Systems Engineer / Security Consultant, 4, Splunk ES product that monitors real-time data generated from network endpoints, access, malware and vulnerabilities and generate alerts by analyzing and correlating them with defined and built-in rules. Administration is so easy and reduces security personnel risk of tacking security incidents. This is very useful and well recognized product every organization should setup., Have not found any dislikes so far. great product.\nSplunk Enterprise Security, G2.com, Verified User, nan, 5, I love how diverse this software is. It's easy to create simple dashboards and searches or you can create very complicated searches and filter through specific data. Dashboards can be created so that other members of the team that aren't so technical can easily look at the visuals and see what is going on. We use it in security for a bunch of different areas of the company., Somewhat of a learning curve to get set up and going.\nSplunk Enterprise Security, G2.com, Verified User, nan, 3.5, a crisp view of different logs and analytics, a crisp view of different logs and analytics\nSplunk Enterprise Security, G2.com, Ashok V., Software Engineer, 4, Splunk is a very great tool for logging our SFDC events and it's 6 months and one year option for having logs of our log headers and log details is a killer feature, The UI can be more interactive and they can also be little competitive with pricing as the one", "doc_id": "3e75e777-8fbf-4323-98b3-37de31796f7d", "embedding": null, "doc_hash": "c82236d2d3ee5ac48aa2bd60b008a8d5c06b89678b98a1418c933b2abda230f9", "extra_info": null, "node_info": {"start": 60659, "end": 64704, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "cf829ada-81c5-4f09-9ace-a6fb7e38d110", "3": "c1efcfe9-dfd0-4fa7-adce-4c600f051965"}}, "__type__": "1"}, "c1efcfe9-dfd0-4fa7-adce-4c600f051965": {"__data__": {"text": "The UI can be more interactive and they can also be little competitive with pricing as the one year option will cost you a fortune as an organization and small startup also need to afford this tool\nSplunk Enterprise Security, G2.com, Verified User, nan, 4, I like the possibility do performan specific research about cybersecurity, Nothing of particular,\n\nMaybe splunk not Identity the threat in Real time\nSplunk Enterprise Security, G2.com, Verified User, nan, 5, Splunk gives you huge access to each end-point and everything on your environment. Especially, it allows you to make your own apps insdie the Splunk which makes it more fruitful. Because it can be customized according to your needs. As a cyber security team member, I was happy to use Splunk which made my event management like shelling peas., I can say nothing. May be price is a bit much for developing countries. However, Splunk still deserves it.\nSplunk Enterprise Security, G2.com, \nRiya S., Fullstack intern, 4, The best thing is you can setup it as your company wants. Moreover its a great software as a service for security. TO sell all the error logs in our development server we use Splunk in our company., The search is very slow, sometimes to search a particular log message it takes about 5 minutes. Moreover the error message doesn't come completely.\nSplunk Enterprise Security, G2.com, \nVerified User , nan, 5, Enterprise Security Adaptive Response feature is very good where you can directly take action from the one console. Previously, Splunk is used for monitoring only and now it is used as a post mechanism also. For example, If some malicious event comes from the endpoint and you want to isolate that endpoint. You can create a new action and use that to isolate endpoint., Splunk Enterprise is an add-on on Splunk so it is not isolated from other addon. We might face some security issue if other addons are conflicting with ES. It should come as a product incorporated on top of Splunk. I disliked the slowness of the App when it is installed on the lower configuration VM and it is very heavily built addon with so many javascript and python scripts.\nSplunk Enterprise Security, G2.com, \nRmn C., nan, 4.5, The UI is so simple and interactive that you provide a simple search string and this powerful tool looks at your terabytes sized logs and show you result in an index form and that too in seconds. It also helps our OPS team to perform a log forensics., This tool becomes very expensive if you have huge logs and if the logs keep on increasing so will the price to use this tool. The support from SPLUNK team is not that great.\nSplunk Enterprise Security, G2.com, Verified User , nan, 3, Configuration design: Thoughtful and mature documentation and design of the application regarding enterprise-class scaling on network storage.\n\n-POWERFUL tools: The user interface lends itself to learning more about your organization from the logs you collect, through metrics of trends of the logs being gathered. There are also specific modules/add-ons for popular applications to provide more value and event-based monitoring, all without having to develop in-house dashboards and intelligence of those logs.\n\n- Customization: You can create your own queries of logs, and event-based alerts., Price: This product is not free for more than the minimal use. Pricing can be very expensive, relative to open source offerings. That is the trade-off you pay for not having in-house development of open source offerings. As this product is priced based on gigabytes of indexed logs, it is important to understand the scope of licensing necessary for your environment to determine if it is a good fit for your organization.\nSplunk Enterprise Security, G2.com, Andrew Y., Software Engineer, 5, Its abilities to list tremendous measure of information into occasions inside seconds, the different applications and extra, and its representations. It encourages continuous examination and can list any sort of information, likewise the equipment necessities of splunk are less. Splunk does not require any database to store its recorded occasions. A great deal of help and help is accessible in the network. Its extremely exceptionally simple to set up and can take information contribution from different sources like remote hosts, logs,", "doc_id": "c1efcfe9-dfd0-4fa7-adce-4c600f051965", "embedding": null, "doc_hash": "afb0737fdb9f8adb59aa51bce1213a077af9a99340cf09efd45501d793179cb2", "extra_info": null, "node_info": {"start": 64700, "end": 69011, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "3e75e777-8fbf-4323-98b3-37de31796f7d", "3": "49b02c99-6e6c-4109-9edc-e6fee6834574"}}, "__type__": "1"}, "49b02c99-6e6c-4109-9edc-e6fee6834574": {"__data__": {"text": "set up and can take information contribution from different sources like remote hosts, logs, contents, records, organize and so forth. In addition there is a free form also which permits to list 500 MB of information for each day. In conclusion, its UI is very client friendly.The truth that we can total and relate any occasions that we need is an integral asset in distinguishing and ceasing malignant movement on or against our system, I truly hated the way that we need to restart splunk at whatever point arrangement documents are changed, however I comprehend the explanation for, regardless it, restart takes a considerable amount of time. Likewise look handling language sets aside some opportunity to learn, it has a great deal of directions. The splunk expectation to absorb information is enormous and can take over a month to learn splunk thouroughly. Normalizing information is trying in splunk. What's more, numerous addons are Common Information display (CIM) good in splunk.\nSplunk Enterprise Security, G2.com, \npaul R., Software Engineer, 5, It has exceptionally educational dashboard which enables us to see information about servers in our condition. It gives visuals to the client when we select graphical portrayal, enabling us to change signs into visual outlines for example pie outlines, diagrams, tables, and so on. It is anything but difficult to scale with extensive informational collections. It underpins different sorts of information with ongoing analyzing.Splunk is extremely simple to introduce and they give bundle to both linux and windows based opertaing framework. establishment is simple simply unfasten the bundle and set the way and you are prepared to utilize, It tends to be CPU serious if not cautious. Early discharges were a great deal carriage, yet remediation's were brisk and brief. The heap on our quests, a few inquiries take for eternity. In some cases we have incredible trouble with motivating different items to parse logs accurately into splunk.pretty costly\nSplunk Enterprise Security, G2.com, \nUsman S., Senior Analyst, Technical, 3, Free to use for small 500MB or less daily ingress, quite nice for small use cases and learning\n\n- No development work required to deploy and provide value.\n\n- Deployment flexibility: client agents are available to use, or clientless configurations for multiple OS platforms. It's also very easy to deploy, not just flexible. its a very simple affair., PRICE. The software is so powerful, and they seem to leverage this in the pricing of the licenses.\nSplunk Enterprise Security, G2.com, Verified User , nan, 5, SPL makes exploring your data a breeze and dashboards are super helpful, Error messages need to reflect the actual problems\nSplunk Enterprise Security, G2.com, \nNimisha V., Web Services Developer, 4, I work at Fintech company and we use Splunk for checking error logs and tracking anything that goes wrong within the system. I like Splunk as it gives exact line number which is breaking the code which makes easier to debug., The index should be accurate otherwise viewing logs is not easy.\nSplunk Enterprise Security, G2.com, Alexander M., Senior Consultant, 5, i really enjoyed the ability to use Splunk integrations with the secops platform on ServiceNow. The ability to use the IDS system and endpoint information to enrich security incidents makes it very valuable., There isn't much that I find an issue with Splunk. I think the platform does a great job of using customer feedback\nSplunk Enterprise Security, G2.com, Verified User , nan, 3.5, It was very easy to pull in lots of different csv files together to review alerts more effectively. moreover, alert generation worked very effectively when we were looking within splunk., It was very difficult to write scripts to let splunk work with our automated processes. It was also very difficult to get splunk to give optimised results if the dataset is relatively small as compared to larger datasets on which the results are exceptional.\nSplunk Enterprise Security, G2.com, Verified User , nan, 4, It allows users to process and index their production data in their own raw", "doc_id": "49b02c99-6e6c-4109-9edc-e6fee6834574", "embedding": null, "doc_hash": "9249cc5b0b29f43cfa09860aab0e2642b7473345137895b2ce22766d1bc4cc48", "extra_info": null, "node_info": {"start": 69010, "end": 73145, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "c1efcfe9-dfd0-4fa7-adce-4c600f051965", "3": "02bd4993-b5e3-4da6-b3d3-00f839c897d3"}}, "__type__": "1"}, "02bd4993-b5e3-4da6-b3d3-00f839c897d3": {"__data__": {"text": "User , nan, 4, It allows users to process and index their production data in their own raw format.\n\nIt allows indexing tools that allows to locate a specific data in a large pool of data. Easy to deploy on multiple OS platforms. Various aggregation tools for various use-cases. Can create customization based on your log query and event based alerts., The enterprise editions comes with a huge price which can be a turn down as compared to other open source tools like the ELK stack. As the product is priced on the gigabytes of indexed logs stored, one need to have a clear idea on the business requirement to determine if it is a good fit for your organization.\nSplunk Enterprise Security, G2.com, Mark A., Splunk Big-Data Analyst, 5, Splunk is a great application that is super fast to install and setup. Everyone should be using this product after seeing how great of an impact it makes on your security posture., Splunk does charge a pretty penny for the higher levels of certification. But the cost paid to value earned is totally worth the cost of certifications needed.\nSplunk Enterprise Security, G2.com, Verified User, nan, 5, I like the visual dashboards of different levels of granularity. Easy to set up for from a backend developers point of view as it is compatible with existing popular enterprise frameworks using microservice architecture (Spring Boot). Great common ground for software developers interacting with data analysts as layout is in terms that both understand., A bit of a learning curve for the UI as it has lots of features and levels of data granularity , but at good that there's plenty of documentation.\nSplunk Enterprise Security, G2.com, \nPaul E., IT SRN Consultant, 5, collection of data and provide another form of validating security logs supporting critical services, costly and need to be configured heavenly. not easy to find answers if you need to search\nSplunk Enterprise Security, G2.com, Verified User, nan, 3.5, The main benefit is the ability to ingest many different sources, match it to the CIM and use disparate information across your logs to form a picture of what is happening., unfortunately the incident management component is quite terrible. the way you drill down often requires you to rewrite queries in order to get the events that form a notable event. The interface was written by somoene who does not have to do the work. managing multiple notable events is now better with the case management, but still a struggle for workflows.\nSplunk Enterprise Security, G2.com, \nAbhishek D., Software Developer, 4, Me and my team have been using splunk for quite some time now, we are using it for our multiple clients, the ease with we can create reports in splunk is very impressive, We are using it for a long time now, and it has been a quite satisfying journey so far.\nSplunk Enterprise Security, G2.com, Verified User, nan, 4, The ability drill down to the smallest of the issue you face on a daily basis, Its sometime a heck slow to index data on the system making it difficult o get the required data\nSplunk Enterprise Security, G2.com, Verified User, nan, 4, It has very informative dashboard which allows us to view data about servers in our environment. It provides visuals to the user when we select graphical representation, giving us the ability to transform logs into visual charts e.g. pie charts, graphs, tables, etc. It is easy to scale with large data sets. It supports various types of data with real time analyzing., It is very costly. If the dynamic data is huge it affects the speed thus making it slow at times. Searches can a bit too much to understand, especially regular expressions and search syntax which itself are very complex to understand. The learning curve to Splunk is steep since takes a bit to get up to speed with the application.\nSplunk Enterprise Security, G2.com, \nNicholas S., SCA Computer Operator 4, nan, Splunk has a very intuitive search feature. If you are looking for either a single or multiple logs or the contents therein, you are in for a treat!, The setup for it is lengthy and at sometimes clumsy.\nSplunk Enterprise Security, G2.com, Verified User, nan, 3,", "doc_id": "02bd4993-b5e3-4da6-b3d3-00f839c897d3", "embedding": null, "doc_hash": "4aaf0e028c40d014d10e1c87410d564f1c888ba398a3344c22f035855669de6a", "extra_info": null, "node_info": {"start": 73152, "end": 77317, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "49b02c99-6e6c-4109-9edc-e6fee6834574", "3": "2622fd48-4662-4176-9e01-2fafcc0d9147"}}, "__type__": "1"}, "2622fd48-4662-4176-9e01-2fafcc0d9147": {"__data__": {"text": "Enterprise Security, G2.com, Verified User, nan, 3, I love that pretty much ANY logs from other applications can be ingested into Splunk. The ability to search and find data during a forensic investigation is critical and can help find a root cause., The cost. $10K per 10GB of log data ingestion. The more you ingest the greater the value, and you want to add more, but the cost keeps going up and up.\nSplunk Enterprise Security, G2.com, \nAshish B., Architect, 5, Data collection and classification of all the security logs., required haevy configuration on premise and data collectors.\nSplunk Enterprise Security, G2.com, Verified User, nan, 4, Immediately sends exceptions via email to act on it, Slow User interface. Large file logs can be indexed better for performance\nSplunk Enterprise Security, G2.com, Verified User, nan, 5, It is very user friendly and helps analyse the machine date quickly with its features like dashboard knowledge objects etc ., If we have to get certified in this the entry level certification is free but after that it's a bit tough to get training and material for getting used to the tool\nSplunk Enterprise Security, G2.com, Verified User, nan, 5, Reporting is great\n\nAlerting is very good\n\nAwesome log analysis, Is expensive\n\nSteep learning curve\n\nIt needs work for best performing\nSplunk Enterprise Security, G2.com, \nAleksandr N., Teaching Assistant, 5, Spunk is easy to navigate, relatively fast given the data size it handles, and the UI is not snazzier than ever., Sometimes, it's very very slow! It also takes forever to refresh and the UI can be very unfriendly every now and than, especially for pattern searching.\nSplunk Enterprise Security, G2.com, Verified User, nan, 4.5, The ability to store log data for a long amount of time and being able to generate reports based on log findings, Sometimes the system can be extremely slow when doing a big query\nSplunk Enterprise Security, G2.com, Verified User, nan, 4, When you work in an environment with all the servers are locked down from level 3 support, SPLUNK was the only way to view what's going on in the production system. If your enterprise system is all SPLUNK enable you can easily track down exactly where the issue is., SPLUNK does have a learning curve but once you master certain queries you will see the light!\nSplunk Enterprise Security, G2.com, Verified User, nan, 4.5, Splunk is very easy to install and they provide package for both linux and windows based opertaing system. installation is very easy just unzip the package and set the path and you are ready to use. The best part is there are thousand of splunk apps and add ons that can be used which can greatly reduce your effort. For visualization of data splunk provides out the box feature to create graphs and dashboards. Splunk also has the functionality to trigger alert once it meet certain criteria., To search the data you need to learn yet another languaage i.e SPL-splunk processing langauage. They are not open source and free trial is also only for one month and once it expires you have to buy the license which is very costly.\nSplunk Enterprise Security, G2.com, \nSwapnil S., Senior Software Engineer, 4, Ability in the user interface for searching logs and processes, intuitive dash boarding, and a very robust alert module. Getting better visualization of threats in our environment via alerts are some of the features that make this a great tool.\n\nSplunk itself is completely awesome. It has really improved the security teams ability to perform log forensics and confirm true positives., It can be CPU intensive if not careful. Early releases were a lot buggy, but remediation's were quick and concise. The load on our searches, some queries take forever. Sometimes we have great difficulty with getting other products to parse logs correctly into splunk.\n\nAlso, Their Support form is not too good. It's confusing and sometimes redundant, or irrelevant.\nSplunk Enterprise Security, G2.com, \nsamant k., Senior Programmer, 4, One can configure their own query to get related data on dashboard , Helps alot", "doc_id": "2622fd48-4662-4176-9e01-2fafcc0d9147", "embedding": null, "doc_hash": "d3641ca763d9618082dba4a5335d4e81b1d55085caf7132734b8a107921fc03d", "extra_info": null, "node_info": {"start": 77346, "end": 81435, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "02bd4993-b5e3-4da6-b3d3-00f839c897d3", "3": "f0b5692b-ff9d-456c-a97a-d511f87d78b2"}}, "__type__": "1"}, "f0b5692b-ff9d-456c-a97a-d511f87d78b2": {"__data__": {"text": "One can configure their own query to get related data on dashboard , Helps alot on analysis, The inline change in data structure can break the whole query , also configuring is little cumbersome\nSplunk Enterprise Security, G2.com, \nVerified User , nan, 4, I like that we can create real-time alerts and trigger on any level of customized query based on the logs., Some times it's too many details, but I believe that is okay in most of the cases\nSplunk Enterprise Security, G2.com, Verified User, nan, 4, The ease of use for report creation and alerts. Customers are unaware of the information that can be provided to them until we, the splunk administrators, provide a quick tutorial of the what we can provide., I do like the product and there are no real negatives but the licensing, when using an annual license, the renewal doesnt' start after the expiration date of the existing license.\nSplunk Enterprise Security, G2.com, Verified User, nan, 3.5, The best part I like about Splunk is that it is easy to deploy. You can a simple utility call Splunk lite to push your data from your servers to the main Splunk engine.The way Splunk indexes your data is very good. Which in returns good analytic results. The dashboard layout is usefull and is very customizable. Integration via ES and other plugins allows us to spend time on one single pane of glass, do a pivot investigation and drill way down into the logs that were ingested. Metadata is easy to find, the logs are parsed neatly and are relatively easy to read once you get used to them, The community could use better visibility, a central repository for splunk queries would be nice. We always need to wait a bit for latest release to be adopted at Enterprise level because of the unforeseen bugs.x.0.0 releases are frequently buggy, but they get patches out fairly quickly.\nSplunk Enterprise Security, G2.com, \nVenkatesh V., Software consultant, 2.5, Alerts and error logs that receives via emails, Searching in splunk through queries is kind of difficult\nSplunk Enterprise Security, G2.com, Verified User, nan, 3.5, Splunk is VERY good at aggregating data from multiple data sources into an accessible user interface., The data manipulation routines are not very good for anything other than straightforward log analysis. I have specific needs to do some recursive analysis and am unable to use this platform for said analysis.\nSplunk Enterprise Security, G2.com, \nSam J., Business Analyst, 3.5, Help restrict users to not go on sites needed, Too expensive but we got discount so not bad\nSplunk Enterprise Security, G2.com, \nJas H., Network engineer, 5, Easy to use. Easy to search. Easy to upgrade., Reports are exported in csv file which are geanarally hard to read. Need pdf's for easy understanding.\nSplunk Enterprise Security, G2.com, Verified User, nan, 4, Splunk is a very powerful and very useful tool. It helps brings all of our data together allowing for us to pick exactly what we want from the data., User support forums need work.Its hard to find the information you need.\nSplunk Enterprise Security, G2.com, Verified User, nan, 3, Splunk makes it easy to put data in and get data out - exactly what you would hope for from this kind of product. Dashboards are easy to create and share. Data is easy and fast to query because of the Splunk indexing engine., Splunk uses its own proprietary query language to its one extra thing to learn before you can begin to get value out of the system. Also, while there are several types of dashboards you can make, they are not super flexible to customize out of the box so you have to rely on third party extensions.\nSplunk Enterprise Security, G2.com, Verified User, nan, 2.5, Event monitoring and Error analysis through logs, Interface is not very intuitive. Commands used for queries are not straightforward.\nSplunk Enterprise Security, G2.com, Verified User, nan, 3.5, I like the streaming events that I can find when I do searches on when looking for bad stuff, I am just learning this platform", "doc_id": "f0b5692b-ff9d-456c-a97a-d511f87d78b2", "embedding": null, "doc_hash": "f054ef8aafdbf3d50ea2a2ec9057885bb980c4eb77926c922132ebc29bd5fdb2", "extra_info": null, "node_info": {"start": 81416, "end": 85432, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "2622fd48-4662-4176-9e01-2fafcc0d9147", "3": "0eee8be4-f629-4578-9aa9-bea55eafae98"}}, "__type__": "1"}, "0eee8be4-f629-4578-9aa9-bea55eafae98": {"__data__": {"text": "find when I do searches on when looking for bad stuff, I am just learning this platform and so far there isn't anything i don't like\nSplunk Enterprise Security, G2.com, \nVerified User, nan, 5, The best is the flexibility of SPLUNK - you can configure reporting/alerting on everything you want. It's all depends on your log files.\n\nIt's a great tool for monitoring.\n\nUser friendly., The biggest cons is the cost. It's a bit pricy.\n\nSome reports it takes time to generate.\nSplunk Enterprise Security, G2.com, \nVerified User, nan, 2.5, Ease of indexer support on Splunk Cloud., Very hard to make use of Splunk Enterprise, way too much build, index mapping to useful correlation rules for ES to be functional\nSplunk Enterprise Security, G2.com, \nNathan P., Splunk Administrator, 5, Splunk enables me and my customers to find needles they didn't know they needed in stacks of other needles. A large portion of our solutions started in hallway conversations leading to \"I wonder if Splunk could ...\" and it invariably can.\n\nIn an enterprise environment of any complexity, there are hurdles with any product, but the Splunk community, as well as education and docs teams are incredibly helpful resources.\n\nThey offer trial, dev, and dev/test licenses, so I can run Splunk at home, on my laptop, as one-off testing setups, etc.\n\nThey also offer free licenses to non-profits under their Splunk4good program., x.0.0 releases are frequently buggy, but they get patches out fairly quickly.\n\nSplunk could really use a naming scheme makeover. (I'm looking at you, deploy*.)\nSplunk Enterprise Security, G2.com, \nVerified User , nan, 4.5, Helps IT departments gain deeper analysis based on the customer\u2019s environment, leveraging Splunk\u2019s broad ecosystem of security and IT technologies and products., Splunk is all grown up now and, as such, needs to continuously ramp up revenue. But have to create appropriate license models, for each business to receive\nSplunk Enterprise Security, G2.com, \"\nVerified User \", nan, 4, Splunk has the advantage of being the biggest player in the space., Stagnant product development and a company that is resting on it's laurels.\nSplunk Enterprise Security, G2.com, \nKalyan M., Sr. DevOps/Cloud Engineer, 3.5, Just by running a simple query it gives us the exact logs, First of all before one starts using it they have to learn the syntax. It is kind of different from your regularquerying style. But once you get the hang of it it is easy to use.\nSplunk Enterprise Security, G2.com, \"\nVerified User \", nan, 4, I used it to check the tokens in my company. It is fast research and real time result. Good., Ui lay out. Need to spand time to get used to do with it.\nSplunk Enterprise Security, G2.com, Verified User\u00a0, nan, 4, splunk is an awesome tool. i like using splunk, neeed more help and autofill features. help with writing good queries\nSplunk Enterprise Security, G2.com, Verified User, nan, 4.5, Splunk secrity information and managment is really smooth to use when it comes to scalable big data solution, It is costly and there us a huge learning curve.\nSplunk Enterprise Security, G2.com, Verified User, nan, 4.5, Splunk is a better tool that ever seen to view the production logs especially, It is costly and there us a huge learning curve.\nSplunk Enterprise Security, G2.com, Verified User, nan, 4.5, Splunk is a better tool that ever seen to view the production logs especially, I think it should have some mechanism to raise Incidents automatically\nSplunk Enterprise Security, G2.com, Verified User, nan, 4.5, I use it for running prod queries and getting real time output., Writing the queries is not intuitive. Better syntax required\nSplunk Enterprise Security, G2.com, Verified User", "doc_id": "0eee8be4-f629-4578-9aa9-bea55eafae98", "embedding": null, "doc_hash": "4f2b0154a89cdbf3dbc16bef4212ea357a7e433c3a02ff6d485db631bdd922f2", "extra_info": null, "node_info": {"start": 85427, "end": 89142, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "f0b5692b-ff9d-456c-a97a-d511f87d78b2", "3": "002dfc10-c8dc-4dd2-aa67-f97c3f65cb8e"}}, "__type__": "1"}, "002dfc10-c8dc-4dd2-aa67-f97c3f65cb8e": {"__data__": {"text": "Better syntax required\nSplunk Enterprise Security, G2.com, Verified User , nan, 4, Displays logs of transactions in detail with time and attributes and other specifics.Easy to search for what is needed., none\nSplunk Enterprise Security, G2.com, Verified User , nan, 5, Indexing and the graphs that we can create using the data, I like everything about this software and so far have no regrets\nSplunk Enterprise Security, G2.com, Verified User , nan, 4, Provides very helpful dashboard, reports that helps to provide the production support very effectively, Provides very helpful dashboard, reports that helps to provide the production support very effectively\nSplunk Enterprise Security, G2.com, Verified User , nan, 5, correlated threat intelligence that I can readliy translate for the c-suite., No comment on this item. I receive reports only.\nSplunk Enterprise Security, G2.com, Verified User , nan, 5, Splunk we are using for our monitoring and logging purpose, it really nice to see all the logging mechanism unde cloud., Nothing much to say about this wrongly, everything is going well.\nSplunk Enterprise Security, G2.com, Verified User , nan, 4, Easy queries to check logs, errors, no of users etc., Little slow may be browser issue, sometime didn't show all details\nSplunk Enterprise Security, G2.com, Verified User , nan, 4, Super powerful, smartly designed, intuitive to use, and endless number of use cases., Upfront and ongoing costs are a bit pricey. There are other products on the market that can do most of the same things Splunk can do for a much lower price point.\nSplunk Enterprise Security, G2.com, Verified User , nan, 5, There is a learning curve to using this tool because there are so many features, and sometimes it's hard to find the right features., All the dashboards and displays are very helpful in monitoring real time risks. Alerts are timely and makes it easy to track and resolve threats.\nSplunk Enterprise Security, G2.com, Verified User, nan, 5, The search UI interface. The forwarder that they provide does excellent job, It is UI based. A command line version would also be interesting\nSplunk Enterprise Security, G2.com, Verified User, nan, 4, Brilliant to build dashboards, Brilliant to build dashboards Brilliant to build dashboards, Nothing. Brilliant to build dashboards Brilliant to build dashboards Brilliant to build dashboards\nSplunk Enterprise Security, G2.com, Verified User , nan, 4, Fast Response with automated actions and workflows, User interface needs some organization\n\nWeb doesn't start after upgrading Splunk Enterprise Security\nSplunk Enterprise Security, G2.com, Verified User , nan, 4, Monitoring is best in capability of this tool is best in I dustry, Real time operations would help in addressing many issues\nSplunk Enterprise Security, G2.com, Verified User , nan, 4.5, For large infrastructures is a best choice to work with, nothing i is pretty much helping for my need. i dont see much issues in it right now\nSplunk Enterprise Security, G2.com, \nRichard G., Splunk engineer, 5, It's flexible and powerful while still being easy to use. Valuable insights can come quickly with minimal effort.\n\nThe user community, both online and offline, is active, friendly, and very helpful. It's one of the best user communities I've encountered and has resulted in hundreds of apps (plug-ins) available for free use to help make Splunk even easier to use., Larger implementations can be complex to build and maintain, often needing Professional Services assistance.\nSplunk Enterprise Security, G2.com, Niket N, nan, 5, Splunk is a very powerful Data Analytics platform which can be adopted by users of all levels i.e. from tools like Data Tables for Novice to Splunk's Web Framework for Experts. What I like best is the significant improvements and capabilities they bring into the software with every major release is simply mind blowing., We always need to wait a bit for latest release to be adopted at Enterprise level because of the unforeseen bugs. Good thing is one of Splunk Support, Professional Support,", "doc_id": "002dfc10-c8dc-4dd2-aa67-f97c3f65cb8e", "embedding": null, "doc_hash": "ad3a375335c4585f110986aa2d85dccdf3e8d76aa58ceb62c74a4f6c9758d0c1", "extra_info": null, "node_info": {"start": 89149, "end": 93217, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "0eee8be4-f629-4578-9aa9-bea55eafae98", "3": "8ce2bd04-544d-4060-98a3-a6ca3e29e868"}}, "__type__": "1"}, "8ce2bd04-544d-4060-98a3-a6ca3e29e868": {"__data__": {"text": "level because of the unforeseen bugs. Good thing is one of Splunk Support, Professional Support, Splunk Answers Community and Slack might be able to assist with workaround or solution.\nSplunk Enterprise Security, G2.com, \nSteven Y., Software Engineer II, 0.5, This tool does what is supposed to, capture every possible thing., This tool captures far too many logs, I think our company configures it badly but search for logs is not helpful.\nSplunk Enterprise Security, G2.com, Verified User , nan, 5, It isn't really a question of whether or not you can accomplish something with Splunk. The question is more about how much time and money it would take to accomplish something using Splunk. Some things are very simple and Splunk does provide a low barrier to entry, allowing you to obtain value from your data right from the start. While it has a low barrier to entry, it is also very extensible and allows you to stack on top of Splunk to leverage the platform for whatever your specific needs are. This is why it is so beneficial across many different sectors of IT. On top of the actual product, the community is top notch and always looking to help should any issues come up., Cost. Splunk is not the cheapest product and it can be a fight to get funding.\nSplunk Enterprise Security, G2.com, Verified User , nan, 5, Splunk is easy to install and very easy to run. Just 5 minutes and you are up and running. Splunk tool can help in such scenarios in which machine data can be fed directly, which can process dirty data. Once the data is processed, you can locate the error points in less time. Though Splunk was launched earlier for machine data processing as Big data came into existence, it became more used in the market. As Splunk can process the even massive amounts of data so, Big data people use it to process, analyze, and store a significant amount of data. It has made the data processing easier and superior for the Big data professionals these days., some linux support for universal forwarder stuff.\nSplunk Enterprise Security, G2.com, \nJuan Carlos Q., nan, 4, Me ha gustado mucho la sencillez en la instalaci\u00f3n, y en su uso una vez instalado.\n\nEs destacable la posibilidad de implementar apps adicionales., El consumo de recursos podr\u00eda ser mejor, y podr\u00eda tener implementado varias apps por defecto.\nSplunk Enterprise Security, G2.com, \nMyles W., nan, 5, The ease to scale and ingest multiple types of data sources with minimal effort. The effortless ability to begin digging through data without fully comprehending the content of the data itself.\n\nITSI is also a phenomenal App that really allows us to dig deep into services!, I've had a few issues with Apps and/or Add-ons working OOTB without a few customizations. Overall I don't have many dislikes about the product itself.\nSplunk Enterprise Security, G2.com, Prem Kumar S., nan, 5, Best about splunk is the ease of use of he product and its rich inbuilt functionalities to parse and clean unstructured data to give business insights in real quick time, for me splunk is a magic band that I hold everyday :), MLTK could be more advanced and improved with lot more usecases and examples.\nSplunk Enterprise Security, G2.com, \nSteven B., Senior Security Architect, 5, The ease of splunk for using it to learn new insights into our data. With traditional log systems you can't review old logs and events using the new understanding you have about your data. However, Splunk performs extractions done at the time you search and allows you to look at old data with a new light., The product can be very expensive for large scale. The price model per data consumed per day can grow quickly and often requires a person to evaluate if the data being logged has any business value.\nSplunk Enterprise Security, G2.com, Verified User , nan, 2.5, It is very functional and has all the necessary data, It is really old, the data is hard to find\nSplunk Enterprise Security, G2.com, \nChristopher S., nformation Security Engineer III, 3.5, The fact that we can aggregate and", "doc_id": "8ce2bd04-544d-4060-98a3-a6ca3e29e868", "embedding": null, "doc_hash": "fc71c48c006047c2c2afadd25c89f950d690eb8df4dd687eb85947632fa039a6", "extra_info": null, "node_info": {"start": 93201, "end": 97235, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "002dfc10-c8dc-4dd2-aa67-f97c3f65cb8e", "3": "b263a9e2-496f-4680-857c-3759017d4fcd"}}, "__type__": "1"}, "b263a9e2-496f-4680-857c-3759017d4fcd": {"__data__": {"text": "nformation Security Engineer III, 3.5, The fact that we can aggregate and correlate any events that we want is a powerful tool in identifying and stopping malicious activity on or against our network, The pricing will put you into a higher tier than you need and can quickly grow exponentially if you don't know how to prune the data being brought in before it's saved to the database.\nSplunk Enterprise Security, G2.com, \nMichael K., Engineer - Cyber Threat Management, 4.5, Low barrier to start analysis, one need not know much to start understanding one's environment. One can simply treat everything as searchable text to start and work up to a model of the environment as complex as is suitable.\n\nFlexible concepts for data normalization: I can extract new fields, transform existing fields, alias fields, or create entirely new datamodels within the data that I have.\n\nScales to handle any volume of logs, so all of my logs really can go to one place. Also can send system metrics to Splunk for analysis., Different types of commands are formatted differently. This can be quite frustrating.\n\nNo concept of production migration: the user is simply working in production.\nSplunk Enterprise Security, G2.com, Verified User , nan, 3.5, Quick and easy to use once you get used to Splunk's query language. Can provide scalable analytics to upper management and make quick and easy data driven decisions for the day-to-day software development. You can do a personal level of A/B testing with your own code to determine whether the changes you made leave an increase in errors, etc., Nothing really, just that queries sometimes take time to load and they can get queued when you need that information right away. Sometimes the query built in functions don't quite work as expected and\nSplunk Enterprise Security, G2.com, Verified User , nan, 4.5, I love how it is real time. Haven't gotten a chance to play around with is features because it seems like quite the science., Show source takes forever to load and it also loads a snippet of errors in that time period instead of just what you selected site source for. Majority of the time I found the accompanying errors annoying and almost always unrelated\nSplunk Enterprise Security, G2.com, Mick H., Sr. Production Support Analyst, 4, After the initial set up, getting new users to get value out of it is easy with a the free online tutorials and support bases (answers.splunk.com, slack groups etc...). We don't have a dedicated Splunk team--so finding time to really get the most value out of it can be difficult. That said, we have been able to take interns and point them to an online tutorial and have them running and doing actual valuable work after a week., The licensing model can be expensive for non-profits and others on a tight budget.\nSplunk Enterprise Security, G2.com, Verified User , nan, 5, We are already using Splunk Enterprise, so integrating ES was simple and relatively plug and play., Resources required are relatively heavy for the Search ahead.\nSplunk Enterprise Security, G2.com, Verified User , nan, 5, Very good tool to search monitor analyze data.very easily dashboard can be created for monitoring purpose, Its not a open source tool.many teams do not use this due to high cost.\nSplunk Enterprise Security, G2.com, Verified User , nan, 5, I'm amazed on how fast and reliable splunk is when managing high volume logs. The indexing and response time is impressive, just what is needed for when you're trying to figure out what is happening with your applications., I don't think I have a concrete issue to report. Splunk has always served its purpose with flying colors\nSplunk Enterprise Security, G2.com, \nFrancois G., Director of Software Engineering, 5, Having instant access to log file and monitoring on several servers. This is huge as we don't want to give Production credentials to developers by example but we want them to be able to access the logs for debugging., Interface could use a little help from a UX expert. It is a little clunky. Once you get use to it , it is fine but it is not intuitive.\nSplunk Enterprise Security, G2.com, Verified User ,", "doc_id": "b263a9e2-496f-4680-857c-3759017d4fcd", "embedding": null, "doc_hash": "4a9cf09e5d33eaf1c0e8f6703951d4c7b910b178e28c46af063589196a902aaa", "extra_info": null, "node_info": {"start": 97256, "end": 101398, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "8ce2bd04-544d-4060-98a3-a6ca3e29e868", "3": "91bd5b07-7934-4456-94e3-30c014e306fd"}}, "__type__": "1"}, "91bd5b07-7934-4456-94e3-30c014e306fd": {"__data__": {"text": "is not intuitive.\nSplunk Enterprise Security, G2.com, Verified User , nan, 4, Splunk is a great asset for our company. It allows us a one-stop-shop for log analysis from pretty much every networked device in our environment. We have been a satisfied Splunk customer for over 3 years now. Our developers use the product for troubleshooting application issues and our infrastructure and security team use it for advanced log analysis., Splunk is not cheap and there is a decent learning curve involved to learn how to query information from the Splunk repository. Once you get the hang of the query language, it is not too bad, but it can turn over the \"casual\" user.\nSplunk Enterprise Security, G2.com, Bharadwaj (Brad) C., Director Of Engineering/Head of Reliability Engineering, 4, Aggregating, and doing a pattern matching of events that can let us know if any malicious activity is taking place. Installation is fairly simpler and the user interface is quite friendly., Pretty expensive!!! However you get what you pay for. If you have a higher data set, then the cost is on the higher end. Customizing and configuring to your needs takes quite a bit of time.\nSplunk Enterprise Security, G2.com, Verified User , nan, 4, Comparing splunk with other options out there this by far is the best that does the job as expected. Setting up an email report daily is also another really nice feature we get., Nothing to say for this part since other Enterprise option not as good as splunk anyway\nSplunk Enterprise Security, G2.com, \nMatthew F., Director of Information Technology, 3, Installation is very easy with Splunk. They really take the guess work out of it. Adding additional modules is also very easy. Pointing data to it is also easy. But that ease comes with a cost., It's simply too expensive. Their price (at the time of this writing) is based on data consumption. So the more you use it, the more it costs. At the end of the day, that cost benefit just wasn't there.\nSplunk Enterprise Security, G2.com, Verified User , nan, 5, Support teams can see everything in one place without chasing down log files on all their servers.\n\nYou can create alerts that are exactly what you need and not what a vendor thinks is a good alert.\n\nSplunk is the most useful IT tool I've had in 30 years. I wish it had been around way back in my DBA days!, The minimum hardware requirements for Windows are still heavy.\nSplunk Enterprise Security, G2.com, Verified User , nan, 3.5, Great search features\n\nFlexible SQL integration\n\nGreat UI, High load on servers\n\nPay by the byte contracts\n\nEasy to screw up configuration\nSplunk Enterprise Security, G2.com, \nLsmbert T., IT Specialist, 3.5, Splunk can tell you everything when the application run: port number , fire wall, what is blocking and much more, The data that slpunk collect doesnt look straight forward, need a lot of effort to dig through to find what we need\nSplunk Enterprise Security, G2.com, \nSanthi Sushma K., Software Development Intern, 5, The interface is very user friendly and has best UI design. But, Slows down at times, Slows down at times. But the interface is very user friendly and has best UI design.\nSplunk Enterprise Security, G2.com, Verified User , nan, 5, In the past, we were never able to find out when production issue happens what was the reason behind it but now with the help of Splunk we can easily say that now no production issue can ever scare us unlike before., Well I have just started using this so as of now dont see any features which are not good....only thing would be the tutorials are limited so we need to learn a lot on our own.\nSplunk Enterprise Security, G2.com, Verified User , nan, 5, For me the best part is all the visualizations. Being able to display data in a way for others to understand is very important for me. Splunk allows me to display up to the second data in many different formats. Their custom visualizations allow you to download or develop a visualization to fit your need., There is no real central manager for the universal forwarders. You can assign apps and configurations and see the health of the forwarder, but no", "doc_id": "91bd5b07-7934-4456-94e3-30c014e306fd", "embedding": null, "doc_hash": "9de01c8325089fb322b5656d301e0f177aae1fcdbe9948b7994189f4c7925091", "extra_info": null, "node_info": {"start": 101400, "end": 105531, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "b263a9e2-496f-4680-857c-3759017d4fcd", "3": "0906c897-2d71-433e-8780-c24e0112d357"}}, "__type__": "1"}, "0906c897-2d71-433e-8780-c24e0112d357": {"__data__": {"text": "You can assign apps and configurations and see the health of the forwarder, but no way to push updates or restart the forwarder natively.\nSplunk Enterprise Security, G2.com, Verified User , nan, 4, quickly and easily search across all types of logs and files. correlates events based on times. easy to learn, as secondary users in the company we are definitely restricted on what data we can ingest without increasing company license.\nSplunk Enterprise Security, G2.com, \nGreg V., Information Security Analyst, 5, Splunk allows me to have insight into logs and systems that I could not possible search on my own within any reasonable amout of time., Honestly, there is very little to dislike. Splunk is a very flexible product that allows you to ingest any human-readable text.\nSplunk Enterprise Security, G2.com, \npraveen k., Network Engineer, 4, Real Time Services,Monitoring and easy troubleshooting.\n\nBest Search Engine.\n\nEasily integration with other tools.\n\nEasy way to set up threshold where alerts or email can be triggered\n\nbest data extraction and history. easy learning tool for newbies.\n\neasily get the data in terms of charts, graphs, alerts.\n\nLogs and live data monitoring.\n\nEasy way to pull the service logs, all the features are best, no dislikes in newer version of the tool.\nSplunk Enterprise Security, G2.com, \nMichael L., Senior Solutions Engineer, 4, It's easy to pivot around in the data you have in splunk when investigating something., Licensing can be painfully expensive when you want to put a lot of enterprise data in the system.\nSplunk Enterprise Security, G2.com, Verified User , nan, 4, We use splunk to generate daily reports that show us the health of our data systems. It is one of the primary tools we use for support debuggig, Some of the graphs take a very long time to load and the email alerts can be difficult to use in a useful way\nSplunk Enterprise Security, G2.com, Verified User , nan, 5, The usability of the application is so easy, just install and click click to configure sending data and then u are analyzing, reporting within minutes, It is really very costly and the trail version of premium apps like Enterprise Security and ITSI is not available, only 7 days cloud sandbox is available which is not enough for developers\nSplunk Enterprise Security, G2.com, verified User , nan, 5, The simplicity of splunk stands out the most. Ability to do complex tasks and making them look like a cake walk, The alerting could be more enhanced and the provisions to customise options should be more available\nSplunk Enterprise Security, G2.com, verified User , nan, 5, Splunk Enterprise has the flexibility to do anything required of a logging system or forwarder. It\u2019s modular design allows for large deployments which can be used by all our IT staff. This has been perfect for collecting security logs for our network equipment, The search language and reporting tool are complicated. However this is mainly due to their flexibility. Also setting up large groups of differing devices using the same UDP port is not intuitive.\nSplunk Enterprise Security, G2.com, \nMichael I., nan, 5, Easy to create query and integrate to other system and application. Speaking of application there are a lot of adds on you can integrate to Splunk. Correlation and Investigation is easy because of how Splunk parse data., None. Maybe things to improve is the cost. :D\nSplunk Enterprise Security, G2.com, \nCarlos V., nan, 4.5, new version gives you specific lockout information, it loads up real fast and i like very much the detail on the lockout information,, previous version did not have specific lockout info, it only told you the source of the lock, it used to crash once in a while,\n\nSplunk Enterprise Security, G2.com, \nJoshua S., IT Consultant and Systems Administrator, nan, The power of Splunk ES brings all of your security related data together like no other SIEM I have seen., The minimum time to properly configure and install ES including data normalization is 4-5 weeks.\nSplunk Enterprise Security, G2.com, verified User , nan, 5, IR Pane", "doc_id": "0906c897-2d71-433e-8780-c24e0112d357", "embedding": null, "doc_hash": "4f94d34c841675dae1913d07233ad0c4c6bfb6a2def8b31b503dbb411e735d0a", "extra_info": null, "node_info": {"start": 105525, "end": 109602, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "91bd5b07-7934-4456-94e3-30c014e306fd", "3": "fd110e99-b3bc-4167-8b59-1c4c6697450f"}}, "__type__": "1"}, "fd110e99-b3bc-4167-8b59-1c4c6697450f": {"__data__": {"text": "Enterprise Security, G2.com, verified User , nan, 5, IR Pane single glass is great for analysts to do their job, DM accel jobs on the IDXC\n\nProper field extraction and cim compliance is a chore\nSplunk Enterprise Security, G2.com, verified User , nan, 5, The use of Color and Graphs. Easy to Customize., Take a bit of time to get familiar with the product without any formal training.\nSplunk Enterprise Security, G2.com, C., Senior Security Engineer, 4.5, The power of it. It's a very good tool that does amazing things. Nothing comes close to it., Can be cost-prohibitive. Sometimes, you have to build the haystack before you can find the needles.\nSplunk Enterprise Security, G2.com, verified User , nan, 5, Splunk has a very user-friendly interface, allowing you to easily search by many filters and key phrases to find the data you are looking for. Overall, it includes functionality that is straightforward, and I would say it is one of the best known products of its type., As some state, Splunk can be pretty complex, and it takes time to learn the Splunk searching processing language, or SPL. Load times can be quite slow.\nSplunk Enterprise Security, G2.com, verified User , nan, 4.5, It\u2019s flexibility, it\u2019s speed, it\u2019s support, it\u2019s documentation, and the community., Whilst it\u2019s quick and easy to get up and running, it\u2019s worth taking the time to plan a deployment before you get too far down the road. Before you know it you become dependent on it, and some architecture decisions are hard to unwind.\nSplunk Enterprise Security, G2.com, verified User , nan, 5, that splunk can take any data and turn into some valuable, there is not much i dislike about splunk but the only thing is there is no way to track heavy forwards in the management console\nSplunk Enterprise Security, G2.com, verified User , nan, 4.5, The data about the websites accessed by the users and applications used by them can be easily found out., Sometimes the required information cannot be found even if the correct parameters are entered.\nSplunk Enterprise Security, G2.com, verified User , nan, 4.5, ability to take varying inputs from different data sources And combine parts or data to correlate and extract information otherwise not known, It is A bit pricey if you havent bought full In. It takes Education and training in various fields to Get the Best value. large scale implementations have weird and somewhat quirky upgrade/reboot quirks youneed to be mindful of\nSplunk Enterprise Security, G2.com, verified User , nan, 3.5, The search feature is powerful but a bit difficult to use for novice users as it takes awhile to pick up the tricks that truly make it powerful, The learning curve is a bit steeper than other search products like Elastic Search ELK Kibana.\nSplunk Enterprise Security, G2.com, \nJarbas L., Senior Software Engineering, 3.5, The search function is pretty fast. You can find anything anywhere., It's hard to see the whole source. Actually I don't know how to do it.\nSplunk Enterprise Security, G2.com, Verified User , nan, 4, Splunk is very flexible and can be engineered to be as minimalistic and simple, or as expansive as one desires., Depending on how the logs are fed, the search can often take a long time.\nSplunk Enterprise Security, G2.com, Verified User , nan, 4, As a sys admin/architect, I have enjoyed how simple it is to get running with Splunk on 1 laptop VM all the up to 20+ distributed environment., For more advanced searching/dashboarding, the learning curve can be high for those who have little to no programming background.\nSplunk Enterprise Security, G2.com, \nJamison C. J., Network Visibility Systems Engineer, 5, Customization, configuration, search-ability.\n\nBucketlist user community., Not that I paid for it but it can be rather expensive.\nSplunk Enterprise Security, G2.com, \nSwati G., Assistant Manager", "doc_id": "fd110e99-b3bc-4167-8b59-1c4c6697450f", "embedding": null, "doc_hash": "814fbd350bc523ea0a5f3987b862d2b6663c1dc0e018cf75fd575dd03c09b0b8", "extra_info": null, "node_info": {"start": 109620, "end": 113466, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "0906c897-2d71-433e-8780-c24e0112d357", "3": "f57f536f-7e36-4634-abb1-690b53f0bd05"}}, "__type__": "1"}, "f57f536f-7e36-4634-abb1-690b53f0bd05": {"__data__": {"text": "Enterprise Security, G2.com, \nSwati G., Assistant Manager Fraud Analytics and MIS, 5, Splunk is most flexible SIEM tool and log management. As rightly said by Splunk - Splunk is father of log, Splunk is great tool. only thing is there is very less free training available\nSplunk Enterprise Security, G2.com, \nRick T., Engineer/Producer, 4, Excellent for monitoring, logging, and performing actionable analytics on logged data., A bit pricy; performance cost of indexing is a bit high; must be fully implemented across all applications to be truly useful\nSplunk Enterprise Security, G2.com, Verified User , nan, 4, The fact that it's almost fully customizable by way of scanningb and automated reporting is awesome. Every ten minutes i can be sure that my network is sexure, computers are running well, and servers are up and running. Allows network, security, and helpdesk groups to coordinate efforts more smoothly., Often times running manual scripts or commands over the network spiceworks runs incredibly slow during or directly afterward.\nSplunk Enterprise Security, G2.com, \nRaju K., nan, 4.5, The security dashboard with systems, users, infections and traffic sources, Unknown events requires more time to debug.\nSplunk Enterprise Security, G2.com, Verified User, nan, 4, Endless ways to customize search and specify a search from 900,000 events to 1. Amazing, Not a whole lot, maybe more in app recommendations/suggestions for new users\nSplunk Enterprise Security, G2.com, Verified User, nan, 4, Capability of data collaboration from different sources, Need to be more scalable and dash-boarding should be little more flexible\nSplunk Enterprise Security, G2.com, Gary, CTO, 4, Ability to quickly proceed gigabytes of log data abd find proverbial needles in the haystack, Tough to find great people with Splunk experience\nSplunk Enterprise Security, G2.com, Verified User, nan, 4, Splunk makes it easy to aggregate and visualize all kinds of data., Splunk can be a bit difficult and confusing to set up for the first time.\nSplunk Enterprise Security, G2.com, Verified User, nan, 4, Nice for security and web analytics, nice tool, Nothing much to dislike about it, good to have it.\nSplunk Enterprise Security, G2.com, Sarah.r, Senior Software Developer, 4, The customization that this application provides is amazing., There is a large learning curve to be able to use this application.\nSplunk Enterprise Security, G2.com, \nTamara A., Software Engineer, 2.5, Splunk made searching within our logs easy., After a change in leadership, we ended up going to a different service that provided a lot of the same functionality but cost less.\nSplunk Enterprise Security, G2.com, Verified User, nan, 4.5, Real time monitoring of endpoints, networks to analyse logs, malware , threats and other incidents.\n\nAlert management systems can be assigned to alert us about events.\n\nDashboards can be customized according to the need.\n\nCaptured data can be exported in different formats.\n\nEven data logged in the past can be captured., License prices are based on Volume and lifetime and is slightly expensive.\nSplunk Enterprise Security, G2.com, Verified User, nan, 2.5, The fact you can correlate all the logs in one place for analysis like a siem., The system seems to get bogged down once you ingest a certain amount of data.\nSplunk Enterprise Security, G2.com, Verified User, nan, 4.5, Index data regardless of format or location metrics, logs, clickstreams, sensors, stream network traffic, web servers, custom applications, hypervisors, social media, and cloud services., The structure and schema are applied only at search time.\nSplunk Enterprise Security, G2.com, Verified User, nan, 4, The ability to search for information or incidents in one place instead of having to look through multiple applications., The search strings can take some getting used to and weeding through the information can be cumbersome at", "doc_id": "f57f536f-7e36-4634-abb1-690b53f0bd05", "embedding": null, "doc_hash": "28d41b7f894482126a59002f9ed04436f150c88600b79ba5de2617df72882ab0", "extra_info": null, "node_info": {"start": 113467, "end": 117379, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "fd110e99-b3bc-4167-8b59-1c4c6697450f", "3": "c3314ab4-fc78-4c9f-961f-1144ee720d67"}}, "__type__": "1"}, "c3314ab4-fc78-4c9f-961f-1144ee720d67": {"__data__": {"text": "search strings can take some getting used to and weeding through the information can be cumbersome at times.\nSplunk Enterprise Security, G2.com, Verified User, nan, 2.5, its one of the best tool to indexing your large chunk of data and search them later one, the lack of visualization and the queries have to be known.\nSplunk Enterprise Security, G2.com, Verified User, nan, 3.5, Nice user interface which makes easier to identify errors in application logs. Great tool to get real time performance of systems and solving issues with application., Setting up infrastructure might get costly for large data volumes.\nSplunk Enterprise Security, G2.com, Verified User, nan, 4, Spunk was pretty easy to use, provided good monitoring and alerts., I didn't really dislike anything, at the time i was using it the only thing i could ask for is to format the return data.\nSplunk Enterprise Security, G2.com, \nFotis E., Software Engineer., 4, Customizable alerts that can warn of a system break down on time!, A bit stiff learning curve on its query language.\nSplunk Enterprise Security, G2.com, Verified User, nan, 4, Best tool to support wide range of log management use cases., Two main problems with Splunk - can get expensive with larger data volume and optimizing speed for search becomes challenging sometimes.\nSplunk Enterprise Security, G2.com, Verified User, nan, 4, it provides the best way to debug incase of issues like defect in code or performance.\n\nwe can figure out the number of time the service is being called, Nothing to dislike so farit is working as expected and great help in application development\nSplunk Enterprise Security, G2.com, Verified User, nan, 5, I really like that splunk uses powerful searching. The query language is proprietary but not at all hard to learn., So far I haven't found anything I really don't like about the software.\nSplunk Enterprise Security, G2.com, Verified User, nan, 4, Great debugging tool, helpless me solve issues., Literally nothing to dislike n is great.\nSplunk Enterprise Security, G2.com, Verified User, nan, 4.5, It Improve security posture with end-to-end visibility across all our machine data & Increase detection capabilities using analytics-driven security, There is no option to customize the way analysts view and interact with notable events on the Incident Review dashboard.\nSplunk Enterprise Security, G2.com, \nHabib A., Big Data Ingestion / Migration Tech Lead | Project Manager, 4, The Tool is fast, smart and efficient in threat detection, Need to be a little more Business savvy\nSplunk Enterprise Security, G2.com, Verified User, nan, 2.5, I like the freedom for log searching and ability for free form reporting., It seems to have a large learning curve. There are some resources available but they need much more examples.\nSplunk Enterprise Security, G2.com, \nDan A., Cyber Security Engineer, 4, Splunk has no end to the possibilities and use. You can use it for IT Operations, Security or for sales. It accepts all kinds of data feeds, no matter the vendor or the format. once the data is in Splunk, there is no end to what you can do with it. Manipulate it, report on it, set up alerts and dashboards. If you are a cloud customer, you wont have to worry about the infrastructure giving you more time to play with your data., Learning the Splunk search language takes a little time but its not bad.\nSplunk Enterprise Security, G2.com, verified User , nan, 5, how easily you can search and make sense of logs from many sources. Splunk offers some great dashboards that can be used to trend the frequency of certain meaningful or important log events. Splunk also has some cool performance monitoring capabilities that can be used as a monitor for unix boxes, etc to trend CPU, Memory, disk I/O, etc., The licensing model is quite costly, it really makes it a great idea to have an ELK stack in front of splunk so that you can only send the more meaningful logs to splunk that need to be stored more long term. Really my only dislike is that the licensing model is so expensive if you", "doc_id": "c3314ab4-fc78-4c9f-961f-1144ee720d67", "embedding": null, "doc_hash": "f647f2ac8164bd1f350c28d49f9d7a4a52762a13ecd60def11ff28a35511e7e7", "extra_info": null, "node_info": {"start": 117346, "end": 121404, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "f57f536f-7e36-4634-abb1-690b53f0bd05", "3": "d54cbfeb-69b0-4286-9415-5d9ded2ab720"}}, "__type__": "1"}, "d54cbfeb-69b0-4286-9415-5d9ded2ab720": {"__data__": {"text": "more long term. Really my only dislike is that the licensing model is so expensive if you want to send a crapload of logs, they license by the gigabyte index/day.\nSplunk Enterprise Security, G2.com, verified User , nan, 4.5, Its incredibly powerful search engine, its amazingly quick for how much data it processes and presents., The setup and upgrades are kind technical, nothing has gone wrong so far, but it seems kind of scary to run through the upgrade guide and hope the rpm upgrade works.\nSplunk Enterprise Security, G2.com, \nBill H., Director, Enterprise Technology Infrastructure, nan, My company has been using Splunk for several years now and we can't keep up with departmental demand to add more data to it and build more apps to visualize that data. Splunk's value is in it's simplicity. Ingestion of new data sources is very simple. You can also perform simple searches, i.e. \"error\", \"warning\" or perform very complex searches using the splunk search language. Finally, the ability to turn those search results into interactive visualizations in minutes is incredible., Its cost is too high which limits adoption at the rate we would like.\nSplunk on call, Capterra, Drew S., Marketing, 4, Easiest program to integrate and deploy for developer response toward code break, bug fix, customer request resolution., Extremely robust program, takes time for a team to learn up on its full capabilities.\nSplunk on call, Capterra, Mahipal Singh B., Software Engineer, 5, The most impactful feature of this software is that we can easily schedule the on-call support engineer for our production environment. So, the team can easily reach out to the available engineer. and also help to let us know what incidents get raised in a production environment. It helps organisations to manage the support members. Engineers will get notifications about their on-call week and incident get triggered in the env. It is easy to use., As of now, I don't have anything which I don't like about this software.\nSplunk on call, Capterra, Justin S., DevOps Engineer, 3, VictorOps (now called Splunk On-Call) organizes incidents in a manner similar to a Twitter timeline. It's really convenient being able to browse your history like that. There are a decent number of integrations with third-party services, and the Rule Engine allows you to annotate incoming alerts with additional information such as links to runbooks. In terms of price, you'll pay a lot less than you will for competing products like PagerDuty., Since being acquired by Splunk, VictorOps has been left to rot on the vine. There have been virtually no new features. I was willing to excuse that when VictorOps was operating as a smaller company, but not being able to do an in-depth history of incidents in 2021 is just inexcusable. Splunk's high-pressure sales agents will constantly try to upsell you on other Splunk products. SSO integration is still awkward to set up and use, and there still aren't nearly as many integrations as with PagerDuty.\nSplunk on call, Capterra, Abdullah T., DevOps Engineer, 4, Easy to use and setup - Alerting data can be customized (found this feature missing on other competing software) - Ack-back feature (used Zabbix) - Very good mobile app with notifications - Alert snooze option which is a life saver. - Alert routing works perfectly, Easy to use and setup - Alerting data can be customized (found this feature missing on other competing software) - Ack-back feature (used Zabbix) - Very good mobile app with notifications - Alert snooze option which is a life saver. - Alert routing works perfectly\nSplunk on call, Capterra, Verified Reviewer, nan, 4, VictorOps was easy to deploy, configure teams, and manage on-call rotations. There is a large list of integrations that allow for connections into all our required systems. Included with every integration is a link to their knowledge base. VictorOps is a must have tool for anyone looking to more effectively manage alert escalation and on-call rotations., There are only two things i have come across that are lacking. First, setting up overrides", "doc_id": "d54cbfeb-69b0-4286-9415-5d9ded2ab720", "embedding": null, "doc_hash": "0ee786f231024adc371f344f3104cee6b877a809033aae6b4790f2569a63c41c", "extra_info": null, "node_info": {"start": 121417, "end": 125519, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "c3314ab4-fc78-4c9f-961f-1144ee720d67", "3": "b8517c43-bc1e-417d-a6d9-ae1d884c3a84"}}, "__type__": "1"}, "b8517c43-bc1e-417d-a6d9-ae1d884c3a84": {"__data__": {"text": "only two things i have come across that are lacking. First, setting up overrides for on call management. VictorOps only allows for overrides to be in 30 minutes time blocks. This has caused issues with emergency on call coverage. Second is no having a location, out side the alerts and incidents, to house knowledge base type documents.\nSplunk on call, Capterra, Madhuri K., DevOps Engineer, 4, Efficient way to manage and aggregate alerts. Easy UI to make the rules for the alerts., The team information, on call routines and schedules is not very user-friendly .\nSplunk on call, Capterra, Verified Reviewer, nan, 4, Provides all of the necessary functionality for managing multiple teams of on-call professionals across an organization. App and Slack integration provide a feature-rich experience. override existing schedules, acknowledge or snooze alerts, see detailed history, and run reports., Some features are buried in menus, and the calendar is a little hard to use at times. Some options require clicking a specific toggle icon instead of just the text.\nSplunk on call, Capterra, Verified Reviewer, nan, 5, I love that it lets you customize contact schedules between different users in a company so granularly. This is a new product for us and we are a small company so we need to be careful about easing people into these types of dev-ops schedules and VictorOps allows us to do so., In certain places of the UI, it doesn't make sense the order in which you have to do certain actions like adding users vs creating a schedule. Ultimately we figured it out but it's very strict in some places about how exactly you go about organizing your company's scheduler.\nSplunk on call, Capterra, Michael H., Site Reliability Engineer, 3, The software does a good job of the basics. It seemed easy enough to give out to the whole team and we seem to get the needed functionality out of it. The reports are straightforward and easy to identify the problem areas. Integrations are via API so any noise generator that can make an HTTP POST in theory could be integrated., 5,000 total alerts per month maximum which may sound like a lot, but a growing enterprise company may find that total to be limiting. The UI is very basic, possibly by design or my limited permissions but in a lot of ways it feels hollow and lacks any real character if you have to use it daily. The mobile application works well, and again keep things organized, but underwhelms visually and doesn't captivate the user in any way.\nSplunk on call, Capterra, Verified Reviewer, nan, 4, works like clockwork, providing a smooth seamless experience. It is incredibly easy to assign on call schedules, and set up alerting. the details is provides about the incidents is very granular and helps provide much needed context. it is fairly inexpensive and integrates really well with several other softwares, This isn't a con but a good to have feature I should say. basically it is only as good as your configuration and your logging. victor ops on it's own won't detect new incidents based on past incidents. If certain configurations are off, then it would never receive data input from those points, and you would never be notified of potential incidents arising from the same without human intervention.\nSplunk on call, Capterra, Shivakant D., Technical Consultant, 4, I like the best is the simplicity to set it up and to integrate with other tools, as well as the versatility to create different teams with different escalation schedules and paging policies., The only thing thus far I have a slight issue with is not having a tabbed view of environments, Since the calls use text to speech, it's sometimes difficult to hear the name of the server which has an outage, though once aware you can just check the app.\nSplunk on call, Capterra, Verified Reviewer, nan, 4, very configurable, easy to start and manage calls Flexibility of product, continuous releasing of new features and improvement of existing UI. The chatops integration, configuration of alerts can be a bit cumbersome for chatops it would be nice to have specific routes go to different rooms. API can be a", "doc_id": "b8517c43-bc1e-417d-a6d9-ae1d884c3a84", "embedding": null, "doc_hash": "8758463a19261efe611021c957f38bc1083201250c3a652fe647419841951cfc", "extra_info": null, "node_info": {"start": 125526, "end": 129668, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "d54cbfeb-69b0-4286-9415-5d9ded2ab720", "3": "9ee615c3-8c00-4109-b2e1-6bc8356d134f"}}, "__type__": "1"}, "9ee615c3-8c00-4109-b2e1-6bc8356d134f": {"__data__": {"text": "it would be nice to have specific routes go to different rooms. API can be a bit obtuse\nSplunk on call, Capterra, Kevin H., DevOps Engineer, 5, Intuitive design for the app (which is available for both iOS and Android of course) which makes me use it just as much, if not more, than the web portal., Could use some minor tweaks to Teams configuration, although there is a very good chance we might just be using it wrong.\nSplunk on call, Capterra, Verified Reviewer, nan, 5, I enjoy the clean direct design. It makes it very easy to use. It was by far the easiest and most simple to setup when comparing other products., Verified Reviewer\nSplunk on call, Capterra, Verified Reviewer, nan, 4, The incident timeline is a great way to view events. Mobile apps are great on both iOS & Android., Transformation system (transmogifier) can be pretty confusing at times. Some features seem to only exist in mobile.\nSplunk on call, Capterra, Verified Reviewer, nan, 5, This has made all the difference for our OnCall, Haven't quite figured out how to make VictorOps resolve our issues for us\nSplunk on call, Capterra, Ben D., CTO + Co-founder, 5, Great price/value Easy workflows Incredible integrations, nan\nSplunk on call, Capterra, Jeremy W., Cloud Services Engineer, Operations, 5, Communication-centric design - great for team efforts - Very responsive support and dev team - Easy to set up, easy to use - Lots of integrations available - Contact details in the app makes reaching out to teammates easier in a crisis, Some advanced/niche scheduling options are not currently possible - Data on old alerts can be difficult or impossible to obtain, depending on age - Reporting is a work in progress\nSplunk on call, Capterra, Luis E. C., Infrastructure Engineer, Value Pay Systems, 5, Plenty of integrations, and easy to post to REST API for those that don't exist, Notification messages on home screen could be longer.\nSplunk on call, Capterra, Nikita A., Security Architect, 5, Good Android application to manage/acknowledge incidents. East integration with Zabbix. Nice community and documentation., The application for Android has no buttons on / off for Maintenance mode.\nSplunk on call, Capterra, Chad L., Manager, Developer, 5, Simple when you want it to be, more advanced when you need it to be., Could work better with non-standard schedules. Not every group we work with does on call in standard follow the sun or one week on type of scheduling. Some do on-call in spurts of 4 or 3 hours depending on events.\nSplunk on call, Capterra, Michael U., Ecommerce Specialist, 4, The transmogrifier has been an extremely useful tool for many of our teams. We've added playbook annotations to most of our alerts which has been a boon for our 24 by 7 support team. The Datadog integration has also shown VictorOps's savviness and people-centric approach to building a product. A Datadog VictorOps incident will send all of the pertinent information and graphs to an on-call users phone. The VictorOps mobile app can also be used as a platform to seamlessly chat with other users. We've also been encouraged by some of VictorOp's new features they have started to roll out. Their Statuspage.io integration has made many in our organization excited about the ability to have a one-stop-shop dashboard to communicate down-time incidents to a diverse group of users within our company. Their brand-new Control Calling feature (a feature that creates a conference call and pages users to join, penned \"the new bat signal\" by VictorOps) is also an intriguing feature that several of our teams have started to explore. Possibly our favorite aspect of working with VictorOps over PagerDuty is how responsive their team has been to both our support and development requests., VictorOps is still lacking some of PagerDuty's clerical and reporting functionality; for example, we no longer have the ability to easily reference a specific incident in the past.\nSplunk on call, Capterra, Aaron A., Director Of Support Services, 5, Excellent On-call management and", "doc_id": "9ee615c3-8c00-4109-b2e1-6bc8356d134f", "embedding": null, "doc_hash": "0fed55b8a74643e8cb77ff37a0fb998f370383f68a0356501ea3c965b5c8c26b", "extra_info": null, "node_info": {"start": 129675, "end": 133718, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "b8517c43-bc1e-417d-a6d9-ae1d884c3a84", "3": "1a0b3f07-7ee5-4183-937e-6de0d1c392c6"}}, "__type__": "1"}, "1a0b3f07-7ee5-4183-937e-6de0d1c392c6": {"__data__": {"text": "Capterra, Aaron A., Director Of Support Services, 5, Excellent On-call management and escalations, Transmorgrifier, Customer Service, Potentially, there could be more integrations, but there seem to be more products out there daily that want to send alerts. It is obvious that the dev staff is looking to include more integrations and are extremely responsive to their customer requests even assisting us with working on custom integrations.\nSplunk on call, Capterra, Ian N., Cloud Services Engineer, 5, I am really looking forward to our increased use of the Transmogrifier and its ability to attach documentation to alerts on the fly. I can hardly wait until the next alert that rolls in, including a specific and detailed path to solving the problem that is currently alerting. With the Transmogrifier, this feature is only a few clicks away and I am speaking to our team on this on a regular basis in order to improve the team's efficiency bringing newer folks up to speed faster. The mobile app interface is outstanding and is constantly improved based upon user feedback., The only Con that I have discovered is the time it takes to weed through the alerts that you setup. The robustness of what alerts can be programmed in to be registered is an ongoing process as new systems get added.\nSplunk on call, Capterra, Verified Reviewer, nan, 5, Ease of integration. Quick response on bugs. Proximity to their headquarters. The People!, nan\nSplunk on call, Capterra, Dave N., Director of DevOps, 5, does what it says on the tin very reliable Easy to understand UI, Android app looks a little (very little!) dated\nSplunk on call, Capterra, Sky L., Senior DevOps Engineer, 5, Lots of integration's. Easy to set up and get started. Great customer service. The Dev and Support teams are very responsive. Transmogrifier!, Interface can be hard to use. API is missing key features and still rough around the edges.\nSplunk on call, Capterra, Daniel C., DevOps Engineer, 4, alert routing and team scheduling are great features. annotations for leaving notes on how to handle an alert for new team members., not sure I can think of one at this time\nSplunk APM, Capterra, Tarang K., DevOps Engineer, 4, Splunk APM provides comprehensive monitoring capabilities, including distributed tracing, metrics, and logs, giving users full visibility into application performance. It uses AI-powered analytics to identify patterns and anomalies in application performance data, making it easy to pinpoint the root cause of issues. Splunk APM allows users to create custom dashboards and alerts. It has a large and active community that contributes to its development and provides support and resources for users., Splunk APM can be relatively expensive compared to other APM tools, especially for small or mid-sized organizations. Splunk APM's advanced features and capabilities can have a steep learning curve, requiring some technical expertise to fully utilize. While Splunk APM supports a wide range of languages and frameworks, it may not support all languages and frameworks used in your environment.\nSplunk APM, Capterra, stephanie b., Software engineer, 5, Splunk APM plays a big part in streamlining our operations. We use track the applications' performance and logs and to identify issues and find their root cause ., nan\nSplunk APM, Capterra, Verified Reviewer, nan, 5, We have deployed splunk in my organization to monitor of applications functionality. We integrated it with our internal trace system for optimum collection and correlation of data from various sources. Splunk APM has offered us great insights that have helped improve our operational efficiencies., nan\nSplunk APM, Capterra, Verified Reviewer, nan, 5, We engaged it to monitor our apps in both hybrid and multicloud environments. We deal with a lot of apps with massive amounts of data that need constant monitoring to ensure their security. Splunk APM effectively monitors our daily activities so as to get rid of any bottlenecks., nan", "doc_id": "1a0b3f07-7ee5-4183-937e-6de0d1c392c6", "embedding": null, "doc_hash": "df8688f833ce8d0464900236ff824badfdf3505771e28ed1e8d5de8a7c1f6f66", "extra_info": null, "node_info": {"start": 133694, "end": 137694, "_node_type": "1"}, "relationships": {"1": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2": "9ee615c3-8c00-4109-b2e1-6bc8356d134f"}}, "__type__": "1"}}, "docstore/ref_doc_info": {"10b39136-08ab-44a8-85cb-021f8824bcd8": {"doc_ids": ["0889e864-4b4a-4847-a9ef-7a522c4930c0", "ac706d57-0a59-412d-a131-e613fbcb9675", "1d2ca6d9-a9ca-4bae-8ac1-d4de60496017", "732ef8ef-1247-4ca7-9f4d-16452f459bd4", "bc86f2c5-666d-48fd-bfb5-1853077b08ba", "4f880336-617a-4346-a2a4-8689328dde85", "6e982ddc-23a6-44dc-ba94-8a455805b490", "e7b6c090-bf1b-436b-9a00-6d96311cb2ce", "25003129-bbd9-42f7-9897-49ff1c2054bc", "d4a49c63-7213-455a-8413-e4845faf8793", "db579a1b-332d-49c2-99d8-6115a509c0e3", "79fcf67d-8c85-4505-bb5a-34d28d00d262", "a6a7b0af-b576-416a-b269-bfdc135091ae", "4b795efd-0329-4d32-bbfb-e7cc78af7b08", "cf829ada-81c5-4f09-9ace-a6fb7e38d110", "3e75e777-8fbf-4323-98b3-37de31796f7d", "c1efcfe9-dfd0-4fa7-adce-4c600f051965", "49b02c99-6e6c-4109-9edc-e6fee6834574", "02bd4993-b5e3-4da6-b3d3-00f839c897d3", "2622fd48-4662-4176-9e01-2fafcc0d9147", "f0b5692b-ff9d-456c-a97a-d511f87d78b2", "0eee8be4-f629-4578-9aa9-bea55eafae98", "002dfc10-c8dc-4dd2-aa67-f97c3f65cb8e", "8ce2bd04-544d-4060-98a3-a6ca3e29e868", "b263a9e2-496f-4680-857c-3759017d4fcd", "91bd5b07-7934-4456-94e3-30c014e306fd", "0906c897-2d71-433e-8780-c24e0112d357", "fd110e99-b3bc-4167-8b59-1c4c6697450f", "f57f536f-7e36-4634-abb1-690b53f0bd05", "c3314ab4-fc78-4c9f-961f-1144ee720d67", "d54cbfeb-69b0-4286-9415-5d9ded2ab720", "b8517c43-bc1e-417d-a6d9-ae1d884c3a84", "9ee615c3-8c00-4109-b2e1-6bc8356d134f", "1a0b3f07-7ee5-4183-937e-6de0d1c392c6"], "extra_info": {}}}} \ No newline at end of file diff --git a/index_v2/SplunkProducts/index_store.json b/index_v2/SplunkProducts/index_store.json new file mode 100644 index 0000000000000000000000000000000000000000..1cc0989375bdc239eb556efb4e896464520d4f42 --- /dev/null +++ b/index_v2/SplunkProducts/index_store.json @@ -0,0 +1 @@ +{"index_store/data": {"5d7a0769-7cfb-45d0-9358-92108bb7933f": {"__type__": "vector_store", "__data__": "{\"index_id\": \"5d7a0769-7cfb-45d0-9358-92108bb7933f\", \"summary\": null, \"nodes_dict\": {\"0889e864-4b4a-4847-a9ef-7a522c4930c0\": \"0889e864-4b4a-4847-a9ef-7a522c4930c0\", \"ac706d57-0a59-412d-a131-e613fbcb9675\": \"ac706d57-0a59-412d-a131-e613fbcb9675\", \"1d2ca6d9-a9ca-4bae-8ac1-d4de60496017\": \"1d2ca6d9-a9ca-4bae-8ac1-d4de60496017\", \"732ef8ef-1247-4ca7-9f4d-16452f459bd4\": \"732ef8ef-1247-4ca7-9f4d-16452f459bd4\", \"bc86f2c5-666d-48fd-bfb5-1853077b08ba\": \"bc86f2c5-666d-48fd-bfb5-1853077b08ba\", \"4f880336-617a-4346-a2a4-8689328dde85\": \"4f880336-617a-4346-a2a4-8689328dde85\", \"6e982ddc-23a6-44dc-ba94-8a455805b490\": \"6e982ddc-23a6-44dc-ba94-8a455805b490\", \"e7b6c090-bf1b-436b-9a00-6d96311cb2ce\": \"e7b6c090-bf1b-436b-9a00-6d96311cb2ce\", \"25003129-bbd9-42f7-9897-49ff1c2054bc\": \"25003129-bbd9-42f7-9897-49ff1c2054bc\", \"d4a49c63-7213-455a-8413-e4845faf8793\": \"d4a49c63-7213-455a-8413-e4845faf8793\", \"db579a1b-332d-49c2-99d8-6115a509c0e3\": \"db579a1b-332d-49c2-99d8-6115a509c0e3\", \"79fcf67d-8c85-4505-bb5a-34d28d00d262\": \"79fcf67d-8c85-4505-bb5a-34d28d00d262\", \"a6a7b0af-b576-416a-b269-bfdc135091ae\": \"a6a7b0af-b576-416a-b269-bfdc135091ae\", \"4b795efd-0329-4d32-bbfb-e7cc78af7b08\": \"4b795efd-0329-4d32-bbfb-e7cc78af7b08\", \"cf829ada-81c5-4f09-9ace-a6fb7e38d110\": \"cf829ada-81c5-4f09-9ace-a6fb7e38d110\", \"3e75e777-8fbf-4323-98b3-37de31796f7d\": \"3e75e777-8fbf-4323-98b3-37de31796f7d\", \"c1efcfe9-dfd0-4fa7-adce-4c600f051965\": \"c1efcfe9-dfd0-4fa7-adce-4c600f051965\", \"49b02c99-6e6c-4109-9edc-e6fee6834574\": \"49b02c99-6e6c-4109-9edc-e6fee6834574\", \"02bd4993-b5e3-4da6-b3d3-00f839c897d3\": \"02bd4993-b5e3-4da6-b3d3-00f839c897d3\", \"2622fd48-4662-4176-9e01-2fafcc0d9147\": \"2622fd48-4662-4176-9e01-2fafcc0d9147\", \"f0b5692b-ff9d-456c-a97a-d511f87d78b2\": \"f0b5692b-ff9d-456c-a97a-d511f87d78b2\", \"0eee8be4-f629-4578-9aa9-bea55eafae98\": \"0eee8be4-f629-4578-9aa9-bea55eafae98\", \"002dfc10-c8dc-4dd2-aa67-f97c3f65cb8e\": \"002dfc10-c8dc-4dd2-aa67-f97c3f65cb8e\", \"8ce2bd04-544d-4060-98a3-a6ca3e29e868\": \"8ce2bd04-544d-4060-98a3-a6ca3e29e868\", \"b263a9e2-496f-4680-857c-3759017d4fcd\": \"b263a9e2-496f-4680-857c-3759017d4fcd\", \"91bd5b07-7934-4456-94e3-30c014e306fd\": \"91bd5b07-7934-4456-94e3-30c014e306fd\", \"0906c897-2d71-433e-8780-c24e0112d357\": \"0906c897-2d71-433e-8780-c24e0112d357\", \"fd110e99-b3bc-4167-8b59-1c4c6697450f\": \"fd110e99-b3bc-4167-8b59-1c4c6697450f\", \"f57f536f-7e36-4634-abb1-690b53f0bd05\": \"f57f536f-7e36-4634-abb1-690b53f0bd05\", \"c3314ab4-fc78-4c9f-961f-1144ee720d67\": \"c3314ab4-fc78-4c9f-961f-1144ee720d67\", \"d54cbfeb-69b0-4286-9415-5d9ded2ab720\": \"d54cbfeb-69b0-4286-9415-5d9ded2ab720\", \"b8517c43-bc1e-417d-a6d9-ae1d884c3a84\": \"b8517c43-bc1e-417d-a6d9-ae1d884c3a84\", \"9ee615c3-8c00-4109-b2e1-6bc8356d134f\": \"9ee615c3-8c00-4109-b2e1-6bc8356d134f\", \"1a0b3f07-7ee5-4183-937e-6de0d1c392c6\": \"1a0b3f07-7ee5-4183-937e-6de0d1c392c6\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} \ No newline at end of file diff --git a/index_v2/SplunkProducts/vector_store.json b/index_v2/SplunkProducts/vector_store.json new file mode 100644 index 0000000000000000000000000000000000000000..0ea3f296d4c7b4897daffe666bd23c9c095a9acc --- /dev/null +++ b/index_v2/SplunkProducts/vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {"0889e864-4b4a-4847-a9ef-7a522c4930c0": [-0.005163758527487516, 0.006346194539219141, 0.021557239815592766, -0.01681382767856121, 0.010115635581314564, 0.016731807962059975, -0.02077806182205677, -0.029444701969623566, -0.00468189874663949, -0.03677170351147652, 0.037236474454402924, 0.009063063189387321, 0.028241761028766632, -0.00877599697560072, -0.018331171944737434, 0.02070971392095089, 0.028159743174910545, -0.014681341126561165, -0.0007992548053152859, -0.012931609526276588, -0.031358469277620316, 0.007292826659977436, -0.019916865974664688, -0.002223047660663724, -0.027599280700087547, 0.014271248131990433, 0.009028888307511806, -0.01723759062588215, -0.037646569311618805, 0.020764391869306564, 0.0015293064061552286, -0.016171347349882126, -0.016731807962059975, 0.01327335461974144, -0.02724386751651764, 0.012425827793776989, -0.00027830814360640943, 0.0009893501410260797, 0.004931372590363026, -0.0011696203146129847, 0.025808541104197502, 0.02668340690433979, -0.004907450173050165, -0.004692151211202145, -0.002064136555418372, 0.03682638332247734, 0.001995787490159273, 0.005936101078987122, -0.013826980255544186, 0.007067275233566761, -0.010033616796135902, -0.01090848259627819, -0.02672441489994526, 0.01854988932609558, 0.0005677229491993785, -0.014544643461704254, 0.027954695746302605, -0.0056216963566839695, 0.013635603711009026, 0.00575839402154088, 0.011407429352402687, -0.005567017011344433, -0.013457896187901497, -0.008946869522333145, -0.021529899910092354, -0.01604831963777542, -0.011195547878742218, -0.016595110297203064, -0.022664491087198257, -0.017114561051130295, 0.03658032417297363, 0.039068225771188736, -0.006301767658442259, -0.006042041815817356, -0.017469976097345352, -0.021981002762913704, -0.01960246078670025, -0.02988213486969471, -0.010279673151671886, 2.4529508664272726e-06, 0.02168026752769947, -0.011393760330975056, -0.01809878647327423, -0.0012695806799456477, 0.02553514577448368, 0.037509869784116745, 0.017661353573203087, 0.010990501381456852, -0.0028843232430517673, -0.003984740469604731, 0.0008500893018208444, 0.010060956701636314, 0.021215494722127914, 0.01911034993827343, 0.018126126378774643, 0.028542496263980865, -0.005102244671434164, 0.011011006310582161, -0.012542021460831165, -0.02429119497537613, -0.018262824043631554, -0.014093540608882904, -0.015023086220026016, -0.003595151472836733, -0.022609813138842583, -0.016841165721416473, 0.022145040333271027, -0.005177428480237722, 0.009691872633993626, 0.030237548053264618, -0.028433138504624367, 0.026177624240517616, 0.0009645737009122968, -0.00773025956004858, 0.006903237663209438, -0.012466837652027607, 0.024277525022625923, -0.03001883253455162, -0.012357478961348534, -0.02282852865755558, 0.0032380286138504744, -0.003851459827274084, 0.018112456426024437, -0.03346361592411995, 0.015856942161917686, 0.011578301899135113, 0.01455831341445446, -0.031495168805122375, 0.013280189596116543, -0.013034133240580559, 0.015132443979382515, 0.01827649213373661, 0.006869063246995211, 0.013560419902205467, -0.012576195411384106, 0.001730081276036799, -0.013533079996705055, 0.003530220128595829, -0.008591455407440662, -0.02776331827044487, 0.024127157405018806, 0.032151319086551666, 0.008311225101351738, -0.01016347948461771, 0.004791256971657276, 0.03040158562362194, -0.004186369478702545, 0.01838585175573826, 0.001488297013565898, 0.007108284626156092, 0.013355373404920101, -0.026874782517552376, -0.020805401727557182, 0.0120567437261343, 0.005303873680531979, 0.005040730815380812, 0.013382712379097939, 0.027120839804410934, -0.021420542150735855, -0.007497873157262802, 0.0013114443281665444, 0.005549930036067963, -0.005331213586032391, -0.005348300561308861, -0.007238147314637899, 0.03053828328847885, 0.015925291925668716, -0.02206302061676979, -0.030975716188549995, -0.0024844822473824024, 0.013662942685186863, 0.02519340068101883, -0.0317685641348362, 0.004688733723014593, 0.01506409514695406, 0.0036361608654260635, 0.022281737998127937, 0.00802415981888771, -0.0010619708336889744, -0.031331129372119904, 0.009042558260262012, 0.009315953589975834, -0.01469501107931137, 0.014585653319954872, -0.02181696519255638, -0.01692318543791771, 0.038904186338186264, 0.015487858094274998, 0.004695568699389696, 0.002096602227538824, 0.0027066159527748823, 0.005334630608558655, -0.014913727529346943, -0.004910867661237717, -0.6233418583869934, 0.011653485707938671, 0.009609853848814964, -0.017346948385238647, 0.0017035960918292403, 0.025029363110661507, 0.024236517027020454, 0.004367494024336338, 0.00020355153537821025, 0.02922598458826542, 0.029444701969623566, 0.017005203291773796, -0.0078874621540308, -0.015938961878418922, 0.0018659246852621436, -0.035076651722192764, -0.001627557910978794, -0.03398306667804718, -0.0051124971359968185, -0.006817801855504513, -0.032506730407476425, 0.03195993974804878, 0.013444226235151291, -0.003930061124265194, 0.006182156968861818, -0.008899025619029999, 0.028405798599123955, -0.01500941626727581, -0.005522590130567551, 0.039040885865688324, -0.02720285765826702, -0.0007193720666691661, 0.014681341126561165, 0.011858532205224037, 0.04691467806696892, -0.02070971392095089, -0.02161191962659359, 0.019575122743844986, 0.008119847625494003, 0.03053828328847885, -0.014913727529346943, -0.012193442322313786, 0.031085075810551643, 0.019848518073558807, 0.004398250952363014, -0.002928749890998006, 0.021078797057271004, 0.006325689610093832, -0.004876693245023489, -0.03053828328847885, 0.0021239416673779488, -0.019192367792129517, -0.011373255401849747, 0.008324895054101944, 0.027476252987980843, 0.0012507847277447581, 0.023580366745591164, -0.002669024048373103, 0.013232344761490822, 0.012788076885044575, -0.005334630608558655, 0.001753148972056806, -0.02431853488087654, -0.04062658175826073, -0.06616172194480896, 0.003677170258015394, -0.006376951467245817, -0.022924218326807022, 0.008072003722190857, -0.0028142654336988926, 0.01886429265141487, -0.006069381255656481, -0.005150089040398598, -0.011134034022688866, -0.004353824071586132, 0.02289687842130661, 0.030319567769765854, -0.015050425194203854, 7.470320269931108e-05, 0.014298588037490845, -0.004798091948032379, -0.009671367704868317, -0.019465763121843338, -0.017100892961025238, 0.022596143186092377, 0.01063508726656437, -0.014284918084740639, -0.014804369769990444, -0.02661505714058876, -0.0058267428539693356, 0.011202382855117321, 0.02960873953998089, -0.003998409956693649, -0.030674980953335762, 0.005772063508629799, 0.04256768897175789, -0.00466481177136302, 0.009206595830619335, 0.005109079647809267, -0.007087779697030783, -0.017593003809452057, -0.023758074268698692, -0.006209496408700943, 0.0003989866527263075, 0.021488890051841736, 0.00965769775211811, -0.014407945796847343, -0.004439260344952345, 0.02269183099269867, -0.02738056518137455, -0.014448955655097961, 0.0006757996161468327, -0.025138720870018005, -0.027954695746302605, 0.03781060501933098, -0.021584579721093178, 0.018782274797558784, -0.0007471388089470565, 0.0017189745558425784, -0.001956487074494362, -0.009425312280654907, -0.005713967140763998, 0.013006793335080147, 0.0010004568612203002, 0.008734988048672676, 0.012917940504848957, 0.020299620926380157, -0.0028518573381006718, 0.00884434673935175, -0.010238663293421268, -0.009336458519101143, -0.010730776004493237, 0.011216052807867527, -0.001565189566463232, 0.03138580918312073, -0.019479433074593544, 0.04319649934768677, -0.009958432987332344, 0.008311225101351738, -0.05823325365781784, -0.011052015237510204, -0.004620384890586138, 0.03092103824019432, -0.02755827270448208, 0.00948682613670826, -0.023156603798270226, -0.020873751491308212, 0.006332524586468935, -0.004100933205336332, -0.017524655908346176, -0.00583699531853199, -0.020559346303343773, -0.004897197708487511, 0.02165292762219906, -0.018358511850237846, -0.0019513608422130346, 0.016417402774095535, -0.036115553230047226, 0.003328590886667371, -0.019752828404307365, -0.030319567769765854, 0.0030808262526988983, -0.011441604234278202, -0.0012328431475907564, -0.009965267963707447, -0.008331730030477047, -0.01719658076763153, 0.018959982320666313, -0.021078797057271004, -0.02686111442744732, -0.006804131902754307, -0.014066201634705067, -0.0074773686937987804, 0.019998885691165924, -0.016198687255382538, 0.029472041875123978, -0.01116820890456438, -0.013259684666991234, -0.004565706010907888, 0.00016574605251662433, 0.02386743202805519, 0.013109317049384117, -0.015132443979382515, -0.0018915554974228144, 0.026902122423052788, 0.013396382331848145, 0.028569836169481277, 0.006527319084852934, -0.008249711245298386, 0.01125706173479557, 0.0076755802147090435, 0.004244465846568346, -0.008885355666279793, 0.008899025619029999, -0.03772858530282974, -0.0012729980517178774, -0.027913685888051987, -0.009049393236637115, -0.007176633458584547, 0.03157718852162361, 0.03458453714847565, 0.028788551688194275, -0.01217977236956358, -0.0016728390473872423, 0.011817523278295994, -0.013731291517615318, 0.012781241908669472, -0.00847526267170906, 0.022322747856378555, 0.014708681032061577, -0.01055990345776081, -0.007135624065995216, 0.016444742679595947, -0.025384778156876564, 0.007149294018745422, 0.024168167263269424, 0.018194474279880524, 0.010088295675814152, -0.004353824071586132, -0.0035712295211851597, -0.0004280349239706993, 0.01226862519979477, 0.03576013818383217, -0.0059155966155231, 0.012391653843224049, 0.019028330221772194, 0.008502601645886898, 0.02442789264023304, 0.015761254355311394, -0.016704468056559563, -0.0033251733984798193, 0.031003056094050407, 0.008632464334368706, 0.009233934804797173, 0.04016180709004402, 0.03767390921711922, 0.02362137660384178, -0.01838585175573826, 0.036607664078474045, 0.006411125883460045, 0.0020829325076192617, 0.012480507604777813, 0.009220264852046967, -0.0288432314991951, 0.02429119497537613, -0.007928471080958843, 0.024236517027020454, 0.005068070255219936, -0.022281737998127937, 0.013075142167508602, 0.005208185408264399, -0.006182156968861818, -0.012002064846456051, -0.012521516531705856, 0.01969815045595169, -0.010648757219314575, 0.0241134874522686, 0.013437391258776188, 0.01301362831145525, 0.014585653319954872, 0.00567979272454977, -0.004097515717148781, 0.017469976097345352, -0.0032756205182522535, 0.004470017272979021, -0.005556764546781778, -0.00906989723443985, -0.026833774521946907, -0.022801188752055168, -0.021311184391379356, -0.001315716071985662, -0.01010880060493946, 0.011790183372795582, -0.0038993041962385178, 0.0043572415597736835, -0.0007270612986758351, 0.016636120155453682, 0.021051457151770592, 0.0019291474018245935, 0.015692904591560364, -0.028296440839767456, -0.020135583356022835, 0.025562483817338943, 0.023963119834661484, 0.008741823025047779, -0.012733398005366325, -0.022678161039948463, -0.022213388234376907, -0.00702626584097743, 0.007347505539655685, -0.0001671343925409019, -0.01282225176692009, -0.01395000796765089, -0.015542537905275822, -0.003639578353613615, 0.008591455407440662, 0.038904186338186264, -0.019233377650380135, -0.0038480425719171762, 0.007743929047137499, 0.002786925993859768, 0.015146113932132721, -0.012398488819599152, -0.025166060775518417, 0.012781241908669472, -0.024209177121520042, -0.007258652243763208, -0.005929266102612019, -0.023963119834661484, -0.02612294629216194, 0.0008710211841389537, -0.0058267428539693356, -0.015364830382168293, -0.013457896187901497, -0.01841319166123867, 0.006855393759906292, 0.002990263979882002, -0.01282225176692009, 0.0100267818197608, 0.003355930559337139, -0.010450544767081738, -0.013081977143883705, 0.009965267963707447, 0.020176591351628304, 0.07020797580480576, 0.008728153072297573, 0.000501082802657038, 0.023197613656520844, -0.00882384181022644, -0.017921078950166702, -0.017005203291773796, -0.0236623864620924, 0.023853762075304985, 0.0014857340138405561, -0.02449624240398407, 0.006629842333495617, 0.01615767739713192, 0.0010448836255818605, 0.0017360617639496922, -0.011598806828260422, -0.0031269616447389126, -0.023306971415877342, -0.003632743377238512, 0.011961055919528008, 0.014312257058918476, -0.0011670573148876429, 0.0387674905359745, 0.007244982291013002, 0.02533009834587574, 0.017839059233665466, 0.016280705109238625, 0.015419509261846542, 0.0037796935066580772, -0.0287338737398386, -0.027394235134124756, -2.7633243007585406e-05, 0.01807144656777382, 0.014530973508954048, -0.03729115426540375, 0.016663460060954094, 0.014886388555169106, -0.015351160429418087, -0.018372181802988052, -0.002472521038725972, -0.01405253168195486, 0.03272544965147972, -0.006520484108477831, -0.013054638169705868, 0.0047570825554430485, -0.010532563552260399, -0.017018873244524002, 0.02911662682890892, -0.016239695250988007, 0.0013182791881263256, 0.02143421210348606, 0.014284918084740639, -0.011701329611241817, 0.015296481549739838, -0.0026263061445206404, -0.03269810974597931, -0.01699153333902359, -0.003085952252149582, -0.03078434057533741, -0.02598624862730503, -0.028023045510053635, -0.020545676350593567, -0.003994992468506098, -0.014476294629275799, -0.0033849787432700396, -0.04784422367811203, 0.004753665067255497, -0.004251300822943449, -0.02282852865755558, 0.00170701346360147, 0.003629326121881604, -0.04035318270325661, -0.049320559948682785, 0.010170314460992813, 0.0392049215734005, 0.02091475948691368, -0.008065168745815754, 0.015897952020168304, -0.009425312280654907, 0.010416370816528797, 0.008345399051904678, -0.030948376283049583, 0.0018607985693961382, -0.02589055895805359, 0.008570950478315353, -0.022609813138842583, -0.030456265434622765, -0.007285991683602333, 0.0007296244148164988, 0.027257537469267845, -0.01301362831145525, -0.013348538428544998, -0.0011935424990952015, 0.002655354328453541, 0.021803295239806175, 0.02384009212255478, 0.027476252987980843, -0.016417402774095535, 0.020901089534163475, -0.044563475996255875, 0.012651379220187664, -0.02355302684009075, -0.025767531245946884, -0.010915317572653294, -0.001048301113769412, 0.021529899910092354, -0.023566696792840958, -0.00020056127686984837, -0.007415854372084141, -0.017087223008275032, 0.0018590898253023624, 0.0019667393062263727, -0.0068588112480938435, 0.0025545398239046335, 0.004808344412595034, -0.022076690569519997, 0.011742339469492435, 0.013205005787312984, 0.0028911579865962267, -0.01726492866873741, 0.0031508838292211294, -0.002817682921886444, 0.021242834627628326, -0.008017324842512608, -0.002699781209230423, 0.006482892204076052, 0.02102411910891533, -0.016185017302632332, -0.033928390592336655, 0.003398648463189602, -0.0005224418127909303, 0.009186090901494026, -0.024209177121520042, -0.01852254942059517, 0.001495131989941001, 0.0012789785396307707, -0.01186536718159914, -0.003091078484430909, -0.023306971415877342, -0.012651379220187664, -0.018440529704093933, 0.011926881037652493, 0.017497316002845764, -0.009042558260262012, -0.0015788594027981162, -0.022213388234376907, -0.027599280700087547, 0.011653485707938671, -0.0016173055628314614, 0.019014660269021988, -0.020490996539592743, -0.013526245020329952, -0.030729660764336586, -0.01341005228459835, -0.008680309168994427, -0.028624514117836952, -0.012104588560760021, -0.004962129518389702, 0.062498223036527634, 0.015870612114667892, 0.004938207101076841, 0.015269141644239426, 0.034037746489048004, 0.015023086220026016, -0.025453126057982445, -0.010252333246171474, -0.02370339445769787, -0.013403217308223248, 0.002173494780436158, -0.0016087619587779045, 0.002474229782819748, -0.012125092558562756, 0.0032277763821184635, 0.0014216569252312183, -0.003663500538095832, 0.02064136415719986, -0.00993792898952961, -0.002035088138654828, -0.029936812818050385, -0.039560336619615555, 0.008598290383815765, 0.03745518997311592, -0.010949492454528809, -0.00020280397438909858, -0.021215494722127914, 0.009849075227975845, 0.013991017825901508, 0.009978937916457653, 0.030073510482907295, 0.009978937916457653, 0.03770124912261963, -0.006609337404370308, -0.0025084041990339756, 0.019752828404307365, 0.0005749850533902645, -0.022486785426735878, -0.0026331408880650997, -0.04437210038304329, -0.013095647096633911, 0.012651379220187664, 0.02251412346959114, 0.009336458519101143, -0.014571983367204666, -0.008126682601869106, 0.00474341306835413, 0.027284877374768257, -0.014325927011668682, -0.0076960851438343525, 0.008516271598637104, -0.031139753758907318, -0.015105105005204678, -0.02210403047502041, -0.01252835150808096, 0.0067221131175756454, -0.003858294803649187, -0.002161533571779728, 0.000993622001260519, 0.009500496089458466, -0.009698707610368729, -0.0018180804327130318, 0.026560379192233086, -0.0001927652338054031, 0.031987279653549194, 0.013799640350043774, 0.01450363453477621, 0.008516271598637104, 0.005625113379210234, -0.014462624676525593, -0.0076824151910841465, -0.003003933699801564, -0.012008899822831154, -0.009794395416975021, 0.04923854023218155, -0.007764433976262808, -0.007197137922048569, 0.007402184884995222, -0.008099343627691269, 0.022732840850949287, -0.03362765535712242, 0.01325284969061613, 0.02481064759194851, -0.01266504917293787, -0.04177484288811684, -0.03179590404033661, -0.016417402774095535, 0.014202899299561977, 0.006660599261522293, 0.002677567768841982, 0.004319649655371904, 0.015474188141524792, 0.003977905493229628, 0.03942364081740379, -0.00978072639554739, 0.013389547355473042, -0.01450363453477621, -0.0042478833347558975, -0.02668340690433979, -0.0033320083748549223, 0.0008697396260686219, -0.012138762511312962, 0.003772858763113618, 0.01883695460855961, -0.025070372968912125, 0.0095210000872612, 0.011434769257903099, -0.001934273517690599, 0.00010108159767696634, -0.005939518567174673, -0.023115593940019608, 0.02936268225312233, -0.0013020463520660996, -0.0030586128123104572, -0.008058333769440651, -0.007593561429530382, 0.03592417761683464, -0.02102411910891533, -0.0019052253337576985, -0.006448717787861824, 0.0031184181571006775, 0.0038856344763189554, 0.016376394778490067, 0.013608263805508614, -0.004264970775693655, -0.014489964582026005, 0.006937412079423666, -0.019711820408701897, 0.0005228689988143742, 0.0039437310770154, 0.012637709267437458, -0.03819335997104645, -0.026710746809840202, 0.0008287302916869521, -0.0031098744366317987, 0.004709238652139902, 0.003468706039711833, -0.00638378644362092, -0.0013430556282401085, 0.042130254209041595, -0.01055990345776081, -0.009356962516903877, 0.028815891593694687, 0.009630358777940273, -0.030483605340123177, 0.027298547327518463, 0.008208701387047768, 0.0021546988282352686, 0.016554100438952446, -0.006144565064460039, -0.03860345110297203, -0.035322707146406174, 0.013594593852758408, 0.00023259982117451727, 0.014435285702347755, -0.014284918084740639, 0.014571983367204666, 0.007238147314637899, -0.0016813826514407992, -0.0074636987410485744, -0.013649273663759232, -0.004545201081782579, 0.006171904504299164, 0.015296481549739838, 0.0148727186024189, -0.019397415220737457, 0.026314321905374527, -0.008693979121744633, 0.016868505626916885, -0.0027971782255917788, -0.021447882056236267, -0.02431853488087654, -0.006814384367316961, -0.011229722760617733, -0.002183747012168169, 0.0026348496321588755, 0.00981490034610033, -0.02546679601073265, -0.012904270552098751, 0.015569876879453659, -0.010887977667152882, 0.01116820890456438, 0.004719490651041269, -0.020135583356022835, -0.0013669778127223253, 0.03261609002947807, 0.002677567768841982, -0.05697563290596008, -0.0034396578557789326, -0.014982076361775398, -0.036607664078474045, -0.006137730088084936, -0.004890363197773695, 0.038931526243686676, 0.008003654889762402, -0.02352568693459034, -0.019397415220737457, -0.01597996987402439, -0.023676054552197456, -0.007347505539655685, -0.01973915845155716, 0.023156603798270226, 0.028788551688194275, 0.04746146872639656, 0.013833815231919289, 0.03603353351354599, -0.008502601645886898, 0.0419115386903286, -0.023689724504947662, -0.006756287533789873, -0.014284918084740639, -0.027612950652837753, 0.010170314460992813, -0.026040926575660706, -0.03581481799483299, 0.0064316303469240665, 0.01831750199198723, -0.01604831963777542, 0.006370116490870714, 0.018249154090881348, -0.009801230393350124, -0.01207724865525961, -0.01127756666392088, -0.005980527959764004, 0.024031469598412514, 0.017251260578632355, 0.01360142882913351, -0.02665606699883938, 0.01135958544909954, 0.0078054433688521385, -0.0067323655821383, -0.001181581406854093, 0.022801188752055168, 0.01823548413813114, -0.012548856437206268, 0.021734947338700294, -0.013444226235151291, -0.011147703975439072, 0.004955294542014599, -0.01442161574959755, 0.005604608915746212, 0.00818136241286993, 0.012254956178367138, 0.03297150507569313, -0.007593561429530382, 0.011462109163403511, -0.012364313937723637, 0.024660279974341393, 0.013239179737865925, -0.0008791376021690667, 0.03863079100847244, -0.016417402774095535, -0.008885355666279793, -0.00893319956958294, -0.005672957748174667, 0.024660279974341393, -0.029472041875123978, -0.0002990264038089663, -0.01037536095827818, -0.025384778156876564, -0.013485236093401909, 0.008570950478315353, -0.010183984413743019, -0.0043640765361487865, -0.016895845532417297, -0.010628252290189266, -0.019684480503201485, -0.0015882572624832392, -0.005122749134898186, -0.02519340068101883, 0.0007573911570943892, -0.014982076361775398, 0.012644544243812561, -0.04478219151496887, -0.0007338962168432772, 0.016526762396097183, -0.025945238769054413, 0.006182156968861818, 0.2071244716644287, -0.008441087789833546, 0.01424390822649002, 0.02199467271566391, 0.024277525022625923, -0.008249711245298386, -0.001355016720481217, 0.01424390822649002, -0.00911774206906557, 0.029690757393836975, 0.01007462665438652, -0.0039437310770154, -0.026806434616446495, -0.0037899459712207317, 0.005761811509728432, -0.02717551775276661, -0.0317685641348362, -0.00847526267170906, -0.006807549390941858, 0.0017821972724050283, 0.021078797057271004, -0.011735504493117332, -0.007224477827548981, -0.004059923812747002, 0.023320641368627548, 0.025371108204126358, -0.003255115821957588, 0.0043777464888989925, 0.02963607758283615, 0.024031469598412514, -0.00663667730987072, -0.005413231905549765, 0.007996819913387299, -0.0278316680341959, -0.00628126272931695, 0.003998409956693649, 0.016567770391702652, -0.019233377650380135, 0.015583546832203865, 0.01879594475030899, 0.0027442078571766615, -0.019506772980093956, 0.012938444502651691, -0.029554059728980064, 0.02362137660384178, -0.020696043968200684, -0.014804369769990444, -0.006780209951102734, 0.013198170810937881, 0.025179730728268623, -0.004517861641943455, 0.008748658001422882, 0.013109317049384117, 0.01584327220916748, 0.006787044927477837, 0.00018261968216393143, 0.005871169734746218, 0.008557280525565147, -0.004712656140327454, 0.0037694412749260664, -0.014489964582026005, 0.0068588112480938435, -0.005259447265416384, 0.014120880514383316, -0.040708597749471664, 0.029143966734409332, -0.007511543110013008, 0.025767531245946884, 0.003513132920488715, 0.007135624065995216, 0.0002336677716812119, 0.0014703554334118962, -0.030757000669836998, -0.0017018873477354646, -0.009022053331136703, -0.0003490065282676369, 0.016349054872989655, 0.02307458594441414, 0.043661270290613174, 0.003092787228524685, 0.01775704137980938, 0.0041966219432652, -0.020108243450522423, -0.011496283113956451, 0.011769678443670273, -0.016034649685025215, 0.03089369833469391, -0.01570657454431057, 0.00964402873069048, -0.016800157725811005, -0.01685483567416668, -1.8188546846431564e-06, -0.005963440518826246, -0.004230796359479427, -0.0032141064293682575, -0.013239179737865925, 0.01235064398497343, 0.016526762396097183, -0.011462109163403511, -0.024920005351305008, -0.008960539475083351, 0.04929322004318237, 0.019780168309807777, 0.02738056518137455, -0.012043074704706669, -0.002111980691552162, 0.014982076361775398, -0.0002479783142916858, -0.0032927077263593674, 0.002255513332784176, -0.02206302061676979, -0.05090625211596489, 0.013375877402722836, 9.381952986586839e-05, 0.003294416470453143, 0.028187081217765808, 0.023115593940019608, -0.005573851987719536, 0.014462624676525593, -0.006390620954334736, 0.013068308122456074, -0.0012729980517178774, 0.006527319084852934, 0.0007915655733086169, -0.016622450202703476, -0.027325885370373726, -0.007525212597101927, 0.02321128360927105, -0.026847444474697113, -0.02219972014427185, 0.03370967134833336, -0.005341465584933758, 0.02088742144405842, -0.0060010324232280254, 0.008864850737154484, -0.014148220419883728, -0.003766023786738515, -0.012952114455401897, -0.006797296926379204, -0.004094098694622517, 0.003998409956693649, -0.010088295675814152, 0.016663460060954094, -0.0005954896914772689, 0.00020066807337570935, 0.01221394632011652, -0.006643512286245823, 0.008940034545958042, -0.0143669368699193, -0.013628768734633923, 0.016622450202703476, 0.009473156183958054, 0.0014353266451507807, -0.0006851975922472775, 0.033791691064834595, -0.03540472313761711, -0.04434476047754288, -0.0335729755461216, 0.022678161039948463, 0.015487858094274998, -0.04270438477396965, 0.011660320684313774, 0.03658032417297363, 0.026738084852695465, -0.012323305010795593, 0.010703436098992825, -0.17409829795360565, 0.005447406321763992, 0.018112456426024437, -0.0068451412953436375, -0.003115000668913126, 0.017046213150024414, -0.00558410445228219, -0.007368010468780994, -0.014407945796847343, -0.0015395587543025613, 0.021393202245235443, -0.009753386490046978, -0.02470128796994686, -0.02362137660384178, 0.0013234054204076529, -0.009794395416975021, -0.006879315711557865, 0.022459445521235466, 0.05921747907996178, -0.006705026142299175, 0.0016292666550725698, -0.013047803193330765, -0.003578064264729619, -0.004244465846568346, 0.011127199046313763, 0.011899542063474655, -0.02307458594441414, 0.03939630091190338, 0.01138009037822485, -0.03127645328640938, 0.002036796882748604, -0.00773025956004858, 0.020108243450522423, 0.006964751984924078, -0.005443988833576441, 0.0031201269011944532, -0.005707132164388895, -0.027230197563767433, -0.010402700863778591, 0.023129263892769814, 0.04125538840889931, -0.0009884957689791918, 0.02213137038052082, 0.003140631364658475, 0.012049908749759197, 0.028925249353051186, 0.023443669080734253, -0.014954737387597561, 0.00856411550194025, -0.0026741502806544304, 0.03163186460733414, -0.0209557693451643, -0.008769162930548191, -0.003554142313078046, 0.018877962604165077, 0.014462624676525593, 0.01032068207859993, 0.013246014714241028, 0.004203456919640303, -0.010518894530832767, 0.00602837186306715, -0.015214462764561176, -0.01063508726656437, -0.025453126057982445, -0.0181397944688797, -0.023293301463127136, -0.0017992844805121422, 0.018153464421629906, -0.004640889819711447, 0.012863260693848133, 0.00813351757824421, 0.011954220943152905, 0.013102482073009014, 0.011714999563992023, 0.01127756666392088, 0.007614066358655691, -0.0326707698404789, 0.010505224578082561, 0.01153729297220707, 0.002981720259413123, 0.008673474192619324, 0.018823284655809402, -8.436816278845072e-05, -0.007641405798494816, -0.015624555759131908, -0.021420542150735855, 0.0004536657652352005, -0.0037831109948456287, -0.010628252290189266, 0.0018095368286594748, 0.034311141818761826, -0.011024676263332367, -0.0018027019686996937, 0.0036054039373993874, 0.009589348919689655, 0.009527835063636303, 0.023306971415877342, -0.003248281078413129, 0.004264970775693655, -0.014312257058918476, -0.00978072639554739, 0.03234269469976425, -0.03529536724090576, 0.020436318591237068, 0.023785414174199104, 0.016649790108203888, 0.014941067434847355, -0.009158750995993614, 0.04229429364204407, -0.019916865974664688, -0.016841165721416473, 0.016909515485167503, 0.03781060501933098, -0.0007086925324983895, -0.034557197242975235, 0.028433138504624367, -0.0028911579865962267, -0.009862745180726051, 0.01325284969061613, -0.02077806182205677, 0.04992203041911125, -0.0410093329846859, -0.029526719823479652, -0.0027493340894579887, -0.021584579721093178, -0.02181696519255638, -0.09672734886407852, -0.013751796446740627, 0.042923104017972946, 0.008940034545958042, 0.001198668614961207, 0.016841165721416473, 0.004716073162853718, 0.02168026752769947, 0.003882216988131404, 0.021010449156165123, -0.013997852802276611, -0.006783627439290285, 0.0033405518624931574, -0.014845378696918488, 0.009473156183958054, -0.0021888732444494963, 0.0008441088139079511, -0.018577227368950844, -0.002817682921886444, 0.017210250720381737, 0.001384919392876327, -0.003427696879953146, 0.01423023920506239, 0.0029970987234264612, 0.0009978937450796366, -0.021078797057271004, -0.02553514577448368, 0.016308045014739037, 0.02307458594441414, 0.007607231382280588, 0.03078434057533741, -0.030565623193979263, 0.01820814423263073, -0.02571285143494606, 0.0029167889151722193, -0.012377983890473843, -0.01931539550423622, -0.011756009422242641, 0.011892707087099552, -0.028023045510053635, 0.005625113379210234, 0.005546512547880411, 0.01660878024995327, -0.04155612364411354, -0.0077986083924770355, 0.007101449649780989, -0.01789373904466629, 0.026286981999874115, 0.013423722237348557, -0.00618557445704937, -0.01967081055045128, -0.027804328128695488, -0.042130254209041595, -0.022432105615735054, 0.026191294193267822, 0.012535186484456062, 0.010354856960475445, 0.028187081217765808, -0.014654002152383327, 0.004008662421256304, -0.006834888830780983, 0.007285991683602333, -0.00575839402154088, 0.013129821978509426, 0.001080766785889864, 0.0143669368699193, -0.008960539475083351, 0.00682805385440588, -0.0007727696211077273, -0.003396939719095826, -0.021420542150735855, 0.014517304487526417, -0.023512018844485283, 0.013287024572491646, -0.015966299921274185, 0.00011501836706884205, -0.007251817267388105, -0.01921970769762993, 0.0065546585246920586, 0.018631907179951668, -0.010491554625332355, -0.025740191340446472, 0.011714999563992023, -0.03925960138440132, -0.003241446102038026, 0.000403044861741364, -0.0020760975312441587, -0.027093499898910522, 0.033135540783405304, -0.028788551688194275, 0.022076690569519997, 0.02028595097362995, 0.0035643945448100567, 0.009404807351529598, -0.006404290907084942, 0.004282057750970125, -0.010518894530832767, -0.019069340080022812, 0.015351160429418087, 0.01416188944131136, -0.006821219343692064, 0.008707648143172264, -0.06375584751367569, -0.0011012714821845293, 0.020996779203414917, 0.00743635930120945, 0.004791256971657276, -0.030674980953335762, -0.0002219203015556559, -0.0076892501674592495, 0.0038412075955420732, -0.004179534502327442, -0.04128272831439972, 0.020176591351628304, -0.011844862252473831, 0.010197654366493225, -0.019534112885594368, -0.027161847800016403, 0.009609853848814964, 0.0016882176278159022, 0.01886429265141487, -0.003810450667515397, -0.008482097648084164, -0.006674269214272499, 0.005109079647809267, 0.011974725872278214, -0.02213137038052082, 0.02449624240398407, -0.023115593940019608, 0.016581440344452858, -0.01938374526798725, -0.02168026752769947, 0.0036600830499082804, 0.014667672105133533, -0.014271248131990433, 0.019506772980093956, -0.009931094013154507, -0.06441199034452438, 0.011441604234278202, 0.008256546221673489, 0.00938430242240429, 0.01900099217891693, -0.012377983890473843, -0.025480465963482857, 0.008249711245298386, -0.013382712379097939, -0.025630833581089973, -0.026710746809840202, -0.0001444938243366778, -0.015610886737704277, 0.010935822501778603, -0.013991017825901508, 0.04696935787796974, 0.013512575067579746, -0.01973915845155716, -0.0270388200879097, -0.0033747265115380287, 0.0029919727239757776, 0.0032106891740113497, 0.024195507168769836, 0.017360618337988853, 0.0002492598432581872, 0.0558820515871048, -0.004900615196675062, 0.012781241908669472, 0.0023802500218153, 0.04964863508939743, -0.032370034605264664, -0.059053439646959305, -0.022664491087198257, 0.012295965105295181, -0.025070372968912125, 0.004914285149425268, -0.02668340690433979, 0.03185058385133743, 0.025617163628339767, 0.011284401640295982, -0.001988952746614814, 0.003936896100640297, -0.010245498269796371, 0.0022538045886904, 0.02393578179180622, 0.0003043661417905241, -0.00693057756870985, -0.020586686208844185, 0.015487858094274998, 0.011797018349170685, 0.0026980724651366472, -0.021488890051841736, 0.025097712874412537, 0.009145081043243408, -0.005645618308335543, -0.015351160429418087, -0.0008342836517840624, -0.00821553636342287, 0.002629723632708192, 0.002057301579043269, 0.010136140510439873, -0.0077849384397268295, -0.0021034369710832834, 0.02598624862730503, 0.016144007444381714, -0.007005761377513409, 0.014530973508954048, -0.0017787799006327987, -0.030592963099479675, -0.0115509619936347, 0.013081977143883705, -0.02438688464462757, -0.027257537469267845, 0.0250156931579113, 0.02922598458826542, 0.00938430242240429, -0.008099343627691269, 0.006585415452718735, 0.005942936055362225, -0.031249111518263817, -0.0021273591555655003, -0.01949310302734375, -0.013526245020329952, -0.025863219052553177, 0.009992607869207859, 0.020791731774806976, 0.020340628921985626, 0.015159783884882927, -0.019752828404307365, 0.032233335077762604, -0.010382195934653282, 0.007661910727620125, -0.013697117567062378, 0.017989426851272583, -0.031467828899621964, -0.000798400491476059, 0.007053605280816555, -0.0061684874817729, -0.017046213150024414, -0.015310151502490044, -0.017811721190810204, -0.009261274710297585, 0.020108243450522423, 0.007504708133637905, 0.07780837267637253, 0.02168026752769947, -0.017661353573203087, 0.015528867952525616, -0.03269810974597931, 0.004193204455077648, 0.005471328739076853, 0.005590938962996006, -0.0006172758876346052, -0.017743371427059174, 0.0167864877730608, -0.016102997586131096, -0.007292826659977436, -0.004695568699389696, -0.01660878024995327, -0.0028655272908508778, -0.00046050065429881215, 0.013457896187901497, -0.015351160429418087, 0.00983540527522564, 0.02887057140469551, 0.0026348496321588755, 0.006069381255656481, -0.006616172380745411, -0.04150144383311272, -0.012302800081670284, 0.043032459914684296, 0.016444742679595947, 0.0036532480735331774, -0.029061947017908096, 0.023088254034519196, -0.001627557910978794, -0.02379908412694931, -0.024974683299660683, -0.015132443979382515, 0.01500941626727581, -0.00868714414536953, -0.020381638780236244, 0.009028888307511806, 0.028542496263980865, 0.0054849982261657715, 0.02589055895805359, -0.017811721190810204, -0.015405839309096336, -0.007819113321602345, -0.007156128529459238, -0.0025699182879179716, -0.01250784657895565, 0.004825431387871504], "ac706d57-0a59-412d-a131-e613fbcb9675": [-0.011949033476412296, -0.015285637229681015, 0.001388469128869474, -0.010729889385402203, 0.01339632086455822, 0.007268520072102547, -0.011578300036489964, -0.015043234452605247, -0.027519850060343742, -0.03462082892656326, 0.02469656988978386, 0.026478944346308708, 0.006273955572396517, -0.020119434222579002, -0.003194013610482216, 0.006947692949324846, 0.01449426356703043, -0.0007414674619212747, -0.00535781541839242, -0.002648607362061739, -0.01644061505794525, 0.014544169418513775, -0.020960714668035507, -0.01654042862355709, -0.02770521678030491, 0.016568945720791817, 0.007140188943594694, -0.013888255693018436, -0.04098033532500267, 0.0075430055148899555, 0.015884514898061752, -0.010751278139650822, -0.02649320289492607, 0.002735943766310811, -0.02392658405005932, 0.011421450413763523, 0.010908126831054688, -0.016911162063479424, 0.017638370394706726, -0.0004342308093328029, 0.0181659534573555, 0.021146081387996674, -0.006345250643789768, -0.021559592336416245, -0.008548264391720295, 0.03453527390956879, -0.011421450413763523, 0.00804207008332014, -0.01196329202502966, -0.008377156220376492, 5.631187013932504e-05, -0.015513780526816845, -0.01770966500043869, 0.01040906272828579, 0.01370288897305727, -0.021801995113492012, 0.00847696978598833, -0.006919174920767546, 0.01974870078265667, -0.00931112002581358, -0.0008840573718771338, 0.011478486470878124, -0.03430712968111038, -0.010245083831250668, -0.022015880793333054, -0.02322789467871189, 0.015356931835412979, 0.0036182187031954527, -0.005746372975409031, -0.0038214093074202538, 0.03775780647993088, 0.03770076856017113, -0.0010774448746815324, -0.007275649346411228, -0.0023081740364432335, -0.018294284120202065, -0.010751278139650822, -0.025537850335240364, 0.0021958844736218452, 0.008990293368697166, 0.022030139341950417, -0.023741217330098152, -0.012084493413567543, 0.015884514898061752, 0.02382677234709263, 0.02771947532892227, 0.015071752481162548, 0.02163088694214821, -0.0035130586475133896, -0.0038392329588532448, 0.011949033476412296, 0.014301766641438007, 0.038100019097328186, 0.018251506611704826, 0.021616628393530846, 0.00598164601251483, -0.0036057420074939728, 0.017923550680279732, -0.009589171037077904, -0.02443990856409073, -0.01668301783502102, -0.007771149277687073, -0.009261214174330235, -0.001486499677412212, -0.03593265265226364, -0.03102756105363369, 0.014237601310014725, -3.91008252336178e-05, 0.005482581444084644, 0.015727665275335312, -0.028845936059951782, 0.022942714393138885, -0.009175660088658333, -0.0013100446667522192, 0.017139306291937828, -0.0022404438350349665, 0.021801995113492012, -0.022058656439185143, -0.012940033338963985, -0.01780947856605053, 0.002103201113641262, -0.012647723779082298, 0.03801446780562401, -0.02107478678226471, 0.023598628118634224, 0.004887268878519535, 0.00531860301271081, -0.028047433122992516, 0.0031886666547507048, -0.00282506225630641, 0.00872650183737278, 0.007892350666224957, 0.030428683385252953, 0.01342483889311552, -0.005507534835487604, -0.004302650224417448, -0.019477780908346176, 0.002648607362061739, -0.01447287481278181, -0.013838349841535091, 0.02210143394768238, 0.022743089124560356, 0.007343379780650139, -0.02010517567396164, 0.009767408482730389, 0.03824261203408241, -0.0072114840149879456, 0.000709830317646265, 0.008255954831838608, -0.01852242834866047, 0.003504146821796894, -0.03208272531628609, -0.02128867246210575, 0.012818831950426102, 0.000519116350915283, 0.012205695733428001, -0.013025587424635887, 0.03308085724711418, -0.01648339256644249, 0.003835668321698904, 0.004185013473033905, 0.023997880518436432, -0.008954646065831184, -0.0001807995286071673, -0.001967740710824728, 0.018194470554590225, -0.005454063415527344, -0.007913739420473576, -0.008918997831642628, -0.018351320177316666, 0.004359686281532049, 0.022415131330490112, -0.0242973193526268, 0.026065433397889137, 0.015941550955176353, 0.014480004087090492, -0.00167810486163944, 0.004420286975800991, -0.004049553070217371, -0.023755477741360664, 0.03128422424197197, 0.0008443995611742139, 0.0046056536957621574, 0.00900455191731453, -0.01079405564814806, -0.014551298692822456, 0.030599791556596756, -0.0028197153005748987, -0.0015337326331064105, 0.0014963027788326144, -0.008227436803281307, 0.009767408482730389, -0.00022346510377246886, -0.0016388926887884736, -0.6137069463729858, 0.005115412641316652, 0.013745666481554508, -0.02419750578701496, 0.012954291887581348, 0.013859737664461136, 0.016312284395098686, -0.007942257449030876, -0.018964456394314766, 0.04160773381590843, 0.014686759561300278, 0.013909644447267056, -0.017980586737394333, -0.01403797511011362, -0.019377967342734337, -0.03219679743051529, -0.008612429723143578, -0.031255707144737244, -0.0019819994922727346, -0.012006069533526897, -0.016012845560908318, 0.02843242511153221, -0.0013082623481750488, 0.015998587012290955, 0.01370288897305727, -0.004049553070217371, 0.01903575100004673, -0.013973809778690338, 0.005457628518342972, 0.019078528508543968, -0.036160796880722046, 0.015257119201123714, 0.007992164231836796, -0.005496840458363295, 0.05053386092185974, -0.021873289719223976, -0.013973809778690338, 0.02317085862159729, 0.016768572852015495, 0.041265517473220825, -0.02918815240263939, 0.006601912435144186, 0.020732570439577103, 0.018194470554590225, -0.0093895448371768, 0.012184306979179382, 0.014180565252900124, 0.014914903789758682, 0.005172448698431253, -0.02637913078069687, 0.013838349841535091, -0.019363708794116974, -0.01974870078265667, 0.016568945720791817, 0.015371191315352917, -0.013168176636099815, 0.03205420821905136, -0.014323155395686626, -0.003725161077454686, 0.009795925579965115, 0.0041778841987252235, 0.019720183685421944, -0.01567062921822071, -0.03308085724711418, -0.020147953182458878, 0.00303716491907835, -0.02633635327219963, -0.01729615405201912, -0.013881126418709755, 0.0011995375389233232, 0.03051423840224743, -0.0018055445980280638, -0.00332947401329875, -0.0007539440994150937, 0.0055788299068808556, 0.03333751857280731, 0.06080033257603645, 0.0030318177305161953, 9.090106323128566e-05, 0.015200083144009113, 0.007240002043545246, -0.010237954556941986, -0.027120599523186684, -0.010722760111093521, 0.0315408855676651, 0.008869091980159283, -0.018793348222970963, -0.021816253662109375, 0.013859737664461136, 0.005507534835487604, -0.002807238604873419, 0.028646310791373253, -0.005571700166910887, -0.0436895452439785, 0.01949203945696354, 0.04936462268233299, 0.0047767614014446735, 0.021830514073371887, 0.0036342600360512733, -0.025552108883857727, -0.023612886667251587, -0.022215506061911583, 0.013923903927206993, 0.0028535802848637104, 0.0050726355984807014, 0.013824090361595154, -0.025495074689388275, -0.01949203945696354, 0.04648430645465851, -0.02297123335301876, -0.001401836983859539, -0.007963646203279495, -0.018208729103207588, -0.041465140879154205, 0.021916067227721214, -0.025751736015081406, 0.009118624031543732, 0.0017547468887642026, -0.00402103504166007, -0.0033633392304182053, -0.010152400471270084, -0.007920868694782257, 0.025452297180891037, 0.0071936603635549545, 0.012776054441928864, 0.028517980128526688, 0.016597464680671692, -0.0028161504305899143, 0.009995551779866219, -0.00020876052440144122, 0.0014410491567105055, -0.0011326984968036413, 0.01038767397403717, -0.005953128449618816, 0.022158470004796982, -0.0055610062554478645, 0.029972396790981293, -0.003489887807518244, 0.005407721735537052, -0.057748910039663315, -0.010815443471074104, 0.005867574363946915, 0.01741022616624832, -0.009475098922848701, 0.0021548897493630648, -0.01644061505794525, -0.01350326370447874, 0.002293915022164583, 0.0005864009726792574, -0.01862224005162716, -0.008598171174526215, -0.01278318464756012, -0.006273955572396517, 0.024054916575551033, -0.020404614508152008, -0.01137867383658886, 0.024226022884249687, -0.04015331715345383, -0.0018643629737198353, -0.015855995938181877, -0.02275734767317772, 0.010494616813957691, -0.014401579275727272, -0.012833090499043465, -0.02168792299926281, -0.016041362658143044, -0.004705466795712709, 0.010516004636883736, 0.015143047086894512, -0.022186988964676857, -0.012854479253292084, -0.02776225283741951, -0.001388469128869474, 0.02414046972990036, -0.010444710031151772, 0.016526170074939728, -0.011007940396666527, 0.0023937278892844915, -0.010073976591229439, -0.011927644722163677, 0.018536686897277832, 0.027434296905994415, -0.023541592061519623, -0.008890479803085327, 0.04226364567875862, 0.0004781217430718243, 0.021103305742144585, 0.0020426001865416765, -0.029744252562522888, 0.018650759011507034, -0.011920515447854996, -0.010088235139846802, -0.02771947532892227, 0.006933433935046196, -0.02352733351290226, -0.008662336505949497, -0.027077822014689445, -0.0061064125038683414, -0.012063105590641499, 0.022286800667643547, 0.013303637504577637, 0.010672854259610176, -0.003375815926119685, 0.010580170899629593, 0.02164514735341072, -0.005322168115526438, 0.021402744576334953, -0.016625981777906418, 0.024154728278517723, 0.011250343173742294, 0.003735855221748352, 0.0004660907434299588, -0.007799667306244373, -0.03082793578505516, 0.004826668184250593, 0.01775244250893593, 0.015100270509719849, 0.022985491901636124, 0.00829160213470459, -0.0015168000245466828, 0.0071758367121219635, -0.006951257586479187, 0.02954462729394436, 0.006430804263800383, 0.004651995375752449, 0.001119330758228898, 0.001732467208057642, 0.006370203569531441, 0.0012628118274733424, -0.022899936884641647, -0.01110062375664711, 0.014743795618414879, -0.008170400746166706, -0.009596300311386585, 0.03567599132657051, 0.02806169167160988, 0.020190728828310966, -0.0019695230294018984, 0.054127126932144165, -0.0054255458526313305, 0.028446685522794724, -0.01105071697384119, 0.03282419592142105, -0.02665005251765251, 0.04297659546136856, -0.008990293368697166, 0.02730596624314785, -0.013888255693018436, -0.02198736183345318, 0.01598432846367359, 0.012341155670583248, -0.0036823840346187353, -0.01444435678422451, -0.004234919790178537, 0.03328048065304756, -0.006323861889541149, 0.022899936884641647, -0.001137154409661889, 0.015328413806855679, 0.0193351898342371, 0.010815443471074104, 0.0011523045832291245, 0.017852256074547768, -0.010815443471074104, -0.0017351408023387194, -0.00400677602738142, -0.007771149277687073, -0.032539013773202896, -0.02163088694214821, -0.010344897396862507, -0.0012316202046349645, -0.02342751994729042, 0.007108106277883053, -0.007842444814741611, 0.025038786232471466, -0.0027448555920273066, 0.024254541844129562, 0.011877738870680332, -0.003935481421649456, 0.017424484714865685, -0.021217375993728638, -0.026065433397889137, 0.025038786232471466, 0.012184306979179382, -0.005118977278470993, -0.032282352447509766, -0.0015016498509794474, -0.02301400899887085, -0.0026699958834797144, 0.0007993946201168001, 0.025038786232471466, -0.0023616452235728502, -0.02148829773068428, -0.01306123472750187, 0.008484099060297012, 0.029516108334064484, 0.05241604521870613, 0.004024599678814411, -0.024154728278517723, 0.009382415562868118, 0.0018144564237445593, 0.011343026533722878, -0.014986198395490646, -0.016768572852015495, 0.011221825145184994, -0.02505304478108883, -0.04511544480919838, -0.030685346573591232, 0.0032724381890147924, -0.031113116070628166, 0.009197048842906952, -0.013439097441732883, -0.02101775072515011, -0.017210600897669792, 0.011122012510895729, 0.000996346934698522, -0.0026200893335044384, -0.01608414016664028, 0.025495074689388275, 0.007118800655007362, -0.006127800792455673, -0.01688264310359955, 0.0026093951892107725, 0.008954646065831184, 0.067986860871315, 0.010202307254076004, -0.003792891278862953, 0.010280732065439224, -0.03251049667596817, -0.013253730721771717, -0.0027519850991666317, -0.0254095196723938, 0.02026202529668808, -0.0033829454332590103, -0.023898066952824593, 0.01587025634944439, 0.009147142060101032, 0.007878092117607594, 0.006252566818147898, 2.9938308216514997e-05, -0.014344544149935246, -0.03904111310839653, -0.0032902618404477835, 0.003060335759073496, 0.004295520484447479, 0.0021299365907907486, 0.03367973491549492, 0.01867927610874176, 0.028717605397105217, 0.01268337108194828, 0.011321637779474258, 0.017723923549056053, 0.004160060081630945, -0.03898407891392708, -0.020689794793725014, -0.006149189546704292, 0.0017921767430379987, 0.005029858555644751, -0.03613227978348732, 0.022928455844521523, 0.013282248750329018, -0.005240178667008877, -0.019534816965460777, 0.002459675772115588, -0.000755726476199925, 0.025138599798083305, 0.003299173666164279, -0.014144917950034142, 0.010544522665441036, -0.01857946440577507, -0.009432321414351463, 0.022372355684638023, -0.035191185772418976, 0.01237680297344923, 0.008548264391720295, 0.0008020681561902165, -0.020376095548272133, 0.019463520497083664, 0.01577044278383255, -0.01403797511011362, -0.002169148763641715, -0.010900997556746006, -0.03832816332578659, -0.02261475846171379, -0.022928455844521523, -0.008876221254467964, -0.00034600330400280654, -0.022286800667643547, -0.0019516992615535855, -0.022842900827527046, 0.015627853572368622, 0.006138495169579983, -0.012940033338963985, -0.0024971056263893843, -0.01913556456565857, -0.03476341813802719, -0.034734901040792465, 0.017937809228897095, 0.025067303329706192, 0.020604239776730537, -0.0028428861405700445, 0.01571340672671795, -0.0018857513787224889, 0.018394097685813904, 0.005603782832622528, -0.015428227372467518, -0.008541135117411613, -0.028917230665683746, -0.006680336780846119, -0.0056394306011497974, -0.008362897671759129, -0.011499875225126743, 0.010188047774136066, 0.026108210906386375, -0.006412980612367392, -0.011834961362183094, 0.002226184820756316, -0.007913739420473576, 0.0016763225430622697, 0.019663147628307343, 0.012989940121769905, -0.003318779869005084, 0.03576154634356499, -0.021003492176532745, -0.0011843873653560877, -0.018722053617239, -0.007307732477784157, -0.017923550680279732, 0.005543182138353586, 0.006808667443692684, -0.011421450413763523, -0.00875501986593008, -0.01873631216585636, -0.011186177842319012, -0.012576429173350334, -0.0014303548960015178, -0.019520556554198265, -0.006641124375164509, 0.008049199357628822, -0.0051082829013466835, 0.0055752648040652275, 0.02327067218720913, -0.007514487486332655, -0.015955809503793716, 0.019862772896885872, -0.009945644997060299, 0.017524298280477524, -0.005122541915625334, -0.012947162613272667, 0.004502275958657265, 0.018921678885817528, -0.023541592061519623, -0.032481979578733444, 0.018493909388780594, 0.000293423276161775, 0.025452297180891037, -0.01857946440577507, -0.017567075788974762, -0.015200083144009113, -0.006263261195272207, -0.02449694462120533, -0.005600218195468187, -0.01403797511011362, -0.007935128174722195, -0.035219706594944, 0.022386614233255386, 0.010138141922652721, -0.020447392016649246, 0.012997069396078587, -0.03293826803565025, -0.01996258646249771, -0.007154447957873344, -0.012776054441928864, 0.02138848416507244, -0.03313789144158363, -0.0267498642206192, -0.03393639624118805, -0.00567864254117012, -0.018693536520004272, -0.026920972391963005, -0.012590687721967697, 0.003201143117621541, 0.033508624881505966, 0.04155069589614868, 0.010851091705262661, 0.03185458481311798, 0.017338931560516357, 0.01602710410952568, -0.02597988024353981, -0.009132882580161095, -0.010786925442516804, -0.0022707441821694374, -0.006445063278079033, 0.001721773063763976, 0.008362897671759129, -0.011635336093604565, -0.02245790883898735, -0.0024186810478568077, 0.0005222355248406529, 0.02756262756884098, -0.009917126968502998, 0.015784701332449913, -0.02801891416311264, -0.03961147367954254, 0.011599687859416008, 0.03690226748585701, 0.002539882669225335, -0.00011072996858274564, -0.026678569614887238, 0.013282248750329018, 0.0181659534573555, 0.018308542668819427, 0.027277447283267975, 0.010508875362575054, 0.04083774611353874, -0.002901704516261816, -0.0017476173816248775, 0.0028838806319981813, 0.005186707712709904, -0.007321991492062807, -0.017481520771980286, -0.04175032302737236, -0.01405936386436224, 0.005268696695566177, 0.005796279292553663, 0.009047329425811768, 0.004844491835683584, 0.01606988161802292, 0.02066127583384514, 0.013018458150327206, -0.022671794518828392, -0.021417003124952316, 0.019435003399848938, 0.001536406110972166, -0.0072114840149879456, -0.03057127445936203, -0.01482934970408678, -0.009681854397058487, -0.015456745401024818, 0.008633818477392197, -0.003145889611914754, 0.007090282626450062, -0.007485969457775354, -0.005240178667008877, 0.02046165056526661, 0.006092153489589691, 0.03245346248149872, 0.012305508367717266, 0.016854126006364822, 0.02164514735341072, 0.00022658426314592361, -0.04063812270760536, -0.03356566280126572, -0.0005351576837711036, -0.006099282763898373, 0.004406027961522341, 0.03929777443408966, -0.025224152952432632, -0.00740041583776474, 0.004231355153024197, 0.01380983181297779, -0.008876221254467964, -0.03342307358980179, 0.028104469180107117, 0.007279214449226856, -0.001818912336602807, -0.043860651552677155, -0.018793348222970963, -0.023969361558556557, 0.030999043956398964, 0.007493099197745323, 0.00943945161998272, 0.028304094448685646, 0.00043356241076253355, -0.00740041583776474, 0.04297659546136856, -0.01800910383462906, 0.03271012380719185, -0.0193922258913517, -0.003206490306183696, -0.012861608527600765, -0.00016910271369852126, -0.009175660088658333, -0.02281438373029232, 0.025851547718048096, 0.029886841773986816, -0.024168986827135086, 0.019477780908346176, 0.01591303199529648, 0.00405668281018734, -0.008327250368893147, -0.013203824870288372, -0.01538544986397028, 0.030913490802049637, 0.010430451482534409, -0.016526170074939728, 0.00533286202698946, -0.011343026533722878, 0.028104469180107117, -0.018921678885817528, -0.011535522527992725, -0.01969166472554207, 0.0035469236318022013, 0.01033063791692257, 0.011956162750720978, 0.005585959181189537, -0.015741925686597824, 0.01107210572808981, 0.0024311577435582876, -0.019877031445503235, -0.011806443333625793, -0.008655207231640816, 0.020960714668035507, -0.0449158176779747, -0.006430804263800383, -0.005945998709648848, 0.005618041846901178, 0.0100026810541749, 0.011015069670975208, -0.016012845560908318, 0.01873631216585636, 0.04460211843252182, -0.01500045694410801, 0.014629723504185677, 0.01515730656683445, 0.017338931560516357, -0.027890583500266075, 0.04006776213645935, -0.004088765475898981, 0.00972463097423315, -0.0015399708645418286, -0.0038677509874105453, -0.03955443948507309, -0.020033881068229675, 0.00870511308312416, 0.00704394094645977, 0.012540781870484352, -0.001075662556104362, 0.017595592886209488, 0.004787455778568983, -0.011813572607934475, -0.022529203444719315, -0.011585429310798645, -0.00301042920909822, -0.013175306841731071, 0.007550135254859924, 0.02010517567396164, -0.013938162475824356, 0.014251860789954662, -0.007118800655007362, 0.009617689065635204, 0.014052234590053558, 0.006633995100855827, -0.030856454744935036, -0.007557264529168606, -0.011064976453781128, -0.019107045605778694, -0.008084847591817379, 0.0011104188160970807, -0.032539013773202896, -0.026421908289194107, 0.023099564015865326, -0.006445063278079033, -0.009225566871464252, 0.008690854534506798, -0.013225212693214417, 0.00321005517616868, 0.0041564954444766045, -0.00933963805437088, -0.03963999077677727, -0.02867482788860798, -0.0054219807498157024, -0.022343836724758148, -0.01780947856605053, -0.0016700841952115297, 0.05247308313846588, 0.018137434497475624, -0.015485262498259544, -0.02455398067831993, -0.023142339661717415, -0.026293577626347542, -0.002525623654946685, -0.022186988964676857, 0.015485262498259544, 0.031512368470430374, 0.017738183960318565, -0.017167823389172554, 0.022443650290369987, 0.0011826049303635955, 0.025423778221011162, -0.03419305756688118, 0.0021352837793529034, -0.003439981257542968, -0.010401933453977108, 0.013296508230268955, -0.023142339661717415, -0.04474471136927605, 0.014116399921476841, 0.013182436116039753, -0.025081563740968704, 0.0017841560766100883, 0.02103200927376747, -0.020647017285227776, -0.00568933691829443, -0.002760896924883127, -0.006227613892406225, 0.02295697294175625, 0.00531860301271081, 0.014601205475628376, -0.03082793578505516, 0.006063635461032391, 0.0011950816260650754, -0.007714113686233759, -0.01449426356703043, 0.015756184235215187, 0.001603245153091848, -0.008854832500219345, -0.019420744851231575, -0.020019622519612312, -0.019506298005580902, 0.0021958844736218452, -0.009795925579965115, 0.005864009726792574, 0.015257119201123714, 0.013403450138866901, 0.035077113658189774, 0.006837185472249985, 0.012797443196177483, -0.014729536138474941, 0.00829160213470459, 0.00033441788400523365, 0.0009972380939871073, 0.028033174574375153, -0.02786206640303135, -0.003760808613151312, 0.00175118213519454, 0.02041887305676937, 0.018051881343126297, -0.01739596761763096, -0.00701898755505681, -0.005418416112661362, -0.02194458618760109, -0.009703242219984531, 0.00839141570031643, -0.021602369844913483, 0.01648339256644249, -0.00701898755505681, -0.004862315487116575, -0.003632477717474103, -0.009653336368501186, -0.0025291882921010256, -0.02495323307812214, -0.00046118919271975756, 0.0005636757123284042, 0.00839141570031643, -0.04403176158666611, -0.00700472854077816, 0.0247963834553957, -0.014351673424243927, 0.006812232546508312, 0.19802884757518768, -0.002056859200820327, 0.0024810642935335636, 0.02928796596825123, 0.011057846248149872, -0.005104718264192343, 0.015570816583931446, 0.01709652878344059, 0.006323861889541149, 0.01077266689389944, 0.02291419729590416, -0.004149366170167923, -0.03601820766925812, -0.011656723916530609, 0.0133749321103096, -0.02071831189095974, -0.0260796919465065, -0.015585076063871384, -0.017581334337592125, -0.0035914829932153225, 0.00946796964854002, -0.00806345883756876, -0.009154271334409714, -0.014358802698552608, 0.024539722129702568, 0.028289835900068283, -0.00869798380881548, 0.0013251948403194547, 0.01688264310359955, 0.019834253937005997, -0.01741022616624832, -0.0004687642795033753, 0.02965869940817356, -0.0043917689472436905, -0.007935128174722195, -0.005339991766959429, 0.015200083144009113, -0.00013958214549347758, 0.010815443471074104, 0.033964913338422775, 0.002441852120682597, 0.004922916181385517, 0.01148561667650938, -0.0182229895144701, 0.01739596761763096, -0.00474824383854866, -0.008626689203083515, -0.0011273514246568084, -0.0009134665597230196, 0.03781484067440033, -0.011564040556550026, -1.0729054338298738e-05, -0.002561270957812667, 0.009624818339943886, -0.005642995238304138, -0.004067376721650362, 0.004783891141414642, 0.004801714792847633, -0.0057570673525333405, 0.01171375997364521, -0.022315319627523422, -0.0025951361749321222, 0.0036235658917576075, 0.023213636130094528, -0.04711170122027397, 0.017738183960318565, -0.016255248337984085, 0.032995302230119705, 0.004302650224417448, 0.01110062375664711, -0.030599791556596756, 0.0060458118095994, -0.0206755343824625, -0.022158470004796982, -0.010580170899629593, -0.001770788338035345, 0.006748066749423742, 0.022899936884641647, 0.048052795231342316, 0.010202307254076004, 0.010423321276903152, 0.005172448698431253, -0.017638370394706726, 0.01301132794469595, 0.02061850018799305, -0.012932904064655304, 0.03122718818485737, -0.003030035411939025, -0.0025666181463748217, -0.012747537344694138, -0.004954998847097158, 7.728261152806226e-06, -0.010045458562672138, -0.006249002180993557, -0.01644061505794525, -0.01786651462316513, 0.006908480543643236, 0.009161400608718395, -0.02041887305676937, -0.014758054167032242, -0.015841737389564514, 0.04691207781434059, 0.013873997144401073, 0.027448555454611778, -0.00740041583776474, 0.00473398482427001, 0.0031245010904967785, 0.022842900827527046, -0.008669465780258179, -0.011998940259218216, -0.0302575770765543, -0.04582839459180832, 0.0199483260512352, 0.016454873606562614, 0.029715735465288162, 0.012448098510503769, 0.023156600072979927, -0.0061777071096003056, -0.0011211130768060684, 0.005389898084104061, 0.01010249461978674, 0.008127624168992043, 0.01112914178520441, -0.008747890591621399, -0.022643275558948517, -0.03536229580640793, -0.015727665275335312, 0.010237954556941986, -0.015513780526816845, 0.0008804926183074713, 0.01873631216585636, 0.00026802445063367486, 0.012968551367521286, -0.014857867732644081, 0.01735319010913372, -0.03322344645857811, -0.007699854671955109, 0.007471710443496704, -0.021302931010723114, -0.005200966726988554, 0.016298025846481323, -0.0010195177746936679, 0.017609853297472, -0.0023438213393092155, 0.00034444371704012156, 0.005272261332720518, -0.007635688874870539, 0.009610558860003948, -0.013888255693018436, -0.011385803110897541, 0.025851547718048096, 0.022771606221795082, 0.0062240492552518845, 0.00468407804146409, 0.0339934304356575, -0.04254882410168648, -0.029430555179715157, -0.027648180723190308, 0.044687673449516296, 0.00911149475723505, -0.05640856549143791, -0.0010703153675422072, 0.029829807579517365, 0.029573144391179085, -0.021146081387996674, -0.009917126968502998, -0.18376986682415009, 0.005671513266861439, 0.01281170267611742, 0.003627130528911948, 0.011941904202103615, 0.0045058405958116055, 0.014986198395490646, 0.0067445021122694016, -0.027904843911528587, 0.009261214174330235, 0.009097235277295113, -0.006794408429414034, -0.010858220979571342, -0.019377967342734337, 0.004890833515673876, -0.0008363788947463036, -0.01964888721704483, 0.030428683385252953, 0.05523932725191116, 0.011200436390936375, 0.013218083418905735, -0.013260860927402973, 0.014615464955568314, -0.004067376721650362, 0.013189565390348434, 0.008077717386186123, -0.006651818752288818, 0.026265058666467667, 0.019107045605778694, -0.023855289444327354, 0.004227790515869856, -0.007963646203279495, 0.011293119750916958, -0.017980586737394333, 0.01832280121743679, 0.01441583875566721, -0.010587300173938274, -0.02220124751329422, -0.010815443471074104, 0.023612886667251587, 0.030656827613711357, 0.0023687747307121754, -0.006534182000905275, 0.003406116273254156, 0.00972463097423315, 0.006373768672347069, 0.006994034629315138, -0.020390355959534645, -0.016811348497867584, 0.013759925030171871, 0.02342751994729042, -0.039525918662548065, -0.023655664175748825, -0.0063666389323771, 0.00708315335214138, 0.004010340664535761, -0.017795220017433167, 0.008804926648736, 0.013289378955960274, -0.01990555040538311, -0.01145709864795208, -0.012918644584715366, 0.015214341692626476, -0.011471357196569443, -0.02643616683781147, -0.0337652862071991, -0.005268696695566177, 0.01693967916071415, -0.009482228197157383, 0.01199181005358696, 0.011057846248149872, -0.003398986766114831, -0.002735943766310811, 0.005931739695370197, 0.03869889676570892, 0.011015069670975208, -0.034478235989809036, -0.006134930532425642, 0.02637913078069687, 0.014116399921476841, 0.012868738733232021, 0.00872650183737278, 0.005842620972543955, -0.008134753443300724, -0.023555850610136986, -0.0018839690601453185, 0.016141176223754883, 0.007821056060492992, -0.01467250008136034, 0.010701372288167477, 0.035390812903642654, -0.011706630699336529, 0.008134753443300724, -0.0031886666547507048, 0.018294284120202065, 0.001186169683933258, 0.015627853572368622, -0.00019472432904876769, 0.012048846110701561, -0.01500045694410801, -0.009182789362967014, 0.025637663900852203, -0.028746124356985092, 0.013767054304480553, 0.021559592336416245, 0.026250800117850304, 0.012875868007540703, 0.002629001159220934, 0.03487749025225639, -0.032738640904426575, -0.01571340672671795, 0.0035540531389415264, 0.0048409271985292435, -0.0019802171736955643, -0.025024527683854103, 0.03296678513288498, 0.015798959881067276, -0.007104541640728712, 0.03593265265226364, -0.034021951258182526, 0.05378491058945656, -0.014422968029975891, -0.02138848416507244, 0.008512617088854313, 0.007500228472054005, -0.014529910869896412, -0.11247491091489792, -0.01171375997364521, 0.03607524558901787, 0.01695393957197666, -0.0016638458473607898, 0.02612246945500374, 0.013873997144401073, 0.019520556554198265, -0.0030015173833817244, 0.01751003973186016, -0.012369673699140549, -0.013168176636099815, -0.010352026671171188, -0.004530793987214565, 0.023898066952824593, -0.00704394094645977, -0.002407986903563142, -0.028446685522794724, 0.0013002416817471385, 0.043860651552677155, -0.0028232799377292395, -0.00604937644675374, 0.00035558355739340186, -0.0014036193024367094, -0.008412804454565048, -0.009717501699924469, -0.01441583875566721, 0.00237412191927433, 0.00019828908261843026, 0.007329120766371489, 0.04865167289972305, -0.020889420062303543, 0.03077089972794056, -0.03550488501787186, -0.019050009548664093, -0.01735319010913372, -0.010259343311190605, -0.01837983727455139, 0.01765262894332409, -0.017267636954784393, -0.005896092392504215, 0.014572687447071075, 0.018436873331665993, -0.009432321414351463, -0.006865703500807285, -0.001401836983859539, -0.004865880124270916, 0.05027719959616661, -0.009738890454173088, -0.010950904339551926, -0.029230929911136627, -0.019862772896885872, -0.012911515310406685, -0.018950197845697403, 0.03502007946372032, 0.0010676418896764517, 0.014152047224342823, 0.00016408978262916207, -0.028517980128526688, 0.0008399435901083052, -0.019506298005580902, 0.003158366307616234, -0.013161047361791134, 0.014986198395490646, -0.0006371986237354577, 0.007321991492062807, -0.03342307358980179, 1.6417332517448813e-05, 0.016526170074939728, 0.0009303991100750864, -0.018707795068621635, 0.00434899190440774, -0.015100270509719849, 0.0326530858874321, -0.039725545793771744, 0.009503616951406002, -0.006470016669481993, -0.019506298005580902, 0.0072114840149879456, 0.009895739145576954, -0.02530970610678196, -0.01587025634944439, 0.0069583868607878685, -0.025038786232471466, 0.009460839442908764, -0.0009713936597108841, 0.019435003399848938, -0.015599334612488747, 0.011314508505165577, -0.04043849557638168, 0.0067445021122694016, 0.027790771797299385, 0.013574558310210705, 0.01069424208253622, -0.022999750450253487, 0.0029052691534161568, 0.016854126006364822, -0.019420744851231575, 0.012162918224930763, -0.0006122453487478197, -0.02093219757080078, -0.007821056060492992, -0.04933610558509827, 0.0004963910905644298, 0.027648180723190308, 0.006951257586479187, 0.00795651599764824, -0.03735855221748352, -0.008534005843102932, -0.008020681329071522, 0.00839854497462511, -0.013560299761593342, -0.02342751994729042, 0.0019213989144191146, -0.012612076476216316, -0.0003587027022149414, -0.015570816583931446, -0.014244730584323406, 0.0022956973407417536, -0.0013118271017447114, 0.0266928281635046, 0.004801714792847633, -0.0011228953953832388, 0.017381709069013596, 0.010751278139650822, 0.017895031720399857, -0.006915610283613205, 0.012925773859024048, -0.02101775072515011, 0.024382872506976128, -0.008997422643005848, -0.02225828357040882, 0.030143504962325096, -0.0013947074767202139, -0.016198212280869484, 0.0034025514032691717, -0.01403084583580494, -0.039582956582307816, -0.004819538444280624, 0.012925773859024048, 0.024682311341166496, 0.002949828514829278, -0.011414321139454842, -0.012576429173350334, -0.001719990628771484, -0.02225828357040882, -0.022842900827527046, -0.003668125020340085, -0.018037622794508934, -0.012412450276315212, 0.017367450520396233, 0.026978008449077606, 0.032282352447509766, 0.008762149140238762, -0.0314268134534359, -0.03322344645857811, -0.006666077766567469, -0.00911149475723505, -0.004947869572788477, 0.027933361008763313, 0.016012845560908318, -0.004402463324368, 0.053756389766931534, 0.020347578451037407, 0.008441321551799774, -0.0027145552448928356, 0.024867678061127663, -0.010851091705262661, -0.08321546763181686, 0.0012503351317718625, 0.03818557411432266, -0.023641405627131462, -0.0339934304356575, -0.021474039182066917, 0.024126211181282997, 0.005129671655595303, 0.013132529333233833, -0.008526875637471676, -0.00011323643411742523, -0.03182606399059296, -0.013795572333037853, 0.025594886392354965, 0.02352733351290226, -0.015299895778298378, -0.013909644447267056, 0.013902515172958374, 0.018921678885817528, 0.017338931560516357, -0.027063563466072083, 0.00847696978598833, 0.014123529195785522, 0.004662689752876759, -0.02271457016468048, -0.002760896924883127, 0.01234828494489193, 0.02291419729590416, 0.014159176498651505, 0.006348815280944109, -0.016754312440752983, 0.024325836449861526, 0.028047433122992516, 0.013767054304480553, -0.006445063278079033, 0.010223696008324623, 5.444594717118889e-05, -0.007735501974821091, 0.0009090105886571109, 0.009503616951406002, -0.023384742438793182, -0.03781484067440033, 0.011207565665245056, 0.029516108334064484, -0.018108917400240898, -0.0249104555696249, -0.0023616452235728502, 0.004413157235831022, -0.014594076201319695, 0.00931112002581358, -0.015314155258238316, -0.007161577697843313, -0.020090917125344276, -0.005379203706979752, 0.005871139001101255, 0.018907420337200165, 0.013046975247561932, -0.007186531089246273, 0.03245346248149872, -0.008455581031739712, 0.015200083144009113, -0.016497651115059853, -0.009995551779866219, -0.004823103081434965, 0.015143047086894512, -0.0006759652169421315, 0.004676948767155409, -0.026721347123384476, -0.009204178117215633, -0.02036183699965477, -0.02888871356844902, 0.007785408291965723, -0.015756184235215187, 0.0822458565235138, 0.03245346248149872, -0.01668301783502102, 0.009232696145772934, -0.04169328510761261, 0.006498534698039293, 0.001887533813714981, 0.01449426356703043, -0.011628205887973309, -0.018094658851623535, 0.02501026727259159, -0.01847965084016323, -0.004495146684348583, -0.010594429448246956, -0.019762959331274033, -0.009902868419885635, -0.0028428861405700445, 0.023655664175748825, -0.007913739420473576, 0.012462357059121132, 0.018465392291545868, -0.0027484202291816473, 0.009154271334409714, -0.013382062315940857, -0.029102597385644913, -0.009952775202691555, 0.02756262756884098, 0.026821160688996315, -0.0027805031277239323, -0.019506298005580902, 0.015813220292329788, 0.001296676928177476, -0.026150986552238464, -0.007243566680699587, -0.0029658698476850986, 0.014373062178492546, 0.0010774448746815324, -0.017239117994904518, 0.0068264915607869625, 0.03653153032064438, -0.0051118480041623116, 0.018893161788582802, -0.008662336505949497, -0.03205420821905136, 0.021459778770804405, 0.00040415325202047825, -0.018237248063087463, -0.023612886667251587, -0.01664024032652378], "1d2ca6d9-a9ca-4bae-8ac1-d4de60496017": [-0.010677495039999485, -0.0028219595551490784, -0.004731912165880203, -0.015321713872253895, 0.014234321191906929, 0.014690324664115906, -0.022730015218257904, -0.025143325328826904, -0.008250153623521328, -0.0414191409945488, 0.03170977532863617, 0.023515744134783745, -0.002202847274020314, -0.007422332186251879, -0.0031043307390064, 0.021186619997024536, 0.027219895273447037, 0.007752057630568743, 2.755477362370584e-05, -0.014241336844861507, -0.023277219384908676, 0.014648232609033585, -0.02237924374639988, -0.006598018575459719, -0.019418729469180107, 0.020078180357813835, 0.006071860436350107, -0.013385453261435032, -0.030138317495584488, 0.026546413078904152, -0.004068953450769186, -0.014360599219799042, -0.015672486275434494, 0.005608841776847839, -0.025199448689818382, 0.00715925358235836, -0.0020835846662521362, -0.0066225724294781685, 0.019096018746495247, -0.0072188847698271275, 0.01707557402551174, 0.01767890155315399, 0.0070540220476686954, -0.028145933523774147, -0.019713377580046654, 0.04119464382529259, -0.0015486576594412327, 0.0017056281212717295, -0.01884346269071102, -0.0021853086072951555, -0.008222091943025589, -0.0128172030672431, -0.02400682494044304, 0.004251354839652777, 0.005233515985310078, -0.025325726717710495, 0.023782331496477127, -0.012711971998214722, 0.016093412414193153, -0.0013039943296462297, 0.004833635874092579, 0.007303069811314344, -0.01918020471930504, -0.0020257073920220137, -0.01564442366361618, -0.027121679857373238, 0.0067593734711408615, -0.00011268545495113358, -0.020120272412896156, -0.0024764491245150566, 0.04299059882760048, 0.040745656937360764, -0.001083008130080998, -0.007773104123771191, 0.0038514749612659216, -0.003907598555088043, -0.012887357734143734, -0.01894167996942997, 0.0026202655863016844, 0.0017240436282008886, 0.024034887552261353, -0.024862708523869514, -0.013027666136622429, 0.009344561956822872, 0.0248346459120512, 0.032804183661937714, 0.01657046191394329, 0.00898677483201027, -0.005465025547891855, -0.008271200582385063, 0.016402091830968857, 0.01787533238530159, 0.032383255660533905, 0.02501704730093479, 0.02595711685717106, 0.0013399485033005476, 7.711500074947253e-05, 0.005510625895112753, -0.014129090122878551, -0.0363960862159729, -0.012066551484167576, -0.010361799970269203, -0.018689123913645744, -0.006654141936451197, -0.026392074301838875, -0.015251560136675835, 0.012711971998214722, 0.0052545624785125256, 0.0019625683780759573, 0.021284835413098335, -0.03044699691236019, 0.028356395661830902, -0.004118061624467373, 0.0006050814408808947, -0.0010891465935856104, -0.020821817219257355, 0.019895778968930244, -0.016444183886051178, -0.0040829842910170555, -0.01262778602540493, -0.0005971890641376376, -0.005005514249205589, 0.033225107938051224, -0.022224904969334602, 0.01908198930323124, 0.00024663645308464766, -0.002944729756563902, -0.029829638078808784, -0.004665265325456858, 0.0006322662811726332, 0.010298660956323147, 0.018815401941537857, 0.020948095247149467, 0.009197237901389599, -0.004868713207542896, 0.00319202383980155, -0.013595916330814362, 0.004047906957566738, -0.008201045915484428, -0.019853686913847923, 0.021986380219459534, 0.03364603593945503, 0.013623978942632675, -0.009709364734590054, 0.004510926082730293, 0.030026070773601532, -0.0032569165341556072, 0.012726002372801304, 0.006654141936451197, -0.018675092607736588, 0.005847366526722908, -0.02929646521806717, -0.02302466332912445, 0.011287838220596313, -0.008018644526600838, 0.013518746942281723, -0.008678095415234566, 0.02776709944009781, -0.021200651302933693, 0.0012469938956201077, 0.005864905193448067, 0.013238129206001759, -0.004973944742232561, -0.012648832984268665, -0.0059350598603487015, 0.021888162940740585, 0.005500102415680885, -0.02247745916247368, -0.02535378932952881, -0.009084991179406643, 0.009077975526452065, 0.029212279245257378, -0.028075778856873512, 0.03311286121606827, 0.01916617341339588, 0.012733018025755882, 0.005135299637913704, -0.00538434786722064, 0.003602426964789629, -0.040605347603559494, 0.018141919746994972, -0.00038102592225186527, -0.00043254552292637527, 0.005984167568385601, -0.02752857469022274, -0.01539186853915453, 0.036564458161592484, -0.003306024707853794, -0.0004980959929525852, -0.008446586318314075, -0.0023606945760548115, 0.002116908086463809, -0.008579879067838192, -0.000497657572850585, -0.6115216016769409, 0.0013294252566993237, 0.008607940748333931, -0.013448592275381088, -0.004037383943796158, 0.02724795788526535, -0.004682803992182016, -0.004668773151934147, -0.016654647886753082, 0.029043909162282944, 0.0066786957904696465, 0.003509472357109189, -0.015097220428287983, -0.007303069811314344, -0.01399579644203186, -0.027051525190472603, -0.0036129499785602093, -0.03072761371731758, 0.004044399596750736, -0.00032183315488509834, -0.011778919026255608, 0.029745452105998993, -0.005051114596426487, 0.0212146807461977, 0.012985574081540108, -0.014199244789779186, 0.013041697442531586, -0.010207460261881351, 0.0043846480548381805, 0.027233926579356194, -0.0412227064371109, 0.016093412414193153, 0.01662658527493477, -0.0024659261107444763, 0.04397276043891907, -0.02762679010629654, -0.004724896978586912, 0.026756877079606056, 0.02181800827383995, 0.033730220049619675, -0.021663669496774673, -0.003258670447394252, 0.015714578330516815, 0.01912408135831356, -0.01787533238530159, 0.0033972254022955894, 0.013546808622777462, 0.011175590567290783, 0.005942075047641993, -0.03715375438332558, 0.006363001186400652, -0.01918020471930504, -0.014129090122878551, 0.009197237901389599, 0.020218489691615105, -0.005850874353200197, 0.031962331384420395, -0.001980107044801116, -0.014423738233745098, 0.01755262352526188, 0.0006248123245313764, 0.015953103080391884, -0.032523564994335175, -0.030699551105499268, -0.03431951627135277, 0.007260977290570736, -0.014802572317421436, -0.02233715169131756, -0.006534879561513662, 0.009267392568290234, 0.02688315510749817, -0.001508318935520947, 0.004079476464539766, 0.006696234457194805, -0.008109845221042633, 0.026448197662830353, 0.04355183243751526, -0.0010821311734616756, 0.009274407289922237, 0.01239627692848444, 0.006412109360098839, -0.009884750470519066, -0.023431560024619102, -0.014704355970025063, 0.03631190210580826, 0.006170076783746481, -0.010923035442829132, -0.013455607928335667, 0.001382041024044156, -0.0017214128747582436, -0.005300162825733423, 0.016654647886753082, -0.002237924374639988, -0.03482462838292122, 0.0031499310862272978, 0.04711567610502243, 0.0029517451766878366, 0.015335745178163052, 0.013399484567344189, -0.031260788440704346, -0.018394475802779198, -0.035638418048620224, 0.004598618950694799, -0.0015390114858746529, 0.022505521774291992, 0.019053926691412926, -0.023642022162675858, -0.004265385679900646, 0.03190620616078377, -0.02529766596853733, 0.00094883784186095, -0.012150736525654793, -0.0211164653301239, -0.03979155793786049, 0.020218489691615105, -0.027865314856171608, 0.00580176617950201, 0.0016074120067059994, -0.014086997136473656, 0.0017415821785107255, -0.012599724344909191, -0.0071978382766246796, 0.019096018746495247, 0.001459210878238082, 0.008467632345855236, 0.042597733438014984, 0.013006620109081268, -0.004142615478485823, -0.002241432201117277, 0.0011531624477356672, -0.0008707910892553627, -0.009260376915335655, 0.011968335136771202, 0.004216277506202459, 0.015083189122378826, -0.00782221183180809, 0.027865314856171608, -0.004535479936748743, 0.014942880719900131, -0.06482263654470444, -0.018689123913645744, 0.007990582846105099, 0.022084595635533333, -0.023010633885860443, 0.0026553429197520018, -0.017047511413693428, -0.008593910373747349, 0.015097220428287983, 0.008208061568439007, -0.02228102833032608, -0.005166869144886732, -0.011638609692454338, -0.011056328192353249, 0.017692930996418, -0.02135499007999897, -0.015139312483370304, 0.014816602692008018, -0.0278512854129076, 0.00937963929027319, -0.011589501984417439, -0.012431354261934757, 0.016963327303528786, -0.00863600242882967, -0.010593309998512268, -0.03106435388326645, -0.0018029672792181373, -0.007639810908585787, 0.008769296109676361, 0.005054622422903776, -0.023010633885860443, -0.011638609692454338, -0.039398692548274994, 0.0029640221036970615, 0.013399484567344189, -0.008053721860051155, 0.02006414905190468, -0.008678095415234566, -0.007408301346004009, -0.010481062345206738, -0.012291045859456062, 0.025381850078701973, 0.02543797343969345, -0.017398282885551453, -0.0045705572701990604, 0.04304672032594681, 0.0022396782878786325, 0.0212146807461977, -0.003313040127977729, -0.02441371977329254, 0.005763181485235691, -0.013027666136622429, -0.00856584869325161, -0.012466431595385075, 0.009414716623723507, -0.0390058308839798, -0.013083789497613907, -0.024525968357920647, -0.010053121484816074, -0.015209467150270939, 0.026434166356921196, 0.03193426877260208, 0.011575470678508282, -0.0009391916100867093, 0.011933257803320885, 0.016163567081093788, -0.012529570609331131, 0.028959723189473152, -0.017580684274435043, 0.017398282885551453, 0.017342159524559975, 5.077970490674488e-05, -0.010663463734090328, -0.0009847920155152678, -0.027472451329231262, 0.0018801371334120631, 0.00861495640128851, 0.02056926116347313, 0.02423131838440895, -0.005096714943647385, 0.0003992222191300243, 0.00842553935945034, -0.0034217792563140392, 0.03243938088417053, 0.014886757358908653, 0.006878635846078396, 0.006057829596102238, 0.013364407233893871, 0.023333342745900154, 0.0024536489509046078, -0.02214071899652481, -0.009863704442977905, 0.016219690442085266, -0.011098421178758144, 0.0033323324751108885, 0.04293447360396385, 0.026897184550762177, 0.022814201191067696, 0.007075068075209856, 0.048434577882289886, -0.005528164096176624, 0.017426345497369766, -0.005401886533945799, 0.015027065761387348, -0.02149529941380024, 0.03687313571572304, -0.01908198930323124, 0.030811799690127373, -0.005889459513127804, -0.02340349741280079, 0.015714578330516815, 0.016794955357909203, -0.005749150644987822, -0.00622269231826067, -0.004696834832429886, 0.02187413163483143, -0.006983867380768061, 0.039061952382326126, 0.006769896484911442, 0.006419125013053417, 0.024764493107795715, 0.017103634774684906, 0.005072161089628935, 0.005928044207394123, -0.0027728513814508915, -0.0032060546800494194, -0.002725497353821993, -0.02971739135682583, -0.04144719988107681, -0.0248346459120512, -0.02127080410718918, -0.00015938196156639606, -0.02455402910709381, 0.0055036102421581745, -0.002609742572531104, 0.01690720207989216, -0.0044232327491045, 0.02738826535642147, 0.009253361262381077, -0.0033761789090931416, 0.017692930996418, -0.021144526079297066, -0.0291561558842659, 0.02873522974550724, 0.009162160567939281, -0.003977752756327391, -0.023375436663627625, -0.005854382179677486, -0.0012277014320716262, 0.0014022104442119598, 0.006882143672555685, 0.02033073641359806, -0.011849072761833668, -0.029268402606248856, -0.019053926691412926, 0.010361799970269203, 0.028987785801291466, 0.04734016954898834, -0.002606234746053815, -0.016823017969727516, 0.006366509012877941, 0.011575470678508282, 0.02065344713628292, -0.014872726052999496, -0.021200651302933693, 0.015111250802874565, -0.025283634662628174, -0.03271999955177307, -0.020863909274339676, -0.008264184929430485, -0.03370215743780136, 0.005686011631041765, -0.013792349025607109, -0.01620565913617611, -0.009092005901038647, -0.005608841776847839, 0.005671980790793896, -0.009232315234839916, -0.020948095247149467, 0.018212074413895607, 0.005629888270050287, -0.006078876089304686, -0.009365607984364033, 0.00814492255449295, 0.010873926803469658, 0.06869515776634216, 0.02153739146888256, -0.001134746940806508, 0.018731215968728065, -0.016696739941835403, -0.020204458385705948, -0.02256164513528347, -0.028103839606046677, 0.020723599940538406, -0.00012715479533653706, -0.036283839493989944, 0.015616362914443016, -0.005647426936775446, 0.009898781776428223, 0.0001549973094370216, -0.009070959873497486, -0.015027065761387348, -0.03701344504952431, -0.007723995950073004, 0.005822812672704458, -0.010060136206448078, 0.007667872589081526, 0.036143530160188675, 0.01620565913617611, 0.01570054702460766, 0.01394668873399496, 0.011659655719995499, 0.029913822188973427, 0.00026264041662216187, -0.026827029883861542, -0.019110050052404404, -0.00033323324169032276, 0.006345462519675493, 0.02014833502471447, -0.03998798877000809, 0.011645625345408916, 0.007211869116872549, -0.0164862759411335, -0.016444183886051178, 0.009316500276327133, 0.003153438912704587, 0.024301473051309586, 0.002265986055135727, -0.005731611978262663, 0.012122674845159054, -0.008341354317963123, -0.02414713427424431, 0.028328334912657738, -0.024357596412301064, 0.011926243081688881, 0.016079381108283997, 0.00718380743637681, -0.0115614403039217, 0.017847271636128426, 0.002148477593436837, -0.0207095704972744, -0.01954500749707222, -0.02543797343969345, -0.03591903671622276, -0.022014440968632698, -0.018029673025012016, -0.019629191607236862, -0.0018415522063151002, -0.02845461294054985, 0.002006415044888854, -0.02627982757985592, 0.0033165477216243744, 0.0037532588467001915, -0.004812589846551418, 0.002771097468212247, -0.01221387553960085, -0.02539588138461113, -0.029549019411206245, 0.009863704442977905, 0.03824816271662712, 0.01560233160853386, -0.0025290651246905327, 0.016584493219852448, -0.004037383943796158, 0.007092606741935015, -0.0057982588186860085, -0.017482468858361244, -0.006061337422579527, -0.02548006735742092, -0.0018520753365010023, -0.01223492156714201, -0.0002946483436971903, -0.008909604512155056, 0.003262178273871541, 0.0349930003285408, -0.009414716623723507, -0.011456208303570747, 0.007723995950073004, -0.010880942456424236, 0.01755262352526188, 0.025704560801386833, 0.017889363691210747, 0.0010014536092057824, 0.037069570273160934, -0.03504912182688713, 0.006931251846253872, -0.024034887552261353, -0.022631799802184105, -0.024357596412301064, 0.007289038971066475, 0.010137306526303291, -0.005889459513127804, -0.00817298423498869, -0.010621371679008007, -0.013224098831415176, -0.021102434024214745, 0.005440471228212118, -0.019755469635128975, -0.010993190109729767, 0.007155745755881071, -0.009211268275976181, 0.008811389096081257, 0.006668172776699066, 0.003369163488969207, -0.015041097067296505, 0.0182962603867054, -0.0016170581802725792, 0.012522554956376553, -0.005500102415680885, -0.010495093651115894, 0.009912812151014805, 0.022351181134581566, -0.025452004745602608, -0.041615571826696396, 0.012438369914889336, 0.006180599797517061, 0.010172383859753609, -0.016823017969727516, -0.015981165692210197, -0.013455607928335667, 0.003588395891711116, -0.019979964941740036, -0.0072469464503228664, -0.020906001329421997, 0.004994991235435009, -0.02163560688495636, 0.021705761551856995, 0.009968935512006283, -0.02006414905190468, 0.002230908954516053, -0.029268402606248856, -0.02841251902282238, -0.012241937220096588, -0.0009584840736351907, 0.01847866177558899, -0.028819415718317032, -0.015405899845063686, -0.028763290494680405, -0.005440471228212118, -0.0075907027348876, -0.01801564171910286, -0.012354184873402119, 0.006492787040770054, 0.04529166221618652, 0.041391078382730484, 0.01606534980237484, 0.03676088899374008, 0.024778522551059723, 0.025564251467585564, -0.018633000552654266, -0.01042493898421526, -0.018184011802077293, -0.002972791437059641, -0.004766989499330521, 0.005244038999080658, 0.012669879011809826, -0.014802572317421436, -0.016612553969025612, -0.0017977056559175253, 0.009744442068040371, 0.01643015258014202, -0.008523755706846714, 0.00803267490118742, -0.019559038802981377, -0.04043697938323021, 0.011315899901092052, 0.04265385493636131, 0.0013829179806634784, -0.009758472442626953, -0.023992793634533882, 0.01218581385910511, 0.01852075383067131, 0.01805773377418518, 0.03381440415978432, 0.008208061568439007, 0.02957708202302456, -0.008397477678954601, -0.00012726441491395235, 0.013132898136973381, 0.009056929498910904, -0.015532176941633224, -0.019657254219055176, -0.043018657714128494, -0.014297460205852985, 0.007969535887241364, 0.010200445540249348, 0.013574870303273201, 0.0003661181253846735, 0.01274003367871046, 0.0195029154419899, 0.005279116332530975, -0.014255368150770664, -0.010389861650764942, 0.009505917318165302, -0.02409101091325283, -0.005380840040743351, -0.03106435388326645, -0.01787533238530159, -0.0026202655863016844, -0.005303670186549425, -0.0009453301317989826, 0.007152237929403782, 0.005205454304814339, -0.009239330887794495, -0.02010624296963215, 0.01097915880382061, 0.005303670186549425, 0.03516136854887009, 0.010782726109027863, 0.014774509705603123, 0.012501508928835392, -0.003756766440346837, -0.026307888329029083, -0.024806585162878036, 0.0023817408364266157, 0.0015784732531756163, -4.984111455996754e-06, 0.044449809938669205, -0.020022056996822357, -0.0021747853606939316, 0.0087482500821352, 0.017805179581046104, 0.016640616580843925, -0.03914613649249077, 0.02837042696774006, 0.01717378944158554, 0.007127684075385332, -0.039763495326042175, -0.023319311439990997, -0.02660253643989563, 0.015560239553451538, -0.000866406480781734, 0.008860496804118156, 0.015532176941633224, 0.010474047623574734, -0.007457409519702196, 0.030839860439300537, -0.031176602467894554, 0.030895983800292015, -0.015953103080391884, -4.29421488661319e-05, -0.01021447591483593, -0.005493087228387594, -0.002644819673150778, -0.018422536551952362, 0.00835538562387228, 0.03204651549458504, -0.026700753718614578, 0.019320514053106308, 0.016233721747994423, 0.009155144914984703, -0.01063540205359459, -0.018492691218852997, -0.01745440624654293, 0.030278624966740608, -0.0052545624785125256, -0.020597321912646294, -0.001936260610818863, -0.014704355970025063, 0.013525762595236301, -0.02585889957845211, -0.011126482859253883, -0.00819403026252985, -0.008951697498559952, -0.002106384839862585, 0.017159758135676384, -0.0019397683208808303, -0.00919022224843502, 0.00863600242882967, -0.00024269026471301913, -0.019152142107486725, -0.0009690072038210928, 0.002176539273932576, 0.023291250690817833, -0.042738042771816254, -0.010551217012107372, -0.011526362970471382, -0.0011593009112402797, 0.012143720872700214, 0.010656449012458324, -0.012543600983917713, 0.012964527122676373, 0.03956706449389458, -0.008727203123271465, 0.00501603726297617, 0.021986380219459534, 0.014521954581141472, -0.043664079159498215, 0.03833234682679176, -0.0014320260379463434, 0.0055877952836453915, 0.0072258999571204185, -0.006685711443424225, -0.038837458938360214, -0.01699138805270195, 0.020948095247149467, 0.007562641054391861, 0.011091405525803566, 0.0005695658037438989, 0.017889363691210747, 0.011870119720697403, -0.010460016317665577, -0.017931457608938217, -0.018815401941537857, 0.0008133522351272404, -0.0005226500215940177, 0.016500307247042656, 0.02061135321855545, -0.014634201303124428, 0.039847683161497116, -0.0060262600891292095, -0.001124223810620606, 0.01321006752550602, -0.009744442068040371, -0.024680307134985924, -0.00793445948511362, -0.013799364678561687, -0.010944081470370293, 0.0043565863743424416, -0.0031674697529524565, -0.03701344504952431, -0.03114853985607624, 0.02465224452316761, -0.004823112860321999, -0.000871668045874685, 0.026672691106796265, -0.019699346274137497, -0.013062743470072746, 0.011905196122825146, -0.012312091886997223, -0.04374826326966286, -0.017468437552452087, -0.007373224012553692, -0.017622778192162514, -0.014900787733495235, -0.0076047335751354694, 0.03822010010480881, 0.020218489691615105, -0.010340753942728043, -0.030559243634343147, -0.027472451329231262, -0.01708960346877575, -0.009498901665210724, -0.031036293134093285, 0.014192229136824608, 0.02469433844089508, 0.021803978830575943, -0.011098421178758144, 0.03816397860646248, 0.0026272812392562628, 0.03213069960474968, -0.040044113993644714, -0.006103429943323135, -0.009042898193001747, -0.01680898666381836, 0.013918627053499222, -0.011666671372950077, -0.03555423393845558, -0.0019625683780759573, 0.01596713438630104, -0.013413514941930771, -0.002797405468299985, 0.01586891897022724, -0.025746652856469154, 0.0013978257775306702, 0.002425587270408869, -0.016879141330718994, 0.02999800816178322, 0.006191123276948929, 0.0050090220756828785, -0.02803368680179119, 0.01657046191394329, 0.006654141936451197, -0.006517340894788504, -0.022084595635533333, 0.01536380685865879, 0.014704355970025063, -0.008713172748684883, -0.0022905401419848204, -0.0072539616376161575, -0.015462023206055164, 0.001283824909478426, -0.006527863908559084, 0.004209262318909168, 0.010852880775928497, 0.009498901665210724, 0.014304475858807564, 0.01592504233121872, 0.021733824163675308, -0.009120067581534386, 0.019629191607236862, 0.006250754464417696, -0.0034024869091808796, 0.02153739146888256, -0.006734819617122412, 0.0043565863743424416, -0.0020485075656324625, 0.020485075190663338, 0.01213670615106821, -0.013911611400544643, -0.012298060581088066, -0.001446056878194213, -0.030250564217567444, -0.0007037360337562859, 0.006506817881017923, -0.0248346459120512, 0.0036725811660289764, -0.0018468137132003903, -0.01431850716471672, -0.007997598499059677, -0.004563541617244482, -0.008734218776226044, -0.022870324552059174, -0.008530771359801292, -0.013497700914740562, 0.014030873775482178, -0.04335540160536766, -0.011554424650967121, 0.0175947155803442, -0.022266997024416924, 0.019067957997322083, 0.19957515597343445, -0.0075907027348876, 0.001616181223653257, 0.031036293134093285, 0.02251955308020115, -0.010551217012107372, 0.003586642211303115, 0.01824013516306877, 0.000940945465117693, 0.014451799914240837, 0.010438970290124416, -0.00014688570809084922, -0.035217493772506714, -0.004994991235435009, 0.027177803218364716, -0.014928849413990974, -0.022673891857266426, -0.010873926803469658, -0.01536380685865879, -0.0026237734127789736, 0.01399579644203186, -0.003267439780756831, -0.015349775552749634, -0.017398282885551453, 0.01731409877538681, 0.02014833502471447, -0.010951097123324871, 0.005847366526722908, 0.006671680603176355, 0.02038685977458954, -0.017103634774684906, -0.0051738847978413105, 0.031681712716817856, -0.009758472442626953, -0.021411113440990448, -0.0067032501101493835, 0.003904090728610754, -0.00900782085955143, 0.00438815588131547, 0.027753068134188652, 0.0004888882394880056, -0.015251560136675835, -4.850517143495381e-06, -0.023249158635735512, 0.026588505133986473, -0.029043909162282944, -0.00817298423498869, -0.004023353103548288, 0.0006142891943454742, 0.02808981016278267, -0.006436663214117289, 0.0060262600891292095, 0.001482888008467853, 0.009625179693102837, 0.003509472357109189, 0.0002812751627061516, 0.00600170623511076, 0.0009690072038210928, -0.014065951108932495, -0.004854682367295027, -0.023221096023917198, 0.012045505456626415, 0.0036655657459050417, 0.02061135321855545, -0.04248548671603203, 0.028665075078606606, -0.01237523090094328, 0.029689328745007515, 0.007211869116872549, 0.006948790047317743, -0.035021062940359116, 0.012845264747738838, -0.021803978830575943, -0.013967734761536121, -0.013960719108581543, -0.002106384839862585, -0.002725497353821993, 0.01643015258014202, 0.0496692918241024, 0.01972740888595581, 0.006261277478188276, 0.014844664372503757, -0.01903989538550377, 0.0002490479964762926, 0.007506517693400383, -0.005233515985310078, 0.03695732355117798, -0.0027763592079281807, -0.0015232267323881388, -0.026013240218162537, -0.017117666080594063, -0.012094613164663315, -0.0139747504144907, 0.0023940177634358406, -0.00640860153362155, -0.01745440624654293, 0.009344561956822872, 0.014634201303124428, -0.01478854101151228, -0.023291250690817833, -0.015504115261137486, 0.05014634132385254, 0.01745440624654293, 0.030475057661533356, -0.010951097123324871, 0.0016723048174753785, -0.0013750256039202213, 0.017566654831171036, 0.0012925942428410053, -0.011224699206650257, -0.01922229677438736, -0.03676088899374008, 0.010172383859753609, 0.014648232609033585, 0.010530170984566212, 0.004759973846375942, 0.023221096023917198, 0.001619689050130546, 0.014984973706305027, -0.000773451931308955, 0.015419930219650269, -0.0012031474616378546, 0.008502709679305553, 0.008257169276475906, -0.01797354966402054, -0.03207457810640335, -0.014037889428436756, 0.007331131491810083, -0.01680898666381836, -0.01574264094233513, 0.02664462849497795, 0.009288438595831394, 0.029043909162282944, -0.019951902329921722, 0.00640860153362155, -0.031232725828886032, -0.004282924346625805, 0.0011742087081074715, -0.016640616580843925, -0.0035673496313393116, 0.011070359498262405, -0.013848472386598587, 0.029969947412610054, -0.004121568985283375, 0.008179999887943268, 0.010025059804320335, -0.003576118964701891, 0.021481268107891083, -0.014094012789428234, 0.0034305485896766186, 0.022070564329624176, 0.018506722524762154, 0.020414920523762703, -0.011119467206299305, 0.03431951627135277, -0.05014634132385254, -0.040829841047525406, -0.04169975593686104, 0.03625577688217163, -0.00239752558991313, -0.03886552155017853, 0.008102829568088055, 0.023473652079701424, 0.018085796386003494, -0.02372620813548565, 0.005265085492283106, -0.1801564246416092, 0.009646225720643997, 0.0069628213532269, -0.003619965398684144, -0.002511526457965374, 0.009309484623372555, 0.008993790484964848, 0.0002055303775705397, -0.03134497255086899, 0.00718380743637681, 0.014115058816969395, -0.006380539853125811, -0.01745440624654293, -0.028903599828481674, 0.013006620109081268, -0.003395471489056945, -0.03058730438351631, 0.027233926579356194, 0.050342775881290436, 0.022112656384706497, 0.016977356746792793, -0.017047511413693428, 0.00598767539486289, -0.0041110459715127945, 0.017145728692412376, 0.007815197110176086, -0.012389261275529861, 0.03802366927266121, 0.024946894496679306, -0.023613961413502693, -0.0032762091141194105, -0.01499900408089161, 0.018029673025012016, -0.006422632373869419, 0.0035954113118350506, 0.012192829512059689, -0.007702949922531843, -0.028538797050714493, -0.003725196933373809, 0.022070564329624176, 0.04675087332725525, 0.009113052859902382, 0.00819403026252985, 0.01137202326208353, 0.011652640998363495, 0.004507418256253004, 0.006555925589054823, -0.0174965001642704, -0.009870720095932484, -0.005023052915930748, 0.028819415718317032, -0.032242946326732635, -0.01856284588575363, -0.009884750470519066, 0.01856284588575363, 0.00457406509667635, -0.013960719108581543, 0.010095213539898396, 0.018352383747696877, -0.007667872589081526, -0.0037111660931259394, -0.010410908609628677, 0.016359999775886536, -0.014178197830915451, -0.018492691218852997, -0.034431762993335724, -0.019853686913847923, 0.009309484623372555, -0.008369415998458862, 0.008509725332260132, 0.011224699206650257, 0.0007331131491810083, -0.0016468737740069628, 0.012655848637223244, 0.035778727382421494, 0.004665265325456858, -0.03566648066043854, -0.0010970389703288674, 0.016093412414193153, 0.009049913845956326, 0.01578473299741745, 0.01972740888595581, 0.005412409547716379, -0.008593910373747349, -0.024806585162878036, -0.005303670186549425, 0.021200651302933693, 0.005896474700421095, -0.005068653263151646, 0.015293652191758156, 0.0188013706356287, -0.012361199595034122, 0.016612553969025612, -0.009898781776428223, 0.015447991900146008, 0.00940068531781435, 0.02223893441259861, -0.008299262262880802, 0.010081183165311813, -0.0162898451089859, 0.0031674697529524565, 0.02642013505101204, -0.02966126799583435, 0.004426740575581789, 0.011708764359354973, 0.02145320549607277, 0.01355382427573204, 0.007625780068337917, 0.028847476467490196, -0.01606534980237484, -0.0005550964269787073, 0.0128172030672431, 0.006545402575284243, -0.004044399596750736, -0.029689328745007515, 0.026518352329730988, 0.0021800471004098654, -0.007232915610074997, 0.029689328745007515, -0.012880342081189156, 0.059266410768032074, -0.011021251790225506, -0.010698541067540646, 0.01699138805270195, -0.014465831220149994, -0.01978353224694729, -0.10309886187314987, -0.010733618400990963, 0.03653639554977417, 0.01586891897022724, -0.012761079706251621, 0.011098421178758144, 0.0052826241590082645, 0.011835042387247086, -0.01100020483136177, 0.030110254883766174, -0.007639810908585787, -0.00521246949210763, -0.009548009373247623, -0.010894973762333393, 0.020358797162771225, 0.0005371193983592093, 0.0022010933607816696, -0.037209875881671906, -0.008692126721143723, 0.03765886649489403, -0.0066786957904696465, -0.006113953422755003, -0.0031955314334481955, 0.008474647998809814, 0.0014118567341938615, -0.02256164513528347, -0.028538797050714493, 0.005401886533945799, 0.006769896484911442, 0.013055727817118168, 0.050904009491205215, -0.019839655607938766, 0.026756877079606056, -0.02971739135682583, -0.021733824163675308, -0.027093617245554924, -0.013217083178460598, -0.01689317263662815, 0.014115058816969395, -0.029492896050214767, -0.0061279842630028725, 0.013146928511559963, 0.015433961525559425, -0.0061349994502961636, -0.006036783568561077, 0.004142615478485823, -0.007004913873970509, 0.032888367772102356, 0.008130891248583794, -0.00961114838719368, -0.03636802360415459, -0.03162559121847153, -0.021972348913550377, -0.013041697442531586, 0.04237323999404907, 0.0123682152479887, 0.006878635846078396, 0.0087973577901721, -0.03221488744020462, 0.008909604512155056, -0.01142113097012043, 0.013680102303624153, -0.020962124690413475, 0.013673086650669575, 0.002944729756563902, 0.0007642441778443754, -0.025550222024321556, 0.006057829596102238, 0.008811389096081257, 0.001902937307022512, -0.027556635439395905, 0.027472451329231262, -0.01132291555404663, 0.024960923939943314, -0.029268402606248856, 0.009239330887794495, -4.42232885689009e-06, -0.024399690330028534, 0.019138112664222717, 0.009288438595831394, -0.022687923163175583, -0.020597321912646294, 0.01884346269071102, -0.018675092607736588, 0.012101628817617893, -0.0021695238538086414, 0.010530170984566212, -0.021004218608140945, 0.024315504357218742, -0.036508332937955856, 0.011063343845307827, 0.016051320359110832, 0.020414920523762703, 0.026616567745804787, -0.01318200584501028, 0.003679596586152911, 0.013174990192055702, -0.00877631176263094, 0.010838850401341915, 0.004802066367119551, -0.022365212440490723, 0.004107538145035505, -0.053738247603178024, 0.006945282686501741, 0.023824423551559448, 0.004142615478485823, 0.004395171068608761, -0.046919241547584534, -0.0052019464783370495, -0.004125076811760664, 0.0091481301933527, -0.016780925914645195, -0.004524956922978163, 0.01100020483136177, -0.019853686913847923, -0.002879836829379201, -0.013280222192406654, -0.034235332161188126, -0.00902886688709259, 0.007260977290570736, 0.032102640718221664, 0.007731011603027582, -0.01497094240039587, 0.008579879067838192, 0.020316705107688904, 0.011821011081337929, -0.015223498456180096, 0.022295057773590088, -0.02099018730223179, 0.02493286319077015, -0.010712572373449802, -0.011926243081688881, 0.0231228806078434, 0.009141114540398121, -0.018590908497571945, 0.0091481301933527, -0.012424338608980179, -0.068358413875103, 0.005450994707643986, 0.019110050052404404, 0.019334543496370316, 0.006875128019601107, -3.0363687983481213e-05, -0.012964527122676373, -0.007478455547243357, -0.02744438871741295, -0.01926439069211483, -0.012031474150717258, -0.010039090178906918, -0.022351181134581566, 0.021649638190865517, 0.014830633997917175, 0.029885761439800262, -0.001376779517158866, -0.013125882484018803, -0.03431951627135277, -0.0032832245342433453, -0.002679897006601095, 0.005121268797665834, 0.01833835244178772, 0.013399484567344189, 0.0123682152479887, 0.04854682460427284, 0.01731409877538681, 0.008179999887943268, -0.007457409519702196, 0.0339827761054039, -0.02265986055135727, -0.07632795721292496, -0.011266791261732578, 0.030839860439300537, -0.028931662440299988, -0.014984973706305027, -0.01685107871890068, 0.03866908699274063, 0.010158352553844452, 0.01342053059488535, -0.01176488772034645, 0.004258370026946068, -0.030166378244757652, -0.013848472386598587, 0.017749056220054626, 0.024175195023417473, -0.01176488772034645, -0.0005375578766688704, 0.010403892956674099, 0.014732417650520802, 0.016823017969727516, -0.0280477162450552, 0.012915419414639473, 0.007478455547243357, 0.014606139622628689, -0.01278914138674736, -0.007506517693400383, 0.015307683497667313, 0.018675092607736588, 0.020583292469382286, 0.015265590511262417, -0.015349775552749634, 0.028440581634640694, 0.02780919149518013, 0.010018044151365757, -0.00129960966296494, -0.00026899814838543534, -0.004556526429951191, -0.01671077124774456, 0.0009707610588520765, 0.0091481301933527, -0.019629191607236862, -0.036788951605558395, 0.01153337862342596, 0.027360204607248306, -0.006391062866896391, -0.017215881496667862, -0.010200445540249348, 0.008348369970917702, -0.022772109135985374, 0.012410308234393597, -0.008846465498209, -0.006903189700096846, -0.013406500220298767, -0.0035954113118350506, 0.02125677466392517, 0.013616963289678097, 0.014234321191906929, -0.004019845277070999, 0.0212146807461977, -0.01313991378992796, 0.007082083728164434, -0.016500307247042656, -0.0011180852307006717, -0.007913412526249886, 0.016766894608736038, 0.02859492041170597, 0.020821817219257355, -0.019096018746495247, -0.004118061624467373, -0.03235519677400589, -0.02386651560664177, 0.015419930219650269, -0.012782125733792782, 0.09664466232061386, 0.030839860439300537, -0.012915419414639473, 0.0023764793295413256, -0.05505714938044548, 0.009632195346057415, -0.0028149441350251436, 0.015546208247542381, -0.017426345497369766, -0.02260373719036579, 0.028763290494680405, -0.019657254219055176, -0.009870720095932484, -0.006120968610048294, -0.021705761551856995, -0.002039738232269883, -0.0025571268051862717, 0.03395471349358559, -0.013848472386598587, 0.0020555229857563972, 0.02149529941380024, 0.00958308670669794, 0.013280222192406654, -0.005208962131291628, -0.0303628109395504, -0.017243944108486176, 0.02660253643989563, 0.021144526079297066, -0.0007616133661940694, -0.009989982470870018, 0.010677495039999485, -0.008671079762279987, -0.02042895182967186, -0.01852075383067131, -0.014108044095337391, 0.01982562430202961, -0.0033323324751108885, -0.024483874440193176, 0.010200445540249348, 0.03170977532863617, -0.014360599219799042, 0.016416123136878014, -0.01184205710887909, -0.02409101091325283, 0.0008343985537067056, -0.0016749355709180236, -0.01568651758134365, -0.028580889105796814, -0.01916617341339588], "732ef8ef-1247-4ca7-9f4d-16452f459bd4": [-0.018720300868153572, -0.011745122261345387, -0.0025024921633303165, -0.021236618980765343, 0.019771071150898933, 0.011503168381750584, -0.019245686009526253, -0.029421566054224968, -0.011185172013938427, -0.04026108980178833, 0.0325738750398159, 0.022397996857762337, 0.002395341172814369, -0.017199449241161346, 0.007846212014555931, 0.01766953058540821, 0.016922930255532265, 0.005907125771045685, -0.009484583511948586, 0.0008369004353880882, -0.03179962560534477, 0.011516994796693325, -0.0167846716940403, -0.019245686009526253, -0.031301889568567276, 0.018941516056656837, 0.0010922480141744018, -0.01515321247279644, -0.031910233199596405, 0.020130544900894165, 0.014862868003547192, -0.022729817777872086, -0.02908974327147007, 0.01654963009059429, -0.03124658763408661, 0.015360601246356964, -0.000270901684416458, -0.003670782782137394, 0.022660689428448677, -0.015692424029111862, 0.016826149076223373, 0.025688566267490387, 0.0007906699902378023, -0.01342497207224369, -0.019715767353773117, 0.033375781029462814, 0.002129192231222987, -0.00348586100153625, -0.01704736426472664, 0.017545096576213837, -0.006238948088139296, -0.022480951622128487, -0.03420533612370491, 0.004541815724223852, 0.0039611272513866425, -0.022563908249139786, 0.03226970508694649, -0.003891997504979372, 0.019688114523887634, -0.006802354473620653, -0.009588277898728848, 0.0018163807690143585, -0.024955792352557182, -0.006422141566872597, -0.008323205634951591, -0.028177231550216675, 0.0038505196571350098, 0.004531446378678083, -0.009021415375173092, 0.0001196806479129009, 0.04686988145112991, 0.037440601736307144, -0.0006865435279905796, -0.01211842242628336, -0.0023815154563635588, -0.009581364691257477, -0.022785121574997902, -0.029145047068595886, 0.0024074390530586243, 0.010874088853597641, 0.028246361762285233, -0.023739110678434372, -0.012623067945241928, 0.006812723819166422, 0.035366714000701904, 0.029559824615716934, 0.01765570417046547, 0.022480951622128487, -0.006079949904233217, -0.016328414902091026, 0.012491721659898758, 0.00584836583584547, 0.03022346831858158, 0.013577057048678398, 0.0059140389785170555, 0.0002382811508141458, 0.00349450227804482, 0.011185172013938427, -0.0032387226819992065, -0.01913507841527462, -0.017946049571037292, -0.013729142025113106, -0.014973475597798824, -0.002227701945230365, -0.01869264803826809, -0.01610720157623291, 0.00610414519906044, -0.0018440325511619449, -0.0033735253382474184, 0.018720300868153572, -0.023324333131313324, 0.02961512841284275, 0.0053333500400185585, 0.00797064509242773, -0.0020531497430056334, -0.009014502167701721, 0.012941064313054085, -0.022702166810631752, -0.018485259264707565, -0.015471208840608597, 0.002704696264117956, 0.007023569196462631, 0.037606511265039444, -0.019356293603777885, 0.01715797185897827, 0.003781390143558383, 0.0033735253382474184, -0.03478602319955826, -0.006142166443169117, -0.004189254716038704, 0.021070707589387894, 0.018222566694021225, 0.014047138392925262, 0.012699110433459282, -0.010569918900728226, 0.00519163440912962, -0.021775830537080765, -0.0004350845410954207, -0.014378960244357586, -0.020047590136528015, 0.0244304072111845, 0.03699817135930061, 0.014572523534297943, -0.01446191594004631, 0.00956062600016594, 0.035200800746679306, -0.005782692693173885, 0.0039645833894610405, 0.003802129067480564, -8.560191417927854e-06, 0.0033424170687794685, -0.02337963692843914, -0.033707600086927414, 0.007666474673897028, 0.005623694509267807, 0.010722003877162933, -0.0064843581058084965, 0.03827015683054924, -0.022550081834197044, -0.008060513064265251, -0.0032335377763956785, 0.021941740065813065, -0.0056928242556750774, -0.008143468759953976, -0.008661940693855286, 0.017199449241161346, 0.007244783919304609, -0.020102892071008682, -0.028592010959982872, -0.013100062496960163, 0.0007245648303069174, 0.01888621225953102, -0.023158421739935875, 0.0164528489112854, 0.02018584869801998, 0.010438572615385056, 0.006605335045605898, 0.005274589639157057, 8.35496248328127e-05, -0.024997269734740257, 0.011938684619963169, -0.006349555216729641, -0.005081026814877987, 0.006038472056388855, -0.020061414688825607, -0.012747501954436302, 0.02736150287091732, -0.010936305858194828, -0.004223819822072983, -0.010397094301879406, 0.001970194047316909, 0.00532298069447279, -0.011911033652722836, -0.004192711319774389, -0.6132073402404785, 0.005350632593035698, 0.0012745773419737816, -0.01325214747339487, 0.009208065457642078, 0.031384848058223724, 0.0067539638839662075, -0.008572072722017765, -0.01594129018485546, 0.03633452579379082, 0.004071734379976988, 0.02684994414448738, -0.013404233381152153, -0.017075015231966972, -0.014779912307858467, -0.032435618340969086, -0.001842304365709424, -0.036196269094944, -0.0056409770622849464, 0.0007552410825155675, -0.008440726436674595, 0.015388253144919872, -0.002300288062542677, 0.013507927767932415, 0.01078422088176012, -0.028868528082966805, 0.021582266315817833, -0.023448767140507698, 0.006836919113993645, 0.025730043649673462, -0.04283270984888077, 0.015332949347794056, 0.01836082711815834, -0.004109755624085665, 0.04222436994314194, -0.020586799830198288, -0.01791839674115181, 0.030527640134096146, 0.011185172013938427, 0.03741294890642166, -0.02232886664569378, -0.003781390143558383, 0.022453300654888153, 0.014558697119355202, -0.019522204995155334, -0.000523656839504838, 0.004576380830258131, 0.008129643276333809, 0.00362584856338799, -0.02908974327147007, 0.005872561130672693, -0.014807564206421375, -0.01800135336816311, 0.0114340391010046, 0.009456931613385677, 0.010722003877162933, 0.0281357541680336, -0.017379185184836388, -0.009671233594417572, 0.0167846716940403, 0.0010715090902522206, 0.0002337445184821263, -0.026863768696784973, -0.04335809499025345, -0.03279509022831917, 0.0015657858457416296, -0.01617632992565632, -0.02528761513531208, -0.003840150311589241, 0.011703643947839737, 0.011281954124569893, -0.004151233471930027, -0.0034305572044104338, 0.005198547150939703, -0.0005102629656903446, 0.020669756457209587, 0.04067586734890938, 0.0005901941331103444, 0.0003357107052579522, 0.0050257230177521706, 0.0007388227968476713, -0.013017106801271439, -0.019688114523887634, -0.012139161117374897, 0.03630687668919563, 0.01826404593884945, -0.021167488768696785, -0.012540113180875778, -0.005101765971630812, -0.004559098277240992, -0.0001737961865728721, 0.024817533791065216, 0.002972573507577181, -0.04053760692477226, 0.005627151113003492, 0.042722102254629135, 0.0009755917126312852, 0.021941740065813065, 0.00796373188495636, -0.02658725157380104, -0.02007524110376835, -0.02925565466284752, 0.012782066129148006, -0.015291471965610981, 0.01714414544403553, 0.010977783240377903, -0.02268834039568901, -0.0065500312484800816, 0.04059291258454323, -0.025149354711174965, 0.005409392528235912, -0.017807789146900177, -0.006155992392450571, -0.03921031951904297, 0.035698533058166504, -0.03022346831858158, 0.005893299821764231, 0.0002931527851615101, -0.006626073736697435, 0.0032767439261078835, -0.005274589639157057, -0.01663258671760559, 0.021969392895698547, 0.010894827544689178, 0.004662792664021254, 0.03907205909490585, 0.0064843581058084965, -0.004216906614601612, 0.010569918900728226, 0.0072724358178675175, -0.005730845499783754, -0.01515321247279644, 0.00913893524557352, -0.0020531497430056334, 0.009083631448447704, -0.004984245635569096, 0.032961003482341766, 0.003898910479620099, 0.017088841646909714, -0.04692518338561058, -0.019757244735956192, 0.002027226146310568, 0.01022427063435316, -0.013224495574831963, 0.008122730068862438, -0.017641877755522728, -0.012678371742367744, 0.0032248967327177525, 0.01354249194264412, -0.02007524110376835, -0.01541590504348278, -0.017462141811847687, -0.004365535452961922, 0.022121477872133255, -0.0332375206053257, -0.014793738722801208, 0.01992315612733364, -0.028592010959982872, -0.001544182887300849, -0.016466675326228142, -0.011904120445251465, 0.012816631235182285, -0.007797820959240198, -0.010977783240377903, -0.02183113433420658, -0.0005936506204307079, -0.012581590563058853, 0.022315040230751038, 0.0067435940727591515, -0.023006336763501167, -0.0032594616059213877, -0.033292822539806366, -0.0025750782806426287, 0.024361276999115944, -0.020503845065832138, 0.013660012744367123, -0.01009292434900999, -0.005063744727522135, -0.008565159514546394, -0.0033285911194980145, 0.019024470821022987, 0.020808015018701553, -0.020835665985941887, 0.004680075217038393, 0.03824250400066376, 0.005979712121188641, 0.018941516056656837, 0.0012693926692008972, -0.024900488555431366, 0.014047138392925262, -0.0071825673803687096, -0.0053851972334086895, -0.017075015231966972, 0.010950131341814995, -0.031108329072594643, -0.008295553736388683, -0.031218934804201126, -0.0018336630892008543, -0.0076457359828054905, 0.041671331971883774, 0.014752260409295559, 0.003957670647650957, -0.0011302692582830787, 0.009657408110797405, 0.01051461510360241, -0.005108678713440895, 0.007866950705647469, -0.015733901411294937, 0.024693099781870842, 0.017420664429664612, -0.007006286643445492, 0.00022294302470982075, 0.01198707614094019, -0.03144014999270439, 0.019508378580212593, 0.010825698263943195, 0.029670432209968567, 0.02035176008939743, 0.007535128388553858, 0.016162505373358727, 0.002751358784735203, 0.0067539638839662075, 0.02553648129105568, 0.007735604420304298, 0.00738304341211915, 0.00878637470304966, 0.019978459924459457, 0.008108904585242271, 0.002124007558450103, -0.02415388822555542, -0.007590432185679674, 0.007825472392141819, 0.0007621540571562946, 0.002882705070078373, 0.05118357017636299, 0.02156844176352024, 0.023877369239926338, 0.0012685285182669759, 0.04980097711086273, 0.0020064872223883867, 0.00852368213236332, -0.007535128388553858, 0.017807789146900177, -0.011219737119972706, 0.04136716201901436, -0.011752035468816757, 0.03699817135930061, 0.002137833507731557, -0.02252242900431156, 0.02502492256462574, 0.01315536629408598, -0.01341805886477232, -0.015498860739171505, -0.011523907072842121, 0.031218934804201126, -0.011620689183473587, 0.018499085679650307, 0.0021793111227452755, 0.0012339636450633407, 0.030334075912833214, 0.012173725292086601, -0.009546800516545773, 0.009083631448447704, -0.019632810726761818, 0.014054051600396633, 0.000698641175404191, -0.017614226788282394, -0.03879554197192192, -0.02814958058297634, -0.013922705315053463, -0.007631910033524036, -0.022895729169249535, 0.009062892757356167, -0.007569693028926849, 0.018042830750346184, -0.004151233471930027, 0.016674064099788666, 0.01715797185897827, 0.004431208595633507, 0.014282179065048695, -0.02604804001748562, -0.0358644463121891, 0.03249092027544975, 0.016397545114159584, -0.0009894176619127393, -0.02173435129225254, -0.016121026128530502, -0.0049565937370061874, 0.0020237695425748825, 0.007936079986393452, 0.0082264244556427, -0.008890069089829922, -0.018830908462405205, -0.0022570821456611156, 0.0140678770840168, 0.03522845357656479, 0.04988393187522888, -0.0070650470443069935, -0.013625447638332844, -0.003871258581057191, 0.0017489793244749308, 0.009539887309074402, -0.003243907354772091, -0.020241152495145798, 0.017793964594602585, -0.027859235182404518, -0.03741294890642166, -0.026020389050245285, 0.0008196180569939315, -0.028592010959982872, 0.015388253144919872, -0.009484583511948586, -0.006522379349917173, -0.015194689854979515, 0.0017403381643816829, 0.00015748590521980077, -0.009816405363380909, -0.010673613287508488, 0.017185622826218605, 0.0061732749454677105, -0.01156538538634777, -0.027333851903676987, 0.002167213475331664, 0.009809493087232113, 0.05690750107169151, 0.011717470362782478, 0.001397282350808382, 0.01511173415929079, -0.019466901198029518, -0.02459631860256195, -0.017116492614150047, -0.026172474026679993, 0.022024696692824364, 0.005475065670907497, -0.03196553513407707, 0.017946049571037292, -0.008544420823454857, -0.002813575556501746, 0.012941064313054085, -0.004901289939880371, -0.014033312909305096, -0.020655930042266846, -0.0071825673803687096, 0.006024646107107401, 0.004213450010865927, 0.006688290741294622, 0.024872835725545883, 0.01783544197678566, 0.007396869361400604, 0.011178258806467056, 0.032076142728328705, 0.015263820067048073, 0.00209981226362288, -0.026186298578977585, -0.020918622612953186, -0.00751438969746232, 0.012526286765933037, 0.018029004335403442, -0.02017202228307724, 0.01775248534977436, 0.01689527928829193, -0.014226875267922878, -0.02217678166925907, 0.00904215406626463, 0.0030399749521166086, 0.031716667115688324, 0.004251471720635891, -0.0070131998509168625, 0.013058585114777088, -0.011980162933468819, -0.027472110465168953, 0.043413400650024414, -0.019577506929636, 0.0046973577700555325, 0.00048001878894865513, 0.014696956612169743, -0.0036465872544795275, 0.014835216104984283, 0.01090865395963192, -0.011413300409913063, -0.007908428087830544, -0.015042604878544807, -0.04302627593278885, -0.026269255205988884, -0.01038326881825924, -0.01844378188252449, -0.012878848239779472, -0.008800200186669827, -0.01039018202573061, -0.031025372445583344, -0.0007457357714883983, -0.008240250870585442, -0.010417832992970943, 0.004690444562584162, -0.005900213029235601, -0.03108067624270916, -0.03489663079380989, 0.007777082268148661, 0.038131896406412125, 0.028011322021484375, -0.001614176551811397, 0.011109129525721073, -0.009505322203040123, 0.017379185184836388, -0.008150381967425346, -0.025605609640479088, -0.0034910456743091345, -0.025757696479558945, 0.0072724358178675175, -0.003847063286229968, -0.013819010928273201, -0.016466675326228142, -0.005478522274643183, 0.03896145150065422, -0.009325585328042507, -0.005243481602519751, 0.012954890727996826, -0.004486512392759323, 0.028260188177227974, 0.014475742354989052, 0.018761778250336647, 0.00887624267488718, 0.03871258720755577, -0.02337963692843914, 0.0091735003516078, -0.035366714000701904, -0.017033537849783897, -0.03481367602944374, -0.0067021166905760765, 0.009740362875163555, -0.0012961803004145622, -0.0029535628855228424, -0.01930098980665207, -0.026255428791046143, -0.01619015634059906, 0.010528440587222576, 0.000428387604188174, -0.005011897534132004, 0.012574677355587482, -0.022660689428448677, 0.0023175703827291727, 0.029919298365712166, -3.441291255512624e-06, -0.017959874123334885, 0.0043378835543990135, -0.0065362052991986275, 0.010957044549286366, -0.003985322546213865, -0.00017638853751122952, 0.01142712589353323, 0.030195817351341248, -0.03232501074671745, -0.03348638862371445, 0.010168966837227345, -0.005962429568171501, 0.017379185184836388, -0.016687890514731407, -0.011454777792096138, -0.013777532614767551, 0.0029380088672041893, -0.012650719843804836, -0.007853124290704727, -0.01221520360559225, -0.01584450900554657, -0.017973700538277626, 0.011911033652722836, 0.007244783919304609, -0.01446191594004631, -0.013722228817641735, -0.030776506289839745, -0.0296980831772089, -0.006266599986702204, -0.01566477119922638, 0.024112410843372345, -0.025177007541060448, -0.011620689183473587, -0.030085209757089615, -0.016770845279097557, -0.022107651457190514, -0.019439248368144035, -0.008544420823454857, 0.004109755624085665, 0.04529372602701187, 0.024789880961179733, 0.005955516826361418, 0.024527188390493393, 0.019328640773892403, 0.01628693751990795, -0.023683806881308556, -0.019190382212400436, -0.005139787215739489, -0.010507701896131039, -0.012000901624560356, 0.00969197228550911, 0.0033078521955758333, -0.013093149289488792, -0.007555867079645395, -0.0021482028532773256, 0.0009989229729399085, 0.01982637494802475, -0.007652648724615574, 0.014365134760737419, -0.025923606008291245, -0.03630687668919563, 0.011205910705029964, 0.028453750535845757, 0.002210419625043869, -0.012664546258747578, -0.02925565466284752, 0.015097908675670624, 0.024914314970374107, 0.0028948027174919844, 0.030859461054205894, 0.003978409338742495, 0.03556027635931969, -0.005233112256973982, -0.007051221095025539, 0.011157520115375519, 0.020808015018701553, -0.023669980466365814, -0.012712936848402023, -0.04681457579135895, -0.011254302226006985, 0.004413926042616367, 0.01731005683541298, 0.004659336060285568, -0.0028429555241018534, 0.015208516269922256, 0.0019822916947305202, 0.016729367896914482, -0.025757696479558945, -0.012187551707029343, 0.009809493087232113, -0.020061414688825607, -0.004251471720635891, -0.02622777782380581, -0.008869330398738384, -0.00015219316992443055, -0.01704736426472664, -0.0028412272222340107, 0.01022427063435316, 0.010569918900728226, -0.009069805964827538, -0.02277129702270031, 0.016950583085417747, 0.0049565937370061874, 0.03298865258693695, 0.01793222315609455, 0.020918622612953186, 0.017793964594602585, 0.006930244155228138, -0.027250895276665688, -0.02113983780145645, 0.01142712589353323, -0.010770394466817379, -0.011192085221409798, 0.04366226866841316, -0.020586799830198288, -0.0023037444334477186, 0.0040164305828511715, 0.014475742354989052, 0.010853350162506104, -0.03558792918920517, 0.03218675032258034, 0.023697633296251297, -0.0019252598285675049, -0.039956919848918915, -0.03091476485133171, -0.026255428791046143, 0.02528761513531208, 0.003971496596932411, 0.0004869317344855517, 0.027568891644477844, 0.011046912521123886, -0.01116443332284689, 0.029642779380083084, -0.010321051813662052, 0.029228001832962036, -0.009781841188669205, -0.005084483418613672, -0.014213049784302711, -0.006715942174196243, 0.004676618613302708, -0.010922479443252087, 0.010134401731193066, 0.024001803249120712, -0.02329668216407299, 0.019867852330207825, 0.013044758699834347, 0.0011164433090016246, -0.015180864371359348, -0.024015629664063454, -0.029200350865721703, 0.0296980831772089, -0.0011484157294034958, -0.007362304255366325, 0.007694126572459936, -0.0023192986845970154, 0.020102892071008682, -0.028702616691589355, -0.013563230633735657, -0.015498860739171505, 0.007258609868586063, 0.015872159972786903, 0.021609919145703316, 0.020061414688825607, -0.005101765971630812, -0.0018734126351773739, 0.0006454978138208389, -0.016950583085417747, 0.0075973449274897575, -0.000981640536338091, 0.005063744727522135, -0.033901166170835495, 0.0012814903166145086, -0.007783995009958744, 0.0034530244302004576, 0.0183470007032156, 0.015070256777107716, -0.0036293049342930317, 0.01688145287334919, 0.03517314791679382, -0.019577506929636, -0.0033717970363795757, 0.03940388187766075, 0.019522204995155334, -0.031053025275468826, 0.038823194801807404, -0.0018734126351773739, -0.008060513064265251, 0.01195251103490591, -0.005087940022349358, -0.03799363970756531, -0.017711007967591286, 0.023255202919244766, 0.012588503770530224, 0.011351083405315876, 0.0030054100789129734, 0.0263245590031147, 0.014683131128549576, -0.02260538563132286, -0.014185397885739803, 0.003007138380780816, -0.008364683948457241, -0.009470758028328419, 0.02908974327147007, 0.014026399701833725, -0.011351083405315876, 0.031135980039834976, 0.0021689417771995068, 0.012782066129148006, 0.004731922410428524, -0.01034870371222496, -0.014095528982579708, -0.010832611471414566, -0.018208742141723633, -0.023006336763501167, -0.011012348346412182, -0.0006385848391801119, -0.031135980039834976, -0.029836343601346016, 0.021236618980765343, -0.00239361310377717, -0.007880776189267635, 0.014655479229986668, -0.025743870064616203, -0.0123811149969697, 0.02104305662214756, -0.018098134547472, -0.04675927385687828, -0.00913893524557352, -0.005599499214440584, -0.019798722118139267, -0.01938394457101822, -0.010984696447849274, 0.04711874946951866, 0.010334878228604794, -0.007210219278931618, -0.022550081834197044, -0.027209417894482613, -0.011786599643528461, -0.009733450599014759, -0.029808690771460533, 0.021167488768696785, 0.03486897796392441, 0.030887113884091377, -0.0018025548197329044, 0.03677695617079735, -0.002490394515916705, 0.020973926410079002, -0.02788688801229, -0.008855503983795643, -0.017475968226790428, -0.024347450584173203, 0.008931546472012997, -0.0150149529799819, -0.03539436310529709, 0.00738304341211915, 0.005699736997485161, -0.029587477445602417, 0.004604032728821039, 0.02216295525431633, -0.02355937473475933, -0.007521302439272404, 0.008150381967425346, -0.012242855504155159, 0.022909555584192276, 0.006415228359401226, 0.01714414544403553, -0.040039874613285065, 0.019508378580212593, 0.005053374916315079, -0.0009047338971868157, -0.019549855962395668, 0.019618986174464226, 0.017296230420470238, -0.005941690877079964, 0.01008601114153862, -0.014959649182856083, -0.029559824615716934, -0.0031886035576462746, -0.00839924905449152, 0.006556944455951452, 0.00969197228550911, 0.002158572431653738, 0.02007524110376835, -0.0027323481626808643, 0.009000676684081554, -0.00638412032276392, 0.011752035468816757, 0.010632134974002838, 0.006356468424201012, 0.03860197961330414, -0.0265734251588583, -0.009090544655919075, -0.002219060668721795, 0.008551334030926228, 0.014434264041483402, -0.01566477119922638, -0.005955516826361418, 0.0003281496465206146, -0.01619015634059906, 0.002144746482372284, 0.010134401731193066, -0.01303093321621418, 0.019190382212400436, 0.005340262781828642, -0.014282179065048695, -0.007631910033524036, -0.012865021824836731, -0.0036742391530424356, -0.021706700325012207, -0.008731070905923843, -0.016065722331404686, 0.006456706207245588, -0.044713035225868225, -0.007244783919304609, 0.019466901198029518, -0.028619661927223206, 0.01939777098596096, 0.2105964720249176, -0.009920099750161171, 0.012049292214214802, 0.022010870277881622, 0.015249993652105331, -0.0037399122957140207, 0.010231183841824532, 0.021098358556628227, -0.0033804383128881454, 0.012222116813063622, 0.015485034324228764, -0.006211296189576387, -0.02510787732899189, -0.0009367063175886869, 0.004845986142754555, -0.016425197944045067, -0.01921803317964077, -0.019176555797457695, -0.027209417894482613, -0.0076872133649885654, 0.014351308345794678, -0.0050741140730679035, -0.0078047337010502815, -0.009111283347010612, 0.03177197277545929, 0.025992736220359802, -0.005163982510566711, 0.006218208931386471, 0.00969197228550911, 0.021430181339383125, -0.028730269521474838, -0.0024057107511907816, 0.028274014592170715, -0.008461465127766132, -0.009194239042699337, -0.0014102442655712366, 0.018913863226771355, -0.010694351978600025, 0.011357996612787247, 0.03182727470993996, -0.00024562617181800306, -0.01325214747339487, 0.012719850055873394, -0.028979135677218437, 0.022826600819826126, -0.035200800746679306, -0.0009488040232099593, -0.010279574431478977, 0.007555867079645395, 0.03464776277542114, -0.010037620551884174, 0.010334878228604794, -0.0014845585683360696, 0.014254527166485786, -0.003867802210152149, -0.003447839757427573, -0.00033679086482152343, -0.0027876519598066807, -0.015623293817043304, 0.0027600000612437725, -0.009629756212234497, 0.005070657469332218, 0.0081019913777709, 0.01842995546758175, -0.05179191008210182, 0.03287804499268532, -0.020241152495145798, 0.026255428791046143, 0.01090174075216055, 0.0038954538758844137, -0.03542201593518257, 0.01921803317964077, -0.031025372445583344, -0.0030987351201474667, -0.017697181552648544, -0.005350632593035698, -0.0064981840550899506, 0.02252242900431156, 0.05049227178096771, 0.005039548967033625, 0.005361001938581467, 0.012588503770530224, -0.011662166565656662, 0.0018613149877637625, 0.0147660868242383, -0.013708403334021568, 0.02466544695198536, -0.006010820157825947, -0.0002104132727254182, -0.017724834382534027, -0.013307451270520687, 0.0015381339471787214, -0.004890920594334602, 0.002979486482217908, -0.009214977733790874, -0.02727854810655117, 0.01038326881825924, 0.005215829703956842, -0.017766311764717102, -0.019840199500322342, -0.012484809383749962, 0.037191733717918396, 0.014696956612169743, 0.027762454003095627, -0.00013631496403831989, 0.004645510111004114, 0.009249542839825153, 0.02649047039449215, -0.008371597155928612, -0.010659786872565746, -0.018568215891718864, -0.041505422443151474, 0.015056431293487549, 0.013729142025113106, 0.00795681867748499, 0.011233562603592873, 0.02313077077269554, 0.016259286552667618, -0.005803431384265423, 0.008205685764551163, 0.013867401517927647, 0.007721778471022844, 0.008150381967425346, 0.008862417191267014, -0.020890969783067703, -0.04062056541442871, -0.00996157806366682, 0.008385422639548779, -0.02769332565367222, -0.012159899808466434, 0.024361276999115944, 0.002601001877337694, 0.03144014999270439, -0.0072862617671489716, 0.010424746200442314, -0.032767437398433685, -0.010003055445849895, -0.0010965685360133648, -0.015263820067048073, -0.0034098185133188963, 0.0115584721788764, 0.0009116468136198819, 0.01567859761416912, 0.005564934108406305, 0.00969888549298048, 0.01617632992565632, -0.0035117845982313156, 0.011371822096407413, -0.018305523321032524, -0.008039774373173714, 0.030361728742718697, 0.029034439474344254, 0.014047138392925262, -0.004894376732409, 0.03956979513168335, -0.03644513338804245, -0.03749590367078781, -0.0296980831772089, 0.03221440315246582, -0.005011897534132004, -0.04189254716038704, -0.008323205634951591, 0.018098134547472, 0.02613099478185177, -0.032242052257061005, -0.0012045835610479116, -0.1765293926000595, 0.0034391984809190035, 0.004040626343339682, 0.0021205509547144175, 0.007866950705647469, 0.020116718485951424, 0.014945823699235916, -0.0007919662166386843, -0.033292822539806366, 0.005208916496485472, 0.015955116599798203, -0.0016634314088150859, -0.014378960244357586, -0.02250860445201397, 0.014365134760737419, -0.013259060680866241, -0.02137487754225731, 0.02397415228188038, 0.050962354987859726, 0.013770620338618755, 0.013950357213616371, -0.025660913437604904, 0.00079801504034549, 0.0002959611883852631, 0.021513137966394424, 0.0026563056744635105, -0.009705798700451851, 0.02806662581861019, 0.016134852543473244, -0.025937432423233986, -0.004673162009567022, 0.004669705871492624, 0.00512941787019372, 0.0014456731732934713, 0.0025163181126117706, -0.0038436066824942827, -0.009256456047296524, -0.02214912883937359, -0.007265523076057434, 0.017434488981962204, 0.04180959239602089, -0.001031759544275701, 0.014669304713606834, 0.009055979549884796, -0.004362078849226236, 0.023960325866937637, 0.015208516269922256, -0.016757018864154816, -0.009014502167701721, 0.00393693195655942, 0.025591785088181496, -0.019439248368144035, -0.025951258838176727, -0.008122730068862438, 0.00848220381885767, 0.011703643947839737, -0.008081252686679363, 0.011917945928871632, 0.007763256318867207, -0.012706023640930653, -0.008254076354205608, -0.010155141353607178, 0.005575303919613361, -0.01342497207224369, -0.027582718059420586, -0.03218675032258034, -0.010929392650723457, 0.01896916702389717, -0.015595641918480396, 0.006197470240294933, 0.015139386057853699, -0.006128340493887663, 0.013376581482589245, -0.0015968942316249013, 0.03193788230419159, -0.0014232060639187694, -0.04103534296154976, 0.008551334030926228, 0.024444233626127243, 0.0026735879946500063, 0.03141249716281891, 0.024471884593367577, 0.014434264041483402, 0.0032594616059213877, -0.012719850055873394, -0.002372874179854989, 0.01671554148197174, -0.0030468879267573357, -0.011399473994970322, 0.000995466485619545, 0.031467802822589874, -0.010231183841824532, 0.00797064509242773, -0.011516994796693325, 0.021181315183639526, -0.0025266874581575394, 0.01643902249634266, -0.0036742391530424356, 0.018830908462405205, -0.01877560466527939, -0.0005850094021297991, 0.03271213546395302, -0.03763416409492493, 0.0040648216381669044, 0.03038937970995903, 0.017724834382534027, 0.010113663040101528, -0.001907977508381009, 0.032961003482341766, -0.022563908249139786, 0.00029660927248187363, 0.010894827544689178, 0.004203080665320158, -0.0036431308835744858, -0.029725736007094383, 0.021692873910069466, 0.007134176790714264, -0.011724383570253849, 0.025730043649673462, -0.01888621225953102, 0.039873965084552765, -0.009318672120571136, -0.023766763508319855, 0.015816856175661087, -0.01155155897140503, -0.014544871635735035, -0.10651491582393646, -0.008108904585242271, 0.03647278621792793, 0.012533199973404408, -0.00443812133744359, -0.0009107827208936214, -0.005976255517452955, 0.017254753038287163, -0.012588503770530224, 0.03282274305820465, -0.012920325621962547, -0.015623293817043304, -0.020019937306642532, -0.0034461114555597305, 0.017711007967591286, -7.858093158574775e-05, 0.0027738260105252266, -0.03265682980418205, -0.0018111959798261523, 0.04330279305577278, -0.0003456480917520821, -0.0031574952881783247, 0.008959198370575905, 0.0038228679914027452, -0.005364458542317152, -0.03661104664206505, -0.019632810726761818, -0.0024057107511907816, 0.013867401517927647, 0.008081252686679363, 0.05054757744073868, -0.018734127283096313, 0.034841328859329224, -0.023932673037052155, -0.010666700080037117, -0.004925485234707594, -0.0214716587215662, -0.018844733014702797, 0.018319349735975266, -0.016521979123353958, 0.0008658484439365566, 0.0041823419742286205, 0.006373750977218151, -0.029587477445602417, -0.004213450010865927, 0.0021430181805044413, -0.0083508575335145, 0.03766181692481041, -0.005132874008268118, -0.00592786492779851, -0.0201581958681345, -0.033403430134058, -0.026518121361732483, -0.018208742141723633, 0.028702616691589355, 0.014973475597798824, -0.004192711319774389, 0.01860969327390194, -0.025495003908872604, 0.0070131998509168625, -0.010106749832630157, -0.0007599937380291522, -0.015084082260727882, 0.013597795739769936, -0.0013920976780354977, 0.010369442403316498, -0.0077909077517688274, -0.006442880257964134, 0.013259060680866241, 0.009581364691257477, -0.024651622399687767, 0.026200124993920326, -0.009297933429479599, 0.021264269948005676, -0.0162039827555418, 0.006667551584541798, 0.004106299486011267, -0.026103343814611435, 0.007521302439272404, 0.02433362603187561, -0.021927915513515472, -0.021886436268687248, 0.013535579666495323, -0.011240475811064243, -0.00275827175937593, 0.00101102062035352, 0.01981254853308201, -0.015194689854979515, 0.02371145971119404, -0.032076142728328705, 0.012830456718802452, 0.02293720655143261, 0.02649047039449215, 0.01663258671760559, -0.02561943605542183, 0.0027824670542031527, 0.010715090669691563, -0.01380518451333046, 0.01750361919403076, -0.00349450227804482, -0.003126387018710375, -0.0001911865983856842, -0.06077875941991806, 0.0031937884632498026, 0.0213057491928339, 0.005208916496485472, 0.011904120445251465, -0.043081577867269516, -0.008627376519143581, -0.009878622367978096, 0.006944070104509592, -0.014531046152114868, -0.013895053416490555, 0.005672085098922253, -0.02561943605542183, 0.0031056480947881937, -0.009360150434076786, -0.01931481622159481, -0.0015009768540039659, 0.013189931400120258, 0.012657633051276207, 0.012291246093809605, -0.006819637026637793, 0.002227701945230365, 0.015872159972786903, 0.007134176790714264, -0.012878848239779472, 0.025481177493929863, -0.029310958459973335, 0.021762004122138023, -0.014614000916481018, -0.01912125200033188, 0.022467125207185745, 0.015180864371359348, -0.019950807094573975, 0.0009980588220059872, -0.0039023668505251408, -0.0674705058336258, 0.00020814496383536607, 0.013265973888337612, 0.017420664429664612, 0.0021948653738945723, 0.0007098747882992029, -0.0019425422651693225, -0.002557795960456133, -0.026601077988743782, -0.005820713937282562, -0.019964633509516716, -0.021457834169268608, -0.023434940725564957, 0.025163181126117706, 0.005036092828959227, 0.024444233626127243, 0.005115591920912266, -0.022619210183620453, -0.027071159332990646, -0.01211842242628336, -0.015899812802672386, 0.0017403381643816829, 0.01923185959458351, 0.015996593981981277, 0.005768866743892431, 0.056575678288936615, 0.016743194311857224, 0.005896756425499916, -0.012457157485187054, 0.045680850744247437, -0.026974376291036606, -0.07073342800140381, -0.002314114011824131, 0.01740683801472187, -0.02917269803583622, -0.011807338334619999, -0.012311984784901142, 0.03962509706616402, 0.010452398099005222, 0.012982542626559734, -0.005485435016453266, 0.00564788980409503, -0.01800135336816311, -0.009906274266541004, 0.002861966146156192, 0.022785121574997902, -0.01688145287334919, -0.0026856856420636177, 0.013646186329424381, 0.009291020222008228, 0.029808690771460533, -0.02397415228188038, 0.01052152831107378, -0.0027237068861722946, 0.0008507263846695423, -0.028246361762285233, -0.01527764555066824, 0.009726537391543388, 0.023877369239926338, 0.011537733487784863, 0.02382206730544567, -0.016521979123353958, 0.029587477445602417, 0.016342241317033768, 0.006377207115292549, -0.0019200751557946205, -0.00437590479850769, -0.0013851847033947706, -0.015346774831414223, 0.003698434680700302, 0.011226650327444077, -0.03132954239845276, -0.0426114983856678, 0.01592746376991272, 0.03531140834093094, -0.002469655591994524, -0.013106975704431534, -0.0025785346515476704, 0.013736055232584476, -0.011731295846402645, 0.0057066502049565315, -0.004154690075665712, -0.0016815779963508248, -0.024734577164053917, -0.0020963556598871946, 0.019701940938830376, 0.020987752825021744, 0.012305071577429771, -0.020835665985941887, 0.013570143841207027, -0.013611622154712677, 0.011530820280313492, -0.02198321931064129, 0.01706119067966938, -0.02017202228307724, 0.004223819822072983, 0.017531272023916245, 0.008440726436674595, -0.013411145657300949, -0.012823544442653656, -0.02339346334338188, -0.0036085660103708506, 0.013777532614767551, 0.002763456432148814, 0.08865182101726532, 0.022964859381318092, -0.007196393329650164, 0.008025948889553547, -0.038740236312150955, 0.007141089532524347, 0.004756117705255747, 0.0069095054641366005, -0.008247163146734238, -0.029974602162837982, 0.020310282707214355, -0.01686762645840645, -0.0029310958925634623, -0.013397320173680782, -0.015775378793478012, -0.00471809646114707, -0.011413300409913063, 0.00931175984442234, -0.012277420610189438, 0.0057619535364210606, 0.02112601138651371, 0.0053851972334086895, 0.01773866079747677, 0.00023223231255542487, -0.03661104664206505, -0.011752035468816757, 0.031191283836960793, 0.020559148862957954, -0.008516768924891949, -0.01424070168286562, 0.021457834169268608, 0.004279123153537512, -0.019964633509516716, -0.014047138392925262, -0.00545432697981596, 0.0061214277520775795, -0.009968491271138191, -0.014448090456426144, 0.008807113394141197, 0.029034439474344254, 0.006000450812280178, 0.020476192235946655, -0.008585898205637932, -0.024610143154859543, 0.007075416389852762, -0.002469655591994524, -0.0013558046193793416, -0.01609337516129017, -0.015858333557844162], "bc86f2c5-666d-48fd-bfb5-1853077b08ba": [-0.00818244181573391, 0.01225317269563675, 0.017594298347830772, -0.021979212760925293, -0.013803602196276188, 0.02113228291273117, -0.008810809813439846, -0.022826144471764565, 0.009514308534562588, -0.04518784210085869, 0.01628292351961136, 0.008414664305746555, 0.030626101419329643, -0.01663808710873127, -0.013366476632654667, 0.01450710091739893, 0.031008586287498474, 0.0009109625825658441, 0.0023290589451789856, 0.000615561380982399, -0.026555370539426804, 0.023304250091314316, -0.014042655006051064, -0.01064810249954462, -0.015927758067846298, 0.005378691945225, 0.008045840077102184, -0.017963124439120293, -0.018769074231386185, 0.02111862227320671, 0.01636488363146782, -0.013093273155391216, -0.013366476632654667, 0.017840182408690453, -0.02077711932361126, 0.011283300817012787, -0.010088035836815834, -0.0008149145287461579, 0.013926543295383453, -0.011747745797038078, 0.01026561763137579, 0.028385832905769348, 0.0003735202772077173, -0.011795557104051113, -0.00812097080051899, 0.017771881073713303, 0.0022590504959225655, 0.0056074997410178185, -0.031800877302885056, 0.011576994322240353, 0.0030188974924385548, -0.02945132553577423, -0.03685513883829117, 0.01646050438284874, 0.006150491535663605, -0.006348563823848963, 0.009937773458659649, 0.010026564821600914, 0.008851789869368076, -0.00855809636414051, 0.00306158559396863, 0.006218792404979467, -0.011747745797038078, -0.017935803160071373, -0.023591114208102226, -0.03721030429005623, -0.013468927703797817, 0.0012131938710808754, -0.009767021983861923, -0.012369283474981785, 0.05322002246975899, 0.03237460181117058, 0.0003304053680039942, -0.02044927515089512, -0.0074926032684743404, -0.010798363946378231, -0.01438415888696909, -0.035844285041093826, -0.00846247561275959, 0.006034380290657282, 0.020121430978178978, -0.01438415888696909, -0.011604314669966698, 0.0028174100443720818, 0.03256584703922272, 0.019411101937294006, 0.02501177042722702, -0.008202931843698025, -0.00361311505548656, -0.011570164002478123, 0.01229415275156498, 0.02013508975505829, 0.030352897942066193, 0.01706155203282833, 0.009220615029335022, 0.018236326053738594, 0.0047981347888708115, 0.014315858483314514, -0.0007551512680947781, -0.015422332100570202, -0.03218336030840874, -0.01422023680061102, -0.02573576010763645, -0.01016316656023264, -0.013407456688582897, -0.01700691133737564, 0.018700772896409035, -0.00833270326256752, 0.007574564311653376, 0.026254845783114433, -0.035407159477472305, 0.01460272166877985, 0.0024759056977927685, -0.018290966749191284, -0.002351256785914302, -0.007041817530989647, 0.02445170469582081, -0.03802991285920143, -0.010853004641830921, -0.03264780715107918, 8.724366125534289e-06, 0.002185627119615674, 0.051908645778894424, -0.011242319829761982, 0.014069975353777409, 0.005125978961586952, 0.007451622746884823, -0.0148759251460433, 0.0007052063010632992, -0.01032708864659071, 0.017553318291902542, 0.006215377245098352, 0.013270854949951172, 0.010791534557938576, -0.018605152145028114, 0.005645065102726221, -0.009323066100478172, 0.006160736549645662, -0.015408671461045742, -0.03379525989294052, 0.015955079346895218, 0.04130835458636284, 0.009555288590490818, -0.013284515589475632, -0.0077521465718746185, 0.0347241535782814, -0.005320636089891195, 0.0018014349043369293, 0.00267397821880877, -0.004688853397965431, 0.007239890284836292, -0.021760649979114532, -0.030926624312996864, 0.000966457009781152, 0.0043063685297966, 0.0001609338796697557, 0.009883132763206959, 0.02125522494316101, -0.015395011752843857, -0.0012729570735245943, -0.01628292351961136, 0.00213781651109457, -0.0025100561324507, -0.0011961186537519097, 0.001585433492437005, 0.039969656616449356, 0.00851028598845005, -0.01718449406325817, -0.027675503864884377, -0.027033476158976555, 0.006321243476122618, 0.010292937979102135, -0.0407073050737381, 0.009719210676848888, -0.002469075610861182, 0.009985583834350109, 0.027279360219836235, 0.006795934401452541, 0.005962664261460304, -0.035543762147426605, 0.027566222473978996, -0.01486226450651884, -0.0031298864632844925, 0.031910158693790436, -0.009609929285943508, 0.002926691435277462, 0.04559764638543129, 0.025886021554470062, 0.005795327015221119, 0.00021632159769069403, 0.013912882655858994, -0.00801168940961361, -0.009138653986155987, -0.014288538135588169, -0.6097899675369263, -0.0036062849685549736, 0.019370121881365776, -0.012943010777235031, 0.018222667276859283, 0.026172885671257973, 0.025954322889447212, -0.013906053267419338, -0.027525242418050766, 0.026077264919877052, 0.017799202352762222, 0.01747135818004608, -0.00822342187166214, 0.0001431116252206266, -0.014151936396956444, -0.02569478005170822, -0.002271003322675824, -0.02467026747763157, -0.011734086088836193, -0.005242090206593275, -0.039696455001831055, 0.02120058424770832, 0.00511231878772378, 0.0017536242958158255, -0.003619945142418146, -0.022429998964071274, 0.04067998751997948, 0.0015000574057921767, -0.0029608418699353933, 0.040215540677309036, -0.020176071673631668, 0.018277307972311974, 0.006956441327929497, 0.02049025520682335, 0.04059802368283272, -0.009965093806385994, -0.014998866245150566, 0.017676260322332382, 0.02095470018684864, 0.02868635766208172, -0.01625560224056244, -0.007683845702558756, 0.00615390669554472, -0.0017655770061537623, 0.004572741687297821, -0.0077521465718746185, 0.01617364212870598, 0.0020678082946687937, -0.00526941055431962, -0.02031267248094082, 0.018209006637334824, -0.004808379802852869, -0.018810054287314415, 0.009944603778421879, 0.01021780725568533, 0.0024912734515964985, 0.013721641153097153, 0.00021717535855714232, -0.007267210632562637, 0.0164741650223732, -0.0014804209349676967, 0.009842152707278728, -0.019411101937294006, -0.034778792411088943, -0.06321926414966583, 0.011023757047951221, -0.011597484350204468, -0.011126208119094372, 0.008523945696651936, -0.013878732919692993, 0.019083257764577866, -0.0038282626774162054, -0.0049962070770561695, -0.013851412571966648, -0.012608337216079235, 0.015804816037416458, 0.026213865727186203, -0.01703423261642456, -0.012710788287222385, 0.00017160589050035924, -0.009712381288409233, 0.005675800610333681, -0.015654554590582848, -0.021801631897687912, 0.039259329438209534, 0.0027900896966457367, -0.013407456688582897, -0.015190108679234982, -0.0009416979737579823, 0.00022923473443370312, 0.01439781952649355, 0.03715566173195839, -0.013141083531081676, -0.03229264169931412, -0.019452081993222237, 0.04904001206159592, -0.011959479190409184, -0.009971924126148224, -0.009896793402731419, -0.012485395185649395, -0.019738946110010147, -0.01644684374332428, 0.01246490515768528, 0.01261516660451889, 0.030926624312996864, 0.019083257764577866, -0.009357216767966747, -0.0080663301050663, 0.023167647421360016, -0.01676102913916111, -0.012225852347910404, -0.006744708865880966, -0.014247557148337364, -0.026869554072618484, 0.02581772208213806, -0.02574942074716091, -0.007998029701411724, 0.0003654095344245434, 0.011044247075915337, -0.0073218513280153275, -0.015326710417866707, -0.014370499178767204, 0.010620782151818275, 0.02065417729318142, 0.013988014310598373, 0.014315858483314514, 0.019178878515958786, -0.009719210676848888, 0.014302197843790054, -0.009459667839109898, 0.005689460784196854, -0.015654554590582848, 0.009131823666393757, -0.00427563302218914, 0.044067706912755966, -0.01636488363146782, 0.02882295846939087, -0.013236704282462597, 0.023386210203170776, -0.047318827360868454, -0.006229037418961525, 0.00849662534892559, 0.017539657652378082, -0.022443659603595734, 0.0054367478005588055, -0.03715566173195839, -0.0060719456523656845, -0.005559689365327358, 0.01230098307132721, -0.014671023003757, -0.015108147636055946, -0.005908023566007614, -0.002373454626649618, 0.022990066558122635, -0.01009486522525549, -0.001443709246814251, 0.013223044574260712, -0.03505199775099754, -0.0005993399536237121, -0.02529863454401493, -0.021992873400449753, 0.0049962070770561695, -0.0015333540504798293, -0.007745316252112389, -0.017566978931427002, -0.020230712369084358, -0.02539425529539585, 0.012171211652457714, -0.01640586368739605, -0.04215528443455696, 0.015927758067846298, -0.011337941512465477, -0.00824391283094883, 0.019438421353697777, -0.012861049734055996, 0.006454430520534515, -0.014356838539242744, -0.010716402903199196, 0.00213781651109457, -0.0009357216185890138, -0.0004917661426588893, 0.02099568210542202, -0.0007530168513767421, 0.005330881103873253, 0.03833043575286865, 0.0028857109136879444, 0.02909616194665432, 0.018168026581406593, -0.027716485783457756, 0.013359646312892437, 0.011324280872941017, 0.0066798231564462185, -0.003838507691398263, 0.005812402348965406, -0.04054338485002518, 0.0025612819008529186, -0.024096539244055748, 0.01605070009827614, 0.0023119838442653418, 0.03805723413825035, 0.013817261904478073, 0.009541628882288933, -0.005768006667494774, 0.0038589979521930218, 0.0065090712159872055, -0.025722099468111992, 0.01445246022194624, -0.022757843136787415, 0.01693861000239849, 0.002942059189081192, -0.022361697629094124, -0.0031503767240792513, 0.003534568939357996, -0.020107770338654518, 0.0026159225963056087, 0.006741293705999851, 0.02031267248094082, 0.025981644168496132, 0.0034560230560600758, 0.006983761675655842, 0.01456174161285162, 0.014411479234695435, 0.014684682711958885, -0.015627235174179077, 0.0052045248448848724, 0.02163770981132984, 0.011399411596357822, 0.04305685684084892, -0.0012336841318756342, -0.0100402245298028, -0.02538059651851654, 0.017607958987355232, 0.002878880826756358, 0.015381351113319397, 0.05819232389330864, 0.03270244598388672, 0.039286646991968155, 0.005378691945225, 0.03494271636009216, 0.0037463016342371702, 0.006143661215901375, 0.0052318451926112175, 0.027525242418050766, -0.018892014399170876, 0.04163619875907898, -0.005583594553172588, 0.02064051665365696, 0.011631635017693043, -0.023345230147242546, 0.01714351400732994, 0.01476664375513792, -0.011966308578848839, -0.019206199795007706, 0.00180655752774328, 0.02863171696662903, -0.014356838539242744, 0.019151559099555016, 0.003930713981389999, 0.018796393647789955, 0.031910158693790436, 0.012478564865887165, -0.0060446253046393394, 0.01068908255547285, -0.021719669923186302, 0.012881540693342686, -0.004702513571828604, -0.0007636888767592609, -0.04475071653723717, -0.006300753448158503, -0.013523568399250507, 0.0033894297666847706, -0.006539806257933378, 0.009090842679142952, -0.015039847232401371, 0.01239660382270813, -0.00213781651109457, 0.0034577306360006332, 0.02882295846939087, -0.005590424407273531, 0.005225014872848988, -0.021815290674567223, -0.030598780140280724, 0.024028239771723747, 0.023959938436746597, 0.012041440233588219, -0.0023973598144948483, -0.012970331124961376, -0.014370499178767204, 0.009316235780715942, 0.010805194266140461, -0.009924113750457764, -0.0105524817481637, 0.004405404906719923, -0.01687031053006649, -0.007506263442337513, 0.019206199795007706, 0.039204686880111694, 0.001061224495060742, -0.010853004641830921, 0.009425517171621323, 0.004641042556613684, 0.014848604798316956, -0.015791157260537148, -0.02529863454401493, 0.0211732629686594, -0.018960315734148026, -0.0004768253129441291, -0.04114443063735962, -0.02087274007499218, -0.019219858571887016, 0.012929351069033146, -0.00860590673983097, 0.003585794707760215, -0.02893223986029625, -0.019233519211411476, 0.009043032303452492, -0.010805194266140461, 0.005392352119088173, 0.0035789646208286285, 0.0052284300327301025, -0.0029181537684053183, -0.019165217876434326, 0.024192161858081818, 0.0337679386138916, 0.07032255828380585, 0.0024998111184686422, 0.009719210676848888, 0.017389396205544472, -0.013270854949951172, -0.017430376261472702, -0.030434858053922653, 0.003242582781240344, 0.04253777116537094, 0.010135846212506294, -0.0286590363830328, 0.013503078371286392, 0.009097672998905182, 0.0032801483757793903, 0.011051077395677567, -0.018591491505503654, -0.004514686297625303, -0.0049927919171750546, -0.007308191154152155, 0.019984828308224678, 0.013052292168140411, -0.009295745752751827, 0.0326751284301281, 0.017717240378260612, 0.01251271553337574, 0.024178501218557358, 0.026650991290807724, -0.0029796245507895947, -0.00027405715081840754, -0.030407538637518883, -0.02009410969913006, 0.0026927608996629715, 0.005853382870554924, 0.02025803178548813, -0.015572593547403812, 0.030434858053922653, -0.0027405715081840754, -0.01250588521361351, -0.011740916408598423, 0.011372091248631477, -0.004726418759673834, 0.02038097381591797, -0.0068505750969052315, -0.01602337881922722, 0.005173789337277412, -0.019260840490460396, -0.004569326993077993, 0.023932617157697678, -0.007451622746884823, 0.01240343414247036, 0.02528497390449047, 0.018304627388715744, -0.01015633624047041, 0.005768006667494774, 0.02509373240172863, -0.027265699580311775, -0.021828951314091682, 0.006522731389850378, -0.03906808793544769, -0.018345607444643974, -0.01241026446223259, -0.023563792929053307, -0.019902868196368217, -0.023850657045841217, -0.01598239876329899, -0.043248098343610764, -0.006300753448158503, -0.01251271553337574, -0.005856798030436039, -0.00420391745865345, 0.007048647850751877, -0.026063604280352592, -0.030598780140280724, -0.01069591287523508, 0.029997732490301132, 0.025858702138066292, -0.01465736236423254, 0.0017980198608711362, -0.004921076353639364, 0.030107013881206512, 0.004466875456273556, -0.026555370539426804, 0.009254764765501022, -0.014971545897424221, 0.013646509498357773, -0.006235867738723755, -0.021542087197303772, -0.007574564311653376, -0.019493062049150467, 0.010914475657045841, -0.012546866200864315, -0.007396982051432133, 0.006160736549645662, -0.0022078249603509903, 0.0017365490784868598, 0.018386589363217354, 0.01717083342373371, -0.0025100561324507, 0.023358890786767006, -0.03644533455371857, 0.012553696520626545, -0.04141763597726822, -0.006433940026909113, -0.01632390357553959, 0.0018526605563238263, 0.022826144471764565, -0.01075738389045, 0.002655195537954569, -0.014028994366526604, -0.015435991808772087, 0.005040602758526802, 0.007192079443484545, -0.003133301390334964, -0.015080827288329601, 0.022389018908143044, -0.017908483743667603, 0.002709836233407259, 0.014520760625600815, 0.02510739304125309, -0.001333574065938592, -0.0073355115018785, -0.014001674018800259, 0.021596727892756462, 0.004770814441144466, 0.005921683739870787, 0.018277307972311974, 0.017840182408690453, -0.01636488363146782, -0.027812106534838676, -0.00872884877026081, -0.012594676576554775, 0.02077711932361126, -0.02432876266539097, -0.009049862623214722, -0.008161951787769794, 0.005587009713053703, -0.028331192210316658, -0.0011064737336710095, -0.017771881073713303, 0.0015393303474411368, -0.03395918384194374, 0.000873823999427259, 0.006584201939404011, 0.011030587367713451, 0.013639680109918118, -0.0340411439538002, -0.015108147636055946, -0.0032767332158982754, 0.0071169487200677395, 0.03264780715107918, -0.0172254741191864, -9.700855298433453e-05, -0.03816651552915573, -0.02128254435956478, -0.027579883113503456, -0.019151559099555016, -0.028221910819411278, 0.007909238338470459, 0.049012690782547, 0.009350386448204517, -0.0006731902249157429, 0.011180848814547062, 0.026610011234879494, 0.0024741983506828547, -0.006594446953386068, -0.009473327547311783, -0.01620096154510975, -0.01734841614961624, 0.01273810863494873, 0.0029557193629443645, -0.00010154415213037282, -0.0016477579483762383, 0.004712758585810661, 0.0007449061376973987, -0.002417850075289607, 0.018673451617360115, 0.0001657362881815061, -0.008100480772554874, -0.03283904865384102, -0.026555370539426804, 0.01682932861149311, 0.029997732490301132, -0.008052670396864414, -0.0027935048565268517, -0.027962367981672287, 0.007000837009400129, 0.015395011752843857, 0.006379299331456423, 0.03636337071657181, 0.001782652223482728, 0.02936936542391777, -0.0011431854218244553, 0.006642257794737816, 0.023085687309503555, -0.0004300819127820432, -0.028194591403007507, -0.0009869473287835717, -0.060377951711416245, -0.01480762381106615, 0.007813617587089539, 0.017539657652378082, 0.00844881497323513, -0.007157929241657257, -0.004309783689677715, 0.008653718046844006, 0.019383780658245087, -0.01075055357068777, -0.019493062049150467, 0.00013873609714210033, -0.02051757462322712, -0.0036575105041265488, -0.0205585565418005, -0.011706765741109848, 0.003198187332600355, 0.013735300861299038, -0.006136831361800432, 0.01723913475871086, 0.006300753448158503, -0.017826521769165993, -0.022853463888168335, 0.019984828308224678, 0.002240267815068364, 0.02904152125120163, 0.01648782566189766, 0.012867880053818226, 0.011098887771368027, -0.002590309828519821, -0.009637249633669853, -0.012000459246337414, -0.0035721345338970423, 0.009343556128442287, -0.006693483330309391, 0.03753814846277237, -0.011331111192703247, -0.010504670441150665, 0.009193294681608677, -0.013680660165846348, -0.0001244356099050492, -0.039259329438209534, 0.027730144560337067, 0.015613574534654617, -0.007854597643017769, -0.03395918384194374, -0.03794795274734497, -0.02538059651851654, 0.014370499178767204, 0.0027320340741425753, 0.0084419846534729, 0.01639220304787159, -0.004921076353639364, 0.0014087050221860409, 0.043412018567323685, 0.0062768482603132725, 0.011706765741109848, -0.009097672998905182, -0.017539657652378082, -0.0009451130172237754, -0.009172803722321987, 0.001869735773652792, -0.0002685077197384089, 0.013769451528787613, 0.013373306021094322, -0.015231089666485786, 0.0012866172473877668, -9.599470649845898e-05, 0.01438415888696909, -0.007888748310506344, -0.003430410288274288, -0.012219022028148174, 0.025776740163564682, -0.011611144058406353, -0.005207940004765987, -0.008906430564820766, -0.01715717278420925, 0.025995302945375443, -0.027443282306194305, -0.0013327202759683132, -0.013680660165846348, 0.0017100825207307935, 0.007567733991891146, 0.005125978961586952, 0.019575024023652077, -0.01454808097332716, -0.012861049734055996, 0.009541628882288933, -0.010675422847270966, 0.0007282578153535724, -0.004507855977863073, 0.005289901047945023, -0.027634523808956146, -0.026282167062163353, 0.0043951598927378654, -0.009029372595250607, 0.012943010777235031, 0.0074857729487121105, -0.022033853456377983, -0.005573349539190531, 0.02090005949139595, -0.005822647362947464, 0.0022453905548900366, 0.022621242329478264, 0.00019892622367478907, -0.03297565132379532, 0.02871367707848549, 0.0047913044691085815, -0.011057907715439796, 0.021678689867258072, -6.819413101766258e-05, -0.04693634435534477, -0.027129096910357475, 0.020053129643201828, -0.007533583790063858, 0.021938232704997063, -0.005757761653512716, 0.01081885490566492, 0.01699325069785118, -0.018468549475073814, -0.002752524334937334, -0.0008529068436473608, -0.017717240378260612, -0.011392582207918167, 0.01622828282415867, 0.014739323407411575, -0.017717240378260612, 0.02051757462322712, 0.008592247031629086, 0.023058366030454636, 0.007308191154152155, -0.0404341034591198, -0.0325385257601738, -0.017717240378260612, -0.011966308578848839, 0.0008751046261750162, 0.006809594575315714, -0.0075199236162006855, -0.02111862227320671, -0.013079612515866756, 0.01427487749606371, -0.011426731944084167, -0.004921076353639364, 0.021924572065472603, -0.01456174161285162, -0.022908104583621025, 0.018304627388715744, 0.004695683252066374, -0.035926248878240585, -0.01027244795113802, -0.015531613491475582, -0.03289368748664856, -0.011317450553178787, -0.007233059965074062, 0.030325576663017273, 0.009247935377061367, -0.01614632084965706, -0.023714054375886917, -0.02510739304125309, -0.05395767092704773, -0.022867124527692795, -0.028194591403007507, 0.02542157657444477, 0.03251120448112488, 0.044231630861759186, 0.010921305976808071, 0.0297518502920866, -0.004057070706039667, 0.015709195286035538, -0.018017763271927834, -0.015244749374687672, -0.01219853200018406, -0.03655461594462395, 0.006806179881095886, -0.019192539155483246, -0.052673615515232086, 0.008858620189130306, 0.012102910317480564, -0.019452081993222237, 0.008599077351391315, 0.026732953265309334, -0.007970709353685379, -0.0019021786283701658, -0.017853843048214912, -0.018195345997810364, 0.022785164415836334, 0.015326710417866707, -0.008421494625508785, -0.014151936396956444, 0.01273810863494873, 0.008844960480928421, -0.013591868802905083, -0.01610534079372883, 0.013544058427214622, 0.030817342922091484, -0.008899601176381111, 0.008216592483222485, -0.019656984135508537, -0.012096080929040909, 0.0030513405799865723, -0.02129620499908924, 0.01591409742832184, 0.012102910317480564, 0.013250364921987057, 0.023522812873125076, -0.009159144014120102, 0.015203769318759441, -0.023468172177672386, 0.01741671748459339, 0.023550132289528847, 0.007922898977994919, 0.035024676471948624, -0.023959938436746597, -0.011802386492490768, -0.009288915432989597, 0.010012904182076454, 0.0058089871890842915, -0.02876831777393818, -0.009268425405025482, -0.009760191664099693, -0.023003725335001945, -0.011351601220667362, 0.02122790366411209, 0.0008665670175105333, 0.010859834961593151, -0.021624049171805382, 0.0028822957538068295, -0.007465282920747995, 0.006577371619641781, -0.0018014349043369293, -0.009418686851859093, 0.00824391283094883, -0.008776659145951271, 0.0007611276232637465, -0.03360401839017868, 0.001498349942266941, 0.01596873812377453, -0.018564170226454735, 0.015517952851951122, 0.21856272220611572, -0.009691890329122543, 0.011734086088836193, 0.027402300387620926, 0.02047659456729889, -0.01285422034561634, 0.0019158388022333384, 0.01700691133737564, -0.008428324945271015, 0.02043561451137066, 0.022675883024930954, -0.01266980729997158, -0.04617137461900711, 0.00033958329004235566, 0.002520301379263401, -0.013844582252204418, -0.027293018996715546, -0.025954322889447212, -0.009637249633669853, 0.005423087626695633, 0.013141083531081676, -0.0016597106587141752, -0.015067167580127716, -0.0011261102044954896, 0.03483343496918678, 0.03671853616833687, -0.0056348200887441635, 0.011153528466820717, 0.009172803722321987, 0.02849511429667473, -0.01662442646920681, -0.01607801951467991, 0.013530398719012737, -0.022744182497262955, -0.013175234198570251, -0.005211354698985815, 0.0211732629686594, -0.014780303463339806, 0.0008529068436473608, 0.012656147591769695, -0.0036711706779897213, -0.012594676576554775, 0.019752604886889458, -0.04253777116537094, 0.02887759916484356, -0.01689762994647026, -0.009241105057299137, -0.014356838539242744, 0.0043575940653681755, 0.03289368748664856, -0.011952648870646954, 0.013141083531081676, 0.022484639659523964, 0.003111103782430291, 0.0034713908098638058, -0.003619945142418146, -0.020162411034107208, 0.0011150114005431533, -0.018045084550976753, 0.005768006667494774, -0.004958641715347767, 0.0022351453080773354, -0.0013241827255114913, -0.00524550536647439, -0.030899304896593094, 0.018905675038695335, -0.014520760625600815, 0.023454511538147926, 0.017963124439120293, -0.010088035836815834, -0.000294760859105736, 6.243124516913667e-05, -0.03731958568096161, 0.005757761653512716, -0.005689460784196854, -0.013605529442429543, 0.007595054339617491, 0.04543372616171837, 0.05548761039972305, -0.004576156847178936, 0.007834107615053654, 0.012478564865887165, -0.017908483743667603, -0.010060715489089489, 0.011440392583608627, -0.004326859023422003, 0.030270935967564583, -0.011051077395677567, 0.011918498203158379, -0.02479320764541626, -0.019083257764577866, 0.0077248262241482735, -0.0001298783317906782, -0.008537606336176395, -0.0025988472625613213, -0.00849662534892559, 0.009179634042084217, 0.014315858483314514, -0.012717618606984615, -0.012034609913825989, -0.023304250091314316, 0.03778402879834175, 0.00722623011097312, 0.027702825143933296, 0.002264173235744238, 0.010463690385222435, 0.0023324741050601006, 0.03415042534470558, -8.313493890454993e-05, -0.009780681692063808, -0.005699705798178911, -0.043958425521850586, 0.015026186592876911, 0.010627612471580505, -0.0010970823932439089, 0.03251120448112488, 0.03297565132379532, 0.013468927703797817, 0.008482965640723705, 0.0015017649857327342, 0.015722855925559998, -0.0025578667409718037, 0.004873265512287617, -0.0021326940041035414, -0.0035482291132211685, -0.027948707342147827, -0.014302197843790054, 0.00319477217271924, -0.030298257246613503, -0.019206199795007706, 0.013947033323347569, 0.011378921568393707, 0.018263647332787514, 0.0008486380684189498, -0.012546866200864315, -0.023317910730838776, -0.018564170226454735, -0.022949084639549255, 0.00844881497323513, 0.0049654715694487095, 0.006843745242804289, 0.015750175341963768, 0.01480762381106615, -0.009343556128442287, 0.003917053807526827, 0.027456941083073616, -0.01617364212870598, 0.018605152145028114, -0.02124156430363655, -0.015545273199677467, 0.01060029212385416, 0.009773851372301579, -0.010402219370007515, -0.009705550968647003, 0.0428929328918457, -0.017730901017785072, -0.0578644797205925, -0.027497923001646996, 0.01682932861149311, -0.00023841265647206455, -0.041117113083601, 0.008155121468007565, 0.0416635200381279, 0.023099347949028015, -0.014165596105158329, 0.009459667839109898, -0.17310167849063873, 0.0009647494880482554, 0.006328073795884848, 0.004043410532176495, -0.0021156189031898975, 0.03677317872643471, 0.01456174161285162, -0.019301820546388626, -0.023304250091314316, -0.013366476632654667, 0.013468927703797817, -0.026500729843974113, -0.022266076877713203, -0.030079694464802742, 0.019465742632746696, -0.024178501218557358, -0.006632012315094471, 0.031145187094807625, 0.0407073050737381, -0.0032357526943087578, -0.006136831361800432, -0.012533205561339855, 0.0007871672860346735, -0.0034577306360006332, 0.006328073795884848, 0.0341777466237545, -0.014015334658324718, 0.031227149069309235, 0.005218185018748045, -0.0345875509083271, -0.004835700150579214, -0.009589439257979393, 0.010996436700224876, 0.007902408018708229, 0.0002576222759671509, 0.0015359153039753437, -0.018987637013196945, -0.005727026145905256, 0.0016144613036885858, 0.022307056933641434, 0.035297878086566925, 0.011549673974514008, 0.018796393647789955, -0.0018611981067806482, 0.0019397441064938903, 0.03327617421746254, 0.03671853616833687, -0.005317221395671368, 0.010914475657045841, -0.002492981031537056, 0.026090925559401512, -0.018441230058670044, -0.01049784105271101, -0.0035413990262895823, 0.010975946672260761, 0.01602337881922722, 0.0058704582042992115, 0.021815290674567223, -0.0006334903882816434, -0.002899371087551117, -0.006058285478502512, -0.009521138854324818, -0.007369661703705788, -0.00855126604437828, -0.006027549970895052, -0.04174548014998436, -0.007499433122575283, 0.026569031178951263, -0.007840937934815884, 0.006167566869407892, 0.0006898386054672301, 0.010463690385222435, 0.013079612515866756, 0.008414664305746555, 0.02087274007499218, -0.006720803678035736, -0.04723686724901199, 0.0004266668693162501, 0.019875546917319298, 0.00026615988463163376, 0.02568111941218376, 0.01476664375513792, 0.0056689707562327385, -0.00017384700186084956, -0.012492225505411625, 0.0006817278335802257, -3.988662865594961e-05, -0.0012507593492045999, -0.009582608938217163, 0.01624194160103798, 0.031227149069309235, -0.022662222385406494, 0.006980346981436014, 0.007000837009400129, 0.019411101937294006, 0.02044927515089512, 0.010675422847270966, -0.002038780367001891, 0.012758598662912846, -0.022757843136787415, -0.0039853546768426895, 0.039887696504592896, -0.02464294619858265, 0.0015786034055054188, 0.04496927931904793, 0.0037975271698087454, 0.023290589451789856, 0.0003000968717969954, 0.035789646208286285, -0.018086064606904984, -0.01273810863494873, 0.01422023680061102, 0.017785541713237762, -0.003964864183217287, -0.031609632074832916, 0.03893148526549339, 0.0018953485414385796, -0.030489498749375343, 0.011201339773833752, -0.01721181347966194, 0.04669046029448509, -0.043384701013565063, -0.018099725246429443, 0.00033424727735109627, -0.0069427816197276115, -0.0024554154369980097, -0.1109752207994461, -0.014957886189222336, 0.043248098343610764, 0.015408671461045742, 0.0006761784316040576, 0.013892392627894878, -0.001293447334319353, 0.014356838539242744, 0.019151559099555016, 0.014411479234695435, -0.01687031053006649, 0.004975717049092054, -0.003278440795838833, -0.012949841096997261, 0.008599077351391315, -0.0005054263165220618, -0.005139639135450125, -0.027402300387620926, -0.02043561451137066, 0.023358890786767006, -0.009985583834350109, -0.011303790844976902, 0.014288538135588169, 0.010067544877529144, -0.005265995394438505, -0.011146699078381062, -0.01639220304787159, 0.011187679134309292, 0.014288538135588169, 0.0026517806109040976, 0.04327541962265968, -0.01475298311561346, 0.014124616049230099, -0.017853843048214912, 0.01258101686835289, -0.00862639769911766, -0.022129476070404053, -0.02473856694996357, 0.030352897942066193, -0.019575024023652077, 0.009637249633669853, -0.0024554154369980097, 0.009801171720027924, -0.06190789118409157, 0.012997651472687721, -0.01230098307132721, -0.018905675038695335, 0.028112629428505898, 0.005484558176249266, 0.007711166050285101, -0.01733475551009178, -0.02031267248094082, -0.03906808793544769, -0.013619189150631428, 0.02980649098753929, 0.002081468468531966, 0.021678689867258072, 0.010463690385222435, -0.02088640071451664, 0.010723233222961426, -0.019930187612771988, -0.004405404906719923, 0.0003069269296247512, 0.018769074231386185, 0.00211391132324934, 0.018127044662833214, 0.0066456724889576435, 0.011098887771368027, -0.002417850075289607, 0.00016498923650942743, -0.01643318496644497, 0.012983991764485836, -0.017553318291902542, -0.0036609256640076637, -0.01745769754052162, -0.006550051271915436, -0.011822877451777458, -0.019055936485528946, 0.0015316465869545937, 0.015709195286035538, -0.019069597125053406, -0.023454511538147926, 0.0025288390461355448, -0.012082420289516449, -0.00371556612662971, 0.0038009423296898603, 0.02147378772497177, -0.023823335766792297, 0.01493056584149599, -0.02939668670296669, 0.022566601634025574, 0.01655612513422966, 0.018646132200956345, 0.017539657652378082, -0.026241187006235123, 0.004463460762053728, -0.00833953358232975, -0.012642486952245235, 0.02439706400036812, -0.0075472439639270306, -0.0011696520959958434, -0.0026893459726125, -0.052209168672561646, -0.0005745809176005423, 0.018946655094623566, 0.013216214254498482, 0.006867650430649519, -0.03248388320207596, 0.003589209634810686, -0.018482210114598274, 0.013195724226534367, -0.019083257764577866, -0.031117867678403854, 0.024246802553534508, -0.01658344641327858, -0.004415649920701981, -0.02936936542391777, -0.006560296751558781, 0.01674736849963665, 0.009022542275488377, 0.011508692987263203, 0.004180011805146933, 0.002354671712964773, 2.7827260055346414e-05, 0.0003788562898989767, 0.01661076582968235, -0.015244749374687672, 0.015026186592876911, -0.02890492044389248, 0.030899304896593094, -0.013742131181061268, -0.02072247862815857, 0.015108147636055946, 0.0103817293420434, -0.013940203003585339, 0.013803602196276188, -0.011139868758618832, -0.0336313396692276, 0.0029881622176617384, 0.009828492067754269, 0.015859456732869148, 0.003940958995372057, -0.02018973045051098, -0.01729377545416355, 0.011433562263846397, -0.04185476154088974, -0.022129476070404053, -0.01632390357553959, -0.022211436182260513, -0.020162411034107208, 0.013639680109918118, -0.019329139962792397, 0.03494271636009216, 0.005061092786490917, -0.02513471245765686, -0.04488731920719147, -0.008633227087557316, -0.012888370081782341, 0.022088494151830673, 0.027361320331692696, 0.019206199795007706, -0.007902408018708229, 0.04494195803999901, -0.0035243239253759384, 0.0100402245298028, -0.012376113794744015, 0.02893223986029625, -0.014903245493769646, -0.04633529484272003, -0.019588684663176537, 0.007041817530989647, -0.0206268560141325, 0.011891177855432034, -0.019452081993222237, 0.035297878086566925, 0.03628141060471535, 0.010832514613866806, -0.0009912160458043218, -0.013291344977915287, -0.015121808275580406, 0.003415042534470558, 0.006461260374635458, 0.011515523307025433, -0.01631024293601513, -0.02558549866080284, 0.026610011234879494, 0.011167189106345177, 0.019274499267339706, -0.02904152125120163, 0.026063604280352592, 0.01591409742832184, 0.013093273155391216, -0.01711619272828102, -0.006717388518154621, -0.01049101073294878, 0.01471200305968523, -0.006587617099285126, 0.004723003599792719, -0.009527968242764473, 0.003491880837827921, 0.01696593128144741, 0.01663808710873127, -0.010921305976808071, 0.01081885490566492, -0.0041287862695753574, -0.02143280580639839, -0.0033860146068036556, 0.01618730090558529, -0.03237460181117058, -0.02540791593492031, 0.03398650139570236, 0.021692350506782532, 0.02849511429667473, -0.027661845088005066, -0.009152313694357872, 0.01223951205611229, -0.030544139444828033, -0.005102073308080435, -0.0037292263004928827, -0.010771043598651886, -0.03352205827832222, 0.004719588905572891, 0.018673451617360115, 0.02115960419178009, 0.010873495601117611, -0.01439781952649355, 0.02109130285680294, -0.008824469521641731, 0.01456174161285162, -0.007342341355979443, 0.019711624830961227, -0.01740305684506893, -0.011255980469286442, 0.011262809857726097, -0.014370499178767204, -0.02095470018684864, -0.023290589451789856, -0.005392352119088173, -0.004234652500599623, 0.018058745190501213, -0.0058977785520255566, 0.07819081097841263, 0.023891637101769447, -0.0162692628800869, 0.00818927213549614, -0.005873872898519039, 0.0009613344445824623, 0.004849360324442387, -0.006249527912586927, 0.003913638647645712, -0.02094104140996933, 0.0069427816197276115, -0.021897252649068832, -0.0082370825111866, -0.007123778574168682, -0.019506722688674927, -0.010798363946378231, -0.0038453377783298492, 0.001455661840736866, -0.0015692120650783181, 0.01493056584149599, 0.0069120461121201515, -0.0006979493191465735, 0.00823025219142437, -0.0030991509556770325, -0.03251120448112488, -0.01684298925101757, 0.028331192210316658, 0.026364127174019814, -0.0060719456523656845, -0.011016926728188992, 0.026883214712142944, -0.0015154251595959067, -0.029997732490301132, -0.008872280828654766, 0.0003517493896652013, 0.0029796245507895947, -0.00795704871416092, -0.043876465409994125, 0.009862642735242844, 0.026377787813544273, -0.0012234390014782548, 0.027074456214904785, -0.018318288028240204, -0.00868103839457035, 0.0021668444387614727, -0.002146354177966714, 0.004244897980242968, -0.013912882655858994, 0.008428324945271015], "4f880336-617a-4346-a2a4-8689328dde85": [0.0026982887648046017, 0.004238439258188009, 0.014001370407640934, -0.01963648945093155, -0.01595810428261757, 0.019000377506017685, 0.0026308747474104166, -0.036562591791152954, -0.0057664900086820126, -0.04604895040392876, -0.0002286026137880981, 0.01456142496317625, 0.022637275978922844, -0.016386788338422775, -0.008677392266690731, 0.005877118092030287, 0.03205449506640434, 0.00524100661277771, 0.0031045014038681984, -0.003234143601730466, -0.03672853112220764, 0.0036576418206095695, -0.013966798782348633, 0.006170974113047123, -0.013026460073888302, 0.015266679227352142, 0.00916830450296402, -0.013959884643554688, -0.019442889839410782, 0.020065173506736755, 0.004801951348781586, 0.002632603282108903, -0.024545611813664436, 0.015252850949764252, -0.02750491350889206, 0.008960876613855362, -0.003247972112149, -0.01191326417028904, 0.004743180237710476, -0.019788602367043495, 0.017686668783426285, 0.028956906870007515, 0.00529977772384882, -0.01884826458990574, -0.004476981237530708, 0.02359144389629364, 0.005759575869888067, 0.014381654560565948, -0.01205154974013567, 0.011042067781090736, -0.007515797391533852, -0.019415233284235, -0.030090846121311188, -0.0016637430526316166, 0.003685298841446638, -0.01783878356218338, 0.0017199213616549969, 0.010385213419795036, 0.015640048310160637, 0.004808865487575531, 0.002859045285731554, 0.007183912675827742, -0.004922950640320778, 0.0006503722979687154, -0.005572890862822533, -0.011567551642656326, -0.019553517922759056, 0.010675612837076187, -0.005310149397701025, -0.01754838414490223, 0.05033579096198082, 0.01988540217280388, -0.0017285642679780722, -0.010945268906652927, 0.005120007321238518, -0.017963239923119545, -0.01652507297694683, -0.02674434520304203, -0.006758686155080795, 0.009638474322855473, 0.017119700089097023, -0.015266679227352142, -0.010924525558948517, 0.0022834332194179296, 0.025029608979821205, 0.030063189566135406, 0.0351797379553318, -0.012431833893060684, -0.002148605417460203, -0.016317646950483322, 0.023757386952638626, 0.01942906156182289, 0.04010269045829773, 0.02017580159008503, 0.006326545029878616, 0.02623268961906433, -0.0070490846410393715, 0.004981722217053175, -0.0037682699039578438, -0.017451584339141846, -0.010730926878750324, 0.006737943273037672, -0.01839192397892475, -0.01286051794886589, -0.021627794951200485, -0.005400034599006176, 0.02361910045146942, -0.002477032598108053, 0.00320994365029037, 0.028168682008981705, -0.02331487461924553, 0.009790587238967419, -0.01680164411664009, -0.021351225674152374, 0.006827828474342823, -0.00996344443410635, -0.002670631743967533, -0.03570522367954254, -0.023162759840488434, -0.01970563270151615, 0.016165532171726227, 0.005856375675648451, 0.0535716637969017, -0.0011201095767319202, 0.018488721922039986, 0.014188054949045181, 0.002157248090952635, -0.014699709601700306, 0.005963546689599752, -0.01728564128279686, 0.028002740815281868, 0.009659216739237309, 0.01283977460116148, 0.016898443922400475, -0.020922541618347168, 0.012044635601341724, -0.011927093379199505, 0.006385316140949726, -0.021627794951200485, -0.025859320536255836, 0.015460277907550335, 0.03426705673336983, 0.02435201220214367, -0.017672840505838394, -0.01282594632357359, 0.032939519733190536, 0.0024355470668524504, -0.0004237143148202449, 0.008442307822406292, 0.0038546982686966658, 0.010959097184240818, 0.0009057676652446389, -0.032082151621580124, 0.0006153688300400972, 0.007266883738338947, 0.003087215591222048, 0.002990416018292308, 0.02045237086713314, -0.037668872624635696, -0.005863289814442396, -0.014367825351655483, 0.004421667195856571, 0.003782098414376378, -0.006049974821507931, -0.0026360603515058756, 0.03598179295659065, 0.010668698698282242, -0.014146569184958935, -0.016165532171726227, -0.006713743321597576, 0.0041001541540026665, 0.03410111367702484, -0.019484376534819603, 0.014464625157415867, -0.004919493570923805, 0.012742975726723671, 0.017603697255253792, 0.011671265587210655, -0.004407838918268681, -0.02099168300628662, 0.03327140212059021, -0.00994270108640194, -0.01622084714472294, 0.04225993901491165, -0.017465412616729736, -0.020037516951560974, 0.04267479479312897, 0.03352031856775284, 0.018737636506557465, -0.0024908611085265875, 0.014699709601700306, 0.012231320142745972, 0.003591956337913871, -0.005081978626549244, -0.6173048615455627, -0.004705152008682489, 0.006067260168492794, -0.016829300671815872, 0.018212152644991875, 0.013441314920783043, 0.022346878424286842, -0.004867636598646641, -0.03277357667684555, 0.037917785346508026, 0.022443678230047226, 0.010309156961739063, -0.004974807612597942, -0.010454356670379639, -0.011615951545536518, -0.02226390689611435, -0.011325553059577942, -0.023231903091073036, -0.0032185865566134453, -0.005614376626908779, -0.024255212396383286, 0.00018895367975346744, 0.002098476979881525, -0.0051891496405005455, 0.0006361116538755596, -0.03067164309322834, 0.02937176264822483, 0.0031338869594037533, -0.01727181300520897, 0.029399419203400612, -0.026647545397281647, 0.014602910727262497, 0.005368920508772135, -0.0027570598758757114, 0.037834811955690384, 0.0016283075092360377, -0.010433613322675228, 0.017894096672534943, 0.005942803807556629, 0.05058470368385315, -0.022111793980002403, -0.006257402244955301, 0.012328119948506355, -0.004746637307107449, -0.010558070614933968, -0.009244360961019993, -0.010274585336446762, 0.009472532197833061, -0.01152606587857008, -0.030726958066225052, 0.016995243728160858, -0.005884032696485519, -0.016207018867135048, 0.00330847199074924, 0.003330943174660206, -0.004031011834740639, 0.00036948060733266175, -0.01191326417028904, -0.007294540759176016, 0.011360123753547668, 0.0061986311338841915, 0.005555605515837669, -0.03454362601041794, -0.022900018841028214, -0.05373760312795639, 0.00439055310562253, -0.023702071979641914, -0.0007787181530147791, 0.01313017401844263, -0.0033897145185619593, 0.012445662170648575, 0.01594427600502968, -0.016428275033831596, -0.01049584150314331, -0.0046913232654333115, 0.01194783579558134, 0.024324355646967888, -0.015543249435722828, -0.013828514143824577, -0.0031166013795882463, -0.003192658070474863, 0.003064744407311082, -0.026149719953536987, -0.033907514065504074, 0.042066339403390884, 0.0077093965373933315, -0.031335413455963135, -0.014111998490989208, -0.002297261729836464, 0.000821068009827286, 0.014865652658045292, 0.032884206622838974, -0.008151908405125141, -0.024974295869469643, -0.015100737102329731, 0.053378064185380936, 0.0018720350926741958, 0.005310149397701025, 0.010710183531045914, -0.03194386512041092, -0.018972720950841904, -0.022664934396743774, 0.019484376534819603, 0.012984974309802055, 0.03769652917981148, 0.023674415424466133, -0.0233563594520092, -0.017686668783426285, 0.02202882245182991, -0.02201499417424202, 0.004750094376504421, 0.015543249435722828, -0.015418793074786663, -0.03426705673336983, 0.03482019901275635, -0.023674415424466133, 0.005846004001796246, 0.007363683544099331, 0.01624850369989872, -0.01127715315669775, -0.01967797428369522, -0.012279720045626163, 0.012265891768038273, 0.009479446336627007, 0.008808762766420841, 0.019484376534819603, 0.01518370769917965, -0.009202876128256321, 0.008297108113765717, -0.008497621864080429, -0.0012929660733789206, -0.028002740815281868, 0.003491699695587158, 0.007156255654990673, 0.04607660695910454, -0.00012294412590563297, 0.01059955544769764, -0.018986549228429794, 0.023466987535357475, -0.03966017812490463, -0.0076402537524700165, 0.01782495342195034, 0.021807566285133362, -0.020092830061912537, 0.0020224200561642647, -0.03429471328854561, -0.015252850949764252, 0.005693890620023012, -0.013849256560206413, -0.017437756061553955, -0.006734486203640699, -0.011470751836895943, 0.0005686976364813745, 0.014478453435003757, 0.0077992817386984825, 0.0035642993170768023, 0.00419695395976305, -0.026606060564517975, -0.0202172864228487, -0.02624651975929737, -0.01601341925561428, 0.0017467141151428223, 0.0009731816244311631, -0.00504740746691823, 0.004369810223579407, -0.016303816810250282, -0.03540099412202835, 0.01417422667145729, -0.013171658851206303, -0.034737225621938705, -0.0022644191049039364, -0.01086921151727438, -0.008504536002874374, 0.027408113703131676, -0.020051345229148865, 0.004103611223399639, -0.012238234281539917, -0.014741195365786552, -0.013123259879648685, -0.002869416493922472, -0.002133048139512539, 0.005265206564217806, 0.000510790734551847, -0.014312511309981346, 0.041762109845876694, -0.0018080781446769834, 0.03725401684641838, 0.020839570090174675, -0.019595004618167877, 0.01862700842320919, 0.0103644710034132, 0.02439349889755249, -0.015045423060655594, 0.020756598562002182, -0.022747905924916267, 0.0003366378659848124, -0.023508472368121147, 0.02826548181474209, 0.002419989788904786, 0.037060417234897614, 0.003750984324142337, -0.0060292319394648075, 0.0008928034221753478, -0.016359131783246994, 0.0019446347141638398, -0.030312102288007736, 0.014589081518352032, -0.029786618426442146, 0.024310527369379997, 0.014353997074067593, -0.010440527461469173, 0.0008776784525252879, -0.01283977460116148, -0.02384035848081112, 0.006817457266151905, 0.0015185436932370067, 0.016193188726902008, 0.029316449537873268, -0.010564984753727913, 0.016677187755703926, 0.013330686837434769, -0.009970358572900295, 0.03755824267864227, 0.00674831448122859, 0.0077992817386984825, 0.023204246535897255, 0.008967790752649307, 0.03885812312364578, -0.01534964982420206, -0.017603697255253792, -0.001240244833752513, 0.019304605200886726, 0.012231320142745972, 0.009368818253278732, 0.04718288779258728, 0.030312102288007736, 0.01232120580971241, 0.0005008514854125679, 0.052050527185201645, 0.006454458925873041, -0.014084341004490852, 0.02385418675839901, 0.024739211425185204, -0.02074277028441429, 0.05025281757116318, 0.01179572194814682, 0.03296717628836632, 0.004165839869529009, -0.03454362601041794, 0.022443678230047226, 0.00615368876606226, -0.005835632793605328, -0.021365053951740265, -0.012756804004311562, 0.01911100558936596, 0.0021261340007185936, 0.009147562086582184, 0.004383638966828585, 0.024020127952098846, 0.020258773118257523, 0.0074812257662415504, -0.011118125170469284, 0.004183125216513872, -0.012348862364888191, 0.01348280068486929, -0.01601341925561428, 0.005254835356026888, -0.027670856565237045, -0.004304124973714352, -0.011705837212502956, 0.006478658877313137, -0.021129969507455826, 0.007135513238608837, -0.028901593759655952, 0.016414444893598557, 0.004808865487575531, -0.0038581553380936384, 0.01859935000538826, -0.007757795974612236, 0.015792163088917732, -0.021378882229328156, -0.03905172273516655, 0.02119911089539528, 0.026301832869648933, 0.0026014891918748617, -0.010959097184240818, -0.029454734176397324, 0.004967893473803997, 0.014257197268307209, 0.016096390783786774, -0.017672840505838394, 0.010855383239686489, -0.010509670712053776, -0.009866644628345966, -0.0064371731132268906, 0.019041864201426506, 0.029012221843004227, -0.001806349609978497, -0.007695567794144154, 0.010240014642477036, -0.00498863635584712, 0.015460277907550335, -0.016193188726902008, -0.022194763645529747, 0.018170667812228203, 0.001411372679285705, -0.013192402198910713, -0.04604895040392876, -0.02074277028441429, -0.014658224768936634, -0.006433716043829918, -0.01597193256020546, -0.0006028367788530886, -0.03249700739979744, -0.010150128975510597, 0.00681054312735796, -0.016621872782707214, -0.005642033647745848, 0.013406744226813316, -0.0058702039532363415, 0.008227965794503689, -0.023715900257229805, 0.024213727563619614, 0.028956906870007515, 0.06648749113082886, 0.007688653655350208, -0.00035521993413567543, 0.016718672588467598, -0.019498204812407494, -0.012459490448236465, -0.02307979017496109, -0.010793155059218407, 0.03689447417855263, 0.003716413164511323, -0.024158412590622902, 0.012777546420693398, 0.012888174504041672, -0.004369810223579407, 0.005524491425603628, -0.0076402537524700165, -0.006219374015927315, -0.00852527841925621, -0.009742188267409801, 0.010378299281001091, 0.009527846239507198, 0.007149341516196728, 0.03042273037135601, 0.01075166929513216, 0.015598563477396965, 0.006820914335548878, 0.016691016033291817, -0.008608249947428703, 0.011975493282079697, -0.03913469240069389, -0.03014615923166275, 0.008587506599724293, 0.006240116897970438, 0.027684684842824936, -0.0048365225084125996, 0.026854973286390305, 0.0010466455714777112, -0.009444874711334705, -0.024199899286031723, 0.004051754716783762, -6.995283456490142e-06, 0.03692213073372841, 0.0010172600159421563, -0.021849051117897034, 0.01376628503203392, -0.02357761561870575, 0.007778538856655359, 0.025817835703492165, 0.0037544413935393095, -0.0039307549595832825, 0.014201883226633072, 0.02519555203616619, -0.012853603810071945, 0.01623467542231083, 0.0064717442728579044, -0.007239226717501879, -0.009603902697563171, -0.022346878424286842, -0.03338203206658363, -0.018972720950841904, -0.018198324367403984, -0.026924116536974907, -0.007785452995449305, -0.006962656509131193, -0.023231903091073036, -0.028680337592959404, -0.01088995486497879, 0.005863289814442396, -0.00893322005867958, -0.002371590118855238, 0.013773199170827866, -0.027173029258847237, -0.02440732717514038, 0.012093035504221916, 0.024683896452188492, 0.015598563477396965, -0.0012203663354739547, 0.017105871811509132, -0.012929660268127918, 0.028956906870007515, -0.006762143224477768, -0.019982201978564262, 0.00510617857798934, -0.0062919738702476025, 0.018212152644991875, -0.01154680922627449, -0.006157145835459232, -0.008497621864080429, -0.02465623989701271, 0.007667910773307085, -0.029510047286748886, -0.019221633672714233, 0.009119904600083828, -0.0046774945221841335, 0.012542461976408958, 0.00915447622537613, 0.013510458171367645, 0.00959007441997528, 0.014782681129872799, -0.03011850267648697, 0.013144002296030521, -0.04640849307179451, -0.01493479497730732, -0.011042067781090736, 0.013551943004131317, 0.01995454542338848, -0.0006771650514565408, -0.008117337711155415, -0.0047604660503566265, -0.01243874803185463, -0.009175218641757965, 0.01937374845147133, -0.0069730281829833984, -0.006575458217412233, 0.015764504671096802, -0.017119700089097023, 0.01022618543356657, 0.015377307310700417, 0.019968373700976372, -0.0021071198862046003, -0.013420572504401207, -0.025029608979821205, 0.02095019817352295, 0.004086325876414776, -0.004283382091671228, 0.006516687106341124, 0.018461065366864204, -0.0335756316781044, -0.01837809383869171, -0.014298683032393456, 0.0021814480423927307, 0.010150128975510597, -0.026951773092150688, -0.014741195365786552, -0.004245353862643242, -0.0053585488349199295, -0.01063412707298994, 0.012086121365427971, -0.012770632281899452, 0.006402601953595877, -0.019512033089995384, 0.01479650940746069, 0.002948930487036705, -0.004871094133704901, 0.015142222866415977, -0.0340181440114975, -0.01309560239315033, -0.0025427178479731083, 0.017603697255253792, 0.025859320536255836, -0.030533358454704285, -0.0008595285471528769, -0.024310527369379997, -0.014630567282438278, -0.02306596003472805, 0.006132945884019136, -0.02381270006299019, 0.005023207515478134, 0.04580003768205643, 0.00915447622537613, 0.012798289768397808, 0.034958481788635254, 0.015640048310160637, -0.005718090571463108, 0.007605682592839003, -0.011802636086940765, -0.008705049753189087, -0.017755812034010887, 0.02179373800754547, 0.010959097184240818, 0.015225193463265896, 0.0012903731549158692, -0.004387096036225557, 0.004217696841806173, 0.01624850369989872, 0.010184700600802898, -0.0037129558622837067, -0.013828514143824577, -0.030063189566135406, -0.04320027679204941, 0.0007117363275028765, 0.027311313897371292, -0.01193400751799345, -0.007232312578707933, -0.035539280623197556, 0.01139469537883997, 0.02363293059170246, 0.018557865172624588, 0.03269060701131821, 0.0011927093146368861, 0.015169879421591759, -0.018419580534100533, 0.009908130392432213, 0.0023698615841567516, 0.019484376534819603, -0.018737636506557465, -0.005880575627088547, -0.041513197124004364, 0.004221153911203146, -0.0030682014767080545, 0.016386788338422775, 0.01652507297694683, -0.004065582994371653, 0.0030059730634093285, -0.0016309003112837672, 0.02231922186911106, -0.027338972315192223, -0.02566572092473507, 0.014001370407640934, -0.013828514143824577, -0.00510617857798934, -0.020037516951560974, -0.01402211282402277, 0.008864076808094978, -0.010136300697922707, -0.001435572630725801, 0.036562591791152954, 0.024172242730855942, -0.02544446475803852, -0.011857950128614902, 0.038692180067300797, 0.016718672588467598, 0.02254047803580761, 0.01282594632357359, 0.014879480935633183, -0.005085435695946217, 0.01572301983833313, -0.0016032432904466987, -0.0060188607312738895, -0.00799288135021925, 0.0051822355017066, 0.0009040390723384917, 0.04187273979187012, -0.010205443017184734, -0.012217491865158081, 0.024227555841207504, -0.007757795974612236, 0.014243368990719318, -0.03905172273516655, 0.03017381764948368, -0.0004576373612508178, -0.008158823475241661, -0.026343317702412605, -0.037917785346508026, -0.03045038692653179, 0.015515591949224472, 0.01804620958864689, 0.017728153616189957, 0.013876913115382195, 0.0005570297944359481, -0.0013456871965900064, 0.044444844126701355, 0.012494062073528767, 0.009147562086582184, 0.005341263487935066, -0.009341160766780376, -0.002803731244057417, -0.004134725779294968, 0.008476878516376019, -0.0037993842270225286, 0.021600138396024704, 0.007432826329022646, -0.019539689645171165, 0.0036645561922341585, 0.019733289256691933, 0.017092043533921242, -0.020079001784324646, 0.003948040772229433, 0.0006123438943177462, 0.031114155426621437, -0.023674415424466133, -0.006374944932758808, 0.0021002055145800114, -0.02381270006299019, 0.01518370769917965, -0.020244944840669632, 0.001842649420723319, -0.0005890082684345543, -0.009272018447518349, 0.0037682699039578438, 0.023121275007724762, 0.007308369502425194, -0.024324355646967888, -0.0008711963891983032, 0.006986856460571289, 0.0002687917440198362, -0.010461270809173584, -0.012998802587389946, 0.00040837330743670464, -0.023273387923836708, -0.027601713314652443, -0.007723224814981222, -0.007412083446979523, 0.0020587199833244085, 0.017603697255253792, -0.0073014553636312485, -0.008158823475241661, 0.014768852852284908, 0.004234982188791037, 0.005742290522903204, 0.009327332489192486, 0.003180558094754815, -0.05185692757368088, 0.02648160420358181, 0.006845114286988974, -0.010295328684151173, 0.017410099506378174, -0.005728461779654026, -0.03982612118124962, -0.03650727495551109, 0.02809954062104225, 0.005638576578348875, -0.003527999622747302, -0.0038166698068380356, 0.019760945811867714, 0.028790965676307678, -0.0069488282315433025, -0.009728359058499336, -0.026550745591521263, -0.015363479033112526, -0.017700497061014175, 0.022982990369200706, 0.009928872808814049, 0.0037371558137238026, 0.013973712921142578, -0.002656803233548999, 0.019525861367583275, 0.016414444893598557, -0.03119712695479393, -0.045744724571704865, -0.007584939710795879, -0.021406538784503937, -0.009465618059039116, -0.0077093965373933315, -0.008469964377582073, -0.02172459475696087, -0.01916632056236267, 0.01313017401844263, -0.0034381141886115074, 0.012819032184779644, 0.02100551314651966, -0.005403491668403149, 0.006606572307646275, 0.019249290227890015, -0.008089680224657059, -0.024061614647507668, -0.017230328172445297, -0.014533767476677895, -0.028459081426262856, -0.022692590951919556, -0.012079206295311451, 0.03468191251158714, 0.0050093792378902435, -0.01569536328315735, -0.033160775899887085, -0.02778148464858532, -0.05193989723920822, -0.01778346858918667, -0.006143317092210054, 0.009603902697563171, 0.023508472368121147, 0.03244169428944588, 0.02592846378684044, 0.018405752256512642, 0.00022049997642170638, 0.01655273139476776, -0.026536917313933372, -0.00529977772384882, -0.007246141321957111, -0.03042273037135601, 0.017755812034010887, -0.012196749448776245, -0.030865242704749107, 0.0040794117376208305, 0.014312511309981346, -0.012224406003952026, 0.013392915949225426, 0.01178189367055893, -0.011719665490090847, 0.006209002807736397, -0.016414444893598557, -0.0024303612299263477, 0.0291228499263525, 0.020327914506196976, 0.005877118092030287, -0.016566559672355652, -0.0014053226914256811, 0.00529977772384882, -0.0186131801456213, -0.018004724755883217, 0.014920966699719429, 0.011726579628884792, -0.00479503720998764, 0.020811913534998894, -0.016926100477576256, -0.017520727589726448, -0.008580592460930347, 0.002226390643045306, 0.019871573895215988, -0.0006594472215510905, 0.011622865684330463, 0.02121293917298317, -0.0053723775781691074, 0.01230737753212452, -0.01703672856092453, 0.01653890311717987, -0.00015503060421906412, -0.008843334391713142, 0.033990487456321716, -0.038139041513204575, -0.014312511309981346, 0.010544241406023502, 0.014132740907371044, 0.007232312578707933, 0.00045201953616924584, -0.001891049207188189, -0.009119904600083828, -0.03175026923418045, -0.01865466497838497, 0.019415233284235, -0.005552148446440697, -0.005213349591940641, -0.024739211425185204, -0.001980934524908662, -0.0016793000977486372, 0.002157248090952635, -0.010184700600802898, -0.011373952962458134, 0.010295328684151173, -0.010585727170109749, 0.0021140340249985456, -0.04057285934686661, 0.009278932586312294, 0.02361910045146942, -0.004283382091671228, 0.01969180256128311, 0.21129968762397766, -0.014879480935633183, -0.007654082495719194, 0.025693379342556, 0.0037682699039578438, -0.020867226645350456, 0.0025928462855517864, 0.014630567282438278, -0.012895088642835617, 0.0037233273033052683, 0.022402191534638405, -0.00628851680085063, -0.02512640878558159, -0.0016153432661667466, -0.0033482289873063564, -0.012390348128974438, -0.04397467523813248, -0.024462640285491943, -0.027421941980719566, 0.011539895087480545, 0.009659216739237309, -0.007820024155080318, -0.015266679227352142, -0.005707718897610903, 0.03595413640141487, 0.03321608901023865, -0.01940140500664711, 0.019207805395126343, 0.01628998853266239, 0.01440931111574173, -0.017354784533381462, -0.0028313882648944855, 0.014755023643374443, -0.014837995171546936, -0.0010924525558948517, -0.019346090033650398, 0.011297895573079586, -0.005078521557152271, -0.008234879933297634, 0.028486737981438637, -0.0018253638409078121, -0.005801061633974314, 0.010834640823304653, -0.04961670562624931, 0.03670087456703186, -0.013952970504760742, -0.017188843339681625, -0.012341948226094246, 0.001690535806119442, 0.018253637477755547, -0.009161390364170074, -0.003948040772229433, 0.022429849952459335, 0.0011520880507305264, -0.007163170259445906, 0.006402601953595877, -0.02567954920232296, 0.00398606900125742, -0.027186857536435127, 0.015640048310160637, -0.004183125216513872, 0.004518467001616955, -0.0013482801150530577, 0.01413965504616499, -0.03852624073624611, 0.027048572897911072, -0.003916926681995392, 0.008075851947069168, -0.004636009223759174, 0.013489714823663235, -0.014741195365786552, -0.003574670758098364, -0.02414458431303501, -0.0005570297944359481, -0.0009049033396877348, -0.020258773118257523, 0.0004219857510179281, 0.03963252156972885, 0.045440495014190674, -0.01362108625471592, 0.0075365398079156876, 0.016967587172985077, -0.015114565379917622, -0.0041796681471168995, 0.00034376821713522077, -0.011560637503862381, 0.0341564305126667, -0.019304605200886726, 0.02385418675839901, -0.03305014595389366, -0.010703269392251968, 0.016995243728160858, -0.002585932146757841, -0.012500976212322712, -0.009804416447877884, -0.0033361290115863085, -0.002888430841267109, 0.021309738978743553, -0.02859736606478691, -0.019332261756062508, -0.01534964982420206, 0.04358747601509094, 0.005721547640860081, 0.02462858334183693, -0.007826938293874264, 0.006388773210346699, 0.008746534585952759, 0.0189035777002573, 0.0008772463188506663, -0.0018582065822556615, -0.019249290227890015, -0.03858155384659767, 0.017368612810969353, 0.0018080781446769834, 0.008622078225016594, 0.02465623989701271, 0.02151716686785221, 0.00864973571151495, 0.0030007874593138695, -0.0010820812312886119, 0.018004724755883217, -0.014920966699719429, -0.008850248530507088, 0.017133528366684914, -0.010281499475240707, -0.022623447701334953, -0.0024649326223880053, 0.004767380189150572, -0.036562591791152954, -0.01705055683851242, 0.012583947740495205, -0.005742290522903204, 0.01313017401844263, -0.008552935905754566, -0.014630567282438278, -0.022734075784683228, -9.490898082731292e-05, -0.02414458431303501, 0.0001336396235274151, -0.007055999245494604, 0.003386257216334343, 0.0037233273033052683, 0.006876228377223015, -0.004943693522363901, -0.017686668783426285, 0.00918213278055191, 0.00879493448883295, 0.018143009394407272, -0.019567346200346947, -0.019263120368123055, 0.007820024155080318, 0.010855383239686489, -0.0011572737712413073, -0.011491495184600353, 0.04178977012634277, -0.004954065196216106, -0.03564990684390068, -0.027159200981259346, 0.006841657217592001, -0.001398408436216414, -0.04187273979187012, 0.01035064272582531, 0.04353216290473938, 0.014098169282078743, -0.01995454542338848, -0.013033374212682247, -0.17645183205604553, 0.00288151646964252, 0.010087900795042515, -0.003885812358930707, 0.003246243577450514, 0.04820619896054268, 0.0013059303164482117, 0.006910799536854029, -0.01915249228477478, 0.0001432547578588128, 0.01702290028333664, -0.03697744384407997, -0.022429849952459335, -0.014284854754805565, 0.02881862223148346, -0.03465425595641136, -0.018032381311058998, 0.026094404980540276, 0.030837586149573326, -0.0019498204346746206, 0.00014141816063784063, -0.00582526158541441, 0.004473524168133736, 0.009112990461289883, 0.006499401293694973, 0.028707994148135185, -0.014478453435003757, 0.021918194368481636, 0.012431833893060684, -0.03379688784480095, 0.002833116799592972, -0.01781112514436245, 0.00042457858216948807, 0.026868801563978195, -0.007384426426142454, -0.0011261595645919442, -0.027919769287109375, -0.016386788338422775, 0.0043283249251544476, 0.02249899134039879, 0.032911863178014755, 0.018433408811688423, 0.026122061535716057, 0.010661783628165722, -0.016691016033291817, 0.01786644011735916, 0.028459081426262856, 0.00675177201628685, 0.0031529010739177465, 0.005759575869888067, 0.007757795974612236, -0.027657028287649155, -0.02070128545165062, -0.011823379434645176, 0.012016978114843369, 0.009216704405844212, -0.005254835356026888, 0.010979839600622654, 0.01673250086605549, 0.004636009223759174, -0.004297210834920406, -0.0026844602543860674, 0.0021088484209030867, 0.006281602196395397, -0.012023892253637314, -0.04591066390275955, -0.005783775821328163, 0.024434983730316162, -0.007225398439913988, 0.012238234281539917, 0.00864282064139843, 0.005604004953056574, 0.007356769405305386, 0.004515009932219982, 0.030063189566135406, 0.004176211077719927, -0.02724217250943184, -0.008193394169211388, 0.023950986564159393, 0.0005760440253652632, 0.020576829090714455, 0.014271026477217674, 0.007875338196754456, 0.003436385653913021, -0.027933597564697266, 0.006606572307646275, -0.009534760378301144, 0.01534964982420206, -0.008656649850308895, -0.0015721292002126575, 0.032137464731931686, -0.007100941613316536, -0.007591853849589825, 0.0019498204346746206, 0.021074654534459114, 0.022664934396743774, 0.004006811883300543, 0.0006209866842254996, 0.01063412707298994, -0.029565362259745598, -0.005970460828393698, 0.028403766453266144, -0.025748692452907562, 0.01839192397892475, 0.03753058612346649, 0.007571111433207989, 0.0029627589974552393, -0.01220366358757019, 0.02854205295443535, -0.026315661147236824, -0.019235461950302124, 0.013448229990899563, 0.020604485645890236, 0.0021762624382972717, -0.02512640878558159, 0.04591066390275955, 0.014188054949045181, -0.0392729789018631, 0.0013024731306359172, -0.016691016033291817, 0.05227178335189819, -0.030837586149573326, -0.014312511309981346, 0.0021797195076942444, -0.010509670712053776, -0.012971146032214165, -0.11029622703790665, -0.02440732717514038, 0.04615958034992218, 0.012798289768397808, -0.004041383042931557, 0.006852028425782919, 0.0022609620355069637, 0.0103298993781209, 0.004342153202742338, 0.017382441088557243, -0.008158823475241661, 0.00206909142434597, 0.005285949446260929, -0.01857169345021248, 0.009631560184061527, 0.0005674011772498488, -0.015529421158134937, -0.022982990369200706, -0.02281704731285572, 0.03805606812238693, 0.0004822694172617048, -0.015640048310160637, -0.003465771209448576, 0.00268791732378304, -0.0070525421760976315, -0.02041088603436947, -0.02803039737045765, 0.010004929266870022, 0.006941914092749357, 0.008995448239147663, 0.03169495239853859, -0.014907137490808964, 0.009666130878031254, -0.03155666962265968, 0.006202088203281164, -0.0054276916198432446, -0.03506911173462868, -0.02042471431195736, 0.019083349034190178, -0.01991306059062481, 0.0017302928026765585, -0.0021123054903000593, -0.0028728737961500883, -0.05769255757331848, -0.007909909822046757, 0.0036403562407940626, -0.009624645113945007, 0.021710766479372978, 0.017728153616189957, -0.007356769405305386, -0.02337018772959709, -0.017119700089097023, -0.03354797512292862, -0.03755824267864227, 0.030063189566135406, 0.006146774161607027, 0.030533358454704285, -3.66239546565339e-05, -0.020535342395305634, 0.004262639209628105, -0.013427486643195152, -0.01623467542231083, -0.001095045474357903, 0.006423344835639, 0.006782886106520891, 0.017672840505838394, -0.005680061876773834, 0.008981619961559772, -0.005313606467097998, 0.0067206574603915215, -0.012293548323214054, 0.0005816618795506656, -0.01969180256128311, 0.010945268906652927, -0.023978643119335175, -0.009832073003053665, -0.0027829883620142937, -0.0034398427233099937, -0.0007869288674555719, 0.011864865198731422, -0.010966011323034763, -0.02067362703382969, 0.0022108335979282856, 0.0022039194591343403, 0.002497775247320533, -0.00811042357236147, 0.03468191251158714, -0.018972720950841904, 0.01389074232429266, -0.04035160318017006, 0.02014814503490925, 0.011318637989461422, 0.02071511372923851, 0.002705202903598547, -0.018447237089276314, 0.0010042957728728652, 0.00320994365029037, -0.012514804489910603, 0.021932022646069527, -0.007398254703730345, -0.008870991878211498, 0.01493479497730732, -0.045689407736063004, 0.0008737891912460327, 0.005683518946170807, 0.011622865684330463, 0.006081088911741972, -0.03274592012166977, 0.014326340518891811, -0.003837412456050515, 0.014084341004490852, -0.006495944224298, -0.013835428282618523, 0.025748692452907562, -0.010378299281001091, -0.016082560643553734, -0.021904366090893745, -0.0010017029708251357, 0.01859935000538826, -0.00838007964193821, 0.02101934142410755, 0.003747527254745364, -0.011768065392971039, -0.010191614739596844, -0.015681535005569458, 0.011629779823124409, 0.001209994894452393, 0.021337397396564484, -0.03305014595389366, 0.024697724729776382, -0.018156837671995163, -0.0270070880651474, 0.028210168704390526, 0.0007247005705721676, -0.004165839869529009, 0.021613966673612595, -0.009949615225195885, -0.043891701847314835, 0.011968578211963177, 0.032386377453804016, 0.00212786253541708, -0.00023205974139273167, -0.022982990369200706, -0.01602724753320217, 0.0015462007140740752, -0.03479253873229027, -0.023204246535897255, -0.005365463439375162, -0.024711554870009422, -0.023729730397462845, 0.013641828671097755, -0.01417422667145729, 0.044693756848573685, -0.00045201953616924584, -0.03269060701131821, -0.03924532234668732, -0.003827041247859597, -0.01812918111681938, 0.018170667812228203, 0.018032381311058998, 0.004629095084965229, 0.008705049753189087, 0.04015800356864929, -0.0012609875993803144, 0.009901216253638268, -0.014340168796479702, 0.020134316757321358, -0.004960979335010052, -0.04986562207341194, -0.015252850949764252, 0.012265891768038273, -0.02809954062104225, 0.01602724753320217, -0.02439349889755249, 0.023162759840488434, 0.01628998853266239, 0.004995550494641066, 0.006243573967367411, -0.004577238112688065, -0.022706419229507446, -0.01129098143428564, 0.014589081518352032, 0.0025893892161548138, -0.009209790267050266, -0.02285853400826454, 0.03017381764948368, 0.006979942321777344, 0.01348280068486929, -0.013123259879648685, 0.024974295869469643, 0.00942413229495287, -0.0015194079605862498, -0.023937156423926353, 0.00564549071714282, 0.0012800018303096294, 0.005507205612957478, 0.004252268001437187, 0.010385213419795036, -0.009728359058499336, 0.013399830088019371, 0.011698922142386436, 0.018170667812228203, -0.021918194368481636, 0.00634728791192174, 0.020051345229148865, -0.020645970478653908, -0.023964814841747284, -0.0012817303650081158, -0.01963648945093155, -0.018765293061733246, 0.01154680922627449, 0.029454734176397324, 0.00661348644644022, -0.018447237089276314, 0.010025672614574432, 0.023480815812945366, -0.029482390731573105, 0.005908232647925615, 0.010032586753368378, -0.011436181142926216, -0.05346103385090828, 0.017659012228250504, 0.019442889839410782, 0.012113777920603752, 0.022734075784683228, -0.012812118045985699, 0.03014615923166275, 0.008221051655709743, 0.008746534585952759, -0.01734095625579357, 0.020134316757321358, -0.00837316457182169, 0.009258190169930458, -0.0018512923270463943, -0.022111793980002403, -0.013883828185498714, -0.024808352813124657, -0.009756016544997692, -0.0044285813346505165, 0.02330104634165764, 0.017105871811509132, 0.08844717592000961, 0.018723808228969574, -0.012957317754626274, 0.0027103887405246496, -0.01220366358757019, -0.0007489004638046026, 0.018806777894496918, -0.003023258876055479, 0.009520932100713253, -0.010668698698282242, 0.014782681129872799, -0.019442889839410782, 0.004829608369618654, -0.006509772967547178, -0.03205449506640434, -0.0022229335736483335, -0.00013569228758569807, 0.00825562234967947, -0.0013914941810071468, 0.008739620447158813, 0.014713538810610771, 0.010170871391892433, 0.0030474585946649313, 0.002013777382671833, -0.03412877023220062, -0.0027345886919647455, 0.012404176406562328, 0.013717885129153728, -0.007000685203820467, -0.013925313018262386, 0.03097587078809738, -0.005033579189330339, -0.023494644090533257, -0.012784460559487343, -0.008760363794863224, 0.011221839115023613, 0.0014450796879827976, -0.022955331951379776, 0.029952561482787132, 0.02281704731285572, 0.00046541591291315854, 0.019318433478474617, -0.02516789548099041, -0.016704844310879707, -0.0054933768697083, -0.006772514432668686, 0.012300462462008, -0.019193977117538452, -0.0054415203630924225], "6e982ddc-23a6-44dc-ba94-8a455805b490": [0.004586603958159685, -0.013660411350429058, -0.0002737939648795873, -0.0030246025417000055, -0.01973801665008068, 0.03862403333187103, 0.00045928164036013186, -0.03961803391575813, -0.003919203300029039, -0.027377622202038765, 0.015790414065122604, -0.006134405266493559, 0.005413754377514124, -0.0038872533477842808, -0.007582806516438723, 0.017437614500522614, 0.016031812876462936, -0.0006301255198195577, 0.003177252598106861, 0.0011058258824050426, -0.01208421029150486, 0.01349711138755083, -0.01359651144593954, -0.00584330502897501, -0.032290827482938766, -0.007376905996352434, 0.016571413725614548, -0.004568853881210089, 0.009059607982635498, 0.011722110211849213, 0.016102813184261322, 0.0014182261656969786, -0.030870825052261353, 0.003539352910593152, -0.031893227249383926, -0.0006931380485184491, 0.01126060914248228, -0.02303241938352585, 0.004231603350490332, -0.024480819702148438, 0.01631581410765648, 0.024239420890808105, 0.0053356545977294445, -0.014384612441062927, -0.018531015142798424, 0.030416425317525864, -0.0049451543018221855, 0.00019036891171708703, -0.017679015174508095, 0.01509461272507906, -0.00803010631352663, -0.006361605133861303, -0.01136000920087099, 0.010018108412623405, 0.007710606325417757, -0.01529341284185648, -0.009414607658982277, -0.0031879027374088764, 0.004891904070973396, -0.00867620762437582, -0.004600803833454847, -0.00845610722899437, -0.005317904520779848, -0.0008954882505349815, -0.020604217424988747, -0.015108812600374222, -0.0052362545393407345, -0.0048564039170742035, -0.017380814999341965, -0.009329407475888729, 0.056061647832393646, 0.019184216856956482, 0.005410204641520977, 0.002316376892849803, 0.007124856114387512, -0.010692608542740345, -0.032148826867341995, -0.008243107236921787, 0.013987011276185513, -0.004817354027181864, -0.003569527994841337, -0.015691012144088745, -0.03990203142166138, 0.0199368167668581, 0.0379992313683033, 0.036380428820848465, 0.024282019585371017, -0.0009194507729262114, -0.011402609758079052, -0.004625653848052025, 0.01671341434121132, 0.0067059556022286415, 0.025687821209430695, 0.018389014527201653, 0.005214954260736704, 0.007909406907856464, 0.009194507263600826, 0.0035784030333161354, -0.000450184743385762, -0.01576201245188713, -0.018616216257214546, 0.0005706629599444568, -0.029479224234819412, -0.011480709537863731, -0.021655017510056496, -0.016273213550448418, 0.024253619834780693, -0.008434806950390339, 0.02575882151722908, 0.01915581524372101, -0.042401235550642014, 0.015691012144088745, -0.0065071554854512215, -0.0012984136119484901, 0.00517235416918993, -0.021555617451667786, 0.006084705237299204, -0.01280131097882986, -0.02331641875207424, -0.03305762633681297, 0.0054776547476649284, 0.015563213266432285, 0.044928837567567825, -0.012091309763491154, 0.02371401898562908, 0.007533106487244368, 0.008498706854879856, -0.010415708646178246, 0.01969541609287262, -0.01919841580092907, 0.02450922131538391, 0.005520254373550415, -0.009762507863342762, 0.004483653698116541, -0.007320106029510498, 0.0009496257989667356, -0.02531862072646618, 0.018758215010166168, 0.000132459492306225, 0.0029678025748580694, 0.025943420827388763, 0.021442018449306488, 0.011928009800612926, -0.0029624775052070618, 0.005367604549974203, 0.046377237886190414, 0.0055344547145068645, 0.0018300265073776245, -0.008988607674837112, 0.008867907337844372, 0.002188576851040125, -0.01989421620965004, -0.005349854473024607, -0.008640707470476627, 0.011076008901000023, 0.008044307120144367, 0.005367604549974203, 0.014540812000632286, -0.0008786257239989936, -0.004788953810930252, -0.011253509670495987, -0.0015229512937366962, 0.0024619270116090775, -0.0046079037711024284, -0.0006736130453646183, 0.0279456228017807, 0.01429941225796938, 0.002346551977097988, -0.014611812308430672, 0.0026838022749871016, 0.00024783457047306, 0.016372613608837128, -0.033199626952409744, 0.020760416984558105, -0.004419753793627024, 0.0028542024083435535, 0.01576201245188713, -0.014739612117409706, -0.004927404224872589, 0.0014732512645423412, 0.02993362583220005, 0.0018371265614405274, -0.0016214638017117977, 0.042600035667419434, -0.02118641696870327, -0.006208955310285091, 0.046121638268232346, 0.01387341134250164, -0.0011990135535597801, 0.0006651817820966244, -0.004015053156763315, 0.020561616867780685, -0.005090704187750816, -0.0011173634557053447, -0.6134405136108398, -0.012645110487937927, 0.010870109312236309, -0.007795806508511305, 0.02472222037613392, 0.014150312170386314, 0.012645110487937927, -0.006343855056911707, -0.030160825699567795, 0.03865243121981621, -0.005328554660081863, 0.024438221007585526, -0.03970323130488396, -0.004110903479158878, 0.005935605149716139, -0.04305443540215492, 0.0005054316716268659, -0.00407895352691412, -0.0022418268490582705, 0.013823711313307285, -0.02649722248315811, 0.00017439389193896204, -0.016841214150190353, 0.00653910543769598, -0.003794953227043152, -0.024878419935703278, 0.03496043011546135, -0.015066212974488735, -0.014881612733006477, 0.021072817966341972, -0.03547162935137749, 0.021243218332529068, 0.027590623125433922, -0.0030547776259481907, 0.04481523856520653, -0.008463206700980663, -0.019823215901851654, 0.035926029086112976, -0.002215201733633876, 0.03993043303489685, -0.039958834648132324, 0.017139414325356483, 0.009137707762420177, -0.0010889633558690548, 0.003134652506560087, 0.004256453365087509, 0.008413506671786308, 0.0043665035627782345, -0.006120204925537109, -0.030160825699567795, 0.028272222727537155, -0.015421212650835514, -0.01730981469154358, 0.00754730636253953, 0.02580142207443714, -0.024395620450377464, 0.013348011299967766, -0.01760801486670971, -9.024773316923529e-05, -0.00695090601220727, -0.012318510562181473, 0.022450217977166176, -0.022791018709540367, -0.02631262131035328, -0.03277362883090973, 0.013603610917925835, -0.014107711613178253, -0.013667511753737926, 0.0057439049705863, -0.004426853731274605, 0.016784414649009705, -0.0028382274322211742, -0.0014395262114703655, -0.011835710145533085, -0.012488909997045994, 0.026071222499012947, 0.02482162043452263, 0.0027814272325485945, 0.0024033519439399242, 0.009201607666909695, 0.0010250633349642158, 0.0006532005500048399, -0.017778415232896805, -0.0014839012874290347, 0.028854424133896828, 0.013404810801148415, -0.0368916317820549, -0.0053960043005645275, 0.007085805758833885, -0.008172106929123402, 0.012936211191117764, 0.034733228385448456, -0.0011706134537234902, -0.02059001661837101, 0.0028045023791491985, 0.048961639404296875, -0.005449254531413317, -0.005175904370844364, -0.0009780258405953646, -0.03177962824702263, -0.011182509362697601, -0.013234411366283894, 0.0023430020082741976, 0.01621641404926777, 0.0340232290327549, 0.00865490734577179, -0.028527824208140373, 0.00044463787344284356, 0.03831163048744202, -0.03246122598648071, 0.011104409582912922, 0.001610813895240426, -0.006013704929500818, -0.015265013091266155, 0.021143818274140358, -0.02820122428238392, 0.015705212950706482, 0.019624415785074234, -0.004249353427439928, -0.006091805174946785, -0.02242181822657585, -0.010252408683300018, 0.0023110518231987953, 0.0007104443502612412, 0.01641521416604519, 0.012240409851074219, 0.018957015126943588, -0.01641521416604519, 0.009457208216190338, 0.002729952335357666, -0.0005160816945135593, -0.036323629319667816, 0.00325002777390182, 0.005935605149716139, 0.019383016973733902, 0.011281909421086311, 0.014611812308430672, -0.013908911496400833, 0.011345809325575829, -0.012034510262310505, -0.002566652139648795, 0.0009478508145548403, -0.002531152218580246, -0.011743409559130669, 0.00835670717060566, -0.034136828035116196, -0.0068550556898117065, -0.0022347269114106894, -0.0012859886046499014, -0.015733612701296806, 0.011381309479475021, -0.002777877263724804, 0.0003796284436248243, 0.0071958559565246105, 0.010486708953976631, -0.003997303545475006, -0.006475205533206463, -0.03669283166527748, -0.005814904812723398, -0.026667622849345207, 0.014327812008559704, -0.0025187272112816572, -0.003333452856168151, 0.001400476205162704, -0.00744790630415082, -0.01625901274383068, -0.025545820593833923, 0.006965105887502432, 0.006109555251896381, -0.03223402798175812, -0.007369806058704853, -0.006187655031681061, -0.011317409574985504, 0.012332710437476635, -0.01529341284185648, -0.0036156780552119017, -0.0399872325360775, 0.0026199021376669407, -0.003370727878063917, 0.017892014235258102, 5.0032853323500603e-05, 0.0022524769883602858, -0.015776213258504868, -0.0021016017999500036, 0.017040014266967773, -0.014910012483596802, 0.01965281553566456, 0.019013816490769386, -0.02502042055130005, 0.010415708646178246, -0.019709616899490356, 0.004693103954195976, -0.007675106171518564, 0.005026804283261299, -0.028414223343133926, 0.027974022552371025, -0.007483406458050013, 0.012453410774469376, 0.0038553031627088785, 0.022208819165825844, 0.013745611533522606, 0.011090208776295185, 0.006901205517351627, 0.003731053089722991, -0.0012593636056408286, -0.00803010631352663, 0.019965216517448425, -0.02311761863529682, 0.027533823624253273, 0.019170016050338745, -0.01681281439960003, 0.009634708054363728, -0.015506412833929062, -0.019326215609908104, 0.006727255415171385, 0.01804821565747261, 0.026284221559762955, 0.028215423226356506, -0.011452309787273407, -0.005399554502218962, 0.028357423841953278, -0.012936211191117764, 0.047513239085674286, -0.005250454414635897, -0.012275910004973412, 0.013717211782932281, 0.018531015142798424, 0.004764103796333075, 0.003940503112971783, 0.0034239778760820627, -0.01959601603448391, 0.01715361513197422, 0.002394476905465126, -0.0028524273075163364, 0.033796027302742004, 0.011132809333503246, 0.02188221737742424, -0.002680252306163311, 0.03873763233423233, -0.01830381527543068, -0.0026909022126346827, 0.011218009516596794, 0.02879762463271618, -0.012467610649764538, 0.022606419399380684, 0.008441907353699207, 0.030700424686074257, -0.012666410766541958, -0.02357202023267746, 0.016046013683080673, 0.00734850624576211, -0.018360614776611328, -0.020078817382454872, -0.02088821679353714, 0.01824701577425003, -0.0010188508313149214, 0.012787111103534698, 0.00982640776783228, 0.025886621326208115, 0.018914416432380676, -0.00491320388391614, 0.010770709253847599, 0.02550322189927101, -0.005158154293894768, 0.005715504754334688, 0.004696653690189123, 0.0016995639307424426, -0.02506302110850811, -0.010096208192408085, -0.026227422058582306, 0.008662006817758083, -0.036380428820848465, 0.013085311278700829, -0.004071853589266539, 0.007085805758833885, -0.004118003416806459, 0.0006017254781909287, 0.014476912096142769, -0.01489581260830164, 0.02804502286016941, 0.0019170015584677458, -0.03586922958493233, 0.01780681498348713, 0.018871815875172615, 0.008491607382893562, 0.018531015142798424, -0.012176509946584702, 0.01118960976600647, 0.016244813799858093, 0.04004403203725815, 0.013411911204457283, 0.0013853886630386114, -0.009805108420550823, 0.010905609466135502, -0.007171005941927433, 0.01655721291899681, 0.028982223942875862, -0.011644009500741959, -0.003147077513858676, -0.004725053906440735, -0.008647806942462921, 0.024537621065974236, -0.0379992313683033, -0.023202819749712944, 0.02357202023267746, -0.024353019893169403, -0.01671341434121132, -0.05415884405374527, -0.02293301932513714, -0.02063261717557907, 0.016699213534593582, -0.016173813492059708, -0.013639111071825027, -0.020306017249822617, 0.001521176309324801, 0.010096208192408085, -0.01367461122572422, -0.01566261239349842, 0.015108812600374222, -0.004828004166483879, 0.0015415888046845794, -0.017892014235258102, 0.010003908537328243, 0.003079627640545368, 0.07753206789493561, 0.03444922715425491, 0.0046576038002967834, 0.02402641996741295, -0.0067556556314229965, -0.01014590822160244, -0.012574110180139542, -0.03586922958493233, 0.03328482806682587, -0.010905609466135502, -0.012474710121750832, -0.0007206505979411304, -0.0069047557190060616, -0.0008928257157094777, 0.004579504020512104, -0.0050942543894052505, 0.016997413709759712, -0.004852854181081057, 0.003226952627301216, 0.0036920029670000076, 0.0309844259172678, 0.005353404674679041, 0.017508614808321, 0.01456921175122261, 0.02212361805140972, 0.019383016973733902, 0.011019209399819374, 0.010600308887660503, -0.007625406142324209, -0.023202819749712944, -0.030047224834561348, 0.01581881381571293, 0.01155880931764841, 0.01635841280221939, -0.022308219224214554, 0.03257482871413231, -0.011026308871805668, -0.0024264270905405283, -0.02402641996741295, -0.0007792256656102836, 0.0008946007583290339, 0.003390252823010087, 0.015904013067483902, -0.01165820937603712, 0.021356817334890366, -0.029876824468374252, -0.006901205517351627, 0.043082837015390396, -0.014839012175798416, 0.006208955310285091, 0.005225604400038719, 0.01665661297738552, -0.019510816782712936, -0.000805406947620213, -0.014853212051093578, 0.004313253797590733, -0.022407619282603264, -0.00935070775449276, -0.01621641404926777, -0.009435907937586308, -0.023458419367671013, -0.03623843193054199, -0.007391106337308884, -0.021058617159724236, -0.006304805167019367, -0.042145635932683945, -0.016102813184261322, -0.006812455598264933, -0.009755408391356468, 0.011828609742224216, -0.017778415232896805, -0.033199626952409744, -0.01529341284185648, 0.015023612417280674, 0.04072563350200653, -0.008910506963729858, -0.0011218009749427438, 0.0008369131828658283, 0.011239309795200825, 0.03311442583799362, -0.010373109020292759, -0.015179812908172607, -0.0005178566789254546, -0.003915653098374605, 0.011494909413158894, -0.0010951758595183492, -0.006063404958695173, -0.014711212366819382, -0.003968903329223394, 0.01576201245188713, -0.0022773270029574633, -0.020717816427350044, 0.003612128086388111, 0.0060279048047959805, 0.0245234202593565, 0.009599207900464535, 0.0053960043005645275, 0.009485607966780663, 0.009066707454621792, -0.013191810809075832, 0.016074413433670998, -0.027221422642469406, -0.034392427653074265, -0.011431009508669376, 0.009421708062291145, 0.012737410143017769, 0.013028510846197605, 0.01814761571586132, 5.879692253074609e-05, -0.004281303379684687, -0.004000853281468153, -0.0051475041545927525, -0.01175760943442583, -0.0012203134829178452, -0.004210303537547588, -0.0097483079880476, 0.015563213266432285, 0.014611812308430672, 0.007980406284332275, -0.007852606475353241, -0.002387376967817545, -0.006745005492120981, 0.04336683452129364, -0.02227981947362423, -0.005889454856514931, -0.002280876971781254, 0.029422424733638763, -0.02472222037613392, -0.029678024351596832, 0.0048457542434334755, -0.005946254823356867, 0.011345809325575829, -0.007060955744236708, -0.009989708662033081, -0.015279212966561317, 0.0032784277573227882, -0.0037062030751258135, 0.009719908237457275, -0.004512053914368153, 0.0008693069685250521, -0.016372613608837128, 0.020377017557621002, -0.004639853723347187, -0.019525015726685524, 0.008023006841540337, -0.027761023491621017, -0.011523309163749218, -0.0008244881755672395, -0.008725907653570175, 0.016486214473843575, -0.019667016342282295, -0.009599207900464535, -0.00659945560619235, 0.0007881006458774209, -0.016940614208579063, -0.00624090526252985, -0.01621641404926777, 0.004185453522950411, 0.04237283393740654, 0.02680962160229683, 0.012254610657691956, -0.0011812634766101837, 0.029564425349235535, -0.00023607519688084722, 0.012219110503792763, -0.008165006525814533, -0.03575563058257103, -0.02770422399044037, 0.01138840988278389, 0.029905224218964577, 0.008740107528865337, 0.004682453814893961, -0.0019223266281187534, -0.000615038035903126, -0.009045407176017761, 0.022095218300819397, -0.013802411034703255, -0.01136000920087099, -0.01621641404926777, -0.054130446165800095, -0.012751610949635506, 0.02351521886885166, -0.0008000819361768663, -0.01236111018806696, -0.023685619235038757, 0.01790621504187584, 0.023259619250893593, 0.0030228274408727884, 0.03365402668714523, -0.0021229018457233906, 0.006940255872905254, -0.0028169273864477873, 0.01196350995451212, 0.00382335321046412, 0.0034861029125750065, -0.016003413125872612, -0.01400121208280325, -0.047314438968896866, 0.005893005058169365, 0.008747207000851631, 0.020007817074656487, 0.005939154885709286, 0.0018229265697300434, -0.013589411042630672, 0.004778304137289524, 0.04027123376727104, -0.02502042055130005, -0.02730662189424038, 0.010394408367574215, -0.008037206716835499, -0.004717953968793154, -0.005836205091327429, -0.017025813460350037, 0.004288403782993555, -0.012496010400354862, 0.0008329194388352334, 0.008917607367038727, 0.012197810225188732, -0.023288019001483917, -0.002886152360588312, 0.011679509654641151, 0.025929221883416176, 0.01909901574254036, 0.024395620450377464, 0.021001817658543587, 0.011537509970366955, 0.006297705229371786, -0.011182509362697601, -0.010792008601129055, -0.002410452114418149, 0.018417416140437126, 0.0014563887380063534, 0.048308439552783966, 5.635629713651724e-05, 0.002444176934659481, 0.021143818274140358, 0.004015053156763315, -0.019283616915345192, -0.03143882751464844, 0.015165613032877445, 0.019908417016267776, -0.0011005009291693568, -0.025773022323846817, -0.02132841758430004, -0.03396642953157425, 0.008207607083022594, -0.006968655623495579, 0.03317122906446457, 0.010891408659517765, -0.004323903471231461, -0.023742420598864555, 0.03422202914953232, 0.007604106329381466, 0.017082614824175835, 0.010103308595716953, 0.016344213858246803, -0.021740218624472618, -0.01270191092044115, -0.0026128022000193596, 0.013525511138141155, 0.016670813784003258, 0.011778909713029861, -0.03072882629930973, -0.0017670139204710722, 0.0069970558397471905, 0.02536122128367424, 0.003061877563595772, -0.014121911488473415, -0.00473570404574275, 0.03348362818360329, -0.022194618359208107, 0.003766553243622184, 0.008051406592130661, -0.03660763055086136, 0.020078817382454872, -0.030870825052261353, -0.003438177751377225, 0.0019631516188383102, -0.01325571071356535, -0.0062160552479326725, 0.02810182422399521, 0.005964004900306463, -0.006524905562400818, -0.023146018385887146, 0.00952820759266615, 0.001665838877670467, -0.011523309163749218, -0.01327701099216938, 0.01685541495680809, -0.023756619542837143, -0.02456602081656456, -0.021214818581938744, 0.0004129097214899957, -0.0036423029378056526, -0.005207854323089123, -0.02327382005751133, 0.010891408659517765, 0.043139636516571045, 0.003432852914556861, 0.004114453215152025, 0.0002600377192720771, 0.018474215641617775, -0.04933084174990654, 0.036124829202890396, 0.0028524273075163364, -0.01625901274383068, 0.011111509054899216, 0.0021850268822163343, -0.04052683338522911, -0.024310419335961342, 0.012119710445404053, 0.000508537923451513, 0.008278606459498405, 0.012396610341966152, 0.00825730711221695, 0.03447762876749039, 0.008108207024633884, 5.9018799220211804e-05, -0.03893643245100975, 0.019113216549158096, -0.008037206716835499, 0.006592355668544769, 0.02337322011590004, -0.024750620126724243, 0.0255174208432436, 0.008520007133483887, 0.008023006841540337, 0.0025258271489292383, -0.035727228969335556, -0.03970323130488396, -0.01476801186800003, -0.01044410839676857, -0.02392701990902424, -0.0269516222178936, 2.0079703972442076e-05, 0.0024495020043104887, -0.016074413433670998, 0.009762507863342762, 0.015889814123511314, -0.014185811392962933, 0.015506412833929062, -0.0020359267946332693, 0.0062160552479326725, 0.005569954868406057, -0.0024725771509110928, -0.00764670642092824, -0.026142220944166183, -0.017395013943314552, -0.0229756198823452, -0.012737410143017769, -0.02426782064139843, 0.03118322603404522, 0.01840321533381939, 0.00299087748862803, -0.02172601781785488, -0.025943420827388763, -0.03416522964835167, -0.01770741492509842, -0.0408676341176033, 0.01860201545059681, 0.029422424733638763, -0.005474104546010494, 0.014682812616229057, 0.010231108404695988, -0.008186306804418564, 0.019709616899490356, -0.0034506027586758137, -0.006461005192250013, 0.0013862760970368981, -0.02520502172410488, 0.027320822700858116, -0.03172282502055168, -0.05231284350156784, 0.023983819410204887, 0.00832830648869276, -0.0012016759719699621, 0.0349036306142807, 0.011005009524524212, -0.02709362283349037, 0.003463027998805046, -0.0013711886713281274, 0.006627855356782675, 0.02979162521660328, 0.03152402490377426, 0.014185811392962933, -0.026341021060943604, -0.011076008901000023, 0.029308823868632317, 0.005065854173153639, -0.004930953960865736, 0.0061166551895439625, 0.016926413401961327, 0.0051865545101463795, 0.01601761393249035, -0.01755121536552906, -0.027477022260427475, -0.003716852981597185, -0.005846854764968157, 0.010153008624911308, 0.01989421620965004, -0.0051972041837871075, 0.006248005200177431, -0.009407508186995983, 0.004728604108095169, -0.009563707746565342, 0.0219248179346323, 0.011409709230065346, 0.0025205020792782307, 0.03410843014717102, -0.020959217101335526, 0.003447052789852023, -0.006567505653947592, 0.017508614808321, 0.012247510254383087, -0.011125708930194378, -0.021371018141508102, -0.020760416984558105, -0.012006109580397606, -0.01016720850020647, 0.014476912096142769, -0.016102813184261322, 0.007873906753957272, -0.009514007717370987, 0.004480103962123394, 0.009201607666909695, 0.009024107828736305, -0.010905609466135502, -0.0065071554854512215, -0.0009167882381007075, -0.003560652956366539, 0.00044929725117981434, -0.0408676341176033, -0.003590828040614724, 0.02680962160229683, -0.03342682868242264, 0.012318510562181473, 0.22276978194713593, 0.0015131887048482895, 0.004501403775066137, 0.03348362818360329, -0.008967307396233082, -0.009286807850003242, -0.0048954542726278305, -0.0021708267740905285, 0.005619654897600412, 0.0035571029875427485, 0.042600035667419434, -0.0154922129586339, -0.007270406000316143, -0.004512053914368153, 0.011977709829807281, -0.006159255281090736, -0.03930563107132912, -0.02227981947362423, -0.020661016926169395, 0.002394476905465126, 0.008512906730175018, -0.015350212343037128, -0.016883814707398415, 0.0014377512270584702, 0.03365402668714523, 0.03430723026394844, -0.014654411934316158, 0.012190709821879864, 0.03072882629930973, 0.01755121536552906, -0.027533823624253273, -0.012829710729420185, 0.037374429404735565, 0.0007601443794555962, -0.007266856264322996, -0.027619022876024246, 0.014377512037754059, -0.036181628704071045, 0.015449612401425838, 0.0006926943315193057, -0.02039121650159359, -0.01315631065517664, 0.022691618651151657, -0.04081083461642265, 0.041350435465574265, -0.0009150132536888123, 0.007305906154215336, -0.01427101157605648, 0.018474215641617775, 0.02073201723396778, -0.005488304421305656, -0.0008116194512695074, 0.03237602859735489, 0.008413506671786308, 0.023884419351816177, -0.004313253797590733, -0.0058255549520254135, -0.008740107528865337, -0.03243282809853554, 0.024992020800709724, -0.0050942543894052505, -0.012034510262310505, -0.0023785019293427467, -0.0016693888464942575, -0.03197842836380005, 0.014292311854660511, 0.004348753485828638, 0.0024033519439399242, 0.0004089159774594009, 0.0027477021794766188, -0.0023075018543750048, -0.013781111687421799, -0.03831163048744202, -0.01158720999956131, -0.013667511753737926, -0.019184216856956482, 0.00803010631352663, 0.020164016634225845, 0.030643625184893608, 0.020320216193795204, 0.0030743025708943605, 0.01800561510026455, 0.014285211451351643, -0.016102813184261322, -0.008427707478404045, -0.028854424133896828, 0.048223238438367844, 0.0037630030419677496, -0.0032322776969522238, -0.006453905254602432, -0.024296220391988754, -0.0016649514436721802, -0.003972453530877829, -0.014136111363768578, -0.012098410166800022, -0.01295751053839922, 0.016770213842391968, 0.021257417276501656, -0.00744790630415082, -0.023401619866490364, -0.013632011599838734, 0.044730037450790405, 0.007696406450122595, -0.0030814025085419416, -0.03266002610325813, 0.0036636029835790396, 0.012133910320699215, 0.015676813200116158, -0.005701304879039526, 0.0027690022252500057, -0.02341581881046295, -0.01345451083034277, 0.021001817658543587, 0.0014634886756539345, 0.00927260797470808, 0.020717816427350044, 0.00925130769610405, 0.006137955002486706, 0.015222412534058094, 0.0015202887589111924, 0.042202435433864594, -0.014143211767077446, -0.004426853731274605, 0.012524410150945187, -0.007426606025546789, -0.030246024951338768, -0.01206291001290083, 0.008314106613397598, -0.017096813768148422, -0.027917223051190376, 0.035784028470516205, 0.005633854772895575, 0.031694427132606506, -0.033341627568006516, -0.017167814075946808, -0.03416522964835167, 0.006649155635386705, -0.027761023491621017, -0.002367852022871375, -0.01489581260830164, 0.009009907953441143, 0.0047144037671387196, 0.019681217148900032, 0.013440310955047607, -0.005992405116558075, -0.019482417032122612, 0.004245803691446781, 0.003184352535754442, -0.018133414909243584, -0.04410523548722267, 0.0034577029291540384, 0.003990203142166138, -0.008321207016706467, -0.008413506671786308, 0.03382442891597748, -0.021995818242430687, -0.037772029638290405, -0.02641202136874199, 0.01989421620965004, -0.007881006225943565, -0.028556223958730698, 0.0023572018835693598, 0.02804502286016941, 0.0036636029835790396, -0.030501624569296837, -0.007767406292259693, -0.18312335014343262, 0.02227981947362423, 0.006148605141788721, -0.006940255872905254, 0.0015797512605786324, 0.008818207308650017, 0.00447655376046896, 0.008321207016706467, -0.020121416077017784, -0.016088614240288734, 0.02158401720225811, -0.009024107828736305, -0.029905224218964577, -0.02406902052462101, 0.012133910320699215, -0.01410061214119196, -0.010891408659517765, 0.015648413449525833, 0.033796027302742004, 0.008143707178533077, 0.019766416400671005, -0.017338214442133904, 0.006219604983925819, -0.006663355510681868, 0.0003765221918001771, 0.015165613032877445, 0.0015744263073429465, 0.02784622274339199, 0.025645220652222633, -0.03285882622003555, -0.007682206574827433, -0.005282404366880655, 0.004036353435367346, 0.010096208192408085, -0.0009895632974803448, 0.006251555401831865, -0.008342507295310497, -0.017082614824175835, 0.013703010976314545, 0.017338214442133904, 0.024637021124362946, -0.004959354177117348, 0.01880081556737423, 0.007384005934000015, -0.021839618682861328, 0.03430723026394844, 0.0320352278649807, -0.007362706121057272, 0.006343855056911707, -0.010557708330452442, 0.008690407499670982, -0.02502042055130005, -0.012964610941708088, -0.01158720999956131, 0.013859211467206478, -0.0059746550396084785, 0.015676813200116158, 0.0049061039462685585, 0.0006248005083762109, -0.0030814025085419416, 0.0008413507021032274, -0.021740218624472618, -0.0015194012084975839, -0.006791155785322189, -0.031240025535225868, -0.022109419107437134, -0.004920304287225008, 0.005591254681348801, -0.018971215933561325, 0.020760416984558105, -0.014363312162458897, 0.018062414601445198, -0.012936211191117764, 0.009038307704031467, 0.05276724323630333, 0.004501403775066137, -0.044730037450790405, 0.004788953810930252, 0.0235294196754694, -0.004817354027181864, 0.0239696204662323, 0.0065071554854512215, 0.001998651772737503, -0.0027051023207604885, -0.02023501694202423, 0.01681281439960003, 0.007902306504547596, 0.007810006383806467, -0.010486708953976631, 0.005566404666751623, 0.028130223974585533, -0.007298806216567755, 0.005832654889672995, 0.009031207300722599, 0.008882107213139534, 0.0062657552771270275, 0.03382442891597748, -0.008037206716835499, 0.01909901574254036, -0.02313181944191456, -0.003267777618020773, 0.007582806516438723, -0.02202421799302101, 0.022393418475985527, 0.012346910312771797, 0.021143818274140358, 0.01755121536552906, -0.0055344547145068645, 0.008818207308650017, -0.03223402798175812, -0.017693214118480682, 0.016528813168406487, 0.013703010976314545, -0.005325004458427429, -0.02933722361922264, 0.05211404338479042, -0.007994607090950012, -0.022890418767929077, 0.018516816198825836, -0.015037812292575836, 0.0659448578953743, -0.025545820593833923, -0.025077220052480698, -0.008193407207727432, -0.0009833507938310504, -0.021257417276501656, -0.1160992980003357, -0.023458419367671013, 0.029621224850416183, 0.016926413401961327, 0.00025915022706612945, 0.023543620482087135, -0.003129327669739723, 0.027434423565864563, 0.00877560768276453, 0.029905224218964577, -0.0009664883255027235, -0.02446662075817585, 0.006418405566364527, 0.008214706555008888, 0.023046618327498436, -0.007724806200712919, -0.0087543074041605, -0.024338820949196815, 0.0029660274740308523, 0.024253619834780693, 0.0024264270905405283, -0.0046079037711024284, -0.00044663474545814097, -0.0050445543602108955, -0.010877208784222603, -0.020178217440843582, -0.02371401898562908, 0.00457595381885767, 0.0154922129586339, 0.01466861180961132, 0.0448436364531517, -0.00588235491886735, 0.022663218900561333, -0.010451208800077438, -0.014164512045681477, 0.005690654739737511, -0.027633223682641983, -0.018332215026021004, 0.006989955902099609, -0.029962025582790375, -0.002508077071979642, 0.018715616315603256, 0.008299906738102436, -0.04242963716387749, -0.0008537757094018161, -0.0032642276491969824, 0.0014750262489542365, 0.0131989112123847, 0.01830381527543068, -0.032347626984119415, -0.01427101157605648, -0.019780617207288742, -0.03510243073105812, -0.05131884291768074, 0.0194966159760952, -0.021868018433451653, 0.008520007133483887, -0.0068053556606173515, -0.018417416140437126, 0.00937200803309679, -0.009840608574450016, -0.020277617499232292, -0.013213111087679863, 0.01740921474993229, 0.01439881231635809, 0.008441907353699207, -0.024992020800709724, -0.0033370028249919415, 0.00416415324434638, 0.015946613624691963, -0.012112610042095184, 0.003210977651178837, -0.040157634764909744, 0.015350212343037128, -0.022989818826317787, 0.004015053156763315, 0.001012638327665627, -0.01519401278346777, 0.0019081266364082694, 0.020078817382454872, -0.009982608258724213, -0.017338214442133904, 0.01655721291899681, -0.02709362283349037, 0.013085311278700829, -0.016173813492059708, 0.0016436513978987932, 0.0007969756843522191, 0.0097483079880476, -0.0389932319521904, -0.009790908545255661, 0.0030317024793475866, 0.009641808457672596, -0.01355391088873148, -0.022095218300819397, -0.006794705521315336, 0.00040558783803135157, 0.013816611841320992, 0.02263481914997101, -0.014008311554789543, -0.02281941846013069, 0.003168377559632063, -0.056516047567129135, 0.0087543074041605, 0.003745253197848797, 0.01519401278346777, -0.009428807534277439, -0.016102813184261322, 0.0033529778011143208, -0.007504706270992756, 0.014306511729955673, -0.02202421799302101, 0.008342507295310497, 0.018474215641617775, -0.01800561510026455, -0.01711101457476616, -0.025645220652222633, -0.022095218300819397, 0.021016016602516174, -0.006450355518609285, 0.03143882751464844, -0.004004403483122587, -0.027519622817635536, -0.015733612701296806, -0.012510210275650024, 0.030075624585151672, 0.0070467558689415455, 0.01410061214119196, -0.019084816798567772, 0.010103308595716953, -0.02019241638481617, -0.040896035730838776, 0.007731906604021788, -0.008839507587254047, 0.0038872533477842808, 0.019581817090511322, -0.019482417032122612, -0.04626363888382912, 0.009599207900464535, 0.021995818242430687, 0.002992652589455247, 0.0029021273367106915, -0.01307821087539196, -0.007227805908769369, 0.017167814075946808, -0.028882823884487152, -0.005552204791456461, -0.006887005642056465, -0.03268842771649361, 0.006982855964452028, -0.00477475393563509, 0.018658814951777458, 0.024693820625543594, 0.004891904070973396, -0.05262524262070656, -0.029507623985409737, 0.013582311570644379, -0.029081624001264572, 0.007739006541669369, 0.022450217977166176, 0.0029323024209588766, -0.0003729721938725561, 0.03666443005204201, -0.0005129754426889122, 0.023344820365309715, -0.026284221559762955, 0.015108812600374222, 0.0021726018749177456, -0.04913204163312912, 0.00407895352691412, 0.02212361805140972, -0.028726624324917793, -0.014256811700761318, -0.005548654589802027, 0.03953283280134201, 0.012453410774469376, -0.0015549012459814548, -0.012772910296916962, -0.011175408959388733, -0.004000853281468153, -0.0030956026166677475, 0.01939721591770649, 0.028087623417377472, -0.012311410158872604, 0.008292807266116142, 0.017338214442133904, 0.01166530977934599, 0.006350955460220575, -0.0194966159760952, 0.02919522486627102, 0.009215807542204857, 0.007866806350648403, -0.02953602373600006, 0.00618055509403348, -0.003290852764621377, 0.010848809033632278, 0.025574222207069397, 0.005662254523485899, -0.020121416077017784, 0.01571941375732422, 0.025247620418667793, -0.0035713028628379107, -0.013994111679494381, 0.013802411034703255, -0.000546700437553227, -0.00024295333423651755, -0.022748418152332306, 0.018090814352035522, -0.01290071103721857, -0.01006780844181776, 0.019425615668296814, 0.02263481914997101, 0.016188014298677444, -0.013326711021363735, 0.018119215965270996, 0.01890021562576294, -0.023699820041656494, -0.011544609442353249, 0.009961307980120182, -0.0204906165599823, -0.02615642175078392, 0.007639606483280659, 0.02849942445755005, 0.0009753633057698607, 0.010422809049487114, -0.010571909137070179, 0.017835214734077454, -9.34094496187754e-05, 0.02333061955869198, -0.026284221559762955, -0.0009860133286565542, -0.004831553902477026, 0.005481204483658075, -0.009293907321989536, -0.01919841580092907, -0.015605812892317772, -0.017224613577127457, 0.003063652664422989, -0.01096240896731615, 0.014881612733006477, 0.00020800798665732145, 0.09076647460460663, 0.02734922245144844, -0.007504706270992756, -0.0025968272238969803, -0.01681281439960003, 0.017238814383745193, 0.016344213858246803, 0.019468216225504875, -0.024452419951558113, -0.005790054798126221, 0.011218009516596794, -0.012922010384500027, -0.0025329270865768194, -0.0068976557813584805, -0.024651220068335533, -0.006109555251896381, -0.007071605883538723, 0.00038140345714055, -0.008583907037973404, 0.012914910912513733, -0.0007064506062306464, 0.003986653406172991, -0.006773405708372593, 0.005392454564571381, -0.02402641996741295, -0.015023612417280674, 0.010117508471012115, 0.03053002618253231, -0.017877815291285515, -0.01479641254991293, 0.016244813799858093, -0.027363423258066177, -0.04345203563570976, -0.017125213518738747, -0.0169548150151968, -0.001279776101000607, -0.007376905996352434, -0.022294018417596817, -0.010486708953976631, 0.013866311870515347, -0.011090208776295185, 0.02112961746752262, -0.01509461272507906, -0.022010019049048424, 0.02122901752591133, 0.001194576034322381, -0.003702653106302023, -0.011253509670495987, 0.008690407499670982], "e7b6c090-bf1b-436b-9a00-6d96311cb2ce": [-0.0079899150878191, -0.011820600368082523, -0.014511866495013237, 0.0028293246868997812, -0.0029324316419661045, 0.03875423222780228, -0.01011496689170599, -0.03676898777484894, -0.00018087404896505177, -0.02702450565993786, 0.022299062460660934, 0.012694387696683407, 0.011303317733108997, -0.014735556207597256, 0.0023679647129029036, 0.02449401654303074, 0.018775949254631996, 0.007021757774055004, 0.015057109296321869, -0.0057530184276402, -0.016874587163329124, 0.010897880420088768, -0.013847787864506245, 0.001045923912897706, -0.03436432406306267, -0.01181360986083746, 0.006095543038100004, -0.009115353226661682, -0.007710302714258432, 0.027094408869743347, -0.00176155602093786, 0.009849335066974163, -0.005123890936374664, -0.008800789713859558, -0.04328394681215286, 0.011212443932890892, 0.015154973603785038, -0.013924680650234222, 0.002630101051181555, -0.028268780559301376, 0.027220234274864197, 0.007056709378957748, -0.004043889697641134, -0.01634332537651062, -0.02552858181297779, 0.02442411333322525, -0.006448553409427404, -0.0018524299375712872, -0.009625645354390144, 0.026367418467998505, 0.000719127303455025, -0.016944490373134613, -0.03285441920161247, 0.0017755365697667003, -0.002808353630825877, -0.01255458127707243, 0.009933218359947205, 0.004578647669404745, 0.017000414431095123, -0.0030268006958067417, 0.007346807047724724, 1.05127583083231e-05, -0.006011659279465675, 0.005630687810480595, -0.017224103212356567, -0.020551485940814018, -0.007598457857966423, 0.00015553421690128744, -0.02010410651564598, -0.016511091962456703, 0.05715270712971687, 0.02818489633500576, 0.00208835257217288, -0.002224663505330682, -0.000441699696239084, -0.002006216673180461, -0.02811499312520027, -0.017196141183376312, 0.005228745751082897, 0.008472245186567307, 0.008863702416419983, -0.01465167198330164, -0.02331964671611786, 0.01424623467028141, 0.035678498446941376, 0.02004818432033062, 0.03254684433341026, -0.00038097143988125026, -0.01665089838206768, -0.004047384485602379, 0.011471085250377655, 0.01923730969429016, 0.013456330634653568, 0.020635370165109634, 0.0021355370990931988, 0.025612464174628258, -0.00835341028869152, 0.0013150505255907774, -0.002313789911568165, -0.023459453135728836, -0.015923907980322838, -0.010010112076997757, -0.014204292558133602, -0.007975934073328972, -0.026535185053944588, -0.01085593830794096, 0.021110711619257927, -0.006382145453244448, 0.016063712537288666, 0.01313477661460638, -0.02485751174390316, 0.03089713305234909, -0.006826029624789953, 0.0005325736128725111, -0.0023434986360371113, -0.010793025605380535, 8.322828216478229e-05, -0.010667200200259686, -0.0186780858784914, -0.036181800067424774, 0.004568161908537149, -0.00028048583772033453, 0.04971502348780632, -0.010618268512189388, 0.02208935283124447, 0.017307987436652184, 0.0023522365372627974, -0.01948896050453186, 0.014735556207597256, -0.011673803441226482, 0.021236537024378777, 0.008444284088909626, 0.0012180600315332413, -0.004805832169950008, -0.012463707476854324, 0.021068768575787544, -0.0076264189556241035, 0.007458651904016733, 0.006609329953789711, -0.016748761758208275, 0.019698670133948326, 0.02751382626593113, 0.006794573273509741, 0.0006203892407938838, -0.0040578702464699745, 0.037272289395332336, 0.0042745694518089294, 0.019964301958680153, -0.007584477309137583, 0.01070215180516243, 0.005690105725079775, -0.013449340127408504, -0.0041732098907232285, -0.029946452006697655, 0.013141767121851444, 0.007297874893993139, -0.0051623377948999405, 0.023599257692694664, -0.02880004234611988, 0.0006147096282802522, -0.020984886214137077, 0.01483341958373785, 0.014483905397355556, 0.005550299305468798, 0.0003364082658663392, 0.033273834735155106, 0.01295302901417017, -0.014567788690328598, -0.025207027792930603, -0.001348254387266934, -0.0066827284172177315, 0.003750296775251627, -0.01806293986737728, 0.025514600798487663, 0.001193593954667449, 0.007021757774055004, 0.004998065531253815, -0.0025322367437183857, 0.00496311392635107, -0.015029148198664188, 0.011177492327988148, -0.005312629044055939, -0.00717204948887229, 0.02749984711408615, -0.020006243139505386, 0.0044528222642838955, 0.034504130482673645, 0.0030809754971414804, 0.006144475191831589, 0.004491268657147884, 0.014330117963254452, 0.022914208471775055, 0.006584864109754562, -0.00022150517906993628, -0.6325943470001221, 0.0034007816575467587, 0.015644295141100883, -0.016678860411047935, 0.0059732128866016865, 0.016203518956899643, 0.0031508784741163254, -0.007458651904016733, -0.026353437453508377, 0.04208161681890488, -0.00047621430712752044, 0.028520431369543076, -0.03433636203408241, -0.004854764323681593, 0.013987593352794647, -0.03095305524766445, -0.009122343733906746, -0.005012046080082655, 0.025304891169071198, 0.003295927308499813, -0.016986433416604996, 0.017713423818349838, 0.003512626513838768, 0.007109136786311865, -0.0047673857770860195, -0.02424236573278904, 0.036657143384218216, -0.020076146349310875, -0.010527393780648708, 0.029079655185341835, -0.029527034610509872, 0.01849633827805519, 0.0264652818441391, -0.020076146349310875, 0.04090724512934685, -0.014875361695885658, -0.025388775393366814, 0.028338681906461716, 0.009485838934779167, 0.03595811128616333, -0.027248196303844452, 0.016622936353087425, 0.02436819113790989, -0.0023330131080001593, 0.013833806850016117, -0.0005876222276128829, 4.0794962842483073e-05, -0.005697095766663551, -0.015336722135543823, -0.0299184899777174, 0.021851683035492897, -0.02547265961766243, -0.0296668391674757, -0.006168941035866737, 0.031847815960645676, -0.003757287049666047, 0.009863315150141716, -0.033581409603357315, 0.0002317721809959039, -0.0051623377948999405, -0.014155360870063305, 0.01480545848608017, -0.01800701767206192, -0.018901774659752846, -0.03970491141080856, 0.007220981642603874, -0.023235762491822243, -0.01967070810496807, 0.0019537892658263445, 0.0013639825629070401, 0.01936313509941101, -0.00931108184158802, -0.007689331658184528, 0.00014930847100913525, -0.009199236519634724, 0.019530903548002243, 0.012365843169391155, -0.01075807400047779, -0.0015745654236525297, 0.0037013646215200424, 0.004952628631144762, 0.00676661217585206, -0.018300609663128853, -0.01014991756528616, 0.01045050099492073, 0.0060501061379909515, -0.020942943170666695, 0.006983311381191015, -0.0038062192033976316, -0.01894371770322323, 0.012967009097337723, 0.03084121085703373, -0.012848174199461937, -0.01057632640004158, 0.018482357263565063, 0.0383627749979496, -0.010716132819652557, 0.006053601391613483, 0.02418644353747368, -0.02836664393544197, -0.01757361739873886, -0.026479262858629227, 0.013267592526972294, 0.0041732098907232285, 0.029443150386214256, 0.010848947800695896, -0.029415188357234, -0.0018786435248330235, 0.030254025012254715, -0.03293830156326294, 0.005704086273908615, -0.008626032620668411, -0.00627379585057497, -0.023040033876895905, 0.029023732990026474, -0.022229159250855446, 0.019139446318149567, 0.02780742011964321, -0.01434409897774458, 0.0008812149171717465, -0.013036912307143211, -0.02510916255414486, -0.006944864522665739, -0.009485838934779167, 0.01440002117305994, 0.013519243337213993, 0.015812061727046967, -0.015923907980322838, 0.002792625455185771, -0.009583703242242336, -0.013735942542552948, -0.05259503051638603, -0.006951855029910803, 0.005546804517507553, 0.017489735037088394, -0.0005500493571162224, 0.029946452006697655, -0.011205453425645828, 0.025864116847515106, -0.021823721006512642, -0.01307885441929102, 0.005012046080082655, -0.0061864168383181095, -0.022788383066654205, 0.025193046778440475, -0.02905169315636158, -0.020984886214137077, -0.00641360180452466, -0.010303704999387264, -0.014057496562600136, 0.021991489455103874, 0.006462533958256245, -0.010003121569752693, 0.0013875748263671994, -0.011631862260401249, -0.003505636239424348, 0.0009410693310201168, -0.031176745891571045, -0.007130107842385769, -0.0149592449888587, 0.00641360180452466, 0.0012136910809203982, 0.006511466111987829, 0.007402729243040085, 0.003461946966126561, 0.0036454421933740377, -0.020509544759988785, 0.003194567747414112, -0.003135150298476219, -0.018650123849511147, -0.000883399392478168, -0.006654767319560051, -0.010737103410065174, 0.024633822962641716, -0.0021233041770756245, 0.025556541979312897, -0.025626445189118385, 0.004386414308100939, -0.009667587466537952, 0.014665652997791767, 0.00903146993368864, -0.0002916266385000199, -0.016986433416604996, -0.0028275770600885153, 0.0240466371178627, -0.019069543108344078, 0.017811289057135582, 0.015826042741537094, -0.03215538710355759, 0.0003123790957033634, 0.0026580621488392353, -0.00336058740504086, -0.021180612966418266, 0.020369738340377808, -0.021012846380472183, 0.0063646696507930756, -0.003914569038897753, 0.007682341616600752, -0.002717479830607772, 0.028828004375100136, 0.027793439105153084, -0.003350102109834552, 0.009108362719416618, 0.0008637391147203743, 0.006462533958256245, -0.013714971952140331, 0.014763517305254936, -0.028939848765730858, 0.03973287343978882, 0.016888568177819252, -0.01702837459743023, 0.012009338475763798, -0.01217710506170988, -0.012477688491344452, 0.02102682739496231, 0.02449401654303074, 0.0063646696507930756, 0.025081202387809753, -0.00928312074393034, -0.0048477742820978165, 0.012987980619072914, -0.01862216368317604, 0.037412095814943314, 0.0011035938514396548, -0.00832544919103384, 0.015714198350906372, 0.014721575193107128, 0.018090900033712387, 0.011464094743132591, 0.0006444184109568596, -0.006791078019887209, 0.017615560442209244, 0.004554181359708309, 0.006256320048123598, 0.04470996931195259, 0.01609167456626892, 0.008723895996809006, -0.0018227210966870189, 0.0460241474211216, 0.0015920412261039019, -0.005798455327749252, 0.013323514722287655, 0.02312391810119152, -0.002783887553960085, 0.026842758059501648, -0.0011673803674057126, 0.03755189850926399, -0.018356531858444214, -0.0360419936478138, 0.02645130082964897, 0.0016435947036370635, -0.018090900033712387, -0.003732820972800255, -0.019516922533512115, 0.02688469924032688, -0.003600005293264985, 0.015099051408469677, 0.0023592268116772175, 0.018342550843954086, 0.019461000338196754, -0.0034112671855837107, -0.0006671369192190468, 0.014148370362818241, -0.01209322176873684, 0.01052040420472622, -0.0023574791848659515, -0.01610565558075905, -0.01775536686182022, -0.015322741121053696, -0.024955376982688904, 0.004582142923027277, -0.039760835468769073, 0.006462533958256245, -0.004417870659381151, -0.011792639270424843, 0.0009410693310201168, -0.004187190439552069, 0.00011850745795527473, -0.008122730068862438, 0.015224876813590527, -0.026563145220279694, -0.04306025803089142, 0.023151878267526627, -0.00013445407967083156, -0.0009742733091115952, -0.008891663514077663, -0.02042566053569317, 0.014581768773496151, 0.02028585597872734, 0.0172660443931818, 0.0040368991903960705, -0.0011053414782509208, -0.010904870927333832, 0.015029148198664188, -0.008814770728349686, 0.01999226212501526, 0.0213483814150095, -0.011610890738666058, 0.0013307787012308836, 0.015560411848127842, -0.011219434440135956, 0.024577900767326355, -0.017545657232403755, -0.003767772577702999, 0.004414375405758619, 0.0015640800120308995, -0.02022993378341198, -0.02386488951742649, -0.01923730969429016, -0.02115265280008316, 0.016608957201242447, -0.012806232087314129, -0.0028275770600885153, -0.0022770906798541546, -0.018146822229027748, -0.0006715058698318899, -0.0011839823564514518, -0.021614013239741325, 0.0010100986110046506, -0.006619815714657307, 0.009360013529658318, -0.006270300596952438, 0.005312629044055939, 0.00683301966637373, 0.06777796149253845, 0.022424887865781784, 0.00733981654047966, 0.008961566723883152, -0.010107976384460926, -0.0008266031509265304, -0.020803136751055717, -0.03928549587726593, 0.02947111241519451, -0.002308547031134367, -0.013721962459385395, 0.005648163612931967, -0.007906030863523483, 0.011596910655498505, 0.00732583599165082, 0.009290111251175404, 0.004952628631144762, -0.005459425505250692, -0.014386041089892387, 0.0009803897701203823, 0.013491282239556313, -0.00020195418619550765, 0.010667200200259686, 0.006291271653026342, 0.008591081015765667, 0.011729726567864418, 0.00860506109893322, 0.00480932742357254, 0.003367577912285924, -0.013099825009703636, -0.026758873835206032, 0.019530903548002243, 0.02189362421631813, 0.011645842343568802, -0.018090900033712387, 0.014148370362818241, -0.011079628020524979, 0.013407398946583271, -0.035035390406847, 0.01103768590837717, -0.0035091314930468798, 0.010890889912843704, 0.0029201984871178865, -0.017615560442209244, -0.0054209791123867035, -0.02626955322921276, 0.013652059249579906, 0.039621029049158096, 0.003440975910052657, -0.015504488721489906, 0.0024972851388156414, 0.015560411848127842, -0.019447019323706627, -0.009122343733906746, -0.01073011290282011, 0.0006461659795604646, -0.005354571156203747, -0.011247395537793636, -0.023725083097815514, -0.012226037681102753, -0.03218334913253784, -0.027429943904280663, -0.002144275000318885, -0.025934018194675446, -0.01585400477051735, -0.03324587270617485, -0.0058718533255159855, 0.00464156037196517, -0.003257480449974537, -0.002249129582196474, -0.013973613269627094, -0.03131655231118202, -0.027961205691099167, 0.018342550843954086, 0.036237724125385284, 0.020187990739941597, -0.0008073798380792141, -0.003122917143628001, -0.010303704999387264, 0.0250532403588295, -0.004477288108319044, -0.008339430205523968, 0.010967783629894257, -0.02011808753013611, 0.004449327010661364, 0.0011333026923239231, -0.007556516211479902, -0.0009436907130293548, -0.0003868695057462901, -0.002970878267660737, -0.0021652458235621452, -0.026493243873119354, 0.0018716532504186034, 0.010387588292360306, 0.030254025012254715, 0.017475754022598267, 0.010779045522212982, -0.008087779395282269, 0.026605088263750076, -0.013875748962163925, 0.008723895996809006, -0.034504130482673645, -0.028716158121824265, -0.020887020975351334, 0.003348354483023286, 0.006675737909972668, 0.011142540723085403, 0.015867983922362328, 0.0035790344700217247, -0.004662530962377787, -0.011051666922867298, 0.006336708553135395, -0.001273982459679246, 0.011030696332454681, -0.00956273265182972, -0.007158068940043449, 0.01880391128361225, 0.00903146993368864, 0.009380985051393509, -0.023822948336601257, 0.0008899527601897717, -0.011848561465740204, 0.031064899638295174, -0.018090900033712387, -0.017965074628591537, 0.008094768971204758, 0.024941395968198776, -0.03467189520597458, -0.014861381612718105, 0.002020197222009301, -0.012652445584535599, 0.011233414523303509, -0.004547191318124533, -0.012876135297119617, -0.010611278004944324, 0.0049840849824249744, -0.0008982537547126412, 0.008101759478449821, -0.004966609179973602, -0.007696322165429592, -0.017559638246893883, 0.017070315778255463, -0.008626032620668411, -0.01997828111052513, 0.0014924294082447886, -0.026661010459065437, -0.015154973603785038, 0.006616320461034775, 0.003533597569912672, 0.018887795507907867, -0.02343149110674858, -0.011568949557840824, -0.018300609663128853, -0.015490508638322353, -0.014819439500570297, -0.018985658884048462, -0.0391177274286747, -0.0005085444427095354, 0.039760835468769073, 0.01653905399143696, 0.007486613001674414, 0.0016278665279969573, 0.023347606882452965, -0.004707968328148127, 0.009779431857168674, -0.0048477742820978165, -0.03662918135523796, -0.0230120737105608, 0.0024570911191403866, 0.01670682057738304, -0.007668361067771912, 0.011100598610937595, -0.007878069765865803, 0.0194330383092165, 0.006151465233415365, 0.016762742772698402, 0.0038586463779211044, -0.008444284088909626, -0.03274257108569145, -0.05046997591853142, -0.02127847820520401, 0.028073051944375038, 0.00011162638111272827, -0.014973226003348827, -0.022970130667090416, 0.013875748962163925, 0.02633945643901825, 0.005983698181807995, 0.033217914402484894, 0.010590306483209133, 0.02104080840945244, 0.008626032620668411, -0.0018768960144370794, -0.0021757313515990973, 0.0027786449063569307, -0.013561185449361801, -0.022005468606948853, -0.04694686457514763, 0.010995744727551937, -0.0023330131080001593, 0.012114192359149456, -0.0047673857770860195, -0.00789205078035593, -0.003575539216399193, 0.011366230435669422, 0.0352870412170887, -0.02319382131099701, -0.020369738340377808, 0.004267578944563866, -0.0149592449888587, -0.024312268942594528, -0.011156521737575531, -0.01295302901417017, -0.0042151520028710365, -0.007668361067771912, -0.013050893321633339, 0.009891277179121971, 0.008814770728349686, -0.02041168138384819, -0.00804583728313446, 0.012226037681102753, 0.009450887329876423, 0.0191813874989748, 0.0210967306047678, 0.02554256282746792, 0.0032627233304083347, 0.010988754220306873, -0.0172660443931818, -0.010205840691924095, -0.002476314315572381, -0.004110297188162804, 0.004253598395735025, 0.043815210461616516, -0.01584002375602722, 0.01057632640004158, 0.017307987436652184, -0.0037153454031795263, 0.007304865401238203, -0.045241232961416245, 0.017909152433276176, 0.013148757629096508, -0.009373994544148445, -0.026199650019407272, -0.028101012110710144, -0.038139086216688156, 0.015714198350906372, -0.0010826229117810726, 0.024773629382252693, 0.0035772868432104588, -0.006154960487037897, -0.022285081446170807, 0.03458801284432411, -0.008556129410862923, 0.029219461604952812, 0.020942943170666695, -0.0026038873475044966, -0.02091498300433159, -0.016790704801678658, 0.0033134028781205416, 0.0023452462628483772, -0.006120008882135153, 0.00826952699571848, -0.020201971754431725, -0.005053988192230463, 0.0020306825172156096, 0.017713423818349838, -0.019083524122834206, -0.005078454036265612, -0.013714971952140331, 0.0340287871658802, -0.011624871753156185, 0.0028293246868997812, 0.0001410074910381809, -0.025458678603172302, 0.010492443107068539, -0.035566654056310654, -0.002803110983222723, 0.005026026628911495, -0.023361587896943092, 0.008031856268644333, 0.039621029049158096, 0.012414775788784027, -0.009415936656296253, -0.007801176514476538, -0.007731273770332336, -0.005711076315492392, -0.006085057742893696, -0.0003086655051447451, 0.009485838934779167, -0.036657143384218216, -0.02485751174390316, -0.02077517658472061, -0.0007379137095995247, 0.003942530136555433, -0.020453622564673424, -0.0131068155169487, 0.018594201654195786, 0.04686298221349716, 0.0004888842231594026, 0.011540987528860569, -0.0009270887239836156, 0.0009192246361635625, -0.054244741797447205, 0.026493243873119354, 0.012897106818854809, -0.0026755379512906075, 0.011575939133763313, -0.01005205325782299, -0.055055614560842514, -0.02115265280008316, 0.012086231261491776, 0.0017467016587033868, 0.005176318343728781, 0.0180209968239069, 0.020998865365982056, 0.02022993378341198, -0.001983497990295291, 0.004956123884767294, -0.027849361300468445, 0.014455943368375301, 0.007402729243040085, 0.003973986487835646, 0.004127772990614176, -0.0049456385895609856, 0.019824495539069176, -0.0028240818064659834, 0.016944490373134613, 0.010457491502165794, -0.03078528866171837, -0.0409352071583271, -0.0047953468747437, -0.007130107842385769, -0.009702539071440697, -0.011142540723085403, -0.01368701085448265, -0.004393404349684715, -0.007220981642603874, 0.01567225530743599, 0.010639239102602005, -0.002717479830607772, 0.0020866049453616142, -0.015196915715932846, 0.014469924382865429, 0.0012442737352102995, -0.01267341710627079, -0.023487413302063942, -0.016790704801678658, -0.002866023685783148, -0.010066034272313118, 0.0024291297886520624, -0.00857710000127554, 0.019810514524579048, 0.013211670331656933, -0.00417670514434576, -0.03268665075302124, -0.03215538710355759, -0.02751382626593113, -0.014302156865596771, -0.035119276493787766, 0.02091498300433159, 0.042528994381427765, 0.0240466371178627, 0.021739838644862175, -0.002862528432160616, -0.004557676613330841, 0.010834967717528343, -0.015015168115496635, 0.01393866166472435, 0.01193943526595831, -0.049798909574747086, 0.012435746379196644, -0.012582543306052685, -0.04395501688122749, 0.019642747938632965, 0.003533597569912672, -0.022354984655976295, 0.011855551972985268, 0.017405850812792778, -0.01590992696583271, -0.0019083523657172918, -0.005106415133923292, -0.006396126002073288, 0.03109286166727543, 0.02780742011964321, 0.01764352060854435, -0.027653632685542107, -0.021809741854667664, 0.018734008073806763, 0.012233028188347816, -0.007619428914040327, 0.011981377378106117, 0.01851031929254532, 0.011310308240354061, 0.016175558790564537, -0.0004783987533301115, -0.024521978572010994, 0.015714198350906372, 0.008395352400839329, 0.02091498300433159, 0.010324675589799881, 0.0017021384555846453, -0.005508357658982277, -0.002322527812793851, 0.01646915078163147, -0.001045923912897706, 0.02127847820520401, 0.008591081015765667, -0.0038132094778120518, 0.03263072669506073, -0.01128933671861887, -0.009639626368880272, 0.0016899054171517491, 0.019628766924142838, 0.004250103607773781, -0.015406624414026737, -0.01838449388742447, -0.02355731651186943, -0.0018996144644916058, 0.004645055625587702, 0.027401981875300407, -0.019950320944190025, -0.0058159311302006245, -0.013330505229532719, 0.012743319384753704, 0.006686223670840263, -0.006308746989816427, -0.014232253655791283, -0.004061365034431219, -0.02288624830543995, 0.006462533958256245, 0.014595749787986279, -0.040431905537843704, -0.011317298747599125, 0.024997318163514137, -0.01277128141373396, 0.017224103212356567, 0.22223566472530365, -0.00513437669724226, -0.002873013960197568, 0.03282645717263222, -0.0022106829565018415, -0.007374768145382404, -0.0024466055911034346, -0.003928549587726593, 0.01326060201972723, 0.006630301009863615, 0.015490508638322353, -0.017797308042645454, -0.009227198548614979, -0.002083109924569726, 0.015895945951342583, -0.0034759275149554014, -0.02885596454143524, -0.019265271723270416, -0.032462961971759796, 0.0105483653023839, 0.016315363347530365, -0.0283806249499321, -0.005305639002472162, 0.0008397100027650595, 0.033217914402484894, 0.026101786643266678, -0.022746441885828972, 0.00289748003706336, 0.02435421012341976, 0.01165982335805893, -0.034252479672431946, 0.0013919437769800425, 0.03078528866171837, 0.015196915715932846, 0.0018961193272843957, -0.01899963989853859, 0.030170142650604248, -0.033161990344524384, 0.01480545848608017, -0.005165833048522472, -0.012233028188347816, -0.029275383800268173, 0.006570883560925722, -0.028828004375100136, 0.01937711611390114, -0.006521951407194138, -0.003198063001036644, -0.018859833478927612, 0.023962754756212234, 0.026912661269307137, -0.012316911481320858, 0.014889342710375786, 0.024759648367762566, 0.006004669237881899, 0.008863702416419983, 0.013826816342771053, -0.012044290080666542, -0.004326996859163046, -0.03162412345409393, 0.022187218070030212, -0.006752631161361933, -0.009045450016856194, -0.010373607277870178, 0.0006907291826792061, -0.04101908951997757, 0.03254684433341026, 0.0007296127150766551, 0.0039040835108608007, -0.00792001187801361, 0.006113018840551376, 0.02102682739496231, -0.0022631101310253143, -0.03338567912578583, 0.014127399772405624, -0.013302544131875038, -0.007850108668208122, -0.005959232337772846, 0.02053750678896904, 0.03461597487330437, 0.008458265103399754, 0.001608643215149641, 0.005718066822737455, 0.005316124297678471, -0.009828364476561546, -0.0037817531265318394, -0.01116351131349802, 0.039872679859399796, -0.007542535662651062, 0.0008252924890257418, -0.007822147570550442, -0.022159256041049957, 0.005739037413150072, -0.008989527821540833, -0.005490881856530905, -0.010681181214749813, -0.010310694575309753, 0.008989527821540833, 0.014358079060912132, -0.014239244163036346, -0.019041581079363823, -0.029499072581529617, 0.03545480966567993, 0.021977508440613747, 0.013113806024193764, -0.025137124583125114, -0.004865250084549189, 0.011499046348035336, 0.013833806850016117, -0.0010826229117810726, -0.004617094062268734, -0.024955376982688904, -0.018845852464437485, 0.019894398748874664, 0.009052440524101257, -0.004389909561723471, 0.025137124583125114, 0.012918077409267426, 0.01831459067761898, 0.017797308042645454, 0.0020970904733985662, 0.023892851546406746, 0.0030180627945810556, -0.0004866997478529811, 0.024102559313178062, 0.0022159256041049957, -0.03218334913253784, -0.0069763208739459515, 0.013127786107361317, -0.026073824614286423, -0.02868819795548916, 0.044318512082099915, 0.012086231261491776, 0.03335772082209587, -0.012841183692216873, -0.01264545600861311, -0.03279849514365196, 0.009646615944802761, -0.023040033876895905, -0.0024535958655178547, -0.0044318512082099915, -0.008129720576107502, -0.012967009097337723, 0.017224103212356567, 0.016986433416604996, -0.0032295193523168564, -0.022480810061097145, 0.006476514507085085, 0.008723895996809006, 0.009975160472095013, -0.030058296397328377, -0.0013849535025656223, 0.0025339843705296516, -0.013680020347237587, -0.002712236950173974, 0.032407037913799286, -0.013449340127408504, -0.040739476680755615, -0.025682367384433746, 0.01838449388742447, -0.004592628218233585, -0.031064899638295174, 0.015993809327483177, 0.03844665735960007, 0.004040394444018602, -0.037048596888780594, -0.015350702218711376, -0.1805175542831421, 0.01070215180516243, -0.005763503722846508, -0.005798455327749252, -0.006459038704633713, 0.0008991275681182742, -0.007042728830128908, 0.016455169767141342, -0.00832544919103384, -0.003337868954986334, 0.021488187834620476, -0.016553035005927086, -0.010639239102602005, -0.012876135297119617, 0.011911474168300629, -0.010960793122649193, -0.017433812841773033, 0.005403503309935331, 0.024004695937037468, -0.0005500493571162224, 0.03330179676413536, -0.022033430635929108, 0.0004866997478529811, -0.008681954815983772, 0.013351475819945335, 0.0014688371447846293, -0.017853230237960815, 0.024633822962641716, 0.0046660262160003185, -0.03274257108569145, -0.001528254710137844, 0.00915729533880949, 0.02294217050075531, 0.020747214555740356, -0.009038460440933704, -0.01270137820392847, -0.006787582766264677, -0.027346059679985046, 0.00971651915460825, 0.017489735037088394, 0.0376078225672245, 0.011988366954028606, 0.019265271723270416, 0.023529354482889175, -0.026507223024964333, 0.03791539743542671, 0.03939734026789665, -0.013603126630187035, 0.004421365913003683, -0.0035720441956073046, 0.018482357263565063, -0.010010112076997757, -0.012939047999680042, 0.001027574297040701, 0.02189362421631813, 0.01440002117305994, 0.009332052432000637, -0.01026875339448452, 0.003680393798276782, 0.017531676217913628, 0.0035353449638932943, -0.017923133447766304, -0.005085444543510675, 0.0015055362600833178, -0.02368314191699028, -0.025794213637709618, -0.0028502955101430416, -0.005309134256094694, -0.01887381449341774, 0.03207150474190712, -0.009884286671876907, 0.0005635930574499071, 0.00850719679147005, 0.00027983050676994026, 0.03939734026789665, 0.005099425092339516, -0.03344160318374634, 0.009604674763977528, 0.02146022580564022, 0.010471471585333347, 0.0077871959656476974, 0.02331964671611786, -0.005543309263885021, -0.002474566688761115, -0.011799628846347332, 0.013323514722287655, 0.006378650199621916, 0.014987207017838955, -0.007346807047724724, 0.01653905399143696, 0.01585400477051735, -0.011876522563397884, 0.021683916449546814, 0.006144475191831589, 0.006396126002073288, 0.0010599044617265463, 0.022424887865781784, 0.010275742970407009, 0.03028198704123497, -0.018831873312592506, -0.019712651148438454, 0.019880417734384537, -0.04127074033021927, 0.02028585597872734, 0.011233414523303509, 0.005368551705032587, 0.011666812933981419, -0.0038097144570201635, 0.011673803441226482, -0.04224938154220581, -0.006154960487037897, 0.018468376249074936, 0.02046760357916355, -0.00335359713062644, -0.0189297366887331, 0.033525485545396805, 0.0035440828651189804, -0.013631087727844715, 0.026758873835206032, -0.007063699886202812, 0.05038609355688095, -0.0283806249499321, -0.023473432287573814, -0.007906030863523483, -0.0010467976098880172, -0.03159616142511368, -0.11039084196090698, -0.023207800462841988, 0.032043542712926865, 0.017112258821725845, -0.010135937482118607, 0.02245284803211689, -0.00555379455909133, 0.033329758793115616, -0.0009253411553800106, 0.037412095814943314, -0.008416322991251945, -0.030198102816939354, -0.009066421538591385, -0.0013159242225810885, 0.021795760840177536, -0.01424623467028141, -0.003977481741458178, -0.029079655185341835, -0.003823695005849004, 0.025584504008293152, 0.0051623377948999405, -0.008660983294248581, -0.0011507783783599734, 0.0011734968284144998, -0.01683264598250389, -0.019754592329263687, -0.016804685816168785, 0.019950320944190025, 0.018286628648638725, 0.007283894345164299, 0.03970491141080856, -0.009248169139027596, 0.010925841517746449, -0.010219820775091648, -0.010569335892796516, 0.003524859668686986, -0.02263459749519825, -0.014987207017838955, 0.006710689514875412, -0.02122255600988865, 0.005550299305468798, 0.018775949254631996, -0.002408158965408802, -0.03892200067639351, 0.001361361239105463, 0.009723509661853313, -0.011666812933981419, 0.0177693460136652, 0.00022587411513086408, -0.03299422189593315, -0.026912661269307137, -0.015308760106563568, -0.03151227906346321, -0.046275798231363297, 0.024452075362205505, 0.004089326597750187, 0.006015154533088207, 0.01610565558075905, -0.01800701767206192, 0.014295166358351707, -0.012288950383663177, -0.018216725438833237, -0.01764352060854435, 0.004917677026242018, 0.01869206689298153, -0.004879230633378029, -0.024256346747279167, -0.03461597487330437, 0.01168778445571661, 0.00015553421690128744, -0.007035738788545132, 0.00564117357134819, -0.04247307404875755, 0.018216725438833237, -0.013847787864506245, -0.0025794212706387043, 0.0019293231889605522, -0.023459453135728836, -0.00253747939132154, 0.028464507311582565, -0.0034759275149554014, -0.014148370362818241, 0.01103768590837717, -0.026982564479112625, -0.004029908683151007, -0.015140993520617485, 0.00943690724670887, -0.0030530141666531563, 0.011974386870861053, -0.026814797893166542, -0.008660983294248581, 0.0029953443445265293, 0.010121956467628479, 0.008500207215547562, -0.005235735792666674, 0.007696322165429592, 0.006245834287256002, 0.008982537314295769, 0.016301384195685387, 0.015588372945785522, -0.009611664339900017, 0.007283894345164299, -0.05421677976846695, 0.002719227224588394, 0.017853230237960815, 0.003337868954986334, 0.006308746989816427, -0.01196739636361599, 0.004526220262050629, -0.008094768971204758, 0.002481556963175535, 0.00112543860450387, 0.0004495637840591371, 0.019516922533512115, -0.0038027241826057434, -0.014511866495013237, -0.033888980746269226, -0.03780354931950569, 0.014162351377308369, -0.009080401621758938, 0.025430716574192047, 0.011198462918400764, -0.020551485940814018, -0.007878069765865803, 0.00019976971088908613, 0.036657143384218216, 0.008283507078886032, 0.015923907980322838, -0.032295193523168564, 0.009709528647363186, -0.023026052862405777, -0.02880004234611988, 0.002224663505330682, 0.0009069916559383273, 0.002944664563983679, 0.03400082886219025, 0.008234575390815735, -0.030813248828053474, 0.00943690724670887, 0.029023732990026474, 0.008660983294248581, 0.005155347287654877, -0.02071925438940525, -0.0230120737105608, 0.025710329413414, -0.021739838644862175, -0.015434585511684418, -0.014861381612718105, -0.026409359648823738, 0.0020236922428011894, 0.0021407799795269966, 0.00717204948887229, 0.02885596454143524, 0.011331278830766678, -0.04630375653505325, -0.024340230971574783, 0.006560398265719414, -0.004260588902980089, 0.007269913796335459, 0.005739037413150072, 0.01313477661460638, 0.006039620377123356, 0.0317080095410347, 0.0027454409282654524, 0.017713423818349838, -0.014749536290764809, 0.024843532592058182, -0.015881964936852455, -0.03892200067639351, -0.01739186979830265, 0.014637691900134087, -0.027429943904280663, 0.004784861579537392, -0.015560411848127842, 0.029582956805825233, 0.02745790407061577, -0.018174784258008003, -0.0041137924417853355, 0.0059487465769052505, 0.004208161495625973, 0.0013552447780966759, 0.03548277169466019, 0.005599231459200382, -0.009940208867192268, -0.014330117963254452, 0.015560411848127842, -0.0024291297886520624, 0.013519243337213993, -0.012806232087314129, 0.02702450565993786, 0.007584477309137583, 0.0068609812296926975, -0.014749536290764809, 0.013099825009703636, 0.008339430205523968, -0.015127012506127357, 0.027248196303844452, 0.018342550843954086, -0.030393831431865692, 0.0296668391674757, 0.03114878386259079, -0.00789205078035593, -0.005945251323282719, 0.0042151520028710365, -0.003278451506048441, 0.0029097129590809345, -0.01851031929254532, 0.013071863912045956, -0.020090127363801003, -0.01837051287293434, 0.015686236321926117, 0.02478761039674282, 0.014211283065378666, -0.004480783361941576, 0.007843118160963058, 0.02516508661210537, -0.007843118160963058, -0.0013194194762036204, 0.00857710000127554, -0.018580222502350807, -0.030114218592643738, 0.02171187661588192, 0.0283806249499321, -0.0022613625042140484, 0.012792252004146576, -0.004389909561723471, 0.014386041089892387, -0.016063712537288666, 0.017909152433276176, -0.006780592724680901, 0.007507584057748318, -0.02048158459365368, 0.004875735379755497, -0.0025409746449440718, -0.015504488721489906, -0.025808192789554596, -0.00887768343091011, 0.002719227224588394, -0.009073411114513874, 0.026786835864186287, -0.005106415133923292, 0.08791003376245499, 0.027122370898723602, -0.016483131796121597, 0.007458651904016733, -0.024228384718298912, 0.0070741851814091206, 0.014749536290764809, 0.015308760106563568, -0.007954963482916355, -0.011799628846347332, 0.01825866848230362, -0.007137097883969545, 0.018272647634148598, -0.004784861579537392, -0.024004695937037468, 0.008681954815983772, -0.0072908843867480755, -0.005417483858764172, -0.011065647006034851, 0.012973999604582787, 0.008926615118980408, 0.007927002385258675, 0.012841183692216873, -0.006770106963813305, -0.02633945643901825, -0.02885596454143524, 0.02540275640785694, 0.010080015286803246, -0.015043129213154316, -0.004816317930817604, 0.006175931543111801, -0.028017129749059677, -0.05955737084150314, -0.024773629382252693, -0.014267205260694027, 0.004970104433596134, -0.01923730969429016, -0.029219461604952812, -0.0036244713701307774, 0.0170143935829401, -0.02657712623476982, 0.010261762887239456, -0.021012846380472183, -0.03193169832229614, 0.013484291732311249, -0.00940894614905119, -0.004236122593283653, -0.00850719679147005, 0.0033343739341944456], "25003129-bbd9-42f7-9897-49ff1c2054bc": [-0.01231338456273079, -0.01638070121407509, -0.0006137539749033749, -0.010864751413464546, 0.009304684586822987, 0.0391688197851181, -0.007723723538219929, -0.03161920979619026, -0.00913056917488575, -0.024529265239834785, 0.013002878054976463, -0.009896674193441868, -0.000953277456574142, -0.015851393342018127, -0.007180485874414444, 0.03153563663363457, 0.01989085227251053, 0.00871965941041708, -0.0018543205223977566, -0.006814845371991396, -0.02717580646276474, -0.007445140276104212, -0.017063230276107788, 0.020503735169768333, -0.026409702375531197, -0.009555409662425518, 0.0202808678150177, -0.023164207115769386, -0.001140450593084097, 0.006881008855998516, 0.008134634234011173, 0.002615201286971569, -0.02557395212352276, 0.0018212386639788747, -0.03543580323457718, 0.0017359225312247872, 0.01799648441374302, -0.01700751483440399, 0.00926986150443554, -0.01624141074717045, 0.026423631235957146, 0.015322084538638592, 0.0014486334985122085, -0.019654056057333946, -0.017787547782063484, 0.0351293608546257, -0.005540326703339815, -0.01244571153074503, -0.004972713068127632, 0.012703401036560535, 0.005885073449462652, -0.01244571153074503, -0.022885622456669807, -0.006630283780395985, 0.013873451389372349, -0.02107483148574829, 0.018553651869297028, 0.0026726590003818274, 0.016157835721969604, -0.01319092232733965, 0.006094011012464762, 0.003179332707077265, 0.010286690667271614, 0.010537415742874146, -0.018470076844096184, -0.027607610449194908, -0.0060905287973582745, -0.0030087002087384462, -0.01691000908613205, -0.02055945247411728, 0.055772390216588974, 0.030365586280822754, 0.0010229232721030712, 0.010788140818476677, 0.00015615903248544782, -0.008886809460818768, -0.028025485575199127, -0.01728609763085842, 0.007340671494603157, -0.008468934334814548, 0.0054811276495456696, -0.023568151518702507, -0.022133447229862213, 0.009764347225427628, 0.04554837942123413, 0.03596511110663414, 0.02228666841983795, 0.0003451821976341307, -0.010258832015097141, -0.011247803457081318, 0.006912349723279476, 0.00496574817225337, 0.02273240126669407, 0.023596011102199554, 0.020712673664093018, 0.019626198336482048, 0.007236202713102102, 0.013121276162564754, -0.001197908422909677, -0.008071952499449253, -0.01256410963833332, -0.011846757493913174, -0.025058573111891747, -0.01541958935558796, -0.028721943497657776, -0.011122440919280052, 0.027106160297989845, -0.012807870283722878, 0.028067274019122124, 0.0026221659500151873, -0.03343000262975693, 0.03228780999779701, -0.008329642005264759, -0.010105611756443977, 0.004325006622821093, -0.018595438450574875, 0.0049553015269339085, -0.01877651922404766, -0.005923378746956587, -0.019779417663812637, 0.0013789876829832792, 0.008225173689424992, 0.030226293951272964, -0.021158406510949135, 0.022272739559412003, 0.006860115099698305, 0.006609390024095774, -0.003837485797703266, 0.015433518216013908, -0.009583267383277416, 0.01054438017308712, 0.00865697767585516, 0.00227916007861495, -0.009067888371646404, -0.006107940338551998, 0.008044094778597355, -0.021548422053456306, 0.012487499043345451, 0.0036564066540449858, 0.002399299293756485, 0.0256853848695755, 0.024571051821112633, 0.015739960595965385, -0.002662212122231722, -0.0051920972764492035, 0.04582696408033371, 0.005571667104959488, 0.012988949194550514, 0.00037282289122231305, 0.016533922404050827, 0.008148563094437122, -0.020058002322912216, -0.00587462680414319, -0.01149852853268385, 0.008559473790228367, 0.004398135002702475, 0.003973294980823994, 0.03663371130824089, 0.00037565224920399487, -0.005056288093328476, 0.0067869871854782104, 0.008538579568266869, 0.009792204946279526, 0.0028502559289336205, -0.008601261302828789, 0.02489142306149006, 0.015531022101640701, -0.02379101887345314, -0.016018543392419815, -0.0005406258278526366, -0.0033168832305818796, 0.021144477650523186, -0.02043408900499344, 0.01947297714650631, -0.003771322313696146, 0.011721394956111908, 0.024111390113830566, -0.0010124763939529657, -0.0019762006122618914, -0.018971526995301247, 0.018080059438943863, -0.009583267383277416, 0.01379684079438448, 0.021423060446977615, -0.017550751566886902, -0.004241431597620249, 0.03880666196346283, 0.007222273387014866, 0.0013363295001909137, 0.0034875154960900545, -0.005930343177169561, 0.017508964985609055, -0.005575149320065975, -0.0015635491581633687, -0.6275926232337952, -0.013337178155779839, 0.011052794754505157, -0.015322084538638592, 0.01069063600152731, 0.000716916867531836, -0.0018699908396229148, 0.007619254756718874, -0.028499078005552292, 0.03719087690114975, -0.006933243479579687, 0.02312241867184639, -0.024111390113830566, -0.004004635848104954, 0.0007077758782543242, -0.03638298809528351, 0.0016471240669488907, -0.010607060976326466, 0.0038200742565095425, 0.0028154330793768167, -0.01718859374523163, 0.010523486882448196, -0.009332542307674885, 0.017620397731661797, -0.013775947503745556, -0.037803761661052704, 0.030170578509569168, -0.0026604710146784782, -0.005728370510041714, 0.03432146832346916, -0.031424202024936676, 0.029808418825268745, 0.028457289561629295, -0.01622748002409935, 0.045102644711732864, -0.005355765111744404, -0.01865115575492382, 0.03220423683524132, -0.001769874943420291, 0.04432261362671852, -0.03276140242815018, 0.0009811357595026493, 0.025197865441441536, 0.01852579414844513, 0.00557863200083375, 0.006814845371991396, 0.007166557013988495, -0.017676115036010742, -0.005735334940254688, -0.020489806309342384, 0.027607610449194908, -0.021283768117427826, -0.014987784437835217, -0.010133469477295876, 0.023582082241773605, -0.019918709993362427, 0.017801476642489433, -0.01528029702603817, -0.0063064307905733585, -0.010056858882308006, -0.012557145208120346, 0.02595004066824913, -0.02799762785434723, -0.011115476489067078, -0.03267782926559448, 0.025197865441441536, -0.01284269243478775, -0.021423060446977615, 0.005226920358836651, -0.011944261379539967, 0.02313634753227234, -0.007835157215595245, 0.0005488962633535266, -0.006247231736779213, -0.0041857147589325905, 0.03030986897647381, 0.02583860605955124, 0.0010725458851084113, 0.01824720948934555, 0.016561780124902725, 0.0010890868725255132, -0.006536262109875679, -0.017481105402112007, -0.014500264078378677, 0.032120659947395325, 0.005850250367075205, -0.03231567144393921, -0.007668007165193558, -0.00044834509026259184, -0.030337728559970856, -0.0038688264321535826, 0.041174620389938354, -0.015447447076439857, -0.026590781286358833, 0.014834564179182053, 0.03713516145944595, 0.004756811074912548, 0.020782317966222763, 0.00993149634450674, -0.04390473663806915, -0.022662756964564323, -0.03301212936639786, 0.006128834094852209, 0.004352864809334278, 0.0073894234374165535, 0.015893179923295975, -0.016157835721969604, 0.0054288930259644985, 0.033597152680158615, -0.02798369899392128, 0.017397530376911163, -0.0035658669658005238, -0.0012832245556637645, -0.01607426069676876, 0.01877651922404766, -0.025072501972317696, 0.016422489657998085, 0.030588453635573387, -0.0182332806289196, 0.00479859858751297, -0.01647820509970188, -0.027524035423994064, 0.005568184889853001, -0.006041776854544878, 0.02218916453421116, 0.01033544261008501, 0.02393031120300293, -0.02273240126669407, -0.002690070541575551, -0.014026672579348087, 0.0026883294340223074, -0.03217637911438942, -0.0049135140143334866, 0.0003845756291411817, 0.02068481408059597, -0.0030609345994889736, 0.016715001314878464, -0.00899824220687151, 0.010432946495711803, -0.026702215895056725, -0.006497956812381744, 0.0074103171937167645, 0.006128834094852209, -0.014625626616179943, 0.01879044808447361, -0.024779990315437317, -0.0047533283941447735, -0.0018543205223977566, -0.01337896566838026, -0.012543215416371822, 0.00797444861382246, 0.00387230864726007, -0.00398722430691123, -0.0017916392534971237, -0.008845021948218346, 0.0048055630177259445, -0.01046776957809925, -0.041564635932445526, -0.008058023639023304, -0.02352636493742466, -0.0005432375473901629, 0.00851072184741497, -0.0022373725660145283, 0.019681913778185844, 0.004795115906745195, -0.01197212003171444, -0.021046973764896393, 0.0034631392918527126, 0.0005458492669276893, -0.02147877775132656, -0.004471262916922569, -0.01661749742925167, 0.0014286102959886193, 0.013267532922327518, -0.008531615138053894, 0.015781747177243233, -0.050367873162031174, -0.008914667181670666, 0.0014373160665854812, 0.01678464747965336, 0.001906554913148284, 0.005787569098174572, -0.019027244299650192, -0.005676135886460543, 0.03557509556412697, -0.013302355073392391, 0.016659284010529518, 0.027607610449194908, -0.03231567144393921, 0.007619254756718874, 9.783064160728827e-05, 0.00044333928963169456, -0.0032002264633774757, 0.0019970943685621023, -0.020503735169768333, 0.001711546559818089, -0.008266961202025414, 0.022885622456669807, 0.009318613447248936, 0.02351243607699871, 0.026047544553875923, 0.0007147404248826206, 0.009499692358076572, 0.015349943190813065, -0.004809045232832432, -0.015433518216013908, 0.01947297714650631, -0.025504305958747864, 0.028429431840777397, 0.021325556561350822, -0.007856050506234169, -0.0019448600942268968, -0.015154934488236904, -0.016004614531993866, 0.01431918516755104, 0.023442789912223816, 0.022091660648584366, 0.03485077992081642, -0.01824720948934555, -0.007605325896292925, 0.011199051514267921, -0.005596043076366186, 0.043347571045160294, -0.014458476565778255, -0.006160174496471882, 0.017787547782063484, 0.018692944198846817, 0.010997078381478786, 0.008002307265996933, -0.00127713056281209, -0.013560045510530472, 0.036577995866537094, 0.01541958935558796, 0.002014505909755826, 0.04404402896761894, 0.009854886680841446, 0.018595438450574875, -0.0062507139518857, 0.03175850212574005, -0.007027265150099993, -0.0031149100977927446, 0.010983148589730263, 0.020378373563289642, -0.017871122807264328, 0.023582082241773605, -0.0002840244269464165, 0.03195350989699364, -0.01547530572861433, -0.02582467719912529, 0.011366200633347034, -0.002747528487816453, -0.020712673664093018, -0.006438757758587599, -0.020629098638892174, 0.015990685671567917, -0.006776540074497461, 0.022537393495440483, 0.010189186781644821, 0.019779417663812637, 0.017815405502915382, 0.011310484260320663, 0.007640148513019085, 0.018470076844096184, -0.004690647125244141, 0.016143904998898506, 0.0029669126961380243, -0.011735323816537857, -0.028749803081154823, -0.011101546697318554, -0.01989085227251053, 0.006651177536696196, -0.028861235827207565, -0.0033134007826447487, -0.010760282166302204, -0.0021241980139166117, -0.0026952940970659256, -0.011352271772921085, 0.008608225733041763, -0.0175925400108099, 0.024013886228203773, -0.006574567407369614, -0.035909395664930344, 0.007911767810583115, 0.010391158983111382, 0.012125340290367603, 0.007459069602191448, -0.018219351768493652, -0.0035693494137376547, 0.01596282608807087, 0.03003128618001938, 0.013873451389372349, -0.012494463473558426, -0.030087003484368324, 0.00645965151488781, 0.009102711454033852, 0.03465576842427254, 0.034822918474674225, -0.023456718772649765, 0.0038026629481464624, -0.0014538569375872612, -0.01305162999778986, 0.01033544261008501, -0.02866622805595398, -0.011387094855308533, 0.014500264078378677, -0.005533361807465553, -0.018818305805325508, -0.03167492896318436, -0.019403330981731415, -0.017620397731661797, 0.015739960595965385, -0.015795676037669182, -0.014047565869987011, 3.914858098141849e-05, 0.0009733006008900702, 0.00351537368260324, -0.009576302953064442, -0.01593496836721897, 0.016324985772371292, -0.004272772464901209, 0.007981413044035435, -0.004910031799226999, 0.0034840330481529236, 0.012619826011359692, 0.07287740707397461, 0.014514192938804626, 0.0005828486173413694, 0.016129976138472557, -0.004777704831212759, -0.028220495209097862, -0.017146805301308632, -0.04435047134757042, 0.04546480253338814, 0.0010577462380751967, -0.004241431597620249, 0.012668577954173088, -0.0020040590316057205, -0.0007508692215196788, 0.011206015944480896, -0.004485192243009806, 0.0015948897926136851, -0.014193822629749775, -0.006884491071105003, -0.006289019249379635, 0.01931975595653057, 0.01399184949696064, 0.02313634753227234, 0.013218780048191547, 0.018442219123244286, 0.01155424490571022, 0.019514763727784157, 0.01163085550069809, 0.001488679787144065, -0.014737059362232685, -0.03487863764166832, 0.014416689053177834, 0.009395224042236805, 0.019291898235678673, -0.033736445009708405, 0.02512821927666664, -0.012480534613132477, 0.009611126035451889, -0.027760831639170647, 0.0005980836576782167, -0.0022983127273619175, 0.01526636816561222, -0.0018578027375042439, -0.02204987220466137, 0.00797444861382246, -0.015113146975636482, -0.006978513207286596, 0.044656913727521896, -0.013699336908757687, -0.0025803784374147654, 0.00405338779091835, 0.014082388952374458, -0.021604139357805252, -0.012264632619917393, -0.019779417663812637, -0.0011178157292306423, -0.005829356610774994, -0.01610211841762066, -0.01892973855137825, -0.0002603013126645237, -0.027677256613969803, -0.018497934564948082, -0.0078072985634207726, -0.02391638234257698, -0.012619826011359692, -0.046021971851587296, -0.022272739559412003, 0.0021938439458608627, -0.016324985772371292, 0.011261732317507267, -0.03253853693604469, -0.02202201448380947, -0.019904781132936478, 0.015767818316817284, 0.05437947064638138, 0.004621001426130533, 0.01176318246871233, 0.002441086806356907, -0.002056293422356248, 0.009353436529636383, -0.015642454847693443, -0.01633891463279724, 0.004582696128636599, -0.010300619527697563, 0.006814845371991396, -0.014528121799230576, -0.010502592660486698, 0.0077515821903944016, 0.0024306399282068014, 0.01958440989255905, -0.006299466360360384, -0.012661613523960114, -0.0018543205223977566, 0.007264060899615288, 0.02787226438522339, 0.016868222504854202, 0.0074103171937167645, -0.0035171150229871273, 0.027914052829146385, -0.02528144046664238, 0.01730002649128437, -0.028290139511227608, -0.03855593875050545, -0.01337896566838026, 0.009708629921078682, -0.0021955850534141064, 0.0023609939962625504, 0.0016915233572944999, 0.008872879669070244, -0.008594296872615814, 0.003893202403560281, -0.009248967282474041, -0.007716759108006954, -0.012320348992943764, -0.018414359539747238, -0.019974427297711372, 0.01638070121407509, 0.013803805224597454, 0.018010415136814117, -0.00719441520050168, -0.0004050340794492513, -0.005052805878221989, 0.03014271892607212, -0.027955839410424232, -0.017383601516485214, 0.00945790484547615, 0.04340328648686409, -0.023888522759079933, -0.022063802927732468, 0.004951819311827421, 0.000493179599288851, 0.006605907808989286, -0.010662778280675411, 0.004276254680007696, -0.013692372478544712, 0.001102145412005484, -0.004641895182430744, 0.01298198476433754, -0.006581531837582588, -0.011888545006513596, -0.019765488803386688, 0.009492727927863598, -0.007883909158408642, -0.0256993155926466, 0.010154363699257374, -0.024766061455011368, -0.020197292789816856, 0.018887951970100403, -0.005905967205762863, 0.015433518216013908, -0.017815405502915382, -0.022899551317095757, -0.024167107418179512, -0.009381294250488281, -0.005892037879675627, -0.009771311655640602, -0.02621469460427761, -0.0011822381056845188, 0.049838561564683914, 0.03401502966880798, 0.0060696350410580635, 0.0030417819507420063, 0.024083532392978668, 0.016589639708399773, 0.008691800758242607, -0.010182221420109272, -0.03128490969538689, -0.01998835615813732, -0.0009645948885008693, 0.015517093241214752, 0.005024947226047516, 0.006773057859390974, -0.014193822629749775, -0.006100975442677736, -0.0003893637622240931, 0.0182611383497715, -0.01229945570230484, -0.011742288246750832, -0.027384744957089424, -0.05312584713101387, 5.558064367505722e-05, 0.019542623311281204, 0.0202808678150177, 0.010035965591669083, -0.027384744957089424, 0.01351825799793005, 0.0338200181722641, 0.015851393342018127, 0.04123033583164215, 0.008817163296043873, 0.015795676037669182, 0.0017254756530746818, 0.000538884662091732, 0.009827028028666973, -0.002777127781882882, -0.017244309186935425, -0.016798576340079308, -0.042372528463602066, 0.016185693442821503, 0.019361544400453568, 0.020378373563289642, -0.0005741429049521685, 0.0014991266652941704, 0.002885079011321068, 0.004143927711993456, 0.027203664183616638, -0.021590210497379303, -0.017397530376911163, 0.006578049622476101, -0.03067202866077423, -0.01824720948934555, -0.010829928331077099, -0.011853721924126148, 0.014075424522161484, -0.011219944804906845, 0.0026587299071252346, 0.012215880677103996, 0.01624141074717045, -0.02380494773387909, -0.01378291193395853, 0.012703401036560535, 0.014764918014407158, 0.013532186858355999, 0.017606468871235847, 0.02337314374744892, 0.008538579568266869, 0.015614597126841545, -0.011651748791337013, -0.0077724759466946125, -0.0010011589620262384, 0.007967484183609486, -0.001010735286399722, 0.04095175489783287, -0.010579203255474567, 0.001189202768728137, 0.012968054972589016, 0.0005824133404530585, -0.0013328472850844264, -0.038472361862659454, 0.01948690600693226, 0.008663942106068134, -0.0014582098228856921, -0.021200193092226982, -0.02986413612961769, -0.026966869831085205, 0.019709773361682892, 0.0005436728242784739, 0.030365586280822754, 0.01809399016201496, 0.0013990107690915465, -0.015363872051239014, 0.027649398893117905, -0.013225745409727097, 0.02228666841983795, 0.013044665567576885, 0.00309227523393929, -0.019236180931329727, -0.020322656258940697, -0.0023679586593061686, 0.0047533283941447735, 0.017745759338140488, 0.008253032341599464, -0.023359214887022972, -0.0007208344177342951, 0.003788733622059226, 0.030365586280822754, 0.008594296872615814, -0.010906538926064968, -0.022328456863760948, 0.030477019026875496, -0.011052794754505157, 0.004269289784133434, -0.006295984145253897, -0.022634897381067276, 0.018497934564948082, -0.039558835327625275, -0.020058002322912216, 0.002566449111327529, -0.00712825171649456, -0.00797444861382246, 0.02214737795293331, -0.004993606824427843, 0.0025385909248143435, -0.007264060899615288, 0.002930348739027977, -0.014019707217812538, -0.01271733082830906, -0.004896102473139763, 0.016728930175304413, -0.031563494354486465, -0.030894894152879715, -0.009102711454033852, 0.004377241246402264, 0.0010890868725255132, -0.004819492343813181, -0.017244309186935425, 0.020071931183338165, 0.048752088099718094, 0.0002703129139263183, 0.0029286076314747334, 0.0024306399282068014, 0.019542623311281204, -0.052791547030210495, 0.024793919175863266, -0.010537415742874146, -0.0028798554558306932, 0.01691000908613205, -0.0003253766626585275, -0.044684771448373795, -0.018428288400173187, 0.017355743795633316, -0.00359720760025084, -0.006403935141861439, -0.0007325871847569942, 0.022412031888961792, 0.02246774733066559, 0.007208344526588917, -0.016394630074501038, -0.02961341105401516, 0.02163199707865715, 0.0015426554018631577, 0.009513622149825096, 0.013880415819585323, -0.022634897381067276, 0.0128496577963233, 0.006992442533373833, 0.012571074068546295, 0.005742299370467663, -0.019096888601779938, -0.041564635932445526, -0.003914096392691135, -0.01046776957809925, -0.004513050429522991, -0.017411459237337112, -0.004854314960539341, -0.002726634731516242, -0.01852579414844513, 0.012013907544314861, 0.02150663547217846, -0.0008505498408339918, 0.004011600278317928, -0.004269289784133434, 0.002482874086126685, -0.0007652336498722434, -0.011470669880509377, -0.020489806309342384, -0.029780561104416847, -0.00628205481916666, -0.026061473414301872, -0.015349943190813065, -0.017369672656059265, 0.02273240126669407, 0.005603007972240448, 0.0026674356777220964, -0.04011600464582443, -0.025476448237895966, -0.042790405452251434, -0.010244903154671192, -0.03852807730436325, 0.02404174394905567, 0.03446076065301895, 0.01608818955719471, 0.010648848488926888, 0.013490399345755577, -0.010788140818476677, 0.022314528003335, -0.003729534801095724, -0.016157835721969604, -0.008092846721410751, -0.03404288738965988, 0.022063802927732468, -0.03095061145722866, -0.04538122937083244, 0.011526386253535748, -0.00038196390960365534, -0.005202544387429953, 0.007514785975217819, 0.011073688976466656, -0.0250167865306139, 0.0038897201884537935, 0.004464298486709595, 0.001715899328701198, 0.02581074833869934, 0.02108876034617424, 0.006908867508172989, -0.041703928261995316, -0.014472405426204205, 0.018567580729722977, 0.0005214732373133302, -0.014214715920388699, 0.0056517599150538445, 0.009736488573253155, 0.014472405426204205, 0.0118188988417387, -0.005366211757063866, -0.0202947985380888, -0.007396388333290815, -0.0037051585968583822, 0.004499121103435755, 0.004875208716839552, -0.010265796445310116, 0.00959023181349039, 0.00020752284035552293, 0.013330213725566864, -0.014528121799230576, 0.023763161152601242, 0.02514214813709259, 0.008190350607037544, 0.0284015741199255, -0.007695865351706743, -0.014932068064808846, -0.005467198323458433, 0.024584980681538582, 0.005185132846236229, -0.022815976291894913, -0.015642454847693443, -0.008364465087652206, -0.02135341428220272, -0.0064561692997813225, 0.01944511942565441, 0.003262907499447465, 0.012215880677103996, -0.01906903088092804, -0.0006098363664932549, -0.007765511050820351, -0.0049135140143334866, -0.006532779894769192, -0.020587310194969177, -0.023693514987826347, 0.007264060899615288, 0.010593132115900517, -0.047916337847709656, -0.00770979467779398, 0.025504305958747864, -0.03813806176185608, -1.7479473171988502e-05, 0.21272625029087067, 0.0015017384430393577, 0.0019344132160767913, 0.039140962064266205, -0.003175850259140134, -0.000659023760817945, 0.005850250367075205, 0.0016297126421704888, 0.006630283780395985, 0.00703074736520648, 0.03621583804488182, -0.011825863271951675, 0.0007360694580711424, -0.0024776507634669542, 0.014973855577409267, -0.011407988145947456, -0.02877766080200672, -0.015447447076439857, -0.01703537255525589, -0.002582119544968009, 0.027607610449194908, -0.013016807846724987, -0.007612290326505899, -0.008475898765027523, 0.03301212936639786, 0.029501978307962418, -0.016673214733600616, 0.016185693442821503, 0.02557395212352276, 0.021590210497379303, -0.02812298946082592, -0.009033065289258957, 0.042511820793151855, 0.00753567973151803, 0.00019631421309895813, -0.014834564179182053, 0.022342385724186897, -0.03056059405207634, 0.017146805301308632, -0.0029129371978342533, -0.004725470207631588, -0.020239081233739853, 0.014973855577409267, -0.03499006852507591, 0.02461284026503563, -0.0015365612925961614, 0.0029529836028814316, -0.00974345300346613, 0.01664535515010357, 0.0351850800216198, -0.0067660934291779995, 0.007946589961647987, 0.004969230853021145, 0.0073894234374165535, 0.004049905575811863, 0.003557161195203662, 0.009827028028666973, -0.0010420759208500385, -0.010760282166302204, 0.029418403282761574, -0.011310484260320663, 0.00476725772023201, 0.011254767887294292, 0.00715959258377552, -0.030254153534770012, 0.011470669880509377, 0.002705740975216031, -0.0033081774599850178, -0.0006947172805666924, -0.005589078646153212, -0.004384205676615238, -0.006330806761980057, -0.03195350989699364, 0.0018020861316472292, -0.009625054895877838, -0.0071526276879012585, -0.003910613711923361, 0.023219922557473183, 0.03487863764166832, 0.009548444300889969, 0.012912338599562645, 0.012201950885355473, 0.0021659855265170336, 0.005324424244463444, 0.0007134345942176878, -0.013156099244952202, 0.044127605855464935, -0.0032472372986376286, -0.022217022255063057, -0.011052794754505157, -0.02877766080200672, 0.003687747288495302, -0.012146234512329102, 0.0007987507269717753, -0.01635284349322319, -0.010474734008312225, 0.015029571950435638, 0.03189779445528984, -0.0031566976103931665, -0.02837371453642845, -0.027217594906687737, 0.024779990315437317, 0.027273310348391533, 0.014723130501806736, -0.020044073462486267, 0.013685407117009163, 0.008162492886185646, 0.01567031443119049, -0.012557145208120346, -0.008127669803798199, -0.016143904998898506, -0.02503071539103985, 0.015224580653011799, 0.007598361000418663, 0.007173521444201469, 0.017954697832465172, 0.012828763574361801, -0.002726634731516242, 0.009889708831906319, 0.01372023019939661, 0.043068986386060715, -0.009820063598453999, -0.001185720437206328, 0.013901310041546822, 0.0006411770009435713, -0.035742245614528656, -0.014186857268214226, 0.019904781132936478, -0.02692508138716221, -0.01824720948934555, 0.04919782280921936, 0.003490997711196542, 0.024668555706739426, -0.01948690600693226, -0.007361565250903368, -0.03122919425368309, 0.0014068459859117866, -0.01785719394683838, -0.0025560022331774235, -0.01168657187372446, -0.0040568700060248375, -0.009499692358076572, 0.03797091171145439, 0.013135205022990704, 0.016394630074501038, -0.0046244836412370205, 0.006396970245987177, 0.004352864809334278, 0.0014451511669903994, -0.0364665612578392, 0.018414359539747238, 0.015517093241214752, -0.0029320898465812206, -0.00041591626359149814, 0.02391638234257698, -0.038723088800907135, -0.031702786684036255, -0.022802047431468964, 0.010098646394908428, 0.0005327906692400575, -0.03407074511051178, 0.015795676037669182, 0.026298269629478455, -0.000306659349007532, -0.03030986897647381, -0.010802069678902626, -0.17907337844371796, 0.01717466488480568, 0.006602425593882799, -0.0015800900291651487, -0.0035623847506940365, 0.006752164103090763, 0.011414953507483006, -0.00047925044782459736, -0.03214852139353752, -0.012146234512329102, 0.02163199707865715, -0.006860115099698305, -0.027802620083093643, -0.024835705757141113, 0.0016149128787219524, -0.01324663870036602, -0.012250702828168869, 0.004551355727016926, 0.026590781286358833, 0.006170621607452631, 0.04019957780838013, -0.008232138119637966, 0.005317459814250469, -0.01583746448159218, 0.002731858054175973, 0.0032350493129342794, -0.007009853608906269, 0.023679586127400398, 0.016589639708399773, -0.031591352075338364, -0.019236180931329727, -0.010272761806845665, 0.019013313576579094, -0.0019100371282547712, -0.003506668144837022, 0.005303530488163233, 0.0014982561115175486, -0.013608797453343868, 0.008622154593467712, 0.02203594334423542, 0.031145619228482246, 0.0027701633516699076, 0.02164592780172825, 0.016533922404050827, -0.00974345300346613, 0.033736445009708405, 0.026674356311559677, -0.012188022024929523, 0.008113740012049675, -0.012320348992943764, 0.01809399016201496, -0.029669128358364105, -0.013295390643179417, -0.008900738321244717, 0.01647820509970188, 0.0018926257034763694, 0.010704565793275833, 0.0018665085081011057, 0.0032228613272309303, -0.0010220527183264494, -0.0036668535321950912, -0.022370243445038795, -0.013950061984360218, -0.0018891433719545603, -0.02663256973028183, -0.027008656412363052, -0.008009271696209908, 0.0064561692997813225, -0.024640697985887527, 0.026298269629478455, -0.00174114597029984, 0.01406149473041296, -0.01840043067932129, 0.0014268691884353757, 0.04499121382832527, 0.0007730688084848225, -0.039530977606773376, -0.0005245202337391675, 0.01810791902244091, 0.007124769501388073, 0.020893752574920654, 0.0004879561602137983, -0.0017376637551933527, -0.0038688264321535826, -0.02135341428220272, 0.009395224042236805, -0.009673806838691235, 0.011888545006513596, -0.02003014273941517, 0.0062193735502660275, 0.015642454847693443, -0.022899551317095757, 0.007856050506234169, 0.0097991693764925, 0.006602425593882799, 0.006080081686377525, 0.02905624359846115, -0.004816009663045406, 0.016060329973697662, -0.013922203332185745, 0.0008492439519613981, 0.013706301338970661, -0.03691229596734047, 0.022509535774588585, 0.007661042269319296, 0.022899551317095757, 0.013977919705212116, 0.00401856517419219, 0.006369112059473991, -0.02732902765274048, -0.012793940491974354, 0.01675678975880146, 0.01190943829715252, -0.007932661101222038, -0.019305827096104622, 0.02773297391831875, 0.014444546774029732, -0.012529286555945873, 0.02473820187151432, -0.013866486959159374, 0.06557852029800415, -0.019640127196907997, -0.03827735409140587, -0.011366200633347034, 0.003590242937207222, -0.032371386885643005, -0.11109904199838638, -0.018191494047641754, 0.02635398507118225, 0.00959719717502594, -0.004248396027833223, 0.012055695056915283, -0.008545544929802418, 0.03390359506011009, -0.013734159991145134, 0.026423631235957146, -0.0017394048627465963, -0.01678464747965336, 0.015879251062870026, -0.0040777637623250484, 0.014528121799230576, -0.02083803527057171, -0.00885198637843132, -0.022788118571043015, -0.0020493287593126297, 0.02961341105401516, 0.005989542230963707, -0.008134634234011173, 0.00048403858090750873, -0.00130150665063411, -0.003893202403560281, -0.013532186858355999, -0.027746902778744698, 0.006194997578859329, 0.018052201718091965, 0.008468934334814548, 0.046300552785396576, -0.010286690667271614, 0.024250680580735207, -0.008176421746611595, -0.024362115189433098, 0.008399288170039654, -0.027064373716711998, -0.018623298034071922, 0.00719441520050168, -0.02204987220466137, -0.0054045170545578, 0.017801476642489433, -0.008845021948218346, -0.04543694481253624, 0.006501439027488232, -0.006390005815774202, -0.0012336019426584244, 0.03551938012242317, 0.0015644197119399905, -0.024947140365839005, -0.012188022024929523, -0.021172335371375084, -0.02269061468541622, -0.037775903940200806, 0.01894366927444935, 0.0008749258704483509, 0.0025211793836206198, 0.0065641202963888645, -0.026117190718650818, 0.021980227902531624, -0.01433311402797699, 0.003536267438903451, -0.023888522759079933, 0.024292469024658203, 0.029362685978412628, -0.004673236049711704, -0.017926840111613274, -0.020378373563289642, 0.0010882162023335695, -0.004575731698423624, -0.0097991693764925, 0.011115476489067078, -0.041982512921094894, 0.020991256460547447, -0.01033544261008501, 0.0002448486629873514, -0.0045896610245108604, -0.013629690743982792, 0.005251296330243349, 0.014374901540577412, -0.005460233893245459, -0.015642454847693443, 0.014500264078378677, -0.028833378106355667, 0.008810198865830898, -0.006020883098244667, -0.0007817745790816844, -0.006675553973764181, 0.0108090341091156, -0.028499078005552292, -0.01291930302977562, 0.01528029702603817, 0.016701072454452515, -0.00013102123921271414, -0.002354029333218932, -0.009053959511220455, -0.0059198965318500996, -0.004791633691638708, 0.009924531914293766, 0.0016749824862927198, -0.007236202713102102, 0.009813099168241024, -0.05552166327834129, 0.0061775860376656055, 0.013218780048191547, 0.00706208823248744, 0.0036041722632944584, -0.021186264231801033, 0.0004106928245164454, -0.011770146898925304, 0.008482863195240498, -0.006884491071105003, -0.00547068053856492, 0.017355743795633316, -0.005721405614167452, -0.010495628230273724, -0.03326285257935524, -0.028331927955150604, 0.015433518216013908, 0.0026883294340223074, 0.014416689053177834, -0.00652581499889493, -0.02245381847023964, -0.013476470485329628, -0.007058606017380953, 0.038583796471357346, -0.009764347225427628, 0.02540680207312107, -0.01345557626336813, 0.012062659487128258, -0.020573381334543228, -0.030337728559970856, -0.0020737049635499716, -0.010655813850462437, -0.00036085251485928893, 0.03014271892607212, 0.0022582663223147392, -0.03529651090502739, 0.007051641121506691, 0.021952368319034576, 0.003182814922183752, 0.021840935572981834, -0.0016984879039227962, -0.009903638623654842, 0.015127076767385006, -0.021395202726125717, -0.023024914786219597, -0.00851072184741497, -0.03259425237774849, 0.008824127726256847, -0.0011282626073807478, 0.011387094855308533, 0.019389402121305466, 0.011101546697318554, -0.04705272987484932, -0.02337314374744892, 0.01567031443119049, 0.004318042192608118, 0.015196722000837326, 0.015753889456391335, 0.002789316000416875, 0.006174103822559118, 0.042539678514003754, -0.0047742221504449844, 0.002263489877805114, -0.02958555333316326, 0.03719087690114975, -0.024167107418179512, -0.042400386184453964, -0.014444546774029732, 0.013546115718781948, -0.018052201718091965, -0.007093428634107113, -0.021701643243432045, 0.02380494773387909, 0.008810198865830898, -0.007069052662700415, 0.003104463219642639, -0.0016775941476225853, -0.009443975985050201, 0.003771322313696146, 0.026047544553875923, 0.0049135140143334866, -0.019124748185276985, 0.012800905853509903, 0.012968054972589016, 0.0114915631711483, 0.007897838018834591, -0.022356314584612846, 0.02015550620853901, 0.012961090542376041, 0.011004042811691761, -0.030783461406826973, -0.0012161905178800225, -0.010460805147886276, 0.0015139264287427068, 0.01541958935558796, 0.012215880677103996, -0.009151463396847248, 0.030894894152879715, 0.040896035730838776, -0.003158438950777054, -0.009548444300889969, 0.015154934488236904, -0.005219955928623676, -0.008705729618668556, -0.020615167915821075, 0.010244903154671192, -0.019222252070903778, -0.007876944728195667, 0.010126505047082901, 0.024766061455011368, 0.014583839103579521, -0.022913482040166855, 0.014569909311830997, 0.019904781132936478, -0.010405088774859905, -0.005599525757133961, -0.0006102717015892267, -0.02349850721657276, -0.017940768972039223, 0.02810906060039997, 0.020169435068964958, 0.005623901728540659, 0.015461376868188381, -0.004986641928553581, 0.014486334286630154, 0.0014495040522888303, 0.01330932043492794, -0.009896674193441868, -0.0018595439614728093, -0.006309913005679846, 0.007243167143315077, -0.013678442686796188, -0.017926840111613274, -0.0216180682182312, -0.006536262109875679, -0.006783504970371723, -0.016993584111332893, 0.033457860350608826, -0.016868222504854202, 0.07638755440711975, 0.028582653030753136, -0.022133447229862213, 0.005770158022642136, -0.022941339761018753, 0.020517664030194283, 0.020977327600121498, 0.011582103557884693, -0.021200193092226982, -0.013232709839940071, 0.028471220284700394, -0.004690647125244141, -0.0056308661587536335, -0.01624141074717045, -0.03390359506011009, 0.01580960489809513, -0.004175268113613129, -0.00033473531948402524, 0.0009193251025862992, 0.006626801565289497, 0.006497956812381744, 0.0005745781818404794, -0.0009776534279808402, 0.006473580840975046, -0.016004614531993866, -0.020058002322912216, 0.015739960595965385, 0.01176318246871233, -0.015921039506793022, -0.018846163526177406, 0.016673214733600616, -0.02989199385046959, -0.04666271433234215, -0.021687714383006096, -0.024515336379408836, 0.014514192938804626, -0.01635284349322319, -0.026117190718650818, 0.0050632525235414505, 0.01486242190003395, -0.020058002322912216, 0.02610325999557972, -0.01853972300887108, -0.023609939962625504, 0.016060329973697662, 0.002930348739027977, -0.007723723538219929, 0.0012788717867806554, -0.0026326128281652927], "d4a49c63-7213-455a-8413-e4845faf8793": [-0.0029822636861354113, -0.024969425052404404, -0.0035326462239027023, -0.004216667730361223, -0.008665446192026138, 0.033648937940597534, -0.00449801329523325, -0.027923554182052612, -0.007603365927934647, -0.022170037031173706, 0.02392844669520855, 0.0009134941501542926, 0.013399085961282253, -0.023182880133390427, 0.0034464842174202204, 0.018990831449627876, 0.021227529272437096, -0.0014656349085271358, 0.007983182556927204, 0.00017924794519785792, -0.022606121376156807, -0.007054741960018873, -0.008630277588963509, 0.004329205956310034, -0.03035719506442547, -0.004863762762397528, 0.009558717720210552, -0.003228441346436739, -0.009439146146178246, 0.021143125370144844, 0.01576942391693592, 0.010304284282028675, -0.026727836579084396, -0.009214069694280624, -0.02834557369351387, 0.011844651773571968, 0.02008807845413685, -0.019201839342713356, 0.00027914761449210346, -0.0240128505975008, 0.020411625504493713, 0.021157192066311836, -0.001441896427422762, -0.024280129000544548, -0.01157033909112215, 0.047547414898872375, -0.017879515886306763, -0.006034864112734795, -0.009980736300349236, 0.025827530771493912, 0.009882265701889992, -0.0017100539989769459, -0.03407095745205879, 0.006281041540205479, 0.006688992492854595, -0.00928440596908331, -0.0006356653175316751, -0.003952906467020512, 0.021818354725837708, -0.00214174366556108, 0.01792171783745289, -0.009277372620999813, -0.005247096065431833, 0.0011016440112143755, -0.015867894515395164, -0.015136395581066608, 0.004705505911260843, -0.011929054744541645, -0.010058106854557991, -0.005391285754740238, 0.045803070068359375, 0.029231812804937363, 0.0034042822662740946, -0.01095137931406498, 0.010655966587364674, -0.0065975552424788475, -0.021227529272437096, -0.016599392518401146, 0.006101683713495731, 0.006411163602024317, 0.0251522995531559, -0.027332728728652, -0.029625695198774338, 0.009706424549221992, 0.03128563612699509, 0.03122936561703682, 0.031341902911663055, 0.0019465601071715355, -0.0007095185574144125, 0.0013293582014739513, 0.007072326261550188, 0.015051991678774357, 0.020299088209867477, 0.026151077821850777, 0.006186087150126696, 0.008813152089715004, 0.0113522969186306, 0.010895109735429287, 0.0005081805866211653, -0.014939453452825546, -0.010726302862167358, -0.013821104541420937, -0.024814685806632042, -0.01149296946823597, -0.033086247742176056, -0.010824773460626602, 0.01327248103916645, -0.010965446010231972, 0.021058721467852592, 0.020805509760975838, -0.034155361354351044, 0.022760862484574318, -0.004522631410509348, 0.007856576703488827, 0.007058258634060621, -0.024097254499793053, 0.00994556862860918, -0.012941899709403515, -0.0210446547716856, -0.04315842315554619, 0.008869421668350697, -0.0071074943989515305, 0.025461779907345772, -0.018596947193145752, 0.022001229226589203, 0.010641898959875107, 0.00871468149125576, -0.004230734892189503, 0.01676820032298565, -0.018822023645043373, 0.0068402159959077835, 0.008904589340090752, -0.005317432805895805, 0.012104895897209644, 0.005088839214295149, -0.0015693811001256108, -0.019103368744254112, 0.009537617675960064, 0.0034288999158889055, -0.009031195193529129, 0.014855049550533295, 0.02256392128765583, 0.005996178835630417, -0.01398991234600544, 0.005735934246331453, 0.038431815803050995, 0.008538840338587761, 0.00408302852883935, 0.009375843219459057, 0.005243579391390085, 0.003541438141837716, -0.024055052548646927, -0.002915444318205118, -0.011992357671260834, 0.01742936298251152, 0.01450336817651987, -0.00288203451782465, 0.020411625504493713, -0.0008567853947170079, 0.004455811809748411, -0.01728869043290615, 0.007680736016482115, 0.01478471327573061, 0.004230734892189503, 0.006182570476084948, 0.034239765256643295, 0.0042764535173773766, -0.019342511892318726, -0.017541900277137756, -0.007293885573744774, -0.005211927928030491, 0.026122942566871643, -0.03466178476810455, 0.018498476594686508, 0.001995795639231801, -4.34657049481757e-05, 0.018962696194648743, -0.005735934246331453, -0.008327830582857132, -0.023239150643348694, 0.029175542294979095, -0.001958868931978941, -0.007314986549317837, 0.038291141390800476, -0.02682630717754364, -0.014299391768872738, 0.02826116979122162, 0.01066299993544817, -0.008918656967580318, 0.0031405207701027393, -3.5113254853058606e-05, 0.01778104528784752, 0.0006809443584643304, 0.007518962025642395, -0.6212111711502075, -0.0159804318100214, -0.0001655103696975857, -0.02631988562643528, 0.027585940435528755, 0.009080430492758751, 0.005637463182210922, 0.0013495798921212554, -0.019539454951882362, 0.04560612887144089, -0.0035730896051973104, 0.0317920558154583, -0.02204343117773533, -0.00787767767906189, 0.0047899093478918076, -0.041104599833488464, -0.0029945727437734604, -0.015347404405474663, 0.0023984715808182955, 0.00630565918982029, -0.023450158536434174, -0.001893807901069522, 0.006878900807350874, 0.006249390076845884, 0.007511928677558899, -0.03722202777862549, 0.03902263939380646, -0.010508259758353233, -0.011795415543019772, 0.02691071107983589, -0.041245270520448685, 0.022381044924259186, 0.01413058489561081, -0.011647709645330906, 0.04090765491127968, 0.004455811809748411, -0.019187772646546364, 0.028472179546952248, -0.007525995839387178, 0.04459328576922417, -0.026854440569877625, 0.01735902577638626, 0.024378599599003792, 0.00300863990560174, 0.0024828752502799034, -0.0009970186511054635, 0.013054437935352325, 0.014137618243694305, -0.014629973098635674, -0.04403059184551239, 0.010691134259104729, -0.020059945061802864, -0.01835780218243599, 0.011218657717108727, 0.02942875400185585, -0.02001774311065674, 0.021002452820539474, -0.013216211460530758, -0.003984557464718819, -0.0014181578299030662, -0.007469726726412773, 0.015122327953577042, -0.01627584546804428, -0.015375539660453796, -0.03722202777862549, 0.006826148834079504, -0.01626177877187729, -0.021846488118171692, -0.0005675269057974219, -0.0036328756250441074, 0.017302757129073143, -0.006646790541708469, -0.010212847031652927, -0.01171804592013359, 0.003889603540301323, 0.018639149144291878, 0.019145570695400238, -0.003518578829243779, -0.0014366211835294962, 0.010796639136970043, 0.003974006976932287, -0.009896333329379559, -0.018625080585479736, 0.0022701076231896877, 0.029485022649168968, 0.01275902520865202, -0.02878165990114212, -0.003917737863957882, 0.0029119274113327265, -0.009411011822521687, 0.008749849162995815, 0.02719205617904663, -0.017119882628321648, -0.012379208579659462, 0.010248014703392982, 0.044565148651599884, -0.012512847781181335, 0.014461166225373745, 0.0076526012271642685, -0.03753150999546051, -0.011978290975093842, -0.023028140887618065, 0.019201839342713356, 0.007300919387489557, 0.02032722346484661, 0.030694808810949326, -0.03578716516494751, -0.027065450325608253, 0.03950092941522598, -0.037925392389297485, 0.006766362581402063, 0.004930582363158464, -0.007948013953864574, -0.018160860985517502, 0.0012185783125460148, -0.027895420789718628, 0.031566981226205826, 0.023548630997538567, -0.018920494243502617, -0.008644345216453075, -0.02141040377318859, -0.007082876283675432, 0.014545569196343422, 0.0005196102429181337, 0.021368201822042465, 0.008770950138568878, 0.017949851229786873, -0.020270952954888344, 0.02278899773955345, 0.003122936701402068, -0.0025989303831011057, -0.03466178476810455, 0.00856697466224432, 0.0028451078105717897, 0.021522941067814827, -0.005563610233366489, 0.033001843839883804, -0.005700766108930111, -0.0041498481296002865, -0.034155361354351044, -0.0018744653789326549, 0.006319726351648569, 0.012287771329283714, -0.017823247238993645, 0.011725079268217087, -0.022718660533428192, -0.01420795451849699, 0.003984557464718819, -0.003537921467795968, -0.036406125873327255, -0.009298473596572876, 0.00695978756994009, 0.0010568045545369387, 0.019722329452633858, 0.01669786311686039, 0.0037559643387794495, 0.00587660726159811, -0.042201846837997437, -0.016022633761167526, -0.025700924918055534, 0.008046485483646393, 0.00911559909582138, -0.0077440389432013035, -0.0026253066025674343, -0.008032417856156826, -0.0029963310807943344, -0.011049849912524223, -0.005405352916568518, -0.010747403837740421, -0.02205749787390232, 0.0032266827765852213, -0.00732202036306262, -0.00629159202799201, 0.005102906376123428, -0.007244650274515152, 0.009502449072897434, -0.01772477477788925, 0.0022138385102152824, 0.0041463314555585384, 0.01558654848486185, -0.006119267549365759, 0.0007073205197229981, -0.015544346533715725, -0.006667891517281532, 0.025321107357740402, 0.0048813470639288425, 0.015459942631423473, -0.00010237244714517146, -0.03688441216945648, 0.019258109852671623, 8.182102465070784e-05, 0.0020503064151853323, -0.00703364098444581, 0.013863306492567062, -0.02971009910106659, 0.027811016887426376, -0.01605076901614666, 0.02724832482635975, 0.0012801226694136858, 0.032636094838380814, 0.021635480225086212, 0.012337006628513336, 0.008763916790485382, -0.0017759943148121238, -0.010473091155290604, -0.011914988048374653, 0.011211623437702656, -0.026587162166833878, 0.03643425926566124, 0.02125566266477108, -0.003499236423522234, -0.0023175848182290792, -0.017162084579467773, -0.022577987983822823, 0.019258109852671623, 0.01171804592013359, 0.019905203953385353, 0.01561468280851841, -0.011788382194936275, -0.007870644330978394, 0.007265751250088215, -0.005925842560827732, 0.04588747397065163, -0.00036574932164512575, -0.009277372620999813, 0.013926609419286251, 0.010015904903411865, 0.010212847031652927, 0.005461622029542923, 9.581962331139948e-06, -0.00911559909582138, 0.020439760759472847, 0.008405201137065887, 0.008517739363014698, 0.04352417215704918, 0.002363303443416953, 0.02292967028915882, 0.00695978756994009, 0.04979817941784859, -0.002424847800284624, -0.011246792040765285, 0.011042816564440727, 0.017302757129073143, -0.017598168924450874, 0.03463364765048027, 0.00038992747431620955, 0.030497867614030838, -0.011668810620903969, -0.029963310807943344, 0.010346486233174801, 0.005454588681459427, -0.009010094217956066, -0.01844220608472824, -0.028528448194265366, 0.03153884783387184, -0.005992662161588669, 0.016543123871088028, 0.00511345686390996, 0.02703731693327427, 0.019215907901525497, -0.003399007022380829, 0.0008462349069304764, 0.021635480225086212, -0.0013100156793370843, 0.0009090980747714639, 0.012477679178118706, -0.010212847031652927, -0.02111499011516571, -0.005939909722656012, -0.012048627249896526, 0.01937064714729786, -0.030638540163636208, 0.00896789226680994, -0.018160860985517502, 0.006172019988298416, 0.0067452616058290005, -0.003843884915113449, 0.008377066813409328, -0.019567590206861496, 0.0344085730612278, -0.008081653155386448, -0.03865689039230347, 0.02408318780362606, 0.010691134259104729, -0.0005670873215422034, 0.0023967132437974215, -0.006284558214247227, 0.004656270146369934, 0.01377890259027481, 0.017668506130576134, 0.006541286129504442, -0.0146721750497818, -0.022451382130384445, 0.006365444976836443, -0.004536698572337627, 0.026840373873710632, 0.032495420426130295, -0.014327527023851871, -0.0007653480861335993, 0.005785169545561075, -0.01023394800722599, 0.016810402274131775, -0.020932115614414215, -0.012674621306359768, 0.02551805041730404, -0.011000614613294601, -0.02342202514410019, -0.04242692142724991, -0.03153884783387184, -0.029091138392686844, 0.006783946882933378, -0.010093274526298046, -0.017162084579467773, -0.02335168793797493, -0.004585933871567249, -0.0023369272239506245, -0.009382877498865128, -0.028978601098060608, 0.009692356921732426, -0.00254969485104084, -0.0029048938304185867, -0.006885934621095657, 0.001133295358158648, 0.014447098597884178, 0.06448441743850708, 0.02001774311065674, 0.0025971720460802317, 0.012737924233078957, -0.018315602093935013, -0.024899089708924294, -0.017443429678678513, -0.03865689039230347, 0.03333945944905281, -0.011218657717108727, -0.015544346533715725, 0.0004905964597128332, 0.0015324545092880726, -0.008292662911117077, 0.0023808875121176243, -0.0050536710768938065, -0.0010005354415625334, -0.016810402274131775, 0.003393731778487563, -0.012287771329283714, 0.011950155720114708, -0.00950948242098093, 0.027895420789718628, 0.018470341339707375, 0.0345773808658123, 0.024561474099755287, 0.006833182182163, 0.002287691691890359, 0.020355356857180595, -0.03302997723221779, -0.0231406781822443, 0.011099085211753845, 0.015783490613102913, 0.014489300549030304, -0.022226305678486824, 0.010149544104933739, -0.010824773460626602, -8.341458305949345e-05, -0.02705138362944126, 0.011000614613294601, -0.007638534065335989, 0.03345199674367905, 0.008749849162995815, -0.01823119819164276, 0.010437923483550549, -0.020552299916744232, 0.004603518173098564, 0.03241101652383804, -0.006639757193624973, -0.014060248620808125, -0.0007697441033087671, 0.02141040377318859, -0.02399878390133381, 0.007856576703488827, -0.007976149208843708, 0.007265751250088215, -0.008538840338587761, -0.017049545422196388, -0.015727221965789795, 0.0031756889075040817, -0.03421162813901901, -0.025475848466157913, 0.011535171419382095, -0.013961777091026306, 0.013342817313969135, -0.030047714710235596, -0.022254440933465958, -0.00036860673571936786, -0.014081349596381187, 0.010824773460626602, -0.02328135259449482, -0.0317920558154583, -0.021944960579276085, 0.022226305678486824, 0.029372485354542732, 0.011253825388848782, -0.0007240254199132323, -0.00732202036306262, -0.001623891876079142, 0.02197309397161007, -0.0034095575101673603, -0.02487095445394516, -7.747995550744236e-05, 0.0003521216567605734, -0.0020608569029718637, -0.009840063750743866, 0.0001847429812187329, 0.013581960462033749, -0.006611622404307127, 0.02450520545244217, -0.016022633761167526, -0.022170037031173706, 0.0011631883680820465, -0.013307648710906506, 0.029231812804937363, 0.014855049550533295, 0.016219576820731163, 0.0014234330737963319, 0.028472179546952248, -0.023801840841770172, 0.006590521428734064, -0.02892233245074749, -0.0243645329028368, -0.016303980723023415, 0.006798014044761658, 0.008475537411868572, 0.011767281219363213, 0.017007343471050262, 0.0073290541768074036, -0.010557495057582855, -0.006386545952409506, -0.00015320148668251932, 0.00014331043348647654, -0.014629973098635674, -0.00874281581491232, -0.013567893765866756, 0.013638230040669441, 0.024828752502799034, 0.01247064583003521, -0.018554745241999626, 0.0020467895083129406, -0.002653441159054637, 0.029681965708732605, -0.020622635260224342, -0.007483793888241053, 0.015783490613102913, 0.034802455455064774, -0.03311438113451004, -0.02689664252102375, 0.009171867743134499, -0.0007890866254456341, 0.012780126184225082, -0.014517434872686863, -0.007125078234821558, -0.019497253000736237, 0.0035045116674154997, 0.003309328109025955, 0.012090829201042652, -0.009643121622502804, -0.009607953950762749, -0.02176208607852459, 0.00802538450807333, -0.006249390076845884, -0.012920798733830452, 0.01355382613837719, -0.025503981858491898, -0.023970648646354675, 0.016514988616108894, -0.006762845907360315, 0.018850157037377357, -0.017035478726029396, -0.020059945061802864, -0.01568502001464367, -0.01095137931406498, 0.003910704515874386, -0.02162141166627407, -0.02190275862812996, 0.0038966371212154627, 0.03426789864897728, 0.01620550826191902, 0.003787615802139044, 0.007835475727915764, 0.021705815568566322, -0.004311622120440006, 0.007019573822617531, -0.0073782894760370255, -0.028894197195768356, -0.0198208000510931, 0.002732569584622979, 0.015741288661956787, 0.009488381445407867, -0.0050571877509355545, -0.004097095690667629, 0.011837617494165897, 0.001972936326637864, 0.022971872240304947, -0.01582569256424904, 0.0029048938304185867, -0.0168526042252779, -0.053680747747421265, -0.012027526274323463, 0.03317065164446831, -0.01662752777338028, -0.017584102228283882, -0.01858288049697876, 0.01975046470761299, 0.0223529115319252, 0.008785017766058445, 0.027163920924067497, 0.010817740112543106, 0.011626608669757843, 0.0011807724367827177, -0.0105223273858428, 0.005088839214295149, 0.01887829229235649, -0.017330892384052277, -0.014250156469643116, -0.05294924974441528, -0.003430658485740423, 0.013736700639128685, 0.027374930679798126, 0.008496638387441635, -0.002672783564776182, -0.00038772946572862566, 0.014229055494070053, 0.031060559675097466, -0.018526609987020493, -0.009650155901908875, 0.014193887822329998, -0.005500307306647301, -0.00911559909582138, -0.022901535034179688, -0.005507341120392084, 0.004983334802091122, -0.009579818695783615, -0.014376762323081493, -0.0023791291750967503, 0.023337621241807938, -0.021748017519712448, -0.01077553816139698, 0.013054437935352325, 0.006256423890590668, 0.02450520545244217, 0.03210153803229332, 0.01778104528784752, 0.005264680366963148, 0.007420491427183151, -0.012372174300253391, -0.028036093339323997, 0.0014322251081466675, 0.0013759559951722622, -0.010859942063689232, 0.04512784257531166, -0.005950460210442543, -0.007314986549317837, 0.007561163976788521, 0.00015221239300444722, -0.006024313624948263, -0.029597561806440353, 0.012421409599483013, 0.02385810948908329, -0.0012713306350633502, -0.035759031772613525, -0.02134006656706333, -0.022535786032676697, 0.01464404072612524, 0.007568197790533304, 0.020932115614414215, 0.009200002066791058, 0.0006954512791708112, -0.01785138063132763, 0.04588747397065163, -0.005982111673802137, 0.012920798733830452, 0.010114375501871109, 0.013145875185728073, -0.02111499011516571, -0.014186853542923927, 0.004469878971576691, 0.008897555992007256, 0.0036328756250441074, 0.0063302768394351006, -0.015389606356620789, 0.011957189999520779, 0.011872786097228527, 0.01308960560709238, -0.012351073324680328, -0.021368201822042465, -0.006288074888288975, 0.03831927478313446, -0.012751990929245949, -0.004951683338731527, 0.007666668854653835, -0.018414072692394257, 0.032720498740673065, -0.036321721971035004, -0.0008866783464327455, 0.012168198823928833, -0.014200921170413494, -0.000926682201679796, 0.03252355754375458, 0.004037309903651476, -0.0188642255961895, 0.0015175080625340343, 0.004322172608226538, 0.0055425092577934265, -0.007962081581354141, -0.006298625376075506, 0.005138074979186058, -0.028162699192762375, -0.026952913030982018, -0.020496029406785965, 0.017373092472553253, -0.0012256118934601545, -0.008792051114141941, -0.014074315316975117, 0.00856697466224432, 0.047463010996580124, -0.0005574160604737699, -0.000802714261226356, 0.015853825956583023, 0.0012897938722744584, -0.04352417215704918, 0.02862691879272461, 0.01395474374294281, -0.005725383758544922, 0.011661777272820473, 0.002224388998001814, -0.04079511761665344, -0.006678442005068064, 0.034521110355854034, 0.006435781717300415, 0.013567893765866756, 0.014214988797903061, 0.016318047419190407, 0.014264224097132683, -0.0007416095468215644, -0.011654742993414402, -0.032861169427633286, 0.00011308775719953701, 0.0076244669035077095, 0.014404896646738052, 0.011879819445312023, -0.01830153353512287, 0.024561474099755287, 0.0046386863104999065, 0.009340675547719002, 0.006875384133309126, -0.01748563162982464, -0.027093585580587387, 0.00021232804283499718, -0.0038122334517538548, -0.007314986549317837, -0.021959027275443077, 0.005795720033347607, -0.021368201822042465, -0.009593886323273182, 0.009579818695783615, 0.010311317630112171, 0.011577373370528221, -0.0019307344919070601, 0.0098259961232543, 0.015572480857372284, 0.014376762323081493, -0.019103368744254112, -0.041470348834991455, -0.027065450325608253, -0.013110706582665443, -0.02530704066157341, -0.018245264887809753, -0.012970034033060074, 0.04251132532954216, 0.005183793604373932, -0.005538992118090391, -0.03407095745205879, -0.04003548622131348, -0.04858839139342308, -0.019412849098443985, -0.03269236534833908, 0.011985324323177338, 0.04206117242574692, 0.01569908671081066, 0.002120642689988017, 0.01174618024379015, -0.005384252406656742, 0.01887829229235649, -0.0033902148716151714, -0.005922325886785984, 0.022577987983822823, -0.02169174887239933, 0.017077680677175522, -0.01858288049697876, -0.05629726126790047, 0.010128443129360676, 0.0025866215582937002, -0.011274926364421844, 0.03800979629158974, -0.0027290526777505875, -0.027431199327111244, 0.0010840599425137043, -0.009551684372127056, -0.0056655979715287685, 0.036406125873327255, 0.03356453403830528, 0.0256727896630764, -0.030385328456759453, -0.014812847599387169, 0.020932115614414215, 0.001543004997074604, -0.0088201854377985, 0.012519881129264832, 0.003974006976932287, 0.016866670921444893, 0.024828752502799034, -0.007350154686719179, -0.04203303903341293, 0.0064779832027852535, -0.009066362865269184, 0.012667587026953697, 0.008081653155386448, 0.014545569196343422, 0.017527833580970764, 0.009425078518688679, 0.0029365450609475374, 0.002741361502557993, 0.020875846967101097, 0.009474314749240875, -0.007051225285977125, 0.03660306707024574, -0.013560859486460686, -0.010065140202641487, -0.01734495908021927, 0.0015728980069980025, 0.006270491052418947, -0.01591009646654129, -0.017162084579467773, -0.0005319191259332001, -0.018822023645043373, -0.0006009367061778903, 0.016458719968795776, -0.031144961714744568, 0.0034060406032949686, -0.025250772014260292, -0.007427524775266647, -0.0060594817623496056, -0.004856728948652744, -0.014770646579563618, -0.011929054744541645, -0.005591744557023048, 0.0005081805866211653, 0.008475537411868572, -0.0461125522851944, -0.0052611636929214, 0.019426915794610977, -0.02883792854845524, 0.0029717134311795235, 0.21843676269054413, 0.0030561171006411314, -0.0031422791071236134, 0.012484712526202202, -0.00839113350957632, -0.007962081581354141, 0.0027519119903445244, 0.006411163602024317, 0.011788382194936275, 0.00414281478151679, 0.03542141616344452, -0.019033033400774002, 0.009586852975189686, -0.004694955423474312, 0.012442510575056076, -0.02097431756556034, -0.0436648428440094, -0.019075235351920128, -0.028894197195768356, 0.0003092604165431112, 0.005623396020382643, -0.024533340707421303, -0.009875232353806496, -0.009017127566039562, 0.03559022396802902, 0.019469117745757103, 0.000586869427934289, 0.0032653678208589554, 0.02682630717754364, 0.013188077136874199, -0.01828746683895588, -0.0010963687673211098, 0.02444893680512905, -0.004673854447901249, 0.0074767605401575565, -0.029597561806440353, 0.019848935306072235, -0.023844042792916298, 0.024378599599003792, 0.0016529056010767817, -0.012526914477348328, -0.02586973085999489, 0.017738843336701393, -0.05154252052307129, 0.033226918429136276, 0.0029312698170542717, -0.0033409795723855495, -0.016599392518401146, 0.02074924111366272, 0.02249358408153057, -0.017668506130576134, 0.003829817520454526, 0.015516212210059166, 0.015206731855869293, 0.008088687434792519, 0.006407646927982569, 0.0008088687318377197, 0.008095720782876015, -0.018343735486268997, 0.01879388839006424, -0.010691134259104729, -0.0006145644001662731, 0.007701836992055178, 0.006921102758497, -0.0335364006459713, 0.0223529115319252, 0.0172042865306139, 0.004670337773859501, 0.0006642394582740963, -0.004265903495252132, 0.004311622120440006, -0.02560245245695114, -0.023323554545640945, -0.004807493649423122, -0.00670657679438591, -0.00654480280354619, 0.0008194191614165902, 0.015924163162708282, 0.03241101652383804, 0.010184711776673794, 0.005725383758544922, 0.014313459396362305, -0.013652297668159008, -0.018709484487771988, -0.008060552179813385, -0.020158415660262108, 0.041245270520448685, -0.00802538450807333, -0.0036293587181717157, -0.010325385257601738, -0.01945505104959011, 0.021522941067814827, -0.019694194197654724, -0.011246792040765285, -0.0005855506169609725, -0.003536163130775094, 0.014250156469643116, 0.014826915226876736, 0.006161469500511885, -0.015248933807015419, -0.02256392128765583, 0.06009542942047119, 0.022592054679989815, 0.0026657499838620424, -0.02609480731189251, 0.006875384133309126, 0.0066221728920936584, 0.012196333147585392, -0.007582264952361584, -0.0024178139865398407, -0.016824468970298767, -0.031144961714744568, 0.015558414161205292, 0.01671193167567253, 0.010297250002622604, 0.008721714839339256, 0.012308871373534203, -8.654675184516236e-05, 0.017541900277137756, 0.00968532357364893, 0.036631204187870026, -0.023196948692202568, -0.0036152915563434362, 0.015431808307766914, -0.015783490613102913, -0.037053219974040985, -0.003601224161684513, 0.0014287083176895976, -0.031144961714744568, -0.03052600286900997, 0.030835481360554695, 0.007898778654634953, 0.031341902911663055, -0.02263425663113594, -0.015445875935256481, -0.029738234356045723, -0.002389679430052638, -0.008946791291236877, -0.012604285031557083, 0.004607034847140312, -0.0032636094838380814, -0.00540183624252677, 0.01026208233088255, 0.0042975544929504395, -0.0014295874862000346, -0.010276149958372116, 0.0073290541768074036, -0.01005107257515192, -0.005138074979186058, -0.03651866316795349, -0.007729971315711737, 0.00889052264392376, 2.0359093468869105e-05, -0.010543428361415863, 0.03182019293308258, -0.022141901776194572, -0.0326642282307148, -0.03153884783387184, 0.02805016003549099, -0.003330429084599018, -0.03466178476810455, 0.011654742993414402, 0.045521724969148636, 0.009298473596572876, -0.03378961235284805, -0.00455779954791069, -0.18107405304908752, -0.009024161845445633, 0.0007033640868030488, 0.0003683869435917586, -0.014700309373438358, 0.005454588681459427, 0.0034429673105478287, 0.012463611550629139, -0.015670951455831528, -0.011774315498769283, 0.025067897513508797, 0.0030191903933882713, -0.02204343117773533, -0.023084409534931183, -0.0028081811033189297, -0.023900311440229416, -0.007687769830226898, 0.010768504813313484, 0.028106428682804108, 0.006509634666144848, 0.031060559675097466, -0.025982270017266273, 0.009354742243885994, -0.020144347101449966, 0.007251684088259935, 0.013792970217764378, -0.018259331583976746, 0.023267284035682678, 0.021016519516706467, -0.03404282405972481, -0.015319270081818104, -0.0017777527682483196, 0.018329668790102005, -0.0031563465017825365, 0.005479206331074238, 0.012358107604086399, -0.011190522462129593, -0.0008515101508237422, 0.006780429743230343, 0.018470341339707375, 0.028598783537745476, 0.002860933542251587, 0.016810402274131775, 0.01952538825571537, -0.025405511260032654, 0.03035719506442547, 0.0337052084505558, -0.00043278871453367174, 0.008538840338587761, -0.010768504813313484, 0.012709788978099823, -0.01439082995057106, -0.02653089351952076, -0.0074064237996935844, 0.036124780774116516, 0.005640980321913958, 0.019722329452633858, 0.0007482035434804857, 0.005767585709691048, 0.002922477899119258, 0.005591744557023048, -0.01664159446954727, 0.0009328366140834987, 0.010930278338491917, -0.02588379941880703, -0.03325505554676056, -0.00654480280354619, 0.003889603540301323, -0.01922997459769249, 0.02247951738536358, -7.165521674323827e-05, 0.011929054744541645, -0.008756883442401886, 0.003974006976932287, 0.031341902911663055, 0.008595108985900879, -0.03826300799846649, 0.0058133043348789215, 0.009495415724813938, 0.005461622029542923, 0.020425694063305855, 0.01655719056725502, -0.003214373951777816, -0.011373397894203663, -0.023309485986828804, -0.0011763764778152108, 0.0027044350281357765, 0.007680736016482115, -0.0005921446718275547, 0.006590521428734064, 0.04076698422431946, -0.00910856481641531, 0.011682877317070961, -0.004234252031892538, 0.010037005878984928, 0.013068504631519318, 0.030244655907154083, -0.012625386007130146, 0.03533701226115227, -0.0317920558154583, -0.007814374752342701, 0.009783795103430748, -0.022085633128881454, 0.012815293855965137, 0.011450767517089844, 0.025194501504302025, -0.004325689282268286, 0.00325305899605155, 0.018174927681684494, -0.03094802051782608, -0.0014972863718867302, 0.016585325822234154, 0.020228751003742218, -0.01040978915989399, -0.02691071107983589, 0.028514381498098373, 0.006467432714998722, -0.018414072692394257, 0.020636701956391335, -0.0004444381920620799, 0.05660674348473549, -0.018976762890815735, -0.026573095470666885, -0.016149239614605904, -0.007497861515730619, -0.02588379941880703, -0.11827770620584488, -0.018822023645043373, 0.01887829229235649, 0.0005156538099981844, -0.002755428897216916, 0.01377890259027481, -0.0020608569029718637, 0.019131503999233246, 0.013891440816223621, 0.016374316066503525, -0.012533948756754398, -0.019328445196151733, -0.0007846905500628054, -0.0062071881256997585, 0.03173578903079033, -0.0033286705147475004, -0.010332418605685234, -0.003275918308645487, 0.011675843968987465, 0.02740306593477726, 0.007293885573744774, -0.018611013889312744, 0.01439082995057106, -0.004054894205182791, -0.02300000563263893, -0.01569908671081066, -0.0302165225148201, 0.0031950315460562706, 0.010466057807207108, 0.005120490677654743, 0.03601224347949028, -0.013750768266618252, 0.02262018993496895, -0.02298593893647194, -0.023379823192954063, 0.01232293900102377, -0.03418349474668503, -0.003539679804816842, 0.005391285754740238, -0.03176392242312431, -0.00045982428127899766, 0.019708262756466866, -0.010592663660645485, -0.03882569819688797, -0.008341898210346699, -0.0017962161218747497, -0.015122327953577042, 0.029485022649168968, -0.0013495798921212554, -0.018695417791604996, -0.03550582006573677, -0.011014682240784168, -0.03412722796201706, -0.019567590206861496, 0.022170037031173706, -0.0030103984754532576, -0.003418349428102374, -0.00788471195846796, -0.022240372374653816, 0.012787159532308578, -0.015867894515395164, -0.009129665791988373, -0.00044333917321637273, 0.022943736985325813, 0.019201839342713356, 0.007089910097420216, -0.023084409534931183, -0.014629973098635674, 0.004624619148671627, -0.005398319568485022, -0.010311317630112171, 0.01879388839006424, -0.028022026643157005, 0.02024281956255436, -0.018625080585479736, 0.007184864487498999, -0.004023242741823196, -0.016247710213065147, 0.00820122566074133, 0.013406120240688324, -0.014826915226876736, -0.019258109852671623, 0.023323554545640945, -0.03975413739681244, 0.020763307809829712, -0.003682111157104373, 0.016866670921444893, -0.015811625868082047, 0.02190275862812996, -0.03975413739681244, -0.002245489973574877, 0.007075842935591936, 0.013363918289542198, 0.005658564157783985, -0.0043678912334144115, 0.004336239770054817, 0.002518043387681246, -0.0036785942502319813, 0.017809178680181503, 0.0023545112926512957, -0.025714991614222527, 0.005521408282220364, -0.056212857365608215, 0.011711012572050095, 0.009059329517185688, 0.0033286705147475004, 0.0029734717682003975, -0.018540678545832634, 0.004941132850944996, -0.01612110435962677, 0.006140368524938822, 0.00552844163030386, -0.0016713689547032118, 0.02385810948908329, -0.02197309397161007, -0.007016057148575783, -0.01102874893695116, -0.033648937940597534, 0.023154746741056442, -0.003478135447949171, 0.019609790295362473, -0.011563305743038654, -0.022760862484574318, -0.016500921919941902, -0.005605811718851328, 0.01692293956875801, 0.0021065755281597376, 0.022310709580779076, -0.02724832482635975, 0.015178597532212734, -0.014327527023851871, -0.03952906280755997, 0.012927832081913948, -0.014144652523100376, 0.009776760824024677, 0.017443429678678513, -0.003541438141837716, -0.025982270017266273, 0.009446179494261742, 0.023014074191451073, 0.01257614977657795, 0.008756883442401886, -0.008341898210346699, 0.00222263066098094, 0.029456889256834984, -0.011366363614797592, -0.014939453452825546, -0.016669729724526405, -0.02609480731189251, 0.0030948021449148655, -0.00019408452499192208, 0.012857495807111263, 0.017907649278640747, 0.009045262821018696, -0.035393282771110535, -0.024181658402085304, 0.013202143833041191, -0.014116517268121243, 0.0020239301957190037, 0.0210446547716856, 0.010128443129360676, -0.008370032534003258, 0.040091753005981445, 0.0012475920375436544, 0.01814679428935051, -0.019356580451130867, 0.020664837211370468, -0.013574927113950253, -0.04127340391278267, -0.008384100161492825, 0.022718660533428192, -0.03274863213300705, -0.022155968472361565, -0.010480125434696674, 0.02262018993496895, 0.02010214515030384, 0.0016529056010767817, 0.006242356263101101, -0.0019623858388513327, -0.008531806990504265, -0.0007081997464410961, 0.021804288029670715, 0.014306426048278809, -0.019061166793107986, -0.0032425085082650185, 0.008334864862263203, -0.01358899474143982, 0.007012540008872747, -0.016374316066503525, 0.01809052564203739, 0.0027114686090499163, 0.002853899961337447, -0.028317438438534737, -0.004304588306695223, 0.0016792818205431104, -0.002445948775857687, 0.028950465843081474, 0.01669786311686039, -0.015009789727628231, 0.029541293159127235, 0.025574319064617157, 0.011619575321674347, -0.024280129000544548, 0.00845443643629551, -0.0028890680987387896, 0.0010998855577781796, -0.01771070808172226, 0.011774315498769283, -0.01492538582533598, -0.015867894515395164, 0.014981655403971672, 0.02712171897292137, 0.009952601976692677, -0.007779207080602646, 0.014686242677271366, 0.013279514387249947, -0.013898475095629692, -0.010859942063689232, 0.004114679992198944, -0.025546183809638023, -0.024406734853982925, 0.0155021445825696, 0.021748017519712448, 0.011626608669757843, 0.019919270649552345, -0.006361928302794695, 0.02155107632279396, -0.008960858918726444, 0.018779821693897247, -0.008848320692777634, -0.009896333329379559, -0.01441896427422762, 0.002041514264419675, -0.017049545422196388, -0.008159023709595203, -0.021818354725837708, -0.01671193167567253, -0.003251300659030676, -0.010191746056079865, 0.026952913030982018, -0.007976149208843708, 0.09070583432912827, 0.027656275779008865, -0.01879388839006424, 0.007758106105029583, -0.03190459683537483, 0.01975046470761299, 0.0293443500995636, 0.034521110355854034, -0.009818962775170803, -0.016937008127570152, 0.008081653155386448, -0.010037005878984928, -0.0065694209188222885, -0.010571562685072422, -0.0198208000510931, 0.0021487772464752197, -0.0040267594158649445, 0.01821712963283062, 0.01269572228193283, 0.0018428139155730605, 0.007919879630208015, 0.0011280202306807041, 0.006270491052418947, -0.0019377680728212, -0.01409541629254818, -0.01678226701915264, 0.014186853542923927, 0.023914379999041557, -0.017837313935160637, -0.022085633128881454, 0.013223244808614254, -0.012822327204048634, -0.04026056081056595, -0.015938229858875275, -0.029681965708732605, -0.003727829782292247, -0.023829976096749306, -0.010599697008728981, -0.009171867743134499, 0.024111321195960045, 0.0007499619969166815, 0.007835475727915764, -0.021438537165522575, -0.02719205617904663, 0.007997250184416771, -0.004301071632653475, 0.005584710743278265, -0.02883792854845524, -0.01662752777338028], "db579a1b-332d-49c2-99d8-6115a509c0e3": [-0.014873853884637356, -0.02766825631260872, 0.0007590358727611601, -0.006855691783130169, -0.0017933463677763939, 0.03474416956305504, -0.007949569262564182, -0.032751359045505524, -0.009328650310635567, -0.030527502298355103, 0.02306169457733631, -0.00496396841481328, 0.0019278248073533177, -0.025920940563082695, -0.0030794653575867414, 0.010556104592978954, 0.01711215265095234, 0.003099321387708187, -0.01277996227145195, -0.016014665365219116, -0.008960413746535778, 0.004025327041745186, -0.019769228994846344, 0.007451367564499378, -0.0339643731713295, 0.018137438222765923, 0.024809012189507484, -0.016881102696061134, -0.0032960749231278896, 0.010743832215666771, 0.014664464630186558, 0.010108444839715958, -0.025993144139647484, -0.014426194131374359, -0.030383097007870674, -0.014844972640275955, 0.024303589016199112, -0.025718770921230316, 0.008440551348030567, -0.01173301599919796, 0.03442647308111191, 0.008664380759000778, 0.0006769048050045967, -0.011371999979019165, -0.03422430530190468, 0.03202933073043823, -0.022888407111167908, -0.016736695542931557, -0.010996543802320957, 0.020274652168154716, -0.0010063317604362965, 0.0005135450628586113, -0.01032505463808775, 0.002043349901214242, 0.016202392056584358, -0.01213013380765915, 0.010440579615533352, 0.0068195899948477745, 0.012902707792818546, -0.004216665402054787, -0.0023014761973172426, -0.015451479703187943, -0.009191464632749557, 0.012260098941624165, -0.01111206877976656, -0.013357587158679962, -0.00157763937022537, -0.0055415937677025795, -0.005469390656799078, -0.019119400531053543, 0.052997130900621414, 0.030325334519147873, 0.005458560306578875, -0.0009765479480847716, 0.009263667277991772, -0.009242006577551365, -0.026050906628370285, -0.020274652168154716, 0.012556131929159164, -0.007350283209234476, 0.018642859533429146, -0.010498342104256153, -0.02483789250254631, 0.011155391111969948, 0.029863232746720314, 0.03153834864497185, 0.022772882133722305, 0.003747344948351383, -0.017328761518001556, -0.005050612147897482, 0.018700622022151947, 0.013790806755423546, 0.026296397671103477, 0.032866884022951126, 0.01064996886998415, 0.010606646537780762, 0.01307599525898695, 0.017603134736418724, 0.008144518360495567, -0.01848401315510273, 0.0005121912690810859, -0.027639375999569893, -0.022700678557157516, -0.016664493829011917, -0.023971455171704292, -0.009740208275616169, 0.02052014321088791, -0.0024350520689040422, 0.028563575819134712, -0.0011823270469903946, -0.029401132836937904, 0.03743012621998787, -0.007379164453595877, -0.007732960395514965, 0.0062925065867602825, -0.01032505463808775, 0.017011068761348724, -0.007256419397890568, -0.004855663515627384, -0.027754900977015495, 0.015408157370984554, 0.008317805826663971, 0.048867110162973404, -0.016014665365219116, 0.022036409005522728, 0.015711411833763123, 0.009805191308259964, 0.005454950034618378, -0.005516322795301676, -0.01372582372277975, 0.008664380759000778, -0.007812383584678173, 0.009595802053809166, -0.0040939198806881905, -0.0005112887592986226, 0.001109221251681447, -0.01744428649544716, 0.007003708276897669, -0.004353851545602083, -0.026845140382647514, 0.02452019788324833, 0.012895487248897552, -0.004989239387214184, -0.005693220533430576, -0.02220969647169113, 0.043812885880470276, 0.01952373795211315, 0.02424582652747631, 0.004953138064593077, 0.01019508857280016, 0.0021227733232080936, -0.021978646516799927, -0.002440467244014144, -0.015624767169356346, 0.006541607901453972, 0.03130729869008064, -4.5888504246249795e-05, 0.014902735128998756, -0.0012337717926129699, 0.016924424096941948, -0.004310529679059982, 0.010014580562710762, 0.005072273313999176, 0.006707675289362669, -0.009213125333189964, 0.0231338981539011, 0.00719504663720727, -0.02026021108031273, -0.011870202608406544, -0.011075966991484165, 0.0009029909851960838, 0.022960610687732697, -0.03130729869008064, 0.02594982087612152, 0.01317708007991314, 0.012238438241183758, 0.008635499514639378, 0.003075855318456888, -0.004924256820231676, -0.011675253510475159, 0.022715119644999504, -0.018180759623646736, 0.0027870426420122385, 0.03610158711671829, -0.013935212977230549, -0.0023285525385290384, 0.03433983027935028, -0.001234674360603094, -0.002225662814453244, 0.0008804274839349091, -0.01972590759396553, 0.026325277984142303, 0.018772825598716736, 0.010296172462403774, -0.6035030484199524, -0.005942321382462978, -0.010000139474868774, -0.021473225206136703, 0.028014833107590675, -0.0002836231142282486, -0.0002590288931969553, -0.012801622971892357, -0.03283800557255745, 0.04072258993983269, -0.0022076121531426907, 0.027105072513222694, -0.020101364701986313, -0.015321513637900352, 0.0025975091848522425, -0.03127841651439667, 0.0066751837730407715, -0.025184467434883118, 0.008050654083490372, 0.014498397707939148, -0.01887390948832035, 0.0026661022566258907, 0.00766797736287117, 0.0207078717648983, -0.009285328909754753, -0.027870425954461098, 0.03598606213927269, -0.0030704401433467865, 0.007108402904123068, 0.018267404288053513, -0.0415312685072422, 0.026758497580885887, 0.01965370401740074, -0.013263723812997341, 0.0341954231262207, -0.006974827032536268, -0.023018373176455498, 0.04369736090302467, 0.009971258230507374, 0.037401244044303894, -0.026108669117093086, 0.0015063387108966708, 0.027567172423005104, 0.024534638971090317, 0.004429664928466082, -0.0005758203333243728, 0.007278080098330975, -0.009624683298170567, 0.00240075564943254, -0.029545539990067482, 0.01153806783258915, -0.013386468403041363, 0.007899027317762375, -0.006436913274228573, 0.018440691754221916, -0.01592802070081234, 0.016765577718615532, -0.02274399995803833, 0.005689610261470079, -0.018007472157478333, 0.010238409973680973, 0.02005804143846035, -0.01716991513967514, -0.010881018824875355, -0.03589941933751106, -0.0034946338273584843, -0.007566893007606268, -0.011501966044306755, -0.006429692730307579, -0.003507269313558936, 0.024693485349416733, -0.014534499496221542, -0.0011642762692645192, -0.006700454745441675, -0.01062108762562275, 0.039682865142822266, 0.019899195060133934, 0.005075883120298386, 0.029068998992443085, 0.018729504197835922, 0.01861397922039032, -0.006483845412731171, -0.020736752077937126, -0.018758384510874748, 0.016765577718615532, 0.005974812898784876, -0.04999347776174545, -0.017141034826636314, 0.004920646548271179, -0.015379276126623154, 0.008151738904416561, 0.02400033548474312, -0.021328818053007126, -0.032144855707883835, 0.016736695542931557, 0.021386580541729927, -0.026195311918854713, 0.020086923614144325, 0.012837724760174751, -0.030643027275800705, -0.015451479703187943, -0.023494914174079895, 0.00339896441437304, 0.018137438222765923, 0.02170427516102791, 0.01880170777440071, -0.0339643731713295, -0.011220373213291168, 0.0415312685072422, -0.0402316115796566, 0.01807967573404312, 0.0016913594445213675, -0.010642748326063156, -0.014043517410755157, 0.01744428649544716, -0.027480529621243477, 0.03324234113097191, 0.013689721934497356, -0.009985699318349361, -0.02320610173046589, -0.008707703091204166, -0.016505645588040352, 0.005357475485652685, 0.010866577737033367, 0.022917287424206734, -0.003790666814893484, 0.032606955617666245, -0.023162778466939926, -0.00676904758438468, 0.0056859999895095825, 0.004267207812517881, -0.030325334519147873, 0.00026241340674459934, 0.009068719111382961, 0.015292632393538952, 0.00494952779263258, 0.02353823557496071, 0.003593913046643138, 4.408342283568345e-05, -0.009870174340903759, 0.003601133357733488, 0.009704106487333775, 0.006848471239209175, -0.004592122044414282, -0.0008172497036866844, -0.04167567193508148, -0.01130701694637537, 0.0007545232074335217, 0.0032184566371142864, -0.019494857639074326, 0.01264277659356594, 0.0016155460616573691, -0.018960554152727127, -0.0056859999895095825, 0.006747386883944273, 0.011754676699638367, -0.003041558898985386, -0.03330010548233986, 0.002532526385039091, -0.02142990194261074, 0.009408073499798775, 0.019032757729291916, -0.005902609787881374, 0.01359585765749216, -0.00812285766005516, -0.006036185659468174, -0.032087091356515884, 0.0037004128098487854, -0.0025650179013609886, -0.020346855744719505, -0.0020884769037365913, -0.021386580541729927, -0.014180704019963741, -0.0017337787430733442, -0.006296116858720779, 0.018195200711488724, -0.020924480631947517, -0.010592206381261349, -0.005949541926383972, 0.008303365670144558, 0.006584929767996073, -0.014989379793405533, -0.019191604107618332, 0.0019494857406243682, 0.02576209232211113, -0.000680966186337173, 0.02052014321088791, 0.00662103109061718, -0.025473279878497124, 0.012209556996822357, -0.006436913274228573, 0.01353809516876936, -0.008079535327851772, 0.009133702144026756, -0.04202224686741829, 0.00890987180173397, -0.007003708276897669, 0.021718716248869896, 0.0018971384270116687, 0.025314433500170708, 0.022700678557157516, 0.004747358616441488, 0.019061638042330742, 0.0023484083358198404, -0.005036171525716782, -0.009516378864645958, 0.014498397707939148, -0.02707619033753872, 0.01639012061059475, 0.01426012720912695, -0.0005284369690343738, 0.009400853887200356, -0.019581500440835953, -0.028563575819134712, 0.007602994330227375, 0.025314433500170708, 0.03139394149184227, 0.024404672905802727, -0.00403254758566618, -0.020072482526302338, 0.012361183762550354, -0.005996473599225283, 0.04450603947043419, -0.015696970745921135, -0.0009485692135058343, 0.030643027275800705, 0.014144602231681347, 0.007057860493659973, -0.0015965927159413695, -0.010187868028879166, -0.001537927659228444, 0.01874394528567791, 0.027942629531025887, -0.012873826548457146, 0.03832544758915901, -0.000532498408574611, 0.01202904898673296, -0.001981977140530944, 0.042253296822309494, -0.004689596127718687, 0.0012400895357131958, 0.018758384510874748, 0.01729988120496273, -0.02150210551917553, 0.0317116342484951, 0.0007703176233917475, 0.029834352433681488, -0.018845029175281525, -0.03145170211791992, 0.008281704038381577, -0.0028953473083674908, -0.0032491430174559355, 0.008353907614946365, -0.018397368490695953, 0.01067885011434555, 0.0036588958464562893, 0.019162723794579506, 0.004848443437367678, 0.021401021629571915, 0.025516603142023087, 0.004530749283730984, 0.009357531554996967, 0.009696886874735355, 0.004108360502868891, 0.019321570172905922, 0.02542995847761631, 0.0028917372692376375, -0.024693485349416733, -0.00812285766005516, -0.01159583032131195, 0.013617519289255142, -0.030960721895098686, -0.009617462754249573, -0.024202505126595497, -0.005736542399972677, 0.004249156918376684, -0.007566893007606268, 0.01776198111474514, -0.022296341136097908, 0.029776589944958687, 0.006537997629493475, -0.0451991893351078, 0.0273938849568367, 0.009393633343279362, 0.004834002815186977, -0.0004679668345488608, -0.021877562627196312, 0.004007276147603989, 0.0011714965803548694, 0.017848625779151917, 0.004299699328839779, -0.01127091608941555, -0.008007332682609558, -0.0023447980638593435, 0.00040614287718199193, 0.0317116342484951, 0.0304119773209095, -0.028939032927155495, -0.003124592360109091, -0.00989905558526516, -0.007855705916881561, 0.01868618279695511, -0.0242602676153183, -0.01277996227145195, 0.007220317609608173, 4.574748163577169e-05, -0.03641928359866142, -0.0389319509267807, -0.024491317570209503, -0.00084974110359326, 0.012397285550832748, -0.008953194133937359, -0.01267887745052576, -0.03223149850964546, -0.01768977753818035, 0.0037437346763908863, -0.007234758231788874, -0.015913579612970352, 0.009242006577551365, 0.013465892523527145, -0.011516406200826168, -0.0039061917923390865, 0.003415210172533989, 0.014173483476042747, 0.060188569128513336, 0.013956873677670956, 0.005418848246335983, 0.014707786962389946, -0.01159583032131195, -0.00645496416836977, -0.0016462324419990182, -0.0315961092710495, 0.03119177184998989, 0.001513559021987021, 0.0065018958412110806, -0.0023989505134522915, 0.011018204502761364, -0.016765577718615532, 0.0027184495702385902, -0.007711299229413271, -0.005610186606645584, -0.013574196957051754, 0.002433246932923794, -0.01926380768418312, 0.024029217660427094, -0.0009756454383023083, 0.016173511743545532, 0.011992947198450565, 0.010931560769677162, 0.016231274232268333, 0.01744428649544716, 0.011624711565673351, -0.0014142796862870455, -0.01781974360346794, -0.024794571101665497, -0.0014133771182969213, 0.017747540026903152, 0.021155530586838722, -0.011725795455276966, 0.022108612582087517, -0.0022581543307751417, 0.012953249737620354, -0.03211597353219986, 0.020924480631947517, -0.00914814230054617, 0.016332358121871948, 0.016202392056584358, -0.013805246911942959, 0.01356697641313076, -0.014332330785691738, -0.002882711822167039, 0.03202933073043823, -0.0027130343951284885, -0.00812285766005516, -0.01078715454787016, 0.01566808857023716, -0.021401021629571915, 0.002276205224916339, -0.013603078201413155, -0.004270818084478378, -0.006426082458347082, -0.013133757747709751, -0.015971342101693153, -0.007877366617321968, -0.027567172423005104, -0.02955998107790947, -0.00871492363512516, -0.016476765275001526, -0.0028068984393030405, -0.02300393208861351, -0.030440859496593475, -0.0040505980141460896, -0.013285384513437748, 0.021747596561908722, -0.021285496652126312, -0.037459008395671844, -0.01768977753818035, 0.02018800750374794, 0.019682586193084717, 0.01084491703659296, 0.011805219575762749, -0.004920646548271179, 0.0046426644548773766, 0.017141034826636314, -0.012686097994446754, -0.022758441045880318, -0.0023827047552913427, -0.01116983126848936, -0.015769174322485924, -0.017083272337913513, -0.0007563282852061093, -0.005700440611690283, -0.009213125333189964, 0.023624878376722336, -0.011978507041931152, -0.010187868028879166, -0.004552410449832678, 0.014397312887012959, 0.02365376055240631, 0.0039495136588811874, 0.014296228997409344, -0.0003813230141531676, 0.03000763989984989, -0.014296228997409344, 0.014707786962389946, -0.030845196917653084, -0.01657784916460514, -0.02878018654882908, 0.013393688946962357, -0.006032575387507677, 0.02476568892598152, 0.0020415447652339935, 0.012772741727530956, -0.009610243141651154, -0.01763201504945755, -0.0045379698276519775, -0.011473084799945354, -0.004256377462297678, -0.011220373213291168, -0.010873798280954361, 0.012823283672332764, 0.018917232751846313, -0.0007062373333610594, -0.010115665383636951, 0.006306947208940983, -0.011516406200826168, 0.037718940526247025, -0.020563464611768723, -0.0026011194568127394, 0.014440635219216347, 0.033328987658023834, -0.004631833638995886, -0.015408157370984554, 0.015393717214465141, 0.0008668893715366721, 0.00406503863632679, -0.013039893470704556, -0.004444105550646782, -0.012115692719817162, -0.009588581509888172, 0.0013899111654609442, 0.007581333629786968, -0.003388134064152837, -0.014931616373360157, -0.02050570212304592, 0.011646372266113758, -0.01153806783258915, -0.022902848199009895, 0.0032509479206055403, -0.020289093255996704, -0.01347311306744814, 0.026902902871370316, -0.01157416868954897, 0.019480416551232338, -0.003985615447163582, -0.005101154558360577, -0.03604382649064064, -0.012426166795194149, -0.00558491563424468, -0.02465016394853592, -0.026253074407577515, -0.009321429766714573, 0.027827104553580284, 0.01959594152867794, 0.008404449559748173, 0.015509242191910744, 0.008844888769090176, 0.022397425025701523, -0.0008145420579239726, -0.006581319496035576, -0.025920940563082695, -0.015379276126623154, -0.011588609777390957, 0.012368404306471348, -0.00025496745365671813, 0.010512782260775566, -0.013747484423220158, 0.00676904758438468, -0.0021263835951685905, 0.03722795844078064, -0.013415350578725338, -0.003131812671199441, -0.0212421752512455, -0.043668482452631, -0.021155530586838722, 0.01933601126074791, 0.010151766240596771, -0.008151738904416561, -0.03953845798969269, 0.006700454745441675, 0.025920940563082695, 0.009754649363458157, 0.042484350502491, 0.010657188482582569, 0.006368319969624281, 0.00782682467252016, 0.012411725707352161, 0.02168983407318592, 0.030238689854741096, -0.0064621842466294765, -0.009126481600105762, -0.03985615447163582, 0.00616254098713398, 0.010173427872359753, 0.020202448591589928, 0.01372582372277975, -0.014195144176483154, -0.004115581046789885, 0.014281787909567356, 0.02052014321088791, -0.00632499810308218, -0.033531155437231064, 0.017747540026903152, -0.02170427516102791, -0.016303477808833122, -0.017285440117120743, -0.005653508473187685, -0.010902679525315762, 0.004285258706659079, -0.004462156444787979, -0.006418862380087376, 0.021155530586838722, -0.02215193398296833, 0.004465766251087189, 0.020549023523926735, 0.019307129085063934, 0.03309793770313263, 0.015379276126623154, 0.022108612582087517, 0.009841293096542358, -0.003415210172533989, -0.015393717214465141, -0.020159127190709114, 0.012736639939248562, 0.004769019782543182, -0.01035393588244915, 0.019177163019776344, -0.007303351070731878, -0.009696886874735355, 0.028361408039927483, 0.0017924437997862697, -0.02196420542895794, -0.04441939294338226, 0.021747596561908722, 0.015754733234643936, -0.0006367417518049479, -0.026700735092163086, -0.031047366559505463, -0.02529999241232872, 0.014404533430933952, -0.014231245964765549, 0.03803663328289986, 0.023957014083862305, -0.006812369450926781, -0.02267179638147354, 0.028996795415878296, -0.001419694977812469, 0.006086727604269981, 0.014736668206751347, 0.007003708276897669, -0.012476708739995956, -0.0255021620541811, -0.01022396981716156, 0.01914828270673752, 0.011992947198450565, 0.015162667259573936, -3.7970128232700517e-06, 0.010209528729319572, 0.016433442011475563, 0.01530707348138094, 0.022253019735217094, -0.010332274250686169, -0.022917287424206734, 0.03855649754405022, -0.020621227100491524, 0.008036213926970959, -0.00248920451849699, -0.00796401035040617, 0.016144629567861557, -0.042368825525045395, 4.6085933718131855e-05, 0.010779934003949165, -0.009559700265526772, 0.0008998320554383099, 0.029444456100463867, 0.014274568296968937, -0.017415406182408333, 0.001284313970245421, 0.00294047431088984, -0.00025880325119942427, -0.0034404813777655363, 0.0009269082802347839, 0.01468612626194954, -0.03734348341822624, -0.01809411682188511, -0.0069892676547169685, 0.024549080058932304, 0.013068774715065956, -0.02037573605775833, -0.016029104590415955, 0.009162583388388157, 0.05761813372373581, -0.001780710881575942, 0.0024603232741355896, 0.023364948108792305, 0.00828892458230257, -0.04078035429120064, 0.019552620127797127, 0.0014756524469703436, -0.01600022427737713, 0.01572585105895996, -0.0026949835009872913, -0.05059998482465744, -0.0012960470048710704, 0.022137492895126343, 0.0026642971206456423, 0.014065179042518139, -0.007104792632162571, 0.006815979722887278, 0.007906247861683369, 0.009321429766714573, -0.009292548522353172, -0.020231330767273903, 0.007202266715466976, -0.007797942962497473, 0.01251281052827835, 0.03650592640042305, -0.011393661610782146, 0.02542995847761631, 0.004732917994260788, 0.005101154558360577, 0.001824032748118043, -0.03093184158205986, -0.03991391509771347, -0.0015659063355997205, 0.00920590478926897, -0.013639179989695549, -0.020794514566659927, 0.012801622971892357, -0.009155362844467163, -0.006523557007312775, 0.016924424096941948, 0.02228190004825592, 0.004779850132763386, -0.012050709687173367, 0.004570460878312588, 0.0033357867505401373, 0.0074658081866800785, -0.021328818053007126, -0.01611574925482273, -0.021790917962789536, 0.010837696492671967, -0.02870798297226429, -0.01698218658566475, -0.03263583406805992, 0.018310725688934326, 0.01742984727025032, -0.021213293075561523, -0.0510043241083622, -0.01867174170911312, -0.04753857105970383, -0.01735764369368553, -0.04987795278429985, 0.03402213752269745, 0.03543731942772865, -0.004111970774829388, 0.017184356227517128, 0.003422430483624339, -0.00036236969754099846, 0.014946057461202145, -0.0062527949921786785, -0.0010000140173360705, -0.003823158098384738, -0.021141089498996735, 0.01574029214680195, -0.015076023526489735, -0.05680945888161659, 0.006877352483570576, -0.005061442498117685, -0.016635611653327942, 0.03676585853099823, 0.009530819021165371, -0.021978646516799927, 0.005693220533430576, -0.006761827506124973, 0.0018700623186305165, 0.04083811491727829, 0.024693485349416733, 0.022195257246494293, -0.03185604140162468, -0.014267347753047943, 0.025328874588012695, 0.01127091608941555, -0.00393146276473999, 0.015018261037766933, 0.0002994175592903048, 0.01953817903995514, 0.014000196009874344, 0.00033100644941441715, -0.019870314747095108, 0.015523683279752731, 1.979946500796359e-05, 0.01744428649544716, -1.8784106941893697e-05, 0.0032383124344050884, -0.006158930715173483, 0.005870118271559477, 0.0036949976347386837, -0.0031949905678629875, 0.028881270438432693, 0.007985671050846577, -0.009682445786893368, 0.027177276089787483, -0.021386580541729927, -0.008794346824288368, -0.012426166795194149, 0.016072427853941917, 0.015523683279752731, -0.0249678585678339, 0.002413391135632992, -0.002583068562671542, -0.018758384510874748, -0.0027996781282126904, 0.010130105540156364, -0.018180759623646736, 0.0009702302049845457, -0.01379802729934454, -0.0017653676914051175, -0.012404506094753742, 0.00557047501206398, -0.0286357793956995, -0.0009350311593152583, -0.010202309116721153, -0.008967634290456772, 0.00224551884457469, -0.04462156444787979, -0.0032689988147467375, 0.021083327010273933, -0.028794625774025917, -0.003593913046643138, 0.21626295149326324, -0.008592178113758564, 0.005180577747523785, 0.029184523969888687, -0.005884558893740177, 0.004393563140183687, 0.0017752955900505185, 0.004400783684104681, 0.006097558420151472, -0.006173371337354183, 0.03956734016537666, -0.002653466770425439, -0.01672225631773472, -0.00124099210370332, 0.00419500470161438, -0.021285496652126312, -0.04254211112856865, -0.016635611653327942, -0.025863178074359894, -0.014079619199037552, 0.017920827493071556, -0.020072482526302338, -0.013956873677670956, -0.010166207328438759, 0.03428206965327263, 0.02831808477640152, -0.0039495136588811874, 0.018368488177657127, 0.025863178074359894, 0.01369694247841835, -0.03093184158205986, -0.01991363614797592, 0.02693178504705429, -0.002518085762858391, 0.018960554152727127, -0.014440635219216347, 0.027624934911727905, -0.03465752303600311, 0.01579805463552475, 0.002129993634298444, -0.004808731377124786, -0.010866577737033367, 0.015047142282128334, -0.02694622613489628, 0.016216833144426346, -0.011790778487920761, -0.012664437294006348, -0.0031101517379283905, 0.012223998084664345, 0.005873728543519974, -0.013148198835551739, 0.006704065017402172, 0.006054236087948084, 0.013227622024714947, 0.01444785576313734, 0.0026751277036964893, -0.005909829866141081, -0.007588553708046675, 0.002909787930548191, 0.012888266704976559, -0.002019883831962943, 0.009400853887200356, -0.01913384161889553, -0.0037690058816224337, -0.029603302478790283, 0.01894611306488514, 0.01091712061315775, -0.00032152977655641735, -0.0005884558777324855, 0.0035162947606295347, -0.00393146276473999, -0.0058989995159208775, -0.03939405456185341, 0.019480416551232338, -0.0014467710861936212, -0.00602896511554718, -0.0020956972148269415, 0.012837724760174751, 0.03381996601819992, 0.005140866152942181, 0.006346659269183874, -0.0011344924569129944, -0.0016597704961895943, -0.021733155474066734, -0.018108556047081947, -0.020419057458639145, 0.03624599426984787, -0.013068774715065956, -0.002469348721206188, -0.004920646548271179, -0.024679046124219894, 0.01359585765749216, -0.006953165866434574, 0.003772615920752287, -0.01900387555360794, -0.0011742041679099202, 0.008917092345654964, 0.02746608853340149, 0.009819632396101952, -0.011191491968929768, -0.024563521146774292, 0.04037601500749588, 0.03589941933751106, -0.01383412815630436, -0.01748760975897312, 0.008173399604856968, 0.011711355298757553, 0.016996627673506737, -0.007115622982382774, -0.012787182815372944, -0.026513006538152695, -0.03165387362241745, 0.025733212009072304, 0.005444119684398174, 0.021126648411154747, 0.01894611306488514, 0.0028989575803279877, 0.005068663042038679, 0.0021895612590014935, 0.0224840696901083, 0.03347339108586311, -0.008794346824288368, 0.00861383881419897, 0.005927880760282278, -0.00793512910604477, -0.03413766250014305, -0.00901817623525858, 0.007978450506925583, -0.038181040436029434, -0.017877506092190742, 0.029516657814383507, 0.0004271269135642797, 0.02359599806368351, -0.01894611306488514, -0.02150210551917553, -0.048664942383766174, 0.002684153150767088, -0.01310487650334835, -0.010158986784517765, 0.0027563562616705894, -0.017603134736418724, -0.008476653136312962, 0.012606674805283546, 0.0073214019648730755, 0.0027256698813289404, -0.007090352009981871, 0.0017843210371211171, 0.01054888404905796, 0.007050639949738979, -0.03165387362241745, -0.00024075245892163366, 0.02346603199839592, 0.0019133841851726174, -0.011985727585852146, 0.018902791664004326, -0.024433555081486702, -0.026570769026875496, -0.03748789057135582, 0.02294616959989071, -0.013011012226343155, -0.03202933073043823, 0.00917702354490757, 0.025256671011447906, 0.0032419227063655853, -0.026296397671103477, -0.01985587365925312, -0.18668852746486664, -0.00015094976697582752, -0.0007834044517949224, -0.026715174317359924, 0.0020794514566659927, 0.0024224165827035904, 0.0038448190316557884, 0.01402185671031475, -0.03202933073043823, -0.010209528729319572, 0.023942572996020317, 0.003487413516268134, -0.023379389196634293, -0.02635416015982628, 0.006119219120591879, -0.012036269530653954, -0.01613019034266472, 0.004707647021859884, 0.013935212977230549, 0.006444133352488279, 0.024606842547655106, -0.02333606593310833, 0.00960302259773016, -0.019567061215639114, 0.005787084344774485, 0.019437095150351524, 0.008873770013451576, 0.020274652168154716, 0.021805359050631523, -0.03563948720693588, -0.026137549430131912, -0.01052000280469656, 0.004631833638995886, -0.012960470281541348, -0.0046823760494589806, 0.003290659748017788, 0.006664352957159281, -0.024621283635497093, 0.012462268583476543, 0.02642636187374592, 0.027538292109966278, 0.0007075911271385849, -0.0006854789098724723, 0.01959594152867794, -0.015191548503935337, 0.04026049003005028, 0.03743012621998787, -0.015523683279752731, 0.014433414675295353, -0.0008926117443479598, 0.028866829350590706, -0.016563408076763153, -0.02287396602332592, -0.0019169943407177925, 0.04028937220573425, -0.00616254098713398, 0.01783418469130993, -0.0020614005625247955, 0.010267291218042374, -0.011227593757212162, -0.002812313614413142, -0.011718575842678547, -0.010866577737033367, -0.005238340236246586, -0.0285780169069767, -0.036534808576107025, -0.008310585282742977, 0.006299727130681276, -0.03659256920218468, 0.022498508915305138, -0.009877394884824753, 0.0390474759042263, -0.010931560769677162, 0.0028484154026955366, 0.04392841085791588, 0.0027798223309218884, -0.04987795278429985, 0.00927810836583376, 0.01768977753818035, -0.008945973590016365, 0.007790722884237766, 0.014700566418468952, -0.010007360018789768, -0.01290992833673954, -0.017314322292804718, -0.0008407157147303224, 0.0034278458915650845, 0.02581985667347908, -0.0243180301040411, 0.0022689849138259888, 0.01861397922039032, -0.015263751149177551, 0.007444147486239672, 0.001176911755464971, 0.013133757747709751, 0.022700678557157516, 0.030845196917653084, -0.0027527459897100925, 0.033011291176080704, -0.0250256210565567, 0.009299769066274166, 0.01939377374947071, -0.01848401315510273, 0.005819575861096382, 0.007144504226744175, 0.024953417479991913, 0.0071372841484844685, 0.00015286766574718058, 0.027812663465738297, -0.02111220918595791, -0.016895543783903122, 0.023957014083862305, 0.018917232751846313, 0.00704703014343977, -0.030238689854741096, 0.04089587926864624, 0.004927866626530886, -0.01722767762839794, 0.02635416015982628, 0.009249227121472359, 0.06480956822633743, -0.016014665365219116, -0.030094284564256668, -0.00616254098713398, -0.01200016774237156, -0.036736976355314255, -0.11743124574422836, 0.00210472266189754, 0.011104848235845566, 0.010375596582889557, 0.001509948866441846, 0.002754551125690341, -0.01372582372277975, 0.023769285529851913, -0.006732946261763573, 0.02876574546098709, -0.014628363773226738, -0.034108780324459076, 0.0040758694522082806, -0.007296130992472172, 0.016159070655703545, -0.009942376986145973, -0.020938921719789505, -0.008000112138688564, 0.0032383124344050884, 0.028274763375520706, 0.0017942489357665181, -0.0032834394369274378, 0.0008984782616607845, 0.0014142796862870455, -0.010801594704389572, -0.011256475001573563, -0.029516657814383507, 0.002032519318163395, 0.005982032977044582, 0.01520598866045475, 0.051350899040699005, -0.014000196009874344, 0.026917343959212303, -0.011899083852767944, -0.03067190945148468, 0.017776422202587128, -0.017473168671131134, -0.017603134736418724, 0.00331773585639894, -0.03454199805855751, -0.008505534380674362, 0.017011068761348724, -0.011501966044306755, -0.0328957661986351, -0.01565364934504032, -0.009783530607819557, -0.007083131466060877, 0.02758161351084709, -0.007617434952408075, -0.0285202544182539, -0.028881270438432693, -0.010462240315973759, -0.03107624687254429, -0.03295353055000305, 0.02700398862361908, -0.01008678413927555, 0.006873742211610079, 0.0009120163740590215, -0.025603245943784714, 0.014057958498597145, -0.017184356227517128, -0.011097628623247147, -0.02974770776927471, 0.014411753974854946, 0.012671657837927341, -0.0009404463926330209, -0.016765577718615532, -0.020881159231066704, 0.007480249274522066, 0.0020884769037365913, -0.015451479703187943, 0.02878018654882908, -0.022888407111167908, 0.008462212048470974, -0.016173511743545532, 0.012390065006911755, -0.008794346824288368, -0.005924270488321781, 0.016765577718615532, 0.007559672463685274, -0.006956776138395071, -0.013198740780353546, 0.03500409796833992, -0.03211597353219986, 0.012260098941624165, 3.6581062886398286e-05, 0.01186298206448555, -0.024982299655675888, 0.018772825598716736, -0.04502590000629425, -0.007949569262564182, 0.002299671061336994, 0.015379276126623154, -0.003037948627024889, -0.00903983786702156, -0.0013140977825969458, 0.008866550400853157, 0.009906276129186153, 0.016505645588040352, 0.009978478774428368, -0.03113400936126709, 0.00271122925914824, -0.05891779065132141, 0.0038917511701583862, 0.016144629567861557, 0.00116698385681957, -0.010779934003949165, -0.02994987741112709, 0.0009964038617908955, -0.003617379115894437, -0.0018538165604695678, -0.005945931654423475, -0.009321429766714573, 0.004736528266221285, -0.010779934003949165, -0.0020686211064457893, -0.022440746426582336, -0.022195257246494293, 0.02904011681675911, 0.0018086895579472184, 0.02332162670791149, -0.007877366617321968, -0.02004360221326351, -0.0025740431156009436, -0.005444119684398174, 0.03488857299089432, 0.0022978661581873894, 0.008931532502174377, -0.014296228997409344, 0.014657245017588139, -0.004826782271265984, -0.038643140345811844, 0.0030722450464963913, -0.011350339278578758, 0.001565003884024918, 0.01592802070081234, -0.0005591233493760228, -0.024101419374346733, 0.011646372266113758, 0.025603245943784714, 0.011906303465366364, 0.009653564542531967, -0.017126593738794327, -0.014195144176483154, 0.02255627140402794, -0.011032645590603352, -0.004332190379500389, -0.026527447625994682, -0.02340826950967312, 0.005917050410062075, 0.0052888826467096806, -0.0029152033384889364, 0.02937225252389908, 0.016938865184783936, -0.04973354935646057, -0.03318458050489426, -0.003974784631282091, -0.0019873923156410456, 0.01979811117053032, 0.007234758231788874, 0.007942349649965763, 0.006996487732976675, 0.04545912146568298, 0.023162778466939926, 0.011675253510475159, -0.031162891536951065, 0.024433555081486702, -0.019971398636698723, -0.03933629021048546, -0.013393688946962357, 0.04127133637666702, -0.04285980388522148, -0.021314376965165138, -0.000509032397530973, 0.04052042216062546, 0.012411725707352161, -0.005386356730014086, 0.009422514587640762, -0.015018261037766933, -0.015913579612970352, -0.0032653885427862406, 0.03445535525679588, 0.009992919862270355, -0.02306169457733631, -0.00419500470161438, 0.019639264792203903, 0.006361099891364574, 0.010483901016414165, -0.03295353055000305, 0.02287396602332592, 0.0031372280791401863, 0.011314237490296364, -0.03191380202770233, 0.005285272374749184, -0.0024350520689040422, -0.007747401017695665, 0.01965370401740074, 0.008548855781555176, -0.008151738904416561, 0.033386748284101486, 0.028953474014997482, 0.002167900325730443, -0.014917176216840744, -0.007270860020071268, 0.0025108654517680407, -0.017848625779151917, -0.01006512250751257, 0.015812495723366737, -0.019292687997221947, -0.016361240297555923, 0.01071495097130537, 0.020563464611768723, 0.017126593738794327, -0.016231274232268333, 0.0026715174317359924, 0.014137381687760353, -0.012628335505723953, 0.006061456631869078, 0.011220373213291168, -0.025386637076735497, -0.016996627673506737, 0.025935381650924683, 0.04491037502884865, 0.004855663515627384, 0.002889932133257389, -0.00658854003995657, 0.02228190004825592, 0.006227524019777775, 0.009429735131561756, -0.02220969647169113, -0.003667921293526888, -0.015509242191910744, 0.006938725244253874, -0.010570544749498367, -0.011090408079326153, -0.02726391889154911, -0.008823228068649769, -0.002602924592792988, -0.0017852234886959195, 0.02635416015982628, -0.013942433521151543, 0.0970410704612732, 0.03217373415827751, -0.009198684245347977, 0.008642720058560371, -0.02583429589867592, 0.021863121539354324, 0.016072427853941917, 0.02865022048354149, -0.032664716243743896, -0.01822408102452755, 0.020361294969916344, -0.008209501393139362, -0.01829628460109234, -0.005050612147897482, -0.030296452343463898, 0.012195116840302944, 0.002129993634298444, 0.01176189724355936, 0.006888182833790779, 0.004418834578245878, 0.0028177290223538876, -0.005003680009394884, 0.0053322045132517815, 0.0007739277789369226, -0.0025577975902706385, -0.035032980144023895, 0.016563408076763153, 0.01520598866045475, -0.016534527763724327, -0.01657784916460514, 0.00480151129886508, -0.02111220918595791, -0.05591414123773575, -0.016289036720991135, -0.031624991446733475, -0.0034982438664883375, -0.020216889679431915, -0.01626015454530716, -0.009220345877110958, 0.0255021620541811, -0.0005130938370712101, 0.008151738904416561, -0.013819687999784946, -0.017386524006724358, 0.009429735131561756, -0.005527153145521879, 0.009617462754249573, -0.01536483597010374, -0.00898207537829876], "79fcf67d-8c85-4505-bb5a-34d28d00d262": [-0.008179054595530033, -0.023055147379636765, 0.008703352883458138, -0.009136773645877838, -0.006801897659897804, 0.03240863233804703, -0.002160109346732497, -0.0379452221095562, -0.011478639207780361, -0.03486933931708336, 0.033471208065748215, 0.009465334005653858, 0.002277202671393752, -0.018776873126626015, -0.0028486878145486116, 0.013687683269381523, 0.021405356004834175, 0.006728495936840773, -0.003054911969229579, -0.01463841088116169, -0.027487216517329216, -0.006550234742462635, -0.0025515854358673096, 0.012820843607187271, -0.027990544214844704, -0.005078703630715609, 0.01974158175289631, -0.010101482272148132, -0.007857485674321651, 0.022412007674574852, 0.014260916039347649, 0.015001924708485603, -0.028437944129109383, 0.002095445990562439, -0.02608908712863922, -0.0029448093846440315, 0.01754651963710785, -0.016707642003893852, 0.007927391678094864, -0.02449522167444229, 0.03218493238091469, 0.022649690508842468, 0.004578872583806515, -0.02252385951578617, -0.013135422021150589, 0.039986491203308105, -0.0004653148353099823, -0.009353483095765114, -0.0191264059394598, 0.0316816046833992, 0.011464658193290234, -0.003388715209439397, -0.029025159776210785, 0.0050821988843381405, -0.003023453988134861, -0.013275234960019588, 0.0075079528614878654, -0.007710681762546301, 0.027780823409557343, -0.0013352131936699152, -0.008486643433570862, -0.005746310576796532, -0.002957043005153537, 0.0156870074570179, -0.013310188427567482, -0.01721096783876419, -0.005270946305245161, -0.004117490258067846, -0.006448870059102774, -0.018231602385640144, 0.04577474296092987, 0.0276829544454813, 0.005071713123470545, 0.0006208566483110189, 0.007200364489108324, -0.010646753013134003, -0.024075781926512718, -0.019867412745952606, 0.01304454356431961, 0.009919725358486176, 0.015770895406603813, -0.011849143542349339, -0.020482590422034264, 0.021838774904608727, 0.03053513914346695, 0.030926614999771118, 0.036099690943956375, -0.003767957678064704, -0.017029210925102234, -0.001156077953055501, 0.011478639207780361, 0.005267451051622629, 0.02449522167444229, 0.0339745357632637, 0.005872142035514116, 0.01288375910371542, 0.004411097150295973, 0.0005893987836316228, -0.007605821825563908, -0.014163047075271606, -0.010430042631924152, -0.004365657921880484, -0.028214244171977043, -0.009171726182103157, -0.026606395840644836, -0.004229340236634016, 0.017896052449941635, -0.001040732255205512, 0.021992569789290428, 0.012016919441521168, -0.04731268808245659, 0.028270170092582703, -0.012660058215260506, 0.007759616244584322, 0.005337357521057129, -0.01466637384146452, -0.0006156137096695602, -0.025348080322146416, -0.027599066495895386, -0.03218493238091469, 0.007256289944052696, 0.0007711555226705968, 0.028144337236881256, -0.014750261791050434, 0.01694532483816147, 0.004075546283274889, 0.018902704119682312, -0.012702002190053463, 0.018077809363603592, -0.02417365089058876, 0.010695687495172024, -0.0021688477136194706, 0.0006745972787030041, 0.00421885447576642, -0.007396102417260408, 0.0029290802776813507, -0.0158408023416996, -0.010527911596000195, -0.0054107592441141605, -0.010716659016907215, 0.01677754893898964, 0.02313903532922268, 0.009080847725272179, -0.008675390854477882, -0.0037364999298006296, 0.051395222544670105, 0.019280198961496353, 0.026298807933926582, -0.0019888386595994234, 0.010122453793883324, 0.0036246494855731726, -0.010451014153659344, -0.009898753836750984, -0.01131785474717617, 0.0015947408974170685, 0.015882745385169983, 0.0039602005854249, 0.02044064737856388, 0.00011124956654384732, -0.0012513254769146442, -0.005400273483246565, 0.002429249230772257, 0.007493971846997738, -6.804956501582637e-05, -0.005022778641432524, 0.036043766885995865, 0.010059538297355175, -0.014932017773389816, -0.015812840312719345, 0.0040405928157269955, -0.009633108973503113, 0.009807875379920006, -0.02527817338705063, 0.021796831861138344, 0.00868937186896801, 0.0021566140931099653, 0.03014366142451763, -0.005900104530155659, -0.0018787358421832323, -0.02899719588458538, 0.03260437026619911, -0.007133953273296356, 0.002658192766830325, 0.03858835995197296, -0.03668690472841263, -0.00379592040553689, 0.030171625316143036, 0.0010424799984320998, -0.007249298971146345, 0.0053618247620761395, -0.014722298830747604, 0.010527911596000195, 0.004400611389428377, 0.005641450639814138, -0.6196507811546326, 0.0006728495936840773, 0.0002896748483181, -0.011933031491935253, 0.018399378284811974, 0.016791529953479767, 0.006822869647294283, -0.010206341743469238, -0.02160109393298626, 0.047172874212265015, -0.001731932396069169, 0.025194285437464714, -0.01578487642109394, 0.0005531348288059235, 0.0007667863974347711, -0.033079732209444046, -0.004858498461544514, -0.005840684287250042, 0.007528924848884344, 0.012268582358956337, -0.02663435786962509, -0.0038238829001784325, 0.003680574707686901, 0.014862111769616604, -0.012310526333749294, -0.032324742525815964, 0.029137009754776955, 0.0015737690264359117, -0.009912734851241112, 0.030563101172447205, -0.033247508108615875, 0.0215451680123806, 0.02011907659471035, -0.009150754660367966, 0.0393713153898716, 0.002923837397247553, -0.021139711141586304, 0.03945520147681236, 0.004767620004713535, 0.048431191593408585, -0.017840126529335976, 0.007948363199830055, 0.024145688861608505, 0.009919725358486176, -0.0014068672899156809, -0.010367127135396004, 0.0019608759321272373, 0.003628144972026348, -0.009115801192820072, -0.036211542785167694, 0.0141980005428195, -0.021796831861138344, -0.014806186780333519, 0.013463982380926609, 0.02548789232969284, -0.019937319681048393, 0.0154073815792799, -0.014149066060781479, -0.005295413546264172, -0.006602664478123188, -0.005564553663134575, 0.0060224407352507114, -0.028046468272805214, -0.020300833508372307, -0.04334200173616409, 0.015001924708485603, -0.007088514044880867, -0.019098442047834396, 0.001302007702179253, 0.01014342624694109, 0.006592178251594305, 0.005777768325060606, -0.001121998531743884, -0.00522201182320714, -0.009122791700065136, 0.01835743524134159, 0.014442672953009605, 0.003390462836250663, 0.011814190074801445, 0.00803225114941597, 0.015603120438754559, -0.007829522714018822, -0.030898651108145714, -0.01777021959424019, 0.03520489111542702, -0.0007602326804772019, -0.031933266669511795, -0.014792204834520817, 0.007249298971146345, -0.01543534453958273, 0.012317516840994358, 0.022453952580690384, -0.020678328350186348, -0.02132146805524826, 0.006109823938459158, 0.044488467276096344, -0.0007370761595666409, 0.017364762723445892, 0.004599844571202993, -0.025585761293768883, -0.01036013662815094, -0.01633014716207981, 0.009164735674858093, 0.007410083897411823, 0.02834007516503334, 0.013813515193760395, -0.023446623235940933, -0.010646753013134003, 0.043174225836992264, -0.038560397922992706, 0.025445949286222458, 0.011045219376683235, -0.015533213503658772, -0.027557123452425003, 0.018720947206020355, -0.02302718535065651, 0.017965957522392273, 0.03129012882709503, -0.008074195124208927, -0.00034013859112747014, -0.006151767913252115, -0.01645597815513611, 0.004061564803123474, 0.007039579562842846, 0.004117490258067846, 0.015910709276795387, 0.03568025305867195, -0.01737874373793602, 0.024900678545236588, -0.002474688459187746, 0.0015143485506996512, -0.0487947016954422, -0.0008602862944826484, 0.001302881515584886, 0.01291172206401825, -0.005459693726152182, 0.015071830712258816, -0.012282563373446465, 0.013156394474208355, -0.020370740443468094, -0.0049179187044501305, 0.005295413546264172, -0.005159096326678991, -0.021125730127096176, -0.00015182807692326605, -0.03277214616537094, -0.02313903532922268, -0.007647765800356865, 0.0028626692947000265, -0.031038464978337288, 0.002348856767639518, -0.002971024252474308, -0.008493633940815926, 0.00511016184464097, -0.0011927788145840168, 0.002275455044582486, -0.0025725574232637882, -0.03400249779224396, -0.003813396906480193, -0.03590395301580429, -0.001981847919523716, 0.008186045102775097, -0.002986753126606345, 0.008521596901118755, -0.006385954562574625, 0.007745634764432907, -0.01786808855831623, -0.0018507733475416899, 0.006941710598766804, -0.03151382878422737, -0.004694218281656504, -0.012471310794353485, -0.014890074729919434, 0.01907048001885414, -0.009800884872674942, 0.010639761574566364, -0.022453952580690384, -0.0031947249080985785, -0.006490814033895731, 0.012177703902125359, 0.003007725114002824, 0.0011158817214891315, -0.0077246627770364285, -0.014652391895651817, 0.02325088530778885, -0.008787240833044052, 0.014610448852181435, 0.012925703078508377, -0.034953225404024124, 0.019503900781273842, -0.0012111292453482747, -0.0032436593901365995, -0.01617635227739811, 0.009360473603010178, -0.031877342611551285, 0.02165701799094677, -0.013694673776626587, 0.01914038695394993, 0.003518042154610157, 0.03288399428129196, 0.020105095580220222, 0.003254145383834839, 0.014414709992706776, -0.00034428926301188767, 0.0013981290394440293, -0.00505773164331913, 0.01672162301838398, -0.0322408564388752, 0.033023808151483536, 0.016483942046761513, -0.009367465041577816, 0.003516294527798891, -0.013771571218967438, -0.01655384711921215, 0.008458680473268032, 0.013848467729985714, 0.005242983810603619, 0.021629055961966515, -0.011052209883928299, -0.015756914392113686, 0.015910709276795387, -0.026270844042301178, 0.044488467276096344, -0.005400273483246565, 0.004669751040637493, 0.02757110446691513, -0.0033799768425524235, 0.01809179037809372, 0.005788254085928202, -0.00217933370731771, -0.01368069276213646, 0.01846928521990776, 0.018902704119682312, 0.0071234675124287605, 0.038895949721336365, -0.004802573472261429, 0.015071830712258816, 0.01003157626837492, 0.04784397408366203, -0.010779574513435364, -0.015505251474678516, 0.00967505294829607, 0.017420688644051552, -0.009668062441051006, 0.02396393194794655, 0.0009725735289976001, 0.030003849416971207, -0.011534564197063446, -0.033303432166576385, 0.016162371262907982, 0.003217444522306323, -0.007221336476504803, -0.017784200608730316, -0.009661071933805943, 0.02494262158870697, -0.008381783962249756, 0.013778561726212502, -0.006228664889931679, 0.028088413178920746, 0.022174326702952385, -0.0008825689437799156, 0.0021705953404307365, 0.014932017773389816, -0.007976326160132885, 0.003813396906480193, 0.006756458431482315, 0.003418425563722849, -0.009556211531162262, -0.013156394474208355, -0.018119752407073975, 0.02220228873193264, -0.027808787301182747, -0.007256289944052696, -0.005096180364489555, -0.014135085046291351, 0.003764462424442172, 0.005323376506567001, 0.008787240833044052, -0.008479652926325798, 0.02653648890554905, -0.0036630979739129543, -0.04281071200966835, 0.012778899632394314, 0.010576846078038216, -0.0004522073722910136, -0.0070116170682013035, -0.019755562767386436, 0.008801222778856754, 0.018217621371150017, 0.02729147858917713, 0.007570868823677301, -0.0005229876260273159, -0.022398026660084724, 0.00885714776813984, 0.001717077218927443, 0.03886798769235611, 0.035652291029691696, -0.011185032315552235, -0.008395764976739883, 0.00026586296735331416, -0.012317516840994358, 0.010996284894645214, -0.030842727050185204, -0.011723311617970467, 0.018734930083155632, -0.009856809861958027, -0.01775623857975006, -0.045802708715200424, -0.0276829544454813, -0.023418661206960678, 0.020846104249358177, -0.011653405614197254, -0.011219985783100128, -0.024257538840174675, -0.006011954974383116, -0.0005741067579947412, -0.001321231946349144, -0.01200992800295353, 0.017350781708955765, -0.0011814190074801445, -0.0037749484181404114, -0.01463841088116169, 0.006833355873823166, 0.016567829996347427, 0.07639376819133759, 0.024690959602594376, 0.007598831318318844, 0.014274897053837776, -0.020105095580220222, -0.021796831861138344, -0.01435878500342369, -0.03243659436702728, 0.03811299800872803, -0.003635135479271412, -0.020328795537352562, -0.006427898071706295, -0.01033217366784811, -0.008752287365496159, -0.0015615354059264064, -0.006595673970878124, 0.001966119045391679, -0.01318435650318861, 0.005623973906040192, 0.008542568422853947, 0.013988280668854713, 0.0010031575802713633, 0.03282807022333145, 0.00766174728050828, 0.013995272107422352, 0.009961669333279133, 0.02533409744501114, 0.005739319603890181, 0.0031615193001925945, -0.018385397270321846, -0.023726249113678932, 0.007850494235754013, 0.01504386868327856, 0.01852520927786827, -0.025348080322146416, 0.025068454444408417, -0.010527911596000195, -0.0007279009441845119, -0.021629055961966515, -0.01047198660671711, -0.010527911596000195, 0.018930668011307716, 0.01628820411860943, -0.01700124889612198, 0.014820167794823647, -0.013491945341229439, 0.008039241656661034, 0.044488467276096344, -0.011108134873211384, -0.002906360663473606, 0.006284589879214764, 0.024159669876098633, -0.007696700282394886, 0.005599506665021181, -0.010416061617434025, 0.0007755247061140835, -0.013603795319795609, -0.0313740149140358, -0.02334875427186489, -0.019042517989873886, -0.03629542887210846, -0.017280874773859978, 0.008325858041644096, -0.019671674817800522, -0.008297896012663841, -0.029528485611081123, -0.01918232999742031, -0.007200364489108324, -0.019489917904138565, 0.0122755728662014, -0.014652391895651817, -0.02462105266749859, -0.024369388818740845, 0.018734930083155632, 0.03282807022333145, 0.004627807065844536, 0.006228664889931679, 0.0017721285112202168, -0.006389449816197157, 0.018511228263378143, -0.004243321716785431, -0.019923338666558266, -0.008885109797120094, -0.014750261791050434, -0.008892100304365158, -0.0018123247427865863, -0.007647765800356865, -0.007962345145642757, -0.006773935165256262, 0.03036736324429512, -0.012708992697298527, -0.01874891109764576, 0.006931224837899208, 0.012331497855484486, 0.02850785106420517, 0.005379301495850086, 0.006693542934954166, 0.0034236684441566467, 0.014260916039347649, -0.02817229926586151, 0.015085812658071518, -0.04890655353665352, -0.028969233855605125, -0.014624429866671562, -0.009283577091991901, 0.016917360946536064, 0.015029886737465858, 0.013624767772853374, 0.001617460511624813, -0.007857485674321651, -0.003514546900987625, 0.0003185112727805972, -0.003512799274176359, -0.0006365856388583779, -0.006316048093140125, -0.005393282976001501, 0.013876430690288544, 0.017308836802840233, 0.007361149415373802, -0.02242599055171013, 0.006389449816197157, 0.0004915297613479197, 0.03528877720236778, -0.019769543781876564, -0.010646753013134003, 0.006385954562574625, 0.01672162301838398, -0.036491166800260544, -0.018930668011307716, 0.006127300672233105, 0.002565566683188081, 0.00475713424384594, -0.009661071933805943, -0.012331497855484486, -0.01324028242379427, -0.0036456214729696512, 0.009940697811543941, 0.012156732380390167, -0.008696362376213074, -0.00733318692073226, -0.013995272107422352, 0.0030339399818331003, 0.0029954914934933186, -0.01112910732626915, 0.013624767772853374, -0.03184938058257103, -0.020902028307318687, 0.00472917128354311, -0.007500962354242802, 0.014267906546592712, -0.009276586584746838, -0.016959305852651596, -0.009248623624444008, -0.01830150932073593, -0.009367465041577816, -0.01732281967997551, -0.01672162301838398, -0.016791529953479767, 0.04320218786597252, 0.025697611272335052, 0.007431055884808302, 0.010136435739696026, 0.020678328350186348, 0.010891425423324108, 0.0006877047126181424, -0.0019416516879573464, -0.02916497178375721, -0.01788206957280636, 0.014288878999650478, 0.013960318639874458, 0.01623227819800377, 0.0033415283542126417, -0.010688696056604385, 0.005896609276533127, 0.006169244181364775, 0.023698287084698677, 0.0025061462074518204, -0.013799533247947693, -0.02188071981072426, -0.04943784326314926, -0.016861436888575554, 0.023712268099188805, 0.0016428015660494566, -0.0253900233656168, -0.024984566494822502, 0.013645739294588566, 0.017350781708955765, 0.003977677319198847, 0.027934618294239044, 0.009115801192820072, 0.007151430007070303, 0.005739319603890181, 0.010094491764903069, 0.01230353582650423, 0.020035188645124435, -0.00948630552738905, -0.023544492200016975, -0.05136726051568985, 0.005683394614607096, 0.008703352883458138, 0.02789267525076866, 0.0029500522650778294, 0.0005601254524663091, 0.0006405178573913872, -0.005155600607395172, 0.02696990966796875, -0.02790665626525879, -0.0080602141097188, 0.005183563567698002, -0.001632315688766539, -0.01452656090259552, -0.009472324512898922, 0.00041856488678604364, 0.011772246100008488, 0.0003265941923018545, -0.011548546142876148, 0.0059070950374007225, 0.02109776809811592, -0.030059773474931717, 0.00032637573895044625, 0.010506940074265003, 0.016679679974913597, 0.022272195667028427, 0.024369388818740845, 0.0182595644146204, 0.0043691531755030155, 0.000974321155808866, -0.012282563373446465, -0.022733578458428383, 0.0022876886650919914, 0.01908446103334427, 0.001322105759754777, 0.038504473865032196, -0.0038064063992351294, 0.011045219376683235, 0.013974299654364586, 0.012625105679035187, -0.013743608258664608, -0.03534470126032829, 0.0248307716101408, 0.03126216679811478, -0.01335213240236044, -0.02866164594888687, -0.02905312180519104, -0.019014554098248482, 0.014806186780333519, -0.000354775256710127, 0.02882941998541355, 0.010996284894645214, -0.005547076929360628, -0.019909357652068138, 0.028437944129109383, -0.020985916256904602, 0.0076827192679047585, 0.007158420514315367, 0.006962682586163282, -0.01797994039952755, -0.019000573083758354, -0.0005304152145981789, 0.006822869647294283, 0.0034393975511193275, -0.004271284211426973, -0.020216945558786392, 0.008668400347232819, 0.01760244555771351, 0.01842734031379223, 0.004086032044142485, -0.020370740443468094, -0.013226300477981567, 0.03699449449777603, -0.03008773736655712, -0.0034481356851756573, 0.005382796749472618, -0.010982303880155087, 0.02312505431473255, -0.04462827742099762, -0.008514605462551117, 0.004830535966902971, -0.015756914392113686, -0.003921751864254475, 0.02400587499141693, 0.013219309970736504, -0.016022559255361557, -0.015491269528865814, 0.006165748927742243, -0.0025830434169620275, -0.007549896836280823, -0.0039602005854249, -0.002925585024058819, -0.04188794642686844, -0.02116767317056656, -0.007493971846997738, 0.009465334005653858, 0.006693542934954166, -0.009430380538105965, 0.0011787975672632456, 0.01356884278357029, 0.04303441196680069, -0.002972771879285574, 0.007018607575446367, 0.006892776116728783, 0.011576508171856403, -0.041971832513809204, 0.028046468272805214, -0.0009114053682424128, -0.005124142859131098, 0.0031737529207021, -0.003914761357009411, -0.03576413914561272, -0.001155204139649868, 0.030003849416971207, 0.014722298830747604, 0.007528924848884344, 0.016959305852651596, 0.011772246100008488, 0.024816790595650673, -0.0040405928157269955, -0.0004111373273190111, -0.02813035622239113, -0.001718824845738709, -0.008927053771913052, 0.02325088530778885, 0.028423963114619255, -0.02143331803381443, 0.03087068907916546, 0.007780588231980801, 0.01019236072897911, 0.000957718410063535, -0.0313740149140358, -0.03414231166243553, -0.005078703630715609, -0.0036456214729696512, -0.0017258155858144164, -0.015980614349246025, -0.0034603693056851625, -0.00885714776813984, -0.016567829996347427, 0.020734254270792007, 0.013450001366436481, -0.0011342321522533894, -0.00326812663115561, 0.0016646473668515682, 0.011373779736459255, 0.017686331644654274, -0.008262942545115948, -0.022873390465974808, -0.016903379932045937, -0.003400948829948902, -0.025627706199884415, -0.017616426572203636, -0.02072027325630188, 0.030954577028751373, 0.015924690291285515, -0.00343240681104362, -0.03699449449777603, -0.028745533898472786, -0.029472559690475464, -0.018161695450544357, -0.042670898139476776, 0.027207590639591217, 0.041692208498716354, 0.007941372692584991, 0.009101820178329945, 0.00904589518904686, -0.015267569571733475, 0.011632433161139488, -0.013911384157836437, -0.0006064384942874312, 0.01159748062491417, -0.03405842185020447, 0.019937319681048393, -0.01781216450035572, -0.049689505249261856, 0.015700988471508026, 0.005634460132569075, -0.01775623857975006, 0.043174225836992264, 0.003189481794834137, -0.025739556178450584, 0.005816216580569744, -0.0022405018098652363, 0.003287350991740823, 0.02220228873193264, 0.03903576359152794, 0.015966633334755898, -0.03554043918848038, -0.004613826051354408, 0.03576413914561272, 0.01225460134446621, -0.010423052124679089, 0.021391374990344048, 0.007235317956656218, 0.0036875654477626085, 0.00850062444806099, -0.011282901279628277, -0.028745533898472786, 0.011884097009897232, -0.002280697925016284, 0.008822194300591946, 0.021643036976456642, -0.00011611024820012972, 0.007466008886694908, -0.0007152303587645292, 0.008095167577266693, -0.002430996857583523, 0.009164735674858093, 0.01200992800295353, -0.011212995275855064, 0.029081083834171295, -0.008731315843760967, -0.010947350412607193, 0.0040895272977650166, 0.009751950390636921, 0.014107122085988522, -0.01698726788163185, -0.023418661206960678, -0.01792401447892189, -0.015924690291285515, -0.007647765800356865, 0.019559824839234352, -0.027599066495895386, -0.007445037364959717, -0.01711309887468815, 0.006644608452916145, 0.0030653979629278183, 0.006263617891818285, -0.01621829718351364, -0.007612812798470259, -0.004260798450559378, -0.0005487656453624368, 0.011800209060311317, -0.0430903360247612, -0.00670053344219923, 0.029500523582100868, -0.027990544214844704, 0.004956367425620556, 0.2128511667251587, -0.017350781708955765, -0.0038902941159904003, 0.016679679974913597, -0.011912059038877487, -0.0009638352203182876, -0.003628144972026348, 0.003091612830758095, 0.002811986953020096, 0.014484616927802563, 0.031178276985883713, -0.007410083897411823, 0.0010145173873752356, -0.001798343495465815, 0.008920063264667988, -0.005302404519170523, -0.04007037729024887, -0.014456653967499733, -0.04099314287304878, 0.0007309593493118882, 0.014065178111195564, -0.013953328132629395, -0.018846780061721802, -0.01156951766461134, 0.03523285314440727, 0.03442193567752838, 0.006924233864992857, 0.014834148809313774, 0.0279625803232193, 0.017840126529335976, -0.029836073517799377, -0.007528924848884344, 0.027053797617554665, 0.0073401774279773235, 0.005305899772793055, -0.024635033681988716, 0.023111073300242424, -0.03293992206454277, 0.01765836961567402, 0.004942385945469141, -0.02038472145795822, -0.029304783791303635, 0.018343452364206314, -0.04577474296092987, 0.028088413178920746, -0.015001924708485603, -0.00580922607332468, -0.011303873732686043, 0.03156975284218788, 0.017252912744879723, -0.003967191092669964, 0.013638748787343502, 0.017630407586693764, -0.001122872345149517, 0.0154073815792799, 0.004411097150295973, -0.006340515334159136, 0.0013561851810663939, -0.017630407586693764, 0.02861970104277134, -0.0068473368883132935, -0.0029325757641345263, -0.011443685740232468, 0.009122791700065136, -0.033191584050655365, 0.019657693803310394, 0.014100131578743458, 0.002841697307303548, -0.0010966574773192406, 0.0033712387084960938, -0.007535915356129408, -0.018063826486468315, -0.043118298053741455, -0.004477508366107941, -0.009870790876448154, -0.009164735674858093, 0.002063988009467721, 0.02730545960366726, 0.057267364114522934, 0.0027018843684345484, 0.011604471132159233, 0.013575833290815353, -0.0080602141097188, -0.01477822382003069, -0.005928067024797201, -0.02083212323486805, 0.03660301864147186, -0.007563878316432238, 0.00011698407615767792, -0.005826702807098627, -0.019112423062324524, 0.01846928521990776, -0.00013489760749507695, 0.0012277320493012667, -0.0020255395211279392, -0.004806068725883961, -0.00383087364025414, 0.028689607977867126, 0.0014549280749633908, -0.02329283021390438, -0.02620093896985054, 0.04725676029920578, 0.015645064413547516, 0.0006055646226741374, -0.018832799047231674, 0.006602664478123188, 0.0042573027312755585, 0.02220228873193264, -0.00014287131489254534, -4.289962453185581e-05, -0.02116767317056656, -0.005756796337664127, 0.018455304205417633, 0.01260413322597742, 0.005718347616493702, 0.01368069276213646, 0.020985916256904602, -0.001156951766461134, 0.006375468336045742, -0.007067542523145676, 0.030003849416971207, -0.00810914859175682, 0.006623636465519667, 0.012653067708015442, 0.00037509179674088955, -0.025082435458898544, -0.009989632293581963, 0.0010660734260454774, -0.03948316350579262, -0.025501873344182968, 0.03333139792084694, -0.0004928404814563692, 0.025292154401540756, -0.02072027325630188, -0.022901354357600212, -0.043453849852085114, -0.0012146246153861284, -0.02916497178375721, -0.008682381361722946, -0.009744958952069283, -0.014568504877388477, -0.0021041841246187687, 0.021181654185056686, 0.012212657369673252, -0.0015047363704070449, -0.012324507348239422, 0.004012630321085453, 0.009024922735989094, -0.009199689142405987, -0.021083785220980644, 0.0006662958767265081, 0.011967984959483147, -0.0023348755203187466, -0.010038566775619984, 0.028577757999300957, -0.023754213005304337, -0.0253900233656168, -0.02657843381166458, 0.01633014716207981, -0.003914761357009411, -0.015938671305775642, 0.0032751173712313175, 0.03375083580613136, 0.00445304112508893, -0.028088413178920746, -0.0028958746697753668, -0.17951977252960205, 0.0013011338887736201, 0.01277190912514925, -0.006697038188576698, -0.0019294180674478412, 0.0008047980372793972, 0.002806744072586298, 0.01617635227739811, -0.021671000868082047, -0.010506940074265003, 0.026564450934529305, -0.014177028089761734, -0.02313903532922268, -0.02000722661614418, 0.008039241656661034, -0.005704366602003574, -0.017406705766916275, 0.011520583182573318, 0.025501873344182968, 0.011555536650121212, 0.022272195667028427, -0.03243659436702728, 0.001075685489922762, -0.01304454356431961, 0.011422714218497276, 0.010150416754186153, -0.0035931917373090982, 0.009024922735989094, 0.014918036758899689, -0.03677079454064369, -0.011884097009897232, 0.0016209558816626668, 0.004341190680861473, 0.005417750217020512, -0.0027927628252655268, -0.002364585641771555, -0.013338151387870312, -0.029137009754776955, 0.008353821001946926, 0.028116375207901, 0.03134605288505554, -0.006165748927742243, 0.0107725840061903, 0.00789243821054697, -0.02877349592745304, 0.024984566494822502, 0.02905312180519104, 0.0002916409866884351, 0.015141737647354603, -0.012513254769146442, 0.017686331644654274, -0.028354056179523468, -0.026075106114149094, -0.008283914998173714, 0.036323390901088715, 0.007081523537635803, 0.027920637279748917, 0.013107459992170334, 0.016078483313322067, -0.0016428015660494566, -3.3383062145730946e-06, -0.015239606611430645, -0.011513592675328255, 0.0012085078051313758, -0.028354056179523468, -0.030171625316143036, -0.0024694453459233046, 0.011010265909135342, -0.020580459386110306, 0.014149066060781479, -0.007479990366846323, 0.01515571866184473, -0.010506940074265003, -0.009898753836750984, 0.045299381017684937, -0.0018630069680511951, -0.05626071244478226, 0.006938215345144272, 0.01972760073840618, 0.0027490712236613035, 0.014568504877388477, 0.033303432166576385, -0.004183901008218527, -0.006777430418878794, -0.020161021500825882, 0.0077316537499427795, -0.0031632669270038605, 0.008325858041644096, -0.020216945558786392, -0.005956029519438744, 0.027990544214844704, -0.009143764153122902, 0.016078483313322067, -0.0017205725889652967, 0.009933706372976303, 0.014680354855954647, 0.02910904586315155, -0.0005173077224753797, 0.027976561337709427, -0.029947923496365547, -0.010478977113962173, 0.0191264059394598, -0.021908681839704514, 0.02817229926586151, 0.008116139099001884, 0.023208942264318466, 0.005131133366376162, -0.011066190898418427, 0.0161204282194376, -0.029416635632514954, -0.00644187955185771, 0.021307487040758133, 0.020636385306715965, -0.008514605462551117, -0.020971935242414474, 0.03903576359152794, 0.004145452752709389, -0.01863705925643444, 0.02882941998541355, -0.013722636736929417, 0.06308358162641525, -0.027599066495895386, -0.03447786346077919, 0.0058546653017401695, -0.01786808855831623, -0.028913307934999466, -0.10888628661632538, -0.02297125943005085, 0.017350781708955765, 0.015589138492941856, 0.0040895272977650166, 0.010681705549359322, -0.0038902941159904003, 0.017127079889178276, 0.01452656090259552, 0.03162568062543869, -0.005651936866343021, -0.014820167794823647, -0.000817468564491719, -7.798938895575702e-05, 0.03229678049683571, -0.01126892026513815, -0.012869778089225292, -0.01142970472574234, 0.0039602005854249, 0.028312113136053085, 0.006557225249707699, -0.013121441006660461, 0.008074195124208927, 0.0019084461964666843, -0.011604471132159233, -0.01818965934216976, -0.031038464978337288, 0.004460031632333994, 0.011639424599707127, 0.021517205983400345, 0.03842058777809143, -0.018385397270321846, 0.028214244171977043, -0.009395427070558071, -0.014295869506895542, 0.0031982201617211103, -0.033135659992694855, -0.018888723105192184, 0.0022020533215254545, -0.028745533898472786, -0.001735427649691701, 0.02910904586315155, -0.010262266732752323, -0.037525784224271774, 0.0030129679944366217, -0.0031265660654753447, -0.0035232852678745985, 0.02691398374736309, 0.010038566775619984, -0.029780149459838867, -0.02477484568953514, -0.008968997746706009, -0.030395325273275375, -0.047452498227357864, 0.014540541917085648, 0.0012120030587539077, -0.0009612137218937278, -0.0037085372023284435, -0.027375366538763046, 0.011087163351476192, -0.006109823938459158, -0.02664833888411522, -0.009416399523615837, 0.02592131309211254, 0.022300157696008682, 0.007486980874091387, -0.02109776809811592, -0.008311877027153969, 0.010464996099472046, 0.01477822382003069, -0.006711019203066826, 0.01354087982326746, -0.018986592069268227, 0.011324845254421234, -0.017029210925102234, 0.00868937186896801, -0.0020028199069201946, -0.005064722616225481, 0.006718010175973177, 0.020692309364676476, -0.00010147358261747286, -0.0186929851770401, 0.015938671305775642, -0.02499854750931263, 0.011485629715025425, -0.009912734851241112, 0.010290229693055153, -0.016036540269851685, 0.01296065654605627, -0.038728173822164536, -0.0023540998809039593, 0.018021883442997932, 0.019475936889648438, 0.013750598765909672, -0.013177365995943546, 0.00494588166475296, 0.008151092566549778, 0.006697038188576698, 0.03243659436702728, -0.004197882488369942, -0.014554522931575775, 0.016358109191060066, -0.05181466042995453, 0.012639086693525314, 0.01164641510695219, 0.008682381361722946, -0.0007073659216985106, -0.014764242805540562, 0.005477170459926128, -0.0097030159085989, 0.00383087364025414, 0.002077969256788492, 0.0009192698635160923, 0.01579885743558407, -0.018790854141116142, -0.00817206408828497, -0.013463982380926609, -0.0425310842692852, 0.014722298830747604, 0.0005754174781031907, 0.02696990966796875, -0.005774273071438074, -0.02604714408516884, -0.021139711141586304, -0.009409408085048199, 0.022663671523332596, -0.0038867986295372248, 0.018832799047231674, -0.032268818467855453, 0.005966515745967627, -0.0216989628970623, -0.030563101172447205, 0.007500962354242802, -0.005505132954567671, 0.01649792306125164, 0.018790854141116142, -0.012806861661374569, -0.046893246471881866, 0.017169024795293808, 0.02417365089058876, 0.0048654889687895775, 0.004246816970407963, -0.00538629200309515, 0.004348181188106537, 0.01563108339905739, -0.020328795537352562, -0.010178379714488983, -0.022887371480464935, -0.021335449069738388, 0.0022107914555817842, -0.011436695232987404, 0.00630206661298871, 0.021726924926042557, 0.007850494235754013, -0.03788929805159569, -0.025739556178450584, 0.012618114240467548, -0.015113774687051773, -0.0019224274437874556, 0.023418661206960678, -0.0014662878820672631, 0.0003641689254436642, 0.03403045982122421, 0.008773259818553925, 0.022943297401070595, -0.013862449675798416, 0.019252236932516098, -0.020957954227924347, -0.03822484612464905, -0.013848467729985714, 0.017965957522392273, -0.025459930300712585, -0.009751950390636921, -0.007654756307601929, 0.031989190727472305, 0.02400587499141693, 0.001503862557001412, 0.005463189445436001, -0.0126950116828084, -0.015700988471508026, -0.004578872583806515, 0.025809461250901222, 0.019224274903535843, -0.023390699177980423, -0.00733318692073226, 0.007242308463901281, 0.003053164342418313, 0.0215451680123806, -0.023474587127566338, 0.026886021718382835, -0.008619465865194798, 0.0009061623713932931, -0.03173752874135971, -0.0024991557002067566, -0.0026826600078493357, 0.009493296034634113, 0.02378217503428459, 0.01666569896042347, -0.01753253862261772, 0.023824118077754974, 0.036043766885995865, -0.0008463049889542162, -0.018399378284811974, 0.008039241656661034, 0.002525370568037033, -0.0079204011708498, -0.01749059371650219, 0.019364086911082268, -0.01328921690583229, -0.016022559255361557, 0.021517205983400345, 0.014876092784106731, 0.01660977303981781, -0.0035442570224404335, 0.007906420156359673, 0.017071155831217766, -0.026494545862078667, -0.00128802633844316, 0.014142075553536415, -0.021405356004834175, -0.02670426480472088, 0.013813515193760395, 0.0282422062009573, 0.011499611660838127, 0.0107725840061903, -0.018343452364206314, 0.021307487040758133, -0.01764438860118389, 0.0243973508477211, -0.020902028307318687, 0.011080172844231129, -0.010723649524152279, -0.0010678210528567433, -0.008591502904891968, -0.02394995093345642, -0.02259376458823681, -0.015980614349246025, -0.008367802016437054, -0.0054107592441141605, 0.02708175964653492, -0.007500962354242802, 0.09401019662618637, 0.03386268392205238, -0.020328795537352562, 0.003764462424442172, -0.02390800602734089, 0.012023909948766232, 0.020091114565730095, 0.02882941998541355, -0.005798740312457085, -0.0023540998809039593, 0.015505251474678516, -0.010492958128452301, -0.008521596901118755, -0.015589138492941856, -0.019881395623087883, -0.006490814033895731, -0.007878457196056843, -0.005561058409512043, -0.011590490117669106, 0.007633784785866737, -0.0014086150331422687, 0.003346771467477083, 0.005260460544377565, 0.005089189857244492, -0.023376718163490295, -0.025571780279278755, 0.012660058215260506, 0.016092466190457344, -0.025781499221920967, -0.014456653967499733, 0.011995946988463402, -0.015225625596940517, -0.045579005032777786, -0.016819491982460022, -0.024788828566670418, 0.0027176132425665855, -0.018846780061721802, -0.02379615604877472, -0.01726689375936985, 0.023320792242884636, 0.0037714531645178795, 0.0036596027202904224, -0.026452600955963135, -0.020971935242414474, 0.0019573806785047054, -0.0015265821712091565, 0.00128802633844316, -0.017784200608730316, -0.006910252850502729], "a6a7b0af-b576-416a-b269-bfdc135091ae": [-0.007074024062603712, -0.011181408539414406, 0.012509332969784737, -0.007706201169639826, -0.0020572238136082888, 0.02013077214360237, 0.0012952563120052218, -0.029977193102240562, -0.0004723668098449707, -0.025385964661836624, 0.026982298120856285, 0.0034769729245454073, 0.006731447763741016, -0.0072470782324671745, 5.540377242141403e-05, 0.012029020115733147, 0.018887609243392944, 0.0005143059534020722, -0.004238057415932417, 0.0012140268227085471, -0.02822546288371086, 0.0018788721645250916, -0.025018665939569473, 0.003584690159186721, -0.03658856078982353, 0.013378134928643703, 0.02354947291314602, -0.01180298998951912, -0.009867610409855843, 0.010743475519120693, 0.005809670314192772, 0.003432826604694128, -0.04249358922243118, 0.0059262169525027275, -0.033169861882925034, -0.004230993799865246, 0.0117464829236269, -0.009909991174936295, 0.030485760420560837, -0.011817117221653461, 0.037746965885162354, 0.02337994985282421, -0.004601824097335339, -0.022546464577317238, -0.012827186845242977, 0.041250426322221756, 0.0023115072399377823, -0.010503319092094898, -0.014042097143828869, 0.028423238545656204, -0.009118886664509773, -0.003376319073140621, -0.0393291711807251, 0.005795543547719717, 0.00317677715793252, -0.010743475519120693, 0.011739418841898441, 0.007783898618072271, 0.017828095704317093, 0.00804524589329958, -0.004192145075649023, 0.004728965926915407, -0.011520452797412872, 0.011442755348980427, -0.02370486781001091, -0.02499041147530079, -0.012375127524137497, -0.013356944546103477, -0.007649693638086319, -0.004509999416768551, 0.043228186666965485, 0.028508000075817108, -0.0010807046201080084, -0.005452967248857021, -0.0005884719430468976, -0.012233858928084373, -0.022701861336827278, -0.016260012984275818, 0.001360593014396727, 0.004619482439011335, 0.01206433679908514, -0.031192103400826454, -0.025343583896756172, 0.007579059340059757, 0.03014671429991722, 0.04062884300947189, 0.02785816416144371, -0.007480171509087086, -0.0083065927028656, -0.00021366872533690184, 0.01284131407737732, 0.011329740285873413, 0.034497786313295364, 0.025329455733299255, 0.010912997648119926, 0.01116021815687418, 0.0022090873681008816, 0.021868376061320305, -0.01238219067454338, -0.01774333417415619, -0.009260155260562897, -0.020201407372951508, -0.02828196994960308, -0.004799600224941969, -0.022179167717695236, 0.001979525899514556, 0.02871990203857422, 0.0064347838051617146, 0.018350789323449135, 0.01313091441988945, -0.037633951753377914, 0.03639078512787819, -0.004820790141820908, 0.007628503255546093, -0.005191620439291, -0.01028435304760933, 0.007515488658100367, -0.018449677154421806, -0.02354947291314602, -0.03989424556493759, 0.023252807557582855, -0.0025710882619023323, 0.038227278739213943, -0.029694655910134315, 0.023139793425798416, 0.006519544869661331, 0.0016899254405871034, -0.00707049248740077, 0.0018629793776199222, -0.026615001261234283, 0.012149098329246044, 0.002825371688231826, 0.0036200073082000017, 0.023789629340171814, -0.006184032186865807, 0.012205605395138264, -0.01566668599843979, 0.005912090186029673, 0.001705818111076951, -0.023238681256771088, 0.026035798713564873, 0.014430585317313671, 0.0007937528425827622, -0.013010836206376553, -0.015186372213065624, 0.04506467655301094, 0.014776693657040596, 0.02380375564098358, 0.0054070549085736275, 0.013250992633402348, 0.01799761690199375, -0.023139793425798416, -0.018082378432154655, -0.012643538415431976, 0.003537012031301856, 0.009175394661724567, 0.008292465470731258, 0.017376035451889038, -0.008871667087078094, 0.0007412185659632087, -0.004509999416768551, 0.003959051799029112, 0.011781799606978893, -0.0028271374758332968, -0.017856348305940628, 0.029864177107810974, 0.012579967267811298, -0.016161125153303146, -0.008186514489352703, -0.01273536216467619, -0.006371213123202324, 0.00892111100256443, -0.030118461698293686, 0.014430585317313671, 0.008356036618351936, -0.0034045728389173746, 0.019692840054631233, 0.007953421212732792, -0.009231901727616787, -0.02328106202185154, 0.02977941744029522, -0.013349880464375019, 0.0040650032460689545, 0.037690456956624985, -0.0186898335814476, -0.009027061983942986, 0.024481844156980515, 0.013498213142156601, -0.011845370754599571, -0.005188088398426771, 0.006254666484892368, 0.022560592740774155, 0.0024474782403558493, 0.0008145016618072987, -0.614348828792572, -0.008836349472403526, 0.016443662345409393, -0.012346873991191387, 0.01566668599843979, 0.013145041652023792, 0.01385138463228941, -0.007381283212453127, -0.020003631711006165, 0.04969828575849533, -0.000827745592687279, 0.017277147620916367, -0.009415551088750362, -0.0023221021983772516, 0.00158838857896626, -0.0351758748292923, 0.020893622189760208, -0.01811063289642334, 0.011753546074032784, 0.010990696027874947, -0.017941109836101532, 0.005852051079273224, 0.00995943509042263, -0.0014020906528458, -0.011605214327573776, -0.023846136406064034, 0.04020503908395767, -0.01118847168982029, -0.001682861940935254, 0.021910756826400757, -0.03585396707057953, 0.024411210790276527, 0.025583740323781967, -0.009133013896644115, 0.044188812375068665, -0.003708300180733204, -0.03260478749871254, 0.025611992925405502, 0.006809145677834749, 0.043284691870212555, -0.025498978793621063, 0.003658856265246868, 0.014988596551120281, 0.0018559159943833947, 0.007282395381480455, -0.0034151680301874876, 0.01976347528398037, 0.008419607765972614, -0.004499404225498438, -0.03384795039892197, 0.018237773329019547, -0.013872575014829636, -0.01572319306433201, 0.016697946935892105, 0.02402978576719761, -0.01180298998951912, 0.018619198352098465, -0.02476438134908676, 0.008857539854943752, 0.003003723220899701, -0.009366107173264027, 0.011795926839113235, -0.02781578339636326, -0.03743617236614227, -0.045516736805438995, -0.004690116737037897, -0.010107766836881638, -0.011513389647006989, -0.00122462201397866, -0.003923734650015831, 0.014804947189986706, -0.010234909132122993, -0.006297046784311533, -0.0006237890920601785, -0.014296380802989006, 0.014423522166907787, 0.021797742694616318, -0.008751588873565197, -0.013258056715130806, 0.00959213636815548, 0.002701761666685343, 0.006600774358958006, -0.009641580283641815, -0.01784222200512886, 0.03746442869305611, 0.013116788119077682, -0.023026779294013977, -0.0014471199829131365, -0.000558893836569041, -0.010927124880254269, 0.012353937141597271, 0.01826602779328823, -0.024142799898982048, -0.026346590369939804, 0.007367156445980072, 0.041419949382543564, -0.006018041633069515, 0.014296380802989006, -0.005258722696453333, -0.03297208622097969, -0.00908356998115778, -0.0231680478900671, 0.007692074403166771, 0.01849205791950226, 0.022546464577317238, 0.022715987637639046, -0.029496880248188972, -0.007988737896084785, 0.038170769810676575, -0.021373936906456947, 0.0036765148397535086, 0.005279913078993559, -0.011576959863305092, -0.03144638612866402, 0.01799761690199375, -0.02364836074411869, 0.02258884534239769, 0.009196585044264793, 0.0067491065710783005, -0.009952371940016747, -0.011569896712899208, -0.024919778108596802, 0.0035281828604638577, -0.008412543684244156, 0.007960484363138676, 0.008801032789051533, 0.027462612837553024, -0.009634517133235931, 0.02402978576719761, 0.0050927321426570415, -9.844654414337128e-05, -0.04472563415765762, 0.01001594215631485, 0.0005840572994202375, 0.021444570273160934, -0.018831102177500725, 0.021444570273160934, -0.004675989970564842, -0.00222321436740458, -0.027307216078042984, 0.005350547377020121, 0.007571995723992586, 0.01531351450830698, -0.01928316056728363, 0.011442755348980427, -0.026911664754152298, -0.017008736729621887, 0.005481220781803131, -0.006869184784591198, -0.029553387314081192, -0.0006529256934300065, -0.005096264183521271, -0.011887751519680023, 0.01582208089530468, -0.011908940970897675, 0.00010578588990028948, 0.0029631084762513638, -0.043341200798749924, -0.008779842406511307, -0.029581639915704727, -0.003782466286793351, 0.0172630213201046, -0.002373312134295702, 0.0030814209021627903, -0.012269176542758942, 0.009966498240828514, -0.022193294018507004, 0.010771729052066803, -0.005562450271099806, -0.029694655910134315, -0.00502209784463048, -0.024919778108596802, -0.020229659974575043, 0.028960058465600014, -0.012636474333703518, 0.006431252229958773, -0.024058040231466293, -0.01267885509878397, 0.009895863942801952, 0.007353029679507017, 0.00535407941788435, 0.003457548562437296, 0.00014071674377191812, 0.0005800841026939452, 0.02641722373664379, -0.012276239693164825, 0.008476114831864834, 0.00865270011126995, -0.026064053177833557, 0.030400998890399933, -0.0009438507258892059, -0.0020166090689599514, -0.01427519042044878, 0.016118744388222694, -0.033480655401945114, 0.016118744388222694, -0.014310507103800774, 0.0190147515386343, -0.0035052266903221607, 0.031615909188985825, 0.021599965170025826, 0.001435641897842288, -0.0018258964410051703, -0.014494156464934349, 0.000136302100145258, -0.004930273629724979, 0.01390789169818163, -0.020596958696842194, 0.0359104722738266, 0.010376176796853542, -0.008348973467946053, 0.013173295184969902, -0.009733404964208603, -0.01662731170654297, 0.011654658243060112, 0.022871382534503937, 0.017404289916157722, 0.0190147515386343, -0.014804947189986706, -0.0007447503157891333, 0.012170287780463696, -0.023450585082173347, 0.05557505786418915, 0.0017764524091035128, -0.0006758818635717034, 0.027660388499498367, 0.01443764939904213, 0.03105083480477333, 0.007367156445980072, -0.0162035059183836, -0.00713759521022439, 0.021501077339053154, 0.008801032789051533, -0.0005884719430468976, 0.051902078092098236, 0.00558010907843709, 0.019297288730740547, 0.005756694823503494, 0.04952876269817352, -0.0005959768313914537, -0.01015014760196209, 0.002078413963317871, 0.012325683608651161, -0.00551300635561347, 0.029948938637971878, -0.0021437506657093763, 0.03138987720012665, -0.0035158218815922737, -0.023196300491690636, 0.008998808450996876, 0.011788862757384777, -0.0054282452911138535, -0.023464711382985115, -0.012601157650351524, 0.029073074460029602, 0.0028094789013266563, 0.010008879005908966, 0.01118847168982029, 0.02248995751142502, 0.018294280394911766, 0.0035776267759501934, -0.003003723220899701, 0.022871382534503937, -0.009231901727616787, 0.005276381503790617, -0.004015559330582619, 0.0008630627417005599, -0.03562793508172035, -0.010912997648119926, -0.013512339442968369, 0.02610643394291401, -0.02449597232043743, -0.0032262213062494993, -0.022066151723265648, 0.000264216389041394, 0.006134588271379471, -0.0098534831777215, -0.00048649366362951696, -0.006244071293622255, 0.020921876654028893, -0.012756552547216415, -0.029807670041918755, 0.012346873991191387, 0.010263162665069103, -0.007621440105140209, 0.004026154521852732, -0.019932996481657028, 0.011718228459358215, 0.001762325526215136, 0.012636474333703518, -4.754018664243631e-05, -0.010263162665069103, 0.0010224313009530306, -0.00043594601447694004, -0.004234525840729475, 0.034752070903778076, 0.025809770449995995, -0.017912855371832848, -0.0006555744912475348, -0.0010727583430707455, 0.0077697718515992165, 0.03181368485093117, -0.02701055258512497, -0.02662912756204605, 0.018929990008473396, -0.016330648213624954, -0.030598774552345276, -0.04938749596476555, -0.03153114765882492, -0.01986236311495304, 0.00671378942206502, -0.013794876635074615, -0.02120441384613514, -0.02078060805797577, -0.01720651239156723, 0.010037132538855076, -0.010637524537742138, -0.025159934535622597, 0.025018665939569473, -0.0032191576901823282, -0.01609049178659916, -0.019057132303714752, 0.018153011798858643, 0.02653023973107338, 0.055688075721263885, 0.007741518318653107, -7.212423224700615e-05, 0.01784222200512886, -0.010383240878582, -0.0062158177606761456, -0.018294280394911766, -0.04613832011818886, 0.029157835990190506, -0.01672619953751564, -0.017291273921728134, 0.0023574193473905325, 0.0037577443290501833, 0.003672983031719923, 0.007543742191046476, -0.008193577639758587, 0.0040755984373390675, -0.0030319769866764545, 0.002507517347112298, 0.006897438317537308, 0.019947122782468796, -0.006254666484892368, 0.025442471727728844, 0.021275049075484276, 0.027674514800310135, 0.019452683627605438, 0.017489049583673477, 0.008144133724272251, 0.007741518318653107, -0.033904459327459335, -0.01991887018084526, 0.017559684813022614, 0.018901735544204712, 0.013455832377076149, -0.014960343018174171, 0.021388063207268715, -0.004704243969172239, 0.0027370788156986237, -0.023097412660717964, 0.01456479076296091, -0.0004218191606923938, 0.030485760420560837, 0.004527658224105835, -0.014098604209721088, 0.013844320550560951, -0.025979291647672653, -0.009528566151857376, 0.03181368485093117, -0.02157171256840229, -0.016500169411301613, -0.007692074403166771, 0.02797117829322815, -0.0190147515386343, 0.013922018930315971, -0.004160359501838684, -0.0027829911559820175, -0.002618766389787197, -0.011725292541086674, -0.02545659802854061, -0.02631833590567112, -0.020046012476086617, -0.02135980874300003, -0.0007946357945911586, -0.013646544888615608, -0.01570906676352024, -0.030909566208720207, -0.013816067017614841, -0.007112873252481222, -0.0006970721296966076, 0.0018258964410051703, -0.0029472156893461943, -0.034328266978263855, -0.021430443972349167, 0.019043004140257835, 0.025230567902326584, 0.005633084569126368, 0.014578917995095253, 0.005244595929980278, -0.0002507517347112298, 0.03653205558657646, -0.005689592100679874, -0.0203568022698164, 0.009655707515776157, -0.010792919434607029, -0.0005090083577670157, -0.0072294194251298904, -0.0019689309410750866, 0.0028306692838668823, -0.012021956034004688, 0.01960807852447033, -0.011407437734305859, -0.021289175376296043, 0.01105426624417305, 0.010990696027874947, 0.019339669495821, 0.016062237322330475, 0.02056870609521866, 0.005339952185750008, 0.021868376061320305, -0.02855038084089756, -0.003166181966662407, -0.03187019005417824, -0.02472200244665146, -0.021119652315974236, 0.0083065927028656, 0.01377368625253439, 0.009648644365370274, 0.01709349825978279, -0.006226412486284971, -0.007607312873005867, -0.0033480653073638678, 0.00771326432004571, -0.0014206321211531758, -0.0011433925246819854, 0.009556819684803486, -0.0075508058071136475, 0.01822364702820778, 0.02055457793176174, 0.008292465470731258, -0.02039918303489685, -0.011139027774333954, -0.015200499445199966, 0.022942017763853073, -0.010552763007581234, -0.019466809928417206, 0.01609049178659916, 0.025442471727728844, -0.034441281110048294, -0.025075173005461693, 0.007896913215517998, -0.002869518008083105, 0.005887368228286505, -0.017277147620916367, -0.016754454001784325, -0.017022864893078804, 0.006081612315028906, -0.02216503955423832, 0.0029436841141432524, 0.0025145807303488255, -0.0021861311979591846, -0.0098534831777215, 0.01228330284357071, 0.0017932280898094177, -0.01446590293198824, -0.0007036941242404282, -0.024905649945139885, -0.014649552293121815, 0.0012405146844685078, -6.075652709114365e-05, 0.025555485859513283, -0.01655667833983898, -0.006568988785147667, -0.022659480571746826, -0.009260155260562897, -0.010128957219421864, -0.014246935956180096, -0.016260012984275818, -0.009683961048722267, 0.039498694241046906, 0.020201407372951508, 0.0038460372015833855, 0.007360092829912901, 0.026996426284313202, -0.0016184081323444843, -0.010326732881367207, -0.00392726669088006, -0.01651429757475853, -0.02087949588894844, -0.0006463037570938468, 0.0024580731987953186, -0.0010136020136997104, 0.007896913215517998, -3.766242298297584e-05, 0.00609927112236619, -0.013349880464375019, 0.021133780479431152, -0.01086355373263359, 0.005477689206600189, -0.02445359155535698, -0.05246715247631073, -0.016486043110489845, 0.03819902241230011, -0.006639623083174229, -0.010333796963095665, -0.0245100986212492, 0.021854249760508537, 0.03430001065135002, 0.007960484363138676, 0.029581639915704727, 0.005753162782639265, 0.015567797236144543, -0.0007760942680761218, 0.00839135330170393, 0.008341909386217594, -0.00017824121459852904, -0.017644446343183517, -0.018237773329019547, -0.045092929154634476, -0.0032844943925738335, 0.005650743376463652, 0.026346590369939804, 0.015454783104360104, -0.010333796963095665, 0.008370163850486279, 0.01180298998951912, 0.032152727246284485, -0.02359185367822647, -0.039922501891851425, 0.006074549164623022, -0.0203568022698164, -0.011167281307280064, -0.016344774514436722, -0.021105526015162468, -0.006593711208552122, -0.009012935683131218, 0.0015936861746013165, 0.004149764776229858, 0.01853443868458271, -0.016796834766864777, 0.003425762988626957, 0.00019534796592779458, 0.020752353593707085, 0.02572500891983509, 0.0179552361369133, 0.01976347528398037, 0.001408271142281592, 0.01134386658668518, -0.010383240878582, -0.024227561429142952, 0.0022991462610661983, 0.0033727872651070356, 0.0010091874282807112, 0.043962784111499786, 0.0005266669322736561, 0.0001269209897145629, 0.013491149060428143, 0.00479606818407774, -0.007176443934440613, -0.03430001065135002, 0.024750255048274994, 0.030344491824507713, -0.012756552547216415, -0.03297208622097969, -0.028352603316307068, -0.02887529879808426, 0.018336661159992218, 0.0022196825593709946, 0.022758368402719498, 0.018181266263127327, -0.007088150829076767, -0.022122660651803017, 0.04235231876373291, 0.0036076463293284178, 0.032152727246284485, 0.017022864893078804, 0.0023927364964038134, -0.01928316056728363, -0.025527233257889748, 0.012057273648679256, 0.0007668235339224339, 0.022560592740774155, 0.0021419848781079054, -0.010418557561933994, 0.018873482942581177, 0.009472058154642582, 0.009133013896644115, 0.0007981674862094223, -0.010312606580555439, -0.005421181675046682, 0.034130487591028214, -0.01662731170654297, -0.007059897296130657, 0.00440757954493165, -0.016062237322330475, 0.025230567902326584, -0.048370361328125, -0.000635267177131027, 0.018548564985394478, -0.030457505956292152, -0.010701094754040241, 0.03274605795741081, 0.015694938600063324, -0.0034434215631335974, -0.003930798266083002, 0.003941393457353115, -0.004492341075092554, 0.007670884020626545, 0.0005460913525894284, 0.016895722597837448, -0.03192669898271561, -0.030231475830078125, -0.012862504459917545, -0.0024898587726056576, 0.003863695776090026, -0.008991745300590992, -0.016952229663729668, 0.0054176500998437405, 0.032039713114500046, -0.005068010184913874, 0.002869518008083105, 0.015949223190546036, 0.014635425060987473, -0.03144638612866402, 0.02551310509443283, 0.00021841446869075298, -0.009472058154642582, 0.01928316056728363, -0.0086315106600523, -0.04150470718741417, -0.018294280394911766, 0.03407398238778114, 0.006067485548555851, 0.01060220692306757, 0.006621964741498232, 0.017700953409075737, 0.017248893156647682, 0.0021878972183912992, -0.003821315011009574, -0.025442471727728844, -0.0050927321426570415, -0.012276239693164825, 0.010941251181066036, 0.020272040739655495, -0.008144133724272251, 0.0318419374525547, -0.006918628700077534, 0.017700953409075737, -0.0009297238430008292, -0.02705293335020542, -0.03978123143315315, -0.016740327700972557, -0.0015901544829830527, -0.021712981164455414, -0.009641580283641815, 8.60855434439145e-05, -0.011760609224438667, -0.010171337984502316, 0.015059230849146843, 0.004262779373675585, 0.007423663977533579, 0.007586122956126928, -0.009613326750695705, 0.005159834865480661, 0.007317712530493736, -0.004937336780130863, -0.02391677163541317, -0.018605072051286697, -0.004121510777622461, -0.023083286359906197, -0.008829286321997643, -0.014098604209721088, 0.03302859514951706, 0.01566668599843979, -0.007960484363138676, -0.03243526443839073, -0.021331556141376495, -0.05241064354777336, -0.03336763754487038, -0.035401906818151474, 0.023196300491690636, 0.03260478749871254, 0.013837257400155067, 0.016005730256438255, 0.014706059359014034, -0.008059372194111347, 0.02162821963429451, -0.01784222200512886, -0.012989645823836327, -0.0012378658866509795, -0.03133337199687958, 0.014352887868881226, -0.00897761806845665, -0.0565921925008297, 0.010990696027874947, 0.008991745300590992, -0.020003631711006165, 0.03229399770498276, 0.017164133489131927, -0.01859094575047493, 0.014225746504962444, -0.005862646270543337, 0.004810194950550795, 0.03057052008807659, 0.024142799898982048, 0.027462612837553024, -0.03899012878537178, -0.0007328307838179171, 0.02126092091202736, 0.002835966646671295, -0.009196585044264793, 0.012685918249189854, 0.015963349491357803, 0.011562833562493324, 0.013116788119077682, -0.016104618087410927, -0.021656474098563194, -0.003782466286793351, -0.00852555874735117, 0.021924883127212524, 0.011838306672871113, 0.0029560450930148363, 0.009274282492697239, -0.0030478695407509804, 0.001933613675646484, 0.00025693222414702177, 0.012692982330918312, 0.002767098369076848, -0.009754595346748829, 0.02966640144586563, -0.016697946935892105, -0.007088150829076767, -0.007812152616679668, 0.001012719119898975, 0.01614699885249138, -0.02339407615363598, 0.005082137417048216, -0.019932996481657028, -0.0002282370551256463, -0.0013994418550282717, 0.02056870609521866, -0.024707874283194542, -0.012346873991191387, 0.004937336780130863, 0.013385198079049587, -0.014960343018174171, 0.015468909405171871, -0.022136786952614784, -0.006413593422621489, 0.00042844112613238394, -0.01849205791950226, 0.0002401565870968625, -0.04789004847407341, -0.0006900087464600801, 0.02066759392619133, -0.029694655910134315, -0.013215675950050354, 0.21405015885829926, -0.01459304429590702, 0.011993702501058578, 0.020540451630949974, 0.002000716282054782, -0.007918103598058224, -0.004234525840729475, 0.010785856284201145, -0.01943855732679367, 0.0056578065268695354, 0.021967263892292976, -0.001600749557837844, -0.019509190693497658, -0.00033440921106375754, 0.00030549330404028296, -0.017432542517781258, -0.03407398238778114, -0.027618007734417915, -0.019932996481657028, -0.0008732164278626442, 0.009203648194670677, -0.01705111749470234, -0.014225746504962444, -0.005075073800981045, 0.0401485301554203, 0.02664325386285782, -0.013830194249749184, 0.008384290151298046, 0.014126857742667198, 0.014042097143828869, -0.024962158873677254, -0.010333796963095665, 0.027024678885936737, -0.00596506567671895, 0.0061275246553123, -0.021388063207268715, 0.022249801084399223, -0.01784222200512886, 0.02099251188337803, 0.003053167136386037, -0.0012387488968670368, -0.027024678885936737, 0.029157835990190506, -0.048285599797964096, 0.027957051992416382, -0.017192386090755463, -0.014932088553905487, -0.016909848898649216, 0.017616191878914833, 0.01459304429590702, -0.005703718867152929, 0.011972512118518353, 0.01592096872627735, 0.014804947189986706, 0.006614901125431061, 0.008567939512431622, -0.008313655853271484, -0.008285402320325375, -0.021331556141376495, 0.02322455495595932, -0.019424429163336754, 0.004117979202419519, 0.002913664560765028, -0.0016599057707935572, -0.0477205254137516, 0.026756269857287407, -0.003944925032556057, 0.022235674783587456, 0.002417458686977625, 0.0014515346847474575, -0.006314705591648817, -0.021133780479431152, -0.035882219672203064, -0.004139169584959745, -0.013208611868321896, -0.023026779294013977, 0.005269317887723446, 0.020851243287324905, 0.03376319259405136, 0.020540451630949974, 0.0051351129077374935, 0.009895863942801952, -0.004499404225498438, -0.010270225815474987, -0.0005708133685402572, -0.016471916809678078, 0.048229094594717026, -0.016104618087410927, 0.012643538415431976, -0.006247602868825197, -0.017771586775779724, 0.009789912961423397, -0.009634517133235931, -0.0021631750278174877, -0.010623397305607796, -0.01572319306433201, 0.008942301385104656, 0.021797742694616318, -0.002113731112331152, -0.015384148806333542, -0.033537160605192184, 0.047748781740665436, 0.01959395222365856, 0.0172630213201046, -0.019537445157766342, 0.008377227000892162, 0.013893764466047287, 0.014042097143828869, 0.010460938327014446, 0.006010978017002344, -0.017291273921728134, -0.025597866624593735, 0.014282253570854664, 0.0004028361872769892, 0.009351979941129684, 0.01630239374935627, 0.016274141147732735, 0.01374543271958828, 0.0035069924779236317, 0.012933138757944107, 0.029525132849812508, -0.0038107200525701046, -0.009217774495482445, 0.01715000532567501, -0.025654373690485954, -0.03777521848678589, -0.014480029232800007, 0.009443804621696472, -0.02839498408138752, -0.032943833619356155, 0.024425337091088295, -0.011965448968112469, 0.027603881433606148, -0.0056966557167470455, -0.019989503547549248, -0.038227278739213943, 0.003141460008919239, -0.024637240916490555, 0.002677039708942175, 0.007642630022019148, 0.006300578825175762, -0.001157519407570362, 0.020907750353217125, 0.007444854360073805, 0.0127848070114851, -0.007077556103467941, -0.008984682150185108, 0.011033075861632824, -0.02200964465737343, -0.018463803455233574, 0.007699137553572655, 0.01294020190834999, -0.00015969971718732268, -0.006742042955011129, 0.038679338991642, -0.01190187782049179, -0.02876228280365467, -0.038057755678892136, 0.017715079709887505, -0.016867468133568764, -0.027391977608203888, 0.002938386518508196, 0.028988312929868698, 0.01542652864009142, -0.039809487760066986, -0.019579825922846794, -0.18206694722175598, -0.0037259587552398443, 0.007861596532166004, -0.0054070549085736275, -0.007353029679507017, 0.01853443868458271, 0.0015972178662195802, 0.008122943341732025, 0.012184415012598038, -0.006268793251365423, 0.017065243795514107, -0.016104618087410927, -0.027180075645446777, -0.01774333417415619, 0.01438820455223322, -0.015624305233359337, -0.007374220062047243, 0.013385198079049587, 0.039413932710886, 0.004803131800144911, 0.015567797236144543, -0.0346108004450798, 0.0034381242003291845, -0.011139027774333954, 0.0015954520786181092, 0.02445359155535698, -0.0098534831777215, 0.014444712549448013, 0.013964398764073849, -0.03144638612866402, -0.01876046694815159, -0.0016802131431177258, 0.020582832396030426, 0.0030990794766694307, -0.016048111021518707, -1.5244314454321284e-05, -0.0015910373767837882, -0.022094406187534332, 0.0038389735855162144, 0.036136504262685776, 0.026487858965992928, -0.006657281890511513, 0.004255716223269701, 0.017248893156647682, -0.018732214346528053, 0.031305115669965744, 0.025371836498379707, -0.019043004140257835, -0.008730398491024971, -0.0017340718768537045, 0.015143991447985172, -0.019339669495821, -0.02024378813803196, -0.007130531594157219, 0.02104901894927025, 0.005799075122922659, 0.012099653482437134, -0.0012899587163701653, 0.016104618087410927, -0.006650218274444342, 0.00709874602034688, -0.015412402339279652, -8.098110811260995e-06, -0.007628503255546093, -0.03384795039892197, -0.04472563415765762, -0.011350930668413639, 0.02195313759148121, -0.016415409743785858, 0.025103427469730377, 0.0019477405585348606, 0.014720185659825802, 0.0010851193219423294, -0.006233476102352142, 0.034497786313295364, 0.01012189406901598, -0.03280256316065788, 0.013667735271155834, 0.021854249760508537, 0.0014329932164400816, 0.016062237322330475, 0.022348688915371895, -0.01113196462392807, -0.002791820326820016, -0.02487739734351635, -0.0127848070114851, 0.011760609224438667, 0.011061330325901508, -0.016909848898649216, -0.003026679391041398, 0.020173152908682823, -0.01004419568926096, 0.0039025445003062487, -0.001125733950175345, 0.0259369108825922, 0.01073641236871481, 0.024255815893411636, -0.005322293844074011, 0.03085305728018284, -0.02264535427093506, -0.0016837449511513114, 0.012862504459917545, -0.02929910458624363, 0.01004419568926096, 0.004471150692552328, 0.019353795796632767, 0.012029020115733147, -0.0034946314990520477, 0.02710944041609764, -0.026346590369939804, -0.01459304429590702, 0.015172245912253857, 0.016387155279517174, 0.005908558610826731, -0.029581639915704727, 0.04026154428720474, 0.0003975386207457632, -0.019141891971230507, 0.015737319365143776, -0.011463945731520653, 0.06029342859983444, -0.0280135590583086, -0.0114215649664402, 0.007974611595273018, -0.0035317144356667995, -0.021698854863643646, -0.1057819128036499, -0.016740327700972557, 0.023945024237036705, 0.009782848879694939, -0.006660813465714455, 0.0122550493106246, -0.0015398275572806597, 0.02343645691871643, 0.0026946982834488153, 0.025527233257889748, -0.01651429757475853, -0.014649552293121815, -0.009175394661724567, 0.00013950272114016116, 0.03138987720012665, -0.004947931971400976, -0.011788862757384777, -0.019904743880033493, 0.005929748527705669, 0.033480655401945114, -0.011308549903333187, -0.014861454255878925, 0.013335754163563251, 0.006459505762904882, -0.02103489078581333, -0.0231680478900671, -0.030485760420560837, 0.000815384613815695, 0.01666969247162342, 0.01456479076296091, 0.0497547946870327, -0.0158785879611969, 0.0061769685707986355, -0.03127686306834221, -0.008906983770430088, -0.006964541040360928, -0.02695404551923275, -0.009683961048722267, 0.018576817587018013, -0.02935561165213585, 0.0016219399403780699, 0.010143084451556206, -0.008899920620024204, -0.03164416179060936, -0.01576557382941246, -0.01531351450830698, -0.007176443934440613, 0.03743617236614227, 0.015115737915039062, -0.02637484483420849, -0.01820952072739601, -0.020102519541978836, -0.035401906818151474, -0.04105265066027641, 0.03446953371167183, 0.0035546706058084965, 0.005724909249693155, 0.010828237049281597, -0.001885935547761619, 0.00031299819238483906, -0.002210853388532996, -0.015807954594492912, -0.010679904371500015, -0.0003167506365571171, 0.02083711512386799, 0.016909848898649216, -0.0172630213201046, -0.002948981709778309, -0.0031114404555410147, 0.007021048571914434, -0.01371717918664217, 0.0033604262862354517, -0.024948030710220337, 0.017700953409075737, -0.024354703724384308, 0.010143084451556206, 0.010037132538855076, -0.01456479076296091, 0.0074660442769527435, 0.016909848898649216, -0.008024055510759354, -0.018393170088529587, 0.019947122782468796, -0.011259105987846851, 0.0024333512410521507, -0.005329356994479895, 0.00982522964477539, -0.026699760928750038, 0.011004822328686714, -0.03915965184569359, 0.00011776060273405164, 0.014663678593933582, 0.0062193493358790874, 0.00839135330170393, -0.02147282473742962, 0.008546749129891396, -0.008031118661165237, 0.007819215767085552, 0.025061046704649925, 0.0009306067950092256, -0.01757381111383438, 0.008680954575538635, -0.06029342859983444, -0.00839135330170393, 0.022518211975693703, 0.011357993818819523, -0.004587697330862284, -0.016443662345409393, -0.000531523022800684, -0.015016850084066391, 0.004937336780130863, -0.006074549164623022, -0.005714314058423042, 0.02247583121061325, -0.030598774552345276, 0.0010197826195508242, -0.020766481757164, -0.010962441563606262, 0.02007426507771015, -0.006922160275280476, 0.022136786952614784, 0.001553071429952979, -0.01390789169818163, -0.011951321735978127, -0.010114829987287521, 0.02268773317337036, 3.517918594297953e-05, 0.02401565946638584, -0.02540009096264839, 0.015228752978146076, -0.03014671429991722, -0.0359952338039875, 0.013957335613667965, -0.007699137553572655, 0.005036225076764822, 0.015172245912253857, -0.003976710606366396, -0.034921593964099884, 0.01609049178659916, 0.02339407615363598, 0.004548848140984774, 0.014875581488013268, -0.011682911776006222, -0.010425621643662453, 0.026035798713564873, -0.022617099806666374, -0.0025816832203418016, -0.021825995296239853, -0.018619198352098465, 0.0067597017623484135, -0.003005489008501172, -0.010792919434607029, 0.036786340177059174, 0.021218540146946907, -0.041419949382543564, -0.023634234443306923, 0.011824180372059345, -0.02253233827650547, 0.020201407372951508, 0.01965045928955078, 0.011294422671198845, 0.004566506948322058, 0.026021672412753105, 0.0032950895838439465, 0.023450585082173347, -0.02051219716668129, 0.02780165709555149, -0.005170430056750774, -0.055377282202243805, -0.014494156464934349, 0.01635890081524849, -0.04229581356048584, 0.002555195474997163, -0.01507335714995861, 0.035712696611881256, 0.022334562614560127, -0.008829286321997643, 0.01566668599843979, -0.02072410099208355, -0.01603398472070694, -0.010354987345635891, 0.021020764485001564, 0.020483944565057755, -0.01837904192507267, -0.0038742907345294952, 0.00956388283520937, 0.01001594215631485, 0.004683053586632013, -0.021006638184189796, 0.03260478749871254, -0.003683578222990036, 0.0053964597173035145, -0.025527233257889748, 0.006374744698405266, -0.004163891542702913, 0.0027406103909015656, 0.005954470485448837, 0.011365056969225407, -0.0221085324883461, 0.026756269857287407, 0.018364915624260902, 0.013816067017614841, -0.015807954594492912, 0.00911182351410389, -0.0038954811170697212, -0.009168330579996109, -0.005912090186029673, 0.007741518318653107, -0.02312566712498665, -0.013611228205263615, 0.01582208089530468, 0.008596193045377731, 0.011442755348980427, -0.002337994985282421, 0.023733122274279594, 0.017715079709887505, -0.029581639915704727, 0.0005482987035065889, 0.004520594608038664, -0.021388063207268715, -0.0393291711807251, 0.019466809928417206, 0.02710944041609764, 0.019466809928417206, 0.005731972865760326, -0.006802082061767578, 0.02818308211863041, -0.0064877597615122795, 0.016429536044597626, -0.01710762456059456, -0.006752638146281242, -0.018873482942581177, -0.014176301658153534, 0.0018002914730459452, -0.003125567454844713, -0.021769488230347633, -0.023563599213957787, 0.005117454566061497, -0.006304110400378704, 0.03478032350540161, -0.0014329932164400816, 0.0947064533829689, 0.038425054401159286, -0.025272948667407036, 0.004753687884658575, -0.018407296389341354, 0.011068393476307392, 0.01710762456059456, 0.01816713996231556, -0.015652557834982872, -0.01238925475627184, 0.0040967888198792934, -0.0003171921125613153, -0.005205747205764055, -0.005940343718975782, -0.013695988804101944, 0.001768506015650928, -0.004623014479875565, -0.0016016325680539012, -0.0007103160605765879, 0.008772779256105423, 0.00752255180850625, 0.0027264836244285107, -0.0046689268201589584, -0.00489848805591464, -0.01789872907102108, -0.0169381033629179, 0.023930897936224937, 0.021797742694616318, -0.014847327955067158, -0.018520310521125793, 0.009288408793509007, -0.005629552993923426, -0.04037456214427948, -0.012989645823836327, -0.024835016578435898, 0.022221548482775688, -0.018463803455233574, -0.011548706330358982, 0.010849427431821823, 0.020766481757164, 0.004227462224662304, 0.011047203093767166, -0.013625354506075382, -0.020102519541978836, 0.002744142198935151, -0.013109724037349224, -0.00016301069990731776, -0.025696754455566406, -0.004619482439011335], "4b795efd-0329-4d32-bbfb-e7cc78af7b08": [0.008299602195620537, 0.002413518726825714, -0.0018762213876470923, -0.038422804325819016, -0.007200820371508598, 0.024974822998046875, -0.0034000035375356674, -0.02511303313076496, -0.01856180839240551, -0.03963906317949295, 0.027642304077744484, 0.01864473521709442, -0.0056666722521185875, -0.004460776690393686, -0.003731711069121957, 0.023924414068460464, 0.021602461114525795, 0.0043882159516215324, -0.0023478681687265635, -0.008576025255024433, -0.015051234513521194, -0.014484567567706108, -0.028720354661345482, -0.0036626053042709827, -0.010628466494381428, 0.004450411070138216, 0.013973184861242771, -0.016447171568870544, -0.038422804325819016, 0.02165774628520012, 0.0009026940097101033, -0.005072362720966339, -0.019404897466301918, -0.011443913914263248, -0.019363434985280037, 0.02049676887691021, -0.007525617256760597, -0.013116274029016495, 0.013779688626527786, -0.004305289126932621, 0.0203032735735178, 0.017456116154789925, -0.004246549215167761, -0.003011283464729786, -0.004695736337453127, 0.023219535127282143, 0.002534453757107258, -0.004495329689234495, -0.0077882194891572, 0.007477243430912495, -0.02468457818031311, -0.0007027192041277885, -0.018962621688842773, 0.016336601227521896, -0.00678273057565093, -0.011208954267203808, 0.0064441123977303505, -0.006478664930909872, -0.0021336404606699944, -0.009488221257925034, 0.0004841722548007965, 0.003391365287825465, -0.017621969804167747, -0.0020006117410957813, -0.0007856461452320218, -0.015935787931084633, 0.006506307516247034, -0.0002716720337048173, -0.025140676647424698, -0.02328864112496376, 0.03261791914701462, 0.02921791560947895, 0.0013294221134856343, 0.01547969039529562, -0.008437813259661198, -0.019556930288672447, -0.02002684958279133, -0.017152050510048866, 0.0048512243665754795, -0.016613025218248367, 0.0013207838637754321, -0.01825774274766445, -0.033226050436496735, -0.007366674020886421, 0.02262522652745247, 0.027808157727122307, 0.019902460277080536, -0.0110638327896595, 0.0010538628557696939, 0.017566684633493423, 0.008576025255024433, 0.020704086869955063, 0.01879676803946495, 0.010061798617243767, -0.01441546157002449, 0.022155307233333588, 0.004498784895986319, 0.004135979805141687, -0.012950419448316097, -0.017580505460500717, 0.00012158294703112915, -0.0008517284877598286, -0.010704482905566692, -0.0023115877993404865, -0.03386182337999344, 0.001287094783037901, 0.018119530752301216, -0.008997569791972637, 0.009356919676065445, -0.005158745218068361, -0.03239678218960762, 0.02328864112496376, -0.009584968909621239, -0.004077239893376827, -0.006292079575359821, -0.017967497929930687, 0.014691884629428387, -0.02410409040749073, -0.0006275667110458016, -0.020787013694643974, -0.004284557420760393, -0.001122104818932712, 0.02019270323216915, -0.030157754197716713, 0.01665448769927025, -0.012445948086678982, 0.0021681932266801596, -0.009363831020891666, 0.0161154642701149, -0.01373822521418333, 0.013579281978309155, -0.007318300195038319, 0.012846761383116245, 0.0030527471099048853, -0.01350326556712389, -0.009750822558999062, -0.011941475793719292, 0.007822772487998009, -0.0038319143932312727, -0.055975668132305145, 0.034276459366083145, 0.034967515617609024, 0.0052969567477703094, -0.020178882405161858, 0.0020887216087430716, 0.010262205265462399, -0.0008422264945693314, 0.02844393067061901, -0.005656306631863117, 0.007884967140853405, 0.010020335204899311, -0.021436607465147972, -0.004066874273121357, -0.008334155194461346, -0.008161390200257301, 0.0014779994962736964, 0.0005191570380702615, 0.008631309494376183, -0.017912212759256363, -0.01693091168999672, -0.012902045622467995, -0.00593964010477066, -0.01253578532487154, -0.03104230761528015, -0.006036388222128153, 0.02646750584244728, 0.006354274693876505, 0.0015980707248672843, -0.0018416685052216053, -0.006281713955104351, 0.005791062954813242, 0.014691884629428387, -0.02305368147790432, 0.017953677102923393, 0.006920942105352879, 0.0090252123773098, 0.0282504353672266, 0.0021871973294764757, -0.012238630093634129, -0.023855308070778847, 0.02436669170856476, -0.00308038922958076, 0.012625622563064098, 0.017525220289826393, -0.021713029593229294, 0.002990551758557558, 0.035713858902454376, 0.029660193249583244, -0.0052174851298332214, -0.021063435822725296, 0.014235787093639374, 0.024421976879239082, -0.019239043816924095, -0.01427725050598383, -0.6072461605072021, -0.00899065937846899, 0.001426170114427805, -0.008645131252706051, -0.01619839109480381, 0.015341479331254959, 0.0451122410595417, 0.007066064048558474, -0.010421148501336575, 0.026287831366062164, 0.005829071160405874, 0.003348174039274454, -0.017345545813441277, -0.006212607957422733, -0.024822790175676346, -0.0293284859508276, -0.010856514796614647, -0.02414555288851261, 0.021132541820406914, 0.007781308609992266, -0.03126344829797745, 0.014857739210128784, 0.00592927448451519, -0.01705530285835266, -0.004087605979293585, -0.013371964916586876, 0.028609786182641983, -0.019474003463983536, -0.0019591483287513256, 0.02576262876391411, -0.02274961583316326, 0.024159373715519905, 0.024712219834327698, 0.01032440084964037, 0.045748014003038406, -0.004053052980452776, -0.013199200853705406, 0.020317094400525093, 0.03693011775612831, 0.04900980740785599, -0.024435797706246376, -0.006765454076230526, 0.01705530285835266, 0.012570338323712349, 0.00027037630206905305, 0.009854481555521488, 0.02107725664973259, 0.007663828786462545, -0.0008906004950404167, -0.022155307233333588, -0.00010122913954546675, -0.008645131252706051, -0.0009096045978367329, 0.004446955863386393, 0.013897168450057507, -0.008030089549720287, 0.02363417111337185, -0.021961811929941177, 0.009978871792554855, 0.0058670793659985065, 0.012259362265467644, 0.033502474427223206, -0.03646019846200943, -0.030793527141213417, -0.04989435896277428, 0.019128475338220596, 0.01152684073895216, -0.02910734713077545, 0.006447567604482174, -0.011782532557845116, 0.03510572761297226, -0.011222776025533676, -0.019087010994553566, -0.015673186630010605, -0.01682034321129322, 0.025914659723639488, 0.027103280648589134, -0.013959364034235477, -0.0058532580733299255, 0.012508142739534378, 0.013434160500764847, -0.015839040279388428, -0.013206111267209053, -0.0156870074570179, 0.009488221257925034, 0.00990285538136959, -0.0197642482817173, -0.004941062070429325, -0.0019591483287513256, -0.00027361561660654843, 0.018064245581626892, 0.008845537900924683, -0.015230909921228886, -0.021947989240288734, 0.011347166262567043, 0.02874799631536007, 0.004063418600708246, 0.003925207071006298, -0.016806520521640778, -0.018782945349812508, -0.014733348041772842, -0.017041480168700218, 0.004723378922790289, -0.0020403475500643253, 0.026688644662499428, 0.03306019678711891, -0.007954073138535023, -0.02232116088271141, 0.038229309022426605, -0.0464114286005497, -0.010393506847321987, 0.005832526367157698, -0.008624399080872536, -0.020828476175665855, 0.0155764389783144, -0.03300491347908974, -0.004550614394247532, -0.006941673811525106, 0.015631724148988724, -0.01863091252744198, -0.011278060264885426, -0.01247358974069357, 0.0036384183913469315, -0.016792699694633484, 0.01654391922056675, 0.02573498524725437, 0.008658952079713345, 0.0033861822448670864, 0.014249607920646667, 0.003980491776019335, 0.015147983096539974, -0.024767505005002022, 0.017262618988752365, 0.012964241206645966, 0.022459372878074646, 0.0034449221566319466, 0.02313660830259323, -0.022528478875756264, 0.004654272925108671, -0.04381305351853371, 0.01489920262247324, -0.01677887886762619, 0.0052831354551017284, -0.02073172852396965, -0.0007631867774762213, -0.008907732553780079, -0.007601633667945862, 0.011900012381374836, -0.013544728979468346, -0.034746378660202026, -0.015880504623055458, -0.003949394449591637, 0.002762502757832408, 0.025665879249572754, 0.0024808968883007765, -0.0025102668441832066, -0.0037178900092840195, -0.037842314690351486, -0.007024600636214018, 0.004312199540436268, -0.009847571142017841, 0.017815465107560158, -0.033226050436496735, 0.0032669748179614544, -0.001728507922962308, 0.013420338742434978, 0.004367484245449305, 0.0074979751370847225, -0.012003670446574688, -0.045775655657052994, -0.00134151556994766, -0.0025897384621202946, 0.01362074539065361, 0.013966274447739124, -0.00814065895974636, 0.018202457576990128, -0.02305368147790432, -0.007705292664468288, -0.0021077257115393877, 0.009080497547984123, 0.006772364489734173, 0.016765058040618896, -0.01474716980010271, -0.00015332840848714113, 0.017179692164063454, 0.0034535604063421488, 0.02023416757583618, 0.015673186630010605, -0.025251245126128197, 0.010227653197944164, 0.01828538440167904, -0.01654391922056675, 0.006174599751830101, 0.009232529439032078, -0.011457735672593117, 0.011056921444833279, -0.022639047354459763, -0.0005904223653487861, -0.0010495437309145927, 0.0269650686532259, 0.014221965335309505, -0.009191066026687622, 0.009757733903825283, -0.00582216028124094, 0.013123184442520142, -0.03181629255414009, -0.0014097575331106782, -0.014166681095957756, 0.025389457121491432, 0.024242300540208817, -0.0030527471099048853, 0.001207623165100813, -0.00019587164570111781, -0.013289038091897964, 0.018617091700434685, 0.0168618056923151, 0.021630102768540382, 0.018202457576990128, -0.003014738904312253, -0.00872114673256874, 0.023551244288682938, 0.011430093087255955, 0.04715777188539505, 0.009626432321965694, 0.013282127678394318, 0.036211419850587845, 0.011360987089574337, 0.022984575480222702, -0.010358953848481178, -0.016226032748818398, -0.0004157143412157893, 0.031069951131939888, 0.015756113454699516, 0.012121150270104408, 0.04751712083816528, 0.040634188801050186, 0.030434178188443184, -0.005003257188946009, 0.037372395396232605, -0.024159373715519905, -0.0023271364625543356, 0.01798131875693798, 0.011485377326607704, -0.014498388394713402, 0.040357764810323715, 0.00296982005238533, 0.021865062415599823, 0.01968132145702839, -0.0037731744814664125, 0.03510572761297226, 0.011789442971348763, -0.0063646407797932625, -0.022017095237970352, -0.0008063778514042497, 0.01789839193224907, -0.010379685088992119, 0.024131732061505318, 0.017387010157108307, 0.005352241452783346, 0.013123184442520142, 0.016364244744181633, -0.016129285097122192, 0.017304083332419395, 0.016378065571188927, 0.00751870684325695, 0.017373189330101013, -0.000745478377211839, -0.03037889301776886, 0.014069933444261551, -0.030434178188443184, 0.008596756495535374, -0.017179692164063454, 0.01220407709479332, 0.015410585328936577, -0.008624399080872536, 0.005545737221837044, 0.0002464052231516689, 0.00931545626372099, -0.016226032748818398, 0.015272373333573341, -0.03281141445040703, -0.020469127222895622, 0.013420338742434978, 0.022929292172193527, 0.012238630093634129, -0.0026156529784202576, -0.013192289508879185, -0.015756113454699516, 0.019211402162909508, 0.016378065571188927, -0.0008595029357820749, 0.013724404387176037, -0.013517087325453758, 0.003700613509863615, -0.012667085975408554, 0.017815465107560158, 0.03560328856110573, -0.02290164865553379, 0.008831716142594814, 0.022017095237970352, 0.00282297027297318, 0.017041480168700218, -0.01852034404873848, -0.012052045203745365, 0.03281141445040703, -0.01963985711336136, -0.02530653029680252, -0.03267320245504379, -0.017483757808804512, -0.03126344829797745, 0.0003239332581870258, -0.015438226982951164, -0.0021923803724348545, -0.0073252106085419655, -0.010552450083196163, 0.03134637326002121, 0.005334964953362942, -0.025582952424883842, 0.024905717000365257, 0.010123994201421738, 0.011029279790818691, -0.02382766641676426, 0.005618298426270485, 0.023233357816934586, 0.10117083787918091, 0.012045133858919144, -0.013544728979468346, 0.015935787931084633, 0.0008819623035378754, -0.028333362191915512, -0.031125234439969063, -0.012584159150719643, 0.022956933826208115, -0.009971961379051208, -0.039003290235996246, 0.0034760197158902884, -0.007359763607382774, -0.011153670027852058, 0.02328864112496376, -0.01395245362073183, 0.0025914660654962063, -0.01910083182156086, -0.013530908152461052, 0.006309356074780226, 0.017525220289826393, 0.0006029477808624506, 0.02874799631536007, 0.02185124158859253, 0.0313740149140358, 0.0073528531938791275, 0.020482948049902916, 0.014830096624791622, 0.011817085556685925, -0.019971564412117004, -0.0180504247546196, 0.010255294851958752, 0.015355300158262253, 0.01118131261318922, -0.03507808595895767, 0.013586192391812801, -0.003721345216035843, -0.010144725441932678, -0.02356506511569023, 0.0035693126264959574, 0.018879694864153862, 0.02487807348370552, 0.020704086869955063, -0.01666831038892269, 0.008126837201416492, -0.030710600316524506, 0.003890654304996133, 0.021823599934577942, -0.02670246548950672, 1.4590494174626656e-05, -0.00022804901527706534, 0.009163424372673035, -0.0141252176836133, 0.010745946317911148, 0.0011540661798790097, -0.021699208766222, -0.006254071369767189, -0.01371749397367239, -0.04262443259358406, -0.031180519610643387, -0.013130094856023788, -0.023689454421401024, -0.00740122701972723, 4.181438634986989e-05, -0.010476433672010899, -0.004830492660403252, 0.012487411499023438, -0.009121960960328579, -0.01565936580300331, 0.002757319947704673, 0.010669929906725883, -0.03521629795432091, -0.024629293009638786, 0.00610203854739666, 0.03173336759209633, 0.010718303732573986, -0.015617902390658855, 0.003218600759282708, -0.002627746667712927, 0.007608544547110796, -0.004446955863386393, -0.02122928947210312, 0.012363020330667496, -0.026439864188432693, -0.002703762846067548, -0.01604635827243328, -0.02720002830028534, -0.001827847445383668, -0.01542440615594387, 0.013102452270686626, -0.001227491069585085, -0.016460992395877838, 0.0013924811501055956, -0.0004409811517689377, -0.004222361836582422, 0.022569941356778145, 0.00858293566852808, 0.0023876039776951075, 0.020082134753465652, -0.02297075465321541, 0.014194323681294918, -0.012736191973090172, -0.008928464725613594, -0.013662208802998066, 0.01701383851468563, 0.0023426853585988283, -0.01338578574359417, 0.009598790667951107, 0.00013810353993903846, -0.005141468718647957, 0.007677650079131126, 0.002821242669597268, 0.0027884175069630146, -0.0005152698140591383, 0.0071939099580049515, -0.016474813222885132, 0.011112206615507603, 0.009426025673747063, 0.002612197771668434, -0.009398384019732475, 0.003391365287825465, -0.01825774274766445, 0.04187809303402901, 0.0007437507738359272, 0.006084762513637543, 0.012058955617249012, 0.021823599934577942, -0.02456018701195717, -0.01650245673954487, 0.0132130216807127, -0.028886208310723305, 0.0019608759321272373, -0.02084229700267315, -0.019833354279398918, -0.007421958725899458, -0.013966274447739124, -0.010780498385429382, 0.02515449747443199, -0.008320333436131477, -0.015534975565969944, -0.029660193249583244, 0.013150826096534729, 0.01362074539065361, -0.013302858918905258, 0.02034473605453968, -0.026301652193069458, -0.02507157064974308, 0.012515053153038025, 0.001221444341354072, 0.014429283328354359, -0.03189922124147415, -0.0029490883462131023, -0.024933358654379845, 0.000536433479283005, -0.004039231687784195, -0.031097592785954475, -0.003745532361790538, 0.021436607465147972, 0.04975614696741104, 0.040855325758457184, 0.00514492392539978, 0.02049676887691021, 0.03411060571670532, 0.015673186630010605, -0.0023426853585988283, 0.0016904997173696756, -0.030738241970539093, -0.011478466913104057, 0.004868500865995884, 0.009073586203157902, 0.012176435440778732, -0.005331509746611118, -0.013710583560168743, -0.01991628110408783, -0.0023685998748987913, 0.015313836745917797, -0.00047510210424661636, 0.0006884661270305514, -0.03922443091869354, -0.05025371164083481, -0.005797973368316889, 0.03806345537304878, -0.023385390639305115, -0.003244515508413315, -0.0333089753985405, 0.014470746740698814, 0.007041877135634422, 0.0003671243612188846, 0.03131873160600662, 0.02002684958279133, 0.028333362191915512, -0.0006189284613355994, 0.0075117964297533035, 0.011934565380215645, -0.015742292627692223, -0.017995139583945274, -0.014443104155361652, -0.03123580478131771, -0.020330915227532387, 0.0043882159516215324, 0.03540979325771332, 0.010863426141440868, -0.013786599040031433, 0.00200579478405416, 0.013883347623050213, 0.025638237595558167, -0.006478664930909872, -0.016322780400514603, 0.0174008309841156, -0.025873197242617607, -0.006730901077389717, -0.02483661100268364, -0.030157754197716713, 0.010206921026110649, -0.0050239888951182365, -0.004536793101578951, 0.008679683320224285, 0.02251465804874897, -0.024283764883875847, 0.004495329689234495, 0.007207730785012245, 0.016682131215929985, 0.047572407871484756, 0.00792643055319786, 0.021091079339385033, 0.014221965335309505, -0.0002567711053416133, -0.012701638974249363, -0.010248384438455105, 0.0006180646596476436, -0.011817085556685925, 0.006381917279213667, 0.024961000308394432, 0.002325408859178424, 0.008783342316746712, 0.003064840566366911, -0.022984575480222702, 0.0008037863881327212, -0.027849622070789337, 0.010365864261984825, 0.009660985320806503, 0.006388827692717314, -0.030019542202353477, -0.0239520575851202, -0.010282937437295914, 0.0020628070924431086, -0.0015471052611246705, 0.02797401323914528, 0.011865459382534027, 0.0036073208320885897, 0.00881789531558752, 0.04668785259127617, -0.041048821061849594, 0.03607320785522461, -0.0033291701693087816, -0.01871383935213089, -0.019460182636976242, -0.008859358727931976, 0.005383338779211044, -0.024933358654379845, 0.011312613263726234, 0.013841884210705757, -0.006558137014508247, -0.0010063525987789035, 0.019598394632339478, 0.013931721448898315, -0.014346356503665447, -0.016460992395877838, -0.0024860796984285116, 0.029743120074272156, 0.002593193668872118, -0.029660193249583244, -0.0022683965507894754, -0.016640666872262955, 0.02221059240400791, -0.008493098430335522, -0.010897978208959103, -0.007974805310368538, -0.0011454280465841293, 0.007726024370640516, 0.012528874911367893, 0.006831104401499033, -0.008797163143754005, -0.006167689338326454, -0.007850414142012596, -0.0008137203403748572, 0.0007696654065512121, 0.021519534289836884, 0.01212806161493063, -0.026674823835492134, -0.02088376134634018, 0.0015531519893556833, -0.0010668202303349972, 0.018243921920657158, -0.0002999622083734721, -0.0013898896286264062, 0.0067481775768101215, 0.03728947043418884, 0.006983137223869562, -0.006803462281823158, 0.008500008843839169, 0.012452858500182629, -0.034967515617609024, 0.030434178188443184, 0.009674807079136372, -0.009128871373832226, 0.02010977640748024, -0.01727643981575966, -0.033226050436496735, -0.047102488577365875, -0.012432126328349113, -0.014705706387758255, 0.01451221015304327, -0.00268303113989532, 0.001480590901337564, 0.0021681932266801596, 0.005003257188946009, 0.00251372205093503, -0.034856945276260376, 0.0023167706094682217, -4.666663699026685e-06, 0.008472366258502007, 0.00981992855668068, -0.028996776789426804, 0.002323681255802512, -0.02236262522637844, 0.01802278310060501, -0.019239043816924095, -0.04071711376309395, -0.012839850969612598, -0.04724070057272911, -0.005359151866286993, -0.0005044720601290464, -0.009343098849058151, 0.012432126328349113, -0.022680511698126793, -0.013226842507719994, 0.0029283566400408745, 0.0016516277100890875, 0.0022286607418209314, 0.01832684874534607, -0.03203742951154709, 0.005303867161273956, 0.041795164346694946, -0.010379685088992119, -0.053570784628391266, -0.02103579416871071, -0.009246351197361946, -0.034082960337400436, 0.015438226982951164, -0.0003258768701925874, 0.04851224645972252, 0.021754493936896324, -0.025347992777824402, -0.013489444740116596, -0.02367563359439373, -0.07314153760671616, -0.002071445109322667, -0.052907370030879974, 0.050391919910907745, 0.032258570194244385, 0.02410409040749073, 0.01778782345354557, 0.023841487243771553, 0.004768297541886568, 0.0007018554024398327, -0.0241731945425272, -0.001336332643404603, -0.00706260884180665, -0.03259027749300003, 0.008804074488580227, -0.03156751021742821, -0.04635614529252052, -0.001202440238557756, 0.00908740796148777, -0.01720733381807804, -0.0010460885241627693, 0.006758543662726879, -0.021146362647414207, 0.006502852309495211, 0.0026847587432712317, 0.007228462491184473, 0.03767646104097366, 0.025513846427202225, 0.011941475793719292, -0.028665069490671158, -0.0011350621934980154, 0.014622779563069344, -0.005110370926558971, -0.008658952079713345, 0.00796098355203867, 0.03057238832116127, -0.011257329024374485, 0.009481310844421387, 0.010082530789077282, -0.0008923281566239893, 0.0029283566400408745, -0.0005593247478827834, 0.014843917451798916, 0.008030089549720287, 0.019045548513531685, 0.027172384783625603, -0.013047168031334877, 0.010552450083196163, -0.020593516528606415, 0.008880089968442917, 0.022777259349822998, 0.0007722568698227406, 0.013026435859501362, -0.001087551936507225, 0.012494321912527084, -0.025278886780142784, 0.01604635827243328, 0.017621969804167747, -0.02356506511569023, -0.006903665605932474, -0.0016032536514103413, -0.009273992851376534, -0.019363434985280037, 0.0007692335057072341, -0.014097575098276138, -0.026370758190751076, 0.0017613330855965614, 0.005725412163883448, -0.011333344504237175, -0.0013777961721643806, -0.0030872998759150505, -0.009059765376150608, -0.013924811035394669, -0.008859358727931976, 0.007615454960614443, -0.044808175414800644, -0.002755592344328761, 0.026094336062669754, -0.02023416757583618, 0.01532765757292509, 0.195486381649971, 0.002643295330926776, 0.02026180922985077, 0.013945542275905609, 0.02762848325073719, -0.010842693969607353, -0.00028786869370378554, 0.005466265603899956, -9.25909262150526e-05, 0.008119926787912846, 0.010379685088992119, -0.0010141270468011498, -0.02348213829100132, 0.0011661597527563572, 0.01952928863465786, -0.003073478816077113, -0.021754493936896324, 0.0027003076393157244, -0.010635376907885075, 0.005728867836296558, 0.004025410395115614, -0.009965050965547562, -0.004726834129542112, -0.017774002626538277, 0.021920347586274147, 0.012038223445415497, -0.013033346273005009, 0.02704799547791481, 0.02107725664973259, 0.018465058878064156, -0.01150610949844122, -0.007912609726190567, 0.01581139862537384, -0.01766343228518963, -0.014194323681294918, -0.007145535666495562, 0.0055491928942501545, -0.02507157064974308, -0.003401731140911579, -0.007117893546819687, -0.006212607957422733, -0.011478466913104057, 0.024615472182631493, -0.03604556620121002, 0.006036388222128153, -0.02120164781808853, -0.024325227364897728, -0.007560170255601406, 0.01073212455958128, -0.006592689547687769, -0.0365154854953289, -0.000285709131276235, 0.019501645117998123, -0.01082887314260006, 0.0019453271524980664, 0.012667085975408554, -0.014429283328354359, 0.009875213727355003, -0.022984575480222702, -0.0168618056923151, 0.003154678037390113, -0.00887317955493927, -0.015673186630010605, 0.0057461438700556755, -0.031954504549503326, 0.03278377279639244, -0.006924397312104702, 0.014484567567706108, 0.01809188909828663, -0.007408137433230877, -0.01600489392876625, 0.006772364489734173, -0.03181629255414009, 0.011340255849063396, -0.012763834558427334, 0.0027901451103389263, 0.022030916064977646, 0.016184570267796516, 0.04964558035135269, 0.007311389781534672, 0.023744739592075348, 0.015396763570606709, -0.02960490807890892, -0.0063646407797932625, 0.028720354661345482, -0.008154479786753654, 0.026052871719002724, -0.017497578635811806, 0.005656306631863117, -0.00908740796148777, -0.01094635296612978, 0.013081721030175686, 0.0034207352437078953, -0.02111872099339962, 0.0021889249328523874, 0.001955693121999502, 0.03142930194735527, 0.0043398416601121426, -0.022542299702763557, -0.03424881398677826, -0.012957329861819744, 0.052409809082746506, 0.02541709877550602, 0.005093094427138567, -0.004792484454810619, 0.005262403748929501, 0.003859556745737791, 0.007090250961482525, 0.013558550737798214, -0.020289450883865356, 0.0018865872407332063, -0.028913849964737892, 0.0033861822448670864, -0.0006871704244986176, -0.02069026418030262, 0.017774002626538277, 0.012915866449475288, -0.0019332336960360408, 0.016101641580462456, -0.017580505460500717, 0.027656126767396927, 0.0014641783200204372, 0.009356919676065445, 0.0010642287088558078, -0.02359270676970482, -0.012618712149560452, -0.00762236537411809, -0.0017259164014831185, -0.01968132145702839, -0.04243093729019165, 0.020524410530924797, -0.010808140970766544, 0.015908146277070045, -0.021215468645095825, -0.0032652472145855427, -0.004871956072747707, 0.0015704284887760878, -0.005770331248641014, 0.0048650456592440605, 0.005148379132151604, 0.014111396856606007, -0.0006046754424460232, 0.011775622144341469, -0.00030341747333295643, -0.007719113491475582, -0.0010089441202580929, -0.0011696149595081806, 0.024698399007320404, -0.03914150223135948, -0.01944636180996895, 0.0031287632882595062, 0.01635042391717434, -0.016709772869944572, -0.007269925903528929, 0.04693663492798805, -0.030323607847094536, -0.043343134224414825, -0.015175625681877136, 0.018976442515850067, 0.007753666490316391, -0.06064721569418907, 0.01883823052048683, 0.03811873868107796, 0.01201058179140091, -0.02038620039820671, 0.007048787549138069, -0.17580506205558777, 0.0054282573983073235, 0.01623985357582569, -0.017373189330101013, -0.021215468645095825, 0.02122928947210312, 0.0051172818057239056, -0.013551640324294567, -0.012846761383116245, -0.002026526490226388, 0.02573498524725437, -0.01972278393805027, -0.03980492055416107, -0.025016285479068756, -0.004077239893376827, -0.020330915227532387, -0.002651933580636978, 0.02120164781808853, 0.05362607166171074, 0.0013847067020833492, 0.02576262876391411, -0.019460182636976242, -0.005566468928009272, 0.02111872099339962, 0.02359270676970482, 0.012777655385434628, -0.01335123274475336, 0.02743498794734478, -0.003710979362949729, -0.03894800692796707, 0.014650421217083931, -0.008610578253865242, 0.03173336759209633, 0.0004010293632745743, -0.008258138783276081, -0.014291071332991123, 0.008216675370931625, -0.026495149359107018, -0.0161154642701149, 0.0099374083802104, 0.03435938432812691, 0.0013285583117976785, 0.023606527596712112, 0.016184570267796516, 0.01377277821302414, 0.013309769332408905, 0.04234801232814789, -0.01731790415942669, 0.020704086869955063, -0.010096351616084576, -0.0038284591864794493, -0.017179692164063454, -0.006630697753280401, -0.00530732236802578, 0.018423596397042274, 0.013572371564805508, 0.013005704618990421, 0.024587830528616905, 0.005625208839774132, -0.016405707225203514, -0.0024221569765359163, -0.02161628194153309, 0.009273992851376534, -0.019349614158272743, -0.01650245673954487, -0.040661830455064774, -0.0075117964297533035, 0.017193512991070747, -0.005200208630412817, 0.02440815418958664, 0.000275775179034099, 0.014152860268950462, -0.010504075326025486, -0.00042888763709925115, 0.019349614158272743, 0.008790252730250359, -0.04494638741016388, 0.008506919257342815, 0.014539851807057858, -0.008928464725613594, 0.02034473605453968, 0.017608148977160454, 0.003945938777178526, -0.009971961379051208, -0.015894325450062752, -0.0029076249338686466, 0.001520326710306108, -0.014021558687090874, -0.014132128097116947, 0.016336601227521896, 0.028388647362589836, -0.010103262029588223, -0.0010149908484891057, 0.01071139331907034, 0.006288624368607998, 0.008354886434972286, 0.0161154642701149, -0.010137815028429031, 0.0011989849153906107, -0.002105998108163476, 0.0009173789876513183, 0.022293519228696823, -0.03242442384362221, 0.01489920262247324, 0.019308149814605713, 0.010925620794296265, 0.019114654511213303, -0.0019090466666966677, 0.022459372878074646, -0.02421465888619423, -0.017649611458182335, 0.012328468263149261, 0.03383418172597885, 0.003849190892651677, -0.030517105013132095, 0.048954520374536514, -0.009757733903825283, -0.006457933224737644, 0.016903270035982132, -0.022528478875756264, 0.043647199869155884, -0.024435797706246376, -0.001614483306184411, -0.002216567285358906, 0.008893911726772785, -0.016875626519322395, -0.09497895836830139, -0.013586192391812801, 0.018686197698116302, 0.018147172406315804, -0.004305289126932621, 0.014857739210128784, 0.00100289739202708, 0.04688134789466858, 0.00756708113476634, 0.008361796848475933, -0.007705292664468288, -0.00023474363842979074, -0.0066030556336045265, -0.0060122013092041016, 0.0021042705047875643, -0.01565936580300331, 0.004726834129542112, -0.00943293608725071, -0.00423272792249918, 0.02979840524494648, -0.007076430134475231, 0.002114636357873678, 0.019847175106406212, 0.006140046752989292, 0.0008158799028024077, -0.003949394449591637, -0.021602461114525795, 0.009481310844421387, 0.01495448686182499, 0.016018714755773544, 0.024518724530935287, -0.008880089968442917, 0.008154479786753654, -0.015272373333573341, 0.0025171772576868534, -0.008672772906720638, -0.021989453583955765, -0.008382529020309448, 0.020123597234487534, -0.029770761728286743, 0.01918375864624977, -0.010414238087832928, 0.01677887886762619, -0.030434178188443184, -0.01918375864624977, -0.0028575232718139887, -0.024974822998046875, 0.012349199503660202, 0.004526427481323481, -0.007470333017408848, -0.02743498794734478, -0.026591897010803223, -0.04187809303402901, -0.028416289016604424, 0.031180519610643387, 0.02522360347211361, -0.004526427481323481, 0.01623985357582569, -0.007242283783853054, 0.004426224157214165, 0.01017236802726984, -0.019556930288672447, 0.004896142985671759, 0.023924414068460464, 0.011264239437878132, 0.016571560874581337, -0.012667085975408554, -0.007525617256760597, -0.022252054885029793, -0.01628131791949272, -0.0019608759321272373, -0.006468299310654402, -0.020137418061494827, 0.01096708420664072, -0.03618377819657326, -0.004823582246899605, 0.008285780437290668, -0.028913849964737892, 0.016170747578144073, 0.011803263798356056, -0.01226627267897129, -0.028665069490671158, -0.008361796848475933, -0.0322309285402298, 0.027061816304922104, 0.0035295768175274134, 0.015756113454699516, -0.019847175106406212, 0.03189922124147415, -0.03422117233276367, 0.026356937363743782, 0.02681303583085537, 0.021906526759266853, 0.028139866888523102, 0.00981992855668068, 0.002733132801949978, -0.012501232326030731, -0.023260999470949173, 0.01565936580300331, 0.014539851807057858, 0.002945633139461279, 0.009626432321965694, -0.06562282890081406, 0.005207119043916464, -0.0002738315670285374, -0.0009165151859633625, -0.0006742131081409752, -0.01607399992644787, 0.010739034973084927, -0.0040357764810323715, 0.01187928020954132, 0.016847984865307808, -0.01596343144774437, 0.012660175561904907, 0.009557327255606651, 0.0013993916800245643, -0.029162632301449776, -0.009868302382528782, -0.004927240777760744, -0.007732934784144163, 0.012287004850804806, 0.010234563611447811, -0.018824409693479538, 0.02122928947210312, 0.003780085127800703, 0.009405294433236122, -0.030821170657873154, 0.027946369722485542, -0.0337236113846302, 0.01032440084964037, -0.025347992777824402, -0.051829319447278976, 0.008119926787912846, 0.016571560874581337, -0.02444961853325367, 0.015617902390658855, -0.015355300158262253, -0.03095938079059124, 0.010469523258507252, 0.005497363395988941, 0.01914229616522789, 0.012597979977726936, -0.009522774256765842, -0.024200838059186935, 0.017290262505412102, -0.03770410269498825, -0.02894149348139763, -0.015880504623055458, -0.023357747122645378, -0.01817481592297554, 0.006216063164174557, 0.010600823909044266, 0.038035809993743896, 0.001097917789593339, -0.03455287963151932, -0.02382766641676426, 0.005013622809201479, -0.011533752083778381, 0.030544746667146683, 0.018575629219412804, 0.015465869568288326, -0.0067481775768101215, 0.03325369209051132, -0.00016736552061047405, 0.017608148977160454, -0.024325227364897728, 0.024615472182631493, -0.02747645042836666, -0.05755127966403961, -0.024477260187268257, 0.01688944734632969, -0.025900838896632195, 0.004205085802823305, -0.0180504247546196, 0.03469109162688255, 0.03549271821975708, -0.0018433962250128388, 0.0004936743061989546, -0.007345942314714193, -0.010524807497859001, -0.0015358756063506007, 0.035630930215120316, 0.02670246548950672, -0.012632532976567745, -0.01980571076273918, -0.0005260676261968911, 0.008423992432653904, 0.013745135627686977, -0.011803263798356056, 0.018741482868790627, 0.005566468928009272, 0.004699192009866238, -0.016143105924129486, 0.008769521489739418, -0.017621969804167747, 0.0025189050938934088, -0.0035105727147310972, 0.026826856657862663, -0.01899026334285736, 0.019266685470938683, 0.007850414142012596, 0.024269944056868553, -0.010573181323707104, 0.02503010630607605, 0.0026398401241749525, 0.006568502634763718, -0.005048175808042288, 0.01914229616522789, -0.01746993698179722, -0.016751237213611603, 0.0032548813614994287, 0.014401640743017197, 0.009412204846739769, -0.009508952498435974, -0.013710583560168743, 0.013005704618990421, -0.03247970715165138, -0.01282602921128273, -0.0009597062598913908, -0.007072974927723408, -0.024974822998046875, 0.003562401980161667, 0.006482120603322983, 0.025016285479068756, 0.008963017724454403, -0.012798386625945568, 0.023495959118008614, 0.00805773213505745, 0.003852646332234144, -0.012867492623627186, 0.012238630093634129, -0.023606527596712112, 0.0012775927316397429, 0.0073528531938791275, -0.0015505605842918158, -0.017069123685359955, -0.023302461951971054, -0.015742292627692223, -0.011264239437878132, 0.004149801097810268, -0.0141252176836133, 0.1003415659070015, 0.02146424911916256, -0.005994924809783697, 0.007836593315005302, -0.02421465888619423, 0.0058532580733299255, 0.011671963147819042, 0.006889844313263893, -0.008334155194461346, -0.012238630093634129, 0.023882951587438583, -0.008092285133898258, -0.006039843428879976, -0.012584159150719643, -0.031180519610643387, -0.016378065571188927, 0.002836791565641761, 0.0361008495092392, -0.0027987833600491285, 0.011126027442514896, 0.02453254535794258, -0.010973994620144367, 0.04088296741247177, -0.012521963566541672, -0.043730124831199646, -0.005258948542177677, 0.03552035987377167, 0.029853688552975655, 0.0014840462245047092, -0.03723418340086937, 0.007069519255310297, 0.008631309494376183, -0.02657807618379593, -0.00999960396438837, -0.00914269220083952, -0.0031114870216697454, -0.017815465107560158, -0.03076588548719883, 0.009273992851376534, 0.015147983096539974, -0.005784152075648308, 0.019156116992235184, -0.005058541893959045, -0.03189922124147415, 0.00019576367049012333, -0.014021558687090874, -0.024048805236816406, -0.007878056727349758, 0.005290045868605375], "cf829ada-81c5-4f09-9ace-a6fb7e38d110": [0.011340990662574768, 0.0010799331357702613, 0.015031044371426105, -0.02499757520854473, -0.0018636464374139905, 0.026609010994434357, -0.013467003591358662, -0.01829454116523266, -0.011483176611363888, -0.04541812837123871, 0.011327449232339859, 0.014706049114465714, 0.021422622725367546, -0.0012449698988348246, -0.009330080822110176, 0.016263319179415703, 0.0244288332760334, 0.007143131457269192, 0.006215539760887623, -0.012674826197326183, -0.01813204400241375, -0.007529063615947962, -0.00970247108489275, -0.004817381966859102, -0.02402258850634098, -0.0010443867649883032, 0.016642481088638306, -0.014882087707519531, -0.038214061409235, 0.03008917160332203, -0.007468127179890871, -0.012776387855410576, -0.02124658413231373, -0.013182632625102997, -0.02010910026729107, 0.009018626995384693, 0.008605611510574818, -0.011503488756716251, 0.00407260050997138, -0.008517592214047909, 0.020041393116116524, 0.011408697813749313, -0.0024747056886553764, -0.007854059338569641, -0.022560108453035355, 0.02543090283870697, 0.0036189609672874212, -0.008632694371044636, -0.019432025030255318, 0.0119503578171134, -0.010027467273175716, -0.008910294622182846, -0.02656838670372963, 0.014381052926182747, -0.00933685153722763, -0.01131390780210495, 0.011151409707963467, -0.022302819415926933, 0.022560108453035355, -0.005961637012660503, 0.010366003960371017, 0.0036460438277572393, -0.008382176980376244, -0.005210084840655327, -0.006841833703219891, -0.03122665546834469, 0.0014066214207559824, -0.012620660476386547, -0.02079971507191658, -0.017969544976949692, 0.03664324805140495, 0.039297379553318024, -0.008605611510574818, 0.013196174055337906, -0.013541481457650661, -0.0033853703644126654, -0.0018450268544256687, -0.02992667444050312, 0.0010663917055353522, 0.0013583798427134752, 0.010034237988293171, -0.024970492348074913, -0.03263496980071068, 0.0031619358342140913, 0.027489207684993744, 0.02474028617143631, 0.01726538874208927, -0.004800455179065466, -0.003943956457078457, 0.012830553576350212, 0.0005594324320554733, 0.00759000051766634, 0.019770562648773193, 0.014448761008679867, 0.004157234914600849, 0.023128850385546684, 0.01138838566839695, 0.00842280127108097, 0.0009580597979947925, -0.026947548612952232, -0.01811850257217884, -0.007820205762982368, -0.027042338624596596, -0.010426940396428108, -0.03615575656294823, -0.017495594918727875, 0.022966353222727776, 0.0051796166226267815, -0.004177547059953213, -0.0019567441195249557, -0.030116254463791847, 0.03499118983745575, -0.012728992849588394, 0.005596016999334097, 0.004153849557042122, -0.021354915574193, 0.020596593618392944, -0.024550706148147583, 0.0029774331487715244, -0.024076754227280617, -0.0019770562648773193, -0.023291347548365593, 0.03260788694024086, -0.02471320331096649, 0.01687268540263176, -0.01180817186832428, 0.014110223390161991, -0.017482051625847816, 0.017509136348962784, -0.01867370307445526, 0.00019434140995144844, 0.007231151219457388, 0.0008442267426289618, 0.0010477721225470304, -0.016642481088638306, 0.010034237988293171, -0.016073739156126976, 0.005325187463313341, -0.011395156383514404, -0.037293240427970886, 0.02641943097114563, 0.04677227512001991, -0.005992105696350336, -0.016520608216524124, 0.009539973922073841, 0.014516468159854412, -0.0016055118758231401, 0.022722605615854263, -0.007407190278172493, 0.012756075710058212, 0.01615498773753643, -0.013839393854141235, -0.009587368927896023, 0.0011992674553766847, 0.0030315991025418043, 0.00956705678254366, 0.004580406006425619, 0.026392348110675812, -0.022587191313505173, -0.0046447282657027245, -0.004749674815684557, -0.006791052874177694, -0.009126958437263966, -0.010298296809196472, -0.008124888874590397, 0.0320662297308445, 0.002506866818293929, -0.011395156383514404, -0.0023883788380771875, -0.01646644063293934, 0.01825391687452793, 0.0077863517217338085, -0.00962799321860075, 0.017793506383895874, 0.014855004847049713, 0.016953933984041214, 0.015653952956199646, -0.000901354884263128, -0.004008278716355562, -0.029628761112689972, 0.02529548667371273, -0.003400604473426938, 0.0005048433667980134, 0.02108408696949482, -0.030278751626610756, -0.01572166010737419, 0.040407780557870865, 0.030007923021912575, -0.005027275066822767, -0.006191842257976532, 0.01618207059800625, 0.014733131974935532, -0.011693068780004978, -0.006367881782352924, -0.6248581409454346, -0.00033705594250932336, 0.021598663181066513, -0.009804032742977142, -0.0012390455231070518, 0.010867038741707802, 0.031687065958976746, 0.0016359802102670074, -0.008273845538496971, 0.041816093027591705, 0.019472651183605194, -0.004509313497692347, -0.01909348927438259, -0.014083140529692173, 0.0022411150857806206, -0.032553721219301224, -0.002197105437517166, -0.0365619994699955, -0.0048072258941829205, 0.01589769870042801, -0.015829991549253464, 0.020054934546351433, 0.005321802105754614, -0.003750990377739072, 0.014692507684230804, -0.01744142733514309, 0.02040701173245907, -0.0075629171915352345, -0.007617083378136158, 0.02446945756673813, -0.025688190013170242, 0.010298296809196472, 0.003180555533617735, 0.028355862945318222, 0.053055524826049805, -0.020271597430109978, -0.023860089480876923, 0.013243569061160088, 0.03358287364244461, 0.04923682659864426, -0.012965968810021877, -0.009966529905796051, -0.0011781088542193174, 0.009018626995384693, -0.012295665219426155, 0.010000384412705898, 0.0226278156042099, -0.001547960564494133, -0.0015445752069354057, -0.01615498773753643, 0.012356601655483246, -0.012255040928721428, 0.005078055430203676, 0.00674704322591424, 0.005589246284216642, -0.0023257494904100895, 0.02361634373664856, -0.02572881430387497, 0.010298296809196472, -0.005294719245284796, 0.009248832240700722, 0.018741410225629807, -0.028599608689546585, -0.03921613097190857, -0.05237844958901405, 0.011462864466011524, -0.0011340990895405412, -0.02586422860622406, 0.005931168794631958, -0.01061652135103941, 0.03130790591239929, -0.00814520101994276, -0.012586806900799274, -0.010508189909160137, 0.004302805755287409, 0.011503488756716251, 0.025403819978237152, -0.009675388224422932, -0.014150847680866718, 0.019025782123208046, -0.00467519648373127, -0.009736325591802597, -0.02079971507191658, -0.0005987873882986605, 0.021436164155602455, 0.012072230689227581, -0.018646620213985443, -0.00300620892085135, -0.007989473640918732, -0.007813435047864914, 0.009783720597624779, 0.014516468159854412, -0.020041393116116524, -0.01898515783250332, 0.020894505083560944, 0.03331204503774643, 0.01237691380083561, 0.002921574516221881, 0.009797262027859688, -0.02387363091111183, -0.015207083895802498, -0.02557985857129097, 0.01278315857052803, -0.0008137584081850946, 0.03049541637301445, 0.037726566195487976, -0.00807072315365076, -0.031253740191459656, 0.03385370224714279, -0.030387084931135178, -0.003987966105341911, -0.00579575402662158, -0.021422622725367546, -0.015044585801661015, 0.018903907388448715, -0.028139198198914528, 0.00484446482732892, -0.008700401522219181, 0.02162574604153633, -0.004505928140133619, 0.0002672326809260994, -0.01390710100531578, 0.008328011259436607, -0.0056772660464048386, 0.004235098138451576, 0.0194049421697855, 0.013236798346042633, 0.004681967198848724, 0.0120993135496974, 0.008124888874590397, 0.005619714967906475, -0.013121695257723331, 0.019228903576731682, 0.0053421142511069775, 0.014502926729619503, -0.01216024998575449, 0.04032653197646141, -0.017509136348962784, 0.0034243022091686726, -0.04820767417550087, 0.01432688720524311, 0.0010384623892605305, 0.012403996661305428, -0.032255809754133224, 0.008659777231514454, -0.018050795421004295, -0.02166637033224106, 0.009851427748799324, -0.011679527349770069, -0.033799536526203156, -0.01474667340517044, -0.013047217391431332, -0.006960321217775345, 0.018484123051166534, -0.00442129373550415, 0.004661655053496361, 0.0033836776856333017, -0.04428064450621605, -0.004773372318595648, -0.02444237470626831, -0.014882087707519531, 0.012769617140293121, -0.02306114323437214, 0.003916873596608639, -0.014706049114465714, -0.003530941205099225, -0.002664286410436034, 0.00766447838395834, -0.01341283693909645, -0.034341197460889816, 0.011977440677583218, -0.0057619004510343075, 0.013406066223978996, 0.026175683364272118, 0.0016427509253844619, 0.03092874400317669, -0.025214238092303276, 0.0015335727948695421, -0.001058774534612894, -0.0009182817302644253, 0.009323310106992722, 0.001785782864317298, -0.012593577615916729, -0.00036181145696900785, 0.024212168529629707, 0.007854059338569641, 0.03187664598226547, 0.01787475496530533, -0.03195789456367493, 0.005064513999968767, 0.017671633511781693, -0.0014641727320849895, 0.009154041297733784, 0.0029401942156255245, -0.024916326627135277, 0.0015327264554798603, -0.028789188712835312, 0.005406436510384083, 0.00487831886857748, 0.022140322253108025, 0.023792382329702377, 0.0005581629229709506, -0.005988720338791609, 0.007441043853759766, 0.0030739163048565388, -0.009749867022037506, 0.005998876411467791, -0.01814558543264866, 0.022695522755384445, 0.01712997443974018, -0.008470196276903152, 0.005057743284851313, 0.011435780674219131, -0.01744142733514309, 0.02063721790909767, 0.028843356296420097, 0.008517592214047909, 0.017224764451384544, -0.001664755865931511, 0.0025136375334113836, 0.019729938358068466, -0.0034700045362114906, 0.04219525679945946, -0.0020938515663146973, 0.00048791649169288576, 0.03355579078197479, -0.0035546389408409595, 0.018037253990769386, 0.010034237988293171, -0.02532256953418255, 0.0034700045362114906, 0.036047425121068954, 0.013819081708788872, 0.007427502423524857, 0.053895097225904465, 0.03417870029807091, 0.037618234753608704, -0.00970247108489275, 0.04048902913928032, -0.013284193351864815, 0.005741588305681944, 0.017387261614203453, 0.020704925060272217, -0.022126780822873116, 0.051240965723991394, 0.006719960365444422, 0.01981118693947792, 0.009099875576794147, -0.0268256738781929, 0.0407598577439785, 0.014638341031968594, 0.005145763047039509, -0.023914257064461708, -0.008625923655927181, 0.0314704030752182, -0.008910294622182846, 0.014516468159854412, 0.005359041038900614, 0.0012542797485366464, 0.014259180054068565, 0.0028284769505262375, -0.016967475414276123, 0.011740464717149734, 0.013690438121557236, 0.0024882471188902855, -0.0123633723706007, -0.014665424823760986, -0.028897522017359734, -0.008368635550141335, -0.021273666992783546, -0.00293342350050807, -0.010995683260262012, 0.00984465703368187, 0.009858198463916779, -0.0077728102914988995, -0.004698893986642361, 0.007962390780448914, 0.010663916356861591, -0.013514398597180843, 0.008585299365222454, -0.02138199843466282, -0.014773756265640259, 0.019472651183605194, 0.02178824320435524, 0.001054542837664485, -0.01518000103533268, -0.005562163423746824, -0.023426763713359833, 0.03214747831225395, 0.018362248316407204, 0.0077863517217338085, 0.006113979034125805, -0.004692123271524906, 0.0010393087286502123, -0.007048340979963541, 0.01955389976501465, 0.03848489001393318, -0.015423747710883617, 0.003212716430425644, 0.02574235573410988, 0.017671633511781693, 0.017454968765378, -0.026311097666621208, -0.015085210092365742, 0.029141267761588097, -0.01601957343518734, -0.02641943097114563, -0.036751579493284225, -0.005298104602843523, -0.025092365220189095, 0.005491070915013552, -0.014015433378517628, -0.014706049114465714, -0.009126958437263966, -0.006137676537036896, 0.011307137086987495, 0.003798385616391897, -0.02402258850634098, 0.00814520101994276, 0.010433711111545563, 0.012850865721702576, -0.014787297695875168, 0.012255040928721428, 0.03144332021474838, 0.07301566749811172, 0.017387261614203453, 0.00045321646030060947, 0.021679911762475967, -0.006354340352118015, -0.026812132447957993, -0.02671734243631363, -0.028003783896565437, 0.028978770598769188, -0.0025779595598578453, -0.02628401480615139, 0.002946964930742979, -0.011814942583441734, -0.005382739007472992, 0.011754006147384644, -0.010271213948726654, 0.0061986129730939865, -0.017468510195612907, -0.0020633831154555082, 0.004268952179700136, 0.014001891948282719, 0.0026304328348487616, 0.03358287364244461, 0.012918572872877121, 0.019025782123208046, 0.008896753191947937, 0.04254733398556709, 0.012139937840402126, 0.0023985349107533693, -0.01924244500696659, -0.027096504345536232, 0.007826976478099823, 0.01420501433312893, 0.012356601655483246, -0.023101767525076866, 0.026812132447957993, 0.002489939797669649, -0.018741410225629807, -0.022248653694987297, 0.011043078266084194, 0.005700963549315929, 0.02219448797404766, 0.002210646867752075, -0.011618590913712978, 0.0244288332760334, -0.02232990227639675, -0.009066022001206875, 0.018863283097743988, -0.023088226094841957, 0.005704348906874657, 0.007596771232783794, 0.017035184428095818, -0.01826745830476284, 0.01329096406698227, -0.0023629884235560894, -0.011787859722971916, 0.001058774534612894, -0.019337235018610954, -0.03918904811143875, -0.0244288332760334, -0.04048902913928032, -0.03033291921019554, 0.0010553891770541668, -0.005460602231323719, -0.007766039576381445, -0.02868085727095604, -0.0027980084996670485, -0.0036189609672874212, -0.021463248878717422, -0.0016139752697199583, 0.009404558688402176, -0.04325149208307266, -0.039432793855667114, -0.013527940027415752, 0.02767878770828247, 0.018050795421004295, -0.012004523538053036, 0.015789367258548737, -0.0040624444372951984, 2.3380214770440944e-05, 0.0024459301494061947, -0.029439181089401245, 0.011340990662574768, -0.02192365750670433, -0.006791052874177694, -0.010244131088256836, -0.0317683145403862, -0.0005801678635179996, -0.0017603925662115216, 0.007434273138642311, 0.0035952632315456867, 0.005633256398141384, -0.00015805447765160352, -0.002229266334325075, 0.010169652290642262, 0.026311097666621208, 0.020434094592928886, -8.172495290637016e-05, 0.028491277247667313, -0.029845425859093666, 5.7128123444272205e-05, -0.00717021431773901, -0.020163265988230705, -0.029818342998623848, 0.014570633880794048, 0.0034158385824412107, 0.000892891432158649, -0.007149902172386646, 0.002066768705844879, -0.0028420183807611465, 0.0008150279172696173, 0.002745535457506776, -0.008355094119906425, -0.01603311486542225, 0.009763408452272415, -0.028193363919854164, 0.0021954127587378025, 0.01497687865048647, 0.016642481088638306, 0.005660339258611202, -0.005423363298177719, -0.008673318661749363, 0.02769232913851738, -0.004147078841924667, 0.0061986129730939865, 0.013683667406439781, 0.025837145745754242, -0.023088226094841957, -0.03314954787492752, 0.0017138437833637, -0.0033091995865106583, 0.0077863517217338085, -0.013006593100726604, -0.015274791046977043, -0.009804032742977142, 0.00643558893352747, -0.022397609427571297, -0.0036257316824048758, -0.02499757520854473, -0.01688622683286667, -0.018741410225629807, 0.013947726227343082, 0.012336289510130882, -0.016669563949108124, 0.018443496897816658, -0.024388207122683525, -0.022817395627498627, -0.0013533018063753843, 0.013561793603003025, 0.006923082284629345, -0.028978770598769188, -0.012552953325212002, -0.025688190013170242, -0.01532895676791668, 0.0017197681590914726, -0.02949334681034088, -0.011090473271906376, 0.02191011607646942, 0.04769309610128403, 0.03106415830552578, 0.009634763933718204, 0.0014091604389250278, 0.02658192813396454, 0.0035918778739869595, -0.012397225946187973, -0.007501980755478144, -0.013081070967018604, -0.015545620582997799, 0.007339483126997948, 0.010738395154476166, 0.0035140144173055887, -0.0057754418812692165, -0.011997752822935581, 0.011070161126554012, 0.01474667340517044, 0.010244131088256836, -0.018050795421004295, -0.004607488866895437, -0.040570277720689774, -0.040543194860219955, -0.004776757676154375, 0.04457855597138405, -0.0068181357346475124, 0.009140499867498875, -0.030278751626610756, 0.0014641727320849895, 0.006472828332334757, -0.00287925754673779, 0.035180769860744476, 0.008653006516397, 0.042411919683218, 0.0025373350363224745, 0.001004608697257936, 0.00667595025151968, -0.013717520982027054, -0.0063949646428227425, -0.014394594356417656, -0.03642658516764641, -0.007962390780448914, -0.00041513104224577546, 0.019201820716261864, 0.01342637836933136, -0.021964283660054207, 0.008829046040773392, 0.0016757582779973745, 0.024929868057370186, -0.01868724450469017, -0.02402258850634098, 0.007319170515984297, -0.018159126862883568, -0.009939447045326233, -0.0323641411960125, -0.022573649883270264, -0.0007147362921386957, -0.010738395154476166, -0.013812310993671417, 0.003967653959989548, 0.01687268540263176, -0.015247708186507225, 0.0007892144494690001, 0.022289277985692024, 0.007508751470595598, 0.04103069007396698, 0.017170598730444908, 0.020461179316043854, 4.0756684029474854e-05, -0.00610720831900835, -0.011997752822935581, -0.020027851685881615, 0.009438412263989449, -0.00983111560344696, 0.005088211502879858, 0.037726566195487976, -0.01270868070423603, 0.00372390728443861, 0.0008442267426289618, -0.01118526328355074, -0.0005365812103264034, -0.03122665546834469, 0.00530148996040225, 0.007495210040360689, -0.009790491312742233, -0.033230796456336975, -0.015938322991132736, -0.01516645960509777, 0.00242223241366446, -0.0033210483379662037, 0.03485577180981636, 0.005105138290673494, -0.002242807764559984, 0.009506120346486568, 0.041409850120544434, -0.02586422860622406, 0.018199751153588295, 0.0007997937500476837, -0.00029854735475964844, -0.019878894090652466, -0.00394057109951973, 0.0006749582244083285, -0.024117378517985344, 0.01841641403734684, 0.01684560254216194, -0.0028961843345314264, -0.0026304328348487616, 0.009736325591802597, 0.011422239243984222, -0.016236236318945885, -0.008504050783813, -0.002928345464169979, 0.028166281059384346, -0.0025864229537546635, -0.013866476714611053, -0.003849165979772806, -0.02643297240138054, 0.019905976951122284, 0.0022377297282218933, -0.01355502288788557, -0.014665424823760986, 0.015951864421367645, 0.017928920686244965, 0.011503488756716251, 0.0022326516918838024, -0.019350776448845863, 0.012112854979932308, -0.0018517975695431232, -0.005298104602843523, 0.003639273112639785, 0.011476405896246433, 0.008172283880412579, -0.02459133043885231, -0.020068475976586342, -0.005287948530167341, -0.010927975177764893, 0.007495210040360689, -0.003615575609728694, -0.02163928747177124, -0.007522292900830507, 0.03694115951657295, -0.0024340813979506493, -0.01518000103533268, 0.022519484162330627, 0.02009555883705616, -0.014706049114465714, 0.030603747814893723, 0.007474897895008326, -0.006066583562642336, 0.02841002866625786, 0.0026524376589804888, -0.020122641697525978, -0.029439181089401245, -0.011659215204417706, -0.0031280822586268187, 0.01256649475544691, 0.0001944472169270739, 0.004258796107023954, 0.0033887557219713926, 0.002826784271746874, 0.015789367258548737, -0.013575335033237934, -0.010569126345217228, 0.010711311362683773, 0.016060197725892067, -0.012133167125284672, -0.02237052656710148, 0.013020134530961514, -0.011104014702141285, 0.021395539864897728, -0.010481107048690319, -0.03377245366573334, -0.02220802940428257, -0.03249955549836159, -0.01069099921733141, -0.0013025212101638317, -0.0013626115396618843, 0.012092542834579945, -0.027191294357180595, -0.012593577615916729, 0.017969544976949692, -0.012390455231070518, 0.0008281462360173464, 0.007285316940397024, -0.019878894090652466, -0.0018822659039869905, 0.02965584397315979, -0.013467003591358662, -0.044768135994672775, -0.013866476714611053, -0.02503819949924946, -0.036047425121068954, 0.0022241882979869843, -0.005558778066188097, 0.0491555780172348, 0.006980633828788996, -0.02728608436882496, -0.015301873907446861, -0.02640588954091072, -0.06164082512259483, 0.013121695257723331, -0.01671018823981285, 0.0301975030452013, 0.04059736058115959, 0.03106415830552578, 0.014882087707519531, 0.02460487186908722, -0.0006419508717954159, 0.007176985032856464, -0.026460055261850357, 0.011225888505578041, -0.016236236318945885, -0.04162651300430298, -0.006124135106801987, -0.013758145272731781, -0.035207852721214294, 0.002364681102335453, 0.0070280288346111774, -0.018050795421004295, 0.011977440677583218, 0.016940392553806305, -0.02348092943429947, 0.0005975178792141378, -0.001448938506655395, -0.006235852371901274, 0.03637241944670677, 0.02851836010813713, 0.005034045781940222, -0.026053810492157936, 0.008030098862946033, 0.0074613564647734165, -0.011706611141562462, -0.02503819949924946, 0.013121695257723331, 0.022451777011156082, -0.0072514633648097515, 0.016520608216524124, 0.013758145272731781, -0.004390825517475605, -0.006235852371901274, -0.02081325650215149, 0.023223640397191048, -0.005697578191757202, 0.024929868057370186, 0.030441250652074814, -0.005162689834833145, 0.0066691795364022255, -0.02528194524347782, 0.005829607602208853, 0.012688367627561092, -0.0036121902521699667, 0.012546182610094547, -0.03637241944670677, -0.003150087082758546, -0.024848617613315582, 0.01688622683286667, 0.015843532979488373, -0.020027851685881615, -0.008605611510574818, 0.016832061111927032, -0.019933059811592102, -0.011855566874146461, 0.00379500025883317, -0.011090473271906376, -0.016385192051529884, -0.012986280955374241, -0.00467519648373127, 0.003923644311726093, 0.004208015277981758, -0.006631940603256226, -0.015383122488856316, -0.003145009046420455, -0.019933059811592102, 0.008395718410611153, -0.04498480260372162, 0.004157234914600849, 0.02316947467625141, -0.014665424823760986, 0.012573265470564365, 0.18589745461940765, 0.009871739894151688, 0.01419147290289402, 0.018308082595467567, 0.026947548612952232, -0.014353970065712929, 0.007799893151968718, 0.014421678148210049, 0.0022004907950758934, 0.0067673553712666035, 0.017956003546714783, 0.006841833703219891, -0.02108408696949482, -0.0036629706155508757, 0.0089170653373003, -0.005849919747561216, -0.039730705320835114, -0.017211223021149635, -0.01603311486542225, 0.01474667340517044, 0.00926237367093563, -0.012268582358956337, -0.011936815455555916, -0.0122888945043087, 0.02655484527349472, 0.013372212648391724, -0.0089915432035923, 0.00962799321860075, 0.010508189909160137, 0.024970492348074913, -0.005768671166151762, 0.004329888615757227, 0.02598610334098339, -0.012079001404345036, -0.029195433482527733, -0.0023223641328513622, 0.0007824437343515456, -0.024537164717912674, -0.009005085565149784, 0.018903907388448715, 0.00590408593416214, -0.011632132343947887, 0.013230027630925179, -0.04078694060444832, -0.002307129791006446, -0.010244131088256836, -0.013575335033237934, -0.0016833754489198327, -0.00016069930279627442, 0.009005085565149784, -0.013087841682136059, -0.00467519648373127, 0.025796521455049515, 0.007569687906652689, 0.007847288623452187, 0.022113239392638206, -0.01551853772252798, 0.006631940603256226, -0.00933685153722763, -0.01095505803823471, -0.02316947467625141, -0.006615013815462589, -0.006736887153238058, -0.0030976138077676296, -0.016926851123571396, 0.03455786034464836, -0.0006220617797225714, 0.03163290023803711, -0.0022004907950758934, 0.004319732543081045, -0.008612382225692272, -0.005846534390002489, -0.045038968324661255, -0.007684790529310703, -0.011273283511400223, 0.00335659459233284, 0.028978770598769188, 0.01474667340517044, 0.05492424964904785, 0.00913372915238142, 0.00337352161295712, 0.00660147238522768, -0.03049541637301445, -0.018497664481401443, 0.01884974166750908, -0.012018064968287945, 0.03063083067536354, -0.01967577263712883, 0.004438220523297787, -0.013053988106548786, -0.003503858344629407, 0.016385192051529884, 0.0010257671819999814, -0.013582105748355389, -0.003910102881491184, 0.0022495787125080824, 0.030576664954423904, 0.016926851123571396, -0.019635148346424103, -0.03244538977742195, -0.008456654846668243, 0.060232508927583694, 0.024848617613315582, 0.022830937057733536, -0.00017974201182369143, 0.011144638992846012, -0.007745727431029081, 0.009113417007029057, 0.01756330206990242, -0.0191070307046175, -0.018348706886172295, -0.033230796456336975, 0.012728992849588394, -0.011015995405614376, -0.01103630755096674, 0.01032537966966629, 0.026311097666621208, 0.013778457418084145, 0.01895807310938835, -0.01123942993581295, 0.015261249616742134, 0.00618168618530035, 0.011483176611363888, 0.00048283845535479486, -0.03455786034464836, -0.023250723257660866, -0.004925713874399662, 0.02333197183907032, -0.028193363919854164, -0.017536219209432602, 0.020122641697525978, -0.015613327734172344, 0.015965405851602554, -0.006909540854394436, 0.0005733970901928842, -0.01897161453962326, -0.0007308167987503111, -0.004925713874399662, 0.009357163682579994, -0.004377284087240696, 0.008971231058239937, 0.002166636986657977, 0.013399295508861542, 0.0014049287419766188, -0.013785228133201599, 0.0011823405511677265, -0.011083702556788921, 0.014096681959927082, -0.03721199184656143, -0.015843532979488373, 0.01829454116523266, -0.007962390780448914, -0.00907279271632433, -0.023968422785401344, 0.035776592791080475, -0.031091241165995598, -0.03962237387895584, -0.03447661176323891, 0.009810803458094597, 0.022519484162330627, -0.04761184751987457, 0.021544497460126877, 0.0404619462788105, -0.003004516242071986, -0.016412274911999702, -0.011435780674219131, -0.17116431891918182, 0.00026088510639965534, 0.007454585749655962, -0.0206778421998024, -0.018497664481401443, 0.02430695854127407, 0.010041008703410625, -0.01772579923272133, -0.021029921248555183, 0.002346061635762453, 0.012424308806657791, -0.015193542465567589, -0.04127443581819534, -0.02066430076956749, -0.011273283511400223, -0.01018319372087717, 0.0008264535572379827, 0.0205288864672184, 0.04598687216639519, 0.01012225728482008, 0.015586244873702526, -0.03509952127933502, -0.011855566874146461, -0.007271775510162115, 0.013731062412261963, 0.023562178015708923, -0.0050814407877624035, 0.038593221455812454, -0.0119503578171134, -0.027191294357180595, 0.010548814199864864, -0.009864969179034233, 0.021842408925294876, 0.023724675178527832, -0.002628740156069398, -0.001997368410229683, 0.008165513165295124, -0.014381052926182747, -0.018037253990769386, 0.018172668293118477, 0.04606812074780464, 0.01926952786743641, 0.023548636585474014, 0.016534149646759033, 0.01699455827474594, 0.028464194387197495, 0.03699532896280289, -0.008950918912887573, 0.01656123250722885, -0.0026101204566657543, 0.014597716741263866, -0.01882265880703926, -0.01166598591953516, -0.0019448952516540885, 0.02081325650215149, 0.010237360373139381, 0.011280054226517677, 0.015383122488856316, -0.002908033085986972, -0.005707734264433384, 0.010968600399792194, -0.02459133043885231, -0.0021920274011790752, -0.008449884131550789, -0.019784104079008102, -0.03157873451709747, -0.0006250240257941186, 0.0282475296407938, 0.005463987588882446, 0.019865352660417557, 0.012668055482208729, 0.008971231058239937, -0.0008552292129024863, 0.011483176611363888, 0.017603926360607147, 0.01511229295283556, -0.033934950828552246, 0.01398835051804781, 0.025336110964417458, -0.008328011259436607, 0.029168350622057915, 0.012451392598450184, 0.011638903059065342, -0.0017739341128617525, -0.009526432491838932, -0.015125834383070469, -0.003238106844946742, -0.0074613564647734165, 0.006851989775896072, 0.011164951138198376, 0.03076624497771263, -0.019472651183605194, 0.0011383307864889503, 0.004472074098885059, 0.013527940027415752, -0.0006825752789154649, 0.021016379818320274, -0.0036934390664100647, -0.009912364184856415, -0.017915379256010056, 0.006300174165517092, 0.012735763564705849, -0.0436035692691803, 0.021991366520524025, 0.029682926833629608, 0.020732007920742035, 0.017766423523426056, -0.003960883244872093, 0.023264264687895775, -0.024090295657515526, -0.01926952786743641, 0.00984465703368187, 0.029845425859093666, -6.490389932878315e-05, -0.0362640880048275, 0.03190372884273529, -0.004201244562864304, -0.014177931472659111, 0.017807047814130783, -0.034801606088876724, 0.031822480261325836, -0.036318253725767136, -0.023277806118130684, 0.005426748655736446, 0.011544113047420979, -0.015071668662130833, -0.11255679279565811, -0.012038377113640308, 0.03385370224714279, 0.013541481457650661, -0.0030485258903354406, 0.020434094592928886, 0.007671249099075794, 0.035614095628261566, 0.0007308167987503111, 0.012065459974110126, -0.01474667340517044, 0.006642096675932407, 0.0006385654560290277, -0.01954035833477974, -0.0017874755430966616, -0.009221748448908329, 0.008314469829201698, -0.008801963180303574, -0.01489562913775444, 0.03076624497771263, -0.007143131457269192, -0.006621784530580044, 0.02488924376666546, -0.003226257860660553, -0.008409259840846062, -0.021043462678790092, -0.015708118677139282, 0.005744973663240671, 0.007474897895008326, 0.011889420449733734, 0.0282475296407938, -0.010149340145289898, 0.0019398172153159976, -0.011015995405614376, 0.0035952632315456867, -0.006371267139911652, -0.04257441684603691, 0.0017113047651946545, 0.010115486569702625, -0.020583052188158035, 0.020853880792856216, -0.0037002097815275192, 0.0006224849494174123, -0.025959020480513573, -0.014367511495947838, -0.0021073929965496063, -0.0241986270993948, 0.022587191313505173, 0.014827921986579895, -0.010596209205687046, -0.02499757520854473, -0.030278751626610756, -0.04200567677617073, -0.02191011607646942, 0.02092158794403076, 0.028762105852365494, -0.001973670907318592, 0.028491277247667313, -0.02250594273209572, 0.003984580747783184, -0.0008129120687954128, -0.003368443576619029, -0.004404366947710514, 0.008808733895421028, 0.00956705678254366, 0.03165998309850693, -0.013683667406439781, -0.0015141068724915385, -0.02517361380159855, 0.0015902777668088675, -0.0064085060730576515, 0.00998684298247099, -0.017603926360607147, 0.010765478014945984, -0.033068299293518066, -0.011862337589263916, -0.0022800469305366278, -0.038511972874403, 0.020027851685881615, 0.014164389111101627, -0.013880018144845963, -0.02180178463459015, 0.01216024998575449, -0.028057949617505074, 0.022397609427571297, 0.01497687865048647, 0.022099697962403297, -0.010650374926626682, 0.028328778222203255, -0.027597539126873016, 0.017184140160679817, 0.028220446780323982, 0.009512891061604023, 0.007454585749655962, -0.00017847248818725348, -0.0034970876295119524, -0.017942462116479874, -0.021260125562548637, 0.014611258171498775, 0.01853828877210617, -0.010934745892882347, 0.018741410225629807, -0.04038069769740105, -0.00010119083890458569, 0.005599402356892824, -0.003862707642838359, 0.012092542834579945, -0.024117378517985344, 0.004346815403550863, 0.0010384623892605305, 0.0029181891586631536, 0.011212347075343132, -0.01589769870042801, 0.0059751789085567, -0.007407190278172493, 0.0060361153446137905, -0.025227779522538185, -0.018754951655864716, 0.011767547577619553, 0.0055520073510706425, 0.015951864421367645, 0.006276476662606001, -0.02375175803899765, -0.0009326695580966771, -0.005802524741739035, 0.02865377441048622, -0.028762105852365494, 0.014516468159854412, -0.027787119150161743, 0.015464372001588345, -0.021029921248555183, -0.031389154493808746, 0.013263881206512451, 0.01420501433312893, -0.016940392553806305, 0.002647359622642398, -0.019743479788303375, -0.03033291921019554, 0.017224764451384544, 0.011537342332303524, 0.026947548612952232, 0.024076754227280617, -0.014259180054068565, -0.02502465806901455, 0.020583052188158035, -0.029818342998623848, -0.022817395627498627, -0.01810496114194393, -0.021449707448482513, -0.027231918647885323, 0.009932676330208778, 0.005700963549315929, 0.05091597139835358, -0.0004248639743309468, -0.024103837087750435, -0.02459133043885231, 0.0031196188647300005, 0.013758145272731781, 0.005416592583060265, 0.017400803044438362, 0.017468510195612907, -0.01069099921733141, 0.03737448900938034, -0.00828738696873188, 0.018930990248918533, -0.006009032484143972, 0.019228903576731682, -0.027462124824523926, -0.058932527899742126, -0.010941516607999802, 0.012742534279823303, -0.023724675178527832, -0.0018602609634399414, -0.019364317879080772, 0.03241830691695213, 0.007799893151968718, -0.009404558688402176, 0.008646235801279545, 0.006709803827106953, -0.01699455827474594, 0.0017282315529882908, 0.02770587056875229, 0.006980633828788996, -0.02165282890200615, -0.012451392598450184, 0.02063721790909767, 0.012343060225248337, 0.021883033215999603, -0.018930990248918533, 0.025674648582935333, 0.00247639836743474, 0.0026879841461777687, -0.01046079397201538, 0.011361302807927132, -0.010867038741707802, 0.015274791046977043, 0.006967092398554087, 0.029412098228931427, -0.011158180423080921, 0.013588876463472843, 0.013243569061160088, 0.011828484013676643, -0.010149340145289898, 0.0245777890086174, 0.006195227615535259, -0.012126396410167217, -0.013859705999493599, 0.004113224800676107, -0.023372596129775047, -0.0261486005038023, 0.018375789746642113, 0.015207083895802498, -0.014421678148210049, -0.019012240692973137, 0.006229081656783819, 0.004482230171561241, -0.024374665692448616, -0.01966223120689392, -0.010697769932448864, -0.013169090263545513, -0.0365619994699955, 0.008950918912887573, 0.007928537204861641, 0.02868085727095604, 0.007048340979963541, -0.011693068780004978, 0.032553721219301224, -0.009269144386053085, 0.003087457735091448, -0.02107054553925991, 0.012762846425175667, -0.02432049997150898, -0.006259549874812365, 0.02346738800406456, 0.009560286067426205, -0.01348054502159357, -0.017969544976949692, -0.0015945094637572765, -0.019648689776659012, 0.01810496114194393, -0.0031145408283919096, 0.077023945748806, 0.030603747814893723, -0.006794438231736422, 0.011043078266084194, -0.02021743170917034, 0.0017485438147559762, 0.005071284715086222, 0.00942487083375454, -0.00040899505256675184, -0.022180946543812752, 0.022993436083197594, -0.01684560254216194, -0.011198804713785648, -0.012715451419353485, -0.03022458590567112, -0.004976494237780571, -0.008801963180303574, 0.02499757520854473, 0.0008137584081850946, 0.020542427897453308, 0.02769232913851738, 0.0007126204436644912, 0.006699647754430771, -0.008124888874590397, -0.03333912789821625, -0.012972739525139332, 0.034070368856191635, 0.030441250652074814, -0.00990559346973896, -0.015545620582997799, 0.011754006147384644, 0.0016529071144759655, -0.025796521455049515, -0.02881627157330513, -0.008761338889598846, 0.012681596912443638, -0.005220240913331509, -0.029032936319708824, 0.006841833703219891, 0.02274968847632408, 0.004583791363984346, 0.01551853772252798, -0.014259180054068565, -0.021354915574193, -0.0032634970266371965, -0.009221748448908329, -0.018091419711709023, -0.019729938358068466, 0.021855950355529785], "3e75e777-8fbf-4323-98b3-37de31796f7d": [0.009657206945121288, -0.00649256119504571, 0.020426034927368164, -0.02452513761818409, 0.002252769423648715, 0.02134312316775322, -0.0225520096719265, -0.029263421893119812, -0.01422874815762043, -0.05438605695962906, 0.021120797842741013, 0.02766546607017517, 0.02294107712805271, -0.008448319509625435, -0.006037491373717785, 0.020745625719428062, 0.025525595992803574, -0.002009602263569832, 0.002501147100701928, 0.0010386708891019225, -0.013978634029626846, -0.013276922516524792, -0.02663721702992916, -0.011720653623342514, -0.009018025361001492, 0.00884433463215828, 0.01802215538918972, -0.017855411395430565, -0.03220921754837036, 0.03384885936975479, 0.0045263818465173244, -0.002120764460414648, -0.01657704822719097, -0.0007399226888082922, -0.01871691830456257, 0.010546503588557243, -0.010768827982246876, 0.005349676124751568, 0.021079111844301224, -0.012213935144245625, 0.010553451254963875, 0.012269516475498676, 0.0010985941626131535, 0.001863701967522502, -0.012887855991721153, 0.021829456090927124, -0.001993970014154911, -0.00392193766310811, -0.006339713465422392, 0.017021695151925087, -0.01497909240424633, -0.008524742908775806, -0.03576640412211418, 0.008615062572062016, -0.023191193118691444, -0.013964738696813583, 0.022037886083126068, -0.00938624981790781, 0.019356099888682365, -0.0075242845341563225, 0.005926329176872969, 0.004971030168235302, -0.016549257561564445, -0.0030274302698671818, -0.0017725143115967512, -0.02995818480849266, -0.016604838892817497, -0.015715541318058968, -0.024358393624424934, -0.020620569586753845, 0.03651674836874008, 0.03145887330174446, 0.00021971882961224765, 0.014798454008996487, -0.015048569068312645, -0.014464967884123325, -0.011783182621002197, -0.02892993576824665, 0.0020426034461706877, -0.010233860462903976, 0.01169981062412262, -0.01867523230612278, -0.02968028001487255, -0.012769745662808418, 0.031764570623636246, 0.02144038863480091, 0.011352429166436195, -0.0026314151473343372, -0.0031941733323037624, 0.015243102796375751, 0.02355246990919113, 0.014006423763930798, 0.016174085438251495, 0.012505736202001572, -0.00383856613188982, 0.027582095935940742, -0.001264468883164227, 0.0066210925579071045, 0.0010551714804023504, -0.019717376679182053, -0.0072185886092484, -0.010817461647093296, -0.01614629477262497, -0.013096284121274948, -0.032042473554611206, -0.014965197071433067, 0.023427411913871765, 0.0012870486825704575, -0.006138232070952654, -0.0014893984189257026, -0.030486205592751503, 0.026859542354941368, 0.0021172906272113323, -0.0010560399387031794, 0.008351052179932594, -0.010192174464464188, 0.02602582611143589, -0.014339910820126534, -0.0028606869745999575, -0.014645606279373169, 0.001163728185929358, -0.022857706993818283, 0.04254729300737381, -0.02349688857793808, 0.016132399439811707, -0.01422874815762043, 0.007440913002938032, -0.015284787863492966, 0.018188897520303726, -0.015493216924369335, 0.01507635973393917, 0.0031906994991004467, 0.014576129615306854, 0.011769287288188934, -0.014715082943439484, 0.003987940028309822, -0.006697516422718763, 0.005999279208481312, -0.015062464401125908, -0.04943934082984924, 0.02709576115012169, 0.034432459622621536, 0.007197745610028505, -0.018008260056376457, 0.01142190583050251, 0.02003696747124195, -0.0023309302050620317, 0.020898474380373955, 0.0005649292725138366, 0.004293635953217745, 0.013846628367900848, -0.019634004682302475, -0.019272727891802788, 0.011039786040782928, 0.014256538823246956, 0.001657878514379263, -0.0016813266556710005, 0.025914663448929787, -0.031431082636117935, -0.021190274506807327, -0.013943895697593689, -0.013395032845437527, -0.013311660848557949, -0.010400603525340557, -0.009629416279494762, 0.03904568776488304, 0.00703447638079524, 0.006291079800575972, -0.009302877821028233, -0.02353857457637787, 0.007135217078030109, 0.006475192029029131, -0.02335793524980545, 0.015798913314938545, 0.007135217078030109, 0.013276922516524792, 6.17687837802805e-05, 0.0047487057745456696, -0.0003354403015691787, -0.027206923812627792, 0.026289835572242737, -0.009636363945901394, 0.00348771084100008, 0.01774425059556961, -0.029291212558746338, 0.0013851838884875178, 0.03584977611899376, 0.0363222137093544, 0.0034408143255859613, -0.01195687334984541, 0.011762339621782303, 0.013311660848557949, 0.002032182179391384, 0.003246280597522855, -0.6198398470878601, 0.010497870855033398, 0.02533106319606304, -0.018091632053256035, 0.0021607133094221354, 0.016507571563124657, 0.030819691717624664, 0.004779970273375511, -0.011262109503149986, 0.040324050933122635, 0.00633276579901576, 0.0010360655141994357, -0.009810054674744606, -0.0037308777682483196, -0.008177361451089382, -0.022593695670366287, -0.0022215049248188734, -0.02620646357536316, 0.005822114646434784, 0.007037950213998556, -0.025567281991243362, 0.019689586013555527, 0.019550634548068047, -0.008767910301685333, 0.014381595887243748, -0.007892508991062641, 0.02827685885131359, -0.024677986279129982, -0.0058255884796381, 0.021315332502126694, -0.012540473602712154, 0.01778593473136425, 0.005509471520781517, 0.01774425059556961, 0.04499286040663719, -0.008031461387872696, -0.004078259225934744, 0.010393655858933926, 0.03612768277525902, 0.04588215425610542, -0.013471456244587898, -0.007621551398187876, 0.014992987737059593, 0.0016457200981676579, -0.005888117477297783, 0.0118665536865592, 0.014590024948120117, -0.0006118257297202945, -0.015006883069872856, -0.01638251356780529, -0.0014451072784140706, -0.01820279285311699, -0.0017369077540934086, 0.00020245830819476396, 0.011810972355306149, 0.007211640942841768, 0.016396408900618553, -0.021565446630120277, 0.0006530773243866861, -0.00014329489204101264, 0.010497870855033398, 0.015104149468243122, -0.02644268423318863, -0.03434908762574196, -0.04588215425610542, 0.008719276636838913, -0.010338074527680874, -0.017105067148804665, 0.0053149377927184105, 0.0004344440530985594, 0.023719212040305138, -0.00917087309062481, -0.010497870855033398, -0.0077257659286260605, 0.003343547461554408, 0.029263421893119812, 0.018313955515623093, -0.014451072551310062, -0.021176379173994064, 0.021926723420619965, -0.00821209978312254, -0.0098308976739645, -0.020148130133748055, -0.004644491244107485, 0.011498329229652882, 0.0023309302050620317, -0.016535362228751183, -0.0034859739243984222, -0.001995706930756569, 0.0012748902663588524, 0.011262109503149986, 0.02517821453511715, -0.005794324446469545, -0.011067576706409454, 0.016729895025491714, 0.026942912489175797, -0.0008680196478962898, -0.004790391772985458, 0.00022210707538761199, -0.022482534870505333, -0.027971163392066956, -0.0273736659437418, 0.015104149468243122, -0.0013730255886912346, 0.019272727891802788, 0.04699377715587616, 0.0004159894015174359, -0.011560858227312565, 0.01942557655274868, -0.030541786924004555, -0.01432601548731327, -0.007517336867749691, -0.01796657405793667, -0.01974516734480858, 0.013714623637497425, -0.02663721702992916, 0.004026152193546295, -0.014242643490433693, 0.012783640995621681, -0.010914728045463562, 7.685816672164947e-05, -0.013158813118934631, 0.0038003541994839907, 0.0040087830275297165, 0.0030517468694597483, 0.006461296696215868, 0.005554630886763334, 0.007253326941281557, 0.008795700967311859, -0.0038316184654831886, 0.0015918759163469076, -0.034237924963235855, 0.021690504625439644, -0.0028520026244223118, 0.021787770092487335, -0.010115751065313816, 0.03960149735212326, -0.008622010238468647, 0.01015743613243103, -0.05452500656247139, -0.004370059818029404, -0.0019140723161399364, 0.014728977344930172, -0.02120416983962059, 0.0026435735635459423, -0.032931771129369736, -0.023524679243564606, 0.0059332768432796, -0.009962903335690498, -0.01158864889293909, -0.010240808129310608, -0.0031941733323037624, -0.004331848118454218, 0.0103658651933074, 0.0017577506368979812, 0.00520724942907691, 0.008031461387872696, -0.04101881384849548, -0.003145539900287986, -0.019689586013555527, -0.011206529103219509, 0.012206987477838993, -0.012804483994841576, -0.010046274401247501, -0.009539097547531128, 0.0010013272985816002, -0.0006443927995860577, 0.005467785522341728, -0.017660878598690033, -0.038128599524497986, 0.008663696236908436, -0.005679688416421413, 0.011519172228872776, 0.028026742860674858, 0.006377925164997578, 0.041074395179748535, -0.030402833595871925, 0.00800367072224617, 0.00241603865288198, -0.0012314675841480494, 0.015159730799496174, 0.013061546720564365, 0.003168119816109538, 0.0022128205746412277, 0.008670643903315067, 0.0005562446895055473, 0.028624240309000015, 0.009935112670063972, -0.010178279131650925, -0.0067079379223287106, 0.018188897520303726, 0.0035849777050316334, -0.0011376745533198118, 0.01624356210231781, -0.018188897520303726, -0.0045263818465173244, -0.03387665003538132, -0.004151209723204374, 0.00031763699371367693, 0.02195451408624649, 0.017285706475377083, 0.003373074810951948, -0.007204693276435137, -0.007169955410063267, 0.011018943041563034, -0.014951301738619804, 0.007420070003718138, -0.011810972355306149, 0.022218523547053337, 0.015145835466682911, 0.005075244698673487, -0.009865636005997658, -0.010664613917469978, -0.012081930413842201, 0.017049485817551613, 0.028568658977746964, 0.009678049944341183, 0.01620187610387802, -0.002702628495171666, 0.011053681373596191, 0.0136868329718709, 0.0005710084224119782, 0.04154683277010918, -0.0036301373038440943, 0.00448122201487422, 0.019828539341688156, 0.0008953759679570794, 0.024969786405563354, 0.006245920434594154, -0.021565446630120277, -0.005078718066215515, 0.027595991268754005, 0.02410827949643135, 0.017535820603370667, 0.045798782259225845, 0.03429350629448891, 0.04193590208888054, -0.005116930231451988, 0.03776732087135315, -0.008191256783902645, -1.0285750249749981e-05, 0.01727181114256382, 0.019161567091941833, -0.014951301738619804, 0.04785528406500816, 0.005134299397468567, 0.01340892817825079, 0.01642419956624508, -0.022454744204878807, 0.04101881384849548, 0.015256998129189014, 0.008225995115935802, -0.01914767175912857, -0.003852461464703083, 0.031431082636117935, -0.008747067302465439, 0.025734025985002518, 0.012880908325314522, 0.0075103892013430595, 0.006728780455887318, 0.005203775595873594, -0.02841581031680107, 0.012206987477838993, 0.00598191050812602, 0.0035363442730158567, -0.005332306958734989, -0.020328767597675323, -0.021885037422180176, 0.0017777250614017248, -0.019481157884001732, 0.0055164191871881485, -0.007013633381575346, 0.007239431608468294, 0.019953595474362373, -0.002504620933905244, 0.006638461258262396, -0.00589853897690773, 0.008649800904095173, -0.009031920693814754, 0.02167660929262638, -0.036488957703113556, -0.024094384163618088, 0.02027318812906742, 0.021509865298867226, -0.003056957619264722, -0.007607656065374613, -0.0002839844091795385, -0.026790065690875053, 0.023997116833925247, 0.01707727648317814, 0.005141247063875198, 0.0144371772184968, -0.007552074734121561, -0.002124238293617964, -0.004370059818029404, 0.016507571563124657, 0.025942454114556313, -0.0174107626080513, -0.003022219520062208, 0.02363584004342556, 0.007579865399748087, 0.012769745662808418, -0.012999017722904682, -0.009198663756251335, 0.03721151128411293, -0.024914205074310303, -0.018647441640496254, -0.02976365201175213, 0.003373074810951948, -0.030680738389492035, 0.012394573539495468, -0.015229207463562489, -0.007746608462184668, -0.02308003045618534, -0.012797536328434944, 0.021037427708506584, 0.005217670928686857, -0.0163408275693655, 0.019258832558989525, 0.0029319003224372864, 0.01839732751250267, -0.023621944710612297, 0.02256590500473976, 0.02152376063168049, 0.07136606425046921, 0.013916105031967163, -0.0015962182078510523, 0.019481157884001732, 0.003319230629131198, -0.01586838997900486, -0.024302814155817032, -0.010400603525340557, 0.017382971942424774, -0.004418693482875824, -0.029735861346125603, 0.006718359421938658, 0.005467785522341728, 0.001976601080968976, 0.028054533526301384, -0.00279121077619493, 0.003727403935045004, -0.01671599969267845, 0.0014077636878937483, 0.012068035081028938, 0.013665989972651005, -0.0042971097864210606, 0.03432129696011543, 0.021509865298867226, 0.020981846377253532, 0.0015241365181282163, 0.0408242791891098, 0.02035655826330185, -0.002515042433515191, -0.025720130652189255, -0.03051399625837803, 0.012408468872308731, 0.016535362228751183, 0.01670210435986519, -0.02232968620955944, 0.011018943041563034, -0.0006904208566993475, -0.015006883069872856, -0.020287083461880684, 0.008107885718345642, -0.006294553633779287, 0.027137447148561478, 0.005394835490733385, -0.0001244060113094747, 0.009949008002877235, -0.021093007177114487, -0.00013830128591507673, 0.02326066792011261, -0.02242695353925228, 0.0017994364025071263, 0.010497870855033398, -0.002139870310202241, -0.000341736595146358, 0.009379302151501179, 0.003506816690787673, -0.027957268059253693, -0.0038559352979063988, -0.00826073344796896, -0.050995610654354095, -0.04076869785785675, -0.02948574535548687, -0.02968028001487255, 0.0030048503540456295, -0.01277669332921505, -0.011130104772746563, -0.017063381150364876, 0.001992233097553253, -0.011908239684998989, -0.015201416797935963, -0.0002848528674803674, 0.019592318683862686, -0.039434753358364105, -0.028763191774487495, -0.013304713182151318, 0.021773874759674072, 0.009865636005997658, -0.015618274919688702, 0.008517795242369175, -0.005419152323156595, 0.002018286846578121, 0.006179917603731155, -0.02742924727499485, 0.0004537671629805118, -0.022760439664125443, 0.01685495302081108, -0.010324180126190186, -0.03154224529862404, -0.00021472522348631173, -0.011546962894499302, 0.00019399088341742754, 0.004314478952437639, -0.009372354485094547, -0.005919381510466337, 0.004658386576920748, 0.0038767780642956495, 0.03487710654735565, 0.011977716349065304, -0.011783182621002197, 0.02634541690349579, -0.021426493301987648, -0.0014468441950157285, -0.0181611068546772, -0.015382055193185806, -0.020954055711627007, 0.01212361641228199, 0.01013659406453371, -0.014937406405806541, -0.006409189663827419, 0.0033678640611469746, -0.007635446731001139, 0.00013623869745060802, 0.005144720897078514, 0.004401324316859245, -0.013568723574280739, -0.003675296902656555, -0.022065676748752594, 0.004088680725544691, 0.016257457435131073, 0.01960621401667595, -0.012206987477838993, -0.010914728045463562, -0.010289441794157028, 0.02954132668673992, -0.008601167239248753, 0.004453431349247694, -1.1032077964046039e-05, 0.029041098430752754, -0.0244834516197443, -0.02396932616829872, 0.0065689850598573685, -0.014284329488873482, 0.007857770659029484, -0.026762275025248528, -0.0181611068546772, 0.0038594091311097145, -0.005269777961075306, -0.0069719478487968445, 0.008281576447188854, -0.020092548802495003, -0.019578423351049423, -0.016980011016130447, 0.003289703279733658, 2.678637429198716e-05, -0.011783182621002197, 0.01774425059556961, -0.024497346952557564, -0.022954972460865974, 0.016229666769504547, 0.006860785651952028, 0.01918935775756836, -0.029096677899360657, -0.015104149468243122, -0.0270540751516819, -0.014270434156060219, -0.004727862775325775, -0.027651570737361908, -0.013742414303123951, 0.012061087414622307, 0.04985620081424713, 0.027415351942181587, 0.004821655806154013, -0.0024056171532720327, 0.024608509615063667, 0.009823950007557869, -0.001703906455077231, -0.006443927995860577, -0.025303272530436516, -0.011352429166436195, 0.013756309635937214, 0.010900832712650299, 0.002673101145774126, 0.002443829318508506, -0.017799830064177513, 0.00665930425748229, 0.0007716213003732264, 0.018828080967068672, -0.00238651130348444, -0.00617644377052784, -0.030291670933365822, -0.04796644300222397, 0.0037551946006715298, 0.03179236128926277, -0.010240808129310608, 0.005151668563485146, -0.03562745079398155, -0.007357541471719742, 0.01546542625874281, 0.006395294331014156, 0.020606674253940582, 0.017591401934623718, 0.0399627722799778, 0.010122698731720448, -0.00012527446961030364, 0.008274628780782223, -0.006211182102560997, -0.01460392028093338, -0.016729895025491714, -0.043547749519348145, -0.022996658459305763, -0.002082552295178175, 0.023330144584178925, 0.011241267435252666, -0.01900871843099594, -0.00726722227409482, 0.012255621142685413, 0.028346335515379906, -0.023482993245124817, -0.02363584004342556, 0.005811693146824837, -0.02691512182354927, -0.004536802880465984, -0.022260209545493126, -0.027721047401428223, -0.007628499064594507, -0.0049640825018286705, -0.025053158402442932, 0.014617815613746643, 0.01839732751250267, -0.02260759100317955, -0.003010061103850603, 0.02157934196293354, 0.010490923188626766, 0.04946713149547577, 0.008031461387872696, 0.02082899771630764, 0.010213017463684082, -0.0038628829643130302, -0.013610409572720528, -0.011081471107900143, 0.010678509250283241, -0.022301895543932915, 0.0004350953968241811, 0.03137550130486488, -0.029430165886878967, -0.0017299600876867771, 0.011331586167216301, -0.019995281472802162, 0.003518975106999278, -0.03637779504060745, 0.009059710428118706, 0.004575015045702457, 0.0036023466382175684, -0.04229717701673508, -0.023010553792119026, -0.008656748570501804, 0.01586838997900486, 0.003407812910154462, 0.03265386447310448, 0.008045356720685959, -0.0009492200915701687, 0.012200039811432362, 0.05391361564397812, -0.011644229292869568, 0.026595531031489372, -0.0022579801734536886, -0.011359376832842827, -0.01732739247381687, 0.002077341778203845, 0.009525202214717865, -0.02175998128950596, 0.008927705697715282, 0.02363584004342556, -0.0034112867433577776, -0.0033921808935701847, 0.0021572394762188196, 0.013540932908654213, -0.025386644527316093, -0.0027269450947642326, -0.00485639413818717, 0.027721047401428223, -0.006061808206140995, -0.013895262032747269, -0.00013309055066201836, -0.018244478851556778, 0.0066836210899055, -0.009205611422657967, -0.0096155209466815, -0.006475192029029131, 0.0007077899063006043, 0.017160648480057716, 0.0066210925579071045, 0.014478863216936588, -0.018411222845315933, -0.0017959625693038106, 0.0006001016590744257, -0.012457102537155151, 0.011234319768846035, 0.016868848353624344, 0.010268598794937134, -0.01567385531961918, -0.02471967041492462, 0.010268598794937134, -0.005137773230671883, 0.03173677995800972, 0.001337419031187892, -0.0037795112002640963, -0.009539097547531128, 0.02817959152162075, -0.010081012733280659, -0.008253785781562328, 0.008420528843998909, 0.01863354630768299, -0.02569233998656273, 0.019342204555869102, 0.007718818262219429, -0.01830006018280983, 0.021454283967614174, -0.007475650869309902, -0.0237331073731184, -0.03748941794037819, -0.005974962841719389, -0.01320049911737442, 0.015659959986805916, -0.0037030873354524374, 0.008573376573622227, 0.0067704664543271065, -0.001584059908054769, 0.004759127274155617, -0.011171790771186352, -0.006051386706531048, 0.010734089650213718, 0.004839024972170591, 0.008246838115155697, -0.024413974955677986, 0.004627122078090906, -0.017938783392310143, 0.03023608960211277, -0.025122633203864098, -0.0437144935131073, -0.02049551159143448, -0.03785069286823273, -0.009949008002877235, 0.005370518658310175, -0.005731795448809862, 0.004241528920829296, -0.019105985760688782, -0.008517795242369175, 0.012297307141125202, -0.012220882810652256, -0.00033696010359562933, 0.012755850329995155, -0.030819691717624664, 0.008990234695374966, 0.024677986279129982, -0.015979550778865814, -0.05552546679973602, -0.002548043616116047, -0.02804063819348812, -0.03551628813147545, -0.0010873042047023773, -0.0002340483188163489, 0.0400739349424839, 0.015298683196306229, -0.03609989210963249, -0.008455267176032066, -0.021926723420619965, -0.0511067733168602, -0.0012557843001559377, -0.03954591602087021, 0.033209677785634995, 0.03276502713561058, 0.04040742293000221, 0.012422364205121994, 0.022315790876746178, -0.0007833453710190952, 0.01235983520746231, -0.0341823436319828, 0.001092514954507351, -0.017994364723563194, -0.037739530205726624, 0.008288524113595486, -0.01736907847225666, -0.054274894297122955, -0.0032080686651170254, 0.0050127157010138035, -0.01074103731662035, 0.006742675788700581, 0.005488628521561623, -0.014687292277812958, 0.0044256411492824554, -0.0006943288608454168, 0.003914989996701479, 0.03523838520050049, 0.019620109349489212, 0.005846431478857994, -0.0319313108921051, 0.003364390227943659, 0.007517336867749691, -0.002075604861602187, -0.01675768569111824, 0.010692404583096504, 0.015368159860372543, -0.007850822992622852, 0.019772958010435104, 0.01638251356780529, -0.006881628651171923, 0.010317232459783554, -0.005578947719186544, 0.020231502130627632, 0.014207905158400536, 0.019495053216814995, 0.02339962124824524, 0.001759487553499639, 0.016257457435131073, -0.009268139488995075, 0.0028294227086007595, 0.015006883069872856, 0.01181792002171278, 0.022121258080005646, -0.030680738389492035, -0.006110441405326128, -0.022816020995378494, 0.011991610750555992, 0.0004693993250839412, -0.006079177372157574, -0.011720653623342514, -0.008225995115935802, -0.03660012036561966, -0.0008558612898923457, 0.018967032432556152, -0.01229035947471857, -0.016729895025491714, -0.015590484254062176, -0.007232483942061663, -0.0005649292725138366, 0.0031733305659145117, -0.007295012474060059, -0.004178999923169613, -0.015131940133869648, -0.012741954997181892, 0.007211640942841768, -0.03754499927163124, -0.0009370617335662246, 0.023608049377799034, -0.026942912489175797, -0.000866282731294632, 0.2106521725654602, 0.008774857968091965, 0.014055057428777218, 0.02845749631524086, 0.035599660128355026, -0.012630793265998363, 0.0019574949983507395, 0.013617357239127159, -0.004522908013314009, 0.0064057158306241035, 0.009698892943561077, 0.006051386706531048, -0.03051399625837803, -0.004370059818029404, 0.02185724675655365, -0.015159730799496174, -0.03762837126851082, -0.007753556128591299, -0.01563216932117939, 0.01834174618124962, 0.015534902922809124, -0.004689651075750589, -0.016215771436691284, -0.009837845340371132, 0.030764110386371613, 0.012019401416182518, 0.0014946091687306762, 0.013617357239127159, 0.02592855878174305, 0.01656315289437771, -0.002528937766328454, 0.0012592581333592534, 0.016924429684877396, -0.009344563819468021, -0.01909209042787552, -0.0032810186967253685, 0.0031785413157194853, -0.02485862374305725, -0.008031461387872696, 0.000770318612921983, -0.0008093990036286414, -0.02171829529106617, -0.0021450810600072145, -0.027443142607808113, 0.01556269358843565, -0.013923052698373795, -0.028568658977746964, 0.008420528843998909, -0.0015319526428356767, 0.008983287028968334, -0.026831751689314842, 0.009184768423438072, 0.01867523230612278, 0.002780789276584983, 0.003623189637437463, 0.024358393624424934, -0.008448319509625435, 0.0069198403507471085, -0.012429311871528625, -0.017118962481617928, -0.01357567124068737, 0.0020460772793740034, -0.009782264940440655, 0.011991610750555992, -0.023052239790558815, 0.031097596511244774, -0.002671364229172468, 0.03340420871973038, 0.005346202291548252, 0.007447860669344664, -0.0027755785267800093, 0.01008796039968729, -0.03746162727475166, 0.0031837518326938152, -0.008726224303245544, 0.002185029909014702, 0.015576588921248913, 0.029652489349246025, 0.03746162727475166, 0.00924034882336855, 0.011519172228872776, 0.009823950007557869, -0.015840599313378334, -0.016229666769504547, 0.020384348928928375, -0.00483207730576396, 0.02915225923061371, -0.018967032432556152, 0.004172052256762981, -0.015701645985245705, -0.00383856613188982, 0.026303730905056, 0.0017725143115967512, -0.02045382559299469, -0.004290162120014429, -0.0030187456868588924, 0.024677986279129982, 0.004602805711328983, -0.01369378063827753, -0.029180049896240234, -0.008580324240028858, 0.0608612485229969, 0.016035132110118866, 0.023427411913871765, -0.0002333969750907272, 0.0037899326998740435, -0.0075729177333414555, 0.015215312130749226, 0.016062922775745392, -0.014464967884123325, 0.007440913002938032, -0.04488169774413109, 0.01600734144449234, -0.009497411549091339, -0.003364390227943659, 0.013603461906313896, 0.028249068185687065, 0.0075242845341563225, 0.025914663448929787, -0.010303337126970291, 0.021968409419059753, 0.0046479650773108006, 0.016035132110118866, 0.009518254548311234, -0.035266175866127014, -0.019078195095062256, 0.004554172046482563, 0.009733631275594234, -0.03421013429760933, -0.02813790552318096, 0.00415468355640769, -0.01142190583050251, 0.020815102383494377, -0.0067565711215138435, 0.001410369062796235, -0.02569233998656273, 0.001584059908054769, 0.001903650932945311, 0.007315855473279953, -0.001659615314565599, 0.0025845186319202185, 0.01282532699406147, 0.002473356667906046, 0.012519631534814835, 0.004317952785640955, 0.002502884017303586, -0.013936948031187057, 0.00996985100209713, -0.027234714478254318, -0.023580260574817657, 0.007955037988722324, -0.0025341485161334276, -0.014520549215376377, -0.011949925683438778, 0.028540868312120438, -0.029569117352366447, -0.0369613952934742, -0.03270944580435753, 0.016632629558444023, 0.023385725915431976, -0.05808219686150551, 0.01980074867606163, 0.03654453903436661, -0.001628351048566401, -0.02892993576824665, -0.004707020241767168, -0.1774147003889084, 0.008580324240028858, 0.006263289600610733, -0.005235040094703436, -0.022399162873625755, 0.026373207569122314, 0.006961526349186897, 0.0005232434486970305, -0.015256998129189014, 0.0011897818185389042, 0.028679821640253067, -0.021093007177114487, -0.04165799543261528, -0.03270944580435753, 0.004026152193546295, -0.015479321591556072, -0.007920299656689167, 0.0255533866584301, 0.040185097604990005, 0.006159075070172548, 0.01154001522809267, -0.022162942215800285, -0.014895721338689327, 0.008816543966531754, 0.013867471367120743, 0.011081471107900143, -0.013165760785341263, 0.03065294772386551, -0.00863590557128191, -0.036572329699993134, 0.010553451254963875, -0.01121347676962614, 0.018008260056376457, 0.008462214842438698, -0.004724388942122459, -0.009101396426558495, -0.005693583749234676, -0.016215771436691284, -0.01497909240424633, 0.024733565747737885, 0.03562745079398155, 0.009844793006777763, 0.01568775065243244, 0.016549257561564445, 0.011401062831282616, 0.017063381150364876, 0.03760058060288429, -0.007955037988722324, 0.02578960731625557, -0.007628499064594507, 0.003079537535086274, -0.02256590500473976, -0.003374811727553606, 0.005419152323156595, 0.00976142194122076, 0.0259841401129961, 0.006885102484375238, 0.022260209545493126, 0.007149112410843372, -0.011852658353745937, 0.02027318812906742, -0.02134312316775322, 0.007996723055839539, -0.028054533526301384, -0.014173167757689953, -0.0429641492664814, -6.659955397481099e-05, 0.018369536846876144, -0.007607656065374613, 0.016535362228751183, 0.005224618595093489, 0.016590943560004234, 0.0025497805327177048, -0.005631054751574993, 0.023802584037184715, 0.01357567124068737, -0.041963692754507065, 0.004401324316859245, 0.02284381166100502, -0.01074103731662035, 0.02424723282456398, 0.014312120154500008, 0.011859606020152569, -0.005697057582437992, -0.002193714492022991, -0.009747526608407497, 0.00331228319555521, -0.0018445960013195872, 0.0015736384084448218, 0.018230583518743515, 0.03240375220775604, -0.00992121733725071, 0.0052628302946686745, 0.0023778267204761505, 0.013499246910214424, 0.010921675711870193, 0.01732739247381687, 0.007204693276435137, 0.0016457200981676579, -0.005634528584778309, -0.0022058729082345963, 0.0163408275693655, -0.03843429312109947, 0.012554368935525417, 0.022816020995378494, 0.017674773931503296, 0.017813725396990776, -0.00120801932644099, 0.03476594388484955, -0.025108737871050835, -0.027179133147001266, 0.014152324758470058, 0.02774883806705475, -0.0008549928315915167, -0.032459333539009094, 0.039990562945604324, -0.01563216932117939, -0.016451990231871605, 0.010977257043123245, -0.02634541690349579, 0.03318188712000847, -0.04468716308474541, -0.013506194576621056, -0.006596775725483894, -0.0014537917450070381, -0.022899391129612923, -0.10988373309373856, -0.0105812419205904, 0.03412676230072975, 0.019911911338567734, -0.011713705956935883, 0.011859606020152569, 0.004845972638577223, 0.036572329699993134, 0.010393655858933926, 0.012582159601151943, -0.012922593392431736, 0.004870289471000433, 0.001439896528609097, -0.01652146689593792, 0.014673396944999695, -0.0077605037949979305, -0.001861965167336166, -0.006864259485155344, -0.013332503847777843, 0.029708070680499077, -0.005672740750014782, -0.001995706930756569, 0.02687343768775463, -0.00036605331115424633, -0.012971227057278156, -0.010393655858933926, -0.013040703721344471, 0.0144371772184968, 0.007829979993402958, 0.014576129615306854, 0.01179707795381546, -0.01567385531961918, 0.01298512239009142, -0.02387206070125103, -0.004331848118454218, -0.003977518994361162, -0.032876189798116684, -0.01432601548731327, 0.008781805634498596, -0.01707727648317814, 0.014659501612186432, -0.005241987761110067, 0.006982369348406792, -0.029457954689860344, -0.014895721338689327, -0.0006556826992891729, -0.030402833595871925, 0.009817002341151237, 0.016174085438251495, -0.004463852848857641, -0.03357095271348953, -0.03671128302812576, -0.03126433864235878, -0.026095302775502205, 0.014728977344930172, 0.02353857457637787, 0.009101396426558495, 0.016632629558444023, -0.01909209042787552, 0.0018810711335390806, 0.006343187298625708, -0.0019001770997419953, -0.009156977757811546, 0.010886937379837036, 0.005287147127091885, 0.018411222845315933, -0.006273710634559393, -0.005175984930247068, -0.010650718584656715, 0.005481680855154991, -0.013263028115034103, 0.004616701044142246, -0.023066135123372078, 0.0038906733971089125, -0.026484370231628418, 0.00013938684423919767, 0.004363112151622772, -0.026109198108315468, 0.021634923294186592, 0.01727181114256382, -0.008371895179152489, -0.025734025985002518, -0.00010405162902316079, -0.03301514312624931, 0.01568775065243244, 0.01137327216565609, 0.020439930260181427, -0.013144917786121368, 0.04096323251724243, -0.040740907192230225, 0.010226912796497345, 0.033487580716609955, 0.0144371772184968, 0.009733631275594234, 0.00404699519276619, 0.01507635973393917, -0.024233337491750717, -0.03384885936975479, 0.01652146689593792, 0.013137970119714737, 0.0038177233655005693, 0.002733892761170864, -0.04849446564912796, 0.0014181851875036955, 0.012165302410721779, 0.004707020241767168, 0.002414301736280322, -0.004905027337372303, 0.017897097393870354, -3.034160727111157e-05, 0.016299141570925713, 0.010025431402027607, -0.013117127120494843, 0.005662319250404835, -0.010428394190967083, 0.009115291759371758, -0.02915225923061371, -0.008809596300125122, 0.006937209516763687, 0.006641935091465712, 0.011484433896839619, 0.001934915198944509, -0.0020252345129847527, 0.015118044801056385, -0.0007355804555118084, 0.032125845551490784, -0.028985517099499702, 0.017202334478497505, -0.023427411913871765, 0.018216688185930252, -0.027109656482934952, -0.036572329699993134, 0.011449695564806461, 0.010192174464464188, -0.028165696188807487, 0.005276725627481937, -0.018980927765369415, -0.0318201519548893, 0.014339910820126534, 0.01497909240424633, 0.025470014661550522, 0.01750802993774414, -0.02317729778587818, -0.026595531031489372, 0.00992121733725071, -0.021704399958252907, -0.026887333020567894, -0.01303375605493784, -0.022037886083126068, -0.026734484359622, 0.013763257302343845, 0.0014911353355273604, 0.04540971666574478, 0.005554630886763334, -0.023149507120251656, -0.02597024478018284, 0.001774251228198409, -0.0030760637018829584, 0.02087068371474743, 0.018564069643616676, 0.017396867275238037, -0.013005965389311314, 0.04199148342013359, -0.004342269618064165, 0.010595137253403664, -0.010900832712650299, 0.024830833077430725, -0.025775711983442307, -0.05369129404425621, -0.020620569586753845, 0.010734089650213718, -0.020426034927368164, 0.003475552424788475, -0.02901330776512623, 0.022524219006299973, 0.027498723939061165, 0.004071311559528112, 0.00842747651040554, 0.007364488672465086, -0.02359415590763092, -0.008205152116715908, 0.02879098244011402, 0.011609491892158985, -0.017021695151925087, -0.01020606979727745, 0.012846169993281364, 0.007989775389432907, 0.013659042306244373, -0.016465885564684868, 0.02189893275499344, 0.006562037393450737, 0.004474274348467588, -0.003925411496311426, 0.014207905158400536, -0.02181556075811386, 0.010935571044683456, -0.0004854657163377851, 0.015743331983685493, -0.009928165003657341, 0.020398244261741638, 0.010233860462903976, 0.008566428907215595, -0.008608114905655384, 0.021648818626999855, 0.008246838115155697, -0.010178279131650925, -0.013485351577401161, 0.015798913314938545, -0.03145887330174446, -0.016368618234992027, 0.024330604821443558, 0.006718359421938658, 0.003289703279733658, -0.003036114852875471, 0.00547473318874836, 0.0035606608726084232, -0.0355718694627285, -0.018828080967068672, 0.0031629090663045645, -0.024552928283810616, -0.037934064865112305, 0.005328833125531673, 0.008677591569721699, 0.021495969966053963, 0.004825129639357328, -0.027929477393627167, 0.025108737871050835, -0.011227372102439404, 0.003873304231092334, -0.016674313694238663, 0.012151407077908516, -0.03254270553588867, -0.007475650869309902, 0.01224172580987215, 0.002759946510195732, -0.014728977344930172, -0.020287083461880684, -0.018188897520303726, -0.019536739215254784, 0.02100963704288006, -0.0068086786195635796, 0.07914741337299347, 0.041630204766988754, -0.008524742908775806, 1.2870757927885279e-05, -0.0319313108921051, -0.000850650598295033, -1.1208482646907214e-05, 0.01802215538918972, -0.012338993139564991, -0.024261128157377243, 0.013242185115814209, -0.023413516581058502, -0.013110179454088211, -0.0049988203682005405, -0.01340892817825079, -0.0050509278662502766, -0.005658845417201519, 0.01778593473136425, -0.010699352249503136, 0.02733197994530201, 0.028707612305879593, -0.010609032586216927, 0.020398244261741638, -0.013506194576621056, -0.03960149735212326, -0.016549257561564445, 0.02288549579679966, 0.02592855878174305, -0.0013018123572692275, -0.021509865298867226, 0.007406174670904875, 0.01298512239009142, -0.022829916328191757, -0.017535820603370667, -0.02915225923061371, 0.013589566573500633, -0.010261651128530502, -0.030736319720745087, 0.011456643231213093, 0.026248149573802948, 0.0023222456220537424, 0.011032838374376297, -0.0057040052488446236, -0.017535820603370667, -0.017396867275238037, -0.004720915108919144, -0.016729895025491714, -0.017758144065737724, 0.022774334996938705], "c1efcfe9-dfd0-4fa7-adce-4c600f051965": [0.003838310018181801, -0.017101651057600975, 0.0218961238861084, -0.029668359085917473, -0.00518718222156167, 0.01368678454309702, -0.014055590145289898, -0.02953176572918892, -0.010415342636406422, -0.04043201729655266, 0.01602255366742611, 0.03428525850176811, 0.02106289565563202, -0.011911054141819477, -0.0018730543088167906, 0.009056225419044495, 0.02994154952466488, -0.0035924394614994526, 0.006474586669355631, -0.0014333901926875114, -0.016746506094932556, -0.011296378448605537, -0.02073507010936737, 0.0006099805468693376, -0.018412960693240166, 0.00822299811989069, 0.008714739233255386, -0.00909037422388792, -0.015394218266010284, 0.03469504415988922, 0.0013317979173734784, 0.0023323537316173315, -0.016145488247275352, 0.0012344742426648736, -0.022661054506897926, 0.01732020266354084, -0.00018792436458170414, -0.0037222043611109257, 0.0062184720300138, -0.014151206240057945, 0.009909942746162415, 0.024368487298488617, -0.00559696601703763, -0.0014547330792993307, -0.01818074844777584, 0.022237610071897507, 0.0020557495299726725, 0.00023498550581280142, -0.003138262312859297, 0.008776206523180008, -0.02104923687875271, -0.004948141518980265, -0.021240469068288803, 0.0185905322432518, -0.020543836057186127, -0.025092439725995064, 0.019068613648414612, -0.012614516541361809, 0.02283862605690956, -0.00950698833912611, -0.003606098936870694, -0.0016357210697606206, -0.016978716477751732, -0.0033585212659090757, -0.009602604433894157, -0.02413627691566944, -0.0033055907115340233, -0.013727763667702675, -0.024395806714892387, -0.021267788484692574, 0.032318297773599625, 0.04209847375750542, 0.0032526603899896145, 0.0021103874314576387, -0.01412388775497675, -0.005361340474337339, -0.007321473676711321, -0.01942376047372818, 0.0007935296162031591, -0.005149618722498417, 0.004985705018043518, -0.020434560254216194, -0.025980304926633835, -0.014847839251160622, 0.017907559871673584, 0.022906923666596413, 0.01897299848496914, -0.008769377134740353, -0.0026584735605865717, 0.008414231240749359, 0.016978716477751732, 0.0004618606762960553, 0.014151206240057945, 0.010060196742415428, -0.002007941482588649, 0.022715691477060318, 0.004408592823892832, 0.0004896064638160169, 0.004408592823892832, -0.013727763667702675, -0.004866184666752815, 0.003968074917793274, -0.029750317335128784, -0.01204764936119318, -0.03406670689582825, -0.006368726026266813, 0.015708385035395622, -0.0008938413229770958, -0.0025474904105067253, 0.007157559972256422, -0.035705842077732086, 0.029231257736682892, -0.008830844424664974, 0.00311948056332767, 0.01355019025504589, -0.024354828521609306, 0.02486022748053074, -0.019533036276698112, -0.0127033032476902, -0.005945282522588968, 0.008052255026996136, -0.010237769223749638, 0.037836719304323196, -0.00825031753629446, 0.018426619470119476, -0.0009672609157860279, 0.017074331641197205, -0.010401682928204536, 0.02028430625796318, -0.012115946039557457, 0.015435196459293365, -0.010934402234852314, 0.02104923687875271, 0.0160771906375885, -0.017074331641197205, 0.004278827458620071, -0.004934482276439667, 0.0005391220329329371, -0.013017470948398113, -0.04054129496216774, 0.03641613572835922, 0.036115627735853195, 0.0005126568139530718, -0.011364676058292389, 0.010859275236725807, 0.02955908328294754, -0.005098395515233278, 0.028111180290579796, -0.005275968927890062, 0.0025867612566798925, 0.005398903973400593, -0.012744281440973282, -0.01439707726240158, 0.015066390857100487, 0.007942979224026203, 0.006522395182400942, 0.0007499900530092418, 0.021718550473451614, -0.02664961852133274, -0.019505716860294342, -0.008789866231381893, -0.01032655593007803, -0.011494440957903862, -0.013024300336837769, -0.005945282522588968, 0.03474968299269676, 0.012860387563705444, 0.0012541096657514572, -0.0012105702189728618, -0.005750635173171759, 0.0062935990281403065, 0.023794788867235184, -0.020461879670619965, 0.005467201117426157, 0.010340215638279915, 0.0016246227314695716, 0.008093233220279217, -0.004036372061818838, -0.0005404026014730334, -0.026485703885555267, 0.022934243083000183, -0.002637984463945031, -0.003035816363990307, 0.025884687900543213, -0.02528367191553116, -0.013290660455822945, 0.023958703503012657, 0.027209656313061714, 0.008967439644038677, -0.014438055455684662, 0.008953779935836792, 0.00996458064764738, 0.004254923667758703, 0.00217014760710299, -0.6246200799942017, 0.006286769174039364, 0.01900031790137291, -0.02077604830265045, 0.0014675388811156154, 0.013625317253172398, 0.030542565509676933, 0.005747220478951931, -0.014656607061624527, 0.03939389809966087, 0.019655970856547356, 0.004890088923275471, -0.00993726123124361, -0.011248569935560226, -0.007089262828230858, -0.022196631878614426, -0.010237769223749638, -0.0279199481010437, 0.006419948767870665, 0.009363563731312752, -0.014219503849744797, 0.026034941896796227, 0.012798919342458248, -0.014752223156392574, 0.01778462529182434, -0.01264183595776558, 0.02536562830209732, -0.028630239889025688, 0.0024774856865406036, 0.018003176897764206, -0.012880876660346985, 0.008161530829966068, 0.009377223439514637, 0.012512071058154106, 0.04769885540008545, -0.008127382025122643, -0.006027239374816418, 0.016227444633841515, 0.02323475107550621, 0.06053875386714935, -0.020967280492186546, -0.014137547463178635, 0.016350381076335907, 0.0039885640144348145, -0.0057677095755934715, 0.004685197025537491, 0.00822982843965292, 0.0023152795620262623, -0.009629923850297928, -0.010872934944927692, 0.0023101570550352335, -0.01895933784544468, 0.005327191669493914, -0.0014444885309785604, 0.004623729269951582, 0.0028240946121513844, 0.022674713283777237, -0.03046060912311077, 0.0026089579332619905, 0.005996505729854107, 0.009718709625303745, 0.008824015036225319, -0.026390088722109795, -0.024354828521609306, -0.028930747881531715, 0.005921378266066313, 0.0077517470344901085, -0.037317659705877304, 0.005118884611874819, -0.008981098420917988, 0.03253684937953949, -0.0001613524364074692, -0.018453938886523247, -0.02114485390484333, -0.0006065656780265272, 0.014711244963109493, 0.024163594469428062, -0.015080050565302372, -0.0177299864590168, 0.017866581678390503, -0.0020250158850103617, -0.012669154442846775, -0.02233322709798813, -0.006590692326426506, 0.012505240738391876, -0.0011030018795281649, -0.010504129342734814, -0.013953144662082195, 0.001616939320228994, -0.0005527815083041787, 0.010026047937572002, 0.031471408903598785, -0.012628176249563694, -0.026089580729603767, -0.00847569853067398, 0.02611689828336239, 0.004678367171436548, 0.009868964552879333, -0.0002770310384221375, -0.021882465109229088, -0.018221726641058922, -0.02069409005343914, 0.022087356075644493, 0.00948649924248457, 0.029668359085917473, 0.03425794094800949, -0.017033353447914124, -0.012389135546982288, 0.02785165049135685, -0.032345615327358246, -0.005846251267939806, 0.004394933115690947, -0.019533036276698112, -0.016678208485245705, 0.025420265272259712, -0.028056543320417404, 0.010770488530397415, -0.007246346678584814, 0.0265949796885252, -0.019983798265457153, -0.00730098458006978, -0.00824348721653223, 0.012238881550729275, -0.0020250158850103617, 0.01348872296512127, 0.0080044474452734, 0.009138182736933231, 0.004531527869403362, 0.010012388229370117, 0.01012166403234005, -1.7874692275654525e-05, -0.033083226531744, 0.014588309451937675, -0.0009425031603313982, 0.01766168884932995, -0.0015793757047504187, 0.047562260180711746, -0.015066390857100487, 0.008543996140360832, -0.046278271824121475, -0.0002556881227064878, -0.005405733827501535, 0.01140565425157547, -0.02286594547331333, 0.0034951157867908478, -0.034476492553949356, -0.031963150948286057, 0.0103538753464818, -0.011391994543373585, -0.00622871657833457, -0.0011849586153402925, -0.010217280127108097, -0.005002779420465231, 0.012518900446593761, -0.00402271281927824, 0.002245274605229497, 0.004101254511624575, -0.04212579131126404, -0.0007841387414373457, -0.013618487864732742, 0.000949332898017019, 0.013946314342319965, -0.023466963320970535, 0.0038587991148233414, -0.014424395747482777, 0.002130876760929823, 0.0018474427051842213, 0.00035792068229056895, -0.01540787797421217, -0.03469504415988922, 0.011549078859388828, -0.0015418122056871653, 0.008612292818725109, 0.029231257736682892, 0.009179160930216312, 0.029367851093411446, -0.021759528666734695, 0.00444274116307497, 0.0030955765396356583, 0.0015068098437041044, 0.006303843576461077, 0.010565596632659435, -0.004391518421471119, 0.003797331592068076, 0.012211562134325504, 0.011132464744150639, 0.01898665726184845, 0.02155463770031929, -0.026376428082585335, -0.0012353279162198305, 0.03423061966896057, 0.0038451396394521, 0.0034063293132930994, 0.013946314342319965, -0.0220327191054821, -0.006839977577328682, -0.018467597663402557, 0.004097839817404747, 0.001435951329767704, 0.0312255397439003, 0.00804542563855648, 0.0030545981135219336, -0.0005450980388559401, -0.0064233639277517796, 0.004821791313588619, -0.015230304561555386, 0.01644599623978138, -0.01457464974373579, 0.0223605465143919, 0.016678208485245705, -0.00022794233518652618, -0.0014743686188012362, 0.002615787787362933, -0.016159148886799812, 0.013393105939030647, 0.03428525850176811, 0.009739198721945286, 0.021882465109229088, -0.0056823380291461945, 0.01540787797421217, 0.013837038539350033, -0.006645330227911472, 0.047534942626953125, 0.0020147711038589478, -0.006273109931498766, 0.024190913885831833, -0.004821791313588619, 0.02615787647664547, 0.0052998727187514305, -0.02835705131292343, 0.0014052175683900714, 0.018836403265595436, 0.012648665346205235, 0.013591168448328972, 0.02914929948747158, 0.03207242488861084, 0.03592439368367195, -0.011911054141819477, 0.026676936075091362, -0.007150730583816767, -0.013379447162151337, 0.007854192517697811, 0.013454574160277843, -0.005200841464102268, 0.05149618536233902, 0.008769377134740353, 0.031881194561719894, -0.005993090569972992, -0.023084497079253197, 0.03726302459836006, 0.02319377288222313, 0.0017270686803385615, -0.0220327191054821, -0.011262229643762112, 0.021827826276421547, -0.01053144782781601, 0.019956478849053383, 0.013557019643485546, 0.008059084415435791, 0.00911769364029169, 0.0034865785855799913, -0.020830685272812843, 0.010674872435629368, 0.007130241021513939, 0.017415819689631462, -0.0004134122864343226, -0.01651429384946823, -0.019314484670758247, 0.009472839534282684, -0.02710038051009178, -0.0024347996804863214, -0.0112144211307168, 0.00728049548342824, 0.01771632768213749, -0.007499046623706818, 0.0070960926823318005, -0.003937341272830963, 0.009827985428273678, -0.0026721330359578133, 0.011747140437364578, -0.031362134963274, -0.025215374305844307, 0.016582591459155083, 0.01436975784599781, 0.0017689007800072432, -0.014888817444443703, -0.013044790364801884, -0.02277033030986786, 0.024996822699904442, 0.0224288422614336, -0.002813850063830614, 0.007492217235267162, -0.008646441623568535, 0.0004351820389274508, -0.006727287080138922, 0.014137547463178635, 0.035186782479286194, -0.015284942463040352, -0.006406289525330067, 0.01141931302845478, 0.007867852225899696, 0.01603621244430542, -0.014383417554199696, -0.017019694671034813, 0.02109021507203579, -0.006495076231658459, -0.023507941514253616, -0.023344026878476143, -0.006775095127522945, -0.018358321860432625, 0.004821791313588619, -0.017975857481360435, -0.004589580465108156, -0.021459020674228668, -0.010586085729300976, 0.01161054614931345, -0.005088150966912508, -0.02238786406815052, 0.014642947353422642, 0.01947839744389057, 0.00948649924248457, -0.03761816769838333, -0.0009740906534716487, 0.01945107989013195, 0.07605590671300888, 0.004951556213200092, 0.0033721807412803173, 0.02027064748108387, 0.0018832988571375608, -0.024723634123802185, -0.02745552733540535, -0.00825031753629446, 0.01854955404996872, 0.00030840514227747917, -0.02697744593024254, 0.023822108283638954, 0.00758783333003521, -0.0040022237226367, 0.01243011374026537, -0.014260482043027878, -0.005798443220555782, -0.023972362279891968, -0.0047295899130403996, 0.00622871657833457, 0.0124369440600276, -0.004633973818272352, 0.03297394886612892, 0.017019694671034813, 0.016965055838227272, 0.0024826079607009888, 0.04065056890249252, 0.013516041450202465, 0.003035816363990307, -0.02906734310090542, -0.033165182918310165, 0.010681702755391598, 0.008503017947077751, 0.0020659943111240864, -0.028193136677145958, 0.00804542563855648, -0.010155812837183475, -0.011002699844539165, -0.02077604830265045, 0.00410466967150569, 0.007068773731589317, 0.02912198193371296, 0.009226969443261623, 0.009985069744288921, 0.012341327033936977, -0.03037865273654461, 0.009308925829827785, 0.02029796689748764, -0.02737356908619404, -0.00025696869124658406, 0.011774459853768349, 0.004630559124052525, -0.0185905322432518, 0.017852921038866043, 0.009315756149590015, -0.02658132091164589, -0.006430193781852722, -0.014383417554199696, -0.04982973262667656, -0.03218170255422592, -0.03666200488805771, -0.018481256440281868, -0.0016271838685497642, -0.004056861158460379, -0.007526365574449301, -0.026499364525079727, 0.01902763545513153, 0.013290660455822945, -0.020175030454993248, -0.009978239424526691, 0.0143560990691185, -0.04808131977915764, -0.03250952810049057, 0.0022008814848959446, 0.0232210922986269, 0.013700444251298904, -0.02072140946984291, 0.017142629250884056, -0.011330527253448963, 0.00884450413286686, 0.010907083749771118, -0.03005082532763481, 0.0010475103044882417, -0.030542565509676933, -0.003143384587019682, -0.004623729269951582, -0.012928684242069721, 0.0003244123072363436, -0.0041183289140462875, 0.007970298640429974, -0.010080685839056969, -0.004026127513498068, 0.01476588286459446, -0.0012652080040425062, -0.009561626240611076, 0.023740151897072792, 0.01099587045609951, -0.0031689961906522512, 0.025133417919278145, -0.0338754765689373, -0.004565676674246788, -0.010046537034213543, -0.014738563448190689, -0.023057177662849426, 0.012136435136198997, 0.011303207837045193, -0.020052095875144005, -0.006075047422200441, -0.001871346845291555, 0.004951556213200092, 0.01037436444312334, 0.006518980022519827, 0.0013275293167680502, 0.005675508175045252, 0.00654629897326231, -0.02535196952521801, 0.002089898334816098, 0.01204764936119318, 0.025515882298350334, -0.001231913105584681, -0.004394933115690947, -0.009998729452490807, 0.020830685272812843, -0.0007935296162031591, -0.0029931303579360247, -0.006706797517836094, 0.025584179908037186, -0.028411688283085823, -0.011282718740403652, 0.001294234418310225, -0.01986086368560791, 0.00825031753629446, -0.011050508357584476, -0.016992375254631042, -0.01033338624984026, -0.002007941482588649, -0.0018167089438065886, 0.01012849435210228, -0.015981575474143028, -0.025966644287109375, -0.02195076085627079, -0.004640803672373295, -0.00589405931532383, -0.0056072105653584, 0.015954256057739258, -0.026431066915392876, -0.0076902792789042, 0.012751111760735512, 0.005508179776370525, 0.01569472625851631, -0.020830685272812843, -0.006430193781852722, -0.027619440108537674, -0.0026482290122658014, -0.008079574443399906, -0.023316707462072372, -0.01202032994478941, 0.011139294132590294, 0.048354510217905045, 0.02237420529127121, -0.0018662245711311698, 0.009534306824207306, 0.026034941896796227, 0.012368646450340748, -0.004261753521859646, -0.017443137243390083, -0.015831321477890015, -0.0029931303579360247, 0.023753810673952103, 0.004886673763394356, 0.008270806632936, 0.007007305976003408, -0.013748252764344215, 0.004278827458620071, -0.01037436444312334, 0.019259847700595856, -0.007089262828230858, -0.012368646450340748, -0.03846505656838417, -0.04067789018154144, 0.012716962955892086, 0.05023951455950737, -0.016978716477751732, 0.0008362154476344585, -0.02912198193371296, 0.005016438663005829, 0.007266835775226355, 0.008448380045592785, 0.04092375934123993, 0.01777096465229988, 0.034421853721141815, 0.00518718222156167, 0.003141677239909768, 0.009752858430147171, -0.008421060629189014, -0.007123411633074284, -0.01118027325719595, -0.037782084196805954, -0.014861498959362507, 0.008072744123637676, 0.02958640269935131, 0.013236022554337978, -0.020912641659379005, 0.0003886545018758625, 0.01309259794652462, 0.01777096465229988, -0.022988881915807724, -0.0282477755099535, 0.00820250902324915, -0.016172807663679123, -0.01542153675109148, -0.0160771906375885, -0.02876683510839939, -0.0021052651572972536, -0.007683449424803257, -0.015039072372019291, 0.01771632768213749, 0.007635641377419233, -0.022182973101735115, -0.005887229926884174, 0.016295742243528366, 0.018085133284330368, 0.03474968299269676, 0.0011209299555048347, 0.01812611147761345, 0.008646441623568535, -0.00030093512032181025, -0.013222362846136093, -0.02155463770031929, 0.010435831733047962, -0.013345298357307911, 0.004958386067301035, 0.02873951569199562, -0.012184243649244308, -0.00824348721653223, 0.01729288324713707, -0.021404383704066277, 0.00654629897326231, -0.03556925058364868, -0.001751826494000852, 0.004087595269083977, 0.006163834128528833, -0.03843773528933525, -0.029313214123249054, -0.005644774064421654, 0.02621251530945301, -0.004347125068306923, 0.033930111676454544, 0.007102922070771456, 0.005651603918522596, 0.003981734160333872, 0.040732529014348984, -0.014151206240057945, 0.023958703503012657, -0.007184878922998905, -0.005429637618362904, -0.022551778703927994, -0.00740343052893877, -0.0012805749429389834, -0.020093074068427086, 0.007205368485301733, 0.016118168830871582, 0.0010475103044882417, 0.004709100816398859, 0.004394933115690947, 0.003981734160333872, -0.004825206473469734, 0.004084180109202862, -0.004664707463234663, 0.03081575594842434, -0.026431066915392876, -0.009978239424526691, -0.0031109433621168137, -0.008803525939583778, 0.004159307572990656, -0.0020147711038589478, -0.004097839817404747, 0.007157559972256422, -0.0031058210879564285, 0.01820806786417961, 0.005600381176918745, 0.011002699844539165, -0.00402271281927824, -0.00632091797888279, -0.002561149885877967, -0.002402358455583453, -0.00728049548342824, 0.01738850027322769, 0.010073856450617313, -0.004439326468855143, -0.019696949049830437, -0.00013061864592600614, -9.780390973901376e-05, 0.02917661890387535, -0.0006411412032321095, -0.012163754552602768, -0.0061433445662260056, 0.026349110528826714, -0.01727922447025776, -0.008284466341137886, 0.02785165049135685, 0.012826238758862019, -0.023466963320970535, 0.019737929105758667, 0.006792169529944658, -0.012607687152922153, 0.02912198193371296, -0.007874682545661926, -0.02274301089346409, -0.022182973101735115, -0.010271918028593063, -0.009445521049201488, 0.010845615528523922, -0.009438690729439259, 0.004531527869403362, 0.00018760422244668007, -0.0019515962339937687, 0.006618011277168989, -0.019246187061071396, -0.0062935990281403065, 0.009063055738806725, 0.009042566642165184, 0.011508099734783173, -0.03220902010798454, 0.0075605143792927265, -0.027346251532435417, 0.03663468733429909, -0.020885324105620384, -0.038656286895275116, -0.024819249287247658, -0.03332909569144249, -0.01901397667825222, 0.0021462435834109783, -0.007963468320667744, 0.008161530829966068, -0.0249421838670969, -0.01816708967089653, 0.009588944725692272, -0.007232686970382929, 0.006915104575455189, 0.0057813688181340694, -0.015435196459293365, 0.00824348721653223, 0.02532465010881424, -0.009725539945065975, -0.0406232513487339, -0.014096568338572979, -0.009616264142096043, -0.03922998532652855, -0.003204852109774947, -0.0057813688181340694, 0.06501905620098114, 0.01809879206120968, -0.03425794094800949, -0.026007622480392456, -0.02279764786362648, -0.057642947882413864, 0.01604987308382988, -0.03592439368367195, 0.032700762152671814, 0.0308977123349905, 0.042918041348457336, 0.021240469068288803, 0.023480622097849846, 0.003373888088390231, 0.010271918028593063, -0.03972172737121582, -0.00822299811989069, -0.02704574167728424, -0.03081575594842434, 0.007273665629327297, -0.006211642175912857, -0.04474841058254242, -0.0031331400386989117, 0.004053446464240551, -0.017552413046360016, 0.013372616842389107, 0.011972521431744099, -0.024341167882084846, 0.00410466967150569, -0.012320837937295437, -0.005555987823754549, 0.030160101130604744, 0.019546695053577423, 0.020147712901234627, -0.028193136677145958, 0.011351016350090504, -0.0013189922319725156, -0.005880400072783232, -0.018249046057462692, 0.009124523028731346, 0.02660864032804966, -0.012512071058154106, 0.01778462529182434, 0.008899142034351826, -0.001651087892241776, 0.004388103261590004, -0.01055876724421978, 0.021704891696572304, 0.0006027239141985774, 0.008748888038098812, 0.02920393832027912, -0.012723792344331741, 0.00781321432441473, -0.021855145692825317, 0.0080044474452734, 0.015776682645082474, 0.012013500556349754, 0.02449142187833786, -0.035186782479286194, -0.006044313777238131, -0.023945042863488197, 0.01081146765500307, 0.018494917079806328, -0.018385641276836395, -0.012006670236587524, 0.001067999517545104, -0.033110544085502625, -0.009903112426400185, 0.016541613265872, -0.0070482841692864895, -0.01650063507258892, -0.017197268083691597, -0.00463738851249218, -0.012812579050660133, -0.00781321432441473, -0.01456099096685648, -0.010080685839056969, -0.0004187480080872774, -0.012546219862997532, -0.002962396712973714, -0.042863402515649796, -0.0017740231705829501, 0.036607369780540466, -0.008373253047466278, 0.005180352367460728, 0.2013951689004898, 0.002615787787362933, 0.024682654067873955, 0.0270594023168087, 0.02740088850259781, -0.0008776207105256617, 0.009657242335379124, 0.004388103261590004, -0.004398347809910774, -0.00041981515823863447, 0.009404541924595833, 0.002446751808747649, -0.026813531294465065, -0.004548602271825075, 0.021267788484692574, -0.028958067297935486, -0.029804954305291176, -0.013809720054268837, -0.009343074634671211, 0.0013830208918079734, 8.056950900936499e-05, 0.0008101770654320717, -0.02909466251730919, -0.010709021240472794, 0.025242693722248077, 0.01733386144042015, -0.012191073037683964, 0.025461245328187943, 0.017074331641197205, 0.025256352499127388, -0.0005732707213610411, 0.0051530334167182446, 0.01393948495388031, -0.011330527253448963, -0.01099587045609951, -0.014642947353422642, 0.007738087326288223, -0.022688372060656548, -0.007246346678584814, 0.008277636021375656, 0.010770488530397415, -0.012621346861124039, 0.021704891696572304, -0.0412789061665535, 0.005569647066295147, -0.016541613265872, -0.025556860491633415, -0.005508179776370525, 0.005661848466843367, 0.003312420565634966, -0.02029796689748764, -0.006901445332914591, 0.01987452246248722, -0.010551937855780125, 0.00887182354927063, 0.011883735656738281, -0.01391899585723877, 0.027933606877923012, -0.0016041335184127092, -0.0160088948905468, -0.014082909561693668, -0.004429081920534372, -0.003787086810916662, -0.0002492852509021759, -0.025488562881946564, 0.04269948974251747, -0.004709100816398859, 0.037372298538684845, 0.0009851889917626977, 0.008899142034351826, -0.015885958448052406, 0.011473950929939747, -0.034476492553949356, 0.0006569349206984043, -0.010299237444996834, -0.0028275095392018557, 0.022893264889717102, 0.026280812919139862, 0.0465787798166275, 0.006921934429556131, 0.011801778338849545, 0.021841485053300858, -0.01990184187889099, -0.003510482842102647, 0.021773189306259155, 0.0031809480860829353, 0.03584243729710579, -0.032700762152671814, 0.005105225369334221, -0.006122855469584465, -0.0018184164073318243, 0.01457464974373579, 0.010982210747897625, -0.025556860491633415, -0.001927692093886435, -0.0006321771652437747, 0.021267788484692574, 0.020953619852662086, -0.013591168448328972, -0.017128970474004745, -0.0032116819638758898, 0.05135959014296532, 0.020461879670619965, 0.02581639029085636, -0.004941311664879322, 0.00840740092098713, 0.0013727763434872031, 0.01604987308382988, 0.018754446879029274, -0.022715691477060318, 0.0003559998294804245, -0.04010419175028801, 0.024641675874590874, -0.01412388775497675, -0.004811546765267849, 0.02190978266298771, 0.010251428931951523, 0.010367535054683685, 0.019683290272951126, 0.0002753236040007323, 0.016691867262125015, -0.006727287080138922, 0.00928160734474659, -0.003373888088390231, -0.025078779086470604, -0.03729034215211868, -0.006689723581075668, 0.01283989753574133, -0.033602286130189896, -0.02655400149524212, 0.015394218266010284, -0.02999618649482727, 0.020448220893740654, -0.006098951678723097, 0.0011892272159457207, -0.023125475272536278, -0.0025457830633968115, -0.015353240072727203, 0.015325920656323433, 0.005262309219688177, 0.01098904013633728, 0.0006069925148040056, -0.001910617807880044, 0.007157559972256422, 0.0006859612767584622, 0.01453367155045271, -0.0062048123218119144, 0.013973633758723736, -0.020502857863903046, -0.014929796569049358, 0.011234910227358341, 0.007977128028869629, -0.0035138975363224745, -0.02318011410534382, 0.02999618649482727, -0.020803365856409073, -0.04734370857477188, -0.020366264507174492, 0.012033989652991295, 0.017511434853076935, -0.05272553861141205, 0.01647331565618515, 0.03248221054673195, 0.004152477718889713, -0.027605781331658363, -0.014014611952006817, -0.17352984845638275, 0.006508735474199057, 0.009670902043581009, -0.0004814961866941303, -0.01057925634086132, 0.02830241248011589, -0.007908830419182777, -0.011576397344470024, -0.01266232505440712, 0.0043539549224078655, 0.018481256440281868, -0.02151365950703621, -0.04335514456033707, -0.02238786406815052, 0.008789866231381893, -0.02074872888624668, 0.0012293519685044885, 0.0320177897810936, 0.05480177700519562, 0.009636753238737583, 0.03160800412297249, -0.024382146075367928, -0.010237769223749638, 0.002842876361683011, 0.036170266568660736, 0.013154065236449242, -0.0067580207251012325, 0.02783799171447754, -0.012115946039557457, -0.034858956933021545, 0.015872299671173096, -0.012491581961512566, 0.0164050180464983, 0.013850698247551918, -0.007697109133005142, -0.010859275236725807, 0.007307814434170723, -0.0076629603281617165, -0.014656607061624527, 0.02360355667769909, 0.03838310018181801, 0.015763023868203163, 0.015981575474143028, 0.01416486594825983, 0.02162293531000614, 0.017975857481360435, 0.031416770070791245, -0.014656607061624527, 0.025092439725995064, 0.008523507043719292, 0.017402159050107002, -0.02413627691566944, -0.001871346845291555, -0.003981734160333872, 0.02745552733540535, 0.020830685272812843, 0.023111816495656967, 0.011549078859388828, 0.012587198056280613, -0.002771164057776332, 0.003227048786357045, -0.021445361897349358, 0.005573062226176262, -0.025488562881946564, -0.019533036276698112, -0.03488627448678017, 0.0050232685171067715, 0.023425983265042305, -0.002409188309684396, 0.013932655565440655, 0.015544472262263298, 0.014151206240057945, 0.00820933934301138, 0.0008076159283518791, 0.026458386331796646, -0.0022469821851700544, -0.03455844894051552, 0.008653271943330765, 0.01032655593007803, -0.00032163772266358137, 0.024573378264904022, 0.013987293466925621, 0.0050096092745661736, 0.0017501190304756165, -0.013495552353560925, -0.006979987025260925, 0.006177493371069431, -0.012156924232840538, 0.0001460922503611073, 0.012573538348078728, 0.02197808027267456, -0.009568455629050732, -0.0009459180291742086, 0.0037665977142751217, 0.01542153675109148, 0.006918519269675016, 0.010927572846412659, -0.006252620369195938, 0.00231869425624609, -0.006959497928619385, -0.005334021523594856, 0.00845520943403244, -0.026731574907898903, 0.011747140437364578, 0.026403747498989105, 0.009425031021237373, 0.016213785856962204, -0.004039787221699953, 0.026895487681031227, -0.028876110911369324, -0.04218043014407158, 0.013830209150910378, 0.02865755930542946, 0.008899142034351826, -0.042016517370939255, 0.036962512880563736, -0.005685752723366022, -0.00611602608114481, 0.01738850027322769, -0.03800063580274582, 0.03933926299214363, -0.03179923817515373, -0.015230304561555386, 0.0009809203911572695, -0.013597997836768627, -0.03332909569144249, -0.10179033875465393, -0.021254129707813263, 0.03668932616710663, 0.014943455345928669, 0.00010079191997647285, -0.005159863270819187, 0.010073856450617313, 0.04316391050815582, 0.021213149651885033, 0.004302731715142727, -0.01375508215278387, 0.003985149320214987, -0.013597997836768627, -0.016145488247275352, 0.00740343052893877, -0.014069249853491783, 0.012614516541361809, -0.0005766855902038515, -0.0152166448533535, 0.03166264295578003, -0.011931543238461018, 0.003940755967050791, 0.0076493010856211185, -0.005077906418591738, -0.015558131970465183, -0.010435831733047962, -0.02066677249968052, 0.021199490875005722, 0.012109116651117802, 0.014629287645220757, 0.018085133284330368, -0.015107369050383568, -0.005887229926884174, -0.033110544085502625, -0.0073692817240953445, -0.004449571017175913, -0.035651206970214844, -0.010060196742415428, 0.002023308305069804, -0.02147267945110798, 0.018453938886523247, -0.019328143447637558, 0.015298602171242237, -0.03636149689555168, -0.008974269032478333, -0.002402358455583453, -0.02906734310090542, 0.02020234987139702, 0.012327668257057667, -0.00907671544700861, -0.03543265536427498, -0.02658132091164589, -0.037372298538684845, -0.03158068656921387, 0.016623569652438164, 0.023808449506759644, -0.0013941192300990224, 0.007717598229646683, -0.024791929870843887, 0.004145647864788771, 0.014861498959362507, -0.009056225419044495, 0.007874682545661926, 0.013495552353560925, 0.004466645419597626, 0.024313848465681076, -0.010278748348355293, 0.003454137360677123, -0.025242693722248077, 0.0009920187294483185, -0.017074331641197205, -0.01350238174200058, -0.017607051879167557, 0.0109480619430542, -0.028493646532297134, -0.019956478849053383, 0.0008259708411060274, -0.020175030454993248, 0.02369917370378971, 0.011432972736656666, -0.01540787797421217, -0.01650063507258892, -0.0025696870870888233, -0.024696314707398415, 0.005672093015164137, 0.011152953840792179, 0.019696949049830437, -0.020120393484830856, 0.03335641697049141, -0.03335641697049141, 0.020598474889993668, 0.03548729419708252, 0.005890644621104002, 0.011255400255322456, 0.0036778112407773733, 0.011241740547120571, -0.014069249853491783, -0.024368487298488617, 0.02285228669643402, 0.028903430327773094, -0.005555987823754549, 0.0034285259898751974, -0.04515819251537323, 0.005610625725239515, 0.01945107989013195, 0.00887182354927063, 0.011521759442985058, 0.0010261674178764224, 0.01684212125837803, -0.011958862654864788, 0.01542153675109148, 0.009868964552879333, -0.02835705131292343, 0.0037905017379671335, -0.0024723634123802185, 0.0010355582926422358, -0.027701396495103836, 0.005132544320076704, 0.011262229643762112, -0.0029077588114887476, 0.007020965684205294, 0.013222362846136093, -0.012805749662220478, 0.01307210884988308, -0.012723792344331741, 0.02491486631333828, -0.03515946492552757, 0.00422760471701622, -0.0329466313123703, 0.0048354510217905045, -0.018385641276836395, -0.04133354499936104, 0.013987293466925621, 0.012498411349952221, -0.021226810291409492, 0.010189961642026901, -0.014301461167633533, -0.04267217218875885, 0.004698856268078089, 0.007027795072644949, 0.023781130090355873, 0.011494440957903862, -0.025024142116308212, -0.02402700111269951, 0.009629923850297928, -0.027715057134628296, -0.026349110528826714, -0.003916851710528135, -0.016323061659932137, -0.021732211112976074, -0.003544631414115429, 0.009349904023110867, 0.052998729050159454, 0.012594027444720268, -0.030597204342484474, -0.02029796689748764, -0.01456099096685648, -0.0028975142631679773, 0.013857528567314148, 0.016172807663679123, 0.00602382468059659, 0.004138818010687828, 0.04065056890249252, 0.004623729269951582, 0.00024288237909786403, -0.00991677213460207, 0.015476174652576447, -0.04097839817404747, -0.05023951455950737, -0.016309402883052826, 0.015093709342181683, -0.01562642864882946, 0.010681702755391598, -0.025433925911784172, 0.03158068656921387, 0.013106257654726505, 0.012129605747759342, 0.00824348721653223, 0.01183592714369297, -0.023945042863488197, -0.009336245246231556, 0.03128017857670784, 0.012184243649244308, -0.018863722681999207, -0.02020234987139702, 0.006368726026266813, 0.015107369050383568, 0.014711244963109493, -0.012341327033936977, 0.016664547845721245, 0.005969186779111624, -0.008468869142234325, -0.006095536518841982, 0.0072395168244838715, -0.022278588265180588, 0.006682893726974726, -0.007922490127384663, 0.013406765647232533, -0.003297053510323167, 0.019696949049830437, 0.0013300904538482428, 0.016200127080082893, 0.00364024774171412, 0.016678208485245705, 0.012539389543235302, -0.017415819689631462, -0.015804002061486244, -0.0029043438844382763, -0.022278588265180588, -0.027305271476507187, 0.021377064287662506, 0.018371982499957085, -0.012136435136198997, -0.01809879206120968, -0.00048234988935291767, 0.007068773731589317, -0.03037865273654461, -0.011111975647509098, 0.004640803672373295, -0.018836403265595436, -0.03207242488861084, 0.010633894242346287, 0.0042241900227963924, 0.026540342718362808, -0.0031911926344037056, -0.038191866129636765, 0.03641613572835922, -0.01311308704316616, -0.0018286609556525946, -0.023412324488162994, 0.01460196916013956, -0.023152794688940048, -0.01609085127711296, 0.008441549725830555, -0.002402358455583453, -0.025952985510230064, -0.021677572280168533, -0.0006684600957669318, -0.015107369050383568, 0.018727127462625504, 0.00423784926533699, 0.08042693883180618, 0.03330177813768387, 0.00035258496063761413, 0.009028906933963299, -0.025529541075229645, -0.008332273922860622, 0.004954971373081207, 0.02068043127655983, -0.004623729269951582, -0.020407242700457573, 0.02360355667769909, -0.017866581678390503, -0.017238246276974678, -0.0001066612167051062, -0.018850062042474747, 0.004357369616627693, 0.0016143780667334795, 0.02192344330251217, -0.006030654069036245, 0.028630239889025688, 0.04381956532597542, -6.963126361370087e-05, 0.013570679351687431, -0.024764612317085266, -0.03942121937870979, -0.01395997405052185, 0.01645965687930584, 0.028602922335267067, -0.008216168731451035, -0.03494091331958771, 0.010189961642026901, 0.015298602171242237, -0.014984434470534325, -0.01566740684211254, -0.02405431866645813, 0.010633894242346287, -0.017402159050107002, -0.020912641659379005, -0.009179160930216312, 0.024259211495518684, 0.012621346861124039, 0.014998093247413635, -0.005661848466843367, -0.02077604830265045, -0.007478557527065277, -0.008523507043719292, -0.012348157353699207, -0.013099427334964275, 0.012170583941042423], "49b02c99-6e6c-4109-9edc-e6fee6834574": [0.008743891492486, -0.003815709613263607, 0.01887660287320614, -0.042684927582740784, -0.009530416689813137, 0.020690569654107094, -0.0043861172161996365, -0.03364343196153641, -0.0128040611743927, -0.051556363701820374, 0.014653458259999752, 0.033926866948604584, 0.017657842487096786, -0.002233802108094096, -0.01281114760786295, 0.01761532761156559, 0.02525383234024048, -0.00805656798183918, -0.0018812830094248056, -0.006738606840372086, -0.011840390972793102, -0.005236414726823568, -0.029391946271061897, 0.0041735428385436535, -0.00843920186161995, -0.00037909092498011887, 0.01523449458181858, -0.006795293185859919, -0.014979405328631401, 0.03148934617638588, 0.0029016397893428802, -0.01685005985200405, -0.01659497059881687, 0.005275386851280928, -0.02059136889874935, 0.010465743951499462, -0.0012630459386855364, -0.010933407582342625, -0.008396686986088753, -0.014596772380173206, 0.018635684624314308, 0.017402753233909607, 0.0035198768600821495, -0.013158352114260197, -0.011783705092966557, 0.02586321160197258, 0.014199966564774513, -0.003925539553165436, -0.010203568264842033, 0.007900680415332317, -0.0070326682180166245, -0.0070078675635159016, -0.03148934617638588, 0.012038794346153736, -0.00640203058719635, -0.0212290920317173, 0.01291743479669094, 0.007277128752321005, 0.017799558117985725, -0.014008649624884129, -0.0030504418537020683, -0.0011727018281817436, -0.015191979706287384, 0.0026164359878748655, -0.0008210684172809124, -0.029306916519999504, -0.015943076461553574, -0.013342583552002907, -0.018054647371172905, -0.021399151533842087, 0.04472564160823822, 0.03131928667426109, -0.00848880223929882, 0.0012320454698055983, -0.00705746840685606, -0.013250467367470264, -0.0062284283339977264, -0.02399255894124508, -0.007518046069890261, -0.00157836452126503, 0.012690688483417034, -0.027152830734848976, -0.03361508995294571, -0.0042089722119271755, 0.020917315036058426, 0.003626164048910141, 0.017317723482847214, 0.0036917077377438545, 0.002968955086544156, 0.004549091216176748, 0.003911368083208799, 0.003480904968455434, 0.017672013491392136, 0.0024198046885430813, -0.0033143884502351284, 0.023836670443415642, 0.0037094224244356155, 0.009473729878664017, 0.004811265971511602, -0.028329074382781982, -0.014214138500392437, 0.00010772648238344118, -0.017700357362627983, -0.013342583552002907, -0.03202786669135094, -0.0063028293661773205, 0.024913713335990906, -0.006083169486373663, -0.003861767239868641, 0.011032608337700367, -0.025508921593427658, 0.017643671482801437, -0.0064516314305365086, -0.0036314784083515406, 0.0054419031366705894, -0.01959935575723648, 0.022022701799869537, -0.027563806623220444, -0.006735064089298248, -0.015801360830664635, -0.008736805990338326, -0.014086593873798847, 0.04231646656990051, -0.018961632624268532, 0.01635405234992504, 0.0024782626423984766, 0.03256639093160629, -0.013562243431806564, 0.00715666962787509, -0.019032489508390427, -0.0021771155297756195, -0.0040991418063640594, 0.02336900681257248, 0.026543449610471725, -0.02023707889020443, 0.010961750522255898, -0.017700357362627983, 0.010579116642475128, -0.015461240895092487, -0.03559911623597145, 0.042429838329553604, 0.04274161532521248, -0.005785565357655287, -0.02522548846900463, 0.00399994058534503, 0.020931487902998924, -0.007496788632124662, 0.012223024852573872, 0.008750976994633675, 0.008850178681313992, 0.017190178856253624, -0.011216839775443077, -0.016467425972223282, 0.0019928845576941967, 0.014851860702037811, 0.004212514963001013, 0.010975922457873821, 0.016779201105237007, -0.018522311002016068, -0.0016137935454025865, -0.0031018140725791454, -0.0017679099692031741, -0.010465743951499462, -0.017586983740329742, -0.0044038319028913975, 0.04237315431237221, 0.0037838234566152096, -0.0024516908451914787, -0.014908547513186932, -0.010224825702607632, 0.023170603439211845, 0.032679762691259384, -0.024035073816776276, 0.008063653483986855, 0.03531568497419357, 0.01385984756052494, 0.011755361221730709, 0.0017351381247863173, -0.00805656798183918, -0.027195345610380173, 0.02349655143916607, 0.008552574552595615, -0.007695191539824009, 0.03202786669135094, -0.015475412830710411, -0.012768632732331753, 0.025452235713601112, 0.00981384888291359, -3.052988540730439e-05, -0.003652735846117139, 0.019684385508298874, 0.014228309504687786, -0.003126614261418581, -0.012251368723809719, -0.6194700002670288, 0.016920918598771095, 0.022943858057260513, -0.02733706124126911, 0.00292112585157156, 0.013144180178642273, 0.01762949861586094, 0.002972498070448637, -0.024559423327445984, 0.028584163635969162, 0.008262055926024914, 0.01924506388604641, 0.005867051891982555, -0.009339099749922752, 0.004113313741981983, -0.027011113241314888, -0.018196364864706993, -0.03131928667426109, -0.01638239622116089, 0.005388759542256594, -0.005700535606592894, 0.018040476366877556, 0.005906024016439915, 0.0037165081594139338, 0.01198919303715229, -0.010139796882867813, 0.026033271104097366, -0.02798895537853241, 0.005640306044369936, 0.01148610096424818, -0.015277009457349777, 0.001751081203110516, 0.022178590297698975, 0.0012905034236609936, 0.045150790363550186, -0.017672013491392136, -0.02648676373064518, 0.03160272166132927, 0.018210535869002342, 0.050025828182697296, -0.005735964514315128, -0.025579780340194702, 0.028810910880565643, 0.005218700040131807, -0.003569477703422308, 0.0005611077067442238, 0.01721852272748947, 0.009069838561117649, -0.004488861653953791, -0.024063415825366974, -0.008680119179189205, -0.024332677945494652, -0.00047740654554218054, -0.003613763954490423, 0.007262956816703081, 0.009516244754195213, 0.027266202494502068, -0.01662331447005272, -0.0023365463130176067, -0.005151384975761175, 0.004428632091730833, 0.015220323577523232, -0.0324813611805439, -0.03797994926571846, -0.0387168750166893, -0.008828921243548393, -0.009707561694085598, -0.03506059572100639, 0.02023707889020443, -0.0018795115174725652, 0.026883568614721298, 0.0007471102871932089, -0.001794481766410172, -0.01862151362001896, 0.0032169583719223738, 0.029675379395484924, 0.017261037603020668, -0.020648054778575897, -0.018394766375422478, 0.021696755662560463, -0.009296584874391556, -0.003227587090805173, -0.01862151362001896, -0.005487961228936911, 0.015928903594613075, 0.006441002711653709, -0.007546389475464821, -0.011819133535027504, -0.006253228522837162, 0.0010983007960021496, 0.014851860702037811, 0.021838471293449402, -0.0008250541868619621, -0.024573594331741333, -0.013052064925432205, 0.04163622856140137, -0.004701436031609774, -0.0005398502689786255, -0.011379813775420189, -0.011875820346176624, -0.018961632624268532, -0.0337568074464798, 0.014150366187095642, 0.006692549213767052, 0.033926866948604584, 0.02274545468389988, -0.024162618443369865, -0.022532880306243896, 0.024035073816776276, -0.035797521471977234, 0.00012610529665835202, 0.007971538230776787, -0.01998198963701725, -0.023581581190228462, 0.022178590297698975, -0.025154631584882736, 0.008850178681313992, -0.01649576984345913, 0.009317842312157154, -0.022405335679650307, -0.00157836452126503, -0.011897077783942223, 0.016779201105237007, -0.009820935316383839, 0.0014455055352300406, 0.019769415259361267, 0.03214124217629433, -0.006837808061391115, 0.016410740092396736, 0.0021292862948030233, -0.006278029177337885, -0.032282955944538116, 0.011160152964293957, -0.016396567225456238, 0.02587738446891308, -0.011634903028607368, 0.05186814069747925, -0.0181113351136446, -0.0066819204948842525, -0.03633604198694229, -0.009785505943000317, -0.007333815097808838, 0.010416142642498016, -0.022929687052965164, 0.008134511299431324, -0.03387017920613289, -0.02049216628074646, 0.01838059537112713, -0.011082209646701813, -0.01368270255625248, -0.0008201826713047922, -0.005916652735322714, -0.009324927814304829, 0.005502132698893547, -0.0029034113977104425, -0.001632393803447485, 0.012974120676517487, -0.047786712646484375, 0.004825437907129526, -0.01737440936267376, -0.011096380650997162, 0.021285777911543846, -0.00777313532307744, -0.003495076671242714, -0.029051827266812325, -0.000797596643678844, 0.0038440527860075235, -0.004120399244129658, -0.01368270255625248, -0.03276479244232178, 0.016183992847800255, -0.004566805437207222, 0.0006585376104339957, 0.025211317464709282, 0.006759864278137684, 0.026132473722100258, -0.03171609342098236, -0.006076083518564701, -0.008276227861642838, 0.000683337973896414, 0.007284214254468679, 0.008354172110557556, -0.004701436031609774, -0.00954458862543106, 0.011365641839802265, 0.027011113241314888, 0.017062634229660034, 0.01699177548289299, -0.022802142426371574, 0.0058032795786857605, 0.03131928667426109, -0.0028183816466480494, 0.009395786561071873, -0.000509292702190578, -0.029902124777436256, 0.008743891492486, -0.020662225782871246, -0.0019237978849560022, 0.000947727297898382, 0.02961869165301323, 0.014766830950975418, 0.012761546298861504, -0.013618930242955685, 0.007170841563493013, 0.01760115660727024, -0.019939474761486053, 0.017487782984972, -0.013753560371696949, 0.01142941415309906, 0.012031707912683487, 0.0022036873269826174, -0.009317842312157154, 0.0034153612796217203, -0.015588785521686077, 0.0073763299733400345, 0.03398355096578598, 0.005367502104490995, 0.016183992847800255, -0.004014112055301666, 0.016269022598862648, 0.003271873574703932, -0.004092056304216385, 0.04047415778040886, -0.0021700297947973013, -0.007050382439047098, 0.019670212641358376, -0.0035535346250981092, 0.016920918598771095, 0.012775718234479427, -0.01563130132853985, 0.014221224002540112, 0.008651776239275932, 0.0017829673597589135, 0.01750195398926735, 0.031687747687101364, 0.023142261430621147, 0.03548574447631836, -0.005456075072288513, 0.01959935575723648, 0.001005299505777657, -0.008729719556868076, 0.010295684449374676, 0.02035045064985752, -0.010338199324905872, 0.043025046586990356, -0.009842192754149437, 0.017317723482847214, 0.0006656234036199749, -0.03894362226128578, 0.023397350683808327, 0.030667392536997795, 0.005232871975749731, -0.02212190441787243, -0.015404554083943367, 0.029391946271061897, -0.012010450474917889, 0.008857264183461666, 0.0034472474362701178, 0.006990153342485428, 0.01812550611793995, 0.014490485191345215, -0.014951062388718128, 0.0039609684608876705, 0.002175344154238701, 0.018267221748828888, -0.0022958030458539724, -0.002772323787212372, -0.022646253928542137, 0.00012654816964641213, -0.01911751925945282, -0.00267135095782578, -0.012882005423307419, 0.0031726721208542585, 0.01342052686959505, -0.0043861172161996365, 0.007822736166417599, 0.0052293287590146065, 0.016920918598771095, 0.008106168359518051, 0.00943830143660307, -0.04092764854431152, -0.021427493542432785, 0.013817332684993744, 0.028286559507250786, 0.007475531194359064, -0.004648292437195778, -0.01723269373178482, -0.009424129500985146, 0.017416924238204956, -0.00618591345846653, -0.008063653483986855, -0.0005863509140908718, -0.00484315212816, -0.0020318564493209124, 0.0022621452808380127, 0.008191198110580444, 0.046029433608055115, -0.020279593765735626, -0.015659643337130547, 0.009190297685563564, -0.0012338169617578387, 0.00818411260843277, -0.018196364864706993, -0.02733706124126911, 0.032282955944538116, -0.024389363825321198, -0.01734606735408306, -0.021583382040262222, -0.016935089603066444, -0.018819915130734444, -0.001234702649526298, -0.013087494298815727, -0.018082991242408752, -0.011443586088716984, -0.011967935599386692, 0.023794155567884445, -0.0066075194627046585, -0.004255029838532209, 0.025211317464709282, 0.0017014804761856794, 0.013356754556298256, -0.036789532750844955, 0.00415582861751318, 0.028711708262562752, 0.05560944974422455, 0.011549873277544975, 0.003234673058614135, 0.017955446615815163, -0.014880204573273659, -0.025820696726441383, -0.024644453078508377, -0.015121121890842915, 0.025055428966879845, 0.0021062574815005064, -0.011663245968520641, 0.013739388436079025, 0.01923089288175106, -0.009509159252047539, 0.01760115660727024, -0.016212336719036102, -0.007659762166440487, -0.01873488537967205, -0.015503755770623684, -5.541326027014293e-05, 0.015333696268498898, -0.004524290561676025, 0.03276479244232178, 0.035287342965602875, 0.021795956417918205, -0.0006217799964360893, 0.0374697707593441, 0.012641088105738163, 0.008743891492486, -0.025764010846614838, -0.018564825877547264, 0.015914732590317726, 0.006391401868313551, 0.012385998852550983, -0.03398355096578598, 0.008531317114830017, -0.0036421071272343397, -0.029080171138048172, -0.021654240787029266, -0.0019043118227273226, -0.0037200511433184147, 0.025919899344444275, 0.008191198110580444, 0.0015597642632201314, 0.0036314784083515406, -0.02237699367105961, -0.001389704761095345, 0.023028887808322906, -0.024502737447619438, -0.008531317114830017, 0.02172509767115116, 0.0033958752173930407, -0.015206151641905308, -0.00146056292578578, 0.0051726424135267735, -0.02773386612534523, -0.0056084198877215385, -0.008297485299408436, -0.0512445904314518, -0.028385762125253677, -0.03511728346347809, -0.027422090992331505, 0.003468504874035716, -0.01659497059881687, -0.011422328650951385, -0.033785149455070496, 0.0077943927608430386, 0.0162548515945673, -0.017813730984926224, -0.004609320312738419, 0.003144328948110342, -0.06144815683364868, -0.035287342965602875, 0.0034348471090197563, 0.01822470687329769, 0.011649074032902718, -0.013137094676494598, 0.009169040247797966, 0.006738606840372086, 0.007390501443296671, 0.004492404405027628, -0.03534402698278427, -0.0036846220027655363, -0.031205914914608, 0.011840390972793102, -0.008680119179189205, -0.023071402683854103, -0.0025987213011831045, 0.003231130074709654, 0.009147782810032368, -0.02162589691579342, 0.0024711769074201584, 0.01304497942328453, 0.012513543479144573, 0.012208853848278522, 0.02810232900083065, 0.024644453078508377, 0.0010664146393537521, 0.023043058812618256, -0.029051827266812325, 0.0014924490824341774, -0.00830457080155611, -0.017927102744579315, -0.02488536946475506, 0.01068540383130312, 0.01734606735408306, -0.010153967887163162, -0.0036385643761605024, 0.008899779058992863, -0.0036491930950433016, 0.011337298899888992, -0.0027174088172614574, 0.018394766375422478, -0.0014074193313717842, 0.007801478728652, -0.026770196855068207, 0.000339897524099797, 0.0218809861689806, 0.023439865559339523, -0.009764248505234718, -0.009608360938727856, -0.017927102744579315, 0.03219792619347572, -0.011691588908433914, 0.005991053767502308, 0.0041345711797475815, 0.02650093473494053, -0.01897580362856388, -0.022065216675400734, 0.015602957457304, -0.017572812736034393, 0.017898760735988617, -0.014540085569024086, -0.004804180469363928, 0.011641988530755043, 0.0021044861059635878, 9.488344949204475e-05, 0.010727918706834316, -0.035032253712415695, -0.0013126465491950512, -0.012711945921182632, 0.0013843904016539454, 0.0069334665313363075, 0.0041735428385436535, 0.009466644376516342, -0.026231674477458, -0.011110552586615086, 0.016538284718990326, 0.013831504620611668, 0.02061971090734005, -0.012846576049923897, -0.017700357362627983, -0.020052846521139145, -0.010649974457919598, -0.000634180149063468, -0.006642948370426893, -0.026302533224225044, 0.020067019388079643, 0.054787494242191315, 0.028045643121004105, 0.006487060338258743, 0.014695973135530949, 0.025764010846614838, 0.00038174810470081866, -0.01417162362486124, -0.006260314490646124, -0.019911130890250206, -0.010189397260546684, 0.007546389475464821, -0.01510694995522499, 0.015333696268498898, 0.010146882385015488, -0.012704860419034958, 0.006387859117239714, 0.006295743398368359, 0.018168020993471146, -0.016339881345629692, -0.008580917492508888, -0.02572149597108364, -0.05969087779521942, -0.0016199937090277672, 0.04345019534230232, -0.009657961316406727, 0.01673668622970581, -0.02610412985086441, 0.008588003925979137, 0.01342052686959505, -0.011946678161621094, 0.037554800510406494, 0.01609896309673786, 0.032906509935855865, 0.006387859117239714, 0.006278029177337885, 0.007277128752321005, -0.012364741414785385, -0.004942353814840317, 0.0013879333855584264, -0.027790553867816925, -0.007245242595672607, 0.0011284154606983066, 0.0040353694930672646, -0.0031053568236529827, -0.006355972960591316, 0.004538462497293949, 0.0027103228494524956, 0.020067019388079643, -0.018834087997674942, -0.012279711663722992, 0.00440028915181756, -0.014256653375923634, -0.014065336436033249, -0.010012252256274223, -0.018210535869002342, 0.005293101072311401, 0.0002468962629791349, -0.02523966133594513, 0.012655259110033512, 0.009891793131828308, -0.02335483580827713, -0.012393084354698658, 0.03443704545497894, 0.004867952782660723, 0.048013459891080856, 0.006873237434774637, 0.035655803978443146, 0.013278811238706112, 0.008843093179166317, -0.0067846644669771194, -0.009289499372243881, -0.00305752782151103, -0.0020690569654107094, -0.001730709453113377, 0.03806497901678085, -0.018408939242362976, 0.0010407285299152136, 0.016155650839209557, -0.01587221771478653, 0.012513543479144573, -0.027918098494410515, 0.01142941415309906, 0.021186577156186104, 0.010749176144599915, -0.04835357889533043, -0.022929687052965164, -0.01117432489991188, 0.008821835741400719, 0.0004273630038369447, 0.021824300289154053, -0.003402960952371359, 0.007936108857393265, 0.004807723220437765, 0.052775125950574875, -0.018309736624360085, 0.016339881345629692, -0.011103467084467411, -0.006026482675224543, -0.01772870123386383, -0.022433679550886154, -0.018933288753032684, -0.01523449458181858, -0.0017183093586936593, 0.010529516264796257, 0.001163844601251185, 0.0038192523643374443, 0.0017333666328340769, 0.012896177358925343, -0.01659497059881687, -0.012775718234479427, -0.010657060891389847, 0.03160272166132927, -0.008701376616954803, -0.0040353694930672646, 0.0048218946903944016, -0.004860866814851761, 0.008736805990338326, -0.016424911096692085, -0.007865251041948795, 0.005565905012190342, -0.012478114105761051, 0.012449771165847778, 0.007188555784523487, 0.01023191213607788, -0.012208853848278522, -0.013746474869549274, 0.0033037597313523293, -0.01449757069349289, 0.0009911279194056988, 0.012782803736627102, -0.001557992771267891, -0.019896959885954857, -0.014263738878071308, -0.013200866989791393, 0.0019468266982585192, 0.02010953426361084, 0.009147782810032368, -0.012031707912683487, 0.0008711119880899787, 0.03347337245941162, -0.019315922632813454, -0.006890951655805111, 0.02474365383386612, 0.012145081534981728, -0.04648292437195778, 0.008410857990384102, 0.010820033960044384, -0.01317252404987812, 0.028414104133844376, -0.0015792502090334892, -0.007149584125727415, -0.022206934168934822, 0.013937791809439659, -0.007418844848871231, 0.013073322363197803, -0.001490677590481937, 0.012031707912683487, 0.004602234810590744, 0.00292112585157156, 0.0012887319317087531, -0.013661445118486881, -0.00021213149011600763, -0.004279830027371645, 0.004418003372848034, 0.013583500869572163, -0.012889090925455093, 0.024176789447665215, -0.0029760408215224743, 0.0324813611805439, 0.005739507265388966, -0.03987894952297211, -0.02549475058913231, -0.021923501044511795, -0.005505675449967384, -0.011960850097239017, -0.0009858135599642992, -0.0005983082228340209, -0.029009312391281128, -0.0218809861689806, 0.015475412830710411, -0.006866151466965675, 0.008573831990361214, 0.01700594834983349, -0.014752659946680069, 0.007036210969090462, 0.017516126856207848, -0.00843920186161995, -0.026798538863658905, -0.016070621088147163, -0.0181113351136446, -0.03174443542957306, 0.010798776522278786, -0.017076805233955383, 0.05410725623369217, 0.0013781903544440866, -0.024417707696557045, -0.029958810657262802, -0.029448632150888443, -0.0474749393761158, 0.0017377953045070171, -0.016680000349879265, 0.028910111635923386, 0.03599592298269272, 0.02933526039123535, 0.02497039921581745, 0.030780766159296036, -0.0023826041724532843, 0.018082991242408752, -0.03837675601243973, 0.0018042247975245118, -0.021895157173275948, -0.025678981095552444, 0.006611062213778496, -0.007404672913253307, -0.035797521471977234, 0.001595193287357688, 0.0003197472542524338, -0.017459439113736153, 0.006178827956318855, 0.017530297860503197, -0.020024504512548447, 0.0017457668436691165, -0.003751937299966812, 0.0034153612796217203, 0.034777164459228516, 0.015914732590317726, 0.014894375577569008, -0.02049216628074646, -0.003036270383745432, 0.016155650839209557, -0.011783705092966557, -0.0280881579965353, 0.007567646913230419, 0.025537265464663506, 0.003652735846117139, 0.009509159252047539, 0.007659762166440487, -0.013533900491893291, -0.01025316957384348, -0.018578998744487762, 0.017303552478551865, 0.005619048606604338, 0.006759864278137684, 0.02610412985086441, -0.0065154037438333035, 0.022065216675400734, -0.014752659946680069, 0.0024428335018455982, 0.005941452924162149, 0.017487782984972, 0.018763229250907898, -0.03925539553165436, -0.0011045008432120085, -0.018153849989175797, 0.01734606735408306, 0.009629618376493454, -0.016680000349879265, -0.010387799702584743, 0.009084010496735573, -0.029306916519999504, -0.012648173607885838, 0.025523092597723007, -0.018437281250953674, -0.014667630195617676, -0.014738488011062145, -0.007397587411105633, -0.001079700537957251, 0.002756380708888173, -0.011691588908433914, -0.015050264075398445, 0.010770433582365513, -0.006582718808203936, -0.0018865973688662052, -0.03163106366991997, -0.00904858112335205, 0.023680781945586205, -0.008226627483963966, 0.011004265397787094, 0.1985161006450653, -0.014795174822211266, 0.03432366997003555, 0.026444248855113983, 0.01711932010948658, -0.0025526636745780706, 0.003234673058614135, 0.012060051783919334, 0.002696151379495859, 0.011698675341904163, 0.008609261363744736, -0.017572812736034393, -0.0181113351136446, -0.005750135984271765, 0.01324338186532259, -0.009062753058969975, -0.04724819213151932, -0.010572031140327454, -0.014362940564751625, 0.00412748521193862, 0.00918321218341589, -0.006494146306067705, -0.028640851378440857, -0.014979405328631401, 0.023524895310401917, 0.026543449610471725, -0.002696151379495859, 0.012010450474917889, 0.02650093473494053, 0.014093679375946522, -0.013052064925432205, -0.005888309329748154, 0.01150027196854353, -0.023935871198773384, -0.028329074382781982, -0.001262160250917077, 0.017700357362627983, -0.02271711267530918, 0.001174473320133984, 0.0024410621263086796, 0.007836908102035522, -0.020392965525388718, 0.002880382351577282, -0.046397894620895386, 0.016779201105237007, -0.006862608715891838, 0.00340650393627584, -0.00024003186263144016, 0.011195582337677479, 0.019046662375330925, -0.013966134749352932, -0.015957247465848923, 0.011089295148849487, -0.014100764878094196, 0.0020123703870922327, 0.012825318612158298, -0.010026423260569572, 0.015532098710536957, -0.003006155602633953, -0.005236414726823568, 0.0016713658114895225, -0.001895454595796764, -0.014880204573273659, 0.0007045954116620123, -0.035032253712415695, 0.03231130167841911, 0.004733322188258171, 0.03661947324872017, 0.009657961316406727, -0.014384198002517223, 0.000646137457806617, 0.006437459960579872, -0.040162380784749985, -0.0010717289987951517, -0.00599813973531127, -0.004736864939332008, 0.011535701341927052, 0.02071891352534294, 0.0475032813847065, 0.005367502104490995, -0.013271724805235863, 0.0010867863893508911, -0.019840272143483162, -0.0022780883591622114, 0.01417162362486124, -0.007270042784512043, 0.028782567009329796, -0.022391164675354958, 0.008935208432376385, -0.011068037711083889, -0.0084321154281497, 0.00887143611907959, 0.004889210220426321, -0.00987053569406271, -0.004428632091730833, 0.0011620731092989445, 0.005328530445694923, 0.017955446615815163, -0.012343483977019787, -0.01785624586045742, -0.014207052066922188, 0.05986093729734421, 0.033813491463661194, 0.02910851500928402, -0.013229209929704666, 0.005101784132421017, 0.0044959476217627525, 0.009962650947272778, 0.0026235217228531837, -0.02461610920727253, -0.008368343114852905, -0.05549607798457146, 0.022277791053056717, -0.008495887741446495, 0.004038912709802389, 0.020931487902998924, 0.009884707629680634, 0.006192999426275492, 0.014752659946680069, 0.00887143611907959, 0.013661445118486881, -0.017714528366923332, 0.0012657031184062362, -0.0004955639597028494, -0.016269022598862648, -0.029817095026373863, -0.004797094501554966, 0.017912931740283966, -0.03908533602952957, -0.017076805233955383, 0.011238097213208675, -0.03046898916363716, 0.02346820756793022, 0.0017634814139455557, 0.007418844848871231, -0.015347868204116821, -0.00023892470926512033, -0.016467425972223282, 0.010118539445102215, -0.015163636766374111, 0.014837689697742462, -0.011748275719583035, 0.007305471692234278, -0.0003199686761945486, 0.0037200511433184147, 0.01318669505417347, -0.007131869439035654, 0.004867952782660723, -0.018933288753032684, -0.025806525722146034, -0.0046164062805473804, 0.0011381584918126464, -0.00010894435399677604, -0.005757221952080727, 0.03534402698278427, -0.017955446615815163, -0.04058752954006195, -0.031290944665670395, 0.01675085909664631, 0.009523331187665462, -0.051272932440042496, 0.01142941415309906, 0.0374414287507534, 0.006207170896232128, -0.026330875232815742, -0.0013082179939374328, -0.18219038844108582, 0.005257672164589167, 0.009459558874368668, 0.001973398495465517, -0.008885608054697514, 0.021710926666855812, -0.008155768737196922, 0.000767481978982687, -0.020903144031763077, -0.008290399797260761, 0.024701138958334923, -0.017190178856253624, -0.04112605005502701, -0.018678199499845505, 0.0027014657389372587, -0.01588638871908188, 0.004464061465114355, 0.034295327961444855, 0.05923738330602646, 0.018139677122235298, 0.02437519282102585, -0.03449372947216034, -0.006972438655793667, 0.008786406368017197, 0.02548057772219181, 0.019060833379626274, -0.013292982243001461, 0.029505319893360138, -0.008750976994633675, -0.03633604198694229, 0.008276227861642838, 0.0007515389006584883, 0.01523449458181858, 0.010912150144577026, -0.0034100469201803207, -0.0033037597313523293, -0.01923089288175106, -0.008021138608455658, -0.004758122377097607, 0.010749176144599915, 0.04189131781458855, 0.01923089288175106, 0.02324146218597889, 0.012889090925455093, 0.009665046818554401, 0.014292081817984581, 0.032679762691259384, -0.0037058794405311346, 0.01850813999772072, 0.003932625520974398, 0.003565934719517827, -0.037299711257219315, -0.00041939146467484534, -0.009665046818554401, 0.0025296348612755537, 0.017955446615815163, 0.008276227861642838, 0.021923501044511795, 0.014752659946680069, 0.010572031140327454, 0.0051549277268350124, -0.02421930432319641, 0.006986610125750303, -0.013512643054127693, -0.00521515728905797, -0.038546815514564514, 0.003677536267787218, 0.019953645765781403, -0.0012391313211992383, 0.024686967954039574, 0.020322108641266823, 0.01281114760786295, -0.004942353814840317, 0.007758963853120804, 0.023156432434916496, -0.00774479191750288, -0.02574983984231949, 0.003319702809676528, 4.331755917519331e-05, -0.0013374469708651304, 0.003617306938394904, 0.013335497118532658, 0.005530476104468107, -0.008821835741400719, -0.018578998744487762, -0.018763229250907898, 0.007291300222277641, -0.005952081643044949, 0.010281512513756752, 0.0028998684138059616, 0.03284982219338417, -0.009976822882890701, -0.021030688658356667, 0.004878581501543522, 0.015829702839255333, 0.0041345711797475815, 0.019712727516889572, -0.0027138658333569765, -0.007851079106330872, -0.021158233284950256, -0.0022107732947915792, 0.01673668622970581, -0.0350039079785347, 0.020152049139142036, 0.025310518220067024, 0.0067456928081810474, 0.01510694995522499, -0.007216899190098047, 0.025678981095552444, -0.02300054393708706, -0.01975524239242077, 0.01073500420898199, 0.019939474761486053, -0.00033746176632121205, -0.03919871151447296, 0.03574083372950554, -0.015447068959474564, -0.022532880306243896, 0.012194681912660599, -0.033926866948604584, 0.043648600578308105, -0.026529278606176376, -0.0109404930844903, -0.0033480459824204445, -0.015121121890842915, -0.025792354717850685, -0.12312306463718414, -0.01268360298126936, 0.031205914914608, 0.013753560371696949, -0.0023046601563692093, 0.023510722443461418, 0.0025172345340251923, 0.032056212425231934, 0.008226627483963966, 0.011549873277544975, -0.02112988941371441, -0.0013507328694686294, -0.006579176057130098, -0.006788207683712244, 0.01441962644457817, -0.011946678161621094, -0.001426905277185142, -0.013696873560547829, -0.0012905034236609936, 0.02647259272634983, 0.006083169486373663, 0.004357774276286364, 0.0057288785465061665, -0.005119498819112778, -0.003163814777508378, -0.00787233654409647, -0.03395520895719528, 0.02461610920727253, 0.0027209515683352947, 0.00543127441778779, 0.02660013735294342, -0.01873488537967205, -0.001588993240147829, -0.024771997705101967, -0.0005602219607681036, 0.006550832651555538, -0.03650610148906708, -0.007036210969090462, 0.0008613689569756389, -0.016396567225456238, 0.017898760735988617, 0.00010457108146511018, 0.009225727058947086, -0.02596241421997547, -0.004432175308465958, -0.009849278256297112, -0.03956717252731323, 0.029533661901950836, 0.022164419293403625, -0.017190178856253624, -0.03174443542957306, -0.024431878700852394, -0.03185780718922615, -0.01911751925945282, 0.018323909491300583, 0.03412526845932007, 0.002081457059830427, 0.013526814058423042, -0.033530060201883316, 0.009346185252070427, -0.0025172345340251923, -0.018281394615769386, -0.007532217539846897, 0.022192761301994324, 0.007418844848871231, 0.004336516838520765, -0.004425089340656996, -0.006908666342496872, -0.01354807149618864, 0.004279830027371645, -0.01762949861586094, -0.012563143856823444, -0.017700357362627983, 0.003174443496391177, -0.011068037711083889, -0.015191979706287384, -0.00954458862543106, -0.021285777911543846, 0.009537502191960812, 0.00020537781529128551, -0.0023400892969220877, -0.015829702839255333, -0.00831165723502636, -0.02112988941371441, 0.006363058928400278, 0.0063205440528690815, 0.020888973027467728, -0.014568428508937359, 0.024148445576429367, -0.03287816420197487, 0.007262956816703081, 0.03333165869116783, 0.009133610874414444, 0.015645472332835197, -0.005665106233209372, 0.0015296495985239744, -0.009523331187665462, -0.017204349860548973, 0.009268241934478283, 0.02325563319027424, -9.394236258231103e-05, 0.007255871314555407, -0.05334198847413063, -0.009665046818554401, 0.019514326006174088, 0.0010283284354954958, -0.0038227953482419252, -0.015815531834959984, 0.009608360938727856, -0.007252328097820282, -0.003748394316062331, 0.009990994818508625, -0.03457875922322273, 0.015957247465848923, -0.008247884921729565, 0.013144180178642273, -0.017204349860548973, -0.005356873385608196, 0.014951062388718128, 0.005038012284785509, 0.002233802108094096, 0.005565905012190342, -0.007404672913253307, -0.003369303420186043, -0.0007993681356310844, 0.01017522532492876, -0.030554018914699554, 0.00892812293022871, -0.014284996315836906, 0.014178709127008915, -0.017544468864798546, -0.029930468648672104, 0.013066236861050129, 0.016538284718990326, -0.019060833379626274, 0.010203568264842033, -0.007532217539846897, -0.04211806505918503, 0.021186577156186104, 0.00785816553980112, 0.023638267070055008, 0.027422090992331505, -0.026174988597631454, -0.031659405678510666, 0.007202727720141411, -0.018550654873251915, -0.013108751736581326, 0.004368402995169163, -0.012286797165870667, -0.019826101139187813, 0.0015473641688004136, 0.010777519084513187, 0.06541620939970016, 0.005236414726823568, -0.026047443971037865, -0.02712448686361313, -0.0023170604836195707, 0.00012831961794290692, 0.02409175969660282, 0.029533661901950836, 0.012952863238751888, 0.0028998684138059616, 0.05158470943570137, 0.0038582244887948036, 0.009324927814304829, 0.009296584874391556, 0.009643789380788803, -0.028428277000784874, -0.049884114414453506, -0.00677403574809432, 0.019301751628518105, -0.038915276527404785, 0.011202667839825153, -0.016651656478643417, 0.028768396005034447, 0.012194681912660599, 0.015447068959474564, 0.012775718234479427, 0.00024534622207283974, -0.014320425689220428, 0.001659851404838264, 0.025055428966879845, 0.02362409606575966, -0.017672013491392136, -0.022277791053056717, 0.002522548893466592, 0.02546640671789646, 0.02821570262312889, -0.014880204573273659, 0.02512628771364689, 0.00943121500313282, -0.0005978653789497912, -0.008793491870164871, 0.021540867164731026, -0.007397587411105633, 0.017020119354128838, 0.01611313596367836, 0.014837689697742462, -0.011847477406263351, 0.011195582337677479, 0.02135663665831089, 0.022561224177479744, -0.002898097038269043, 0.017261037603020668, 0.004740408156067133, -0.025664810091257095, -0.0231139175593853, 0.00028121814830228686, -0.027549635618925095, -0.03075242228806019, 0.012407256290316582, 0.03523065522313118, -0.015036092139780521, -0.004680178593844175, 0.014362940564751625, 0.01734606735408306, -0.030383959412574768, 0.009147782810032368, 0.011882905848324299, -0.006037111394107342, -0.024403534829616547, 0.0021133432164788246, 0.009275327436625957, 0.010805862955749035, 0.006844894029200077, -0.02711031585931778, 0.034040238708257675, -0.016935089603066444, 0.0016306224279105663, -0.016453254967927933, 0.013980306684970856, -0.014894375577569008, -0.005760764703154564, 0.004414460621774197, 0.007177927065640688, -0.02762049436569214, -0.03219792619347572, -0.007985709235072136, -0.01305915042757988, 0.025140458717942238, 0.003032727399840951, 0.08701376616954803, 0.017487782984972, -0.013590586371719837, 0.02624584548175335, -0.02071891352534294, -0.015092778950929642, 0.01612730696797371, 0.0023808327969163656, -0.0030132413376122713, -0.01135855633765459, 0.031687747687101364, -0.011911249719560146, -0.008113253861665726, -0.008106168359518051, -0.017275208607316017, 0.001734252437017858, 0.0005956510431133211, 0.01599976234138012, -0.013746474869549274, 0.02998715452849865, 0.03874521702528, -0.00955875962972641, 0.009395786561071873, -0.018678199499845505, -0.04438552260398865, -0.005300187040120363, 0.025565607473254204, 0.01510694995522499, -0.018933288753032684, -0.03296319395303726, 0.018309736624360085, 0.014993577264249325, -0.010905063711106777, -0.021427493542432785, -0.032679762691259384, 0.018578998744487762, -0.007652676664292812, -0.008120340295135975, 0.004010569304227829, 0.012173424474895, 0.0046164062805473804, 0.012024622410535812, -0.011195582337677479, -0.01662331447005272, -0.010720833204686642, -0.020081190392374992, 0.0007643819553777575, -0.01921672187745571, 0.005937910173088312], "02bd4993-b5e3-4da6-b3d3-00f839c897d3": [0.010615584440529346, -0.011181112378835678, 0.015889307484030724, -0.023547790944576263, 0.001384863629937172, 0.020985879004001617, -0.017606334760785103, -0.02913494035601616, -0.022757412865757942, -0.04164470359683037, 0.015276084654033184, 0.020427163690328598, 0.019214343279600143, -0.012250847183167934, -0.010445243678987026, 0.019364241510629654, 0.025128545239567757, -0.006445662584155798, 0.000987971550785005, -0.001613970729522407, -0.016720566898584366, 0.0003076764987781644, -0.012911765836179256, 0.0027578033041208982, -0.02477423846721649, -0.002720328513532877, 0.016352633014321327, -0.011378706432878971, -0.02518305368721485, 0.025878041982650757, -0.0029843554366379976, -0.008046858012676239, -0.010608769953250885, 0.0028617107309401035, -0.0297345370054245, 0.010785924270749092, -0.0020185280591249466, -0.0064252219162881374, 0.02099950611591339, -0.014880895614624023, 0.02593255043029785, 0.008660081773996353, 0.0035090025048702955, -0.010295344516634941, -0.015644017606973648, 0.01883278228342533, 0.0016207844018936157, -0.0036384607665240765, -0.00818313006311655, 0.004118819255381823, -0.004960298538208008, -0.009205169044435024, -0.02880788780748844, 0.020113738253712654, -0.022880058735609055, -0.01770172454416752, 0.014989913441240788, -0.006571714300662279, 0.012646036222577095, -0.0041801417246460915, -0.00640818802639842, 0.0018464847235009074, -0.014880895614624023, -0.008149062283337116, -0.015930188819766045, -0.028399072587490082, -0.004650279879570007, -0.015862053260207176, -0.028181036934256554, -0.02850808948278427, 0.030988238751888275, 0.031288035213947296, -0.003335255663841963, 0.017415553331375122, -0.029380230233073235, -0.006074321456253529, -0.008660081773996353, -0.021449202671647072, -0.003519222838804126, -0.004404990468174219, 0.009811579249799252, -0.021190285682678223, -0.017102127894759178, 0.004084751475602388, 0.026954589411616325, 0.021435575559735298, 0.008700963109731674, -0.00022740379790775478, -0.00631279731169343, 0.008918998762965202, 0.02211693488061428, 0.0019367649219930172, 0.010090936906635761, 0.0035601044073700905, 0.008905370719730854, 0.02823554538190365, 0.009825206361711025, -0.0036112063098698854, -0.007556279189884663, -0.01868288218975067, -0.01853298395872116, -0.00462302565574646, -0.005754082463681698, -0.010935823433101177, -0.030579423531889915, -0.011787522584199905, 0.028262799605727196, -0.009539036080241203, -0.0071951583959162235, 0.017347417771816254, -0.03164234384894371, 0.024924136698246002, -0.003478341270238161, -0.00919154193252325, 0.015044421888887882, -0.010227208957076073, 0.02954375557601452, -0.026014313101768494, -0.0071951583959162235, -0.01823318563401699, 0.008809980936348438, -0.013429599814116955, 0.029461992904543877, -0.016856838017702103, 0.012353051453828812, -0.0021411727648228407, 0.011106163263320923, -0.01703399233520031, 0.018819155171513557, -0.015357847325503826, 0.016229987144470215, 0.00035047437995672226, 0.015603137202560902, 0.020181873813271523, -0.011160671710968018, -0.006343458779156208, -0.012564272619783878, 0.012066880241036415, -0.01496265921741724, -0.04393407329916954, 0.0327325202524662, 0.033522896468639374, 0.0019844600465148687, -0.027404285967350006, 0.004875128623098135, 0.02883514203131199, -0.0037815463729202747, 0.025769023224711418, 0.00700437743216753, 0.009906969964504242, 0.022512124851346016, -0.012264474295079708, -0.01980031281709671, 0.012748239561915398, 0.014117772690951824, 0.004626432433724403, -0.0014138213591650128, 0.017538199201226234, -0.03172410652041435, -0.008176316507160664, -0.011671691201627254, -0.0029111092444509268, -0.012898138724267483, -0.005890354514122009, -0.012591526843607426, 0.03758380189538002, 0.007092954590916634, -0.007651669438928366, -0.004439058247953653, -0.007154276594519615, 0.0014010458253324032, 0.010894941166043282, -0.02061794511973858, 0.013845228590071201, 0.016202732920646667, 0.00954584963619709, 0.01692497543990612, 0.006047067232429981, -0.003032050561159849, -0.03052491508424282, 0.024965019896626472, -0.0011344639351591468, -0.013245631940662861, 0.021871646866202354, -0.033604659140110016, -0.005788150709122419, 0.03529443219304085, 0.0282082911580801, 0.005099977366626263, -0.012278101406991482, 0.011855659075081348, 0.0019026969093829393, -0.003216017736122012, -0.00984564796090126, -0.6270689368247986, 0.011985116638243198, 0.016448022797703743, -0.02230771631002426, -0.007965094409883022, 0.018437594175338745, 0.03848319500684738, 0.0006690100417472422, -0.00720197195187211, 0.02823554538190365, 0.014989913441240788, 0.008782726712524891, -0.006404781248420477, -0.014240417629480362, -0.010152259841561317, -0.02752693183720112, -0.004217616282403469, -0.03224194049835205, 0.00394166586920619, 0.01247569639235735, -0.03104274719953537, 0.026491263881325722, 0.008101366460323334, -0.009968291968107224, 0.0060334401205182076, -0.007188344839960337, 0.02913494035601616, -0.02801750972867012, 0.002178647555410862, 0.03123352862894535, -0.02162635698914528, 0.017306536436080933, 0.0051067909225821495, 0.014949031174182892, 0.04336173087358475, -0.004377736244350672, -0.008435232564806938, 0.006162898615002632, 0.02271653153002262, 0.04769517853856087, -0.01516706682741642, -0.025537360459566116, 0.02016824670135975, 0.004340261220932007, -0.0031512884888798, 0.010472498834133148, 0.01161718275398016, -0.0032858571503311396, -0.013920178636908531, -0.012203152291476727, -0.0016497421311214566, -0.013013970106840134, 0.01115385815501213, -0.0034374597016721964, 0.0008065595175139606, 0.0028957787435501814, 0.024787865579128265, -0.01703399233520031, -0.000491430691909045, -0.00018716098566073924, 0.01583479903638363, 0.0010791034437716007, -0.02771771140396595, -0.037856344133615494, -0.05099295824766159, 0.0007665296434424818, -0.0017391706351190805, -0.023547790944576263, 0.0057677095755934715, -0.010888127610087395, 0.0292167030274868, -0.002820829162374139, 0.00827170629054308, -0.016557039692997932, -0.014240417629480362, 0.023247992619872093, 0.024215523153543472, -0.0063638994470238686, -0.019336987286806107, 0.01939149759709835, -0.0018737391801550984, -0.006844257935881615, -0.02308446727693081, 0.007815195247530937, 0.021490084007382393, 0.015793917700648308, -0.013409159146249294, -0.013831601478159428, 0.006844257935881615, -0.006455882918089628, 0.010022801347076893, 0.03164234384894371, 0.0027373626362532377, -0.027935747057199478, -0.006738647352904081, 0.03872848302125931, 0.011085722595453262, 0.004936451092362404, -0.004779738374054432, -0.009988732635974884, -0.021653611212968826, -0.025646379217505455, 0.008619200438261032, -0.0053180125541985035, 0.018805528059601784, 0.026995470747351646, -0.002624938264489174, -0.015221575275063515, 0.02005922980606556, -0.023207111284136772, -0.009123406372964382, 0.006391154136508703, -0.016952229663729668, -0.023656807839870453, 0.006874919403344393, -0.023629553616046906, 0.0058051845990121365, -0.008251265622675419, 0.01722477376461029, -0.019582277163863182, 0.0058596935123205185, -0.012407559901475906, 0.005198774393647909, -0.004295972641557455, 0.012107761576771736, 0.013054851442575455, 0.002641972154378891, 0.009961478412151337, 0.016502531245350838, -0.006687545217573643, -0.011085722595453262, -0.024406304582953453, 0.011903353966772556, -0.005144265480339527, 0.021122150123119354, -0.004330040886998177, 0.04576011747121811, -0.005880134180188179, -0.008196757175028324, -0.05115648731589317, 0.000859790772665292, -3.4972916182596236e-05, 0.017906133085489273, -0.02694096229970455, 0.012019185349345207, -0.03166959807276726, -0.022580260410904884, 0.008489741943776608, -0.008544250391423702, -0.003730444237589836, -0.0068510714918375015, -0.015848426148295403, -0.012148642912507057, 0.015589510090649128, -0.009464086033403873, 0.0036112063098698854, 0.009327813982963562, -0.04434289038181305, -0.0005578632699325681, -0.013892924413084984, -0.006094762589782476, 0.015139812603592873, -0.020835978910326958, -0.004067717585712671, -0.015344220213592052, -0.003798580262809992, -0.004210802726447582, 0.009886529296636581, -0.013940619304776192, -0.04180822893977165, 0.020890487357974052, -0.005232842639088631, 0.002239970024675131, 0.030715694651007652, -0.0006690100417472422, 0.02775859460234642, -0.018069658428430557, -0.009034829214215279, 0.005723421461880207, -0.005042061675339937, 0.0023881657980382442, 0.009334627538919449, -0.0028020916506648064, 0.011167485266923904, 0.027240760624408722, 0.018287694081664085, 0.019364241510629654, 0.018328575417399406, -0.018328575417399406, 0.0051612998358905315, 0.03564874082803726, 0.009416391141712666, -0.003870123066008091, 0.008796353824436665, -0.022989075630903244, -0.0018090099329128861, -0.03177861496806145, -0.003887156955897808, 0.0017459841910749674, 0.026927335187792778, 0.004091565031558275, 0.013034410774707794, -0.018015149980783463, -0.006295763421803713, 0.010765482671558857, -0.01688409224152565, 0.013191123493015766, -0.010125004686415195, 0.030388642102479935, 0.011467283591628075, -0.0009257975034415722, -0.006019813008606434, -0.006404781248420477, -0.009695748798549175, 0.016148224472999573, 0.035839520394802094, 0.01262559462338686, 0.005621217656880617, 0.004650279879570007, 0.011365079320967197, 0.013906551524996758, -0.0014470376772806048, 0.0407998189330101, -0.0008397758356295526, -0.0020747403614223003, 0.02293456718325615, -0.003294374095275998, 0.022662023082375526, 0.005532640498131514, -0.02237585186958313, 0.008585131727159023, 0.02677743509411812, 0.018096912652254105, 0.017865251749753952, 0.04074531048536301, 0.03649362549185753, 0.039464354515075684, -0.005253283306956291, 0.01797426864504814, -0.012611967511475086, -0.013415972702205181, 0.008312588557600975, 0.02432454191148281, -0.010642838664352894, 0.03867397457361221, -0.0007916548056527972, 0.01456747017800808, 0.001145535963587463, -0.01718389056622982, 0.026791062206029892, 0.030061589553952217, 0.00482743326574564, -0.028371818363666534, -0.008394351229071617, 0.014458452351391315, -0.015644017606973648, 0.021898901090025902, 0.009205169044435024, 0.0018907731864601374, 0.011351452209055424, 0.012843630276620388, -0.018928172066807747, 0.009130219928920269, 0.012284914962947369, 0.014431198127567768, -0.00424146419391036, -0.005522420164197683, -0.022212326526641846, -0.004006395116448402, -0.0161345973610878, 0.00300309294834733, -0.018587492406368256, 0.0037542919162660837, 0.014076891355216503, -0.005042061675339937, 0.00650017149746418, 0.0002991594956256449, 0.00788333173841238, -0.0043913633562624454, 0.013858855701982975, -0.03570324927568436, -0.013327395543456078, 0.0189009178429842, 0.027744967490434647, -0.0007056331378407776, -0.010363481007516384, -0.003166619222611189, -0.02252575196325779, 0.022907312959432602, -0.004282345529645681, 0.0007290548528544605, 0.009327813982963562, -0.008244452066719532, -0.004374329000711441, -0.011310570873320103, 0.016570666804909706, 0.03303231671452522, -0.024924136698246002, -0.010956264100968838, 0.017619961872696877, 0.012584713287651539, 0.00816268939524889, -0.00784245040267706, -0.01871013641357422, 0.02943473868072033, -0.02555098757147789, -0.017456434667110443, -0.01797426864504814, 0.001501546474173665, -0.017388299107551575, 0.005260096862912178, -0.010860873386263847, -0.011296943761408329, -0.02005922980606556, -0.01516706682741642, 0.006949868984520435, 0.004847874399274588, 0.0024000895209610462, 0.02256663329899311, 0.004268718417733908, 0.011044840328395367, -0.031070001423358917, 0.01135826576501131, 0.036248333752155304, 0.062140002846717834, 0.015248829498887062, 0.0015560551546514034, 0.016148224472999573, -0.004105192143470049, -0.01834220252931118, -0.022798296064138412, -0.0038837501779198647, 0.025837158784270287, 0.004990959540009499, -0.024719730019569397, 0.00956629030406475, 0.004912603180855513, -0.003244975581765175, 0.008707776665687561, -0.012843630276620388, -0.010874500498175621, -0.022553006187081337, -0.0077061778865754604, 0.01005005557090044, 0.028889650478959084, -0.00975025724619627, 0.03515816107392311, 0.020522553473711014, 0.020522553473711014, -0.009321000427007675, 0.04434289038181305, 0.009893342852592468, 0.00011189203360117972, -0.028072020038962364, -0.01909169927239418, 0.011964675970375538, 0.021939782425761223, 0.013375090435147285, -0.019895702600479126, 0.018260439857840538, -0.002725438680499792, -0.007665296550840139, -0.014799132943153381, -0.002105401363223791, -0.006636443547904491, 0.02831730805337429, -0.0036554946564137936, -0.0035396635066717863, 0.005662098992615938, -0.023506909608840942, 0.003004796337336302, 0.018505729734897614, -0.016720566898584366, 0.003556697629392147, 0.02121753990650177, -0.0007511990843340755, -0.017538199201226234, 0.01320475060492754, 0.0019112139707431197, -0.024719730019569397, 0.002597683807834983, -0.012366678565740585, -0.05794283002614975, -0.03706596791744232, -0.0234251469373703, -0.012428000569343567, -0.004551482852548361, -0.013007156550884247, -0.010397548787295818, -0.017619961872696877, 0.01244162768125534, -0.004081344697624445, -0.018124166876077652, -0.005079536698758602, 0.018260439857840538, -0.05115648731589317, -0.03145156428217888, -0.005120418034493923, 0.01956865005195141, 0.011555860750377178, -0.002924736589193344, 0.0135999396443367, -0.006970309652388096, 0.006115203257650137, 0.01526245754212141, -0.030824711546301842, -0.0016676278319209814, -0.027090860530734062, 0.013129801489412785, -0.01025446318089962, -0.016652431339025497, -0.009927410632371902, -0.006394560914486647, -0.003747478360310197, -0.0005084646982140839, -0.01778348721563816, 0.004108598921447992, 0.00965486653149128, -0.011882913298904896, 0.03183312341570854, 0.026327738538384438, 7.159599772421643e-05, 0.016747821122407913, -0.03548521175980568, -0.005794964265078306, -0.01189654041081667, -0.017306536436080933, -0.0153714744374156, 0.004909196402877569, -0.0019129173597320914, -0.01062921155244112, -0.003066118573769927, -0.012639222666621208, -0.01057470217347145, 0.0031223308760672808, -0.004769518040120602, -0.0014870675513520837, 0.0019401716999709606, 0.00827170629054308, -0.026872826740145683, 0.0030576016288250685, 0.025496479123830795, 0.022702904418110847, -0.005863100290298462, -0.006026626564562321, -0.003066118573769927, 0.03641186282038689, 0.007753873243927956, 0.00271351495757699, 0.014826387166976929, 0.018069658428430557, -0.025755396112799644, -0.009913783520460129, 0.013729398138821125, -0.02001834847033024, 0.0009079118026420474, -0.030497658997774124, -0.011583114974200726, -0.008333029225468636, -0.002609607530757785, -0.005311198998242617, 0.005750675685703754, -0.023711318150162697, -0.0287261251360178, -0.02461071126163006, -0.0034255357459187508, 0.009205169044435024, -0.004851281177252531, 0.008040044456720352, -0.02503315545618534, -0.018423965200781822, 0.006145864259451628, 0.0010237429523840547, 0.005355487111955881, -0.020944997668266296, -0.012850443832576275, -0.014036010019481182, -0.02005922980606556, -0.012577899731695652, -0.018124166876077652, -0.00235750456340611, 0.014540215954184532, 0.05968710780143738, 0.01823318563401699, 0.008237638510763645, 0.010343040339648724, 0.026831945404410362, 0.016911348327994347, -0.008428419008851051, -0.00018013446242548525, -0.019936583936214447, -0.016911348327994347, 0.016897721216082573, 0.002831049496307969, 0.00591079518198967, 0.004796772263944149, -0.009477713145315647, 0.0032739334274083376, -0.001245184801518917, 0.01565764658153057, -0.000882360793184489, -0.009579917415976524, -0.03104274719953537, -0.047231853008270264, -0.005989151541143656, 0.039764150977134705, -0.015289711765944958, 0.01624361425638199, -0.03224194049835205, -0.00202193483710289, 0.01526245754212141, -0.004793365485966206, 0.03322310000658035, 0.019514141604304314, 0.04322545975446701, -0.00015500932931900024, -0.009988732635974884, 0.01673419401049614, 4.9185651732841507e-05, -0.010424803011119366, -0.0065751210786402225, -0.04423386976122856, -0.01943237893283367, 0.002083257306367159, 0.022171445190906525, 0.009164287708699703, -0.01827406696975231, 0.0026726333890110254, 0.009409577585756779, 0.03003433533012867, -0.024106506258249283, -0.02170811966061592, 0.009995547123253345, -0.018587492406368256, -0.019745804369449615, -0.027363404631614685, -0.036766167730093, -0.01456747017800808, -0.0075630927458405495, -0.011814776808023453, 0.025046782568097115, 0.016461649909615517, -0.024065624922513962, -0.008782726712524891, 0.02390209771692753, 0.004183548502624035, 0.03556697443127632, 0.0009556069853715599, 0.027281641960144043, 0.0011574598029255867, -0.002752693137153983, -0.012278101406991482, -0.021912528201937675, 0.01920071616768837, -0.015303338877856731, -0.005174926947802305, 0.03600304573774338, -0.027227133512496948, 0.0014896226348355412, 0.016298124566674232, -0.012748239561915398, 0.006926021073013544, -0.03363191336393356, 0.015998326241970062, 0.008292147889733315, -0.0018021963769569993, -0.03556697443127632, -0.02704997919499874, -0.007569906301796436, 0.014254044741392136, 0.00898713432252407, 0.02563275210559368, 0.0003947627847082913, 0.008564691059291363, 0.001067179604433477, 0.04592364281415939, -0.01864200085401535, 0.02226683497428894, -0.012857257388532162, -0.007127022370696068, -0.019623158499598503, -0.005771116819232702, -0.0005961897550150752, -0.02477423846721649, 0.010527007281780243, 0.017715351656079292, -0.000332162861013785, -0.009402764029800892, 0.012325797230005264, 0.016911348327994347, -0.010111377574503422, -0.0009070601081475616, -0.008918998762965202, 0.034422293305397034, -0.008333029225468636, -0.005849473178386688, -0.010731414891779423, -0.011542233638465405, 0.014390316791832447, -0.009286932647228241, -0.010990331880748272, 0.00012243182573001832, 0.005914201959967613, 0.019677668809890747, 0.0031087035313248634, 0.005958490539342165, -0.00947089958935976, -0.009532222524285316, 0.0019520955393090844, -0.011242435313761234, -0.005188554059714079, 0.0035771382972598076, 0.02080872468650341, -0.029162194579839706, -0.02477423846721649, 0.01542598381638527, -0.00569616723805666, 0.021081268787384033, -0.002926439978182316, 0.0031342545989900827, -0.010479312390089035, 0.028399072587490082, -0.018478475511074066, -0.015971072018146515, 0.024011114612221718, 0.012523391284048557, -0.027540558949112892, 0.014989913441240788, 0.005668912548571825, -0.006305983755737543, 0.026804691180586815, -0.00797872245311737, -0.013954246416687965, -0.032787028700113297, -0.0018345610005781054, -0.0037236306816339493, 0.01057470217347145, -0.014431198127567768, 0.0067318337969481945, -0.005668912548571825, 0.004561703186482191, 0.008884930051863194, -0.01568490080535412, -0.008476114831864834, -0.001089323777705431, 0.012428000569343567, 0.0002203772746725008, -0.019718550145626068, 0.015289711765944958, -0.019064445048570633, 0.031124509871006012, -0.01677507534623146, -0.02711811661720276, -0.022593887522816658, -0.02842632681131363, -0.015153439715504646, 0.009416391141712666, 0.000536144885700196, 0.0037100035697221756, -0.017647216096520424, -0.01113341748714447, 0.02057706192135811, -0.011576301418244839, 0.008189943619072437, 0.007876518182456493, -0.01871013641357422, 0.002250190358608961, 0.017619961872696877, -0.006977123208343983, -0.048839863389730453, -0.012966275215148926, -0.02057706192135811, -0.03706596791744232, -0.008476114831864834, -0.011003958992660046, 0.060504741966724396, 0.011957862414419651, -0.02173537388443947, -0.016952229663729668, -0.015248829498887062, -0.043579764664173126, -0.006459289696067572, -0.028262799605727196, 0.03166959807276726, 0.03523992374539375, 0.04524228349328041, 0.021871646866202354, 0.022280462086200714, -0.004929637536406517, 0.01793338730931282, -0.039355337619781494, -0.008837235160171986, -0.01651615835726261, -0.04221704602241516, 0.0007784534245729446, -0.013926992192864418, -0.04188999533653259, -0.0026913706678897142, 0.0003819872799795121, -0.02151733823120594, 0.013892924413084984, 0.019732177257537842, -0.014949031174182892, -0.007767500355839729, -0.013817974366247654, 0.008884930051863194, 0.027486050501465797, 0.027513304725289345, 0.0108336191624403, -0.028971415013074875, 0.008619200438261032, 0.007753873243927956, -0.004858094733208418, -0.02861710637807846, 0.01219633873552084, 0.021544594317674637, -0.01740192621946335, 0.018873663619160652, 0.005018214229494333, -0.004994366317987442, 0.0025602090172469616, -0.015671273693442345, 0.011119790375232697, 0.010111377574503422, 0.01782437041401863, 0.03690244257450104, -0.012209965847432613, 0.002870227675884962, -0.013163869269192219, 0.001462368294596672, 0.007379125338047743, 0.00816268939524889, 0.009688935242593288, -0.025905296206474304, -0.015385101549327374, -0.02192615531384945, 0.00975025724619627, 0.011460470035672188, -0.015221575275063515, -0.006428628694266081, 0.0032603060826659203, -0.03564874082803726, -0.006394560914486647, 0.017497316002845764, -0.012298542074859142, -0.017728978767991066, -0.010186327621340752, -0.008053671568632126, -0.0006971161346882582, -0.00011040156095987186, -0.008700963109731674, -0.009995547123253345, -0.0023592079523950815, -0.011126603931188583, 0.005645065102726221, -0.045705609023571014, 0.01230535563081503, 0.02894415892660618, -0.010663279332220554, 0.002333656884729862, 0.19677667319774628, 0.007944653742015362, 0.027554186061024666, 0.019064445048570633, 0.022648395970463753, -8.037914813030511e-05, 0.0016216360963881016, 0.01034985389560461, -0.009021202102303505, 0.000575323065277189, 0.014717369340360165, 0.007222412619739771, -0.030279625207185745, -0.0008840641821734607, 0.011842031031847, -0.024856001138687134, -0.02823554538190365, -0.02308446727693081, -0.002754396526142955, 0.008019603788852692, 0.007597160525619984, -0.003379544010385871, -0.025169426575303078, -0.008721403777599335, 0.031288035213947296, 0.01793338730931282, -0.003580545075237751, 0.02252575196325779, 0.027227133512496948, 0.02252575196325779, -0.004796772263944149, -0.0014283002819865942, 0.01542598381638527, 0.0007439596229232848, -0.023411519825458527, 0.0075630927458405495, 0.017388299107551575, -0.024406304582953453, -0.004909196402877569, 0.0025414717383682728, 0.011882913298904896, -0.0173746719956398, 0.00021803510026074946, -0.04265311732888222, 0.005151079036295414, -0.020154619589447975, -0.01696585677564144, 0.00048504292499274015, 0.00028957787435501814, 0.0066534774377942085, -0.0071951583959162235, 0.002330250106751919, 0.0028395664412528276, -0.009900156408548355, 0.0028940753545612097, 0.014758250676095486, -0.012203152291476727, 0.012182711623609066, -0.010302158072590828, -0.005266910418868065, -0.008360283449292183, -0.0034698243252933025, -0.00482743326574564, -0.002546581905335188, -0.03202390670776367, 0.03891926631331444, -0.0023711316753178835, 0.03414974734187126, -0.00023251399397850037, -0.0012596637243404984, -0.006183339282870293, 0.009116592817008495, -0.03807437792420387, -0.0032926707062870264, -0.012346237897872925, -0.007712991908192635, 0.0211494043469429, 0.041562940925359726, 0.04251684620976448, 0.0035975791979581118, 0.01247569639235735, 0.0036554946564137936, -0.01875101961195469, -0.008605573326349258, 0.020290890708565712, 0.005001180339604616, 0.02260751463472843, -0.03063393197953701, 0.00967530719935894, -0.022062426432967186, 0.0010084123350679874, 0.018723763525485992, 0.0015253940364345908, -0.021340185776352882, 0.0010237429523840547, 0.003662308445200324, 0.016379887238144875, 0.01338871754705906, -0.013456854037940502, -0.02681831829249859, -0.011365079320967197, 0.0448334664106369, 0.02529207244515419, 0.02951650135219097, -0.01526245754212141, 0.023411519825458527, -0.006769308354705572, 0.011528605595231056, 0.01542598381638527, -0.012393932789564133, -0.004224430304020643, -0.030361387878656387, 0.019773058593273163, -0.016870465129613876, -0.0053418600000441074, 0.01763358898460865, 0.023820335045456886, 0.005059095565229654, 0.025169426575303078, -0.004186955280601978, 0.018178677186369896, -0.0034749344922602177, -0.000547217030543834, 0.001501546474173665, -0.017797114327549934, -0.040663547813892365, 0.002781650982797146, 0.01279593538492918, -0.03085196763277054, -0.026736553758382797, 0.0006494209519587457, -0.017769860103726387, 0.028044765815138817, 0.0008312588324770331, -0.0018788493471220136, -0.017579080536961555, -0.013245631940662861, -0.006871512625366449, 0.017497316002845764, 0.0014564063167199492, 0.008401164785027504, -0.002618124708533287, 0.0018175269942730665, -0.0022655208595097065, 0.005038654897361994, 0.016870465129613876, -0.022253207862377167, 0.014880895614624023, -0.028671616688370705, -0.021585475653409958, 0.0076857372187078, -0.0046843476593494415, -0.011535419151186943, -0.02237585186958313, 0.030661186203360558, -0.031996652483940125, -0.04251684620976448, -0.02600068598985672, 0.019118953496217728, 0.024624338373541832, -0.05047512426972389, 0.011644436977803707, 0.04161744937300682, 0.00814224872738123, -0.018096912652254105, -0.010956264100968838, -0.17301085591316223, -0.00020813409355469048, 0.013906551524996758, -0.004152887500822544, -0.008830421604216099, 0.03295055404305458, -0.001687216921709478, -0.012632409110665321, -0.01898268051445484, -0.0018481881124898791, 0.014145026914775372, -0.01808328554034233, -0.03807437792420387, -0.024161014705896378, 0.011221993714571, -0.015902934595942497, 0.010213581845164299, 0.026327738538384438, 0.05717970430850983, 0.011474097147583961, 0.021830763667821884, -0.024147387593984604, -0.008728217333555222, -0.0020730369724333286, 0.016706939786672592, 0.018478475511074066, -0.001463219989091158, 0.025973431766033173, -0.005433843471109867, -0.03414974734187126, 0.010383921675384045, -0.007460888475179672, 0.022989075630903244, 0.00887130293995142, -0.010206768289208412, -0.013048037886619568, 0.002875337842851877, -0.015698527917265892, -0.009866088628768921, 0.013913365080952644, 0.03635735437273979, 0.016557039692997932, 0.022593887522816658, 0.006895360071212053, 0.019078072160482407, 0.024924136698246002, 0.040063951164484024, -0.013722584582865238, 0.022961821407079697, -0.00531460577622056, 0.013116174377501011, -0.016311751678586006, -0.007379125338047743, 0.008816794492304325, 0.021013133227825165, 0.02428365871310234, 0.02027726359665394, 0.02812652848660946, 0.016652431339025497, -0.014880895614624023, 0.012823189608752728, -0.016679685562849045, 0.005720014683902264, -0.021312931552529335, -0.019187089055776596, -0.03485836088657379, -0.0020985878072679043, 0.029489247128367424, -0.005951676983386278, 0.016788702458143234, 0.005890354514122009, 0.007426820695400238, 0.013456854037940502, 0.003628240432590246, 0.01886003650724888, 0.008312588557600975, -0.03453131020069122, -0.0006302577094174922, 0.023247992619872093, -0.006261695642024279, 0.004766111262142658, 0.021054014563560486, 0.017006738111376762, -0.0014794021844863892, -0.010452057234942913, -0.015385101549327374, -0.0013550540897995234, -0.008878116495907307, -0.008251265622675419, 0.006367306225001812, 0.032296448945999146, -0.008305775001645088, 0.005260096862912178, -2.5723989892867394e-05, 0.014880895614624023, 0.009777511470019817, 0.016897721216082573, -0.0011864175321534276, -0.002740769414231181, -0.013531803153455257, -0.0038326482754200697, 0.017347417771816254, -0.03404073044657707, 0.021244795992970467, 0.03589402884244919, 0.01696585677564144, 0.020304519683122635, -0.006261695642024279, 0.03575775772333145, -0.02503315545618534, -0.03387720510363579, 0.008993947878479958, 0.03196939826011658, 0.0067318337969481945, -0.031996652483940125, 0.04020022228360176, -0.01005005557090044, -0.013797533698379993, 0.006091355811804533, -0.03153332695364952, 0.03207841515541077, -0.04240782558917999, -0.015971072018146515, 0.0014776987954974174, 0.0006230182480067015, -0.01707487367093563, -0.10449331998825073, -0.012864070944488049, 0.025428343564271927, 0.010322599671781063, -0.009252864867448807, 0.0033829507883638144, 0.015589510090649128, 0.03829241544008255, 0.016979483887553215, 0.008012790232896805, -0.020236382260918617, 0.010826805606484413, 0.001579902833327651, -0.013068478554487228, 0.013170682825148106, -0.0072496673092246056, 0.0032126109581440687, -0.012666476890444756, -0.01684321090579033, 0.03314133360981941, -0.005038654897361994, 0.0013865670189261436, 0.019595904275774956, 0.0030116098932921886, -0.0041562942788004875, -0.012005557306110859, -0.028998669236898422, 0.023207111284136772, 0.013013970106840134, 0.011296943761408329, 0.01542598381638527, -0.016597922891378403, 0.0025721327401697636, -0.03540344908833504, 0.0016727379988878965, -0.0067556812427937984, -0.030088843777775764, -0.011371892876923084, 0.0094504589214921, -0.017020365223288536, 0.013668075203895569, -0.00827170629054308, 0.007815195247530937, -0.031696852296590805, -0.006588748190551996, 0.011603555642068386, -0.034831106662750244, 0.02707723341882229, 0.01654341258108616, -0.00836709700524807, -0.03327760845422745, -0.030960984528064728, -0.038047123700380325, -0.023438774049282074, 0.016352633014321327, 0.02316622994840145, 0.015030794776976109, 0.027404285967350006, -0.021013133227825165, 0.001909510581754148, 0.01583479903638363, 0.0005783040542155504, -0.007440447807312012, 0.005433843471109867, -0.0004535300540737808, 0.02357504516839981, -0.0038530889432877302, 0.0065444596111774445, -0.023697689175605774, 0.010022801347076893, -0.024256404489278793, -0.00325008574873209, -0.014376689679920673, 0.011855659075081348, -0.01898268051445484, -0.003345475997775793, -0.0016676278319209814, -0.00977069791406393, 0.006139050703495741, 0.010492939502000809, -0.01210094802081585, -0.01969129592180252, 0.0015262457309290767, -0.023138975724577904, -0.0013763465685769916, 0.019623158499598503, 0.025918923318386078, -0.007699364330619574, 0.0322691947221756, -0.0428166426718235, 0.0132251912727952, 0.03622107952833176, -0.000994785106740892, 0.009382323361933231, -0.004858094733208418, 0.006977123208343983, -0.012448441237211227, -0.02447444014251232, 0.015753036364912987, 0.01915983483195305, 0.006868105847388506, -0.002926439978182316, -0.06175844371318817, 0.0031546952668577433, 0.025428343564271927, 0.002865117508918047, 0.010118191130459309, -0.015044421888887882, 0.014431198127567768, 0.004112005699425936, 3.688923970912583e-05, -0.0031802463345229626, -0.029053177684545517, 0.010111377574503422, -0.008237638510763645, 0.007174717728048563, -0.03627559170126915, -0.008816794492304325, 0.013586312532424927, 0.006483137607574463, 0.004868315067142248, 0.015357847325503826, -0.015671273693442345, -0.00026211055228486657, -0.0030627117957919836, 0.029298467561602592, -0.02943473868072033, 0.001764721586368978, -0.024924136698246002, 0.016229987144470215, -0.023738572373986244, -0.03425876423716545, 0.01486726850271225, 0.008489741943776608, -0.013552243821322918, 0.005873320624232292, -0.014226790517568588, -0.0422988086938858, 0.002987762214615941, 0.0022808515932410955, 0.030116098001599312, 0.013531803153455257, -0.019118953496217728, -0.036929696798324585, 0.012039626017212868, -0.016052834689617157, -0.027036352083086967, -0.014744623564183712, -0.006370713002979755, -0.02666841819882393, 0.015439610928297043, 0.01598469913005829, 0.06028670445084572, 0.006776121910661459, -0.029707282781600952, -0.0221850723028183, -0.003282450372353196, -0.0019350615330040455, 0.007501770276576281, 0.02853534370660782, 0.006084542255848646, -0.0016846618382260203, 0.04262586310505867, -0.0015066566411405802, 0.01133782509714365, 0.0037031900137662888, 0.01400875486433506, -0.034122493118047714, -0.05652559921145439, -0.017606334760785103, 0.010179514065384865, -0.02136744000017643, 0.009252864867448807, -0.02675018087029457, 0.025878041982650757, 0.015330593101680279, 0.006581934634596109, 0.008939439430832863, -0.001189824310131371, -0.016189105808734894, -0.009402764029800892, 0.03022511675953865, 0.011698946356773376, -0.011678504757583141, -0.028453581035137177, 0.007290548644959927, 0.021762628108263016, 0.0234251469373703, -0.020726962015032768, 0.021721746772527695, 0.009164287708699703, 0.00023017181956674904, -0.0075085838325321674, 0.012843630276620388, -0.028371818363666534, 0.007569906301796436, 0.0012187821557745337, 0.01193742174655199, -0.011474097147583961, 0.012918579392135143, 0.017497316002845764, 0.023929351940751076, -0.002585760084912181, 0.023179857060313225, 0.014444825239479542, -0.01598469913005829, -0.016148224472999573, 0.014635605737566948, -0.03346838802099228, -0.012244033627212048, 0.026722926646471024, 0.00659215496852994, -0.00532482611015439, -0.01950051449239254, 0.003033753950148821, 0.011405961588025093, -0.02853534370660782, -0.01707487367093563, 0.008939439430832863, -0.034313272684812546, -0.03177861496806145, -0.0036180198658257723, 0.0026896672789007425, 0.018914544954895973, 0.005658692214637995, -0.01595744490623474, 0.02025000937283039, -0.024556202813982964, 0.005668912548571825, -0.011276503093540668, 0.01516706682741642, -0.03464032709598541, -0.021980663761496544, 0.0009223906672559679, 0.002291071927174926, -0.0171430092304945, -0.017306536436080933, -0.007236039731651545, -0.011698946356773376, 0.012189525179564953, 0.007147463038563728, 0.0876501128077507, 0.034422293305397034, -0.010601956397294998, 0.008360283449292183, -0.019786685705184937, -0.0009811579948291183, 0.014294926077127457, -0.003798580262809992, -0.005311198998242617, -0.012986715883016586, 0.015439610928297043, -0.016652431339025497, -0.01193742174655199, -0.00840797834098339, -0.009041642770171165, 0.002740769414231181, 0.004350481554865837, 0.019473260268568993, -0.017728978767991066, 0.02159910276532173, 0.035730503499507904, -0.012918579392135143, 0.01986844837665558, -0.017947014421224594, -0.0398186594247818, -0.012455254793167114, 0.03889201208949089, 0.02091774344444275, 0.0002580649743322283, -0.026477636769413948, 0.018015149980783463, 0.012271287851035595, -0.01871013641357422, -0.017947014421224594, -0.027404285967350006, 0.01827406696975231, -0.0017263951012864709, -0.02046804502606392, 0.016039207577705383, 0.021054014563560486, 0.009818392805755138, 0.016897721216082573, -0.013817974366247654, -0.01666605845093727, -0.005961897317320108, -0.00579837104305625, -0.014022382907569408, -0.014594724401831627, 0.01610734313726425], "2622fd48-4662-4176-9e01-2fafcc0d9147": [0.012850115075707436, -0.004383196122944355, 0.004345762077718973, -0.03068237379193306, -0.0035120018292218447, 0.022052105516195297, -0.02081337571144104, -0.0307912714779377, -0.00521695613861084, -0.0300834272056818, 0.013585185632109642, 0.03454829752445221, 0.019983017817139626, -0.015191449783742428, -0.0041926223784685135, 0.02300497330725193, 0.027619581669569016, -0.0017662103055045009, 0.014483604580163956, -0.003044075332581997, -0.025509657338261604, -0.006459088530391455, -0.025346308946609497, -0.002201807452365756, -0.02299136109650135, 0.005121669266372919, 0.023141097277402878, -0.015409248881042004, -0.030872946605086327, 0.019942181184887886, 0.004713296890258789, -0.011448036879301071, -0.02745623141527176, -0.002766722347587347, -0.024475114420056343, 0.009120315313339233, -0.002397485775873065, 0.007017197553068399, 0.019465746358036995, -0.009038640186190605, 0.024366214871406555, 0.01123704481869936, -0.0023379314225167036, -0.012707185000181198, -0.02081337571144104, 0.0197652205824852, -0.001274461974389851, -0.012183107435703278, -0.013993557542562485, 0.006224274635314941, -0.002620388986542821, -0.004893661476671696, -0.022120166569948196, 0.021167298778891563, -0.017723359167575836, -0.015735946595668793, 0.02194320596754551, -0.0014786480460315943, 0.00961036141961813, -0.002183090429753065, -0.0037229943554848433, -0.004046288784593344, -0.011863215826451778, -0.0019227529410272837, -0.015450085513293743, -0.03021955117583275, -0.012428130954504013, -0.014891977421939373, -0.03503834456205368, -0.024883486330509186, 0.0263536274433136, 0.030491799116134644, 0.003209125716239214, 0.013612410053610802, -0.016225993633270264, -0.012115045450627804, -0.002208613557741046, -0.025005998089909554, -0.0054007237777113914, -0.005189731251448393, 0.01153651811182499, -0.024515951052308083, -0.030274000018835068, -0.0036855600774288177, 0.02847716212272644, 0.021616507321596146, 0.014728628098964691, -0.001989113399758935, -0.0030917187687009573, 0.01154332421720028, 0.022106554359197617, 0.005839724093675613, 0.02085421234369278, 0.015450085513293743, 0.005693390499800444, 0.02131703495979309, -0.015259511768817902, 0.004740521777421236, 0.0032533660996705294, -0.021739019080996513, -0.016906613484025, -0.016321280971169472, -0.013435449451208115, -0.011863215826451778, -0.022092942148447037, -0.019302397966384888, 0.029811179265379906, -0.004172203596681356, -0.017655296251177788, 0.016307666897773743, -0.022855237126350403, 0.028749410063028336, -0.00038944254629313946, 0.0029164589941501617, 0.01235326286405325, -0.00709887221455574, 0.03732522949576378, -0.010236532427370548, -0.015205061994493008, -0.01854010298848152, 0.00464863795787096, -0.025577718392014503, 0.05058371648192406, -0.014020782895386219, 0.014878364279866219, -0.0015365008730441332, 0.012979432940483093, -0.01581762172281742, 0.026612263172864914, -0.013768953271210194, 0.001989113399758935, -0.0023651563096791506, 0.01039307564496994, 0.01751917228102684, -0.025087673217058182, 0.013061108067631721, -0.013435449451208115, 0.008616656064987183, 0.0029351760167628527, -0.04554712399840355, 0.0307912714779377, 0.030464574694633484, 0.012713991105556488, -0.010495168156921864, -0.004839211702346802, 0.02580912970006466, 0.0004640981205739081, 0.02638085186481476, 0.00023311252880375832, 0.002336229896172881, 0.011944890022277832, -0.006299142725765705, -0.018267855048179626, 0.011965308338403702, 0.004505707882344723, 0.003981629852205515, 0.003988436423242092, 0.02518295869231224, -0.02133064717054367, -0.023889780044555664, -0.020922275260090828, -0.010059570893645287, -0.006469298154115677, -0.015313961543142796, -0.007827135734260082, 0.03901316970586777, -0.0007384732598438859, -0.005792080424726009, -0.012972626835107803, -0.010052764788269997, -0.002928369678556919, 0.006925313733518124, -0.0326697863638401, 0.013156394474208355, 0.014388318173587322, 0.01975160837173462, 0.018403979018330574, 0.0030151489190757275, 0.006459088530391455, -0.035882312804460526, 0.02137148380279541, -0.0032805909868329763, -0.00342522282153368, 0.017138024792075157, -0.03403102606534958, -0.013067914173007011, 0.03070959821343422, 0.01863539032638073, -0.0066973059438169, -0.011679448187351227, 0.009834966622292995, 0.008684718050062656, -0.0025165944825857878, 0.005104654002934694, -0.6250818967819214, -0.002976013347506523, 0.018213404342532158, -0.023277221247553825, -0.00022332860680762678, 0.01972438208758831, 0.02239241451025009, 0.002086101798340678, -0.015640659257769585, 0.036998532712459564, 0.017274148762226105, 0.012230751104652882, -0.012176301330327988, -0.005693390499800444, -0.009739679284393787, -0.023821718990802765, -0.014606116339564323, -0.024012291803956032, 0.005237374920397997, 0.003382683964446187, -0.039748240262269974, 0.022201841697096825, 0.008807229809463024, 4.3362972064642236e-05, 0.013775759376585484, -0.011461650021374226, 0.02191598154604435, -0.03618178516626358, -0.0007303908932954073, 0.025931641459465027, -0.018335916101932526, 0.011985727585852146, 0.00906586553901434, 0.02518295869231224, 0.045111529529094696, -0.00927005149424076, 0.0008950160117819905, 0.01596735790371895, 0.019288785755634308, 0.03999326005578041, -0.014851139858365059, -0.01422496885061264, 0.01815895549952984, 0.010862703435122967, -0.010454331524670124, 0.01538202352821827, 0.014361092820763588, 0.007827135734260082, -0.0165390782058239, -0.016266830265522003, 0.004073513671755791, -0.0070648412220180035, 0.004464870784431696, -0.005145491100847721, 0.01636211760342121, 0.007187352515757084, 0.017110800370573997, -0.028096014633774757, 0.017641684040427208, -0.007970066741108894, 0.02195681817829609, 0.017927544191479683, -0.021698182448744774, -0.03517447039484978, -0.04285186901688576, 0.0012872235383838415, -0.002009532181546092, -0.010311400517821312, 0.009780516847968102, -0.006394429598003626, 0.030491799116134644, -0.0036855600774288177, -0.004897064529359341, -0.013932301662862301, -0.01207420788705349, 0.020432228222489357, 0.02403951622545719, -0.014932814054191113, -0.025332696735858917, 0.010760609991848469, -0.01126426924020052, -0.006404639221727848, -0.030900171026587486, -0.0011230239178985357, 0.017396660521626472, 0.006360398605465889, -0.014401930384337902, -0.01705634966492653, -0.0017696133581921458, -0.014102457091212273, 0.014020782895386219, 0.03340485692024231, -0.004488692153245211, -0.021167298778891563, -0.00218649348244071, 0.033758778125047684, 0.0012523417826741934, -0.0023277222644537687, -0.0009375547524541616, -0.006394429598003626, -0.023399733006954193, -0.026979796588420868, 0.014374705031514168, 0.003290800144895911, 0.025632169097661972, 0.022651050239801407, -0.012101433239877224, -0.021807081997394562, 0.021602895110845566, -0.024475114420056343, -0.008630268275737762, 0.01453805435448885, -0.013013464398682117, -0.019942181184887886, 0.006397833116352558, -0.02086782455444336, 0.0005087638273835182, -0.004560157656669617, 0.004025870468467474, -0.013993557542562485, 0.0023651563096791506, -0.008534980937838554, 0.014851139858365059, 0.010508781298995018, 0.012475774623453617, 0.013666859827935696, 0.009971090592443943, 0.007976872846484184, 0.025019610300660133, -0.00561852240934968, -0.003132555866613984, -0.02687089890241623, 0.006833429913967848, -0.00505701033398509, 0.018254242837429047, -0.0073915389366447926, 0.04034718498587608, -0.01859455183148384, 0.0035426297690719366, -0.04878687858581543, -0.0073983450420200825, -0.0017296269070357084, 0.020459452643990517, -0.022828012704849243, 0.022719113156199455, -0.02465207502245903, -0.02409396693110466, 0.0032618739642202854, 0.005291824694722891, -0.010678935796022415, -0.012727603316307068, -0.004301521927118301, -0.0077862986363470554, 0.009154345840215683, -0.018771514296531677, -0.00547218881547451, 0.018444815650582314, -0.04339636489748955, -0.002043563174083829, -0.018213404342532158, -0.012373681180179119, 0.014170519076287746, -0.019329622387886047, 0.012468967586755753, -0.012373681180179119, -0.002976013347506523, 0.006350189447402954, 0.009174765087664127, -0.029457256197929382, -0.028776636347174644, 0.022596601396799088, -0.008358020335435867, 0.012543836608529091, 0.025958865880966187, 0.007684205658733845, 0.032098062336444855, -0.015518147498369217, -0.000661903468426317, 0.004029273521155119, -0.0002703339559957385, 0.011618192307651043, 0.007473213132470846, -0.003882940160110593, 0.01923433504998684, 0.030355675145983696, 0.011298300698399544, 0.014265806414186954, 0.02018720470368862, -0.024393439292907715, 0.00957633089274168, 0.024978773668408394, -0.008616656064987183, 0.0028722186107188463, 0.00020110209879931062, -0.01854010298848152, -0.0023617532569915056, -0.029212232679128647, -3.1558458431391045e-05, 0.0031665870919823647, 0.019983017817139626, 0.018390366807579994, -0.0020912066102027893, -0.012809278443455696, 0.00040241688839159906, 0.00929046981036663, -0.013231262564659119, 0.012421324849128723, -0.0218479186296463, 0.029811179265379906, 0.009419787675142288, -0.005108057055622339, -0.0009945566998794675, -0.006319561507552862, -0.006234483793377876, 0.017641684040427208, 0.040891680866479874, 0.014401930384337902, 0.016130706295371056, -0.00026118813548237085, 0.006465895101428032, 0.01756000891327858, -0.0008286554948426783, 0.039149291813373566, 0.0018070475198328495, -0.00147014029789716, 0.027728479355573654, 0.00478816544637084, 0.016634365543723106, 0.00753446901217103, -0.02295052446424961, 0.0030883157160133123, 0.02467929944396019, 0.012530223466455936, 0.017178861424326897, 0.05194495990872383, 0.022841624915599823, 0.04309689253568649, -0.007439182139933109, 0.02303219772875309, -0.0007257116376422346, -0.002659524790942669, 0.013877852819859982, 0.024978773668408394, -0.01368727907538414, 0.024801811203360558, -0.005741034168750048, 0.013632829301059246, -0.008126609027385712, -0.01858093962073326, 0.04429478198289871, 0.0218479186296463, 0.005621925462037325, -0.012434937059879303, -0.01800921931862831, 0.026612263172864914, -0.016089869663119316, 0.017723359167575836, 0.01534118689596653, 0.0005789528368040919, 0.009521881118416786, 0.006489716470241547, -0.023985067382454872, 0.004039482679218054, 0.001482051215134561, 0.007697817869484425, -0.004390002228319645, -0.013204038143157959, -0.02191598154604435, 0.0005449217860586941, -0.01374172791838646, -0.0027735286857932806, -0.013496705330908298, 0.005724018439650536, 0.010059570893645287, 0.012924984097480774, 0.014415542595088482, -0.001827466068789363, 0.005152297206223011, -0.00794964749366045, 0.0049344985745847225, -0.03555561602115631, -0.029402807354927063, 0.01155013032257557, 0.02582274191081524, -0.0003551988338585943, -0.010243338532745838, -0.0038965523708611727, -0.03547394275665283, 0.03335040435194969, 0.0062174685299396515, -0.0016436985461041331, 0.003152974648401141, -0.006884476635605097, -0.01700190082192421, -0.005206746980547905, 0.016239605844020844, 0.0317985899746418, -0.023209160193800926, -0.0020912066102027893, 0.01581762172281742, 0.012775246985256672, 0.003205722663551569, -0.03122686967253685, -0.010467943735420704, 0.03128131851553917, -0.02580912970006466, -0.0218479186296463, -0.02021442912518978, 0.01453805435448885, -0.03013787604868412, 0.017328597605228424, -0.0012948805233463645, -0.02629917673766613, -0.016103481873869896, -0.02310026064515114, 0.013993557542562485, 0.0026459123473614454, -0.015191449783742428, 0.026489751413464546, 0.009460625238716602, 0.014619728550314903, -0.03664460778236389, 0.009726067073643208, 0.028858309611678123, 0.06267153471708298, 0.016688814386725426, 0.0026884509716182947, 0.012176301330327988, 0.0030934202950447798, -0.025414370000362396, -0.02025526762008667, -0.0037229943554848433, 0.014742240309715271, -0.008385244756937027, -0.021589282900094986, 0.010821865871548653, 0.0009333008783869445, 0.0069899726659059525, 0.014674178324639797, -0.015667883679270744, -0.005659359507262707, -0.023685595020651817, -0.014143294654786587, 0.006996778771281242, 0.011699866503477097, -0.012462161481380463, 0.04108225554227829, 0.030981846153736115, 0.01969715766608715, -0.003859118325635791, 0.04881410300731659, 0.017736971378326416, 0.002821172121912241, -0.02350863255560398, -0.03228863701224327, 0.01587207056581974, 0.016117094084620476, 0.014361092820763588, -0.02021442912518978, 0.017246924340724945, -0.005863545928150415, -0.02079976350069046, -0.018281467258930206, 0.003760428400710225, -0.0030083428137004375, 0.03977546468377113, -3.6902394640492275e-05, -0.0012719095684587955, 0.009753292426466942, -0.028776636347174644, -0.007541275583207607, 0.01870345138013363, -0.016062645241618156, 0.0014241983881220222, 0.012754828669130802, 0.008854872547090054, -0.012720797210931778, 0.012788859196007252, -0.0025506254751235247, -0.025400757789611816, 0.001270208042114973, -0.00844650063663721, -0.055729206651449203, -0.03288758546113968, -0.023780880495905876, -0.022052105516195297, 0.010610873810946941, -0.012659541331231594, -0.01587207056581974, -0.02473375014960766, 0.011944890022277832, -0.006714321672916412, -0.022174617275595665, 0.004536335822194815, 0.013312937691807747, -0.04448535665869713, -0.024189254269003868, -0.008902516216039658, 0.029402807354927063, 0.005291824694722891, -0.006700708996504545, 0.008160640485584736, -0.01011402066797018, 0.008555400185286999, 0.00547218881547451, -0.03384045138955116, -0.0011885336134582758, -0.018812350928783417, 0.000989452120848, -0.0020707878284156322, -0.023249996826052666, 0.0006499926093965769, -0.006401236169040203, -0.005662762559950352, 0.0014803496887907386, -0.009433400817215443, -0.0016768787754699588, -0.0029232650995254517, -0.0015918012941256166, 0.018254242837429047, 0.020908663049340248, -0.00905225332826376, 0.024869874119758606, -0.026585036888718605, -0.004672459792345762, -0.014143294654786587, -0.00700358534231782, -0.022759949788451195, 0.00753446901217103, 0.002046966226771474, -0.0020997142419219017, -0.009133927524089813, -0.005250987131148577, -0.008916128426790237, 0.008623462170362473, -0.001808749046176672, -0.0013552856398746371, -0.004475079942494631, 0.005570878740400076, -0.020663639530539513, 0.005642344243824482, 0.02194320596754551, 0.01815895549952984, -0.01693383790552616, -0.008569012396037579, -0.003910164814442396, 0.031526342034339905, -3.411078796489164e-05, -0.005257793702185154, 0.0050161732360720634, 0.016185155138373375, -0.014973651617765427, -0.015422861091792583, 0.012346455827355385, -0.028613286092877388, 0.010828672908246517, -0.028885534033179283, -0.00929046981036663, -0.00795645359903574, 0.004611203912645578, -0.016593528911471367, 0.006911701522767544, -0.007255414966493845, -0.008126609027385712, -0.02519657090306282, -0.0004560157540254295, 0.005543654318898916, -0.009263245388865471, 0.02350863255560398, -0.022106554359197617, -0.019261561334133148, 0.016607141122221947, 0.00012995598081033677, 0.017805032432079315, -0.023808106780052185, -0.006037103943526745, -0.026040541008114815, -0.01815895549952984, -0.017709745094180107, -0.023331671953201294, -0.008004097267985344, 0.01649824157357216, 0.06327048689126968, 0.01475585252046585, 0.005029785446822643, 0.005863545928150415, 0.01871706359088421, 0.01917988620698452, -0.007500438019633293, 0.0013612410984933376, -0.01637572981417179, -0.013850627467036247, 0.014497216790914536, -0.0026799433398991823, -0.0006725381244905293, -0.007078453432768583, -0.005407529883086681, 0.01980605721473694, 0.0005806543631479144, 0.012196719646453857, -0.010746997781097889, -0.009392563253641129, -0.040782783180475235, -0.03599121421575546, -0.00659521296620369, 0.041817326098680496, -0.010542811825871468, 0.00587375508621335, -0.032560884952545166, -0.00687086395919323, 0.015804007649421692, -0.01123704481869936, 0.027061471715569496, 0.012421324849128723, 0.03188026696443558, 0.004774552769958973, -0.008888904005289078, 0.01009360235184431, -0.010828672908246517, -0.014973651617765427, -0.0120674017816782, -0.039230965077877045, -0.004175607115030289, -0.009766904637217522, 0.016253218054771423, 0.013510317541658878, -0.011482068337500095, 0.0041653974913060665, 0.02030971646308899, 0.03326873108744621, -0.029185008257627487, -0.027170371264219284, 0.0026459123473614454, -0.02239241451025009, -0.015640659257769585, -0.017668908461928368, -0.029756728559732437, 0.0004321940359659493, -0.00028862562612630427, -0.010542811825871468, 0.018866801634430885, 0.01917988620698452, -0.018431203439831734, -0.005339467898011208, 0.018417591229081154, 0.0069661508314311504, 0.04731673747301102, 0.005053607281297445, 0.02243325300514698, 0.0036106917541474104, 0.0019227529410272837, -0.01069935504347086, -0.00011453567276475951, 0.025332696735858917, -0.01374172791838646, 0.003927180543541908, 0.042470719665288925, -0.03275145962834358, 0.0034116103779524565, 0.019601870328187943, -0.011087308637797832, 0.014783077873289585, -0.03174414113163948, 0.014891977421939373, 0.01008679624646902, -0.009004609659314156, -0.033105380833148956, -0.02746984362602234, -0.02194320596754551, 0.013762147165834904, 0.009140733629465103, 0.03727078065276146, -0.004369583912193775, -0.001881915726698935, 0.005091041326522827, 0.05474911630153656, -0.012428130954504013, 0.027252046391367912, -0.007234996184706688, -0.0070648412220180035, -0.016266830265522003, -0.009692036546766758, 0.006336577236652374, -0.016130706295371056, 0.007691011764109135, 0.021589282900094986, -0.011482068337500095, -0.009841772727668285, 0.00846691895276308, 0.013040688820183277, -0.02567300572991371, -0.0009690334554761648, -0.0028654125053435564, 0.02842271327972412, -0.010467943735420704, 0.003401400987058878, -0.01502810139209032, -0.004747328348457813, 0.01289095263928175, -0.005250987131148577, -0.014660566113889217, 0.0007252862560562789, 0.006792592816054821, 0.0142521932721138, 0.007656980771571398, 0.006795995868742466, -0.010631292127072811, 0.003991839475929737, -0.0009877504780888557, -0.006258305627852678, -0.006908298470079899, 0.0057818712666630745, 0.016307666897773743, -0.018880413845181465, -0.021167298778891563, 0.01534118689596653, 0.001285522012040019, 0.02187514305114746, -0.0006023491732776165, -0.001731328433379531, -0.008609849959611893, 0.03326873108744621, -0.021493995562195778, -0.013755341060459614, 0.03128131851553917, 0.01174070406705141, -0.026544200256466866, 0.018825963139533997, 0.003940792754292488, -0.015477310866117477, 0.020010244101285934, -0.0053428709506988525, -0.02858606167137623, -0.03212529048323631, -0.001589248888194561, -0.006071134936064482, 0.017546396702528, -0.005271405912935734, 0.016103481873869896, 0.00824912078678608, 0.006486313417553902, 0.011332331225275993, -0.01506893802434206, -0.006853848695755005, 0.0017075067153200507, 0.0021388500463217497, 0.008317182771861553, -0.027701254934072495, 0.010855897329747677, -0.010753803886473179, 0.023780880495905876, -0.008276345208287239, -0.034330498427152634, -0.01858093962073326, -0.027265658602118492, -0.0037468159571290016, -0.001973799429833889, 0.00015654272283427417, 0.007303058169782162, -0.016185155138373375, -0.006928716786205769, 0.010359044186770916, -0.017750583589076996, 0.0022749740164726973, 0.016607141122221947, -0.014837527647614479, 0.004427436273545027, 0.026721160858869553, -0.011835990473628044, -0.05640982836484909, -0.005005964078009129, -0.02191598154604435, -0.03005620278418064, 0.008364826440811157, -0.008956965990364552, 0.05913231149315834, 0.0014718418242409825, -0.03188026696443558, -0.023808106780052185, -0.025536881759762764, -0.042960766702890396, -0.009916640818119049, -0.03634513542056084, 0.03713465481996536, 0.03988436236977577, 0.04475760459899902, 0.006299142725765705, 0.027565130963921547, -0.008024515584111214, 0.027497069910168648, -0.030491799116134644, 0.003255067626014352, -0.022229066118597984, -0.03656293451786041, -0.004590785596519709, -0.008909322321414948, -0.047398414462804794, -0.014619728550314903, 0.00023204906028695405, -0.020486677065491676, 0.019574645906686783, 0.00961036141961813, -0.011203013360500336, 0.00022651901235803962, -0.0029351760167628527, -0.0019772027153521776, 0.03626346215605736, 0.024774586781859398, 0.0060337008908391, -0.025496045127511024, 0.01856732740998268, 0.004726909566670656, -0.002681644866243005, -0.02191598154604435, 0.010236532427370548, 0.022351577877998352, -0.008078965358436108, 0.021766243502497673, 0.0018734079785645008, -0.005924801807850599, 0.013340162113308907, -0.014592504128813744, 0.018376754596829414, 0.01706996187567711, 0.01153651811182499, 0.02896720916032791, 0.0006759412353858352, 0.010182082653045654, -0.024475114420056343, 0.009521881118416786, 0.01203337125480175, 0.004277700092643499, 0.0191254373639822, -0.0251421220600605, -0.013993557542562485, -0.02962060458958149, 0.00588736729696393, 0.0039033587090671062, -0.010372656397521496, -0.009501462802290916, -0.006431864108890295, -0.030845722183585167, -0.003920373972505331, 0.01864900253713131, -0.02568661794066429, -0.01981966942548752, -0.017723359167575836, -0.0023889781441539526, -0.008385244756937027, 0.0017474931664764881, -0.027823766693472862, -0.01749194785952568, -0.014687790535390377, 0.00546538271009922, 0.00908628385514021, -0.04538377746939659, -0.0019142451928928494, 0.024284539744257927, -0.01652546599507332, -0.00644207326695323, 0.19776110351085663, 0.007507244125008583, 0.020949499681591988, 0.03961211442947388, 0.02469291165471077, -0.010025540366768837, -0.011972115375101566, 0.012210331857204437, -0.001142591703683138, 0.011189401149749756, 0.012298813089728355, 0.0011655626585707068, -0.03503834456205368, -0.0017032528994604945, 0.01456527877599001, -0.02458401396870613, -0.0404016338288784, -0.017655296251177788, -0.004743924830108881, 0.013911883346736431, 0.009787322953343391, -0.003074703272432089, -0.01871706359088421, -0.008344407193362713, 0.027578743174672127, 0.01701551303267479, 0.004257281310856342, 0.02858606167137623, 0.027619581669569016, 0.023290833458304405, 0.003831893438473344, -0.008426082320511341, 0.015218675136566162, -0.020432228222489357, -0.018444815650582314, 0.0032312460243701935, 0.0066054221242666245, -0.02293691225349903, -0.0033078156411647797, 0.012822890654206276, 0.011107726953923702, -0.011686254292726517, -0.0029998349491506815, -0.033677104860544205, 0.016212381422519684, -0.010746997781097889, -0.020609188824892044, 0.010290982201695442, -0.007493631914258003, 0.024325378239154816, -0.017219699919223785, -0.0017849273281171918, 0.00411094818264246, 0.0066564688459038734, 0.012768440879881382, 0.014415542595088482, -0.008426082320511341, 0.004835808649659157, -0.008078965358436108, -0.014293030835688114, -0.01422496885061264, -0.002086101798340678, -0.003243156708776951, 0.0029147574678063393, -0.023917004466056824, 0.037597477436065674, 0.013217650353908539, 0.02740178257226944, 0.012271587736904621, -0.012230751104652882, -0.0014488709857687354, 0.010821865871548653, -0.036372359842061996, 0.001989113399758935, -0.01694745011627674, -0.0010609172750264406, 0.014170519076287746, 0.030028976500034332, 0.041898999363183975, 0.007248608395457268, 0.017219699919223785, 0.006047313567250967, -0.011801959946751595, -0.018894026055932045, 0.016675202175974846, -0.005091041326522827, 0.01633489318192005, -0.02082698792219162, 0.009181571193039417, -0.015259511768817902, 0.0035698546562343836, 0.025904417037963867, 0.00010804850899148732, -0.01584484614431858, 0.0004955768235959113, -0.004893661476671696, 0.029321132227778435, 0.012931790202856064, -0.01044071838259697, -0.027810154482722282, -0.013966333121061325, 0.05333342403173447, 0.01475585252046585, 0.015286737121641636, -0.00301685044541955, 0.017805032432079315, -0.009549105539917946, 0.0207725390791893, 0.01400717068463564, -0.015300349332392216, 0.0029811179265379906, -0.03626346215605736, 0.02360391989350319, -0.013278906233608723, 0.0015798903768882155, 0.014687790535390377, 0.021670958027243614, 0.01204017736017704, 0.01815895549952984, 0.002050369279459119, 0.016647977754473686, 0.0020333537831902504, 0.00822870247066021, 0.008296764455735683, -0.026108603924512863, -0.03228863701224327, 0.0004207085585221648, 0.0038114748895168304, -0.030246775597333908, -0.035337816923856735, 0.005271405912935734, -0.012169495224952698, 0.02295052446424961, -0.005186328198760748, -0.005237374920397997, -0.01236687507480383, -0.007439182139933109, 0.0006508433725684881, 0.008936547674238682, -0.0008673658012412488, 0.006016685627400875, -0.003859118325635791, 0.0031801993027329445, -0.0008660895982757211, 0.01689300127327442, 0.008609849959611893, -0.019479358568787575, 0.009766904637217522, -0.039203740656375885, -0.026408076286315918, 0.004294715356081724, -0.002943683648481965, -0.013108750805258751, -0.014715015888214111, 0.03405825048685074, -0.03517447039484978, -0.0482696071267128, -0.03335040435194969, 0.012332843616604805, 0.010216114111244678, -0.05651872977614403, 0.016198769211769104, 0.0373796783387661, -0.00035370996920391917, -0.019002925604581833, -0.00011102622374892235, -0.17260536551475525, 0.011203013360500336, -0.00628212746232748, -0.001282118959352374, -0.0066054221242666245, 0.032070837914943695, -0.005060413386672735, -0.014048007316887379, -0.01870345138013363, -0.0029045480769127607, 0.008956965990364552, -0.0230594240128994, -0.04995754733681679, -0.023862555623054504, -0.001073678839020431, -0.027837378904223442, 0.005843127146363258, 0.024338990449905396, 0.04756176099181175, 0.003236350603401661, 0.01799560710787773, -0.026585036888718605, 0.0001492047740612179, -0.007840747945010662, 0.020554739981889725, 0.01806366816163063, -0.011904053390026093, 0.01866261474788189, -0.002412799745798111, -0.02904888428747654, 0.007874779403209686, -0.003648126032203436, 0.014170519076287746, 0.009242827072739601, -0.017369436100125313, -0.008412470109760761, -0.0004256005340721458, -0.01584484614431858, -0.009807741269469261, 0.01817256771028042, 0.04225292056798935, 0.008494144305586815, 0.017178861424326897, 0.003675350919365883, 0.016198769211769104, 0.016607141122221947, 0.03117241896688938, -0.01706996187567711, 0.017192473635077477, -0.008174252696335316, 0.015205061994493008, -0.011141757480800152, -0.0018887219484895468, -0.0006231931620277464, 0.017859483137726784, 0.024529563263058662, 0.017668908461928368, 0.02145315892994404, -0.005506219808012247, -0.018526490777730942, 0.01596735790371895, -0.013762147165834904, 0.002577850129455328, -0.019928568974137306, -0.011788347736001015, -0.03849589824676514, -0.009637586772441864, 0.02793266624212265, -0.0008984190644696355, 0.017641684040427208, 0.007146515417844057, 0.00040667076245881617, 0.018417591229081154, 0.004481886047869921, 0.013210844248533249, 0.0026867494452744722, -0.03547394275665283, 0.004502304829657078, 0.024951549246907234, -0.010229726321995258, 0.01155013032257557, 0.021575670689344406, 0.014143294654786587, -0.006401236169040203, -0.02086782455444336, 0.004451258108019829, 0.005084235221147537, -0.007044422440230846, 0.0042130411602556705, 0.01400717068463564, 0.028912760317325592, -0.00874597392976284, 0.02082698792219162, 0.006758561823517084, 0.0150417136028409, -0.0032805909868329763, 0.022855237126350403, 0.010154858231544495, -0.0008907620795071125, -0.00206228019669652, 0.008323988877236843, 0.012999852187931538, -0.037488579750061035, 0.008596236817538738, 0.028150465339422226, 0.019329622387886047, 0.018240630626678467, -0.002564237918704748, 0.029457256197929382, -0.026993410661816597, -0.03405825048685074, 0.023277221247553825, 0.022283514961600304, 0.00684363953769207, -0.02855883724987507, 0.04372306168079376, -0.02081337571144104, -0.016607141122221947, 0.016321280971169472, -0.03950321674346924, 0.042443495243787766, -0.04018383473157883, -0.019860506057739258, -0.004345762077718973, -0.0034422383178025484, -0.00927005149424076, -0.10998827964067459, -0.0015603225911036134, 0.02842271327972412, 0.0007967514102347195, 0.0004938752390444279, 0.008419276215136051, 0.005890770815312862, 0.026108603924512863, 0.007377926260232925, 0.023835331201553345, -0.026476139202713966, 0.005581088364124298, 0.006064328830689192, -0.02021442912518978, 0.009521881118416786, 0.008494144305586815, 0.0018172567943111062, -0.004383196122944355, -0.013217650353908539, 0.04347803816199303, -0.00015090632950887084, 0.011870021931827068, 0.016607141122221947, -0.004992351401597261, -0.009998315013945103, -0.02033694088459015, -0.028313813731074333, 0.017206087708473206, 0.008017709478735924, 0.0112098203971982, 0.026421688497066498, -0.011073695495724678, -0.002986222505569458, -0.02403951622545719, -0.01340822409838438, 0.0031665870919823647, -0.026625875383615494, -0.009841772727668285, 0.00751405069604516, -0.011134951375424862, 0.02244686521589756, -0.001558620948344469, 0.014306643046438694, -0.022229066118597984, -0.014878364279866219, -0.0045975917018949986, -0.027020635083317757, 0.012761634774506092, 0.007622949779033661, -0.0026118813548237085, -0.02910333313047886, -0.036372359842061996, -0.03898594528436661, -0.027592355385422707, 0.02510128542780876, 0.020976724103093147, 0.011332331225275993, 0.017859483137726784, -0.014347480610013008, -0.005125072319060564, 0.003886343212798238, 0.010025540366768837, -0.011699866503477097, 0.02026887983083725, 0.004461467731744051, 0.019275173544883728, -0.017110800370573997, -0.004740521777421236, -0.013537541963160038, 0.004869839642196894, -0.02307303622364998, 0.003927180543541908, -0.014796690084040165, 0.0024808617308735847, -0.027850991114974022, 0.0026646293699741364, 0.004413824062794447, -0.01760084740817547, 0.014823914505541325, 0.013306131586432457, 0.0033537575509399176, -0.0234950203448534, -0.0026799433398991823, -0.031662467867136, -0.005652553401887417, 0.011461650021374226, 0.025319082662463188, -0.01455166656523943, 0.02683006040751934, -0.045247651636600494, 0.023209160193800926, 0.0295117050409317, 0.005788677372038364, 0.0150417136028409, -0.0038795368745923042, 0.019955793395638466, -0.029675055295228958, -0.009821354411542416, 0.01909821107983589, 0.009011415764689445, -0.00013803834735881537, 0.004458064213395119, -0.052843376994132996, 0.0021099236328154802, 0.024366214871406555, 0.010508781298995018, 0.012809278443455696, -0.0003911441017407924, 0.011951696127653122, -0.004927692469209433, -0.0018546909559518099, 0.0011613087262958288, -0.018199792131781578, 0.013156394474208355, -0.012645929120481014, 0.005053607281297445, -0.034167151898145676, -0.012482580728828907, 0.0005572580266743898, 0.013074720278382301, 0.011788347736001015, 0.0042130411602556705, -0.0006274470360949636, -0.002620388986542821, -0.005104654002934694, 0.029402807354927063, -0.01920711062848568, 0.006326367612928152, -0.01916627399623394, 0.003644722979515791, -0.02798711508512497, -0.04453980550169945, 0.010821865871548653, 0.0031274512875825167, -0.009971090592443943, 0.004349165130406618, -0.00710567831993103, -0.04372306168079376, 0.0007584664854221046, 0.0035085987765341997, 0.024897098541259766, 0.005077429115772247, -0.017900319769978523, -0.01863539032638073, 0.012972626835107803, -0.01255064271390438, -0.014660566113889217, -0.016021806746721268, -0.015096163377165794, -0.025005998089909554, 0.002855203114449978, 0.012169495224952698, 0.05657317861914635, 0.007234996184706688, -0.01868983916938305, -0.01867622695863247, -0.0029351760167628527, 0.0028194705955684185, 0.00700358534231782, 0.02201126702129841, 0.010992021299898624, -0.011686254292726517, 0.037624701857566833, -0.005649150349199772, 0.025931641459465027, 0.004209638107568026, 0.019070986658334732, -0.03713465481996536, -0.05717212334275246, -0.023318059742450714, 0.017287760972976685, -0.03729800507426262, 0.006476104259490967, -0.02632640115916729, 0.033677104860544205, 0.027238434180617332, 0.012972626835107803, 0.021575670689344406, -0.003648126032203436, -0.021779857575893402, -0.00536328973248601, 0.023862555623054504, 0.01092395931482315, -0.025332696735858917, -0.02348140813410282, 0.00710567831993103, 0.018921250477433205, 0.01858093962073326, -0.0128569221124053, 0.028640512377023697, 0.009916640818119049, 0.004665653686970472, -0.00929046981036663, 0.008711942471563816, -0.025918029248714447, 0.001435258542187512, 0.0028381876181811094, 0.005798886995762587, -0.012407711707055569, 0.0025880595203489065, 0.015232287347316742, 0.008650686591863632, 0.00413136649876833, 0.01860816590487957, 0.008112996816635132, -0.014061619527637959, -0.010284176096320152, 0.004257281310856342, -0.04042885825037956, -0.027578743174672127, 0.014116069301962852, 0.017913931980729103, 0.006060925778001547, -0.0034082073252648115, -0.006663274951279163, 0.012189913541078568, -0.01980605721473694, -0.004182413220405579, -0.006397833116352558, -0.027578743174672127, -0.03136299178004265, 0.008875291794538498, 0.00627532135695219, 0.028259364888072014, 0.005186328198760748, -0.01973799429833889, 0.023876167833805084, -0.00792242307215929, 0.0142521932721138, -0.003175094723701477, 0.02025526762008667, -0.030573474243283272, -0.018512878566980362, 0.002404291881248355, -0.003940792754292488, -0.015804007649421692, -0.016566302627325058, -0.0015339484671130776, -0.011604580096900463, 0.01536841131746769, 0.007384732831269503, 0.0802043229341507, 0.0285043865442276, -0.008562206290662289, 0.003266978543251753, -0.020622801035642624, -0.015572597272694111, 0.015096163377165794, 0.008603043854236603, -0.00413136649876833, -0.02037777751684189, 0.015804007649421692, -0.01981966942548752, -0.005526638589799404, 0.003382683964446187, -0.019316010177135468, 0.001392719685100019, 0.001500768237747252, 0.015313961543142796, -0.004369583912193775, 0.023998679593205452, 0.026530588045716286, -0.00685044564306736, 0.01071977335959673, -0.019057374447584152, -0.026489751413464546, -0.010141246020793915, 0.018512878566980362, 0.015776783227920532, -0.004706490784883499, -0.015518147498369217, 0.010658517479896545, 0.002397485775873065, -0.03011065162718296, -0.0045975917018949986, -0.025618556886911392, 0.014374705031514168, -0.012149075977504253, -0.023181935772299767, 0.004400211852043867, 0.03117241896688938, 0.008364826440811157, 0.011590967886149883, -0.004471676889806986, -0.022828012704849243, -0.013428643345832825, 0.003828490385785699, -0.017451109364628792, -0.008575818501412868, 0.01867622695863247], "f0b5692b-ff9d-456c-a97a-d511f87d78b2": [0.002662018407136202, -0.0012199482880532742, 0.01512494869530201, -0.030855996534228325, -0.006129874382168055, 0.03024989739060402, -0.018182998523116112, -0.032371245324611664, -0.010303698480129242, -0.04270249605178833, 0.020979322493076324, 0.026062296703457832, 0.019078372046351433, 0.0037743495777249336, -0.004463099408894777, 0.022026222199201584, 0.02252212166786194, -0.005737286992371082, 0.00803771149367094, -0.014146923087537289, -0.021420123055577278, -0.010964898392558098, -0.019298773258924484, -0.004235811997205019, -0.019422747194767, -0.004714493174105883, 0.011977361515164375, -0.015483098104596138, -0.018527373671531677, 0.026709722355008125, 0.014532623812556267, 0.000594477285631001, -0.022838948294520378, 0.00309765269048512, -0.02704032137989998, 0.012080674059689045, 0.006050668191164732, -0.007831086404621601, 0.01575859822332859, -0.004445880651473999, 0.006012786645442247, 0.01880287379026413, 0.004773037042468786, -0.016185622662305832, -0.012796973809599876, 0.038845494389534, 0.009470311924815178, -0.016061648726463318, -0.015593298710882664, 0.01102688629180193, -0.009249911643564701, -0.009814686141908169, -0.03435484692454338, 0.01289339829236269, -0.02031812258064747, -0.013595923781394958, 0.02994684688746929, -0.001279352931305766, 0.00412216829136014, -0.00012472830712795258, 0.0008234866545535624, -0.013162011280655861, -0.011274836026132107, -0.005630530416965485, -0.0020300904288887978, -0.021365022286772728, -0.011357486248016357, -0.01073761098086834, -0.016268273815512657, -0.01622694917023182, 0.03639354556798935, 0.040002595633268356, -0.018306972458958626, 0.015620848163962364, -0.022356823086738586, -0.014808122999966145, -0.004001636989414692, -0.023307297378778458, -0.0058715930208563805, -0.008822886273264885, 0.012824523262679577, -0.026709722355008125, -0.032371245324611664, -0.0004920257488265634, 0.022067546844482422, 0.023775648325681686, 0.02642044797539711, 0.008340761996805668, -0.000285831221845001, 0.0009022623999044299, 0.007493599317967892, 0.006426036823540926, 0.031131496652960777, 0.007101011928170919, 0.01506984792649746, 0.024974072352051735, -0.008974411524832249, -0.008616261184215546, 0.0023124779108911753, -0.013155123218894005, -0.01294849906116724, -0.001413659192621708, -0.02022169716656208, -0.01644734852015972, -0.016406023874878883, -0.013823211193084717, 0.018926847726106644, -0.010889136232435703, -0.005210393108427525, 0.009291236288845539, -0.04091174528002739, 0.037633296102285385, 0.008120361715555191, -0.008423411287367344, 0.00927057396620512, -0.019835997372865677, 0.014876998029649258, -0.022962922230362892, -0.023279746994376183, -0.018265647813677788, 0.003023612080141902, -0.01885797269642353, 0.03168249502778053, -0.01717742346227169, 0.018458498641848564, 0.0019371091620996594, 0.012183986604213715, -0.01848604716360569, 0.006794517859816551, -0.013313536532223225, 0.021888472139835358, 0.002429565414786339, 0.022260397672653198, 0.017948823049664497, -0.027536222711205482, 0.011591661721467972, -0.011371261440217495, 0.005678743124008179, -0.017411598935723305, -0.03446504473686218, 0.02526334673166275, 0.03650374710559845, 0.009394548833370209, -0.01367857400327921, -0.0014016061322763562, 0.02768774703145027, -0.012121998704969883, 0.014959648251533508, -0.006102324463427067, -0.009821574203670025, 0.015180048532783985, -0.014243348501622677, -0.012920948676764965, 0.005086418241262436, 0.009539186023175716, 0.005010655615478754, -0.012693661265075207, 0.023555247113108635, -0.028073446825146675, -0.006952930707484484, -0.0014196857810020447, -0.0026361902710050344, 0.0019302216824144125, -0.003898324677720666, -0.012528360821306705, 0.045512594282627106, 0.008464736863970757, -0.011350599117577076, -0.01885797269642353, -0.008499174378812313, 0.0068358429707586765, 0.02972644753754139, -0.019257448613643646, 0.015014748089015484, -1.2375975529721472e-05, 0.01451884862035513, 0.00639504287391901, 0.007989498786628246, -0.010517211630940437, -0.011791398748755455, 0.019767122343182564, -0.016254497691988945, 0.0009117327281273901, 0.027770396322011948, -0.036365997046232224, -0.01947784796357155, 0.024726122617721558, 0.020469646900892258, -0.003943093121051788, -0.00906394887715578, 0.010069523938000202, 0.005441124550998211, -0.016833048313856125, -0.0006607694667764008, -0.626376748085022, 0.004308130592107773, 0.021764498203992844, -0.025139372795820236, -0.0029220215510576963, 0.018527373671531677, 0.013630361296236515, 0.0119222616776824, -0.009835349395871162, 0.031434547156095505, 0.017094772309064865, 0.025621498003602028, -0.005664967931807041, -0.01460149884223938, -0.003094209125265479, -0.028651997447013855, 0.00711478665471077, -0.0224807970225811, 0.0019250561017543077, 0.019147247076034546, -0.011619211174547672, 0.028707096353173256, 0.012597235850989819, -0.0009375608642585576, 0.007762211840599775, -0.016681523993611336, 0.024753673002123833, -0.010468998923897743, -0.0027739403303712606, 0.03013969585299492, -0.023982271552085876, 0.0029840089846402407, 0.012597235850989819, 0.01644734852015972, 0.04848799481987953, -0.018306972458958626, -0.0038018994964659214, 0.015056073665618896, 0.018362073227763176, 0.051821544766426086, -0.02038699761033058, -0.015193823724985123, 0.028087221086025238, 0.015593298710882664, -0.015414223074913025, 0.009738923981785774, 0.009952436201274395, 0.01131616160273552, -0.0024123466573655605, -0.02425777167081833, 0.006457030773162842, -0.024409297853708267, -0.004504424519836903, 0.006157424300909042, 0.01197047345340252, -0.0010667014867067337, 0.03099374659359455, -0.020662497729063034, 0.007410949096083641, 0.0031355340033769608, 0.017370272427797318, 0.012121998704969883, -0.034740544855594635, -0.03283959627151489, -0.04226169362664223, 0.00029982146224938333, -0.0057510617189109325, -0.016502447426319122, 0.005410130601376295, 0.00586814945563674, 0.029864197596907616, -0.001128688920289278, -0.005468674469739199, -0.012094448320567608, -0.004208262078464031, 0.011543449014425278, 0.03471299633383751, -0.004308130592107773, -0.013038036413490772, 0.00864381156861782, -0.0014153810916468501, -0.011288611218333244, -0.021185947582125664, -0.0011777624022215605, 0.023830747231841087, -0.005678743124008179, -0.026020972058176994, -0.013334198854863644, 0.0008962358697317541, 0.007941287010908127, 0.016984572634100914, 0.033170197159051895, -0.003829449648037553, -0.030663147568702698, -0.0013301483122631907, 0.037164945155382156, 0.005110524594783783, 0.006663655396550894, 0.003612493397668004, -0.0237343218177557, -0.02898259647190571, -0.03234369680285454, -0.0025001622270792723, -0.008313211612403393, 0.03730269521474838, 0.02789437212049961, 0.0009039842989295721, -0.01439487375319004, 0.02053852193057537, -0.03228859603404999, 0.0003859151911456138, 0.010103961452841759, -0.01186716090887785, -0.025125596672296524, 0.018761547282338142, -0.025222022086381912, 0.009366999380290508, -0.007941287010908127, 0.006970149464905262, -0.008175461553037167, 0.002105852821841836, -0.0012819358380511403, 0.015483098104596138, -0.008450961671769619, 0.011729410849511623, 0.0076657868921756744, 0.007293861825019121, 0.013162011280655861, 0.023982271552085876, 0.0010047139367088675, -0.00824433658272028, -0.023830747231841087, 0.006443255580961704, 0.0017959154210984707, 0.022205296903848648, -0.00948408618569374, 0.030855996534228325, -0.012314848601818085, -0.0030081153381615877, -0.0447411946952343, -0.001558296731673181, -0.01063429843634367, 0.013595923781394958, -0.025855671614408493, 0.014243348501622677, -0.027770396322011948, -0.0282111968845129, 0.006212524138391018, -4.1109760786639526e-05, -0.014353548176586628, -0.012211536057293415, -0.01279008574783802, -0.004649062175303698, 0.02593832276761532, -0.012783198617398739, 0.004476874601095915, 0.013244661502540112, -0.040415845811367035, -0.0015143889468163252, -0.019808446988463402, -0.009800911881029606, 0.009931773878633976, -0.012411274015903473, 0.0028255966026335955, -0.014491298235952854, 0.004042962100356817, -0.00324917770922184, -0.002911690389737487, -0.019464073702692986, -0.03449259698390961, 0.004559524357318878, -0.0036090495996177197, 0.0036744808312505484, 0.020083947107195854, -0.0009883561870083213, 0.024340422824025154, -0.02332107163965702, -0.00977336149662733, 0.005892255809158087, -0.0035642809234559536, 0.011536560952663422, -0.003963755909353495, -0.005575430579483509, -0.001640085713006556, 0.02772907167673111, 0.013954073190689087, 0.02115839719772339, 0.01843094825744629, -0.03424464538693428, 0.011226624250411987, 0.019395198673009872, 0.0022160529624670744, -7.608534360770136e-05, -0.0010770326480269432, -0.0224256981164217, 0.003288780804723501, -0.02746734768152237, 0.009973098523914814, -0.0014885608106851578, 0.020469646900892258, 0.01723252236843109, 0.008657586760818958, -0.010358799248933792, 0.0019130029249936342, 0.008616261184215546, -0.022646097466349602, 0.022343046963214874, -0.017728423699736595, 0.0282111968845129, 0.017191197723150253, -3.040185220015701e-05, -0.00935322418808937, 0.0058715930208563805, -0.013513273559510708, 0.011619211174547672, 0.024395521730184555, 0.007872411981225014, 0.009890449233353138, -0.005537549499422312, 0.0037054745480418205, 0.016667747870087624, -0.0014016061322763562, 0.04402489587664604, 0.0024398965761065483, 0.0031510309781879187, 0.023885848000645638, -0.0073351869359612465, 0.015551973134279251, 0.0029065245762467384, -0.023679222911596298, 0.002324531087651849, 0.01812789775431156, 0.014422423206269741, 0.015193823724985123, 0.045457493513822556, 0.04198619723320007, 0.03418954461812973, -0.010613636113703251, 0.03366609662771225, -0.008375199511647224, -0.011385036632418633, 0.009022624231874943, 0.004552637226879597, -0.02221907302737236, 0.04578809440135956, 0.0034265308640897274, 0.017797298729419708, -0.005082974676042795, -0.030387647449970245, 0.025538846850395203, 0.010978673584759235, 0.0004696413525380194, -0.019767122343182564, -0.006360605359077454, 0.023073121905326843, -0.02095177210867405, 0.023293523117899895, 0.013733673840761185, -0.002543209120631218, 0.003268118482083082, 0.015992773696780205, -0.03030499629676342, 0.0018148560775443912, -0.005720068234950304, 0.00585781829431653, -0.003829449648037553, -0.016571322456002235, -0.025593947619199753, -0.007390286773443222, -0.010248598642647266, 0.005678743124008179, -0.017935048788785934, 0.006715311668813229, -0.005578874610364437, -0.00906394887715578, -0.002000818494707346, 0.0042151496745646, -0.0024071810767054558, -0.009311898611485958, 0.01712232269346714, -0.023031797260046005, -0.01431222353130579, 0.02148899808526039, 0.02972644753754139, -0.0019216123037040234, -0.01753557287156582, -0.006639549508690834, -0.007472936529666185, 0.017948823049664497, 0.013651023618876934, 0.001821743557229638, -0.0013223998248577118, -0.0021506217308342457, -0.012617899104952812, -0.012886511161923409, 0.01166053581982851, 0.020566072314977646, -0.024753673002123833, 0.0005540132406167686, 0.0040360745042562485, 0.011915373615920544, 0.02983664721250534, -0.018362073227763176, -0.01134371105581522, 0.024808771908283234, -0.012569686397910118, -0.02048342302441597, -0.04044339433312416, -0.003075268352404237, -0.02201244793832302, 0.004924561828374863, -0.009821574203670025, -0.018665123730897903, -0.02115839719772339, -0.010000648908317089, 0.01031747367233038, 0.0038948808796703815, -0.01617184840142727, 0.0195329487323761, 0.013719898648560047, 0.010441448539495468, -0.019037047401070595, 0.015193823724985123, 0.03355589509010315, 0.06297929584980011, 0.015056073665618896, -0.011323048733174801, 0.017935048788785934, -0.005943912081420422, -0.02914789691567421, -0.03471299633383751, -0.02761887200176716, 0.028872396796941757, -0.001121801440604031, -0.023293523117899895, 0.013279099017381668, 0.009125936776399612, -0.0038432246074080467, 0.016901923343539238, -0.013726785778999329, -0.008134136907756329, -0.01984977349638939, -0.014325998723506927, 0.01092357374727726, 0.015675948932766914, -0.0018682341324165463, 0.04600849375128746, 0.016406023874878883, 0.023927172645926476, 0.007008030544966459, 0.037991445511579514, 0.00252771214582026, 0.004473430570214987, -0.02462969720363617, -0.025773022323846817, 0.019408972933888435, 0.009780248627066612, 0.016612648963928223, -0.014532623812556267, 0.011626098304986954, 0.00598523672670126, -0.023197097703814507, -0.021571647375822067, 0.01990487240254879, -0.006477693095803261, 0.031103946268558502, 0.00431846221908927, -0.00453197443857789, 0.00535847432911396, -0.02164052240550518, -0.0028428153600543737, 0.01234239898622036, -0.016557548195123672, 0.004173824563622475, 0.00989733636379242, 0.0027946028858423233, -0.010407011024653912, 0.010041973553597927, 0.0017786966636776924, -0.02001507207751274, -0.005437680520117283, -0.021337471902370453, -0.04322594404220581, -0.02653064765036106, -0.030497847124934196, -0.019684473052620888, 0.0062262993305921555, -0.015620848163962364, 0.002324531087651849, -0.028955046087503433, -0.006408818066120148, -0.0017718091839924455, -0.013954073190689087, 0.005272380542010069, 0.005337812006473541, -0.03697209432721138, -0.03708229586482048, -0.001392996753565967, 0.02337617240846157, 0.01775597222149372, 0.009132823906838894, 0.005964574404060841, -0.0013267045142129064, 0.011123311705887318, 0.00041949175647459924, -0.03724759444594383, -0.0062951743602752686, -0.01805902272462845, 0.0017451201565563679, -0.016516223549842834, -0.015662172809243202, 0.006054111756384373, -0.010117736645042896, 0.016240723431110382, -0.014325998723506927, -0.014587723650038242, -0.000647424953058362, 0.0029013589955866337, 0.010386348702013493, 0.03562214598059654, 0.01947784796357155, 0.0006913327379152179, 0.02767397277057171, -0.02961624599993229, -0.005441124550998211, -0.013258435763418674, -0.019753348082304, -0.008864211849868298, 0.00267923716455698, 0.016984572634100914, -0.0019233342027291656, -0.009243023581802845, 0.003929318394511938, -0.007383399177342653, -0.005878480616956949, -0.002415790455415845, -0.009194811806082726, 0.0001238673721672967, 0.013382410630583763, -0.03564969450235367, 0.016089199110865593, 0.018789097666740417, 0.015827473253011703, -0.01483567338436842, 0.011157749220728874, -0.007941287010908127, 0.03165494650602341, -0.010916686616837978, -0.0031734153162688017, 0.008926198817789555, 0.027481121942400932, -0.0224256981164217, -0.024547047913074493, 0.0032164622098207474, -0.006570674479007721, 0.005561655852943659, -0.024657247588038445, -0.020249247550964355, -0.00698736822232604, -0.0009874951792880893, 0.0018234654562547803, -0.0038638871628791094, -0.022673647850751877, -0.012982936576008797, -0.02546997182071209, 0.0025173809845000505, 0.003643487114459276, -0.017714647576212883, 0.0084578488022089, -0.022191522642970085, -0.023486372083425522, -0.0009625280508771539, 0.00885043665766716, 0.02578679658472538, -0.021971123293042183, -0.011901598423719406, -0.02756377123296261, -0.024615922942757607, -0.004521643277257681, -0.01697079837322235, -0.01454639807343483, 0.017246298491954803, 0.06419149041175842, 0.019835997372865677, 0.01134371105581522, 0.0024760558735579252, 0.02662707306444645, 0.0023159217089414597, -0.006119543220847845, 0.006054111756384373, -0.02153032273054123, -0.013203335925936699, 0.0016280326526612043, 0.006942599080502987, -0.001987043535336852, -0.009022624231874943, -0.0015255811158567667, 0.01328598614782095, 0.0022935373708605766, 0.023362398147583008, -0.013341085985302925, -0.006749749183654785, -0.026489323005080223, -0.041407644748687744, 0.0038707745261490345, 0.05708359554409981, -0.018995722755789757, 0.005410130601376295, -0.04416264593601227, -0.0023796309251338243, 0.01451884862035513, -0.009470311924815178, 0.03228859603404999, 0.003733024699613452, 0.03182024508714676, 0.0014282951597124338, -0.01454639807343483, 0.007362736854702234, 0.0007705389871262014, 0.0025621496606618166, -0.009029511362314224, -0.041628044098615646, -0.010407011024653912, 0.010517211630940437, 0.021668072789907455, 0.010854698717594147, -0.020180372521281242, 0.007727774325758219, 0.008017049171030521, 0.025456197559833527, -0.015400448814034462, -0.012452598661184311, 0.0064811366610229015, -0.024188896641135216, -0.0049107871018350124, -0.027494896203279495, -0.029506046324968338, 0.012121998704969883, 0.001918168505653739, -0.013223998248577118, 0.019023273140192032, 0.027908146381378174, -0.025125596672296524, -0.006267624441534281, 0.021984897553920746, 0.00814102403819561, 0.043198395520448685, 0.006174643058329821, 0.01181894913315773, 0.01812789775431156, -0.0035642809234559536, -0.00803771149367094, -0.010103961452841759, 0.013127573765814304, -0.020497197285294533, -0.006536236964166164, 0.039616893976926804, -0.01880287379026413, -0.011371261440217495, 0.006119543220847845, 0.0015014748787507415, 0.011267948895692825, -0.02856934629380703, 0.012700548395514488, 0.01144702360033989, 0.01255591120570898, -0.037743497639894485, -0.023968497291207314, -0.01048277411609888, 0.007961949333548546, 0.0033593778498470783, 0.035539496690034866, -0.005458343308418989, 0.010055748745799065, 0.0015935951378196478, 0.046091146767139435, -0.01927122287452221, 0.022287948057055473, -0.02064872346818447, 0.008492286317050457, -0.02290782332420349, -0.005079530645161867, -0.007231874391436577, -0.012783198617398739, 0.008168574422597885, 0.028321396559476852, -0.004239256028085947, -0.0020731373224407434, 0.021199721843004227, 0.0010064358357340097, -0.011729410849511623, -0.007176774088293314, -0.01602032408118248, 0.031379446387290955, -0.004972774535417557, 0.0007610686589032412, -0.008209899067878723, -0.025745471939444542, 0.023761872202157974, -0.011646761558949947, -0.009001961909234524, -0.001677967025898397, -0.009132823906838894, 0.012459485791623592, 0.008161686360836029, 0.010875361040234566, -0.009642498567700386, -0.00822367426007986, 0.004945224616676569, -0.009291236288845539, 0.005702849477529526, 0.006949486676603556, 0.006715311668813229, -0.028486697003245354, -0.01969824731349945, 0.009862898848950863, 0.0026551310438662767, 0.01874777302145958, -0.005007212050259113, -0.0038432246074080467, -0.005589205771684647, 0.03124169632792473, -0.00524138705804944, -0.010234823450446129, 0.02442307211458683, 0.008161686360836029, -0.029533596709370613, 0.006873724050819874, 0.0027050653006881475, 0.005227611865848303, 0.025070497766137123, -0.00669464934617281, -0.026875022798776627, -0.025345997884869576, 0.010599860921502113, -0.0040154121816158295, 0.0183345228433609, -0.00906394887715578, 0.003445471404120326, 0.002556984080001712, -0.00400508102029562, -0.003002949757501483, -0.022563448175787926, -0.009043286554515362, -0.003221627790480852, 0.021282372996211052, -0.001587568549439311, -0.01927122287452221, 0.009904223494231701, -0.02175072208046913, 0.029368296265602112, -0.006577561609447002, -0.04066379740834236, -0.02300424687564373, -0.032701846212148666, -0.0119222616776824, -0.00019360329315532, 0.0016926029929891229, 0.004752374719828367, -0.012796973809599876, -0.020290572196245193, 0.018293198198080063, -0.007941287010908127, -0.0031114278826862574, 0.024120021611452103, -0.02552507258951664, -0.002033534226939082, 0.03267429769039154, -0.009869786910712719, -0.053805142641067505, -0.018045248463749886, -0.021668072789907455, -0.03457524627447128, -0.0007967975689098239, -0.011619211174547672, 0.04722069576382637, 0.015469322912395, -0.023720547556877136, -0.02789437212049961, -0.01922989822924137, -0.040829095989465714, 0.004573299549520016, -0.021447673439979553, 0.022232847288250923, 0.03801899775862694, 0.029340747743844986, 0.006584449205547571, 0.0389556959271431, -0.014298448339104652, 0.02237059734761715, -0.03151719644665718, 0.00555476825684309, -0.018513597548007965, -0.03314264491200447, -0.009904223494231701, -0.013692348264157772, -0.035153795033693314, 0.005561655852943659, 0.0019508841214701533, -0.021860921755433083, 0.009346336126327515, 0.014739247970283031, -0.015607072971761227, 0.007266311906278133, -0.018830422312021255, 0.007035580463707447, 0.032591644674539566, 0.025979647412896156, 0.0032336809672415257, -0.029643796384334564, 0.01665397360920906, 0.015386673621833324, -0.0027291716542094946, -0.024491947144269943, 0.01454639807343483, 0.014215798117220402, -0.010434561409056187, 0.02096554823219776, 0.00805837381631136, -0.005337812006473541, -0.005082974676042795, -0.016474898904561996, 0.007087236735969782, 0.006016230676323175, 0.010641186498105526, 0.03168249502778053, -0.004346012137830257, 0.015620848163962364, -0.005372249521315098, 0.010868473909795284, 0.016254497691988945, 0.004938337020576, 0.011433248408138752, -0.034161996096372604, 0.0044114431366324425, -0.014009173959493637, 0.008698911406099796, 0.01911969855427742, 0.0009917998686432838, -0.004135943483561277, 0.0072112116031348705, -0.033638548105955124, -0.007996386848390102, 0.008740236982703209, -0.014078048057854176, -0.015841247513890266, -0.010551649145781994, -0.010227936320006847, -0.00035556714283302426, -0.002763609169051051, -0.011998023837804794, -0.02468479797244072, -0.007645124103873968, -0.011577886529266834, 0.0035918308421969414, -0.052289895713329315, 0.011226624250411987, 0.02626892179250717, -0.03052539750933647, 0.012631673365831375, 0.2032087743282318, 0.0029908965807408094, 0.012101336382329464, 0.009842236526310444, 0.021420123055577278, -0.01596522331237793, -0.014821898192167282, 0.008939974009990692, -0.014367323368787766, -0.0020128716714680195, 0.0019904873333871365, -0.001219087396748364, -0.024354197084903717, -0.006983924191445112, 0.02257722243666649, -0.012356173247098923, -0.03606294468045235, -0.011839611455798149, -0.020827798172831535, 0.012714323587715626, 0.012631673365831375, -0.005299930460751057, -0.018238097429275513, -0.0037364682648330927, 0.040470946580171585, 0.024491947144269943, 0.006749749183654785, 0.02179204858839512, 0.021971123293042183, 0.023541472852230072, -0.002940962091088295, -0.0024054590612649918, 0.0195329487323761, -0.01084092352539301, -0.01717742346227169, 0.0027429466135799885, 0.01090291142463684, -0.019519172608852386, -0.0020421436056494713, 0.021020647138357162, 0.013327310793101788, -0.021723173558712006, 0.015744823962450027, -0.054548993706703186, 0.013568373396992683, -0.012245973572134972, -0.0097113735973835, -0.0027429466135799885, 0.010682511143386364, 0.018720222637057304, -0.01938142254948616, 0.002157509094104171, 0.021461447700858116, -0.004800586961209774, 0.001383526367135346, 0.009738923981785774, -0.014119373634457588, 0.01728762313723564, -0.012521473690867424, -0.0025087716057896614, -0.01749424822628498, 0.00400508102029562, -0.0028806966729462147, 0.0044148871675133705, -0.03162739798426628, 0.03471299633383751, 0.016006547957658768, 0.023362398147583008, 0.013768111355602741, 0.0077553242444992065, -0.007576249074190855, 0.005885368213057518, -0.04237189516425133, -0.004552637226879597, -0.0019147248240187764, -0.005854374263435602, 0.026709722355008125, 0.02546997182071209, 0.045980945229530334, -0.0024433403741568327, 0.012425048276782036, 0.009642498567700386, -0.01721874810755253, -0.01734272390604019, -0.0014214076800271869, -0.013423736207187176, 0.03518134728074074, -0.03030499629676342, 0.0064604743383824825, -0.0195329487323761, -0.008795336820185184, 0.01654377393424511, -0.0013663076097145677, -7.6206410994927865e-06, -0.004872905556112528, 0.0014024670235812664, 0.017301397398114204, 0.017990147694945335, -0.0169156976044178, -0.027191847562789917, -0.014684148132801056, 0.05917739495635033, 0.019105922430753708, 0.0224807970225811, -0.00795506127178669, 0.02111707255244255, -0.0019061154453083873, 0.004807474557310343, 0.00536880549043417, -0.01990487240254879, 0.004480318166315556, -0.03914854675531387, 0.019780898466706276, -0.0034678559750318527, -0.007741549052298069, 0.009160374291241169, 0.022714972496032715, -0.0011467686854302883, 0.006873724050819874, -0.002098965458571911, 0.01801769807934761, -0.0020662497263401747, 0.019133472815155983, 0.009222361259162426, -0.01927122287452221, -0.017260072752833366, -0.008740236982703209, 0.010035086423158646, -0.02489142306149006, -0.019574273377656937, 0.014174473471939564, -0.020814022049307823, 0.021599197760224342, 0.0010451780399307609, -0.009842236526310444, -0.009856011718511581, -0.006536236964166164, -0.01491832360625267, 0.013134460896253586, 0.009814686141908169, 0.008292549289762974, 0.0013585592387244105, 0.003943093121051788, -0.0015462435549125075, -0.0031648059375584126, 0.009621836245059967, -0.006825511809438467, 0.01186716090887785, -0.035374194383621216, -0.01491832360625267, 0.009050173684954643, 0.0037812371738255024, -0.011040661484003067, -0.01171563658863306, 0.027191847562789917, -0.03457524627447128, -0.04369429498910904, -0.039258744567632675, 0.01644734852015972, 0.02903769724071026, -0.044878944754600525, 0.013217111118137836, 0.04102194681763649, 0.008485399186611176, -0.01512494869530201, -0.013478836044669151, -0.17598937451839447, 0.009174149483442307, 0.013595923781394958, -0.012590348720550537, -0.007741549052298069, 0.030057046562433243, 0.01239061076194048, -0.0055409930646419525, -0.021296147257089615, 0.0038191182538866997, 0.01225974876433611, -0.02085534855723381, -0.04862574487924576, -0.02447817288339138, 0.005506555549800396, -0.018141673877835274, 0.002746390411630273, 0.0210068728774786, 0.060114093124866486, -0.0010029920376837254, 0.014084936119616032, -0.01921612210571766, -0.0064811366610229015, -0.0006844452582299709, 0.016846822574734688, 0.024615922942757607, -0.0063158366829156876, 0.03493339568376541, -0.016061648726463318, -0.023927172645926476, 0.009050173684954643, -0.012170211412012577, 0.005058868322521448, 0.011453911662101746, -0.0073765115812420845, -0.0034127559047192335, -0.001987043535336852, -0.007638236507773399, -0.01367857400327921, 0.016612648963928223, 0.04027809575200081, 0.006026561837643385, 0.021943572908639908, 0.012982936576008797, 0.009318786673247814, 0.026695946231484413, 0.03512624651193619, -0.009814686141908169, 0.013540823943912983, 8.4640909335576e-05, 0.016474898904561996, -0.0224256981164217, 0.0036228245589882135, -0.0051656244322657585, 0.014408648014068604, 0.01515249814838171, 0.005444568116217852, 0.017356498166918755, 0.009959324263036251, -0.017191197723150253, 0.006136761978268623, -0.017191197723150253, 0.013065585866570473, -0.012073785997927189, -0.015207597985863686, -0.030442746356129646, -0.007596911862492561, 0.02022169716656208, -0.0013284264132380486, 0.026585746556520462, 0.010324361734092236, 0.007094124332070351, 0.013444398529827595, 0.0047661494463682175, 0.02111707255244255, 0.006880611646920443, -0.036558847874403, -0.00814102403819561, 0.028927497565746307, -0.0014902827097103, 0.013582148589193821, 0.02341749705374241, 0.008017049171030521, 0.0024261216167360544, -0.008988186717033386, -0.007548699155449867, 0.010544761084020138, -0.009394548833370209, -7.465941507689422e-06, 0.0021127404179424047, 0.022563448175787926, -0.012755648232996464, 0.004724824335426092, -0.006002455484122038, 0.0097113735973835, 0.013795660808682442, 0.024175122380256653, -0.0009461701847612858, 0.0006745444843545556, -0.018816648051142693, 0.002157509094104171, 0.012232198379933834, -0.0448513962328434, 0.03151719644665718, 0.016006547957658768, 0.001550548244267702, 0.006019674241542816, -0.01284518651664257, 0.03953424468636513, -0.02558017149567604, -0.022260397672653198, 0.015937672927975655, 0.020869122818112373, -0.0034661339595913887, -0.030608046799898148, 0.030497847124934196, -0.018045248463749886, -0.008891761302947998, 0.02038699761033058, -0.02451949752867222, 0.03297734633088112, -0.040002595633268356, -0.00966316182166338, 0.005348143167793751, 0.004177268128842115, -0.013423736207187176, -0.10540629178285599, -0.014381098560988903, 0.03851489722728729, 0.005747618153691292, 0.00433223694562912, 0.009697599336504936, 0.0059404680505394936, 0.027866821736097336, -0.0011863717809319496, 0.02106197364628315, -0.029643796384334564, 0.005878480616956949, -0.0004898734041489661, -0.021144622936844826, 0.002708509098738432, -0.0005157014820724726, 0.0026551310438662767, -0.005224168300628662, -0.01837584748864174, 0.035374194383621216, 0.0026585746090859175, -0.006563786882907152, 0.022439472377300262, 0.00793439894914627, -0.0003622394287958741, -0.021943572908639908, -0.026144947856664658, 0.015345348045229912, 0.013802548870444298, 0.010021311230957508, 0.0169156976044178, -0.025649046525359154, 0.0119222616776824, -0.02516692318022251, -0.010014424100518227, -0.011605435982346535, -0.016984572634100914, -0.0009676936315372586, 0.006191861815750599, -0.031489647924900055, 0.021723173558712006, 0.000767525692936033, 0.0139953987672925, -0.02341749705374241, 0.0030459966510534286, -0.0033421590924263, -0.03617314621806145, 0.03135189786553383, 0.0068151806481182575, -0.0154417734593153, -0.02668217197060585, -0.03606294468045235, -0.03575989603996277, -0.028955046087503433, 0.021544096991419792, 0.021778272464871407, 0.008423411287367344, 0.01236994843930006, -0.023555247113108635, -0.005096749402582645, -0.0036056058015674353, -0.01592389866709709, -0.009305011481046677, 0.007266311906278133, 0.00822367426007986, 0.019078372046351433, -0.013492611236870289, -0.0036779246293008327, -0.013533935882151127, 0.014036723412573338, -0.014422423206269741, 0.011075098998844624, -0.02478122152388096, 0.013223998248577118, -0.02720562182366848, -0.010730723850429058, 0.002408902859315276, -0.024175122380256653, 0.005200061947107315, 0.008127248845994473, -0.008175461553037167, -0.010055748745799065, -0.0007967975689098239, -0.02584189735352993, 0.017094772309064865, 0.015896348282694817, 0.02089667320251465, -0.01048277411609888, 0.025029173120856285, -0.0335007980465889, 0.016061648726463318, 0.03093864582479, -0.006756636779755354, 0.022494573146104813, -0.007369623985141516, 0.008051486685872078, -0.003874218324199319, -0.009298124350607395, 0.028293846175074577, 0.004194486886262894, -0.0042909118346869946, 0.0028410933446139097, -0.05430104583501816, 0.006405374500900507, 0.0064398120157420635, 0.007941287010908127, 0.011102648451924324, -0.006033449433743954, 0.0014308779500424862, 0.0010348467621952295, -0.001030542072840035, 0.002198834205046296, -0.026695946231484413, 0.026062296703457832, -0.020979322493076324, -0.002016315469518304, -0.023913396522402763, -0.019188573583960533, 0.01236994843930006, 0.004177268128842115, 0.018265647813677788, 0.008609374053776264, -0.011839611455798149, -0.0017296232981607318, -0.0008252084953710437, 0.023803196847438812, -0.019808446988463402, 0.013988510705530643, -0.004773037042468786, 0.015207597985863686, -0.010310586541891098, -0.03501604497432709, 0.018238097429275513, 0.009745811112225056, -0.012321735732257366, 0.006928824353963137, -0.008939974009990692, -0.04983794316649437, 0.001993931131437421, 0.007769098971039057, 0.027481121942400932, 0.008692024275660515, -0.014794348739087582, -0.029285646975040436, 0.01579992286860943, -0.00730074942111969, -0.01592389866709709, 0.0002492413914296776, -0.026351572945713997, -0.02756377123296261, -0.005527218338102102, 0.004828136879950762, 0.05435614287853241, 0.0075418115593492985, -0.0282111968845129, -0.029285646975040436, -0.002536321524530649, -0.0020352560095489025, 0.010641186498105526, 0.030222347006201744, 0.00453197443857789, -0.0026964559219777584, 0.04058114439249039, -0.006291730795055628, 0.019822223111987114, -0.015262698754668236, 0.022191522642970085, -0.019808446988463402, -0.049397144466638565, -0.014084936119616032, 0.014642823487520218, -0.024354197084903717, 0.009387661702930927, -0.025098048150539398, 0.025538846850395203, 0.018582472577691078, 0.01596522331237793, 0.015400448814034462, -0.005571987014263868, -0.005213837139308453, 0.00577516807243228, 0.031489647924900055, 0.02179204858839512, -0.02048342302441597, -0.012755648232996464, 0.02175072208046913, 0.02031812258064747, 0.019257448613643646, 0.0012957107974216342, 0.018155448138713837, 0.0013964404352009296, 0.0060609993524849415, -0.011908486485481262, 0.011302386410534382, -0.020097723230719566, 0.00731452414765954, 0.003180302679538727, 0.008891761302947998, -0.015538197942078114, 0.006119543220847845, 0.01297604851424694, 0.02042832225561142, 0.0022453246638178825, 0.023569023236632347, 0.007679561618715525, -0.029533596709370613, -0.004383893217891455, 0.00731452414765954, -0.03171004727482796, -0.028707096353173256, 0.026186272501945496, 0.023445047438144684, -0.00898129865527153, -0.0210068728774786, 0.010041973553597927, 0.0044596558436751366, -0.032536547631025314, -0.005072643049061298, -0.005179399624466896, -0.029120346531271935, -0.033059995621442795, 0.0029530152678489685, 0.01367857400327921, 0.008788448758423328, 0.012183986604213715, -0.019767122343182564, 0.02909279614686966, -0.009435874409973621, 0.012128885835409164, -0.011791398748755455, 0.00772088672965765, -0.03424464538693428, -0.00035556714283302426, 0.011756961233913898, 0.00453197443857789, -0.02080024778842926, -0.020304348319768906, -0.016585098579525948, -0.01801769807934761, 0.004025743342936039, 0.00443899305537343, 0.08474379032850266, 0.03256409615278244, -0.007028692867606878, 0.006729086861014366, -0.03013969585299492, -0.003433418460190296, 0.014449973590672016, 0.017397822812199593, -0.002662018407136202, -0.00945653673261404, 0.027908146381378174, -0.013960961252450943, -0.018155448138713837, -0.01215643621981144, -0.018940623849630356, -0.008375199511647224, -0.00515873683616519, 0.012004910968244076, -0.006525905337184668, 0.016309598460793495, 0.019450297579169273, 0.00659133680164814, 0.008760899305343628, -0.018665123730897903, -0.03413444757461548, -0.013754336163401604, 0.03482319787144661, 0.016364697366952896, -0.008802223950624466, -0.022618547081947327, 0.004187599755823612, 0.0028324839659035206, -0.029285646975040436, -0.028114771470427513, -0.03388649597764015, 0.008361424319446087, -0.012314848601818085, -0.013210223987698555, 0.010131511837244034, 0.02978154644370079, 0.014794348739087582, 0.027439797297120094, -0.02378942258656025, -0.009284349158406258, -0.013086248189210892, -0.011584773659706116, 0.0008398444624617696, -0.01483567338436842, 0.010544761084020138], "0eee8be4-f629-4578-9aa9-bea55eafae98": [0.009296581149101257, -0.007170049473643303, 0.014018320478498936, -0.029603559523820877, 0.005987865384668112, 0.03181403502821922, -0.020258013159036636, -0.036682672798633575, -0.00451188487932086, -0.0402362197637558, 0.022636370733380318, 0.020663732662796974, 0.022636370733380318, -0.0030656333547085524, -0.004473411478102207, 0.0209155585616827, 0.029379714280366898, 0.002378357807174325, 0.0036165029741823673, -0.007596754468977451, -0.020299984142184258, -0.011891788803040981, -0.03075076825916767, -0.01109434012323618, -0.008974803611636162, 0.00024548673536628485, 0.014829760417342186, -0.01615884341299534, -0.03405248746275902, 0.022706322371959686, 0.0016849616076797247, -0.0008604059112258255, -0.015515287406742573, -6.809360638726503e-05, -0.02272031269967556, 0.014095267280936241, -0.0032772370614111423, -0.0030918652191758156, 0.014270147308707237, -0.012710223905742168, 0.01446601189672947, 0.014207190833985806, 0.001787265995517373, -0.015039615333080292, -0.013899402692914009, 0.033324990421533585, 0.00691472552716732, 0.0010352851822972298, -0.015893027186393738, 0.018970901146531105, -0.008639034815132618, -0.01162597257643938, -0.02521059289574623, 0.017124176025390625, -0.02893202379345894, -0.011730900034308434, 0.015851056203246117, 0.0024220775812864304, 0.01077256165444851, 0.002833043923601508, -0.007484831847250462, -0.0045818365179002285, -0.013360775075852871, -0.00045643484918400645, -0.00026472346507944167, -0.03727026656270027, -0.020285993814468384, -0.0123744560405612, -0.02683347277343273, -0.0201181098818779, 0.0222726222127676, 0.029547598212957382, -0.003574531991034746, 0.007124580908566713, -0.004788193851709366, -0.011164291761815548, -0.01657855324447155, -0.027518998831510544, 0.002680898876860738, -0.015347403474152088, 0.01394137367606163, -0.023447809740900993, -0.025560351088643074, -0.01312993373721838, 0.02968750149011612, 0.01909681409597397, 0.01785167306661606, -0.004448927938938141, 0.0018974398262798786, 0.005120464600622654, 0.030275095254182816, 0.017306050285696983, 0.033324990421533585, 0.005931904073804617, 0.007260986603796482, 0.022440506145358086, -0.007135073654353619, 0.003913797438144684, -0.006110281217843294, -0.008960813283920288, -0.015921007841825485, -0.01149306446313858, -0.007212020456790924, -0.006890242453664541, -0.032009899616241455, -0.004718242213129997, 0.025028718635439873, -7.022495265118778e-05, -0.00796749908477068, 0.01122724823653698, -0.017236098647117615, 0.021391229704022408, -0.009933141060173512, -0.009744271636009216, -0.0009592127171345055, -0.014151228591799736, 0.027854766696691513, -0.01891493983566761, -0.00742187537252903, -0.014046301133930683, 0.0030359039083123207, -0.01639667898416519, 0.039089009165763855, -0.02901596575975418, 0.02430122159421444, -0.003854338778182864, 0.008981798775494099, -0.02414732612669468, 0.016676485538482666, -0.024762902408838272, 0.025350496172904968, 0.007051131222397089, 0.01880301721394062, 0.007170049473643303, -0.01124823372811079, 0.01109434012323618, -0.015207499265670776, 0.009345547296106815, -0.0036165029741823673, -0.04185909777879715, 0.030247114598751068, 0.03360479697585106, 0.008471150882542133, -0.021768968552350998, 0.009464465081691742, 0.017865663394331932, -0.007128078490495682, 0.019810320809483528, 0.0023154013324528933, 0.0067293536849319935, 0.019040852785110474, -0.011765875853598118, -0.01967041753232479, 0.0045083872973918915, 0.013766494579613209, 0.011108330450952053, -0.0024483094457536936, 0.018775036558508873, -0.017459943890571594, -0.015599229373037815, -0.021377239376306534, 0.0002675652503967285, -0.004347498062998056, -0.010359846986830235, -0.006956696510314941, 0.032121822237968445, 0.023951461538672447, -0.010849508456885815, -0.01918075606226921, -0.016186824068427086, -0.0036095078103244305, 0.014452021569013596, -0.027421066537499428, 0.00798848457634449, 0.012899093329906464, 0.007883556187152863, 0.006271169986575842, 0.003836850868538022, 0.005659092683345079, -0.02460900880396366, 0.022580409422516823, -0.00457833893597126, -0.0004131522437091917, 0.02570025436580181, -0.024874825030565262, -0.010863498784601688, 0.042222846299409866, 0.02570025436580181, -0.009660329669713974, -0.008583073504269123, 0.013234862126410007, 0.009093721397221088, 0.0008595315157435834, -0.0005591764347627759, -0.6146795749664307, 0.003422386944293976, 0.015403364785015583, -0.012087653391063213, -0.010052059777081013, 0.018145471811294556, 0.01755787618458271, 0.008639034815132618, -0.02806462161242962, 0.044853031635284424, 0.018397297710180283, 0.009828213602304459, -0.01484375074505806, -0.005099479109048843, -0.005938899237662554, -0.03198191896080971, 0.0005609252257272601, -0.019992196932435036, 0.006568464450538158, 0.0058059911243617535, -0.023461800068616867, 0.03461210057139397, 0.01499764434993267, -0.014284137636423111, 0.004609817173331976, -0.009408503770828247, 0.016214804723858833, -0.026091983541846275, -0.0017697779694572091, 0.0412994846701622, -0.018677104264497757, 0.012479383498430252, 0.01615884341299534, 0.021824929863214493, 0.04902215301990509, -0.0002255942381452769, -0.0005959010450169444, 0.007680696900933981, 0.022132718935608864, 0.037997763603925705, -0.02968750149011612, -0.005253372713923454, 0.022440506145358086, 0.009919150732457638, -0.004697256721556187, -0.005312831606715918, 0.018928930163383484, 0.013269837945699692, -0.018509220331907272, -0.01620081439614296, 0.011793856509029865, -0.01566918008029461, -0.005631112027913332, 0.0014034060295671225, 0.006124271545559168, 0.0031163482926785946, 0.018019558861851692, -0.02151714265346527, 0.009975112043321133, 0.007757643703371286, 0.005123962182551622, 0.011283209547400475, -0.02890404313802719, -0.04281044006347656, -0.04378976300358772, 0.009583382867276669, -0.014368079602718353, -0.013906397856771946, 0.00900278426706791, -0.0020600776188075542, 0.027099289000034332, 4.7873196308501065e-05, -0.022916177287697792, -0.01198272593319416, -0.01403231080621481, 0.03307316452264786, 0.028960004448890686, -0.02599405124783516, -0.015515287406742573, 0.011143306270241737, -0.012185586616396904, 0.0027718362398445606, -0.015990959480404854, -0.0035185704473406076, 0.026161935180425644, 0.005673083011060953, -0.01940460130572319, -0.013388755731284618, -0.009800232946872711, -0.0005250749527476728, 0.0095134312286973, 0.02728116326034069, -0.014480002224445343, -0.019432581961154938, 0.0038648315239697695, 0.024846844375133514, 0.011590996757149696, -0.014703847467899323, -0.008065431378781796, -0.024315211921930313, -0.025364486500620842, -0.02901596575975418, 0.01650860160589218, -0.007512812502682209, 0.023909490555524826, 0.017697779461741447, 0.006425063591450453, -0.021083442494273186, 0.013178900815546513, -0.025196602568030357, -0.014829760417342186, -0.004452425520867109, -0.019726378843188286, -0.022524448111653328, 0.011290204711258411, -0.03133836016058922, 0.003308715531602502, -0.0010440291371196508, 0.005270860623568296, 0.00554717006161809, 0.006309643387794495, -0.005323324352502823, 0.002420328790321946, -0.0027421065606176853, 0.01543134544044733, 0.007005662657320499, 0.019768349826335907, 0.014745818451046944, 0.012381451204419136, -0.0028907540254294872, -0.005260367877781391, -0.023112041875720024, 0.01506759598851204, -0.010870493948459625, 0.01846724934875965, -0.020957529544830322, 0.02946365624666214, -0.014410050585865974, 0.003224773332476616, -0.04261457547545433, 0.0015109566738829017, -0.008422184735536575, 0.015921007841825485, -0.020327964797616005, 0.008317257277667522, -0.03531161695718765, -0.026847463101148605, 0.01646663062274456, -0.001225029118359089, -0.006152252200990915, -0.00885588489472866, -0.006351614370942116, -0.019110804423689842, 0.01793561689555645, -0.03075076825916767, -0.0005639856099151075, 0.005347807426005602, -0.030470959842205048, 0.001489096786826849, -0.013934378512203693, -0.01301801111549139, 0.008072426542639732, -0.010961431078612804, -0.0030813724733889103, -0.004281044006347656, -0.005973875056952238, -0.004253063350915909, 0.019530514255166054, -0.021643055602908134, -0.03553546220064163, 0.009359537623822689, -0.009471460245549679, -0.002978193573653698, 0.033632777631282806, 0.010017083957791328, 0.01571115106344223, -0.014647886157035828, -0.0003276799980085343, -0.0032387636601924896, 0.00026865824474953115, 0.009597373194992542, 0.00660344073548913, -0.00753379799425602, 0.012255538254976273, 0.026357801631093025, 0.007848580367863178, 0.013948368839919567, 0.026721550151705742, -0.03217778354883194, 0.004064193926751614, 0.010485759936273098, -0.008764947764575481, -0.007281972095370293, 0.009457469917833805, -0.01947455294430256, 0.0039277877658605576, -0.030303075909614563, -0.00026297467411495745, 0.004791691433638334, 0.019152775406837463, 0.015683170408010483, 0.013094957917928696, -0.015725141391158104, -0.0066559044644236565, 0.003924290183931589, -0.01864912360906601, -0.00037730197072960436, -0.022468486800789833, 0.02260839007794857, 0.02376958727836609, -0.009884174913167953, -0.006529991049319506, -0.00036986960913054645, -0.008646029978990555, 0.010737585835158825, 0.022426515817642212, 0.010066050104796886, 0.008785933256149292, 0.0021370244212448597, 0.020677722990512848, 0.02746303752064705, 0.014081276953220367, 0.038753241300582886, 0.009450474753975868, 0.008338242769241333, 0.026091983541846275, 0.005875942762941122, 0.011758880689740181, 0.01266125775873661, -0.01880301721394062, -0.005498203448951244, 0.023014109581708908, 0.01484375074505806, 0.011856812983751297, 0.04628004506230354, 0.017697779461741447, 0.051904160529375076, -0.012486378662288189, 0.02697337605059147, -0.010443788953125477, -0.013969354331493378, 0.0026214399840682745, 0.02083161659538746, -0.012654262594878674, 0.04644792899489403, 0.003572783200070262, 0.023237954825162888, -0.003151324111968279, -0.025084679946303368, 0.03153422474861145, 0.011807846836745739, 0.01052773091942072, -0.028610246255993843, -0.0036584739573299885, 0.02490280568599701, -0.027630921453237534, 0.025084679946303368, 0.01160498708486557, 0.005221894476562738, 0.011667943559587002, 0.007715672720223665, -0.027756834402680397, 0.01405329629778862, -0.0031810535583645105, 0.017907636240124702, -0.009989102371037006, -0.015291442163288593, -0.02234257385134697, 0.0022664351854473352, -0.006215208675712347, 0.009562397375702858, -0.01187080331146717, 0.0014952175552025437, 0.0192926786839962, 0.015962978824973106, 0.0028994979802519083, 0.0018974398262798786, 0.010821527801454067, -0.004809179343283176, 0.015837065875530243, -0.02746303752064705, -0.019152775406837463, 0.03139432147145271, 0.02532251551747322, -0.001876454334706068, -0.005819981452077627, -0.009338552132248878, -0.026287849992513657, 0.019194746389985085, 0.010520735755562782, -4.653427458833903e-05, -0.002799816895276308, 0.010184967890381813, -0.008974803611636162, -0.007260986603796482, 0.01473182812333107, 0.0336887389421463, -0.028568275272846222, -0.0056520975194871426, 0.001965642673894763, 0.009394513443112373, 0.0057570249773561954, -0.018789026886224747, -0.016382688656449318, 0.027784815058112144, -0.018229413777589798, -0.01773975044488907, -0.027980679646134377, -0.004333507735282183, -0.026707559823989868, 0.008219324983656406, -0.0008980049751698971, -0.012353470548987389, -0.019460562616586685, -0.017152156680822372, 0.02016008086502552, -0.006351614370942116, -0.015151537954807281, 0.020034167915582657, 0.018509220331907272, 0.002848783042281866, -0.01733403094112873, 0.02463698945939541, 0.036458827555179596, 0.0716865062713623, 0.014535963535308838, 0.000757664383854717, 0.01820143312215805, -0.0027595944702625275, -0.01620081439614296, -0.03251355141401291, -0.009569392539560795, 0.03416441008448601, -0.001013425295241177, -0.020174071192741394, 0.009079731069505215, -0.002172000240534544, 0.006809798069298267, 0.015809085220098495, -0.014577934518456459, -0.008023460395634174, -0.009674319997429848, -0.01484375074505806, 0.017641818150877953, 0.018789026886224747, 3.9074584492482245e-05, 0.038557376712560654, 0.01639667898416519, 0.015990959480404854, 0.007792619522660971, 0.034752003848552704, 0.005312831606715918, -0.0011375895701348782, -0.01124823372811079, -0.030582884326577187, 0.00457833893597126, 0.020397916436195374, 0.0201181098818779, -0.012892098166048527, 0.01405329629778862, -0.001803005114197731, -0.014563944190740585, -0.013115943409502506, 0.006456541828811169, -0.005669585429131985, 0.03170211240649223, -0.001918425434269011, -0.006043826695531607, 0.010401817969977856, -0.033324990421533585, 0.010751576162874699, 0.022860215976834297, -0.009233624674379826, 0.0011900532990694046, 0.016172833740711212, -0.0008258672896772623, -0.010989411734044552, 0.004620309919118881, 0.006334126461297274, -0.02708529867231846, -0.008317257277667522, -0.00825430080294609, -0.055401746183633804, -0.029967308044433594, -0.020579790696501732, -0.03606709837913513, 0.002815556013956666, -0.006533488631248474, -0.0206497423350811, -0.029211830347776413, 0.0012547586811706424, -0.010163982398808002, -0.018299365416169167, -0.006543981377035379, 0.009681315161287785, -0.03312912583351135, -0.025980060920119286, -0.010758571326732635, 0.03010721132159233, 0.01793561689555645, -0.0060263387858867645, 0.01593499816954136, -0.000431951746577397, 0.006299150642007589, -0.00036571623058989644, -0.030582884326577187, 0.005753527395427227, -0.024105355143547058, 0.012815151363611221, -0.003969759214669466, -0.021936852484941483, 0.0009478455176576972, -0.017809702083468437, 0.008646029978990555, 0.004074686672538519, -0.010520735755562782, 0.004602822009474039, 0.004588831681758165, 0.018453259021043777, 0.03133836016058922, 0.008729971945285797, 0.0051904162392020226, 0.0266376081854105, -0.027001356706023216, 0.0031985414680093527, -0.008736967109143734, 0.0009469711221754551, -0.022398535162210464, -0.0005915290676057339, 0.00711059058085084, 0.0018257393967360258, 0.0058794403448700905, -0.0005902174743823707, -0.01642465963959694, -0.005739537067711353, 0.0009032513480633497, -0.004672773648053408, 0.009751266799867153, 0.0017977587413042784, -0.014095267280936241, 0.0007589759770780802, 0.02882010117173195, 0.01310894824564457, -0.014703847467899323, -0.019824311137199402, -0.005452734883874655, 0.0364028662443161, 0.002394096925854683, -0.004602822009474039, 0.019222727045416832, 0.01974036917090416, -0.030051250010728836, -0.02396545186638832, 0.01275219488888979, -0.030079230666160583, 0.0174039825797081, -0.01759984716773033, -0.021685026586055756, -0.0019446572987362742, -1.033222133628442e-06, -0.005372290499508381, -0.010149992071092129, -0.016900330781936646, -0.014563944190740585, -0.022734303027391434, -0.005267363041639328, -0.0038158653769642115, -0.014591924846172333, 0.009114706888794899, -0.022580409422516823, -0.035059791058301926, 0.0027718362398445606, 0.0038473436143249273, 0.023195983842015266, -0.02848433330655098, -0.004403459373861551, -0.024511076509952545, -0.01804753951728344, -0.0029659520369023085, -0.03251355141401291, -0.017459943890571594, 0.026050012558698654, 0.05554164946079254, 0.027812795713543892, 0.000584096706006676, -0.004914106801152229, 0.0225384384393692, 0.017921626567840576, -0.005365295335650444, -0.00022515704040415585, -0.019950224086642265, -0.009723286144435406, -0.0009041257435455918, 0.020355945453047752, 0.005543672479689121, -0.0010650146286934614, -0.00202510179951787, 0.0127731803804636, 0.014060291461646557, 0.017012253403663635, 0.001110483193770051, -0.011101335287094116, -0.03880920261144638, -0.04283842071890831, 0.0007218141108751297, 0.03936881572008133, -0.015025625005364418, 0.0065824552439153194, -0.02584015764296055, -0.014382069930434227, 0.02027200348675251, -0.0022506960667669773, 0.03900506719946861, 0.00777163403108716, 0.04141140729188919, 0.012248543091118336, -0.011563016101717949, 0.007107092998921871, 0.001028290018439293, -0.01392038818448782, -0.007526802830398083, -0.03497584909200668, -0.015697160735726357, -0.0029834399465471506, 0.021950842812657356, 0.00381936295889318, -0.021713007241487503, 0.014116252772510052, 0.004588831681758165, 0.03491988778114319, -0.03214980289340019, -0.02686145342886448, 0.012535344809293747, -0.03542353957891464, 0.0009128696983680129, -0.024958766996860504, -0.03021913394331932, 0.012297509238123894, -0.006610435899347067, -0.01933464966714382, 0.01884498819708824, 0.006634918972849846, -0.013850436545908451, -0.014340098947286606, 0.009702300652861595, 0.008128387853503227, 0.029267791658639908, 0.009163673035800457, 0.026133954524993896, 0.01593499816954136, 0.0022926670499145985, -0.00782059971243143, -0.012689238414168358, 0.00832425244152546, -0.007624735590070486, 0.004602822009474039, 0.042334768921136856, -0.025560351088643074, -0.006299150642007589, 0.008030455559492111, -0.01499764434993267, 0.002067072782665491, -0.03707440197467804, 0.011367151513695717, 0.006904232781380415, -0.003878821851685643, -0.03391258418560028, -0.025714244693517685, -0.028876062482595444, 0.011458088643848896, 0.004497894551604986, 0.019992196932435036, -0.0034101454075425863, 0.007205025292932987, 0.011171286925673485, 0.0358712337911129, -0.023685645312070847, 0.027071308344602585, -0.005802493542432785, 0.00023193360539153218, -0.01884498819708824, -0.008660020306706429, 0.001786391600035131, -0.014382069930434227, 0.014067286625504494, 0.024049393832683563, -0.004518880043178797, -0.008632039651274681, 0.018858978524804115, 0.013011015951633453, -0.02388150990009308, -0.0022104736417531967, -0.008981798775494099, 0.03142230212688446, 0.0021020486019551754, -0.008065431378781796, -0.02399343252182007, -0.02532251551747322, 0.007152561563998461, -0.00416212622076273, -0.007379904389381409, -0.003144328948110342, 0.002026850590482354, 0.01279416587203741, 0.020593781024217606, 0.021726997569203377, -0.015851056203246117, -0.008876870386302471, 0.00029248555074445903, -0.017501914873719215, 0.004760213196277618, 0.008464155718684196, 0.016326727345585823, -0.022804254665970802, -0.01380846556276083, 0.007019652985036373, -0.008729971945285797, 0.023349877446889877, -0.004550358280539513, -0.006334126461297274, 0.0013693044893443584, 0.03648680821061134, -0.006005353294312954, -0.0032562515698373318, 0.021796949207782745, 0.00904475525021553, -0.03206586092710495, 0.022258631885051727, 0.010723595507442951, -0.014689857140183449, 0.008897855877876282, -0.0160189401358366, -0.02267834171652794, -0.0353395976126194, 0.013402746059000492, 0.002007613889873028, 0.03447219729423523, 0.005445739720016718, 0.01778172142803669, 0.008897855877876282, -0.004382473882287741, -0.00012722465908154845, -0.011409122496843338, -0.004735730122774839, 0.000625630549620837, 0.024329202249646187, 0.008708986453711987, -0.024245260283350945, 0.016438649967312813, -0.004567846190184355, 0.02169901691377163, -0.02069171331822872, -0.029099907726049423, -0.02768688276410103, -0.030946632847189903, -0.00442794244736433, 0.0010641402332112193, -0.013269837945699692, -0.005837469361722469, -0.020999500527977943, -0.018257394433021545, 0.009107711724936962, -0.009583382867276669, 0.009191653691232204, 0.013521663844585419, -0.017348021268844604, -0.010737585835158825, 0.02136324904859066, -0.013878417201340199, -0.045272741466760635, -0.006299150642007589, -0.025406457483768463, -0.024091364815831184, 0.0031268410384655, -0.019012872129678726, 0.055065978318452835, 0.005771015305072069, -0.02719722129404545, -0.03226172551512718, -0.01378748007118702, -0.03967660292983055, -0.0007511063595302403, -0.029603559523820877, 0.04143938794732094, 0.03956468030810356, 0.02810659259557724, 0.006627923808991909, 0.03808170557022095, -0.004476909060031176, 0.011632967740297318, -0.032541532069444656, 0.00039544570608995855, -0.013507673516869545, -0.01835532672703266, 0.013745509088039398, -0.01940460130572319, -0.049749650061130524, 0.010982416570186615, 0.014270147308707237, -0.014424040913581848, 0.008820909075438976, 0.019908253103494644, -0.013640581630170345, 0.013843441382050514, -0.015501297079026699, 0.0013308310881257057, 0.03394056484103203, 0.0195584949105978, 0.00777163403108716, -0.03340893238782883, 0.0143960602581501, 0.003728425595909357, -0.004165623802691698, -0.014787789434194565, 0.02290218695998192, 0.03570334613323212, -0.013647576794028282, 0.010408813133835793, 0.01187080331146717, -0.006652406882494688, -0.007016155403107405, -0.012500368990004063, 0.0071910349652171135, 0.01669047586619854, 0.015473316423594952, 0.02136324904859066, -0.014633895829319954, 0.010625663213431835, -0.007736658211797476, 0.005354802589863539, 0.01751590520143509, 0.01435408927500248, 0.02449708618223667, -0.02694539539515972, -0.0029519617091864347, -0.014235171489417553, 0.015291442163288593, 0.012087653391063213, -0.0201181098818779, -0.009128697216510773, -0.0027770826127380133, -0.03682257607579231, -0.014535963535308838, 0.01171690970659256, -0.02189488150179386, -0.0130389966070652, -0.0029082419350743294, 0.007708677556365728, 0.0037738941609859467, -0.002474541310220957, -0.012087653391063213, -0.029547598212957382, -0.008450165390968323, -0.006334126461297274, 0.007827594876289368, -0.040823813527822495, 0.0003860459546558559, 0.02042589709162712, -0.026735540479421616, -0.004588831681758165, 0.20694510638713837, -0.0015336910728365183, 0.023531751707196236, 0.03335297107696533, 0.027980679646134377, -0.01554326806217432, 0.006155749782919884, 0.013045991770923138, -0.0027351113967597485, 0.0008468527812510729, 0.014207190833985806, 0.0013824205379933119, -0.027756834402680397, -0.008240310475230217, 0.010352851822972298, -0.021950842812657356, -0.0445452444255352, -0.014521973207592964, -0.012381451204419136, 0.00603683153167367, 0.013066977262496948, 0.00034779112320393324, -0.02890404313802719, -0.011241238564252853, 0.02599405124783516, 0.02234257385134697, -0.00030822466942481697, 0.010898474603891373, 0.015375384129583836, 0.02347579039633274, -0.0049315947107970715, -0.0026126960292458534, 0.017529895529150963, -0.011688929051160812, -0.0236576646566391, -0.0026599133852869272, 0.010471769608557224, -0.015921007841825485, 0.003079623682424426, 0.013465702533721924, 0.007449856027960777, -0.020621761679649353, -0.003161816857755184, -0.029435675591230392, 0.0030079230200499296, -0.022202670574188232, -0.019544504582881927, -0.006376097444444895, 0.004323014989495277, 0.02000618726015091, -0.01639667898416519, -0.0013596861390396953, 0.014969663694500923, -0.0003829855704680085, -0.0006304397247731686, 0.0126402722671628, -0.014745818451046944, 0.00568007817491889, -0.0192926786839962, -0.006470532156527042, -0.007505817338824272, 0.004053701180964708, 0.0006518624140881002, 0.009198648855090141, -0.027896737679839134, 0.033101145178079605, 0.004137643147259951, 0.013248852454125881, 0.002156261121854186, -0.0071910349652171135, 0.0014786040410399437, 0.019950224086642265, -0.027630921453237534, -0.0017479180824011564, -0.012066667899489403, 0.00517292832955718, 0.004455923102796078, 0.030079230666160583, 0.04717542603611946, 0.006596445571631193, 0.015123557299375534, 0.018858978524804115, -0.01778172142803669, -0.027449047192931175, 0.018900949507951736, -0.0022314591333270073, 0.02977144345641136, -0.012878107838332653, 0.020146090537309647, -0.014172214083373547, -0.009345547296106815, 0.01804753951728344, -0.017054224386811256, -0.0016744688618928194, -0.0007926402031444013, 0.006134764291346073, 0.019222727045416832, 0.006792310159653425, -0.016102882102131844, -0.033324990421533585, -0.019726378843188286, 0.046923600137233734, 0.017152156680822372, 0.02935173362493515, -0.00038801334449090064, 0.01702624373137951, -0.006400580517947674, 0.012920078821480274, 0.011535035446286201, -0.015095576643943787, -0.0002336823963560164, -0.039648622274398804, 0.017585856840014458, 0.0036025126464664936, -0.012612291611731052, 0.03077874891459942, 0.02362968400120735, 0.002306657377630472, 0.02558833174407482, -0.007729663047939539, 0.026707559823989868, 0.005907421000301838, 0.010024079121649265, -0.0006868382333777845, -0.02621789649128914, -0.026707559823989868, -0.004991053603589535, 0.010261914692819118, -0.031226439401507378, -0.02369963563978672, 0.02023003250360489, -0.008576078340411186, 0.025028718635439873, -0.0032527539879083633, -0.011891788803040981, -0.034724023193120956, -0.006516000721603632, -0.011577006429433823, -0.003843846032395959, -0.003735420759767294, 0.014983654022216797, 0.0030079230200499296, 0.003333198605105281, -0.0005246377550065517, 0.006288657896220684, 0.01624278537929058, -0.015767112374305725, 0.011220253072679043, -0.02098551020026207, -0.011465083807706833, 0.016284756362438202, 0.006078802980482578, -0.006229199003428221, -0.018481239676475525, 0.04121554270386696, -0.03326902911067009, -0.04739927127957344, -0.03433229401707649, 0.01695629209280014, 0.019376620650291443, -0.04902215301990509, 0.021796949207782745, 0.04087977483868599, 0.0077016823925077915, -0.023112041875720024, -0.004399961791932583, -0.17918828129768372, 0.015501297079026699, 0.018131481483578682, -0.009793237783014774, -0.012045682407915592, 0.03324104845523834, -0.000938227167353034, -0.001605391502380371, -0.007428870536386967, 0.0008848889847286046, 0.027742844074964523, -0.014452021569013596, -0.030359037220478058, -0.032681435346603394, 0.0013124687829986215, -0.01793561689555645, -0.006250184495002031, 0.025336505845189095, 0.0663142129778862, 0.00166222732514143, 0.01473182812333107, -0.023265935480594635, -0.012780175544321537, -0.0009854445233941078, 0.017865663394331932, 0.010716600343585014, -0.005005044396966696, 0.03438825532793999, -0.008114397525787354, -0.04639196768403053, 0.007365914061665535, -0.007477836683392525, 0.006085798144340515, 0.003373420797288418, -0.010940445587038994, -0.016298746690154076, -0.010282900184392929, -0.015948988497257233, -0.01345171220600605, 0.014452021569013596, 0.04415351152420044, -0.0010344107868149877, 0.023867519572377205, 0.005061005707830191, 0.006057817488908768, 0.02923981100320816, 0.02683347277343273, -0.015473316423594952, 0.024203289300203323, -0.015137547627091408, 0.011884793639183044, -0.0035850247368216515, -0.004865140654146671, 0.004064193926751614, 0.01771176978945732, 0.03086269088089466, 0.014703847467899323, 0.022174689918756485, 0.004134145565330982, -0.00579200079664588, 0.0060263387858867645, -0.025140641257166862, 1.0841147741302848e-05, -0.027449047192931175, -0.018411288037896156, -0.03782987967133522, -0.004959575366228819, 0.02020205184817314, -0.009128697216510773, 0.011500059626996517, 0.009009779430925846, 0.0040222229436039925, 0.009443479590117931, -0.0020793143194168806, 0.031674131751060486, 0.007645721081644297, -0.047119464725255966, -0.009240619838237762, 0.0203839261084795, 0.003836850868538022, 0.028078611940145493, 0.011653953231871128, 0.009877179749310017, 0.008485141210258007, -0.024259250611066818, -0.008380213752388954, 0.004501392133533955, -0.014123247936367989, -0.005519188940525055, 0.011108330450952053, 0.0263717919588089, 0.0033034691587090492, 0.002425575163215399, 0.0031600680667907, 0.016830379143357277, 0.01122724823653698, 0.033101145178079605, -2.4783668777672574e-05, -0.007729663047939539, -0.01624278537929058, -0.0068028029054403305, 0.012465393170714378, -0.040040355175733566, 0.022930167615413666, 0.02467896044254303, 0.011639962904155254, 0.02414732612669468, -0.003326203441247344, 0.033101145178079605, -0.022062765434384346, -0.021223345771431923, 0.008918841369450092, 0.034304313361644745, 0.013549644500017166, -0.03559142351150513, 0.03609507903456688, -0.00900278426706791, -0.03173009306192398, 0.015795094892382622, -0.029547598212957382, 0.0282884668558836, -0.03228970617055893, -0.02841438166797161, 8.077235543169081e-05, 0.006676889955997467, -0.005179923493415117, -0.10263313353061676, -0.016592543572187424, 0.02923981100320816, 0.005760522559285164, -0.019166765734553337, 0.011010397225618362, 0.01149306446313858, 0.042446691542863846, 0.005365295335650444, 0.020355945453047752, -0.0024972755927592516, 0.004798686597496271, -0.0027770826127380133, -0.007960503920912743, -0.00023149640765041113, 0.0007135073537938297, -0.005358300171792507, -0.017585856840014458, -0.013255847617983818, 0.0402362197637558, -0.0024780388921499252, 0.004763710778206587, 0.019922243431210518, 0.01184981781989336, -0.010471769608557224, -0.02125132642686367, -0.026050012558698654, 0.014424040913581848, 0.022132718935608864, 0.006946203764528036, 0.01635470800101757, -0.017697779461741447, 0.002460550982505083, -0.018900949507951736, -0.012185586616396904, -0.002782328985631466, -0.031590189784765244, -0.009793237783014774, 0.009079731069505215, -0.011926764622330666, 0.017543885856866837, -0.007617739960551262, 0.007792619522660971, -0.025266554206609726, -0.0020303481724113226, -0.0005390652804635465, -0.03514373302459717, 0.03055490367114544, 0.00832425244152546, -0.0045818365179002285, -0.019054843112826347, -0.037438150495290756, -0.027099289000034332, -0.03556344285607338, 0.02388150990009308, 0.029295772314071655, 0.012913083657622337, 0.020104119554162025, -0.0222726222127676, 0.010625663213431835, 6.21914368821308e-05, 0.0008018213557079434, -0.014647886157035828, 0.006526493467390537, 0.012871112674474716, 0.02267834171652794, -0.005641604773700237, -0.007149063982069492, -0.020355945453047752, -0.005148445256054401, -0.01586504653096199, -0.0004288913623895496, -0.02837240882217884, 0.02023003250360489, -0.022146709263324738, -0.009275595657527447, -0.00023521258844994009, -0.025084679946303368, 0.022580409422516823, 0.008827904239296913, -0.002773585030809045, -0.018411288037896156, 0.006491517648100853, -0.03175807371735573, 0.009359537623822689, 0.012500368990004063, 0.014829760417342186, -0.018621142953634262, 0.022846225649118423, -0.02882010117173195, 0.01695629209280014, 0.028987985104322433, -0.0042180875316262245, 0.014689857140183449, -0.0066314213909208775, 0.0024535558186471462, -0.012976040132343769, -0.030582884326577187, 0.014871731400489807, 0.009443479590117931, -0.00482316967099905, 0.0007170049357227981, -0.05391877144575119, 0.003249256405979395, 0.015697160735726357, 0.011024387553334236, 0.0010676378151401877, -0.012724214233458042, 0.01310894824564457, -3.8965281419223174e-05, 0.014368079602718353, 0.00246754614636302, -0.03077874891459942, 0.013640581630170345, -0.019824311137199402, -0.004214589949697256, -0.03033105656504631, -0.013241857290267944, 0.00017313046555500478, 0.013073972426354885, 0.01947455294430256, 0.0176697988063097, 0.0005757899489253759, 0.0008936329977586865, -0.002163256285712123, 0.03900506719946861, -0.01488572172820568, 0.028554284945130348, -0.0326254740357399, 0.0009522174950689077, -0.028162553906440735, -0.03010721132159233, 0.008981798775494099, 0.00376689899712801, -0.01936263032257557, 0.005095981527119875, -0.008897855877876282, -0.040599968284368515, -0.0015100822784006596, 0.014200195670127869, 0.017376001924276352, 0.014899712055921555, -0.01566918008029461, -0.025966070592403412, 0.010492755100131035, -0.022020794451236725, -0.024762902408838272, -0.020481858402490616, -0.036039117723703384, -0.01913878507912159, 0.013381760567426682, 0.006295653060078621, 0.04057198762893677, 0.0033874111250042915, -0.03559142351150513, -0.03489190712571144, -0.0110173923894763, -0.007058126386255026, 0.003906802274286747, 0.02904394641518593, 0.008016465231776237, -0.016382688656449318, 0.03567536547780037, 0.0027106283232569695, 0.023559732362627983, -0.012255538254976273, 0.026735540479421616, -0.033213067799806595, -0.05937500298023224, -0.021237336099147797, 0.009926145896315575, -0.029827404767274857, 0.00696019409224391, -0.030191153287887573, 0.020188061520457268, 0.039956409484148026, 0.01301801111549139, 0.00255323713645339, -0.00235562352463603, -0.014759808778762817, -0.0064390539191663265, 0.026931405067443848, 0.017264079302549362, -0.020299984142184258, -0.019376620650291443, 0.005582145880907774, 0.0096463393419981, 0.008653025142848492, -0.009450474753975868, 0.019376620650291443, 0.006641914136707783, 0.00649851281195879, -0.0027456041425466537, 0.002561981091275811, -0.020635752007365227, -0.003513324074447155, 0.0057570249773561954, 0.010856503620743752, -0.024063384160399437, 0.01422118116170168, 0.0053198267705738544, 0.013535654172301292, -0.0013421982293948531, 0.016928311437368393, -0.002220966387540102, -0.004721739795058966, -0.010296890512108803, 0.015361393801867962, -0.031114516779780388, -0.02358771301805973, 0.04001237452030182, 0.022594399750232697, 0.001202294835820794, -0.016452640295028687, 0.0032055366318672895, 0.009562397375702858, -0.01974036917090416, -0.009793237783014774, 0.0004896618775092065, -0.014018320478498936, -0.029715482145547867, 0.006785314995795488, 0.000207887715077959, 0.0190268624573946, 0.023112041875720024, -0.01913878507912159, 0.011919769458472729, -0.01299702562391758, 0.016326727345585823, -0.015837065875530243, 0.008876870386302471, -0.036234982311725616, -0.015697160735726357, -0.00156342051923275, -0.004788193851709366, -0.012927073985338211, -0.012962049804627895, -0.010073045268654823, -0.016270766034722328, 0.0080094700679183, -0.0014471258036792278, 0.08556491881608963, 0.02674953080713749, -0.020299984142184258, -0.0032684931065887213, -0.029071927070617676, 0.013794475235044956, 0.00457833893597126, 0.0029904351104050875, 0.0014025316340848804, -0.01989426277577877, 0.010471769608557224, -0.018061529844999313, -0.013857431709766388, -0.004784696269780397, -0.03405248746275902, -0.006117276381701231, -0.00881391391158104, 0.006337624043226242, -0.0013946620747447014, 0.02430122159421444, 0.03380066156387329, -0.0009111209074035287, 0.026875443756580353, -0.0176697988063097, -0.028652217239141464, -0.019166765734553337, 0.026161935180425644, 0.022398535162210464, -0.0033961550798267126, -0.019768349826335907, 0.0023398844059556723, 0.007372909225523472, -0.016662495210766792, -0.009142687544226646, -0.013416736386716366, 0.0030061742290854454, -0.016634514555335045, -0.012598301284015179, 0.018970901146531105, 0.02686145342886448, 0.011528040282428265, 0.02272031269967556, -0.009821218438446522, -0.01815946213901043, -0.0013465702068060637, -0.011570011265575886, -0.003910299856215715, 0.004497894551604986, 0.006043826695531607], "002dfc10-c8dc-4dd2-aa67-f97c3f65cb8e": [0.0026320742908865213, -0.0038171149790287018, 0.0060032811015844345, -0.020834507420659065, 0.004261288326233625, 0.02677532657980919, -0.028205011039972305, -0.041918862611055374, -0.013866538181900978, -0.04477823153138161, 0.027261141687631607, 0.02352730929851532, 0.02276388555765152, -0.01382489688694477, -0.002191371051594615, 0.017336642369627953, 0.023097015917301178, -0.009577488526701927, 0.013658331707119942, -0.0015381238190457225, -0.01628173142671585, -0.006846516393125057, -0.023319102823734283, -0.007752213627099991, -0.011000231839716434, 0.00029474199982360005, 0.020848387852311134, -0.018835727125406265, -0.025026394054293633, 0.021639572456479073, -0.0015632821014150977, -0.007960420101881027, -0.018641401082277298, -0.01438011322170496, -0.013880418613553047, 0.011007172055542469, -0.005076763220131397, 0.0041051339358091354, 0.022180909290909767, -0.005364781711250544, 0.010320090688765049, 0.022055985406041145, 0.009577488526701927, -0.011957980692386627, -0.01597636193037033, 0.014269069768488407, -1.3907528227719013e-05, -0.010153526440262794, -0.017336642369627953, 0.01644829660654068, -0.010153526440262794, -0.016670381650328636, -0.028954552486538887, 0.008911228738725185, -0.03153631091117859, -0.01984899863600731, 0.017156196758151054, -0.005402952898293734, 0.007585648912936449, -0.009646890684962273, -0.008022882044315338, -0.009681591764092445, -0.013935940340161324, -0.004316810052841902, -0.0022694484796375036, -0.03278554975986481, -0.021625692024827003, -0.0059651099145412445, -0.04241855815052986, -0.022042104974389076, 0.027483228594064713, 0.03342404589056969, -0.00457359803840518, 0.018710803240537643, -0.008272729814052582, -0.01213148608803749, -0.009868977591395378, -0.018336033448576927, -0.0006016293773427606, -0.01643441617488861, 0.012082904577255249, -0.01675366424024105, -0.024013124406337738, -0.01482428703457117, 0.03617237135767937, 0.026803087443113327, 0.016642622649669647, 0.0007963890093378723, 0.005319670308381319, 0.0024446886964142323, 0.03592252358794212, 0.017100675031542778, 0.026164589449763298, 0.026095187291502953, 0.009868977591395378, 0.038976214826107025, -0.010854487307369709, -0.0006645250250585377, -0.0004849471151828766, -0.018835727125406265, -0.008550337515771389, -0.006655660457909107, 0.006447454448789358, -0.008376832120120525, -0.02641443721950054, -0.01413026638329029, 0.009168016724288464, 0.004361921455711126, -0.013179457746446133, 0.005361311603337526, -0.026497717946767807, 0.029259921982884407, 0.004018381237983704, -0.011819176375865936, 0.008494815789163113, 0.001045368961058557, 0.023152537643909454, -0.012346631847321987, -0.000809401914011687, -0.02490147016942501, 0.0009690267033874989, -0.018224989995360374, 0.034534480422735214, -0.015754275023937225, 0.013186397962272167, -0.007537067402154207, 0.013880418613553047, -0.030981093645095825, 0.017905740067362785, -0.016864707693457603, 0.027760837227106094, -0.003872636705636978, 0.01768365316092968, 0.017336642369627953, -0.015782035887241364, 0.01283938717097044, -0.012665881775319576, 0.00591999851167202, -0.006489095743745565, -0.044667188078165054, 0.025415046140551567, 0.03817114979028702, 0.015310101211071014, -0.007252518553286791, 0.014192728325724602, 0.02383267879486084, -0.011263960041105747, 0.03608908876776695, 0.0012483701575547457, 0.000719612929970026, 0.01983511820435524, -0.0027327074203640223, -0.016392774879932404, 0.006062272936105728, 0.003050222061574459, 0.01800290308892727, -0.0015441965078935027, 0.032202571630477905, -0.02641443721950054, -0.015157417394220829, -0.011340301483869553, 6.219078204594553e-05, -0.019418705254793167, -0.016642622649669647, -0.00907085370272398, 0.041113801300525665, 0.014741004444658756, -0.017156196758151054, -0.0218061376363039, -0.012464615516364574, 0.0016604450065642595, 0.002968674525618553, -0.01968243345618248, 0.015435025095939636, 0.004990010522305965, 0.010098004713654518, 0.015740394592285156, -0.00953584723174572, 0.0011885107960551977, -0.020973311737179756, 0.0278024785220623, -0.008085343986749649, -0.007897958159446716, 0.01934930309653282, -0.032813310623168945, 0.004563187714666128, 0.04183558002114296, 0.032341375946998596, 0.001466119196265936, -0.014865928329527378, 0.018502598628401756, 0.009605249390006065, -0.006981850601732731, -0.0006601873901672661, -0.6160684823989868, 0.0022173968609422445, 0.00936928205192089, -0.016684262081980705, -0.00836989190429449, 0.022250311449170113, 0.009959200397133827, 0.007176176179200411, -0.015421144664287567, 0.0344511978328228, 0.008876527659595013, 0.005316200200468302, -0.010417253710329533, -0.004826915450394154, -0.006242718081921339, -0.03980904072523117, -0.008092284202575684, -0.01222170889377594, 0.019862879067659378, 0.01893289014697075, -0.030176030471920967, 0.030564680695533752, 0.01468548271805048, -0.010215988382697105, 0.012936550192534924, -0.011937160044908524, 0.015351742506027222, -0.022042104974389076, -0.008758543990552425, 0.036838632076978683, -0.03195272386074066, 0.010410313494503498, 0.023624472320079803, 0.017725294455885887, 0.0439731664955616, -0.009931439533829689, -0.003508275840431452, 0.0009065648191608489, 0.01954362913966179, 0.045888662338256836, -0.013450125232338905, -0.0013134345645084977, 0.027913521975278854, 0.008217208087444305, -0.0041988263837993145, 0.004365391563624144, 0.016642622649669647, 0.0031491199042648077, -0.018474837765097618, -0.008293550461530685, 0.005455004516988993, -0.015448905527591705, 0.0005998943233862519, 0.005985930562019348, 0.0006558497552759945, 0.0037789440248161554, 0.014241308905184269, -0.01678142510354519, 0.006443984340876341, -0.0025539970956742764, 0.009945319965481758, 0.010792025364935398, -0.024207450449466705, -0.039753518998622894, -0.03817114979028702, 0.008154746145009995, -0.014810406602919102, -0.0014010547893121839, 0.0010098004713654518, -0.004861616529524326, 0.02030705288052559, -0.00538213225081563, -0.016323372721672058, -0.00453542685136199, -0.012180067598819733, 0.03075900673866272, 0.021917181089520454, -0.02119539864361286, -0.01675366424024105, 0.016476057469844818, -0.0008167758933268487, -0.013214158825576305, -0.007953479886054993, -0.0039663296192884445, 0.01721171848475933, 0.000581242551561445, -0.015879198908805847, -0.006409283261746168, -0.00012871919898316264, -0.0036123788449913263, 0.010007781907916069, 0.01521293818950653, -0.003980210050940514, -0.01282550673931837, 0.005260678473860025, 0.039115019142627716, 0.010333971120417118, -0.0007122389506548643, 0.008161686360836029, -0.01512965653091669, -0.029565291479229927, -0.025623252615332603, 0.021750615909695625, -0.0013090969296172261, 0.030203791335225105, 0.024873709306120872, -0.006291299592703581, -0.013047593645751476, 0.008307430893182755, -0.02090390957891941, -0.017281120643019676, -0.0006406680913642049, -0.02565101347863674, -0.017489327117800713, -0.0013203747803345323, -0.029620813205838203, -0.003643609816208482, -0.005770783871412277, 0.011777535080909729, -0.008106164634227753, -0.008328251540660858, -0.004139835014939308, 0.01174977421760559, 0.006967970170080662, 0.021486887708306313, 0.002238217508420348, 0.010910009033977985, 0.01238133292645216, 0.002200046321377158, 0.00011711603292496875, 0.004743632860481739, -0.009341521188616753, 0.01213148608803749, 0.010819786228239536, 0.024845948442816734, -0.01144440472126007, 0.036949675530195236, -0.017864098772406578, 0.005441124085336924, -0.04708237946033478, 0.007523186970502138, 0.007287219632416964, 0.0179890226572752, -0.019876759499311447, 0.017919620499014854, -0.032202571630477905, -0.018655281513929367, 0.011263960041105747, -0.0192243792116642, -0.004160655662417412, -0.008925109170377254, 0.0003029835061170161, -0.008473995141685009, 0.019640792161226273, -0.016101285815238953, -0.003647079924121499, -0.0010071978904306889, -0.04016993194818497, 0.004715871997177601, -0.012013502418994904, 0.0008705625077709556, 0.0069263288751244545, -0.014865928329527378, -0.013394603505730629, -0.007814675569534302, 0.005933878943324089, -0.0016127311391755939, 0.026095187291502953, -0.0219865832477808, -0.03878188878297806, -0.0035013356246054173, -0.008925109170377254, -1.7974058209802024e-05, 0.02708069607615471, 0.002147994702681899, 0.03270226716995239, -0.014810406602919102, -0.006131674628704786, -0.0022850639652460814, 0.004410502966493368, 0.014324591495096684, -0.004861616529524326, -0.012513197027146816, 0.004931018687784672, 0.019460346549749374, 0.005076763220131397, 0.026983533054590225, 0.01138194277882576, -0.02262508124113083, -0.0011841731611639261, 0.02412416785955429, -0.001107830903492868, -0.005784664303064346, 0.012554838322103024, -0.015254579484462738, -0.0041433051228523254, -0.02610906772315502, -0.006020631641149521, -0.003147384850308299, 0.03600580617785454, 0.019446466118097305, 0.0006831768550910056, -0.017170077189803123, -0.003685251111164689, 0.011944100260734558, -0.012943490408360958, 0.012284169904887676, -0.016823066398501396, 0.028982313349843025, 0.01367221213877201, -0.00907085370272398, -0.015060254372656345, -0.01646217703819275, -0.004028791561722755, 0.0013290500501170754, 0.02276388555765152, 0.015157417394220829, 0.018252750858664513, -0.0003801933489739895, 0.0025245011784136295, 0.018960651010274887, 0.014040043577551842, 0.03553387150168419, 0.0028524259105324745, -0.003492660354822874, 0.02660876139998436, 0.004302929621189833, 0.016725903376936913, -0.0032844541128724813, -0.020667942240834236, -0.001849565771408379, 0.03148078918457031, 0.013262739405035973, 0.010299270041286945, 0.03772697597742081, 0.03286883234977722, 0.04952533170580864, -0.006284359376877546, 0.024970872327685356, -0.0021219688933342695, -0.012804686091840267, 0.010923889465630054, 0.022944331169128418, -0.02120927907526493, 0.05424467474222183, 0.00905697327107191, 0.030203791335225105, -0.005347431171685457, -0.030009465292096138, 0.03225809335708618, 0.015268459916114807, 0.019640792161226273, -0.023402385413646698, -0.016725903376936913, 0.035894762724637985, -0.0050420621410012245, 0.02276388555765152, 0.00890428852289915, 0.0010991556337103248, 0.01514353696256876, 0.007606469094753265, -0.022319713607430458, 0.012700582854449749, -0.0051600453443825245, 0.00615249527618289, -0.00838377233594656, -0.011326421052217484, -0.025734296068549156, 0.010646280832588673, -0.014116385951638222, 0.010417253710329533, -0.008494815789163113, 0.013040653429925442, 0.01707291416823864, 0.015046373941004276, 0.0002717525640036911, -0.005642389878630638, 0.0054966458119452, -0.003195966361090541, 0.019751835614442825, -0.03153631091117859, -0.022208670154213905, 0.02366611361503601, 0.023582831025123596, -0.008973690681159496, -0.012402153573930264, -0.015351742506027222, -0.026983533054590225, 0.02305537462234497, 0.012318870984017849, 0.0038483459502458572, 0.0046985214576125145, -0.0040808431804180145, 0.002606048481538892, -0.010514416731894016, 0.007585648912936449, 0.03364613279700279, -0.02862142212688923, -0.011395823210477829, 0.012360512278974056, 0.015046373941004276, 0.012180067598819733, -0.004049612209200859, -0.01084060687571764, 0.01719783805310726, -0.015088015235960484, -0.01676754467189312, -0.025734296068549156, 0.013234978541731834, -0.022666722536087036, 0.004153715446591377, -0.007085953839123249, -0.007335801143199205, -0.0375048890709877, -0.01615680754184723, 0.00982733629643917, -0.006114324554800987, -0.021556289866566658, 0.006999201141297817, 0.005257208365947008, 0.011250079609453678, -0.024054765701293945, 0.02062630094587803, 0.022999852895736694, 0.05593808740377426, 0.0063502914272248745, 0.01120843831449747, 0.009327640756964684, 7.720982830505818e-05, -0.023402385413646698, -0.02553997002542019, -0.006527266930788755, 0.028954552486538887, -0.012311930768191814, -0.026539359241724014, 0.0004892847500741482, 0.008258849382400513, 0.0011095659574493766, 0.02444341778755188, -0.01826663129031658, -0.009799575433135033, -0.013165577314794064, -0.009154136292636395, 0.009181897155940533, 0.01768365316092968, -0.004295989405363798, 0.03900397568941116, 0.00998002104461193, 0.014171907678246498, 0.002836810424923897, 0.03564491495490074, 0.010785085149109364, 0.0033139497973024845, -0.020251531153917313, -0.02308313548564911, 0.011951040476560593, 0.015393383800983429, 0.011770594865083694, -0.012665881775319576, 0.014796526171267033, -0.001887736958451569, -0.010021662339568138, -0.02626175247132778, 0.00984121672809124, -0.013297440484166145, 0.02320805937051773, 0.0027413826901465654, -0.004254348110407591, 0.01951586827635765, -0.02764979377388954, 0.009272119961678982, 0.011402763426303864, -0.019252140074968338, 0.0033902921713888645, 0.014005342498421669, 0.00975099392235279, -0.010000841692090034, 0.016531579196453094, -0.00975099392235279, -0.018169468268752098, -0.021903300657868385, -0.015407264232635498, -0.04766535758972168, -0.035450588911771774, -0.024665502831339836, -0.03953143209218979, 0.009639950469136238, -0.01596248149871826, -0.024068646132946014, -0.025317883118987083, 0.006752823479473591, -0.008154746145009995, -0.018641401082277298, -0.008661380968987942, 0.007155355531722307, -0.033146440982818604, -0.011513806879520416, -0.004858146421611309, 0.026011904701590538, 0.019932281225919724, -0.003006845712661743, 0.010500536300241947, -0.007786914706230164, 0.01022292859852314, -0.009966140612959862, -0.03600580617785454, 0.0021271740552037954, -0.007668931037187576, 0.0250402744859457, -0.014178847894072533, -0.01765589229762554, 0.0048512062057852745, -0.016240090131759644, 0.01336684264242649, 0.00741908373311162, -0.021792257204651833, -0.0005803750245831907, 5.72567259951029e-05, -0.0029200930148363113, 0.028316054493188858, 0.008862647227942944, 0.0036262592766433954, 0.03195272386074066, -0.018072305247187614, 0.004049612209200859, -0.02336074411869049, -0.00703390222042799, -0.019710194319486618, -0.0012154041323810816, 0.006395402830094099, -0.002479389775544405, 0.008078403770923615, -0.007020021788775921, -0.017267240211367607, -0.00884182658046484, -0.00045501746353693306, -0.00014747944078408182, 0.0016370218945667148, -0.005114934407174587, -0.021001072600483894, 0.017600370571017265, 0.01329050026834011, 0.020168248564004898, -0.013436244800686836, 0.005434183869510889, -0.009237418882548809, 0.026844728738069534, -0.003022461198270321, 0.006017161533236504, 0.017919620499014854, 0.024346254765987396, -0.03073124587535858, -0.007231697905808687, 0.019779596477746964, -0.007356621790677309, 0.0029756147414445877, -0.02134808339178562, -0.019432585686445236, 0.007557888049632311, -0.01707291416823864, -0.01934930309653282, -0.0029669394716620445, -0.010576878674328327, -0.020792866125702858, -0.026497717946767807, -0.0005799412610940635, 0.0021601400803774595, -0.00852257665246725, 0.012062083929777145, -0.023707754909992218, -0.02241687662899494, -0.0028420155867934227, 0.005916528403759003, 0.018349913880228996, -0.03167511522769928, -0.014505037106573582, -0.028676943853497505, -0.011215378530323505, -0.016961870715022087, -0.015254579484462738, -0.015296220779418945, 0.015115776099264622, 0.05735388770699501, 0.02676144614815712, 0.0069957310333848, 0.0020994131918996572, 0.027774717658758163, 0.020945550873875618, 5.763626904808916e-05, 0.0030988033395260572, -0.01553218811750412, -0.012464615516364574, 0.0024186628870666027, 0.01754484884440899, -0.006711182184517384, -0.016989631578326225, -0.008821005932986736, 0.0076134093105793, 0.009681591764092445, 0.008099224418401718, -0.0007452049758285284, -0.012492376379668713, -0.03125870227813721, -0.04816505312919617, 0.00384487584233284, 0.031897202134132385, -0.00982733629643917, 0.006745883263647556, -0.03012050874531269, -0.013026772998273373, 0.010708742775022984, 0.00929988082498312, 0.03617237135767937, 0.015435025095939636, 0.04166901484131813, 0.016642622649669647, -0.009279060177505016, 0.013908179476857185, -0.0016847357619553804, -0.008126985281705856, -0.006790994666516781, -0.03794906288385391, -0.012506256811320782, 0.00476792361587286, 0.019904520362615585, 0.022472398355603218, -0.023402385413646698, 0.002767408499494195, 0.004101663827896118, 0.024221330881118774, -0.03156407177448273, -0.023915961384773254, 0.009660771116614342, -0.022375235334038734, -0.012742224149405956, -0.02842709608376026, -0.021431365981698036, 0.0025991082657128572, 0.00757176848128438, -0.01106963399797678, 0.010188227519392967, 0.02783023938536644, -0.015934720635414124, -0.02168121375143528, 0.011624850332736969, -0.00984121672809124, 0.03334076330065727, 0.005520936567336321, 0.02093167044222355, 0.012728343717753887, 0.0030432818457484245, -0.009584428742527962, -0.008473995141685009, 0.004407032858580351, -0.015088015235960484, 0.0002910550101660192, 0.046221792697906494, -0.03339628502726555, 0.0011911133769899607, 0.01536562293767929, -0.001126916497014463, 0.0020300112664699554, -0.03953143209218979, 0.02306925505399704, 0.008106164634227753, 0.010084124282002449, -0.03464552387595177, -0.02442953735589981, -0.02305537462234497, 0.0004597888619173318, -0.002259038155898452, 0.014699363149702549, -0.0014383583329617977, 0.010556058026850224, -0.0028992723673582077, 0.04116931930184364, -0.02395760267972946, 0.02041809633374214, -0.014741004444658756, 0.0007482413202524185, -0.011874698102474213, 0.0004641264968086034, 0.011111275292932987, -0.018558120355010033, 0.0050802333280444145, 0.019168857485055923, -0.005975520238280296, -0.01383877731859684, 0.013332141563296318, 0.009952260181307793, -0.014491156674921513, -0.001021078322082758, 0.0009117699810303748, 0.033590611070394516, -0.004243937786668539, -0.012464615516364574, -0.0005799412610940635, -0.01106963399797678, 0.01646217703819275, 0.008591978810727596, -0.009209658019244671, -0.009154136292636395, -0.0142274284735322, 0.015865318477153778, 0.00905697327107191, 0.020084965974092484, -0.016323372721672058, -0.012665881775319576, -0.000738698523491621, -0.00519127631559968, -0.01036867219954729, 0.011076574213802814, 0.02474878542125225, -0.031175419688224792, -0.02090390957891941, 0.014782645739614964, -0.014907569624483585, 0.03570043668150902, 0.001667385222390294, 0.005628509912639856, -0.006204546894878149, 0.03703295812010765, -0.013554228469729424, -0.006353761535137892, 0.011624850332736969, 0.01036867219954729, -0.030064987018704414, -0.0003489624068606645, 0.011576268821954727, -0.00967465154826641, 0.017628131434321404, -0.014199668541550636, -0.02708069607615471, -0.03381269797682762, -0.0008232823456637561, -0.018724683672189713, 0.02349954843521118, -0.006017161533236504, 0.009306821040809155, 0.009084734134376049, 0.0001258997363038361, 0.0013490031706169248, -0.0034666345454752445, 0.007752213627099991, 0.01923825964331627, 0.022999852895736694, 0.006301709916442633, -0.017877979204058647, 0.011083514429628849, -0.019987802952528, 0.017628131434321404, -0.008258849382400513, -0.023180298507213593, -0.022180909290909767, -0.03192496299743652, -0.012818566523492336, 0.010986351408064365, -0.005756903439760208, -0.006454394664615393, -0.014477276243269444, -0.013706913217902184, 0.02796904370188713, -0.011027992703020573, -0.009730173274874687, 0.015906959772109985, -0.020362574607133865, 0.001531183603219688, 0.026400556787848473, -0.005937349051237106, -0.06851374357938766, -0.00020723030320368707, -0.032674506306648254, -0.03719952329993248, 0.003190761199221015, -0.006256598513573408, 0.04946980997920036, 0.006138614844530821, -0.02953753061592579, -0.029704095795750618, -0.02764979377388954, -0.03578371927142143, 0.002527971286326647, -0.03639445826411247, 0.0460829883813858, 0.021570170298218727, 0.03456224128603935, 0.01276304479688406, 0.03347956761717796, -0.006423163693398237, 0.009855097159743309, -0.04966413602232933, -0.0014132000505924225, -0.018238870427012444, -0.027622032910585403, 0.007245578337460756, -0.015004732646048069, -0.05199604853987694, 0.00905697327107191, 0.00488243717700243, -0.015546068549156189, 0.0015893079107627273, 0.01783633790910244, -0.01267282199114561, -0.0007751345983706415, -0.015476666390895844, 0.0009629540145397186, 0.029093356803059578, 0.019460346549749374, 0.001955403946340084, -0.02566489391028881, 0.012214768677949905, 0.00232497020624578, -0.009501146152615547, -0.013477886095643044, 0.03170287609100342, 0.017142316326498985, -0.005763843655586243, 0.005559107754379511, 0.015046373941004276, -0.00734274135902524, -0.0013845717767253518, -0.009029212407767773, 0.0002632941759657115, 0.012166187167167664, 0.01567099243402481, 0.036061327904462814, -0.00990367867052555, 0.02535952441394329, -0.010327030904591084, 0.008432353846728802, 0.006256598513573408, 0.001946728676557541, 0.028080087155103683, -0.0172255989164114, 0.0015624145744368434, -0.02230583317577839, 0.01551830768585205, 0.013706913217902184, -0.007169235963374376, -0.004511136095970869, 0.004205766599625349, -0.033923741430044174, -0.011645670980215073, 0.01858588121831417, -0.026636522263288498, -0.019182737916707993, -0.005482765380293131, 0.0002630772942211479, 0.007668931037187576, -0.0009924499318003654, -0.015296220779418945, -0.019640792161226273, -0.016712022945284843, -0.0021410544868558645, 0.013332141563296318, -0.0470268577337265, 0.013137816451489925, 0.01768365316092968, -0.022569559514522552, 0.003003375604748726, 0.19921176135540009, -0.005094113759696484, 0.02211150713264942, 0.027302782982587814, 0.024526698514819145, -0.005132284946739674, -0.00027630708063952625, 0.009244359098374844, 0.00445908447727561, 0.002677185693755746, 0.0178085770457983, 0.004771393723785877, -0.02737218514084816, -0.0007356621790677309, 0.00782855600118637, -0.024804307147860527, -0.045277923345565796, -0.01290184911340475, -0.026983533054590225, 0.009702412411570549, 0.014040043577551842, -0.000627221423201263, -0.021861659362912178, -0.004701991565525532, 0.03148078918457031, 0.016642622649669647, -0.0036158489529043436, 0.01769753359258175, 0.02245851792395115, 0.018224989995360374, -0.011513806879520416, 0.00040014644037000835, 0.017447685822844505, -0.008654440753161907, -0.022069865837693214, 0.00096121896058321, 0.011666491627693176, -0.02305537462234497, -0.012492376379668713, 0.01483816746622324, 0.00013218929234426469, -0.011590149253606796, -0.010215988382697105, -0.027885761111974716, 0.024207450449466705, -0.010771204717457294, -0.024013124406337738, -0.0032983345445245504, -0.007731392979621887, 0.011215378530323505, -0.027483228594064713, 0.0026754506397992373, 0.008571158163249493, -0.00929988082498312, -0.0041190143674612045, 0.02293045073747635, -0.012735283933579922, 0.002658100100234151, -0.010729563422501087, -0.007710572332143784, -0.02166733331978321, -0.0009091674000956118, -0.017475446686148643, 0.012089844793081284, -0.020209889858961105, 0.03778249770402908, 0.0012639856431633234, 0.01030621025711298, 0.012700582854449749, 0.0029426487162709236, -0.000502297654747963, 0.01765589229762554, -0.029731856659054756, 0.0012726609129458666, -0.008571158163249493, -0.005708321928977966, 0.009216598235070705, 0.01937706395983696, 0.04508359730243683, 0.004972659982740879, 0.014407874085009098, 0.002087267814204097, -0.008286610245704651, -0.030953332781791687, 0.02273612469434738, 0.0030328715220093727, 0.02734442427754402, -0.01844707690179348, 0.003256693249568343, -0.021486887708306313, -0.0030536921694874763, 0.02245851792395115, -0.005271088797599077, -0.004934488795697689, -0.0034371386282145977, -0.0006710314773954451, 0.025415046140551567, 0.010479715652763844, -0.022042104974389076, -0.023624472320079803, -0.008848766796290874, 0.06940209120512009, 0.011437464505434036, 0.016795305535197258, -0.01306841429322958, 0.014741004444658756, 0.0009629540145397186, 0.019765716046094894, 0.0012986866058781743, -0.008418473415076733, -0.01090306881815195, -0.039281584322452545, 0.019474226981401443, -0.007103304378688335, -0.00968853197991848, 0.0238049179315567, 0.01391511969268322, 0.005992870777845383, 0.022389115765690804, -0.00907085370272398, 0.026844728738069534, -0.005687501281499863, 0.004969189874827862, 0.011499926447868347, -0.02243075706064701, -0.02458222024142742, 0.0003090561949647963, -0.009258239530026913, -0.035728197544813156, -0.01753096841275692, 0.010729563422501087, -0.015004732646048069, 0.03339628502726555, -0.013116995804011822, -0.013165577314794064, -0.02862142212688923, 0.012790805660188198, 0.004826915450394154, 0.002196576213464141, 0.004087783396244049, 0.009744053706526756, -0.009313760325312614, -0.0073496815748512745, -0.006749353371560574, 0.002281593857333064, -0.004483375232666731, -0.012277229689061642, 0.013276619836688042, -0.02308313548564911, -0.026789207011461258, 0.012187007814645767, -0.007641170173883438, 0.0005582530866377056, -0.016975751146674156, 0.030786767601966858, -0.03581148013472557, -0.05135754868388176, -0.02320805937051773, 0.0250402744859457, 0.017753055319190025, -0.04533344507217407, 0.0061976066790521145, 0.034839849919080734, -0.010250689461827278, -0.028218891471624374, 0.009119435213506222, -0.17744727432727814, 0.009029212407767773, 0.008793245069682598, -0.010812846012413502, -0.015615470707416534, 0.01969631388783455, -0.0015962481265887618, -0.010986351408064365, -0.015934720635414124, -0.0008506093872711062, 0.029620813205838203, -0.024859828874468803, -0.032063767313957214, -0.016712022945284843, 0.0004404864157550037, -0.017253359779715538, -0.011666491627693176, 0.013269679620862007, 0.05355065315961838, 0.003218522062525153, 0.026664283126592636, -0.01045889500528574, -0.005871417000889778, 0.0006497770664282143, 0.024374015629291534, 0.012881028465926647, -0.006336410995572805, 0.028482617810368538, -0.015185178257524967, -0.027288902550935745, 0.015060254372656345, -0.01467160228639841, 0.024970872327685356, 0.006256598513573408, -0.022069865837693214, 0.0016760604921728373, -0.0012648531701415777, -0.015782035887241364, -0.018197229132056236, 0.009188837371766567, 0.026317274197936058, 0.004358451347798109, 0.029093356803059578, 0.006666070781648159, 0.008793245069682598, 0.015782035887241364, 0.038837410509586334, -0.010722623206675053, 0.02644219808280468, -0.01689246855676174, 0.010562998242676258, -0.012547898106276989, -0.007655050605535507, 0.00017361367645207793, 0.027635913342237473, 0.024235211312770844, 0.006384992506355047, 0.021250920370221138, 0.0016786630731076002, -0.013255799189209938, 0.013026772998273373, -0.017295001074671745, 0.00013761133595835418, -0.02138972468674183, -0.007106774020940065, -0.04563881456851959, -0.015782035887241364, 0.015754275023937225, 0.002147994702681899, 0.010708742775022984, -0.003619319060817361, -0.013554228469729424, 0.01796126179397106, -0.007891017943620682, 0.039586953818798065, 0.005854066461324692, -0.04294601455330849, -0.0002871511678677052, 0.02044585719704628, -0.003737302729859948, 0.01553218811750412, 0.02397148311138153, 0.007537067402154207, -0.005302319768816233, -0.0036921913269907236, -0.004924078471958637, -0.010174347087740898, 0.005114934407174587, 0.0024585691280663013, 0.018169468268752098, 0.02334686368703842, -0.001773223513737321, 0.01497697178274393, -0.006607079412788153, 0.013241918757557869, 0.0029339734464883804, 0.02644219808280468, 0.0004819107707589865, -0.004219647031277418, -0.011270899325609207, 0.003315684851258993, 0.013935940340161324, -0.03531178459525108, 0.01168731227517128, 0.019613031297922134, 0.024193570017814636, 0.013165577314794064, 8.302496098622214e-06, 0.030398115515708923, -0.026053545996546745, -0.020959431305527687, 0.01875244453549385, 0.02458222024142742, 0.016212329268455505, -0.0344511978328228, 0.032063767313957214, -0.01765589229762554, -0.012769985012710094, 0.01336684264242649, -0.03378493711352348, 0.033923741430044174, -0.038504280149936676, -0.013790195807814598, -0.004719342105090618, -0.004139835014939308, -0.019252140074968338, -0.09422028064727783, -0.007044312544167042, 0.02412416785955429, 0.01413026638329029, -0.007134534884244204, -0.00020538682292681187, 0.013581989333033562, 0.027094576507806778, 0.0054272436536848545, 0.01252013724297285, -0.00959830917418003, 0.017933500930666924, 0.00846011471003294, -0.017489327117800713, -0.007141475100070238, -0.0014643841423094273, 3.765605652006343e-05, -0.0065029761753976345, -0.012416034005582333, 0.0365610234439373, -0.003830995410680771, -0.0008089681505225599, 0.018349913880228996, -0.0034666345454752445, 0.0003994957951363176, -0.012499316595494747, -0.025456687435507774, 0.018377674743533134, 0.01919661834836006, 0.021486887708306313, 0.008307430893182755, -0.020320933312177658, 0.01145828515291214, -0.028163369745016098, -0.021875539794564247, -0.012082904577255249, -0.0219865832477808, -0.016101285815238953, 0.013026772998273373, -0.016712022945284843, 0.01245767530053854, -0.012506256811320782, 0.005583398509770632, -0.022985972464084625, -0.018877368420362473, 0.005864476785063744, -0.02677532657980919, 0.021403605118393898, -0.003952449187636375, 0.00019497649918776006, -0.040669627487659454, -0.026358915492892265, -0.032535701990127563, -0.030037226155400276, 0.021792257204651833, 0.02384655922651291, 0.014463395811617374, 0.025734296068549156, -0.01567099243402481, -0.00884182658046484, 0.0006332941120490432, 0.0031734106596559286, -0.007405203301459551, 0.008425413630902767, -0.0016786630731076002, 0.0325634628534317, -0.006565438117831945, -0.0012648531701415777, -0.01390123926103115, 0.016947990283370018, -0.020848387852311134, 0.026192350313067436, -0.01783633790910244, 0.01306841429322958, -0.02659488096833229, -0.0037026016507297754, 0.002180960727855563, -0.014352352358400822, 0.01950198784470558, 0.017447685822844505, -0.007807735353708267, -0.022055985406041145, 0.0062357778660953045, -0.02810784801840782, 0.009015331976115704, 0.012797745876014233, 0.02213926799595356, -0.010320090688765049, 0.04422301426529884, -0.03286883234977722, 0.022500159218907356, 0.027774717658758163, 0.003723422298207879, 0.008647500537335873, 0.004566657822579145, -0.0037442429456859827, -0.023763276636600494, -0.026053545996546745, 0.015601590275764465, 0.003350385930389166, -0.005940819159150124, -0.004570127930492163, -0.07334413379430771, -0.003109213663265109, 0.010778144933283329, 0.00388304702937603, 0.0014409609138965607, -0.01612904667854309, 0.017572609707713127, 0.0013134345645084977, 0.004507665988057852, 0.0023856968618929386, -0.02367999404668808, 0.0152268186211586, -0.012999012134969234, 0.00047800689935684204, -0.033618371933698654, -0.010562998242676258, 0.005704851821064949, 0.00757176848128438, 0.020654061809182167, 0.0061976066790521145, -0.004760983400046825, 0.0007256856188178062, 0.0019675493240356445, 0.03181391954421997, -0.018572000786662102, 0.027163978666067123, -0.02015436813235283, 0.010438074357807636, -0.02462386153638363, -0.02426297217607498, 0.012783865444362164, 0.012402153573930264, -0.011243139393627644, 0.010174347087740898, -0.013276619836688042, -0.03878188878297806, 0.008703022263944149, 0.013866538181900978, 0.03583924099802971, 0.012478495948016644, -0.02090390957891941, -0.03703295812010765, 0.017142316326498985, -0.009577488526701927, -0.027580391615629196, -0.010868367739021778, -0.02841321751475334, -0.025720415636897087, 0.015893079340457916, 0.002869776450097561, 0.052801113575696945, -0.006617489270865917, -0.02399924397468567, -0.03106437623500824, 0.00048017571680247784, 0.005271088797599077, 0.01785021834075451, 0.026511598378419876, 0.0238049179315567, -0.008189447224140167, 0.04663820564746857, -0.0017697534058243036, 0.02354118973016739, -0.004924078471958637, 0.02505415491759777, -0.027885761111974716, -0.0618511438369751, -0.016087405383586884, 0.021917181089520454, -0.02426297217607498, 0.007013081572949886, -0.023430146276950836, 0.02349954843521118, 0.023860439658164978, 0.008092284202575684, 0.002449893858283758, 0.008092284202575684, -0.024526698514819145, -0.011194557882845402, 0.035450588911771774, 0.006461334880441427, -0.01765589229762554, -0.021334202960133553, 0.015615470707416534, 0.009806515648961067, 0.015323981642723083, -0.010715682990849018, 0.011215378530323505, 0.00395938940346241, 0.011215378530323505, -0.013470945879817009, 0.0021514648105949163, -0.015490546822547913, -0.0009482061141170561, 0.00907085370272398, 0.014463395811617374, -0.022055985406041145, 0.01206902414560318, 0.014463395811617374, 0.011499926447868347, -0.0045041958801448345, 0.03592252358794212, 0.00741908373311162, -0.0069645000621676445, -0.011000231839716434, 0.013373782858252525, -0.036061327904462814, -0.013464005663990974, 0.025109676644206047, 0.020515259355306625, -0.00013446655066218227, -0.017475446686148643, -0.0021115585695952177, 0.005007361061871052, -0.0270390547811985, -0.007391322869807482, 0.0033625313080847263, -0.03608908876776695, -0.03614461049437523, 0.009667711332440376, 0.004060022532939911, 0.018169468268752098, 0.02091779001057148, -0.02169509418308735, 0.0178085770457983, -0.018016783520579338, 0.010299270041286945, -0.015712633728981018, 0.017586490139365196, -0.033451806753873825, -0.017156196758151054, 0.004476435016840696, 6.76128183840774e-05, -0.011159856803715229, -0.025304002687335014, -0.008432353846728802, -0.018960651010274887, 0.020945550873875618, 0.007106774020940065, 0.09794023633003235, 0.03600580617785454, -0.01313087623566389, 0.004781804047524929, -0.025609372183680534, 0.0021653452422469854, -0.0010870102560147643, 0.006915918551385403, 0.0002257736778119579, -0.015351742506027222, 0.023582831025123596, -0.020792866125702858, -0.008321311324834824, -0.006603609304875135, -0.028246652334928513, 0.0007343608886003494, -0.005781194195151329, 0.02138972468674183, -0.020834507420659065, 0.02628951333463192, 0.02813560888171196, -0.012117605656385422, 0.02984290011227131, -0.023263581097126007, -0.03717176243662834, -0.00790489837527275, 0.026483837515115738, 0.016712022945284843, 0.00461176922544837, -0.015601590275764465, 0.01391511969268322, 0.004868556745350361, -0.02397148311138153, -0.014546678401529789, -0.0284548569470644, 0.006135144736617804, -0.013949820771813393, -0.01769753359258175, 0.019585270434617996, 0.029148878529667854, 0.008279670029878616, 0.028399337083101273, -0.015768155455589294, -0.01658710092306137, -0.008952870033681393, -0.010320090688765049, -0.02369387447834015, -0.0014479011297225952, 0.011340301483869553], "8ce2bd04-544d-4060-98a3-a6ca3e29e868": [0.014783904887735844, -0.004798469133675098, 0.02407984435558319, -0.031415797770023346, -0.0033792282920330763, 0.02529783733189106, -0.018605880439281464, -0.032619789242744446, -0.020411869511008263, -0.033767782151699066, 0.018409881740808487, 0.036707762628793716, 0.027873819693922997, -0.010275933891534805, 0.012550919316709042, 0.015693899244070053, 0.022763853892683983, 0.0007209953619167209, -0.005144966766238213, -0.0003954974527005106, -0.029287811368703842, -0.004346971865743399, -0.01880187913775444, -0.00488246837630868, -0.02591383270919323, 0.0010106185218319297, 0.02531183697283268, -0.010933930054306984, -0.02466784045100212, 0.03331978619098663, 0.00907894130796194, -0.015441901050508022, -0.03306778892874718, -0.0017779885092750192, -0.03057580254971981, -0.009211940690875053, 0.002453484106808901, 0.006285959389060736, 0.005918461829423904, -0.01586189866065979, 0.03525177389383316, 0.019053878262639046, -0.00516596669331193, -0.0009572438430041075, -0.010170934721827507, 0.023253850638866425, 0.005368965212255716, 0.005204466637223959, -0.01413990929722786, 0.012221921235322952, -0.017485886812210083, -0.010156934149563313, -0.0276638213545084, 0.008903943002223969, -0.013985909521579742, -0.02008987031877041, 0.016757892444729805, -0.015357901342213154, 0.01766788586974144, -0.007573951035737991, -0.005228966474533081, -0.0016817392315715551, -0.005309465806931257, -0.001994987251237035, -0.009624938480556011, -0.012816917151212692, -0.011808924376964569, -0.01532990112900734, -0.0269918255507946, -0.015665899962186813, 0.027551822364330292, 0.030911801382899284, 0.008994942530989647, 0.005074967164546251, -0.005263966042548418, -0.018591880798339844, -0.00856794510036707, -0.0035489771980792284, 0.0021262362133711576, -0.002511233789846301, 0.011276927776634693, -0.007279952988028526, -0.030967799946665764, -0.0018269881838932633, 0.03427178040146828, 0.021993858739733696, 0.02356184832751751, 0.008672944270074368, -0.008896943181753159, 0.010205934755504131, 0.007531951647251844, 0.0013273664517328143, 0.014825904741883278, 0.006534458138048649, 0.011269927024841309, 0.0169678907841444, 0.0048299687914550304, 0.012774917297065258, -0.013621912337839603, -0.0097229378297925, -0.03121979907155037, -0.013705912046134472, -0.013845911249518394, -0.008602944202721119, -0.019445875659585, -0.020341869443655014, 0.0229878518730402, -0.004504471085965633, -0.007839949801564217, 0.01381791103631258, -0.03107980079948902, 0.029595809057354927, -0.002532233716920018, -0.008154947310686111, 0.018969878554344177, -0.010814930312335491, 0.022021858021616936, -0.02588583342730999, -0.019879871979355812, -0.0062369597144424915, 0.01553990039974451, -0.014881904236972332, 0.045527707785367966, -0.02244185470044613, 0.023365849629044533, 0.003856975119560957, 0.015203902497887611, 0.0006212459993548691, 0.01647789403796196, -0.01878787949681282, 0.0035524771083146334, 0.004514970816671848, 0.009120941162109375, 0.021307863295078278, -0.012382919900119305, 0.007174953818321228, -0.016743892803788185, -0.0008478695526719093, -0.0017482386901974678, -0.03544777259230614, 0.039115749299526215, 0.03295578807592392, 0.00515896687284112, -0.014559905976057053, 0.0039689745754003525, 0.019599873572587967, -0.0017027390422299504, 0.013348913751542568, -0.002715982496738434, -0.003562977071851492, 0.005851962137967348, -0.017233889549970627, -0.018983878195285797, 0.003046730300411582, 0.016869891434907913, 0.011241927742958069, -8.837442874209955e-05, 0.0283358171582222, -0.03009980544447899, -0.015707898885011673, -0.01531590148806572, -0.006135460454970598, 0.0011996172834187746, -0.01590389758348465, -0.00996793620288372, 0.03693176060914993, 0.010506932623684406, -0.01173892430961132, 0.002421984449028969, -0.0016764892498031259, -0.002189235994592309, 0.02528383769094944, -0.01770988665521145, 0.01474190503358841, 0.018367880955338478, 0.009064941667020321, 0.010618931613862514, -5.14606072101742e-05, 0.004322472028434277, -0.029259812086820602, 0.02066386677324772, -0.007010454777628183, -0.00382897537201643, 0.030351804569363594, -0.026641828939318657, -0.012354920618236065, 0.03774375841021538, 0.035643771290779114, 0.00587646197527647, -0.008728943765163422, 0.006065460853278637, 0.02470984123647213, -0.016673892736434937, -0.0005127466865815222, -0.6151000261306763, -0.00690895551815629, 0.007181953638792038, -0.01032493356615305, -0.010177934542298317, 0.014783904887735844, 0.018983878195285797, -0.0010534932371228933, -0.02169986069202423, 0.03592376783490181, 0.01821388304233551, 0.0028402316384017467, -0.011234927922487259, -0.013719911687076092, -0.012788917869329453, -0.024289844557642937, -0.00997493602335453, -0.03189179301261902, -0.0073219528421759605, 0.0006632457370869815, -0.02522783726453781, 0.0217838604003191, -0.0013466163072735071, -0.002610983094200492, 0.005309465806931257, -0.016057897359132767, 0.03158379718661308, -0.021307863295078278, 0.007307952735573053, 0.019795872271060944, -0.00972993765026331, 0.012746918015182018, -0.004595470614731312, 0.018969878554344177, 0.052639659494161606, -0.008350946009159088, -0.0036224767100065947, 0.01647789403796196, 0.016085896641016006, 0.04754369333386421, -0.02244185470044613, -0.01940387487411499, 0.01754188723862171, 0.0017919884994626045, -0.009435939602553844, 0.001063993200659752, 0.021041864529252052, 0.015413900837302208, -0.01439190749078989, -0.022231856361031532, 0.011927923187613487, -0.016183895990252495, 0.0005639338633045554, 0.0017386138206347823, -0.005960461683571339, 0.006268459837883711, 0.020481867715716362, -0.0276638213545084, 0.009673938155174255, -0.013019916601479053, 0.01056293211877346, 0.011640924960374832, -0.02582983300089836, -0.036259766668081284, -0.04754369333386421, -0.0009484938927926123, -0.008889942429959774, -0.019851872697472572, 0.001515490235760808, -0.00411947350949049, 0.030939800664782524, -0.0029522310942411423, -0.007164454087615013, -0.01653389446437359, -0.006971955299377441, 0.023757847025990486, 0.01636589504778385, -0.017247889190912247, -0.018549880012869835, 0.020915865898132324, -0.00849094521254301, -0.009316939860582352, -0.03628776594996452, -0.002785982098430395, 0.025521835312247276, 0.003590976819396019, -0.02832181751728058, -0.006107460707426071, 0.004973467905074358, 0.0024394842330366373, 0.001951237441971898, 0.036707762628793716, -0.005918461829423904, -0.02116786316037178, 0.0026984827127307653, 0.03578377142548561, -0.009890936315059662, 0.0017701135948300362, -0.0011383676901459694, -0.02587183378636837, -0.016589893028140068, -0.02182585932314396, 0.021923858672380447, 0.0003893724933732301, 0.03586776927113533, 0.03945174440741539, 0.002022986998781562, -0.022175857797265053, 0.024891840294003487, -0.027971819043159485, 0.002785982098430395, 0.01878787949681282, -0.01587589830160141, -0.028405817225575447, 0.010674931108951569, -0.021993858739733696, -0.0003320603573229164, -0.01594589650630951, 0.012046921998262405, -0.02174185961484909, -0.0012048672651872039, -0.0015224901726469398, 0.01379691157490015, 0.00615296047180891, 0.004903468303382397, 0.01594589650630951, 0.005431964993476868, -0.007874948903918266, 0.02113986387848854, -0.0038919749204069376, 0.00037143510417081416, -0.04233572632074356, 0.008273947052657604, -0.0021384861320257187, 0.02715982496738434, -0.0038114753551781178, 0.03695976361632347, -0.003463227767497301, 0.004679469857364893, -0.040347740054130554, 0.002507733879610896, -0.006936955265700817, 0.027915820479393005, -0.015133902430534363, 0.011822924017906189, -0.047935690730810165, -0.013278914615511894, 0.0011593675008043647, 0.003807975444942713, -0.010107934474945068, -0.014713904820382595, -0.013775911182165146, -0.0061774603091180325, 0.009512938559055328, -0.004108973778784275, 0.002640733029693365, 0.02052386850118637, -0.04647970199584961, -0.012459919787943363, -0.014699905179440975, -0.020229870453476906, 0.0069964551366865635, -0.020285869017243385, 0.003433477832004428, -0.00914194155484438, -0.0032532289624214172, -0.009897936135530472, 0.008525945246219635, -0.0195158738642931, -0.037351761013269424, 0.018451880663633347, -0.016211895272135735, 0.006849456112831831, 0.028699815273284912, -0.008266947232186794, 0.030351804569363594, -0.023799845948815346, 0.011444926261901855, -0.012725917622447014, 0.0009161190828308463, 0.007181953638792038, 0.01115092821419239, -0.004721469711512327, 0.005498464684933424, 0.023057851940393448, 0.00499096792191267, 0.023687846958637238, 0.006943955086171627, -0.019179876893758774, 0.015021903440356255, 0.026767827570438385, 0.0014944904251024127, -0.0006763706333003938, 0.014244908466935158, -0.01348191313445568, 0.004469471052289009, -0.023043852299451828, -0.006163460202515125, -0.008553944528102875, 0.02942780964076519, 0.013446913100779057, 0.011920923367142677, -0.011325927451252937, -0.013012915849685669, 0.011906923726201057, -0.016085896641016006, 0.0157638993114233, -0.016841892153024673, 0.024345843121409416, 0.01594589650630951, 0.0008364946115761995, -0.0033197286538779736, -0.0037029762752354145, -0.012382919900119305, 0.026907827705144882, 0.04194372892379761, 0.02529783733189106, 0.019613873213529587, 0.010723930783569813, 0.01649189367890358, 0.016617892310023308, -0.014923904091119766, 0.04454771429300308, -0.0017508637392893434, -0.004395971540361643, 0.024835839867591858, 0.005718963220715523, 0.03427178040146828, 0.011871923692524433, -0.023715848103165627, 0.016057897359132767, 0.019151877611875534, 0.029679808765649796, 0.012186921201646328, 0.04412771761417389, 0.026053832843899727, 0.03116379864513874, -0.005900961812585592, 0.04225172847509384, -0.004056473728269339, -0.018087884411215782, 0.007440952118486166, 0.014853904023766518, -0.0030012307688593864, 0.02945581078529358, 0.011542925611138344, 0.03119179978966713, 0.010716930963099003, -0.016757892444729805, 0.02343584969639778, 0.02168586105108261, 0.0007104953983798623, -0.024415843188762665, -0.009631938301026821, 0.019851872697472572, -0.011934923008084297, 0.00823194719851017, 0.01828388310968876, 0.018129883334040642, 0.00857494492083788, 0.013642911799252033, -0.024373842403292656, 0.015721898525953293, -0.014587906189262867, 0.007041954435408115, -0.007335952948778868, -0.004703969694674015, -0.027481822296977043, 0.00014448344882111996, -0.01577789895236492, -0.01033193338662386, -0.014314907602965832, 0.0001589208550285548, 0.013404913246631622, 0.009099941700696945, 2.0261588360881433e-05, -0.006061960943043232, 0.020173870027065277, 0.002925981068983674, 0.0061739603988826275, -0.04297972470521927, -0.016799891367554665, 0.023743847385048866, 0.019711872562766075, -0.0059464615769684315, -0.020775865763425827, -0.0005591214285232127, -0.02183985896408558, 0.00821794755756855, 0.012683918699622154, -0.009001942351460457, 0.023785846307873726, -0.0018934877589344978, -0.006040961015969515, -0.011430926620960236, 0.017163889482617378, 0.03779975697398186, -0.01695389114320278, -0.012501919642090797, 0.0034247280564159155, -0.008994942530989647, 0.010415933094918728, -0.013313914649188519, -0.021307863295078278, 0.0218538586050272, -0.021867860108613968, -0.02357584796845913, -0.030771801248192787, -0.004703969694674015, -0.0283358171582222, -0.001459490624256432, -0.00765095092356205, -0.006492458283901215, 0.0007301828009076416, -0.017849884927272797, 0.012417919933795929, -0.006705956999212503, -0.0025409837253391743, 0.012032922357320786, 0.02350584790110588, 0.004777469206601381, -0.033263787627220154, 0.015427900478243828, 0.03508377447724342, 0.07050354778766632, 0.013992910273373127, -0.005253466311842203, 0.022763853892683983, -0.004129973240196705, -0.01762588694691658, -0.020999865606427193, -0.025745835155248642, 0.0352797731757164, -0.01148692611604929, -0.022637853398919106, 0.011311926878988743, 0.020229870453476906, -0.006628957111388445, 0.006849456112831831, -0.008987941779196262, -0.004836969077587128, -0.028517816215753555, -0.006306959316134453, 0.009225940331816673, 0.014181909151375294, -0.0028664814308285713, 0.03701576218008995, 0.030939800664782524, 0.019277876242995262, 0.01382491085678339, 0.03427178040146828, 0.008602944202721119, -0.006982455030083656, -0.020159870386123657, -0.03343178331851959, 0.018003884702920914, 0.018311882391572, 0.021349862217903137, -0.028573816642165184, 0.013355913572013378, -0.001951237441971898, -0.011864923872053623, -0.01636589504778385, -0.0015373651403933764, -0.0032077294308692217, 0.030911801382899284, 0.011850923299789429, -0.009246940724551678, 0.007692950312048197, -0.021405862644314766, -0.0018794878851622343, 0.017765885218977928, -0.015511900186538696, -0.014951903373003006, 0.015427900478243828, 0.009218940511345863, -0.018311882391572, 0.011612925678491592, -0.00382897537201643, -0.019711872562766075, 0.01381791103631258, -0.009225940331816673, -0.043819718062877655, -0.023897845298051834, -0.03544777259230614, -0.029539810493588448, 0.003699476132169366, -0.0032427292317152023, -0.009890936315059662, -0.008168946951627731, 0.005193966440856457, 0.005732962861657143, -0.026361830532550812, 0.0034317278768867254, 0.005319965537637472, -0.03642776608467102, -0.03606376796960831, -0.0073289526626467705, 0.026011832058429718, 0.011864923872053623, -0.007958948612213135, 0.009281939826905727, 0.0009939935989677906, 0.011451926082372665, 0.01646389439702034, -0.0327317900955677, -0.009680937975645065, -0.03217179328203201, 0.016141895204782486, -0.010730930604040623, -0.026151832193136215, -0.010289933532476425, -0.01264891866594553, 0.004196472931653261, -0.012032922357320786, 0.003937474451959133, 0.0012074921978637576, 0.014286908321082592, -0.0013002416817471385, 0.03788375481963158, 0.024541841819882393, 0.0007135578780435026, 0.02704782597720623, -0.036203768104314804, 0.009673938155174255, -0.010660931468009949, -0.01636589504778385, -0.013719911687076092, 0.006653456948697567, 0.014587906189262867, -0.011633925139904022, -0.005305965896695852, 0.001704488997347653, -0.012270920909941196, 0.022581854835152626, -0.004752969369292259, 0.0026267331559211016, -0.004738969262689352, 0.010464932769536972, -0.03712775930762291, 0.008686943911015987, 0.021559860557317734, 0.020705867558717728, -0.012830917723476887, -0.012844917364418507, -0.0022802352905273438, 0.036707762628793716, 0.005305965896695852, -0.006107460707426071, 0.0014314907602965832, 0.02830781787633896, -0.02050986886024475, -0.03519577160477638, 0.00034124779631383717, -0.03595176711678505, 0.020705867558717728, -0.009813936427235603, -0.010275933891534805, -0.007538951467722654, -0.0020544868893921375, -0.011976922862231731, 0.004360971972346306, -0.017835885286331177, -0.016589893028140068, -0.023393848910927773, 0.007860949262976646, 0.00212098634801805, -0.01762588694691658, 0.01289391703903675, -0.035531770437955856, -0.019655873998999596, 0.01712189055979252, 0.011689924634993076, 0.010380933061242104, -0.018381882458925247, -0.017303887754678726, -0.021951857954263687, -0.026193831115961075, -0.007118954323232174, -0.025563836097717285, -0.002931231167167425, 0.019207876175642014, 0.05935961753129959, 0.021293863654136658, 0.00748995179310441, 0.003228729125112295, 0.014328908175230026, 0.003426478011533618, -0.0008509320323355496, -0.010072935372591019, -0.019025877118110657, -0.013691911473870277, 0.010261934250593185, 0.005312965717166662, 0.007391952443867922, 0.007608951069414616, -0.015273901633918285, 0.0021192363929003477, 0.008728943765163422, 0.012550919316709042, -0.006541457958519459, 0.004798469133675098, -0.04544370621442795, -0.04653570055961609, 0.0037519759498536587, 0.033207785338163376, -0.01875987835228443, 0.006408458575606346, -0.026893826201558113, -0.004679469857364893, 0.003608476836234331, -0.0017071140464395285, 0.029035812243819237, 0.019837873056530952, 0.04244772717356682, 0.0015023653395473957, -0.009008942171931267, -0.0033967280760407448, -0.011122928000986576, -0.01761188730597496, -0.020789865404367447, -0.04127173498272896, -0.006016461178660393, -0.002241735579445958, 0.009519938379526138, 0.011367926374077797, -0.01874587871134281, 0.01288691721856594, -0.0013859911123290658, 0.02829381823539734, -0.012536919675767422, -0.029567809775471687, 0.017765885218977928, -0.032059792429208755, -0.011612925678491592, -0.0352797731757164, -0.021363861858844757, -0.00023909221636131406, -0.0123969204723835, -0.01707988977432251, 0.02581583335995674, 0.01640789397060871, -0.02119586430490017, -0.017247889190912247, 0.026207830756902695, 0.015273901633918285, 0.036847762763500214, 0.0015294901095330715, 0.034439779818058014, 0.020159870386123657, -0.0023362350184470415, -0.00998893566429615, -0.014657905325293541, 0.013607912696897984, -0.00792394857853651, 0.006555457599461079, 0.03715576231479645, -0.01769588515162468, -0.0019232375780120492, 0.01580589823424816, -0.01695389114320278, 0.00487546855583787, -0.04244772717356682, 0.011521926149725914, 0.004346971865743399, -0.010632931254804134, -0.027775820344686508, -0.03539177030324936, -0.005144966766238213, 0.011367926374077797, 0.003067730227485299, 0.027453823015093803, 0.00767195038497448, 0.005141466856002808, 0.00966693740338087, 0.04132773354649544, -0.0048264688812196255, 0.02288985252380371, -0.0036819763481616974, -0.007993948645889759, -0.026095831766724586, 0.0009449939243495464, 0.004374971613287926, -0.019823871552944183, 0.011885923333466053, 0.01647789403796196, -0.011038929224014282, -0.00030099807190708816, 0.005242966115474701, 0.008742943406105042, -0.020313868299126625, -0.012109922245144844, -0.009645937941968441, 0.0342157781124115, -0.013992910273373127, -0.010373933240771294, -0.018577881157398224, -0.01815788261592388, 0.006002461537718773, -0.03177979588508606, -0.013369914144277573, -0.00013770224177278578, -0.0027142325416207314, 0.016239894554018974, 0.014223908074200153, 0.008441945537924767, -0.017163889482617378, 0.003002980723977089, 0.007706950418651104, -0.021531861275434494, -0.00045849705929867923, 0.004021474160254002, 0.006411958951503038, -0.016659893095493317, -0.018619880080223083, -0.00661145756021142, 0.0021157364826649427, 0.02225985750555992, -0.013719911687076092, -0.008469945751130581, 0.00041190360207110643, 0.029735809192061424, -0.011465925723314285, -0.0120609225705266, 0.013411913998425007, 0.011591925285756588, -0.035615772008895874, 0.013852911069989204, -0.004175473004579544, -0.004756469279527664, 0.0241218451410532, -0.0067934561520814896, -0.02126586250960827, -0.03889175131917, -0.0038184754084795713, 0.001329991384409368, -0.0011969923507422209, -0.007258953060954809, 0.012774917297065258, 0.009652937762439251, 0.002575983526185155, 0.00018801441183313727, -0.009876936674118042, -0.004245472606271505, 0.00645045842975378, 0.01882987841963768, 0.014265907928347588, -0.0234498493373394, 0.005183466710150242, -0.018465880304574966, 0.025731833651661873, -0.006632457487285137, -0.03835975378751755, -0.020453868433833122, -0.026249831542372704, -0.01594589650630951, 0.00249898387119174, -0.006635957397520542, -0.0035017274785786867, -0.00788194965571165, -0.007727950345724821, 0.010380933061242104, -0.006723456550389528, 0.005886962171643972, 0.013138915412127972, -0.024933839216828346, 0.0030169805977493525, 0.009680937975645065, -0.014489906840026379, -0.045639704912900925, -0.0005809962749481201, -0.01647789403796196, -0.025997832417488098, -0.010184934362769127, -0.014895903877913952, 0.05104367062449455, 0.0011296176817268133, -0.01649189367890358, -0.012004923075437546, -0.015441901050508022, -0.040263742208480835, -0.011857924051582813, -0.03001580759882927, 0.03449577838182449, 0.0423637256026268, 0.04600370302796364, 0.006012961268424988, 0.024289844557642937, -0.0016266144812107086, 0.019655873998999596, -0.024989839643239975, -0.00632795924320817, -0.009785937145352364, -0.033263787627220154, 0.0036539763677865267, -0.01208192203193903, -0.03589576855301857, -0.010156934149563313, 0.010667931288480759, -0.011206927709281445, 0.014713904820382595, 0.025549834594130516, -0.013768911361694336, 0.004724969621747732, -0.010450933128595352, 0.008301946334540844, 0.047851692885160446, 0.021503861993551254, 0.003263728925958276, -0.024807840585708618, 0.0021489860955625772, 0.011871923692524433, -0.007685950491577387, -0.025465836748480797, 0.0010386182693764567, 0.0181718822568655, -0.011178928427398205, 0.024485843256115913, -0.0029049813747406006, -0.012011922895908356, -0.009197941049933434, -0.015987897291779518, 0.023113850504159927, 0.004392471630126238, 0.009953935630619526, 0.020817866548895836, 0.006555457599461079, 0.005309465806931257, -0.020971864461898804, 0.007363952696323395, 0.02055186778306961, -0.0036609764210879803, 0.023127852007746696, -0.02538183704018593, -0.007615950889885426, -0.01828388310968876, 0.012193921953439713, 0.011346926912665367, -0.008686943911015987, -0.016869891434907913, 0.012011922895908356, -0.029063813388347626, 0.00249198405072093, 0.014475907199084759, -0.008651943877339363, -0.015147902071475983, -0.013922910206019878, -0.009183940477669239, -0.00022159233049023896, -0.0001684364106040448, -0.011836923658847809, -0.014895903877913952, 0.005344465374946594, -0.008742943406105042, 0.00574696296826005, -0.06417558342218399, 0.004549970850348473, 0.030267804861068726, -0.015385900624096394, -0.015175902284681797, 0.2055186778306961, -0.0015207402175292373, 0.014531906694173813, 0.024443842470645905, 0.02402384579181671, -0.01416090875864029, 0.0006383084109984338, 0.011920923367142677, -0.015721898525953293, -0.005550964269787073, 0.016309894621372223, 0.001060493174009025, -0.03536377102136612, -0.0037344759330153465, 0.013306913897395134, -0.01775188557803631, -0.03161179646849632, -0.017779884859919548, -0.00966693740338087, 0.015105903148651123, 0.011605924926698208, -0.0042349728755652905, -0.02463984116911888, -0.012627918273210526, 0.03404778242111206, 0.017345888540148735, 0.002773732179775834, 0.01945987530052662, 0.012571918778121471, 0.013964910060167313, -0.0022032358683645725, -0.003454477759078145, 0.020453868433833122, -0.008168946951627731, -0.01413290947675705, -0.010870929807424545, 0.012620918452739716, -0.020943865180015564, -0.004448471590876579, 0.005050467327237129, 0.025115838274359703, -0.014104909263551235, 0.012165921740233898, -0.05373165383934975, 0.012550919316709042, -0.014545906335115433, -0.0264598298817873, -0.00939393974840641, 0.014853904023766518, 0.007524951361119747, -0.001861987984739244, -0.0067374566569924355, 0.019767872989177704, -0.006492458283901215, 0.0005958711844868958, 0.005015467759221792, -0.01416090875864029, 0.011927923187613487, -0.0067304568365216255, -0.00128974171821028, -0.009932936169207096, 0.007741949986666441, -0.0013807411305606365, 0.004308472387492657, -0.04479971155524254, 0.035671770572662354, -0.006992954760789871, 0.044351715594530106, 0.003191979369148612, -0.000491746817715466, -0.015441901050508022, -0.009344940073788166, -0.02596983313560486, -0.00488246837630868, -0.0122919213026762, -0.012025922536849976, 0.022049857303500175, 0.020481867715716362, 0.0530596598982811, -0.010709931142628193, 0.015497900545597076, 0.00257948343642056, -0.012116922065615654, -0.021993858739733696, 0.0006330584292300045, -0.003260229015722871, 0.03715576231479645, -0.02409384399652481, 0.009295940399169922, -0.02521383762359619, 0.004133473616093397, 0.01882987841963768, -0.007944948971271515, -0.010394932702183723, -0.0045884703285992146, 0.0010307433549314737, 0.010597932152450085, 0.011038929224014282, -0.01437790784984827, -0.04183173179626465, -0.005214966367930174, 0.05053967610001564, 0.0008089322946034372, 0.02472384087741375, -0.006313959136605263, 0.013740911148488522, -0.006394458934664726, 0.014615905471146107, 0.017849884927272797, -0.026165831834077835, 0.01233392022550106, -0.046227701008319855, 0.02119586430490017, -0.006404958665370941, -0.007279952988028526, 0.0223158560693264, 0.020341869443655014, 0.011885923333466053, 0.014895903877913952, -0.007762949913740158, 0.025115838274359703, 0.0037834756076335907, 0.006331459153443575, 0.0035087272990494967, -0.026599828153848648, -0.03765975683927536, 0.00604446092620492, 0.01769588515162468, -0.03651176393032074, -0.031443797051906586, 0.008658944629132748, -0.006838955916464329, 0.015133902430534363, -0.0123969204723835, -0.004448471590876579, -0.019767872989177704, -0.013173915445804596, -0.0134959127753973, 0.019291875883936882, -0.004766969475895166, 0.00022531104332301766, 0.013096915557980537, 0.010751930996775627, 0.008735943585634232, 0.0009178690961562097, 0.012151922099292278, -0.014314907602965832, 0.005445965100079775, -0.03715576231479645, -0.014188908971846104, 0.0059114620089530945, 0.010282933712005615, -0.007447951938956976, -0.011346926912665367, 0.0223158560693264, -0.030911801382899284, -0.032675787806510925, -0.023729847744107246, 0.016939891502261162, 0.011262927204370499, -0.06484758108854294, 0.019641874358057976, 0.0434277206659317, -0.004395971540361643, -0.022511854767799377, -0.0188438780605793, -0.17863884568214417, 0.011003929190337658, 0.004913968499749899, -0.0056139640510082245, 0.012781918048858643, 0.03757575899362564, 0.006884455680847168, -0.002038736827671528, -0.02577383443713188, 0.0018042384181171656, 0.007370952516794205, -0.010695931501686573, -0.037911754101514816, -0.0246538408100605, -0.0019039877224713564, -0.03516777232289314, -0.0013859911123290658, 0.0330117866396904, 0.054459650069475174, 0.011066928505897522, 0.027831820771098137, -0.022623853757977486, -0.01553990039974451, 0.008875942789018154, 0.023183850571513176, 0.019193876534700394, 0.0025182338431477547, 0.023407848551869392, -0.003405478084459901, -0.042755722999572754, 0.01873187907040119, -0.014713904820382595, 0.00302223046310246, 0.007454952225089073, -0.009645937941968441, -0.01814388297498226, -0.0001716082770144567, -0.003575226990506053, -0.013929910026490688, 0.0153019018471241, 0.034467779099941254, 0.016029896214604378, 0.03312378749251366, 0.015385900624096394, 0.008007948286831379, 0.025409836322069168, 0.039703745394945145, -0.016757892444729805, 0.014237908646464348, 0.00615996029227972, 0.011675924994051456, -0.027551822364330292, -0.004731969442218542, 0.016099896281957626, 0.00458497041836381, 0.010492932051420212, 0.0084839453920722, 0.021069863811135292, 0.0016292395303025842, -0.0024604841601103544, 0.017429888248443604, -0.016883891075849533, -0.00039593494147993624, -0.010079935193061829, -0.01695389114320278, -0.02006187103688717, 0.0008439320954494178, 0.028629815205931664, 0.003877975046634674, 0.0073569524101912975, 0.005956961773335934, 0.00517296651378274, 0.005792462732642889, 0.009918936528265476, 0.014475907199084759, 0.0059079620987176895, -0.028671815991401672, -0.009330939501523972, 0.0097229378297925, 0.00345097784884274, 0.010821930132806301, 0.015371900983154774, 0.01710788905620575, -0.008546944707632065, -0.023225851356983185, -0.009890936315059662, 0.009358939714729786, -0.002467484213411808, -0.002519983798265457, 0.0013772411039099097, 0.02643183059990406, -0.00440997164696455, -0.013180915266275406, -0.010072935372591019, 0.014769905246794224, 0.006828456185758114, 0.00616696011275053, 3.27029156323988e-05, -0.0026424829848110676, -0.014216908253729343, 0.001040368340909481, 0.016057897359132767, -0.039227746427059174, 0.016001896932721138, 0.027887821197509766, 0.005582463927567005, 0.02459784224629402, -0.007615950889885426, 0.02346384897828102, -0.030995801091194153, -0.027439823374152184, 0.004101973492652178, 0.030351804569363594, 0.0022487356327474117, -0.03214379400014877, 0.05543964356184006, -0.002031737007200718, -0.024793840944767, 0.014839904382824898, -0.02533983625471592, 0.02641782909631729, -0.02834981679916382, -0.02050986886024475, -0.003636476583778858, -0.002437734277918935, -0.006670956965535879, -0.12006323039531708, -0.02067786641418934, 0.021587861701846123, 0.000378872558940202, -0.0030782301910221577, 0.011031929403543472, 0.002680982695892453, 0.04124373570084572, 0.005032967776060104, 0.024849839508533478, -0.023281849920749664, 0.014461906626820564, -0.004675969947129488, -0.019557874649763107, 0.014601905830204487, -0.013516913168132305, -0.002752732252702117, -0.007510951720178127, -0.005858962424099445, 0.04174773022532463, 0.0051239668391644955, 0.0032427292317152023, 0.017835885286331177, 0.001914487686008215, 0.0047879694029688835, -0.014573906548321247, -0.017275888472795486, 0.01499390322715044, 0.019907871261239052, 0.01695389114320278, 0.021433861926198006, -0.0042349728755652905, 0.003699476132169366, -0.03359978273510933, 0.013950910419225693, 0.00048430939204990864, -0.027999820187687874, -0.008203946985304356, 0.0034842274617403746, -0.019179876893758774, 0.00940793938934803, -0.008399945683777332, 0.007440952118486166, -0.03838775306940079, -0.00411247368901968, 0.004924468230456114, -0.02416384406387806, 0.031023800373077393, 0.007080454379320145, 0.0012608668766915798, -0.03751975670456886, -0.027845820412039757, -0.04185973107814789, -0.02763582207262516, 0.018003884702920914, 0.01579189859330654, -0.005764462985098362, 0.026585828512907028, -0.01033193338662386, 0.0008089322946034372, 0.0048194690607488155, -0.0007209953619167209, 0.001261741854250431, 0.018535880371928215, 0.005732962861657143, 0.02413584478199482, -0.008973942138254642, 0.003263728925958276, -0.020145870745182037, 0.008777943439781666, -0.0138319106772542, 0.01322991494089365, -0.01880187913775444, 0.018059883266687393, -0.024471841752529144, -0.0018269881838932633, 0.009904935956001282, -0.014020909555256367, 0.0141679085791111, 0.011605924926698208, -0.005466965027153492, -0.018367880955338478, -0.0015968646621331573, -0.024905839934945107, 0.014587906189262867, -0.0005639338633045554, 0.02297385223209858, -0.012424919754266739, 0.03413178026676178, -0.038611751049757004, 0.006709456909447908, 0.02589983306825161, 0.0006619332125410438, 0.015371900983154774, 0.011052928864955902, 0.018521880730986595, -0.017205888405442238, -0.019277876242995262, 0.022679854184389114, 0.009939935989677906, 0.004721469711512327, 0.008378946222364902, -0.03295578807592392, 0.005659463349729776, 0.01532990112900734, 0.017205888405442238, -0.00307298032566905, -0.01534390076994896, 0.010716930963099003, 0.0028384816832840443, 0.009505938738584518, -0.00010817118163686246, -0.02536783739924431, 0.018563879653811455, -0.0035157273523509502, 0.00206323666498065, -0.02594183385372162, 0.0037799756973981857, 0.015455900691449642, -0.008735943585634232, 0.00966693740338087, 0.004192973021417856, -0.016225894913077354, 0.0013763661263510585, -0.0020982364658266306, 0.02410784550011158, -0.023673847317695618, 0.015147902071475983, -0.01710788905620575, 0.02056586742401123, -0.012788917869329453, -0.05356365442276001, 0.014685905538499355, 0.01499390322715044, -0.009204940870404243, 0.012627918273210526, -0.005701463203877211, -0.0315277986228466, 0.0218538586050272, 0.003324978519231081, 0.024289844557642937, 0.01709388941526413, -0.012697918340563774, -0.027215825393795967, 0.012214921414852142, -0.02886781468987465, -0.022077858448028564, -0.01695389114320278, -0.01407690905034542, -0.007391952443867922, 0.010030935518443584, 0.006271959748119116, 0.048495687544345856, 0.010275933891534805, -0.02592783235013485, -0.011381926946341991, -0.00016504581435583532, -0.004619970452040434, 0.008644944056868553, 0.02123786322772503, 0.012620918452739716, -0.0018304882105439901, 0.029623810201883316, -0.010709931142628193, 0.011304927058517933, -0.013194914907217026, 0.013341913931071758, -0.030379803851246834, -0.02640382945537567, -0.011465925723314285, 0.010233934037387371, -0.019809871912002563, 0.018381882458925247, -0.03427178040146828, 0.021083863452076912, 0.009932936169207096, 0.00045762205263599753, 0.0034002282191067934, -0.011248927563428879, -0.023197850212454796, -0.006345459260046482, 0.029707808047533035, 0.014034909196197987, -0.01996387168765068, -0.011948922649025917, 0.011080929078161716, 0.01595989800989628, 0.013103915378451347, 0.0026214830577373505, 0.019907871261239052, 0.011542925611138344, -0.005365465302020311, -0.013180915266275406, 0.012473919428884983, -0.029791807755827904, 0.0039689745754003525, 0.0018269881838932633, 0.007993948645889759, -0.01499390322715044, 0.016715891659259796, 0.02055186778306961, 0.00301523064263165, -0.007412952370941639, 0.016729893162846565, 0.01031793374568224, -0.023393848910927773, -0.010247933678328991, 0.009477938525378704, -0.019865872338414192, -0.014181909151375294, 0.01814388297498226, 0.01171792484819889, 0.003354728454723954, -0.011647924780845642, -0.003263728925958276, 0.003926974721252918, -0.022007858380675316, -0.0056769633665680885, 0.005445965100079775, -0.03351578488945961, -0.036735761910676956, 0.004927968140691519, 0.00644345860928297, 0.03250779211521149, 0.00847694557160139, -0.020243870094418526, 0.024975840002298355, -0.01819988340139389, 0.0033634784631431103, -0.018605880439281464, 0.00792394857853651, -0.03365578502416611, -0.009687937796115875, 0.006656957324594259, -0.0064994581043720245, -0.023673847317695618, -0.01534390076994896, 0.007685950491577387, -0.010632931254804134, 0.010793930850923061, 0.01264191884547472, 0.07778350263834, 0.03340378403663635, -0.0040039741434156895, 0.00914894137531519, -0.021965859457850456, -0.009883936494588852, 0.015455900691449642, 0.0006908080540597439, 0.006880955770611763, -0.013684911653399467, 0.024219844490289688, -0.015749897807836533, -0.004101973492652178, -0.0017849885625764728, -0.0123969204723835, 0.006891455501317978, -0.0014822405064478517, 0.012445920147001743, -0.012466919608414173, 0.015245901420712471, 0.030883802101016045, -0.00395147455856204, 0.010527932085096836, -0.01531590148806572, -0.04017974063754082, -0.018661879003047943, 0.018577881157398224, 0.02475184015929699, -0.0048544686287641525, -0.03359978273510933, 0.01714988984167576, 0.011094928719103336, -0.011619925498962402, -0.020453868433833122, -0.01581989787518978, 0.01698189042508602, -0.007524951361119747, -0.020425869151949883, 0.009904935956001282, 0.018717879429459572, 0.01647789403796196, 0.00395147455856204, -0.022469855844974518, -0.026837827637791634, -0.012795917689800262, -0.0014603656018152833, -0.007811949588358402, -0.025465836748480797, 0.006719956640154123], "b263a9e2-496f-4680-857c-3759017d4fcd": [0.0024487522896379232, -0.018021151423454285, 0.01341867633163929, -0.02865612879395485, -0.0016816732240840793, 0.035709090530872345, -0.018451547250151634, -0.028545059263706207, -0.012439870275557041, -0.04506676271557808, 0.03059985861182213, 0.024449342861771584, 0.02077013999223709, -0.01032259315252304, 0.000446450401796028, 0.013064640574157238, 0.034487318247556686, -0.008128955028951168, 0.004779492504894733, 0.0008204448386095464, -0.015272161923348904, -0.015522070229053497, -0.014813996851444244, -0.014925067313015461, -0.02246396243572235, 0.006969659123569727, 0.016868796199560165, -0.007913756184279919, -0.01707705296576023, 0.03507043793797493, 0.006473314017057419, -0.003335579065605998, -0.012953570112586021, 0.0009267425630241632, -0.020908977836370468, 0.010336476378142834, 0.010308708995580673, -0.005619461182504892, 0.012911918573081493, -0.009225773625075817, 0.032182611525058746, 0.015299929305911064, 0.006271999329328537, -0.004008942283689976, -0.015119439922273159, 0.02896157279610634, 0.0013779655564576387, -0.013092407956719398, -0.007948465645313263, 0.014029563404619694, -0.002164134755730629, 0.006761402357369661, -0.03809710219502449, 0.010350360535085201, -0.020492464303970337, -0.016493935137987137, 0.010621094144880772, -0.0024487522896379232, 0.011835925281047821, -0.004713544622063637, -0.002134631620720029, -0.00956592708826065, -0.019242923706769943, -0.006685041822493076, 0.00407489063218236, -0.024074479937553406, -0.015716442838311195, -0.01030176691710949, -0.02537955529987812, -0.034431781619787216, 0.022380659356713295, 0.022130750119686127, 0.00257370644249022, 0.002799317939206958, -0.005251541268080473, -0.0027732858434319496, -0.00610192259773612, -0.011974763125181198, 0.0019558779895305634, -0.009864428080618382, 0.012065007351338863, -0.015355464071035385, -0.03168279305100441, -0.006750989705324173, 0.024268852546811104, 0.02181142382323742, 0.011953937821090221, 0.004480991046875715, 0.00015684336540289223, 0.008850911632180214, 0.020367510616779327, 0.007198741659522057, 0.010822408832609653, 0.010648861527442932, 0.005005104001611471, 0.02058965153992176, -0.005990852601826191, -0.0011028930312022567, 0.0034917716402560472, -0.017882313579320908, -0.01202335674315691, -0.012071949429810047, -0.008399688638746738, -0.010558617301285267, -0.030127810314297676, -0.024435458704829216, 0.019603902474045753, -0.010343418456614017, 0.0027646084781736135, 0.008538526482880116, -0.03518150746822357, 0.016757726669311523, -0.0003935184795409441, 0.001131528289988637, 0.01039201207458973, -0.020436929538846016, 0.023824572563171387, -0.021033931523561478, -0.00805953610688448, -0.016507819294929504, 0.006726692896336317, -0.007892930880188942, 0.042428843677043915, -0.02210298366844654, 0.019548367708921432, 0.003148147836327553, 0.022686101496219635, -0.02464371547102928, 0.010794641450047493, -0.014730693772435188, 0.007288986351341009, 0.004487933125346899, 0.009045285172760487, 0.014112865552306175, -0.023519128561019897, -0.0021381026599556208, -0.01872922293841839, -0.002136367140337825, -0.004841969348490238, -0.03654211759567261, 0.0233247559517622, 0.026032093912363052, 0.009156354703009129, -0.02011760137975216, 0.01214831043034792, 0.02107558399438858, -0.004953039810061455, 0.026615213602781296, -0.008462166413664818, 0.0069835432805120945, -0.0009519068989902735, 0.0024799907114356756, -0.012460695579648018, 0.012425986118614674, 0.0036514350213110447, 0.004696189891546965, -0.005126587115228176, 0.02622646652162075, -0.011530482210218906, -0.011113968677818775, -0.006865530740469694, 0.0053764949552714825, -0.004203315358608961, -0.01677161082625389, -0.012210787273943424, 0.03743068128824234, 0.008552410639822483, 0.003168973606079817, -0.013592223636806011, -0.00025706691667437553, 0.0037277957890182734, 0.024935275316238403, -0.01847931556403637, 0.010135161690413952, 0.014855648390948772, 0.01696598343551159, 0.01945118047297001, -0.007098084315657616, 0.008024826645851135, -0.030127810314297676, 0.02163093537092209, -0.00589019525796175, 0.009198006242513657, 0.02642083913087845, -0.029100410640239716, -0.007226509042084217, 0.033820897340774536, 0.023755153641104698, -0.006122748367488384, -0.009774183854460716, 0.0025181712117046118, 0.009399320930242538, 0.0017189859645441175, -0.0015072582755237818, -0.6259920001029968, 0.00844828225672245, 0.021408794447779655, -0.018854178488254547, -0.003457062179222703, 0.016396747902035713, 0.026518026366829872, -1.7924181520356797e-05, -0.003326901700347662, 0.04373391717672348, 0.021728120744228363, 0.019520599395036697, -0.016091305762529373, -0.011551307514309883, -0.009899137541651726, -0.027226099744439125, -0.013245129026472569, -0.030238879844546318, -0.0004707470361609012, 0.012800848111510277, -0.025476742535829544, 0.018868060782551765, 0.010551675222814083, -0.002046122681349516, 0.007323695812374353, -0.013279838487505913, 0.024088364094495773, -0.02410224825143814, 0.006143574137240648, 0.01275225542485714, -0.015771977603435516, 0.01305075641721487, 0.01853485032916069, 0.006480256095528603, 0.04173465445637703, -0.015105556696653366, 0.0074417078867554665, 0.012606475502252579, 0.014827881008386612, 0.053452566266059875, -0.020881209522485733, -0.010558617301285267, 0.021714236587285995, 0.018062802031636238, -0.014577972702682018, 0.02349136210978031, 0.008802318945527077, 0.010343418456614017, -0.009260483086109161, -0.022214053198695183, -0.005216831807047129, -0.01642451621592045, 0.0046788351610302925, 0.0032262441236525774, 0.007170974276959896, 0.004310914780944586, 0.02060353383421898, -0.017104821279644966, 0.0028513821307569742, -0.00012820806296076626, 0.01853485032916069, 0.008413572795689106, -0.0324602872133255, -0.028739431872963905, -0.04548327624797821, 0.008413572795689106, 0.0035247455816715956, -0.01938176155090332, 0.003064845222979784, -0.0007458194741047919, 0.027934173122048378, -0.007191799581050873, -0.007143206428736448, -0.01390460878610611, -0.01635509729385376, 0.0213254913687706, 0.022575031965970993, -0.006959246471524239, -0.023366406559944153, 0.008649596944451332, -0.003434500889852643, -0.0171325895935297, -0.015619256533682346, -0.001036077388562262, 0.0127800228074193, 0.00757360365241766, -0.030183345079421997, -0.020908977836370468, 0.003408468794077635, 0.0026986603625118732, 0.006046387832611799, 0.022033564746379852, -0.011287515982985497, -0.01664665713906288, 0.0037277957890182734, 0.032737962901592255, 0.004578177351504564, 0.0031169094145298004, -0.009343786165118217, -0.01624402590095997, -0.02465759962797165, -0.025004694238305092, 0.018257174640893936, -0.0038006857503205538, 0.033154476433992386, 0.033709827810525894, -0.0048003182746469975, -0.013585282489657402, 0.025171298533678055, -0.025462858378887177, -0.0015914286486804485, 0.009774183854460716, -0.01895136386156082, -0.019117970019578934, 0.016452282667160034, -0.021117234602570534, 0.010482256300747395, 0.005522274877876043, -0.0005414675688371062, -0.01828494295477867, -0.0013718913542106748, 0.002684776671230793, 0.012071949429810047, -0.006337947212159634, 0.013328432105481625, 0.008135897107422352, 0.01786842942237854, 0.0170909371227026, 0.025532277300953865, 0.003571603214368224, -0.0032175667583942413, -0.025782186537981033, 0.00744864996522665, -0.010746048763394356, 0.024199433624744415, -0.01005185954272747, 0.035098206251859665, -0.01232185773551464, 0.00039872489287517965, -0.039957527071237564, 0.001791008049622178, -0.015619256533682346, 0.010169871151447296, -0.02446322701871395, 0.010968188755214214, -0.029405852779746056, -0.028267383575439453, 0.009843602776527405, 0.00029719973099417984, -0.014494669623672962, -0.007788802497088909, -0.005758299026638269, -0.01450855378061533, 0.005737473722547293, -0.010440604761242867, 0.0044185142032802105, 0.022575031965970993, -0.041651349514722824, -0.013071581721305847, -0.017479684203863144, -0.010287883691489697, 0.0075805457308888435, -0.030988603830337524, 0.005109232384711504, -0.010975130833685398, 0.009121645241975784, 7.397453009616584e-05, -0.0005696690059266984, -0.020672952756285667, -0.03251582011580467, 0.005057168193161488, -0.006466371938586235, 0.004206786397844553, 0.021367141976952553, 0.0009996324079111218, 0.028572825714945793, -0.014001796022057533, 0.0034952424466609955, -0.0014925067080184817, -0.004033239092677832, 0.007865163497626781, 0.002410571789368987, -0.007983175106346607, 0.007774918805807829, 0.0328490324318409, 0.007747150957584381, 0.023185918107628822, 0.013592223636806011, -0.013890725560486317, 0.00041325949132442474, 0.03029441460967064, 0.006126219406723976, -0.0008195770788006485, 0.011273631826043129, -0.02628200128674507, -0.0009015781688503921, -0.017118705436587334, -0.002506022807210684, -0.004487933125346899, 0.030794231221079826, 0.0148972999304533, 0.012092775665223598, -0.004019355401396751, -1.4982012544351164e-05, 0.015883048996329308, -0.027642613276839256, 0.004765608813613653, -0.01171791274100542, 0.0297945998609066, 0.010343418456614017, 0.000520208035595715, -0.007184857968240976, 8.167569467332214e-05, -0.011308341287076473, 0.008857853710651398, 0.03695863112807274, 0.0014690777752548456, 0.012974395416676998, 0.004463636316359043, 0.004835027735680342, 0.018187755718827248, -0.0021138060837984085, 0.040374040603637695, 0.006577442400157452, 0.0005983042647130787, 0.027003958821296692, 0.009246599860489368, 0.02011760137975216, 0.003960349131375551, -0.022908242419362068, 0.009211890399456024, 0.01114867813885212, 0.024254970252513885, 0.012543998658657074, 0.04298419505357742, 0.03429294377565384, 0.028253499418497086, -0.008677364327013493, 0.03107190690934658, -0.004120012745261192, -0.018382128328084946, 0.012925802730023861, 0.02035362645983696, -0.01660500466823578, 0.03648658096790314, -0.000754062959458679, 0.02948915585875511, -0.0007475549355149269, -0.01745191588997841, 0.04026297107338905, 0.024699250236153603, 0.019853809848427773, -0.01214831043034792, -0.009850543923676014, 0.028017474338412285, -0.018701456487178802, 0.011752622202038765, 0.017174240201711655, 0.0030301357619464397, 0.007406998425722122, 0.006122748367488384, -0.010142103768885136, 0.012738371267914772, 0.004758666735142469, 0.014383599162101746, 0.013161826878786087, -0.011329167522490025, -0.018368246033787727, 0.008753725327551365, -0.0171325895935297, 0.00030001989216543734, -0.000762740324717015, -0.0005718383472412825, 0.007781860418617725, -0.019784390926361084, 0.006053329445421696, -0.001893400913104415, 0.0001548909640405327, -0.006594797130674124, 0.021700354292988777, -0.03773612156510353, -0.024546528235077858, 0.008024826645851135, 0.020131485536694527, -0.0029589813202619553, -0.00947568193078041, 0.004848911426961422, -0.022852707654237747, 0.019839925691485405, -0.002420984674245119, -0.0005323563236743212, 0.005674996413290501, -0.0057756537571549416, -0.008031768724322319, 0.0036306092515587807, 0.016674423590302467, 0.03287680074572563, -0.02743435651063919, -0.003450120100751519, 0.008198373951017857, 0.0026327124796807766, 0.012287148274481297, -0.01974274031817913, -0.013939318247139454, 0.03221037611365318, -0.019034666940569878, -0.026365304365754128, -0.02494915947318077, -0.009073052555322647, -0.014605740085244179, -0.0011584281455725431, 0.001638286397792399, -0.012668952345848083, -0.014577972702682018, -0.01416840124875307, 0.012467637658119202, -0.004342153202742338, -0.004019355401396751, 0.024810321629047394, 0.014466902241110802, 0.01660500466823578, -0.02379680424928665, 0.009774183854460716, 0.012071949429810047, 0.07002980262041092, 0.012724487110972404, 0.002655273536220193, 0.021672585979104042, -0.010600268840789795, -0.030377717688679695, -0.015063905157148838, -0.005005104001611471, 0.02835068479180336, -0.008115071803331375, -0.017493566498160362, 0.011329167522490025, 0.009246599860489368, -0.007254276890307665, 0.005737473722547293, -0.006591326091438532, -0.009954672306776047, -0.02797582373023033, -0.005893665831536055, 0.007622197270393372, 0.017313078045845032, -0.006789170205593109, 0.029572458937764168, 0.027961939573287964, 0.014078156091272831, -0.009079994633793831, 0.03815263509750366, 0.012384334579110146, -0.0031082320492714643, -0.02294989489018917, -0.028309034183621407, 0.010884886607527733, 0.0146612748503685, 0.0029555102810263634, -0.034737225621938705, 0.014675159007310867, -0.009968556463718414, -0.02429662086069584, -0.013474212028086185, 0.0013128853170201182, -0.0012347890296950936, 0.029961204156279564, 0.015702558681368828, -0.002792375860735774, 0.0038596917875111103, -0.028239615261554718, -0.005171709228307009, 0.029516924172639847, -0.010510023683309555, -0.0032245086040347815, 0.012877209112048149, 0.007823511958122253, -0.03312670812010765, 0.00844828225672245, 0.0026136222295463085, -0.022908242419362068, 0.005928375292569399, -0.012703661806881428, -0.056118253618478775, -0.03118297830224037, -0.03484829515218735, -0.016632772982120514, 0.013335374183952808, -0.0022526439279317856, -0.01120421290397644, -0.022491728886961937, 0.012335741892457008, 0.003181121777743101, -0.028794966638088226, 0.003807627595961094, 0.00969088077545166, -0.041817955672740936, -0.027517659589648247, -0.00011139566777274013, 0.017785126343369484, 0.007726325653493404, -0.013196536339819431, 0.01677161082625389, -0.008517701178789139, 0.010246232151985168, 0.0033598756417632103, -0.03809710219502449, -0.008594062179327011, -0.031710561364889145, 0.0030231939163058996, -0.00932296086102724, -0.02678181789815426, -0.004175547976046801, -0.0014699455350637436, 0.019853809848427773, -0.018368246033787727, -0.01659112051129341, -0.0008508156170137227, 0.00478643411770463, -0.0006889827782288194, 0.01981215924024582, 0.013724120333790779, 0.0030110455118119717, 0.034320712089538574, -0.023227568715810776, -0.0001543486287118867, -0.01927069202065468, -0.010898769833147526, -0.013550573028624058, 0.016882680356502533, 0.011502714827656746, -0.008122012950479984, -0.0047760214656591415, 0.002061741892248392, -0.007608313113451004, 0.011093143373727798, -0.0021294252946972847, 0.0024678425397723913, -0.010010208003222942, 0.015341580845415592, -0.019826043397188187, 0.013758829794824123, 0.019909344613552094, 0.014182284474372864, -0.020339742302894592, -0.010864060372114182, -0.003288721200078726, 0.029322549700737, 0.0037694470956921577, -0.003057903377339244, 0.003196741221472621, 0.02242230996489525, -0.01835436187684536, -0.016313444823026657, 0.008510759100317955, -0.03132181614637375, 0.007885988801717758, -0.021644817665219307, -0.015105556696653366, -0.011100084520876408, -0.005997794214636087, -0.013259013183414936, 0.006636448670178652, -0.014813996851444244, -0.028600594028830528, -0.021339375525712967, -0.00013026893429923803, -0.0028704721480607986, -0.014758462086319923, 0.011822041124105453, -0.022519497200846672, -0.029100410640239716, 0.02797582373023033, 0.002552880672737956, 0.026545794680714607, -0.028239615261554718, -0.016688307747244835, -0.00963534601032734, -0.009947731159627438, -0.004425455816090107, -0.028683897107839584, -0.006001265253871679, 0.008344153873622417, 0.05500755086541176, 0.030877534300088882, -0.016021886840462685, 0.00176844687666744, 0.03737514466047287, 0.03723630681633949, -0.003988116979598999, -0.0058971368707716465, -0.01981215924024582, -0.0049946908839046955, 0.010593326762318611, 0.012002530507743359, 0.00914941355586052, -0.0008069949108175933, -0.002443545963615179, 0.00257370644249022, 0.01239127665758133, 0.024379923939704895, -0.007976233959197998, -0.010044917464256287, -0.03393196687102318, -0.04773244634270668, 0.0005141338333487511, 0.03543141484260559, -0.0021242189686745405, 0.007066845893859863, -0.023185918107628822, -0.0001990370510611683, 0.010759931989014149, -0.005216831807047129, 0.03318224102258682, 0.02325533702969551, 0.03423741087317467, 0.008531585335731506, -0.011683203279972076, -0.0020843029487878084, -0.004803788848221302, -0.006424720864742994, -0.006226876750588417, -0.0297945998609066, -0.008656539022922516, -0.005442443303763866, 0.024338271468877792, 0.025462858378887177, -0.007351463194936514, 0.009218832477927208, 0.010572501458227634, 0.03184939920902252, -0.02042304538190365, -0.026212582364678383, 0.016188491135835648, -0.022269587963819504, 0.0006824747542850673, -0.021339375525712967, -0.026157047599554062, 0.0025962674990296364, 0.0006703264079988003, -0.020922861993312836, 0.018326593562960625, 0.012016414664685726, -0.026309769600629807, -0.0032297151628881693, 0.015077788382768631, 0.015494301915168762, 0.036319978535175323, 0.0016113866586238146, 0.03459838777780533, 0.016882680356502533, 0.008843970485031605, -0.0009770712349563837, -0.01672995835542679, 0.012877209112048149, -0.006195638328790665, 0.00458859046921134, 0.030433252453804016, -0.02294989489018917, -0.0018378657987341285, 0.008135897107422352, -0.014605740085244179, 0.0031516188755631447, -0.03790272772312164, 0.01139164436608553, 0.012606475502252579, -0.0024904035963118076, -0.038374777883291245, -0.022089099511504173, -0.019242923706769943, 0.01907631754875183, 0.02228347212076187, 0.035348113626241684, 0.005494507495313883, 4.4932479795534164e-05, 0.008337211795151234, 0.04229000583291054, -0.018396012485027313, 0.022672219201922417, -0.013272897340357304, -0.003049226012080908, -0.021353259682655334, -0.008115071803331375, -0.008038710802793503, -0.020797908306121826, 0.02253338135778904, 0.006803053896874189, 0.0036306092515587807, 0.0011618990683928132, 0.016257910057902336, 0.01792396418750286, -0.018340477719902992, -0.002662215381860733, -0.011100084520876408, 0.029877901077270508, -0.01448078639805317, -0.004505287855863571, -0.010884886607527733, -0.01672995835542679, 0.015244394540786743, -0.015299929305911064, -0.006872472818940878, -0.004144309554249048, 0.0021120705641806126, 0.015785861760377884, 0.012370451353490353, 0.015605372376739979, -0.018271058797836304, -0.005695822183042765, -0.0027802276890724897, -0.01623014360666275, -0.003444913774728775, 0.018021151423454285, 0.012481520883738995, -0.021519863978028297, -0.01579974591732025, 0.0020964513532817364, 0.0018274530302733183, 0.024032829329371452, -0.001406600815244019, 0.0027576663997024298, -0.0019697616808116436, 0.02901710756123066, -0.005473681725561619, -0.023033196106553078, 0.01617460697889328, 0.009989381767809391, -0.02833680249750614, 0.017424147576093674, 0.006851647049188614, -0.004911388270556927, 0.024213317781686783, -0.017118705436587334, -0.02689288929104805, -0.03615337237715721, -0.0017510921461507678, 0.006754460744559765, 0.006952304393053055, -0.007247334811836481, 0.01624402590095997, -0.0011028930312022567, 0.007733267266303301, 0.0034900361206382513, -0.0031446770299226046, -0.005893665831536055, -0.005286250729113817, 0.013960144482553005, 0.0052793086506426334, -0.02338029071688652, 0.007892930880188942, -0.015119439922273159, 0.01743803173303604, -0.015577604994177818, -0.030072275549173355, -0.034681692719459534, -0.025823837146162987, -0.00516129657626152, -0.0035073908511549234, -0.01105149183422327, 0.009288251399993896, -0.016868796199560165, -0.012307973578572273, 0.01402262132614851, -0.001791008049622178, 0.000630844384431839, 0.013668584637343884, -0.017604637891054153, 0.013925435021519661, 0.02429662086069584, -0.01761852204799652, -0.04859324172139168, -0.00769161619246006, -0.01925680786371231, -0.038319241255521774, 0.004949568770825863, -0.02694842405617237, 0.05620155483484268, 0.008482991717755795, -0.02022867277264595, -0.021894726902246475, -0.02890603616833687, -0.04859324172139168, -0.006254644598811865, -0.0457887165248394, 0.03384866565465927, 0.03987422585487366, 0.03754175081849098, 0.010822408832609653, 0.034320712089538574, 0.004425455816090107, 0.007164032198488712, -0.03229368105530739, -0.005432030186057091, -0.03495936840772629, -0.027823101729154587, 0.00731675373390317, 0.0041130706667900085, -0.04229000583291054, -0.0014144104206934571, 0.008802318945527077, -0.01745191588997841, 0.011919228360056877, 0.019701087847352028, -0.02029809169471264, 0.006615622900426388, -0.0017051021568477154, 0.0095451008528471, 0.024546528235077858, 0.023060964420437813, 0.017007634043693542, -0.03718077018857002, 0.0019732327200472355, 0.017646288499236107, -0.004224141128361225, -0.030433252453804016, 0.011794273741543293, 0.022922126576304436, -0.010315651074051857, 0.012974395416676998, 0.004123483784496784, -0.008601004257798195, 0.0044393399730324745, -0.004932214040309191, 0.025087997317314148, 0.0117803905159235, 0.013862958177924156, 0.024213317781686783, -0.0013614784693345428, 0.017521334812045097, -0.012530114501714706, -0.000506758107803762, -0.0016287413891404867, 0.011155620217323303, 0.026032093912363052, -0.023769037798047066, 0.0018361303955316544, -0.028850501403212547, -0.0002351565781282261, 0.02011760137975216, -0.009239657782018185, -0.009704764932394028, -0.0008811863954178989, -0.03420964255928993, -0.009489566087722778, 0.011030665598809719, -0.01872922293841839, -0.018548734486103058, -0.004002000670880079, -0.008517701178789139, -0.0014890357851982117, -0.008198373951017857, -0.017590753734111786, -0.007288986351341009, -0.012655068188905716, -0.010135161690413952, 0.012828615494072437, -0.04487238824367523, 0.00028591917362064123, 0.030238879844546318, -0.014029563404619694, -0.0002813635510392487, 0.21003387868404388, 0.0015749416779726744, 0.018076686188578606, 0.023588547483086586, 0.025393439456820488, -0.01399485394358635, 0.0020929803140461445, 0.01799338310956955, -0.013453385792672634, 0.006258115172386169, 0.01792396418750286, 0.0030006326269358397, -0.022686101496219635, -0.0019246394513174891, 0.025060229003429413, -0.019520599395036697, -0.031155209988355637, -0.010759931989014149, -0.011815099976956844, 0.006216464098542929, 0.009364611469209194, -0.000507625809404999, -0.022519497200846672, -0.01853485032916069, 0.03329331427812576, 0.01763240434229374, 0.0046371836215257645, 0.027101146057248116, 0.024005061015486717, 0.010586384683847427, -0.005251541268080473, 0.003342520911246538, 0.017826778814196587, -0.009614519774913788, -0.024213317781686783, -0.007476417347788811, 0.003689615521579981, -0.0273232851177454, -0.009316018782556057, 0.008212258107960224, 0.01810445263981819, -0.007670790422707796, 0.0045365262776613235, -0.04462248086929321, 0.01441136747598648, -0.010614152066409588, -0.03046102076768875, 0.004387275781482458, 0.005067580845206976, 0.011481888592243195, -0.03282126411795616, -0.00016920860798563808, 0.011815099976956844, -0.005296663381159306, 0.0005540497368201613, 0.02417166717350483, -0.00832332856953144, 0.014216993935406208, -0.005286250729113817, 0.002939891070127487, -0.0005445046117529273, -0.004172076936811209, -0.010600268840789795, 0.00384580809623003, -0.019006898626685143, 0.03179386258125305, 0.0017033666372299194, 0.0341818742454052, 0.0021276897750794888, -0.015980234369635582, -0.010107394307851791, 0.0011957408860325813, -0.0421789325773716, 0.002691718516871333, -0.030738696455955505, 0.0031290575861930847, 0.02633753791451454, 0.02701784297823906, 0.0453166700899601, 0.0020912447944283485, 0.018854178488254547, 0.0019784390460699797, -0.013085465878248215, -0.016910448670387268, 0.01835436187684536, -0.007740209344774485, 0.027115028351545334, -0.021339375525712967, 0.0037555634044110775, -0.010260116308927536, -0.008802318945527077, 0.002658744575455785, 0.00046597447362728417, -0.022505613043904305, -0.00014512892812490463, 0.007920698262751102, 0.019826043397188187, 0.02253338135778904, -0.01232185773551464, -0.02574053406715393, 2.237133003291092e-06, 0.060422226786613464, 0.027281634509563446, 0.025768302381038666, -0.009024458937346935, 0.019117970019578934, 0.00932990200817585, 0.009628403931856155, 0.01761852204799652, -0.022505613043904305, -0.004463636316359043, -0.04253991320729256, 0.02071460522711277, -0.00557433906942606, -0.001015251618809998, 0.010558617301285267, 0.01696598343551159, -0.0033928495831787586, 0.022366775199770927, -0.008601004257798195, 0.014800112694501877, -0.006605209782719612, 0.0006212993175722659, 0.0018205110682174563, -0.013377025723457336, -0.036014534533023834, -0.011731796897947788, 0.014043446630239487, -0.039763156324625015, -0.028059126809239388, 0.024005061015486717, -0.012877209112048149, 0.022672219201922417, -0.00251470017246902, -0.0027073377277702093, -0.018576502799987793, 0.00563334533944726, -0.0018448077607899904, 0.009066110476851463, 0.006629506591707468, 0.007427824195474386, -0.006737106014043093, 0.003155089681968093, 0.008837028406560421, 0.009899137541651726, 0.00963534601032734, -0.005793008487671614, 0.011461063288152218, -0.030572090297937393, -0.022255705669522285, 0.003203683067113161, 0.004421985242515802, -0.013272897340357304, -0.01275225542485714, 0.029572458937764168, -0.02682347036898136, -0.050370365381240845, -0.02628200128674507, 0.012543998658657074, 0.03059985861182213, -0.04534443840384483, 0.023602431640028954, 0.04112376645207405, -0.004192902706563473, -0.010947363451123238, -0.009309076704084873, -0.17793457210063934, 0.005987381562590599, 0.01877087540924549, -0.015202743001282215, -0.00257370644249022, 0.02307484857738018, 0.01202335674315691, -0.014952834695577621, -0.024241086095571518, -0.0011679732706397772, 0.024032829329371452, -0.016827145591378212, -0.04059618338942528, -0.030155576765537262, 0.0023723915219306946, -0.01316876895725727, 0.0015115969581529498, 0.030377717688679695, 0.053341496735811234, 0.010267057456076145, 0.026726283133029938, -0.016910448670387268, -0.010065742768347263, -0.0033876432571560144, 0.020131485536694527, 0.014383599162101746, -0.005640286952257156, 0.017521334812045097, -0.006001265253871679, -0.021047815680503845, 0.007295927964150906, 0.0032088893931359053, 0.012259380891919136, 0.0017250600503757596, -0.008281677030026913, -0.016396747902035713, -0.008434398099780083, -0.014258645474910736, -0.013738003559410572, 0.012953570112586021, 0.04023520275950432, 0.004869737196713686, 0.025240717455744743, 0.013467269949615002, 0.0028843560721725225, 0.02301931381225586, 0.03482053056359291, -0.012668952345848083, 0.02078402414917946, -0.01399485394358635, 0.011842867359519005, -0.02422720193862915, -0.012710603885352612, 0.001006574253551662, 0.01029482576996088, 0.017785126343369484, 0.011586016975343227, 0.01592469960451126, 0.0037763891741633415, -0.012800848111510277, 0.006324063520878553, -0.022505613043904305, 0.015355464071035385, -0.026059862226247787, -0.025157416239380836, -0.0413181409239769, 0.002190166851505637, 0.02447710931301117, -0.01842378079891205, 0.018437664955854416, 0.012259380891919136, 0.0023428883869200945, 0.005852014757692814, -0.010197638534009457, 0.013009104877710342, 0.0033789658918976784, -0.02882273495197296, -0.00832332856953144, 0.014001796022057533, -0.0038805175572633743, 0.015230510383844376, 0.01032259315252304, 0.010871002450585365, -0.006712809205055237, -0.018673688173294067, -0.00969088077545166, 0.0020877739880234003, -0.015577604994177818, -0.002434868598356843, 0.003821511287242174, 0.031155209988355637, -0.01171791274100542, -0.002926007378846407, -0.003444913774728775, 0.020547999069094658, -0.0006573103601112962, 0.019062435254454613, 0.013231245800852776, -0.0038388660177588463, -0.011586016975343227, -0.00012104923371225595, 0.013377025723457336, -0.039402175694704056, 0.014772345311939716, 0.018756991252303123, 0.014453018084168434, 0.019006898626685143, -0.004671893082559109, 0.029211480170488358, -0.024130014702677727, -0.02592102438211441, 0.003285250160843134, 0.03287680074572563, 0.006237289868295193, -0.02725386619567871, 0.03762505203485489, -0.010017150081694126, -0.0188958290964365, 0.013217361643910408, -0.038791291415691376, 0.039346642792224884, -0.03329331427812576, -0.01563313975930214, -0.002183225005865097, -0.009732532314956188, -0.016382863745093346, -0.10612764209508896, -0.027476007118821144, 0.031349584460258484, 0.012016414664685726, -0.002393217058852315, 0.0016217994270846248, 0.009649229235947132, 0.026504142209887505, 0.0042970310896635056, 0.021880842745304108, -0.014001796022057533, 0.0006143574137240648, -0.00032236409606412053, -0.016632772982120514, 0.006740577053278685, -0.005543100647628307, -0.0003792008210439235, -0.002516435692086816, -0.002027032431215048, 0.04059618338942528, -0.015522070229053497, 0.010523907840251923, 0.023602431640028954, 0.004651067312806845, 0.006303237751126289, 0.004717015195637941, -0.029572458937764168, 0.014008737169206142, 0.009170238859951496, 0.016993751749396324, 0.01641063205897808, -0.008913389407098293, 0.004480991046875715, -0.026032093912363052, -0.01616072468459606, -0.015397115610539913, -0.022311240434646606, -0.015966350212693214, 0.011586016975343227, -0.012557881884276867, 0.018743107095360756, -0.012571766041219234, 0.0033633464481681585, -0.03395973518490791, -0.006112335715442896, 0.0015610578702762723, -0.04253991320729256, 0.01678549498319626, 0.012432928197085857, -0.011384702287614346, -0.038735754787921906, -0.029100410640239716, -0.032071538269519806, -0.016202375292778015, 0.029961204156279564, 0.0275593101978302, 0.0034865650814026594, 0.014841764234006405, -0.012911918573081493, 0.00896198209375143, 0.013953202404081821, -0.005445913877338171, -0.010954305529594421, 0.006567029748111963, 0.004821143578737974, 0.020395277068018913, -0.022630566731095314, -0.013939318247139454, -0.010031033307313919, -0.004675364121794701, -0.006993955932557583, -2.359158497711178e-05, -0.022686101496219635, 0.019950997084379196, -0.018687572330236435, -0.001512464601546526, 0.0012399953557178378, -0.015591489151120186, 0.016257910057902336, 0.014813996851444244, -0.007212625350803137, -0.022255705669522285, 7.511343574151397e-05, -0.02948915585875511, 0.020881209522485733, 0.004099186975508928, 0.022922126576304436, -0.014702926389873028, 0.03854138404130936, -0.026365304365754128, 0.019520599395036697, 0.03071092814207077, 0.006567029748111963, 0.015896931290626526, -0.00688982754945755, 0.011093143373727798, -0.006733634974807501, -0.02973906323313713, 0.02357466332614422, 0.015966350212693214, 0.003056167857721448, 0.012453753501176834, -0.05328596010804176, 0.002532054902985692, 0.0016061802161857486, -0.005865898448973894, 0.008045652881264687, -0.001917697605676949, 0.012724487110972404, -0.003592428984120488, 0.0045399973168969154, 0.00566111272200942, -0.01943729631602764, 0.009607577696442604, -0.00978806708008051, 0.0067023965530097485, -0.02343582548201084, -0.01550818607211113, 0.010752989910542965, 0.005789537448436022, 0.02163093537092209, 0.0013406528159976006, -0.014786229468882084, 0.0027906405739486217, 0.00026552737108431756, 0.021603167057037354, -0.0291281770914793, 0.0031446770299226046, -0.023033196106553078, 0.0004113070899620652, -0.027753682807087898, -0.03282126411795616, 0.008670423179864883, 0.0096631133928895, -0.018493199720978737, 0.009538158774375916, -0.020492464303970337, -0.036125604063272476, 0.011828983202576637, 0.012280206196010113, 0.02896157279610634, 0.025101879611611366, -0.022019680589437485, -0.029461387544870377, 0.011100084520876408, -0.011627668514847755, -0.01792396418750286, -0.015008369460701942, -0.028322918340563774, -0.016077421605587006, 0.008413572795689106, 0.007098084315657616, 0.0373196080327034, 0.005098819267004728, -0.04317856580018997, -0.025768302381038666, -0.010308708995580673, -0.012557881884276867, 0.017910080030560493, 0.02707337774336338, 0.005248070228844881, -0.015230510383844376, 0.04470578208565712, 0.010107394307851791, 0.008198373951017857, -0.006726692896336317, 0.026004325598478317, -0.034987132996320724, -0.05267507582902908, -0.0213254913687706, 0.00990607962012291, -0.02319980226457119, 0.010725222527980804, -0.03259912505745888, 0.023352524265646935, 0.025310136377811432, 0.019881578162312508, 0.003026664722710848, 0.003437971929088235, -0.018326593562960625, -0.004626770969480276, 0.03071092814207077, 0.017701823264360428, -0.01824329048395157, -0.0065600876696407795, -0.0013658171519637108, 0.01069051306694746, 0.01750745065510273, 0.00023906139540486038, 0.01793784834444523, 0.0060186199843883514, 0.003195005701854825, -0.01132222544401884, 0.013397851027548313, -0.02973906323313713, -0.000379851640900597, 0.00616092886775732, 0.002164134755730629, -0.013522804714739323, 0.02161705121397972, 0.015619256533682346, 0.01974274031817913, 0.0013640817487612367, 0.01779901050031185, 0.023033196106553078, -0.012717545963823795, -0.011072317138314247, 0.008094245567917824, -0.030377717688679695, -0.028794966638088226, 0.004807259887456894, 0.011606843210756779, -0.0026153577491641045, -0.0137796550989151, 0.0031359996646642685, 0.013099350035190582, -0.03840254619717598, 7.733701204415411e-05, -0.000756666180677712, -0.01779901050031185, -0.037402912974357605, -0.0010525643592700362, -0.004238024819642305, 0.016021886840462685, -0.005293192341923714, -0.029100410640239716, 0.026004325598478317, -0.008621829561889172, 0.012495405040681362, -0.01828494295477867, 0.006893298588693142, -0.02628200128674507, -0.004553881008177996, 0.0036514350213110447, 0.003932581748813391, -0.02797582373023033, -0.01629956252872944, -0.0017667114734649658, -0.02247784473001957, 0.003828453365713358, 0.01144717913120985, 0.07319530844688416, 0.022727753967046738, -0.008587120100855827, 0.015647023916244507, -0.02640695683658123, 0.0009866163600236177, 0.005723589565604925, 0.01171791274100542, -0.005841601639986038, -0.027281634509563446, 0.017951732501387596, -0.015980234369635582, -0.01859038509428501, -0.0060602715238928795, -0.029350318014621735, 0.005681938491761684, -0.0056368159130215645, 0.01714647188782692, -0.01579974591732025, 0.0048975045792758465, 0.03568132221698761, -0.006119277328252792, 0.01817387156188488, -0.013876841403543949, -0.03557025268673897, -0.012259380891919136, 0.036014534533023834, 0.019104085862636566, 0.0007019988261163235, -0.020686836913228035, 0.008191431872546673, 0.00514741288498044, -0.0291281770914793, -0.0259904433041811, -0.03082199953496456, 0.015771977603435516, -0.024560412392020226, -0.024185551330447197, 0.01914573647081852, 0.029572458937764168, 0.014466902241110802, 0.014730693772435188, -0.012606475502252579, -0.024796437472105026, -0.01641063205897808, -0.004730899352580309, -0.01293274387717247, -0.017674056813120842, 0.009052226319909096], "91bd5b07-7934-4456-94e3-30c014e306fd": [0.007962402887642384, -0.003988065291196108, 0.011950467713177204, -0.01781930774450302, -0.000430724787293002, 0.02004328928887844, -0.01296636089682579, -0.04016894847154617, -0.012403501197695732, -0.04080044850707054, 0.007310309447348118, 0.02096308395266533, 0.013234062120318413, -0.0055016083642840385, -0.0041322121396660805, 0.02133374661207199, 0.025150209665298462, 0.0020403657108545303, 0.009225403890013695, -0.005086327902972698, -0.026907429099082947, -0.010605096817016602, -0.01851944997906685, -0.024738360196352005, -0.02248692326247692, 0.00336686079390347, 0.014263682998716831, -0.01571888104081154, -0.023736195638775826, 0.037450749427080154, -0.016117000952363014, -0.0082163754850626, -0.021882878616452217, -0.011620989069342613, -0.022665390744805336, 0.017723210155963898, -0.007797663100063801, -0.0020197732374072075, 0.01066000945866108, -0.007928081788122654, 0.01960398443043232, 0.01665240339934826, -0.001734053366817534, -0.011813185177743435, -0.01666613295674324, 0.03231637179851532, -0.0012055146507918835, 2.1745381673099473e-05, -0.014565705321729183, 0.006634191609919071, -0.0023629802744835615, -0.005690372083336115, -0.03072389028966427, 0.014634346589446068, -0.029488345608115196, -0.024299055337905884, 0.02679760381579399, -0.006555253639817238, 0.017929134890437126, -0.005882568191736937, 0.001093114260584116, -0.005532497074455023, -0.015320761129260063, -0.004722528625279665, -0.02175932377576828, -0.023008598014712334, -0.008998887613415718, -0.022390825673937798, -0.030037477612495422, -0.02177305333316326, 0.03547387570142746, 0.03929033875465393, -0.011360151693224907, 0.016281740739941597, -0.011126771569252014, -0.009760807268321514, -0.006181158125400543, -0.01939805969595909, -0.015814978629350662, 0.002260018140077591, 0.009245996363461018, -0.021882878616452217, -0.028692105785012245, -0.004125348292291164, 0.022583020851016045, 0.012870262376964092, 0.022020161151885986, -0.004478851333260536, -0.001069089863449335, 0.010996352881193161, 0.013728280551731586, 0.0094107361510396, 0.026976071298122406, 0.014222498051822186, -0.006177726201713085, 0.03399122133851051, -0.0007584874983876944, -0.0022634502965956926, 0.004846083000302315, -0.016034631058573723, -0.016501393169164658, -0.004334704484790564, 0.0005731557030230761, -0.008717457763850689, -0.03308515623211861, -0.007550554350018501, 0.020784616470336914, -0.0006821239367127419, -0.0032124174758791924, 0.00734463008120656, -0.03714872524142265, 0.035748440772295, -0.012739843688905239, -0.003306799568235874, 0.007564282510429621, -0.01917840726673603, 0.01794286258518696, -0.026879971846938133, -0.004746553022414446, -0.015430587343871593, 0.001226964988745749, -0.02240455336868763, 0.04357356205582619, -0.011222869157791138, 0.023434175178408623, 0.003826758125796914, 0.012829077430069447, -0.015856163576245308, 0.020647333934903145, -0.011765136383473873, 0.01565023884177208, -0.0023818565532565117, 0.01809387281537056, 0.014428422786295414, -0.019782451912760735, 0.013288975693285465, -0.015375673770904541, 4.1292092646472156e-05, -0.0023423878010362387, -0.03539150580763817, 0.026468124240636826, 0.029900195077061653, 0.011229733005166054, -0.022500650957226753, 0.017434915527701378, 0.02377738058567047, 0.0029018153436481953, 0.0259189922362566, -0.011250325478613377, 0.010076557286083698, 0.013549812138080597, -0.01540313009172678, -0.01644648052752018, -0.0030596903525292873, 0.009184219874441624, 0.012650609947741032, -0.009403872303664684, 0.024436337873339653, -0.022514378651976585, -0.005268227308988571, -0.01802523247897625, -0.009239132516086102, -0.0054226708598434925, -0.010927710682153702, -0.004300383850932121, 0.03739583492279053, 0.00855271890759468, -0.009616659954190254, -0.02002956159412861, -0.005858543794602156, 0.006359625607728958, 0.020208029076457024, -0.006315008737146854, 0.008353658951818943, 0.01824488490819931, 0.014140129089355469, 0.02068851888179779, -0.00039297202602028847, -0.0024161774199455976, -0.021210193634033203, 0.021072909235954285, -0.0014200189616531134, -0.008065364323556423, 0.025836624205112457, -0.024038217961788177, -0.01724272035062313, 0.03259093686938286, 0.02707216888666153, 0.00195284781511873, -0.012732979841530323, 0.015238391235470772, 0.014606890268623829, -0.005827655084431171, -0.002491682767868042, -0.6273275017738342, 0.013488035649061203, 0.013000681065022945, -0.013625318184494972, -0.004756849259138107, 0.010337394662201405, 0.024971742182970047, 0.0016782822785899043, -0.011799456551671028, 0.05019059404730797, 0.013000681065022945, 0.010104014538228512, -0.013000681065022945, -0.00021396811644081026, -0.005494744051247835, -0.028609735891222954, -0.012650609947741032, -0.01932941935956478, 0.005930616986006498, 0.01551295630633831, -0.014414694160223007, 0.019933462142944336, 0.014551976695656776, -0.0063664899207651615, 0.012973224744200706, -0.006115948781371117, 0.021731868386268616, -0.012067158706486225, -0.0037306600715965033, 0.03281059116125107, -0.01666613295674324, 0.020153114572167397, 0.0070494720712304115, 0.01063255313783884, 0.04774696007370949, -0.013426258228719234, -0.013186013326048851, 0.01013147085905075, 0.019851094111800194, 0.04950417950749397, -0.029323605820536613, -0.014922640286386013, 0.022857585921883583, -0.0005281097837723792, -0.012094615027308464, 0.006229206919670105, 0.0025002630427479744, 0.002776544773951173, -0.018848929554224014, -0.016034631058573723, 0.007317173294723034, -0.0175310131162405, -0.0037375243846327066, 0.0004852089041378349, 0.008916517719626427, -0.004163100849837065, 0.009273453615605831, -0.02197897620499134, 0.008374250493943691, 0.000474054686492309, 0.00432784017175436, 0.020002104341983795, -0.022500650957226753, -0.03668196499347687, -0.04744493588805199, 0.012774164788424969, -0.0095823397859931, -0.0168857853859663, -0.0038610787596553564, 0.005408942233771086, 0.01989227719604969, -0.005391782149672508, -0.01026875339448452, -0.010385444387793541, 0.0005323998630046844, 0.01895875483751297, 0.023887207731604576, -0.01173767913132906, -0.018835199996829033, 0.015279576182365417, -0.01602090336382389, -0.010934575460851192, -0.012300538830459118, -0.01171022281050682, 0.02061987668275833, 0.0012415513629093766, -0.01945297233760357, -0.01188182644546032, 0.0006611024728044868, 0.001675708219408989, 0.0035899453796446323, 0.03621520474553108, -0.013131099753081799, -0.023447902873158455, 0.004286655690521002, 0.04137703776359558, 0.0031334799714386463, -0.0012098046718165278, -0.003579649142920971, -0.030614065006375313, -0.01694069802761078, -0.030833717435598373, 0.02311842329800129, 0.003940016496926546, 0.02167695388197899, 0.02866464853286743, -0.008841012604534626, -0.019301962107419968, 0.025507144629955292, -0.0315750427544117, -0.0038610787596553564, 0.004677911289036274, -0.019082309678196907, -0.019809909164905548, 0.01374887302517891, -0.028884300962090492, 0.008895925246179104, 0.0019751563668251038, 0.011257189325988293, -0.006606734823435545, -0.0014749320689588785, -0.01624055579304695, 0.008031044155359268, 0.0015246971743181348, 0.00254144798964262, 0.014057759195566177, -0.0016654119826853275, 0.01562278252094984, 0.016473935917019844, 0.0015950545202940702, -0.009959867224097252, -0.015760065987706184, 0.019590256735682487, 0.003430353943258524, 0.01968635432422161, -0.010261889547109604, 0.03849409893155098, -0.01651512086391449, 0.005220178514719009, -0.053622663021087646, 0.013316432014107704, 0.0051995860412716866, 0.007282852660864592, -0.021086638793349266, 0.004983365535736084, -0.035062026232481, -0.030778804793953896, 0.016721045598387718, -0.01801150292158127, -0.0034492304548621178, -0.014730445109307766, -0.011785728856921196, -0.004928452428430319, 0.016981882974505424, -0.01457943394780159, -0.00035114368074573576, 0.003047678153961897, -0.039619818329811096, -0.0042042857967317104, -0.014195041730999947, -0.008168326690793037, 0.014963825233280659, -0.02232218347489834, -0.0011548915645107627, -0.000938671175390482, 0.001042491290718317, -0.006702832877635956, 0.014757901430130005, -0.017064252868294716, -0.024834459647536278, 0.0073034451343119144, -0.007241667713969946, 0.0019614279735833406, 0.03168487176299095, -0.001782960374839604, 0.024175502359867096, -0.010316802188754082, 0.0038988315500319004, -0.0038610787596553564, 0.004197421483695507, 0.0048151942901313305, 0.007509369403123856, -0.007008287124335766, 0.008072229102253914, 0.022418281063437462, 0.013721415773034096, 0.02622101455926895, 0.023283163085579872, -0.027635028585791588, 0.005683508235961199, 0.033002786338329315, -0.004729392472654581, -0.0023063509725034237, 0.018340982496738434, -0.028554823249578476, 0.0018310094019398093, -0.0267152339220047, -0.000899202364962548, 0.0001919814239954576, 0.03141030669212341, 0.02097681164741516, 0.0028280257247388363, -0.01245841383934021, 0.00195284781511873, 0.006531229242682457, -0.0191646795719862, 0.014840271323919296, -0.012060293927788734, 0.025328677147626877, 0.012554512359201908, -0.006335601210594177, -0.008250696584582329, 0.0005551373469643295, -0.007797663100063801, 0.022816400974988937, 0.036160290241241455, 0.013385073281824589, 0.02009820193052292, -0.005367757752537727, 0.005693804007023573, 0.01418131310492754, -0.0007722157752141356, 0.034787461161613464, 0.003102591261267662, -0.005360893439501524, 0.03195943683385849, -0.002894951030611992, 0.0206061489880085, 0.003902263706550002, -0.017709480598568916, -0.011950467713177204, 0.02622101455926895, 0.02298114076256752, 0.007626059465110302, 0.03209671750664711, 0.02995510771870613, 0.02613864466547966, -0.012307403609156609, 0.03022967278957367, 0.0029189756605774164, -0.01374887302517891, 0.01802523247897625, 0.017833035439252853, -0.017915405333042145, 0.04272240772843361, 0.01088652666658163, 0.02649558149278164, -0.007488776929676533, -0.009726486168801785, 0.03684670478105545, 0.024820730090141296, 0.007413271348923445, -0.024395154789090157, -0.002778260735794902, 0.02435396984219551, -0.028060603886842728, 0.019013667479157448, 0.010117742232978344, 0.009101849980652332, 0.0003020221774931997, 0.008895925246179104, -0.016981882974505424, 0.011154227890074253, 0.007509369403123856, 0.02160831354558468, -0.007056335918605328, -0.001099120476283133, -0.028335170820355415, -0.006943077780306339, -0.010694330558180809, 0.0016877204179763794, -0.022390825673937798, 0.006809227168560028, 0.006146837491542101, 0.0012338291853666306, 0.00306140654720366, 0.0012372612254694104, 0.012142663821578026, -0.008676272816956043, 0.009486241266131401, -0.028101788833737373, -0.016062088310718536, 0.024106860160827637, 0.01794286258518696, -0.007372086402028799, -0.017215263098478317, -0.012547648511826992, -0.031273022294044495, 0.01887638494372368, 0.003885103389620781, -0.006181158125400543, 0.0006786918384023011, -0.00709065655246377, -0.0007306018960662186, -0.007523097563534975, 0.002121019409969449, 0.03901577368378639, -0.020372767001390457, -0.017764395102858543, 0.007083792705088854, -0.0007572004687972367, 0.012403501197695732, -0.01529330387711525, -0.01845080778002739, 0.019549071788787842, -0.016405295580625534, -0.019370604306459427, -0.025012927129864693, 0.0013076186878606677, -0.016679860651493073, 0.004801466129720211, -0.007083792705088854, -0.016062088310718536, -0.01996091939508915, -0.011456250213086605, 0.024807002395391464, -0.0082163754850626, -0.0036997715942561626, 0.02405194751918316, 0.01019324827939272, 0.007948674261569977, -0.026179829612374306, 0.0032433061860501766, 0.01873910240828991, 0.07039862126111984, 0.008346794173121452, -0.007337765768170357, 0.011154227890074253, -0.00904693640768528, -0.016844600439071655, -0.034650180488824844, -0.01468926016241312, 0.028637193143367767, -0.006541525479406118, -0.031190652400255203, 0.007296580821275711, -8.757141040405259e-05, -0.003099159337580204, 0.013810649514198303, -0.008593903854489326, -0.008422300219535828, -0.02284385822713375, -0.012273082509636879, 0.007420135661959648, 0.026948614045977592, 0.0018721942324191332, 0.02412058785557747, 0.011298374272882938, 0.010859069414436817, 0.0027645323425531387, 0.04027877375483513, 0.003337688045576215, 0.00869000144302845, -0.020139386877417564, -0.018656732514500618, 0.016611218452453613, 0.014950097538530827, 0.01759965531527996, -0.020510051399469376, 0.006486612372100353, -0.006040443200618029, -0.020304126664996147, -0.023859750479459763, 0.008628224022686481, 0.0014886603457853198, 0.025548329576849937, 0.010083422064781189, -0.008779235184192657, 0.0072279395535588264, -0.02469717524945736, -0.003081999020650983, 0.017860492691397667, -0.019480429589748383, 0.0038782390765845776, 0.013412529602646828, 0.013096779584884644, -0.007426999509334564, 0.0129594961181283, -0.01224562618881464, -0.026536766439676285, -0.010138334706425667, -0.012389772571623325, -0.0482686348259449, -0.03102591261267662, -0.027401646599173546, -0.020784616470336914, 0.00594091322273016, -0.008985158987343311, -0.019919734448194504, -0.03366174176335335, 0.005789902061223984, 0.0014354633167386055, -0.019439244642853737, 0.0007807959336787462, 0.01026875339448452, -0.03868629410862923, -0.028307713568210602, -0.009650981053709984, 0.025479687377810478, 0.014702987857162952, -0.011669037863612175, 0.0160895437002182, 0.0008811840089038014, 0.014057759195566177, 0.004080731421709061, -0.034293245524168015, 0.003198689315468073, -0.02125137858092785, 0.005182425957173109, -0.019013667479157448, -0.01673477329313755, -0.006459156051278114, -0.004279791377484798, 0.0082163754850626, 0.006023283116519451, -0.007955538108944893, 0.005419238470494747, 0.005683508235961199, 0.0008254128624685109, 0.03360683098435402, 0.015101108700037003, 0.0009901522425934672, 0.025754254311323166, -0.03720363974571228, 0.004753416869789362, -0.006627327296882868, -0.010083422064781189, -0.024875644594430923, 0.019768724218010902, -0.002584348665550351, -0.004598973784595728, -0.000704861362464726, -0.0029447160195559263, -0.015760065987706184, 0.011964196339249611, 0.012726115994155407, -0.008374250493943691, -0.010907118208706379, 0.005741853266954422, -0.025534601882100105, 0.0049662054516375065, 0.022747760638594627, 0.02335180528461933, -0.013385073281824589, -0.010289345867931843, -0.008696865290403366, 0.03152013197541237, 0.012286811135709286, 0.0004054132732562721, 0.009129306301474571, 0.02283013053238392, -0.025658154860138893, -0.01845080778002739, 0.008065364323556423, -0.013666503131389618, 0.011291510425508022, -0.017901677638292313, -0.012918312102556229, -0.013337024487555027, 0.005779605824500322, -0.007111249025911093, 0.009891225956380367, -0.030119847506284714, -0.009424464777112007, -0.02564442716538906, -0.005481015890836716, 0.011682766489684582, -0.022720303386449814, -0.0016765662003308535, -0.025534601882100105, -0.012108342722058296, -0.0009146466618403792, 0.01160039659589529, 0.012801621109247208, -0.0334695465862751, -0.011566076427698135, -0.01853317767381668, -0.002719915471971035, -0.003498995443806052, -0.026166101917624474, -0.01817624270915985, 0.010941439308226109, 0.05419924855232239, 0.02556205727159977, 0.0008768938714638352, -0.0038198940455913544, 0.02233591116964817, 0.019082309678196907, -0.016611218452453613, 0.0035933773033320904, -0.026962341740727425, -0.00785944052040577, 0.008751778863370419, 0.010282482020556927, 0.0020901306997984648, -0.003253602422773838, -0.01429113931953907, 0.014414694160223007, -0.0005173845565877855, 0.022020161151885986, -0.0007267408072948456, -0.008353658951818943, -0.039400164037942886, -0.04085536301136017, 0.006555253639817238, 0.04640158638358116, -0.0036276979371905327, -0.0019459837349131703, -0.03272822126746178, 0.0033428361639380455, 0.0027216316666454077, -0.00624636746942997, 0.043408822268247604, 0.013028138317167759, 0.04184379801154137, 0.010955167934298515, -0.012568240985274315, 0.006263528019189835, -0.0038233259692788124, -0.014208770357072353, -0.006716561038047075, -0.035062026232481, -0.008346794173121452, -0.011559211649000645, 0.018835199996829033, 0.007118113338947296, -0.025040382519364357, 0.004242038819938898, 0.011833777651190758, 0.03366174176335335, -0.024724632501602173, -0.023241978138685226, 0.016844600439071655, -0.020812073722481728, -0.006840115413069725, -0.027621299028396606, -0.023598913103342056, 0.0011651878012344241, -0.007674108725041151, -0.013659639284014702, 0.01794286258518696, 0.017915405333042145, -0.01974126696586609, -0.018711645156145096, 0.023804837837815285, 0.00041141940164379776, 0.04200853779911995, 0.00944505725055933, 0.030970999971032143, 0.01199165266007185, 0.001877342350780964, -0.020015832036733627, -0.019370604306459427, 0.004231742583215237, -0.01694069802761078, 0.0024196093436330557, 0.03404613584280014, -0.018848929554224014, -0.002510559279471636, 0.010104014538228512, -0.01658376306295395, 0.0007190186879597604, -0.035940635949373245, 0.013735144399106503, 0.010508998297154903, -0.00452346820384264, -0.040388599038124084, -0.026028819382190704, -0.021594583988189697, 0.017407460138201714, 0.007982995361089706, 0.027525201439857483, -0.008236967958509922, -0.00195284781511873, 0.0076123313046991825, 0.04099264368414879, -0.019878549501299858, 0.024834459647536278, -0.011167955584824085, -0.005710964556783438, -0.014030301943421364, -0.0048906998708844185, 0.0028469020035117865, -0.014304867945611477, 0.011167955584824085, 0.02814297378063202, -0.00235954811796546, -0.006270391866564751, 0.013639046810567379, 0.020194299519062042, -0.012087751179933548, 0.001245841383934021, -0.0007623485871590674, 0.029049040749669075, 0.007694701198488474, -0.007008287124335766, 0.0031043074559420347, -0.024161772802472115, 0.017325090244412422, -0.0063699218444526196, -0.004125348292291164, -0.0062154787592589855, -0.0029961972031742334, 0.02046886645257473, 0.009808856062591076, 0.014593161642551422, 0.005158401094377041, 0.0004534622421488166, -0.0048117623664438725, -0.0037821412552148104, 0.006345897447317839, 0.009149898774921894, 0.01636411063373089, -0.025314949452877045, -0.020866986364126205, -0.008291881531476974, -0.008669408969581127, 0.012973224744200706, -0.004592109937220812, -0.007982995361089706, -0.00046547449892386794, 0.031273022294044495, -0.011531755328178406, -0.01066000945866108, 0.020770888775587082, 0.02126510627567768, -0.04049842804670334, 0.009953003376722336, 0.011620989069342613, 0.00020388641860336065, 0.020935626700520515, -0.013735144399106503, -0.016913240775465965, -0.026605406776070595, 0.0012638597982004285, -0.0034543785732239485, 0.026179829612374306, -0.019150950014591217, 0.0080447718501091, 0.016542578116059303, 0.0022171172313392162, 0.0033170958049595356, -0.013886155560612679, -0.007015150971710682, 0.009170491248369217, 0.017503557726740837, -0.0026924589183181524, -0.022857585921883583, 0.02318706549704075, -0.009918682277202606, 0.03204180672764778, -0.019494157284498215, -0.04019640386104584, -0.03401867672801018, -0.027264364063739777, -0.00459554186090827, 0.00019594974583014846, -0.011222869157791138, 0.001675708219408989, -0.01630919612944126, -0.014373509213328362, 0.01602090336382389, -0.021361203864216805, -0.006709697190672159, 0.024079402908682823, -0.02693488635122776, -0.012561376206576824, 0.020661061629652977, -0.009342094883322716, -0.04840591549873352, -0.005796766374260187, -0.014140129089355469, -0.029213780537247658, -0.007907489314675331, -0.017393730580806732, 0.04634667560458183, -8.322770008817315e-05, -0.028994128108024597, -0.015361945144832134, -0.019082309678196907, -0.05952582135796547, 0.00794181041419506, -0.032069262117147446, 0.028994128108024597, 0.03843918442726135, 0.046868350356817245, 0.010172655805945396, 0.030696434900164604, 0.003994929604232311, 0.009403872303664684, -0.02737419120967388, 0.002290906850248575, -0.009795128367841244, -0.03742329031229019, 0.003998361527919769, -0.016693588346242905, -0.043051887303590775, 0.006452291738241911, 0.017338817939162254, -0.012554512359201908, 0.008738050237298012, 0.022006433457136154, -0.025424774736166, -0.0015392834320664406, -0.009884362109005451, 0.0011849221773445606, 0.03533659502863884, 0.018629277125000954, 0.013158557005226612, -0.023296890780329704, 0.014304867945611477, 0.0016731341602280736, -0.015842435881495476, -0.02412058785557747, 0.022349640727043152, 0.030119847506284714, -0.00782511942088604, 0.005100056063383818, 0.0036826112773269415, -0.01637783832848072, -0.0016104988753795624, -0.010797291994094849, 0.015567869879305363, 0.012767300941050053, 0.019988376647233963, 0.02283013053238392, -0.015430587343871593, 0.012060293927788734, -0.01191614754498005, -0.0010442073689773679, 0.008387979120016098, 0.005364325363188982, 0.019205864518880844, -0.02693488635122776, -0.0028211616445332766, -0.012883991003036499, 0.01435978151857853, 0.019700082018971443, -0.013488035649061203, -0.007886896841228008, 0.005796766374260187, -0.028747018426656723, -0.009184219874441624, 0.017283905297517776, -0.012307403609156609, -0.01076983567327261, -0.009856904856860638, 0.007742749992758036, 0.00021986698266118765, -0.003559056669473648, -0.009616659954190254, -0.02255556359887123, -0.011648445390164852, -0.012087751179933548, 0.011483706533908844, -0.04480910673737526, -0.004252334591001272, 0.027415376156568527, -0.01722899079322815, -0.0030751347076147795, 0.18637512624263763, -0.00015251261356752366, 0.02692115679383278, 0.02664659172296524, 0.026825059205293655, -0.0003685185220092535, -0.004904428031295538, 0.014346052892506123, -0.01468926016241312, 0.001366821932606399, 0.016281740739941597, 0.002776544773951173, -0.03289296105504036, -0.0015950545202940702, 0.017256448045372963, -0.017723210155963898, -0.03602300584316254, -0.01887638494372368, -0.015279576182365417, 0.008401707746088505, 0.012829077430069447, -0.010893390513956547, -0.0202629417181015, -0.013398801907896996, 0.025452231988310814, 0.018643004819750786, -0.004317543935030699, 0.023228250443935394, 0.021992705762386322, 0.019068581983447075, -0.0011377312475815415, 0.0017760962946340442, 0.023159608244895935, -0.01658376306295395, -0.024655992165207863, 0.0031043074559420347, 0.010330530814826488, -0.013803785666823387, -0.006387082394212484, 0.028884300962090492, 0.007722157519310713, -0.02031785435974598, 0.0019459837349131703, -0.04329899698495865, 0.02024921402335167, -0.024093132466077805, -0.019700082018971443, 0.0015650239074602723, 0.0041013238951563835, 0.01324779074639082, -0.014867727644741535, -0.011669037863612175, 0.018148787319660187, -0.004018954001367092, 0.002436769660562277, 0.0183272548019886, -0.01794286258518696, 0.006414538715034723, -0.014812814071774483, -0.014346052892506123, -0.004647023044526577, -0.005027982406318188, -0.002704471116885543, -0.0028434700798243284, -0.022994868457317352, 0.04453454166650772, 0.0049662054516375065, 0.03484237566590309, -0.001694584614597261, 0.0003736666403710842, -0.011058129370212555, 0.009204812347888947, -0.04005912318825722, 0.005793334450572729, -0.007989859208464622, -0.005886000115424395, 0.014387237839400768, 0.019878549501299858, 0.05241457372903824, -0.0015736040659248829, 0.017791850492358208, 0.005704100243747234, -0.02370874024927616, -0.013906748034060001, 0.013645910657942295, -0.00586883956566453, 0.0288019310683012, -0.02464226260781288, 0.006809227168560028, -0.017503557726740837, -0.0052750916220247746, 0.018189970403909683, -0.002816013526171446, -0.02306351065635681, -0.00012623582733795047, 0.000908640562556684, 0.018505722284317017, 0.006963670253753662, -0.02133374661207199, -0.0418163426220417, -0.010714923031628132, 0.04475419223308563, 0.014455879107117653, 0.03959235921502113, -0.0060644675977528095, 0.014236226677894592, -0.0004277217376511544, 0.018354710191488266, 0.005961505696177483, -0.00987749733030796, -0.0034869832452386618, -0.037670399993658066, 0.01816251501441002, -0.004870107397437096, -0.0008417151984758675, 0.033799026161432266, 0.024669719859957695, 0.0054261027835309505, 0.022280998528003693, 0.0019459837349131703, 0.02744283154606819, 0.0029550122562795877, -0.00041570948087610304, 0.006435131188482046, -0.01990600675344467, -0.0373409204185009, -0.002206820994615555, 0.0019425516948103905, -0.033057697117328644, -0.0259189922362566, 0.015540413558483124, -0.013144828379154205, 0.023969577625393867, -0.011579804122447968, -0.0023715603165328503, -0.02326943539083004, -0.00915676262229681, -0.005021118558943272, 0.005783038213849068, 0.0007949532009661198, 0.012122071348130703, -0.0064419955015182495, 0.0036826112773269415, 0.007028879597783089, -0.001702306792140007, 0.006311576813459396, -0.01173767913132906, 0.011662174016237259, -0.025616971775889397, -0.022514378651976585, 0.02455989271402359, -0.0015976285794749856, -0.006562117952853441, -0.01615818589925766, 0.02822534367442131, -0.029790367931127548, -0.04777441546320915, -0.020194299519062042, 0.008134005591273308, 0.029103953391313553, -0.043628472834825516, 0.013515491969883442, 0.05266168341040611, 0.004554356914013624, -0.018999939784407616, -0.01624055579304695, -0.17495320737361908, 0.010083422064781189, -0.00010306935291737318, -0.0011471693869680166, -0.009733350947499275, 0.02427159994840622, 0.0009678437490947545, -0.007893760688602924, -0.021388661116361618, 0.0008563014562241733, 0.021141551434993744, -0.015705153346061707, -0.03511694073677063, -0.01457943394780159, 0.0021193032152950764, -0.016926970332860947, -0.011064994148910046, 0.028197888284921646, 0.05623103678226471, 0.002505411161109805, 0.02773112617433071, -0.023090967908501625, -0.015334488824009895, 0.0015933385584503412, 0.01504619512706995, 0.017270175740122795, 0.00477744173258543, 0.021347476169466972, -0.00991181842982769, -0.03712126985192299, 0.014950097538530827, -0.013288975693285465, 0.013288975693285465, 0.009458784945309162, 0.000857588485814631, -0.0034200577065348625, 0.0033582805190235376, -0.011222869157791138, -0.021086638793349266, 0.015842435881495476, 0.04244784265756607, 0.012472142465412617, 0.031629957258701324, 0.010316802188754082, 0.012588832527399063, 0.027387918904423714, 0.03311261162161827, -0.019933462142944336, 0.02670150436460972, -0.005861975718289614, 0.015087380073964596, -0.020647333934903145, -0.002961876569315791, -0.0011111326748505235, 0.0168857853859663, 0.025328677147626877, 0.012417229823768139, 0.02613864466547966, 0.002122735371813178, -0.003559056669473648, 0.0061331093311309814, -0.021072909235954285, -0.0029584444127976894, -0.02225354313850403, -0.018560634925961494, -0.03843918442726135, -0.00174520758446306, 0.010955167934298515, 0.0054981764405965805, 0.019864821806550026, 0.0091636274009943, 0.00035114368074573576, 0.008641952648758888, 0.0008854740881361067, 0.016542578116059303, 0.00800358783453703, -0.03712126985192299, -0.002888086950406432, 0.023283163085579872, -0.01299381721764803, 0.02283013053238392, 0.009458784945309162, 0.013886155560612679, -0.003637994173914194, -0.011703358963131905, -0.008072229102253914, 0.005721260793507099, -0.006105652544647455, 0.0035693529061973095, 0.007749614305794239, 0.03036695532500744, -0.008786099031567574, 0.004842651076614857, 0.005645755212754011, 0.02773112617433071, 0.0018258612835779786, 0.02756638638675213, -0.0023715603165328503, -0.0006997133023105562, -0.02148475870490074, 0.00016784967738203704, 0.010474678128957748, -0.0363524854183197, 0.02498546987771988, 0.031712327152490616, 0.0175310131162405, 0.018972482532262802, -0.0014569137711077929, 0.022802673280239105, -0.02313215285539627, -0.020153114572167397, 0.00601298687979579, 0.038521554321050644, 0.00890965387225151, -0.040525883436203, 0.03720363974571228, -0.009115577675402164, -0.014277411624789238, 0.015128565020859241, -0.045138586312532425, 0.03418341651558876, -0.034650180488824844, -0.018999939784407616, -0.010110878385603428, -0.007241667713969946, -0.018615547567605972, -0.10104013979434967, -0.02924123778939247, 0.037313465029001236, 0.015965990722179413, -0.008786099031567574, 0.0033599964808672667, 0.009328366257250309, 0.04475419223308563, 0.002299486892297864, 0.0175310131162405, -0.018299797549843788, -0.0019751563668251038, 0.002814297331497073, -0.01709170825779438, 0.0007541974191553891, -0.011469977907836437, 0.010460949502885342, -0.014757901430130005, -0.010042237117886543, 0.02513648197054863, 0.003751252545043826, 0.0016971586737781763, 0.02464226260781288, 0.01306932233273983, -0.00405670702457428, -0.010001052170991898, -0.01602090336382389, 0.012053430080413818, 0.012499598786234856, 0.01451079174876213, 0.022734032943844795, -0.021718138828873634, 0.0006027573253959417, -0.032288916409015656, -0.0031454921700060368, -0.007571146357804537, -0.028472453355789185, 0.0038816712331026793, 0.014565705321729183, -0.01245841383934021, 0.020633604377508163, -0.012273082509636879, 0.001656831824220717, -0.021072909235954285, -0.006191454362124205, 0.0011240029707551003, -0.02585035189986229, 0.02370874024927616, 0.01235545240342617, -0.0020043288823217154, -0.030861174687743187, -0.028252800926566124, -0.04126720875501633, -0.027676213532686234, 0.028856845572590828, 0.028774475678801537, 0.008792963810265064, 0.019123494625091553, -0.012678067199885845, -0.000948109372984618, -0.0008957702666521072, 0.0016070668352767825, -0.012479006312787533, 0.012060293927788734, 0.008161462843418121, 0.02801942080259323, -0.007550554350018501, -0.0017760962946340442, -0.0112709179520607, 0.0017014486948028207, -0.005669779609888792, -0.0006769758183509111, -0.022802673280239105, 0.024546165019273758, -0.019274504855275154, -0.011216005310416222, 0.015032466500997543, -0.02068851888179779, 0.010241297073662281, 0.01360472571104765, -0.020359039306640625, -0.01839589513838291, 0.007399543188512325, -0.022308455780148506, 0.018491992726922035, 0.010563911870121956, 0.021141551434993744, -0.012671202421188354, 0.027195723727345467, -0.024903099983930588, 0.017146622762084007, 0.03561116009950638, 0.0062120468355715275, 0.01224562618881464, -0.004197421483695507, 0.003001345321536064, -0.013522355817258358, -0.031712327152490616, 0.02434024028480053, 0.021882878616452217, -0.0004418790340423584, -3.501784158288501e-05, -0.04445217177271843, 0.00014039310917723924, 0.015252118930220604, 0.0011660457821562886, 0.0075299618765711784, -0.01163471769541502, 0.012588832527399063, -0.0012003665324300528, 0.001656831824220717, 0.00205409387126565, -0.026372026652097702, 0.010344259440898895, -0.011051265522837639, -0.006167429964989424, -0.02764875628054142, -0.006043875589966774, 0.007873169146478176, 0.0031489243265241385, 0.01013147085905075, 0.010042237117886543, -0.003289639251306653, -0.002086698543280363, -0.003826758125796914, 0.02792332135140896, -0.02520512230694294, 0.0038782390765845776, -0.028609735891222954, 0.011202276684343815, -0.02184169366955757, -0.027621299028396606, 0.021429846063256264, 0.009671573527157307, -0.011442521587014198, 0.0144009655341506, -0.005285387858748436, -0.04393049702048302, 0.012286811135709286, 0.00865568034350872, 0.019631439819931984, 0.021567128598690033, -0.01700933836400509, -0.026111189275979996, 0.018437080085277557, -0.026385754346847534, -0.02484818734228611, -0.007502505090087652, -0.025946449488401413, -0.02298114076256752, 0.020496321842074394, 0.0055016083642840385, 0.04450708627700806, 0.006150269415229559, -0.02822534367442131, -0.026454396545886993, -0.005027982406318188, -0.0013814081903547049, 0.007083792705088854, 0.019411787390708923, 0.007790799252688885, -0.005446695256978273, 0.04192616790533066, -7.196622027549893e-05, 0.014428422786295414, 0.002244573784992099, 0.022857585921883583, -0.026454396545886993, -0.06682927161455154, -0.008854740299284458, 0.023104695603251457, -0.020345311611890793, 0.012376044876873493, -0.031080827116966248, 0.02715453878045082, 0.01687205582857132, 0.012279946357011795, 0.003349700476974249, -0.001492950483225286, -0.025246307253837585, -0.005261363461613655, 0.028554823249578476, 0.008992023766040802, -0.021347476169466972, -0.017503557726740837, 0.012479006312787533, 0.0164327509701252, 0.007426999509334564, 0.0013110507279634476, 0.02593272179365158, 0.017187807708978653, 0.002182796597480774, -0.007159298285841942, 0.009094985201954842, -0.016693588346242905, 0.008717457763850689, -0.006500340532511473, 0.0050451429560780525, -0.02304978296160698, 0.016322925686836243, 0.007523097563534975, 0.027333006262779236, -0.0006585284136235714, 0.024024490267038345, 0.014634346589446068, -0.009671573527157307, -0.014277411624789238, 0.011222869157791138, -0.027607571333646774, -0.022637933492660522, 0.0188214723020792, 0.022280998528003693, -0.01615818589925766, -0.019919734448194504, -0.008147734217345715, 0.01013147085905075, -0.02535613439977169, -0.01457943394780159, 0.0018636140739545226, -0.02822534367442131, -0.026605406776070595, -0.00012945338676217943, 0.006754314061254263, 0.020221756771206856, 0.0042042857967317104, -0.024875644594430923, 0.01780558004975319, -0.01066000945866108, 0.012938904576003551, -0.02011192962527275, 0.016213098540902138, -0.034732550382614136, -0.009822584688663483, 0.004763713106513023, -0.000635361997410655, -0.017860492691397667, -0.02031785435974598, -0.012918312102556229, -0.015005010180175304, 0.008305609226226807, -0.0009652696899138391, 0.08022806793451309, 0.023640098050236702, -0.009541154839098454, 0.002060958184301853, -0.028390083461999893, 0.007729021832346916, 0.008923382498323917, 0.011586668901145458, -0.003076850902289152, -0.021635768935084343, 0.01880774460732937, -0.021937791258096695, -0.009314638562500477, -0.005003958009183407, -0.03728600963950157, -0.00666164793074131, -0.002314931247383356, 0.01758592762053013, -0.02097681164741516, 0.018931297585368156, 0.03583081066608429, -0.00013524500536732376, 0.01722899079322815, -0.015307032503187656, -0.03421087563037872, -0.01580125093460083, 0.035144396126270294, 0.025246307253837585, -0.006630759220570326, -0.027813496068120003, 0.009774535894393921, 0.0037649809382855892, -0.024326512590050697, -0.017695752903819084, -0.013048730790615082, 0.009712758474051952, -0.005038278643041849, -0.02304978296160698, 0.021869150921702385, 0.02347535826265812, 0.009486241266131401, 0.025260034948587418, -0.01759965531527996, -0.010309938341379166, -0.001817281125113368, -0.012012245133519173, -0.028115518391132355, -0.004149372689425945, 0.012259353883564472], "0906c897-2d71-433e-8780-c24e0112d357": [0.0015873420052230358, -0.002592716831713915, 0.010106019675731659, -0.021145975217223167, -0.0012632524594664574, 0.022539908066391945, -0.014887211844325066, -0.02007264643907547, -0.019027195870876312, -0.026958677917718887, 0.02223324216902256, 0.02801806852221489, 0.017633261159062386, -0.004756798967719078, -0.011067833751440048, 0.011674194596707821, 0.02500717155635357, -0.011214196681976318, 0.01136752963066101, -0.010412684641778469, -0.02474232390522957, -0.014134488068521023, -0.016267206519842148, -0.014873272739350796, -0.02063021995127201, 0.0071055772714316845, 0.019765980541706085, -0.011820558458566666, -0.02343202568590641, 0.020936883985996246, 0.007833907380700111, -0.007112546823918819, -0.019961131736636162, -0.012266617268323898, -0.02202415280044079, 0.005335281137377024, -0.004164377227425575, -0.00847511738538742, 0.014043882489204407, -0.023850206285715103, 0.011095712892711163, 0.026930799707770348, 0.00958329439163208, -0.00837057176977396, -0.013535096310079098, 0.015709633007645607, 0.003256577765569091, -0.008203299716114998, -0.00758996931836009, 0.016518114134669304, -0.010029353201389313, -0.009687839075922966, -0.026401104405522346, 0.022999906912446022, -0.013284188695251942, -0.023627176880836487, 0.020964764058589935, 0.004662708379328251, 0.00988995935767889, -0.005439826287329197, 0.0017162809381261468, -0.0023540055844932795, -0.023794448003172874, -0.0062970956787467, -0.0021065822802484035, -0.022721119225025177, -0.01589084416627884, -0.020212039351463318, -0.028436247259378433, -0.02234475687146187, 0.03794287517666817, 0.030778056010603905, -0.010405715554952621, 0.019654465839266777, -0.015012666583061218, -0.012378131970763206, -0.0005440697423182428, -0.011939042247831821, -0.004404830746352673, -0.012385101057589054, 0.011576619930565357, -0.026108378544449806, -0.03535015881061554, -0.0035301372408866882, 0.029439879581332207, 0.015876905992627144, 0.014803576283156872, -0.005502553191035986, -0.0038263481110334396, 0.00915814470499754, 0.021396882832050323, 0.01107480376958847, 0.015709633007645607, 0.012552373111248016, 0.001113404519855976, 0.026247771456837654, -0.000517497886903584, 0.005272554233670235, 0.0004931040457449853, -0.012008738704025745, -0.01383479218930006, -0.009478749707341194, -0.006683912128210068, -0.009018750861287117, -0.022428393363952637, -0.015138120390474796, 0.03231138363480568, -0.010552078485488892, -0.00020201149163767695, 0.010572987608611584, -0.04271012917160988, 0.017173264175653458, 0.0006416451069526374, 0.0027756704948842525, -0.0010776850394904613, -0.01844174414873123, 0.02244233340024948, -0.025745956227183342, -0.004146952647715807, -0.015960540622472763, 0.004056347068399191, -0.018915681168437004, 0.030053211376070976, -0.020616279914975166, 0.01820477470755577, -0.0021292336750775576, 0.020212039351463318, -0.010984198190271854, 0.0032234718091785908, -0.021494457498192787, 0.010586926713585854, -0.004380436614155769, 0.006025278475135565, 0.01817689649760723, -0.017521746456623077, -0.0034848342183977365, -0.02047688700258732, 0.006011339370161295, -0.012189950793981552, -0.025606563314795494, 0.029356244951486588, 0.038639843463897705, 0.005519977770745754, -0.017870230600237846, 0.009443901479244232, 0.021745366975665092, -0.008398450911045074, 0.024240506812930107, 0.01111662108451128, 0.0043490733951330185, 0.01724296063184738, -0.011548740789294243, -0.0197241622954607, -0.00731118256226182, -0.0007474969606846571, 0.015946602448821068, -0.008509965613484383, 0.0282550361007452, -0.021801123395562172, -0.018483560532331467, -0.01583508774638176, -0.005976490676403046, -0.014385395683348179, -0.01262206956744194, -0.015361149795353413, 0.04382527619600296, 0.005042555276304483, -0.015333270654082298, -0.016295084729790688, -0.014580546878278255, -0.0031729417387396097, 0.01805144175887108, -0.03161441534757614, 0.01175783108919859, 0.013137825764715672, 0.014594485983252525, 0.012991462834179401, -0.002772185718640685, -0.001264994847588241, -0.021466579288244247, 0.02431020513176918, -0.010907531715929508, -0.0044292244128882885, 0.041678618639707565, -0.03403986245393753, -0.011451165191829205, 0.03713439404964447, 0.02364111691713333, -0.01055904757231474, -0.013235400430858135, 0.012378131970763206, 0.007910573855042458, -0.010782076977193356, -0.0049902829341590405, -0.6155611276626587, 0.00040119155892170966, 0.015012666583061218, -0.01589084416627884, -0.0012954871635884047, 0.022052031010389328, 0.023529602214694023, 0.009527537040412426, -0.017995685338974, 0.03535015881061554, 0.011750861071050167, 0.014315699227154255, -0.007645726669579744, -0.002507338300347328, -0.0032182445283979177, -0.03222774714231491, -0.0028209732845425606, -0.013772064819931984, 0.00731118256226182, 0.011911164037883282, -0.030666541308164597, 0.033175621181726456, 0.008509965613484383, -0.004739374853670597, 0.01243388932198286, -0.02425444684922695, 0.020490825176239014, -0.013109946623444557, -0.012907826341688633, 0.023822328075766563, -0.0249235350638628, 0.009311477653682232, 0.01247570663690567, 0.020602339878678322, 0.048341620713472366, -0.0064086103811860085, -0.016880538314580917, 0.007617847993969917, 0.01384873129427433, 0.05486522987484932, -0.019961131736636162, -0.004767253529280424, 0.02641504444181919, 0.005899824667721987, -0.003739227307960391, 0.002981275785714388, 0.014239032752811909, 0.0036869547329843044, -0.004202709998935461, -0.024226568639278412, 0.010224503464996815, -0.022219303995370865, 0.004603466019034386, 0.012566312216222286, 0.01342358160763979, 0.0072205765172839165, 0.02109021693468094, -0.018218714743852615, 0.005077403504401445, 0.0051784636452794075, 0.010628744959831238, 0.027878673747181892, -0.030610784888267517, -0.040005896240472794, -0.04301679506897926, -0.0017450307495892048, -0.004157407209277153, -0.01174389198422432, 0.011792679317295551, -0.0006229141145013273, 0.027474433183670044, -0.002671125577762723, -0.0014862818643450737, -0.0106635931879282, -0.007436636369675398, 0.014287821017205715, 0.01858113706111908, -0.0124617675319314, -0.021787183359265327, 0.020058706402778625, -0.013228431344032288, -0.010140867903828621, -0.02138294279575348, -0.008182390592992306, 0.02234475687146187, 0.0021658246405422688, -0.02345990389585495, -0.013960245996713638, -0.004641799256205559, 0.000629883783403784, 0.018302349373698235, 0.024379901587963104, -0.015082363039255142, -0.020574461668729782, 0.016559932380914688, 0.030582906678318977, 0.0031450630631297827, 0.004460588097572327, 0.0029446850530803204, -0.010921470820903778, -0.014733879826962948, -0.03105684369802475, 0.007359969895333052, 0.005903309211134911, 0.034430164843797684, 0.03395622596144676, -0.012531463988125324, -0.00917208380997181, 0.03610288351774216, -0.031921081244945526, -0.007021941244602203, 0.0008694661664776504, -0.009004811756312847, -0.017744775861501694, 0.017493868246674538, -0.02854776196181774, 0.001603023847565055, -0.0002929438778664917, 0.009234811179339886, -0.008008149452507496, 0.00277915527112782, -0.015542360953986645, 0.006094975396990776, -0.0009400340495631099, 0.013200552202761173, 0.01805144175887108, 0.003955286927521229, -0.0009295795462094247, 0.017577504739165306, -0.003617258043959737, 0.004248013254255056, -0.024170810356736183, 0.014043882489204407, 0.013353885151445866, 0.0246586874127388, -0.001653553918004036, 0.034402284771203995, -0.0072484551928937435, 0.00732512166723609, -0.04427133500576019, -0.0019480224000290036, 0.004680132493376732, 0.01097025815397501, -0.023292632773518562, 0.022428393363952637, -0.035182885825634, -0.02471444569528103, 0.006920881103724241, -0.009046630002558231, -0.019445376470685005, -0.008523904718458652, -0.008593601174652576, -0.015653876587748528, 0.026024742051959038, -0.010161777026951313, -0.0016901446506381035, -0.00036460079718381166, -0.05154766887426376, -0.012454797513782978, -0.015598118305206299, -0.00034478079760447145, 0.009046630002558231, -0.014043882489204407, -0.00541194761171937, -0.011276924051344395, -0.001630902523174882, 0.004450133536010981, 0.005927703343331814, -0.01589084416627884, -0.03532228246331215, 0.0032147597521543503, -0.014469032175838947, -0.0025230201426893473, 0.021313246339559555, 0.006101944949477911, 0.024296265095472336, -0.023501722142100334, 0.002486429177224636, 0.0033262744545936584, -0.004174831323325634, 0.009632081724703312, 0.008788752369582653, -0.0002256430161651224, 0.0013791231904178858, 0.028171401470899582, 0.00732512166723609, 0.030248362571001053, 0.011409347876906395, -0.039950139820575714, 0.01067753229290247, 0.020825369283556938, -0.004112104419618845, 0.00012828546459786594, -0.0009592006681486964, -0.029969574883580208, 0.009639051742851734, -0.023627176880836487, 0.001130828750319779, 0.017438111826777458, 0.017661141231656075, 0.02071385458111763, 0.007596938870847225, -0.009652990847826004, -0.01697811298072338, 0.0028767306357622147, -0.0161278136074543, 0.007833907380700111, -0.010761168785393238, 0.03222774714231491, 0.008976933546364307, -0.0005166266928426921, -0.00331930466927588, -0.013632671907544136, -0.018455682322382927, -0.003794984659180045, 0.030248362571001053, 0.013172673992812634, 0.015667814761400223, -0.0017746519297361374, 0.004965888801962137, 0.01371630746871233, 0.005697703920304775, 0.050934337079524994, 0.011722982861101627, 0.004568617790937424, 0.03635379299521446, -0.0025491563137620687, 0.03233926370739937, 0.0011107909958809614, -0.02322293631732464, -0.0070428503677248955, 0.024784142151474953, 0.02369687333703041, 0.01494296919554472, 0.05927006155252457, 0.03097320720553398, 0.035712581127882004, -0.005171494092792273, 0.013353885151445866, -0.0006015695398673415, -0.0017284777713939548, -0.0013190098106861115, 0.02150839753448963, -0.010322079062461853, 0.03236714005470276, -0.008363602682948112, 0.009973595850169659, -0.012879948131740093, -0.02796231023967266, 0.030331997200846672, 0.022721119225025177, 0.004770738072693348, -0.021703548729419708, -0.01023844350129366, 0.02737685851752758, -0.005174979101866484, 0.022637484595179558, 0.005962551571428776, 0.01037086732685566, 0.027572009712457657, 0.005931187886744738, -0.022679300978779793, 0.008349662646651268, -0.0006725730490870774, 0.00527952378615737, -0.004199225455522537, -0.009924808517098427, -0.0231950581073761, 0.006234368775039911, -0.013465399853885174, -0.012782372534275055, -0.0002988245396409184, 0.014092669822275639, 0.010099049657583237, 0.0001268697524210438, 0.010377836413681507, 0.0013346915366128087, 0.007171789184212685, -0.0037705907598137856, -0.0002609269577078521, -0.042403463274240494, -0.01837204582989216, 0.029356244951486588, 0.013465399853885174, -0.005697703920304775, -0.012106314301490784, -0.0044919513165950775, -0.007520272396504879, 0.017744775861501694, 0.01895749941468239, -0.005460735410451889, -0.0029290032107383013, -0.00927662942558527, -0.0019445375073701143, -0.004115589428693056, 0.004997252486646175, 0.034931980073451996, -0.01887386292219162, -0.007555120624601841, 0.011869345791637897, 0.006182095967233181, 0.01636478118598461, -0.028910186141729355, -0.018650833517313004, 0.028826549649238586, -0.006000884808599949, -0.015263574197888374, -0.030025333166122437, 0.0005279523902572691, -0.018149016425013542, 0.005317857023328543, 0.0008402806706726551, -0.0120644960552454, -0.028171401470899582, -0.03217199072241783, 0.016239328309893608, -0.008377541787922382, -0.009151174686849117, 0.012057526968419552, 0.005293463356792927, 0.0029551396146416664, -0.023320510983467102, 0.006973153445869684, 0.024588990956544876, 0.06194641441106796, 0.017201142385601997, 0.007091637700796127, 0.02042112872004509, -0.009924808517098427, -0.030220482498407364, -0.02103446051478386, -0.01067753229290247, 0.028422309085726738, -0.01290085632354021, -0.033872589468955994, 0.005593159236013889, 0.0058127036318182945, -0.0034621828235685825, 0.011144500225782394, -0.004408315289765596, -0.013444490730762482, -0.030025333166122437, -0.018539318814873695, 0.0032722593750804663, 0.01916658878326416, -0.01123510580509901, 0.03969923406839371, 0.021898698061704636, 0.021159913390874863, 0.005453765857964754, 0.04337921738624573, 0.0031799112912267447, 0.0002859742089640349, -0.013165703974664211, -0.025341715663671494, 0.020435068756341934, 0.017368413507938385, 0.021396882832050323, -0.011806618422269821, 0.01343752071261406, -0.012440858408808708, -0.02489565685391426, -0.036827728152275085, 0.01738235354423523, -0.0025840045418590307, 0.024965353310108185, 0.004223619122058153, 0.0014697288861498237, 0.013632671907544136, -0.008349662646651268, -0.006959214340895414, 0.017187202349305153, -0.019584769383072853, -0.009618142619729042, 0.01700599119067192, 0.008175421506166458, -0.01380691397935152, 0.009882990270853043, 0.0021379459649324417, -0.02351566217839718, -0.006593306548893452, -0.013332976028323174, -0.05302523821592331, -0.0303877554833889, -0.031363509595394135, -0.014496910385787487, -0.004631344694644213, -0.00848905649036169, -0.0029394577722996473, -0.03454167768359184, 0.006530579645186663, 0.005868460983037949, -0.016894476488232613, 0.00807784590870142, 0.006352853029966354, -0.04820222780108452, -0.020895065739750862, 0.010419654659926891, 0.014482971280813217, 0.02369687333703041, -0.011709043756127357, 0.010789046995341778, -0.004223619122058153, 0.001670106896199286, 8.477948722429574e-05, -0.029105335474014282, -0.0010811698157340288, -0.013033280149102211, 0.012203889898955822, -0.01311691664159298, -0.021048398688435555, 0.0072205765172839165, -0.009220872074365616, 0.007861786521971226, 0.006070581264793873, -0.005056494381278753, 0.010322079062461853, 0.0043490733951330185, -0.005377099383622408, 0.03755257651209831, 0.02801806852221489, 0.004160892218351364, 0.02249808982014656, -0.02276293747127056, 0.00011804875975940377, -0.02474232390522957, -0.02001688815653324, -0.02260960452258587, -0.0044327094219625, 0.0025892318226397038, 0.010349958203732967, 0.011764801107347012, -0.016113873571157455, -0.017173264175653458, 0.014218123629689217, 0.015570240095257759, -0.0010951091535389423, -0.0070428503677248955, 0.009903899393975735, -0.025090808048844337, 0.009346325881779194, 0.018999317660927773, 0.006182095967233181, -0.0077851200476288795, 0.0008394094766117632, 0.003822863334789872, 0.03657682240009308, -0.001782492734491825, -0.003627712605521083, 0.006927850656211376, 0.013451460748910904, -0.009945716708898544, -0.010147837921977043, 0.01591872237622738, -0.015361149795353413, 0.0056767952628433704, -0.013242370449006557, -0.014594485983252525, -0.012106314301490784, 0.007576029747724533, -0.020058706402778625, 0.0051610395312309265, -0.014566607773303986, -0.009924808517098427, -0.03052714839577675, 0.005966036580502987, 0.004683617502450943, -0.015946602448821068, 0.017661141231656075, -0.017953867092728615, -0.019305981695652008, 0.011541771702468395, 0.011925103142857552, 0.019933251664042473, -0.02577383443713188, -0.007778150029480457, -0.02828291617333889, -0.009220872074365616, -0.024770202115178108, -0.01547266449779272, -0.008942085318267345, 0.01741023175418377, 0.06361913681030273, 0.01922234706580639, 0.00541194761171937, -0.001018442795611918, 0.02860352024435997, 0.012956613674759865, -0.003756651422008872, -0.005028615705668926, -0.021229609847068787, -0.015667814761400223, 0.014385395683348179, 0.024728383868932724, -0.000990564120002091, 0.004502405878156424, -0.0030457451939582825, 0.01247570663690567, -0.005377099383622408, 0.015040544793009758, -0.01764720119535923, -0.010315109975636005, -0.025690197944641113, -0.05720704048871994, 0.0017398035852238536, 0.04809071496129036, -0.00806390680372715, -0.0064539131708443165, -0.010322079062461853, 0.0005632363609038293, 0.011402377858757973, -0.00644345860928297, 0.03699500113725662, 0.016782961785793304, 0.03660469874739647, 0.012008738704025745, -0.00485785910859704, 0.015584179200232029, -0.002759988885372877, -0.00917208380997181, -0.00232961168512702, -0.03245077654719353, -0.005262099672108889, 0.007408757694065571, 0.017661141231656075, 0.00943693146109581, -0.029941696673631668, 0.010182686150074005, 0.008551783859729767, 0.02182900160551071, -0.014016003347933292, -0.029969574883580208, 0.010949349030852318, -0.02702837437391281, 0.005694219376891851, -0.027279283851385117, -0.035573188215494156, -0.0033715772442519665, 0.006725730374455452, -0.015124181285500526, 0.022958088666200638, 0.017256898805499077, -0.01708962768316269, -0.012252677232027054, 0.013388733379542828, 0.0028610490262508392, 0.039308931678533554, 0.009618142619729042, 0.022721119225025177, 0.019445376470685005, 0.002024688757956028, -0.012531463988125324, -0.019445376470685005, 0.011179348453879356, -0.007234516087919474, -0.007994210347533226, 0.032060474157333374, -0.01697811298072338, 0.004335133824497461, 0.014371456578373909, -0.002057794714346528, 0.0018034017411991954, -0.04195740446448326, 0.01695023477077484, 0.023390207439661026, 0.0019323406741023064, -0.037496816366910934, -0.023529602214694023, -0.015667814761400223, -0.003554530907422304, -0.006924365647137165, 0.02638716623187065, 0.013284188695251942, -0.0020943854469805956, 0.004652253817766905, 0.05238403007388115, -0.018999317660927773, 0.025578683242201805, -0.00373574229888618, -0.0007675347733311355, -0.01703386940062046, -0.007527241948992014, -0.0030631693080067635, -0.018511440604925156, 0.0050808885134756565, 0.014197215437889099, -0.0043595279566943645, -0.012552373111248016, 0.008551783859729767, 0.01879022642970085, -0.017019931226968765, -0.006764063611626625, -0.00804996769875288, 0.033203501254320145, -0.014441153034567833, 0.0020438553765416145, -0.015765391290187836, -0.01367449015378952, 0.018093260005116463, -0.017159324139356613, -0.016253266483545303, 0.01016874611377716, -0.008321784436702728, 0.011548740789294243, 0.010099049657583237, 0.020351432263851166, -0.016281146556138992, -0.014064791612327099, 0.0005784825189039111, 0.0032496079802513123, -0.008272997103631496, 0.010496321134269238, 0.013792973943054676, -0.0314471460878849, -0.020351432263851166, -0.004586041904985905, -0.008335723541676998, 0.016894476488232613, -0.005920733325183392, 0.00500422203913331, -0.0051958877593278885, 0.03150290250778198, -0.0166575089097023, -0.011019046418368816, 0.014329638332128525, 0.008537843823432922, -0.026540497317910194, 0.024170810356736183, 0.008426329120993614, -0.018162956461310387, 0.026317467913031578, 0.0026014288887381554, -0.023947780951857567, -0.027251403778791428, 0.0033733195159584284, -0.003340213792398572, 0.02398959919810295, -0.005314372479915619, 0.013723277486860752, 0.011709043756127357, -0.001541167963296175, -0.005990430247038603, -0.008593601174652576, -0.003425592090934515, 0.011228135786950588, 0.01313085574656725, 0.023041725158691406, -0.030136847868561745, 0.016002358868718147, -0.008300875313580036, 0.021452639251947403, -0.008112694136798382, -0.03395622596144676, -0.026317467913031578, -0.03186532482504845, -0.014197215437889099, 0.007359969895333052, -0.005565280560404062, 0.011813588440418243, -0.03239502012729645, -0.015249635092914104, 0.011325711384415627, -0.014455093070864677, -0.003983165603131056, 0.011019046418368816, -0.016225388273596764, -0.0034099104814231396, 0.017577504739165306, -0.012831159867346287, -0.044076185673475266, -0.0017249929951503873, -0.016378721222281456, -0.02807382494211197, -9.136799781117588e-05, -0.012057526968419552, 0.037441059947013855, 0.009785414673388004, -0.03334289416670799, -0.02807382494211197, -0.02833867259323597, -0.04672465845942497, -0.006046187598258257, -0.02793443202972412, 0.03824954107403755, 0.029384123161435127, 0.035071372985839844, 0.007555120624601841, 0.028798671439290047, 7.38349262974225e-05, 0.017131445929408073, -0.022972028702497482, 0.001687531010247767, -0.026038682088255882, -0.02793443202972412, 0.0007143910625018179, 0.00013264150766190141, -0.048954952508211136, 0.00806390680372715, 0.009046630002558231, -0.022776877507567406, 0.011736921966075897, 0.011932073161005974, -0.011005106382071972, 0.005136645864695311, -0.012789341621100903, -0.00042188275256194174, 0.035545311868190765, 0.024700505658984184, 0.011869345791637897, -0.027265343815088272, 0.006335428915917873, 0.015695692971348763, -0.007380879018455744, -0.015333270654082298, 0.013319036923348904, 0.029969574883580208, -0.0018765833228826523, 0.02404535748064518, 0.00465922337025404, -0.011479044333100319, -0.010921470820903778, -0.020518705248832703, 0.0072205765172839165, -0.0020159767009317875, 0.024184750393033028, 0.030889570713043213, -0.007596938870847225, 0.01215510256588459, -0.0163926612585783, -0.001614349544979632, 0.004620890133082867, 0.015319331549108028, 0.03334289416670799, -0.025662319734692574, -0.007924512960016727, -0.011262984946370125, 0.0065619428642094135, 0.021982334554195404, -0.01580720767378807, -0.006865123752504587, -0.008746934123337269, -0.02860352024435997, -0.001445334986783564, 0.011297833174467087, -0.02428232505917549, -0.029635030776262283, -0.013402672484517097, -0.00901178177446127, -0.008217239752411842, 0.0025735502131283283, -0.01383479218930006, -0.020086584612727165, -0.003934377804398537, -0.004795132204890251, 0.004558163229376078, -0.04864828661084175, 0.010356927290558815, 0.020058706402778625, -0.016866598278284073, 0.012092375196516514, 0.21477730572223663, -0.018065381795167923, 0.024853838607668877, 0.020755672827363014, 0.025230200961232185, -0.014148427173495293, -0.00974359642714262, 0.013765095733106136, -0.0071787587366998196, 0.005471189972013235, 0.022038092836737633, -0.0051087671890854836, -0.022595666348934174, -0.0005963422590866685, 0.015639936551451683, -0.015988420695066452, -0.04273800924420357, -0.010900561697781086, -0.017493868246674538, 0.006331943906843662, 0.010858743451535702, 0.0011595786781981587, -0.027892613783478737, -0.01685265824198723, 0.03420713543891907, 0.023850206285715103, -0.008405419997870922, 0.02559262327849865, 0.02506292797625065, 0.023585358634591103, -0.015988420695066452, 0.0008786138496361673, 0.0285198837518692, -0.011332681402564049, -0.041009530425071716, -0.0043595279566943645, 0.010266321711242199, -0.01580720767378807, -0.010377836413681507, 0.012092375196516514, 0.013611762784421444, -0.026275651529431343, 0.0026571862399578094, -0.038723479956388474, 0.016699325293302536, -0.005934672895818949, -0.019208407029509544, -0.004533769562840462, 0.010196625255048275, 0.007520272396504879, -0.02863139845430851, -0.0001751129311742261, 0.011959951370954514, -0.0014357517939060926, -0.0032530927564948797, 0.015347210690379143, -0.014970848336815834, 0.0033715772442519665, -0.007318152114748955, -0.0004992025205865502, -0.014043882489204407, -0.0013416612055152655, -0.017340535297989845, 0.011785709299147129, -0.030053211376070976, 0.04218043386936188, 0.008907236158847809, 0.02092294581234455, 0.00850299559533596, -0.008642389439046383, -0.006255277432501316, 0.006680427584797144, -0.031391385942697525, 0.005140130408108234, -0.004241043236106634, -0.002739079762250185, 0.022637484595179558, 0.022707181051373482, 0.053053118288517, 0.017870230600237846, 0.011339650489389896, 0.020239917561411858, -0.008551783859729767, -0.013562975451350212, 0.009534507058560848, -0.002672867849469185, 0.037329547107219696, -0.017591442912817, 0.004983312916010618, -0.006342398468405008, -0.008252087980508804, 0.008272997103631496, -0.0018469621427357197, -0.01609993539750576, -0.00035959132947027683, -0.00356498546898365, 0.024170810356736183, 0.007126486394554377, -0.013193583115935326, -0.022916270419955254, -0.01434357836842537, 0.056342802941799164, 0.02585747092962265, 0.009799353778362274, -0.02290233038365841, 0.023153239861130714, 0.004944979678839445, 0.008036027662456036, 0.021452639251947403, -0.01297055371105671, -0.010391775518655777, -0.04547011852264404, 0.01756356470286846, -0.005945127457380295, -0.00037048145895823836, 0.027195647358894348, 0.019069014117121696, 0.0012981008039787412, 0.019292043522000313, -0.0019933253061026335, 0.018358107656240463, -0.0002665898355189711, 0.0009426476899534464, 0.018037501722574234, -0.02918897196650505, -0.030331997200846672, -0.0008516063680872321, -0.0010437078308314085, -0.026902921497821808, -0.02918897196650505, 0.008760873228311539, -0.01676902361214161, 0.025871410965919495, -0.011486014351248741, -0.00010563404066488147, -0.006603761110454798, -0.004390891175717115, -0.012085405178368092, 0.007387848570942879, 0.005014676600694656, 0.013562975451350212, -0.0006773646455258131, 0.002620595507323742, 0.006722245365381241, 0.007136940490454435, 0.0031502903439104557, -0.01329115778207779, 0.017744775861501694, -0.03415137529373169, -0.026958677917718887, -0.0011212454410269856, -0.006931335665285587, -0.0166575089097023, -0.0064364890567958355, 0.02743261493742466, -0.0394483245909214, -0.053917355835437775, -0.027850795537233353, 0.02191263809800148, 0.024700505658984184, -0.04887131601572037, 0.008935115300118923, 0.035712581127882004, -0.005251645110547543, -0.023905962705612183, -0.0004290702345315367, -0.1783120036125183, 0.0058754305355250835, 0.0009583294158801436, -0.00038289616350084543, -0.01674114353954792, 0.021870819851756096, -0.0019166588317602873, -0.01714538410305977, -0.015960540622472763, 0.002148400293663144, 0.015960540622472763, -0.007847846485674381, -0.04145558923482895, -0.030331997200846672, 0.0004212293424643576, -0.022651422768831253, 0.011716012842953205, 0.02340414747595787, 0.04552587494254112, -0.004488466773182154, 0.015402968041598797, -0.030694421380758286, -0.0057569462805986404, 0.0057395221665501595, 0.001344274845905602, 0.0009260947117581964, -0.010294200852513313, 0.03035987727344036, -0.01216904167085886, -0.03264592960476875, 0.0028993822634220123, -0.011939042247831821, 0.015653876587748528, 0.01231540460139513, -0.02042112872004509, -0.01122116670012474, -0.014789637178182602, -0.014169336296617985, -0.01562599651515484, 0.016030237078666687, 0.0402568057179451, 0.01948719285428524, 0.024672627449035645, 0.016908416524529457, 0.0018521894235163927, 0.016462357714772224, 0.032618049532175064, -0.011423286981880665, 0.019027195870876312, -0.014984787441790104, -0.0071055772714316845, -0.019236285239458084, -0.004342103376984596, 0.001958476845175028, 0.02167566865682602, 0.01770295761525631, 0.006387701258063316, 0.00837057176977396, 0.01175783108919859, -0.011911164037883282, 0.0005606227205134928, -0.0077642109245061874, -0.0033611226826906204, -0.018358107656240463, -0.024031417444348335, -0.039838626980781555, -0.01647629588842392, 0.018832044675946236, -0.011667225509881973, 0.019529011100530624, 0.007241485640406609, 0.0029952151235193014, 0.01037086732685566, 0.003979680594056845, 0.023975661024451256, -0.0060984599404037, -0.04006165638566017, 0.00649224640801549, 0.017479928210377693, 0.004505890887230635, 0.01989143341779709, 0.02921685017645359, 0.012712676078081131, -0.007854816503822803, -0.006366792134940624, -0.0015307135181501508, -0.007359969895333052, -0.011897224001586437, 0.004425739403814077, 0.009757536463439465, 0.024379901587963104, -0.006802396383136511, 0.009778445586562157, -0.006798911839723587, 0.003599833929911256, 0.004356042947620153, 0.02921685017645359, 0.0026066561695188284, 0.007001032121479511, -0.017465990036725998, 0.002766958437860012, 0.0035127128940075636, -0.0397271104156971, 0.009095417335629463, 0.021424761041998863, 0.002239006105810404, 0.012406010180711746, -0.00345172849483788, 0.039281051605939865, -0.02559262327849865, -0.029049579054117203, 0.016992053017020226, 0.023710813373327255, 0.018121138215065002, -0.034513797610998154, 0.04142770916223526, 0.0021919608116149902, -0.016964172944426537, 0.023362329229712486, -0.036242276430130005, 0.04563739150762558, -0.04187376797199249, -0.010656623169779778, -0.003362865187227726, -0.0003142884816043079, -0.01015480700880289, -0.11023227870464325, -0.02063021995127201, 0.024463536217808723, 0.00601830892264843, -0.006014823913574219, 0.017229020595550537, 0.0053980085067451, 0.026986556127667427, 0.022135667502880096, 0.006694366689771414, -0.00850299559533596, 0.008419360034167767, 0.011437226086854935, -0.009443901479244232, 0.010356927290558815, -0.0027373372577130795, 0.0013738959096372128, -0.005192403215914965, -0.015138120390474796, 0.03175381198525429, 0.0027739282231777906, -0.0012406010646373034, 0.005359675269573927, -0.0004197047383058816, -0.007304212544113398, -0.003791499650105834, -0.021438701078295708, 0.014085700735449791, 0.018887802958488464, 0.016936294734477997, 0.01572357304394245, -0.00984814204275608, -0.00040532980347052217, -0.021257489919662476, -0.014441153034567833, -0.007001032121479511, -0.021842941641807556, -0.022595666348934174, 0.009123296476900578, -0.02535565383732319, 0.0279901884496212, -0.012412980198860168, 0.016267206519842148, -0.030861692503094673, -0.010301169939339161, -0.00791754387319088, -0.032534413039684296, 0.024435658007860184, 0.008705115877091885, -0.011639346368610859, -0.035656824707984924, -0.019919313490390778, -0.03529440239071846, -0.02918897196650505, 0.025662319734692574, 0.01494296919554472, -0.001372153521515429, 0.021201731637120247, -0.013562975451350212, 0.0064364890567958355, 0.012217829003930092, -0.006004369352012873, -0.011444196105003357, 0.004708011168986559, 0.003822863334789872, 0.020936883985996246, 0.004077256191521883, 0.0035283947363495827, -0.012963583692908287, 0.004136498551815748, -0.027446554973721504, 0.0043211947195231915, -0.011513892561197281, 0.014385395683348179, -0.02822715789079666, -1.962941860256251e-05, 0.01466418243944645, -0.01708962768316269, 0.020086584612727165, 0.010503290221095085, -0.014301760122179985, -0.015375088900327682, 0.004028468392789364, -0.03961559757590294, 0.02345990389585495, 0.009332386776804924, 0.011646316386759281, -0.009827232919633389, 0.03601924702525139, -0.029021700844168663, 0.011604498140513897, 0.02316717803478241, 0.0028244582936167717, 0.015347210690379143, 5.6955261243274435e-05, 0.011820558458566666, -0.020992642268538475, -0.008377541787922382, 0.023125359788537025, 0.01773083768785, 0.002721655648201704, 0.012141162529587746, -0.06540337204933167, 0.0024254447780549526, 0.019584769383072853, 0.012796311639249325, -0.0008241633186116815, -0.010336018167436123, 0.0043211947195231915, -0.002941200276836753, 0.010949349030852318, 0.001687531010247767, -0.029412001371383667, 0.009632081724703312, -0.003324531950056553, -0.000615508877672255, -0.011736921966075897, -0.005220281891524792, 0.016336902976036072, 0.0023313541896641254, 0.023613236844539642, 0.006206490099430084, -0.005049524828791618, -0.005882400553673506, -0.001951507176272571, 0.026428982615470886, -0.019069014117121696, 0.006380731705576181, -0.007241485640406609, 0.006924365647137165, -0.03300835192203522, -0.03886287286877632, 0.010405715554952621, 0.011151470243930817, -0.010336018167436123, 0.009039659984409809, -0.005903309211134911, -0.031196236610412598, 0.004802101757377386, 0.009053600020706654, 0.01732659712433815, 0.01674114353954792, -0.008642389439046383, -0.02641504444181919, 0.0166575089097023, -0.004209680017083883, -0.020030828192830086, -0.0033506681211292744, -0.02156415395438671, -0.029412001371383667, 0.010907531715929508, 0.01234328281134367, 0.049624040722846985, -0.002721655648201704, -0.030833814293146133, -0.018511440604925156, 0.006300580687820911, -0.0065340641885995865, 0.023250814527273178, 0.025285957381129265, 0.014719939790666103, -0.00984814204275608, 0.04569314792752266, 0.018622955307364464, 0.016894476488232613, -0.0031903658527880907, 0.029551394283771515, -0.030861692503094673, -0.04329558089375496, -0.023822328075766563, 0.020504765212535858, -0.031140480190515518, 0.0050634643994271755, -0.021759305149316788, 0.03420713543891907, 0.017814472317695618, 0.005701188929378986, 0.0038716509006917477, -0.013939336873590946, -0.00793148297816515, -0.009903899393975735, 0.03169805184006691, 0.01796780526638031, -0.018706589937210083, -0.014022973366081715, 0.024965353310108185, 0.01770295761525631, 0.016197510063648224, -0.012636009603738785, 0.02655443735420704, 0.004272406920790672, 0.0050704339519143105, -0.010607835836708546, 0.0006446943734772503, -0.018999317660927773, 0.017633261159062386, 0.0026920344680547714, 0.01326327957212925, -0.025732016190886497, 0.011799649335443974, 0.018622955307364464, 0.008015118539333344, -0.012684796936810017, 0.019975069910287857, 0.01094237994402647, -0.021132035180926323, -0.010496321134269238, 0.017814472317695618, -0.019821736961603165, -0.01895749941468239, 0.012503585778176785, 0.0106635931879282, 0.0018051441293209791, -0.013165703974664211, -0.0012449570931494236, 0.010224503464996815, -0.02687504142522812, -0.011388438753783703, -0.010991167277097702, -0.03183744475245476, -0.025146564468741417, -0.00878178235143423, 0.010949349030852318, 0.012176010757684708, 0.004098165314644575, -0.008217239752411842, 0.014566607773303986, -0.017577504739165306, 0.015681754797697067, -0.009374204091727734, 0.010287230834364891, -0.0413161963224411, -0.015514482744038105, 0.01609993539750576, -0.0028610490262508392, -0.03334289416670799, -0.0231950581073761, -0.0025439290329813957, -0.016908416524529457, 0.0057604312896728516, 0.0025962016079574823, 0.09255719929933548, 0.04312830790877342, -0.015263574197888374, 0.002868018578737974, -0.01881810463964939, 0.0015882132574915886, 0.0050878580659627914, 0.01724296063184738, -0.012148132547736168, -0.02375263161957264, 0.014803576283156872, -0.008956024423241615, -0.016113873571157455, -0.001923628500662744, -0.02012840285897255, -0.0070602744817733765, -0.0049902829341590405, 0.0057569462805986404, -0.008544813841581345, 0.026052622124552727, 0.02364111691713333, -0.009980565868318081, 0.02071385458111763, -0.024909595027565956, -0.03604712709784508, -0.01234328281134367, 0.03108472190797329, 0.023975661024451256, -0.005924218334257603, -0.021731426939368248, 0.024881716817617416, 0.005467704962939024, -0.0210623387247324, -0.012747524306178093, -0.021229609847068787, 0.025690197944641113, -0.014678122475743294, -0.027920491993427277, 0.025411412119865417, 0.01863689348101616, 8.537844405509531e-05, 0.015026605688035488, -0.0062970956787467, -0.002446353668347001, -0.012636009603738785, 0.0031694567296653986, -0.00972965732216835, -0.00806390680372715, 0.016545994207262993], "fd110e99-b3bc-4167-8b59-1c4c6697450f": [0.007306972984224558, -0.0017615023534744978, 0.005570696666836739, -0.028058774769306183, -0.0016431990079581738, 0.016339782625436783, -0.01714702881872654, -0.029116546735167503, -0.011364082805812359, -0.04203249141573906, 0.024286985397338867, 0.017759423702955246, 0.020459523424506187, -0.006026512943208218, -0.008998014964163303, 0.017982112243771553, 0.02875467762351036, -0.003141998313367367, -0.0029958589002490044, -0.010758647695183754, -0.017996029928326607, -0.009812220931053162, -0.02192091755568981, -0.010348064824938774, -0.023187460377812386, 0.008657023310661316, 0.018733685836195946, -0.016687734052538872, -0.014015469700098038, 0.02097449079155922, -0.0006589323747903109, -0.008016793057322502, -0.015379438176751137, -0.008100301027297974, -0.01753673516213894, 0.014558273367583752, -0.005925606936216354, 0.007223464548587799, 0.019039884209632874, -0.009679999202489853, 0.011336246505379677, 0.007884571328759193, 0.0013204743154346943, -0.0049478644505143166, -0.011892967857420444, 0.015685634687542915, -0.00495134387165308, 0.00580034451559186, -0.013444829732179642, 0.00718866940587759, -0.017133111134171486, -0.004036232363432646, -0.02086314745247364, 0.0058420985005795956, -0.022324541583657265, -0.026068495586514473, 0.0175784882158041, -0.0047112577594816685, 0.014405175112187862, -0.007467030081897974, -0.0043111140839755535, -0.004300675354897976, -0.01304816547781229, 0.0002981505822390318, -0.006715456023812294, -0.02804485708475113, -0.01006274577230215, -0.010132335126399994, -0.03117641806602478, -0.024286985397338867, 0.025400429964065552, 0.03746737167239189, -0.006308353040367365, 0.016465045511722565, 0.0010142774553969502, -0.009165031835436821, -0.02148945815861225, -0.02652779035270214, -0.002804485848173499, -0.014683535322546959, 0.01578306034207344, -0.013660559430718422, -0.026221593841910362, -0.007265218533575535, 0.03702199459075928, 0.03309710696339607, 0.015713470056653023, -0.006781566422432661, 0.0015553412958979607, 0.007501825224608183, 0.017675915732979774, 0.022950854152441025, 0.033375468105077744, 0.011009172536432743, -0.0042345644906163216, 0.02984028495848179, 0.0010090580908581614, 0.008211645297706127, 0.005574176553636789, -0.018970293924212456, -0.015616044402122498, -0.0021172822453081608, 0.0026653052773326635, -0.013702313415706158, -0.028058774769306183, -0.01632586494088173, 0.02047344110906124, 0.009011932648718357, 0.001964183757081628, 0.005288856569677591, -0.029367070645093918, 0.019680112600326538, 0.005013975314795971, -0.015087159350514412, 0.00740439910441637, -0.015407274477183819, 0.020877065137028694, -0.023688510060310364, -0.003061969531700015, -0.02313178777694702, -0.0016345002222806215, -0.017397554591298103, 0.03807976841926575, -0.02445400133728981, 0.021266769617795944, 0.000724608136806637, 0.006322271190583706, -0.024231312796473503, 0.014711371622979641, -0.01625627465546131, 0.023772018030285835, 0.0044537740759551525, 0.021809574216604233, 0.020320342853665352, -0.019165145233273506, 0.007007734850049019, -0.01373014971613884, 0.00489219231531024, -0.003639568341895938, -0.03649311140179634, 0.03301359713077545, 0.0332084521651268, 0.016047503799200058, -0.018107375130057335, 0.013584010303020477, 0.019471343606710434, -0.017996029928326607, 0.016924340277910233, -0.008893629536032677, -0.002653127070516348, 0.007682759780436754, -0.01515674963593483, -0.013312608934938908, 0.009979236871004105, 0.01472529023885727, 0.008705736137926579, 0.007272177841514349, 0.021767819300293922, -0.029979465529322624, -0.013236058875918388, -0.024119969457387924, 0.0016492881113663316, -0.012735010124742985, -0.02077963948249817, -0.006611070595681667, 0.03782924264669418, 0.007780186366289854, -0.017091358080506325, -0.01878935843706131, -0.008336908183991909, 0.01486446987837553, 0.00580034451559186, -0.020208999514579773, 0.02222711592912674, 0.017202701419591904, 0.011057885363698006, 0.014335584826767445, -0.007494866382330656, -0.010535959154367447, -0.021085835993289948, 0.020849229767918587, 0.00024313082394655794, -0.01135016418993473, 0.0030567501671612263, -0.027293283492326736, -0.01292986236512661, 0.036548782140016556, 0.035936389118433, -0.0013196044601500034, -0.020723966881632805, 0.019986310973763466, 0.009874851442873478, -0.003844859544187784, 0.012637583538889885, -0.6199653148651123, -0.003876175032928586, 0.017439307644963264, -0.017884686589241028, -0.004857397172600031, 0.02187916450202465, 0.02855982445180416, 0.01246360782533884, -0.00894930213689804, 0.022867346182465553, 0.009860933758318424, 0.012588869780302048, -0.01608925871551037, -0.006297914776951075, -0.0003899226721841842, -0.03137126937508583, -0.013737108558416367, -0.015810897573828697, 0.009311171248555183, 0.004829560872167349, -0.027014922350645065, 0.024815870448946953, 0.004763450473546982, -0.0030358731746673584, 0.017522817477583885, -0.01941567100584507, 0.028838185593485832, -0.030257826671004295, -0.011405836790800095, 0.01738363690674305, -0.02683398686349392, 0.012136533856391907, 0.012915944680571556, 0.014321666210889816, 0.04155927896499634, -0.009895728901028633, -0.008253399282693863, 0.0033177135046571493, 0.02105799876153469, 0.05500410869717598, -0.027293283492326736, -0.005549819674342871, 0.026346856728196144, 0.0016031846171244979, -0.01006274577230215, 0.011753787286579609, -0.0007863694336265326, 0.010174090042710304, -0.007738431915640831, -0.01589440554380417, 0.0035125662107020617, -0.021099753677845, 0.005977799650281668, 0.007682759780436754, -0.0009925304912030697, 0.0048052044585347176, 0.02116934396326542, -0.01156589388847351, 0.008942343294620514, -0.0022077495232224464, 0.01150326244533062, 0.023813772946596146, -0.030369170010089874, -0.03688281401991844, -0.035880714654922485, 0.016200602054595947, -0.013862371444702148, -0.011204024776816368, 0.0010951760923489928, 0.013500502333045006, 0.025289084762334824, -0.005943004507571459, -0.014112896285951138, -0.007508784532546997, -0.004679942037910223, 0.019471343606710434, 0.022881263867020607, -0.021085835993289948, -0.011357123032212257, 0.006214406341314316, -0.0032811786513775587, -0.010689057409763336, -0.011378000490367413, 0.002400862518697977, 0.015128913335502148, 0.005497626960277557, -0.01863626018166542, -0.017592407763004303, 0.0013283032458275557, -0.004624269902706146, 0.015532536432147026, 0.025247329846024513, -0.005556778982281685, -0.008448252454400063, 0.0033211931586265564, 0.033653829246759415, 0.0011534577934071422, -0.0014831414446234703, 0.0015770882600918412, -0.02105799876153469, -0.026472117751836777, -0.025414347648620605, 0.012296590954065323, -0.012261795811355114, 0.03167746588587761, 0.029673269018530846, -0.008657023310661316, -0.015101077035069466, 0.02144770510494709, -0.025734461843967438, -0.023465821519494057, 0.0026687849313020706, -0.029506251215934753, -0.01212957501411438, 0.017717668786644936, -0.02624942921102047, 0.008378662168979645, -0.002272120676934719, 0.013931961730122566, -0.02386944368481636, 0.0063327099196612835, -0.02172606624662876, 0.009693916887044907, -0.004276318941265345, 0.007696677930653095, 0.005974320229142904, 0.0034795107785612345, 0.011412795633077621, 0.012414894998073578, -0.0081072598695755, -0.014934060163795948, -0.010389819741249084, 0.0119138453155756, 0.007675800938159227, 0.03173314034938812, 0.0023608480114489794, 0.029868120327591896, -0.019151227548718452, 0.0018476202385500073, -0.050995711237192154, 0.0036952404771000147, -0.013653600588440895, 0.008719653822481632, -0.027432464063167572, 0.012964657507836819, -0.037717897444963455, -0.03134343400597572, 0.015950078144669533, -0.0021329401060938835, -0.015240257605910301, -0.003531703492626548, -0.0025922355707734823, -0.014711371622979641, 0.02172606624662876, -0.004352868068963289, -0.003190711373463273, 0.0061622136272490025, -0.0351569764316082, -0.00692422641441226, -0.004819122608751059, -0.002292997669428587, 0.0175784882158041, -0.023062197491526604, -0.007265218533575535, -0.009178949519991875, 0.0020250752568244934, -0.004119740799069405, 0.023855526000261307, -0.019777540117502213, -0.04573469236493111, 0.006457972340285778, 0.0013169948942959309, -0.001109094126150012, 0.02172606624662876, -0.013319567777216434, 0.028406726196408272, -0.0035560601390898228, -0.006631947588175535, 0.004460732918232679, -0.007216505706310272, 0.012512320652604103, 0.0056194099597632885, -0.008490006439387798, 0.007884571328759193, 0.034628093242645264, 0.0001853926805779338, 0.031621795147657394, 0.016437210142612457, -0.017411472275853157, 0.004502486903220415, 0.030090808868408203, -0.007808022201061249, 0.006158734206110239, 0.012797640636563301, -0.014586109668016434, -0.004874794743955135, -0.028838185593485832, -0.00194330676458776, -0.007689719088375568, 0.0343775674700737, 0.017216619104146957, -0.001964183757081628, -0.010570754297077656, -0.004926987458020449, 0.02136419713497162, -0.003526484128087759, 0.012693255208432674, -0.012331386096775532, 0.01723053678870201, 0.014335584826767445, -0.003973601385951042, -0.007613169960677624, -0.0044537740759551525, -0.009408596903085709, 0.005998676642775536, 0.025692708790302277, 0.01447476539760828, 0.010229761712253094, -0.010167130269110203, 0.0019937597680836916, 0.008336908183991909, 0.014405175112187862, 0.045651182532310486, 0.007007734850049019, -0.009206785820424557, 0.022394131869077682, 0.0035090867895632982, 0.0096660815179348, -0.00292974803596735, -0.031120745465159416, 0.008009834215044975, 0.026513872668147087, 0.021280689164996147, 0.011579812504351139, 0.041587114334106445, 0.039248883724212646, 0.04876882582902908, -0.006691099144518375, 0.03407137095928192, 0.0003466462658252567, -0.003653486492112279, 0.01176074706017971, 0.020751802250742912, -0.010995253920555115, 0.04812859371304512, -0.007223464548587799, 0.009937482886016369, -0.011510222218930721, -0.022672493010759354, 0.03610340505838394, 0.027293283492326736, 0.017077438533306122, -0.023465821519494057, -0.0009194607264362276, 0.03184448182582855, -0.0049965777434408665, 0.01379278115928173, 0.010389819741249084, -0.0016840832540765405, 0.011357123032212257, 0.002865377115085721, -0.01835789903998375, 0.008427374996244907, -0.0010429833782836795, 0.005852537229657173, -0.011802501045167446, -0.011830336414277554, -0.028615497052669525, 0.004352868068963289, -0.014975815080106258, 0.010090581141412258, -0.008594391867518425, 0.00580034451559186, 0.0209049005061388, 0.0056194099597632885, 0.005128799006342888, 0.005497626960277557, -0.002435657661408186, -0.002757512265816331, 0.011851213872432709, -0.03769006207585335, -0.024440083652734756, 0.024050379171967506, 0.017982112243771553, -0.0029802010394632816, -0.014238158240914345, -0.007119079120457172, -0.029561923816800117, 0.01820480078458786, 0.007265218533575535, 0.0060473899357020855, 0.008030710741877556, -0.005414118990302086, 0.001212609582580626, -0.015796979889273643, 0.009290293790400028, 0.02594323270022869, -0.02324313297867775, -0.012338345870375633, 0.017606325447559357, 0.012268755584955215, -0.0013543996028602123, -0.0073835221119225025, -0.020250752568244934, 0.018497079610824585, -0.010828237980604172, -0.034822944551706314, -0.03020215407013893, 0.002120761899277568, -0.01314559206366539, -0.0026444282848387957, -0.01215045154094696, -0.0025174261536449194, -0.01727229170501232, -0.01554645411670208, 0.010146253742277622, -0.014217281714081764, -0.028253627941012383, 0.024760199710726738, 0.0012517540017142892, 0.004770409315824509, -0.033069271594285965, 0.012080861255526543, 0.025149904191493988, 0.06279820948839188, 0.02214360609650612, -0.0037996259052306414, 0.02242196723818779, 0.0007772357203066349, -0.03109290823340416, -0.020570868626236916, -0.012574952095746994, 0.02215752564370632, -0.013862371444702148, -0.02203226275742054, 0.001760632498189807, 0.009728712029755116, -0.008531760424375534, 0.016492880880832672, -0.009958360344171524, -0.01691042259335518, -0.018190883100032806, -0.01529592927545309, 0.013208223506808281, 0.020139409229159355, -0.00823948159813881, 0.03863648697733879, 0.005995197221636772, 0.017021767795085907, -0.0032133283093571663, 0.033653829246759415, 0.014015469700098038, 0.011259697377681732, -0.016270192340016365, -0.015504700131714344, 0.007961120456457138, 0.015268093906342983, 0.005407159682363272, -0.02114150859415531, 0.015017569065093994, 0.0005519373808056116, -0.016938257962465286, -0.02250547707080841, 0.007536620367318392, -0.012380099855363369, 0.024314822629094124, 0.006092623341828585, -0.014321666210889816, 0.010083622299134731, -0.030675368383526802, -0.0034603734966367483, 0.010299351997673512, -0.023841608315706253, -0.0066980584524571896, 0.01224787812680006, 0.013229100033640862, -0.0070808045566082, 0.009116318076848984, -0.005525463260710239, -0.015880487859249115, -0.016158849000930786, -0.012331386096775532, -0.04501095414161682, -0.03485077992081642, -0.025442183017730713, -0.027432464063167572, 0.006092623341828585, -0.006781566422432661, -0.0175784882158041, -0.023103952407836914, 0.010174090042710304, -0.014307748526334763, -0.012512320652604103, -0.00199202005751431, 0.0028932131826877594, -0.03421055153012276, -0.014488683082163334, 0.007390480954200029, 0.030090808868408203, 0.019234735518693924, 0.0060195536352694035, 0.013535297475755215, -0.008469128981232643, -0.0020128970500081778, 0.005995197221636772, -0.02981244958937168, 0.011440631933510303, -0.02121109887957573, 0.011023090220987797, -0.006656304467469454, -0.023994706571102142, 0.0012256576446816325, -0.014836634509265423, 0.009791343472898006, -0.005020934157073498, -0.01613101176917553, 0.0022703807335346937, -0.00019887578673660755, -0.004272839520126581, 0.03254038468003273, 0.014892306178808212, 0.004116261377930641, 0.030814548954367638, -0.023257050663232803, 0.005459352396428585, -0.014739207923412323, -0.010445491410791874, -0.022714246064424515, 0.012164370156824589, 0.00042993706301786005, -0.006945103872567415, 0.005337569862604141, -0.011224902234971523, -0.00680592330172658, -0.015727389603853226, 0.002131200395524502, 0.0037613511085510254, -0.010737770237028599, 0.0028914734721183777, -0.027335036545991898, 0.008009834215044975, 0.01567171700298786, 0.0071260384283959866, -0.029895957559347153, -0.006457972340285778, -0.010125376284122467, 0.03546317294239998, -0.0037752692587673664, -0.0023156143724918365, 0.024579264223575592, 0.02077963948249817, -0.02726544626057148, -0.008796203881502151, 0.02289518155157566, -0.022171443328261375, 0.0063187917694449425, -0.016506798565387726, -0.009311171248555183, -0.007828899659216404, -0.011315369047224522, -0.009297252632677555, 0.008065505884587765, -0.011642443016171455, -0.013403075747191906, -0.016966095194220543, -0.0014170308131724596, 0.019749702885746956, -0.011579812504351139, 0.0004893062287010252, -0.0189424566924572, -0.02601282298564911, 0.01219220645725727, -0.000574554200284183, 0.020932737737894058, -0.0328187458217144, -0.001538813696242869, -0.018858948722481728, 0.003495168639346957, -0.016103176400065422, -0.01848316192626953, -0.017216619104146957, 0.020334260538220406, 0.0675860196352005, 0.031120745465159416, 0.013994592241942883, 0.01058467198163271, 0.02819795534014702, 0.01625627465546131, -0.011670279316604137, -0.002647907705977559, -0.010014032013714314, -0.009151113219559193, -0.00041949853766709566, 0.011426713317632675, 0.003347289515659213, -0.010960458777844906, -0.012004312127828598, 0.012971616350114346, 0.004008396528661251, 0.019248653203248978, -0.013959797099232674, -0.013117755763232708, -0.03348681330680847, -0.04815642908215523, 0.008942343294620514, 0.02875467762351036, -0.02101624570786953, 0.00023617179249413311, -0.017634160816669464, -0.000961214886046946, 0.01867801509797573, 0.009742630645632744, 0.029701104387640953, 0.016743406653404236, 0.038692161440849304, 0.008615268394351006, -0.00398404011502862, 0.0036221707705408335, 0.005977799650281668, -0.011990394443273544, -0.01562996208667755, -0.02894953079521656, -0.006562357302755117, 0.006423177197575569, 0.03265172988176346, 0.019916720688343048, -0.024314822629094124, 0.00300803710706532, 0.0201254915446043, 0.025261249393224716, -0.018232636153697968, -0.0226585753262043, 0.014182486571371555, -0.03128776326775551, -0.009032810106873512, -0.025177739560604095, -0.029561923816800117, -0.0038726956117898226, -0.003674363484606147, -0.012943780049681664, 0.014600027352571487, 0.021099753677845, -0.017007848247885704, -0.014078101143240929, 0.02309003472328186, 0.012331386096775532, 0.03972209617495537, 0.006409259047359228, 0.035936389118433, 0.012484485283493996, 0.005894291214644909, -0.004739093594253063, -0.017717668786644936, 0.01234530471265316, -0.013507461175322533, 0.0076270876452326775, 0.04801724851131439, -0.024203477427363396, 0.0002768385747913271, 0.01828830875456333, -0.015643881633877754, 0.008531760424375534, -0.03885917738080025, 0.007696677930653095, -0.0045198844745755196, 0.002814924344420433, -0.03755088150501251, -0.023841608315706253, -0.020932737737894058, 0.007647964637726545, 0.006579754874110222, 0.012080861255526543, 0.0044259377755224705, 0.000981222023256123, 0.012846354395151138, 0.04359131306409836, -0.034043535590171814, 0.02296477183699608, -0.009408596903085709, -0.004551200196146965, -0.0064127384684979916, -0.004526843782514334, 0.004537282045930624, -0.02214360609650612, 0.017174866050481796, 0.027279365807771683, 0.00980526115745306, -0.012630624696612358, 0.008977138437330723, 0.010125376284122467, -0.017091358080506325, 0.003844859544187784, -0.00036774080945178866, 0.03245687857270241, 0.0029923792462795973, -0.018316145986318588, -0.008072464726865292, -0.007877612486481667, 0.021712148562073708, -0.011030049063265324, -0.0031141622457653284, 0.003401221940293908, -0.004098863806575537, 0.010083622299134731, 0.010856074281036854, 0.013465707190334797, -0.013222141191363335, -0.00910240039229393, -0.013396116904914379, -0.007794104516506195, -0.002653127070516348, 0.0065901936031877995, 0.024356575682759285, -0.039944782853126526, -0.01582481525838375, 0.01218524668365717, -0.003663924988359213, 0.026235511526465416, 0.0021346798166632652, -0.0015509919030591846, 0.003269000444561243, 0.00789153017103672, -0.005365405697375536, -0.01259582955390215, 0.02058478631079197, 0.012999452650547028, -0.03574153408408165, 0.012790681794285774, 0.01400851085782051, -0.00011775969323934987, 0.01909555494785309, -0.010730811394751072, -0.013862371444702148, -0.04431505128741264, 0.0013761465670540929, -0.0017093097558245063, 0.024467920884490013, -0.005135757848620415, 0.005654205102473497, 0.014989732764661312, 0.006357066333293915, 0.0038344210479408503, -0.009965319186449051, -0.0022321061696857214, -0.0029454058967530727, 0.021433787420392036, 0.004495528060942888, -0.02410605177283287, -0.005358446855098009, -0.019304325804114342, 0.009158072993159294, -0.009596491232514381, -0.030731039121747017, -0.020069818943738937, -0.036159075796604156, -0.0002624856133479625, 0.006092623341828585, -0.0008468259475193918, -0.0025313440710306168, -0.018232636153697968, -0.019429588690400124, 0.01166332047432661, -0.01384845282882452, 0.0006919876905158162, 0.022171443328261375, -0.033375468105077744, -0.0035491010639816523, 0.026736561208963394, -0.025595281273126602, -0.05458656698465347, -0.02203226275742054, -0.022296706214547157, -0.02945058047771454, -0.0014535656664520502, -0.003368166508153081, 0.040056128054857254, 0.009874851442873478, -0.029784612357616425, -0.03454458341002464, -0.03020215407013893, -0.04626357555389404, -0.006259640213102102, -0.02855982445180416, 0.03457241877913475, 0.0234379842877388, 0.03078671172261238, 0.009763507172465324, 0.03031349927186966, 0.008309071883559227, 0.0063988203182816505, -0.04036232456564903, -0.0037091586273163557, -0.02112758904695511, -0.029673269018530846, 0.013918043114244938, -0.013277813792228699, -0.04283973574638367, -0.00553590152412653, 0.005911688786000013, -0.008155973628163338, 0.010932623408734798, 0.005622889380902052, -0.005434995982795954, -6.0130296333227307e-05, -0.004878274165093899, -0.0007159093511290848, 0.041976820677518845, 0.017842931672930717, -0.0009934003464877605, -0.0140641825273633, -0.0003066319040954113, -0.0010977856582030654, -0.007975039072334766, -0.014613945968449116, 0.011607647873461246, 0.02538651041686535, -0.006691099144518375, 0.010007073171436787, 0.022630738094449043, -0.005546340253204107, 0.001080388086847961, -0.008190768770873547, 0.00686507485806942, 0.0041023432277143, 0.02121109887957573, 0.03059185855090618, -0.002550481352955103, 0.021503377705812454, -0.006301394198089838, -0.00857351440936327, 0.006725894287228584, 0.0035230047069489956, 0.017634160816669464, -0.025177739560604095, 0.012414894998073578, -0.029200054705142975, 0.004217166919261217, 0.007286095526069403, -0.014878388494253159, 0.00431807292625308, -0.001361358561553061, -0.03610340505838394, -0.0056472462601959705, 0.013646641746163368, -0.012602788396179676, -0.025219494476914406, -0.012554075568914413, -0.005243622697889805, -0.0007154744234867394, 0.006792005151510239, -0.012707173824310303, -0.018664095550775528, -0.015045404434204102, -0.008350825868546963, 1.316369616688462e-05, -0.04050150513648987, 0.011064844205975533, 0.03340330347418785, -0.01887286640703678, 0.008719653822481632, 0.19930638372898102, 0.01107876282185316, 0.026360774412751198, 0.022644655779004097, 0.024119969457387924, -0.015922240912914276, 0.014558273367583752, 0.015602126717567444, 0.0009899208089336753, 0.0007267828332260251, 0.01781509630382061, 0.009039768949151039, -0.032679565250873566, -0.001036024303175509, 0.016270192340016365, -0.015017569065093994, -0.04055717960000038, -0.010661221109330654, -0.01593616046011448, 0.012491444125771523, 0.0033559883013367653, -0.010403737425804138, -0.01632586494088173, -0.01070297509431839, 0.03652094677090645, 0.008698777295649052, -0.003876175032928586, 0.022644655779004097, 0.021586885675787926, 0.017996029928326607, 0.003890093183144927, -0.009603450074791908, 0.026472117751836777, -0.003343809861689806, -0.013799740001559258, 0.007153874263167381, -0.0025522212963551283, -0.02488546073436737, -0.007119079120457172, 0.00988181121647358, 0.0036360889207571745, -0.010981336236000061, 0.005055729299783707, -0.03156612068414688, 0.016673816367983818, -0.018274391070008278, -0.023451903834939003, 0.005153155419975519, 0.002484370721504092, 0.015504700131714344, -0.01738363690674305, 0.0011499783722683787, 0.018385734409093857, 0.00516707357019186, 0.002682702848687768, 0.01582481525838375, -0.009185908362269402, -0.002174694323912263, -0.015810897573828697, -0.003639568341895938, -0.01132928766310215, 0.011614607647061348, -0.007766268216073513, 0.006962500978261232, -0.029895957559347153, 0.04153143987059593, 0.0070842839777469635, 0.003660445334389806, 0.0035769371315836906, -0.0013717971742153168, 0.012978575192391872, 0.014586109668016434, -0.03340330347418785, -0.000234214574447833, -0.013396116904914379, -0.004874794743955135, 0.023702427744865417, 0.02808661200106144, 0.04289541020989418, 0.005396721418946981, 0.014989732764661312, 0.0005136628169566393, -0.01835789903998375, -0.013305649161338806, 0.019596604630351067, -0.007682759780436754, 0.01742538996040821, -0.023215295746922493, 0.009986195713281631, -0.023744182661175728, -0.004178892355412245, 0.01727229170501232, -0.008309071883559227, -0.010563794523477554, -0.0003244643739890307, -0.00377874867990613, 0.020877065137028694, 0.013082960620522499, -0.019276490435004234, -0.026889659464359283, -0.0118164187297225, 0.06313224136829376, 0.014175526797771454, 0.021155426278710365, -0.00823948159813881, 0.01820480078458786, -0.0018424009904265404, 0.009387720376253128, 0.007216505706310272, -0.00178498902823776, -0.0020250752568244934, -0.04965957999229431, 0.01969403214752674, -0.009185908362269402, -0.009965319186449051, 0.019248653203248978, 0.013764944858849049, 0.007011214271187782, 0.015991831198334694, 0.00018463154265191406, 0.01267933752387762, 0.004123220220208168, 0.011252738535404205, -0.0037161174695938826, -0.016117094084620476, -0.03457241877913475, -0.0005310603301040828, 0.006089143920689821, -0.027335036545991898, -0.03382084518671036, 0.004495528060942888, -0.008851875551044941, 0.03844163566827774, -0.009638245217502117, 0.0008598741260357201, -0.02222711592912674, 0.004224126227200031, 0.010856074281036854, 0.005285377148538828, -0.00792632531374693, 0.010856074281036854, -0.016701651737093925, 0.001493580057285726, 0.0013387417420744896, 0.0018563190242275596, 0.008900588378310204, -0.01574130728840828, 0.013444829732179642, -0.028267545625567436, -0.02495505101978779, 0.008872753009200096, -0.013096879236400127, -0.008197727613151073, -0.007787145208567381, 0.03532399237155914, -0.030257826671004295, -0.04737702012062073, -0.01859450526535511, 0.012477525509893894, 0.025163821876049042, -0.047989413142204285, 0.02038993313908577, 0.041392259299755096, 0.013820617459714413, -0.024718444794416428, 0.004906110465526581, -0.1781509518623352, 0.009860933758318424, 0.014794880524277687, -0.008336908183991909, -0.014112896285951138, 0.018803276121616364, -0.007230423390865326, 0.0014135512756183743, -0.021670393645763397, 0.006785046309232712, 0.026319019496440887, -0.020181162282824516, -0.03418271616101265, -0.015170667320489883, -0.0007250430644489825, -0.015755224972963333, 0.0039979577995836735, 0.020334260538220406, 0.06580451130867004, 0.005080085713416338, 0.01283243577927351, -0.02114150859415531, -0.003615211695432663, 0.01589440554380417, 0.005073126871138811, 0.014126813970506191, -0.009707835502922535, 0.029088711366057396, -0.012825476936995983, -0.028030939400196075, 0.017522817477583885, -0.00789153017103672, 0.020376015454530716, 0.008622228167951107, 0.004307634197175503, -0.023229215294122696, -0.009345966391265392, -0.021378114819526672, -0.003841379890218377, 0.005261020269244909, 0.035964224487543106, 0.00878924410790205, 0.02758556231856346, 0.006715456023812294, 0.011899926699697971, 0.021851327270269394, 0.036632291972637177, -0.008914506994187832, 0.01625627465546131, -0.01219220645725727, 0.012331386096775532, -0.020028064027428627, -0.007216505706310272, 0.0018476202385500073, 0.015810897573828697, 0.025163821876049042, 0.009610408917069435, 0.025414347648620605, 0.004888712894171476, -0.01606142148375511, 0.014029387384653091, -0.0141616091132164, 0.006531042046844959, -0.021906999871134758, -0.010181048884987831, -0.03624258562922478, -0.004965262021869421, 0.03003513813018799, -0.0002609633083920926, 0.012289632111787796, 0.003970121964812279, -0.004471171647310257, 0.007007734850049019, -0.005240143276751041, 0.026040658354759216, 0.013563132844865322, -0.02421739511191845, -0.0017449746374040842, 0.021071918308734894, -0.005052249878644943, 0.013806698843836784, 0.017453227192163467, 0.011141393333673477, -0.00990268774330616, -0.020376015454530716, -0.0041023432277143, -0.014655699953436852, 0.001222178223542869, 0.005675082094967365, 0.012853313237428665, 0.03418271616101265, -0.006680660881102085, 0.013535297475755215, -0.005083565134555101, 0.014133772812783718, 0.0016927820397540927, 0.0240225438028574, -0.009916606359183788, 0.005448914133012295, -0.012164370156824589, -0.003629129845649004, 0.020417770370841026, -0.041308753192424774, 0.008580474182963371, 0.03426622226834297, 0.015462946146726608, 0.013006411492824554, -0.0059186480939388275, 0.028392808511853218, -0.01224787812680006, -0.026472117751836777, 0.003293357091024518, 0.03070320375263691, 0.008434333838522434, -0.02562311850488186, 0.045372821390628815, -0.0023243131581693888, -0.022881263867020607, 0.017160948365926743, -0.03418271616101265, 0.03512914106249809, -0.03440540283918381, -0.02855982445180416, -0.00361869134940207, -0.002987160114571452, -0.012672378681600094, -0.10399562120437622, -0.012268755584955215, 0.031426940113306046, 0.016158849000930786, 0.0006880732835270464, 0.008371703326702118, 0.011844255030155182, 0.020376015454530716, 0.0009081523166969419, 0.02071004919707775, -0.008900588378310204, 0.020877065137028694, 0.0013082961086183786, -0.008977138437330723, 0.0040397122502326965, -0.002435657661408186, 0.011927763000130653, -0.01549078244715929, -0.007849776186048985, 0.035769373178482056, -0.009130236692726612, 0.005612451117485762, 0.020097654312849045, -0.0033664267975836992, 0.008545679040253162, -0.018817193806171417, -0.02430090308189392, 0.018232636153697968, 0.011280573904514313, 0.022046180441975594, 0.012073902413249016, -0.013277813792228699, 0.013333485461771488, -0.022839508950710297, -0.018427489325404167, -0.007327849976718426, -0.02112758904695511, -0.013556174002587795, 0.017648078501224518, -0.021238934248685837, 0.008524801582098007, -0.00501049542799592, 0.0039109704084694386, -0.02086314745247364, -0.008100301027297974, 0.006635427009314299, -0.03454458341002464, 0.029005201533436775, -0.0003014126268681139, -0.011148353107273579, -0.0437583290040493, -0.020320342853665352, -0.03329195827245712, -0.027321118861436844, 0.024286985397338867, 0.018135210499167442, 0.024328740313649178, 0.023744182661175728, -0.018803276121616364, 0.002997598610818386, 0.0061900499276816845, 0.0034708119928836823, -0.01179554220288992, 0.013535297475755215, -0.0009055426926352084, 0.015963995829224586, -0.017202701419591904, -0.005080085713416338, -0.0234379842877388, -0.0061135003343224525, -0.022087935358285904, 0.00783585850149393, -0.021308524534106255, 0.008650063537061214, -0.028893858194351196, -0.016590308398008347, -0.0025557007174938917, -0.007306972984224558, 0.016729488968849182, 0.012317468412220478, -0.012547115795314312, -0.019944556057453156, -0.0031785331666469574, -0.035407502204179764, 0.012748927809298038, 0.014196404255926609, 0.0273489560931921, -0.012136533856391907, 0.03535183146595955, -0.03117641806602478, 0.02233845926821232, 0.026346856728196144, 0.012721091508865356, -0.0011421494418755174, -0.00990268774330616, 0.01324301864951849, -0.011141393333673477, -0.01703568547964096, 0.018608424812555313, 0.009937482886016369, -0.006012594792991877, 0.00623180391266942, -0.06586018204689026, 0.007599251810461283, 0.005083565134555101, 0.0070808045566082, 0.00623180391266942, -0.0015370738692581654, 0.014119855128228664, 0.0026322498451918364, -0.0009968798840418458, 0.004060589242726564, -0.028531989082694054, 0.01462786365300417, -0.02551177330315113, 0.005146196577697992, -0.03774573281407356, -0.007418317254632711, 0.012574952095746994, 0.00436678621917963, 0.015643881633877754, 0.007132997270673513, -0.010007073171436787, 0.015087159350514412, -0.000353822746546939, 0.024913297966122627, -0.02453751116991043, 0.009116318076848984, -0.03042484261095524, 0.00047234358498826623, -0.02656954526901245, -0.030174318701028824, 0.020459523424506187, 0.007313931826502085, -0.011245778761804104, 0.012853313237428665, -0.01972186751663685, -0.041197407990694046, 0.007543579675257206, 0.0073556858114898205, 0.026736561208963394, 0.0028236231300979853, -0.018761523067951202, -0.03234553337097168, 0.014140731655061245, -0.015602126717567444, -0.021183261647820473, -0.01688258722424507, -0.020139409229159355, -0.024426165968179703, 0.0096660815179348, 0.006120459642261267, 0.05536597594618797, -0.00215903646312654, -0.025497855618596077, -0.021197179332375526, 0.005271458998322487, 0.0034708119928836823, 0.021503377705812454, 0.022435886785387993, 0.006151775363832712, -0.010188007727265358, 0.053695812821388245, 0.005730754230171442, 0.020932737737894058, -0.005469791125506163, 0.02058478631079197, -0.027279365807771683, -0.06830975413322449, -0.014934060163795948, 0.014265994541347027, -0.0271541029214859, 0.009840056300163269, -0.027376791462302208, 0.028893858194351196, 0.025790134444832802, 0.002411301014944911, 0.0028514591977000237, 0.008169891312718391, -0.013876289129257202, 0.0001853926805779338, 0.04445423185825348, 0.008810121566057205, -0.017634160816669464, -0.02656954526901245, 0.005240143276751041, 0.01113443449139595, 0.020292507484555244, -0.015351601876318455, 0.018330063670873642, 0.009693916887044907, 0.008726613596081734, -0.008427374996244907, 0.010438532568514347, -0.023605002090334892, -0.0017275771824643016, 0.012533198110759258, 0.014210321940481663, -0.02668088860809803, 0.004095384385436773, 0.01462786365300417, 0.02378593571484089, -0.005243622697889805, 0.019680112600326538, 0.014265994541347027, -0.022296706214547157, -0.017550652846693993, 0.013785822317004204, -0.03170530125498772, -0.014753125607967377, 0.026040658354759216, 0.008684858679771423, -0.0016901723574846983, -0.027877841144800186, 0.004944385029375553, 0.013396116904914379, -0.038302455097436905, -0.012491444125771523, -0.004864356014877558, -0.020459523424506187, -0.03649311140179634, 0.010744729079306126, 0.012171328999102116, 0.010375901125371456, 0.006186570506542921, -0.021378114819526672, 0.018232636153697968, -0.008900588378310204, 0.019471343606710434, -0.02218536101281643, 0.018107375130057335, -0.029367070645093918, -0.0032307258807122707, 0.0023312722332775593, 0.006628468167036772, -0.023730263113975525, -0.021350279450416565, -0.00398404011502862, -0.014516519382596016, 0.01427991222590208, 0.0053480081260204315, 0.0999872237443924, 0.03454458341002464, -0.022547230124473572, 0.002279079519212246, -0.03446107357740402, -0.0027731701266020536, 0.002707059495151043, -0.002712278626859188, -0.0012300070375204086, -0.028225792571902275, 0.016701651737093925, -0.01215045154094696, -0.007122558541595936, -0.0007359165465459228, -0.030174318701028824, 0.0034203592222183943, -0.0008063766290433705, 0.026124168187379837, -0.01941567100584507, 0.01766199618577957, 0.029088711366057396, -0.020988410338759422, 0.022129688411951065, -0.021670393645763397, -0.02620767615735531, -0.013925001956522465, 0.03407137095928192, 0.020612621679902077, 0.0033838243689388037, -0.01976362243294716, 0.018455324694514275, 0.004585995338857174, -0.02914438210427761, -0.017049603164196014, -0.028531989082694054, 0.008114219643175602, -0.01762024313211441, -0.014516519382596016, 0.009359884075820446, 0.021419867873191833, 0.002150337677448988, 0.02121109887957573, -0.009547777473926544, -0.01684083230793476, -0.013556174002587795, -0.011524139903485775, -0.016186684370040894, -0.010278475470840931, 0.019234735518693924], "f57f536f-7e36-4634-abb1-690b53f0bd05": [0.0027182295452803373, -0.007284719962626696, 0.006519688758999109, -0.03734434396028519, -0.010074036195874214, 0.024562234058976173, -0.025063227862119675, -0.018293041735887527, -0.006922514643520117, -0.04774335026741028, 0.020256394520401955, 0.029897140339016914, 0.02362794801592827, 0.0005991614307276905, -0.016939004883170128, 0.024589315056800842, 0.030763722956180573, -0.00952565111219883, 0.00870645884424448, 0.0002661529288161546, -0.025090308859944344, 0.0008242700714617968, -0.007657079957425594, -0.006475682370364666, -0.011394222266972065, 0.0059645334258675575, 0.01689838245511055, -0.010913539677858353, -0.033390555530786514, 0.028299376368522644, -0.007271179463714361, -0.00953242089599371, -0.022707203403115273, -0.003872546134516597, -0.024304965510964394, 0.021881239488720894, -0.0057038813829422, 0.005060713738203049, 0.01314770057797432, -0.016438011080026627, 0.02035117708146572, 0.02093341387808323, 0.004810216836631298, -0.015300619415938854, -0.02169167436659336, 0.025794407352805138, 0.0035678879357874393, -0.0008589673088863492, -0.02280198596417904, 0.018387824296951294, -0.015598507598042488, -0.019755402579903603, -0.03368844464421272, 0.01500273123383522, -0.019660618156194687, -0.021271923556923866, 0.023126954212784767, -0.008185154758393764, 0.007765403017401695, -0.005592173431068659, -0.0021715371403843164, -0.004624036606401205, -0.01608596183359623, 0.0021732295863330364, -0.00162230571731925, -0.03219900280237198, -0.017277514562010765, -0.007115465123206377, -0.020838631317019463, -0.018550308421254158, 0.041108567267656326, 0.035286206752061844, -0.010399005375802517, 0.004698508884757757, -0.01929502934217453, -0.003601738717406988, -0.01513813529163599, -0.01738583669066429, -0.003254766808822751, -0.011042173020541668, 0.01849614642560482, -0.01823887974023819, -0.0337967649102211, -0.00469173863530159, 0.03506956249475479, 0.0206084456294775, 0.014095526188611984, 0.004305838141590357, -0.012653476558625698, 0.012883663177490234, 0.02682347595691681, 0.011929066851735115, 0.028516022488474846, 0.017521239817142487, -0.0018245649989694357, 0.023465463891625404, 3.152367571601644e-05, 0.003916552290320396, -0.0016646194271743298, -0.018604470416903496, -0.021894780918955803, -0.012971675954759121, -0.01584223471581936, -0.009288694709539413, -0.024792419746518135, -0.024860121309757233, 0.009681365452706814, 0.006946210283786058, -0.0021106053609400988, 0.011495775543153286, -0.02729738876223564, 0.014921489171683788, -0.00304996850900352, -0.012809190899133682, 0.010365154594182968, -0.004911769647151232, 0.04614558443427086, -0.025252792984247208, -0.013025837019085884, -0.02789316512644291, 0.003198912600055337, -0.01741291768848896, 0.038481734693050385, -0.028055649250745773, 0.025090308859944344, -0.003097360022366047, 0.013100309297442436, -0.017060868442058563, 0.0203917995095253, -0.016167202964425087, 0.023384220898151398, -0.019132545217871666, 0.0021630742121487856, 0.006316583137959242, -0.016695277765393257, -0.002334021497517824, -0.01019589975476265, 0.0029331829864531755, -0.0057377321645617485, -0.04522484168410301, 0.03081788495182991, 0.04097316414117813, 0.012389440089464188, -0.019999127835035324, 0.007379502523690462, 0.02066260576248169, -0.004065496381372213, 0.03320099040865898, -0.0035475771874189377, 0.006350433919578791, 0.022070804610848427, -0.015909936279058456, -0.01243683136999607, 0.002195232780650258, 0.0101620489731431, 0.003760838182643056, 0.001958276145160198, 0.03000546246767044, -0.028082730248570442, -0.022030184045433998, -0.020459501072764397, -0.002743617631494999, -0.011874905787408352, -0.004725589416921139, -0.008354408666491508, 0.03249689191579819, 0.013709626160562038, -0.020242854952812195, -0.018645090982317924, -0.009823539294302464, -6.60622026771307e-05, 0.01123850792646408, -0.024724718183279037, 0.007724781986325979, 0.012910744175314903, 0.02280198596417904, 0.00899080652743578, -0.006533229257911444, 0.005182577297091484, -0.029680494219064713, 0.018672171980142593, 0.002897639526054263, -0.0011593942763283849, 0.009837079793214798, -0.02441328950226307, -0.006584005430340767, 0.03374260663986206, 0.03463627025485039, -0.008841861970722675, -0.010371924377977848, 0.005399222951382399, 0.007873726077377796, 0.0014175076503306627, -0.00024605393991805613, -0.6217738389968872, -0.004725589416921139, 0.011197887361049652, -0.012125402688980103, 0.009403787553310394, 0.020730309188365936, 0.024264344945549965, 0.006492608226835728, -0.0043024527840316296, 0.034961238503456116, 0.006458756979554892, 0.009620433673262596, -0.012524843215942383, -0.010663042776286602, -0.002462655073031783, -0.030682481825351715, -0.009545961394906044, -0.027703600004315376, 0.0052231983281672, 0.0013049532426521182, -0.025848569348454475, 0.02468409761786461, 0.020161611959338188, -0.01233527809381485, 0.01685776188969612, -0.01772434636950493, 0.028516022488474846, -0.01768372394144535, -0.00503024784848094, 0.02036471851170063, -0.018590928986668587, 0.020445961505174637, 0.007982049137353897, 0.028245214372873306, 0.04636223241686821, -0.0124774519354105, -0.007826334796845913, 0.025306953117251396, 0.029030555859208107, 0.04351875185966492, -0.018089935183525085, -0.014393414370715618, 0.015923475846648216, 0.008334098383784294, -0.00027440409758128226, 0.010717203840613365, 0.0034172511659562588, 0.010053725913167, -0.012159253470599651, -0.012348818592727184, 0.01058857049793005, -0.026931798085570335, -0.005781738553196192, 0.006895434111356735, 0.020188692957162857, 0.012260805815458298, 0.013032607734203339, -0.028570182621479034, 0.003943633288145065, 0.003139673499390483, 0.01528707891702652, 0.01955229602754116, -0.039267078042030334, -0.028326457366347313, -0.04154185950756073, 0.018333662301301956, 0.005629409570246935, -0.010690122842788696, 0.008503353223204613, 0.002772391075268388, 0.023005090653896332, -0.005930682644248009, -0.011786893010139465, -0.013459129258990288, -0.009904781356453896, 0.02518509142100811, 0.02411540038883686, -0.010717203840613365, -0.010236520320177078, 0.007230558432638645, -0.0022629345767199993, -0.004085807129740715, -0.015544346533715725, -0.01045316644012928, 0.025022605434060097, -0.00010038915934273973, -0.022571798413991928, -0.011103104799985886, -0.003534036921337247, 0.0012880278518423438, 0.0125857749953866, 0.019416892901062965, -0.012382669374346733, -0.020757388323545456, -0.007277949713170528, 0.03368844464421272, 0.0050133224576711655, 0.008063291199505329, -0.003038120688870549, -0.021664593368768692, -0.020026208832859993, -0.016722358763217926, 0.012138943187892437, -0.000663055048789829, 0.015666209161281586, 0.02362794801592827, -0.014054905623197556, -0.01983664371073246, 0.0252392515540123, -0.026457885280251503, -0.005294285248965025, -0.009329316206276417, -0.01772434636950493, -0.006262421607971191, 0.01798161305487156, -0.026146456599235535, 0.001821179990656674, -0.007474285084754229, 0.018875276669859886, -0.007338881026953459, -0.01432571280747652, -0.015896396711468697, 0.0010036800522357225, -0.000732872576918453, 0.010852607898414135, 0.016830680891871452, 0.0052773598581552505, 0.005534626543521881, 0.015300619415938854, 0.006746490020304918, 0.0036965212784707546, -0.025523599237203598, 0.013140929862856865, -0.011841055005788803, 0.01658695563673973, -0.016505712643265724, 0.044087447226047516, -0.014312172308564186, 0.010399005375802517, -0.0477704294025898, -0.005788508802652359, 0.012382669374346733, 0.012003539130091667, -0.03179279342293739, 0.004485248122364283, -0.03171154856681824, -0.021515650674700737, -0.0019853569101542234, 0.0018482606392353773, -0.007751862518489361, -0.014488196931779385, -0.007298259995877743, -0.005642949603497982, 5.4161486332304776e-05, -0.01605888083577156, -0.009200681932270527, 0.002769005950540304, -0.04240844398736954, -0.0033986330963671207, -0.02735155075788498, -0.014759005047380924, 0.01154316682368517, -0.03033043071627617, 0.0024711177684366703, -0.0032920027151703835, -0.0023932605981826782, -0.004871148616075516, -0.0046003409661352634, -0.012829502113163471, -0.034717511385679245, 0.012159253470599651, -0.005473695229738951, 0.010277141816914082, 0.02651204727590084, -0.0025879035238176584, 0.0241018608212471, -0.024467451497912407, -0.0012490992667153478, -0.004481862764805555, -0.001364192459732294, 0.004404005594551563, 0.0067160241305828094, -0.015436023473739624, 0.008347638882696629, 0.03301142528653145, 0.0007104463293217123, 0.019728321582078934, 0.012985216453671455, -0.03720894083380699, 0.005101334769278765, 0.004336304031312466, -0.012741489335894585, -0.0030702792573720217, 0.010974470525979996, -0.02115005999803543, 0.002344176871702075, -0.03276769816875458, -0.008483042940497398, 0.0019735090900212526, 0.028570182621479034, 0.017859749495983124, 0.01844198629260063, -0.008374719880521297, -0.004762825556099415, 0.00270976684987545, -0.02282906509935856, 0.005852825473994017, -0.0206761471927166, 0.029545089229941368, 0.020445961505174637, -0.0001983452821150422, 0.008828322403132915, 0.0020327481906861067, -0.012260805815458298, 0.02064906619489193, 0.027270307764410973, 0.02014807239174843, 0.025090308859944344, -0.0024592699483036995, 0.008814781904220581, 0.017467079684138298, 0.0034595648758113384, 0.03190111368894577, 0.00682434719055891, -0.009342855773866177, 0.030872046947479248, 0.0035678879357874393, 0.019091922789812088, 0.00710869487375021, -0.02383105270564556, -0.006147328764200211, 0.026633910834789276, 0.008191924542188644, 0.009315775707364082, 0.0423542819917202, 0.022869687527418137, 0.041433535516262054, -0.010128197260200977, 0.0406481958925724, -0.007718011736869812, -0.01165148988366127, 0.008381489664316177, 0.013364346697926521, -0.01665465719997883, 0.03349887952208519, -0.012098321691155434, 0.03219900280237198, 0.004051955882459879, -0.028028568252921104, 0.032280243933200836, 0.01489440817385912, 0.00029323366470634937, -0.015625588595867157, -0.002129223430529237, 0.023939376696944237, -0.011211427859961987, 0.030222108587622643, 0.0019278103718534112, 0.005473695229738951, 0.0010062188375741243, -0.002423726487904787, -0.009945402853190899, 0.009999563917517662, -0.008977266028523445, 0.006550154648721218, -0.004285527393221855, -0.004630806855857372, -0.020012669265270233, -0.00013349960499908775, -0.018970059230923653, 0.00037553373840637505, -0.003156599123030901, 0.0060965521261096, 0.014041365124285221, 0.016695277765393257, -0.0024220338091254234, 0.0009072048706002533, 0.007745092269033194, -0.014258011244237423, 0.004999781958758831, -0.029057636857032776, -0.047093410044908524, 0.02220620959997177, 0.01166502945125103, -0.0020530587062239647, -0.010629191063344479, -0.011786893010139465, -0.029870059341192245, 0.022896768525242805, -0.002335713943466544, 0.0021613817662000656, 0.012606085278093815, -0.004820371977984905, -0.004512328654527664, -0.01126558892428875, 0.019904345273971558, 0.03214484080672264, -0.019416892901062965, 0.01205770019441843, 0.021339625120162964, 0.013960123062133789, 0.0067126392386853695, -0.022964470088481903, -0.0263089407235384, 0.034202978014945984, -0.01489440817385912, -0.028840990737080574, -0.015598507598042488, -0.012118631973862648, -0.02197602204978466, 0.011191116645932198, -0.011333290487527847, -0.007629999425262213, -0.028028568252921104, -0.014759005047380924, 0.016302606090903282, 0.003293695393949747, -0.02387167513370514, 0.018184717744588852, 0.005808819085359573, 0.014244470745325089, -0.027974406257271767, 0.005016707349568605, 0.025645462796092033, 0.07485117018222809, 0.005680185742676258, 0.006495993118733168, 0.013201861642301083, -0.0030736643821001053, -0.025591300800442696, -0.02490074187517166, -0.003743912559002638, 0.032063599675893784, -0.01059534028172493, -0.027175525203347206, 0.011597327888011932, 0.003297080285847187, 0.005273974500596523, 0.012937825173139572, -0.013506520539522171, -0.009437638334929943, -0.014704843051731586, -0.004400620702654123, 0.010148508474230766, -0.0028180896770209074, -0.011360371485352516, 0.0217458363622427, 0.014027824625372887, 0.005003167316317558, 0.0016155355842784047, 0.031982358545064926, 0.021664593368768692, -0.00508779427036643, -0.02515801042318344, -0.018970059230923653, 0.021827079355716705, 0.011746272444725037, 0.025645462796092033, -0.018414905294775963, 0.025374656543135643, -0.004999781958758831, -0.021380245685577393, -0.015652669593691826, 0.008665837347507477, -0.008015899918973446, 0.03081788495182991, 0.0003150251868646592, 0.009187141433358192, 0.011103104799985886, -0.02976173534989357, -0.007196707185357809, 0.026173537597060204, -0.021772917360067368, 0.0005225737113505602, 0.01584223471581936, 0.009369936771690845, -0.007372732274234295, 0.0208927933126688, 0.014271551743149757, -0.025686083361506462, -0.001871956279501319, -0.006736334878951311, -0.06521042436361313, -0.02656620927155018, -0.03144074231386185, -0.022964470088481903, 0.000316929304972291, -0.012240495532751083, -0.01845552586019039, -0.021556271240115166, 0.016004718840122223, -0.003791303839534521, -0.01582869328558445, -0.008821551688015461, 0.00046587339602410793, -0.04151477664709091, -0.037100616842508316, -0.009187141433358192, 0.03726310282945633, 0.012206644751131535, -0.007650309707969427, 0.010866147466003895, -0.012179563753306866, 0.004285527393221855, 0.002909487346187234, -0.03433838114142418, -0.005267204251140356, -0.030086705461144447, 0.007657079957425594, -0.0007459898479282856, -0.029653413221240044, 0.002562515204772353, -0.0048677632585167885, -0.006316583137959242, 0.010385464876890182, -0.0044513968750834465, 0.000861082982737571, 0.005487235262989998, -0.0017145494930446148, 0.027920246124267578, 0.030465835705399513, -0.02226036973297596, 0.028597263619303703, -0.024277886375784874, 0.005876521114259958, -0.02385813370347023, -0.011197887361049652, -0.022964470088481903, 0.0039944094605743885, -0.0038149997126311064, -0.00027228839462623, -0.002108912914991379, -0.011434843763709068, -0.0031227481085807085, -0.0050099375657737255, 0.008002359420061111, 0.0047831363044679165, -0.0265255868434906, 0.006194720044732094, -0.024223724380135536, 0.01006049569696188, 0.012037389911711216, 0.014515277929604053, -0.011367141269147396, -0.004793291445821524, -0.013411737978458405, 0.017115028575062752, -0.0013049532426521182, -0.008929874747991562, 0.004925310146063566, 0.021813537925481796, -0.017331674695014954, -0.018942980095744133, 0.00372360204346478, -0.011157265864312649, 0.021610433235764503, -0.015639128163456917, -0.01261285599321127, -0.004813602194190025, 0.0005039556999690831, -0.009539191611111164, 0.003085512202233076, -0.016248445957899094, -0.011103104799985886, -0.018861737102270126, 0.008686148561537266, 0.0005665799253620207, -0.012023849412798882, 0.0028248599264770746, -0.026376642286777496, -0.021502109244465828, 0.004840682726353407, 0.01959291659295559, 0.018103476613759995, -0.01581515371799469, -0.009742297232151031, -0.019213786348700523, -0.001800869358703494, -0.013411737978458405, -0.03837341070175171, -0.0222468301653862, 0.014759005047380924, 0.05838607996702194, 0.026931798085570335, 0.002560822758823633, 0.006864968221634626, 0.018062856048345566, 0.021285463124513626, -0.015760991722345352, -0.0027063817251473665, -0.029274282976984978, -0.012551924213767052, 0.007101924624294043, 0.014136147685348988, 0.008090372197329998, -0.0004967623972333968, -0.002066599205136299, 0.009309004992246628, -0.003919937647879124, 0.021583352237939835, -0.00964074395596981, -0.012998756021261215, -0.033363476395606995, -0.03804844245314598, 0.007690930739045143, 0.03842757269740105, -0.0004028260591439903, 0.00682434719055891, -0.036856889724731445, -0.01073751412332058, 0.0010925387032330036, 0.00938347727060318, 0.02712136320769787, 0.02113652043044567, 0.03983577340841293, 0.0037540679331868887, 0.005720806773751974, 0.009173601865768433, -0.009884471073746681, -0.030195027589797974, -0.015693290159106255, -0.04029614478349686, -0.004976086318492889, 0.0002225698553957045, 0.017263973131775856, 0.016668196767568588, -0.02062198519706726, 0.014366334304213524, 0.016031799837946892, 0.025835027918219566, -0.02220620959997177, -0.018550308421254158, 0.018888818100094795, -0.02951801009476185, -0.009011116810142994, -0.016397390514612198, -0.030167946591973305, -0.009620433673262596, -0.0011560091516003013, -0.0227478239685297, 0.00241695623844862, 0.021596891805529594, -0.02037825807929039, -0.009180371649563313, 0.021041736006736755, 0.008300247602164745, 0.03772347420454025, 0.0131544703617692, 0.018347203731536865, 0.010480247437953949, -0.0015089050866663456, -0.007122235372662544, -0.00870645884424448, 0.014000743627548218, -0.021881239488720894, -0.003787918947637081, 0.035773660987615585, -0.008665837347507477, -0.0034172511659562588, 0.012037389911711216, -0.014799625612795353, 0.011739501729607582, -0.028082730248570442, 0.013411737978458405, -0.0009825231973081827, 0.0012981831096112728, -0.03645068034529686, -0.022436395287513733, -0.021840618923306465, 0.02572670578956604, 0.014230930246412754, 0.0347987525165081, -0.00609993701800704, -0.006184564437717199, 0.006837887689471245, 0.04365415871143341, -0.020987575873732567, 0.018414905294775963, -0.007453974336385727, -0.008625216782093048, -0.003156599123030901, -0.004173819441348314, 0.0027063817251473665, -0.021326085552573204, 0.009281924925744534, 0.015368320979177952, -0.011299439705908298, 0.001001141150481999, 0.0008301940397359431, 0.022314531728625298, -0.016397390514612198, 0.006313198246061802, -0.008273166604340076, 0.027256768196821213, -0.003987639211118221, 0.0004024029185529798, -0.005128415767103434, -0.010080805979669094, 0.018306581303477287, -0.004769595805555582, 0.0015063663013279438, -0.00304996850900352, 0.005409378092736006, 0.016424469649791718, 0.017223352566361427, 0.018875276669859886, -0.0008619292639195919, -0.0015089050866663456, 0.0004760286828968674, -0.0050133224576711655, 0.0002703842765185982, 0.003217530669644475, 0.011827514506876469, -0.02171875536441803, -0.02063552662730217, 0.010913539677858353, -0.0047831363044679165, 0.01719627156853676, -0.0006545922951772809, -0.006533229257911444, -0.0005492313066497445, 0.03571949899196625, -0.016532793641090393, -0.0016502327052876353, 0.015760991722345352, 0.025686083361506462, -0.033363476395606995, 0.012883663177490234, 0.015476644039154053, -0.013601303100585938, 0.026850556954741478, -0.007264409214258194, -0.024833040311932564, -0.021840618923306465, 0.017047327011823654, -0.007433663588017225, 0.020039750263094902, -0.013269564136862755, 0.012342048808932304, 0.00856428500264883, -0.0020056674256920815, 0.01045316644012928, 0.0009385169832967222, -0.0030330431181937456, 0.0027453103102743626, 0.006008539814502001, 0.011746272444725037, -0.019687699154019356, 0.01660049520432949, -0.000930900510866195, 0.03000546246767044, -0.006194720044732094, -0.031224096193909645, -0.02732446976006031, -0.028868071734905243, -0.019376270473003387, 0.013987203128635883, 0.0006266653072088957, 0.011461923830211163, -0.016708817332983017, -0.01087968796491623, 0.00010737091361079365, -0.01218633446842432, -0.004346459172666073, 0.010669812560081482, -0.0225311778485775, 0.005666645243763924, 0.027554655447602272, -0.008929874747991562, -0.050911795347929, -0.011089564301073551, -0.014339253306388855, -0.03669440746307373, 0.0047865211963653564, -0.008097141981124878, 0.044872790575027466, 0.015205836854875088, -0.0208927933126688, -0.026146456599235535, -0.02330297976732254, -0.058061111718416214, -0.022300992161035538, -0.03000546246767044, 0.030736641958355904, 0.03672148659825325, 0.042191796004772186, 0.020500121638178825, 0.017101489007472992, -0.007690930739045143, 0.012287886813282967, -0.03406757488846779, 0.009579813107848167, -0.021596891805529594, -0.03263229504227638, 0.007365962024778128, -0.017060868442058563, -0.040377385914325714, -0.004505558405071497, 0.018577389419078827, -0.022910308092832565, 0.0014598212437704206, 0.006391055416315794, -0.026078755035996437, -0.0015486800111830235, -0.002457577269524336, -0.0011703958734869957, 0.04322086647152901, 0.0051588816568255424, 0.018360743299126625, -0.01768372394144535, 0.018374282866716385, 0.0058426703326404095, -0.00536537216976285, -0.026105836033821106, 0.007562297396361828, 0.02144794724881649, -0.005260434001684189, 0.01848260685801506, 0.012314967811107635, 0.0017450153827667236, 0.0029738040175288916, -0.010676582343876362, 0.006472297478467226, 0.006739719770848751, 0.013621613383293152, 0.025780867785215378, -0.005216428078711033, 0.014826706610620022, -0.023451922461390495, 0.007054533343762159, 0.017033787444233894, 0.0060965521261096, 0.024981984868645668, -0.03293018415570259, -0.012064470909535885, -0.013520061038434505, 0.010974470525979996, 0.016790060326457024, -0.03376968577504158, -0.006760030519217253, 0.002880713902413845, -0.029572170227766037, -0.008496582508087158, 0.014271551743149757, -0.018089935183525085, -0.009430868551135063, -0.013946582563221455, -0.0016764672473073006, -0.007988818921148777, -0.005879906006157398, -0.010155278258025646, -0.005984844174236059, -0.020960494875907898, -0.0072508687153458595, 0.015043352730572224, -0.029599251225590706, -0.0107307443395257, 0.03959204629063606, -0.027568195015192032, 0.013513290323317051, 0.1986643224954605, 0.0019531985744833946, 0.0230998732149601, 0.0283806174993515, 0.03612571209669113, -0.0004313877725508064, 0.013811178505420685, 0.007961737923324108, 0.007054533343762159, 0.010405775159597397, 0.005859595723450184, 0.005473695229738951, -0.037940118461847305, 0.002007360104471445, 0.017900370061397552, -0.034419622272253036, -0.03853589668869972, -0.008103911764919758, -0.012633166275918484, -0.0001623786665732041, 0.00832055788487196, -0.0005179191939532757, -0.022070804610848427, -0.019985588267445564, 0.02760881744325161, 0.023235276341438293, -0.008401799947023392, 0.007474285084754229, 0.02870558761060238, 0.020269935950636864, -0.0046781981363892555, 0.001692546415142715, 0.009864160791039467, -0.01243683136999607, -0.02356024645268917, -0.011671800166368484, -0.007799253799021244, -0.022368693724274635, -0.0017754811560735106, -0.0005644642515107989, 0.004901614505797625, -0.012707638554275036, -0.002831630175933242, -0.03450086712837219, 0.0036457448732107878, -0.012125402688980103, -0.02762235701084137, 0.007866955362260342, 0.0022392389364540577, 0.021068817004561424, -0.011644719168543816, 0.021664593368768692, 0.01432571280747652, 0.009606893174350262, 0.007873726077377796, 0.013635153882205486, -0.011055713519454002, 0.013303414918482304, -0.009721986949443817, -0.015259998850524426, -0.004505558405071497, -0.012003539130091667, 0.0012617933098226786, -0.0045969560742378235, -0.024264344945549965, 0.03452794626355171, -0.0029721115715801716, 0.02012099139392376, -0.0018567234510555863, 0.0038860866334289312, -0.010466706939041615, 0.0031515213195234537, -0.03745266795158386, 0.007000371813774109, -0.014244470745325089, -0.0022713972721248865, 0.015354781411588192, 0.021583352237939835, 0.03837341070175171, -0.0012702561216428876, 0.010480247437953949, -0.0006795573863200843, -0.028759747743606567, -0.0026572977658361197, 0.022625960409641266, 0.002723307115957141, 0.025279873982071877, -0.01555788703262806, 0.020554283633828163, -0.003456179751083255, -0.00966782495379448, 0.012673787772655487, 0.001819487428292632, -0.006248881109058857, 0.00338509283028543, -0.007792483549565077, 0.009613663889467716, 0.01611304096877575, -0.017033787444233894, -0.03775055333971977, -0.017602482810616493, 0.0466330386698246, 0.01193583756685257, 0.02335713990032673, 0.007149315904825926, -0.0005318826879374683, 0.0002488043101038784, 0.005744502414017916, 0.003088897094130516, -0.01328310463577509, -0.010324533097445965, -0.04284173622727394, 0.020703228190541267, -0.007332111243158579, -0.007812794297933578, 0.014596519991755486, 0.027256768196821213, 0.005416148342192173, 0.022937389090657234, -0.006743104662746191, 0.022856146097183228, 0.008225775323808193, 0.0035712728276848793, 0.0049456204287707806, -0.03133241832256317, -0.02683701552450657, -0.011367141269147396, 0.0203240979462862, -0.03999825567007065, -0.021122979000210762, 0.019714780151844025, -0.010094346478581429, 0.01635676808655262, 0.006458756979554892, 0.0006939440499991179, -0.02120422199368477, -0.009254843927919865, -0.0006867506890557706, 0.003139673499390483, 0.0002612868556752801, 0.012761799618601799, 0.004654502496123314, -0.0018245649989694357, 0.0001602629927219823, 0.021326085552573204, 0.017521239817142487, -0.018577389419078827, 0.011062483303248882, -0.024304965510964394, -0.02193540148437023, 0.00938347727060318, -0.001178858568891883, 0.0032716921996325254, -0.007095154374837875, 0.039267078042030334, -0.023776892572641373, -0.05378235504031181, -0.029436767101287842, 0.009031428024172783, 0.029030555859208107, -0.05611129850149155, 0.019647078588604927, 0.03723601996898651, 0.004813602194190025, -0.024792419746518135, 0.0035171115305274725, -0.17158357799053192, 0.009051738306879997, 0.005033633206039667, -0.008821551688015461, -0.011461923830211163, 0.02277490496635437, -0.0012059393338859081, -0.014393414370715618, -0.016546333208680153, 0.0004108656430616975, 0.021867699921131134, -0.02575378678739071, -0.048880741000175476, -0.01419030874967575, 0.007636769209057093, -0.01340496726334095, -0.004336304031312466, 0.024860121309757233, 0.042245958000421524, 0.004542794544249773, 0.009464719332754612, -0.0283806174993515, -0.01500273123383522, -0.001988742034882307, 0.021610433235764503, 0.0023932605981826782, -0.01983664371073246, 0.024602854624390602, 0.002977189142256975, -0.039510805159807205, 0.007061303593218327, -0.007941427640616894, 0.022084346041083336, 0.012761799618601799, -0.018536768853664398, -0.007413353305310011, -0.0003283540136180818, -0.01016881875693798, -0.016207823529839516, 0.020527202636003494, 0.04232719913125038, 0.005764813162386417, 0.00358142820186913, 0.004654502496123314, 0.007907576858997345, 0.0273109283298254, 0.026593288406729698, -0.009464719332754612, 0.019362730905413628, -0.006066086236387491, 0.00977614801377058, -0.012707638554275036, 0.007582607679069042, -0.0019667388405650854, 0.020730309188365936, 0.01765664480626583, 0.011976458132266998, 0.02040533907711506, 0.014379873871803284, -0.016180744394659996, -0.0011500852415338159, -0.0238175131380558, 0.004380309954285622, -0.02140732668340206, -0.018076395615935326, -0.03263229504227638, -0.010527638718485832, 0.018550308421254158, 0.0004882996436208487, 0.02006682939827442, 0.017236892133951187, 0.010067266412079334, 0.005849440582096577, -0.0031295183580368757, 0.022395774722099304, 0.006814192049205303, -0.04162310063838959, 0.009031428024172783, 0.00949180033057928, -0.00899757631123066, 0.01850968785583973, 0.01340496726334095, 0.02357378602027893, -0.015070432797074318, 0.003473105141893029, -0.0029467232525348663, -0.00043413814273662865, -0.011719191446900368, -2.5956785975722596e-05, 0.01003341469913721, 0.02387167513370514, -0.009410558268427849, 0.014109066687524319, 0.0032395338639616966, 0.012707638554275036, -0.0033681674394756556, 0.027392171323299408, 0.006641552317887545, 0.0010874610161408782, -0.005663260351866484, -0.0002585364563856274, 0.021258382126688957, -0.03431130200624466, 0.009958943352103233, 0.037371423095464706, 0.010927079245448112, 0.02380397357046604, -0.007095154374837875, 0.035232044756412506, -0.020540744066238403, -0.0190377626568079, 0.0211771409958601, 0.030384592711925507, 0.0025659003295004368, -0.03856297582387924, 0.03358012065291405, -0.005436459090560675, -0.023032171651721, 0.00977614801377058, -0.030926207080483437, 0.03626111522316933, -0.05223875120282173, -0.008909564465284348, -0.0008141148136928678, -0.0071290056221187115, -0.025889189913868904, -0.09971129149198532, -0.0111234150826931, 0.029599251225590706, 0.018902357667684555, 0.011685340665280819, 0.00871322862803936, 0.00832055788487196, 0.0297346543520689, 0.015111054293811321, 0.021082358434796333, -0.021542729809880257, 0.0019481208873912692, -0.00913975015282631, -0.022138506174087524, 0.0024694253224879503, 0.0005009937449358404, 0.011597327888011932, -0.023370681330561638, -0.010554719716310501, 0.03620695322751999, -0.0015190603444352746, 0.0093767074868083, 0.01876695454120636, 0.0065636951476335526, -0.012633166275918484, -0.008279937319457531, -0.02277490496635437, 0.015449563972651958, 0.018320122733712196, 0.013614843599498272, 0.022598879411816597, -0.008889254182577133, 0.005521086510270834, -0.01408198568969965, 0.002125838305801153, 0.006438446696847677, -0.029653413221240044, -0.022382233291864395, 0.012545154429972172, -0.00207844702526927, 0.00938347727060318, -0.009837079793214798, 0.010669812560081482, -0.03487999737262726, -0.009410558268427849, -0.009065278805792332, -0.02036471851170063, 0.01435279380530119, 0.014149688184261322, -0.01661403477191925, -0.035232044756412506, -0.03561117500066757, -0.04024198278784752, -0.02678285352885723, 0.02656620927155018, 0.028055649250745773, 0.004481862764805555, 0.01502981223165989, 0.0027453103102743626, -0.00662801181897521, 0.012152482755482197, 0.0016290759667754173, 0.004079036880284548, 0.01553080603480339, 0.0027859313413500786, 0.009424098767340183, -0.011082793585956097, -0.008543974719941616, -0.015165215358138084, -0.0001321244053542614, -0.008090372197329998, -0.006164254155009985, -0.014501737430691719, 0.007413353305310011, -0.029626332223415375, 0.0023932605981826782, -0.000262133136857301, -0.0206761471927166, 0.013377887196838856, 0.010324533097445965, -0.003770993323996663, -0.02549651823937893, 0.00744720408692956, -0.04029614478349686, 0.007453974336385727, -0.002027670620009303, 0.0281639713793993, -0.013161241076886654, 0.026214158162474632, -0.028868071734905243, 0.02919303998351097, 0.03154906630516052, 0.010920309461653233, 0.012687328271567822, -0.00041425073868595064, 0.01207801140844822, -0.018712792545557022, -0.02865142561495304, 0.01662757620215416, 0.016668196767568588, -0.0024863507132977247, 0.0018787265289574862, -0.05941515043377876, -0.004234751220792532, 0.015964098274707794, 0.01745353825390339, 0.012660247273743153, -0.0222468301653862, 0.006133788265287876, -0.003029657993465662, 0.007426893804222345, 0.006242111325263977, -0.03301142528653145, 0.0024288040585815907, -0.010040185414254665, 0.011028632521629333, -0.033417634665966034, -0.0012245572870597243, 0.0019531985744833946, 0.008584595285356045, 0.01692546345293522, 0.004471707623451948, -0.003842080244794488, 0.01737229712307453, 0.003207375528290868, 0.021244842559099197, -0.0297346543520689, 0.01689838245511055, -0.021799998357892036, 0.010466706939041615, -0.04159602150321007, -0.02892223373055458, 0.016261985525488853, 0.015083973295986652, -0.020107451826334, 0.011245278641581535, -0.01461006049066782, -0.04473738744854927, 0.007514906115829945, 0.015612048096954823, 0.021867699921131134, 0.018550308421254158, -0.008868942968547344, -0.019917886704206467, 0.019078383222222328, -0.021772917360067368, -0.02091987431049347, -0.005774968303740025, -0.015950556844472885, -0.019944967702031136, 0.01928148791193962, -0.003127825679257512, 0.050776392221450806, 0.002376335207372904, -0.03217192366719246, -0.015612048096954823, 0.0032141455449163914, 0.0042245956137776375, 0.017331674695014954, 0.022693661972880363, 0.025103848427534103, -0.006790496408939362, 0.036856889724731445, 0.0066077010706067085, 0.013628384098410606, 0.004620651714503765, 0.019213786348700523, -0.027717139571905136, -0.05096595734357834, -0.020310556516051292, 0.018306581303477287, -0.022693661972880363, 0.0038827015087008476, -0.026051674038171768, 0.0281639713793993, 0.028516022488474846, 0.006309812888503075, 0.01286335289478302, 0.016221364960074425, -0.022653041407465935, 0.005439843982458115, 0.032605212181806564, 0.008327328599989414, -0.022463476285338402, -0.021867699921131134, 0.015909936279058456, 0.019186705350875854, 0.013662234880030155, -0.01768372394144535, 0.03274061903357506, 0.013107079081237316, 0.0023035556077957153, -0.008801241405308247, 0.008733539842069149, -0.022991551086306572, 0.0018177948659285903, -0.00895695574581623, 0.022300992161035538, -0.01638384908437729, 0.027730681002140045, 0.022314531728625298, 0.0198231041431427, 0.007284719962626696, 0.00764353945851326, 0.01557142660021782, -4.0779788832878694e-05, -0.01743999868631363, 0.006282732356339693, -0.02220620959997177, -0.017561862245202065, 0.017101489007472992, 0.008767390623688698, 0.006614471320062876, -0.0076638502068817616, -0.010920309461653233, 0.004322763532400131, -0.022395774722099304, -0.012497762218117714, -0.00014037557411938906, -0.021583352237939835, -0.03655900061130524, 0.01030422281473875, 0.004576645325869322, 0.02819105237722397, -0.006137173157185316, -0.01745353825390339, 0.017764966934919357, -0.014718383550643921, 0.011211427859961987, -0.01986372470855713, 0.01745353825390339, -0.03371552377939224, -0.00691235950216651, 0.01447465643286705, -0.004908384755253792, -0.011983228847384453, -0.02334360033273697, -0.0038353102281689644, -0.020730309188365936, 0.014799625612795353, 0.004045186098664999, 0.07739676535129547, 0.032794781029224396, -0.006959750782698393, 0.016681738197803497, -0.019173165783286095, -0.003105822717770934, 0.003197220154106617, 0.012937825173139572, -0.005500775761902332, -0.023208197206258774, 0.011062483303248882, -0.024034159258008003, -0.011252048425376415, 0.0007117157801985741, -0.02522571198642254, 0.004434471484273672, -0.01794099248945713, 0.01660049520432949, -0.004668042995035648, 0.025902729481458664, 0.03404049202799797, -0.003391863079741597, 0.015679750591516495, -0.01658695563673973, -0.029951300472021103, -0.018414905294775963, 0.03349887952208519, 0.019985588267445564, -0.009403787553310394, -0.026349563151597977, 0.0072914897464215755, 0.007298259995877743, -0.01688484288752079, -0.022382233291864395, -0.011685340665280819, 0.00041552013135515153, 0.00304996850900352, -0.029978381469845772, 0.011028632521629333, 0.034121736884117126, 0.007880495861172676, 0.011861365288496017, -0.0007070612628012896, -0.019958507269620895, -0.002938260557129979, -0.005446614231914282, -0.003099052468314767, 0.00198197178542614, 0.01137391198426485], "c3314ab4-fc78-4c9f-961f-1144ee720d67": [0.007826867513358593, -0.0013415500288829207, 0.017321983352303505, -0.03105723112821579, 3.106244548689574e-05, 0.019740942865610123, -0.027776341885328293, -0.04265156015753746, -0.011921027675271034, -0.05035330727696419, 0.013109655119478703, 0.02318865805864334, 0.01969923824071884, 0.0020366536919027567, -0.004636341240257025, 0.022646477445960045, 0.02054726332426071, 0.006964938715100288, 0.004340922459959984, -0.011198120191693306, -0.02038043923676014, -0.006186422426253557, -0.02206259034574032, -0.00934219267219305, -0.018336834385991096, -0.006325443275272846, 0.015208867378532887, -0.013985485769808292, -0.039426278322935104, 0.028151698410511017, -0.003777888370677829, -0.0024658802431076765, -0.019796552136540413, -0.005046452395617962, -0.030584560707211494, 0.007072679698467255, -0.0017169059719890356, -0.008292586542665958, 0.019115351140499115, -0.018295127898454666, 0.018170008435845375, 0.008334293030202389, 0.0006955380667932332, -0.008758305571973324, -0.005136815831065178, 0.021548213437199593, -0.007382000796496868, 0.002657033735886216, -0.010016443207859993, 0.0213535837829113, -0.008320390246808529, -0.004042027518153191, -0.018364638090133667, 0.01684931293129921, -0.018239520490169525, -0.01288722176104784, 0.011455307714641094, 0.00574155617505312, 0.010815812274813652, -0.0005009090527892113, -0.01501423865556717, 0.004684998653829098, -0.007819916121661663, -0.011670790612697601, -0.007222126703709364, -0.03344838693737984, -0.014159261249005795, -0.01516716182231903, -0.026872707530856133, -0.02583005093038082, 0.03105723112821579, 0.03247524052858353, 0.0025475549045950174, 0.016237620264291763, -0.014555470086634159, -0.009467311203479767, -0.0009653251618146896, -0.017280276864767075, -0.001836811425164342, -0.009168417192995548, 0.016626879572868347, -0.0178641639649868, -0.02492641657590866, -0.0020071116741746664, 0.031585510820150375, 0.01850365847349167, 0.02122846618294716, -0.0024380760733038187, 0.009196220897138119, -0.002806480973958969, 0.01872609183192253, 0.00836904812604189, 0.033142540603876114, 0.0018750421004369855, 0.003597161266952753, 0.02652515470981598, -0.0016161160310730338, -0.010204121470451355, -0.00790332816541195, -0.026038583368062973, -0.019754845649003983, -0.0027560859452933073, -0.010079002939164639, -0.008841718547046185, -0.026261014863848686, -0.007555776741355658, 0.021770646795630455, -0.002730019623413682, -0.008355146273970604, 0.013770002871751785, -0.028249012306332588, 0.033253759145736694, -0.0014797018375247717, -0.004570306278765202, 0.005818017292767763, -0.016307132318615913, 0.01584836281836033, -0.014513764530420303, -0.014082799665629864, -0.0212840735912323, 0.008598431944847107, -0.01867048442363739, 0.04632170870900154, -0.029972869902849197, 0.020185809582471848, 0.0019914719741791487, 0.01850365847349167, -0.025232262909412384, 0.0065687294118106365, -0.017043940722942352, 0.025468597188591957, -0.0007320310105569661, 0.012491012923419476, 0.01424962468445301, -0.018253421410918236, 0.005133340600878, -0.009529870934784412, 0.002142657060176134, -0.006148191634565592, -0.047600697726011276, 0.022868910804390907, 0.039676517248153687, 0.008716600015759468, -0.028012676164507866, 0.006280261557549238, 0.02306353859603405, -0.006891952827572823, 0.02495422028005123, 0.0052862633019685745, 0.0008445509593002498, 0.01773904450237751, -0.006672995164990425, -0.008654040284454823, 0.006867623887956142, 0.010989588685333729, 0.0011773317819461226, -0.005571255926042795, 0.022493554279208183, -0.02227112092077732, -0.011531769298017025, -0.02056116610765457, -0.013985485769808292, -0.0010869683464989066, 0.00020179727289360017, -0.005446136929094791, 0.04543197527527809, 0.0033747281413525343, -0.0078060138039290905, -0.015153259038925171, -0.007382000796496868, 0.0004618094826582819, 0.011288483627140522, -0.02930556982755661, 0.007382000796496868, 0.015820559114217758, 0.0073750498704612255, 0.025552010163664818, 0.00621770229190588, 0.0013954205205664039, -0.023438895121216774, 0.01760002411901951, -0.006078681442886591, -0.0037083779461681843, 0.0177251435816288, -0.033253759145736694, -0.005345346871763468, 0.033281560987234116, 0.035005420446395874, -0.000638626457657665, -0.020880913361907005, 0.02852705307304859, -0.006933658849447966, -0.006092583294957876, -0.011907125823199749, -0.6259269118309021, 0.007722601294517517, 0.029027529060840607, -0.010586428456008434, 0.007201273925602436, 0.011844566091895103, 0.011239825747907162, -0.0005265410291031003, -0.014034142717719078, 0.044013962149620056, 0.016571270301938057, 0.004754508845508099, -0.011239825747907162, 0.001260744291357696, 0.003227018751204014, -0.02741488814353943, -0.0032687250059098005, -0.02841583639383316, 0.020769696682691574, 0.012206019833683968, -0.026942217722535133, 0.02658076398074627, 0.02489861287176609, 0.0032026900444179773, 0.008751355111598969, -0.013394647277891636, 0.030806994065642357, -0.02665027417242527, 0.003718804568052292, 0.02577444352209568, -0.028096089139580727, 0.011615182273089886, 0.006930183153599501, 0.02044994942843914, 0.049324553459882736, -0.011684692464768887, -0.00977315753698349, 0.00013728297199122608, 0.019309978932142258, 0.03561710938811302, -0.026427840813994408, -0.018183911219239235, 0.02051945962011814, 0.004897005390375853, -0.004462565295398235, -0.0017933674389496446, 0.007597482763230801, 0.00011968815670115873, -0.019879965111613274, -0.018253421410918236, 0.009196220897138119, -0.014972532168030739, 0.006808540318161249, -0.0024450269993394613, -0.0008623629692010581, 0.007673944346606731, 0.014777903445065022, -0.0186148751527071, 0.013596227392554283, -0.002783890115097165, 0.011990537866950035, 0.0158761665225029, -0.022590868175029755, -0.036729276180267334, -0.054440516978502274, 0.021854057908058167, -0.011184217408299446, -0.015695439651608467, 0.0016239358810707927, 0.004636341240257025, 0.02405058592557907, -0.003433811943978071, -0.008216124959290028, -0.013735247775912285, -0.007993691600859165, 0.036729276180267334, 0.02762341871857643, -0.01684931293129921, -0.02398107573390007, 0.007646140176802874, -0.015751048922538757, 0.005804115440696478, -0.029806043952703476, -7.950248254928738e-05, 0.02742878906428814, 0.008737453259527683, -0.019087545573711395, -0.01611250266432762, 0.0025753590743988752, 0.002695264294743538, 0.0061342897824943066, 0.025315674021840096, -0.00836209673434496, -0.028805095702409744, -0.002113115042448044, 0.0318913571536541, 0.017127353698015213, -0.0017881541280075908, 0.007569678593426943, -0.018003184348344803, -0.02214600145816803, -0.028999723494052887, 0.02220161072909832, 0.0032374451402574778, 0.027915362268686295, 0.0137561010196805, -0.0022764643654227257, -0.00790332816541195, 0.01677980273962021, -0.015737146139144897, -0.013617080636322498, 0.002071408787742257, -0.0150559451431036, -0.01862877793610096, 0.0039586154744029045, -0.025524206459522247, 0.0018889441853389144, 0.0023042685352265835, 0.00621770229190588, -0.014499861747026443, 0.006679946091026068, -0.012824662029743195, -0.009369997307658195, -0.004949138034135103, 0.015778852626681328, 0.002590998774394393, 0.005717227701097727, 0.00937694776803255, 0.013853415846824646, -0.008070153184235096, -0.010760204866528511, -0.024662276729941368, 0.009613282978534698, -0.0015248836716637015, 0.02035263553261757, -0.005081207491457462, 0.03550589457154274, -0.010127659887075424, -0.006540925242006779, -0.05057574063539505, 0.0024763066321611404, -0.002761299256235361, 0.0061551425606012344, -0.028971919789910316, 0.01682150736451149, -0.03308693319559097, -0.020602872595191002, 0.01194188091903925, 0.006082157138735056, -0.007660042028874159, -0.005609486252069473, -0.003110588761046529, -0.02033873274922371, 0.01873999461531639, -0.019143154844641685, -0.003091473365202546, 0.0072846864350140095, -0.042095478624105453, -0.001212086994200945, -0.015709342435002327, -0.009105857461690903, 0.007368098478764296, -0.02222941443324089, -0.0028082188218832016, -0.009627185761928558, -0.0034581406507641077, 0.006999693810939789, 0.019157055765390396, -0.030834797769784927, -0.03622880205512047, 0.016321033239364624, -0.00969669595360756, -0.0011903649428859353, 0.040427226573228836, -0.005522598512470722, 0.029917260631918907, -0.024259116500616074, -0.003042816184461117, 0.005866674706339836, 0.0004066356341354549, 0.0009401277056895196, 0.00665214192122221, -0.0033069555647671223, 0.014819609932601452, 0.02562152035534382, 0.014089751057326794, 0.025955170392990112, 0.0213535837829113, -0.022882811725139618, -0.0015526877250522375, 0.033309366554021835, -0.005633815191686153, -0.004914382938295603, 0.009543772786855698, -0.016251523047685623, 0.00017931501497514546, -0.03275328502058983, 0.0034094834700226784, -0.0001660646084928885, 0.017975380644202232, 0.01957411877810955, 0.0102319261059165, -0.013964632526040077, -0.005751982796937227, 0.005202850792557001, -0.0150559451431036, 0.0050082216039299965, -0.01946290209889412, 0.016557369381189346, 0.011948831379413605, -0.013582325540482998, -0.0071456655859947205, -0.009418654255568981, -0.005449612624943256, 0.00970364734530449, 0.03022310696542263, 0.003534602001309395, 0.01060033030807972, 0.01155957393348217, 0.006280261557549238, 0.017975380644202232, -8.63449095049873e-05, 0.04062185809016228, 0.004427810199558735, -0.013109655119478703, 0.028999723494052887, -0.001056557521224022, 0.01413840800523758, 0.014305233024060726, -0.02391156554222107, -0.004803166259080172, 0.021965274587273598, 0.014833511784672737, 0.009397801011800766, 0.04237351939082146, 0.035227853804826736, 0.04509832337498665, -0.011038245633244514, 0.027998775243759155, -0.007958936505019665, -0.002378992270678282, 0.011622132733464241, 0.01696052961051464, -0.0185453649610281, 0.044820282608270645, 0.010927028954029083, 0.02648344822227955, 0.00310885114595294, -0.015570322051644325, 0.03931506350636482, 0.019365588203072548, 0.008146614767611027, -0.028638269752264023, -0.007249930873513222, 0.02482910268008709, -0.01950460858643055, 0.030417734757065773, 0.007597482763230801, 0.0014406023547053337, 0.009008543565869331, 0.016140306368470192, -0.022729888558387756, -0.0012746462598443031, 0.004504271782934666, 0.02303573489189148, -0.011364944279193878, -0.00735419662669301, -0.01962972618639469, -0.01148311235010624, -0.0025127995759248734, 0.003809168003499508, -0.01950460858643055, 0.01589006930589676, 0.01790587045252323, 0.0035311265382915735, 0.0018750421004369855, -0.004052454140037298, 5.7020220992853865e-05, -0.004132390953600407, 0.011184217408299446, -0.03033432364463806, -0.013116605579853058, 0.021965274587273598, 0.02309134230017662, -0.004163670819252729, -0.018892917782068253, -0.00512638920918107, -0.028832899406552315, 0.022521357983350754, -0.0078060138039290905, -6.728385778842494e-05, 0.002396369818598032, 0.020158005878329277, -0.007256882265210152, -0.014722295105457306, 0.0035241753794252872, 0.03909263014793396, -0.02671978436410427, -0.00423318101093173, 0.017308080568909645, 0.003614539047703147, 0.015431300736963749, -0.016307132318615913, -0.028582662343978882, 0.024495452642440796, -0.012970633804798126, -0.024398138746619225, -0.018003184348344803, 0.009682794101536274, -0.015347888693213463, -0.005835395306348801, 0.001398896099999547, -0.006971889641135931, -0.013902072794735432, -0.023577915504574776, 0.01964362896978855, -0.006189898122102022, 0.002825596369802952, 0.013603178784251213, 0.011281532235443592, 0.013575374148786068, -0.0321693979203701, 0.01684931293129921, 0.030445540323853493, 0.07318051159381866, 0.011295434087514877, 0.00598484231159091, 0.015431300736963749, -0.0027717258781194687, -0.019115351140499115, -0.02673368714749813, -0.011872370727360249, 0.027442691847682, -0.0016500023193657398, -0.02313304878771305, 0.008097957819700241, 0.007548825815320015, 0.004368726629763842, 0.015570322051644325, -0.016446152701973915, -0.013582325540482998, -0.00972449965775013, -0.013081850484013557, 0.00976620614528656, 0.0185453649610281, 0.009460360743105412, 0.026094190776348114, 0.03214159235358238, 0.020102396607398987, 0.009710597805678844, 0.03820289671421051, 0.01501423865556717, 0.00343033648096025, -0.024634473025798798, -0.01949070580303669, 0.011740300804376602, 0.007972839288413525, 0.025134947150945663, -0.015222770161926746, 0.01675199717283249, 0.003275675931945443, -0.014277429319918156, -0.02043604664504528, 0.0033764659892767668, -0.005338395945727825, 0.026233211159706116, 0.007493217475712299, -0.0072846864350140095, 0.00795198604464531, -0.024551060050725937, 0.004997795447707176, 0.016557369381189346, -0.013005388900637627, 0.000907110283151269, 0.021520409733057022, 0.013401598669588566, -0.008042349480092525, 0.010628134943544865, 0.0014527665916830301, -0.026858804747462273, -0.003546766471117735, -0.007972839288413525, -0.06066864728927612, -0.03372642770409584, -0.01957411877810955, -0.023355482146143913, -0.0029368128161877394, -0.015695439651608467, -0.01785026118159294, -0.02405058592557907, 0.007083106320351362, -0.006600009277462959, -0.012449306435883045, -0.0023859431967139244, 0.01281771156936884, -0.04026040434837341, -0.01869828812777996, -0.004764935467392206, 0.022938420996069908, 0.014444253407418728, -0.002405058592557907, 0.012150411494076252, 0.0006620862404815853, 0.008667942136526108, -0.0016265425365418196, -0.028137795627117157, -0.00022351926600094885, -0.01864268071949482, 0.0021374437492340803, -0.013019291684031487, -0.024328628554940224, -0.005373151041567326, -0.00465719448402524, 0.00555040268227458, 0.0016917084576562047, -0.013213920406997204, -0.00804929994046688, 0.007799062877893448, 0.012963683344423771, 0.027303671464323997, 0.018100498244166374, 0.004264460876584053, 0.02762341871857643, -0.03300352022051811, -0.0028099564369767904, 0.0038752027321606874, -0.001735152443870902, -0.02039434015750885, 0.004410432651638985, 0.0011095592053607106, -0.0077643077820539474, 0.0018854686059057713, -0.004629390314221382, -0.013151360675692558, 0.006440135184675455, 0.004855298902839422, -0.012338089756667614, -0.001398896099999547, -0.0026153274811804295, -0.034171294420957565, 0.00668689701706171, 0.017057843506336212, 0.023675229400396347, -0.014096701517701149, -0.007993691600859165, -0.017155157402157784, 0.035116635262966156, 0.01246320828795433, -0.0012894172687083483, 0.01148311235010624, 0.0186843853443861, -0.022493554279208183, -0.01857316866517067, 0.008118810132145882, -0.02840193547308445, 0.00484834797680378, -0.03364301472902298, -0.0178641639649868, -0.00709353294223547, 0.0017568744951859117, -0.005432235077023506, -0.000387085834518075, -0.01964362896978855, -0.016585173085331917, -0.024245215579867363, -0.011740300804376602, 0.011997489258646965, -0.007229078095406294, 0.012254677712917328, -0.026330526918172836, -0.024551060050725937, 0.013804757967591286, 0.00972449965775013, 0.021047739312052727, -0.024425942450761795, -0.014110604301095009, -0.021131150424480438, -0.018253421410918236, -0.012734298594295979, -0.020741892978549004, -0.007812964729964733, 0.025176653638482094, 0.053578589111566544, 0.02054726332426071, 0.01063508540391922, -0.0037535596638917923, 0.02028312347829342, 0.014916923828423023, -0.003421647707000375, 0.002518012886866927, -0.02321646176278591, -0.014291331171989441, 0.0059500872157514095, 0.008605383336544037, 0.004320069216191769, -0.00598484231159091, -0.01462498027831316, -0.0018698287894949317, 0.004698900505900383, 0.009098907001316547, -0.0051958998665213585, -0.00301327439956367, -0.0336708202958107, -0.036868296563625336, 0.003777888370677829, 0.0357283279299736, -0.0035589307080954313, 0.009981688112020493, -0.03125185891985893, 0.0011347567196935415, 0.01857316866517067, 0.004174097441136837, 0.04089989885687828, 0.016348836943507195, 0.03670147433876991, 0.0058145420625805855, -0.01291502546519041, 0.01602908968925476, -0.0024884711019694805, -0.02481519989669323, -0.004514698404818773, -0.038703370839357376, -0.01697443053126335, -0.012706494890153408, 0.01288027036935091, 0.005877101328223944, -0.022326728329062462, 0.006196849048137665, 0.0158066563308239, 0.030667973682284355, -0.026344427838921547, -0.02560761757194996, 0.002731757238507271, -0.027345377951860428, -0.017210766673088074, -0.019184861332178116, -0.02763732150197029, 0.0054252841509878635, -0.005352298263460398, -0.01608469896018505, 0.014972532168030739, 0.020727990195155144, -0.026274917647242546, -0.015667635947465897, 0.01194188091903925, 0.012942830100655556, 0.033392779529094696, 0.007611385080963373, 0.0177251435816288, 0.007910279557108879, 0.005036025773733854, -0.012935878708958626, -0.011337140575051308, 0.010927028954029083, -0.018448051065206528, 0.007618336006999016, 0.04059405252337456, -0.015278378501534462, -0.011684692464768887, 0.014930826611816883, -0.01158737763762474, -0.0020731466356664896, -0.04334666207432747, 0.01117031555622816, 0.004778837785124779, -0.0038786784280091524, -0.03542248159646988, -0.02833242528140545, -0.027915362268686295, 0.01589006930589676, 0.009752304293215275, 0.026817098259925842, -0.0010052936850115657, -0.0015857052057981491, 0.009474262595176697, 0.04812897741794586, -0.0213535837829113, 0.026469547301530838, -0.003425123170018196, -7.336601993301883e-05, -0.023383285850286484, -0.0022538735065609217, -0.0039134337566792965, -0.0017255947459489107, 0.016293229535222054, 0.025565912947058678, -0.007896377705037594, -0.008209174498915672, 0.015250573866069317, 0.013658786192536354, -0.004987368825823069, -0.003565881634131074, -0.005407906137406826, 0.033225953578948975, -0.007347245700657368, -0.0019323881715536118, -0.013992436230182648, -0.019087545573711395, 0.0123519916087389, -0.001119116903282702, -0.01071154698729515, 0.0038613006472587585, -0.0012216446921229362, 0.012122607789933681, 0.017377590760588646, 0.008250880055129528, -0.004361775238066912, -0.010829715058207512, -0.0059083811938762665, -0.012553571723401546, 0.007361147552728653, 0.008104908280074596, 0.0176556333899498, -0.033142540603876114, -0.0240922924131155, 0.013081850484013557, -0.012970633804798126, 0.01867048442363739, -0.005404430907219648, -0.0037605108227580786, -0.003795265918597579, 0.03183574602007866, -0.022688183933496475, 0.003673622850328684, 0.015778852626681328, 0.006745981052517891, -0.030528951436281204, 0.012873319908976555, 0.006123863160610199, -0.002630967414006591, 0.02224331721663475, -0.02314695157110691, -0.01691882312297821, -0.025232262909412384, -0.0005686816875822842, -0.003041078569367528, 0.017947576940059662, -0.008111859671771526, 0.0022451847326010466, 0.006579156033694744, 0.0017629566136747599, 0.004017699044197798, -0.013561472296714783, 0.0029455015901476145, 0.0025110619608312845, 0.02214600145816803, 0.009057200513780117, -0.022938420996069908, 0.017391493543982506, -0.01858707144856453, 0.029500199481844902, -0.01337379403412342, -0.037591204047203064, -0.023703034967184067, -0.03809167817234993, -0.011851517483592033, -0.0013267791364341974, -0.0002526267198845744, -0.005171570926904678, -0.012365893460810184, -0.01383256260305643, 0.016195915639400482, -0.01672419346868992, 0.0013823873596265912, 0.018086597323417664, -0.016529563814401627, -0.0054704658687114716, 0.012122607789933681, -0.017043940722942352, -0.04632170870900154, -0.016571270301938057, -0.01594567857682705, -0.024495452642440796, 0.0059049054980278015, -0.0136865908280015, 0.05246642231941223, 0.0021461325231939554, -0.02752610482275486, -0.03208598494529724, -0.025315674021840096, -0.04457004740834236, -0.013867317698895931, -0.028888506814837456, 0.03439372777938843, 0.02745659463107586, 0.028249012306332588, 0.013964632526040077, 0.034032274037599564, -0.010815812274813652, 0.0012451043585315347, -0.03453274816274643, -0.012894172221422195, -0.011441405862569809, -0.020213613286614418, 0.0007129156729206443, -0.013547570444643497, -0.04526514932513237, -0.0013154837070032954, 0.005790213588625193, -0.022410141304135323, 0.020978227257728577, 0.015250573866069317, -0.003505060216411948, 0.005366200115531683, -0.01969923824071884, -0.0036979513242840767, 0.028805095702409744, 0.020936522632837296, 0.006165569182485342, -0.016182012856006622, 0.015834461897611618, 0.008674893528223038, -0.003058456117287278, -0.027957068756222725, 0.028207305818796158, 0.02849924936890602, -0.019754845649003983, 0.008716600015759468, 0.02047775313258171, -0.010850568301975727, -0.0008319522021338344, -0.014200967736542225, 0.012518816627562046, 0.013721345923841, 0.013179165311157703, 0.028137795627117157, -0.017502710223197937, 0.005404430907219648, -0.008084055036306381, -0.00018941574671771377, 0.013109655119478703, 0.008216124959290028, 0.020755795761942863, -0.031502097845077515, -0.008459411561489105, -0.01775294728577137, 0.016529563814401627, 0.02143699675798416, -0.00617599580436945, -0.009369997307658195, -0.003951664082705975, -0.03125185891985893, -0.012720396742224693, 0.017516611143946648, -0.00839685183018446, -0.007340294308960438, -0.0010000803740695119, 0.0012981060426682234, 0.0026014253962785006, -0.013241724111139774, -0.01463888306170702, -0.020797500386834145, -0.004987368825823069, -0.014764001592993736, 0.002314695157110691, -0.03786924481391907, 0.008716600015759468, 0.019796552136540413, -0.019059741869568825, 0.0036979513242840767, 0.19829916954040527, -0.0045320759527385235, 0.029889456927776337, 0.02583005093038082, 0.025565912947058678, -0.016654683277010918, 0.006123863160610199, 0.011191168799996376, -0.0061342897824943066, 0.0045772576704621315, 0.012226873077452183, 0.002297317609190941, -0.035116635262966156, -0.0042053768411278725, 0.01851756125688553, -0.015403497032821178, -0.04148378595709801, -0.014750099740922451, -0.010551673360168934, 0.0071456655859947205, 0.009057200513780117, 0.009557675570249557, -0.018197814002633095, -0.011052148416638374, 0.026302721351385117, 0.010238876566290855, -0.0025527682155370712, 0.012553571723401546, 0.018114401027560234, 0.011907125823199749, -0.00980096124112606, -0.0012937616556882858, 0.02211819775402546, -0.00731944153085351, -0.02133968286216259, 0.013005388900637627, 0.0044660409912467, -0.009488164447247982, -0.01337379403412342, 0.019921669736504555, 0.0025927366223186255, -0.02919435314834118, -0.0073263924568891525, -0.03817509114742279, 0.013561472296714783, -0.0176556333899498, -0.01593177579343319, 0.002410271903499961, -0.001232071197591722, 0.013193067163228989, -0.013290381990373135, -0.0004055495373904705, 0.014791805297136307, 0.00011708152305800468, -0.0001661732094362378, 0.022451847791671753, -0.012796858325600624, 0.0038369721733033657, -0.015222770161926746, -0.006676470395177603, -0.007486266084015369, -0.0064331842586398125, 4.882016946794465e-05, 0.007618336006999016, -0.03022310696542263, 0.036006368696689606, 0.0017533989157527685, 0.0247734934091568, 0.005460039246827364, -0.0005439185770228505, 2.3025308109936304e-05, 0.01292197685688734, -0.032364025712013245, -0.00322180544026196, -0.023744741454720497, -0.005004746373742819, 0.01789196766912937, 0.029110940173268318, 0.04240132123231888, 0.003167934948578477, 0.0045772576704621315, -0.005599060095846653, -0.015764949843287468, -0.013234773650765419, 0.011629084125161171, -0.0038786784280091524, 0.02919435314834118, -0.026052484288811684, 0.01589006930589676, -0.02132578007876873, -0.006113436538726091, 0.026038583368062973, -0.006273310631513596, -0.004288789350539446, 0.006266359239816666, 0.003339973045513034, 0.017308080568909645, 0.00804929994046688, -0.02291061542928219, -0.024995926767587662, -0.02033873274922371, 0.02936117723584175, 0.013359892182052135, 0.029972869902849197, -0.00709353294223547, 0.012984535656869411, -0.0025562436785548925, 0.006169044878333807, 0.008209174498915672, -0.013888170942664146, -0.0013980271760374308, -0.03628440946340561, 0.028096089139580727, -0.006624337751418352, -0.0007024891092441976, 0.02745659463107586, 0.021840156987309456, 0.00923097599297762, 0.022410141304135323, 0.00027630370459519327, 0.015250573866069317, -0.0034268610179424286, 0.01691882312297821, 0.002590998774394393, -0.01947680488228798, -0.028666073456406593, -0.008966837078332901, 0.001822909340262413, -0.03089040517807007, -0.028971919789910316, 0.01235894300043583, -0.014930826611816883, 0.026066387072205544, 0.0021270171273499727, -0.006457512732595205, -0.0186148751527071, -0.0058562480844557285, -0.009022445417940617, 0.000921012309845537, -0.002226069336757064, 0.016321033239364624, -0.008549774996936321, -0.007305539213120937, 0.002924648579210043, 0.013658786192536354, 0.012060048058629036, -0.028832899406552315, 0.020839206874370575, -0.02231282740831375, -0.014346939511597157, 0.009036347270011902, 0.0018246470717713237, -0.00980096124112606, -0.010315338149666786, 0.03219719976186752, -0.03717414289712906, -0.056303396821022034, -0.02760951593518257, 0.02311914786696434, 0.022813301533460617, -0.04779532551765442, 0.01937948912382126, 0.039593104273080826, 0.004935235716402531, -0.025037633255124092, -0.010878372006118298, -0.17783531546592712, 0.006996218115091324, 0.015556419268250465, -0.010530820116400719, -0.002856876002624631, 0.03119625151157379, 0.005713752005249262, -0.0008510675397701561, -0.0088278166949749, 0.008501118049025536, 0.01418011449277401, -0.02311914786696434, -0.02941678650677204, -0.030445540323853493, -0.0008402065141126513, -0.02213210053741932, 0.002128754975274205, 0.012831613421440125, 0.05249422788619995, 0.0019341259030625224, 0.01969923824071884, -0.026205407455563545, -0.010106806643307209, -0.005574731156229973, 0.013561472296714783, 0.010836665518581867, -0.0011590853100642562, 0.02143699675798416, -0.006996218115091324, -0.03483859449625015, 0.01243540458381176, -0.0009010281064547598, 0.008674893528223038, 0.007597482763230801, -0.00711091049015522, -0.0061551425606012344, 0.008758305571973324, -0.015598125755786896, -0.014034142717719078, 0.019170958548784256, 0.03711853548884392, 0.015486909076571465, 0.025134947150945663, 0.008230026811361313, 0.014305233024060726, 0.01608469896018505, 0.02740098536014557, -0.018976328894495964, 0.03305912762880325, -0.006645190995186567, 0.018336834385991096, -0.01326257735490799, -0.005022123921662569, -0.0021913142409175634, 0.021450897678732872, 0.02581615000963211, 0.009432556107640266, 0.021867960691452026, 0.00851501990109682, -0.006905854679644108, 0.009091955609619617, -0.01285246666520834, -0.0017082171980291605, -0.02567712962627411, -0.018211714923381805, -0.030473344027996063, -0.012970633804798126, 0.01371439453214407, -0.001557032112032175, 0.012150411494076252, 0.0006082156905904412, -0.001446684473194182, 0.014569372870028019, 0.0075627276673913, 0.03622880205512047, 0.014819609932601452, -0.03912043198943138, -0.008035398088395596, 0.01782245747745037, -0.0024571914691478014, 0.009919129312038422, 0.01680760644376278, 0.018225617706775665, 0.003470304887741804, -0.011351042427122593, -0.004584208596497774, 0.00344771402888, -0.007409804966300726, -0.0011477898806333542, 0.013957681134343147, 0.027178552001714706, -0.0027508726343512535, 0.01768343709409237, 0.002144394675269723, 0.024523256346583366, -0.0005100322887301445, 0.026970021426677704, -0.0005443530390039086, -0.004055929835885763, -0.010899225249886513, -0.0005174177931621671, 0.015486909076571465, -0.035839542746543884, 0.0266224704682827, 0.03097381815314293, 0.013915974646806717, 0.027859754860401154, -0.003941237460821867, 0.02837413176894188, -0.026844901964068413, -0.027776341885328293, 0.0018941573798656464, 0.019949475303292274, 0.007402854040265083, -0.03964871168136597, 0.03717414289712906, -0.013999387621879578, -0.02132578007876873, 0.01687711663544178, -0.03255865350365639, 0.027651222422719002, -0.04440322145819664, -0.018170008435845375, 0.00027369704912416637, -0.0032200675923377275, -0.0026188029441982508, -0.11344091594219208, -0.013047095388174057, 0.030640168115496635, 0.015236672013998032, -0.004365250933915377, 0.01192797813564539, 0.014611078426241875, 0.035061027854681015, 0.008939032442867756, 0.01954631507396698, -0.013040143996477127, 0.010496065020561218, 0.005067305639386177, -0.004128915723413229, 0.004716278053820133, 0.0008801749791018665, 0.0009462098241783679, -0.02125626988708973, -0.02040824294090271, 0.036117587238550186, -0.0028273339848965406, 0.007778209634125233, 0.019810453057289124, 0.000649921887088567, -0.01246320828795433, -0.015751048922538757, -0.020769696682691574, 0.025482499971985817, 0.02039434015750885, -0.0001705176109680906, 0.015431300736963749, -0.017057843506336212, 0.00037796259857714176, -0.028179502114653587, -0.009147563949227333, 0.002260824665427208, -0.039481885731220245, -0.012442355044186115, 0.012101754546165466, -0.011948831379413605, 0.01329733245074749, -0.013012340292334557, 0.0019827832002192736, -0.02666417509317398, -0.005873625632375479, 3.060085145989433e-05, -0.030751384794712067, 0.03180794417858124, 0.006871099583804607, -0.003244396299123764, -0.027762439101934433, -0.02748439833521843, -0.040316011756658554, -0.01942119561135769, 0.025468597188591957, 0.0316133126616478, 0.021464800462126732, 0.011663839221000671, -0.02049165591597557, 0.009905226528644562, 0.006269834935665131, -0.003496371442452073, -0.010565575212240219, 0.006891952827572823, 0.0016187225701287389, 0.024133998900651932, 0.0011886272113770247, -0.001042655436322093, -0.02298012748360634, 0.005564304534345865, -0.01462498027831316, 0.00320442789234221, -0.02218770794570446, 0.023536209017038345, -0.02117285691201687, -0.003777888370677829, 0.006245506461709738, -0.02314695157110691, 0.01853146404027939, 0.013505863957107067, -0.004799690563231707, -0.02234063111245632, 0.0002949846093542874, -0.028693879023194313, 0.009502067230641842, 0.015028140507638454, 0.022382337599992752, -0.006179471500217915, 0.021520409733057022, -0.04103891924023628, 0.011858467943966389, 0.038731176406145096, -0.0001077410634025, 0.013547570444643497, 0.0022590868175029755, 0.0006681683589704335, -0.018281225115060806, -0.033364973962306976, 0.01694662682712078, 0.01607079617679119, 0.0022191184107214212, 0.003506797831505537, -0.04523734375834465, 0.0017064794665202498, 0.02043604664504528, 0.004983893129974604, 0.009133662097156048, -0.014263526536524296, 0.002307743998244405, 0.006245506461709738, 0.000370142690371722, -0.003518962301313877, -0.02829071879386902, 0.012748200446367264, -0.010412652976810932, -0.00440695695579052, -0.030306518077850342, -0.017433200031518936, 0.006255932617932558, 0.012282481417059898, 0.00980096124112606, 0.02234063111245632, -0.0037327066529542208, 0.0032617738470435143, 0.004076783079653978, 0.035227853804826736, -0.02131187729537487, 0.008077104575932026, -0.030612364411354065, 0.008306488394737244, -0.02653905749320984, -0.02221551164984703, 0.013144410215318203, 0.007993691600859165, -0.022729888558387756, 0.005421808455139399, 0.0019619299564510584, -0.041261352598667145, 0.005887527950108051, 0.008563676849007607, 0.02140919305384159, 0.019170958548784256, -0.014930826611816883, -0.03550589457154274, 0.015153259038925171, -0.011198120191693306, -0.0266224704682827, -0.003729230957105756, -0.027317572385072708, -0.016640780493617058, 0.010377897880971432, 0.005633815191686153, 0.05388443544507027, 0.008535873144865036, -0.021520409733057022, -0.022827204316854477, -0.0033556127455085516, -0.002139181364327669, 0.00937694776803255, 0.029945064336061478, 0.0066625685431063175, -0.004542502108961344, 0.041066724807024, -0.004459090065211058, 0.01860097423195839, -0.006606960203498602, 0.022521357983350754, -0.03136307746171951, -0.05849992111325264, -0.01696052961051464, 0.020032886415719986, -0.04254034161567688, 0.008966837078332901, -0.022688183933496475, 0.03208598494529724, 0.031390879303216934, -0.0028221209067851305, 0.006012646481394768, -0.0029733057599514723, -0.021895764395594597, -0.0002967223699670285, 0.027998775243759155, 0.009946933016180992, -0.012713445350527763, -0.018336834385991096, 0.011663839221000671, 0.016682486981153488, 0.013985485769808292, -0.0077643077820539474, 0.026789294555783272, 0.016515662893652916, -0.004636341240257025, -0.004810117185115814, 0.0020957374945282936, -0.024314725771546364, -0.001011375803500414, 0.0006838082335889339, 0.006773785222321749, -0.01851756125688553, 0.021464800462126732, 0.01240064948797226, 0.0186843853443861, -0.004055929835885763, 0.025941267609596252, 0.004806641489267349, -0.0036353920586407185, -0.01703003980219364, 0.009098907001316547, -0.034894201904535294, -0.016154209151864052, 0.02745659463107586, 0.011455307714641094, -0.0044312858954072, -0.02309134230017662, -0.004605061840265989, 0.007024022284895182, -0.021826254203915596, -0.013491962105035782, -0.005915332119911909, -0.022493554279208183, -0.027150748297572136, 0.008209174498915672, 0.005432235077023506, 0.022938420996069908, 0.015709342435002327, -0.01686321385204792, 0.017363689839839935, -0.018976328894495964, 0.013943779282271862, -0.01693272404372692, 0.022535260766744614, -0.03553370013833046, -0.021645527333021164, -0.0021496079862117767, 0.005439186003059149, -0.013929877430200577, -0.011003490537405014, -0.0019028462702408433, -0.011267630383372307, 0.0027630371041595936, -0.001342418952845037, 0.08374609053134918, 0.030806994065642357, -0.012379796244204044, 0.010690693743526936, -0.030501147732138634, 0.002184363314881921, 0.0077643077820539474, 0.00795198604464531, -0.01420791819691658, -0.012539669871330261, 0.01771124079823494, -0.012734298594295979, -0.007812964729964733, -0.00617599580436945, -0.026900511234998703, -0.005366200115531683, -0.00798674114048481, 0.012643935158848763, -0.0025788345374166965, 0.022882811725139618, 0.029555806890130043, -0.0025614569894969463, 0.020227516070008278, -0.02496812306344509, -0.031557705253362656, -0.021464800462126732, 0.02938898280262947, 0.018795602023601532, 0.0013432877603918314, -0.01864268071949482, 0.013276479206979275, 0.007298588287085295, -0.019893866032361984, -0.01780855469405651, -0.017016137018799782, 0.019754845649003983, -0.01331123523414135, -0.02206259034574032, 0.01773904450237751, 0.013825611211359501, 0.0185453649610281, 0.025037633255124092, -0.009933031164109707, -0.02218770794570446, -0.00972449965775013, 0.0019080594647675753, -0.01060033030807972, -0.0026518204249441624, 0.00836904812604189], "d54cbfeb-69b0-4286-9415-5d9ded2ab720": [0.0054515027441084385, -0.00838040467351675, 0.013743581250309944, -0.03278674557805061, -0.011588417924940586, 0.027557823807001114, -0.010994864627718925, -0.031797487288713455, -0.013736515305936337, -0.03555665910243988, 0.01308643352240324, 0.028165509924292564, 0.004243198316544294, -0.01708585023880005, -0.010811146348714828, 0.017001057043671608, 0.026794683188199997, -0.008599454537034035, 0.01168027799576521, -0.0033705339301377535, -0.015064943581819534, -0.007327554747462273, -0.02047758363187313, 0.006861191708594561, -0.009857221506536007, 0.003925223369151354, 0.00857118982821703, -0.010090403258800507, -0.010648625902831554, 0.024618322029709816, 0.013489201664924622, 0.0018283555982634425, -0.022936588153243065, 0.00034093973226845264, -0.029508069157600403, 0.0016605355776846409, 0.0021745949052274227, -0.018315354362130165, 0.01129870768636465, -0.01838601380586624, 0.03041253238916397, 0.021396176889538765, 0.0005242169136181474, -0.018569733947515488, -0.01015399768948555, 0.03024294413626194, -0.009694701060652733, -0.004875614773482084, -0.01635097526013851, 0.004469313658773899, -0.00842280127108097, -0.007624331396073103, -0.019276345148682594, 0.01598353683948517, 0.0008912129560485482, -0.014252341352403164, 0.015856347978115082, -0.0073628854006528854, 0.009949080646038055, -0.009009288623929024, 0.006045056041330099, 0.0005432071047835052, -0.0023035514168441296, -0.0015889911446720362, -0.01940353401005268, -0.017523949965834618, -0.008493462577462196, -0.012485814280807972, -0.02765674889087677, -0.021085267886519432, 0.03414343670010567, 0.03128872811794281, 0.00266922265291214, 0.011955855414271355, -0.008246148936450481, -0.012408087030053139, -0.020929813385009766, -0.01440779585391283, -0.005794208962470293, -0.004292660858482122, 0.023897578939795494, -0.030893027782440186, -0.029988564550876617, 0.0028882718179374933, 0.029847243800759315, 0.0341717004776001, 0.027034930884838104, -0.010570898652076721, -0.01656295917928219, 0.003819231642410159, 0.020661301910877228, -0.004582371562719345, 0.0241378266364336, 0.012415152974426746, -0.0011296941665932536, 0.012358623556792736, 0.019092625007033348, 0.010330650955438614, -0.00782924797385931, -0.009256602264940739, -0.005656419787555933, -0.009235404431819916, -0.021890804171562195, -0.015022546984255314, -0.027868732810020447, -0.0011447096476331353, 0.029960300773382187, 0.002116299467161298, 0.008776106871664524, 0.022738737985491753, -0.039231035858392715, 0.032758478075265884, -0.01047197263687849, 0.003773302072659135, 0.012563541531562805, -0.02385518327355385, 0.025890221819281578, -0.014980150386691093, -0.0038474961183965206, -0.031769223511219025, 0.01074755098670721, -0.006829394027590752, 0.04601449891924858, -0.0162944458425045, 0.016930395737290382, 0.003275141352787614, 0.021636424586176872, -0.015601967461407185, 0.020406922325491905, -0.012824987061321735, 0.011892260983586311, 0.009433254599571228, -0.001893717097118497, -0.00036125481710769236, -0.007666727993637323, 0.0009768895106390119, -0.016803206875920296, 0.00599206006154418, -0.005794208962470293, -0.02853294648230076, 0.024476999416947365, 0.02884385548532009, 0.001054616761393845, -0.010231724940240383, 0.0013831907417625189, 0.02928195334970951, 0.0006474322290159762, 0.008246148936450481, 0.0037627029232680798, 0.014966018497943878, 0.011595483869314194, -0.017947915941476822, -0.011220980435609818, 0.012591805309057236, 0.007405281998217106, 0.003308705287054181, 0.001020169467665255, 0.015192133374512196, -0.014768167398869991, -0.012662466615438461, -0.011991186067461967, -0.014994282275438309, -0.0011120288399979472, 0.0026674559339880943, -0.0046000368893146515, 0.030836498364806175, 0.016774941235780716, 0.00352952117100358, -0.008479330688714981, -0.01687386818230152, -0.0025914954021573067, 0.023134440183639526, -0.03439781814813614, 0.020703697577118874, 0.006023857742547989, 0.020110145211219788, 0.011538955383002758, -0.004243198316544294, 0.0006876207189634442, -0.02840575762093067, 0.027614353224635124, 0.0013840739848092198, -0.004804953932762146, 0.031938809901475906, -0.018442543223500252, -0.008302677422761917, 0.03657417744398117, 0.018089238554239273, -0.00011692201951518655, -0.003504789900034666, 0.011616682633757591, 0.012895648367702961, -0.014923621900379658, 0.005419705528765917, -0.6267920732498169, -0.00656441505998373, 0.00652201846241951, -0.021367913112044334, 0.013036970049142838, 0.0028600075747817755, 0.02160816080868244, -0.0040771448984742165, -0.026370717212557793, 0.046579789370298386, 0.006214642431586981, 0.01862626150250435, -0.023742124438285828, -0.005977927707135677, -0.006688071880489588, -0.02385518327355385, -0.0025791297666728497, -0.01705758646130562, -0.008097760379314423, 0.013058168813586235, -0.015008415095508099, 0.017029322683811188, -0.0006262338720262051, 0.006186378188431263, 0.006592679303139448, -0.019855765625834465, 0.036065418273210526, -0.014598580077290535, -0.004854416474699974, 0.02449113316833973, -0.012902714312076569, 0.02350187674164772, 0.011228046379983425, 0.00408067787066102, 0.041322603821754456, -0.011129121296107769, -0.010309452190995216, 0.019248079508543015, 0.016548827290534973, 0.05206308886408806, -0.03942888602614403, -0.005320779979228973, 0.015573703683912754, 0.0007326671620830894, -0.012422218918800354, -0.002229357371106744, 0.012393954209983349, -0.0012233200250193477, -0.013354944996535778, -0.02911236695945263, 0.01810337044298649, -0.0027946459595113993, -0.004024148918688297, 0.0025102351792156696, 0.016986925154924393, -0.022060390561819077, 0.011072591878473759, -0.03120393492281437, 0.008564123883843422, -0.008239082992076874, -9.875991236185655e-05, 0.015305191278457642, -0.024307413026690483, -0.022470224648714066, -0.042340122163295746, 0.004225532989948988, 0.0007984702824614942, -0.018258824944496155, 0.02210278809070587, -0.020661301910877228, 0.023176835849881172, 0.0037521037738770247, -0.00787164457142353, -0.02135378122329712, -0.004610635805875063, 0.015672629699110985, 0.024010637775063515, -0.0069212536327540874, -0.013206557370722294, 0.009793626144528389, 0.004073611460626125, 0.007182699628174305, -0.035952359437942505, -0.003423529677093029, 0.01612485945224762, 0.001868985709734261, -0.02129725180566311, -0.010330650955438614, 0.0011305774096399546, -0.01731196604669094, 0.012789656408131123, 0.03784607723355293, -0.016379239037632942, -0.025989146903157234, -0.0048968130722641945, 0.03572624549269676, 0.001997942104935646, 0.0012330359313637018, -0.01302990410476923, -0.025833692401647568, -0.030610382556915283, -0.01153188943862915, 0.013566928915679455, 0.007483009248971939, 0.023304026573896408, 0.01225969847291708, -0.024999892339110374, -0.02875906229019165, 0.0418313629925251, -0.03315418213605881, 0.007899909280240536, 0.007112038321793079, -0.01736849546432495, -0.0038722276221960783, 0.0123020950704813, -0.022639812901616096, 0.014513786882162094, 0.0029059371445327997, -0.0074688768945634365, -0.0033352032769471407, -0.019884029403328896, -0.010811146348714828, 0.005228920374065638, 0.0006081269821152091, 0.013764780014753342, -0.0005904617137275636, 0.009404990822076797, 0.007836314849555492, 0.013941432349383831, -0.005447969771921635, -0.006518485024571419, -0.0449121855199337, 0.007560736034065485, -0.005543362349271774, 0.0156867615878582, 0.008776106871664524, 0.028942780569195747, -0.010457840748131275, 0.01579981856048107, -0.03241930529475212, 0.0004040930944029242, 0.0024360409006476402, 0.005292515270411968, -0.031034348532557487, 0.012393954209983349, -0.026540303602814674, -0.02817964181303978, 0.004720160737633705, -0.0061439815908670425, -0.008811437524855137, 0.00601325836032629, 0.009291932918131351, -0.002333582378923893, 0.016803206875920296, -0.009157677181065083, 0.012775524519383907, 0.019219815731048584, -0.04287714883685112, -0.015163869597017765, -0.017184775322675705, 0.003494190750643611, 0.006928319577127695, -0.006398361176252365, 0.013178292661905289, -0.017962047830224037, -0.0032592425122857094, 0.0009477418498136103, -0.0034058643504977226, -0.010599163360893726, -0.0246041901409626, 0.013559862039983273, -0.010712220333516598, 0.0017576945247128606, 0.020096013322472572, -0.004578838590532541, 0.006592679303139448, -0.03377600014209747, 0.004388053435832262, 0.006896521896123886, -0.0022099255584180355, 0.007447678595781326, 0.011969988234341145, -0.00585427088662982, 0.007723256945610046, 0.03208013251423836, 0.015616100281476974, 0.007377017289400101, 0.020604772493243217, -0.028971046209335327, 0.010683956556022167, 0.007702058181166649, 0.005299581680446863, -0.008451065979897976, 0.0015147969825193286, -0.012662466615438461, 0.0023848116397857666, -0.019615517929196358, 0.01168027799576521, 0.005525697022676468, 0.010585030540823936, 0.023261629045009613, 0.008154289796948433, 0.0010599163360893726, 0.0003128961252514273, -0.005317246541380882, -0.00880437158048153, 0.013312548398971558, -0.024250885471701622, 0.032956331968307495, 0.024265017360448837, -0.0029907305724918842, 0.022116919979453087, -0.016520561650395393, -0.019573120400309563, 0.021834274753928185, 0.03524575009942055, 0.024886835366487503, 0.019827499985694885, 0.003204480279237032, -0.004063012544065714, 0.020548243075609207, -0.009002222679555416, 0.054889533668756485, -0.002195793204009533, 0.000678788055665791, 0.023431215435266495, -0.0026568567845970392, 0.02292245626449585, 0.0034058643504977226, -0.013694118708372116, -0.015432381071150303, 0.022795265540480614, 0.012295029126107693, 0.007963504642248154, 0.06936091929674149, 0.022639812901616096, 0.028688400983810425, -0.0073628854006528854, 0.03736558184027672, -0.0006915953708812594, -0.012174905277788639, 0.020053615793585777, 0.015389984473586082, -0.013298416510224342, 0.025028156116604805, 0.005984994117170572, 0.021480970084667206, -0.0058118742890655994, -0.03312591835856438, 0.03470872715115547, 0.018979568034410477, -0.00957457721233368, -0.021834274753928185, -0.015022546984255314, 0.030553853139281273, -0.017947915941476822, 0.029027573764324188, 0.011581351980566978, 0.00879023876041174, 0.017015188932418823, 0.009270734153687954, -0.025720635429024696, 0.011362303048372269, -0.006105117965489626, 0.014640976674854755, -0.011270442977547646, -0.01458444818854332, -0.026879476383328438, -0.0013328447239473462, -0.02155163139104843, 0.0009742397232912481, -0.02771327830851078, 0.008366272784769535, -0.011404699645936489, 0.00044582728878594935, -0.0044057187624275684, -0.005048734601587057, 0.018004445359110832, -0.00802003312855959, 0.01708585023880005, -0.016435768455266953, -0.022823531180620193, 0.022413697093725204, 0.0037415046244859695, 0.0056458208709955215, -0.00857118982821703, -0.01571502536535263, -0.005444436799734831, 0.03468045964837074, 0.023487744852900505, 0.007256893441081047, -0.003578983945772052, -0.019884029403328896, 0.006355964578688145, -0.0012224367819726467, 0.009313130751252174, 0.04511003568768501, -0.016548827290534973, -0.010556766763329506, 0.01821642741560936, 0.0009013704839162529, 0.02237129956483841, -0.024915099143981934, -0.013679985888302326, 0.0227811336517334, -0.01734022982418537, -0.02548038773238659, -0.04378160834312439, -0.01664775237441063, -0.015545438975095749, 0.004582371562719345, -0.020760226994752884, -0.02027973160147667, -0.034454345703125, -0.017184775322675705, 0.008359206840395927, -0.005751812364906073, -0.011242179200053215, 0.01432300265878439, 0.0063665639609098434, 0.006790530402213335, -0.016902131959795952, 0.010005610063672066, 0.028108980506658554, 0.07054802775382996, 0.01711411587893963, 0.0026603899896144867, 0.02416609227657318, -0.006801129784435034, -0.027882864698767662, -0.014768167398869991, -0.032843273133039474, 0.034934841096401215, 0.00478728860616684, -0.015813950449228287, -0.0006050355732440948, 0.004812019877135754, 0.009503915905952454, 0.01719890907406807, -0.001787725486792624, -0.0022434894926846027, -0.022964853793382645, -0.0022275906521826982, -0.018583865836262703, 0.016774941235780716, -0.0038828267715871334, 0.03425649553537369, 0.022173449397087097, 0.02228650636970997, 0.01841427944600582, 0.035952359437942505, 0.016520561650395393, 0.002354780677706003, -0.013694118708372116, -0.03971153125166893, -0.00019542206428013742, 0.017495684325695038, 0.021523367613554, -0.02242782898247242, 0.0183012206107378, -0.005497432313859463, -0.01667601615190506, -0.022964853793382645, 0.016421636566519737, 0.0005957612884230912, 0.03123220056295395, -0.0020368057303130627, -0.001021052710711956, 0.006931852549314499, -0.030949555337429047, -0.005790675990283489, 0.041294340044260025, -0.0113905668258667, -0.009291932918131351, 0.01166614517569542, 0.017439156770706177, -0.019544856622815132, 0.010097469203174114, -0.01466924138367176, -0.013079366646707058, -0.009115280583500862, -0.010917137376964092, -0.034086909145116806, -0.011673211120069027, -0.033521618694067, -0.03646112233400345, 0.0039040250703692436, -0.008592387661337852, 0.0023159170523285866, -0.024335678666830063, -0.004741359036415815, -0.005652886815369129, -0.02760021947324276, 0.01705758646130562, 0.00569528341293335, -0.03945714980363846, -0.027755673974752426, -0.005154726095497608, 0.03329550474882126, 0.0017974413931369781, -0.011602550745010376, -0.001079348148778081, -0.002033272758126259, 0.021664688363671303, 0.0044304500333964825, -0.01606833189725876, -0.014697506092488766, -0.017495684325695038, -0.00480848690494895, -0.010380113497376442, -0.006207576487213373, 0.006741067860275507, -0.0010660991538316011, -0.007878711447119713, -0.0018062740564346313, -0.006433691829442978, 0.0010351849487051368, 0.009828956797719002, 0.022682208567857742, 0.007327554747462273, 0.01772180013358593, -0.000732225482352078, 0.019050229340791702, -0.01734022982418537, 0.0055892919190227985, 0.0012383355060592294, -0.017905518412590027, -0.015927009284496307, 0.006723402533680201, 0.0096169738098979, 0.002775214146822691, -0.001428237184882164, 0.009560445323586464, -0.005433837417513132, 0.006557348649948835, -0.001358459354378283, -0.006730468478053808, -0.004409251734614372, -0.0005833955947309732, -0.015474777668714523, 0.0014211711240932345, 0.01234449166804552, 0.014485523104667664, -0.005705882795155048, -0.0037697688676416874, -0.004465780686587095, 0.022653944790363312, -0.006483154837042093, -0.004087743815034628, 0.009624039754271507, 0.02327576093375683, -0.016661884263157845, -0.021283119916915894, 0.012174905277788639, -0.01298750750720501, 0.002391877816990018, -0.019686179235577583, -0.005101730581372976, -0.017552213743329048, 0.002356547163799405, -0.007751521188765764, 0.002564997412264347, -0.008959826081991196, -0.016082463786005974, -0.017269570380449295, 0.009843089617788792, 0.00727102579548955, 0.0009389091865159571, 0.023544274270534515, -0.022201713174581528, -0.016661884263157845, 0.00687885656952858, 0.007369951345026493, 0.01717064343392849, -0.005115862470120192, -0.023869315162301064, -0.018809981644153595, -0.014209944754838943, 0.0025914954021573067, -0.023699728772044182, -0.023346422240138054, 0.010613295249640942, 0.046466730535030365, 0.017269570380449295, 0.018075106665492058, -0.004024148918688297, 0.014725770801305771, 0.005334911867976189, 0.005504498723894358, -0.00041535470518283546, -0.035019636154174805, -0.019573120400309563, 0.016421636566519737, 0.0010616828221827745, 0.00642662588506937, 0.001311646425165236, -0.019092625007033348, -0.0063665639609098434, 0.0048720818012952805, 0.010987798683345318, -0.0011288108071312308, -0.003939355723559856, -0.029055839404463768, -0.0446295402944088, -0.01577155478298664, 0.028278566896915436, -0.008203752338886261, 0.0069389184936881065, -0.02408129908144474, -0.004451648332178593, 0.007991768419742584, 0.009821890853345394, 0.03168443217873573, 0.017071718350052834, 0.017509818077087402, 0.00919300690293312, 0.011800401844084263, 0.012782590463757515, 0.004285594914108515, -0.014598580077290535, -0.011567220091819763, -0.04137913137674332, -0.004900346510112286, 0.0027434166986495256, 0.00975829642266035, 0.017439156770706177, -0.0037556367460638285, 0.005341978278011084, 0.008111892268061638, 0.016054198145866394, -0.02399650402367115, -0.025522785261273384, 0.005377308465540409, -0.01992642693221569, -0.010062138549983501, -0.031769223511219025, -0.03872227668762207, 0.003510089358314872, -0.02044931799173355, -0.010408378206193447, 0.015192133374512196, 0.014344200491905212, -0.027727410197257996, -0.010853542946279049, 0.032843273133039474, 0.022060390561819077, 0.02724691480398178, 0.02042105421423912, 0.02864600531756878, 0.004225532989948988, 0.012372756376862526, -0.010224658995866776, -0.01719890907406807, 0.007914042100310326, 0.005596357863396406, -0.004048880189657211, 0.03937235847115517, -0.022964853793382645, -0.0014079221291467547, 0.023219233378767967, -0.007207430899143219, -0.005430304445326328, -0.04776689410209656, 0.014951885677874088, -0.00036390460445545614, 0.0035807506646960974, -0.02518361061811447, -0.02050584740936756, -0.017509818077087402, 0.01579981856048107, 0.012160773389041424, 0.025551049038767815, 0.00756780244410038, 0.004840284585952759, -0.003935822285711765, 0.0513564758002758, -0.0030313606839627028, 0.012733127921819687, 0.010811146348714828, -0.003073757281526923, -0.022173449397087097, -0.01172267459332943, 0.009390858002007008, -0.010231724940240383, 0.006299435626715422, 0.021283119916915894, -0.012280897237360477, 0.005691750440746546, 0.00526425102725625, 0.005744746420532465, -0.008309743367135525, -0.017947915941476822, -0.0021533966064453125, 0.030666911974549294, -0.007970570586621761, -0.005688217468559742, 0.002121599158272147, -0.020901549607515335, 0.010189328342676163, -0.03855269029736519, -0.019248079508543015, 0.009539246559143066, -0.0006284420378506184, 0.010365981608629227, 0.023261629045009613, 0.004147805739194155, 0.0003700874513015151, 0.003889892715960741, 0.0018813514616340399, -0.0073628854006528854, 0.005151193123310804, -0.0017815426690503955, 0.006843526381999254, -0.03377600014209747, -0.023685596883296967, -0.0024466400500386953, 0.0011941723059862852, 0.006709270179271698, 0.005310180597007275, -0.005663486197590828, 0.0036284467205405235, 0.03227798268198967, -0.013778911903500557, -0.006988381501287222, 0.009737097658216953, 0.008910362608730793, -0.03790260851383209, 0.042255330830812454, -0.0022187582217156887, -0.010337716899812222, 0.024363942444324493, 0.014005027711391449, -0.02832096256315708, -0.02044931799173355, 0.013877836987376213, 0.00343942828476429, 0.01070515438914299, 0.009496849961578846, 0.01509320829063654, -0.005928465165197849, 0.009051685221493244, -0.007200364489108324, -0.027444766834378242, 0.008429867215454578, -0.0016225551953539252, 0.016902131959795952, 0.010924204252660275, -0.01618138886988163, 0.01986989751458168, -0.008041231893002987, 0.018725188449025154, -0.0037909673992544413, -0.026709889993071556, -0.03439781814813614, -0.019997088238596916, -0.005190056748688221, -0.013694118708372116, -0.019742706790566444, -0.003550719702616334, -0.015573703683912754, -0.003427062649279833, 0.023261629045009613, -0.0013902569189667702, -0.0016225551953539252, 0.004161938093602657, -0.003953487612307072, 0.012054781429469585, 0.0035242217127233744, -0.009256602264940739, -0.03366294130682945, -0.011652013286948204, -0.018089238554239273, -0.02518361061811447, -0.003889892715960741, -0.019120890647172928, 0.03541533648967743, 0.014711637981235981, -0.011567220091819763, -0.03459566831588745, -0.014655109494924545, -0.036093682050704956, 0.0016870334511622787, -0.03877880424261093, 0.034030377864837646, 0.03863748162984848, 0.018018577247858047, 0.023261629045009613, 0.01972857490181923, -0.003875760594382882, 0.02402476966381073, -0.01468337420374155, 0.002868840005248785, -0.0034782919101417065, -0.022964853793382645, 0.0019007832743227482, -0.015446513891220093, -0.042453180998563766, 0.00025702969287522137, 0.004027681890875101, -0.00912234652787447, 0.03411517292261124, 0.011560154147446156, -0.021212458610534668, 0.011849864386022091, -0.016195520758628845, -0.002683354774489999, 0.022074522450566292, 0.03360641375184059, 0.026851212605834007, -0.03219319134950638, 0.007440612185746431, 0.02097221091389656, 0.005087598226964474, -0.008981023915112019, 0.006589146330952644, 0.01307230070233345, -0.00022037426242604852, 0.03533054143190384, 0.008352139964699745, -0.020096013322472572, 0.0065043531358242035, -0.006161646917462349, 0.008726644329726696, 0.008210818283259869, 0.009214205667376518, 0.024265017360448837, -0.0007759470609016716, -0.008783172816038132, -0.024476999416947365, 0.008316810242831707, 0.0055645606480538845, 0.001717064413242042, 0.02019493840634823, -0.027261046692728996, -0.015418249182403088, -0.013482135720551014, 0.007935239933431149, 0.018555602058768272, -0.017213040962815285, -0.022696340456604958, -0.007203897926956415, -0.024392206221818924, -0.0069707161746919155, 0.01563023217022419, -0.011998252011835575, -0.007956438697874546, -0.021042872220277786, 0.01275432575494051, -0.00617224583402276, 0.0031514845322817564, -0.016223784536123276, -0.022823531180620193, -0.004663631785660982, -0.011828665621578693, 0.00884676817804575, -0.058111678808927536, 0.00045488073374144733, 0.028335096314549446, -0.008811437524855137, 0.00624644011259079, 0.2101743370294571, 0.009157677181065083, -0.005804808344691992, 0.027896996587514877, 0.015941141173243523, -0.01249288022518158, -0.009136478416621685, 0.0028246769215911627, 0.008811437524855137, 0.0034076308365911245, 0.025847826153039932, -0.003121453570201993, -0.013637589290738106, -0.002194026717916131, 0.007405281998217106, -0.02391171082854271, -0.03377600014209747, -0.025847826153039932, -0.019219815731048584, 0.00802003312855959, 0.012514078058302402, -0.013319614343345165, -0.011962922289967537, -0.0031779822893440723, 0.0313735231757164, 0.010613295249640942, -0.013482135720551014, 0.019544856622815132, 0.01841427944600582, 0.026865344494581223, -0.013976763002574444, -0.008875032886862755, 0.02704906463623047, -0.004550573881715536, -0.013969697058200836, -0.00884676817804575, 0.011553087271749973, -0.031882282346487045, 0.007786851841956377, 0.015757422894239426, 0.008083628490567207, -0.020675433799624443, 0.011567220091819763, -0.03643285483121872, 0.019474195316433907, -0.003503023413941264, 0.008924495428800583, -0.006048589013516903, 0.00997734535485506, 0.03306938707828522, -0.00806242972612381, -0.0028140777722001076, 0.014259407296776772, 0.01234449166804552, 0.009454453364014626, 0.009786560200154781, -0.010337716899812222, 0.00857118982821703, -0.027345839887857437, -0.004412784706801176, -0.011016063392162323, -0.003225678578019142, 0.002264687791466713, -0.007914042100310326, -0.02678055129945278, 0.031712695956230164, 0.0019785105250775814, 0.028872119262814522, 0.0010351849487051368, 0.0055892919190227985, -0.019276345148682594, -0.0030136953573673964, -0.03544360026717186, -0.013312548398971558, -0.011623748578131199, -0.011885195039212704, 0.013694118708372116, 0.024787908419966698, 0.038015663623809814, 0.015234529972076416, -0.0018053908133879304, -0.00019972797599621117, -0.016972793266177177, -0.011016063392162323, 0.000627117115072906, -0.010132799856364727, 0.0451948307454586, -0.01766527071595192, 0.00535964360460639, 0.00019199942471459508, -0.009284866973757744, 0.013941432349383831, -0.0025738300755620003, 0.00394288869574666, -0.0004104967520106584, -9.346033039037138e-05, 0.013213623315095901, 0.021042872220277786, -0.021509233862161636, -0.025579312816262245, -0.022003863006830215, 0.04915185272693634, 0.032588891685009, 0.021650556474924088, -0.020661301910877228, 0.009404990822076797, -0.00016793048416730016, 0.022964853793382645, 0.0020933346822857857, -0.013051102869212627, -0.015672629699110985, -0.03343682736158371, 0.020138408988714218, -0.009058751165866852, 0.005790675990283489, 0.009871353395283222, 0.01758047752082348, 0.005744746420532465, 0.03425649553537369, 0.004232598934322596, 0.028504682704806328, -0.016930395737290382, -0.006037989631295204, 0.007617264986038208, -0.014838827773928642, -0.03665897250175476, -0.000765789533033967, 0.017156511545181274, -0.02512708306312561, -0.028631871566176414, 0.01810337044298649, -0.004133673384785652, 0.023021381348371506, -0.02160816080868244, -0.019672047346830368, -0.022526754066348076, -0.006546749733388424, -0.017354363575577736, 0.0055645606480538845, -0.009284866973757744, 0.0060627213679254055, 0.00183365517295897, 0.02652617171406746, 0.009214205667376518, -0.006984848529100418, 0.008684247732162476, -0.011913458816707134, 0.014570316299796104, -0.02248435840010643, -0.02826443500816822, -0.0037591697182506323, 0.0026038610376417637, -0.009171809069812298, -0.01308643352240324, 0.03038426674902439, -0.03024294413626194, -0.03849615901708603, -0.04075731337070465, 0.011291641741991043, 0.004285594914108515, -0.049604084342718124, 0.02019493840634823, 0.04358375817537308, 0.010302386246621609, -0.02914063259959221, -0.012930979020893574, -0.18247519433498383, 0.0003630213323049247, -0.00754660414531827, -0.008747842162847519, -0.007228629197925329, 0.011122055351734161, -6.558232416864485e-05, -0.01272606197744608, -0.017326097935438156, -0.010104535147547722, 0.023318158462643623, 0.002179894596338272, -0.032758478075265884, -0.031938809901475906, 0.013291350565850735, -0.02768501453101635, 0.009242470376193523, 0.015347587876021862, 0.03838310390710831, 0.005137060768902302, 0.027232782915234566, -0.020378656685352325, -0.0077727194875478745, -0.0023777454625815153, 0.008465197868645191, 0.02190493606030941, -0.009496849961578846, 0.011305773630738258, 0.0015589601825922728, -0.034454345703125, 0.0016578857321292162, -0.0015845748130232096, 0.002904170658439398, 0.008549991063773632, -0.00408067787066102, -0.009956147521734238, -0.005889601539820433, -0.018315354362130165, 0.004529375582933426, 0.020350392907857895, 0.03148657828569412, 0.009638172574341297, 0.023629067465662956, 0.010839411057531834, -0.0027787471190094948, 0.014040357433259487, 0.04683416709303856, -0.009263668209314346, 0.02760021947324276, -0.011871062219142914, 0.024293281137943268, -0.015616100281476974, -0.014867092482745647, 0.006659807171672583, 0.029027573764324188, 0.003229211550205946, 0.022244110703468323, 0.011107922531664371, 0.0033210711553692818, 0.0029642325825989246, 0.002111000008881092, -0.01312883011996746, -0.007758587133139372, -0.02391171082854271, -0.025240140035748482, -0.04041814059019089, -0.005720015149563551, 0.013997960835695267, -0.012174905277788639, 0.026243528351187706, 0.012655400671064854, 0.016746677458286285, -0.013142962008714676, 0.013503333553671837, 0.027967657893896103, -4.3611140426946804e-05, -0.04372508078813553, 0.005158259533345699, 0.024802042171359062, -0.0017700601601973176, 0.016506429761648178, 0.01678907498717308, 0.0063100350089371204, -0.006119249854236841, -0.007207430899143219, 0.001463567721657455, 0.008754909038543701, 0.011143253184854984, -0.0018389547476544976, -0.0040948097594082355, 0.014923621900379658, -0.009871353395283222, 0.02314857207238674, 0.01281085517257452, -0.009009288623929024, 0.010274121537804604, 0.01943179965019226, 0.007327554747462273, 0.008408669382333755, -0.006981315556913614, 0.0006257922505028546, 0.00589666748419404, -0.05553961545228958, 0.022272374480962753, 0.03468045964837074, 0.018725188449025154, 0.008740776218473911, -0.00126571673899889, 0.012167839333415031, -0.028434021398425102, -0.026045676320791245, 0.019417665898799896, 0.01888064295053482, -0.012295029126107693, -0.034002114087343216, 0.03646112233400345, -0.003561318852007389, -0.02050584740936756, 0.007921108044683933, -0.026285924017429352, 0.04971713945269585, -0.02559344470500946, -0.03357814997434616, 0.006726935505867004, 0.004550573881715536, -0.02146683819591999, -0.10836584120988846, -0.01436539925634861, 0.02771327830851078, 0.007808050140738487, -0.018640395253896713, 0.0192339476197958, -0.0024572391994297504, 0.042396653443574905, -0.0035560191608965397, 0.012620070017874241, -0.012358623556792736, -0.015559570863842964, 0.004865015856921673, -0.0014238208532333374, 0.017947915941476822, -0.019445931538939476, -0.0008965125307440758, -0.021057004109025, -0.008726644329726696, 0.03453914076089859, 0.013687052763998508, -0.00758900074288249, 0.0006421325961127877, 0.007914042100310326, -0.024151958525180817, -0.02068956568837166, -0.03550013154745102, 0.016393372789025307, 0.01432300265878439, 0.012019450776278973, 0.03928756341338158, -0.01865452714264393, -0.0014070388861000538, -0.013446805067360401, -0.016930395737290382, 0.011037261225283146, -0.034821782261133194, -0.0027487161569297314, 0.014217010699212551, -0.0225974153727293, 0.018400147557258606, 0.012704863213002682, 0.006373629905283451, -0.02248435840010643, -0.012047715485095978, -0.007680859882384539, -0.02047758363187313, 0.030469059944152832, 0.0176935363560915, -0.021862540394067764, -0.01813163422048092, -0.018753452226519585, -0.03979632258415222, -0.029705921187996864, 0.024816174060106277, 0.008549991063773632, 0.015050811693072319, 0.014937753789126873, -0.01978510431945324, 0.024561794474720955, -0.0093837920576334, -0.003471225965768099, -0.013517465442419052, 0.01946006342768669, 0.013503333553671837, 0.011772137135267258, -0.006963650230318308, -0.011913458816707134, -0.012238499708473682, 0.014358332380652428, -0.008210818283259869, 0.005391440819948912, -0.027388237416744232, 0.011969988234341145, -0.028434021398425102, -6.116599979577586e-05, -0.0015033145900815725, -0.01563023217022419, 0.0069141872227191925, 0.02292245626449585, -0.0023406485561281443, -0.013192424550652504, 0.0007578401709906757, -0.037167731672525406, 0.016916263848543167, 0.0022028593812137842, 0.015785686671733856, -0.0019661446567624807, 0.031147407367825508, -0.04683416709303856, -0.007596066687256098, 0.017538081854581833, 0.012443417683243752, 0.002842342248186469, -0.00754660414531827, -0.004695429001003504, -0.017651138827204704, -0.010288254357874393, 0.022880060598254204, 0.0020880349911749363, -0.011856930330395699, 0.010380113497376442, -0.05404159799218178, 0.007013112772256136, 0.026455510407686234, 0.006355964578688145, -0.004660098813474178, -0.026794683188199997, 0.0004972774186171591, -0.004854416474699974, -0.002973065245896578, -0.003458860097452998, -0.01507907547056675, 0.009786560200154781, -0.0197003111243248, -0.003875760594382882, -0.03671550005674362, -0.025112949311733246, 0.01208304613828659, 0.005553961265832186, 0.017877254635095596, 0.007348753046244383, -0.01664775237441063, 0.0018159899627789855, -0.011758004315197468, 0.02085915207862854, -0.02091568149626255, -0.007369951345026493, -0.021777747198939323, 0.018569733947515488, -0.01981336809694767, -0.030893027782440186, 0.006221708841621876, -0.002261154819279909, -0.002644491149112582, 0.014400728978216648, -0.002981897909194231, -0.02919716015458107, -0.0045929704792797565, 0.005935531109571457, 0.003879293566569686, 0.010549699887633324, -0.027261046692728996, -0.017071718350052834, 0.02570650354027748, -0.016421636566519737, -0.013164160773158073, -0.010217593051493168, -0.012556474655866623, -0.011277508921921253, -0.00526425102725625, 0.018640395253896713, 0.05036722123622894, 0.0028264434076845646, -0.029536334797739983, -0.03007335774600506, 0.008387470617890358, -0.011284575797617435, 0.010592096485197544, 0.010577964596450329, -0.0024908033665269613, 0.005688217468559742, 0.03646112233400345, 0.0020880349911749363, 0.010542633943259716, -0.014443126507103443, 0.006320634391158819, -0.022187581285834312, -0.05226093903183937, -0.017848990857601166, 0.01664775237441063, -0.03965499997138977, -0.00912234652787447, -0.010740485042333603, 0.03530227765440941, 0.0293667484074831, 0.0008095110533758998, -0.0016976326005533338, -0.003875760594382882, -0.015206266194581985, -0.009885486215353012, 0.020675433799624443, 0.014443126507103443, -0.010514369234442711, 0.000732225482352078, 0.010274121537804604, 0.004843817558139563, 0.014082754962146282, -0.025989146903157234, 0.039089713245630264, 0.01681733876466751, 0.0026745221111923456, -0.0293667484074831, 0.009489784017205238, -0.0197003111243248, 0.0010978966020047665, 0.012655400671064854, 0.013764780014753342, -0.022625679150223732, 0.01734022982418537, 0.020293863490223885, 0.008224950172007084, -0.01579981856048107, 0.01678907498717308, 0.005447969771921635, -0.0007697641849517822, -0.010464906692504883, 0.011114988476037979, -0.016633620485663414, -0.016944527626037598, 0.016478165984153748, 0.010139865800738335, 0.011220980435609818, -0.01868279092013836, 0.004942743107676506, 0.01728370226919651, -0.024236751720309258, -0.0027487161569297314, -0.0019325807224959135, -0.03586756810545921, -0.019163286313414574, 0.013051102869212627, 0.027119724079966545, 0.022583283483982086, 0.007730322889983654, -0.020039483904838562, 0.03148657828569412, -0.009348461404442787, -0.0030136953573673964, -0.019912295043468475, 0.010055072605609894, -0.01810337044298649, -0.017523949965834618, -0.006786997430026531, -0.015927009284496307, -0.017071718350052834, -0.020703697577118874, 0.0011084957513958216, -0.014245275408029556, 0.016661884263157845, 0.004006483592092991, 0.09214205294847488, 0.03219319134950638, -0.012146640568971634, 0.018753452226519585, -0.02338881976902485, 0.006850592326372862, 0.017622875049710274, 0.01868279092013836, 0.0028723732102662325, -0.02091568149626255, 0.011863996274769306, -0.01893717050552368, -0.008274413645267487, -0.0072992900386452675, -0.02724691480398178, -0.009864287450909615, -0.00575887830927968, 0.01117151789367199, 0.005818940233439207, 0.015022546984255314, 0.006620944011956453, -0.0015810418408364058, 0.006571481004357338, -0.00997734535485506, -0.02080262452363968, -0.013312548398971558, 0.03278674557805061, 0.02385518327355385, -0.006147514563053846, -0.031769223511219025, 0.02248435840010643, -0.005225387401878834, -0.028306830674409866, -0.017509818077087402, -0.03222145512700081, 0.014994282275438309, -0.025169478729367256, -0.03326724097132683, -0.005684684496372938, 0.019361138343811035, -0.0025738300755620003, 0.011178583838045597, -0.023742124438285828, -0.018894774839282036, 0.006935385521501303, 0.003589583095163107, -0.001567792845889926, -0.004748424980789423, 0.016661884263157845], "b8517c43-bc1e-417d-a6d9-ae1d884c3a84": [-0.00806084368377924, -0.018136899918317795, -0.00448062876239419, -0.01896585151553154, -0.015321320854127407, 0.04693583771586418, 0.010876422747969627, -0.03130008652806282, -0.018594251945614815, -0.01482109073549509, 0.006674493197351694, 0.00865397322922945, -0.014106476679444313, 0.0005707977688871324, -0.014792506583034992, 0.0030746259726583958, 0.002686948049813509, -0.007103261537849903, 0.0010022459318861365, -0.0021134703420102596, -0.02875605970621109, 0.005638303235173225, -0.012484303675591946, 0.0077749984338879585, -0.021266907453536987, -0.014092184603214264, 0.006467255298048258, -0.01865142025053501, 0.006681639235466719, 0.013256086967885494, 0.01023327000439167, -0.0006208207923918962, -0.03787453472614288, -0.008968403562903404, -0.02828441560268402, 0.0020920319948345423, 0.017565207555890083, -0.03012811951339245, 0.019923433661460876, -0.023110611364245415, 0.03038538061082363, 0.011283752508461475, -0.010519115254282951, -0.020595170557498932, -0.01249144971370697, 0.037388596683740616, -0.016507579013705254, 0.007303353399038315, -0.01909448206424713, 0.02119544707238674, -0.008539635688066483, -0.003337246598675847, -0.01700780913233757, 0.0076392218470573425, 0.008854065090417862, -0.01596447266638279, -0.0012389617040753365, 0.006996069569140673, 0.0064208051189780235, -0.012512887828052044, 0.011305190622806549, 0.0017677759751677513, -0.0019294572994112968, 0.01068347692489624, -0.017879638820886612, -0.004305548500269651, 0.006410086061805487, -0.0124056963250041, -0.012012658640742302, -0.012162727303802967, 0.054567910730838776, 0.032757896929979324, -0.00022789482318330556, -0.007167576812207699, 0.004309121519327164, -0.01805114559829235, -0.031128577888011932, -0.01106222253292799, 0.01233423501253128, 0.004695012699812651, 0.014256546273827553, -0.023239241912961006, -0.037274256348609924, 0.011891174130141735, 0.025025775656104088, 0.015735795721411705, 0.041018832474946976, 0.002960287733003497, -0.004498493857681751, 0.00080438720760867, 0.01746516115963459, -0.0010218977695330977, 0.036673981696367264, 0.025383083149790764, -0.00688173109665513, 0.026712264865636826, 0.013742024078965187, 0.008896942250430584, -0.01332040224224329, -0.014270838350057602, -0.003976826090365648, -0.0008477106457576156, -0.044620487838983536, -0.009840232320129871, -0.02139553800225258, -0.012076973915100098, 0.03204328566789627, 0.0016614771448075771, 0.02814149297773838, 0.010690622963011265, -0.029470674693584442, 0.02978510409593582, -0.01820836029946804, 0.010554846376180649, 0.009504363872110844, -0.02632637321949005, 0.0028959724586457014, -0.02711244858801365, -0.04399162903428078, -0.02241029031574726, 0.010440507903695107, 0.008882650174200535, 0.04316267371177673, -0.005724056623876095, 0.02181001380085945, -0.008160890080034733, 0.023968147113919258, -0.005917002446949482, 0.016450410708785057, -0.03475881740450859, 0.005699045490473509, 0.0076177832670509815, 0.012026950716972351, 0.007667806465178728, -0.008518196642398834, -0.005999183282256126, -0.026455003768205643, 0.0019401765894144773, -0.010354754514992237, -0.010033178143203259, 0.02875605970621109, 0.032900821417570114, 0.00029142844141460955, -0.016521871089935303, -0.0006636976031586528, 0.037588685750961304, 0.011162267997860909, 0.0037410033401101828, -0.004166198428720236, 0.015750089660286903, -0.002140268450602889, 0.0013738450361415744, -0.012913071550428867, -0.019180234521627426, 0.002892399439588189, 0.006424378138035536, 0.0011496349470689893, 0.00924710277467966, 0.010133224539458752, -0.004309121519327164, 0.0006619110354222357, 0.00879689585417509, 0.005384615156799555, 0.011047929525375366, 0.0030299625359475613, 0.013949261978268623, 0.014263692311942577, -0.019366035237908363, -0.013291817158460617, 0.00598489074036479, -0.009525801986455917, 0.019952017813920975, -0.02438262477517128, 0.016779132187366486, -0.0032318411394953728, 0.006002756301313639, 0.014020723290741444, 0.0048629469238221645, -0.017536623403429985, -0.016736255958676338, 0.010369046591222286, -0.010447653941810131, 0.00046449899673461914, 0.029756519943475723, -0.018408453091979027, -0.019237404689192772, 0.030185287818312645, 0.004402021411806345, 0.003969680052250624, -0.006756673566997051, 0.00858251191675663, 0.004920116160064936, -0.008561073802411556, 0.014706752263009548, -0.6037057638168335, -0.013206063769757748, -0.00041849573608487844, -0.015521412715315819, 0.007117553614079952, 0.008346689864993095, 0.01362053956836462, -0.00102547078859061, -0.01746516115963459, 0.05045173689723015, -0.009154203347861767, 0.02376805618405342, -0.022967688739299774, -0.007046092301607132, 0.002617273246869445, -0.02242458239197731, 0.004437752068042755, -0.0068495734594762325, -0.0009549027308821678, 0.006971057970076799, -0.011948343366384506, -0.000958475808147341, -0.003212189069017768, 0.004866520408540964, -0.01476392149925232, -0.03547343239188194, 0.045706700533628464, 0.009004134684801102, -0.0010638813255354762, 0.012627226300537586, -0.027655554935336113, 0.030013781040906906, 0.019837679341435432, -0.026154866442084312, 0.04396304115653038, 0.011019345372915268, -0.021023938432335854, 0.031128577888011932, 0.01773671619594097, 0.05159511789679527, -0.03038538061082363, 0.012434280477464199, 0.01009034737944603, -9.396055247634649e-05, -0.004505640361458063, -0.018694298341870308, 0.0045449440367519855, 0.006553008686751127, -0.008025113493204117, -0.027612678706645966, 0.03418712690472603, -0.0218243058770895, -0.029442090541124344, 0.009061302989721298, 0.026154866442084312, -0.02526874467730522, 0.0016382521716877818, -0.026555050164461136, 0.00023604587477166206, -0.003987545147538185, -0.026426419615745544, 0.015192690305411816, -0.03504466265439987, -0.027298247441649437, -0.03713133558630943, 0.02516869828104973, -0.0016489714616909623, -0.001933030434884131, 0.007925067096948624, -0.013713438995182514, 0.00894696544855833, 0.0019294572994112968, -0.0021313356701284647, -0.017965391278266907, 0.006159971002489328, 0.007353376131504774, 0.025025775656104088, -0.0005024628480896354, -0.0038410492707043886, 0.01000459399074316, 0.013120310381054878, -0.0008852278697304428, -0.03870348632335663, -0.010097493417561054, 0.03412995487451553, -0.002770915161818266, -0.03115716390311718, 0.011462406255304813, 0.0033586849458515644, -0.01347761694341898, 0.012005512602627277, 0.036531057208776474, -0.012620080262422562, -0.02482568472623825, -0.005531111266463995, 0.04427747428417206, -0.0034855289850383997, 0.013684854842722416, -0.0076606604270637035, -0.04301975294947624, -0.02529732882976532, -0.005784798879176378, -0.008160890080034733, 0.007960798218846321, 0.02273901179432869, 0.005034454632550478, -0.010576284490525723, -0.018622836098074913, 0.04473482444882393, -0.03473023325204849, 0.018708590418100357, 0.006585166323930025, 0.000615014520008117, -0.021481292322278023, 0.02243887446820736, -0.029727935791015625, 0.03187177702784538, 0.030957071110606194, -0.004180490970611572, 0.011326629668474197, -0.020380785688757896, -0.016936346888542175, 0.014256546273827553, -0.0004341278981883079, 0.023896686732769012, 0.011655351147055626, 0.01670767180621624, -0.010940738022327423, 0.016021642833948135, -0.01657904125750065, -0.0165647491812706, -0.04470624029636383, 0.0008566433098167181, -0.008461027406156063, 0.02256750501692295, 0.0004841508634854108, 0.019451787695288658, -0.0124056963250041, 0.013399009592831135, -0.010733500123023987, -0.007996528409421444, 0.004823643248528242, 0.0037624419201165438, -0.012620080262422562, 0.004559236112982035, -0.0376172736287117, -0.015106935985386372, 0.0028316574171185493, -0.031528763473033905, 0.0020956050138920546, -0.0004792379040736705, 0.0015051553491503, -0.011791128665208817, 0.008882650174200535, -0.00448062876239419, -0.00433413265272975, -0.007610637228935957, -0.03933234512805939, -0.013734878040850163, -0.02692664973437786, 0.0006610177806578577, 0.0057419221848249435, -0.008911234326660633, -0.00414118729531765, -0.0005096090026199818, -0.004109029658138752, -0.004419886507093906, -0.016336072236299515, 0.015407074242830276, -0.028513092547655106, -0.007196161430329084, -0.002822724636644125, -0.00804655160754919, 0.009511509910225868, -0.012470011599361897, 0.0011398090282455087, -0.03101423941552639, -0.006031340919435024, -0.0023064161650836468, 0.01792251504957676, 0.004084018059074879, 0.003662395989522338, -0.018294114619493484, -0.012219896540045738, 0.015864426270127296, -0.00639936700463295, 0.01642182655632496, 0.008589657954871655, -0.03993261978030205, 0.029727935791015625, -0.0008177862036973238, -0.018465621396899223, -0.017579499632120132, 0.022167321294546127, -0.020280741155147552, 0.036673981696367264, -0.03747434914112091, 0.023825224488973618, -0.005466795992106199, 0.02814149297773838, 0.026011943817138672, 0.022767595946788788, 0.01685059443116188, -0.007596345152705908, 0.0017633095849305391, -0.008053697645664215, 0.021895768120884895, -0.0345873087644577, 0.03135725483298302, 0.008561073802411556, -0.005684752948582172, 0.013884946703910828, -0.01717931590974331, -0.011255167424678802, 0.024168239906430244, 0.01579296588897705, 0.02000918798148632, 0.02664080448448658, -0.016536163166165352, 0.0023189219646155834, 0.018151191994547844, -0.014170791953802109, 0.042219385504722595, -0.004369863774627447, -0.01703639328479767, 0.00781787559390068, 0.013163186609745026, 0.01001888606697321, 0.003574855625629425, 0.0021259761415421963, -0.02692664973437786, 0.017550915479660034, 0.005813383497297764, 0.013499055057764053, 0.043648611754179, 0.013141748495399952, 0.017093563452363014, 0.002495788736268878, 0.04047572612762451, -0.0066923582926392555, -0.004023275803774595, 0.026669388636946678, 0.02919912151992321, -0.012048388831317425, 0.023253533989191055, -0.0016105609247460961, 0.02978510409593582, 0.0008767418330535293, -0.022696135565638542, 0.011248021386563778, 0.01308457925915718, -0.025068653747439384, -0.030185287818312645, -0.015349905006587505, 0.01940891146659851, -0.017265070229768753, 0.02726966328918934, 0.0015453523956239223, 0.022081566974520683, 0.01762237772345543, 0.010426215827465057, -0.010640599764883518, 0.028212953358888626, -0.0009084528428502381, 0.010890714824199677, -0.008025113493204117, -0.0038446225225925446, -0.021752845495939255, -0.012777294963598251, -0.029756519943475723, 0.009147057309746742, -0.03584503009915352, -0.0020473685581237078, -0.013742024078965187, -0.004555663093924522, -0.0011156908003613353, -0.008246643468737602, 0.01852278970181942, -0.008975549601018429, 0.01928028091788292, -0.008603950962424278, -0.041590526700019836, 0.019466081634163857, 0.0015310600865632296, 0.00722117256373167, 0.014106476679444313, -0.02003777213394642, 0.010404777713119984, 0.012920218519866467, 0.029442090541124344, -0.009390025399625301, -0.012712979689240456, -0.01988055743277073, 0.007789290975779295, -0.008718288503587246, 0.018165484070777893, 0.04127609357237816, -0.010890714824199677, -0.006653054617345333, 0.022538920864462852, -0.003610586281865835, 0.024954315274953842, -0.027769893407821655, -0.023982441052794456, 0.03235771507024765, -0.021595630794763565, -0.02616915851831436, -0.047650448977947235, -0.03478740155696869, -0.021409830078482628, 0.0019026593072339892, -0.019466081634163857, -0.013063141144812107, -0.010097493417561054, -0.001934816944412887, 0.0009718748042359948, -0.015335612930357456, -0.0009495431440882385, 0.021109692752361298, 0.0041161756962537766, 0.0031049971003085375, -0.0146638760343194, 0.00714971125125885, 0.022839058190584183, 0.07100403308868408, 0.03270072862505913, 0.01793680712580681, 0.019366035237908363, -0.011283752508461475, -0.035273339599370956, -0.011419529095292091, -0.03850339353084564, 0.0376458577811718, -0.018565667793154716, -0.019937725737690926, -0.005849114153534174, 0.0012997039593756199, -0.014270838350057602, 0.011891174130141735, -0.002688734559342265, -0.004234086722135544, -0.01444234512746334, 0.014492368325591087, -0.0026780152693390846, 0.021481292322278023, -9.993428102461621e-05, 0.01370629295706749, 0.016493286937475204, 0.02436833083629608, 0.02093818597495556, 0.0021349089220166206, 0.01159818284213543, 0.008418151177465916, -0.011369505897164345, -0.033043742179870605, 0.008982695639133453, 0.025983359664678574, 0.029842274263501167, -0.020409371703863144, 0.02139553800225258, -0.004712878260761499, 0.021166861057281494, -0.017650961875915527, 0.017822468653321266, 0.005677606910467148, 0.027584094554185867, 0.004666428081691265, -0.012248480692505836, 0.02019498683512211, -0.02662651054561138, 0.004852227866649628, 0.03187177702784538, -0.017350824549794197, -0.0032586390152573586, 0.008032259531319141, 0.028341583907604218, -0.010290439240634441, 0.00681026978418231, -0.006967484951019287, 0.0010594150517135859, -0.012319942004978657, -0.0060206213966012, -0.01467816811054945, -0.00901842676103115, -0.03873207047581673, -0.020395079627633095, 0.009304272010922432, -0.006817415822297335, -0.008904088288545609, -0.038760654628276825, -0.02591189742088318, 0.00417691795155406, -0.028841814026236534, 0.03324383497238159, 0.0003778520622290671, -0.017851052805781364, -0.018594251945614815, 0.03655964508652687, 0.04144760221242905, -0.007925067096948624, -0.0030031646601855755, -0.010497677139937878, 0.008053697645664215, 0.029470674693584442, 0.0051773772574961185, -0.01640753261744976, -0.010547700338065624, -0.006606604903936386, 0.0011505283182486892, -0.007374814711511135, 0.01285590324550867, -0.009154203347861767, 0.003680261317640543, 0.01760808564722538, -0.01226277370005846, -0.016150273382663727, 0.010454799979925156, -0.004301975481212139, 0.03264356032013893, 0.004316267557442188, 0.003766014939174056, 0.006220713257789612, 0.019037311896681786, -0.02545454539358616, 0.020266449078917503, -0.011076514609158039, -0.03753151744604111, -0.010483385063707829, 0.007192588411271572, -0.0002856222272384912, 0.008575365878641605, 0.015564288944005966, 0.008589657954871655, -0.000994206522591412, 0.005513245705515146, 0.007724975701421499, 0.0027262517251074314, 0.0004604792920872569, 0.0015658976044505835, -0.01188402809202671, 0.006070644594728947, 0.015064059756696224, 0.006220713257789612, 0.00092274509370327, -0.006874585058540106, -0.008525342680513859, 0.03427287936210632, -0.020538002252578735, -0.015421366319060326, 0.016078811138868332, 0.01955183409154415, -0.029413504526019096, -0.02526874467730522, 0.011155121959745884, -0.010254708118736744, 0.007196161430329084, 0.00012170767149655148, -0.011541013605892658, -0.017565207555890083, -0.010211831890046597, 0.009961716830730438, 0.007875044830143452, -0.013370424509048462, -0.003883926197886467, -0.019523249939084053, 0.0058991373516619205, -0.006145678926259279, -0.009297125972807407, 0.01868000626564026, -0.032586392015218735, -0.01227706577628851, -0.002104537794366479, 0.0015533918049186468, 0.011097952723503113, 0.008525342680513859, 0.0005256878212094307, -0.024568423628807068, -0.0020134244114160538, -0.011033637449145317, -0.020823847502470016, -0.025840437039732933, -0.011090806685388088, 0.03804603964090347, 0.02045224793255329, -0.0027780611999332905, 0.00045779949869029224, 0.0008293986902572215, -0.00924710277467966, 0.011240875348448753, 0.0006793297943659127, -0.042819660156965256, -0.02561176009476185, 0.00613138685002923, 0.007939360104501247, 0.01593588851392269, 0.0008843346149660647, 0.00212418963201344, -0.010740646161139011, 0.00835383590310812, 0.03407278656959534, -0.01384921558201313, -0.01715073175728321, -0.013792047277092934, -0.042991168797016144, -0.023567963391542435, 0.030442548915743828, 0.005509672686457634, -0.007235465105623007, -0.0285988450050354, 0.022581797093153, 0.0011746464297175407, 0.014992598444223404, 0.03195752948522568, -0.008703996427357197, 0.004948700778186321, 0.0028030727989971638, 0.009611556306481361, 0.0007999208755791187, 0.01363483164459467, -0.026683680713176727, -0.010176100768148899, -0.04396304115653038, 0.000787415134254843, 0.018737174570560455, 0.0202950332313776, -0.012255626730620861, 0.0077535598538815975, 0.001522127422504127, -0.0013738450361415744, 0.03944668173789978, -0.01835128292441368, -0.019609004259109497, 0.009318564087152481, -0.012369965203106403, -0.00478433957323432, -0.01565004326403141, -0.01910877414047718, 0.009525801986455917, -0.001709713600575924, -0.006535143591463566, 0.004151906352490187, 0.015564288944005966, -0.02664080448448658, -0.010847837664186954, 0.025368791073560715, 0.014092184603214264, 0.016636209562420845, 0.026083404198288918, 0.03221479058265686, 0.0003544038045220077, 0.021152568981051445, -0.004984431434422731, -0.018880097195506096, 0.01076923031359911, 0.014220815151929855, 0.010633453726768494, 0.03941809758543968, 0.0007646367885172367, 0.020066356286406517, 0.01582155004143715, 0.008882650174200535, -0.009883109480142593, -0.036531057208776474, 0.011512428522109985, 0.027198202908039093, 0.006535143591463566, -0.023296410217881203, -0.026383543387055397, -0.023410748690366745, 0.011033637449145317, -0.002502935007214546, 0.024611299857497215, -0.0004502067167777568, -0.01700780913233757, -0.018022561445832253, 0.03964677453041077, -0.011226583272218704, 0.01943749561905861, 0.023596549406647682, 0.00813230499625206, -0.026998110115528107, -0.021452706307172775, 0.003296156181022525, -0.003024603007361293, 0.003049614606425166, 0.0105405542999506, -0.02060946263372898, 0.009890255518257618, 0.000530154153238982, 0.022796181961894035, -0.004001837223768234, -0.02065233886241913, -0.0008758485782891512, 0.039360929280519485, -0.010962176136672497, 0.005113061983138323, 0.01490684412419796, -0.023210657760500908, 0.023868102580308914, -0.04053289815783501, 0.0020455820485949516, 0.013306109234690666, -0.021123984828591347, 0.0010344035690650344, 0.032300546765327454, 0.017393700778484344, -0.006370782386511564, -0.02365371771156788, 0.004895104561001062, 0.0018276248592883348, -0.0010638813255354762, -0.01384921558201313, -0.0027691286522895098, -0.0293277520686388, -0.03281506523489952, -0.017808176577091217, 0.012484303675591946, -0.008896942250430584, -0.0012380684493109584, -0.012891633436083794, 0.009947424754500389, 0.038017455488443375, -0.019666172564029694, 0.004191210027784109, -0.019180234521627426, 0.009154203347861767, -0.05088050290942192, 0.024025317281484604, -0.009311418049037457, -0.01852278970181942, 0.020437955856323242, -0.009168495424091816, -0.030928486958146095, 0.001267546322196722, 0.02272471971809864, 0.007567760534584522, 0.011305190622806549, 0.013663416728377342, 0.0058991373516619205, -0.0003349752223584801, 0.01143382117152214, -0.013148894533514977, -0.03896074742078781, 0.020409371703863144, -0.004887958522886038, 0.0023046296555548906, 0.009683017618954182, -0.009961716830730438, 0.03147159144282341, -0.0007373921689577401, 0.020252155140042305, 0.005238119512796402, -0.036673981696367264, -0.028570260852575302, 0.005309580825269222, -0.0020241437014192343, -0.02572609856724739, -0.025383083149790764, -0.00012114937271689996, -0.012355673126876354, -0.003026389516890049, 0.01174110546708107, 0.007567760534584522, 0.01883722096681595, 0.0124056963250041, 0.0012210963759571314, 0.003215762320905924, 0.009232810698449612, -0.015421366319060326, 0.0009647286497056484, -0.025082945823669434, -0.0027280382346361876, -0.021467000246047974, -0.012920218519866467, -0.0293277520686388, 0.021724261343479156, 0.028827521950006485, -0.004652136005461216, -0.03150017932057381, -0.025840437039732933, -0.0406472347676754, 0.0018562094774097204, -0.041476186364889145, 0.03781736269593239, 0.03372977301478386, 0.012934510596096516, 0.02438262477517128, 0.017265070229768753, -0.013556224294006824, 0.012884487397968769, -0.004351998213678598, -0.00032492598984390497, 0.012084119953215122, -0.0270981565117836, 0.02245316654443741, -0.014356591738760471, -0.040875911712646484, 0.004569955635815859, 0.006156397983431816, -0.0038874992169439793, 0.03753151744604111, 0.014863967895507812, -0.029442090541124344, 0.0030138837173581123, -0.0034605173859745264, -0.008003674447536469, 0.031843192875385284, 0.024611299857497215, 0.028184369206428528, -0.019051603972911835, -0.005166658200323582, 0.0405900664627552, 0.015993056818842888, -0.005934868007898331, 0.0202950332313776, -0.00039147440111264586, 0.009904547594487667, 0.02722678706049919, -0.0043412791565060616, -0.04256239905953407, -0.010554846376180649, -0.02046654000878334, 0.012570057064294815, 0.02213873714208603, 0.009718747809529305, 0.0076392218470573425, 0.0027459035627543926, -0.005663314834237099, -0.023710886016488075, 0.00489153154194355, -0.003937522415071726, -0.014399468898773193, 0.026683680713176727, -0.02063804678618908, -0.01565004326403141, 0.0036338113714009523, 0.016307488083839417, 0.009897401556372643, -0.02319636568427086, -0.012019804678857327, -0.009282833896577358, -0.004005410708487034, -0.00729620736092329, 0.019080189988017082, -0.012398550286889076, -0.0029299166053533554, -0.012434280477464199, 0.006535143591463566, -0.009475779719650745, 0.00369098037481308, -0.005695472005754709, -0.02303914912045002, 0.007946506142616272, -0.0017240059096366167, 0.0006605711532756686, -0.04181919991970062, -0.002038436010479927, 0.013770608231425285, -0.03178602457046509, 0.014863967895507812, 0.195861354470253, 0.0030639066826552153, -0.009632994420826435, 0.019980601966381073, -0.012141289189457893, -0.00564544927328825, -0.0002227585355285555, 0.003644530428573489, 0.002685161540284753, 0.006209994200617075, 0.029442090541124344, -0.01567862741649151, -0.0028298706747591496, -0.010226123966276646, 8.162229642039165e-05, -0.02303914912045002, -0.03704557940363884, -0.03330100327730179, -0.0421908013522625, 0.014563829638063908, -0.004159052390605211, -0.0278556477278471, 0.0076392218470573425, -0.00044909011921845376, 0.03298657387495041, 0.027026694267988205, -0.012534326873719692, 0.020680924877524376, 0.023710886016488075, 0.030185287818312645, -0.011805420741438866, -0.0066673471592366695, 0.030614055693149567, 0.0028656015638262033, -0.0004073298769071698, -0.012548618949949741, 0.02033790946006775, -0.010940738022327423, 0.01557858195155859, 0.007281914819031954, -0.016207441687583923, -0.015221274457871914, 0.027569802477955818, -0.04038997367024422, 0.019837679341435432, -0.00366596900857985, 0.01667908765375614, -0.02651217393577099, 0.02919912151992321, 0.02181001380085945, -0.006906742695719004, 0.004051860421895981, 0.02798427827656269, -3.24646825902164e-05, -0.001574830268509686, 0.0041161756962537766, 0.003951814491301775, 0.016064519062638283, -0.02259608916938305, 0.026111990213394165, -0.010511969216167927, -0.0029191975481808186, 0.015764381736516953, -0.01421366911381483, -0.042819660156965256, 0.013684854842722416, 0.006356489844620228, 0.011455259285867214, -0.005874125752598047, 0.008518196642398834, -0.007135419175028801, -0.03267214447259903, -0.025225868448615074, -0.0036373843904584646, -0.002174212597310543, -0.02119544707238674, 0.014706752263009548, 0.026526466012001038, 0.03601653873920441, 0.01593588851392269, -0.0043662902899086475, 0.0019794802647083998, -0.006388647481799126, -0.0006569980760104954, 0.005699045490473509, -0.015549996867775917, 0.04436322674155235, -0.0015703638782724738, 0.0014569188933819532, 0.004234086722135544, -0.020738093182444572, 0.021023938432335854, -0.018765758723020554, 0.0020848859567195177, 0.010547700338065624, 0.0032729313243180513, -0.002753049833700061, 0.022467458620667458, -0.011005053296685219, -0.02076667733490467, -0.025468837469816208, 0.05073758214712143, 0.028784645721316338, 0.0005743708461523056, -0.013977846130728722, -0.00781787559390068, 0.008232351392507553, 0.02166709117591381, 0.0007981343078427017, -0.008432443253695965, -0.02245316654443741, -0.015707211568951607, 0.01640753261744976, 0.012541472911834717, 0.007724975701421499, 0.018622836098074913, 0.007867897860705853, -0.012105558067560196, 0.021495584398508072, 0.010654891841113567, 0.036045122891664505, -0.02165279909968376, -0.0013568729627877474, 0.018908681347966194, -0.003983972128480673, -0.0406472347676754, -0.017050685361027718, 0.02378234826028347, -0.023668009787797928, -0.032729312777519226, 0.033615436404943466, 0.008003674447536469, 0.026254912838339806, -0.01657904125750065, -0.006856719497591257, -0.04399162903428078, 0.006838854402303696, -0.031099993735551834, -0.000958475808147341, 0.0012157367309555411, 0.012548618949949741, -0.00962584838271141, 0.026697972789406776, 0.023668009787797928, -0.013870654627680779, -0.017250778153538704, 0.007882190868258476, -0.0024082486052066088, -0.0066244699992239475, -0.030928486958146095, -0.005781225860118866, 0.009268541820347309, 0.008575365878641605, -0.022381704300642014, 0.03207186982035637, -0.02049512416124344, -0.013491909019649029, -0.030156703665852547, 0.02391097880899906, 0.014399468898773193, -0.031214332208037376, 0.010290439240634441, 0.04113317281007767, 0.011269460432231426, -0.04141901805996895, -0.004755754955112934, -0.1836271733045578, 0.010547700338065624, 0.011112244799733162, -0.004602113272994757, -0.017122147604823112, 0.002142054960131645, -0.00039616404683329165, -0.003271144814789295, -0.028813229873776436, -0.016736255958676338, 0.029241997748613358, -0.0033443926367908716, -0.020209278911352158, -0.024425501003861427, 0.0021688530687242746, -0.015492827631533146, -0.009054156951606274, -0.0010933591984212399, 0.043134089559316635, 0.012205604463815689, 0.023239241912961006, -0.028970444574952126, 0.005670460872352123, -0.015092643909156322, 0.0008794216555543244, 0.020380785688757896, -0.014020723290741444, 0.009654432535171509, 0.021138276904821396, -0.0360737070441246, -0.0046807206235826015, -0.006188555620610714, 0.01566433534026146, 0.016007348895072937, 0.008818334899842739, -0.007760706357657909, -0.00033318871282972395, -0.02423970028758049, 0.008732580579817295, 0.026769433170557022, 0.017722422257065773, -0.008446735329926014, 0.015478535555303097, -0.0018705016700550914, -0.008661119267344475, 0.034244295209646225, 0.03701699525117874, -0.007603491190820932, 0.008839773014187813, -0.009282833896577358, 0.006199275143444538, -0.017879638820886612, -0.01896585151553154, -0.0024064620956778526, 0.01460670679807663, -0.014306568540632725, 0.02135266177356243, 0.0022206625435501337, 0.0023207084741443396, 0.010140370577573776, -0.0037016996648162603, -0.006788831204175949, -0.011733959428966045, 0.0075248838402330875, -0.03555918484926224, -0.042105045169591904, -0.0005542723811231554, 0.025068653747439384, -0.028112908825278282, 0.024339746683835983, -0.004441325087100267, 0.010662038810551167, -0.009990300983190536, -0.004237660206854343, 0.03238629922270775, 0.006903169676661491, -0.04544943943619728, 0.003203256521373987, 0.016521871089935303, 0.01849420554935932, 0.01476392149925232, 0.007289060857146978, -0.0070746769197285175, -0.007424837909638882, -0.01007605530321598, 0.01353478617966175, -0.0030013781506568193, 0.01377775426954031, -0.0071640037931501865, -0.009861670434474945, 0.027612678706645966, -0.012627226300537586, -0.001471211202442646, 0.010876422747969627, 0.006109948270022869, 0.01985197141766548, 0.026840895414352417, -0.024153947830200195, 0.022610381245613098, -0.0376458577811718, -0.0018437036778777838, 0.01324179396033287, -0.03793170303106308, 0.019923433661460876, 0.011348067782819271, 0.01839415915310383, 0.000770443060901016, 0.000770443060901016, 0.0012425348395481706, -0.03896074742078781, 0.0011013986077159643, 0.015549996867775917, 0.031042825430631638, -0.020137818530201912, -0.03261497616767883, 0.03535909205675125, -4.9129699618788436e-05, -0.01642182655632496, 0.014806798659265041, -0.006481547374278307, 0.055168189108371735, -0.010962176136672497, -0.022481750696897507, 0.0029620742425322533, -0.008253789506852627, -0.024482669308781624, -0.1205124780535698, -0.023853810504078865, 0.02346791885793209, 0.021638507023453712, -0.015049767680466175, 0.009125618264079094, -0.008461027406156063, 0.03873207047581673, -0.005013016052544117, 0.03421571105718613, 0.006281455513089895, -0.042676739394664764, 0.0015462456503883004, 0.011319482699036598, 0.02183859795331955, -0.013434739783406258, -0.007939360104501247, -0.026683680713176727, 0.009875963442027569, 0.023710886016488075, 0.017122147604823112, -0.014649583958089352, -0.0030710529536008835, -0.010040324181318283, -0.025811851024627686, -0.01849420554935932, -0.026898063719272614, 0.014077892526984215, 0.030299626290798187, 0.016378948464989662, 0.03450155630707741, -0.008782603777945042, 0.001916951616294682, 0.001968761207535863, -0.00858251191675663, 0.017708130180835724, -0.032157622277736664, 0.0003195663739461452, 0.0020580878481268883, -0.038446225225925446, 0.0053810421377420425, 0.022038690745830536, 0.0028691745828837156, -0.014063600450754166, -0.007810729090124369, -0.005080904345959425, -0.005491807125508785, 0.03144300729036331, 0.010490531101822853, -0.03821754828095436, -0.010176100768148899, -0.02019498683512211, -0.03012811951339245, -0.04038997367024422, 0.012948802672326565, -0.016650501638650894, 0.009861670434474945, -0.0056061455979943275, -0.01121943723410368, 0.008789749816060066, -0.01120514515787363, -0.025511713698506355, -0.004416313488036394, 0.03058547154068947, 0.004076872020959854, 0.020566586405038834, -0.028999028727412224, -0.00748915271833539, 0.0010835331631824374, 0.011097952723503113, -0.01024756208062172, 0.0082823745906353, -0.027655554935336113, 0.016621917486190796, -0.021867183968424797, 0.0017731356201693416, 0.0046342709101736546, -0.022024398669600487, 0.0043877288699150085, 0.016464702785015106, -0.004033994860947132, -0.00992598570883274, 0.020995354279875755, -0.018408453091979027, 0.010183246806263924, 0.0002318028564332053, 0.013970700092613697, 0.0012353886850178242, 0.013870654627680779, -0.03295798972249031, 0.005616864655166864, 0.014270838350057602, 0.0077535598538815975, -0.0014390535652637482, -0.02259608916938305, 0.007467714603990316, 0.008696850389242172, 0.0010924659436568618, 0.023725179955363274, -0.009954570792615414, -0.019809095188975334, 0.006538716610521078, -0.04925118386745453, 0.012748710811138153, 0.008489612489938736, -0.0009808074682950974, 0.002327854512259364, -0.02319636568427086, -0.0007570440066047013, -0.011926905252039433, -0.0002315795427421108, 0.0021617067977786064, -0.011748251505196095, 0.02545454539358616, -0.010104639455676079, -0.016278903931379318, -0.006838854402303696, -0.02784135565161705, 0.01563575118780136, -0.007603491190820932, 0.009632994420826435, -0.01046909298747778, -0.023725179955363274, -0.011619620956480503, -0.010411923751235008, 0.02995661087334156, 0.009704455733299255, 0.008153744041919708, -0.004380582831799984, 0.0009093460976146162, -0.018251236528158188, -0.03284365311264992, 0.02062375470995903, -0.0057883718982338905, 0.007610637228935957, 0.022010106593370438, -0.00304604135453701, -0.03187177702784538, 0.0015533918049186468, 0.015349905006587505, -0.002772701671347022, 0.0013470470439642668, -0.0026333520654588938, -0.018608544021844864, 0.024725638329982758, -0.020838139578700066, -0.01925169676542282, -0.024196824058890343, -0.027155324816703796, 0.013177478685975075, -0.007267622742801905, -0.01150528248399496, 0.0391608364880085, 0.01082639954984188, -0.03670256584882736, -0.027198202908039093, 0.00806084368377924, -0.016307488083839417, 0.007667806465178728, 0.025668928399682045, 0.00924710277467966, 0.003776733996346593, 0.026097696274518967, 0.014706752263009548, 0.005438211373984814, -0.021281199529767036, 0.0005873232148587704, -0.019666172564029694, -0.041333265602588654, 0.0009513296536169946, 0.018594251945614815, -0.025511713698506355, -0.02861313708126545, -0.004673574585467577, 0.022781888023018837, 0.015121228992938995, -0.007496299222111702, -0.00029477820498868823, -0.011791128665208817, 0.0008191260858438909, 0.006199275143444538, 0.023096319288015366, 0.01839415915310383, -0.00955438707023859, -0.0026583634316921234, 0.010440507903695107, 0.0017168597551062703, -0.010511969216167927, -0.025311622768640518, 0.039503853768110275, -0.0022885508369654417, -0.006824561860412359, -0.039360929280519485, 0.00955438707023859, -0.004562809132039547, 0.004287682939320803, 0.03384410962462425, 0.01332040224224329, -0.0293563362210989, 0.02619774267077446, 0.020266449078917503, -0.0003182264626957476, -0.021752845495939255, -0.0030567606445401907, -0.0007579373195767403, 0.0006775432266294956, -0.029585013166069984, 0.001217523356899619, -0.010626307688653469, -0.015135521069169044, 0.012691541574895382, 0.02842733822762966, 0.010819253511726856, -0.01431371457874775, 0.026740849018096924, 0.02349650301039219, -0.012963094748556614, -0.008082282729446888, 0.011262314394116402, -0.02964218147099018, -0.024868560954928398, 0.019451787695288658, 0.016436118632555008, 0.012455719523131847, 0.012655811384320259, -0.01700780913233757, 0.03627379983663559, -0.008718288503587246, 0.02949925884604454, -0.026726556941866875, -0.008825480937957764, 0.0014158287085592747, 0.009004134684801102, -0.010876422747969627, -0.024739930406212807, -0.019051603972911835, -0.021038230508565903, -0.008446735329926014, -0.010419069789350033, 0.025511713698506355, -0.0003782986896112561, 0.08306670933961868, 0.011398090980947018, -0.029842274263501167, 0.0062171402387320995, -0.007782144472002983, 0.027641262859106064, 0.025111529976129532, 0.02045224793255329, -0.0039053645450621843, -0.003489102004095912, 0.014049307443201542, -0.0127987340092659, 0.005009443033486605, -0.008303812704980373, -0.032729312777519226, -0.011269460432231426, -0.00015174377767834812, 0.018537083640694618, 0.016035934910178185, 0.014992598444223404, -0.001557858195155859, 0.003816037904471159, 0.006438670679926872, 0.010254708118736744, -0.023367872461676598, -0.0057633607648313046, 0.015864426270127296, 0.019923433661460876, -0.02211015112698078, -0.026097696274518967, -7.57602319936268e-05, -0.017422284930944443, -0.030499719083309174, -0.020409371703863144, -0.019809095188975334, 0.010026032105088234, -0.010869276709854603, -0.011233729310333729, -0.006270736455917358, 0.007517737336456776, -0.0031585930846631527, 0.012062681838870049, -0.026254912838339806, -0.03547343239188194, 0.00016525444516446441, -0.011748251505196095, 0.011926905252039433, -0.01272727269679308, -0.008089428767561913], "9ee615c3-8c00-4109-b2e1-6bc8356d134f": [0.0038316911086440086, -0.019966594874858856, -0.0005259867175482213, -0.0026421253569424152, -0.0005333888111636043, 0.03929225355386734, 0.014114556834101677, -0.03229767456650734, -0.005827654153108597, -0.021039467304944992, -0.0030845114961266518, 0.008025651797652245, 0.005308634135872126, -0.0035808896645903587, -0.012665481306612492, 0.00992756336927414, 0.021011602133512497, -0.012874482199549675, 0.0006683688843622804, 0.0013358668657019734, -0.029678190127015114, 0.004890631418675184, -0.01120247133076191, 0.015591500326991081, -0.033022210001945496, -0.011550807394087315, 0.0048070307821035385, -0.006771643180400133, -0.0021770973689854145, 0.005434034857898951, 0.02169433981180191, 0.011536873877048492, -0.03084859810769558, -0.006771643180400133, -0.01814131624996662, -0.0014734594151377678, 0.014532559551298618, -0.02474575862288475, 0.010394332930445671, -0.018935522064566612, 0.03196327015757561, 0.007705182768404484, -0.0014534301590174437, -0.02733737602829933, -0.019283857196569443, 0.029873257502913475, -0.018782254308462143, 0.005521118640899658, -0.0018113449914380908, 0.025038359686732292, -0.0004859281179960817, -0.004221827257424593, -0.028870051726698875, 0.010282865725457668, 0.005510668735951185, 0.0011094487272202969, -0.004190477076917887, -0.00010237799870083109, 0.0027832011692225933, -0.0012722956016659737, 0.01454649306833744, -0.0008477616938762367, -0.0031698537059128284, 0.009356292895972729, -0.021081268787384033, -0.0074265142902731895, 0.013550253584980965, 0.005388751160353422, -0.0035425727255642414, 0.005033448804169893, 0.056374628096818924, 0.034722089767456055, 0.010066897608339787, -0.002720500808209181, 0.006917944177985191, -0.011989709921181202, -0.027713578194379807, -0.01864291913807392, -0.0005360013456083834, 0.014421092346310616, 0.006430274341255426, -0.036867834627628326, -0.02978965826332569, 0.012818749062716961, 0.02729557454586029, 0.018127383664250374, 0.036617033183574677, -0.0018374701030552387, -0.009488660842180252, -0.0024000320117920637, 0.016956975683569908, 0.0011085779406130314, 0.028465982526540756, 0.010415233671665192, -0.0019489375408738852, 0.013055616989731789, 0.014107590541243553, 0.016162769868969917, -0.004981198813766241, -0.003967542201280594, -0.0065417420119047165, 0.001231366186402738, -0.042719874531030655, -0.006733326707035303, -0.021387804299592972, -0.007628548890352249, 0.01680370792746544, -0.010136565193533897, 0.02939952164888382, 0.006872660480439663, -0.02984539046883583, 0.023937620222568512, -0.014741561375558376, -0.0019297790713608265, 0.0024122237227857113, -0.024731826037168503, -0.00029782691854052246, -0.027811111882328987, -0.04210680350661278, -0.03873491659760475, 0.016218503937125206, 0.022279541939496994, 0.049965254962444305, -0.005409651435911655, 0.02445315755903721, 0.004775680601596832, 0.011613507755100727, -0.010018130764365196, 0.025874365121126175, -0.0220008734613657, 0.009328426793217659, -0.004389028064906597, 0.009091557934880257, 0.0016519813798367977, -0.0008756285533308983, -0.007531014736741781, -0.017138110473752022, 0.007510114926844835, -0.002429640619084239, -0.013369118794798851, 0.017319243401288986, 0.015591500326991081, 0.002034279750660062, -0.013578120619058609, -0.006743776611983776, 0.044168949127197266, 0.019562525674700737, -0.0003461584565229714, -0.0071617793291807175, 0.011390573345124722, 0.00023708590015303344, -0.014880895614624023, 0.002877251710742712, -0.012742115184664726, -0.006886593997478485, 0.0023355900775641203, 0.016218503937125206, 0.019116654992103577, -0.007050311658531427, 0.01306955050677061, -0.02310161478817463, 0.004521395545452833, 0.005994854960590601, -0.01004599779844284, 0.012721214443445206, 0.021513205021619797, 0.027184108272194862, -0.017277443781495094, 0.0021561970934271812, 0.008255552500486374, -0.0065417420119047165, 0.01112583838403225, -0.02409088797867298, 0.01715204305946827, 0.0011381864314898849, -0.009760362096130848, 0.00738471420481801, 0.0008190239896066487, 0.0021858057007193565, -0.012944149784743786, 0.028424182906746864, -0.018308516591787338, 0.001690298318862915, 0.03714650496840477, -0.025874365121126175, -0.016984842717647552, 0.025289161130785942, 0.0046746633015573025, -0.01270031463354826, 0.0008146698237396777, -0.003472905606031418, 0.017012709751725197, 0.0001767803041730076, 0.0055524688214063644, -0.620204508304596, -0.006977161392569542, 0.01234501227736473, -0.00758674880489707, 0.023909753188490868, 0.004855797626078129, 0.012080277316272259, 0.0010711319046095014, -0.012818749062716961, 0.04141013324260712, -0.007489214651286602, 0.033523816615343094, -0.020732933655381203, -0.015382498502731323, -0.009739462286233902, -0.030430594459176064, 0.0022136725019663572, -0.010115664452314377, 0.005925187841057777, 0.005716186482459307, -0.01240074634552002, -0.0006792543572373688, -0.008659621700644493, 0.012742115184664726, -0.01564723439514637, -0.030709262937307358, 0.05484195053577423, -0.0072941468097269535, -0.004193960223346949, 0.01610703580081463, -0.033412348479032516, 0.025080161169171333, 0.02710050716996193, -0.02310161478817463, 0.03865131363272667, 0.004723430145531893, -0.02255821041762829, 0.04494922235608101, 0.010561534203588963, 0.05567795783281326, -0.03589249774813652, 0.012477380223572254, 0.009203026071190834, 0.01172497496008873, -0.013299452140927315, -0.0039222585037350655, 0.022084474563598633, -0.007482247892767191, -0.016887309029698372, -0.022906547412276268, 0.033022210001945496, -0.016761908307671547, -0.028438115492463112, 0.01127213891595602, 0.012017576955258846, -0.01929778978228569, 0.01015049871057272, -0.04327721148729324, 0.00041996207437478006, -0.004897598177194595, -0.01995266042649746, 0.005900804419070482, -0.020579665899276733, -0.03580889478325844, -0.028229113668203354, 0.009516527876257896, -0.01800198294222355, -0.02659890428185463, -0.0024784074630588293, -0.010394332930445671, 0.020022328943014145, 0.01729137822985649, -0.006277007050812244, -0.01609310321509838, 0.0007419547764584422, 0.011989709921181202, 0.026821838691830635, 0.0028720267582684755, 0.002116138581186533, 0.0025654914788901806, 0.017472511157393456, -0.008060485124588013, -0.037620242685079575, -0.009481694549322128, 0.021861540153622627, 0.0119966771453619, -0.040574125945568085, 0.007955984212458134, 0.025957966223359108, -0.0048732147552073, 0.015619366429746151, 0.023728618398308754, -0.0027326925192028284, -0.022363143041729927, -0.007572815287858248, 0.039069317281246185, -0.0008077030652202666, 0.005730119999498129, -0.005583819001913071, -0.04793097451329231, -0.01332035195082426, -0.010554567910730839, 0.01779298111796379, 0.007698216009885073, 0.029371654614806175, 0.009209992364048958, -0.01454649306833744, -0.028034046292304993, 0.04118719696998596, -0.044977087527513504, 0.002603808417916298, -0.012184778228402138, -0.006900527514517307, -0.016915174201130867, 0.010436133481562138, -0.027058707550168037, 0.025679297745227814, 0.030207660049200058, 0.000671852205414325, -0.01234501227736473, -0.008875589817762375, -0.0199944619089365, 0.014630094170570374, 0.00758674880489707, 0.010561534203588963, 0.01102133747190237, 0.01809951663017273, -0.01570296660065651, 0.012226578779518604, 0.003803824307397008, -0.00907065812498331, -0.04765230417251587, 0.0006622729706577957, 0.003357954788953066, 0.01730531081557274, 0.009823063388466835, 0.007071211934089661, -0.00666017597541213, -0.004368127789348364, -0.018085582181811333, -0.010052964091300964, -0.0009222184307873249, -0.00036901800194755197, -0.00879895593971014, 0.007259313017129898, -0.020468197762966156, -0.023213082924485207, 0.009871830232441425, -0.025999765843153, -0.008785023353993893, -0.007489214651286602, 0.005423584952950478, 0.0006526937941089272, 0.0007092982996255159, 0.002809326397255063, 0.012365913018584251, 0.005608202423900366, -0.03670063614845276, -0.02333848364651203, -0.03664490208029747, 0.008513321168720722, 0.004134743008762598, -0.007231446448713541, 0.0011721492046490312, 0.008443654514849186, -0.0009587936219759285, -0.006388474255800247, -0.00829735305160284, 0.02115093544125557, -0.02984539046883583, -0.005538535304367542, -0.003547797678038478, -0.023714685812592506, 0.018712585791945457, -0.012616714462637901, 0.009237859398126602, -0.030012592673301697, 0.0022171558812260628, 0.006625342648476362, 0.01624637097120285, -0.00954439491033554, 0.00017275266873184592, -0.022725412622094154, -0.013870722614228725, 0.023018013685941696, -0.007621582131832838, 0.010039030574262142, 0.027462776750326157, -0.03455488756299019, 0.027030840516090393, -0.007670348975807428, 0.0016467564273625612, -0.015925902873277664, 0.021513205021619797, -0.027225907891988754, 0.04110359773039818, -0.007102562114596367, 0.026529235765337944, -0.009105491451919079, 0.005465385038405657, 0.013884655199944973, 0.00967676192522049, 0.003347504884004593, -0.010422199964523315, 0.0015927643980830908, 0.004758263938128948, 0.006001821719110012, -0.0365055687725544, 0.041019994765520096, 0.0074195475317537785, -0.010930770076811314, 0.02579076588153839, -0.022223809733986855, -0.0142469247803092, 0.0025184662081301212, 0.021708272397518158, 0.02420235425233841, 0.023728618398308754, -0.013710487633943558, -0.0024435739032924175, 0.017333177849650383, -0.03260421007871628, 0.05668116360902786, -0.0010981279192492366, -0.01179464254528284, 0.020119862630963326, 0.0054270680993795395, 0.026236634701490402, 0.004622412845492363, 0.0055594355799257755, -0.01564723439514637, 0.023909753188490868, 0.004413411486893892, -0.00279365130700171, 0.04885058104991913, 0.012923249043524265, -0.0018914621323347092, 8.713831630302593e-05, 0.03979385644197464, 0.0004715592658612877, 0.002548074582591653, 0.03934798389673233, 0.009683729149401188, -0.017179910093545914, 0.023631084710359573, 0.011780709028244019, 0.013682620599865913, -0.006897044368088245, -0.009384159930050373, 0.011578674428164959, 0.007962951436638832, -0.011515974067151546, -0.014003089629113674, -0.014616160653531551, 0.012365913018584251, -0.004876697901636362, 0.01850358583033085, 0.0023042396642267704, 0.033774618059396744, 0.020816532894968987, 0.009913629852235317, -0.016079170629382133, 0.033022210001945496, -0.004744330421090126, 0.011432372964918613, -0.0021196219604462385, -0.010666035115718842, -0.004354194737970829, 0.0013785379705950618, -0.021624671295285225, 0.016817640513181686, -0.027072640135884285, -0.0049324315041303635, 0.0018374701030552387, -0.007496181409806013, -0.004368127789348364, -0.0040650758892297745, 0.0032012038864195347, -0.007572815287858248, 0.03405328467488289, 0.0065696085803210735, -0.03210260719060898, 0.012338045984506607, 0.010415233671665192, 0.00711301201954484, 0.0004933302407152951, -0.013006850145757198, 0.006040138658136129, 0.004267110489308834, 0.029510989785194397, -0.004092942923307419, -0.003974508959800005, -0.011787675321102142, 0.007879350334405899, -0.0033840800169855356, 0.02565143071115017, 0.03285501152276993, -0.014560426585376263, -0.010443100705742836, 0.02350568398833275, -0.011892176233232021, 0.025832565501332283, -0.02810371294617653, -0.027713578194379807, 0.015312831848859787, -0.010317699052393436, -0.027908645570278168, -0.04968658462166786, -0.027420975267887115, -0.025567829608917236, 0.0037062903866171837, -0.021610738709568977, -0.01655290648341179, -0.023937620222568512, -0.009830029681324959, -0.00763551564887166, -0.026766104623675346, -0.013187984935939312, 0.014309625141322613, 0.004242727067321539, -0.012233545072376728, -0.015145630575716496, 0.012512213550508022, 0.011968810111284256, 0.08064664900302887, 0.020816532894968987, 0.006928394548594952, 0.01740284450352192, -0.015981635078787804, -0.014156357385218143, -0.016162769868969917, -0.033718883991241455, 0.04305427521467209, -0.02889791876077652, -0.015284964814782143, -0.014880895614624023, -9.045839397003874e-05, -0.013808022253215313, 0.009356292895972729, 0.00035900334478355944, -0.009495627135038376, -0.005214583594352007, 0.009711595252156258, -0.010895936749875546, 0.020969800651073456, -0.01327158510684967, 0.01081930287182331, 0.007767883129417896, 0.044977087527513504, 0.009655862115323544, 0.014741561375558376, 0.015284964814782143, 0.006137672811746597, -0.02064933255314827, -0.028075845912098885, 0.02159680426120758, 0.009920597076416016, 0.015716901049017906, -0.03135019913315773, 0.01769544743001461, -0.013459686189889908, 0.023561418056488037, -0.01115370448678732, 0.013668688014149666, 0.0058067538775503635, 0.03004045970737934, 0.006621859036386013, -0.000374025315977633, 0.019869061186909676, -0.023519616574048996, 0.008353087119758129, 0.031266599893569946, -0.01454649306833744, -0.008875589817762375, 0.006649726070463657, 0.03653343394398689, -0.017834780737757683, -0.007231446448713541, -0.040267590433359146, 0.011313939467072487, -0.012867515906691551, -0.0028128097765147686, -0.012261412106454372, -0.009718562476336956, -0.03218620643019676, -0.017974115908145905, -0.0014029215089976788, -0.0118782427161932, -0.007962951436638832, -0.031573135405778885, -0.024258088320493698, 0.001978545915335417, -0.011690141633152962, 0.01765364594757557, -0.013835888355970383, -0.04205106943845749, -0.01929778978228569, 0.023213082924485207, 0.041019994765520096, 0.009809129871428013, 0.00330570456571877, -0.02264181151986122, 0.0010397816076874733, 0.035167958587408066, 0.0019646126311272383, -0.014051856473088264, -0.0018618536414578557, -0.004490045364946127, 0.0002523255825508386, -0.0025515579618513584, -0.00034964183578267694, -0.00656264228746295, -0.0009265725966542959, 0.015716901049017906, -0.01340395212173462, -0.023714685812592506, 0.013919489458203316, 0.0024784074630588293, 0.035223692655563354, -0.008743222802877426, -0.0025341412983834743, 0.012491313740611076, 0.017138110473752022, -0.015967702493071556, 0.0222516767680645, -0.018935522064566612, -0.017221709713339806, -0.024857226759195328, 0.017430711537599564, 0.011453273706138134, 0.007301113568246365, 0.003415430197492242, 0.009516527876257896, 0.007837549783289433, -0.012240511365234852, 0.0004571904428303242, -2.2396889107767493e-05, -0.013417885638773441, 0.005845070816576481, -0.006360607221722603, 0.004493528977036476, 0.01614883728325367, 0.013905555941164494, -0.014267824590206146, -0.0038804581854492426, -0.007043345365673304, 0.021415671333670616, -0.022014807909727097, -0.018406052142381668, 0.013870722614228725, 0.012275345623493195, -0.022906547412276268, -0.020175596699118614, 0.009488660842180252, -0.013954322785139084, 0.018907655030488968, 0.006841310299932957, -0.0008447137661278248, -0.012672447599470615, 0.004085976164788008, 0.013905555941164494, 0.013445752672851086, 0.00563606945797801, -0.008987057954072952, -0.024982627481222153, 0.016915174201130867, 0.0013654754729941487, -0.008387920446693897, -0.0007376005523838103, -0.02884218469262123, -0.017012709751725197, 0.0033266046084463596, -0.0015082929749041796, 0.01815524883568287, 0.005820687394589186, 0.0011416698107495904, -0.013919489458203316, -0.005862487480044365, -0.01610703580081463, -0.02319914847612381, -0.02889791876077652, -0.01029679924249649, 0.03728583827614784, 0.01665044017136097, -0.005033448804169893, -0.0075519150123000145, 0.024481022730469704, -0.008471520617604256, 0.0009631478460505605, -0.008778056129813194, -0.03084859810769558, -0.01620457135140896, -0.005395717918872833, 0.006430274341255426, 0.013891622424125671, 0.008659621700644493, -0.004967265296727419, -0.010791435837745667, -0.007001544814556837, 0.01595376804471016, -0.006956261117011309, -0.004469145089387894, -0.013445752672851086, -0.049324315041303635, -0.031378068029880524, 0.025874365121126175, -0.0004110359586775303, -0.007147845812141895, -0.032576341181993484, 0.0204960647970438, 0.014978429302573204, 0.0014464634004980326, 0.02445315755903721, -0.006517358589917421, 0.007544948253780603, 0.0010432649869471788, 0.018378185108304024, -0.001983771100640297, 0.017124176025390625, -0.01780691370368004, -0.005336500704288483, -0.039821721613407135, 0.0026508336886763573, 0.009648894891142845, 0.01929778978228569, 0.006879627238959074, 0.002652575261890888, 0.00954439491033554, -0.002413965528830886, 0.02914872020483017, -0.019966594874858856, -0.036979302763938904, 0.008966157212853432, -0.005907771177589893, -0.005395717918872833, -0.021318135783076286, -0.02464822493493557, 0.0028215181082487106, -0.020579665899276733, -0.0032081706449389458, 0.001339350244961679, 0.013187984935939312, -0.03435982018709183, -0.006820410490036011, 0.008457587100565434, 0.02474575862288475, 0.021680405363440514, 0.022627878934144974, 0.019813327118754387, 0.0002412223839201033, 0.0049498481675982475, -0.01933959126472473, -0.023185215890407562, -0.009119424968957901, 0.018183115869760513, 0.008053517900407314, 0.0464818961918354, -0.0011050945613533258, -0.006994578056037426, 0.011759808287024498, 0.014476826414465904, -0.014379291795194149, -0.03288287669420242, 0.02350568398833275, 0.019910860806703568, 0.010310732759535313, -0.013808022253215313, -0.013912522234022617, -0.010833236388862133, 0.02604156732559204, -0.005960021633654833, 0.030319128185510635, 0.010659067891538143, -0.0041695768013596535, -0.021109135821461678, 0.045422956347465515, 0.006085422355681658, 0.023463884368538857, 0.026083366945385933, 0.01045006699860096, -0.01102133747190237, -0.015605432912707329, 0.0002113961527356878, -0.012477380223572254, 0.010721768252551556, -0.0034206551499664783, -0.01744464598596096, 0.02014772966504097, 0.009955430403351784, 0.013738354668021202, 0.010018130764365196, -0.016636505722999573, -0.0052912174724042416, 0.03508435934782028, -0.011752841994166374, 0.005245933774858713, 0.020955868065357208, -0.0169987753033638, 0.023812219500541687, -0.05289127305150032, 0.0031123782973736525, 0.01019926555454731, -0.021917274221777916, 0.0012531372485682368, 0.021415671333670616, -0.0020551797933876514, -0.0050647989846765995, -0.0026421253569424152, 0.005343467462807894, 0.0020133794751018286, -0.005716186482459307, -0.0012331078760325909, 0.007032894995063543, -0.031573135405778885, -0.03313367813825607, -0.010937736369669437, 0.01279784832149744, 0.0020307963714003563, -0.0003372323699295521, -0.009892730042338371, 0.0024104821495711803, 0.03508435934782028, -0.018712585791945457, 0.0037480907049030066, 0.002680442063137889, 0.022878680378198624, -0.06130705773830414, 0.02654317021369934, -0.004469145089387894, -0.01019926555454731, 0.015354631468653679, -0.0038909083232283592, -0.038623448461294174, -0.003274354385212064, 0.018183115869760513, 0.0018653369043022394, 0.010066897608339787, 0.00972552876919508, 0.010861102491617203, 0.01010173186659813, 0.010728735476732254, -0.013501486741006374, -0.045422956347465515, 0.002920793602243066, -0.02434168942272663, 0.007301113568246365, 0.028535649180412292, -0.0060645220801234245, 0.023185215890407562, -0.014992362819612026, 0.01152294036000967, 0.009830029681324959, -0.03160100430250168, -0.02939952164888382, -0.015884101390838623, -0.0023530067410320044, -0.012574913911521435, -0.03310581296682358, 0.012024544179439545, -0.0015230972785502672, -0.009084591642022133, 0.0061899228021502495, 0.010937736369669437, 0.011857342906296253, 0.011989709921181202, -0.003398013534024358, 0.027671776711940765, 0.0002821517991833389, -0.013362152501940727, -0.019130589440464973, -0.02613910101354122, -0.012909316457808018, -0.022432809695601463, -0.01224747858941555, -0.015925902873277664, 0.014365358278155327, 0.023115547373890877, -0.006214306689798832, -0.031266599893569946, -0.012017576955258846, -0.046816300600767136, -0.0015962477773427963, -0.04369521513581276, 0.02760211005806923, 0.025721097365021706, 0.003183786990121007, 0.030514195561408997, 0.011453273706138134, -0.011404506862163544, 0.012268378399312496, 0.0049219815991818905, 0.0036575235426425934, 0.009007957763969898, -0.02480149269104004, 0.0209976676851511, -0.018531452864408493, -0.05082912743091583, -0.0029033769387751818, 0.018656853586435318, 0.00037554927985183895, 0.03845624625682831, 0.011369672603905201, -0.01844785176217556, -0.02014772966504097, -0.005723153240978718, 0.016608640551567078, 0.018810121342539787, 0.028619250282645226, 0.02090013399720192, -0.034527022391557693, -0.013264617882668972, 0.028410248458385468, 0.01804378256201744, -0.005869454238563776, 0.015284964814782143, 0.00952349416911602, 0.011752841994166374, 0.008457587100565434, -0.013842855580151081, -0.03795464336872101, -0.0034014969132840633, -0.00645117461681366, 0.01929778978228569, 0.004368127789348364, -0.012672447599470615, 0.01081930287182331, 0.00645117461681366, -0.011439340189099312, -0.000842972076497972, 0.00932145956903696, -0.0026456087362021208, -0.014058823697268963, 0.021178802475333214, -0.006649726070463657, -0.012679414823651314, -0.0013585087144747376, 0.01392645575106144, 0.007705182768404484, -0.01730531081557274, -0.01904698833823204, -0.0049393982626497746, 0.0020778216421604156, -0.014574360102415085, 0.003957091830670834, -0.010108698159456253, 0.0001085827243514359, -0.009265726432204247, 0.004389028064906597, -0.020078061148524284, 0.006980644538998604, -0.012930216267704964, 0.0005281638004817069, 0.001218303688801825, -0.01192700956016779, -0.0029869775753468275, -0.04344440996646881, 0.0036017897073179483, 0.010979536920785904, -0.020287062972784042, 0.0013663462596014142, 0.20677198469638824, -0.005099632777273655, -0.009892730042338371, 0.013982189819216728, -0.01070086844265461, -0.005266833584755659, -0.013654754497110844, 0.012909316457808018, 0.005423584952950478, -0.0051901997067034245, 0.02795044519007206, -0.001313225133344531, 0.004162610042840242, 0.00016437083831988275, -0.00039557856507599354, -0.015480032190680504, -0.042413339018821716, -0.03561382740736008, -0.019757593050599098, 0.0007689507328905165, 0.005040415562689304, -0.025386696681380272, -0.004402961581945419, 0.011432372964918613, 0.019033055752515793, 0.029120853170752525, -0.005615169182419777, 0.013111351057887077, 0.028814317658543587, 0.028270915150642395, -0.030625663697719574, -0.0018862370634451509, 0.021513205021619797, 0.006095872260630131, 0.007245379965752363, -0.015814434736967087, 0.016329972073435783, -0.01690124161541462, 0.022655745968222618, 0.004841864574700594, -0.018433917313814163, -0.01444895938038826, 0.03625476732850075, -0.03664490208029747, 0.02364501729607582, 0.003702807007357478, -0.002347781788557768, -0.017709380015730858, 0.045868828892707825, 0.02588829956948757, -0.00038621705607511103, 8.116490789689124e-06, 0.024369556456804276, -0.00156228500418365, -0.00016513283480890095, -0.008861657232046127, -0.00859692133963108, 0.022739345207810402, -0.008666588924825191, 0.02669643796980381, -0.005984405055642128, -0.011313939467072487, 0.004253177437931299, -0.009711595252156258, -0.033913951367139816, 0.004120809957385063, 0.008994024246931076, 0.019019121304154396, 0.003692357102409005, 0.011940943077206612, 0.004009342286735773, -0.019813327118754387, -0.03828904405236244, -0.0020900133531540632, -0.013215851038694382, -0.03040272742509842, 0.008840756490826607, 0.01377318799495697, 0.03335661441087723, 0.01759791187942028, -7.924633973743767e-05, 0.0068169268779456615, -0.0025428496301174164, -0.0011573449010029435, 0.002232830971479416, -0.022279541939496994, 0.04425255209207535, -0.0026978589594364166, 0.0045597124844789505, -0.0027727510314434767, -0.016065236181020737, -6.944940105313435e-05, -0.008290386758744717, -0.006670625880360603, -0.009203026071190834, -0.006632308941334486, 0.010937736369669437, 0.01869865320622921, -0.00738471420481801, -0.004897598177194595, -0.02254427783191204, 0.0450049564242363, 0.03059779666364193, -0.001868820283561945, -0.02074686624109745, 0.006402407772839069, 0.013257651589810848, 0.020217396318912506, -0.0025567831471562386, 0.011077070608735085, -0.01959039270877838, -0.01377318799495697, 0.017820848152041435, 0.009565294720232487, 0.013327319175004959, 0.00532605079934001, -0.0015439974376931787, -0.026738237589597702, 0.0052947006188333035, 0.021680405363440514, 0.022488543763756752, -0.028535649180412292, -0.0027152756229043007, 0.022418877109885216, -0.005099632777273655, -0.03040272742509842, -0.008457587100565434, 0.013738354668021202, -0.006778609938919544, -0.029928991571068764, 0.022363143041729927, 0.0005590785876847804, 0.022822946310043335, -0.005900804419070482, -0.015089896507561207, -0.02119273506104946, 0.021039467304944992, -0.038567714393138885, 0.0020395047031342983, 0.0006239560898393393, 0.003035744419321418, -0.013076516799628735, 0.03065352886915207, 0.011446306481957436, -0.00676119327545166, 0.002349523361772299, -0.002196255838498473, 0.011383606120944023, -0.019966594874858856, -0.03544662892818451, 0.006583542097359896, -0.00038621705607511103, 0.002563749672845006, -0.020119862630963326, 0.034471288323402405, -0.015284964814782143, -0.01894945465028286, -0.020579665899276733, 0.02870285138487816, -0.006956261117011309, -0.026264501735568047, 0.01769544743001461, 0.026863638311624527, 0.009453827515244484, -0.03527942672371864, -0.01904698833823204, -0.17857074737548828, -0.002539366250857711, 0.008541188202798367, -0.015605432912707329, -0.008931323885917664, 0.015507899224758148, -0.0037132571451365948, 0.004455212038010359, -0.006012272089719772, -0.018963389098644257, 0.031378068029880524, 0.0019802877213805914, -0.021973008289933205, -0.012122077867388725, 0.005956538021564484, -0.010464000515639782, 0.00043585489038378, 0.008764122612774372, 0.029566721990704536, 0.01476942840963602, 0.030179793015122414, -0.026236634701490402, 0.011585640721023083, -0.00507524935528636, 0.0006953648990020156, 0.031071532517671585, -0.01709630899131298, 0.007377747446298599, 0.015006296336650848, -0.02795044519007206, -0.004730396904051304, 0.008582988753914833, 0.008603888563811779, -0.0005560306599363685, -0.007600681856274605, -0.0012714248150587082, -0.0012252703309059143, -0.014407158829271793, 0.006524325348436832, 0.029817525297403336, 0.02965032309293747, 0.007133912295103073, 0.01605130359530449, 0.003883941564708948, -0.013313385657966137, 0.027114439755678177, 0.03734157234430313, -0.010679968632757664, 0.010470966808497906, -0.014685827307403088, -0.009286626242101192, -0.028020113706588745, -0.02470395900309086, -0.006621859036386013, 0.03168460354208946, -0.013090450316667557, 0.01755611225962639, 0.006217789836227894, 0.014407158829271793, 0.002241539303213358, -0.008025651797652245, -0.021819740533828735, -0.005918221082538366, 0.005346951074898243, -0.03486142307519913, -0.029176587238907814, 6.47686465526931e-05, 0.026975106447935104, -0.012205678038299084, 0.021513205021619797, 0.001769544673152268, 0.011404506862163544, -0.013557219877839088, 0.007593715097755194, 0.02519162744283676, 0.01570296660065651, -0.03171246871352196, 0.00794901791960001, 0.01933959126472473, -0.005956538021564484, 0.010415233671665192, 0.020718999207019806, -0.015786567702889442, -0.014393225312232971, -0.0182527843862772, -0.000857340928632766, 0.0019001704640686512, 0.006802993826568127, -0.010073864832520485, -0.015884101390838623, 0.019158456474542618, -0.007301113568246365, 0.015911968424916267, 0.0036505567841231823, 0.012031510472297668, 0.02034279704093933, 0.019534658640623093, -0.01950679160654545, 0.02215414121747017, -0.03945945203304291, -0.00243660737760365, -0.007893283851444721, -0.024773625656962395, 0.028061913326382637, 0.009335393086075783, 0.025386696681380272, 0.00763551564887166, -0.006604442372918129, 0.0010554568143561482, -0.028034046292304993, -0.013884655199944973, 0.008889523334801197, 0.02414662204682827, -0.014783360995352268, -0.02824304811656475, 0.029176587238907814, -0.001941970782354474, -0.017514312639832497, 0.013919489458203316, 0.004625896457582712, 0.07830583304166794, -0.017319243401288986, -0.009216958656907082, 0.002168388804420829, -0.002555041341111064, -0.03135019913315773, -0.1045006662607193, -0.01620457135140896, 0.023408150300383568, 0.017681512981653214, -0.02370075136423111, 0.019186323508620262, -0.006987611297518015, 0.026877572759985924, 0.012888415716588497, 0.015591500326991081, -0.010854136198759079, -0.030681395903229713, -0.006130706053227186, 0.0038665246684104204, 0.012289279140532017, -0.01367565430700779, -0.0028389347717165947, -0.010491867549717426, -0.0008808535640127957, 0.03826117888092995, 0.003957091830670834, -0.005009065382182598, 0.009537427686154842, 0.003323121229186654, -0.029678190127015114, -0.01950679160654545, -0.03853984549641609, 0.011481139808893204, 0.02190333977341652, 0.016636505722999573, 0.055120620876550674, -0.004671180155128241, 0.026222702115774155, -0.010310732759535313, -0.014435025863349438, 0.003321379655972123, -0.02978965826332569, -0.007447414565831423, 0.012421646155416965, -0.04213466867804527, -0.004960298538208008, 0.021109135821461678, 0.010394332930445671, -0.0365055687725544, -0.005907771177589893, -0.0011660533491522074, -0.010575467720627785, 0.027825044468045235, 0.0024331239983439445, -0.03424835205078125, 0.0031524368096143007, -0.004584095906466246, -0.025219494476914406, -0.050661925226449966, 0.019464991986751556, -0.011509006842970848, 0.0044447616674005985, -0.005249416921287775, -0.003396271727979183, -0.009934530593454838, -0.01387768890708685, -0.01332035195082426, 0.007217512931674719, 0.014030956663191319, 0.008715355768799782, 0.010032064281404018, -0.01970185898244381, -0.010241065174341202, 0.0030235527083277702, 0.014114556834101677, -0.007663382217288017, -0.007308080326765776, -0.029120853170752525, 0.01945105753839016, -0.02239101007580757, 0.0007985592819750309, -0.00727324653416872, -0.01337608601897955, -0.0035512810572981834, 0.009711595252156258, -0.012909316457808018, -0.017514312639832497, 0.021471403539180756, -0.015730833634734154, 0.0015901518054306507, -0.0012862291187047958, 0.00937719363719225, -0.010965603403747082, 0.009000991471111774, -0.04096426069736481, 0.009189092554152012, 0.009293592534959316, 0.009209992364048958, -0.014671893790364265, -0.01939532347023487, -0.0049393982626497746, 0.020231328904628754, 0.0055594355799257755, 0.017277443781495094, 0.00152483896818012, -0.0142469247803092, 0.0052912174724042416, -0.05489768460392952, 0.007301113568246365, 0.011836442165076733, 0.01800198294222355, -0.004239243920892477, -0.029288053512573242, 0.011007403954863548, -0.0061620562337338924, 0.0011347030522301793, 0.008889523334801197, -0.005489768460392952, 0.03243700787425041, -0.012156911194324493, 0.006109805777668953, -0.019966594874858856, -0.026989039033651352, 0.03238127380609512, -0.0077887834049761295, 0.010854136198759079, -0.0066636595875024796, -0.03265994414687157, -0.006081938743591309, -0.0019437124719843268, 0.012365913018584251, -0.009634961374104023, 0.011704075150191784, -0.016065236181020737, -0.0025672330521047115, -0.007391680497676134, -0.03619903326034546, 0.015563633292913437, -0.014393225312232971, 0.015034163370728493, 0.02134600281715393, -0.002727467566728592, -0.034220486879348755, -0.0027727510314434767, 0.0096210278570652, 0.004364644642919302, 0.007719116285443306, -0.008227686397731304, -0.010847169905900955, 0.03728583827614784, -0.016065236181020737, -0.001536159892566502, -0.01589803583920002, -0.02470395900309086, 0.0006997190648689866, -0.01715204305946827, 0.013752288185060024, 0.016761908307671547, 0.0072941468097269535, -0.04614749550819397, -0.025679297745227814, 0.008360053412616253, 0.0001190872208098881, 0.010847169905900955, 0.021011602133512497, -0.0017425486585125327, 0.0034415554255247116, 0.02810371294617653, 0.005869454238563776, 0.021234536543488503, -0.014365358278155327, 0.013543286360800266, -0.0076773157343268394, -0.03728583827614784, 0.004110359586775303, 0.009690695442259312, -0.027922578155994415, -0.02094193361699581, 0.0012034993851557374, 0.01694304123520851, 0.017082376405596733, -0.01454649306833744, 0.00138376303948462, -0.019033055752515793, -0.017667580395936966, -0.011411473155021667, 0.029510989785194397, 0.01900518871843815, -0.008541188202798367, -0.013940389268100262, 0.018085582181811333, 0.006538258399814367, 0.0011016111820936203, -0.014260858297348022, 0.029009385034441948, 0.009398093447089195, 0.006019238382577896, -0.03380248323082924, 0.007600681856274605, -0.003915291745215654, -0.005092666018754244, 0.01719384267926216, 0.01789051480591297, -0.017486445605754852, 0.008192852139472961, 0.00819981936365366, 0.0119966771453619, -0.024829359725117683, 0.011731942184269428, 0.012087244540452957, -0.004141709767282009, -0.03084859810769558, -0.012581880204379559, -0.006486008409410715, -0.016929108649492264, 0.014574360102415085, 0.000937893521040678, 0.014086690731346607, -0.00152483896818012, 0.008791989646852016, 0.00895222369581461, -0.011488107033073902, -0.008123185485601425, 0.01669223979115486, -0.03578102961182594, -0.03260421007871628, 0.025289161130785942, 0.02824304811656475, 0.026584969833493233, 0.004820964299142361, -0.010213199071586132, 0.04168879985809326, -0.0003766378213185817, 0.016887309029698372, -0.019562525674700737, -0.0013210626784712076, -0.0024679575581103563, 0.002882476896047592, -0.014588293619453907, -0.003540830919519067, -0.015089896507561207, -0.021485337987542152, 0.005315600894391537, -0.004737363662570715, 0.020259195938706398, -0.005204133223742247, 0.0959734171628952, 0.02644563652575016, -0.013919489458203316, -0.00032003328669816256, -0.009962397627532482, 0.030458461493253708, 0.018071649596095085, 0.03146166726946831, -0.010415233671665192, -0.009614061564207077, 0.010303766466677189, 0.0024418323300778866, 0.007531014736741781, -0.015159564092755318, -0.02659890428185463, -0.0004291058867238462, -0.0009230892756022513, 0.003685390343889594, 0.00997633021324873, -0.0033422796986997128, -0.001641531358473003, -0.005057832226157188, -0.003971025347709656, 0.002389581874012947, -0.02779717743396759, -0.004800064023584127, -0.0008481970871798694, 0.020983735099434853, -0.019214190542697906, -0.028117647394537926, 0.01297201681882143, -0.02205660752952099, -0.03770384192466736, -0.022223809733986855, -0.01479729451239109, 0.00568831991404295, -0.015730833634734154, -0.030235527083277702, -0.012930216267704964, 0.015758700668811798, -0.0113766398280859, 0.011362706311047077, -0.025581764057278633, -0.034220486879348755, 0.016622573137283325, -0.012714248150587082, 0.004274077247828245, -0.01639963872730732, -0.0006030559306964278], "1a0b3f07-7ee5-4183-937e-6de0d1c392c6": [-0.011632062494754791, -0.023991558700799942, 0.01601724699139595, -0.020189691334962845, 0.0027913518715649843, 0.03752455487847328, 0.019407358020544052, -0.022989623248577118, -0.009147810749709606, -0.03532852977514267, 0.007754708640277386, 0.020285768434405327, 0.004042055923491716, -0.017142709344625473, 0.001193230040371418, 0.0011503389105200768, 0.0232915747910738, -0.015125112608075142, -0.01961323618888855, -0.007061588577926159, -0.021164176985621452, -0.0014351357240229845, -0.02912476286292076, 0.02076614834368229, -0.029536517336964607, 0.013361431658267975, 0.008447828702628613, -0.016730954870581627, -0.007418442517518997, 0.006550326943397522, 0.011240895837545395, 0.0033180543687194586, -0.030414927750825882, -0.006039064843207598, -0.02890516072511673, -0.022989623248577118, 0.013052615337073803, -0.017540737986564636, 0.02064262144267559, -0.018309347331523895, 0.024169985204935074, 0.001365652191452682, 0.012455571442842484, -0.016154499724507332, -0.016978006809949875, 0.02937181666493416, -0.017842691391706467, -0.0016573115717619658, -0.0215759314596653, 0.026956189423799515, -0.005767993163317442, -0.014246703125536442, -0.008317439816892147, 0.00684198597446084, 0.006011614575982094, -0.01682703197002411, -0.005424864590167999, 0.008852720260620117, 0.026585610583424568, -0.0041861701756715775, 0.00205534091219306, -0.0014274154091253877, -0.017485838383436203, 0.014205527491867542, -0.015276089310646057, -0.020532820373773575, -0.0051709492690861225, -0.005582703743129969, -0.005579272750765085, -0.0007270039059221745, 0.054543737322092056, 0.03049727901816368, 0.020532820373773575, -0.016676055267453194, 0.0005065437289886177, -0.021809259429574013, -0.013121240772306919, -0.014850609935820103, -0.007885097526013851, 0.015413341112434864, 0.02029949426651001, -0.00959387794137001, -0.010067395865917206, 0.007775295991450548, 0.02320922538638115, 0.02898751199245453, 0.03181489184498787, -0.009772305376827717, -0.012915363535284996, 0.006872867699712515, 0.0010302439332008362, 0.009374275803565979, 0.03165018931031227, 0.026530710980296135, 0.015605492517352104, 0.0004919607890769839, 0.015701569616794586, 0.033681511878967285, -0.0010336751583963633, -0.020066166296601295, -0.0050645796582102776, -0.020958300679922104, -0.02552877552807331, -0.01312810368835926, -0.029097313061356544, -0.011549712158739567, 0.017801515758037567, -0.010156609117984772, 0.008358614519238472, 0.0028685559518635273, -0.021809259429574013, 0.027477744966745377, -0.011934015899896622, -0.0029251722153276205, 0.0034192774910479784, -0.01400651317089796, 0.0028308117762207985, -0.042383257299661636, -0.012043816968798637, -0.03694809600710869, 0.029728669673204422, 0.01717015914618969, 0.040187232196331024, -0.028383605182170868, 0.011707550846040249, 0.030607080087065697, 0.01579764485359192, -0.011481085792183876, 0.000809354824014008, -0.012071267701685429, -0.01652507856488228, 0.002612924901768565, 0.02381313033401966, 0.0042479331605136395, -0.005260162986814976, 0.00929192453622818, -0.03488932549953461, -0.0031361961737275124, -0.015646668151021004, -0.02843850664794445, 0.019091680645942688, 0.02171318419277668, 0.01725251041352749, -0.00826253928244114, -6.213846063474193e-05, 0.04191660135984421, 0.023909207433462143, 0.0015835389494895935, 0.0058091687969863415, 0.01751328818500042, 0.010870316997170448, -0.01828189752995968, -0.00914094876497984, 0.010733065195381641, -0.013869261369109154, 0.008440965786576271, 0.007397854700684547, 0.012558510527014732, -0.014232978224754333, 0.0017096387455239892, -0.006316999439150095, 0.0014497187221422791, 0.006951787509024143, 0.002612924901768565, 0.004079800099134445, 0.034587372094392776, 0.0016367238713428378, -0.02890516072511673, -0.012050679884850979, -0.023264124989509583, 0.0005760273197665811, 0.024897417053580284, -0.020162241533398628, 0.02217983826994896, 0.00995759479701519, -0.012153618037700653, -7.387989899143577e-05, 0.0022938153706490993, -0.007480205502361059, -0.03782650828361511, 0.03294035419821739, -0.02209748700261116, -0.000689688662532717, 0.028191452845931053, -0.0125653725117445, -0.021177902817726135, 0.023442551493644714, 0.0017568188486620784, 0.0018443167209625244, -0.0018134351121261716, -0.001227542874403298, 0.01406827662140131, -0.009202711284160614, -0.009772305376827717, -0.6153258085250854, -0.012935951352119446, 0.002961200661957264, -0.014631007798016071, 0.003956273663789034, 0.00018700513464864343, 0.020615171641111374, -0.02132887952029705, -0.006752772722393274, 0.032144296914339066, 0.006406212691217661, 0.017870143055915833, -0.017705440521240234, -0.01108991913497448, -0.014672182500362396, -0.01047228742390871, 0.0021754358895123005, -0.02038184367120266, 0.01023209746927023, 0.011494811624288559, -0.025885628536343575, -0.0005498637328855693, 0.007644907105714083, 0.0037675530184060335, -0.012929089367389679, -0.03357171267271042, 0.04383812099695206, 0.008276264183223248, -0.00036285858368501067, 0.018776001408696175, -0.03985782712697983, 0.026366008445620537, 0.01819954626262188, -0.01318986713886261, 0.03189724311232567, 0.0003978148160967976, -0.020203417167067528, 0.03774415701627731, 0.0001962267269846052, 0.05284181982278824, -0.033379558473825455, -0.00961446575820446, 0.02449938841164112, -0.00021745781123172492, -0.001964411698281765, -0.00436802813783288, -0.00185975746717304, 0.004779782611876726, -0.01468590833246708, -0.017746616154909134, -0.0010268125915899873, -0.007590006571263075, -0.024087633937597275, 0.006636108737438917, -0.007891959510743618, -0.006135141011327505, 0.012668311595916748, -0.026956189423799515, 0.0032339878380298615, 0.0006026197806932032, -0.000669100962113589, 0.008633118122816086, -0.018817177042365074, -0.02514447085559368, -0.04704980552196503, -0.0028033615089952946, -0.008152737282216549, -0.00350162829272449, 0.004268520977348089, -0.006529739126563072, 0.027271868661046028, -0.001031101681292057, -0.01231145765632391, -0.002211464336141944, -0.006502288859337568, 0.011336972005665302, 0.024005282670259476, -0.011865390464663506, 0.02454056404531002, 0.004429791588336229, 0.02017596736550331, -0.018405422568321228, -0.007246877998113632, -0.023662155494093895, 0.029399266466498375, 0.022770019248127937, -0.019215207546949387, -0.008969384245574474, 0.0063101365230977535, -0.005102323833853006, 0.004910171497613192, 0.027628721669316292, -0.01605842262506485, -0.027971850708127022, -0.011604612693190575, 0.030826682224869728, -0.015591767616569996, -0.01399965025484562, -0.004028331022709608, -0.038348063826560974, -0.010307585820555687, -0.028109101578593254, 0.006608658470213413, 0.006485132500529289, 0.023483727127313614, 0.006224354263395071, -0.03189724311232567, -0.020011264830827713, 0.04103819280862808, -0.032995253801345825, 0.01399965025484562, -0.008955658413469791, -0.008187050931155682, -0.017581913620233536, 0.02403273433446884, -0.02351117879152298, 0.024142535403370857, 0.01692310720682144, 0.007157664746046066, -0.026516985148191452, -0.00044906968832947314, -0.0013073203153908253, 0.027628721669316292, 0.010444837622344494, 0.012071267701685429, 0.012414395809173584, 0.015770195052027702, -0.01437023002654314, 0.007109626661986113, 0.0030521296430379152, 0.010204647667706013, -0.028465956449508667, -0.005260162986814976, -0.006395918782800436, 0.027560096234083176, 0.015687843784689903, 0.014164352789521217, -0.007747845724225044, 0.015701569616794586, -0.01935245841741562, -0.006622383836656809, 0.0051091862842440605, 0.0033849645406007767, -0.009641916491091251, -0.004721450619399548, -0.03165018931031227, -0.012620273046195507, 0.01751328818500042, -0.01410945225507021, -0.018405422568321228, -0.027862049639225006, 0.014219253323972225, -0.012585960328578949, 0.009724266827106476, 0.0028067927341908216, 0.007590006571263075, -0.007864509709179401, -0.0389794185757637, -0.013532995246350765, -0.041395045816898346, 0.0033043292351067066, 0.035273630172014236, -0.015591767616569996, 0.001988430740311742, -0.016223125159740448, -0.00011655652633635327, -0.0008170751971192658, -0.0003926678909920156, -0.0007780442829243839, -0.01906423084437847, 0.010218372568488121, -0.020889675244688988, -0.025034669786691666, 0.015605492517352104, -0.03088158182799816, 0.01631920039653778, 6.735240845046064e-07, 0.0055929976515471935, 0.01370455976575613, -0.002630081493407488, 0.0002569176140241325, -0.004505279939621687, -0.015687843784689903, -0.002347000176087022, 0.03348936140537262, 0.0037401027511805296, 0.013581033796072006, -0.008276264183223248, -0.013608483597636223, 0.03250114992260933, -0.015056487172842026, 0.005122911185026169, -0.002985219703987241, 0.0286032073199749, -0.03423051908612251, 0.02029949426651001, -0.01686820574104786, 0.024403313174843788, -0.015646668151021004, 0.026269933208823204, 0.018981879577040672, 0.015989797189831734, 0.0013716568937525153, 0.00247395783662796, -0.0012301163515076041, -0.008770368993282318, 0.009641916491091251, -0.018570125102996826, 0.028411054983735085, 0.0067150285467505455, -0.008173325099050999, 0.0012627135729417205, -0.011776176281273365, -0.0286855585873127, 0.00367147708311677, 0.019475985318422318, 0.013395744375884533, 0.03096393309533596, -0.0032099690288305283, -0.0062620984390378, 0.010904629714787006, -0.002005587099120021, 0.044469479471445084, -0.00021627830574288964, 0.02132887952029705, 0.03832061216235161, 0.004319990053772926, 0.024595465511083603, -0.0020793599542230368, 0.00025477304006926715, 0.007267465814948082, 0.0232915747910738, 0.02650325931608677, 0.0004816669097635895, 0.05190850794315338, 0.007692945189774036, 0.012881050817668438, 2.132826239176211e-06, 0.047900766134262085, 0.0012009504716843367, 0.01081541646271944, 0.024993494153022766, -0.004834683146327734, -0.02530917152762413, 0.015166288241744041, -0.010335036553442478, 0.012668311595916748, 0.015289814211428165, 0.0021651419810950756, 0.00877723190933466, 0.003647458041086793, -0.011199720203876495, 0.014205527491867542, -0.01755446381866932, 0.016813306137919426, 0.0020913693588227034, 0.01896815374493599, 0.014493755996227264, 0.015619218349456787, 0.022728845477104187, 0.024911142885684967, -0.01552314218133688, 0.024430762976408005, -0.006128278560936451, 0.03074433095753193, 0.009731129743158817, 0.0035891260486096144, -0.032226648181676865, 0.005122911185026169, -0.0116457873955369, 0.01113109476864338, -0.017101533710956573, -0.008722331374883652, -0.02141123078763485, -0.010705615393817425, 0.00718511501327157, -0.011282071471214294, 0.02137005515396595, -0.019681861624121666, 0.021946510300040245, -0.00596357649192214, -0.048751723021268845, 0.04334401711821556, 0.012277144938707352, -0.005603291559964418, -0.00869488064199686, -0.017993668094277382, 0.003100167727097869, -0.013882987201213837, 0.0125653725117445, -0.015907445922493935, -0.009374275803565979, -0.015399615280330181, 0.002027890644967556, 0.00542829604819417, 0.0286855585873127, 0.05418688431382179, -0.010595814324915409, 0.006358174607157707, -0.010506600141525269, 0.0019489709520712495, 0.02581700310111046, -0.030936483293771744, -0.032226648181676865, 0.004052349831908941, -0.015879996120929718, -0.03812846168875694, -0.05665741115808487, -0.03648144379258156, -0.008688018657267094, 0.0044984170235693455, -0.03908922150731087, -0.023099424317479134, -0.02217983826994896, -0.012263419106602669, 0.010973255150020123, -0.012146756052970886, 0.005503784399479628, 0.018679926171898842, 0.0066532655619084835, -0.03126588463783264, -0.01704663410782814, 0.013114378787577152, 0.029262015596032143, 0.07944115251302719, 0.015866270288825035, -0.008838995359838009, 0.009326238185167313, -0.01575646921992302, -0.013718284666538239, -0.00965564139187336, -0.0304423775523901, 0.03763435408473015, -0.008859583176672459, -0.009415451437234879, -0.0017362311482429504, 0.012997714802622795, -0.023140598088502884, 0.01045169960707426, 0.009717404842376709, -0.006612089928239584, -0.0030641392804682255, 0.01323104277253151, -0.002180582843720913, 0.03217174485325813, -0.01513883750885725, 0.016511352732777596, 0.019297556951642036, 0.02325040102005005, 0.019283832982182503, 0.02874046005308628, 0.01023896038532257, 0.014219253323972225, -0.01078796572983265, -0.018515223637223244, 0.010012495331466198, 0.0008466700674034655, 0.012654585763812065, -0.016552528366446495, 0.025034669786691666, 0.006313567981123924, -0.0003469888761173934, -0.022371990606188774, 0.023222949355840683, 0.00092987873358652, 0.03472462296485901, 0.01494668610394001, -0.0015766763826832175, 0.01789759285748005, -0.021177902817726135, -0.006769929081201553, 0.02017596736550331, -0.018693652004003525, -0.0046253749169409275, 0.011652650311589241, 0.03730495274066925, -0.007452755235135555, 0.005390551872551441, -0.009600740857422352, 0.0002987364132422954, 0.0026815508026629686, 0.0005657334113493562, -0.023703329265117645, -0.019174031913280487, -0.03653634339570999, -0.020244592800736427, -0.01571529358625412, -0.005373395513743162, -0.010074258781969547, -0.007734120823442936, -0.025199370458722115, 0.0052807508036494255, -0.005033697932958603, 0.03143058717250824, -0.017115259543061256, -0.03516382724046707, -0.026928739622235298, 0.018954429775476456, 0.017952492460608482, 0.015042762272059917, 0.0025768964551389217, -0.013519270345568657, 0.002316118683665991, 0.02642090991139412, 0.005311632063239813, -0.005816031247377396, 0.016813306137919426, -0.02799930050969124, 0.0028754184022545815, -0.014095726422965527, 0.010108571499586105, -0.01522118877619505, -0.01652507856488228, 0.02565230056643486, -0.02672286331653595, -0.01314869150519371, 0.012929089367389679, 0.005218987353146076, 0.017293686047196388, 0.008983109146356583, 0.00552437175065279, -0.002920025261119008, 0.021740633994340897, -0.013333980925381184, 0.02222101390361786, -0.029838470742106438, -0.008132150396704674, -0.027299318462610245, 0.028630658984184265, -0.0006660985527560115, 0.019434809684753418, -0.005750836804509163, 0.005414570681750774, -0.009237024001777172, -0.012606548145413399, 0.011563437059521675, 0.011398735456168652, -0.009792893193662167, 0.0134026063606143, -0.01900932937860489, 0.008948796428740025, 0.01017033401876688, 0.02325040102005005, -0.0016101313522085547, -0.019517160952091217, -0.0042822458781301975, 0.033077605068683624, 0.021960236132144928, 0.0014685908099636436, 0.02937181666493416, 0.021164176985621452, 0.0027501764707267284, -0.013354568742215633, 0.00249454565346241, -0.006251804996281862, 0.017870143055915833, -0.003870491636916995, -0.00388078554533422, -0.021891610696911812, -0.016250574961304665, -0.018693652004003525, 0.002113672671839595, -0.008983109146356583, 0.0053871204145252705, -0.03401091694831848, 0.02766989730298519, 0.002846252406015992, -0.002170288935303688, -0.002676403848454356, -0.026489535346627235, -0.005898382049053907, 0.020272042602300644, -0.0064645446836948395, 0.02526799775660038, -0.0026952759362757206, -0.012942814268171787, -0.02791695110499859, -0.005682211369276047, -0.021809259429574013, -0.017403487116098404, -0.01717015914618969, -0.017581913620233536, 0.051194801926612854, 0.005208693444728851, 5.650900493492372e-05, 0.014768258668482304, 0.006594933569431305, 0.009182123467326164, -0.00350162829272449, -0.011323247104883194, -0.016593704000115395, -0.009923282079398632, -0.0005880367825739086, 0.01261341106146574, 0.015111387707293034, 0.014795709401369095, -0.0047042942605912685, -0.01023896038532257, 0.01498786173760891, 0.023415101692080498, -0.015152563340961933, -0.012462434358894825, -0.022207288071513176, -0.04015978053212166, -0.027162067592144012, 0.010410524904727936, -0.0015835389494895935, 0.003266585059463978, -0.02145240642130375, 0.002894290490075946, 0.032061945647001266, 0.011556574143469334, 0.04210875183343887, -0.0031893812119960785, 0.014534931629896164, -0.005047422833740711, 0.016881931573152542, 0.011405597440898418, 0.0215347558259964, -0.01460355706512928, -0.0010491160210222006, -0.04295971244573593, -0.013354568742215633, 0.008001761510968208, 0.01730741187930107, 0.015344714745879173, 0.009463489055633545, 0.0017430937150493264, -0.0060768090188503265, 0.015866270288825035, -0.01892697811126709, -0.0425754077732563, 0.00997818261384964, -0.00938113871961832, 0.00762431975454092, -0.03431287035346031, -0.009319375269114971, -0.01888580247759819, -0.020093616098165512, 0.0021239665802568197, 0.0003542803751770407, 0.01755446381866932, -0.0125241968780756, -0.018062293529510498, 0.02616013213992119, 0.01991518959403038, 0.03019532561302185, 0.01518001314252615, 0.01376632321625948, 0.009374275803565979, -0.003127617994323373, -0.021397504955530167, -0.015866270288825035, -0.0008569639176130295, 0.0005614443216472864, 0.006687578279525042, 0.03966567665338516, -0.0043096961453557014, -0.014919235371053219, 0.011398735456168652, 0.0015560885658487678, -0.00614543491974473, -0.026873840019106865, 0.02975611947476864, 0.0017130699707195163, -0.002690128982067108, -0.020917125046253204, -0.024979768320918083, 0.0051983995363116264, 0.018213270232081413, -0.015193738043308258, 0.033379558473825455, 0.01323104277253151, 0.000816217390820384, -0.02226218953728676, 0.03958332538604736, -0.0004722308658529073, 0.008619392290711403, 0.023195499554276466, -0.0008852720493450761, -0.0018769139423966408, -0.017238784581422806, 0.01045169960707426, -0.0044194976799190044, 0.018295621499419212, 0.012894776649773121, -0.004086662549525499, 0.0304423775523901, 0.006639540195465088, 0.018021119758486748, 0.005160655360668898, -0.022042587399482727, -0.015001586638391018, 0.03263840079307556, -0.0031379119027405977, 0.009195849299430847, -0.006797379348427057, -0.0012635714374482632, -0.0035307942889630795, -0.0425754077732563, 0.0011409028666093946, 0.008955658413469791, -0.01198891643434763, 0.011954603716731071, 0.021658282727003098, 0.0134026063606143, -0.02959141880273819, -0.0014111167984083295, 0.004193032626062632, -0.004474398214370012, 0.008166463114321232, -0.004103819373995066, -0.0067321849055588245, -0.025597400963306427, -0.03132078796625137, -0.006773360539227724, 0.01905050501227379, -6.749984459020197e-05, -0.0029440440703183413, -0.008969384245574474, -0.014727083034813404, 0.022838646546006203, -0.012949677184224129, -0.011041881516575813, 0.018487773835659027, 0.0037401027511805296, -0.04383812099695206, 0.01944853365421295, -0.011446773074567318, -0.014548656530678272, 0.028246354311704636, 0.006804241798818111, -0.04112054407596588, 0.003225409658625722, 0.022687669843435287, -0.0021033789962530136, 0.007686082739382982, 0.004512142390012741, -0.006519445218145847, -0.0012618557084351778, 0.0046253749169409275, -0.004364597145467997, -0.014164352789521217, -0.009792893193662167, -0.02989337220788002, 0.017760341987013817, 0.024389587342739105, 0.001345922239124775, 0.016566254198551178, -0.0031018834561109543, 0.005212124902755022, -0.0011915144277736545, -0.03494422510266304, -0.03340701013803482, -0.0009410304483026266, 0.01133010908961296, -0.018995603546500206, -0.033461909741163254, 0.011096782051026821, -0.028246354311704636, -0.0061214156448841095, 0.018556399270892143, 0.00011226742208236828, 0.01045169960707426, -0.009209574200212955, 0.0013742303708568215, 0.013526133261620998, 0.0029663476161658764, -0.007864509709179401, -0.014054550789296627, -0.013903575018048286, 0.014095726422965527, -0.02141123078763485, 0.0056376042775809765, -0.02975611947476864, 0.004385184496641159, 0.013217316940426826, -0.030799230560660362, -0.04046173393726349, -0.014383954927325249, -0.06137885898351669, -0.02367587946355343, -0.054928041994571686, 0.03450502082705498, 0.03672849386930466, 0.02098575048148632, 0.02890516072511673, 0.013251629658043385, 0.006011614575982094, 0.007569418754428625, -0.007631182204931974, -0.00434744032099843, 0.002880565356463194, -0.022756295278668404, 0.02718951739370823, -0.018830902874469757, -0.06868063658475876, -0.012242831289768219, 0.025460148230195045, -0.0035445194225758314, 0.029152214527130127, 0.01918775588274002, -0.026324832811951637, -0.005932695232331753, 0.011995779350399971, 0.007315503899008036, 0.026956189423799515, 0.003911667037755251, 0.02959141880273819, -0.02051909640431404, -0.011055606417357922, 0.019942639395594597, 0.013587895780801773, -0.012798700481653214, 0.023319026455283165, 0.010341898538172245, 0.0058263251557946205, 0.013780048117041588, -0.015660393983125687, -0.027903225272893906, -0.000672532245516777, -0.005205262452363968, -0.0011752158170565963, -0.0021685734391212463, -0.003983723931014538, 0.0037160837091505527, 0.006629246287047863, -0.01081541646271944, -0.004127838183194399, 0.005774856079369783, 0.007960585877299309, -0.016813306137919426, 0.01880345307290554, -0.012956539168953896, -0.0107673779129982, -0.01518001314252615, 0.0026249345391988754, 0.01426042802631855, -0.025967979803681374, -0.007274328265339136, -0.010712477378547192, -0.006783654447644949, 0.0009830637136474252, 0.017705440521240234, 0.0001260997960343957, -0.004234208259731531, -0.020889675244688988, -0.003410699311643839, -0.025899354368448257, 0.007315503899008036, -0.015111387707293034, -0.004254795610904694, 0.012448708526790142, -0.007644907105714083, -0.013498682528734207, -0.03450502082705498, 0.002978357020765543, 0.018981879577040672, -0.01807601936161518, -4.270343924872577e-05, 0.2054380178451538, -0.014548656530678272, -0.007466480135917664, 0.02248179167509079, 0.006636108737438917, 0.00743902986869216, 0.0006399350240826607, 0.014699633233249187, -0.010911492630839348, -0.0038327474612742662, 0.023071972653269768, 0.006474838592112064, -0.030003173276782036, -0.004838114604353905, -0.011625200510025024, -0.011144819669425488, -0.03961077705025673, -0.013828086666762829, -0.017279960215091705, 0.004927327856421471, 0.009888969361782074, -0.022111212834715843, -0.007631182204931974, -0.010108571499586105, 0.012517334893345833, 0.029618868604302406, -0.00365088926628232, 0.016195673495531082, 0.03370896354317665, 0.016758404672145844, -0.03381876274943352, 0.0015294961631298065, 0.023785680532455444, -0.010678164660930634, 0.012002641335129738, -0.012386946007609367, 0.016305474564433098, 0.0012086707865819335, 0.015317264944314957, 0.015193738043308258, -0.01644272729754448, -0.02042301930487156, 0.021054375916719437, -0.02381313033401966, 0.011686963029205799, 0.0003817306715063751, -0.013237904757261276, -0.01781524159014225, 0.026873840019106865, 0.013841811567544937, 0.0003396974061615765, -0.0041587199084460735, 0.008228225633502007, 0.012242831289768219, -0.004810664337128401, -0.009792893193662167, -0.015056487172842026, 0.008187050931155682, -0.002612924901768565, 0.024897417053580284, -0.00584691297262907, -9.13043986656703e-05, -0.0015037615085020661, 0.0024722423404455185, -0.027175791561603546, 0.027299318462610245, 0.001988430740311742, 0.023922933265566826, 0.021987685933709145, -0.0064473883248865604, -0.022111212834715843, -0.016936833038926125, -0.01678585633635521, 0.016813306137919426, -0.008310576900839806, -0.019421083852648735, 0.007555693853646517, 0.0390617698431015, 0.041257794946432114, -0.004337146878242493, 0.005184674635529518, 0.005757699254900217, -0.011336972005665302, -0.011316384188830853, -0.00510575482621789, -0.03156783804297447, 0.019132856279611588, -0.014274153858423233, 0.014150626957416534, -0.010486013256013393, -0.011172270402312279, 0.00815960019826889, -0.002058772137388587, -0.007240015547722578, -0.0009118645102716982, -0.003046982688829303, 0.005520940758287907, 0.02171318419277668, -0.006790516898036003, -0.005967007949948311, -0.01410945225507021, 0.041093092411756516, 0.015317264944314957, -0.006193473003804684, -0.01522118877619505, 0.01696428284049034, 0.008166463114321232, 0.026736587285995483, -0.0053425137884914875, -0.009257611818611622, -0.021562207490205765, -0.026791488751769066, 0.016456451267004013, 0.005332219880074263, 0.018858352676033974, 0.030085524544119835, 0.0065434640273451805, -0.01047228742390871, 0.0024962611496448517, 0.015550591982901096, 0.01648390293121338, -0.02728559449315071, -0.00528761325404048, 0.01106933131814003, -0.01169382594525814, -0.038183361291885376, 0.0076037319377064705, -0.008125287480652332, -0.0322815477848053, -0.015701569616794586, 0.0002217469154857099, 0.0018923546886071563, 0.016593704000115395, -0.00873605627566576, -0.02783459983766079, -0.025020943954586983, 0.004810664337128401, -0.012222244404256344, 0.0035239316057413816, 0.0024773890618234873, 0.003829316236078739, 0.005881225690245628, 0.01979166269302368, 0.012181068770587444, -0.01593489572405815, 0.010945805348455906, 0.010101708583533764, 0.03233644738793373, -0.011199720203876495, -0.023717055097222328, -0.0029251722153276205, 0.04150484502315521, -0.005315063521265984, 0.0008084969595074654, 0.02124652825295925, -0.01552314218133688, -0.02698364108800888, -0.047516461461782455, 0.02367587946355343, -0.013162416405975819, -0.03768925741314888, 0.0076654949225485325, 0.031842343509197235, 0.011295796371996403, -0.024636639282107353, 0.001118599553592503, -0.1744740754365921, -0.011879115365445614, -0.0031636464409530163, -0.009559565223753452, -0.0035273630637675524, 0.012201656587421894, -0.013759460300207138, 0.005774856079369783, -0.014493755996227264, -0.02736794389784336, 0.02423861064016819, 0.0009504664922133088, -0.021136727184057236, -0.020656347274780273, 0.021315153688192368, -0.025542499497532845, -0.0024482232984155416, 0.01965441182255745, 0.01738976128399372, 0.02115045301616192, 0.018995603546500206, -0.028767909854650497, 0.005339082330465317, -0.007713533006608486, 0.020972026512026787, 0.018872078508138657, -0.00879781972616911, 0.008701743558049202, 0.011652650311589241, -0.026201307773590088, -0.014178077690303326, -0.002988650929182768, 0.019434809684753418, -0.003681770758703351, 0.010142884217202663, 0.003939117304980755, 0.0007154233171604574, -0.03510892763733864, 0.012977126985788345, 0.03936372324824333, 0.021521031856536865, 0.003915098495781422, -0.006691009271889925, 0.014534931629896164, -0.0030263951048254967, 0.032748203724622726, 0.033077605068683624, -0.01145363599061966, 0.007349816616624594, -0.0016555959591642022, 0.0006832550279796124, -0.036508891731500626, -0.03845786303281784, -0.014960411004722118, 0.005918969865888357, -1.753173091856297e-05, 0.01657997816801071, 0.016772130504250526, 0.021479856222867966, -0.008001761510968208, -0.0037366715259850025, 0.0050920299254357815, -0.01888580247759819, 0.002305824775248766, -0.0069655124098062515, -0.05742601677775383, -0.0007398712332360446, 0.03104628436267376, -0.015495691448450089, 0.017664264887571335, 0.00015676692419219762, 0.01979166269302368, -0.012366358190774918, 0.003498197067528963, 0.014589832164347172, 0.0007891959976404905, -0.041724447160959244, 0.017568189650774002, 0.02021714299917221, 0.0019970089197158813, 0.014699633233249187, 0.025281721726059914, -0.01406827662140131, -0.021081827580928802, -0.026750313118100166, -0.015317264944314957, 0.01518001314252615, 0.011659513227641582, -0.008948796428740025, -0.008049799129366875, 0.01870737597346306, -0.01518001314252615, -0.0010534051107242703, 0.0025340053252875805, 0.005040560383349657, 0.02646208554506302, 0.001017376547679305, -0.01609959825873375, 0.033379558473825455, -0.023991558700799942, 0.0015269226860255003, 0.007507655769586563, -0.011213446035981178, 0.013272217474877834, 0.023579804226756096, 0.024856243282556534, -0.0016744680469855666, -0.008173325099050999, 0.01969558745622635, -0.027642447501420975, -0.0069929626770317554, 0.007548831403255463, 0.02835615538060665, -0.007171389646828175, -0.027079716324806213, 0.03862256556749344, 0.0015938327414914966, -0.023360202088952065, 0.008557629771530628, 0.0030263951048254967, 0.08388810604810715, -0.028383605182170868, -0.016374101862311363, 0.004344009328633547, -0.014699633233249187, -0.021507306024432182, -0.10518953204154968, 0.0027879206463694572, 0.015083936974406242, 0.02187788486480713, -0.01777406595647335, -0.0016178517835214734, -0.01563294231891632, 0.029563969001173973, 0.0033609454985708, 0.013217316940426826, -0.013855536468327045, -0.03305015712976456, -0.012798700481653214, -0.023785680532455444, 0.022413166239857674, -0.02021714299917221, -0.0043920474126935005, -0.012915363535284996, -0.00018239434575662017, 0.028932610526680946, -0.003235703567042947, -0.005452314857393503, 0.004851839505136013, 0.009724266827106476, -0.008440965786576271, 0.006907180417329073, -0.03675594553351402, 0.012338907457888126, 0.01618194952607155, 0.010225235484540462, 0.030524728819727898, -0.01743093691766262, 0.03362661227583885, -0.020230866968631744, -0.0027793424669653177, 0.010698752477765083, -0.03609713912010193, 0.002221758244559169, 0.012997714802622795, -0.029316915199160576, 0.0019987246487289667, 0.007507655769586563, -0.010890904814004898, -0.0461713969707489, -0.006385624874383211, 0.008509591221809387, -0.015125112608075142, 0.023442551493644714, -0.00612484710291028, -0.02997572347521782, -0.02458173967897892, -0.0058091687969863415, -0.00997818261384964, -0.03870491683483124, 0.021081827580928802, -0.0009281631209887564, 0.01819954626262188, 0.0006583781796507537, -0.01614077389240265, 0.0021788671147078276, -0.005239575169980526, -0.0061214156448841095, 0.0034432965330779552, 0.006752772722393274, 0.011810489930212498, 0.0035170691553503275, -0.009429176338016987, -0.002298962324857712, -0.01169382594525814, 0.005157224368304014, -0.00021434819791465998, 0.009552703239023685, -0.018913254141807556, 0.006505719851702452, -0.03675594553351402, 0.01310751587152481, -0.014191802591085434, -0.025858178734779358, 0.00997818261384964, 1.4623179595218971e-05, -0.016195673495531082, -0.02530917152762413, 0.014040825888514519, -0.02470526657998562, -0.005678779911249876, 0.014356504194438457, 0.02351117879152298, -0.03480697423219681, 0.02530917152762413, -0.041175443679094315, 0.022687669843435287, 0.0013870977563783526, 0.020670073106884956, 0.006519445218145847, -0.02616013213992119, 0.003578832373023033, 0.01854267530143261, 0.0008145017200149596, 0.038512762635946274, 0.0035479506477713585, -0.013395744375884533, 0.00811842456459999, -0.06379448622465134, 0.01047228742390871, 0.012688899412751198, 0.01288791373372078, 0.005641035735607147, -0.0391441211104393, 0.01487805973738432, 0.0074321674183011055, -0.007034138310700655, 0.006941493600606918, -0.02518564648926258, 0.007610594388097525, -0.014082001522183418, 0.010616402141749859, -0.016085872426629066, -0.001247272826731205, 0.03074433095753193, 0.004831252153962851, 0.014548656530678272, -0.005500352941453457, -0.02775224857032299, 0.004138132091611624, -0.020244592800736427, 0.026324832811951637, -0.02377195656299591, 0.016648603603243828, -0.007452755235135555, 0.00031846630736254156, 0.005507215391844511, -0.02312687411904335, 0.0031825185287743807, -0.0003334782086312771, -0.011302659288048744, 0.016538802534341812, -0.007171389646828175, -0.03318740800023079, 0.0030881583224982023, 0.021507306024432182, 0.004724882077425718, 0.006869436241686344, -0.005400845780968666, -0.0009307365980930626, 0.0285208560526371, -0.011899703182280064, -0.01999754086136818, -0.01601724699139595, -0.02535034716129303, -0.013327118009328842, 0.012990851886570454, -0.003004091791808605, 0.02698364108800888, 0.004820958245545626, -0.015591767616569996, -0.026050331071019173, -0.014507480897009373, -0.008036074228584766, 0.027779698371887207, 0.0072262901812791824, 0.011481085792183876, -0.004721450619399548, 0.03900687023997307, 0.005994458217173815, -0.006351312156766653, -0.019819112494587898, 0.018474048003554344, -0.01755446381866932, -0.04029703512787819, -0.011831077747046947, 0.02377195656299591, -0.035740286111831665, -0.008049799129366875, -0.010012495331466198, 0.027381669729948044, 0.025830727070569992, 0.0006223496748134494, 0.004673413001000881, -0.027422845363616943, -0.028548307716846466, -0.007850784808397293, 0.012929089367389679, 0.007960585877299309, -0.006080240476876497, -0.008235088549554348, 0.01690938137471676, -0.0023212656378746033, 0.006752772722393274, -0.0320344939827919, 0.018528949469327927, -0.006320430431514978, 0.015825094655156136, -0.03255604952573776, 0.002383028855547309, 0.004275383427739143, 0.0005867500440217555, 0.005503784399479628, 0.007116489112377167, 0.0008938502287492156, 0.01522118877619505, 0.012860463000833988, 0.023662155494093895, -0.015770195052027702, 0.00329231983050704, 0.008969384245574474, -0.029316915199160576, -0.004591061733663082, 0.002923456486314535, -0.024718990549445152, -0.02308569848537445, 0.016950557008385658, 0.013924161903560162, 0.02569347620010376, -0.01198891643434763, 0.003983723931014538, 0.009868381544947624, -0.017760341987013817, -0.0037401027511805296, 0.018638750538229942, -0.026475809514522552, -0.029152214527130127, 0.021617107093334198, 0.0317874439060688, 0.029865920543670654, 0.005122911185026169, -0.011302659288048744, 0.04444202780723572, 0.0029937978833913803, 0.0016212831251323223, -0.02226218953728676, 0.012462434358894825, -0.007459617685526609, 0.0038018659688532352, 0.01726623624563217, -0.008070386946201324, -0.01524863950908184, -0.028575757518410683, -0.01434277929365635, -0.0065091513097286224, 0.03302270546555519, -0.003939117304980755, 0.08509591221809387, 0.0319521427154541, -0.018693652004003525, 0.010753653012216091, -0.002741598291322589, 0.030222775414586067, 0.020189691334962845, 0.008386065252125263, 0.002971494570374489, -0.0025545931421220303, 0.01468590833246708, -0.0033180543687194586, -0.017458388581871986, -0.003733240067958832, -0.0250483937561512, 0.006896886508911848, 0.0009676229092292488, 0.02415625937283039, -0.008392928168177605, -0.0067321849055588245, 0.007082176394760609, -0.012215381488204002, 0.0018786295549944043, -0.011192858219146729, -0.02308569848537445, -0.02518564648926258, 0.009580153040587902, 0.0125653725117445, -0.0037298088427633047, -0.016346650198101997, 0.017527014017105103, -0.021095551550388336, -0.032528601586818695, -0.00791941024363041, -0.02132887952029705, 0.012675173580646515, -0.030771780759096146, -0.020752422511577606, 0.008722331374883652, 0.01953088492155075, 0.007885097526013851, 0.02217983826994896, -0.023030797019600868, -0.018007393926382065, 0.029646318405866623, -0.012222244404256344, 0.015550591982901096, -0.015660393983125687, -0.006814535707235336]}, "text_id_to_ref_doc_id": {"0889e864-4b4a-4847-a9ef-7a522c4930c0": "10b39136-08ab-44a8-85cb-021f8824bcd8", "ac706d57-0a59-412d-a131-e613fbcb9675": "10b39136-08ab-44a8-85cb-021f8824bcd8", "1d2ca6d9-a9ca-4bae-8ac1-d4de60496017": "10b39136-08ab-44a8-85cb-021f8824bcd8", "732ef8ef-1247-4ca7-9f4d-16452f459bd4": "10b39136-08ab-44a8-85cb-021f8824bcd8", "bc86f2c5-666d-48fd-bfb5-1853077b08ba": "10b39136-08ab-44a8-85cb-021f8824bcd8", "4f880336-617a-4346-a2a4-8689328dde85": "10b39136-08ab-44a8-85cb-021f8824bcd8", "6e982ddc-23a6-44dc-ba94-8a455805b490": "10b39136-08ab-44a8-85cb-021f8824bcd8", "e7b6c090-bf1b-436b-9a00-6d96311cb2ce": "10b39136-08ab-44a8-85cb-021f8824bcd8", "25003129-bbd9-42f7-9897-49ff1c2054bc": "10b39136-08ab-44a8-85cb-021f8824bcd8", "d4a49c63-7213-455a-8413-e4845faf8793": "10b39136-08ab-44a8-85cb-021f8824bcd8", "db579a1b-332d-49c2-99d8-6115a509c0e3": "10b39136-08ab-44a8-85cb-021f8824bcd8", "79fcf67d-8c85-4505-bb5a-34d28d00d262": "10b39136-08ab-44a8-85cb-021f8824bcd8", "a6a7b0af-b576-416a-b269-bfdc135091ae": "10b39136-08ab-44a8-85cb-021f8824bcd8", "4b795efd-0329-4d32-bbfb-e7cc78af7b08": "10b39136-08ab-44a8-85cb-021f8824bcd8", "cf829ada-81c5-4f09-9ace-a6fb7e38d110": "10b39136-08ab-44a8-85cb-021f8824bcd8", "3e75e777-8fbf-4323-98b3-37de31796f7d": "10b39136-08ab-44a8-85cb-021f8824bcd8", "c1efcfe9-dfd0-4fa7-adce-4c600f051965": "10b39136-08ab-44a8-85cb-021f8824bcd8", "49b02c99-6e6c-4109-9edc-e6fee6834574": "10b39136-08ab-44a8-85cb-021f8824bcd8", "02bd4993-b5e3-4da6-b3d3-00f839c897d3": "10b39136-08ab-44a8-85cb-021f8824bcd8", "2622fd48-4662-4176-9e01-2fafcc0d9147": "10b39136-08ab-44a8-85cb-021f8824bcd8", "f0b5692b-ff9d-456c-a97a-d511f87d78b2": "10b39136-08ab-44a8-85cb-021f8824bcd8", "0eee8be4-f629-4578-9aa9-bea55eafae98": "10b39136-08ab-44a8-85cb-021f8824bcd8", "002dfc10-c8dc-4dd2-aa67-f97c3f65cb8e": "10b39136-08ab-44a8-85cb-021f8824bcd8", "8ce2bd04-544d-4060-98a3-a6ca3e29e868": "10b39136-08ab-44a8-85cb-021f8824bcd8", "b263a9e2-496f-4680-857c-3759017d4fcd": "10b39136-08ab-44a8-85cb-021f8824bcd8", "91bd5b07-7934-4456-94e3-30c014e306fd": "10b39136-08ab-44a8-85cb-021f8824bcd8", "0906c897-2d71-433e-8780-c24e0112d357": "10b39136-08ab-44a8-85cb-021f8824bcd8", "fd110e99-b3bc-4167-8b59-1c4c6697450f": "10b39136-08ab-44a8-85cb-021f8824bcd8", "f57f536f-7e36-4634-abb1-690b53f0bd05": "10b39136-08ab-44a8-85cb-021f8824bcd8", "c3314ab4-fc78-4c9f-961f-1144ee720d67": "10b39136-08ab-44a8-85cb-021f8824bcd8", "d54cbfeb-69b0-4286-9415-5d9ded2ab720": "10b39136-08ab-44a8-85cb-021f8824bcd8", "b8517c43-bc1e-417d-a6d9-ae1d884c3a84": "10b39136-08ab-44a8-85cb-021f8824bcd8", "9ee615c3-8c00-4109-b2e1-6bc8356d134f": "10b39136-08ab-44a8-85cb-021f8824bcd8", "1a0b3f07-7ee5-4183-937e-6de0d1c392c6": "10b39136-08ab-44a8-85cb-021f8824bcd8"}} \ No newline at end of file diff --git a/lm_index_doc.py b/lm_index_doc.py new file mode 100644 index 0000000000000000000000000000000000000000..b92ea8c4dcff8163326d8b42014b1338fb3e1276 --- /dev/null +++ b/lm_index_doc.py @@ -0,0 +1,14 @@ +from llama_index import GPTSimpleVectorIndex, SimpleDirectoryReader +from pathlib import Path +from llama_index import download_loader +import os + + + +os.environ["OPENAI_API_KEY"] = "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" + + +documents = SimpleDirectoryReader('/Users/satya/Downloads/temp').load_data() + +index = GPTSimpleVectorIndex.from_documents(documents) +index.save_to_disk('/Users/satya/Downloads/out.json') \ No newline at end of file diff --git a/csv/CustomerScoreCard.csv b/raw/CustomerScoreCard.csv similarity index 100% rename from csv/CustomerScoreCard.csv rename to raw/CustomerScoreCard.csv diff --git a/csv/Databricks.csv b/raw/Databricks.csv similarity index 100% rename from csv/Databricks.csv rename to raw/Databricks.csv diff --git a/csv/Datadog.csv b/raw/Datadog.csv similarity index 100% rename from csv/Datadog.csv rename to raw/Datadog.csv diff --git a/raw/Lastpass.csv b/raw/Lastpass.csv new file mode 100644 index 0000000000000000000000000000000000000000..2730154b049837a549ff09fa5b482811cecdb46b --- /dev/null +++ b/raw/Lastpass.csv @@ -0,0 +1,1810 @@ +,product,name,business_type,date,review_title,like,dislike,what problems is the product solving,rating +0,lastpass,Verified User (Anonymous),Small-Business,2019-09-06,Easy to use and speeds up logins,"Easy right click selection menu to pick the correct password for multiple accounts on the same domain,",Warnings about matching passwords get redundant.,Far less forgot my password time.,10.0 +1,lastpass,Verified User (Anonymous),Small-Business,2019-08-15,Flexible and Robust,"The breadth of capability, and the strength of security","I'd like to say no to adding a password once, not every time I enter ot/","Clearly keeping up with lots of commercial networks, including all the passwords, network settings, and details, etc.",8.0 +2,lastpass,Verified User (Anonymous),Small-Business,2019-08-14,LastPass: A simple password manager,"LastPass is the only password manager I have used that actually works well cross-platform. I can access my passwords on my iOS device, laptop, and desktop seamlessly. ",The LastPass chrome extension is very glitchy sometimes. I have had to manually copy and paste passwords multiple times for certain websites. ,"LastPass makes password creation very simple. We had issues with weak passwords in our organization but since switching to LastPass, every user has a strong password and will never forget it. ",9.0 +3,lastpass,Verified User (Anonymous),Enterprise,2019-08-15,Simple fast and reliable ,Its fast and convenient to securely keep credentials safe to share with collaborators.,Sometimes you have to search for the passwords rather than have them auto fill,Don’t have to keep insecure spreadsheets or notes to manage credentials ,10.0 +4,lastpass,Verified User (Anonymous),Mid-Market,2019-11-11,All passwords in one place,"Able to group passwords by category +Chrome plugin +",Plugins sometime is glitchy with saving new passwords.,Storing all organization passwords,8.0 +5,lastpass,Matthew N,Small-Business,2018-12-25,Don't Leave Home Without It,LastPass is one of the few pieces of software that I view as absolutely essential. I love how it's super-secure and always available.,There really is no downside to LastPass - it's that good.,"Although I'm very conscious of how many sites I register for, I still have a lot of sites where I need to maintain login details (my own sites, joint ventures and marketing memberships). Wherever I am, I always have access to my login details: on my iMac, my Chromebook and my mobile. I would hate to have to do without it.",10.0 +6,lastpass,Verified User (Anonymous),Small-Business,2019-08-15,Evan Gibney likeas LastPass,Super convenient - it always remembers passwords and is great for making 'random' passwords that are highly secure,Often forgets its own password. Like COME ON!,"Password management. Beyond security - the convenience, oh lord!",10.0 +7,lastpass,Oscar L,Small-Business,2018-12-05,Review ,"Alright for the breakdown this application is like the bomb.com for starters it’s a free application and who doesn’t like free stuff but this application lets you do is it lets you keep all your websites, any important notes, or just about anything and the really cool thing about it is that as soon as you leave the app and try to go back in it it asks you to use your fingerprint so sign back in and it’s super easy and quick and very secure so you won’t have any trouble leaving your phone unattended ",I don’t dislike anything so far at the moment ,"Keeping important documents, websites, files",10.0 +8,lastpass,Verified User (Anonymous),Small-Business,2019-10-24,Passwords for those who have too many passwords,"All my passwords are sync'd across all my devices, mobile, browsers, etc",Sometimes the browser extensions are a little obtrusive,I have too many passwords and need to keep track of them and make sure they are secure,10.0 +9,lastpass,Verified User (Anonymous),Small-Business,2019-08-15,Enterprise and personal lastpass user,I like the ability to share complex passwords security around the office.,Can't think of a dislike at this current time.,Passwords being sent unsecured via email.,9.0 +10,lastpass,Aileen Y,Mid-Market,2019-04-02,Password Storage and Security Vault,LastPass is great for storing passwords and allowing users to share them across the company without compromising the actual password details. It is a great password organizational tool.,The master password needs to be reset often therefore there still needs to be a place where the master password is stored! ,We are utilizing LastPass to ensure security of passwords and keeping them organized across the company. ,8.0 +11,lastpass,Verified User (Anonymous),Small-Business,2019-08-15,So easy to keep passwords!,Not having to remember passwords and reset when forgotten,Not able to use when LastPass not available on non secure systems,Fast and easy access to applications,9.0 +12,lastpass,Verified User (Anonymous),Enterprise,2019-08-16,LastPass Enterprise Review,"Ease of use, centralized control, and great availability.","Complex policy setup, relatively unclear documentation.",Password management has become a breeze.,9.0 +13,lastpass,Verified User (Anonymous),Small-Business,2019-02-18,Excellent tool - really powerful and helpful password solution,"It revealed how many passwords I had that weren't very secure and within an hour solved all of my duplicate passwords, gave me a much higher security, and solved my issue when I couldn't remember revolving passwords that kept changing by some stupid variation that i couldn't remember. It can generate and remember secure passwords every time I create a new account with a website. It keeps passwords for all my different accounts especially an issue when I have a personal and work account. It's really brilliant and secure. ",The only real problem i face is that sometimes apple or google try to override the password in Last Pass. That's really an issue of mine and not the system. It's great in every other way. ,"Secure passwords, No passwords shared by multiple programs, I don't have to remember complex passwords, I can store passwords, accounts, info for loved ones. All of these benefits become benefits for our team as well. Keeping passwords for multiple e-mails (personal, work, IT manager, etc.)",10.0 +14,lastpass,Guy M,Small-Business,2018-11-22,"Easy to use, saves me time, multi-device ready","I love how easy it is to save and access your passwords on LastPass. I have the premium plan, so I have my account linked on all my devices - laptop, iPhone, and iPad. This makes it easy for me to access my passwords whenever I need them. + +On my laptop, I have my LastPass account integrated into Safari and Chrome which allows login fields to be automatically populated with my login credentials. This saves me a ton of time and stress! This makes it easier for me to be able to get work done on business accounts and to sign into my personal accounts. + +Also, the mobile app is really easy to use and works well with touch id or face id on an iPhone. So if you need to log into accounts from your phone you can tap to copy the username or password. Again, this saves me time and stress which I like. +","My only complaint is if you have multiple accounts on the same website, for example, on Google. If you have more than one Gmail account then you may have the wrong login credentials auto-populate and you'll have to either click on the LastPass icon in the form field which is sometimes hidden under the Chrome password manager icon leaving you clicking around both icons to activate the LastPass option. You can also click on the lastPass icon on top of the browser menu and have it populate the correct login credentials that way. ","The need for very secure passwords, the need for secure password storage, and the need for password management. ",10.0 +15,lastpass,Verified User (Anonymous),Mid-Market,2019-06-05,Secure way to store all my login credentials ,I really like the security features of having all my passwords stored in a single database.,I'm not a huge fan of the chrome browser extension.,We are solving the problem of overall security exposure throughout the company.,10.0 +16,lastpass,Eli M,Small-Business,2018-11-01,LastPass: the best software to save all your passwords safely,This software has helped my company in many ways. We like that you can save all of your passwords and the security implemented to do so. The organization and structure of the dashboard are two of the best things.,We do not really dislike anything. We would like more easy ways to upload documents and files to LastPass but for now we believe that it fits our needs.,We are solving a problem that it's been around for years: the lookup of passwords. We usually had to go on paper or a spreadsheet to find the correct password but with lastpass there is everything in order and very organized,10.0 +17,lastpass,Rod K,Small-Business,2018-11-20,Greatly Simplifies the Password Game,It is awesome that we can save and use much more secure passwords because we do not have to remember lengthy strings. I also like that everyone in the office can share an account and no one needs to ask for passwords,"Keeping passwords stored in LastPass works great, but I am always worried about what might happen if we lose internet access. I think I could still get into the Mac App, but the rest of my office is on Windows. Don't know if there is a similar solution for them.","No one needs to ask around for passwords, and if something changes, everyone immediately has the updated password. Bada-bing!",10.0 +18,lastpass,Daniel H,Small-Business,2019-02-01,Awesome system,"With Last Pass you can avoid all those annoying password requests, and security questions, Last Pass stores your passwords for you! + +Makes my work and personal life much more convenient.I have several email accounts and even more passwords, and there is no way I can memorize them all. Last Pass is a must for everyone these days. Really like the double authentication option too + +Review collected by and hosted on G2.com.What do you dislike?I believe the were hacked within the past few years. Unfortunately nothing is 100% secure.",I believe the were hacked within the past few years. Unfortunately nothing is 100% secure.,Vendor passwords can be easily shared and updated across teams and departments. ,10.0 +19,lastpass,Housam Z,Mid-Market,2018-11-13,Great Tool to Store Your Passwords,"In addition to this password vault being a very smart idea to store your passwords, without the need to remember every one of them, I like the feature of generating a secure password, especially with the ability to control the complexity of the password, and then it stores it automatically. +I like that the application is becoming smarter with recognising forms in the page. +I like how easy it's to use it on a webpage, as it has an icon in the browser bar, icons on forms when it detects them in web pages, and a sub-menu in the context menu (Mouse right click menu).","I dislike that when I open the website from my mobile or tablet, things are not in their right position, the website really suffers from poor responsivity on handheld devices. On the other hand, one of the problems that I don't like about it is that my workplace has many websites with a central password management system, which means a single password to login to all of the work websites, but for Lastpass, it's as if I am using a duplicate passwords for multiple passwords, and it keeps giving me warning about this issue.","I solved the problem of using a single password for many websites, which makes my online presence more secure. Add to that, I don't have to remember all of my 400 current passwords. The feature of form filling gives a great solution for all those registration forms by just a single click.",10.0 +20,lastpass,Verified User (Anonymous),Enterprise,2019-05-20,Lastpass Good password storage for group use,"Free to try and then affordable to add users to business account. Great granularity on sharing password and good password tools like password generator, secure notes and form filling",requires you to log out and back in to see new or altered share passwords.,Able to safely and securely share passwords with diverse user base. ,8.0 +21,lastpass,Verified User (Anonymous),Small-Business,2019-08-23,LastPass great for virtual organizations ,LastPass is great for people who aren’t all in the same building together all day who need to easily share passwords and usernames ,Not intuitive at first and can not lose your password or getting back in is hard ,Sharing of credentials is easy ,7.0 +22,lastpass,Andy L,Small-Business,2019-05-03,Lastpass review ,"I like how this app allows me to never have to remember passwords, but it holds them all in one place for me. ","Sometimes it does get confusing. For instance, if you get a new computer you do have to restart from scratch. ",We are saving alot of time with lastpass. ,9.0 +23,lastpass,Verified User (Anonymous),Mid-Market,2019-04-15,No need to remember passwords,Managing and sharing folders with other staff members. There is no need to have two passwords when two people can share the same information in a secure website. Also not having to remember multiple passwords is pretty cool.,If last pass ever goes down you can't do any work since all information is stored in one site. Last pass wants you to change your password every so often and it can get annoying.,Using last pass at work is extremely helpful especially when you have to use multiple sites with different passwords. ,9.0 +24,lastpass,Verified User (Anonymous),Small-Business,2019-08-15,So helpful! ,Love having the ability to have admin level access across our business ,"So far nothing, it's been a very good thing to add to our company ","No longer having passwords ""hidden"" on employees desks ",8.0 +25,lastpass,Adrianna H,Small-Business,2021-10-19,LastPass is a lifesaver and awesome for sharing passwords safely.,"Easy to save every login for ever website needed and organize them into different categories. Safe, different user visibility levels.",The browser extension randomly logs me out every so often.,"Creates safe passwords for me, alerts me to websites with the same password, lets me know if any have been compromised and makes it easy to save and also share passwords.",10.0 +26,lastpass,Huseyin D,Small-Business,2021-10-06,Multi support password manager,"It has free and premium versions and both versions are working well. We are using the paid version. It supports multi-factor authentication methods. Also, it works on multiple platforms like Windows, macOS and mobile apps. You can share your password with colleagues. One more good thing is you can import your current passwords from many platforms.","Unfortunately, this application has a bad history that had been compromised. Still have doubts about it.","We are using it in our team as a password manager, and we share them inside the team.",9.0 +27,lastpass,Jibran Yousuf K,Small-Business,2022-01-31,Lastpass has you covered!,"- Easy to understand +- Secure +- Chrome Extension","- The UI is sometimes not very user friendly +- Although it's not easy to recover the master password, I dislike it, but I understand the security concerns too.",- Sharing of passwords within the organization.,10.0 +28,lastpass,Tarig I,Small-Business,2022-01-19,LassPass review,"The convenience of not having to remember passwords, generating random secure passwords and auto-filling passwords fields.",Password auto-fill works for website forms but not windows applications.,"Protects me from phishing (websites with misleading links), as well as confidence in frequently and securely changing passwords without the risk of forgetting.",10.0 +29,lastpass,Jason P,Mid-Market,2021-10-30,Makes surfing the net so easy,I don't have to worry or think about passwords. They are always available. ,Sometimes it is hard to find a particular password if I didn't name it perfectly. Synchronization feature between users doesn't seem as fluid and as I thought it would be,All passwords are always available on any platform ,9.0 +30,lastpass,Verified User (Anonymous),Enterprise,2021-12-12,LastPass: The Only Password Manager You Need,I like that LastPass is available on all major browswers as well as iPhone and Android so you can access all your passwords on most devices.,"There's really nothing I dislike about LastPass, it's tremendous!",LastPass has made syncing all of my passwords across devices a piece of cake and has allowed me to utilizer much stronger passwords instead of the same password on every account.,10.0 +31,lastpass,Ganesh K,Enterprise,2021-10-19,Great secured tool,"It is the most secure tool to save your personal details. The best thing is it has a double security check to protect the secure note. +I have been using this tool for a long time, till time no issues and working correctly. Even I have to change the mobile device; all data is securely retained again in the new device.",Nothing to dislike the application as i am using it since long time and till time no issues.,"As it have secured double check for notes, important data can be saved.",10.0 +32,lastpass,Verified User (Anonymous),Mid-Market,2021-12-29,Great Product!,Ease of use. The integration with just about any browser and mobile device makes LastPass one of the best password managers,"On a mobile device (Android for me) LastPass sometimes does not work with Web logins with Chrome, or App logins",I am keeping passwords organized and in one place. Also the ability to share passwords.,10.0 +33,lastpass,Kalyan Varma N,Mid-Market,2021-12-01,Safe locker for your password,The options which are enabled to safe guard your password to match/cater your needs.It also enables the multi factor authentication and biometric authentication which i think is pretty cool,Noy many people can understand the options given unless the user is familiar with cyber security concepts and how it works.Would be great if the terminology used would be readable for everyone.,Encrypting our passwords In highly business sensitive areas.,8.0 +34,lastpass,Verified User (Anonymous),Small-Business,2021-11-16,Efficient tool for keeping your information safe!,It's a secure platform that allows you to store all your sensitive credentials and passwords all at once!,I have no negative comments about this tool; it has been very efficient to me.,I am a able to save my passwords safely without login in everytime in my emails or applications. It saves me time and effort! I am able to keep track of all of my saved data from the vault at any given moment.,10.0 +35,lastpass,Rachel D,Mid-Market,2021-10-15,LastPass - Life Saver!,It's so great to store all your passwords securely.,The setup is for username and password but doesn't account for structures that have additional codes or authorizations.,"The problems solved are: Losing passwords, storing passwords securely. The benefits are being able to log in to one platform and have all my passwords saved.",10.0 +36,lastpass,Carlos P,Small-Business,2021-03-26,LastPass is a simple and powerful tool for today's memoryless world,"I like that LastPass is easy to use and intuitive. It integrates well with all websites and allows me to keep secure encryption for all my personal and work-related accounts. It allows me to organize folders, share with others, and only memorizing one master password for all of those while keeping encryption secure is a relief.I also like the security scoring that helps me stay on the look for potential breaches and weak password work.","I honestly have nothing to add. The free version, which I also use is also very complete and works perfectly for personal use and regular day-to-day internet management like accessing Facebook, Twitter, my email, paying bills, and others.","It supports my remote company with collaborative and secure access to specific tools and individual management of passwords and security. I also use it personally and make sure all my social media, academic, email, and others are also secure and easy to access.",10.0 +37,lastpass,Lianna D,Mid-Market,2021-09-28,GREAT way to organize and save passwords!,Being able to save my passwords automatically on one website without having to remember them all. Also the ability to update my passwords on every website when needed.,Sometimes my username doesn't save along with my password so I have to manually enter it.,Being able to use highly secure passwords and keep them all in one location.,10.0 +38,lastpass,Diego B,Small-Business,2021-11-30,GREAT INTERFACE AND FUNCIONALITIES. SAFE,It's easy and simple to use. Offers great security.,"It can get pricy, and some of the links thumbnails don't work",Password and credentials managements,8.0 +39,lastpass,Natalia E,Small-Business,2021-10-06,No more losing my passwords and usernames. With LastPass I feel my data is safe and ready to use,"I like that I don't need to fill out any access info, when using the LastPass chrome extension, the system reads all the info and ask you if you want to save it","When you have different account users in the same platform, sometimes the system reads it as it was one and rewrites the credentials. You need to be aware of this to not change and important info","I don't need to memorize my passwords anymore, I can share my accesses with anyone I want to have them",10.0 +40,lastpass,Garreth N C,Small-Business,2022-01-20,Good Value Password Manager,"Multi-device software, easy to use, compatible with various security systems, has auto-fill, offers suggestions for secure passwords","Nothing really. Pricing is good, features are good",creating secure passwords for all sites without duplication,10.0 +41,lastpass,Verified User (Anonymous),Mid-Market,2022-01-13,A second brain I can share,"Ability to package and share sets of credentials +Chrome extension",Not important at all but ui looks a little out of date,"One time authentication in one place +Shared credentials for common tools",10.0 +42,lastpass,Verified User (Anonymous),Enterprise,2021-05-18,Best password management solution,"Lastpass is incredibly intuitive, easy to use, and helps not only manage all passwords and login credentials securely but also helps ensure that new passwords that you create are sufficiently strong and secure. My favorite feature is the mobile app that allows you to access saved passwords with facial recognition - secure and a huge time saver!","1. Occasionally, Lastpass isn't compatible with other website form fill features and it's difficult to click the correct area on a page to generate your password because the website itself uses the same area of space in a fillable form for its own functionality (e.g., show password characters) and this makes it frustrating/difficult to click to Lastpass to get your password to generate.2. There are times when Lastpass could be more intuitive and tries to save a second password for the same account (for example, saving a password without the username and considering this a second set of login credentials - which isn't necessary or helpful)",Password creation and management. It helps me stay organized and keep my accounts secure.,9.0 +43,lastpass,Angie D,Enterprise,2021-09-23,User-friendly password keeper,The extension is easy to install and pops up when I need it. I don't find it annoying or interrupting. It is also easy to access the vault if I need to.,Not really any downsides I can think of. Simple but robust enough.,Storing personal and team passwords/logins.,10.0 +44,lastpass,Verified User (Anonymous),Mid-Market,2021-11-11,LastPass is the biggest life saver!,I love how LastPass saves all of your passwords. It comes in handy every day!,"I dislike how often you have to change your password, but overall, everything has been great.",The benefit of using LastPass is that you don't have to remember all of your passwords. It also automatically signs you in to all of the software we use each day.,10.0 +45,lastpass,Verified User (Anonymous),Small-Business,2022-04-20,Last Pass,Easy password management. Confidant in secure passwords.,Some sites do not update password generation.,Password management for staff. Security confidence.,9.0 +46,lastpass,Dan G,Mid-Market,2021-10-13,Excellent and secure place to keep important information with MFA.,The ease of capturing passwords and tracking them,Not knowing what information is being shared with the team in multi-user access sessions.,Providing access to multiple systems easily to new employees by simply setting them up in Lastpass.,10.0 +47,lastpass,Verified User (Anonymous),Mid-Market,2021-12-22,Mark's :LastPass review,The simplicity of integrating and using Lastpass.,Need to license individual users. Also not being able to allow external users the ability to update passwords in the vault.,We needed a secure way to store and share passwords.,9.0 +48,lastpass,Patrick G,Small-Business,2021-12-08,I've been using it for years - would be handicapped without it.,The ability to generate and store extremely secure passwords,It can be a little clunky with some sites without a unified sign-in page or sign-in screens with pop-ups. It could use a UI update.,Storing passwords for the multiple sites I work with daily.,10.0 +49,lastpass,Verified User (Anonymous),Small-Business,2021-09-21,Cumbersome but necessary,Using LastPass makes me feel like I'm doing what I need to in order to protect my passwords.,"The LastPass addon for Chrome often doesn't work properly when I'm creating a new website login, and I have to take extra steps to add the information to my vault.","The problem I'm solving is I spend much less time managing my passwords. Using LastPass I can see my password security rating at a glance, and quickly address any re-used or low-security passwords.",8.0 +50,lastpass,Tapan J,Enterprise,2021-08-17,Lastpass takes care of my security,"If you want to keep all of your passwords safe on your phone, consider LastPass. I've been using it for a number of years and rely on it to complete password fields on websites and applications rather than learning them all my own. It does, however, produce a strong password input, which ticks all the checkboxes for good password practices.",I miss the possibility of saving the password database on my server.,"This is excellent software for exchanging passwords that are both critical and important. Not only is the software user-friendly, but it is also cost-effective. Its use on a variety of devices, including Android, Windows, and Mac, is causing it to grow in popularity. Its free edition is more than adequate for those who want to protect their internet accounts, credentials.",9.0 +51,lastpass,Verified User (Anonymous),Mid-Market,2021-08-16,LastPass for Enterprise Business - a multiyear disappointment,It stores passwords for our business which is expected.,"Want timely support when users have problems? Want to be able to renew your product electronically online without hassle? Want to be able to easily find support information and be able to actually call and open a case?If you are like me, these things should be a no-brainer for any customer of a modern Saas company subscription. Not for LastPass, err I mean LogMeIn. Support here is mostly hit or miss when you can actually get it. Response times are sad and at best 24-48 hours if you are lucky, and you won't be. You absolutely cannot call to get support even though the support site says business customers have access to 24/7 phone support. They go to great lengths to make sure you NEVER are able to see or find the phone number to call support (I am not kidding).The last straw for me was in trying to renew our subscription by simply updating credit card on file only to get 404 errors after clicking the button. My company profile link in their admin console has another button to ""buy licenses"" but when clicking it I'm redirected to page that says the purchase is not compatible with my account. Then says I need to contact support (full circle again with no access to move forward).I've heard for the past 4+ years that their product support was supposed to be improving, but the sad truth is that it will never do so. Looking to move our business to 1Password and intend to never look back.",Storing of passwords and sharing to teammates.,0.0 +52,lastpass,Chien-Yu M,Mid-Market,2022-01-05,Feedback,I enjoy the LastPass auto generating temporary passwords when other platform such as Google temp password settings are more insure.,I would like to have LastPass family account notification set separately from business accounts to avoid user confusions. I would also suggest when using LastPass generating temp password that the capital I and lower case l be on a separate auto temp password generator to a old confusions.,LastPass helps to fix broken simple LDAP manager by generating passwords.,8.0 +53,lastpass,Verified User (Anonymous),Mid-Market,2021-12-29,Great Product and Product Support,Secured product Product support Friendly employees.,"Currently, they do not have a connection between azure conditional access with Lastpass on mobile devices, they are working on it with Microsoft, and hopefully, they will have an answer soon as it has been over more than a year.","Secured password manager for everyone, dark web monitoring, family as a benefit for personal usage.",10.0 +54,lastpass,George U,Mid-Market,2021-08-12,LastPass is a solid and secure password management product,"LastPass constantly synchronizes all your devices to give optimum password management service. It keeps all my passwords safe and makes it easy for me to log into different sites with just my master password, so I don't have to remember all the passwords I use for various websites and apps. To prevent security breaches and leaking of sensitive information, we use Lastpass in my organization as a secure means of safeguarding ourselves. It is effortless to set up and use, and the interface is simple, with all tools and features readily available on the left menu tag. I also use it for my credit cards and file filling information. lastly, I use the biometric option to sign in because no one can forge my biometrics and gain access to my information.","There is nothing to dislike about the product, and it works perfectly well all the time. None of my colleagues has complained about it also.","LastPass helps monitor every website I use on my computer and notify me if my information is at risk of exposure. Sometimes I use the browser within the app to save time of filling forms and passwords over and over, and also ensure my passwords are safe within the LastPass platform. It is really easy to use and convenient at all times.",8.0 +55,lastpass,Verified User (Anonymous),Small-Business,2021-08-10,"Great in theory, but execution leaves a little to be required.","Lastpass provides me a secure and fairly easy way to share login details and passwords with my work colleagues. Lastpass also offers quite a bit of options in the way of permissions and organization. For example, I am able to organize a set of login details into a particular folder and then simply share the entire folder with a team member if desired. Lastpass also allows me to customize if I want to enable the password to be copyable to a computer's clipboard. This is a neat little extra security addition that I enjoy. Finally, Lastpass offers a reasonably smooth app and also integrates with almost every major browser, which is convenient.","Some of Lastpass' features can be inconsistent. I can remember many times when it has been unclear to a colleague if they actually received a shared password, and where it would be located. The browser integration can also be annoying. Lastpass uses a password fill system to input login details. The fill function often has problems recognizing the appropriate forms to fill, or sometimes refuses to fill at all, making it inconsistent and occasionally frustrating. Many of the passwords are also not copyable so simply using the web app as a standalone is not a satisfactory solution. Finally the browser integration will sometimes interfere with your computer's existing built-in password manager. This makes it very difficult to use Lastpass in conjunction with your native password manager.",LastPass simplifies the process of having a large group of people share login details when attempting to work on similar plaforms. It encourages collaboration and makes teamwork a smoother process.,6.0 +56,lastpass,Justin S,Small-Business,2021-08-11,Good when good! But...,"The ease at which I can save passwords and also, most importantly - create them. I like that it can integrate into most browsers too so it's there to help with a click.",I've had issues where the password it generates when on a webpage doesn't save. I ended up in a loop once where I generated a PW and had to keep resetting it because LP didn't save it. My experience with customer service on this issue wasn't fantastic either. But it appears to have been a once off.,"Having my passwords close at hand, knowing I can generate secure passwords quickly and it's there on my work and personal devices.",8.0 +57,lastpass,Verified User (Anonymous),Mid-Market,2021-08-13,LastPass!,Keeps all of my passwords super secure while I'm working. Prevents me from having to use the same password over and over and remembers then for when I signed into my account. Just a nice sense of security knowing people are actively out there trying to hack into your personal and work-related accounts. The password health check is great too. allows you to understand the strength of your passwords and edit them. you can even use LastPass's help to generate a unique password up to 99 characters for you!,If you forget your vault password it can be tough to get in. Sometimes logging in can be a pain because it constantly tells you your passwords are weak via the security challenge,"account security, ease of getting into your accounts by saving your passwords. Benefits = very strong passwords, keeping all of them in the vault to view",10.0 +58,lastpass,Verified User (Anonymous),Small-Business,2021-12-30,"Important, but sometime irritating service","I like that all my passwords are in one place. However, this also makes me very dependent on LastPass and on my Lastpass account.",I don't like that I constantly get warnings about using the same passwords. Especially for stupid websites for which my privacy doesn't really matter like wetransfer or some craft website. There should be a way to differentiate sites where a new password is needed (like online banking) and sites where it isn't important.,"It's nice that Lastpass helps me come up with passwords that are secure, but since I am often logging in on multiple devices, it may be safer but it is unhelpful and, as I mentioned above, not important.",8.0 +59,lastpass,Verified User (Anonymous),Small-Business,2021-11-16,Great group password manager -- when it works,"LastPass allows users to share passwords easily with other members of their company. It allows you to organize passwords based on groups and folder, and also includes the ability to store payment methods. Lastpass will also autofill passwords on websites when prompted.","Some of Lastpass' functionality leaves something to be desired. Often times passwords will take a long time to appear after being shared, or autfilling passwords will not function correctly. The lastpass autofill option can also sometimes interfere with your native password manager present on your computer as the lastpass autofill button will sometimes block the defualt one.","Lastpass makes working withing a shared workspace much more enjoyable. Instead of just trying to message and share passwords, which would also be a lalrge security risk, Lastpass allows you to manage them withing one concise hub.",7.0 +60,lastpass,Dennis R,Mid-Market,2021-05-17,Amazing password manager with only minor issues,"The admin capabilities are great and the new admin dashboard was a surprising change.There are many webinars available for users and admins, also when the new admin dahsboard was introduced.The colleagues love the mobile apps and it's confortable due to Azure AD federation.The admin policy options are very good, we can configure every scenario with black and whitelists.","Coming from the Enterprise side, there is something that I imagined to be more confortable:We are often having problem regarding onboarding new users. Due to the federation, we have something that couldn't be solved by us so far. The LastPass invitation email is being sent to the user once the AzureAD user is created, but at this time the account doesn't have an office mailbox (license) and the mail gets lost.Therefore I have to manually re-invite every user, which messes up the shared folder permission we dynamicall assign based on dynamic Azure AD groups. Already talked to LogMeIn support but this is something we have to solve on our end.Also, the autofill feature isn't perfect:In the browser, probably 30% of all pages cannot be autofilled (website restrictions).The autofill in the LastPass Android App is very inconsistent (even with battery exceptions and setting LastPass as default autofill provider in system settings)","We had 0 control over how users store credentials. Many were using TXT files on their desktop, post its under their keyboard or things like KeePass. For the latter one, we couldn't ensure that they were safe enough - people created KeePass vaults with weak passwords and shared them everwhere.Also, sharing credentials with externals is fantastic!",10.0 +61,lastpass,Verified User (Anonymous),Mid-Market,2022-03-01,"Great product, solves password memory issues!",Integration into apps and websites using Apple's Face ID creates a strong solution,Some glitches in the integration with some services require manual input,Security of passwords and generating suitable strong passwords. Also our team having access to a secure location for single account services.,9.0 +62,lastpass,Jordan W,Small-Business,2021-09-28,Does what it needs to do in a helpful UI with options for more,"The UI is helpful, with visual folders and notes available on any saved item. For sharing among a team, this is helpful and it's what I most appreciate in LastPass compared to 1Password.","Non-password options don't seem all that valuable, though I'm sure they work fine if you want to use them",We use LastPass to share shared usernames and passwords for shared services among our leadership team. We also store some direct hardware/network logins this way as well.,9.0 +63,lastpass,Verified User (Anonymous),Mid-Market,2022-01-14,Convenient cross device Password manager,Managing passwords across laptop and mobile (iOS) is extremely easy and simple to use.,Account sharing UX is cumbersome and always frustrating to set up. Not the best setup when it comes to sharing passwords,Account security and password management,9.0 +64,lastpass,Parth G,Mid-Market,2021-11-25,Good tool to remember and share passwords but buggy at times.,its easy to store and share credentials with other team members. Also the ability to set if the members can view the passwords or not,The fact that it logs out even though selected to remember 30 days,Remember and share passwords in lie of privacy and SOC compliance,6.0 +65,lastpass,Nathan R,Small-Business,2021-10-01,Great Freemium with a Bargain Pro Plan,"The ability to generate, capture, review, and modify passwords across all devices and sites (with dual-authentication).","It's a nit-pick...but initially the basic (freemium) plan included both mobile and desktop/browser-based logins. Now, you must choose either mobile or desktop on the free plan, or upgrade to access both. That said, the Pro plan is affordable and 100% worth it. So, not really a ""dislike"" after all!","LastPass solves 2 major problems: weak/repeated passwords, and remembering them. Superb.",10.0 +66,lastpass,Verified User (Anonymous),Small-Business,2021-12-15,Absolutely love LastPass,LastPass is so easy to use and I never have to worry about remembering passwords or people hacking into my accounts because my passwords are easy,"It was nice when it was free for 2 devices, but that's not the end of the world",All my accounts have different passwords now so if something gets hacked they don't get access to everything. It's so easy to log into things from anywhere and remember family passwords.,10.0 +67,lastpass,Fatimah (Arlene) H,Mid-Market,2021-09-29,I tell everyone to get LastPass,"It is an easy-to-use platform. I had something like 600 sites using a set of 4 passwords before LastPass now they all are unique because I don't have to remember them. As an IT trainer, it's also super easy to train anyone to use.",I really just love the platform. I cannot think of any current issues.,"my team is safer, my family is safer, overall it has been a great investment for our organization.",10.0 +68,lastpass,Keri S,Mid-Market,2021-10-15,Super easy to use!,LastPass is really easy to use as a plugin on my browser. I can make passwords that are secure and not have to remember them.,Sometimes LastPass forgets certain sites - I believe this is because they've changed their URLs or something. That can be frustrating because you have to re-link your password.,Making secure passwords without spending tons of time resetting them when you forget them!,10.0 +69,lastpass,Larry S,Mid-Market,2022-02-16,"LastPass offers the best combination of features, compatibility, security, and ease of use.",Allows for flexible password sharing with other LastPass accounts and supports app and U2F key-based two-factor authentication.,Password inheritance only for premium accounts.,Intuitive password organization into distinct vaults,10.0 +70,lastpass,Verified User (Anonymous),Small-Business,2022-03-14,LastPass Review,I only need one password for everything!,The password has to long and it gets alittle annoying,I don't have to remember all the random passwords that I make up,8.0 +71,lastpass,Will G,Small-Business,2021-10-19,LastPass makes is stupid simple to track passwords as an individual or team.,"I love the Chrome extension. It makes it so easy to keep and access passwords for several accounts. Additionally, I have been extremely impressed with how secure they appear to be.",Sometimes the suggestion icons can appear on web pages and be annoying. Not a critical issue though.,Retaining 100's of passwords and usernames. So simple to catalog and share with the team.,10.0 +72,lastpass,Verified User (Anonymous),Small-Business,2021-08-10,"Customer service is horrible, Software is glitchy",Convenient and is good when it works. Chrome app is good.,"The software is very glitchy. We are a paying customer for the past few years. At least once, a bunch of our data got corrupted, and they had to revert things, so I had to reset many passwords. Customer service's answer to everything is to reset, log out of everything and log in. They stop answering once you tell them that didn't help. You have to see their response; it's sometimes comical, like a joke. We are looking to switch but it's just a headache to change everything. Android app also seeps to be corrupting data ( things show up with a square like character instead of the password ).If you are looking around for a solution, look at other companies.",saving passwords,1.0 +73,lastpass,Hailey B,Enterprise,2021-07-08,The best app I have ever used!,"Keeping one's passwords safe is essential, as is the ability to set unique passwords for each site. It's critical to be able to view recently used passwords as well as 2FA. Passwords will be created and shared at the enterprise level, and users will be able to control which passwords they have access to. One of the most significant advantages of LastPass is its compatibility with mobile devices, which allows us to access our passwords with just a few clicks.",We need a mechanism to make it easy to change passwords and set up accounts.,"To ensure the safety and security of my passwords, I want to take precautions. All of a user's passwords are automatically remembered with one click in this program. The browser will automatically adapt to the use of this tool.",9.0 +74,lastpass,Verified User (Anonymous),Mid-Market,2021-10-17,Super useful to keep your family safe,chrome integration & auto update/learning,"With recent changes, you need to choose if you want to use the free version, between desktop or mobile lastPass help. I use it for desktop but sometimes that makes accessing sites on mobile a bit of a hassle. Saying that, it is fair for a business to get revenue which is in our own interest, to keep them well-capitalized so they can keep the service safe.","created a safe way for all family members to use safe passwords for all accounts, and to collaborate and allow each other access important websites on other's behalf",8.0 +75,lastpass,Verified User (Anonymous),Mid-Market,2019-11-15,"LastPass, I would like to Pass",It manages passwords and meets all compliance requirements,The UI is terrible and not as easy to use as other platforms,PW management,5.0 +76,lastpass,Danny S,Small-Business,2019-03-26,A needed level of security for organization,LastPass makes it simple for me to store all my passwords safely and securely. It also allows staff to share passwords safely and securely with others in the organization. No more sticky notes with passwords floating around.,"LastPass can is getting better but once in a while, there are moments that the system is a little slow prompting for the password.",LastPass allows us to help users maintain strong passwords without the need for memorization. It also allows me to get a security score for my users' password strength. This helps me to maintain better security practices for my organization.,10.0 +77,lastpass,Joseph C,Small-Business,2019-09-20,LastPass should be your first resort,I love how easy it is to share passwords with others in a secure way. ,It is not as fluid as it could be. Seems to be a bit buggy sometimes when using the program.,"I work remotely with a team, so sharing passwords has not been easier.",10.0 +78,lastpass,Verified User (Anonymous),Enterprise,2019-08-19,LastPass is a good tool but has its limitations,LastPass is very easy to use. The available documentation was very helpful and made for a successful roll out. ,LastPass does not offer a connector for Azure AD which makes provisioning/deprovisioning very manual and difficult for large enterprise environments. Along with SSO not being available as well.,Having a secure solution to provide users to log passwords helps to better protect the environment. ,7.0 +79,lastpass,John E,Small-Business,2019-08-15,Great way to Live your life,"I no longer have to remember 1,350 passwords.",There is absolutely nothing I would suggest,I need to change passwords for many accounts every 90 days!,10.0 +80,lastpass,Josh D,Small-Business,2019-08-15,Great service for business and personal use,Saves all my personal and business passwords. Links business and personal accounts as well.,Converting from the free version to enterprise was challenging.,More secure passwords.,10.0 +81,lastpass,Samuel B,Mid-Market,2019-08-15,Excellent password manager,We love that LastPass is so easy to use but also secure.,The plugin and autofill can get in the way sometimes,Replace Passpack which sucked.,9.0 +82,lastpass,Verified User (Anonymous),Enterprise,2019-08-20,Awesome and handy,"Everything. Can’t go wrong, it’s actually so convenient and secure. Perfect solutions for people with too many passwords like me.","Nothing comes to mind, it could always be marketed more to companies so more people can start using those ",It saves all my passwords and helps me log in and out of dozens accounts. ,10.0 +83,lastpass,Verified User (Anonymous),Mid-Market,2019-08-15,Security with ease,Last Pass features an intuitive design that is very easy to use and works seamlessly. It is super easy to adopt for my organization. ,The lack of ability for a normal administrator to reset a Master Password is something that has caused issues for my organization. ,People forgetting or getting passwords for multiple applications has gone down quite a bit. ,8.0 +84,lastpass,Verified User (Anonymous),Enterprise,2019-08-15,Secure platform for sharing passwords. I use it at home too!,Lastpass is very useful for sharing passwords across the team without having to resort to chatting. We also like to disallow users to view passwords that we don't want to spend time rotating.,I wish Lastpass accepts YubiKey U2F multifactor. I do not think TOTP is secure enough to be reliable.,Sharing credentials to sites/tools with one login.,7.0 +85,lastpass,Verified User (Anonymous),Mid-Market,2019-10-18,I don’t know how I would work without it,The chrome extension makes it work for me. I automatically get the option to add new passwords to my vault and I can generate secure passwords on the fly,I wasn’t super happy with the mobile app. It didn’t do a great job storing my passwords. The account recovery process is also a pain,"Password storage. +Increased security for all my accounts online",8.0 +86,lastpass,Verified User (Anonymous),Mid-Market,2019-08-27,Works Great,Ability to segregate personal and business passwords. Ability to have a centrally managed password database that can be shared per user or user group. ,Would like better auto fill capabilities. Would like Facial ID login on iPhone. ,Sharing passwords to users in an encrypted format. We were using a spreadsheet before. ,8.0 +87,lastpass,Verified User (Anonymous),Small-Business,2019-08-16,magic memory,"It is a perfect app to generate password and save it , also when i try to login url it save it, also whin i shared password without knowing it.",Search for all my files in computer to find pass and id and arrange them.,generate pass and save with safe,10.0 +88,lastpass,Verified User (Anonymous),Mid-Market,2019-11-18,Ease of use.,Ease of use and easy setup. Easy password creation tools.,Not much to dislike. It is very simple and straight forward.,Solving the issue of having to type and remember multiple passwords for different applications that have different password requirements.,10.0 +89,lastpass,Verified User (Anonymous),Mid-Market,2019-08-15,Strong password manager when using extension,The extension is a great product and the way the credentials are stored is very secure.,"I do not like the lastpass clients because they constantly crash and are bloated. The client on MACos is very nice, but on windows it is horrendous.",the windows client always crashes and is hard to use.,8.0 +90,lastpass,Verified User (Anonymous),Small-Business,2019-10-22,Very useful,Easy to access any site without having to worry about security,"Separation of multiple accounts should be easier, so there can be attribution of work and home passwords containerised so they do not overlap or appear as two passwords for one domain.",It has greatly increased the overall security of my login procedures across all sites ,10.0 +91,lastpass,Verified User (Anonymous),Enterprise,2019-08-16,Lastpass user experience,Can manage more than just web based applications password's. ,"Nothing really, other than having to use a product like this to operate securely. Says a lot about our society that we have to always stay ahead of and outsmart attackers. ",Sharing passwords amongst Admins without having to disclose the password itself. ,6.0 +92,lastpass,Verified User (Anonymous),Enterprise,2019-10-25,Not the best password manager,Is decent at managing passwords but is not the best on offer. ,the ease of use is really low with its clunky interface. The integration with web browsers is rather clunkly. It can do a lot better to make password creation and updating much easier.,Safe and secure password management with ACLs,4.0 +93,lastpass,Verified User (Anonymous),Small-Business,2019-01-23,Lastpass review,When you have logged into lastpass and set up the password to get into the lastpass account it is very easy to use as all the passwords are saved and you then just click log in and you are then logged into all the systems that you use.if you forget your master password you can contact lastpass and reset your password after getting a reminder.it is very quick to set up and then use multiply systems and you then only have to click and open the systems.once you have a master password you should be able to log on from any pc and get access to all your password. ,"As I dont always work at the same computer it dosnt always work on other pc and it keeps asking for the main log in and the password dosnt always seem to work??? +have tried to reset password and it seems a bit long winded but for safety reasons is a good thing.",Having one place for all your passwords is a good idea and they are saved very easy .,8.0 +94,lastpass,Verified User (Anonymous),Small-Business,2019-06-05,LastPass Essential in an Age of Data Breaches,"I love how LastPass integrates right into my browser and into iOS as well. It used to be a hassle to use it on mobile, but they have since improved that greatly.","I think the Vault UI could be improved aesthetically and functionally. When looking at all items in the Vault, it's just a mess. They do have filtering options, but I think those could be displayed easier to get to what you want faster.","In an age of data breaches, cyber security starts with a strong password. LastPass allows me to easily create insanely long and diverse passwords for different accounts and actually use them.",10.0 +95,lastpass,Verified User (Anonymous),Mid-Market,2019-09-24,Love it,I'm terrible with passwords. it makes them safe and stores them .,I have no negative things to mention. I love the app.,Helps keep my data secure,10.0 +96,lastpass,Verified User (Anonymous),Enterprise,2019-11-18,love it,helpful to have strong passwords and not using the same password across accounts,I wish the SSO was more of a true sso where you don't have to punch in the email address,same password across multiple accounts,10.0 +97,lastpass,Desiree J,Small-Business,2018-10-30,LastPass helps me and my business remember our passwords!,"I like how LastPass is a browser extension that can be used offline! There are many password managers that require an internet connection, which is not helpful when using intranet facilities. There are so many options, such as filling out secure notes, forms, and generating secure passwords. LastPass also puts our business's passwords to the test by trying to guess our passwords and telling us if they were successful!","We dislike how LastPass is set by default to not warn us before filling insecure forms. This does not keep us fully safe from hijacking. We also dislike how LastPass doesn't log off automatically by default. This means that I have to remember to log off before I stop using LastPass to log into my business's intranet accounts, used for accessing private content such as our company's top-secret commercials and website updates.","LastPass helps me remember the passwords to our business's Amazon S3 services, WordPress login, and Intranet login. We have never before had a completely offline password manager, and LastPass lets us even save a disabled One Time Password locally for Account Recovery. There are also such helpful hotkeys to help us fill in the next and previous logins in the event of multiple instances, with the hotkeys Meta+Page!",9.0 +98,lastpass,Brian W,Mid-Market,2019-08-15,Last Pass makes managing passwords so much easier,"I like that I'm able to have my passwords always with me securely. I only have to remember one password, and it can generate very complex passwords for me.",I haven't come across anything that I dislike so far,Passwords being stored in unsecured methods,10.0 +99,lastpass,Verified User (Anonymous),Small-Business,2019-10-29,Password Manager ,LastPass remembers all my passwords within my browser. ,I don't have any negative comments about LastPass,I never have to remember my password for the many logins I have in a day,10.0 +100,lastpass,Kala F,Small-Business,2021-12-13,Great job!,Saves me timing looking up passwords somewhere else.,"Trying to get my master password reset has been hard, but that could be a company related thing.",Trying to remember all the passwords I have to remember as an IT professional.,7.0 +101,lastpass,Billy M,Mid-Market,2022-04-28,Top Password Manager for business,Easy to manage a whole business password,The UI can become Muddy and confusing to,efficiency and account protection at its finest,10.0 +102,lastpass,Diego M,Enterprise,2021-10-15,One of the best password managers,Browser and desktop apps sync makes password saving a breeze,Company's policy to extend the login time for more prolonged time,Securely saving and auto-filling login forms,10.0 +103,lastpass,Jacob O,Mid-Market,2021-08-17,Great tool that I use constantly for passwords,"Auto fill on any site, and is easy to use.","You often have to re-sign in, since it does not keep you logged in for more then a day or so.","It allows me to access my passwords on multiple devices, even if not my usually computer, I simply have to login to it",9.0 +104,lastpass,Verified User (Anonymous),Mid-Market,2021-11-03,Decent password manager,LastPass is great at storing passwords for yourself (as well as other sensitive data).,LastPass is cumbersome when sharing passwords across an organization - especially when you are scaling.,LastPass increases security by allowing us to not reuse passwords - and to securely share passwords (although this process is not great).,6.0 +105,lastpass,Verified User (Anonymous),Small-Business,2021-11-22,LastPass keeps it secure!,My organization's passwords are kept separate from my personal passwords.,Kind of floppy GUI. It would be more user intuitive.,We can delegate permissions to particular users to only be able to apply passwords versus actually seeing them.,10.0 +106,lastpass,Verified User (Anonymous),Mid-Market,2021-12-06,Annoying but essential,"fairly easy to use, can click and go right into the site link",long process for sign in to be so secure,shared log ins!!,6.0 +107,lastpass,Verified User (Anonymous),Small-Business,2021-08-01,Amazing password saving and management tool,I really like how LastPass automatically prompts me to save the password each time I sign up on a new website or change the password on an existing website. It's a really great feature as it helps keep all my passwords intact and keeps them secure. I also like the security features of LastPass,I did not find any cons while using Laspass for my password management requirements,I'm using LastPass as an extension on my web browser to save all my passwords,9.0 +108,lastpass,Muhammad D,Enterprise,2021-03-29,Conveniently store passwords and usernames close and securely,"For a few years now, I've been using LastPass for both business and personal use, and it is a great tool, mainly when you use both. It's a big password manager, and most (though not all) login types are captured. Auto-complete is fine. The best feature is the option to connect corporate and personal accounts so that you can access both company and personal accounts when signing in without having to go back and forth and keep the passwords apart.","It's a shame that a password vault on mobile devices is no longer available as planned. The iPad is my only home machine, with no inclusion of several new personal passwords to LastPass.",So many codes are there that I don't even know what other I have. I enjoy being able to browse the LastPass settings on the pages I have activated and saved.,9.0 +109,lastpass,Danny P,Mid-Market,2021-03-19,A modern and dynamic password manager,"I like Chrome, and the simple user interface. Every time I make a new online account, LastPass makes the password for me and stores the link there. I also like the password management feature that reminds me of my credentials whenever I use the same ones on multiple web sites. It is a feature of auto-login that I find to be very pleasing. If I go to most websites, I never have to register.",I would like you to provide reminders when you use the same username or password on multiple sites. You are only able to save one piece of content at a time.,"Useful security tip: Use different passwords for each website and host! It is simple to use, and there is no configuration to install.",9.0 +110,lastpass,Maged H,Enterprise,2021-03-18,"It is perfect for generating passwords, ensuring security","Passwords are especially nice because I don't have to remember them. The fact that it has a password manager that allows me to store my passwords and sync them across my devices is fantastic. Passwords are effortless to maintain, and those stored in different forms provide differing levels of security. It is amazing that both Touch ID and Face ID support are in IOS!","When you use the auto-complete feature on some sites, nothing happens. Dynamic pop-ups are typical when it comes to registering with the site.","With multiple departments on a large team, remembering names and passwords is difficult. On top of that, we work a lot, which means we're always on the go. The ability to do this is made possible by LastPass, which facilitates easier keeping of names and passwords. We don’t have to waste time and energy by wracking our brains.",9.0 +111,lastpass,Verified User (Anonymous),Small-Business,2021-10-27,"Great Product, lots of good features and flexible subscription plan.","Great Product, lots of good features and flexible subscription plan.",Needs improvement on the autofill function of the Chrome broweser APP on IOS devices. I rarely use Safari.,Keeping up with all my passwords.... DUH! LOL!!,10.0 +112,lastpass,Verified User (Anonymous),Small-Business,2021-10-29,Good Password Managing services,"No need to remember passwords, and it provides security",Unable to use Lastpass on multiple device for free,No stress of remembering passwords,9.0 +113,lastpass,Verified User (Anonymous),Small-Business,2021-08-26,Love it. Don't lose your master password!,"efficient, easy, love everything about it!",There is really no way to recover your master password without it become a massive endeavor so don't lose it!,Passwords are now secure and streamlining portals and making everyone more efficient.,10.0 +114,lastpass,Kolby D,Enterprise,2021-07-05,"Subscribed for 2 years, ended up moving to to 1Password",It did the job in terms of password storage.,"The tool itself doesn't do much to differentiate itself from its competitor in price or function. I subscribed for two years to their free version; then, with no warning, they cornered me into subscribing by keeping my passwords but forcing me to pay to maintain use of the tool. I switched to 1Password and am much more satisfied in all aspects; price, function, and customer experience.",I was using it to store my passwords.,0.0 +115,lastpass,Verified User (Anonymous),Mid-Market,2021-11-10,Lastpass just works!,One of the best features of lastpass is the ability to ensure all passwords are saved in a centralized location and very secure with a master password.,"Forgetting the Master Password can be a pain, but as an administrator, this isn't too much of an issue.",The ability of the IT team to share credentials is amazing.,9.0 +116,lastpass,Verified User (Anonymous),Mid-Market,2021-09-21,All my passwords in 1 location,The password manager and autofill option for URLs.,Sometimes fields that i don't want it to try and auto fill or recognize as a fill option.,Remembering passwords for over 100 different logins is super easy and secure with lastpass.,10.0 +117,lastpass,Sara Y,Mid-Market,2020-12-23,LastPass is the best password manager,"I like their vaults and the facts that every time I sign into an account, software, platform etc. it allows me to save those credentials for future use. We no longer have a spreadsheet or a visible list of logins and passwords. LastPass takes care of that problem for us.","I dislike how people's work and personal account information are often mixed up in LastPass because it could cause a security issue down the line. Also, it prevents us from making copies of each account to store in our personal vault as well.","I also like their analytics report of how secure current passwords in the vault are and how often users should change them. Instead of asking a coworker for their login information, I can just use the one already saved in LastPass.",9.0 +118,lastpass,Jackie B,Small-Business,2020-11-17,"Simple, Secure Tool for Storing, Managing, Accessing and Sharing Credentials","With LastPass, I have to know just one password to access all my accounts. Every site, username, and password is stored securely and can be automatically populated when using the browser extension and logged in. It's also great for agencies that need to share access among a team. When an employee leaves, their LastPass access is deactivated and they no longer can get to any of your companies accounts. It's easy to use, easy to maintain, and easy to ensure you and your employees can get to what they need. I have a personal account for my own information and I'm also a member of a business account, which can be linked so I can access everything at once. LastPass also has great tools for organization, so we can tag credentials and credit cards to a client folder. Information is easily searchable and findable in the system. I love that it detects when a password has changed and prompts you to update the record stored in LastPass. Super helpful! We've been using LastPass for years without any problems, with full confidence that our credential data is secure and easy to access for those who need it.","LastPass for mobile requires a paid app, which is annoying. I wish I could use it as easily on my phone as I can from my desktop. You also need to be careful when deactivating users, as every person in the account gets a notification. We've accidentally alerted our team to an employee being let go or leaving by deactivating their LastPass account before announcing the change!","Every member has easy access to our agency's tools and accounts, as well as those for our clients. We don't have to track things down from each other because we have a consistent place to store and manage usernames and passwords. It also gives us a secure and compliant method for storing client's credit card information that we need to run their accounts.",10.0 +119,lastpass,Verified User (Anonymous),Small-Business,2021-09-08,Protect and Store Passwords,Lastpass is incredibly easy to use and offers highly secured storage to save credentials. The password autofill feature works seamlessly. The remote authentication and password generator function is the best thing I liked on this platform. It works on desktop and mobile platforms.,The data synchronization is very slow and unreliable.,When working on projects it made easy for us to add coworker and share passwords securely. It also helped me to generate strong passwords. It supports multiple platforms.,9.0 +120,lastpass,Verified User (Anonymous),Small-Business,2021-07-24,Safe and reliable password manager,"Here are the things I liked about LastPass.1. It auto-fills the stored password which, makes the sign-in process automated.2. It is available on cross platforms.3. It lets you generate strong passwords.4. Gives you the power to share passwords with coworkers.5. It auto synchronize and makes a backup of stored passwords.","On a few sites, LastPass doesn't popup and autofill the stored passwords.","It basically, helps me to remember every password I use in my personal and professional accounts. Also, its password generator helps to generate strong passwords and makes my account more secure.",9.0 +121,lastpass,Jordan C,Mid-Market,2021-02-03,Lastpass is the Password Manager for all,Lastpass has the desktop version as well as mobile version. They both do the same thing and react the same way which i really like it. None of the market these days will provide free and do the same thing as both desktop and mobile.,It will be great to have Multi-factor authentication as this will be more secure rather than just having 1 master password.,There are numerous passwords that i need to remember and lastpass gives me easier to locate the password i require. The search is amazing unlike others that needs to find it under a treeview or whatsoever which is so inconvenient.,10.0 +122,lastpass,Verified User (Anonymous),Small-Business,2021-11-23,The perfect solution for all those passwords.,The technology of the centralized password and mfa resource.,The software's premium features require user pay b,Synchronizing all my passwords and mfa services.,10.0 +123,lastpass,Alison N,Enterprise,2021-01-08,Great for password storage,"LastPass does not only safeguard our passwords but saves other information such as our account information, so we don't have to worry about healthcare the proper info and waste your time if we are online shipping. It made it comfortable for all of us. This same main password was its password that allows us to modify and availability all our information.","With this tool, I have really no major problem. LastPass is just such a cordial system that it offers trustworthy friends the possibility to help us in any case of emergency. I love the work in which they should have makes it much easier for people to share their passwords with us. It allowed us to create powerful passwords by informing us of their strength.","I found the authentication policy to be great, it gives the employee easy access to start. The next time you visit the web again, LastPass offers you easy access when you view a specific address, it is quite accurate, if you have explored a given blog as well as filled your login.",9.0 +124,lastpass,Natasha F,Unknown,2021-09-12,Highly Recommended!,"Easy to use, non-intrusive app, convenient to suggest and store passwords",I can't find anything that I dislike. No complaints.,Securely storing my passwords. Suggest strong passwords,10.0 +125,lastpass,Verified User (Anonymous),Small-Business,2021-08-26,"Easy to Use, but free option not as good anymore.","This was easy to use, and seemed secure. It was easy to share and unshare passwords and was great for teams. I liked the platform a lot until recently.","The free version only allows one device now. That's not very useful, so I ended up switching to Bitwarden.",Managing hundreds of passwords and generating new ones regularly. Much more secure than using the same 3-4 passwords for everything.,7.0 +126,lastpass,Verified User (Anonymous),Small-Business,2021-08-10,Decipher,The Security to all my passwords and generating a random password,its not free app. paying a fee after trial period,The app is a one stop place for all sensitive and personal information storage,10.0 +127,lastpass,Verified User (Anonymous),Mid-Market,2021-05-18,Great for personal organization and for secure sharing,LastPass automatically identifies when I'm entering a password in a new site and asks if I want to add it to my vault. I don't have to go in and manually type it! It also categorizes passwords by site and can securely share passwords without showing them,Sometimes it saves passwords twice but that's not a big deal,Organizing personal and work passwords. Securely sharing passwords with colleagues. Suggesting secure passwords when I'm registering for new sites,10.0 +128,lastpass,Verified User (Anonymous),Enterprise,2021-09-15,LastPass review 2021,"Ease of use, ability to organize passwords and ability to share passwords for personal accounts.","From an enterprise level, there were some issues that have arisen from deployment that LastPass has not be quick to resolve.",Looking to provide users a tool to store multiple password credentials and promote security (password) hygiene.,9.0 +129,lastpass,Verified User (Anonymous),Small-Business,2021-04-02,Password Management with LastPass,"My favorite feature is the access passwords from my Apple products (phone, home computer & laptop) when using my work equipment (a computer and laptop, both Windows).","Occasionally, LastPass does not detect when I am creating a new account and password or updating an existing and I will have to add/edit manually.",The obvious problem that LastPass eliminates is the misplacement of or simply forgetting passwords and login credentials. A second but equally important benefit to LastPass is the security aspect. I find it quite helpful in detecting when a password is too weak or overused.,10.0 +130,lastpass,Verified User (Anonymous),Mid-Market,2021-02-10,Top class Password Security,I like how well LastPass integrates in to the web browser. It does a very good job of keeping the process very simple for keeping secure passwords while still sharing them as needed.,Sharing of passwords can be slow and there is no clear indicator as to how long it will take. I also wish it supported generic fido2 devices.,"Originally we implemented it for those few places where we needed to share passwords, but with rolling it out we pretty much have moved all password security in to LastPass. Knowing that passwords are secure and still accessible, plus getting a report on user's use and security has been a big improvement in our security posture.",9.0 +131,lastpass,Verified User (Anonymous),Small-Business,2020-11-26,Incredible time saving app with great backup features,"Connects with Authenticator app (From LogmeIn) which has auto backup in case you lose the phone you can recover the data and passwords. +(Not available for Google Authenticator, in case you lost it you can’t recover) + +The feature above makes me use it it’s just incredible deal + +Also works when you add a new password in the pc browser it saves the password + +Generates strong password when sign up + +It’s free!","Not saving the password when creating or logging into a new account on mobile. +You must create the password first in the app and then fill it. (Which is alright not a big deal)","The 2fa backup is just life saver! Lost my phone few times and I was using Google Authenticator that time. +imagine the hassle I had to go through to remove all the 2fa and set it back. +Some accounts I couldn’t even unblock. + +But LogmeIn Authenticator Auto Backup is just BOMB! + +Best security feature ever, maybe the best free deal ever! + +Incredible time saver also! + +Works great if you are using different devices like iPhone and Windows laptop or Android, auto fills passwords in a second! + +I am so happy with LogmeIn, probably the one that I have recommended the most until now",10.0 +132,lastpass,Lynae M,Small-Business,2020-09-09,"LastPass makes things quicker, leaner and safer","It's so easy to manage and share passwords, bank account information, pertinent addresses and more. It has saved a lot of time and was a great find after reading 2 Second Lean and tightening up our processes.","I wish that you could see what item is being shared with you in your notification email, and I wish you didn't have to log in every time you accepted a shared item.","We are saving time and the headaches that come with password management within a company. It's easier to have safer secure passwords that aren't saved to your computer (ie if someone steals your laptop, they could likely get in to most of your secure sites)",10.0 +133,lastpass,Chris S,Mid-Market,2020-08-27,Good Solution Without a Lot of Drawbacks,"SSO integration with Azure AD was a breeze, they provided great documentation right on the enrollment page. The browser plugin also generally works quite well with most modern websites. Password organization features in LastPass are also highly useful for those of us with literally hundreds of logins to manage, it simply would not be possible to do so without a quality privileged access management solution like Lastpass. Adding the capability to share folders with other users makes it a fantastic solution.","More than a few websites don't work well with the plugin, which causes adoption concerns. There's no global way to manage domain modifications for all users and I wish they would integrate the random password generator into the add item screen. We also end up with quite a few websites that do not work well with it and it constantly wants to add it as a new item even though it's already in the vault. Generally this applies to older websites though, so while it's understandable, it's still somewhat frustrating to users.","We had a lot of disparate password managers without the ability to exercise organizational control over them, Lastpass helped us fix that. We're also utilizing the reporting/scoring functionality to work with users who are still using shared passwords between sites or passwords that are weak. The dashboard report is also great to be able to share with the management team and include in security reporting.",10.0 +134,lastpass,Simon B,Small-Business,2020-08-20,Great password system for enterprise use in business,Within a business Lastpass features some very comprehensive management tools to enable sharing policies and groups. This enables teams to safely share passwords and add staff into a group that automatically assigns them the logins that they need and with the correct permissions to view or edit those passwords. The system is quite intuative and most poeple can begin using it with a basic level of training.,"As the browser plugin is continually looking for password fields, it can sometimes overwrite passwords or form fields which is quite annoying. It happens on less than 5% of website, so rarely happens. Additionally, the fill forms can sometimes fail to complete. This has imporved over the past few years, and again happens very rarely. Although not a fault of the system, the more you develop permissions and groups, the more complex your configuration can become. This can also been seen as a benefit.","The safe sharing of passwords and simple way to store company passwords is very useful. The system saves a considerable amount of user admin time in finding, storing and retrieving passwords. If you consider the amount of time you may spend completing passwords and forms online, a tool for this can save significant and repetative time. The form fields and custom fileds you can add are very useful for saving information that you need to quickly retireve too.",8.0 +135,lastpass,Verified User (Anonymous),Mid-Market,2021-04-28,Powerful tool,"We have several different folders with different access for various service partners, so we can choose what we need to share with people and what is more restricted",The admin portal occasionally logs me out at random so changes aren't saved,"Several different service partners need access to password info and this is an easy, efficient way to share that info with them",8.0 +136,lastpass,Verified User (Anonymous),Small-Business,2021-04-06,LastPass isn't longer my app due to the organic absence of chat,"I planned that LastPass to be my homecoming app for collecting, storing passwords .. Lately, I got doubts if it lost its simplicity, which I loved in the beginning.",It became too big with the motivation to cover all aspects of security concerns,"it was the first software, which made me clear that passwords and the handling of it is a key responsibility",8.0 +137,lastpass,Verified User (Anonymous),Mid-Market,2021-03-26,"Last Pass, it's OK",I like storing all of my passwords in one place.,I do not like the lagging and the constant logging in even if you check the box saying to keep you logged in for a certain amount of days.,Keeping all passwords in one place for personal and professional use is very useful.,7.0 +138,lastpass,Verified User (Anonymous),Mid-Market,2021-05-12,LastPass makes the password management a lot easier,The Federated login for enterprises makes management for administrators very easy,The markup for users with federated login should be better visible.,Central managed password sharing for the whole company,9.0 +139,lastpass,Andrew C,Small-Business,2020-07-15,Perfect for Managing Passwords,The chrome plugin that allows easy access to the website and to quickly filling account info on web pages. I like to new layout with the way things are organized and the icons on the items for quickly knowing what they are. I like that we can generate random passwords. I also like that when I login to a website that I am able to save the login info or create the info in lastpass if it isn't already there.,"Not being able to change the background of the item tiles. Setting up custom items seems a little bit clunky still. Getting users setup is a little tricky. The level of security to prevent password changes and resets is really high, which is good, but also complicated to figure to change or understand so that we can get users passwords reset and logged back in without having to contact support.",Keeping track of all our passwords for the many different clients we manage. Our team can have easy access to that information located in one convenient location. Also with the AD integration we can manage who sees what. Keeping track of credit cards. Keeping track of logins to all our different servers.,10.0 +140,lastpass,Verified User (Anonymous),Mid-Market,2020-09-28,Wonderful for Password Managment - for yourself or groups,"I really like that i can have passwords randomly generated and stored for me whenever i want for a site. Or, that it will save whatever password that i want for a site. And that i can set up different groups across my organization and share passwords to people in each group on an as needed basis. The groups allow read only or admin rights for the passwords in each password folder. +I've shared this with many people to start using as well. +there is also an extension that plugs into your browser (or phone if you'd like) that can auto fill your passwords for you which makes it easy, so you arent typing in your log in info all the time.","I had to change my security settings on firefox to enable group sharing. It was a minor tweak, but i'm one of those people who like to limit cookies and sharing and delete history once i close my browser. Played around with settings to get them to a point where i could change my settings the least but it would still allow me to do group sharing.","Forgetting passwords +Unique paswords +Password Sharing",10.0 +141,lastpass,Verified User (Anonymous),Mid-Market,2020-11-12,LastPass: The poorly designed password manager,The promise of using only one password is great.,"This poorly designed app has corrupted my password ""vault"" multiple times, forcing me to reset all my passwords. That is the opposite of what LastPass promises. It is not even one bug that has corrupted my passwords, but different ones. This app is buggy and should not be used by any enterprise, since it so buggy. It doesn't even feel that secure, because sometimes when you reset your account (had to do that at least 5 times in the past 2 years), you sometimes can log in with your old password and your passwords will still be there for a couple of minutes. The app is unpredictable to say the least.",Password storage and management.,2.0 +142,lastpass,Hameed S,Enterprise,2020-10-27,Online passwords,"LastPass is really simple to use, particularly in case you want a typical password. It allows for you to unlock your bank account login without revealing some information. The user interface is actually straightforward and simple and I love the protected window for checking out the entire number of passwords.","Managing many accounts with LastPass isn't easy, because each and every connection is actually logged in and concludes with a substantial selection of accounts. If you've to thoroughly clean up, it could be tough.","It is not difficult to handle the passwords of mine, share them even and securely access my website quietly, secretly and quickly.",9.0 +143,lastpass,Verified User (Anonymous),Mid-Market,2020-12-08,Great app for Business Password/Identity needs,"The ability to have all needed passwords in one place, that is secure and easy for staff to accessIt helps train users on proper password hygiene",With the newest update the software has no faults,"We have finally moved our employees off using notebooks and documents called passwords to save their passwords.It has also stopped people from sharing the usernames and passwords openly, they use the share logins ability in the app.",10.0 +144,lastpass,Michael L,Enterprise,2020-06-26,Good for storing passwords,"What I like best about Lastpass is the ability to enter in my passwords, information, notes, etc. basically anything that I want to be secure in a password manager into a single location. I use it mostly for personal use and make sure that every password that I create is completely unique and then frequently do not share these passwords in my browser to make sure that I am obscuring passwords. I also enjoy the browser extension as it allows me to in place grab the passwords that I need for the many different sites that I visit. Also the ability to secure notes is pretty nice as sometimes there is a list of item that do not fit into the forms they created and a secure note is better way to do it.",What I do not like about lass pass is how it loads as a desktop application. It will often time load and I will enter my password and then be followed by the window closing and having to reopen it again. It is a bit annoying to say the least. I also dislike that last pass does not have a way for me to store the password file on my own server that I own or host in the cloud. Self hosting is very important to me when it comes to security and I would rather now have to trust last pass if I did not have. Data breaches and security issues are harder to resolve at scale so hence my distrust.,With last pass I am solving the problem of managing all my passwords which need to be long phrases and different for every single website and application that I use.,8.0 +145,lastpass,Fabian S,Mid-Market,2020-08-28,Enhance security the easiest way,The idea to have a secured app helping me manage my passwords. I use it to share securely some passwords to my family.It's completely integrated in our company.,The browser extension takes too long time to open. It's because I've too many stored secure notes. The price of the licences is increasing too fast.,"We use the shared-folders. Associated with the groups and the folder management of the rights over the shown content, it's so easy to give a new employee or someone who has new responsibilities the correct set of access by adding/removing people to/off a group.With lpass-cli we also easily manage the creation of new notes and assign them to the correct persons via scripts.",10.0 +146,lastpass,Natalia G,Enterprise,2020-06-10,Keep your passwords secure and safe,"LastPass not only protect our passwords but it save other information like our credit card information, thus hen we login for online shipping we really do not have to bother about feeding the right information and wasting our time. It has made it convenient for us. The master password is the password which let us make changes and have access to all our details.","I have no major issue with this tool. LastPass is such a friendly services that it provides an option of trusted friends so that in any emergency case our friends can help us, I admire the way they have made it easier to share passwords across our employees. It has helped us to create strong password by notifying us about its strength.","I have found it great in term s of authentication policy, his gives easy access to the employee to get started. It is very reliable, if you have explored a certain website and filled your password, next time when you visit that web again, LastPass provides you easy access by opining the particular address for you.",8.0 +147,lastpass,Robert S,Small-Business,2020-06-09,LastPass is the best password manager,"It just works. It is able to fill in passwords automatically on my computer, and phone. It works with multiple browsers. It's highly secure and affordable. The 2FA code generator can be backed up, unlike with Google Authenticator. Google cost me a lot of time transferring all my 2fa codes when I upgraded my phone recently. If I had used LastPass Authenticator instead of Google Authenticator I would have saved a lot of time, and they would have automatically loaded on my new phone.",I can't really think of anything I dislike about it. It works great.,"I manage a lot of passwords because I am a website designer. I never reuse passwords, and always use complex ones. LastPass makes it easy to do this, to be as secure as possible, and it automatically remembers and fills them, so it doesn't slow me down.",9.0 +148,lastpass,Liz L,Mid-Market,2020-08-21,LastPass,One of the main advantages of the pay phone version is the ability to synchronize between several devices. You can enjoy it at home and at work! Security level of that software is very high. The free download version is used on my home computer and it is very easy to use. Do not worry about stealing passwords.,"I wish it wasn't that bad. Like every other free software, it has advertising in it. This is exactly the way people made their money. But if you paid for the service, the ads will be removed. Besides the difference that you don't see the ads, the only real difference is that you have more screen space, therefore you will see many more programs.","It is definitely the right product. There are other similarities, but this is definitely the best! Even using it for free to get your first idea!",9.0 +149,lastpass,Jon W,Small-Business,2020-08-19,It's Come Far & It Just Works,"LastPass has simple browser integration and works like a charm on most login forms. Some pages try to prevent auto-population of your credentials by an extension, but the LastPass browser extension makes it easy to see and copy your username and password so you can still login without having to type your credentials. And if you're on the go, you can use the app on your phone and access any passwords or secure notes you've saved. Autofill works with apps and websites alike!","I'm a longtime personal user and have been on enterprise for several years. In the early days sometimes LastPass would miss a password update. It's a lot more stable now, but sometime still needs a little management to make sure it gets the right username or password for a new site you're trying to save.","We use LastPass Enterprise to securely share system-level accounts and other items (passwords, notes, etc) within our IT department. It's far more efficient and secure than a Spreadsheet or Google Doc.",10.0 +150,lastpass,Verified User (Anonymous),Small-Business,2022-01-06,"Great tool for password management, however...","- Easy password management- Great security- Mobile app available, works pretty good","After an update I believe early 2021 or late 2020, they forced us to get a paid subscription if we want to use LastPass on desktop ánd mobile. They gave us a couple of switches (I believe 3) between devices, but after that it was no longer possible and the switching was a hastle anyway. This basically means that LastPass is unusable unless you're willing to pay for it. Even though it's very cheap if you wait for a nice discount, they still force you to pay for what used to be free. Not cool. Especially because they have a really big competitor who still offers this for free: Zoho Vault. And they have all the same functionalities and are just as easy (if not even easier) to use. Especially on mobile.","I used LastPass for years as my password management tool. I loved it. But because of what I explained above, I ultimately decided to switch to Zoho Vault. So now I don't use it anymore.",0.0 +151,lastpass,Verified User (Anonymous),Small-Business,2021-11-11,A Time Saver - a solid password management solution is a must,"Not only does it save passwords, it saves important notes, questions, credit cards and more. It makes it easy to share passwords, maintain what is shared and revoke password privileges as needed. It also makes it easy to login to any account saved with just a few mouse clicks.","Not all websites are setup to accept LastPass. Some have some security settings that prevent it, but this is rare and only like 2 of the websites out of thousands that I use.","It makes it easy to share passwords, maintain what is shared and revoke password privileges as needed. We're able to securely save our company logins as well as easily organize logins for clients. We're able to easily share info with members of our team and if a member were to leave, easily revoke access in seconds.",10.0 +152,lastpass,Graham V,Small-Business,2022-04-19,Excellent Password Solution,Ease of use (when familiar with interface),Learning interface can be less straight forward.,Storing and sharing secure information.,10.0 +153,lastpass,Verified User (Anonymous),Mid-Market,2022-02-23,"Solid security setup, easy to onboard","Sharing functions, makes it very easy to create layers of security and onboard people",System is only as strong as its weakest link - the end users. Ideally there'd be a bulk edit option to swap out poorly chose passwords so everyone can upgrade to a more secure setup in 1 go.,"Adding security for our agency clients, making sure we are not exposed to hacking opportunities. Ease of use, sharing across groups with varying levels of security clearance.",9.0 +154,lastpass,Stana S,Small-Business,2021-12-29,LastPass Enterprise worth the monthly!,"We now put everything in LastPass! Any information that we want to keep private. This includes notes, addresses and of course, passwords and usernames.It is now routine to log into LastPass at the beginning of the day.",I haven't found anything I don't like. We all have to use MFA these days.,"Our engineers need to know Administrator passwords and with LastPass Enterprise, we can share these without worrying they are in an insecure location.",10.0 +155,lastpass,Peter G,Small-Business,2021-12-28,Awesome Password Manager,"LastPass is an extension for Chrome, Firefox and Safari that helps you to remember your passwords and login information for all your sites. It has an auto-fill option for usernames, passwords, credit card numbers and other information that you can sync across multiple devices. The best part is that you don't have to remember your passwords or logins to all your sites because LastPass will help you to do that for you.","I wish the color of the app was different, I'm not a big fan of red.",LastPass helps you remember all of your passwords so you don't reuse any of your passwords on any of your websites that require logins.,10.0 +156,lastpass,Kenny K,Small-Business,2021-07-27,I use LastPass daily to quickly create secure passwords and login to websites,"This tool makes it so simple to create and save a secure password for any website you're joining. In my business I signup for a lot of websites, and with LastPass, I don't have to worry about passwords. It saves me a lot of time and headaches (ever forgot passwords?). LastPass is a secure tool that constantly gets improved. I've been using it for 5+ years now after I have tried multiple other password management tools.","I can't find anything that I dislike. LastPass offers what I need, and I'm already a pretty advanced internet user. No complaints at all. There's a very generous free plan and the upgrade is also worth it and affordable.","It's pretty straightforward. I hate creating and remembering passwords, so when I found LastPass, I immediately fell in love with it. I spend a lot of time online, but the last thing I want is to feel stressed or have a head ache because of password troubles. I don't want to waste time with that, so this is a convenient tool.",10.0 +157,lastpass,Oleksandr T,Small-Business,2022-03-11,Great secure personal password manager,I like the ease of use of this tool and the fact that I can set up security in many ways,Some settings are rather obscure and you have to google how to find them. Maybe the problems in UX will be fixed soon,"I needed a password manager accessible from any device. I have tried many solutions and have been using LastPass for several years now. I like everything, I'm not going to change",9.0 +158,lastpass,Verified User (Anonymous),Small-Business,2022-01-27,Make sure you have a good master password,"It keeps all of my passwords in one spot, along with links. If I were not to have access to my regular workstation, I could log into my LastPass account and have all my usernames, passwords, and links ready to go.","As with any password manager, you have to have a solid master password, or someone could potentially gain access to all of your passwords and sites. This is crucial.","Being able to switch workstations if need be and retain all important links, usernames, passwords, and sites. It also provides randomized passwords for added security.",8.0 +159,lastpass,Gary W,Mid-Market,2021-10-19,I've been very happy with LastPass,It has worked very well for me as a password manager. If you don't pay them it will only work on one device (either mobile or desktop). If you pay them it works on both,It wants to sort your passwords by category. I prefer alphabetical. Sometimes if I can't find what I'm looking for I just have to search it. It is a minor inconvenience and not a dealbreaker.,I have so many passwords I am incapable of remembering them all. Until they master a DNA scanner we will be stuck with passwords.,9.0 +160,lastpass,Will C,Unknown,2022-06-07,From at-risk to bulletproof with a single app,"Bulletproof password repository, great reporting, ability to manage and use policies.",Lastpass has a clunky looking user experience,Company password hygiene is now exceptional compared to pre-Lastpass,10.0 +161,lastpass,Corey H,Enterprise,2022-02-23,Last Pass,I like that it allows users to save both company and personal accounts.,I hate the master password. You can only reset on a machine lastpass is used on.,missing password. it's by far one of the best password savers,10.0 +162,lastpass,Michael M,Mid-Market,2022-05-10,The best password manager on the market to date. Highly secure.,The mobile app is great. Very easy to use,Nothing really. The best password mgr ever,Trying to remember all my passwords. Easy to use when visiting sites.,10.0 +163,lastpass,Verified User (Anonymous),Small-Business,2022-04-20,Easy password management,I've been using LastPass now for 5 years and it's made managing my passwords so much easier and secure. I love that it also generates secure passwords!,I can't think of anything I dislike about LastPass,Passwords are securely saved and easy to access across all devices.,10.0 +164,lastpass,Mc Kenzie B,Small-Business,2022-04-15,Great Brain Storage,I like that I don't have to rely on my memory to remember my passwords. It's great that they are in a secured spot and can be updated easily. Plus I love that you can share passwords between team members.,"Honestly nothing, it's super user-friendly.",Keeping passwords updated.,10.0 +165,lastpass,Verified User (Anonymous),Small-Business,2021-09-22,Great User Experience and intuitive Admin Portal,I like how organized the admin portal is as well as the end-user portal. I can find things often without needing to research where to find them and have made some solid improvements in our experience the past years.,"My only dislike is the lack of human interaction when we do come across an issue that results in having to contact the support team. It appears that the only way I can get in touch with someone who can assist is via email, which makes troubleshooting and problem solving incredibly slow compared to other vendors. This doesn't come up often, but when it does it tends to be a more urgent issue and we end up waiting longer than we'd like for a solution/response.",We have implemented SSO for our organization and make good use of user groups and shared folders with easy-to-implement permissions and standardization in most aspects.,10.0 +166,lastpass,Dorit G,Enterprise,2021-09-16,One way of securing all your passwords,This tool is an Identity Management Solution that has been used by all across our organization as it allows us to securely keep track of all of our client’s login information in the safest manner possible. This product is also generously used by us for all our personal needs as well. I cannot even emphasize how fruitful this single product has saved our time and the extent to which it has saved us in figuring out all the passwords and so on.,"There are a few cons associated with the product as well. First of all, I think there should have been a possible solution of batch change within passwords, which I know is a little complicated feature, but it would have been so helpful for users. Moreover, I felt a need for a function where I can easily view who has the right to access what sort of information.","This tool is very helpful when it comes to securing all the latest and new passwords for any type of login you can possibly think of in your mind. Moreover, this software is so much easier as compared to other software and it does not even have the obligation of sharing passwords. This software has greatly helped me in protecting all logs into various accounts on different devices. Also, the software has been embedded with different features that are continuously improving every week, which further lets us safely secure all of our confidential data like passwords with minimal risks involved. Altogether, I feel that this software has proven to be a game-changer in our organization due to its various positive aspects.",9.0 +167,lastpass,Mostafa K,Mid-Market,2022-02-12,Worst customer service ever,"That was the first and only password manager I used, now that I moved to test other password managers I see that they are awful and worst one compare to other password managers.","Customer service, +Support. +Speed of extensions +Bad UX on Mac +Too much errors","I was just saving my passwords there for almost 8 years. I was so dumb that I didn't test other password managers. +They are awful don't even try lastpass",0.0 +168,lastpass,Zahabiya K,Small-Business,2022-01-21,Last Pass is an amazing tool that securely stores and manages your passwords,"The best thing about Last Pass is it itself is very secure. Also, it autofills the required information from the stored data. It specifically stores password and userid with its respective website.",None so far. I find it very useful and safe.,The biggest problem is securey storing hundreds of passwords as it is impossible to keep them in mind when you are handling lots of work everyday. But Lastpass has solved this problem by storing all the data and securing them.,9.0 +169,lastpass,Verified User (Anonymous),Mid-Market,2021-11-30,Decent service with great sharing controls,LastPass makes password sharing (already inherently insecure) as secure and easy as I have seen. The browser extension makes the tool very easy to use and integrate.,The extension and browser can interact in funny ways that make administration confusing. The security score system is often hard to use because it is inconsistent and doesn't reflect reality. It will say a user has a score of 0 when they should have one much higher.,We used LastPass to solves password management and encourage good password practices. LastPass ensured that users were not reusing passwords or using weak passwords. It made the right thing the easy thing.,7.0 +170,lastpass,Verified User (Anonymous),Small-Business,2021-11-09,"Useless free plan, overpriced premium plans","It works as intended. You can store all your passwords, share them and use them.","Their free plan limits you to use it either on desktop or mobile (but not both)… so it is basically useless as you'd have to store your passwords elsewhere to be able to use it in other type of devices. There are better alternatives (Psono is completely free… and Bitwarden has more/better premium features and costs less). There is nothing Lastpass can do that the alternatives can't.I used to use lastpass, but moved to psono. I keep my account due to some shared passwords I can't export.",Sharing passwords securely and being able to create and store more complex passwords.,0.0 +171,lastpass,Mark S,Enterprise,2021-06-15,Lastpass is my one stop shop solution for secure password storage and management,"I like that I can set complex passwords and know that my information is safe/secure, and that I can easily refer to LP when I need to access a site.","I would like the mobile experience to be just as robust as on desktop. This may be constrained by OS limitations...I support a number of senior executives and want to get them to adopt LP, but they don't always have a lot of time to work this stuff out..I'd like the experiences to be more seamless so it is easier for less technical people to operate.One thing I dislike is that I cannot store my Lastpass master password anywhere secure outside of LP!","Secure password management, people so typically save their secure data in written notebooks which can be lost, or into contact cards that can potentially be accessed by others. The ability to get more complex with passwords is a big plus for me, I would avoid doing this because they were so hard to remember and store safely.",10.0 +172,lastpass,Anna C,Mid-Market,2021-12-28,Secure way to feel safe about your passwords,I don't have to remember my passwords yet I have the security of knowing no one else has access to them,The install process could be more straightforward.,Security yet storage of important and often many passwords.,10.0 +173,lastpass,Gary C,Small-Business,2021-09-02,I use Last Pass every day to log in to all of my accounts,"If you have trouble remembering online passwords and have to reset them constantly, this is for you.Last Pass securely stores all of your online passwords. It`s an absolute lifesaver. Before I had it, I would waste hours every day trying to log into sites. Now all I do is open Last Pass, and it auto-fills user names and passwords for me. It`s a great tool.",Nothing to dislike. It is a great time-saving tool.,"I waste too much time trying to sign in to sites, then having to reset the passwords constantly.Last Pass remembers my passwords and signs me in. Saves me hours every day.",10.0 +174,lastpass,Verified User (Anonymous),Mid-Market,2021-11-11,Effective tool to keep your data safe!,"I am able to have all my sensitive information saved in a secure manner, It's easy to use and effective when managing multiple accounts and emails. All my credentials are safe and ready to use!",There are moments when the extension logs out suddenly and I have to re-enter my login information once again to keep track of my data.,I am able to save all my emails and passwords in a safe platform for a more efficient and easy way to perform my job as an SDR. I use multiple applications for prospecting and the last pass extension makes my life easier when login in every time!,10.0 +175,lastpass,T J K,Mid-Market,2022-05-10,"Good user experience, reasonable price",Security customizations in admin portal.,2FA set up directions confused some users,Shared account credential distribution. Linking personal accounts to business licenses,9.0 +176,lastpass,Verified User (Anonymous),Small-Business,2022-06-21,Reliable and Secure Password Management,Having a place to safely store my nearly 500 passwords.,When adding or updating passwords I have to refresh the application and log in again before I can see those updates.,Being able to safely share my passwords with co-workers and family members.,10.0 +177,lastpass,Verified User (Anonymous),Enterprise,2021-12-26,LastPass,"LastPass is configured in such a way that makes sense and is easy to navigate. The screens are not overwhelming and cluttered with too much information or buttons, etc.",It took me quite a while to figure out how to create a shared folder. That was not very intuitive or user-friendly. I entered a site & a password for the site -- but then couldn't easily determine how to create the folder and/or share it with my service desk team.,"LastPass has helped us tremendously with securing our corporate-utilized passwords for various products and services within our IT teams, as well as R&D teams, and product teams.",9.0 +178,lastpass,Gabriel G,Small-Business,2022-02-14,The place to move all your wallet,"You can literally store anything related to security and private access: pass phrases, passwords, secure notes, and many more.","In the free version they ask you to choose either browser access, or mobile access. You cannot have both.","I saved my WFi passwords, credit catd numbers, and passwords. I can easily find them when I need, easier than looking into a notes app (or plenty)",10.0 +179,lastpass,Craig L,Small-Business,2022-03-23,All Round Fantastic Product and one that I trust to use at home and at work.,"Easy to Use and easy to setup, Its really good for anyone to use and is not complex.",The Price sometimes is a sticking point for people.,Keeping Password and Usernames Secure and allows me to not have to remember lots of passwords.,10.0 +180,lastpass,John O,Small-Business,2022-04-26,Game-changing app!,The password management is so simple and easy.,"Nothing, it's perfect! There isn't anything I could change.","Password management is a breeze -- not only are my passwords far more secure, its smart features make using it so simple and intuative.",10.0 +181,lastpass,Verified User (Anonymous),Small-Business,2022-06-22,LastPass - no more worries,"LastPass is a super simple and powerful password management tool and much more. +Before LastPass we were using sheets to manage passwords which was a logistic nightmare and a security risk. +Now with LastPass, we can easily manage all company passwords and grant access to those who need it. +No more worries if someone else updated a password and did not notify everyone else. +LassPass will improve you life and productivity.",Nothing. No downside that I can think of.,Managing passwords and access to various systems.,10.0 +182,lastpass,Verified User (Anonymous),Mid-Market,2022-05-18,Office Manager,The convenience of not having to remember passwords and the security that goes along with it. Being able to share info with colleagues is very useful as well.,Sometimes the MFA is frustrating but it is worth it for the security.,"Our organization works with sensitive information of clients as well as our own, knowing there is an extra layer of security is great.",10.0 +183,lastpass,Chance N,Small-Business,2021-12-28,Great Free Password manager,Lastpass is really the only free password manager I've had any luck with since others dont let you use it across multiple devices like lastpass does. I love the UI,It's still not a full free product and you still get urged to buy the premium service a lot but it's not nearly as bad as the other password managers out there on the web,"Keeping up with passwords across multiple accounts on all of my different devices from mobile to desktop, Mac to Windows Etc Etc. This helps me keep track of everything",8.0 +184,lastpass,Chris B,Enterprise,2022-05-12,LastPass - Password Manager,"To be able to access all passwords from any device. No need to remember the website address; open LastPass, and all saved logins are a click away.","The program will prompt me to save a site's login, even though I already have the website in the vault.","I am using stronger passwords, have quit repeating the same password for multiple sites. I can quickly login into any site from any device, I love the ability to share a password with someone else.",9.0 +185,lastpass,Tamer W,Mid-Market,2022-04-26,"I love it, Its so easy to use and very professional","Easy to use and more profissional, I love it","Nothing missing from this product, I love to see it on the iphones",the easy way to manage my passwords.,9.0 +186,lastpass,Verified User (Anonymous),Mid-Market,2022-09-15,"A good place to keep your passwords, yet annoying","All my passwords are in one place, easy to launch and browse","Lastpass frequently logs me out, sometimes doesn't work at all, or has weird glitches","It's a good place to keep all your corporate passwords, secure and available",4.0 +187,lastpass,Zachi A,Small-Business,2022-04-27,Great and easy tool to use !!!,"i am working with two password manager tools, private and business level, and the LastPass is my favorite, it is easy to use and recognize on every website. using it in our company was a blessing to everyone . also the less technical people.","nothing. nothing is missing, +great item","Sharing accounts with other departments, less time wasted on resetting passwords , much more prodactive",10.0 +188,lastpass,Verified User (Anonymous),Small-Business,2022-05-11,LastPass is great!,"Easy to use and manage teams, I can quickly share password with people who need them on my team.",Making it easier to take over employees password after a departure,It is a huge time saver! There is nothing like just pressing a button and getting the PW filled in. Also not have to come up with passwords myself. Way more securify,10.0 +189,lastpass,C J P,Small-Business,2021-11-30,"Very Useful, Not Super Intuitive","It's very useful for sharing logins and passwords within a group. It makes it so that multiple team members can have visibility in what others are working on, without having to bother each other!","It's not SUPER intuitive. Even after a 20 minute tutorial from our team, it took a while to start using it quickly and easily. That's a minor quibble though. Any new software is going to have hiccups in implementation.","Allowing our team to share login information across the organization, making work quicker and easier for everyone. It's a great tool and much better than competitors I've used in other orgs.",8.0 +190,lastpass,Verified User (Anonymous),Mid-Market,2022-04-13,Very happy with using Last Pass Enterprise.,I appreciate how Last Pass makes it easy for me to share my passwords across the company and use the extension to create new passwords.,I wish that last pass key files did not have to be shared on the cloud and could be stored locally instead.,We can create longer and more secure passwords for secure accounts without having to email them around or write them down. This has increased security and reduced complication.,10.0 +191,lastpass,Verified User (Anonymous),Small-Business,2022-01-05,Good system for storing a ton of passwords,"I like having all passwords I use in one place, and the ease of sharing them within our organization. I am able to sort them into categories, which is nice for separating business and personal. The Chrome extension also makes life way easier!","It seldom launches the page like it says it will when you're in the interface, and it sometimes is difficult to navigate around. The Chrome and Firefox extensions do not always work as advertised, either, which is not optimal for trying to work quickly.","Our team uses this for website development, as we all need to be able to access the back ends of websites we've built, and being able to share the passwords this way is super helpful.",8.0 +192,lastpass,Rebekah L,Small-Business,2022-02-09,Finally something that helps you to never forget your password!,I love that I don't have to try to remember my passwords or create a spreadsheet that is not secure to hold my passwords.,Nothing at this time. It works great and is easy to use.,The software solves the issue with trying to remember all of your passwords or store them in a non secure area.It automatically updates when a password is changed which is amazing!,10.0 +193,lastpass,Dipak P,Small-Business,2022-01-06,Lastpass - Best password management tools,"In information technology, you have to remember a lot of passwords. For human beings is quite difficult to remember all passwords. By using LastPass you can generate a strong password as well as check your password security score. Lastpass is easy to use and once you installed the chrome extension it will automatically enter your username and password for particular accounts.",All the features are good but the pricing is too high for business usage.,I am working as a system administrator so earlier its was very difficult to remember all the passwords. After signing up for the LastPass I don't have to remember all the passwords. Lastpass is automatically generating a strong password.,10.0 +194,lastpass,Verified User (Anonymous),Small-Business,2021-11-18,I love LastPass so much!,"LastPass has helped me so much with managing passwords and log-in details. It was a mess before, and LastPass made sure I had my passwords and emails secure and safe, and available at all times. The automatic fill of log-in details is super handy as well. Download the browser extension as well!","There aren't that many downsides, in my opinion. The automatic filler doesn't always recognize all fields, which can be annoying, but that rarely happens. It might be a little clunky on mobile if the log-in menu is tiny in the app or browser.","It's easy to have many accounts on many different platforms. Even for multiple people, it's suitable since you can share or invite people for the same login details.",10.0 +195,lastpass,Tim P,Mid-Market,2022-01-19,Great Enterprise Password Manager,Lastpass is easy to integrate with corporate directory services and most users are familiar with the service from using it at home. We are able to have very granular control over shared vaults based on AD group memberships.,"Really not a lot to dislike, to be honest.","Shared passwords for departmental use are always a huge hassle. This allows us to automatically grant access to passwords based on other criteria (department, job role, etc).",10.0 +196,lastpass,Alyssa V,Small-Business,2022-01-25,My Saving Grace,"This allows people to share sensitive information with me, but with confidence. I really enjoy using this program to quickly launch and gain access to anything I need.","It takes a while to load. I have had issues of things not coming through or loading. Sometimes, I do not receive items when a client has sent them to me. Sometimes, it does not launch correctly and I have to manually log in myself.","Getting people to delegate tasks to me. Having the security of knowing their information is protected and yet, I can still access what I need to be able to do what I need to.",9.0 +197,lastpass,Verified User (Anonymous),Small-Business,2022-07-13,Wondering why I haven't used this earlier in life.,Easy onboarding and maintenance. Seamless user experience.,Compatible with certain websites with javascript.,LastPass provides our users with cybersecurity protection through password management.,9.0 +198,lastpass,Verified User (Anonymous),Mid-Market,2021-10-28,No more forgotten or duplicate passwords,"I love how lastpass creates a vault for all of your accounts and respective passwords, even sorting them into different categories. Even if you are on the same application but have different account logins, it is able to detect that and save separate login information, whereas the automatic Google password saver will override whatever username/password was originally saved there. It also automatically fills in the log in information for you, so it is super intuitive to use.","There aren't many downsides to using LastPass except for the fact that if you change your password on any site, you have to ensure that LastPass updates there too or else it will keep popping an error.","I always had a problem with remembering my passwords, especially as I keep having to change them for security reasons. With work, there are also an abundance of new software and accounts that we have to create and LastPass makes it so much easier to keep track of each one, without having the pressure to have to repeat passwords for the sake of remembering them",9.0 +199,lastpass,Verified User (Anonymous),Enterprise,2021-12-23,Very useful password management solution,"It allows me to check my password from all devices and share it with colleagues as required. Also it can integrate both my work account and personal account, so it is very flexible.","Sometimes the prompt on the browser for Lastpass password can jam with cue icons from the input field at the far right, making it difficult to click the Lastpass icon","Too many passwords and each system needs to be different, so how can you remember if not write it down? So Lastpass is a secure way to ""write it down"" and check from time to time. So now I don't even worry about using those system-generated complex passwords, as I do not need to remember it anyway.",9.0 +200,lastpass,Michael F,Small-Business,2022-09-06,Great password keeper,Ease of use and ability to use on multiple devices,Occasionally password does not update as it should.,Just keeping track of more secure passwords.,9.0 +201,lastpass,Verified User (Anonymous),Small-Business,2022-10-04,Very Usefull tool,"Easy to use +Powerful settings for various access right inside the company","The level of safety is sometimes too high +if you lose your Laspass password, +then you can get a link with your mail to restore the connection. +But if you need Lastpass to access your mail, +this loop is a serious problem to restore Lastpass password ....","LastPass is a very powerful tool to have +- all the passwords in one place +- all the access rights for the password are in one place",9.0 +202,lastpass,Joseph S,Mid-Market,2021-12-25,The Best Product for Password Management and Generating Passwords,"I like the Chrome extension that was quick and easy to install. It's just a button click away in my browser to access. I like the password generator feature, and how it automatically stores it after. Ive been enjoying the free plan and will consider the premium option at the end of my trial.","The UI is clunky and could use some improvement. There is no easy way to reset your LastPass password if you forget it, so be sure to not lose this password. Luckily if you are using this product it should be the only password you need to remember anymore.","Password storage and management. Generating new secure passwords.Keeping all of my passwords unique, before I used this product I had a lot of similar passwords and even some that were comprimised in a data leak. After starting to use LastPass all my passwords are unique and I change them often.",9.0 +203,lastpass,Verified User (Anonymous),Small-Business,2022-11-15,Great Tool,We only have to remember our Master Password and then we have access to all of our information/websites/etc.,Face recognition not available on all devices.,More productive.,10.0 +204,lastpass,Mustafa A,Mid-Market,2022-08-01,Secure data with Last pass,Lastpass is a very unique tool where you can secure all the necessary data such as passwords. I like the UI they have very user friendly. And secured too. Must use this.,"Nothing to dislike about it. Great going, looking forward to some more additional integration in it.",Last pass is helping me in storing necessary data with all the safety and security. I am not productive with this but yes it helps me in not remembering my passwords.,10.0 +205,lastpass,ollie c,Small-Business,2021-12-23,organize and generate random passwords with ease,"Don't you just hate when your online accounts keep asking you to change passwords every once a while and you can never remember which account has what passwords? Well, with LastPass, I can now keep track of all of my passwords in one place. I also like 1. it generates strong and random passwords when I create new online accounts; 2. it warns me when the online passwords I picked are not strong enough or are susceptible to hacking; 3. I can add extra notes to the online accounts I saved; 4. their mobile app is easy to use too!",Occasionally when I ask it to update my online account username and passwords it doesn't do so successfully.,organize and generate random passwords with ease,10.0 +206,lastpass,Andrew H,Enterprise,2021-12-18,Long time user...,"The browser extensions, desktop app, and mobile apps work together to put all of my passwords at my fingertips whenever I need them.","Sometimes, since it isn't a native app, I have to take many extra steps to copy/paste my password. Most of the time it works seamlessly, auto-populating browser fields; but, occasionally a website doesn't register. Sometimes a website will record multiple passwords, and it is difficult to choose amongst them. Personally, I have also had a continuous issue whereby my initial login registers incorrectly. It takes me to the enterprise manager subscription instead of the family management. In those instances, I need to log out and log back in to correct the issue.","Managing passwords and generating difficult to guess, secure passwords are necessary and relatively easy. I am more productive because I don't have to worry about secure passwords.",7.0 +207,lastpass,Hannah L,Small-Business,2022-01-03,Easy to Use Password Manager Eliminates Password Inconvenience,LastPass makes it incredibly simple to save and generate new passwords for every password-protected service I come across. I'm also less hesitant to try new services that require a login because I can so easily generate one. LastPass works well on both desktop and mobile.,"If I could change one thing about LastPass, I'd add an option for custom fields for the entries. I sometimes need to save an additional piece of information (i.e. not just username and password but also account number or associated email, for example).","My passwords are no longer stored partly in my brain (frequently forgotten) and partly on scraps of paper (frequently lost). Since I started using LastPass, all my passwords have been different, which I'm told is much more secure.",10.0 +208,lastpass,Verified User (Anonymous),Enterprise,2022-11-08,Easy to use,"Ease of use, convenient, worth the price","Doesnt always capture new passwords, manual entry needed",I dont actually know what problems last pass is working on..,8.0 +209,lastpass,Verified User (Anonymous),Small-Business,2022-11-15,Works!,I love that it is not that big of a hassle to use from both web base and mobile versions.,"The biggest gripe I have is that on the mobile version, you have to login in first before you go to use or you can not use face id when using.",Keeping up with my passwords on a secure platform.,10.0 +210,lastpass,Karrie B,Small-Business,2021-12-28,Ditch the paper and get LastPass,I like that I can share access with team members without them actually knowing the password to sites they need to monitor or get into on my behalf but don't need their own login information. I also love that I can have the app on my phone and desktop.,Not really much to dislike. If I had to be picky it would be that sometimes it takes a bit to add team members and have them log in to a specific site immediately. I have found many times it can take up to 10-15 minutes for it to send emails to team members.,Management of passwords and critical information that is needed across devices and team members. It is more secure than trying to carry around a paper copy of passwords.,10.0 +211,lastpass,Shaun W,Small-Business,2022-11-08,Secure and reliable,Ability to share passwords for specific sites,Doesn't always work with all sites on all browsers,Password management/ security. Ease of remote work,9.0 +212,lastpass,Verified User (Anonymous),Small-Business,2022-10-11,Seamless Credential Management for Business,"Shared folders allow sharing of credentials between teams and groups, while administrative tools allow permissions management and hire/fire controls.","Previous versions of android integration require the use of the Lastpass embedded browser, but new versions offer the option to ""open in chrome"" which solves this problem.","Lastpass for teams allows the sharing of credentials between departments, teams, and facilities while maintaining security, protection, and permissions control on this sensitive data.",9.0 +213,lastpass,Sherry J,Mid-Market,2022-11-08,Reliable and easy to use across platforms,Can maintain complex passwords with ease,Would like to be able to have a plug-in for iPad,Security!,10.0 +214,lastpass,Verified User (Anonymous),Small-Business,2022-11-08,I always Last Pass,ease of use everyday; always available; strong vault,"logging in frequently +conflict with my VPN",ease of use,10.0 +215,lastpass,Eric B,Mid-Market,2022-06-28,Great Password management Solution,I greatly appreciate the ease of use and the prompt and knowledgeable support when I need it.,Login issues seem to be about the only issues that my users face regularly.,It helps immensely with sharing company resource passwords and keeping my users' passwords secure.,10.0 +216,lastpass,Jon B,Mid-Market,2022-02-28,LastPass makes things easy and secure!,"LastPass generates long, strong, unique and high-entropy passwords that keep you secure. This together with SSO, AD Integration and MFA make it the superb choice for security.","There's not really anything to dislike with LastPass Enterprise. It is highly customizable with the available policies, and you have access to 24/7 phone support.",LastPass helps to keep every endpoint secure and makes it easy for users to do so. It has helped us create an environment of good password hygiene and not rely on password knowledge or reuse.,10.0 +217,lastpass,Verified User (Anonymous),Small-Business,2022-07-03,Great solution for managing passwords,The fact that I can create folders and sub folders within those to clearly and easily manage everything is a big bonus. Very helpful when used in relation to work projects as folders can be shared.,As of yet I haven't found anything I would say I dislike.,Lastpass is making it easy to manage large numbers of accounts/passwords in a world where everything requires an account.... even fridges are asking you to make accounts nowadays!,10.0 +218,lastpass,Verified User (Anonymous),Small-Business,2022-09-06,"Easy to use, access across all devices and my critical information is more secure.",Passwords are available with a click. No more written passwords or relying on memory.,I have had issues sharing passwords with other LastPass users. Permissions are not exactly clear.,Better/stronger passwords which in important in my business. The ability to share password with co-workers with greater security.,10.0 +219,lastpass,Verified User (Anonymous),Mid-Market,2022-11-15,Fantastic password management tool!!,"Generate secure passwords with ease. One stop shop for managing all your passwords. I'm not sure what I would do without LastPass, but I know my accounts would be less secure.","No real downside. I use on laptop, iphone, fire tablet and even Occulus headset now",Managing unique passwords securely,10.0 +220,lastpass,Avia K,Small-Business,2021-12-14,Buggy but comprehensive,"I really like having an all-in-one place to keep secure information like usernames, passwords, and bank info. I like having a seamless experience from desktop to app.","I find Lastpass to be fairly buggy in the mobile app. There are many instances when Lastpass doesn't recognize that I need to enter a password, and the fill-in prompt doesn't pop up. Then I have to navigate over to the Lastpass app, search for the website or app I need a password for, copy the password, navigate back to the original window, and paste it.","Lastpass is great for making sure that I use unique passwords, keeping my work accounts more secure. If I didn't have a password manager, I would probably use the same password for every work account. Using the ""create password"" feature makes me have very unique, secure passwords.",7.0 +221,lastpass,Verified User (Anonymous),Small-Business,2022-05-10,LastPass is a lifesaver!,My favorite part is being able to securely save passwords with my team members. I also absolutely love that it works with all of my devices so all my passwords are secure and easy to access.,"I honestly don't have anything I dislike about this product. Sometimes on chrome, I get logged off but it is easy to login in again so that is not really a big deal for me.",I don't have to remember my logins and I also don't have to use the same browser all the time. It allows me to login quickly and securely which is very important to me.,10.0 +222,lastpass,Aaron P,Mid-Market,2021-11-23,Great way to centralize and secure sensitive information.,"I really appreciate how LastPass allows for group sharing (on a user-by-user basis) and collecting of sensitive information. This includes login credentials but can also support further details necessary for each login set (such as special instructions and so forth). This also integrates with browser extensions for ease of access/use. It then opens the way to establishing ridiculously crafted passwords that you would otherwise never remember, requiring only 1 password to be known in order to log into LastPass itself.","I do not have anything negative to say about LastPass. I have been surprised at being auto-logged out of LastPass, but that is a security feature for safety and sanctity of sensitive details. I believe that after launching a website and using the stored LastPass login credentials, as a security precaution the application then auto logs out having successfully performed. I don't care for that feature, if I've understood it correctly, as I am navigating back and forth through multiple logins and having successfully accessed one doesn't mean I won't immediately need to access another, so knock off the immediate log out. It's not a heinous inconvenience to log back in, but when I literally logged in not 30 seconds prior, it's ok to keep me logged in for a little while longer.","Shared credentials by the very nature becomes a security risk when so many hands have access to the information. LastPass provides a convenient encryption to those details (while still allowing for a plain text view if necessary) that gives users access to plugging in the appropriate login details without having to actually know the information. User need to user it, but they don't need to know in order to fulfill primary job functionalities.",9.0 +223,lastpass,Johan R,Mid-Market,2021-12-07,One of the top names for password management solutions.,"Free plan, good value for premium, two-factor authentication, and multi-platform support. Easy to use, browser extensions make it easy for businesses to adopt this type of solution.","Syncing limitations for free users, known for using trackers, and no stand-alone desktop app. LastPass is also known for changing its user agreement policies, which caused them a decline in user-based loyalty, recently.","One place to store all my passwords without having to remember each one of those is very handy for either work or personal use. Password managers like Lastpass also have a password strength report, which is handy for keeping passwords up there when it comes to security best practices and standards.",7.0 +224,lastpass,Verified User (Anonymous),Small-Business,2022-09-07,Simple to setup and easy to use.,Makes it easy to add passwords to your vault.,Sometimes the auto login or auto fill doesn't work and you have to manually copy & paste a password but this is rare.,Password Management and sharing between colleagues without having passwords stored in unsecure places.,10.0 +225,lastpass,Jesse J,Enterprise,2017-03-29,"I only know 3 passwords, everything else is random and saved in LastPass","It's easy to create new random passwords, I can access my passwords on desktop, mobile, and iPad. The Security Check feature helps you identify easy ways to improve your security.","At first glance, it seems to complicated to my non-technical friends, so I have a hard time convincing more people to use it. Some/many mobile apps don't support integrated LastPass, so I have to take the extra steps of: opening LastPass, searching for the app name, copying the password, switching back to the app, pasting the password. Even worse, some (very few) apps don't support pasting passwords.","Using duplicate passwords is worse than using simple passwords, so LastPass makes it so that I can use unique randoms just about everywhere I go.",10.0 +226,lastpass,Verified User (Anonymous),Mid-Market,2017-05-25,So. Much. Better.,"I literally never have to remember any passwords AT ALL. Except for my last pass one that is. AND - my passwords are WAY more secure than they used to be. And, I don't actually have to type them all the time. It's literally a no brainer.","Honestly - nothing. Well, I guess it's a little annoying when the last pass action toggles on a form field obscure something else you'd like to click. That's a little annoying.","Having to remember multiple passwords. Having insecure passwords so that you can ""remember"" them",10.0 +227,lastpass,Verified User (Anonymous),Enterprise,2017-07-13,It's a must-have!,I love that is stores every single one of my usernames and passwords. It is an excellent tool and has saved me a lot of time searching around for login information or having to reset it. I also love that you can view the actual password.,"The only thing I dislike is that it pops up for sites I already have saved. In addition, some sites are listed under numerous names. When it goes to autofil, many times it picks the wrong one.",I'm solving the time spent lost on trying to retrieve/remember logins and passwords for every single site.,10.0 +228,lastpass,Verified User (Anonymous),Mid-Market,2017-09-12,Best solution for literally anyone who uses the internet,Trustworthy place to store all my passwords in one place. Recommended by my IT department.,User interface could be somewhat improved.,We are required to change passwords often and these passwords have multiple requirements. They can be difficult to remember. LastPass stores them all for me. I only need to remember one Master password to access them.,10.0 +229,lastpass,Naveen G,Small-Business,2017-06-29,Awesome!,"No need to remember Password +Mobile App +Fingerprint access control on the Mobile App +Security Suggestions +Auto Form fill","Sometimes there is a slight delay before the login information is fetched and showed. +Autofill does not work with the new Google account login.","Strong Secure Passwords means that precious/critical data is kept ""SECURE"".",10.0 +230,lastpass,Janelle J,Small-Business,2017-08-16,Best Password Saving Software!,I don't have to remember my passwords because it is saved in this system. ,I don't think that there is anything to dislike about this software. ,I have so much on my mind LastPass gives me one less thing to think about. ,10.0 +231,lastpass,Chad C,Mid-Market,2017-01-13,Indispensable password manager great for personal use,"LastPass lets me securely store and access hundreds of passwords and notes from my phone, work PC and home computer, regardless of platform. I'm a firm believer in strong passwords (I use https://xkpasswd.net/s/ to generate strong passwords), but strong passwords are impossible to _really_ remember. With LastPass, I can enter a new set of credentials on my PC and minutes later access it from my mobile device. There are options to secure LastPass pretty tightly too. You can enable two-factor authentication for the web version (which I use with Google Authenticator), you can set it to prompt for your master password every time you attempt to access the vault, or you can prompt for the master password for a site, at the site level. Having access on my mobile device is fantastic - LOVE the ability to sign in with my fingerprint. In web version, the search is a must and I use it literally every time I use LastPass. You can export your vault to a text file, print it out, and put it in your safety deposit box once a quarter.","On mobile (I'm on Android), getting LastPass to fire off when you get to a site in the vault can be tricky at best. Sometimes if I click back and forth from username to password fields, LastPass will come up and ask to fill in the creds. Most of the time, I have to login to LastPass first, then launch the app I want to log into. First world problem. + +The folders design is sorta clunky - I hate using folders, as it limits me. Tags would be nice. The search makes up for this though, as it is great. + +Password generator pretty lame and doesn't generate great passwords.","I'm using LastPass personally to store hundreds of sets of credentials, notes, software licenses, etc. It helps me keep my sanity and quickly and easily access sites without having to think about it at all.",10.0 +232,lastpass,Ligia D,Small-Business,2017-01-12,It's great for sharing access to people you don't know that well,"I really like the fact that I can share access to my accounts to others without having to share my personal password and I can also control when I want them to stop having access to those accounts. When I started working with my boss, this was vital for us. Now we've worked together for a long time and he trusts me enough to confide his passwords to me, but at first this was what helped us build that trust.","The mobile app is not that great, it's gotten better and it's great now that it's free. But it keeps popping up wherever I want to type something, even places that have nothing to do with signing up or logging in somewhere and I wasn't able to log into any google account through it while on my phone. It works great on my laptop though.","Like I said previously, it helps you give temporary or long-term access to people you don't necessarily trust enough to give permanent access or the passwords to your personal or business accounts. ",8.0 +233,lastpass,Matías B,Small-Business,2017-01-12,From a nice password vault to a Security Must,"I have been using Lastpass for more than 3 years, I used it mainly as a password vault, like the one from the browser but with multiple device support. + +But today it has become a security essential, there are so many passwords and so many breaches that it's impossible to keep up, Lastpass will let you know what sites had been publicly breached and make you change that password. One password per site is a great practice and this app makes it happen. + +Sharing passwords showed to be very powerful, I work for a startup and it is a lot easier to share passwords with new people through the app. Even I do know who has access to what service now.","The UI ain't the best, sometimes the prompts doesn't show on chrome, or if you access subdomains with different user/pass this app will show you all the passwords available for the domain, but not the subdomain. You may change a setting to remember per subdomain but I don't want to change it for all of the sites, just some, otherwise developer.facebook.com will be different than facebook.com and thats annoying.","Sharing services credentials with my colleagues. +",9.0 +234,lastpass,Verified User (Anonymous),Small-Business,2018-01-28,"Secure, easy to use, life saver. ",I can easily encrypt passwords but know I won’t forget them. ,I don’t dislike anything about this software. ,It allows you to generate secure passwords and retrieve them when you go to log in. It is fantastic. ,10.0 +235,lastpass,Maria S,Small-Business,2017-01-11,"Great tool! Saves time, is secure, and makes sharing passwords secure & easy.",It saves me so much time and brain power I can be using elsewhere. It also allows me to share passwords to certain sites with others without having to worry about it being read or misplaced. ,"I suppose there could be a bit more security instead of just a main password which grants you access to all sorts of personal information like usernames/passwords, and even credit card info. Haven't had an issue with this yet, but I could see how it would be a headache if it did happen. ","Sharing login infos for website design/development as well as purchasing office needs and setting up appointments and services. Instead of having a ton of emails or a piece of paper that could be lost, it was so great to have it all automated and saved on LassPass so that I could simply go to the site and get logged into the correct account. ",10.0 +236,lastpass,Tony M,Mid-Market,2017-07-31,Just what it's supposed to do,"I can easily use it across devices, and for $12/year you absolutely cannot beat the features.","It signs me out on my phone continually. This is a funny thing for any app to do, but it gets especially inconvenient when I want to open password-protected apps on my phone and need to sign into LastPass too often.","It frees up a lot of time and stress energy, and integration across devices is priceless.",9.0 +237,lastpass,Richard G,Mid-Market,2017-07-01,"Great for password management, ease of use, and piece of mind",My favorite aspect is the integration with browsers and password generation.,I don't like the fact that LastPass doesn't have a two-factor authentication platform,Ensuring passwords are secure and strong. This is the biggest benefit realized.,10.0 +238,lastpass,Verified User (Anonymous),Mid-Market,2017-09-12,LastPass review,I like how lastpass keeps all of your passwords in one spot so you don't have to try and manage all of them. There is also a google chrome add-on that makes it even easier. You just download the app to your desktop and it will auto-fill your passwords for you. ,I don't like how it's difficult to find the password for the website you are trying to use. The user interface on the page itself is poor. ,We are solving the business problem of wasting time searching for passwords and sending password reset links. Having everything in one spot is super convenient. ,9.0 +239,lastpass,Zane G,Small-Business,2017-05-11,"Does the Job, but not a great solution.",I like that i don't have to remember tons of passwords for every different site for which I have an account.,"It's a clunky system. It it not always easy to sign into a particular website. Should be able to click the icon that appears in the input box for username/password and sign in that way, but often times that method fails. Wish it would just autofill every time.",LastPass saves/stores all passwords that I want it to store so that I don't have to specifically remember any.,3.0 +240,lastpass,Verified User (Anonymous),Mid-Market,2017-04-07,,"We are a multi-location team, with A LOT of passwords! This allow us to securely share all the passwords to the unending logins we have with no problem!","It is always asking to save passwords - without prompting! Personal accounts like bank login, facebook, etc.. Things I do not want saved onto a work account. Sometimes it is slow to update passwords and tells me there is a problem with saving my changes! ",never forget a password again! ours are automatically updated every X amount of months and this makes it simple to go in and find the new login info!,9.0 +241,lastpass,Verified User (Anonymous),Mid-Market,2018-01-19,Review for Last pass,Very quick and convenient way to store passwords,Not much to dislike yet. Need to play with the app more.,Amount of time it takes to dig up password is sped up greatly using last pass,10.0 +242,lastpass,Caroline Palmer L,Small-Business,2017-07-28,Efficient and safe way to store passwords across a company ,I like that last pass easily saves passwords that I am using and allows for a company-wide storage,"Often, last pass incorrectly fills out passwords and emails into text boxes, forcing me to go back and correct",sharing passwords unsafely; sharing various passwords with various employees,7.0 +243,lastpass,Wayne S,Mid-Market,2017-04-12,I couldn't survive without LassPass,"All my thousands of passwords (all different, all about 12 characters long) in one secure place. It works with all my browsers and while a little annoying on my iPhone, it works perfectly there. + +It generates my passwords for me, does security checks and more.","It isn't integrated into my iPhone safari or chrome browsers, which makes it slightly annoying to use. But it works pretty well from its own app.","How to keep and manage a zillion passwords - It Works, It does manage and I have nirvana (at least in this silo).",10.0 +244,lastpass,Jessi Alia L,Mid-Market,2017-01-17,I Could Not Live Without LastPass!,"Oh! where to begin?! LastPass is the best app for not-having-to-remember passwords. Passwords have come to control my life, and LastPass controls the passwords. I like that LastPass can create a random password according to my preferences - and I don't have to memorize a thing! I feel like my passwords are secure with LastPass.","Once in a while, in my hurry to change a password I'll accidentally create a duplicate entry. LastPass is good at prompting me to replace a previous entry the first instance, but it would be great if LastPass would remind me again on a subsequent visit.",I use LastPass for both business and personal sites. It is great for both.,10.0 +245,lastpass,Marco L,Small-Business,2017-06-28,Absolutely Essential,"The easiness in using this software, light, clear and directly embedded in the browser as add-on.",Sometimes this software try to save new sites instead of modify the existing one.,"No more password saved in browser, so no more problems when i have to reinstall the operating system... +I can use everywhere just logging in (in every browser)",10.0 +246,lastpass,Verified User (Anonymous),Mid-Market,2017-08-01,One of the better password management apps,LastPass hasn't made the news for a high profile security breach lately! Haha. It is very easy to use.,"There can be sluggish performance, and the mobile version is terrible.","As remote consultants with access to many client systems, we have way too many passwords to remember, and need a secure place to store credentials.",7.0 +247,lastpass,Susan B,Small-Business,2017-03-02,Thank Goodness for LastPass,"I love that it stores all of your passwords in one easy, accessible place. I use it personally and for a company I currently work for and it's saved my life more than once. Just make sure you don't lose your lastpass password, that's the only one you'll really need to remember!","I don't love that it's sometimes a pain to sign in from a different location. I understand the security aspect is important but when I need a password quick it can be an annoyance. With my company you do have to pay a fair amount to have everyone in the team access, which is a bummer. But for personal use the free version is awesome. ","With so many systems with different passwords flying around, LastPass has been great for keeping all of them in one place. It has helped me personally as a manager of most of these systems to keep everything together and accessible. ",9.0 +248,lastpass,Madelon D,Mid-Market,2017-07-04,Not user friendly,"It's awesome, when it works. No need to remember all your passwords, it gets saved right away and you can organize into categories for easier searching on the desktop version.",It failed frequently. Often it wouldn't remember passwords correctly or wouldn't update with a new password. It frequently crashed or locked you out of your account. Very frustrating. ,"Speed and ease of use when accessing websites. When it worked, it was awesome, a semi-seamless way of getting logged in. ",3.0 +249,lastpass,Miranda F,Mid-Market,2017-02-02,Mind not a steel trap? No problem!,We've recently switched to using lastpass to store our department passwords for shared logins. After the switch there has been a lot less getting locked out of accounts due to incorrect passwords too many times. ,"The one downside of this service so far is that it does not update the password automatically, we we have to refresh/log out/back in to see changes others have made to passwords. ",We are taking less time to get into our clients by having our passwords all loaded in one area that is accessible to only our dept and only our dept can see and change the information.,8.0 +250,lastpass,Verified User (Anonymous),Enterprise,2017-12-18,Nice way to share passwords with others,Easy to use and organized. Love just clicking the website I need and it logs me in. ,Chrome overrides lastpass logins so I have to manually enter them. ,Sharing login information and websites. ,7.0 +251,lastpass,Julie T,Small-Business,2017-06-06,I Regret My Hesitation,I don't have to reset my password everytime i log into something for the first time in a while,now my wife uses my browser profile to access my lastpass,folders per client with their log in information saved allows for multiple logins for the same platforms to not be so annoying,10.0 +252,lastpass,Erik F,Small-Business,2016-11-28,Simple & Effective password security,"The chrome extension is excellent - it's reliable & the password generator is easy to use. It also works flawlessly on my Chromebook, something competing tools could not do. The combination of LastPass and Google's Two Factor Authentication makes for excellent security. The iPhone App's use of TouchID makes things convenient even when I need a password on a computer I haven't used before.","The LastPass iPhone app includes a web browser which would need to be much better to make me use it. Really, this is a complaint about Apple's limitations on Apps - it's impossible to have the same auto-fill features in Safari or Chrome for iOS as you get in ChromeOS or on a desktop. This means that getting to a password requires switching apps which is a little cumbersome. ","I've used LastPass to share financial account information between union officers, which has the benefit of encouraging unique and randomized password use from those who aren't all that on board with password security. + +I regularly recommend LastPass to individuals concerned about online security and union leaders in similar situations. + +Review collected by and hosted on G2.com.Title for your review:Simple & Effective password security",10.0 +253,lastpass,Verified User (Anonymous),Mid-Market,2017-07-08,Reliable and secure password manager,"I like how accessible it is on my pixel, it auto opens when prompted for passwords and I simply authenticate with my fingerprint for it to self populate. I also like the password generator feature for long secure passwords. ","I don't like how it doesn't minimize after I close it on certain windows on my phone, it can get time consuming. ",It stores my secure passwords for work sites.,8.0 +254,lastpass,Val S,Small-Business,2016-12-29,"Great tool, could use some enhancements",I really appreciate the ability to store passwords in folders for organizational purposes. The Chrome extension opening the editing window in a new tab is useful as well.,I wish there was a way to scroll by or jump to letters in the vault. Having to scroll down the page when you have lots of folders is tedious. The scrolling also tends to be a little buggy and troublesome.,"LastPass makes creating and storing secure passwords way easier. Without it, I would have some random insecure document with all of passwords and would have to come up with random passwords.",10.0 +255,lastpass,Verified User (Anonymous),Enterprise,2017-09-29,LastPass is good but takes some time to figure it out,All my devices connect - so when my passwords are created they are available on al my devices,Learning curve was longer than expected. Took time to figure out how it all works. ,Time savings because I'm not wasting time searching for passwords. Also reduces frustration and emotional energy,7.0 +256,lastpass,Eric G,Enterprise,2017-09-02,The only password vault you ned,The mobile app and browser plugin render any excuse for password management issues dead,I'm still a bit uneasy about cloud based password storage,"Unofficially this is not supported by my company, but for sites that are outside our firewall it isinvaluable",10.0 +257,lastpass,Angela M,Mid-Market,2017-01-29,Good Concept But Needs Work,"I love the flexibility that you have for determining what you want to store as passwords or private information and the ability to label them accordingly. I also like that you can change the fields that are displayed based on the type of credentials that are being stored. The concept of Vaults vs folders is also good to keep data separated based on how you like to keep the data organized. LastPass also allows you to sync multiple devices with data as well as automatically populate password fields based on the URL and your saved credentials so you don't have to worry about finding, copying and pasting the password. I love that you can have a link to an account so that if something were to happen to you that someone else could access your account and that the access can be limited to vaults and specific credentials.","I had substantial problems with the syncing across devices. Problems were so bad that I had to actually have them delete the account and start over. Syncing issues would not resolve across the 3 devices that the passwords were all different and eventually I couldn't get into my account. In order to share emergency access to your vaults, the other user has to also have an account which is somewhat difficult to manage. Having to always click to display the password is annoying. Would be better if you could have a setting to display it.",This application has solved the business problem of having to try and find a secure method of storing passwords and credentials that is accessible across multiple platforms and readily available. This application has done this when it works properly and affords me the flexibility to control who can view the credentials and what credentials they can view when they have access.,4.0 +258,lastpass,Angela M,Small-Business,2017-08-12,So easy to use and remembers everything so I don't have to,It is so nice that I can keep payment and profile information in the password protected profile for easy fill ability.,I wish that it was a little easier to use from my mobile phone.,Easier time accessing sites that I post on.,10.0 +259,lastpass,Eric E,Small-Business,2017-01-26,Great Wallet for all your Password needs. ,"I like that I can have increased security on my computer. All that I need is my masterpass, which I have made obscenely complicated, but since it is the only password that I ever need to remember, that is fine. All of my passwords are stored in lastpass and it makes browsing the internet safer and more convenient for me.","There are some minor issues with the functionality, sometimes it does not force me to sign into my password vault even if have logged out of lastpass and will fill in passwords automatically anyways. + +I would like for the last pass vault to be a bit more comprehensive in terms of how passwords are stored and viewed. ","With the amount of platforms I run on there are multiple passwords that I have to use, so lastpass has just made it easier to manage my life in that regard. + +Remembering one long complex password for all of my different platforms and applications is much more preferable than remembering a ton of different letter and number combinations. ",10.0 +260,lastpass,Verified User (Anonymous),Mid-Market,2017-10-27,Fantastic tool for password management,My day to day work is much easier since I'm using Last Pass as now I have all my passwords in one place,"Nothing really, sometimes it acts a bit odd on the login screen (once logs in automatically, once you need to press the login button)",Day to day work,9.0 +261,lastpass,Verified User (Anonymous),Small-Business,2017-06-30,Il top per salvare le password,"Sicuro, semplice, veloce e su ogni browser. Sul cellulare è praticamente perfetto e ci salva dall'incredibile problema di generare password valide e salvarle in un luogo sicuro",L'app mobile a volte non riconosce le app ed in generale il collegamento delle app con i siti non è così semplice,Generazione password e salvataggio in un luogo sicuro,10.0 +262,lastpass,Ross A,Mid-Market,2017-03-13,Super convenient!,I love the cross-platform accessibility of the product giving me secure login management tool across device as well as sharing credentials across the service among enterprise partners.,Not always accurate at managing multiple log-ins to one site.,Third-party service access and credential management,10.0 +263,lastpass,Guy G,Small-Business,2017-07-29,Takes the hassle out of password management,"Auto password generation, sharing between browsers, platforms, recognising password changes, multi passwords for same websites","It does what it says on the can - a good password manager, I can't really fault it.",management of hundreds of usernames and passwords,9.0 +264,lastpass,Russell H,Small-Business,2017-01-10,Helpful for storing and organizing all your passwords.,You have great control over your passwords. Easily update and organize into your passwords into categories makes it easy to share with family and coworkers as necessary.,You have to install last pass across all your devices in order to get the passwords to sync. Not too much of a deal breaker but keep it in mind if you use LastPass's auto-generate password feature.,As a freelancer I have my personal set of passwords and well as passwords I share with clients. LastPass helps easily collaborate and share password access.,8.0 +265,lastpass,Verified User (Anonymous),Small-Business,2017-09-01,Last pass is invaluable!,"As a marketing CEO, I have to organize a TON of passwords. This simplifies my life completely, and I don't worry about security.",It could be a little faster - sometimes it seems a little slow.,"Organization, security.",10.0 +266,lastpass,Verified User (Anonymous),Small-Business,2017-07-13,Amazing but a bit sluggish,"I love not having to remember all of my passwords and being confident that my stored passwords are saved. Also that I am able to access them through my browser, browser extension, and mobile app.",The browser extensions are little sluggish.,I am able to organize passwords per my clients so that I instantly know which accounts belong to which client etc.,8.0 +267,lastpass,Erin G,Small-Business,2016-10-31,"Easy to use, convenient way to sort and file login credentials","I really like how LastPass allows you to sort and file login credentials by type. It's really handy to be able to create folders and separate my personal and work login information. I'm not sure if other password saver products have this capability, but this is a feature I really like. It makes shifting between contract work accounts and personal accounts effortless.","Before I signed up with LastPass, there was one account that I created that had the same account as my LastPass vault. I don't use that account often, but when I do, I get an email *every single time* telling me that I need to change my LastPass vault account because I used the same password on another account. I get that this is a security feature and some might find it really beneficial, but I find it really annoying. This is really a minor dislike, however. I haven't had really any complaints with this product so far.","I work on contract doing social media and brand development for a handful of digital products. Because there are so many portals and accounts that I need to be able to do my work, it was critical that I have all the login credentials. But as you might imagine, having the type in or record all that information was really cumbersome. Especially since I did not own any of the accounts. Any time a password was changed, I would get locked out and had to email around to get the new password. When I instituted LastPass, it made the work so much more streamlined! The company I worked with simply shared the folder for the products and accounts I was working on, and I was all set!",7.0 +268,lastpass,ishnu v,Small-Business,2017-08-02,This is the best for saving passwords and to secure from phishing,Simple to input and easy to save passwords and no need to worry on phishing sites,Some times it asks more time to enter master password. Ofcourse its very rare...,I use multiple accounts and for that purpose its the only thing helps me to remember all thr user names and passwords,10.0 +269,lastpass,Verified User (Anonymous),Small-Business,2017-07-13,LastPass rules!,"I don't have to remember all my passwords, and it will generate a random password for me, if needed.",Can't think of anything major - sometimes it doesn't recognize the same websites and creates a duplicate login.,Having to remember passwords for a ton of personal and business related sites is impossible.,10.0 +270,lastpass,Emily H,Small-Business,2017-06-05,last pass is great!,literally rids the headache of remembering passwords ,sometimes for whatever reason i get logged out of last pass and don't know why,allows for sharing passwords for our clients websites without me actually knowing the password.... enhanced security for the client,10.0 +271,lastpass,Grant H,Small-Business,2016-12-26,"Keep it secret, keep it safe","I have no idea what my passwords are, and it's amazing. Working in the tech industry, there are many security protocols to adhere to and LastPass makes it easy to not worry about password security or management. All you need is your master key and you're set to go. Every other site you sign into has an immensely secure password that is a click away.",Nothing to dislike as long as you remember what your master password is!,"Security protocols require encrypted passwords and data, this allows an easy management system, and also allows shared services to have one easy to access password for multiple users.",10.0 +272,lastpass,Verified User (Anonymous),Mid-Market,2017-04-19,My Lastpass Experience,"The time it saves, this is one of the best apps I currently use.",the occasional bug/ glitch there are a few things I would want fixed.,"remembering all those darn passwords for every single app I use, there are way too many accounts. keep all the important stuff secure and generate unique passwords is also great.",10.0 +273,lastpass,Chris V,Small-Business,2016-10-18,My Efficient One Stop Shop for All My Passwords,"Lastpass has been an incredible addition to my everyday use program repertoire. I use it so much and it is so convenient to have all your passwords and form information (address, name, etc) in one FREE encrypted place! I really love how LastPass pops up and asks to save login info after entering it on new sites! That way I never lose a login and I also get to name that particular login anything I want when the save dialogue box pops up. I have never used the secure password generator feature, but it seems like a useful tool! The credit card fill form option is also amazing and makes online shopping a breeze; now I don't have to pull out my credit card and type it in every time I buy something.",I don't have many negative things to say about LastPass. Sometimes the auto-fill won't recognize a login form immediately. Sometimes a quick reload of the page will fix this! ,"This makes many of my day to day tasks so much more efficient, not to mention that all the information is securely stored.This helps you keep track of all the different passwords you may use for different sites, and lets you diversify your passwords rather than using the same one for everything.",10.0 +274,lastpass,André R,Mid-Market,2017-01-16,This Is a Lifesaver,Being able to store my password for all the sites that I use knowing that they are safe is beyond useful. You don't need to worry ever again about losing your passwords or feeling like they are not safe.,"So far I'm very pleased with the product, however, I only use it on my laptop so I can't vouch for the app on mobile devices, but it must be equally good.","Like I said before, being able to store my passwords saved me a lot of hassle. Passwords I thought were long lost were stored safely by LastPass.",10.0 +275,lastpass,Adam B,Enterprise,2022-05-13,LastPass is essential tool for modern life,Mobile and Web features in the family version are great. I like the password strength checks and dark web monitoring.,Sometimes you can unintentionally create duplicates and it would be nice if there was a nudge to prevent duplicates.,"Different passwords for all accounts protect your online accounts, FBI says most people say they didn't think they would be a target.",9.0 +276,lastpass,Rachid F,Small-Business,2022-01-30,great for keeping track and securing your passwords,"Lastpass is very easy to use. You can save your passwords easily by providing the website, username, and password. The desktop version is well designed and easy to navigate. You can share a password with another party or the opposite. I knew about their service because one of my service providers wanted to share a password with me on their platform. I found this helpful and secure for both the user and my service provider. +For the desktop version, you need to install their addon. It will then automatically auto-populate passwords for you. +You also have the option to generate a random password. +Overall their premium service is worth it for the price and the functionalities they offer.","Sometimes it takes time to have someone share a password with you. for instance, I waited a while before seeing the password that was shared with me. Other than that, there isn't much to complain about lastpass services.","Several, the number of passwords I have to remember is just overwhelming. Websites are increasing the complexity requirement for their passwords, so it's just impossible not to make mistakes. I used to store my passwords in an Excel file, but I think it's better to invest in lastpass. Their services are professional, and I feel safer.",8.0 +277,lastpass,Verified User (Anonymous),Small-Business,2022-11-08,Peace of mind,After creating an account a screen auto-populates asking if you'd like to add this account to your LastPass account. Makes it easy.,Wish LastPass had a way of automatically adding a new account via the iphone.,LastPass has been the solution to having to memorize passwords.,10.0 +278,lastpass,Mohammed A,Small-Business,2022-01-19,Password Manager for Beginners,"One of the most important reasons is that it is very easy to get started with LastPass and some of the best features are available in the LastPass Free account itself. In fact, I'm known for the first time in 2015 that third-party applications are available for password storage. Prior to that, only 2 or 3 different passwords were used for a lot of logins.","In fact, it's been almost a year since we use less LastPass and start to think about another Password Manager. For me, a password manager should be free and should be able to sync and access every device. Paid plan can be given to those who need more advanced features. A lot of people didn't really like the change they made in their Free Plan - Access on one device type – computer or mobile.","In fact, when I did a Google search for Password Manager, I first came across LastPass. Also, the first time I took an account in a password manager was in LastPass. LastPass is definitely the easiest password manager to use. LastPass is very secure and saves passwords and can be shared if needed.",8.0 +279,lastpass,Ashley K,Mid-Market,2022-04-27,Simply the best,Simple and easy to install and use on all platforms. Ability to share secrets with colleagues or family members.,Can be a lag in response occasionally. Irritating but doesn't outweigh the usefulness of Lastpass,We use Lastpass to centrally manage shared secrets amongst staff. The centralized admin controls on policies are a great feature.,9.0 +280,lastpass,Verified User (Anonymous),Small-Business,2022-08-02,Best secure storage and password manager,"Much more than pw storage: Safe storage of varied information such as account numbers, keywords, ID numbers. The browser extension is top notch!",The reminders to change weak passwords are sometimes too frequent.,Coordinating sign ins to different business systems is easier when we all have shared password managers online.,10.0 +281,lastpass,Verified User (Anonymous),Mid-Market,2022-04-20,Decent password manager — not the most user friendly,"The Lastpass Chome extension makes filling in usernames and passwords super easy, especially when there are multiple accounts for one website. Feel very comfortable with the level of security and protection it adds.","I feel like the app isn't the most user friendly — sharing passwords between team members can be quite cumbersome and tricky at times, and passwords aren't always contained in the same space making it difficult to locate everything.","Folders with a large group of essential passwords make onboarding new team members very easy. The process is quick, simple, and secure, and my team is a big fan.",5.0 +282,lastpass,Dan L,Small-Business,2021-11-25,Great for Sharing Passwords Among Team Members,We previously had a spreadsheet that saved common passwords as team and this was a horrible way to share. We love the ability to create different folders and user permissions ensuring everyone on the team has the proper access.,"Adding new teammates can be clunky sometimes as you need to add them in two spots, the business admin manager and then to the shared folder from your own vault. Saying that it hasn't been a huge deal as we aren't a huge team.",Ensuring we have secure passwords especially to our applications that deal with sensitive customer data. The password analysis to see how strong your passwords are and how often you reuse any are great. The tool I appreciate the most though within LastPass is how it can generate a secure password for you.,9.0 +283,lastpass,Verified User (Anonymous),Small-Business,2022-03-09,The ultimate secure solution,"I love the fact that I do not have to even share a password and still give controlled access to my team members. The ability to share passwords securely from anywhere is absolutely great. We have pretty much all platforms in our company and it doesn't matter, it handles everything almost exactly the same way.","I haven't found anything not to dislike, to be honest.","The biggest problem was securely sending account information to users. We don't email them, not even temporary passwords anymore, we just use Lastpass to do it securely.",10.0 +284,lastpass,Crisanne G,Small-Business,2021-10-21,Super easy,"Everything is in one central place and stored directly in Chrome. It also has a phone app so that you can take your passwords with you across multiple devices. You are also able to easily invite outside team members to access specific folders, so if you are working with partners who need access to specific accounts, they can access those specific logins and nothing else on your account.","You cannot reset your password if you forget it. If you forget the password, you are locked out indefinitely unless you have the password saved somewhere else or magically remember it. It is a major flaw of the software because if you cannot get back in, lastpass now has all of your information saved and you cannot recover it on your own. There's also a bug where it consistently thinks that my account has been deactivated and kicks me out of my browser extension.","We use lastpass as a company to store shared logins for clients and shared license keys for software that we use as a group. In the past we shared an excel doc that was always out of date. The shared folders in lastpass automatically update for everyone in the company on the enterprise plan. You can also link your personal lastpass accounts with company ones, so the lastpass application will have all of the logins that you ever need readily available at all times instead of having to log out and log into a different account to get to different logins.",7.0 +285,lastpass,Verified User (Anonymous),Small-Business,2022-01-04,Password Manager at its best,"The thing that I like most about LastPass is the fact that you are able to store sensitive info with an email and password so you will not have to remember all of your different passwords. I also love the Launch feature that when you saved a password, you click Launch and it will automatically lead you to the URL provided and log you in with the credentials you have entered.",There are some cases that the Launch function is not applicable to some passwords. I also hope there is an option too to add some cover for each item just to make it have a more fun design or interface.,The main problem that LastPass has solved would be not needing to remember or jot down in paper all of the passwords that you know. It really helps with organizing your password making it more secure for things that have sensitive info.,10.0 +286,lastpass,Verified User (Anonymous),Mid-Market,2022-08-11,The password protector,It is fairly easy to use. I like the fill-in options.,"You have to change the LastPass password and it is a really long one, which I understand but still I'd rather not change it.",You can share passwords within the company.,9.0 +287,lastpass,Andrew B,Small-Business,2022-01-12,All in one password generator and vault,I like sharing passwords for shared login credentials within the business. LastPass makes it easy for team members to use the same login and gives the option to allow other teammates to view the password or keep it private.,I don't particularly appreciate that LastPass limits the number of password shares per login when you are a free user. Understandably it would be best if you upgraded to premium to get maximum usefulness.,"As a company with ten or so people in the office that need access to the same password-protected websites, LastPass allows us to easily share and update passwords with suppliers and local building departments.",10.0 +288,lastpass,Ben S,Small-Business,2021-10-15,An invaluable tool for operating securely in today's world!,"LastPass has been our go-to tool since 2013 for safe, secure password vaulting and management. Whether its traditional credentials or account numbers/SSNs, LastPass provides a single encrypted cloud and local vault to safely store them, a nonsense password generator, tools to find PWs used more than once, PWs that are not sufficiently secure, and controlled sharing mechanisms within companies, non-profits, or families.","Occasionally auto-capture of a newly discovered site will freeze up - perhaps because it collides with a pop-up from that site, and its necessary to manually add the site and credential - it takes just a few seconds.","Whether its traditional credentials or account numbers/SSNs, LastPass provides a single encrypted cloud and local vault to safely store them, a nonsense password generator, tools to find PWs used more than once, PWs that are not sufficiently secure, and controlled sharing mechanisms within companies, non-profits, or families.",9.0 +289,lastpass,D E E P A K P,Small-Business,2022-01-10,Best online password manager,"LastPass is an online password manager. You can use it as a digital vault, it keeps all your website logins organized and safe. LastPass can also create new passwords, fill out online forms, facilitate password sharing, alert you about weak passwords, and more. The software will be installed on your browsers as a browser extension. As you go to work-related sites, save the credentials to your LastPass vault. LastPass will then autofill those passwords the next time you go to log in.",1. Sometimes password is not automatically filled up otherwise all the features are good.2. Pricing is high.,No need to remember all the passwords. Only you have to remember the master password.It will auto-create secure passwords for us.It also provides a security score for passwords.,9.0 +290,lastpass,David M,Small-Business,2022-08-02,An essential piece of business software,It takes away all headaches when managing passwords within a team. And we use a lot!,Sometimes take a while to update across other users,"We manage many passwords, day to day for ourselves and clients. And this takes away all the stress!",10.0 +291,lastpass,Rachel F,Small-Business,2022-05-24,Best Password Manager,"Love the ability to generate passwords, very hepful on the fly","Sometimes it doesn't show up on all logins, so you need to copy and paste into the fields",Remembering all my password and also creating secure passwords,10.0 +292,lastpass,Rakesh K,Small-Business,2021-11-05,Get the job done but horrible User experience overall - they have had so much time to improve!,"It's the most cost-effective product. You get basic password protection features and team features for a very reasonable cost. If you are a startup boostrapping, you want Lastpass in your starting stack.","What horrible UX! I was OK with this a few years ago when we first adopted Lastpass but 5-6 years later, I am frustrated and impatient with their total disregard for good user experience as a priority in their roadmap. Their recent ""improvements"" are shallow and ineffective.",- Effective Team control on Password management in the organization,4.0 +293,lastpass,Harry A,Small-Business,2021-11-30,Reliable password manager for small teams,"The password generator seems to work better with most website requirements than others I have used in the past. Love being able to manage access to groups for staff wtih different permission levels, and to unify password management across desktop and mobile.","The interface is a bit clunky if you need to lookup, edit or add a record, though the good browser integrations mean I rarely need to use the full app.","Managing a large number of website logins across a small team is impossible without a robust password manager. Security to ensure access can be revoked, and that staff do not need to be able to see the password to access websites means reduced risk of malicious activity by a staff member.",8.0 +294,lastpass,Nickola W,Small-Business,2022-03-02,Lastpass review,Ease of use especially the fingerprint on my phone,Sometimes on my phone it doesn't come up and on my computer tired of it asking me if a password matches something else do i want to ignore. I have three screens and it always appears where I can't see it,Having a document with passwords in it,10.0 +295,lastpass,Verified User (Anonymous),Mid-Market,2022-03-09,Great product - highly recommend,The ability to share passwords securely and being notified of account breaches found on the dark web.,"Recently, the iteration period of updates and new features seems to have slowed.",Making departments and administrators more secure by adopting best practices with a password manager like LastPass. Logging into sites and filling out forms is much quicker with LastPass in desktop and mobile.,10.0 +296,lastpass,Jim H,Small-Business,2022-01-15,Easy to use and easy to share,I can keep all my passwords and secure info in one place. I can share with my team securely and selectively. Easy to add or remove team members. Affordable for a small team.,There is no credit provided when removing a team member during an annual commitment. The pop-over tool for managing the account is a bit cumbersome and appears dated.,"Sharing passwords with our team safely and securely. Ensuring that we use secure and unique passwords, instead of repeating the same simple ones in all apps. Ensuring we are all on the same page.",10.0 +297,lastpass,Jennifer S,Small-Business,2022-05-11,I love being organized with my accounts,I like that I can use it on multiple devices,There are no downsides. I've been using it for over a year.,Organization and easy access to all my passwords,10.0 +298,lastpass,Jared C,Small-Business,2021-11-23,User Friendly for all levels,"We started using this in our IT team, and once we had setup LastPass Teams, securely sharing the necessary passwords became easy. Once we had the experience with that, we enrolled our finance and HR users to great success as well.","Not much, really. The only thing that comes to mind is the need for paid accounts to be able to access your vault on any device, but I understand why this change was necessary.",Sharing passwords amongst IT users. Increasing password security and complexity. We have seen increased password scores since our users started using the generated ones since they don't need to keep writing them down anymore.,10.0 +299,lastpass,Verified User (Anonymous),Mid-Market,2022-05-24,Great Password Manager for Business & Personal Use,I like the ease of only needing to know 1 password & that it can be used on any device.,"Sometimes with the app on the phone, it creates 2 different saved passwords for websites/apps and then causes my total security score to drop because it shows it as a reused password even if it's not.",Can make more secured passwords since don't have to remember them all.,9.0 +300,lastpass,Mike B,Small-Business,2022-11-09,Increase security,"I have many passwords and with LastPass I can have different passwords for all of them, like is recommended. Also, if I repeat passwords, I am warned and allowed to do what I decide to do.","I can't think of any dislikes, it is wonderfull.",By using LastPass I fell much more secure.,10.0 +301,lastpass,Groupe C,Small-Business,2022-06-14,I have been using it for YEARS and it still is used every single day !,"I love that you can keep safe not only passwords, but notes, and a ton of other informations and accounts data and logins. It's super easy to use!","Nothing really. It's quite easy to use and manage, and I don't see anything that would make me dislike it","I have ADHD... so my brain cannot retain all login and passwords info anyway... this is a secure way to keep them on hand, and with Google Chrome extension and mobile app, you always have access to it.",10.0 +302,lastpass,Verified User (Anonymous),Mid-Market,2022-11-09,Great password solution,Easy to use. Improved security. Makes handling a large variety of passwords easy to manage.,"Can sometimes be hard to use with multiple accounts for the same site, for example client logins on the same platform. Some of the more powerful features are only for paid subscribers.",Effectively managing passwords.,10.0 +303,lastpass,Glenn G,Small-Business,2022-10-04,Great product. Been using for years after trying many other password managers.,Identities'. I have 7 different ones to filter my business family and personal accounts,Sharing database is a little clunky. People I share with have trouble accepting invitation.,Client passwords,10.0 +304,lastpass,Ricky K,Small-Business,2022-11-23,The product is excellent love the azure ad integration for the user accounts.,Provisioning accounts through azure active directory ease of use and security for the users..,Setup with users who already have accounts caused issues with provisioning accounts and conversion did not work.,Single sign-on using office 365 credentials instead of individual user passwords.,10.0 +305,lastpass,Verified User (Anonymous),Small-Business,2022-07-13,Works better than my brain,It forces me to have good online hygiene because it makes it easy to generate unique and complex passwords for all of my online portals. It reinforces good habits.,Getting my browser to stop auto filling passwords - I should have done a few more tutorials before getting frustrated with something so easily fixed on my end.,My business runs on online portals. I have to take care of many client accounts - and need to share passwords and other confidential information securely. LastPass makes that easy for me and my staff.,10.0 +306,lastpass,Verified User (Anonymous),Small-Business,2022-11-16,It is extremely useful and easy to use.,"When using the business plan, you can share passwords with colleagues.","When I needed to add a license recently, the new checkout page was not user-friendly and I had to go back to the old UI.",Adding security to every external service which requires passwords.,10.0 +307,lastpass,Verified User (Anonymous),Mid-Market,2022-11-08,LastPass makes it easy!,"The ability to have secure passwords for all of my sites, as well as the ability to organize different categories into folders and share them to other users.",It would be a nice feature if they had the ability to provide an 'anti-password' which when filled in would lock your account for a certain time if you are compromised by someone in person.,Allows the ability to keep all passwords stored so that you can create very secure passwords and not have to remember them all.,10.0 +308,lastpass,Katie W,Small-Business,2022-06-28,LastPass is valuable tool,"so easy to securely share passwords with team members, as well as the ability to share secure notes.",Everything is useful. Nothing is missing. Everything works great,We have many systems and software platforms that many team members use and LastPass make it simple to share passwords so we don't have to have separate Logins for systems that everyone uses.,10.0 +309,lastpass,Angela M,Small-Business,2022-11-16,All my passwords safely in one place!,I like being able to manage 100's of DIFFERENT passwords in one place and being able to share those passwords securely with my team,That if you lose your master password you are 100% screwed,centralized password management and secure sharing of those passwords.,10.0 +310,lastpass,João O,Small-Business,2022-11-15,Long time user,I like how easy is to use this cross-platform.,I would love a better integration with iOS devices.,"As a developer, I have different passwords for different accesses but also different users and passwords for the same website. LastPass helps me to manage everything.",8.0 +311,lastpass,Al-Nesha J,Small-Business,2022-04-26,LastPass makes it easier (and more secure) to run my business!,"LastPass is easy to use/implement, intuitive, and a must-have! No more post-it notes with passwords, resetting forgotten passwords every week, etc. I love being able to share passwords with team members without actually sharing the password. It makes onboarding (and when necessary, offboarding) team members much easier! It's built into my business' budget forever, and every time I go to a professional office and see a desk full of post-it notes, I always recommend LastPass to them. Such a game changer! Now the only password I have to remember is my LastPass password!",Nothing that I can think of -- LastPass meets our needs!,"Securely storing passwords, sharing passwords without actually sharing the password (so we don't have to change them if a team member no longer needs access to it), creating more secure passwords (because we don't have to remember them)",10.0 +312,lastpass,Verified User (Anonymous),Small-Business,2022-11-08,Simple and secure,My passwords are accessible from any device I'm on.,I can't really think of anything that I don't like!,"For me, LastPass means only having to remember one password, which gives me confidence that my accounts are secure. I'm also keeping my elderly mother's passwords.",10.0 +313,lastpass,Kyle B,Small-Business,2022-06-21,Excellent Password Management,I'm able to have all of my personal and professional passwords in one place and with me all the time on my phone and can log in anywhere in the world.,"There are no real downsides. However, the iPhone app could work a bit better by auto-filling in the logins and passwords.",Our organization uses it and it's made it much faster and safer to share logins and passwords.,10.0 +314,lastpass,Verified User (Anonymous),Small-Business,2022-11-15,LastPass review,Autofill functionality. Password generation is a breeze on desktop.,Password generation on mobile is tedious. Mobile app does not try to register new login information like the Desktop app does.,Dealing with passwords for one. Sharing passwords with family members also.,9.0 +315,lastpass,Verified User (Anonymous),Small-Business,2022-12-11,Easy way to keep your passwords,"easy to use +can be used by several people",sometimes it appears when I do not need it,An easy way to share passwords with your colleagues,10.0 +316,lastpass,Verified User (Anonymous),Enterprise,2022-11-08,An essential password management tool,The ability to have lastpass fill in my passwords for me so that I don't have to remember them myself.,I haven't found anything that I dislike yet.,Lastpass is helping me make secure passwords and then fill in those passwords for me.,9.0 +317,lastpass,Verified User (Anonymous),Small-Business,2022-11-08,"LastPass is a great resource to store, track, and use passwords across devices.",I like how LastPass can automatically apply logins to various sites and apps across devices.,There isn't much that I dislike about LastPass.,LastPass keeps track of passwords and creates secure passwords so that I can have unique information for sites.,10.0 +318,lastpass,Verified User (Anonymous),Small-Business,2022-10-20,Best Password Manager,"LastPass allows us to securly store a large number of passwords in one central location, and have them shared with our team",I wish we could disable autofill for addresses since we never use that feature.,Gives everyone on our team access to shared passwords and shared business credit cards,10.0 +319,lastpass,Steph M,Small-Business,2022-12-21,Extremely Helpful,"I rave about how easy it is to sign in and share passwords at work. Having personally used a password manager for years, I was excited to get staff set up with the system",It has proven difficult to get some staff on-boarded due to technical skill or competency,Gone are the days of lost or forgotten passwords. It's also so easy to share vital passwords with management via shared folders.,10.0 +320,lastpass,Jorge R,Small-Business,2022-07-21,The FIRST step is LastPass!,"Ease of creating, saving & accessing PWs",LastPass plugin goes to sleep frequently,Feeling safe and secure about creating really strong passwords without the need to have to remember and input those passwords. The ability to be able to share with team members and not feel unsafe by sharing an excel sheet or the like.,10.0 +321,lastpass,Verified User (Anonymous),Small-Business,2022-11-14,Last Pass has saved me so much time and frustration managing passwords and sensitive information.,I like how easy it is to use LastPass on all my devics.,I cannot think of a single downside to using LastPass.,LastPass helps me keep all my passwords organized and up to date.,10.0 +322,lastpass,Scott B,Small-Business,2022-11-08,Great product for keeping us secure,Ease of use and cross platform access helps make things much more secure.,Pricing is high for a service like this.,Lastpass is solving the issue of complex passwords and helping us to not reuse passwords.,9.0 +323,lastpass,Verified User (Anonymous),Mid-Market,2022-10-04,"Easy to use, works well, and it's painless to set up",I appreciate its programmability--you can customize logins using multiple fields. I also like how you can customize password strings.,I wish it could store application passwords as well as web-based ones.,Remembering online passwords; with hundreds of sites in my directory I surely can't remember using more than a handful of passwords.,10.0 +324,lastpass,Eric P,Small-Business,2022-08-09,"Easy to use, easy to administrate.","LastPass helps us create secure passwords, and keeps track of them.",Occasionally the fill-in on mobile is difficult to use.,Keeping track of all the passwords and keeping unique passwords for every site. Sharing passwords for shared accounts across the business.,10.0 +325,lastpass,Verified User (Anonymous),Mid-Market,2022-11-15,Teacher experience,"As a teacher with many log-ins to various LMS, SIS, and educational websites, it has been a lifesaver not having to remember all of them.",I was a little frustrated with the free version and so happy I switched to the premium version.,My school has a Google Domain and several different products requiring log-in. LastPass helps me across all the devices I use daily.,9.0 +326,lastpass,Wojciech M,Mid-Market,2022-11-09,My LastPass,Order in my passwords. Sharing. Shared on-time passwords,The chrome plugin is relatively slow. Form filling mechanism sometimes does not work correctly.,One secure database of passwords in my company.,9.0 +327,lastpass,Bill S,Small-Business,2022-04-19,better than the competition,Last pass is easy to use compared to the competitor's version I use when working on my wife's business.,"The one thing I don't like is even though Last Pass asks me if I want it to remember me for 30 days, I still need to authenticate every day. The authentication process is simple enough, so I don't really mind if it protects my passwords.","Today you can't just keep a sheet with all your passwords hidden on the top of your desk. Last Pass not only saves the latest passwords, but it allows me to organize my passwords and log on information in a way the works for me.",9.0 +328,lastpass,Ryan C,Small-Business,2022-03-09,I trust that every account I have is safe.,"That it randomizes and stores passwords for me. Much easier to remember a single password than writing hundreds down. Everytime I create a new account for a new online service, I no longer worry that I'm reusing a password from an older, compromised account.","The LP UI sensors and be a bit clumsy sensing forms in websites and try to autofill or store the wrong information. For example, if I enter information onto certain websites (Name, Address, etc), it'll interpret it as a new password. Or, for example, on my financial planning website, linking accounts from credit cards and banks will often try to save themselves as new passwords for the financial planning website.","Almost all of my older website logins were hacked before I got to this. Now, nearly all my life is lived online and every time I create an account, I'm certain that it's secure and that LP will alert me if I have any glaring issues with my security.",10.0 +329,lastpass,Julian R,Mid-Market,2022-08-09,"Old UI interface, and lack some features","Can storage passwords and create random and high secure passwords, but as far as I know they had a security breach, exposing user data to hackers. Sharing features are good.","The old-style user interface, the lack of add 2FA and share the accounts with 2FA enable to others in a secure way. Also, the concerns about security is present since their last security breach.",Create secure passwords and storage login credentias from different services.,5.0 +330,lastpass,Earl H,Small-Business,2022-11-15,"Since the day, I was introduced to LastPass I have used it everyday.",LastPass keeps me accountable on having secure password.,The length of time LastPass is available on mobile app,Being able to have over 100 passwords,10.0 +331,lastpass,Verified User (Anonymous),Small-Business,2022-08-02,Huge Time Saver,I manage a team of 10 people. LastPass allows my team to share sensitive information without risk of exposure. It is also really easy to add or remove users when we have interns or hire new staff.,"A minor issue, but the navigation within the site is frustrating. Instead of navigating my current window to something like ""Sharing Center"" or ""Admin Console"" it opens a new tab. It doesn't take long for my browser to get crowded with old tabs I don't need.","Because the sharing of sensitive information is so simple, it allows us to harden our passwords across the internet, making our overall company security lightyears ahead of where it was before.",10.0 +332,lastpass,Verified User (Anonymous),Small-Business,2022-07-21,The reason for this review is to let everyone know how simple and convenient using LastPass is.,I like using this for business and a great benefit is that I can use it for my passwords as well. It sure cuts down on trying to remember several passwords and I like the fact that I can use it with my smartphone.,"I have not found anything I dislike about this program, the only thing that I find inconvenient is that sometimes some websites make it challenging to use. I know that is not LastPass's problem but the website that I'm using.","I am not aware of any problems that LastPass is solving for me. I can't speak for everyone else, so far it's working for me and I'm happy using it for both business and personal use.",9.0 +333,lastpass,Verified User (Anonymous),Mid-Market,2022-11-13,LastPass is secure and easy!,"Ease of storing passwords as I fill them in on sites, as well as offering to fill them when I log in. Password generator with custom options for length, symbols, etc. Sharing folders for passwords shared amongst family.","Sometimes the Last pass button on a field is overlapping with a ""Show/Hide"" button on a website. I have yet to find a way to get around that annoyance. Not LastPass' fault but a little inconvenient.","Generating secure passwords, keeping them safe. Sharing passwords with others and having private vaults for personal passwords. Helps me keep all my passwords strong and sorted.",10.0 +334,lastpass,Rocus P,Mid-Market,2022-11-04,A decent password manager,I like the full-on integration with Mobile and Windows so you can use your passwords everywhere. Need to log in on a site regardless of device or app. No problem.,The pricing and the data storage in the US. We are a European company and like our data stored in Europe.,Lastpass is a perfect password management solution but it wasn't what our company was looking for.,7.0 +335,lastpass,Kevin T,Mid-Market,2022-05-18,My Team loves LastPass,"Browser and phone app integration. It makes it dead simple to populate username/password across all of our cloud services, sites, and applications. It's been very easy to implement and tiered access has allowed us to make sure that our teams only have the passwords they need for their job functions.",Some mobile apps lack integration requiring a copy/paste from the LastPass app into the password field. Password rotation is sometimes hit and miss requiring a manual process.,"As an IT Department we have a huge number of systems, each with their own set of credentials. LastPass has enabled us to use longer and more complex passwords and eliminate the temptation to re-use passwords.",10.0 +336,lastpass,Maribeth J,Small-Business,2022-07-12,Makes office management so much simpler,Face recognition on the app is a game changer. The ability to track not only my own passwords but to keep up with our staff's individual passwords. The admin console is fantastic.,The number of times I've had to reset my Master Password because I can't remember it. I had a lot of difficulty resetting it remotely prior to face recognition,"By having our staff use LastPass, simply by accepting LastPass' prompt to save any password, I am able to help them manage their security and it has eliminated constantly updating a spreadsheet of shared passwords. It also removes staff access to see others' login information through that spreadsheet.",9.0 +337,lastpass,Brandee B,Small-Business,2022-06-21,Best Way to Keep Company Passwords Organized,"We use complicated passwords and its great to have those at our disposal anywhere we are.. desktop, laptop, phone.","I wish you could edit more information while in the quick add screen. I normally have to add the new password, them go back to the entry and complete it with all information.","Lastpass is keeping our passwords safe, secure, and available to all employees. It also segments them so each employee only has access to the necessary ones.",10.0 +338,lastpass,Verified User (Anonymous),Small-Business,2022-11-08,Don't know what I did without LastPass,"I now have unique passwords for all my accounts and don't have to worry about forgetting them of writing them out in a long, confusing list.",I don't dislike anything... it's a great program.,I now know my passwords are unique and safe. I don't worry that I am reusing and password and thus exposing it or allowing it to be insecure.,9.0 +339,lastpass,Verified User (Anonymous),Small-Business,2022-11-08,Easy to use tool that improves online security and is compatible across multiple platforms.,The LastPass tool is easy to use and allows for the safe storage of more than just passwords.,"The cost is a little high for an automated password storage solution, but it does provide more than just secure password storage.",LastPass allows you to quickly generate and save a unique secure password during online account creation to ensure your passwords aren't reused.,10.0 +340,lastpass,Verified User (Anonymous),Small-Business,2022-09-13,The best password manager i've ever used,"For our team LastPass was the best fit for both private and share password requirements. cross-platform support, cloud-hosted and independently audited it ticked all the boxes.","The data import process could have been better, but this was more an issue with the data sources we had; better tools for sorting this out would have been nice.","Lastpass made using strong, secure passwords easy and a nonissue, before using LastPass, there was the temptation to use a weak password temporarily, but these didn't always get changed in a timely manner.",9.0 +341,lastpass,Verified User (Anonymous),Small-Business,2022-11-15,LastPass is your one stop solution,"The ability to use LastPass across multiple devices and platforms, including Mobile, windows, and iOS gives it supreme functionality!","There are some sites that will not allow the LastPast to autofill, takes an extra step to get your credentials entered, but its workable.","LastPass significantly increases our cybersucurity awareness measures, by not having passwords written down, on sticky notes on monitors, etc. It also helps us to create higher security passwords which are needed for many government platforms we use that require a new password that is complex in nature ever 90 days.",10.0 +342,lastpass,Ibi E,Small-Business,2022-09-13,,Automatically syncs between all devices. One app takes care of it all.,I have not found any downside to using LastPass. A recent data breach is a concern.,Every employee can manage their own password and have access to shared sites. No more phone calls with password questions!,10.0 +343,lastpass,Verified User (Anonymous),Small-Business,2022-11-08,Last Pass is quick and well organized,great at securely keeping multiple user's credentials on the same website.,Last Pass kicks me out mulitple time per day so I have to log in frequently.,"#1= security #2 ease of use #3 Being a website professional, I am in & out of password protected websites all day. Using LP is SO much easier",9.0 +344,lastpass,Verified User (Anonymous),Small-Business,2022-11-15,Easy Password storage,Last Pass makes it super easy to access your passwords anywhere and anytime with both Mobile and Desktop applications. It is the best program that I have used.,Not super easy to change the password in the mobile application,its my password memory bank. I have trouble remembering all my passwords,10.0 +345,lastpass,Ilse M,Small-Business,2022-07-24,Makes my life easier,"I have been using Lastpass for years. With so many accounts I have, I would not be able to remember passwords if it weren't for Lastpass. I love it. Also, I like the password generating feature, because I don't have to think about coming up with new passwords all the time.","The phone app is good, but sometimes a bit clunky. Not a big deal, but it could be smoother.","I no longer have to worry about remembering my passwords or think about coming up with new ones. Also, I love how fast it's to log into any site and fill in my CC info when paying.",10.0 +346,lastpass,Natalya H,Small-Business,2022-08-16,Packed with features,"As a business owner, I love flexibility of sharing logins without revealing the password to my staff. I use Chrome extension and find it very helpful.","I have several LastPass instances (at work and my business, and my personal). I love that it is possible to connect them all, but updating or adding a new password within one ""combined"" does not update stand-alone instances of my other LastPass accounts. I have to toggle LastPass instances on various devices constantly. And then manually duplicate/update.","Secure passwords that need no remembering, and sharing of passwords among colleagues.",10.0 +347,lastpass,Verified User (Anonymous),Small-Business,2022-04-26,Peace of Mind,"Outside of the basic functionality that allows users to secure their credentials for various websites behind a very strong password with an option to use 2FA, I appreciate that the application recognizes and reminds me when a password is being used for multiple websites or isn't as strong as what it should be. In turn, I can take steps as a user to create unique and strong passwords and minimize the likelihood of being comprised.","While I have nothing to compare to, I haven't encountered any issues with the product and it has all of the features that I was looking for before I rolled out the Enterprise version of LastPass to my organization.","The use of LastPass has helped me and other users in my company to safely organize and manage our credentials and it gives me peace of mind that I can access my credentials and other secure information (COVID ID, garage codes, code to my safe, etc.) from anywhere and I can also share them with family members as needed. Before using a password management system, I had passwords cryptically recorded on notes but it always concerned me that if my house burned down, I would obviously lose those notes. + +Also, the use of LastPass has helped me strengthen my passwords and create unique credentials for each website because I no longer have to memorize them. Considering that 81% of all data breaches are attributed to weak or stolen passwords and 51% of people reuse passwords across their business and personal accounts, I feel that my security posture, as well as that of my organization's, is much improved since deploying LastPass.",10.0 +348,lastpass,Verified User (Anonymous),Small-Business,2022-11-15,Great software that allows me to manage secure passwords,The ease of use and flexibility of secure password management is fantastic!,I don't have anything negative to say about LastPass. It's been a great experience all around.,I am not keeping my ear to the ground as far as their development. The software features tick all my boxes already.,10.0 +349,lastpass,Verified User (Anonymous),Small-Business,2022-04-26,LastPass is a must to have tool for me to manage all my accounts,"I love how it is embedded in the browser as well as the phone. WIthout it I will be lost as I have easily 100's of accounts. +At work we can keep the passwords secure and share the logins with team members and the team members dont even see the passwords. So no more sharing of passwords in Slack. +It alerts if we are using the passwords more than once which I think is really key to be secure online +Works very well on my iPhone as well",Recently I observed that I have to reload the page on the chrome which is kind of an inconvinience. Not sure if Chome has forced LastPass,"Keeping the passwords unique, secure, hard to guess and only use once for each account +Organize and share the LastPass with team members without sharing passwords +Can easily login to all my accounts. So no need to memorize or deal with forget password weirdness. So I don't feel stupid +Can easily switch between chrome on Desktop and Mobile +It always works and never had any issues with the product",10.0 +350,lastpass,Verified User (Anonymous),Small-Business,2022-11-08,Easy to Use - Stores a LOT of Valuable Information,"LastPass syncs well across all devices. The various browser plugins also work well. I'm going to LastPass more and more to retrieve other information besides passwords (e.g., payment cards, etc.).","It's difficult to cite a downside, as my experience has been positive. I suppose having to reinstall browser plugins after each upgrade is annoying, but not enough to dissuade me from using LastPass.","I use LastPass more for personal than business. If it were available as a business application at my company, I think I'd put it to good use, as we have several logins we utilize...many of which require unique passwords.",10.0 +351,lastpass,Ralph T,Mid-Market,2022-11-15,"I've used LastPass for nearly a decade, and discovered people in our company's IT department use it.",It's easy to create custom passwords and complete login information once I return to the site. I feel safe using LastPass for all my personal information.,I really can't think of anything I dislike about LastPass.,"LastPass allows me to store all my usernames and passwords safely. I also store banking information, such as routing numbers and account numbers, in LastPass.",10.0 +352,lastpass,Sharon J,Small-Business,2022-05-18,Easy to use password manager,LastPass is easy to use with a Chrome ad with a Chrome add-on that automatically prompts you to save any new site password you use once installed. You can also save multiple passwords/logins for the same site if you manage multiple profiles for your business.,"There isn't really anything I don't like about this program. The only suggestion I would have is that there is allowed to be one additional 'super admin'. You can have as many admins as you want in teams, but only one 'super', but sometimes the 'super' may not be available so being able to have one other would be handy.",The best part about LastPass is that you can have different passwords for every login without the worry of having to remember them all. This has been great for staff who commonly use the same password for everything. It has increased our overall cyber security.,10.0 +353,lastpass,Cristian L,Small-Business,2022-09-30,Best Way to handle passwords and share with co workers,"Our company handles multiple passwords for different websites and apps, Last pass is the best way to manage all passwords, share the with co-workers and update the password for all teammates without having to send a message to all of them.","Sometimes it does not recognize the user entry field in some of the websites I use, and with the latest update. Also, I have been unable to figure out how to make it so that it won't keep on trying to save addresses that I use.",Being able to share passwords for multiple websites without having to send internal messages to other members or expose your passwords online or in chats. Most definitively the safest way to share a password.,10.0 +354,lastpass,George L,Mid-Market,2022-10-11,Trusted password keeper,The initial setup is very easy. Once it's setup it's easy to use.,"My only dislike is that setting up a shared folder is not intuitive, of where to set it up. Once it's setup it's a solid tool.","The biggest problem that was solved was sharing passwords. New hires have instant access to what the need access to, and updating passwords after someone leaves the company is simple and instantly shared with the people that need it.",9.0 +355,lastpass,Ami N,Small-Business,2022-11-15,Last Pass Helps Me Save Time,"I appreciate that Last Pass helps me keep my passwords and accounts organized. As a small business owner, I am constantly logging into various sites and services. Last Pass saves me time. I don't have to look up passwords or keep a sheet updated.",Keeping track of my Last Pass account password can be a challenge. I appreciate the service.,Last Pass helps me keep track of my passwords. It saves me time and frustration. I don't have to constantly reset passwords because I've forgotten whatever the latest most recent password is - Last Pass has me covered!,10.0 +356,lastpass,Lindsey A,Small-Business,2022-11-11,The easiest and most secure way to share,"We have over 30 employees and 25 online tools and software platforms, and this is the best way to save those links and passwords.",I would love a way for there to be a better way to save the login links.,"We have a large and growing team, with a few shared logins, and it's easy to onboard new staff with LastPass.",10.0 +357,lastpass,Ruth L,Small-Business,2022-12-08,Excellent tool to keep log ins safe and accessible to all team members,"I like that I can share credentials with my team in a secure environment, without compromising the safety of our systems.",The computer app does not communicate too well with all my web browsers.,"Sharing credentials and sensisitive information with my team quickly, including any possible updates.",10.0 +358,lastpass,Michael S,Small-Business,2022-11-08,Manage all your accounts securely and with ease,The peace of mind of having secure passwords for my accounts,While most of the time autofill works there are occasions when I have to do a look up separately to find my account details,"I used to use a simple password and variations on a theme, but I know that is not safe, so now I know I am safe",10.0 +359,lastpass,George K,Mid-Market,2022-11-15,Great way to tackle all my passwords and bring sanity to this troubled part of my mind,LastPass is a recommend to all of my employee partners to help them safely keep their password. Death to the excell sheet with passwords!,Know how weak and pathetic your current password are can be a bit of a bummer.,"We change pw's every 90 days, with last pass we don't have to keep resetting forgotten passwords.",9.0 +360,lastpass,Verified User (Anonymous),Small-Business,2022-09-06,Seamless team integration to keep passwords and other coroporate accounts safe,"LastPass helps our team keep our passwords safe by using highly secure passwords for shared accounts. In the past, our shared passwords were saved in a Word doc or on post-it notes throughout the office. Now we have top-notch passwords and it is a breeze to update them. We can also provide access to accounts to interns and non-staff members without sharing with them the underlying password. This is great from a security standpoint.",I wish LastPass were adopted across our entire organization so it would be easier to share account log-ins across teams. Another password that is used across groups currently uses a much less secure password that is not frequently updated.,LastPass is allowing us to work collaboratively without compromising the security of our shared corporate accounts.,9.0 +361,lastpass,W H,Mid-Market,2022-06-28,LastPass - great password manager for companies,"Lastpass keeps all your passwords available, with strong protections for them. Companies can manage and share passwords securely using multifactor and other methods. It also integrates with the personal version without giving the company access to the personal passwords.","You have to install the extension into browsers to use it, but this is true of all password managers. Some users don't understand how password managers can be secure, so there is a training/awareness curve.","Keeping track of multiple unique passwords in an IT environment can be a pain. Without a password manager, there is a strong temptation to reuse passwords, or to use some scheme that is too-easily guessable. LastPass gives a solution to this.",10.0 +362,lastpass,Saray L,Small-Business,2022-05-10,excellent for people with many accounts,"I only need to remember only one pastword and I have 5 email's, three work and 2 personal. With multiple accounts on different platforms associated with them.","I hope it will work with all mobile applications, sometimes I have to copy and paste the data manually, on computers the desktop application should be able to run in the second Flat to avoid taking up space on the home bar.","I bought a license for my company and it is extremely useful, as it allows my employees to avoid having their passwords written down on paper, due to the large number of passwords, it improves the Security and allows you to share passwords with them in a secure way.",10.0 +363,lastpass,Hami A,Small-Business,2022-08-02,This has been such a great tool for our business,We love that LastPass syncs across devices. It's great that I can log into things on my phone when I'm on the go. The access controls are also great for when we bring on new clients. We are able to share the passwords to employees without sending them via email or Slack. There's also an option to give access without letting the person see the password.,"We started with the family plan because the team was smaller and didn't warrant the price for a higher level plan. Once someone was locked out and didn't have the app on their phone. Since we were on the family plan, not business, they were permanently locked out. They had to rebuild all their passwords that had been saved.",LP is a secure way to share passwords among a team without compromising the password. It's been great for our team!,10.0 +364,lastpass,Verified User (Anonymous),Small-Business,2022-11-15,One of my best business decisions,"It saves all of my passwords and allows me to work effectively and removes the burden on my mind to remember all my passwords. It also allows me to easily access them on different platforms without remembering if I changed them. It also gives me peace of mind because if something happens to me, someone will be able to access my important accounts.",Nothing that I can think of. It is a very well built product.,It allows me to securely give passwords to my virtual assistant and also updates them in real time,10.0 +365,lastpass,Deborah O,Small-Business,2022-11-15,Last pass is a life saver,It integrates very well with my phone and my work and home pcs.,I do not dislike anything. It does everything I need,I have many many passwords for work and professional. I do not have to keep an insecure note that f all my passwords. I have access to my passwords where ever I am,10.0 +366,lastpass,Kas S,Small-Business,2022-11-08,"Secure, easy to use","Lastpass is a solid, easy to use and secure password management system. Being able to generate secure passwords and save them in one place is extremely handy.",The security checklist feature of automatically changing at-risk passwords doesn't really work terribly well.,"Keeping my passwords safe and making it easy to generate new, secure passwords to avoid duplication of passwords.",10.0 +367,lastpass,Sean L,Small-Business,2022-05-06,Only password manager used for the business,"I personally use a few password managers but for work purposes, this is the ONLY one we use. What I like most is that passwords can be sent to people without giving them the info in plain text. Sharing the password doesn't actually give them the password but it'll plug it in for them. There is an app for your phone, there's a Chrome extension. It's super easy to use and fast. Above all it's SECURE which is what we're all after right? ","The thing I like least and I have no clue how to get around this, is the password sharing function can be bypassed quite easily. It's a good feature which is why I mentioned it in what I like best, but alas, it can be tricked. If you share a password and enter it in (pretty much on any device) the browser or app is going to ask if you'd like to save it, which then makes it available on any device signed in with that info. For example on an iOS device, I can go to settings and passwords and it'll show me the plain text for that password. ","What I do appreciate is that it's a time saver. It is secure and we're able to share passwords when needed without sending it by text, email, or Slack etc. If osmeone leaves the company we have passwords available to get into the machine they use and the accounts that belong to the company. ",10.0 +368,lastpass,Magnus O,Small-Business,2022-11-08,High security at a reasonable cost,"Having all passwords in one place is easy. Also of a separate from Big Tech (Google, Microsoft etc.) feels good when switching platforms.",Not much. Long difficult passwords are not fun trying to remember. Now you only need one though.,I can have all my secure passwords with me at the touch of a button. Secre and mobile.,9.0 +369,lastpass,V I J E T A K,Mid-Market,2022-11-17,Best Password Management- No need to remember different password now,"Easy to use, +It secures my all password +Option to save multiple credentials for one tool +Option for shared folder and acess",sometimes logged out in to use autofill.,"Now, I don't need to remember multiple passwords. In my organisation, i have multiple tool to use and it's difficult to remember all the passwords.",10.0 +370,lastpass,Verified User (Anonymous),Small-Business,2022-07-20,LastPass has really simplified password management.,"As a business user, LastPass has allowed us to monitor and enforce better password hygiene across our company. Prior to implementing LastPass, the majority of our users utilize the same password everywhere.",Some of the business management tools appear to be lacking in regards to sharing entries with others. You cannot share with a group and a specific user if that user is also in the group. The user-specific shared items will only take effect as opposed to allowing all shared entries from both the group and the user. The other issue is that you can't look at a single entry and determine which user or group it has been shared with. You have to edit the settings on all users and groups to see if that specific entry was shared or not. This makes managing a little more difficult at times.,"Even though LastPass is making it simpler for users because they now only need to remember the master password, we still have a lot of users that forget their master password and require IT to reset it for them. But now that LastPass offers the passwordless option, the forgot password requests are no longer an issue.",10.0 +371,lastpass,Michael C,Small-Business,2022-11-15,LastPass is a great tool,It's easy to use and has extensions for all major browsers for a more seamless experience.,"Overall, there is not much I dislike, sometimes the autofill feature will not work, but that is rare.",I have many passwords and it helps me keep track of them and audit them to make them more secure.,10.0 +372,lastpass,Verified User (Anonymous),Small-Business,2022-11-18,Would be impossible to manage all my unique passwords without it,I like how easy it is to select the correct login and have the password default to sites I access using multiple user IDs.,Some fields in some of the browser-based applications I use will have the LastPass icon link when they shouldn't. This can cause problems when using these applications.,I access many sites throughout the day with unique user IDs and passwords and LastPass allows me to work more quickly and efficiently as I am not scrambling and searching for user ID and password to the varying sites.,10.0 +373,lastpass,Rachel P,Small-Business,2022-11-07,Been using LastPass for a few years now. Its easy to use & reliable.,"When I added people to my team, I was easily able to change to team shared folders. Huge time saver to quickly share vital information with the team.",the interface changes between the vault & the admin console are dramatic & kinda confusing.,secure electronic storage of multiple passwords & payment cards in a single accessible location,9.0 +374,lastpass,Ken L,Small-Business,2022-09-07,Great piece of software,It overlays over mobile apps as well as websites and it automatically detects when it will be needed,"Some websites have a ""see password"" link that overlays over the lastpass button. This makes it impossible to get the password automatically. The workaround is to go into lastpass and copy the password and then go back to the website and paste it in",it ensures that we can share sensitive data like passwords with staff in a secure way and we can revoke that access when they leave,10.0 +375,lastpass,Taylor P,Mid-Market,2016-05-18,"Good portability, security is somewhat questionable.","Portability - since it is a browser extension, you can have it on all your different computers and it syncs through 'the cloud.' It's very easy to use, and the syncing is built in - you don't have to do anything to use it. There is a free version which is nice.","The cloud portion of it has some interesting security implications because it is cloud based, and extension based (https://www.seancassidy.me/lostpass.html).","One of the rather large IT problems in businesses these days is the number of login credentials people have to remember - apart from corporate resources (ldap/ad, email, etc) there are also personal credentials (email, facebook, etc). Having to remember a high number of logins often leads to lazy passwords - using the same ones for multiple sites, not enough complexity, so on and so forth. LastPass solves this because you only need to remember one password - the one to unlock LastPass. Everything else is automatically saved and entered for you. This means you can have really complex passwords without it affecting user experience.",5.0 +376,lastpass,Verified User (Anonymous),Enterprise,2016-07-05,Saves multiple passwords in one place. ,"I liked how passwords could easily be saved in one place and that this software integrated my passwords for several different systems. At one time we had nearly 12 systems with separate passwords, so having a place to store all of them was important. ","When I first starting using this software it had many glitches including erasing several passwords that had been saved on my computer. This was frustrating for me as the software was supposed to streamline my passwords, not make it worse. ","Shortly after using LastPass, we switched to a few other single sign on systems and this eliminated the need for multiple passwords. This mean that Last Pass wasn't as effective as a solution for us and we needed it to be. ",4.0 +377,lastpass,Valentina R,Mid-Market,2016-04-03,Searching for a better password manager,"- The web interface +- The feeling of security (they use the same encryption standard of the US government) +- The multi-browser extensions to easy access to your passwords +- The installation and import procedures: in a few minutes you can install the software, import each key you have already saved into the Apple keychain, google account or other key manager applications. A dream!!","- The mobile app is paid, so I have to use the web-application when I want to access my passwords from smartphone +",I want to change my password management system because the browser extensions are paid and I want a more flexible solution,10.0 +378,lastpass,Verified User (Anonymous),Small-Business,2016-11-10,Lastpass or PASS?,I like that it keep everything in one place and your sites are categorized. Also when the last time you used a site is nice!,It does not update your passwords when you change them. It will keep you last one saved. Not good.,Keeping all our passwords safe and accessible to whoever may need it comes in very handy.,6.0 +379,lastpass,Verified User (Anonymous),Mid-Market,2016-12-16,Helpful but confusing,I like that my info is secure! I like that it creates passwords for me.,I dislike when it isn't compatible with some of my programs.,I am solving keeping our data secure. I am a content marketing specialist.,10.0 +380,lastpass,Verified User (Anonymous),Small-Business,2016-05-03,"Makes password management easy, sharable and works so well you barely know it is there.","Access from anywhere to the host of sites, services, client credentials, etc. with a single password to remember and an easy interface to interact with. ",The only thing that happens here and there is when I have multiple logins for similar sites and am trying to create a new login my LP sometimes hijacks what I want to do. The fix is easy. I just shut it down for that piece and fire it up when I am done.,"The ability to share a vast number of password, card numbers and secure notes is vital to what we do. Updates happen immediately and you don't have to be sure you update all over and everyone has access to that update and usually without knowing it. Siloing certain passwords for contractors or employees is great as well. It eliminates unneeded communication. When we have not integrated a contractor into LP I can definitely tell a difference in the project flow. ",10.0 +381,lastpass,Stanislav B,Mid-Market,2016-05-02,It's good but you should consider weaknesses,"LastPass has really great integrations with browsers and easy of use. It supports categories, folders and so on. In other words you can organise your passwords for sites as you want. My primary use was to keep passwords for several vendors organised. It really easy to save or choose password from list when required. So, after couple months of use I decided do not continue use of it and really happy about it.","One of the features which lastpass stand out against other password tools is passwords sharing. That should be a great feature but this become one of weaknesses. From what I learned couple years ago: until only you have access to password vault - it pretty good encrypted. But when you share all or some passwords with other person - they should become encrypted with other key in order that person can access it. And this when your vault become not so strong protected. This is something what you should evaluate before use it. +Another thing which you should understand - all passwords saved under one master password, if you lost or forget it - you lose. ",When you work for several clients you have a bunch of passwords for many services. LasPass helps organise all this mess for you and make available on all your devices. This is very handy but you should understand what is the cost for this comfort and decide use it or not. ,5.0 +382,lastpass,Chelsea R,Mid-Market,2016-04-04,Such a time saver!,"LastPast is a massive time saver. I'm a fan. The tool allows you to categorize your logins, set specific folders as shared, and invite team members to access folders you think they should have access to. I also like that the tool makes suggestions based on the qualify of the password you selected. ","I wish last pass gave you some type of reminder when you have multiple logins for the same website. Right now, it just lets you save multiple at a time. ",Sharing logins and passwords for websites that I need to share with multiple people on my team. ,9.0 +383,lastpass,Avni P,Mid-Market,2016-04-11,LastPass is one of my Favorite password management tools,"It's a free password manager and easy to create an account. You can sign into the extension or app and immediately begin to start saving and autofilling passwords for every website. It simplifies your life and gives you secure access from your computer to mobile devices. You just really need to remember the master password and your set! + + +Review collected by and hosted on G2.com.What do you dislike?Default settings for password generator could be more secure.",Default settings for password generator could be more secure.,"I want to simplify all my passwords and make sure the info is secure. It's hard to remember so many passwords and with this tool, it gives you 1 click access. Easy to use and integrates well to your browser.",10.0 +384,lastpass,Taylor P,Mid-Market,2016-04-08,I don't have to think about passwords anymore.,"Autofill/autologin, most pages (it doesn't always work) I don't even have to hit enter to login. I also like the form fill, especially the fact that it is easy to trigger, but doesn't trigger itself.","Sometimes the autofill is too aggressive. I've had it try to log in to similar sites, and fill in the password on change password dialogs.","This allows me to easily have secure passwords. The fact that it not only makes secure passwords as easy as bad ones, but easier, relieves security concerns while making the process easier.",9.0 +385,lastpass,Alicia A,Mid-Market,2016-04-08,"Great password creation, storage and security tool","I love not having to remember passwords, with the Google add on feature I can auto fill login information. I also enjoy having the Google authentication option so that I know my passwords are secure and protected.",Someones the auto fill of passwords can auto fill the wrong fields.,I use for both work and personal and it helps me to ensure the security of my passwords.,10.0 +386,lastpass,André M,Small-Business,2016-02-10,As they say: a simple password solution,"It is solving a problem that everyone has experience at least once. I use it mainly with chrome and after signing-in to the extension I have all saved passwords available to login wherever I need. Can't get easier than that. + +I also like the way they (claim to) handle encryption: everything is encrypted in their servers and all the encryption/decryption is handled locally on your device/app/extension. That's a nice step towards security.","The only problem I have is concerning the concept behind the password management solutions: it feels weird putting all the eggs in the same basket. If the solution is ever compromised, my passwords would be as well. You also need to believe that they are actually encrypting everything server-side. Many companies claimed that before but in the end they just had some plain-text passwords on their DBs. ","Everyday life, managing all passwords for an uncountable number of websites that you need an account to.",9.0 +387,lastpass,Verified User (Anonymous),Small-Business,2016-04-25,Quick and Easy Password management with tons of features.,"I like how the integration between all your devices is fast and easy. They have an extension you can add to chrome that makes it very convenient to set and create new passwords, as well as look them up. It also let me import all my passwords from my last password manager which was a great plus.","There is very little to dislike about this software, it would be nice if the iphone app let you log in initially with your thumbprint. You can do so to unlock the app after you've logged in initially so at least there's that.",After investigating free password management solutions I settled with Lastpass for its ease of use and powerful features. This lets me quickly sync my business passwords across devices keeping me secure and actually making my log in experience faster since all I have to do is copy and paste. The ability for Lastpass to generate a new password when signing up for a new site and quickly create an entry for it was a time saving benefit that I hadn't expected and saves me a lot of time.,10.0 +388,lastpass,Courtney C,Small-Business,2016-02-08,I depend on this product daily,"I've been using LastPass for 5+ years and am extremely pleased. Keeping passwords in my head is a thing of the past. Using the same passwords on every site is a thing of the past. Silly per-site password variations are a thing of the past. The password vault is here to stay. + +LastPass integrates with every desktop browser I use, and it autofills site sign-in forms. Every time I sign up for a new site, I just auto-generate a long, random string and save it to the vault. It couldn't be simpler. + +In recent years, they've added ""security score"" and batch-update features. I've tried them out a time of two and found them to be pretty decent additions. + +There was some recent hubbub about ownership changing hands. From an end-user's perspective, the product has only improved in this timeframe.","* The glaring master password ""vulnerability"" +* Auto-fill gets a little confused from time to time +* They only provide mobile access to Premium customers (I am one, now) +* OS-native app doesn't seem as elegant as 1Password",Unique passwords and effortless authentication on the hundreds of sites I visit. Both for work and for pleasure.,9.0 +389,lastpass,Dakota W,Enterprise,2016-04-11,LastPass Is Good,The website and Google Chrome addon interface are fairly clean and easy to work with. The pop-up functionality works well when intregrated with Google Chrome.,"If you forget your lastpass password, it is a PAIN to reset. I've had to do this a couple times and it always seems to take hours. + +**Make sure you create a good password hint!**","After a recent update to their interface, and after spending the time and effort to learn the interface and features of LastPass, it has become a daily essential in the workplace and at school.",9.0 +390,lastpass,Keely Q,Small-Business,2016-06-16,Incredibly helpful,"I love that I only have to remember one password, as long as I remember to enter my passwords into the system. It's also great for business to be able to share passwords among the organization.",The interface feels quite glitchy and isn't always the most user friendly.,We manage multiple accounts and are able to use Lastpass to keep login information for all of them easily accessible.,8.0 +391,lastpass,Esteban C,Small-Business,2016-04-11,Great and really secure,"It makes it really easy for you to change computers, makes it safe since you don´t have to remember a lot of passwords, and this makes it safe, since you don´t need to have the same password so you wont forget them.","The set up of the account it could be friendlier, and there should be a way to make it easier to set up new passwords. It´s not that it is bad, its just its where I think it could be better.","It is easier to have all the passwords saved, its easier, more efficient, and now that most companies work online (we do), with more than one log in required, it makes it easier, and makes the whole office more efficent, and no one wastes times trying to remember passwords.",10.0 +392,lastpass,Verified User (Anonymous),Enterprise,2016-04-11,"Works well, but has interface issues","LastPass Enterprise is very reliable. I've never seen it have an outage of the 3 years I've been using it. + +Its easy to create new entries and search for existing ones. When it works, the automatic login upon one-click in LastPass is awesome. + +Being able to login from anywhere and access passwords.","The interface is going through a tablet crisis. With the introduction of LastPass 4, the GUI was made specifically for touch devices, which as a sysadmin who doesn't operate on any touch devices, it makes the interface too bloated. Luckily you can switch back to the LastPass 3 interface. + +Some of the features are too hidden, such as editing and creating enterprise groups. + +There doesn't seem to be a checkbox for removing the ""Would you like to save this password"" box when logging into somewhere it doesn't recognize. This can be annoying.","Shared passwords amongst an engineering team. + +Not having to maintain some sort of encrypted password file locally or on shared storage.",8.0 +393,lastpass,Dan C,Small-Business,2016-04-05,A great single location to manage the passwords for your various sites,"I like the simplicity of the user experience and the integration with Chrome. Every time I create an account for a new website LastPass is there to help with my new password and save the link to the site. I also like that it tells me if I am using the same password for multiple sites. Finally, I like to auto login feature. Most site I visit I don't have to do anything to log in.",There is really nothing I don't like about this solution.,The main problem I had was a single password for everyone one of my secure sites. Now I have a super strong password that is unique to each site.,9.0 +394,lastpass,Paul B,Small-Business,2016-04-10,The best and most complete password management solution,"Using your browser's built in password management is OK. Maybe it will even sync passwords between your computer and your phone. But if you want to use multiple browsers, or log into standalone apps and games, or jut get away from using similar passwords everywhere, it starts to break down. + +Not only does LastPass auto fills passwords on any site, in any browser, on desktop or mobile, but it will. ALSO will save and input passwords into mobile AND desktop apps. Finally, it will automatically change passwords on many sites to totally secure random ones for you if you ask, and will generate them for you whenever you need to make a new account. + +It ALSO saves form data like your name and address, lets you store notes securely, and can even save credit card information and fill it in when you check out on stores. + +Finally, no one at LastPass can decrypt your data. That does mean you have to definitely remember your LastPass password. But that's the only one, and you can make that a nice, big, super secure one.","It does 2FA, but one thing LastPass is missing that I liked in another system (SympleId) was unlocking via an NFC tag. With SympleId, whenever you wanted to unlock the client on your PC, it would prompt you to use your phone scan an NFC tag you might carry on your keychain, in a wallet, or in a bracelet. + +It was a neat feature.","Without something like this, it's way to easy for everyone to just use the same password everywhere. If some random external system gets compromised, an attacker could end up with the full keys to all the corporate data. + +If you're lucky users might have a few strong passwords for things they really thing are important, but LastPass makes it really easy to have totally unique, crystallographic secure passwords for every little random site on the internet,",10.0 +395,lastpass,Francis P,Small-Business,2016-04-10,A great password manager but interface could be better,"I have the premium edition which allows mobile access as well. One of the best features is the synchronising across devices, the sharing of passwords to other LivePass users. But I think most of all is the fine-grained security you can get on how you access your passwords. Locking down access by country, 2-factor-auth etc. + +One great feature is that if a companies systems are hacked and it was publicised you are alerted to change your password for that particular site. Also they have other tools to check your password strengths and if your using the same password on multiple sites.","They have recently released a new UI for LastPass. It is a great improvement on the previous one but still find myself doing too many steps to actually getting access to my passwords. Filtering per site is good but not when you have 100 usernames and passwords for the same site (which I get with Salesforce.com as I lots of customers using the same domain). I would love them to implement a ""recently used"" tab across the UI so that (eg) when you change your password you don't get all 100 passwords appearing and then having to scroll all the way through! I just logged in and changed my password! Put it at the top of the list! + +Passwords are stored ""in the cloud"" but encrypted using your master password. So theoretically quite secure but some could argue this is less secure than having the passwords stored locally.",Having stronger passwords and allowing those passwords to be shared across the organisation in a secure way if needed.,8.0 +396,lastpass,Jonathan H,Mid-Market,2016-06-01,LastPass is so organized!,"All your passwords and logins are kept in one place! No more forgetting or using tons of post it notes. Come on, you know you've done it!","Sometimes can be a bit buggy. Signs me out for no reason, a lot. ",We're able to allow multiple users to have access to our social accounts without actually giving them this sensitive information.,10.0 +397,lastpass,Vincent L,Small-Business,2016-04-08,"Great Product, My Favorite Password Manager","It's free, and it works fairly well for the most part! The one issue I'm having is with LP detecting password changes and updating the password sometimes. It will detect the password change and I would confirm the password change but won't actually get updated. You'll have to manually go into your Vault to update it individually. + +I used to use KeyPass but it's much more convenient being able to access all your passwords across multiple devices including work/home computer and mobile devices. You can't do this with KeyPass as it's stored locally. You may have concerns about security but this is LastPass's business so you can expect them to take security very seriously and I'd bet it's one of their top priorities when running their business.","Using LastPass on a mobile device isn't that easy even with the paid version. The last time I had the paid version (around January 2015), you had to use LastPass's browser in order to access your passwords. This may have changed now, I'm not sure. + +There was a point in time about 6 months ago when it was near impossible to access your passwords on a mobile device but this has changed over the last few months (you can now access via lastpass.com/mobile).","Password managers are essential today, especially at work where I have literally hundreds of passwords to keep track of. ",9.0 +398,lastpass,Verified User (Anonymous),Enterprise,2016-04-08,Very handy solution for password management,"On the norm, I usually use Chrome's built in password management. However, the LastPass extension has helped me share and delegate website access to colleagues without ever having to message, write, or email any passwords. In fact, sometimes I don't even know what the passwords are, as LastPass can randomly generate credentials and save them. It's a handy tool to keep in your web browser and it does not cost anything, so there's nothing to lose!","I understand the capability is there and it's a work in progress, but the iPhone app/web browser capability seems like it's still a work in progress and it is not 100% streamlined. If this process is explained a little easier and made more user friendly, I believe it will be a great asset.","Tons of server management across various environments. Things get messy when you are required to have unique dev, test, and production accounts!",9.0 +399,lastpass,Evan S,Mid-Market,2016-04-07,Best all around password management tool,One of the things I like best about LastPass is it two factor authentication ability with Google Authenticator. It provides great ease of use while also keeping all your private information even safer!,"Compared to other password management tools, LastPass seems to have one of the more inferior UIs. However, I will say over the past couple years they have made great strides to improve this UI experience.","Since the basic version of LastPass is free I use this for all of my personal password management needs. However, I would also recommend LastPass to anyone who is looking for more power password management tools. For a small monthly fee, you get access to a ton of awesome features (including their mobile app).",10.0 +400,lastpass,Jennifer M,Mid-Market,2016-04-11,Easy to use,"I like that you can store your passwords as well as generate new passwords. +You can adjust the password length and it also allows you to choose the types of characters, like upper and lowercase as well as numbers and special characters. I use it on the app and it copies the password into your clipboard so you can copy and paste it into the profile that you have created for a webpage. +You can also store notes, to save things like your drivers license number and memberships IDs. +I like that you can grant permissions to your vault in case of emergency +",There doesn't appear to be a backup feature unless you upgrade to the premium version. ,"In an industry that requires you to have you change your password often, this helps keep up with the need to generate passwords, but also the storage so you don't forget. When you have to change your password every 21 days and you cant use one you have before, this helps tremendously ",6.0 +401,lastpass,Daniel J,Enterprise,2016-04-11,Great Alternative Password Manager,"While I don't use LastPass for my personal password management, I have an enterprise LastPass account for work and use it to share system passwords between team members. i like the flexibility that LastPass offers in their product, ranging from a good, free password manager for those just getting started or who aren't looking for the top of the line or to pay a premium, but they also offer all the way up to a robust, enterprise-level product. LastPass is relatively easy to use and is a great way to get started in password management.","While I don't love LastPass' interface and design as much as other password managers, it works and serves its purpose. While they have a lot of settings and options which can be nice for power users, I think it can be a little more overwhelming and less user-friendly for many of the friends and family members I would recommend a product like this to. And while their web-based interface is convenient, I don't know if I trust it as much as others, but that may just be me. ","LastPass has simplified sharing system passwords amongst my team at work. We are all able to access the sites and systems we need to, but the passwords are managed by those who own them. It greatly simplifies this process and keeps our accounts safe. It has solved the unsafe practice we used before of sending login credentials via email, IM, etc.",8.0 +402,lastpass,Brian S,Enterprise,2016-04-10,I use LastPass for my work and it's pretty good.,"I love that there is no software to install, and the LastPass program is all web-based. It has nice password management and password generation features. Additionally, I like that I can store secure notes in the software as well.",The integration with the mobile devices (like iPhone or iPad) is not as great as some of the other products that I've used (for instance 1Password). LastPass is serviceable on the mobile devices but it's not the greatest experience.,"Secure passwords for numerous websites without writing them down on sticky notes, or having the same password re-used on multiple websites. Also prevent phishing attacks. Often you will get links to websites in your email, and you'll just blindly click on them. The website that you land on, looks legitimate and you might be tempted to input your username and password. By using LastPass, you won't be allowed to automatically submit your credentials because they won't be in the password manager's list (because the website is a phishing attempt).",9.0 +403,lastpass,Samuel L,Mid-Market,2016-04-10,Really Good Password manager but look elsewere for the UI.,Lastpass is great to store password and having a centralized search for it. The Chrome extension(I don't really use other browser) is really great for finding password and for generating new one. Since a become a Premium usern i can use the mobile apps and it's such a time saver. Also the support team is really quick to respond whenever we have a question or problem.,"The main issue i have with Lastpass is storing the non-web user and password. It's not design to work well with RDP or other software like that. +Also the sharing fonctionality is not exactly user friendly and lot of our users have duplicate password because of that. + +The UI of the version 4 is really heavy. I would like it to be more of an arborescence. We have lot of complaint about the UI because it's not really easy to view password. It need many click. + +In a lesser note, the Chrome extension doesn't update fast enough when we are sharing password between user.","Our goal was to create a way, where our user could have a list of password secure. Not like in a Excel file on their desktop.",6.0 +404,lastpass,Lauren L,Small-Business,2016-04-10,It's Lastpass for me!,"Last Pass has been great for our business. Security is important in our line of work. The most important part of Last Pass is feeling confident in password security. Having my passwords securely backed up has given us nice peace of mind. Some surprise benefits have been the other devices that our passwords now sync with, the ease of use, and the ability to share passwords with remote employees!","Sometimes I have trouble with the auto-fill feature on chrome, but for the most part clicking on the extension and re-typing the password helps to alleviate the problem. + +I've also had a few problems with auto-fill and my chrome auto-password settings conflicting. This has been frustrating at times, as it gave me headaches to log-in to commonly used programs. How I solved this, was clicking on the tool icon and manually changing the lastpass password each time this occurred. It's important to keep passwords up to date or else the program will give you more headaches than help. ","*Gives me great peace of mind around password organization and security +*Eliminates the headache of remembering hundreds of passwords +*Helps us share select passwords with remote workers - even without sharing the password itself.",9.0 +405,lastpass,Madeleine B,Small-Business,2016-04-09,Lifesaver,"I have so many passwords these days I do not know what I would do without lastpass. Yes it's true browsers store your passwords but.... between several home computers, work computers, phones etc - who has time to continuously remember and save passwords to all these different devices & browsers :P... lastpass takes all the worry away. As I just need one password now - my lastpass password. I also love that I can categorize passwords - ie work, home, investment etc.","This question is really hard to answer.... I cannot actually think of anything. No, can't think of anything.","Efficiency, security. No more passwords in spreadsheets, wikis - in other words non-secure and disparate locations. ",10.0 +406,lastpass,John F,Small-Business,2016-04-09,"Great for personal and business, excellent when combined","I've used LastPass for both personal and business use for several years and it's a great product, particularly when using both. At it's heart it's a good password manager, captures most login forms ok (but not all) and auto-fills ok. Best feature is you can link a business and personal account so when you log in with business you can see both your business and personal accounts and don't have to switch back and forth and still keep passwords separate.","Occasionally it doesn't recognize a login form. The workflow for populating credit card details is a little wacky--seems to take more clicks than should, but works. One funny thing is LastPass sends a notice whenever group membership changes, so when an employee is fired, we all know it before HR sends an announcement because we get a notice that says the employee has been removed from LastPass.","On business side it's great for shared passwords across the company. Team groups can be created to share passwords within a specific team, and individual passwords can also be shared directly between people. You can also set which team members can read-only passwords in the shared folder vs add/edit/delete/view in shared.",10.0 +407,lastpass,Eliezer G,Small-Business,2016-04-08,Considero que es el mejor gestor de contraseñas,"Lo que más me gusta de Lastpass es su menú amigable e intuitivo. La seguridad es elemental en este tipo de servicios, y este sistema cuenta con una integración muy segura y amigable con el usuario. La opción de verificación de correo cuando te conectas desde un dispositivo nueva es estupenda, ya que de esta forma sabes que nadie tendrá acceso a tu información confidencial, respaldado por Lastpass. Lo recomiendo 100%","Que no esta en mi idioma, como hispano hablante es fundamental para mi leer este gestor en español, pero lamentablemente no esta es español, por lo cual tengo que usar herramientas de terceros para actualizar lo que se muestra en pantalla, y por tal motivo me parece un poco tedioso y molesto.","La ventaja que e conseguido con este gestor es la posibilidad de no estar memorizando gran cantidad de datos como contraseñas, ya que cuento también con el servicio que auto genera una contraseña segura para mis servicios afiliados.",10.0 +408,lastpass,Paul C,Small-Business,2016-04-08,Excellent Password Management for Both Business and Personal ,"The easy to use interface and integration across multiple browsers and devices. For business, I like how easy it makes it to share log-in credentials with specific individuals or groups, without revealing the password, and being able to control access further by geographic location (by IP address) and dual-factor identification. Provisioning and management is simple. ","The search-as-you-type function lags and the browser-extension is not always as responsive as I would like. The Chrome extension can be finicky. If you want to add attachments to your secure notes or password records, you need a different version of the extension installed than the default one and it was difficult to get the correct extension to install. + +I also wish that it would provide a way to share secure notes with people that are not LastPass users. Currently, I use Cisco ShareFile to share certain information that I do not want to send by e-mail. I would love to be able to share a secure note in Last Pass by using a unique, randomly generated URL that expires after X number of hours. Currently the only way you can share a secure note is by having the recipient become a LastPass user. ","Needed a way to share passwords with certain groups and individuals. Also need to temporarily share access to certain on-line systems with contractors/freelancers. Last Pass makes this easy. As a bonus, it also reports on how secure employee password practices are. ",10.0 +409,lastpass,Enmanuel D,Small-Business,2016-04-08,Easy way to keep your passwords and usernames close and safe,"-It's really useful to quickly save and setup your usernames and passwords +-Friendly User Interface, easy to manage your information. +-It's great to autofill your usernames and passwords when it's required in some websites +-No problems with security breaches until now +-If you change the password in some websites it automatically saves it in LastPass which is great and saves you time. +-You can access your data from anywhere. +-It supports multi-factor authentication which is something great.","-Sometimes it doesn't auto fill your login fields in the required websites, so you have to verify if your session is active. +-High memory consumption. +-Because of the High memory consumption depending on your computer specs your browser (specially chrome) could freze or crash sometimes, it has happen to me a couple of times. +-It costs a couple bucks if you want it ro work in a mobile phone. +-Setting up the multi-factor authentication could be a little bit difficult +-Support quality is no the best.","I currently save important users and password from sites I don't visit that often but I eventually have to visit like namecheap, it's really useful because I've always have problems to remember passwords from site of this kind.",9.0 +410,lastpass,Benjamin B,Small-Business,2016-04-08,"An inexpensive, constantly improving and highly cross-platform product","Cheap (Free to start off with, yearly subscriptions are cheap). + +Very secure. Been on the market for a long time now and any security breaches have not ended up with user's passwords leaking. + +Cross platform. Works on practically every platform out there with apps to accompany. + +Constantly evolving and updating. + +Recent redesign is fantastic. + +Form fill profiles for filling in online forms and storing personal information. + +Responsive and friendly support. One support person even went so far as to install an Ubuntu virtual machine to look into a bug I thought I found. + +Various methods of 2 factor authentication.","Recently purchased by LogMeIn. They're doing a good job since purchase but some people may be critical of the company. + +Android app can be finicky at times, not detecting password fields correctly or getting sites wrong for example. + +Review collected by and hosted on G2.com.Recommendations to others considering the product:If you need a cloud password manager and don't want to pay too much, this is definitely one to look into!",Helps me keep all my passwords random and therefore more secure without sacrificing convenience.,9.0 +411,lastpass,Nathan A,Small-Business,2016-04-08,LastPass makes security doable.,"LastPass makes it possible to follow good security advice--namely, having a different password for every account, and changing passwords as needed. Without a solution like LastPass, this would be practically impossible. + +Some may worry that using a service like LastPass puts all your security eggs in one basket; and, in a sense, they'd be right. But it's a pretty hard-core basket. LastPass is end-to-end encrypted (meaning they can't access your data, it's decrypted on your machine), requires second-factor authentication via email whenever someone tries to log in from a new device, and allows you to set up other forms of two-factor authentication, as well. + +And don't fool yourselves--most people are already relying on one point of failure. They use a single or several similar and easy to guess passwords for all their accounts. LastPass makes it possible to use different, randomly-generated, strong passwords for all your accounts. It's definitely a plus for security. + +LastPass also makes logging in very easy. Once you're logged in with their browser extension, it'll autofill login forms, making logging in very efficient and protecting you against keyloggers. + +LastPass is also great for storing other types of information, such as software licenses, credit card numbers, sensitive notes, private keys, etc. + +Any specific note can be set to also require a password reprompt as an added security measure.",It's really hard to use LastPass on mobile if you're not a paying customer. Their website is almost impossible to use in a mobile browser.,"LastPass has allowed me to be more secure while helping me keep better track of all my accounts and waste less time finding, remembering, and entering passwords.",10.0 +412,lastpass,Kyle F,Mid-Market,2016-04-08,LastPass - The last password you will need to remember,"Simple to use interface +Multi browser compatibility +Multi platform compatibility +Mobile compatibility +The ability to share user accounts with family/friends/coworkers for selected accounts +The ability to enter multiple accounts for the same site to choose from +Secure password generator +Ability to view stored passwords in your vault +Auto Fill credit card information for online shopping","Can be somewhat intrusive when it comes to auto form filling with Chrome's built in form filling or if the site you're on has it's own auto form fill LastPass will pop-up over it's list blocking it. +Isn't very clear when you're not logged in and are on a site trying to log in or save new credentials - gives no actual notification / reminder, just changes color in the toolbar. +","Being able to share account login information for websites, devices, physical codes for things in a secure environment with authorized co-workers. +Save time by creating unique but secure passwords for various websites without having to duplicate passwords and always having the ability to view the actual password if needed from the vault.",10.0 +413,lastpass,Matthew F,Small-Business,2016-07-12,This tool is a godsend,"I use this daily, it does all the heavy lifting for me. I never have to remember passwords anymore, if I ever forget them I just need to remember the master password to look it up. ","I can't think of anything I dislike, this is one really solid product. ",It allows me to stop worrying about what passwords I've used and even lets me generate new ones for new registrations. It's really a time saver. ,10.0 +414,lastpass,Micaela W,Mid-Market,2016-04-12,"Convenient at times, annoying at others",Remembers passwords so I don't have to. Makes single-sign on very easy. Holds passwords for internal tools used across the company without me having to ask around to gather them. Much better than my old paper and pen method of storing passwords. :) ,Doesn't sync correctly sometimes. Sometimes I try and log in with the auto-filled passwords and they are wrong (i.e. I have changed my gmail password and it didn't save). Sometimes it saves wrong things as usernames/passwords (i.e. saved my zip code as my username).,"This helps us across the organization stay organized. I think our IT team has had alot less requests to reset passwords as we can pull them up at any time. It also has increased security since you can set password requirements (letters, numbers, etc.) Our security manager likes that for sure.",7.0 +415,lastpass,Verified User (Anonymous),Mid-Market,2017-01-27,LastPass Is A Lifesaver,I dont have to remember anything and can share passwords with other people.,When you get locked out. Resetting your master password is hard. Think this feature may have recently been updated.,Sharing passwords across our agency in a secure way.,9.0 +416,lastpass,Melissa M,Small-Business,2016-07-05,Last Pass is quick and easy to use,I like that it easily allows you to compartmentalize and store your logins and passwords for emails and websites as well as credit card and other personal info in a secure way.,I don't like the new interface as much as I did the previous one. It's not as intuitive and every time I want to look at information I have to click edit to open up a saved file which is a bit confusing since I don't actually want to edit the info at all.,it's a time saver knowing that I don't have to try and remember all of my pertinent info,10.0 +417,lastpass,Seldon S,Mid-Market,2016-04-28,I have been using LastPass for 7 months as part of my new job!,It is always working in the background and offers to remember a password even if I forget to save my new password. I can choose to use or not use this app. It gives me ways of categorizing my passwords too: Personal and work.,Sometimes I have to change my passwords and I end up with a long list of passwords most of which are outdated. the speed at which LastPass responds to my landing on a website seems to vary from quite fast to much slower.,I work for an online tech company and I have many many websites that I demo for customers so I need to remember lots of usernames and passwords. LastPass helps me do my job every day!,7.0 +418,lastpass,Erik O,Small-Business,2016-06-15,Good Solution but hard to Recover Password,"It's extremely friendly, easy to use and the possibility to share the access of some platforms with coworkers that use Lastpass help a lot. Definitely I recommend the solution for each one that have to access a lot of solutions on line day by day or for everyone that don't think is secure to use the same password for everything. ","Well, some few weeks ago I had a big issue with Lastpass. I forgot my main password and couldn't be able to access the platform. I used all the possibilities available to recover my password and didn't work it. I got frustrated and extremely upset but at the same time I saw it's a secure solution. +The resolution was to cancel my account and create a new one.","I don't need to have a file with dozens of systems I need to use and access everyday, so that's the big benefit for sure.",7.0 +419,lastpass,Michael P,Small-Business,2016-04-14,Solid Product!,"Lastpass has the best freemium tier of any password manager in my opinion.. Love love love the ease of logging in to website with no clicks needed. The redesign on the website is fantastic. Big improvement over the old design. I love the vault, and ease of looking at all of your passwords across the various sites you have online accounts.",Went with single payment for 1Password over $12/yr charge. I feel like in some ways 1Password is more polished. Better interface with managing passwords in my opinion.,Great way to organize your passwords to save time. Easily have an overview of all the various vendors sites you use as part of your business.,10.0 +420,lastpass,Mike J,Enterprise,2016-10-27,Last Pass work and personal use,Best way to manage obscure and high volume of passwords. Manage about 50+ passwords for internal company as well as personal use. ,Mobile experience requires subscription. The web UI is not so great on a mobile phone. ,Productivity and personal data security,10.0 +421,lastpass,Ben B,Mid-Market,2016-04-08,Great tool and plenty of features in the free version,"It's super easy to share passwords. I have generally saved passwords inside Chrome but since I found lastpass I'm saving passwords there, which makes it really nice when I want to share access to a site with someone else, I can just share via LastPass and my password won't be shown to them.","I don't like the pop-up that comes up every single time I log into a site. If I click ""Never"" it won't come up any more but I still don't like it - it's very obtrusive,, wish it was more unobtrusive like the native Chrome password keeper.",Sharing passwords is my main problem. It allows me to share access without actually revealing my password.,10.0 +422,lastpass,Nati A,Enterprise,2016-03-15,Secure and Easy to Use,"I like the fact that I can have different types of notes, passwords, credit cards, all together and each with the relevant data. I can mark favorites and the search is pretty good. Not much to say, it is pretty straightforward to use and easy to understand. ","There are a few annoyances: + - There used to be a Mac app, doesn't seem to be available anymore. Too bad, it was useful. + - When you log in from different computers, you always have to ensure this IP is also yours. Given that I use 4 different computers throughout the day, it gets complicated. + - I disabled the Chrome plugin as it turned to take over almost anything I entered, and I was not interested in that. + - Same happened with the Android app. It was terrible, and then, it turned to be premium, even if it was promoted the opposite.","It is useful not having to remember dozens of passwords, and being able to check them out and copy paste them. However, I am not interested in the service copying them all without my approval. Sometimes, it gets tiring. ",3.0 +423,lastpass,Zachary S,Small-Business,2016-02-19,"For a UX worth sharing, look elsewhere.","LastPass is great at storing passwords and the mobile app is worth the $1/month, if for nothing other than an increased illusion of security. The software is truly helpful in that you really won't have to memorize many passwords again, so there's that. There's also a Chrome extension that is nice to have, although it doesn't really work superbly. Additionally, the Support team is quick to respond, especially to Premium users.","Even with the launch of LastPass 4.0, the software is still a flaming pile of UX nightmare. Here are some of the worst things about LastPass: + +1. The Chrome extension takes multiple clicks to view. You may think this is a small problem, but having to do it dozens of times on a daily basis is incredibly frustrating. + +2. The Chrome extension doesn't work on multiple monitors! I know, I know...you must be thinking, ""that's insane!"" Oh, my friend, how right you are. The extension doesn't fully render the actual widget itself when you select the extension on your secondary (tertiary, etc.) monitor. Fun stuff, that. + +3. It's pretty sluggish! The new Vault is not always quick to load, although the design is slightly better than its previous iteration. + +4. LastPass will go out of its way to prevent you from having fluid organization of your passwords. It is still frustratingly difficult to move passwords between folders, and sharing passwords is quite possibly the least intuitive process I have seen in a piece of software produced after 2004. + +5. Here's the biggest thing -- LastPass doesn't always save your passwords properly! When creating a new password on a site, LastPass will sometimes forget to prompt the ""save"" window, so you can end up with a ""Generated Password for [url]"" instead of what you wanted. This happens enough to where it's commonplace and hinders the entire experience.","If you need to store and save passwords, LastPass gives you a way to do that on desktop and mobile. The software has made it easy to remember my passwords without having to keep them in my head or on paper. The value is also pretty solid. + +That being said, it would be worth the additional cost -- especially for a business -- to find another password management solution. There is no reasonable way that LastPass could meet the needs of sharing passwords between multiple users and have it be a fluid, cohesive experience. + +Until LastPass drastically overhauls their product, I wouldn't recommend it to potential customers outside of personal use.",4.0 +424,lastpass,Pedro P,Mid-Market,2016-03-04,Excellent for IT professionals and end-users alike,"I consider LastPass to be the best for cross-platform availability and ease of use. Combined with centralized management for enterprise & business users it's truly a best-in-breed product. With LastPass I have access to every password or critical piece of account information that I may need for work or pleasure on every device that I use. I can make a change on my iPhone and then login using the credentials on my Windows, OSX, or Linux computers. Need a WiFi key the first time on-site for a client? No problem as long as you saved it to LastPass just pull it up in your phone, enter it into the PC and connect. Need a unique secured password for each & every site? No problem, let LastPass generate the password and save it, then use it. I use LastPass premium so I also take advantage of X-Marks and keep all of my book marks in sync between all of my browsers on all different platforms too.","Honestly I can't say that there is one single feature that I dislike about the product. It works on everything, everywhere, and it's there when I need it, how could I possibly dislike that?","As a Sr. Systems Engineer I'm the ""goto guy"" for all of our clients. When the information about a password, or security key is not in our shared documentation my entire team know that if they ask me, I can pull it out of my LastPass and provide them with the answers they need. When I need to access a client system and I don't have access to our shared information, LastPass is my savior. I recommend it to our clients and those who have chosen to use it are extremely satisfied and pleased with the recommendation.",10.0 +425,lastpass,Susan F,Small-Business,2022-06-28,Easy management from all devices and I like the ability to add team members to certain folders,"The way it easily updates on all my devices. LastPass has saved me in the forest, on a lake, and on a plane when I needed to get information quickly for a client. The key is the master password. The rest can be as complicated as possible and not saved in my browsers. I'm a lightweight user. I know it can do so much more that I didn't realize until filling out this survey. I'll have to check out those features.","I would like the prompts on my phone to save a password when I have to create them on the fly, like it does on my desktop. If it does that and I'm missing it, I need to adjust that setting somewhere.","The stress of remembering passwords, the ability to share specific passwords with my team as they need them, and my own family. The Netflix password alone in LastPass has prevented middle-of-the-night panics.",10.0 +426,lastpass,Verified User (Anonymous),Small-Business,2022-11-08,Last Pass has fulfilled everything I needed in a password manager.,Lastpass securely stores all my passwords and I only have to keep up with one password. The mobile app is a definite plus and the functionality is the best I've tested.,"There are still a few quirks/glitches to be worked out in the mobile app. Occasionally it will say I need to reboot my phone to use Last Pass, but I am able to open the app and it will fill in the passwords. Sometimes it will not.",Last pass has eliminated the need to memorize multiple passwords. It has also ensured that all of my accounts are secure as I can now use a different password on every site I use. I also use it to store other important data.,10.0 +427,lastpass,Daniel B,Small-Business,2022-11-09,Invaluable tool,The ease of use and security features. I find that auto-population of credentials and looking up manually is very simple and saves so much time and keeping my credentials secure is invaluable.,There's not really anything I don't like about this application - I use it every single day,"LastPass solves my issue of saving my user credentials insecurely....saving on a spreadsheet or notepad is never a good idea. I know where all my credentials are, and I'll never forget passwords again.",10.0 +428,lastpass,Kurt H,Small-Business,2022-06-21,A Great Solution for Storing Your Passwords,"It's such a pain to keep track of all our passwords, especially with many sites requiring periodic password updates. I've tried all sorts of solutions over the years and I really like LastPass. I own a marketing agency and we have to keep track of access to many accounts on behalf of our clients. Our need was so great we created our own solution around 2004. But it was so expensive to maintain I started looking for a new solution and found LastPass. It does everything we need for a minute fraction of what our system was costing me. I use it for both personal and business access. It's super easy to use and I can set up access for my team to get access to the things they need and not the ones they don't. I like that I can easily access LastPass through Chrome too. I definitely recommend it. Very userfriendly too.",I really have no complaints after a year of use.,LastPass is a perfect solution for my complex needs of access storage and it's saving me a ton of money over the custom solution I had created for this in this in the past.,10.0 +429,lastpass,Taylor B,Small-Business,2022-06-21,LastPass is my go-to recommendation for Password management,"There are two main features that I enjoy about LastPass: +1: It is cross platform. It doesn't matter if you're using a macbook, android phone, windows computer, chrome book... whatever you use, LastPass will not only work, but sync across all your devices. +2: local encryption. your passwords aren't stored in plain text like so many other built-in password managers. LastPass takes their infosec seriously and it shows when you start to look at all the features.","Their mobile app could be a little smoother. Although the developers have worked to make sure that you can set LastPass as the default password manageer, it isn't as seamless as your typical built-in password management solution. This is to be expected, and I believe the tradeoff is more than worth it. Like anything else, though, there is a tradeoff for convenience and security.","LastPass has an enterprise plan that I use on a daily basis. This plan is great when you have no option but to have shared credentials. Although it's not best practice to have shared credentials, there are some situations where it's unavoidable. Lastpass allows me to share those credentials with my team in a secure manner. +They also have the ability to add a TOTP (time-based one time password) to a given account so that any accounts with Multi-Factor Authentication can still be used by a team instead of having one person constantly getting pinged with notifications. +Overall, it's an elegant solution for password management in both team and individual settings.",10.0 +430,lastpass,Emily W,Small-Business,2022-11-08,Last Pass is Great!,"Last Past is fantastic! My passwords are safe, secure and so easy to access. Customer service is amazing and the small charge (which is optional) for added premium features is well worth the purchase. I have been a member of Last Pass for many years and will continue on in the future.","Personally, I have had no issues with Last Pass.","As stated before, I have had no problems with Last Pass. Their products and customer service are exceptional.",10.0 +431,lastpass,Matt C,Small-Business,2022-10-05,Easy To Use Secure Password Manager,Extremely easy to use password manager that synchronises across all of my devices. It allows me to have robust passwords for all of my websites and even share these passwords with other people without them actually knowing the individual password.,"There is not really much to dislike about the product. Maybe the pricing, but what is the value of keeping your logins and personal information secure?",I don't have to remember a heap of complex passwords or write them down somewhere. I only need to remember one very strong password that I use to access Lastpass.,9.0 +432,lastpass,Sam Z,Mid-Market,2022-06-14,Lastpass - Robust Enterprise Password Management,"From an IT perspective, Lastpass is great at allowing you to: + +Restrict passwords by user type/department +Rotate passwords from API +Allow auditing user passwords for security +Tracking user engagement and compliance +Secure shared notes +SSO Federated Login Integration is simple if you've already integrated SSO into your environment","Lastpass could improve on: + +API documentation / ease of use - Appears to not be prioritized as much as our System Admin would like +Same URL Passwords - Vault entries / passwords with the same root/base URL/Domain will often trigger all at once. We host several websites on our private domain with different URL prefixes, causing you to have to navigate through a hard to differentiate list","Lastpass solves our need to have users not save their passwords locally, or keep passwords simple to avoid forgetting them. + +Lastpass allows our IT department to point users towards a solution for this password woes.",10.0 +433,lastpass,Steve L,Mid-Market,2022-11-08,Cybersecurity Instructor and Professional Review,"Simply the ability relating to password management along with what I'd characterize as managing data relating to life issues (e.g. location of assets, etc.). I have consistently recommended the product to family, friends, students, and colleagues as a quality product that can do much more than manage passwords.",Nothing comes to mind. It is simply a product that meets or exceeds my expectations.,It provides safety and security when it comes to data storage and data availability.,10.0 +434,lastpass,Verified User (Anonymous),Small-Business,2022-11-09,LastPass Families Great Value,"LastPass does a great job integrating password management across my devices and browsers. The Families option allows my family of 5 to all have the security of a password manager, and share passwords easily with each other. I'm a big fan of the Security Challenge, which gamifies the process of using unique passwords.","Some features aren't 100% available across all platforms/interfaces. Attachments are handled differently in mobile vs Windows. Even the Windows app, I sometimes have to go to the web interface to manage all features.","LastPass helps me and my family manage unique passwords across many sites, and simplifies the login process through deep integration with my mobile device, desktop, and various browsers.",9.0 +435,lastpass,Verified User (Anonymous),Mid-Market,2022-11-08,"LastPass is simple to use, and an easy way to secure and share critical environmental passwords",It's always available at the top of the browser window. It has several options for generating complex passwords that are easy to read and difficult to crack. These can be shared with a team and searched.,"As with all tools, LastPass is a single place that houses the keys to the kingdom. If someone gets in, they get everything. But at least it's far more secure than traditional methods of password storage.",The former person in my position held all the passwords in an excel spreadsheet. That could have easily been sniffed out by those who did not have a business need for the information. This puts all that information behind a secure lock.,10.0 +436,lastpass,Lori Q,Small-Business,2022-11-15,Organize the chaos of passwords,Keeps or generates passwords in one place and keeps them secure. They are always available on my devices I use all the time. Ends the excel spreadsheet nightmare,Sometimes it's confusing to navigate. Needs better tutorials and explanations.,Endless requirements to change and update passwords. It's now easy to do and keep track of them. I don't know if I'm more productive but it saves time frustration and stress,10.0 +437,lastpass,Alyson E,Small-Business,2022-11-15,Love this product. Totally reliable.,"All my passwords available at the click of a mouse. Never need to remember any. Used as an extension/add on, can be used to autofill all your log-ins online. So easy to access as everything is stored in your vault along with extras like memorable words or pin codes.",I genuinely can't think of anything it needs to improve.,Can share log-ins and passwords securely. Also monitors possible breaches.,10.0 +438,lastpass,Kellie C,Small-Business,2022-11-15,Excellent Pwd Locker for all devices,I like that i can use LastPass on all of my devices be it microsoft or apple. I can use it in all browsers as well.,I really do not have anything in particular i dislike. I do not have issues with the app at all,Best thing is not having to remember all the different pwds among all my devices. It saves me from writing them down somewhere.,9.0 +439,lastpass,Brent M,Small-Business,2022-11-16,Long Time User for Personal and Professional Environments,"The cross-platform compatibility has been key for me. I use multiple devices with varying OSs and multiple browsers. Without this functionality, a password management platform is useless and LP has done a great job of doing it.","Occasionally I have issues when I need to share/access passwords with/from my Family Plan users; it's not clear if it's Operator Error, though, since we eventually get where we need to be anyway.","Increasing/improving the security of my clients and users by moving ""password notebooks"" into a secure location that won't get lost in the catastrophic event of a fire or be found by someone who shouldn't have access.",9.0 +440,lastpass,Gregory F,Mid-Market,2022-11-16,Excellent password vault solution.,"I like the seamless syncing across devices. The one-click password generator. The prompt to save new / updated passwords, and the proactive warning if an account is compromised.","It occasionally stops auto-filling on my Android devices, but I suspect that this is caused by Android updates, and not LastPass.",It allows me and my users to employ complex and unique passwords without having to worry about remembering them.,10.0 +441,lastpass,Pavlo S,Small-Business,2022-10-27,I use LastPass for personal and business needs. Definetly one of the best solution on the market,"- Password management options. +- Team sharing and management. +- Autofill and autogenerate features. +- Cybersecurity check and dashboard. +- Reasonable pricing. +- Chrome extension.","- Mobile app. It's working strangely and is hard to use seamlessly. +- Master password reset. I had an extremely complicated case with one of my ex-employee's account.","- Team password management. +- Onboarding/offboarding employees with access sharing to different services and recourses. +- Security management and check-ups. +- Personal security management",9.0 +442,lastpass,Verified User (Anonymous),Small-Business,2022-11-15,I use it for basically everything,It helps the most to create strong passwords and keep track of them easily. I have a bad habbit of using the same password for logins and this way makes it safer and easier.,"Sometimes when using it on my cellphone it isn't as smooth as I would like for it to be. There are a few websites where lastpass won't automatically fill in, but I blame it more so on the website than LastPass.",Not having to remember or keep track of passwords. Updating passwords with LastPass is a breeze as well. It will remember passwords to websites I don't even remember setting up.,9.0 +443,lastpass,Verified User (Anonymous),Mid-Market,2022-12-06,So useful and makes my day-to-day to much easier4,What I like most about LastPass is its Autofill feature and password generation. It generally always gets the right credential and updates easily when the password gets changed.,What I dislike about LastPass is its history of security breaches. I love the product but am not one hundred percent comfortable with having my data stored in their databases.,Problems that LastPass solves for me is the ability to come up with incredibly safe passwords on the spot with their password generator and being able to see if any of my current passwords are compromised.,9.0 +444,lastpass,Verified User (Anonymous),Small-Business,2022-11-15,It works,It crosses platforms so I can utilize it for work and for my personal information. It is secure and I feel better knowing that my information is safe.,It can be a little cumbersome using it on my iphone when I need to authenticate both Last Pass to open it and then the app I am trying to use. It can take time which can be annoying when trying to check out of a store but this is my only complaint.,I am not familiar with what problem LastPass is working on but I know they update the app frequently to keep it secure.,10.0 +445,lastpass,Amy M,Small-Business,2022-11-16,Good service,"It's extremely useful to have all of your passwords in an encrypted platform like LastPass, so that you can access them wherever you are and that not only saves time but gives you peace of mind.",I don't have any dislike of LastPass yet.,Having all the passwords that I need for my business in one place and knowing that they are safe and secure.,10.0 +446,lastpass,Verified User (Anonymous),Small-Business,2022-11-15,Simplifies juggling multiply logins across all my devices,"I can use it on my laptop, phone, and tablet and always have access to all my passwords. I like how secure the generated passwords are and how it prompts to save the new login immediately.","I don't like how it randomly signs you out sometimes. I understand this is for security reasons, but sometimes I just give up what I was doing because of the inconvenience.",It is solving the problem I used to have with always using the same password for everything or writing down new ones in a notebook. I used to have to carry the notebook with me.,10.0 +447,lastpass,John K,Small-Business,2022-11-15,It seems to work well for my needs.,It helps me create safe passwords. It saves them for me and tells me when I have to many repetitive passwords.,"Sometimes saving the correct IP address creates a problem. And also, sometimes it is hard to find passwords that don't get used very much or older passwords.",It keeps a good log of all my passwords and creates new good passwords for me.,10.0 +448,lastpass,Richard O,Small-Business,2022-11-09,"Easy to use, works on all my devices on Android, iOS, and PC","I like the ease of use the best. With over 200(?!!???!!!!) passwords to individual sites, I need a safe, trusted repository","It costs for the best plans, but it is an expense I gladly pay.","LastPass solves my primary problem of retaining all the passwords I have as well as encouraging me to use complex, random passwords rather than the ones my brain will remember",10.0 +449,lastpass,Verified User (Anonymous),Mid-Market,2022-10-04,Comprehensive credential manager works well for growing businesses,LastPass makes it easy to manage credentials across our remote and distributed team. With good training and rigor (making sure everyone uses it and doesn't share passwords outside of it) we have more confidence in the security of our credentials.,"I have almost no complaints about LastPass, it's really a great tool. The only thing is that user management has two layers and can be confusing sometimes, like they dropped an application inside another one. But it's workable.",LastPass helps us to have more security in the way we share passwords and credentials. It prevents people from sharing in plain text and also prevents them from seeing the credentials if they don't have permission but still need to use them.,10.0 +450,lastpass,Travis O J,Small-Business,2017-04-13,The best corporate password management system,Simple log in and sharing between team members securely.,The user interface has been updated and is better then most but it could use some work.,Password management is a pain so most people and companies don't do it. This makes it so most employees end up with simple un-secure passwords. LastPass makes it simple so everyone uses complicated secure passwords.,10.0 +451,lastpass,Kassie S,Small-Business,2017-01-23,A lifesaver for anyone!,"I love LastPass. Since we manage database systems for over 40 clients, the massive number of passwords and logins would be too cumbersome to manage without a tool like LastPass. I recommend it to clients weekly.","I have zero dislikes about this tool. It functions easily, it keeps track of passwords, links, notes and sites. I need to implement it on my phone!",This helps our staff and clients manage all the various passwords and sites that nonprofits need. ,10.0 +452,lastpass,Verified User (Anonymous),Small-Business,2017-08-31,Lastpass takes the frustration out of accessing accounts,Lastpass stores my user accounts and password for all sites.,"The fact that I have to memorize the Lastpass password +",I save a great deal of time by not having to hunt out my user account names and passwords.,9.0 +453,lastpass,Ankit K,Mid-Market,2016-10-06,LastPass is the a Life Savior ,"Forgetting Passwords is among the most irritating habits I have within myself and I always wanted a definite solution for this issue in my life. +Resetting the password is not an easy job for me, because I usually tend to forget my secret questions and linked email addresses. The LastPass is a savior for me. I just don’t remember when was the last time I had to look for my passwords. Moreover the Auto Login facility in Last Pass is mind-blowing; I save a lot of time with not jugging around the login pages of my various accounts . +","There are few concerns which last pass should take care of , Firstly my bank website do not allow last pass to auto fill the details and had locked my account several times because of the failed attempts to login. Secondly, I tried to disable auto login for particular websites, but that feature is not working for now.","Apart from those little flaws, there are more of advantages for using LastPass. Its simplicity is something which makes it unbeatable among its competitors. Moreover it is now available for my mobile devices as well.. +",8.0 +454,lastpass,Lynaia F,Mid-Market,2017-06-05,Great Software,"I just recently got into using this software and it has helped. I can upload all my passwords and it updates them as i go. I love the security of it and it makes it nice to keep track of everything. +",It feels weird to put all passwords into one place but after a while it becomes less terrifying when knowing the security level. ,Password management and tracking. ,9.0 +455,lastpass,William M,Small-Business,2017-01-13,My #1 software find of the past decade,"Greatly simplifies password generation, management, and security-related issues; ability to log on from multiple devices; ability to share passwords with other users (even free account users) with very inexpensive Premium membership","Nothing. Some websites are not properly designed for password managers, but that is rare.",I manage over 700 personal passwords and have a staff of ten that can share logon and password information easily and securely across multiple devices. They share roughly 200 passwords and LastPass does a great job.,10.0 +456,lastpass,Cassie H,Mid-Market,2017-01-25,"Learning Curve, but useful","I like that it keeps everything organized, I can create different files for different programs i have multiple sign in's and passwords for.",It has a bit of a learning curve. The way the passwords display is a bit confusing at first and actually figuring out how to use it. It's very easy to accidentally delete the passcode or change it.,It helps us keep things secure. We have a lot of shared logins and multiple employees in different locations. We dont have to keep the information on desk tops or send in an email.,7.0 +457,lastpass,Beau K,Small-Business,2017-02-17,"Pricenis right, but a little rough around the edges.","Works on all my devices and syncs between them all pretty seamlessly. I use it on 2 iphones, 2 windows computers and an iPad..",Tries to save passwords over and over again resulting in duplicates and old duplicate entries,Keeping passwords updated across multiple work-stations and devices. Only have to input password data once and it populates across whole office,8.0 +458,lastpass,Jamieson S,Mid-Market,2017-01-25,Hard to remeber living without,"The ability to automatically generate and save passwords, then use them from other computers. I also like that you can customize the random password generator.","Very little, sometimes if it doesn't pick up a form correctly, it is hard to get the username and password, but this is rare.","Password security, without needing to reset and remember all of the passwords I use on a daily basis. There is a way to share passwords, we have not tried using that yet, but will be looking into it in the near future.",10.0 +459,lastpass,Verified User (Anonymous),Mid-Market,2017-06-27,Great product for helping teams manage shared accounts!,"Last pass is a great tool to help teams share access to online accounts and other secure information. We have been using it for several years and have it setup for a couple different groups (Digital Marketing, Development, etc.). It really makes getting access to tools easy.",It sometimes doesn't update the password when asked (but this seems to be site specific). Likewise some sites are harder to use with it (there interface makes it less usable).,"Sharing secure knowledge such as account login info, or FTP and database info.",10.0 +460,lastpass,Verified User (Anonymous),Mid-Market,2017-07-27,Awesome product,Makes it easy to share passwords. Keeps all passwords confidential ,You have to sign out if you don't want passwords to autofill,Keeps passwords confidential and we don't have to change them when we off board someone,10.0 +461,lastpass,Verified User (Anonymous),Small-Business,2017-07-26,Amazing password management with a few gripes,Reliable uptime and integration across systems,"There are some ""features"" which I would like to disable/change, but can't",LastPass gives us great password management across our 30-person company. There is no password emailing or keeping in spreadsheets.,10.0 +462,lastpass,Keith G,Small-Business,2017-02-07,And absolute life saver!,I never have to remember passwords or fill in forms.,"It is delayed sometimes on my Chrome browser; It doesn't consistently distinguish what parameters are required, when it's programmed to auto-fill them.",Lastpass has saved me so much precious time! I don't have to type answers to form questions from my phone.,10.0 +463,lastpass,Verified User (Anonymous),Small-Business,2017-07-22,"Easy to Use, Very Handy, and Inexpensive",I'm able to share login information with my employees without them being able to see what the password is.,"Once you install the plugin, it asks if you'd like to save the login info for every website you log into (which would be fine for personal use, but, when using it for business, there's only a few websites I need saved).",I don't have to change all of my passwords when an intern leaves!,10.0 +464,lastpass,Asim A,Enterprise,2016-09-19,A nice to have password management tool,"LastPass allows me to store all my username and passwords in a secure place. It automatically gets sync with all OS such as Mac, Windows, or Linux as well as on Android and iOS. It has got an automatic password generator which offers strong passwords in replacement for the weak ones. I can replace them with something which has a combination of uppercase letters, lowercase letters, digits, and special characters. It also provides an emergency access feature to choose one or more person who can inherit your stored username and passwords in case of your demise. +","If you are using a free account then you will not be able to sync all your devices where ever you have installed Lastpass. Also, if I try to dismiss a reminder from mobile app, it again pops back when I launch it after some time. It seems I can’t turn it off completely. +","I needed protection from keyloggers as I work from various devices at different locations, where Lastpass came out to be handy. It provides protection from keyloggers by allowing entries to be captured from a virtual on-screen keyboard which can accept my inputs through mouse clicks itself. It also sends an email notification when I change my master password, so none can steal my account information. It has an automatic password changer which can change my passwords after certain fixed days. +",8.0 +465,lastpass,Steve V,Small-Business,2017-07-20,Last Pass you will ever need to remember,The ability to Share passwords for social media,I did not like the complexity as a end user. often times I felt lost.,The ability to allow multiple people use log in under one social media account,8.0 +466,lastpass,Altaf A,Enterprise,2017-06-29,Not the best password manager but works consistent across all devices,Ability to fill forms using only one click.Secured browsing.,User interface is clunky. Mobile app requires authentication every time you switch between apps.,"Storing business cards, partner profiles and all the passwords in one place.",6.0 +467,lastpass,Verified User (Anonymous),Enterprise,2017-09-19,Password Sanity,"Like everyone, I have so. many. passwords. LastPass keeps track of them all across all my devices. I'm able to use secure passwords and not have to remember them all.",Sometimes the browser in the iPhone app is buggy.,Increased efficiency and security.,10.0 +468,lastpass,Verified User (Anonymous),Small-Business,2017-09-19,Awesome product,How easy it is to have access to accounts.,Nothing honestly. I feel like everythig works great.,Don't have any business problems.,9.0 +469,lastpass,Brittany S,Enterprise,2017-05-09,LastPass review,I like the vault. Where you click and logged in ,Sometimes it remembers the wrong information. ,The ability to access my websites that are logged in already so simply. It's fantastic ,10.0 +470,lastpass,Verified User (Anonymous),Mid-Market,2017-05-18,All of my passwords in one place. ,"I no longer have to memorize passwords or figure out which password goes with which account. Also, LastPass generates secure passwords. I don't have to try multiple times to make it secure enough for each site's peculiar rules.",Sometimes it does not properly record the password when I start a new account.,My passwords are much more secure. ,10.0 +471,lastpass,Konrad M,Small-Business,2016-08-22,"LastPass - A easy to use, but sometimes tricky password manager","KeePass is a very good tool to manage your passwords, if you have many devices. Computers, Smartphones, Tablet. There is a Chrome- and Firefox - AddOn and many other mobile Apps (e.g. for android, iOS, ...). U can use it everywhere and the sync capabilities are just working fine. Everything is synced, every information in your password library. +The two factor authentication is also working well, it gives you more safeness on your passwords.","Sometimes the Browser included apps are quite buggy. Passwords are not being prefilled, the url matching to automatically fill the correct forms is not accurate or even not working, the form to enter new passwords is sometimes a bit strange and tricky to use. +Basic-Auths in Browsers is also not working in Chrome, which is a important feature missing. +In my opinion also missing is a tool to use it on a console, to use that on a server or somewhere. A way to store ssh-keys is also missing, which would be a nice feature.","I am registered at a lot online platforms and services. While managing all my server I need a lot passwords. So this is what I use this for and it is working well, but there are some nice features missing.",7.0 +472,lastpass,Verified User (Anonymous),Small-Business,2017-03-17,Saved My Memory,"Last Pass makes it simple. Besides the fact that it is securely managing my passwords, it prompts me to remember to add them to it whenever I log into a new site.","There's really nothing not to like. I believe it can't handle Microsoft One Drive login, but other than that it's been perfect.",Too many passwords. I don't have to constantly reset to access all the different products I use. ,8.0 +473,lastpass,Jeremiah B,Small-Business,2017-01-23,Big time-saver! ,"Easy to use and maintain +Easy to update +Saves me a ton of time I'd spend remembering and typing passwords. +","Not much to dislike, really! Works well, and it's easy to update. It would take forever to remember and type in all those passwords! ","When you use what feels like a thousand different sites to do you work, a tool like LastPass is essential. ",10.0 +474,lastpass,Helma K,Small-Business,2016-10-03,"Generally great, but a few scary hiccups",The fact that it's a browser extension makes using save passwords super easy on all web applications. The ability to share passwords with team members is great! And the ability to share access without actually sharing the passwords is awesome.,"That same fact feels however less ""secure"" than an offline app for passwords.",Keep passwords safe and secure. Provide people with temp access to applications without setting them up completely.,7.0 +475,lastpass,Rebekah U,Small-Business,2022-11-08,Great password management solution,"LastPast offers a useful, secure multi device solution.",Lastpass doesn't work with all sites and the browser extension occasionally doesn't recognize a given login field. Saving new passwords created on mobile is difficult and unpredictable compared to desktop.,LastPast solves the need to have a large number of secure client passwords accessible and ready to use.,10.0 +476,lastpass,Verified User (Anonymous),Enterprise,2022-11-15,Super easy to use,Easy to use on mobile and stationary web. I never have to remember passwords and can ensure have high security nonrepeatable passwords that are easy to access from different devices.,"Sometimes when the Google chrome extension on stationary web does not recognize the site it takes multiple clicks to digup password. First you need to open an extension, then find site, then edit it, then copy password.","Having secure, none repeatable passwords for different sites that are easy to access from multiple devices and are automatically synced. Generating secure passwords",9.0 +477,lastpass,Adam H,Small-Business,2022-11-15,Intuitive and Reliable Password Mgmt,"The best part of LastPass is the cross-platform usability and the proactive notifications about old, duplicate, or insecure passwords that may be vulnerable.","Occasionally it doesn't auto-fill in some apps or websites, forcing you to make a few extra clicks.",LastPass addresses the security issues that are prevalent when reusing insecure passwords.,10.0 +478,lastpass,James S,Enterprise,2022-11-09,"Easy to use, cross platform, and secure.","I don't need to use only one of two easy-to-remember passwords for everything, I instead use long and complicated passwords and let LastPass manage my access.",I cannot override the use of other browser built-in password managers.,Dozens of sites with varying password minimum requirements are easily managed without using a single password for everything.,10.0 +479,lastpass,Verified User (Anonymous),Mid-Market,2022-10-04,I always recommend LastPass to everyone.,The browser plugin that collects my passwords when I use them.,"Teams implementation could be a bit better, but maybe that's just because I am fairly new. I did not know that administrators cannot recover users accounts unless it has been enabled first. It would have been the first feature I enabled if I had known.","Keeps secure notes - use this to have SSN info for family members, combo to safe +keeps all my passwords - I have over 300 website logins stored in LastPass +Works on my mobile devices - I can log back into games and apps on mobile after updates or after getting a new device",10.0 +480,lastpass,Shawn S,Enterprise,2022-11-08,Easy to manage passwords,How easy it is to use on any device to create and use secure passwords. I don't have to remember every site password with lastpass,On mobile sometimes the password option doesn't appear so i have to application swap to get my lasstpass password,remembering my password for hundreds of sites and tools i use,10.0 +481,lastpass,Verified User (Anonymous),Small-Business,2022-11-09,Last Pass is everywhere I am,"I can securely access all my passwords from everywhere I am. I also appreciate that I can use more complex and random passwords than ever, much better than keeping all that in my head.",The mobile phone experience may be a bit clunky; it often prompts me for my LastPass sign-in more than once for the same password input. But it does its job well otherwise.,Helping me maintain stronger passwords. It is a significant burden off of my shoulders to know I am following better security practices without any additional effort.,10.0 +482,lastpass,Charlie K,Small-Business,2022-11-16,Easy & Convenient!,All my passwords are in one place. Can have a different and difficult password for all my needs.,It does not always load correctly on my phone and I can't access my passwords.,All my passwords are in one place. Can have a different and difficult password for all my needs.,9.0 +483,lastpass,Toby M,Enterprise,2022-11-09,Password management is a must,"Cloud storage, Browser support. MFA authentication. +Lastpass holds most my life now.","I would like to group things. some of the sites are using SSO, so I would like when I update one, it updates all.","Currently have hundreds of passwords, all unique. And to be fair, I do not know what they are.",10.0 +484,lastpass,Marek K,Small-Business,2022-11-15,My one and only password manager,It's available and easily accessible on each platform I use,"There are some minor bugs on android here and there, although I'm aware that there's a variety of completely different (also from the technical perspective) applications there","It allowed me to easily use complicated and, therefore safe passwords I'd never remember",9.0 +485,lastpass,Melanie H,Small-Business,2022-11-08,"Easy to use, secure password repository","Easy to use, generates strong unique passwords and provides safe but accessible storage.",The authenticator app doesn't work with my phone and no fix date is anticipated. Families subscription is not intuitive to use.,Not sure! Support could not give an anticipated date for fixing the Authenticator issue despite it being a known problem.,9.0 +486,lastpass,Rich B,Mid-Market,2022-04-26,LastPass Eliminates Our Need to Remember or Write Down Passwords,"I use LastPass both professionally and personally and I like that I can create complex passwords that I don't have to remember. I use LastPass to generate long secure passwords for me and to store those passwords. We also use LastPass shared folders across our organization for accounts that require shared administration access. It keeps us organized, makes it easier to change passwords, and alerts us to any compromised passwords.",Sometimes the auto-fill functionality on some websites doesn't work correctly. Either the form buttons are blocked by another button on the site or the auto-fill doesn't correctly fill in the passwords. This requires a minor work around of manually coping the password from LastPass into the form field.,"We're solving the problem of reused passwords where were can now generate complex and unique passwords for every system and store them in LastPass for our teams as needed. Users don't have to remember passwords, reuse of passwords has gone done and the administration team all has a single centralized place where passwords and shared keys are stored.",10.0 +487,lastpass,Adrian F,Small-Business,2022-11-15,Must have for password management,I have one place for all my secure passwords -- all randomly generated,There used to be a single point of failure -- but then LastPass started using 2FA for accessing my account -- so it's now ... better than ever. Strongly recommend for personal and business alike.,Primarily -- password and secret management (can include credit card/bank accts #s or sensitive info). Great to have these at the touch of my fingertips vs managing it via some scribbles in a notebook (literally what my mom uses),10.0 +488,lastpass,Verified User (Anonymous),Small-Business,2022-11-08,Useful way to store unique passwords across multiple platforms,Need a password manager that works in Linux/macOS/Windows/Android/iOS seamlessly this is the one. Keep unique keys and lock your vault with a Ubikey for maximum security.,"Not much of anything. Works on pretty much every platform. In the past, I've had some sync issues from my phone to my desktop, but that hasn't happened in a long time.","Needing unique and secure passwords for all the various sites and platforms I use. It also can store secure notes for passwords not tied to a website, or keys to other machines.",10.0 +489,lastpass,James M,Small-Business,2022-11-15,I love the ease of use and security,I can log in from anywhere on any device. This has come in handy more than once as I travel alot for business.,So far I have not found anything I would consider a downside to having LastPass,"Security, I had several breaches which caused me hundreds of dollars",10.0 +490,lastpass,Verified User (Anonymous),Small-Business,2022-10-04,One password to rule them all!,"It makes it easy to create secure, strong passwords that is don't have to remember or type. Using the family edition, I can share them easily with my family. I also like using the new passwordless access using the authenticator app.",The mobile app doesn't always recognize app logins on my android phone. You also have to install a special browser extension that is difficult to find and enable it you want you use your laptop biometric login.,The Team edition makes it easy to enforce strong password policies and monitor user behavior. It also gives me control on how resource access is shared across my team.,10.0 +491,lastpass,Steven A,Small-Business,2022-09-20,"Excellent product, would highly recommend.","LastPass has allowed me to store all my passwords and provides easy access. With the Chrome plugin I can automatically fill the password boxes on login forms. As a result, I can generate different random strong passwords (using LastPass) for each of my software services, so I don't need to share passwords across services.",I haven't encountered anything that I dislike or that is not useful.,The central storing of passwords and sharing with other users.,10.0 +492,lastpass,Jim B,Small-Business,2022-11-08,LastPass ended insanity of remembering passwords,Securely manage all my sensitive info and data,"It's not free, but it's valuable to my family and me to be more secure",I can keep all my business and personal passwords and sensitive info secure and accessible. Fewer reused passwords and no lost time trying to figure out passwords,10.0 +493,lastpass,Verified User (Anonymous),Small-Business,2022-11-15,All my passwords in one place,I love that Last Pass saves all my passwords and automatically makes changes if I need to change a password. It is easy to add new websites and passwords. Keeping my personal and business passwords organized is a breeze! I also like that I can log in on any device and have access to all my passwords.,There is nothing I dislike about lastpass,I have so many passwords for my business as well as personal ones. Its easy to keep them organized.,10.0 +494,lastpass,Stephanie R,Small-Business,2022-06-21,I couldn't do my job without it!,"I've been using LastPass for years personally and professionally. Personally, it's very convenient, but also super handy that I can store stuff like drivers license numbers, etc. Professionally, I'm a web developer and would not be able to keep up with all my client's accounts without it. Also, it's great for teams as you can organize passwords into categories and get very granular with access.","I wish the integration with mobile browsers was better, but it still gets the job done.",This tool is helping us securely store passwords and limiting access / visibility for enhanced security. It's 100% essential and I would be lost without it.,10.0 +495,lastpass,Alpa M,Small-Business,2022-08-02,Best Business Decision,"It is easy to teach employees how to use it. All of our records are secure and it is easy to make changes when there is a personnel change. I love the Security Dashboard, to see which accounts need to be changed and which passwords have been compromised.",We have to pay for the whole year for each license.,"We handle a lot of private information and knowing that our passwords are difficult gives us peace of mind. We are not having to spend hours in resetting passwords, employees only have to worry about 1 password.",10.0 +496,lastpass,Yevgeny P,Small-Business,2022-11-08,Great app. I used it everyday.,How easy it is to use. It's pretty much set it and forget it.,I would rather have all my passwords shown by default rather than having to click into all my passwords. The first windows is small and useless.,I don't have to remember passwords anymore.,10.0 +497,lastpass,Mark L,Small-Business,2022-06-21,Secure Passwords for All Logins,I like that I can use LastPass with FaceID on my phone to log in to websites/apps without any issues. I like that the odds are extremely slim of someone guessing my passwords using the password generator as part of LastPass.,I dislike that I don't always know the password off the top of my head. My passwords are so unique I don't know them to type them in without looking them up. I don't think anyone could guess them.,"Creating long and unique passwords so that they can't be easily guessed by hackers or attackers. It's also less likely an employee will remember the password, which helps for security. Admin's can monitor logins as well.",10.0 +498,lastpass,Verified User (Anonymous),Mid-Market,2022-06-28,Efficient Enterprise Password Solution,Our organization has used LastPass for a few years now and it's very useful for quickly and easily sharing and securing hundreds of passwords amongst our teams. I'm particularly favorable to the user group feature as it makes management over new hire onboarding and ongoing access updating much easier than we've done in the past.,"I don't like that it requires a support/sales conversation to reduce the number of licenses for your enterprise but not to increase them, it's a little anti-user and comes off as an intentional mini-hurdle to retain a higher total revenue per customer because it's easier to just leave the extra few licenses than go through the steps to remove.","LastPass balances the known threat of sharing any credentials with layers of security to make it as safe as possible, doing so in a way that makes it easy enough for users to continue to use the product instead of circumventing it is an impressive achievement.",8.0 +499,lastpass,Omar B,Small-Business,2022-11-22,Makes life easier!,Not having to remember or keep track of passwords,Sometimes access is complicated when logging in,LastPass helps to limit the time needed to log in to sites which gives me more time to do the things that I'm doing,9.0 +500,lastpass,Bruce T,Small-Business,2022-11-15,Lifesaver,I like how it can work as an extension across all my browsers as well as any device I'm using.,I can't find a single thing to dislike about LastPass.,"LastPass simplifies the process of organizing my passwords, as well as secure notes.",10.0 +501,lastpass,Debbie C,Small-Business,2022-11-15,"Easy, safe, and secure","All my passwords in one place, accessible from all devices. Love being able to use Face ID.",A few sites don't play well with lastpass but there's always copy and paste.,Sharing passwords with multiple departments and not losing passwords when someone leaves.,10.0 +502,lastpass,Michael P,Small-Business,2022-11-08,Excellent password software.,"Ease of use and organization of multiple passwords, notes, documents.",There is nothing I dislike. I've used this product for more than 3 years now and it has never let me down.,Managing complicated passwords for multiple websites. Has the ability to recognize several form fields.,10.0 +503,lastpass,Verified User (Anonymous),Small-Business,2022-11-15,LastPass is SO Worth It,"The chrome extension is the best! LastPass has been a life savior for helping me protect my data with encrypted, complex passwords while making them easily accessible by keeping them stored. At a click of a button, it quickly enters all my stored information, and I'm logged into sites.",There isn't anything that I don't like about LastPass.,"Encrypted passwords to keep hackers out of my online accounts. I'm more productive and spend less time typing in long, complicated passwords.",10.0 +504,lastpass,Kellie B,Small-Business,2022-11-15,I love this product. I manage my own passwords and around 40 other client's passwords.,I can create folders for each client and subject and then search easily,I wish the launch always worked. Doesn't always work,I honestly am not sure. I use it every day and love that I have one secure place to go,10.0 +505,lastpass,Maclyn S,Small-Business,2022-11-15,The product works! It works with my desktop and mobile devices.,Perfect not having to remember all my different passwords.,"Occasionally it does not automatically enter my credentials in login windows, thus making me manually enter the information. Seldom an issue.",I do not have to recall all my passwords. Very efficient!,10.0 +506,lastpass,Sean G,Small-Business,2022-05-24,Last Pass - a solution that improves your peace of mind and security on the internet,"The fact I can automatically generate large and secure passwords for my various sites and not have to worry about forgetting them. + +The security review feature is also fantastic. Once you have all of your passwords managed by Last Pass it lets you know what passwords are old, which are shared and makes it simple to update and improve your online security.",Updating passwords can be a little frustrating to get working. This is accentuated when you have multiple logins for various services (I am a software developer),Centralised password management and improved security. Running security audits means you never need to use the same password across sites. The warnings about site compromises are also a great feature.,9.0 +507,lastpass,Shawn Michael S,Small-Business,2022-11-08,Satisfied Customer,I love how LastPass makes saving my password information so easy.,"The pricepoint is a little steep, but I think it's worth it.",I don't have to remember all my passwords anymore. And it helps me keep all of the information safe and secure.,9.0 +508,lastpass,Joshua C,Small-Business,2022-11-15,Hands down the best password management tool,"I've been using LastPass for years now and I have no reason to go anywhere else. Not only does it work perfectly across all my devices, but it suggests complex passwords so I never use the same password twice. I highly recommend Last Pass!",Sometimes it doesn't recognize my different apps and I have to manually search in the app to find the password.,Generating and auto-filling unique complex passwords instead of different varitations of the same passwordvariations,10.0 +509,lastpass,Abraham J,Enterprise,2022-09-06,The product is so easy to use and it keeps getting better. I use the browser and the mobile app!,Having the ability to access passwords from all my devices anywhere is amazing! It also helps me not care if the password is longer and more complex.,"Honestly, the negative I have is the benefit: it is hosted and cloud accessible. That makes it convenient but adds so much to getting people onboard when rolling it out in an enterprise.",Allowing users to utilize better passwords and automating logins from the browser and mobile application.,10.0 +510,lastpass,Verified User (Anonymous),Small-Business,2022-11-16,Piece of mind and quick access to sensitive info,"LastPass has gotten better at auto-filling and integrating with apps over time. I also like being able to store private info like SSNs, notes, etc.",Occasionally I run into a site that just doesn't work well with LastPass - it is usually where three inputs are required instead of the usual two.,"I have quick access to all login information and payment card information, which saves time every time I visit a site or pay for something.",9.0 +511,lastpass,oberto e,Mid-Market,2022-10-13,Very efficient. Simple Installation and usage.,"We have to manage many passwords and users, and Last Pass made our life much more comfortable by making this management and the two steps security much more friendly.","I don't have any features that I dislike. I believe they could be more visually friendly in some cases, especially within browser usage, but likely is more due to browser limitations than Last Pass.","We have to manage many passwords and users, and Last Pass made our life much more comfortable by making this management and the two steps security much more friendly.",9.0 +512,lastpass,David C,Enterprise,2022-11-10,Excellent Tool. Set it and forget it! Or never forget it ever again.,"Great tool, simple to install, makes doing everything online easier, more secure and simple.",Nothing. One of the best tools I've ever used.,No more recalling passwords and credentials. Fast and simple logins in the most secure manner possible.,10.0 +513,lastpass,Verified User (Anonymous),Mid-Market,2022-11-15,Great experience - personal and business,"I've used LastPass both personally and professionally. It is very secure, user friendly, and the support has been great. You can keep things well organized and I love using the app.","An update a while ago made it difficult to use the browser plugin. I did have to restart my personal account and wished there was a better way to recover my passwords, but I'm also glad it was difficult (or impossible) to easily get that information.","Keeping my personal information secure and organized.n Also, it makes logging into apps and websites fast. I appreciate the secure passwords it also generates and the knowledge I've gained from their articles.",10.0 +514,lastpass,Cesar F,Enterprise,2022-11-15,Easy to use,Integration with cell phones and desktop,"nothing for the moment , it is very easy use. Maybe an improvement is how to create passwords in cellphone",Doesn't take care anymore of passwords,9.0 +515,lastpass,Luke G,Small-Business,2022-03-18,"Trusted & Established, but Too Pricey & ","Access across multiple platforms, devices types, and operating systems! Also, LastPass offers an abundant list of other types of secrets that can be stored, in addition to traditional login passwords For example Network SSID's, notes, credit cards, bank accounts, security social numbers, etc.","The cost! Due to its premium price-tag and when placed in comparison to many of the less costly competitors in the password manager market, you'd hope that LastPass would offer more premium features in return... NOPE! With so many other options out there, the value is not as great as it used to be.","LastPass introduced me to password managers a long time ago and it proved to be a valuable tool. The concept of using unique, strong passwords for every account without having to remember them was quite an upgrade from the terrible (and essentially non-existent) account security practices I was using back in those days!",6.0 +516,lastpass,Casey H,Small-Business,2022-11-12,Great product for family,Sharing they passwords without exposing what they are.,Autofilling on the phone is getting slightly worse.,Creating and storing unique usernames and passwords. I don't know a single password other than lastpass.,9.0 +517,lastpass,Verified User (Anonymous),Small-Business,2022-11-15,"Easy to share passwords, access across devices",It's incredibly fast & intuitive to create and save new passwords. Autofill works well across mobile and desktop.,"The transition from free to paid was a little rough - plenty of warning time, but it was an unplanned expense. Thankfully it's once a year!","I don't remember any passwords, and therefore would always use the same few across accounts (not secure!). LastPass eliminated that issue for me.",10.0 +518,lastpass,Jerry N,Small-Business,2022-03-15,One of the oldest and best around,"So far, it's worked with more different sites than any other I've tested. While there are features here and there that another might do better (and I've tried many), none of them do everything LastPass does or as consistently. I also love the ""equivalent domains"" feature that makes it possible to use the same credentials on several sites where they all use the same account (Google and Microsoft come to mind). LastPass doesn't have any truly unique features (that I'm aware of), but their history and execution remain unmatched.","Honestly, my most significant issues with LastPass were rarely with the product itself. (I'm not a fan of LogMeIn as a company for various reasons, but I'll keep this to LastPass.) I've been with LP as a personal-use consumer since long before LMI picked them up. I'd divested myself from LMI's other solutions previously and was not happy that LMI ended up the new owners. My reservations were confirmed as the price for the paid version literally tripled over the next couple of years and, more recently, completely changed how the free and paid versions worked to ""encourage"" more people to pay. (Moving previously-free features behind the paywall to increase inconvenience is a dirty trick, in my opinion.) I was also incredibly frustrated that the best solution on the market wasn't available to IT service providers as a proper managed solution. Many competitors had popped up specifically to cater to that market, none of which could do the job as well despite being reportedly ""purpose-made"" for that industry. (I'm grateful they FINALLY came around on this point. Still annoyed it took them so long.)","As an IT professional, I have more accounts and login credentials than the average person, which is already substantially more than most realize. The ability to create a new account in seconds instead of minutes might not sound like much, but it adds up quickly. Throw in secondary authentication, and the conversation of security vs convenience starts heating up. As of now, there are several options for more securely logging into various sites, yet there's no universal standard. Until there is one, configuring LastPass with a STRONG master password and a mobile authenticator app will allow you to implement 2FA/MFA across all other sites that offer it using LastPass itself. Many cyber security professionals debate the wisdom of this method, but if your LP account isn't properly secured, you already have bigger problems.",10.0 +519,lastpass,Verified User (Anonymous),Enterprise,2022-11-15,Cannot live without it!,Cannot live without it in this age of required unique and hard-to-remember passwords for dozens of sites! I appreciate the password monitoring features and the reminders to improve repeated passwords as well. Makes me so much more secure!,"Recently began suggesting form fields that do not need suggestions (and I do not know how to turn off), but the overall pros far outweigh the minor inconvenience.",Cannot live without it in this age of required unique and hard-to-remember passwords for dozens of sites! I appreciate the password monitoring features and the reminders to improve repeated passwords as well. Makes me so much more secure!,10.0 +520,lastpass,jay M,Small-Business,2022-11-15,Best password management system out there.,"Best way to secure your online life, accounts, and systems.",Sometimes not all websites auto fill. But that is just a inconvenience.,"Password hygiene, complexity, and security through encryption.",9.0 +521,lastpass,Pavel P,Small-Business,2022-11-08,Long time satisfied user,"Easy to setup and use on all my devices (iPhone, iPad, MacBook, Safari)","Sometimes logs out, but it's for security reasons so I get it",Generating unbeatable passwords and auto filing them,9.0 +522,lastpass,Verified User (Anonymous),Mid-Market,2022-11-16,LastPass eliminates the need for creating your own password and the need to remember them!,"I LOVE that I no longer have to write down and store my passwords. I LOVE that I can install the application on multiple devices, which always allows me access to important websites.","On occasion, LastPass does not automatically launch the website with the user name and password pre-populated.",LastPass prevents password vulnerability and eliminates a user from using the same password for multiple websites.,10.0 +523,lastpass,Tobi A,Small-Business,2022-09-13,"Safe, Simple & Swift!","I have a terrible memory (mainly due to my dyslexia). It has been so helpful to have complex passwords i can use without having to remember them,",if my phone updates i have to remember the master password which is ultra complex,"high security, speed and ways contractors and freelancers can get access to accounts in a safe way.",10.0 +524,lastpass,Tess S,Small-Business,2022-08-09,Easy to use and share with organization.,Easy to use and versatile for the whole organization. Love the features where you can store other secure information like notes and credit card info. This is great for quick payments and sensitive information.,Easier to add/remove people from within your organization than from outside the organization. This is a very minor downfall.,Password sharing and updating: great for storing/sharing passwords that need to be updated on a regular basis - all while keeping it secure!,10.0 +525,lastpass,Verified User (Anonymous),Small-Business,2016-10-26,LastPass improves my productivity with a peace of mind.,I love how easily the product is to add new sites. The ability to sync the account with my tablet and phone allows me to easily access secure accounts with out the loss of time trying to remember different username and password combinations.,"The experience across different browsers could be improved. If you are using this application on Chrome vs Firefox the user experience is different. Firefox is a lot easier to add new sites to your LastPass than Chrome,",My time is valuable. Using LastPass has cut down on the amount of time it takes me to log into various accounts leaving me with extra time to commit to work that matters. I also love the feeling of security LastPass insures.,10.0 +526,lastpass,Verified User (Anonymous),Small-Business,2017-05-05,Finally solution to remember your passwords,"i can use it on my desktop, on my chromebook and on my android smartphone with 2-factor security login.","sometimes with multiple subdomain & different login it dont fill the right one, and is necessary to select manually",With lastpass i can stock all my personal & work passwords in one place with many benefit,10.0 +527,lastpass,Verified User (Anonymous),Small-Business,2017-01-18,Don't Know How I Ever Survived Without It,"LastPass integrates with both your desktop and phone very easily so remembering new passwords, making changes or even deleting passwords is automated and as simple as a button press. No need to even enter the application, LastPass always pops up right when needed.","The mobile version is a bit more cumbersome than I would like. There should be an option to set all your data, including your master password, one time so you don't even need to do it during a commute.",Using a PW management tool makes everyone more efficient and keeps key IT staff busy with critical projects and not resetting passwords all the time.,10.0 +528,lastpass,Verified User (Anonymous),Enterprise,2017-06-06,Simple Password Software,"Easy to use, includes a google chorme button.",Not sure how secure it is - has been hacked before,Remembering passwords for may websites,7.0 +529,lastpass,Verified User (Anonymous),Mid-Market,2017-07-05,Password Security ,Not having to remember my passwords. Seeing the 3 little dots means I don't have to try to guess.,"It doesnt always save all the passwords, I think they are saved but they arent. ",Password security.,10.0 +530,lastpass,Verified User (Anonymous),Small-Business,2017-05-22,Useful tool to keep in safe your passwords,Useful tool to keep in safe your passwords for everyday use. Multiplatform and with language list.,Not exactly correct recognition of fields,Managing of passwords,8.0 +531,lastpass,Becky L,Mid-Market,2016-11-28,It's great!,It makes it really easy to keep all my password secure.,I can't think of anything. It is perfect for what I need it for!,"It's been extremely easy for my coworkers and I to share accounts on there. I work in an international social media team where some of the passwords are proprietary. LastPass makes it easy for us to ""share"" accounts without having to tell each other the exact passwords.",10.0 +532,lastpass,Janna G,Small-Business,2016-06-22,Still trying to figure it out.,"As an agency we have to secure all our clients passwords and logins information - plus we have to be able to securely share access with our team members, without revealing the actual password. This has been great for that. We can create client directories / folders and share all or some of the sites.","Ok - here is the real deal - I still, after several years - have to have somebody on my team help with setting up the folders (vaults). Getting help through customer service has deemed itself to be an impossible task. ","Ensuring that our client's information is secure is number one. Second is making it easy for our entire team to quickly and efficiently make changes and updates to websites, social sites and even our own CRM systems and tools. LastPass is a sigh of relief.",9.0 +533,lastpass,Cory H,Mid-Market,2017-01-19,Security at it's Best,"LastPass is an amazing tool to create and manage strong, secure passwords for all your profiles, both personal and professional. Easy to use and very intuitive.",Nothing. I find it so easy to use I can't really find anything bad to say about this service!,"In my workplace, I enter up to thirty unique servers a day, all with different login information. LastPass makes it easy to manage and filter through these and makes my head spin a little less.",10.0 +534,lastpass,Justin G,Small-Business,2017-01-13,Excellent for Generating and Securing Strong Passwords,Complex Password Generation and it supports storing multiple login profiles for the same websites. ,Frequently asks you if you want to save this website when you submit or make changes on forms that may not be relevant to login sometimes.,Secure Password Generation and Storage ,10.0 +535,lastpass,Steven A,Mid-Market,2016-06-14,System Admin's best friend,"I like that LastPass has plug-ins that simply works. At the end of the day, for someone like myself who has multiple sign-ons for each platform, LastPass makes it simple to administer the system as the user you intended to login as. ","Some webpages are designed a bit more clunky than others or with more frames, credential dialog box then lastpass likes to handle. In these instances the user needs to go through extra steps in the plugin for 'Copy UserName/Password' because the Autofill doesn't work very well. I also have issues with using the platform on mobile. Albeit I have not tried a whole lot it appears to me that when I have I am required to use a propretary web browser for mobile aka LastPass Browser. I which there was functionality with google core apis to simply work in google chrome mobile.","As a system admin I am required to sign in as an admin, front end user, and back end user to many different business systems. Not to mention, some of these systems I also have personal relationships with. All together, it is a lot of passwords. Each with different parameters. Last Pass makes it simple as a system admin to simple, forget passwords and leave it to LastPass",10.0 +536,lastpass,Robert C,Enterprise,2016-06-07,LastPass is smarter than you when it comes to securing passwords,LastPass is relatively inexpensive even if using the premium features of sharing and having data available via mobile devices. The Security Challenge tool is a nice way of reminding you to change old PWs and look for duplicates. The password generator includes options to include/exclude characters and the copy/paste username/password functions. It took a while to convert my passwords into LastPass as I chose to do it in one sitting (deleting saved PWs from Chrome) but you could do it gradually through LastPass's offer to remember to save password function.,"There are several instances where updating a password does not ""save"" in the app. There are on-screen indicators that prompt you to make changes or confirm changes but doesn't seem to ""take"" 100% of the time. The workaround is to go into the vault and grab the password it should be and manually change the PW from the website.","Password and PII security. In addition to passwords, I've included banking information and form fill information. I'm also using secure notes to keep other records.",8.0 +537,lastpass,Melissa S,Mid-Market,2017-01-06,Love LastPAss,That I am used to spending so much time resetting passwards,Some time it does not automatically update my passwords or ask if I want it to remember them I wish it worked more like google so wherever I browse on any device it pops up maybe it does and I just know how to make that feature work?,Just being able to track what all I sign up for and what my password is ,10.0 +538,lastpass,Alex F,Small-Business,2016-08-10,Great password manager,"Web Browser integrations are great! +Local desktop applications, mobile apps, and 2FA all bring great value to Lastpass. ",The management UI for some of the admin console stuff is clunky and not intuitive. I guess that's what you get when you have such an amazing product for just a couple of bucks per user/month. ,"Sharing vendor passwords with remote workers, and setting complexity requirements for passwords in our organization. ",10.0 +539,lastpass,Brian M,Small-Business,2016-08-04,LastPass dependent,"I no longer significantly care when I have to create yet another login and password. LastPass does the job of managing passwords very well. +I like the secure notes for a variety of secret info (lock combinations, etc). +The Form Fill works great for online shopping. +Sharing passwords between users is great (you can share and keep the password secret, or you can share a site and show the password). +I have found on my phone that you can actually browse to the vault and look up a password when you need it, but not as smooth as auto login with the add-on loaded on a computer. +The LastPass icon and dropdown in the password field is clever. ","- Sometimes it does not notice when a new login is created - and I must manually say Add Site, and then make sure the username and password are stored. -For some sites auto login does not work. Sometimes even right click and select the site and nothing appears. - The appearance of the vault has changed in some browsers, and the text has gotten too big, I prefer a smaller detail view like the older look. - On a desktop without the add-on loaded it is manageable, but not as pleasant. This also happens if you login to some software (e.g. Autodesk) that is cloud based but, of course, it has no LassPass connector. ","I store business and personal passwords on it. I'm using it to store company info in a secure environment. would like to see password managers become the norm, and influence site and software design. ",10.0 +540,lastpass,Verified User (Anonymous),Small-Business,2016-08-02,"Works well, feels secure, considering paying for premium","When every website has different password requirements, it's obviously a pain to remember which password you've used where. Not to mention that it is bad to reuse passwords. Last pass very helpfully keeps a bank of my passwords, which in most cases are inserted with just one click using the chrome plugin.","Sometimes stumbles on certain websites, given the layout of their username/password prompts. I am currently limited to just one device, but understand that cross-platform support is a key draw for their paid plan, so I guess I'm getting what I pay for. Interface can feel a little clunky, but not the worst.","It saves me time and energy. Were I to pay for the premium version, it would increase business security, enabling me to generate unique/changing passwords for all sites.",8.0 +541,lastpass,Jon A,Mid-Market,2016-04-26,The Last way to store passwords that anyone needs.,LastPass combines two key needs for anyone: secure storage of passwords and the ability to create unique and robust passwords for each website. Two factor authentication and the ability to see what passwords have been used recently are key. If you subscribe to the Enterprise level of LastPass a team can create and share multiple passwords along with restricting which passwords team members have access to use. As an admin for the Enterprise subscription level you can also perform a password audit and force password rules about length and complexity among the users.,"At times the plugins for different web browsers can act buggy, from loading no login and password data to not being able select different account data for the same website. There are also some websites that it just doesn't work with. I have also found how LastPass handles multiple login accounts for the same website a little strange. It tends to remember which account login you used last, but sometimes it just plain forgets. The frequency and flow of when it logs you out or lets you stay logged in is not consistent.",We realized that the passwords we were using weren't robust enough to have good protection and that often we were using the same password across multiple. Both of those issues could have created some major security issues. The biggest benefit of LastPass for us has been the ability to keep all of our team members working and be able to change passwords without having to email everyone when we updated one of them.,10.0 +542,lastpass,Seema Y,Enterprise,2016-04-25,Lastpass Review for Password Management,"LastPass provides convenient cross-browser and cross-platform support. It provides an efficient way for me to easily store username and passwords. It automatically remembers and saves the list of websites which need login details so that it can automatically log me in on my next visit to the same website. +It auto-fills web forms using my personal data profiles that I define in my account which helps me in filling online forms with just a single click.","You can only contact the customer service through email. There is no other alternative to it. Also, it doesn't provide a good UI design for the Android users.","LastPass provides high security options at the global level. It provides me the options to limit the duration of time for my active sessions till which I can be active on its server. After that it automatically disconnects me from the server. I can also extend the session length at the same moment as well. +It has a very nice feature for multi-factor authentication. It has got an email with a one-time-password code which I have to type into my online account after entering my master password.",7.0 +543,lastpass,Melody M,Small-Business,2016-06-20,A Great Way To Store Confidential Information!,I like that LastPass gives you the ability to file and organize important information based on categories. It's easy to create security for all of your information and only allow access to certain employees.,I don't like that the LastPass inputs pop-up for every form that I fill out. It would be nice to control which forms to turn it on and off for or for the app to automatically detect variations.,LastPass allows for the employees in our company to access confidential information without the risk of a security breach.,10.0 +544,lastpass,Tom S,Small-Business,2016-04-22,"Competent, but overall disappointing","I initially signed up for LastPass purely because I got 6 months of it for free and an additional 12 months for free due to being in education. LastPass is a competent piece of software, and it's greatest strength is that it runs across many platforms, including Windows, Linux, Mac and mobile platforms like iOS and Android.","The design of LastPass is very disappointing. I found it difficult to configure due to how many options it offers, many of which should be default to improve the security of the product. This means users are unlikely to configure it to increase it's security themselves.","This product makes both mine and my client's data more secure. I am able to use different passwords and logins across each site I sign up for, meaning if data for one is stolen, it cannot be reused elsewhere. Since my customers sometimes send me their passwords for their sites and their accounts on other sites I have to use, I have an obligation to keep their data secure, and LastPass makes it easier for me to do this.",4.0 +545,lastpass,Meagen V,Mid-Market,2016-04-20,Excellent Password Manager,"I love how LastPass makes it easy for me to automate and keep track of my passwords. I love that most of the best features of Lastpass are available for free and when money is tight I can dial back my service level without losing the core features of the software. I don't imagine it will stay that way forever, but I can hope. I also enjoy the password generator and how easy it is to make up passwords and save them.","I dislike that I have to use easy passwords for the programs I keep on my phone because finances have been tight and I can't pay for the mobile option yet. I get that they need to make money though, so it's only a minor quibble. Otherwise, the product is fabulous.",I'm solving my ability to manage passwords and keep track of the many sites I log into on a regular basis.,10.0 +546,lastpass,Michael S,Small-Business,2016-04-21,One of the best password managers available,Ever since LastPass added the ability to fill passwords in apps on Android it went from a great tool to invaluable. I've been a LastPass premium subscriber for 3 years now and it's worth the price of admission.,"It can be a little wonky occasionally and doesn't always grab the correct username (sometimes will grab first name, for example) but not enough to consider not using it.","I manage tons of websites, both personally and for clients, and with LastPass I'm able to store them all securely and only have to remember one password.",10.0 +547,lastpass,Eric H,Mid-Market,2016-04-12,LastPass is a must have for me and remembers stuff so I don't have to,"The cross platform integration is great. I can use it on Windows, OSX, Linux, my mobile device, or even just a web interface. Anyplace that I would need to have access to a password, I can have access to LastPass. It's good at disciplining me into not using duplicate passwords or even having to come up with passwords on my own. I like that you can group things together under sections, which makes dividing work and play an easy task. I also like the auditing tool which is very cool and lets me correct the sites where I used a duplicate password.","I'm really trying to come up with something, honest. Okay, I guess I would like the ability to add additional ""triggers"" to it-- for example, on my bank site, you have to log in with a username, then enter a PIN, then potentially answer a security question. It would be nice to store a set of questions with triggered answers so it all happens automagically-- but that's not really the fault of the software, but I guess a desire for a future implementation. There's really nothing that it does right now that is irritating.","Security and satiating my laziness. I don't want to remember a million different passwords, and I don't want to use one password for everything. Now I only need to remember one, and it unlocks the gates for all the web sites I visit. ",10.0 +548,lastpass,Andrew M,Mid-Market,2016-04-12,"Seamless for web, Annoying for mobile","On a full web experience (PC, Mac or Chromebook), LastPass's auto completion of user names and passwords makes logging in to the myriad of online services I use a breeze (most of the time...). It takes the guess work out of 'which combination of letters and numbers did I enter for a password this time). With 2 factor authentication, I'm comfortable that my passwords are safe from prying eyes. ","The grouping feature is a little outdated. I would rather have tags for my entries instead of just being able to assign them to a single group. For example, being able to tag something as email, work, and gmail all at the same time would be really nice. +Also, if you have multiple logins for the same root domain, like if you are a web developer, LastPass can get unwieldy as it will show you every option for the root domain you were on. For example, I have my base website, and I subdomains to do different web development projects, and so all my passwords show up for every subdomain -- a little frustrating. ","Keeping track of the hundreds of passwords, user names, emails and services that I use in my job. It saves me time from tracking down, resetting passwords and helps me be more secure by generating tough passwords. All in all, those few minutes throughout help me save money by freeing up more time to do billable work. ",10.0 +549,lastpass,Bryce M,Small-Business,2016-04-11,LastPass is great for working with a lot of clients.,I love that I can safely share usernames and passwords for clients and easily access them. I used to email usernames and passwords with clients and that is a scary practice.,"I really don't think the autologin feature works all that well. I usually have to just reveal the password and copy and paste it into a new window. Not a big deal, but could be fixed.","I run an agency and we often use usernames and passwords of our clients for their websites, analytics, or other business functions. I love being able to easily recall their information without searching through email, saving it in a google doc, or asking them for their information again. It is also very easy to share information with other members of my team.",9.0 +550,lastpass,Matteo M,Enterprise,2016-04-01,A good and secure password manager,"The best features of LastPass in my opinion are: +- secure aes-256 bit encryption (also used by u.s. government); +- folder organization of passwords; +- totally web-based with cross-browser compatibility (via extensions) and mobile application (all platforms);","Mobile application is paid, I would like it for free. A short trial version is available.","It's an optimal solution to remember also password you don't use frequently. With one password you can: +- save your time without typing long password for important accounts; +- automatically create passwords for one-time login web applications;",10.0 +551,lastpass,Peter K,Mid-Market,2016-06-15,Great Password managing tool,The ability to sort and organize ALL passwords and generate random ones.,The persistent drop down for saving new passwords.,"Sharing login info for service accounts, promoting good IT security habits.",9.0 +552,lastpass,Verified User (Anonymous),Mid-Market,2016-04-08,THE BEST PASSWORD SYSTEM OUT THERE FOR THE PRICE!,The best feature of the paid version is that it will sync across multiple devices. This allows me to be able to use it at work and home! The security level of this program is outstanding. I use the free version on my families computers and it works great. There is no worry at all about their passwords being stolen. ,"The only dislike is really not that bad. As with any free program, there are ads in the program. This is how they make their money. However, if you do pay for the service it does remove the ads. The only real difference besides not seeing the ads is that it gives you more room on the display so that you can see more programs.","The biggest benefit to a company is the security of this program. If you needed to give access to your coworker you can give it to them through this program and they will never see what your password is. In addition, should someone be let go you can access their account by setting this up when you get started. There are so many great features that makes it totally worth the small price!",10.0 +553,lastpass,David M,Mid-Market,2016-04-01,Useful tool,"i like how intuitive and easy it is to use the software, and that it has a chrome plugin that responds quickly and well.",i wish there was a free version of the accompanying app that i could use on my mobile platform as well. i wish there was a reminder to update passwords on a scheduled basis.,used for personal and professional passwords and username storage.,8.0 +554,lastpass,Verified User (Anonymous),Enterprise,2016-01-13,Changes my life at home and at work by having ultra-secure unique passwords on every site,The ability to track 100s of passwords securely and easily with the ability to also securely share those passwords with other users. Truly perfect security as I don't even have to know the passwords I will be using. I have also started to use this at home for all my personal passwords after experiencing how amazing it is for use at work.,"Honestly the only thing I dislike is needing to pay for premium to use last pass on my phone and devices other than on the computer. This isnt a huge cost, but it would be nicer if it were completely free!",The ability to track passwords for 100s of client sites and pages without keeping them written down in an insecure manner. I'm also able to share them to my fellow admins if they need to access the servers as well. Customers are made more comfortable by the fact that we only store their passwords with top notch security that has a perfect track record.,10.0 +555,lastpass,Emrah A,Small-Business,2016-01-08,Easy To Use But Suspicious Password Service,LastPass is very useful password service which has got browser add-on and mobile support. It is very Practical. For example it is compatible mobile operating systems and it remembers yours passwords for you. You can not leave easy when you get used to. You must sign up al lot of web site so you have a lot of password in time. LastPass is remembering and organizing that. You have got master password and it can unlock your another passwords. You can try trial version. Trial version is about 15 days.,"I'am a bit of dubious about LastPass. Recent months there was a hacking attack to LastPass servers and they sent an e-mail some user for change passwords. So you can use it only forum and ordinary services. I don't recommend LastPass for banking, paypal or other critical services.",Password generation services is ideal for business using.,3.0 +556,lastpass,Lauren W,Enterprise,2016-04-08,Pretty great - not always perfect,I love that LastPass remembers all of my passwords and can even suggest and store complicated passwords for me.,"Sometimes it doesn't start when I start my computer. Sometimes it doesn't auto-fill. Then there is the annoying ""show vault"" checkbox that somehow gets checked when I don't check it. That annoys me because I never want to see my vault.","It helps me ""remember"" all of my passwords! We are supposed to have unique passwords for each personal and work related website. Who can keep up?!",8.0 +557,lastpass,David W,Mid-Market,2016-04-08,Can't Live Without It.,"I honestly don't know how I would function without LastPass. It's become integrated into my daily routine, and I trust it to manage my information securely while providing seamless access to my myriad online accounts.","I have found it difficult to manage passwords on sites where I have multiple accounts (Salesforce, for example).",I'm using LastPass to provide seamless access to my online accounts without compromising security.,10.0 +558,lastpass,Verified User (Anonymous),Small-Business,2016-04-11,"Very comprehensive solution, but not the easiest to use","Its very comprehensive, it covers all aspects of password management, great security features to manage teams large or small. I like the web extension for Chrome also. ","Its User Interface is not that easy to master, I have found other competitors solutions much easier to use, we have been using Lastpass for around 6 months and it has undergone several UI upgrades none of which have made it easier to use. ","Password management for multiple cloud servers, great that they are all in Lastpass but navigation of it seems tough. ",4.0 +559,lastpass,Verified User (Anonymous),Small-Business,2016-04-01,Wasn't for me,I liked the chrome extension and how it attempted to recognize sign up fields on my browser and prompt me to use it.,The problem with the auto fill feature was that it was buggy and often times didn't work for me. Also wasn't great for a company like mine where we are sharing passwords.,We wanted our team to have easy access to everyone's passwords and to be able to securely remove former employees. ,7.0 +560,lastpass,Karl D,Enterprise,2016-06-02,Now I don't have to remember 160 passwords. And they are all secure. ,"The fact that my accounts are more secure than ever, and that I get notified of any security issues related to those accounts. ",Nothing really here. I don't like that it can't always fill in passwords for certain types of logins on android. But that's more to do with how those were developed. ,Making my accounts secure and allowing easy administration of my passwords. ,10.0 +561,lastpass,Verified User (Anonymous),Enterprise,2016-01-13,Great Password manager,"Easy to use and work on almost all websites. +It can easily used on different browsers and different machines. +Auto-fill feature is great +","The mobile apps are not free. +Difficulties with setup and configuration when attempting to support more than one platform or browser, or if users want to add two-factor authentication. +Uses email address as your user name",Easy to store password for multiple websites and can be easily shared on different browsers and devices.,10.0 +562,lastpass,Verified User (Anonymous),Enterprise,2015-12-28,Password manager that saves you from remembering passwords and using same ones for multiple accounts,"Works on almost all websites I use +Generator lets you create new strong passwords based on requirement +Supports two factor authentication, like with Google Authenticator +Option to export your data when you wish. +Detects password changes and weak passwords +Prompts if passwords are re-used elsewhere +Allows you to save Secure notes too","No free/basic version for mobile +Prompts to save passwords everytime you fill a form, takes time to list sites for which it shouldn't prompt +Recent security break hurt the trust factor","Remembering passwords is a pain due to a large number of sites people use, this leads to three problems: +1. Use of weak, easy to remember passwords +2. Re-use of same or similar passwords elsewhere, which are easy to guess +3. Frequent password recovery due to forgotten passwords or wrong entries + +LastPass addresses all these issues from your browser. ",7.0 +563,lastpass,Anthony N,Small-Business,2016-04-09,A must-have for password management,"I like this tool for the features below: +Ability to generate strong passwords +Ability to use on all devices",It does not allow access levels and it might not be good for business. The problem with all password management tools is that passwords are stored in the browser.,I like it for personal use rather than solving business problems.,7.0 +564,lastpass,Glory P,Mid-Market,2016-04-10,Best personal information protector!!,The random password generator feature in this app is just amazing that makes us free to choose password at various situations..,There is nothing as such that can be disliked about LastPass,"When dealing with various passworda for various servers and instances, this app has provided us the best way to share the passwords with my colleagues so we can work from any place anytime as and when password is required.",9.0 +565,lastpass,Steven H,Small-Business,2016-04-08,Can't live without it!,"Lastpass saves all my passwords, emails, usernames, notes, etc. It easily registers login fields and the Duo Security integration is spot on!","Sometimes when I try to select one username, it selects another. This doesn't happen often, but I notice it happening before. The overall UI used to be ugly, but they've made it much better lately!",Lastpass solves my need to remember all of the emails and usernames for all of my websites.,10.0 +566,lastpass,Verified User (Anonymous),Enterprise,2016-08-02,"Good, safe password manager.",I like that LastPass remembers all my passwords without me having to write them down anywhere,"I don't like how sometimes I forget to update my passwords. Or, when a friend uses my computer and saves their passwords. Maybe a Guest Mode would help?",I'm solving my memory skills!,7.0 +567,lastpass,Verified User (Anonymous),Enterprise,2016-04-08,LastPass is a lifesaver,I love that the feature is automatic across all password sites. I rarely have to remember I have it and it's there when I need it.,Sometimes I click on the little 'LastPass' icon in a password field accidentally. I like that it's accessibly but I wish the placement wasn't so awkward.,"Too many passwords, so many I actually have no idea how many I have. I love being able to see the sites I've activated and stored through the lastpass settings. ",10.0 +568,lastpass,Verified User (Anonymous),Mid-Market,2016-04-02,"Great functionality, but lacks some finesse","Simple setup, and fills a genuine need for secure password management. The enterprise admin features are useful, allowing for granular permissions and for sharing between users","UI is ugly and not intuitive to use, occasional downtime, general weirdness with browser extensions (e.g. sometimes you have to log in twice, sometimes auto-logoff doesn't work)",Secure password management and sharing,8.0 +569,lastpass,Verified User (Anonymous),Small-Business,2016-01-13,a mobile lifesaver,"While there are many password managers out there, LastPass has been my go to for several years primarily because of it's mobile integration with Android. I keep only complex passwords and typing them on a touchscreen keyboard was a nightmare. Having LastPass fill them in automatically is a true lifesaver.",I don't like that it asks you to save your newly generated password before you submit it to the requesting website. Sometimes it generates one that is unacceptable due to special characters so really you shouldn't save the password until you know it was accepted.,This ensures that all of our IT products have different administrative passwords.,10.0 +570,lastpass,Julie K,Enterprise,2015-12-21,Great solution for security and sharing passwords,"I can choose a login from a dropdown, and it loads up the password without me having to know it at all (and without the other consultants knowing it).",No check in/check out system to keep us from logging in at the same time and kicking each other out.,"We had terrible passwords and bad practices for sharing those passwords. When employees leave, we need to change the passwords. LastPass keeps us from having to look up a client's password to go in and support the client account and keeps us from having to change the passwords when consultants leave the team because they never know the password to start with. ",10.0 +571,lastpass,Verified User (Anonymous),Enterprise,2016-05-10,sync passwords across all devices,multifactor authentication ensures that your information is secure. you get a security report every so often which allows you to address at risk items.,"password generator has default settings, makes it a nuisance to deal with and less secure.",multifactor authentication makes business information and data more secure.,7.0 +572,lastpass,Verified User (Anonymous),Small-Business,2016-04-08,Great experience and interface,I like that LastPass automatically prompts me to add new passwords when signing into new programs. I enjoy the chrome extension that auto-populates my info. ,"I wish that the suggested password saving was already available in mobile devices. An iPad is my primary home computer, so many new personal passwords are not added to LastPass.","I have solved the problem of many sites sharing the same, simple password. LastPass has improved my security. ",10.0 +573,lastpass,Verified User (Anonymous),Mid-Market,2016-04-10,Robust password manager,The fact that you can sync all your passwords across all of the different browsers and devices is a plus for me. I also like the feature enabling you to share passwords to other lastpass users.,"Unfortunately the multi-device feature is for premium users, so you have to pay for it..","I work as QA in software development and we need to test the same things on different browsers. Lastpass makes it easy to store, use and update passwords across all browsers which is a significant time saver for me.",8.0 +574,lastpass,Verified User (Anonymous),Mid-Market,2016-07-05,The Essential App,"I'd die without LastPass. It's easy, it works everywhere, and gives me a happier, more secure life.","Sometimes, in the latest version, I cannot click the ""login"" button, but a quick refresh fixes it.",All passwords are managed and shared securely. When team members come and go they can be added to groups and never see the passwords - makes team rights management so easy.,10.0 +575,lastpass,Teresa H,Small-Business,2022-11-15,great password creator,"Having the ability to generate a random and secure password for websites is the best aspect of Last Pass. And then to have access to them whether I am on my phone, my iPad, my laptop, or my desktop makes it even better!",Absolutely nothing! LastPass does everything it promises and I feel very secure in using it to protect my passwords.,"Having secure and randomly generated passwords is such a plus! I would never be able to remember the passwords for all of my websites if they were random letters, numbers, and symbols. But LastPass does it for me!",10.0 +576,lastpass,James J J B,Small-Business,2022-11-15,JJ,One master password and a wonderful system of generating and organizing credentials across as many accounts as you can dream of. There is a comfort when generating a secure password for a new account that your information is safe.,"For optimum security, it takes a lot of time and attention to work through your library of credentials and replace duplicates, change vulnerable passwords, etc.","I can have the extension in my browser and an app on my phone and log in to all locations simultaneously so that remembering credentials is a thing of the past, it's improved my efficiency.",10.0 +577,lastpass,Shelle P,Small-Business,2022-08-02,Strong Passwords are so important and LastPass lets you start for free!,"Easy integration across all of my devices, multiple laptops and phones, tablets. I really appreciate having had full functionality to start for free. I had tried other password managers that I wasn't thrilled with and so it was great being able to really know I loved it before subscribing and expanding into more features. With a business license they also give you a family account which is amazing.","Sites that have passwords within the sites (web hosting, etc.) make it a little complicated at times with LastPass trying to fill things in/save things I don't want filled in/saved. You can always tell it to ignore. Also, having access to multiple client site passwords, you can end up with a rather large dropdown to choose from, but that is more a problem with my work than the software.",Keeping my accounts and the accounts of clients secure. I am no longer using duplicate passwords on any sites. It makes it easy to update passwords quickly and I never have to worry about whether I'm capturing the updated passwords.,10.0 +578,lastpass,Rose S,Small-Business,2022-08-02,Makes life easier for the entire office,"The ability to securely share passwords with other users. Also the auto-password generator is awesome - I never have to worry about coming up with my own passwords anymore, and I can always be assured I have a secure and unique password for each site.","The plugin doesn't work well in Safari. I don't use that, but several other users in the office do, and they constantly have problems with the plugin disappearing from their browser. Also, sometimes if a user changes a shared password, it doesn't update for the users it was shared with, which you'd think would be an important functionality.","We no longer have to remember multiple passwords or use short and non-secure passwords. It makes it so much easier to log into all the apps we use every day, and is very helpful for those who need to share passwords without exposing sensitive data.",9.0 +579,lastpass,Roberto M,Small-Business,2022-11-15,Cross platform means: No more forgotten or overly simplistic passwords!,The thing I love about LastPass is that I can set a password on the go on my phone and then use it on my desktop later. Or vice versa. It's just so convenient.,I don't love that from time to time it won't unlock the vault until you click a link sent to your email. I tripped over that a few times. Not very intuitive.,I dreaded having to remember passwords so I kept using the same one for everything. I hate jotting complex passwords down too. So this helped me fix all of those.,10.0 +580,lastpass,William P,Small-Business,2022-10-31,LastPass is a solution that I relied on as soon as I started using it,"LastPass balances usability, convenince and security in a beautiful way. I am able to safely store and stregnthen my passwords without being bogged down in going to great lengths to retrieve them.",LastPass does not always pull the username from certain fields when adding to the Vault. This is usually the case where the password is entered on a second screen when setting up a new account.,"LastPass allows me to effortlessly create very complex passwords while securley storing them. They are only accessible to me, and I feel way less stressed about being hacked, because all of my passwords are unique.",10.0 +581,lastpass,Scott W,Mid-Market,2022-11-15,Convinient and Secure,"The ability to have all your passwords at the tip of your fingers, whether on mobile or on a browser. LastPass also helps with creating unique and secure passwords for all your platforms, without the hassle of writing them down or remembering them.","Occasionally the integration of the LastPass app on an iPhone can be clunky, which is only a mild annoyance and requires only a few extra clicks.","LastPass helps with creating unique and secure passwords for all your platforms without the hassle, and unsecure method of writing them down or remembering them",10.0 +582,lastpass,Gail P,Small-Business,2022-11-15,Best value for peace of mind,"Excellent encryption and super easy to use. Alerts if there appears to be a pw issue. +I feel my passwords are safely stored where only I can access and use them. Peace of mind and no paper lists of passwords!","Well, I guess you have to pay for it, but I used the free version for years before getting the premium. That worked just fine. I really don't see a downside.","Confidentiality of my passwords and thus my data. + +Saves me time in searching for a password I haven't used in a while.",10.0 +583,lastpass,Verified User (Anonymous),Small-Business,2022-11-07,Well Organized with Creators who Care Service,Obviously the ability to vary my passwords infinitely is the biggest plus. The feature warning you if you've duplicated a PW between two sites is also nice.,"I don't know if this has been fixed, but the experience signing in to apps on iPhones has frustrated me in the past. The software would request my master password but then re-direct me into a different part of the system and ask for it again. My workaround has been to use finger ID, because re-typing the master PW was REALLY annoying.","I don't think passwords are going to be the way we enter secure areas for a very long time, but obviously while this is the case, LastPass solves the problem of being human and running into a brick wall when trying to remember complex passwords.",9.0 +584,lastpass,Jounghoon B,Enterprise,2022-11-15,"Without Lastpass, I can't login anywhere","The best thing is that I only need to remember master password, and then all other login information is in Lastpass, with secure password, even I don't know. :)","Sometimes it doesn't work with iOS very well. but more than 90 % of time it works great. Not sure about Android device because I don't have any of them. Overall, it is great product.","Lastpass lets me have a very secure password. I don't have any problem with security. Never had any issues, and I can be in peace of mind.",10.0 +585,lastpass,George F,Small-Business,2022-11-15,LastPass makes every day office life so much simpler.,"Only having to remember ONE password, and knowing that all my other stuff is secure. Also, finding sites in the ""Vault"" isn't difficult when needed.","Only thing I have a problem with is the the red icon in form inputs fights with the native one sometimes. I wish I could move it or turn one or the other off, or control the z-index or something.","Saves time and gives you added security related to passwords. ONly having to remember one is fantastic, knowing that all your stuff is secure is great.",9.0 +586,lastpass,Shawn S,Small-Business,2022-11-08,I’ve tried them all and LastPass wins.,The ability to securely store and access passwords that are complicated and otherwise impossible for a mortal to remember. Others do this also but LP is simple and cost effective.,"It's not perfect so sometimes LP will not be able to decoder the structure of the web page and fails to trigger. It also cannot ""see"" the login screen for some apps.",LastPass serves my healthcare clients well as they have soooo many platforms to acces in their typical workflows. Before I introduced LP many practices were reusing the same pw for multiple sites.,9.0 +587,lastpass,Erin N,Small-Business,2022-11-16,Worth it for the extra features,"I like the flexibility and bring able to use LastPass across all my Mac devices. The face recognition is helpful and unlike keychain, I am regularly alerted when my passwords are compromised or low security.","Login can be a little frustrating if you forget your app password, but it's not such a big deal that it would keep me from using the service.","Last pass allows quick login to all the sites I use for buying materials, using software, banking, etc. for my business, making me more productive and safe.",9.0 +588,lastpass,James Dean B,Small-Business,2022-11-15,"Safe and secure, but most importantly, easy to use.","Centralized password protection. Accessing my password vault from any device (PC/Mac/Android/iOS/etc.) is incredibly useful. Generating secure passwords and then immediately storing them is fantastic. So many passwords, one place.",On Android there's some hiccups regarding overlays and ability for it to read sites or logins correctly. Newest release fixes a lot of that though. UI/UX is getting better all the time as well.,"Creating and remembering secure passwords is a HUGE pain. One vault storing it all is incredibly helpful, but even more imporant is making sure that it's secure.",10.0 +589,lastpass,Verified User (Anonymous),Small-Business,2022-11-15,LastPass has addressed all of my password concerns.,"Being able to have LastPass in my browser allows me to use it on my phone, home computer, and work computer. I also like being able to turn off autofill when I find myself on a website that hasn't been built correctly, and as a result, the fields need to be manually completed.",There are times when LastPass thinks it needs to create a new password as a result of my typing in an authorization code. There are also times when LastPass autofills the same information into multiple fields.,"As an application manager, I have multiple user names for the same site. LastPass allows me to save and easily retrieve the appropriate user name and password depending on what I need to accomplish.",10.0 +590,lastpass,Verified User (Anonymous),Small-Business,2022-11-08,Great password manager across platforms!,"LastPass has apps and extensions for all platforms (Windows, iOS, OS X, etc.) that you might want to use it on. The seamless design and ease of use are critical. The software behind the system makes moving between devices easy.","The ability to change duplicate passwords is helpful, but not perfect. Many sites don't make it easy for you to upgrade to longer, more complicated passwords. The ability to control password length is great, but other websites need to support longer ones.","LastPass is the next best solution to carrying around a password book. If you have an online presence in the digital world, you know the password situation is out of control. Passwordless options are coming, but they will take a while to roll out.",10.0 +591,lastpass,Jacob M,Small-Business,2022-09-13,Great Password Manager for Businesses,LastPass' interface is really easy to use. It's far and away much better than some of its competitors. Also the security checks it runs against all of your passwords and emails/usernames are incredibly helpful at making sure your accounts are secure.,You really need to be using the paid version to have any benefit. Their free version locks you down to a single device which makes it mostly useless. There are better competitors if you're looking for a free solution.,LastPass helps keep all of the logins across all of our employees secure. It also makes sharing login information across accounts easy and secure since no one has ever to be given a password or username.,10.0 +592,lastpass,Sarah P,Small-Business,2022-07-05,"Great, straightforward, solution for ANY team.","If you deal with other people's information, as my company does, LastPass is a must. We use it to organize sensitive client credentials, which has never failed us. Its level of security offers us flexibility if we have a vendor or team member that needs access but don't want to share the actual password. My team and I couldn't imagine functioning without it.","The only 'struggle' we have is sometimes we have team members file things improperly or not in the proper shared folder. But besides that, any downsides are so trivial.","LastPass solves our problem of being able to keep client information safe, in addition to sharing internal information with specific team members in a granular way.",10.0 +593,lastpass,Travis T,Small-Business,2022-07-12,Everyone should use a Password Manager - Especially one like LastPass,"It works across all of my devices types: phones, tablets, PCs, most browsers. It's responsive with lots of options for 2FA. I use it for business and personal and I especially like the personal linking feature so I can keep my work and personal passwords separate whilst being able to access them through the business account. SSO with AZURE AD and Geo-Blocking sign-ins is also a great business add-on.",Not being able to do sub-folders inside of shared folders means you have to create lots of shared folders for organising passwords which need to be shared with many team members. Also missing a password audit report for who used a shared report.,"Password management: remembeing, creating and using passwords. It handles all of these for you so all you need to do is sign-in with your master password and MFA (everyone should be using MFA too!)",10.0 +594,lastpass,T R O O L S,Small-Business,2022-11-08,Last Pass Saved my bacon Many Times!,"I love that i can access my account from anywhere, anytime. It's secure and quick and I don't have to worry about carrying a ton of passwords and usernames everywhere I go.",Only once in a blue moon does the password keeper not add my info.. it takes a minute or so to load or refresh.,I keep a lot of sensitive information for my company and my clients. Last pass gives me peace of mind and with only one password I can access all I need.,10.0 +595,lastpass,Verified User (Anonymous),Mid-Market,2022-11-15,Secure and Reliable,"I love that any time I access a new site and create a password, LastPass will send me an automatic ""Save Password"" notice. It's easy and fast to use LastPass. I also love that it automatically fills in passwords for me.",I can't say I have come across anything I dislike about LastPass. I haven't had any issues since I started using it several years ago. All I need to do is remember one password (the one for LastPass) and I have all my sites and passwords at my fingertips.,"LastPass is solving my problem of remembering passwords. When I am constantly changing passwords for work sites, it is so helpful to have LastPass update and save each new password.",10.0 +596,lastpass,Prem K,Small-Business,2022-09-12,,"Lastpass is a very secure and trustable software for password management. I avoid the hassle of typing and remembering passwords using LastPass. I can encrypt the password of all my social media accounts, bank accounts, card details etc.","Compared to other software, LastPass is a better option for managing passwords, but I think LastPass is too costly for users as well as its interface is not good. It should improve these things.","I can safely generate unique passwords for my business accounts and encrypt the passwords in the LastPass vault. Using LastPass, I can protect all my business and bank accounts from getting hacked. I can safely share the passwords with a trustable one.",9.0 +597,lastpass,Lee G,Small-Business,2022-11-27,Every password is STRONG and UNIQUE,"It works across all my devices, and it is easy to log in without ever having to remember or type a strong password.","I can't help but worry about security. They claim it's safe, but so did FTX and Luna. Trusting anyone is tough these days.","All my accounts have unique and strong passwords. I don't have to worry about one compromised account leading to others. Combine this with strong MFA, and you are pretty safe.",9.0 +598,lastpass,Erik E,Mid-Market,2022-06-29,LastPass is awesome.,"I use LastPass both corporately and personally. It allows me to securely store and share passwords with my family and co-workers in separate environments and happily generates random secure passwords for me, which prevents me from re-using the same one. Additionally, I appreciate both the ""secure score"" - indicates poor password practices - as well as a heads up if any credentials should be rotated, replaced, or are otherwise recommended to be changed. The ability to access my password vault from my phone, PC's, and web browser makes it convenient to use.","The only REAL downside I can identify is yes; if Lastpass were to be compromised, all of my passwords and information would be sold to the highest bidder. In this case, however I recall LastPass once thought they were compromised, and immediately triggered resets and communicated directly with their user base; They got in front of it, even though it turned out to be a false positive. This behavior has cemented them in my head as an immediate recommendation in this market.","Corporately, LastPass is allowing my colleagues and me to store and share passwords for accounts as needed without having to update a master spreadsheet (which is forgotten about, admit it...). This allows us to make more secure passwords for serivces, and keep them in sync between all of us.",10.0 +599,lastpass,Peter R,Small-Business,2022-11-15,I use LastPass to free up brain power!,"LastPass is a great way to remember all your passwords, organize information, automatically fill in passwords you use often, and free up precious brain space.",LastPass doesn't work to auto-fill passwords when the login id and password occur and separate screens (login > enter > password > enter).,"LastPass solves the problem of creating safe passwords, storing passwords, organizing passwords (and other important info.) and being able to access those passwords efficiently. It's a lifesaver on mobile and on my laptop.",9.0 +600,lastpass,Zachary M,Small-Business,2022-11-15,This made my life so much easier,I love the easy access to all my passwords and knowing that if something happens my information will be accessible by who I choose. The fact that I can randomize all my passwords and not have to remember them or write them down is so amazing.,Sometimes the app popping up and keeps coming up when when you try to close it.,The struggle in the office is that the owner has passwords for all the different accounts and suppliers and we don't want to constantly pull up a password list from the front each time we need a password. With Lastpass we can set it up on each computer and access the passwords we need right away without the headache.,10.0 +601,lastpass,Lisa N,Small-Business,2022-11-15,What a relief!,"Thank goodness for Last Pass. I must admit I was reluctant to set up an account for years but now I am so glad I did it. There were just so many passwords for different things and passwords that had to be updated regularly, I was starting to lose the reason! I love that every password I have now is secure, unguessable and different from the others. The chrome extension is brilliant and it all just works.","I have found it a little tricky to share passwords with my suppliers, such as web developer. I might be doing something wrong, but that didn't always work. Also the Last Pass Authentication app doesn't work for me.","Security, safety, time, hassle.",10.0 +602,lastpass,Reg G,Small-Business,2022-11-15,Love LastPass!,I love the integration across all my devices and the ease of use to add and update user IDs and passwords. I also appreciate the security features that guard my accounts and notify me of duplicate or exposed passwords.,Not much to dislike about Lastpass other than possibly the sharing feature is cumbersome for those who do not have LastPass accounts and have to set one up before seeing the shared information.,"In my position, I have well over 300+ user IDs and passwords to keep track of, and LastPass does this for me very well. It also lets me know when information is found in the darkweb if passwords are stale, too easy, and so much more.",10.0 +603,lastpass,Keith B,Small-Business,2022-11-15,Can't Live without LassPass,We use LassPass constantly for both personal and business accounts. We have one level of use for employees and highly confidential accounts under greater security. We have been using LassPass for years and have been exceptionally pleased with performance.,I forget to refresh LassPass updates and forgetting to do so in advanced settings will give the appearance of a new password being wrong. Trying to login to some sites without refreshing can cause you to get logged out. My fault not LassPass' fault.,We need two levels of secure logging in to sites at work. One for employees and one for owners. LassPass readily solves this problem for us. I am very pleased with this solution.,10.0 +604,lastpass,J A M E S P,Small-Business,2022-09-06,"Easy password management across multiple platforms, including teams.","Lastpass is a great product and easy to use. Lastpass makes it easy to store and access passwords, including password history. With the web browser extensions installed, updating passwords is a breeze for sites that require periodic password changes. The included password generator tool is easy to access and a web browser, and easy to dial in the password strength. The multi-platform compatibility makes it easy to use on a PC, android, and iOS device. Sometimes it is necessary to share passwords and login credentials with colleagues or family members; Lastpass makes this easy with shared folders. Need to keep confidential notes? Lastpass has a solution for that also.",The downside to using LastPass inside of Google Chrome or other browsers is redundant password management. The current workaround is to disable auto-fill features inside of the browsers. It would be nice if lastpass could easily be the default password management software and automatically disable browser-based password management.,There are websites my team needs access to on their personal and work devices. Setting up a shared folder inside the password management console makes this easy.,10.0 +605,lastpass,Bert B,Small-Business,2022-11-16,A very easy and complete product in which passwords but also other relevant information can be saved,"many things : +- in case multiple user accounts for a website, it shows the various possibilities from which you can use +- automatic update in case of password change +- if you want the system can create a password with various options +- It checks regularly if passwords are good enough and not used multiple time and advises +- a lot of additional information can be added to each website/document/card",I have no things that I dislike with this product,"- it remembers the passwords +- It remembers additional information that might be handy when you login at a site +- it makes life much easier, when you have many site to login",9.0 +606,lastpass,Kim L,Small-Business,2022-10-18,I love using LastPass for password management for my team.,"I love using LastPass for password management for my team. We have a relatively low turn over in our business, but when we do I do not have to worry about the security of any of our sites! I know with the click of a button I can completely remove access. I no longer have to change every password. As a business owner, lastpass takes one less worry off my plate! And it is super helpful that I don't have to remember all our passwords!!",Not much to dislike!! It has made managing on boarding and off boarding of employees so much easier!,I do not have to worry about the security of all of the sites that I have shared with employees once they leave our organization.,10.0 +607,lastpass,Brittney M,Small-Business,2022-11-15,Seamless Password Storage,"I love how convenient last pass is. The taskbar app prompts you to save passwords and also prompts you to auto fill using Last Pass saved passwords. The taskbar is my favorite because you can search your password database right there, without needing to open an additional window!","I wouldn't say I dislike anything about last pass, but I would love to see an additional feature for the family groups to be able to see each other's passwords.","Last pass makes it easy for me, as an executive assistant, to compile my and my boss's passwords in one easy place so I can do anything she needs me to with any account with ease.",10.0 +608,lastpass,Nico G,Small-Business,2022-09-07,It simplified why life,"I just need to remember 1 password, lastpass takes care of the rest. +It generates passwords for sites, it detects the site and fills the information. +And also detects when you have entered a password and allows you to store it.","There are some sites with rules that are very specific and with last pass configuration it is not always possible to generate a password for those. +Something that sometimes fail is the auto update password for sites. +Sometimes I want to use a very stupid password for sites where the security is not that important for me, it would be cool if there were a way to tell last pass, do not remind me that these sites have the same password.","It solves having to remember different passwords for different sites, also having to think on a password. +I'm definitely more productive with it and less stressed",10.0 +609,lastpass,Verified User (Anonymous),Small-Business,2022-11-16,"High recommend for teams, soft recommend for individuals","The most important thing: use a password manager. LastPass is a capable option, though there are others. Use randomly-generated passwords, never reuse them, and sync between your devices. Then, you'll only need to know one password...your Last Pass, if you will. + +LastPass Pros: +• Cross-platform compatibility and syncing (browser-based, OS-based, and mobile) +• Shared folders for enterprise/teams allow lots of flexibility (particularly for MSPs or large organizations) +• Built-in password generator with flexible options +• Password history is saved in case you *meant* to change something but got distracted +• Offers one-click password change for some sites (it logs in as you, goes throught he password change process, and generates a new one all at once) +• Vault is saved locally in every context, so you don't need to be connected to the internet to grab credentials +• Authenticator app is secure, attached to your account, and backs up for recovery to new devices (so you're not hosed if you lose or change your phone, and you don't have to rebuild your entire library) +• Authenticator app also lets you rename, manually arrange (though no gorups/folders), and search for entries +• Entries can be saved with TOTP 2-factor keys for simple sharing +• Automatically recognizes credential and PII fields and offers to auto-fill (usually) +• Syncing is quick but there's also the ability to manually sync if you *just* changed something and need it reflected +• Lots of different templates for saving different kinds if information beyond website credentials (PII, credit cards, server/database credentials, etc)","LastPass Cons: +(Note: this is all for current versions as of November 2022; any of these may be fixed by the time you read this) +• Multi-platform use requires paid account (can't fault too much but it's a ding) +• Only one admin can manage Shared Folders (I have to ask the other guy to do it even if I'm the one working with a customer...this may depend on our subscription tier) +• It's counter-intuitive but for Apple ecosystem users, the iOS app is the way to go because of the ability to copy-paste across devices...but LastPass doesn't do a good job of recommending this for users +• Native macOS app (which is also the Safari extension) is borderline unusable because of performance freeze-ups, even on well-speced devices (extension is fine though) +• In iOS app (not sure if this also applies to other mobile platforms), joining a saved SSID is a pain. Only website passwords are searchable with the automatic pop-up, and WiFi credentials are ""Secure Notes"" rather than sites, and you also can't move back and forth between WiFi login and another app. The required workflow is to copy the password, switch to settings, join the SSID, and hope your clipboard hasn't expired by the time it's done loading. This is particularly annoying for hidden networks, as you have to manually type the SSID quickly enough before pasting the password. This may be an iOS quirk more than LastPass, I'm not sure +• If you search the Authenicator app for a 2-factor code, the confirmation pop-up that the code has copied doesn't reposition itself to be above the keyboard you used to perform the search, so you have to hope it copied +• TOTP cannot be used from the mobile app (so you must use the separate Authenticator app even if you have TOTP configured) +• TOTP settings clear when passwords change +• There is no QR reader for TOTP setup, so you have to use a separate app to extract the key (unless the service you're using provides the key for manual entry) +• Doesn't always handle sites that present User ID and Password fields separately +• Mobile app and browser extensions seem to have been designed by separate teams that don't coordinate, as menus are completely different (example: the manual refresh option mentioned in Pros is in Extension> Username> Advanced> Refresh Sites on the desktop browser extension, but Settings> Actions> Refresh Valut on mobile...made more confusing because the app also has ""Advanced"" but it's a completely different set of options) +• Lacks the ability to manually say ""These are separate sites"" so LastPass doesn't suggest credentials for a bunch of subdomains within one site (service1.organization.com, service2.organization.com, etc). The reverse is also lacking, in that you can't assign multiple addresses to a single site credential (local IP, external IP, and DNS address, for example). + +The Pro/Con volume is the same, but IMO the Cons are all nitpicky gripes rather than major issues.","As an MSP that coordinates with on-site admins, it's important to have a shared bank of secure credentials for myriad services and devices. LastPass performs that task admirably.",7.0 +610,lastpass,Ralph C,Small-Business,2022-11-10,The BEST Password and PII Management App Available!,"I have been using LastPass as my password manager and a central location for all my other personal information like bank account numbers, driver's licenses, credit cards, passports, software licenses, and more.",I can't think of any things that I dislike.,"It keeps my passwords, and personal information like passports, driver's license, software license, credit cards, bank accounts, and so much more. I love the ability to update my individual passwords and generate multi-digit passwords on the fly. I also like the one master password with military-grade security to protect my information. I also love using this on my PC, phone, tablet, etc. If I can access the internet, I can get to my account.",10.0 +611,lastpass,Verified User (Anonymous),Small-Business,2022-11-15,LastPass is an important part of our security protocol,LastPass helps our team manage complex passwords and allows me to ensure my team's compliance. I am able to set up reporting to 'gamify' our team's password security score. It really is key to our password security.,"It's not perfect. Some sites struggle with logging people in. Some staff struggle with using it properly - which is a user error issue not an issue on LastPass. Some of my staff get frustrated with LastPass because they seem to be using it improperly. We do training for all new employees that includes LastPass training and annual refreshers, but we still have some challenges at time.",1) I need to ensure complex passwords in a centralized way. This dramatically improves our security. 2) It allows me to share documentation on our password policies and implementation with our clients. 3) If allows me to give my staff a tool to better secure their accounts.,9.0 +612,lastpass,Verified User (Anonymous),Enterprise,2022-11-15,Stop Thinking About Passwords,My favorite feature of lastpass is its integration with biometric authentication on Andriod and iOS. Being able to use my fingerprint to log onto any site is easy. This feature makes the service worth it for that reason alone.,"I dislike the search function in the app. Maybe I do not understand how it works, but sometimes I feel like I cannot find a password I just saved. It can be frustrating when creating a new account online, saving the autogenerated password, then not being able to find it. I think this has something to do with 'creating account page URLs' not being the same as the main sites.",I have literally 100's of sites I need to use. I could never remember a unique password for each one. Last pass allows me to have peace of mind that compromised data from one random website does not risk the security of my other accounts.,10.0 +613,lastpass,Rebecca S,Small-Business,2022-09-08,Great Password Encryption Service,LastPass is helpful to our organization as it keeps all your passwords for our subscription services stored in one place. You dont have to remember 8 different passwords or risk writing them down or keeping them in an unsafe place. The browser extension is straightforward to use. Sharing passwords is very easy and convenient between users in your orginization.,The user interface is not the best; there is some trial and error when creating folders on the web page. It could also be more aesthetically pleasing. But there is really nothing I dislike.,LastPass is solving the problem of password encryption and ensuring that all of our organizations passwords are stored securely and so you dont have to memorize or remember passwords to every single service you use. It is also able to store credit card info and share passwords between users easily.,9.0 +614,lastpass,Gloria O,Small-Business,2022-11-08,LastPass is your Last Password Keeper,I like best that I can access my passwords from anywhere and I can edit the password later. I also like that I can create folders/sections and organize my own as well as shared from clients. I like I can share it across multiple devices. I will also ay that support is A+. (and usually a deal breaker for me if I have to struggle with support or get someone that treats me like a twinkie),"The main problem I have is trying to remember the ""master"" password to do some things with it that require extra authentication. If I am not at my desk to access the password I have written in another spot, I cant get in to my Lastpass. I also find it hard to ""teach"" some of my clients how to use it who are not exactly tech-ish. It is still a bit cumbersome for me. Things dont always work the way I expect them to. KDB is not easy to navigate but if you know how to search, you get it. User interface could be streamlined...I dont use all the tools that I think are available to me on my subscription because I dont know what they all do and I dont have time to figure it out.",I have one place to put all my account logins and feel secure that they are safe. having it available on multiple devices is great .. Its great for sharing access to other accounts w/out comprising their security.,10.0 +615,lastpass,Verified User (Anonymous),Small-Business,2022-11-08,"The highest security for your passwords, with a pretty good interface","LastPass encrypts its password store before it arrives at its servers. Even if the bad guys hack into the LastPass servers, your information is useless to them. The security of your password store depends entirely on you and the strength of the password you choose. If you're a knowledgeable computer user, LassPass is a good choice. +The autofill feature of LastPass works pretty well. I like its ability to launch a new tab and navigate the login page of many pages so that with one click, you're in. +The synchronization between LastPass on a computer browser and LastPass on a phone is very handy and works well. If a password is updated on one platform, it's available everywhere fairly speedily.","The password vault does not support nested categories very well. Searching is very strong, but organizing the vault is not easy and navigating the vault is awkward. +When autofill works, it's a beautiful thing. When it doesn't, LastPass sometimes has trouble getting out of the way. +To use LastPass effectively, you must understand what it's trying to do and how. For that reason, I recommend it mostly to computer-savvy users. Causal computer users are often confused by the many pop-up menus that seem to appear at random. That's not all the fault of LastPass because there are so many styles and implementations of login forms. Still, it is an obstacle.","My passwords and some critical information are at my fingertips, no matter where I am or what device I am using. That information is safe to a degree that is under my control.",8.0 +616,lastpass,Laura M,Small-Business,2022-11-08,I wish I would have known about this product years ago,"I use lastpass everywhere. For all of my work users, my kids, my parents and anyone else who needs passwords. I store their passwords in my last pass so even if they forget their master password, I have it and we are all protected. I love that now my parents and kids and employees can access everything they need without having to have passwords written down everywhere. I feel much more secure having this in place. It is also very convenient for my husband and myself so we both always have the most updated password!","I have not found a downside yet beyond needing to remember the master password, but I feel like I have solved that as well. I love that you can use face ID on your Iphone as well.","There is no more writing down of passwords, or having all the passwords be a version of a pets name or a birthday or address. now all the passwords are random because we do not need to remember them",10.0 +617,lastpass,Paul B,Mid-Market,2022-09-06,Best Password Manager,"Easily create secure random passwords for multiple sites. With a family, team or business plan, you can create shared folders and grant specific users access to the passwords in the folder. Works seamlessly on desktop and mobile devices. Easy to implement and easy to use. Chrome extension makes log-ins easy! Stores passwords, notes and more. Easily share passwords securely to others by sending them a share invite that they then are required to authenticate with LastPass to see.",The free version now only allows mobile or desktop. You are required to be on a paid plan to use both. It can be difficult to help an end-user reset their password on a business plan.,"Helping my family and business use unique secure passwords provides security. Companies and websites are being hacked every day, and with strong uniuqe passwords, your risk is considerably lower.",10.0 +618,lastpass,Verified User (Anonymous),Small-Business,2022-12-13,Simple to use - Available where you need it,"Simple, easy, effective tool - and being able to use as an app or extension makes it truly functional. The interface, app, etc. are very easy to use - I've used ""enterprise"" tools that are way too ""full featured"" which means people aim to never use them! Having a single solution that encourages people to not just protect corporate data but also better address online security in their personal lives, is phenomenal.","In the family version, having to clone existing passwords to shared folders is a pain. Moving them would have been ok, but wasn't an option. (If you're starting from scratch, that's not an issue)","Primarily, creating secure and unique passwords for every site or app that you need. Secondarily, being able to share those to family-members or colleagues, as appropriate.",10.0 +619,lastpass,Doug C,Small-Business,2022-11-15,LastPass-great password management tool,I have so many accounts that I needed a secure password management resource. I have been using LastPass for years and it helps to keep my passwords in one central location.,I can't say there's anything I dislike. I have been using Lastpass for five years and this password manager app has come in very handy. My friends and family would also agree. It's a valuable too to keep one organized.,The Team at Lastpass is constantly developing more efficient methods for the user. I find that the easy navigation in the app saves me time and allows me to find everything I need relatively quickly.,10.0 +620,lastpass,Joshua H,Small-Business,2022-11-16,Great value for a great service,"My partner and I have multiple accounts and memberships that we share but are in only one of our names. Last Pass Families makes it super easy to share login information for these accounts. Also, I like the peace of mind knowing that should something happen to one of us, the other is able to access account information easily. Plus it has made it incredibly easy to create very intricate passwords that are much more secure.",The Android app (on tablets specifically) isn't as reliable and does not consistently prompt to autofill login info on Chrome,Managing passwords; creating very difficult passwords to improve security.,10.0 +621,lastpass,Megan M,Small-Business,2022-11-15,Increased security and peace of mind,I've used LastPass for several years now and it has helped me manage my many passwords and increase the security of those passwords. I have more peace of mind that my accounts are secure.,Nothing! Sometimes it doesn't notice my site login if the site sends it to a different URL but that's understandable. It's not all-knowing and If I'm not lazy I can easily correct the issue.,More secure passwords and I no longer use the same password for every account. No more forgetting my password and having to reset everything or having one account compromised and frantically changing all my other ones.,10.0 +622,lastpass,Trevor G,Small-Business,2022-11-15,Excellent Password Manager,"The most helpful thing about using LastPass is the management of all my passwords. Not only does it help me organize them, I can easily create a new password on the spot.","The least helpful thing about LastPass is services not recognizing it. I have passwords in my LastPass vault, but sometimes have to manually enter my details. It's not very time consuming, but can sometimes get annoying.","The business problem that LastPass is solving is it enables me peace of mind. Securing my accounts, especially work related, is an incredible feeling. A weight is lifted, knowing that LastPass has my back.",10.0 +623,lastpass,Amber Lea P,Small-Business,2022-11-25,Last Pass Saves my @$$,I love that I can use Face ID to login on my phone + passwords I use regularly on my computer are always at my finger tips. I often need to share logins with my assistant and secure sharing makes that easy as well.,Haven't found anything to dislike yet. Even if I forget my master password resetting has been a painless process.,As a business owner I have a lot of logins to keep track of- one location to store them all for a low annual fee is the best money I spend each year.,10.0 +624,lastpass,Nathan M,Small-Business,2022-11-21,Easy way to manage passwords and improve password practices,"Makes it easy to generate good passwords, and identify and fix past bad practices. The availability across many platforms, and integration with browsers and apps, makes passwords easily available when needed.","It is sometimes a bit balky on Android phones, particularly older versions of Android. And there are occasional cases where it is confused by the form and doesn't fill on or swaps username and password fields when filling in.","LastPass helps me maintain good security across many accounts, and makes it easy to access the passwords across the many machines I use. It encourages best practices.",10.0 +625,lastpass,Jakub K,Small-Business,2016-01-19,LastPass - passwords that you need,"this is the most usefull software, that i install at first on my computers... + +it is everything what you need, only one password, that has every anothe password, of course you could save you password to chrome, but lastpass is on mobile app too... and there you need deep integration to android and google OK. but there is apple and windows too... so there we are the LastPass. + +also you can install android/iphone app and, its free (PC, browser)... mobile is about 1,99$ but you get, what you pay ;) + +and on new version > 4 ... this is best update ever, new UX, automatic logo and many many more +","there is a concurent OnePassword, which have UX friendly layout and self-hosting option, but this OnePassword is comercial solution and you need to pay about 49$... + +another bad thing is implemention to the system, on MAC os i miss shortcut on top bar, just cklick and open, but in chrome is fine :)","security, every page, every hosting has another, random password :) easy to use, easy to setup, just install, login and ready to go :) ",10.0 +626,lastpass,Arthur F,Mid-Market,2016-01-18,Bold and modern password manager,"Unlike many other password managers, LastPass invests a lot on design and usability. From the moment that you install the app (Chrome Plugin) you can see that everything is designed to be responsive and modern approach. + +LastPass does not only manage your website login passwords but it also manages Wifi password which is pretty handy. It imports everything from your machine with one click during installation so you can have literally all your passwords in just one place. + +Everything is super intuitive and made to work out of the box. If you forget your password you will get an e-mail with the hint that you registered so that you can still try to remember it before going through the process of creating a new encryption key. + +LastPass also tells when you it knows a password from a website. So you don't need to search on the vault for your password when you want to login to any website, it will auto-fill with one click. + +All the LastPass Apps (including the unfamous windows phone) are amazing. ","Last pass can get pretty messy if you register all your passwords, wifi passwords and documents. Your 'vault' will have loads of entries and a lot of them will fall into the 'none' category which makes it pretty disorganized. LastPass comes with a search tool which helps you find the password that you are looking into. + +Review collected by and hosted on G2.com.Recommendations to others considering the product:Let LastPass import all the password it can find when installing it. Use the mobile apps as they allow you to take your passwords everywhere.",Managing password. LastPass is very modern and solves all your problems without any hassle. ,9.0 +627,lastpass,Edward C,Mid-Market,2016-04-03,The best password management software you need in this increasingly unsecure world!,"There are many pros to LastPass that I don't think I can list them all in this review. First, and foremost, if you do not currently use a password management tool, please do yourself a favor and do look into it. It will save you tons of headaches in the long-run if you start early enough. In today's modern world, there are increasingly more and more need for security -- from the rise of identity theft to securing all our applications with passwords. LastPass is what you need to give yourself a peace of mind. + +One of the main benefits of LastPass is securing and keeping your passwords synchronized between all your devices and the LastPass servers. LastPass uses AES-256 encryption and secure one-way hashing security algorithms (the same ones used by the US Government) for top-secret data storage. There is a very robust free version, a full documentation guide on getting started, and works on all major browsers.","There are not many cons of LastPass - as some sort of encryption of two-factor authentication in between your logins is better than none. However, there have been times (rare, though) where customer service wasn't top-notch. There is a very long delay in responding to any issue tickets that you open with them, and most of the time, you would have to reset your passwords manually if they cannot help you.","Securing passwords across multiple applications and multiple devices. A lot of users today reuse their passwords and do not realize the security hole that they pose upon themselves. This includes reusing passwords for sensitive information such as bank accounts and personal e-mails. With LastPass, you do not need to type in the passwords manually -- this is already an added benefit since your keystrokes cannot be tracked.",10.0 +628,lastpass,Anastasia G,Small-Business,2016-05-15,Excellent until it isn't,"It's decent—it gets the job done (namely, password-saving, password-creating, and password-sharing among a team), but it doesn't do it without putting on a cumbersome fight.","I personally dislike the interface, the cumbersome way in which it integrates via its apps and extensions, and the overall user experience. ","My team regularly needs to share secure passwords among ourselves, as well as to generate secure passwords on the daily—heck, on the hourly. LastPass certainly helps with that.",5.0 +629,lastpass,Darian R,Small-Business,2016-04-01,"Not bad, but could be better","It's easy to get started and start moving your passwords out of your browser and deduplicating your passwords for various sites and services with the added benefit of having your passwords with you. + +It's easier than mistyping your passwords in and forgetting which password goes where as you start to diversify your passwords. + +I found that this is a good first step to getting started in the realm of password security.","Clunky interface that gets confusing and doesn't feel as polished as it should. You are entrusting your digital identity to software so it is vital that the software exude trustworthiness and quality and for me that aspect is a bit lacking. + +I believe users are turned off from competitor products due to their initial price. However, after using LastPass for any length of time, and comparing it to some competitors you will notice that there is little to keep you using LastPass beyond the lower price tier. + +The UI of the plugins, the cumbersome nature of the integration, and just the overall unfinished quality of the experience leaves a bad taste in your mouth.",Secured password management,5.0 +630,lastpass,Andrew C,Mid-Market,2016-04-01,"Great, convient way store paswords in one single secure place","I liked the easy way to add a retrieve passwords, as you entered a webpage, and create complex passwords for anything without having to remember them. The only thing you need to remember is your LastPass Password. + +It is also great to be able to synchronise your passwords on to an iPhone, making it a great way to manage your passwords. +The user interface on the iphone is easy to use and automatically adds the website icons to the password making it easy to find your passwords.","The one thing i did not like about lastpass is the pricing structure, although it isn't expensive, my preference is to pay a one off price rather than a yearly fee.",To conveniantly store and manage work and personal passwords in a single place.,8.0 +631,lastpass,Adam John L,Small-Business,2016-01-14,The Best Password Management Solution I've Found,"I love that LastPass manages my passwords across multiple devices and browsers. To me this the killer feature of the software. Once its integrated and setup, so easy to use! A close second is the secure password generator. Now there really is no excuse not have secure passwords for all of your online accounts.","At times the reminders that it displays get annoying. I realize that the reminders are there for my security, but once I dismiss something I should be given the option to never see it again. This is a small gripe and for the majority of users a very good thing. It is just a small annoyance for me.","I am web developer so I spend 16 hours a day online and have many. many online accounts. I no longer have to worry about managing my passwords, creating secure passwords, etc., LastPass does it all and does it well. Now that LastPass is integrated into my workflow I can worry less about making sure my accounts are secure and more about getting work done!",10.0 +632,lastpass,Melissa T,Small-Business,2016-01-14,secure and worried free,"I think it's really important to have secure, complicated passwords. It is especially important at my job. I really like LastPass because it manages all my passwords without me having to remember a million different combinations. I enjoy how seamlessly it fits into other services, I get into my email, my notes, and various other accounts with just one click. I also access a lot of my information remotely and LastPass makes it easy for me to log in and validate my identity without slowing down my workflow. I use it both at the office and at home for my personal accounts. I have also gotten my mother to use LastPass which is a great improvement from the list of passwords she used to keep on the refrigerator. ",I'd like if it could give secure recommendations for passwords. I'd also like to be able to have tied but split accounts so I could have one for work and one for personal.,"I work with clients who have a lot of private information. Having secure protected information is a must but I also need to be able to access it quickly. LastPass allows me to have the most secure passwords without the hassle of having to look up various passwords every time I log in. Lastly, in the past I have struggled to get people in my office to use more complicated passwords. Without the need to remember all of them, people are more willing to use secure passwords.",10.0 +633,lastpass,Tyler C,Enterprise,2016-09-02,The best application for storing your passwords in the cloud,"The mobile apps are fantastic and work on all platforms - iOS, Android, and Windows",LastPass add-in for Microsoft Edge can be unstable,Eliminating lost passwords and risk of using same password on many sites,10.0 +634,lastpass,Verified User (Anonymous),Mid-Market,2016-07-15,"Required at my company, but an obnoxious extension.",It definitely does that it's supposed to do! It's great at password management.,"I hate how big and obnoxious all of the graphics are for the extension. EVERY site I go to has a huge banner added to it after I sign in, even if I already have that password saved! For a long time the ""never for this domain"" button never worked, but it hasn't happened lately, thankfully!",Secure password management,6.0 +635,lastpass,Michael S,Mid-Market,2016-04-09,"Easy, indispensible security","LastPass is very simple and integrates cleanly to my browsing experience. I use it both to manage secure access to my applications, as well as enabling simple form-fills.","From time to time the system gets a little zealous about filling passwords and has pre-populated when I don't want it to. And sometimes updating/changing passwords can feel a little clunky, resulting in changing a password on a site, but not updating it in the system, or vice versa.","LastPass resolves my personal security when browsing the web. With the regularity of site hacks, it's important to not have shared passwords and LastPass makes that simple for me.",10.0 +636,lastpass,M,Small-Business,2016-01-09,Reliable Password Manager Focused on Mobile,"I have been using Keepass2 and storing the password database on 3rd party services like Dropbox for years but lately I needed to store my passwords and reach them from my smart phone. LastPass is a great service especially for mobile phone users. LastPass integrates with almost all the browsers available like Google Chrome, Firefox and Safari. It also supports mobile, which is a key feature nowadays. ","LastPass import and export options are not satisfying. If you are migrating to LastPass from a different software like Keepassx, you have to move all the passwords manually. LastPass doesn't support .kdb files. Support for different languages is not complete yet, I'm waiting for Turkish language support.","I setup LastPass on my Android smart phone, Windows 10 and Ubuntu computer to organize and synchronize all my passwords. As an active computer user I have hundreds of different passwords and it is quite hard to remember each of them. LastPass does it's job and keeps the passwords safe for me.",10.0 +637,lastpass,Peter B,Mid-Market,2016-04-08,Great Password Safe Site,"I love the fact that I can save multiple passwords and full log in credentials and have them in one place. The auto-login feature works really well. Also, the ability to share login credentials with peers is very helpful and a lot more secure than email.",I constantly have issues with LastPass and Chrome. It doesn't always work. I have found that Firefox is the best browser for LastPass,I am a software consultant that manages multiple instances of Salesforce for many clients and using LastPass help keep all of the different credentials organized.,9.0 +638,lastpass,Andrew S,Small-Business,2016-01-04,"Long time LastPass user, love it","I love that it integrates with all of my browsers, my phone and even hooks into mobile safari to make password management really easy. I also love using the generate password feature so I don't have to come up with random passwords myself.","The integration with Firefox was really nice, now that I'm using Chrome more I find it's kind of clunky, but that might be more of an issue with Chrome. It's also doesn't work 100% of the time with different websites. That probably has more to do with the website than LastPass, but at least I can always copy and paste my username and password out of LastPass to fill in myself.","Instead of using the same password on all of my websites I can create random secure passwords that are different for each site. I don't have to remember any of the passwords, they are always with me.",10.0 +639,lastpass,Paolo F,Mid-Market,2016-04-28,Probably one of the best password managers,"It's multiplatform and has a plugin for every browser. Also, the browser integration is very good and it's very simple to add, edit or delete new accounts and passwords.","The duplicate password warning is too invasive. Sometimes it's a little messy with generated passwords, but probably it's not a problem relative only to LastPass.",LastPass helps me to manage all my passwords and it's the best tool to do this thing.,10.0 +640,lastpass,Erin A,Mid-Market,2015-12-28,Keychain Management Backup for Safari and Chrome password keychains,"I like that I can use LastPass as an extension on Chrome to backup my Chrome keychain. I also like the ""master password"" on LastPass that allows me to lock the passwords if needed. I also like that I can copy the password without ever seeing it. ","I don't like that LastPass will save different iterations of the same site's login, and instead of replacing an old password with a new one, it will just save a second account for that site. I have a lot of passwords in LastPass that aren't current. ","I'm keeping everything important safe, and backing up my Chrome keychain. I use the saved credit card feature, and that helps make purchases and other business operations more efficient. ",10.0 +641,lastpass,Tommy B,Small-Business,2016-04-11,Business decision,"Based on a master key, with plugin for all browser, and multi-platform, including mobile device. LastPass is one of the best Very secure.","When you want to deal with service account, or have multiple account for the same service (live.com or google for example) it get messy.","People were sharing password by email or IM, saving them in spreadsheet or text files. Having a central managed solution is the key.",9.0 +642,lastpass,Kyle M,Enterprise,2015-12-22,"LastPass, the best password manager","Last Pass is a great password manager, with decent integration into web browsers, a great security model, and best in class password generation. It currently stores about 400 passwords for me, which is a huge weight off of my shoulders. I also use the 'Shared Folders' functionality to share passwords with my wife.","I dislike how it was recently sold to LogMeIn; a company who has been extremely flakey in the past by lying to it's customers about increasing prices and it's free tier product. + +Another thing I dislike about Last Pass is that it is not open source. This is a huge pitfall for the product. An open source project like KeePass is much easier to trust. + +Finally, I wish the 'auto change my password' feature worked better and on more websites.","I no longer need to remember any passwords. (Well, except for my master password)",10.0 +643,lastpass,Kleber S,Small-Business,2016-04-01,Good on desktop browsers. The site on mobile is terrible.,"The integration with desktop browsers. is very handy and transparent. Sometimes, when you have more than one password to a site or trying to create a new one, it's gets messy.","There is no free mobile extension. It's very hard and sometimes frustrating to get my passwords in mobile. It's clear that they are pushing me to sign the pro version. It's cheap indeed, but I don't want to be pushed.",Saving my passwords in a centralized place. That's very handy.,7.0 +644,lastpass,Verified User (Anonymous),Mid-Market,2016-04-08,Saves a ton of time,"It makes it easy to generate complex passwords, and thankfully, you don't need to remember them. I also like the ease in which you can view a password in the LastPass vault. It makes it simple to walk over to a colleague who temporarily needs the password on an incognito window.",My only dislike would be that sometimes LastPass doesn't pop up with passwords on certain dialogs.,We have a ton of passwords that we use for company accounts. Those passwords need to be kept securely but also easily accessible. ,10.0 +645,lastpass,Jaime H,Small-Business,2016-04-08,LastPass is a life changer! (Need better app integration for mobile),I love how convenient lastpass is. I save so much time every day using this tool.,I wish there was better app integration for mobile. I would love to open apps and be able to login using lastpass without having to shuffle between the two apps. ,We work with a lot of clients for whom we need to login to their accounts and handle a lot of sensitive information. Lastpass allows our clients to confidently give us the access that we need while giving them the confidence that their information is protected.,8.0 +646,lastpass,Verified User (Anonymous),Enterprise,2016-04-08,"A little clunky, but ultimately very helpful","Very secure way to keep passwords. A little clunky, but ultimately very easy to utilize. A lot of different websites have unique criteria for their passwords, so LastPass helps me keep all of them straight.","Google Chrome integration almost feels intrusive. Every time I type a password into anything, even a temporary one, LastPass has a pop-up appear asking me to save it. This can be seen as mildly inconvenient, so not a HUGE negative.","This is for personal use, and is helping alleviate the headaches of remember different passwords, since so many sites have different requirements.",7.0 +647,lastpass,Hunter C,Mid-Market,2016-04-11,"Good product for most security related things, but not everything","That it saves all of my passwords, meaning I don't have to log in each time. It auto-populates my username and password. The master password serves as a good way to secure logins. + +The extension is also great way to get to accounts easily",It makes me confirm logins too often. Sends me emails that my passwords are not strong enough. Reseting password scan be confusing. Setting up things correctly at first is important,"Managing all my passwords and usernames in one place, placing them under different tabs types",6.0 +648,lastpass,Rodrigo A,Small-Business,2016-04-04,LastPass on Mac OS X,"The security level, and the company transparency when problems happen.","I don´t like the browser plug-in. It does not integrate perfectly on every page, and disrupts the layout of forms. I prefer to use the native application, but it does not allow use only keyboard in OS X.",Only the centralization of passwords.,9.0 +649,lastpass,Verified User (Anonymous),Small-Business,2016-05-03,Very useful tool to protect our passwords,"I love that when I set up a new user, I don't need to import all the passwords for each website. Only one plugin to set up with one password and that's it. (One to rule them all). The administration is also very easy to handle. I feel safe enough with my passwords being managed by lastpass.",There are a few bugs with auto-filling fields and as well as master password being asked when it's been set up not to ask. This is a bit disruptive for the users but nothing we can' t overcome. ,It's been helping us to protect the list of password that we have for all websites we use as well as giving specific access to certain users . It also helps us being extremely efficient when a new user comes in (no need for him/her to contact helpdesk and ask what the password for the website is),7.0 +650,lastpass,Verified User (Anonymous),Mid-Market,2016-04-11,Good Enough,One master login to rule them all. This is a very secure method to store passwords so you don't get logged out from your accounts.,There are major sync issues if you need to combine two separate LastPass accounts. You are also screwed if you forget your master password.,Keeping business information secure.,6.0 +651,lastpass,Roxie S,Enterprise,2016-01-08,Best tool for the forgetful!,"This product allows you to manage all your passwords in one easy place. You can access them via any browser, windows software, or phone app!","Nothing, this product is absolutely excellent, the free version has tons of options and the paid version allows for everything under the sun.",Memory and security. You no longer have to write down a password and try to find it or remember it.,10.0 +652,lastpass,Eric W,Mid-Market,2015-07-13,Lastpass makes web security so much easier!,"I love that lastpass makes it easy to have unique, secure, random passwords for each and every website. I have 232 sites in my lastpass vault. Could I possibly remember 232 different passwords?? No, of course not. Do I want to carry around a piece of paper with 232 passwords on it? No. And I certainly don't want to have the same few passwords for every site - just one security breach and all my accounts are compromised. + +So, that's the case in general for a password manager. Lastpass is particularly great because the mobile app is awesome, and makes it easy to login to site when I'm on the go. The security score is also good because it helps me identify ways to make my logins more secure (eliminating duplicate passwords, strengthening weak passwords, regularly changing passwords, etc).","This is picky, but the mobile app doesn't work seamlessly with all apps/websites. Usually it does a good job, and pops up a password chooser with the proper login, but for some apps it pops up the wrong website. I wish I could correct it and tell it which login to associate with which app. + +Review collected by and hosted on G2.com.Recommendations to others considering the product:Use it!",My business is more secure because I don't have duplicate passwords. ,10.0 +653,lastpass,Thomas S,Small-Business,2015-07-12,Password managers should be mandatory,"In the world we live in keep a check of lots of unique and incomprehensible passwords is absolutely vital, and it's impossible to do that all in your head. That is why you need do use a password manager to manage your log-ins, if one site is compromised then the password that is stolen won't compromise any of your other website log-ins because that password is unique. Not only that, but if you have multiple log-ins for the same website it's incredibly easy to just select which log-in you want (which you can name) and then log-in with it, without having to try remember which email address corresponds to each different account. +You can also set-up numerous accounts in one place for a family lastpass","The interface is very old hat and I've always struggled to understand certain aspects of it, thankfully if you're anything like me you won't need to to go into all the intricacies. My biggest issue is that my mobile account logs-off far too easily (but security has to come first so fair enough I suppose). Finally you are also trusting to have all passwords in one place, it's basically a honey pot for hackers that you fear one day will be broken into fully.","It's a huge time saving, and not having to keep information in my head that simply isn't necessary to know. So it's more time focused on adding value and doing great things online.",10.0 +654,lastpass,Ronnie S,Small-Business,2016-01-09,Long time user and love it,"I have tons of password to manage not just for myself, but company and other users. Last pass allows me to manage these wonderfully and integrates into Firefox and other browsers seamlessly ","The chrome integrations is probably the least cleanest, but using Firefox primarily resolves that.",Password management ,10.0 +655,lastpass,Verified User (Anonymous),Enterprise,2016-04-08,Simple Install and usage,"Compared to a few others I used, LastPass was quick and simple to install. I really liked the ability to provide emergency access to parties I designate","As with most password tools, I need to upgrade to premium in order to sync ad use across my multiple devices","I need to generate strong passwords for many of the tools and sites used at work and home. Rather than fumbling around trying to create a strong password, LastPass handles that for me. And I do not have to remember the strong passwords because they are stored for me.",8.0 +656,lastpass,John R,Enterprise,2015-07-22,"Reliable, cloud-based password management","These days, you've got to use a Password Manager of some type to avoid re-using passwords or generating ""easy-to-guess"" passwords. I chose LastPass specifically because I can create passwords on one computer and have them instantly available on other computers (eg desktop & laptop, work & home machines). + +I also like the ""Auto Fill Forms"" feature that automatically enters my credit card details when making purchases (after prompting me again for my LastPass password). + +I like the ability to generate one-time passwords for use in insecure environments (eg public computers).","Sometimes the automatic form-filling feature enters my address details in the wrong fields, or it captures addresses that I don't want to re-use. But, it's easy for me to correct the data because LastPass highlights the auto-filled fields in yellow.","LastPass allows me to manage my site-specific passwords in a secure manner, yet makes them available to me when (and where) I need them. I try to get other people using LastPass, just to make it easier for them, too.",10.0 +657,lastpass,Verified User (Anonymous),Small-Business,2016-01-05,Great for storing password and notes,"I have been using LastPass from past 3+ years to store my credentials and notes. It increases my productivity by not entering the details in the field. Also, no need to remember passwords. It generates powerful password in few clicks. + +Web portal is awesome and fast loading. LastPass can offer more flexibility in terms of free trial.",UI can be much improved by implementing it in Angular JS and the mobile support can be extended and can be offered for free for 3 months at least. ,"No password to remember; Auto login, Envryption, and simple and intuitive UI.",10.0 +658,lastpass,Félix L,Small-Business,2016-04-07,One password to rule them all,Single pass get you acces to all your other password. Auto complète one site you previously logged on and awesome browse extension,Password suggestions could be more user friendly,To many password to remember if you want to have a différent password on all sites. Recognise site you previously logged on to be more secure,9.0 +659,lastpass,Phia V,Mid-Market,2016-04-08,Free! Best free password management application.,Free version meets most user's needs. Very good for a free application. Paid version also really reasonably priced. Great support on mobile and even apple watch!,I am not a big fan of their user/admin interface. ,Great for our new developers.,7.0 +660,lastpass,Verified User (Anonymous),Small-Business,2016-04-14,Generally satisfied and have been using the service for quite a few years.,"The MFA feature, also it integrates with most browsers. + +Also, it has good reviews and a good, open approach to breaches.","I have occasionally seen security glitches - one of which I reported but didn't hear back. + +Review collected by and hosted on G2.com.Recommendations to others considering the product:Keep an eye on any security messages. It is a target for hackers because it is so well known. ","I have so many passwords and a lot have to be secure and therefore really strong - not going to manage those. + +Also, the password safe must be doubly secure through MFA",7.0 +661,lastpass,Verified User (Anonymous),Mid-Market,2016-04-08,"LastPass, my password Executive Assistant",Great organization setup and searchability.,"Sometimes the browser plugin drop down hangs up. Like it won't drop down all the way. Especially when logging in and out between accounts. Beyond that, sometimes the auto fill doesn't refresh. ",Better password encryption. Better organization. Faster moving between applications requiring login. ,10.0 +662,lastpass,Tom B,Small-Business,2015-06-26,A review of LastPass in personal use,"LastPass has plug-ins for the popular web browsers allowing direct integration in desired and appropriate interjection when it comes to filling in online login pages and forms. With LastPass, online ordering is easier with the ability to click into an order form and have LastPass plug in my credit card info. Of course, security is of paramount importance. With how my data is encrypted, I feel confident that my data is safe, despite the fact that LastPass has been ""hacked"". Unless I'm sloppy with my master password (and that's definitely not the case), all my encrypted LastPass data is safe. +With the ability of LassPass to create unique and ""strong"" passwords, I have LastPass create unique and complex/strong password for every website. I have no password that is the same at any other site, so if some site gets hacked, they're not going to be able to use that same password at any of the other sites I use. The whole point of LastPass is that it remembers the passwords. +Sharing of IDs/passwords with others is also extremely useful in a family setting. For the same reasons, it would work well in a work situation, but my employer hasn't bought into the idea of password management, yet... +Also useful is the ability for LastPass to evaluate security and let you know where you have weak passwords or used the same password more than once.","While I like the idea and ability to share information with others, the interface on sharing is a bit ""klunky"". Most functions can be performed from the browser add-on, but it seems sharing has to be done at the LastPass website. To be forced out of the add-on and directed to a website is a bit jarring. It's not awful, but the interface on everything else is intuitive and all within the add-on that it seems odd to have that ability jump out of the add-on for just that. It's relatively minor. Just odd.","Password management and memorizing all the various accounts and passwords persists in being a plague in an ever increasing computing world. Without decent password management, and useful tools such as LastPass, computer users would apply appalling securing tactics, such as using the same passwords and IDs at every site and then storing those on a sticky-note on the bottom of the keyboard. It happens! It's frightening and sadly done by so many that should and do know better. Still, human memory being limited as it is, we need help. LastPass provides us mere mortals a means to know a few bits of secure info, and utilize more advanced security measures such as 2-form factor authorization (a personal favorite), to prove a more than adequate level of much needed online security.",10.0 +663,lastpass,Verified User (Anonymous),Mid-Market,2016-04-28,Director Product Management,Simplified Sign On to multiple apps and programs,Setup was a bit confusing and how to maintain thereafter.,Multiple applications used here at our company. SSO/Simplified sign on is of value.,8.0 +664,lastpass,Verified User (Anonymous),Small-Business,2016-07-31,Last pass,It remembers everything but very discreet. Difficult to view by just glance.,Ask about sign on everytime. Consistent remknders and pop ups,Security.,8.0 +665,lastpass,Verified User (Anonymous),Small-Business,2016-04-12,Last Pass Review,"Saves a lot of effort with websites requiring different password styles (e.g. 1 num 1 lower case etc). + +Furthermore it attempts to increase the overall security of your accounts.","Encourages each password to be different which makes it hard to ever stop using it. Also, should this be cracked all passwords would be lost",Saves a lot of time when logging in (automatic logging in),8.0 +666,lastpass,Thomas D,Small-Business,2015-08-10,Secure and reliable!,I like all of the embedded features such as the secure password generator and cloud accessibility. It's not open source but the company seems to have a very secure method of storing passwords on their servers in a way that a stolen database should not jeopardize website accounts.,The menus and login autocomplete are sometimes glitchy. I also wish the password automatically expired from the clipboard.,The product is multi-platform and I no longer have to remember a different password for every website. A user should NEVER use weak passwords or the same password for their accounts but it's almost impossible not to. Lastpass solves this problem.,9.0 +667,lastpass,Verified User (Anonymous),Small-Business,2016-01-19,Good system for managing your passwords,It allows me to have different passwords on every site and access them everywhere.,The mobile app is not good. It does have an extension for Firefox on Android which is what makes it usable on mobile.,It allows me to not think too much about passwords.,9.0 +668,lastpass,Bobby C,Small-Business,2015-04-16,New user to LastPass for our Enterprise.,"Very easy system to use and integrate into all browsers. Like the ability to link personal (free) and business accounts. Love the ability to share passwords with other users. The new mac app is nice, even though I forget I have it most of the time.",Wish there was better offline apps. IOS app seems a little clunky.,"Experience major change in org and needed a way to be able to have department heads securely storing their logins to our vendors. This eliminates the fear of ""what happens if you get hit by a bus""...you can capture your logins, details, and its secure. + +I have moved to using this for my wife and I to keep our logins synced. There has been so many times when I have been asked by her to check on something, or order something, and needed to get logged in. This helps us do that with no problems.",9.0 +669,lastpass,Verified User (Anonymous),Enterprise,2016-01-04,LastPass- last password keeper needed,LastPAss Saves all passwords and recommends new ones. It works on all devices and is smooth and easy to use. It has. Built in browser for easy use. ,Some password save twice when LastPAss sees a mobile site and doesn't know it has already saved the desktop site. ,Staff members are requesting less password resets. When asked they say they have different passwords for different accounts making our domain more secure. ,10.0 +670,lastpass,Verified User (Anonymous),Small-Business,2015-12-29,Great with mobile,Autofill passwords on apps and passwords,The autofill process with multiple popular. ,"Storing multiple passwords, many infrequently used, but only occasionally ",10.0 +671,lastpass,Matthew S,Small-Business,2014-08-17,Simple Problem with a simple solution,It is very simple to use. Login once. Save your password. Done. There is a feature to save all entered data in form which is incredibly helpful if there is a form you fill regularly but a lot of the entries stay the same.,The user interface of the Last Pass Vault is definitely tired. If you have multiple logins to a single site it could get messy with auto logging in. It is also unnecessarily difficult to get a last pass box to go away when you do not want to use it.,It's a simple product that gives me back some time and keeps me a bit more organized. Knowing all my passwords are stored securely instead of written in a notebook is definitely a plus.,8.0 +672,lastpass,Verified User (Anonymous),Enterprise,2015-09-15,LastPass review,So easy to work between many devices and sync the passwords. In addition can also sync secure notes. ,No much information on security of encryption and database.,Issues with multiple devices,10.0 +673,lastpass,Verified User (Anonymous),Small-Business,2015-03-04,All-in-One Password Manager,Keeping track of all your passwords across all online applications is a hassle easily remedied by LastPass. You set a master password and let LastPass take care of the rest for you. LastPass also has integration plugins for all major browsers.,There's nothing that I dislike about it. Works flawlessly.,Not having to keep track of your passwords is great.,7.0 +674,lastpass,D,Enterprise,2014-05-07,It really doesn't get better than this!,"Password capture, storage, automation/retrieval, protection, and generation, all in ONE tool. Integrating into all the major browsers as well as the mobile platforms (with subscription). It is also possible to store more than just passwords, you can upload important documents, credit card information, notes, pretty much anything else. LastPass support multi-factor authentication using a few methods, my favorite being the Google Authenticator application. I have access to my passwords anywhere that I have a browser, and the reviewer that said that it is difficult to manage multiple logins must not have realized that if you uncheck autofill or autologin that you can EASILY select from multiple profiles (I do this all the time on a site where I have 8 different logins, you click the * IN the Username box, and select the username you want to login as).","I dislike that I have to have such a long crazy ""Master Password"" I'd rather use another method of login like some other information or an SMS message to my phone with a one-time password (yes, they already have a way that you can do this with the one-time-password tables, but then I have to transport that information on me or my phone and it seems less secure). Over all though, there really is nothing to dislike.","creating VERY STRONG passwords without having to remember anything, and having UNIQUE passwords across various webpages. As well as being able to share login information without actually sharing the login/password.",10.0 +675,lastpass,Sara P,Small-Business,2022-12-06,Works as it should but difficult sometimes,It's a great password vault that you can share with or without sensitive information. It remembers everything but do not forget to categorize your saved data in your vault!,"It can get bulky. If you are not diligent with categorizing passwords or ensuring the web address login is the same or similar to the domain login you are saving, it can be difficult to find the password. For instance, I need a Workday login which I saved and Lastpass saved for me; however, the login is a Microsoft login and the un and PW are not showing up correctly. Hence, MAKE SURE you look at the LastPass popup and categorize the saved info right then and there or you could end up like me in a tag you're it email string with the company that requires a Workday account.",LastPass is a great password manager and it is easy to share UN's and PW's with or without the recipient able to see the sensitive information. No more Notepad or physical notebook with all my passwords written down. Although I do keep some personally encrypted ones handy still :),9.0 +676,lastpass,Michael B,Mid-Market,2022-11-15,Best encrypted password and information vault for all of your devices,"I can safely and reliably store all my personal information and generate random passwords for all my online accounts. The password vault keeps all of your passwords stored and encrypted. You can also store other information safely such as credit cards, personal data, notes, addresses, business information, and family social security numbers. I love the fact that I can pull up my info on my MacBook, iPhone, and other devices without having to sign into browsers. The browser extension also allows you to quickly fill out forms from stored information as well. I've been happy with LastPass (as with LogMeIn in the past) since becoming a customer a few years ago.","Obviously the one aspect I don't like is that if your master password is discovered, it unlocks all of your personal information for a hacker to access. Otherwise, everything about LastPass is a pure solution to the problem!","Safely storing and encrypting my user information, passwords, and most importantly, family information (account numbers, social security numbers, phone numbers, etc.).",10.0 +677,lastpass,Connie S,Mid-Market,2022-11-15,LastPass is a game changer!,"LastPass is hands down the best way to manage login information, payment card details, secure notes and much more. I can use the Chrome extension on my laptop, toggle between work and personal accounts and seamlessly use the LastPass app on my phone. Adding new passwords via the Chrome extension is automatic, and the app mirrors all of the information so there is no need to enter anything more than once. Autofill options work like a charm for passwords, credit card information and addresses. Like with any password management software, there is a little work on the front end to get all of your information loaded; however, LastPass’ user-friendly platform makes it quick and easy. I cannot imagine managing all of my confidential information any other way.","When I set up a new account on my phone, I have to manually add the new item to the LastPass app. I wish there was a way on the LastPass app to automatically add new accounts as I set them up - like the Chhrome extension does when I set up a new account on my laptop. Perhaps that's user error? LastPass likely has a solution I'm missing.",I am able to launch all of my important accounts and apps with one keystroke and retieve any of my important confidential information immediately. Such a huge time saver!,10.0 +678,lastpass,Sandra W,Small-Business,2022-11-15,A dependable piece of software that I never have to think about,"I've been using LastPass for a few years and see others recommending different tools but LastPass has always been a dependable piece of software that just works whenever and wherever I need it. My passwords have always synced beautifully between my laptop, phone, and iPad. By using the browser extension, I can easily fill any login information I need as well as generate strong passwords for new accounts. Add in the ability for me to categorize my logins and take notes, it's a huge win for my business and saves me tons of time every day.","As of right now, I can't really say that I've run into any issues or concerns. The pros far outweigh anything that I might run into. I don't see myself switching programs anytime in the near future.","I use several different programs that require a login, as well as the need to occasionally have others share their credentials. LastPass makes keeping track of hundreds of passwords easy and readily available when I need them. I save huge amounts of time each day.",10.0 +679,lastpass,Chris T,Mid-Market,2022-11-15,"I don't know any of my passwords, and that's a good thing","LastPass makes it incredibly easy to utilize completely random passwords, not have to remember a single one of them, and use completely different passwords across all of your accounts. Their mobile app is incredibly responsive and works with all of my apps and their browser extension provides quick and easy access to all of my login information.","Occasionally the mobile app doesn't integrate perfectly well with all apps, and I'm forced to open up the LastPass app, copy my password from the manager and paste it into the app. While is incredibly rare, but it has happened and while it's a minor inconvenience, and poses a potential security risk of having a password on my clipboard. I also copy new text afterwards to prevent it from lingering on my clipboard","I feel almost invincible as I've broken the worst habit of re-using the same, easy to hack passwords for all of my accounts. I would estimate I have at least 100 accounts, if not more, and not a single one uses the same password.",10.0 +680,lastpass,Audra D,Small-Business,2022-11-15,Recommend Lass Pass for Business and Personal Use,"The ability to share passwords with multiple parties. Even more - you can do sharing by specific folders. So if you have a marketing team, you can do passwords just for the team. I also like that you can put a double log-in if you want for things like bank accounts etc - this is a nice added buffer.","If you have a personal and business account, I have had issues logging in to one or the other on mobile. This has been an issue on mobile when updates occur, and I have had to re-login. Also, if you forget your password, it is really tough to reset.","Sharing of passwords with family members for personal and colleagues for business. I also like that you can use it on your mobile to log into aps - it stores all of your passwords in one place and can be used on both desktops and mobile. Oh, I also like the password generator.",8.0 +681,lastpass,Kelli R,Enterprise,2022-11-14,"Easy to Set Up, Easy to Maintain","LastPass has helped me to keep a lot of critical information more securely organized. I do like the ability to auto-generate secure passwords as well. Additionally, I have been able to set this up with family, and family sharing has allowed me to assist my aging parents maintain security on their accounts. In the past, they would write information in notebooks or scraps of paper, and / or rely on my memory for the information. Now, even if they forget, I can login to the family sharing portion of LastPass and provide the details they need in a much more secure fashion.","I'm not sure that I have dislikes at this time. Some of the things that are maybe small annoyances are there to provide for my security, such as the two-factor authentication on my phone where I am logging-in each time I need to log-in to a new app. HOWEVER, those things can be tweaked in your settings.","LastPass identifies where there are data breaches and where my information might be at risk. I understand this is reactive problem solving, but it does help to receive those notifications so I can react quickly. Where they are pro-active is scanning your information to show you ahead of time where your passwords might be duplicative, re-used, or weak. This allows me to either allow the system to auto-create a new password where I might be using a duplicate or create my own new password. There is also information in this scan that shows when it was last changed, etc. I think this detail is all very proactive for the user and can provide for stronger passwords and greater peace of mind.",10.0 +682,lastpass,Judith E,Small-Business,2022-11-10,Organized Family's Hundreds of Passwords,"We can access accounts, make notes and store critical information in one easy-to-use app. Data can be shared, and LastPass does a great job launching sites. Creating folders and making favorites helps organize and store volumes of sites and info. I found LastPass intuitive to use and generates strong passwords. Each ""card"" stored includes complete information, inuitive","Lastpass seems to have a quirk when searching. One oddity is that there doesn't seem to be a way to navigate to a folder via the search bar easily. One can collapse folders, so it is wise to organize entries into folders right from the start. Many of my imported passwords remain unorganized, so I have to wade through many to get to the desired folder.","I store all my business accounts and all the family information. I use a top folder with nested folders for the business and our family members. LastPass provides good support, and their ""Notes"" area for each entry helps significantly with the many business and other accounts.",10.0 +683,lastpass,Brent A,Enterprise,2022-11-10,Secure and user Friendly,"It is straightforward to use with a lot of great features. However, I have not explored all the functions yet!I like that it has browser extensions and an app. The share function is good if you have an account you share with someone and have to keep the password secure. My partner doesn't have an account with LastPass, which works great.","I use Face Login, which is handy; however, when logging into the app, I still have to enter the password. As well, I have the authenticator as an extra step for security, and it is a bit of a nuisance if I'm on my computer and leave my phone in a different room. Small price to pay for extra security.","I can generate super secure passwords which I would never remember. I do a lot of development and have many programs to log into, including clients' networks. Knowing I am compliant when generating secure passwords brings peace of mind.",9.0 +684,lastpass,Evan M,Small-Business,2022-11-09,In one place,"One of the features I find most helpful about Lastpass is that it is all in one place. From now on, I know when I can't seemingly remember where I wrote that password down on a sticky note or excel sheet, I can count on LastPass being the only place to store my passwords. Also, the platform's compatibility through google amazes me and makes life way easier","The only downside I have experienced with Lastpass is their authenticator app on the phone. For whatever reason, the app will not sync with an apple watch or open the app when authenticating. For example, if I open my password vault through the authenticator app, I have to click only on the pop-up on my phone screen once I connect to authenticate. Otherwise, if I try using my via my apple watch or simply entering the app on my phone, it will not sync properly with their authentication process and will not let me approve my entrance into my vault. I understand that this is one of the newest features released months ago for Lastpass, and I do not hold it against them for these minor shortcomings.","Well, I don't own a business or anything, so this doesn't solve any technical problems other than primary storage for my passwords and compatibility through the google webrowser through the numerous sites I use daily.",10.0 +685,lastpass,David K,Small-Business,2022-11-08,I have been using Lastpass for years. My entire family is on LastPass,"Lastpass has an intuitive interface and is easy to use. From my mother (a senior) to me (a techie) everyone in my family is able to use and understand the interface. The autofill is great and whenver the underlying website is poorly coded, it's easy and intuitive to copy/paste from the browser extension. Syncing to the phone is great and frankly its got great security features. It even had me change all my passwords to unique ones!",I have no complaints about lastpass. It works well and the autofill is really smart. I can't think of anything that needs to be improved. Even non tech people can easily use it.,"LastPass helps me to get my family to save their passwords and to keep them all unique. There have been hacks on websites and I have been alerted that people are trying to use my different credentials to try and log in. LastPass is great because they clearly indicate if I had been pwned, if my passwords are unique, and it's easy to organize. I am also able to share folders to my family for shared accounts and I like this.",10.0 +686,lastpass,Robert L,Enterprise,2022-11-08,One very happy customer,"I had been using a ""hard"" passwords which were saved to my email account so they could be accessible anywhere. The downside is your email account then becomes the weak spot. So when my email account got hacked, all of my passwords were exposed. In the aftermath of cleaning up the fraud, I made a conscious decision to harden my digital footprint. In came LastPass. From what I understand, using an 18 digit password composed of upper and lowercase letters, numbers, and symbols, would require more time to brute force than the age of the universe. This is every one of my passwords and they're all unique, if one happens to get out, it won't harm my other accounts. And even if LastPass is hacked, not even they know your passwords. I feel very secure with this as a part of my online security.",I would recommend making it optional to use something like the Google Authenticator to reset master passwords.,Keeping my online presence secure by having for every account a unique password that's impossible to guess or brute force.,10.0 +687,lastpass,Shawn W,Enterprise,2022-11-08,Better than I could have imagined,I like how the tool is accessible on multiple devices. I use it on all of my Apple products with no issues. It makes checkout and access to websites extremely easy. It also has a consistent look no matter the platform being used.,"I wish there were an option to toggle it on or off on various websites. For example, I'm a Solution Architect and I will be conducting demos and it will show my options for Credit Cards to use. I wish I could turn it on or off by website or ""pause"" it while on specific sites.","It's solving the issue of password management and secure access to payment information. It's all in one place and makes use easy. For example, I can log onto a website with which I have an account and check out all-in-one fail swoop. It also utilizes Face ID with Apple products which is a game changer!",10.0 +688,lastpass,Kristen L,Small-Business,2022-11-04,A great tool for productivity and secure password management + storage,"I love using LastPass! It makes storing and sharing logins and other important information securely *so* easy. It also boosts our team productivity not only because of how easily we can share logins and information, but also because having it on all of our devices and browsers prevents us from needing to try to keep track of tons of different passwords or go through the dreaded resetting process when we can't remember. + +As an operations consultant, I also recommend LastPass to all of my clients for the reasons I've noted above. It's the best!","There are a couple of features in LastPass that could use improvement. One is Shared Folders on the Teams plan. If you have a login in a Shared Folder, you can't share it individually with someone outside of the Shared Folder. + +Our use case for this is that we would have Shared Folders that we'd share with internal team members, and then we'd need to also share one login (but not the whole Shared Folder) with a contractor who only needs access to a single login. This isn't possible currently. + +Another feature that I'd like to see improved is how you copy information from within the Vault. For example, if you're in the Vault and you open a login, there isn't a way to copy the login information to use to login to a site without going into Editing mode. Once you're in Editing mode, there is a much higher likelihood of accidentally deleting or changing the login information (including the password) as you're copying it. I've previously used 1Password and they have this figured out--you simply hover over the password and then select the ""Copy"" option that pops up. + +These issues don't stop me from using and recommending LastPass, but I do say a little prayer to the software Gods/Goddesses that they'll be fixed every time I'm faced with copying a password in Editing mode or wish I could use Shared Folders.",LastPass solves the productivity issue of password management and sharing.,9.0 +689,lastpass,Mohammed A,Small-Business,2022-10-31,Easy to Use Password Manager,"There are many reasons to use LastPass, but the most important to me is its ease of use. I initially tried using Password Managers like Enpass, but the Desktop Application is a must if you want them all to work. They are very difficult to set up quickly. But LastPass is very easy to set up. We can download Browser Extensions very simply and start managing everything.","LastPass recently discontinued their SMS based 2 step verification process. At times I found this more convenient than the App based 2 step verification process. I don't know why LastPass changed this. And in their latest Android version, when trying to enter passwords through the browser, that option does not show. All of these seem to me to be issues that LastPass needs to address as soon as possible.","Of course, apart from passwords, I can save credit card details, bank account details, and many other things in LastPass and use them when needed. I use LastPass almost as my Digital Library. That is what I need. Also, I can sync and use LastPass Password Manager with their 2 Factor authentication application provided by LastPass itself.",7.0 +690,lastpass,Chelsea M,Small-Business,2022-11-16,Simple and integrated password management system,"I've been using Lastpass since 2010 when I started to work in IT while finishing my BS in Engineering. I've been using it since to have a single, secure, and simple system to store my passwords. Now it helps me generate passwords, lowering the number of decisions I need to make, while being able to move between Apple, Windows, and Chrome ecosystems while teaching.",The only thing I don't like about Lastpass is that it reminds me to change passwords that have been in leaks. Honestly it's another strength. I just get annoyed because I don't have time to change a bunch of passwords when I'm trying to load a site.,"Now that passwords need to be frequently changed across platforms, it allows me to have multiple passwords instead of one across sites. I feel more secure in my digital presence.",10.0 +691,lastpass,Eva S,Small-Business,2022-10-18,Secure and Convenient,"LastPass offers places to store passwords, notes, and payment card information. The Chrome extension allows it to work seamlessly with most websites, auto-filling credentials without the user even having to look them up. It is a great way to manage many unique passwords. And the LastPass security feature will even warn you if a password is insecure or if it is just time to change it!","Occasionally, there are websites that do not support the auto-fill. In these cases, the user has to copy-paste from LastPass, but even this is much easier than remembering complex passwords or typing them from hand-written notes.","LastPass has allowed our employees to gradually let go of their old favorite and not-so-safe password systems. They are finally learning to trust that the LastPass program has all their passwords at the ready. This has made it easier for all of us to use unique, complex, completely random passwords for all of our sites.",10.0 +692,lastpass,Eric H,Enterprise,2022-11-08,Lastpass is a must have for all users,"Lastpass makes password management so simple and secure, the browser plugin alongside the iPhone app and integration makes using Lastpass dead-simple. If the app were more arduous to use, there's a strong chance that users will not use it. They've struck a great balance there.","I've been using LastPass for about 5 years now and very rarely do I run into any kind of problems. There are rare situations where when using custom ports usernames/passwords can become a bit cumbersome (ie. multiple services linked to the same IP address, like a router, DNS server, dockercontainer, etc.)",Time. It saves me so much time keeping my passwords secure. The password generator is seamless. The fact that your vault extends from your PC to your Phone is incredible. The security dashboard gives me re-assurance that I've got my security in check.,10.0 +693,lastpass,Andrew N,Enterprise,2022-11-15,Great service and easy to access and integrate cross platforms.,"The best thing I find about Lastpass is the cross-platform integration and ease of use on all platforms. Regardless of if I'm on iOS, Windows, or Mac, the Lastpass software works seamlessly and allows me to easily log into the sites I need to while making sure I'm secure.","The biggest issue I have is the variable nature of how LastPass remembers sites. I'm pretty sure it's a website issue, but sometimes LastPass gets confused about which login screen to show. Other than that the product is quite user friendly and easy to use.","They solve the problem of complex passwords and the problem I have remembering them. I don't want to reuse passwords as we all know that's an issue from a security perspective, but remembering all of them is a huge challenge.",10.0 +694,lastpass,Erik J,Small-Business,2022-11-15,"Essential, Convenient and Portable! All in one!","I can not only work from anywhere, but can technically use any computer while maintaining the security of my client/personal files.","Sometimes, when I keep the browser open overnight, the quick link option doesn't work. Meaning I have to copy & paste website link and password to log in. Also, it would nice if when sharing a password, i can allow the other person to update the password and have that reflect in my LastPass account as well. To be clear, I would like this option, I'm suggesting that it was a permanent/singular feature. Websites require password updates every so often and it would be convenient due to this.",Easy to share passwords with our office staff. Easy to generate different types of passwords. Easy to store passwords and access.,10.0 +695,lastpass,Matt P,Mid-Market,2022-11-15,An elegant solution that plays well with others,LastPass integrates nicely across mobile and desktop platforms. I have had zero issues with saving and maintaining and generating new passwords. This has helped me be more secure online without having to duplicate or remember passwords and login credentials.,"The only knock I'll give LastPass is the slowness on my Apple device. Rather than being fully integrated into the web browser, it transfers me to the LastPass app. However, we're talking a couple seconds. It's a small trade off for the convenience of highly secure logins.","LastPass solves my issues reusing old, unsecure passwords. It delivers complex passwords and remembers them at the moment I need the info. I also do most of my shopping online so LastPass manages all my payment cards in an easily accessible manner.",10.0 +696,lastpass,B N,Small-Business,2022-12-10,Dependable,"LastPass keeps all my passwords, log-in information, and personal digital details safe, secure and available from anywhere. For instance, if my phone was lost or stolen while traveling, I would only need to log into my LastPass account, where all my personal and business information is stored for easy retrieval. I keep the details of my passport, credit information, and even health information so that in the event of an emergency, I have immediate access from anywhere in the world. + +Most importantly, I only have to remember ONE password. + +I have used LastPass since 2012 and recommend it to all my clients.","I cannot think of anything I dislike about LastPass. The service has been continually improving, and I'm pleased with it.","I am a web designer, and I store hundreds, if not thousands, of passwords and details about my sites. I can also share passwords securely with my clients through the system.",10.0 +697,lastpass,James N,Enterprise,2022-11-15,Very effective and keeps me safe!,"I love that I can take LastPass just about anywhere I need to (mobile, desktop, etc.). I am never without my passwords and the safety that brings. I've used other apps but none compare to LastPass.","I haven't found anything so far that I dislike. The ability to choose more secure passwords is maybe the best feature of the app. I do get annoyed sometimes at having to login securely, but that is what makes the app so perfect. The security is top-notch.","I have so many passwords to remember, and without LastPass, I'd be stuck with pieces of paper or some other very insecure product. My performance has increased because I don't need to hunt for a password. LastPass remembers it for me.",10.0 +698,lastpass,Andrew S,Small-Business,2022-10-19,Simple and just works.,"The mobile app is handy; it also adds an autocomplete to sites in chrome on Android and some apps. For others, it's nice that you can quickly open the LastPass app, copy the password to the clipboard and switch back to the app you're using to quickly log in.","Everything works well if I was to suggest a feature, though; it would be helpful if there were a way to check if we use a specific password for any account; then, if you know an old password is compromised, you can be sure it's not used on any sites that are in your LastPass account.","Makes sharing secure passwords between desktop and mobile much more accessible, had been using a desktop tool before, but those passwords weren't available to me when I was on the go.",10.0 +699,lastpass,Jeff W,Small-Business,2022-11-15,Best family plan password manager in my opinion.,"The ability to share passwords with differnt members of the family, while keeping some private or between me and my wife.","Certain apps don't work with LastPass or apps that worked in the past stop working. There is no easy to find way to get them working again. Sometimes they start to work again after some time. I'm sure that this is a moving target for LastPass, as other developers are always improving security of their apps, but it is an occasional frustration.","My important personal and business accounts now use much more sophisticated passwords because I use LastPass. Also, I no longer duplicate passwords across sites/apps, so if one is compromised, the others are still safe. That's great peace of mind.",10.0 +700,lastpass,Sherve' B,Small-Business,2018-03-19,Works really well with all the platforms we use and storing the log in info.,I like the memory and storage of accounts.,Delay time and auto-fill in of log in info takes a while and sometimes doesn't happen automatically.,Time it takes me to remember my password I have already logged in.,8.0 +701,lastpass,Courtney T,Small-Business,2017-12-19,Excellent Tool to Store Passwords,"I like the ease of use, and the ability for the app to run in the background without any extra work on our end. It's a great tool for a project manager who is dealing with multiple accounts. ","I dislike not being able to go back in and look at all my passwords, but that is necessary for security settings. ","I deal with multiple accounts, and this solution gives me the ability to store all of the account information that I need. ",10.0 +702,lastpass,Anthony A,Small-Business,2018-02-06,Password management for work and personal all in one,I can maintain my personal passwords and work shared passwords in one set up without having to share my personal ones.,"The phone app is handy but can be really intrusive with prompting for logins. +",We wanted to centralize our team passwords so they weren't stored in plain text and didn't have to be one shared password.,9.0 +703,lastpass,Verified User (Anonymous),Small-Business,2018-01-17,Best Software to use for Passwords,I love how every credential can be saved by customized categories and it signs you in automatically!,I like everything about this software. There is nothing that needs to be improved in my eyes for this software to be better.,We are able to keep the same creds for every access we have granted to us online so no more trying to find a password or remember. I have realized that this software takes away the time it normally takes to sign into a carrier portal. ,10.0 +704,lastpass,Colby K,Small-Business,2018-01-02,Great Corporate Password Manager,It's easy and simple to use for the end users. It makes user adoption much easier when it's so convenient for them to use.,The admin interface is kind of clunky and not intuitive.,"Before we had LastPass, we had users saving passwords on sticky notes attached to their monitors or in a spreadsheet on our network file share. Now, we have a much more secure method for storing and sharing passwords. ",10.0 +705,lastpass,Verified User (Anonymous),Enterprise,2017-12-12,LastPass makes my life much easier,"It is a comprehensive tool which regardless of the Browser you are on it safes your login info including web site, user name and password. Besides, you can categorized it the way you want. It also features a password generator... this is the future forget about remembering every user name and password, you only have to remember the Lastpass password and you are in",There is no add-on for Microsoft browsers such as Edge or Internet Explorer,Desktop Support Staff have a lot less headaches than they use to have since having end users the opportunity to have this wordenful tool for password management. This means that we have reduced substantially IT support hours due to identity problems. ,10.0 +706,lastpass,Verified User (Anonymous),Small-Business,2018-03-20,LastPass is here...I can slowly kill my brain with beer,"User names and passwords are hard. LastPass is a great tool to make remembering less hard. Seriously, the time savings from not having to look for every login is huge.","it's probably for security reasons, but changing the password regularly (required) is not fun.",LastPass helps organize login and passwords for frequently visited sites. This works great for people working from different locations (passwords are no longer device specific)k,9.0 +707,lastpass,Tara T,Mid-Market,2017-11-02,Very effective,I liked having all the passwords in one place. Not just my personal passwords but being able to access company wide accounts without checking with 7 people to see what the current password is was helpful.,"At first I didn't like LastPass but it was because I didn't know how to use it. Once I took 5 minutes to figure it all out, I thought it was great.",LastPass helped us be organized and have randomly generate passwords that people didn't have to memorize which made our systems more secure.,7.0 +708,lastpass,Haydn M,Mid-Market,2017-10-20,Best password manager on the market,Ability to generate secure passwords and have them stored. Another bonus is the security challenge which then rates you against other LastPass users which motivates you to improve your score.,"Can be clunky when using the app with logins required for other apps, sometimes the apps aren't recognised as being stored",Overall security is increased as users are pushed to improve their passwords. Also seen a decrease in passwords stored in unsecure ways such as post-it notes!,9.0 +709,lastpass,Verified User (Anonymous),Enterprise,2018-02-09,Great in theory,"I like the idea, it makes sense that you would have a secure portal to save all of your passwords. ",I think the follow through is really miserable. Unless I'm missing something...it isn't easy or intuitive and it's mostly just a pain.,"Saving all my passwords in one place is nice. I pay for pro so hopefully that's worth it, although its benefits are yet to be seen. ",4.0 +710,lastpass,Florian S,Small-Business,2018-02-22,Safe just one password,"easy tool, you just need to remember your master password.",nothing. its really good. maybe they should concider to have more free account possibilities.,having a lot of passwords. now we just have to remember one.,8.0 +711,lastpass,Shahrooz F,Small-Business,2017-07-13,A perfect tool to get rid of all hassles for password management,It's almost everywhere even when I don't need it! It reminds me to keep the credentials when I'm registering on a new site and its cross-platform which makes it easy to access. One of the good features of LastPass is folders which can help you to categorize your credentials. Another great feature is credential sharing which you can share a specific username/password with anyone you like. Password generation is very easy and can be customized easily to have a complicated unbreakable password.,I don't remember anything to dislike. It perfectly solves all my problems with remembering secure info.,"Credential management such as username, password, form fills, generating powerful passwords, secure notes, etc. +A great use of this application is when you need to share a credential with someone else! It's a hassle always and almost for anyone but with LastPass, its a piece of cake! LastPass is a must tool for anyone who works in digital world as a regular user or even an admin!",10.0 +712,lastpass,Abby W,Small-Business,2017-11-15,"Simple, secure way to be smarter with security","Simple, easy to use UI, great app, lots of extra security features, and the security checkups and alerts really help me be smart and feel safe. ","Passwords in general suck, so I hope that LastPass keeps innovating and trying to figure out better, safer alternatives to passwords - even when the majority of websites still require them. ","Manage personal passwords, allow for multiple accounts (business, personal, testing, etc) for the same site, kept in order, all with randomized characters, changed at regular intervals for maximum security. ",10.0 +713,lastpass,Gavin M,Mid-Market,2017-12-28,"Easy, Forgettable Password Management","Lastpass securely sits in the background, managing complex passwords with ease. Integrated password generation and browser tools follow you wherever you go.","The mobile app has lagged behind web, but has recently caught up. Lastpass does not always associate generated passwords with logins, requiring a copy and paste to get the password right.",Password management and tracking; secure password generation.,10.0 +714,lastpass,Verified User (Anonymous),Small-Business,2018-01-16,So far so good,"We have been using this for less than a month but I love that while there is an ""Administrator"", individuals can provide their own passwords, which gives them a nice sense of security.","I am still having some issues understanding how we can track equipment (i.e. Apple ID, passcodes, etc.) for company-issued items.",Electronic password tracking to make sure we have all the information we need if an employee leaves.,7.0 +715,lastpass,Allison W,Small-Business,2018-01-02,Great password management tool for multiple devices,"Remembers all your passwords, form fill-in info, credit card info, and can be accessed from any device when you are in the app or website trying to login.","It doesn't always work on all websites, so then I need to do a manual search for the password.",I am able to keep track of all my clients' passwords.,10.0 +716,lastpass,Zach D,Mid-Market,2018-03-08,LastPass is so easy to use ,It is one of the best tools for general efficiency. Plug and go ultra strong passwords and forget remembering countless passwords.,The mobile app needs better integration to allow you to add passwords in browser/app instead of having to manually open LastPass everytime you need credentials,Saving time and energy with not having to remember passwords. Having strong passwords for security.,10.0 +717,lastpass,Jessica V,Small-Business,2018-01-17,Perfect for the dreaded ,This is the answer to all our document sharing woes! So easy to share log in credentials with other users of the same documents. ,There really isn't anything we dislike...other than the app seems to disconnect at random once in a while.,"Easy, seamless document sharing between colleagues",9.0 +718,lastpass,Kirk H,Mid-Market,2018-01-16,Password Management Made Easy!,"The ease at which passwords can be managed and used. You don't have to remember a vast variety of passwords and because of this, you can create more complex passwords which make your browsing more secure.",There are only 2 ways to view the vault: list and tile.,Solved the problem of users having a single password for multiple sites. Benefits realized are reduced risk and increased security.,10.0 +719,lastpass,Verified User (Anonymous),Mid-Market,2017-11-22,The most popular password manager for sure!,"LastPass provides ease of access since your login and password information are automatically saved on LastPass’s servers, and are available to you from any computer with the extension installed. I also really enjoy the audit feature which will perform an scan all your passwords and then will highlight weak or duplicate passwords, and then even goes on to help you create more secure ones.",I found that the interface is a bit hefty and complex and not as user friendly as some other options out there. ,LastPass helps to bring harmony between the user and an easy to manage password management.,6.0 +720,lastpass,Chris G,Mid-Market,2017-09-04,Gain Convenience without Compromising Security,"Many modern businesses require logins to multiple software platforms, as well as personal secure locations. LastPass makes it easy to safely keep all of these passwords, share as needed and save you time.",The Chrome extension occasionally needs to be closed and rebooted in order to work. It seems to be fixed with the latest update.,"It keeps all of the passwords in a searchable location, and the Chrome extension makes it effortless to autofill login credentials.",10.0 +721,lastpass,Taylor V,Small-Business,2017-09-05,Excellent service... wouldn't know what to do without it,"LastPass has been a life saver when it comes to managing all of our companies passwords. It centralizes all your passwords in one place and makes it easy to auto-fill forms and logins that you frequently use. Since we have multiple accounts on certain websites, it makes managing multiple login credentials easy. It also has the ability to store secure notes and credit card information, however, we don't use this. + +Love the fact that we can have 2FA on the initial master login, which makes it way more secure, just in case someone cracks into your account and gets the password.... at least they'd need to have your phone too.","Hoping they keep mantaining their security level, as this could be huge since all our passwords are stored in the cloud. + +Sometimes when using the app on websites such as Google, it's a little finnicky since Google now has a two step login procedure, first you put in your username, then on the second screen you put in your password... with Lastpass that requires two clicks if you have more than one Google account. Which is not that bad at all considering how much time it saves in the long run.",It increased efficiency a ton by having a centralized storage of passwords that we can share between users.,10.0 +722,lastpass,Verified User (Anonymous),Small-Business,2018-01-17,"Functionality works well, but concerns with chrome add-on","I love that the chrome add-on can automatically fill in my information, as well as the pop up that asks if I'd like to save a new website's information.","My one complaint is that I wish they would require a password when you ""open the vault"". I tried to adjust the settings for this to happen, but I didn't find that option.","Lastpass is helping me stay sane! I was always worried about my passwords not being strong enough, but if I made them all different I would forget them. This has helped me see the best of both worlds.",8.0 +723,lastpass,Laura M,Small-Business,2017-11-27,Best Password Manager,"I love how easy this is to use, not only for passwords but for keeping track of important info that also needs to remain safe (like ss# or wireless network info). The phone app is very helpful.","I've tried others like this (Dashpass) and really felt they lacked compared to LastPass - LastPass has been great and I have no dislikes about them +","I don't have to try and remember how to remember by login information per site. It can create passwords quickly and the options of using numbers, letters, capitals, symbols is very helpful.",10.0 +724,lastpass,Benjamin W,Small-Business,2017-11-10,The gold standard in password protection,FREE Tier is pretty amazing. The last pass platform is seriously the best in class for simple architecture in the password protection space. There is no other contender that has the same credibility and the same offerings for the price and there are no others with the breadth and integration potential. ,Paid tier doesn't have enough oomph to justify upgrading in my opinion. ,Remembering hundreds of passwords for clientele and personal usage on the internet. ,10.0 +725,lastpass,Ilya D,Enterprise,2020-05-27,Very effective credential collaboration tool for our Enterprise,The ability to manage in an Enterprise environment. Good integration with 3rd party SSO providers.,Administration Console can be tricky to navigate. Vault login through SSO is realized trough a browser plugin-in and not through a direct site or user sso portal.,Credential management for a whole company that is divided into different department with various levels of access. Sharing feature makes it really easy to share sensitive/critical to business credentials.,9.0 +726,lastpass,Verified User (Anonymous),Small-Business,2020-05-27,Incredible Security and Productivity Tool,"I have been using LastPass personally for a number of years and since 2 years ago my whole company switched over to LastPass too. It is an invaluable tool for everyone, helping us with keeping our passwords and other sensitive information private and secure, as well as making collaboration a breeze. We simply love LastPass and enjoy using it on day-to-day basis.","The Enterprise plan should have biometrics enabled, as well as all other features and the plans should be divided by the size of the company not by which features you want. Other than that it is a great tool!","Ease of use and data synchronization across multiple platforms, superior security, better collaboration, easier administration, and rooting out people with bad habits, which can cause security breaches, etc.",10.0 +727,lastpass,Verified User (Anonymous),Small-Business,2020-10-16,Great tool for protecting your saved passwords,"LastPass automatically saves your important passwords so when you go back to the site, you can click on the icon on the right of a log in field and choose to use your saved information.",Nothing so far! I love the tool and love all aspects of it.,Protecting important saved passwords in a password protected tool ;),10.0 +728,lastpass,Verified User (Anonymous),Small-Business,2020-11-11,Never get locked out ever again,I can access all my passwords in 1 location,nothing that I dislike about the software Lastpass,"I can never remember my passwords, it allows me to quickly access regularly used sites",10.0 +729,lastpass,Ignacio M,Small-Business,2020-07-15,"Great password app, LP Authenticator could use some work.","Easy to organize, store, create, manage credentials, credit cards and notes. +It features a straight forward, easy to use interface. +Managing LP users as an administrator is also fairly straight forward.","LP Authenticator could benefit from improvements (ex. desktop app, syncing across devices).","Secure password storage, secure sharing of passwords, credit cards, notes, truly randomized password generation, compatible with multiple 2FA methods.",9.0 +730,lastpass,Ben C,Enterprise,2020-03-31,Excellent choice for cross-platform users,"LastPass' free version allows users to have unlimited passwords saved and use LastPass on multiple platforms (e.g., macOS and Android).",LastPass isn't as integrated into the operating system as iCloud Keychain. Logging into a site involves opening the LastPass vault first to get the password. I prefer the way iCloud Keychain has a prompt on a site login to fill in the user's credentials.,"I needed a free to use password manager for users who aren't completely in the Apple ecosystem. For Apple users, I highly recommend iCloud Keychain, but if people use an Android phone or a Windows PC, then they need a cross-platform solution (like LastPass) so that they can access their passwords on all of their devices.",8.0 +731,lastpass,Verified User (Anonymous),Small-Business,2020-08-11,Secure and reliable password manager,"LastPass is a very reliable and secure password manager. It also allows me to save bank account, documents and credit card numbers in its secure vault. Its multi-platform support and cloud sync makes my password available on all my devices. It automatically fills up the saved passwords and helps to save time.","Its mobile application has some problems, it doesn't auto-fills my saved password. Rest everything works great for me.","I mostly use random password generator for my accounts because of this it's very difficult to remember passwords. For this I use LastPass, it helps me save, secure and access my passwords on my every device. Now I don't need to manually enter my passwords, LastPass does everything for me.",9.0 +732,lastpass,Sachin V,Enterprise,2020-05-12,Best solution to safely store passwords,"What I love about it is that it's a freeloading cross layer and also enables product synchronization in the cloud. I could even change my password to my laptop client, but then just access it from my smartphone.","LastPass allows you to forget your password, and use a far more complicated and much more secure password. Generator of Passwords is extremely useful. There are some purposeful problems, but often it won't prompt me to type in the password shop in case I leave the final pass to instantly pack in the password.","I save passwords for various websites, and use the password generator to practice. Using access administrator.",9.0 +733,lastpass,Olga N,Enterprise,2020-03-22,Store passwords safely,"One of the most reliable and safest applications, which take care of our all passwords. It is totally different application which insures the security of our all personal and business information. It is a great alternative for remembering passwords. It locks my all accounts passwords in its storage and provides me a master password for accessing all settings. It is absolutely working efficiently. All functions which helps me while saving my information are appreciable.",According to my experience I would say it is excellent password protection platform. Since when I started using it is working excellent. I admire its all services which protects our information safely.,"I have really great experience with LastPass, it helps me managing all passwords. The synchronizing functions are faster and reliable. It remembers all my important passwords across all devices. It is also beneficial while saving our important time we do not have to write user names and passwords because it works automatically and provides all needed information.",9.0 +734,lastpass,Verified User (Anonymous),Small-Business,2020-04-17,LastPass getting a bit bloated lately,"It's pretty slick. Looks good and does work well. Form Autofill mostly works correctly, Password Generator sits right in the password fields and saves time by not having to move your mouse over elsewhere.It has a very clean look and generally is very easy to use.",It has been getting heavier lately and I feel that the app is getting slower and more bloated. Speed is important. All the browser extensions add up so each individual one should be as lightweight as possible.There are some usability issues that results in way too many clicks and it could be very much improved.,"LastPass solves the huge problem of managing large numbers of passwords. Saves time, improves security and ultimately make me more productive.",5.0 +735,lastpass,Katie M,Mid-Market,2020-03-18,Remarkable password management,One of the most secure password protection programs. LastPass has a decent interface that comes with secure password storage. It is not only protecting our passwords but also vanishing our complexity of securing our important information. It also auto fills different kind of forms. Moreover it gives a master password in order to make changes in information and in passwords.,I am the person who always forgets passwords. So LastPass has given me the great access for synchronizing my all passwords and it keeps remember my all passwords efficiently. There is nothing wrong with this application and its features.,LastPass has given us a reliable password security system that keeps our sensitive and important data secure from hackers. Its all functions are well organized. I use it on mobile and desktop device both applications work perfectly.,9.0 +736,lastpass,Dan H,Enterprise,2020-03-16,Password protection program,LastPass is all in one the best password management program. It provides great control and unified visibility effectively. This program provides multi-functional features and programs. It has made his name because of its well organized services. It makes our professional work more secure and protected. It keeps secure our important information. The synchronizing system of this tool is superb faster.,It was a bit difficult to manage passwords in the beginning but it became easier after having command on its all features. For me there is nothing to dislike it is perfect from every aspect. It has been playing an important role in my professional life.,The interface of LastPass is intuitive and well organized. It provides master password for accessing and editing all saved information in its database. I prefer using this program for password protection instead you use any other tool.,9.0 +737,lastpass,David C,Enterprise,2020-03-09,Effective password protection,Lastpass is a fantastic tool that helps me in identity management. It has plenty of features which give security services. It simply syncs all passwords taking permissions then keeps us away from remembering every single password. It also provides us a master password in case we want to customize anything then we can have access to its internal settings.,"It was really difficult to handle many applications and their passwords before the arrival of LastPass but now it is not a hurdle. We can secure every single device, app and tool with the help of this application. I have no complaint against this software it is working well.","LastPass is a great invention and it keeps much positivity. It allows me to keep secure my entire information and passwords. It helps me in many ways. Its all functionalities are performing effectively and efficiently. The authentication, access and identity are all its major goals and it is working well in all sectors.",10.0 +738,lastpass,Dee T,Small-Business,2022-06-13,Amazing software to manage passwords.,"I like how I can organize my password into different categories so I can keep my work, personal and family passwords.I also like that I can access my passwords on multiple devices.","What is there to dislike, nothing, LastPass does what it suppose too.",LastPast solves my problem of managing over a 100 passwords. The benefits makes my job more productive.,10.0 +739,lastpass,Verified User (Anonymous),Mid-Market,2020-08-27,Great password management solution,Tp be able to securely keep and share passwords while managing them all for the organisation through easily customisable policies.,Haven't had good experience with the support team at not just one or two but multiple occasions.,Essentially password management for now with the current needs and requirements of the company and that has been accomplished very well.,9.0 +740,lastpass,James G,Small-Business,2020-05-27,Great Password Management Tool!,Ease of set up and the simplicity of the UI,A little trouble understanding Shared Folders,We have a support team that utilizes this tool throughout the day to access over 300 tenants. This makes it easy to manage each tenant and to access them as well.,10.0 +741,lastpass,Benjamin B,Mid-Market,2019-12-05,Die Passwortverwaltung ist heutzutage mit LastPass bequem.,"LastPass ist eine neue Software in der Welt der Technologie, die sehr hilfreich ist, um alle Passwörter und Login-IDs zu verwalten und aufzubewahren. Mit dieser erstaunlichen Anwendung muss ich mich jetzt nicht mehr an alle meine Passwörter und Login-IDs erinnern, die vor der Ankunft dieser Anwendung komplex waren. Darüber hinaus kann ich durch die Vielzahl der Funktionen und Funktionalitäten problemlos mehrere Passwörter generieren, was meine Arbeit langfristig einfacher und komfortabler macht.","Für mich ist dieses Produkt ein großer Segen, um meine Zeit und Energie für die Erinnerung an Passwörter zu sparen, indem ich Excel-Dateien erstelle, um meine Passwörter an einem Ort und.... Für mich gibt es also nichts, worum ich mich in diesem Produkt kümmern muss, manchmal wird die Arbeit dieser Anwendung langsamer, aber das ist kein großes Problem.","Diese Anwendung verfügt über vollständig sichere Zwei-Faktor-Authentifizierungsfunktionen, die Sicherheit in Bezug auf die Verfügbarkeit von Thumbprints, Face ID und vielem mehr bieten, um in das System zu gelangen.Die Master-Passwort-Funktion dieser Anwendung ermöglicht es mir, meine Passwörter zurückzubekommen, auch wenn ich sie vergessen habe oder wenn ich nicht auf alle davon Zugriff habe. Daher ist dieses Produkt sehr nützlich, um täglich an verschiedenen Anwendungen zu arbeiten, bei denen eine Login-ID und ein Passwort erforderlich sind.",9.0 +742,lastpass,Sharon D,Mid-Market,2019-12-04,De beste manier om uw wachtwoorden veilig op te slaan en te beheren.,"Een van de dingen die je leuk vindt aan Lastpass is de eenvoudige en intuïtieve bediening van de grafische interface, met een deel van de verschillende soorten bestanden die passen bij de verschillende sites en accounts die je als gebruiker hebt en die je als gebruiker zelf wilt opslaan op een manier s Tuurlijk. De implementatie van de toepassing in de verschillende omgevingen is zeer compleet, omdat het een mobiele versie, een desktop-app en de versie van de webbrowser heeft. Daarnaast heeft het plugins voor Chrome en Firefox die zeer goed werken zonder dat u de pagina en uw gegevens hoeft in te voeren.","In de bureaubladversie voor Windows zijn er terugkerende bugs die enig risico kunnen opleveren voor de integriteit van uw gegevens. Wanneer u een onjuist hoofdwachtwoord invoert, hebt u nog steeds toegang tot de toepassing, maar de gegevens verschijnen met willekeurige tekens, iets wat niet mag gebeuren, want als het wachtwoord verkeerd is, moet u op geen enkele manier toegang krijgen tot de toepassing. Dit is een bug die altijd verschijnt en niet is opgelost in de verschillende updates die ze hebben geduwd.","Ik heb Lastpass gebruikt voor mijn persoonlijk gebruik, om wachtwoorden en notities veilig op te slaan zonder dat ik elk van de accountgegevens die ik beheer uit mijn hoofd hoef te leren. De software heeft de mogelijkheid om mijn notities en wachtwoorden op te slaan op een centraal platform, waar het me in staat stelt om snel toegang te krijgen tot mijn accounts, zonder dat ik steeds opnieuw sleutels moet invoeren. Lastpass heeft me geholpen om mijn notities te beheren die ik te allen tijde beschermd moet hebben en tegelijkertijd zijn ze toegankelijk op elk apparaat dat ik gebruik, zonder dat ik ze in platte tekst in mijn telefoon of kantoor hoef op te slaan, aangezien dit duidelijk het risico van diefstal van mijn informatie met zich meebrengt.",9.0 +743,lastpass,Robert A,Small-Business,2020-05-27,LastPass Is My Daily Use Tool,Keeps me organized and gives a peace of mind for the security of my data but also the ease of documenting what needs documented then the ease of accessing it when needed.,The user management is not as easy to understand as I'd like.,"Websites, passwords, notes all easy to access with search and easy to organize by type of use.",10.0 +744,lastpass,Verified User (Anonymous),Small-Business,2020-08-19,Robust identity protection,It's easy for us to save and access passwords.,"Can be a bit finicky for some users, which makes full adoption difficult.","More than anything, it's helping our organization realize how many passwords we have for our various services, client sites, etc. Keeping all of those organized and accessible only to those who need them has helped considerably.",9.0 +745,lastpass,Kaitlyn S,Enterprise,2019-11-20,"Der beste Weg, um Ihre Passwörter sicher zu speichern und zu verwalten.","Eines der Dinge, die Sie an Lastpass mögen, ist die einfache und intuitive Handhabung der grafischen Benutzeroberfläche, mit einem Abschnitt über die verschiedenen Dateitypen, die zu den verschiedenen Websites und Konten passen, die Sie als Benutzer besitzen und die jede Art von Informationen auf eine Art und Weise speichern möchten, die sicher ist. Darüber hinaus gibt es Plugins für Chrome und Firefox, die sehr gut funktionieren, ohne dass Sie die Seite und Ihre Zugangsdaten eingeben müssen. +","In seiner Desktop-Version für Windows gibt es wiederkehrende Fehler, die ein gewisses Risiko für die Integrität Ihrer Daten darstellen können. Wenn Sie ein falsches Master-Passwort eingeben, greifen Sie immer noch auf die Anwendung zu, aber die Daten erscheinen mit zufälligen Zeichen, was nicht geschehen sollte, denn wenn das Passwort falsch ist, sollten Sie in keiner Weise innerhalb der Anwendung zugreifen. Dies ist ein Fehler, der immer auftritt und in den verschiedenen Updates, die sie durchgeführt haben, nicht behoben wurde. + +Review collected by and hosted on G2.com.Recommendations to others considering the product:Lastpass ist eine sehr komplette Software, um alle Informationen zu speichern, die Sie privat und außerhalb der Reichweite von neugierigen Blicken aufbewahren möchten. Meine Erfahrungen mit diesem Tool waren sehr zufriedenstellend, denn die bloße Verwendung der kostenlosen Version ist mehr als ausreichend für meine Grundbedürfnisse an der Speicherung von Berechtigungen und Notizen, die den Konten entsprechen, die ich in meiner täglichen Basis verwende. Wenn Sie also ein regelmäßiger Benutzer sind und eine Anwendung benötigen, die den Schutz Ihrer Daten an einem Ort gewährleistet, dann ist dies eine gute Option für Sie. Das bedeutet auch, dass die kostenpflichtige Version noch mehr Funktionen bietet, die es wert sind, bei Bedarf genutzt zu werden. +","Ich habe Lastpass für meinen persönlichen Gebrauch verwendet, um Passwörter und Notizen sicher zu speichern, ohne mir jede der von mir verwalteten Zugangsdaten merken zu müssen. Die Software hat die Möglichkeit, meine Notizen und Passwörter auf einer zentralen Plattform zu speichern, wo ich schnell und ohne erneute Schlüsseleingabe auf meine Konten zugreifen kann. Lastpass hat mir geholfen, meine Notizen zu verwalten, die ich jederzeit schützen muss, und gleichzeitig sind sie auf jedem Gerät, das ich verwende, zugänglich, ohne dass sie im Klartext in meinem Telefon oder Büro gespeichert werden müssen, da dies eindeutig einem Diebstahlrisiko meiner Informationen ausgesetzt ist. +",9.0 +746,lastpass,Ben C,Mid-Market,2019-11-18,Serious Time Saver!,"I have no idea what most of my passwords are anymore. I have hundreds of passwords and LastPass manages and pre-fills them for me. It also allows me to have very complex passwords since you don't need to type them. + +Great way to share credentials amongst a team or even you family! + +Linking your corporate and personal accounts is great. ","Admin console doesn't support Okta SAML authentication. + +I wish there was a way to void a users session after a period of time between the options of upon browser close and never. Some short period of time should be an option as having a user enter their master password every time entering a browser will frustrate users and lead to low adoption while never voiding the session is a security risk and leads to some user administration limitations when new administrators are brought onboard. ","Giving our users the ability to store passwords security to eliminate the reuse of passwords, the amount of forgotten password requests and hopefully increase complexity of passwords. We're likely going to eliminate our password change requirement and increase complexity requirements. ",10.0 +747,lastpass,Kris O,Small-Business,2019-11-18,Solid password management solution w/ some improvements needed,It works on almost every website. It's easy to shut off users or change access. The google chrome plugin saves a lot of time increasing the usability of the product. Fill forms and menu are also available by right-clicking in the browser which adds to the ease of use.,"The UI/UX could be better between the different areas of the platform as some actions aren't intuitive and can confuse users. Admin dashboard and shared folder actions are different in user vs admin areas. Shared folders aren't intuitive and when you invite a ""group"" all users don't get an email invite even though it says it does. Adding users has two options between invite new and invite existing but you can select both, why?","Having your passwords in one place, easily managed, and the ability to turn off passwords is a huge help. The security that LastPass brings in the real win, if they could up-level the UI/UX it would be the best product out there.",7.0 +748,lastpass,Matthew M,Small-Business,2019-11-18,Lastpass saves a lot of time and gives users an added layer of security.,The most helpful aspect is having all your passwords in one place. It's also very easy for clients to share passwords. The ability for our clients to update passwords on their end and not disable access for our staff saves a huge amount of time. ,"The biggest dislike about Lastpass is how the passwords are organized. If you don't select a folder to add the password to, Lastpass just generates a separate folder. We need the ability to create a new sub-folder and rename the password through the Chrome extension. ","Clients really like that they are able to share encrypted passwords. Especially with financial data and bank account logins, people are understandably cautious to give out their usernames and password. Lastpass provides a solution to this. ",8.0 +749,lastpass,Missi C,Small-Business,2020-06-01,Streamline Password Management & Tool Sharing Among Teams,"The admin console makes it easy to create folders, grant team access, maintain password difficulty and monitor team access.",Nothing major to share about a dislike yet.,"We're able to provide access to subscriptions and tools across many teams, easily grant access or rescind. No more spreadsheets with logins being shared in email.",10.0 +750,lastpass,Jeff R,Mid-Market,2020-01-31,Poor User Experience,"Solid enterprise administrative features, cloud-native, SSO support, MFA support, local-only decryption of user Vaults, and the ability to pair personal and Enterprise accounts.","The experience for end users is poor at best. The browser extension is very fragile, and frequently breaks so that users cannot log in without closing all tabs and windows, and fully resetting their browsers. Running as a local browser extension that imitates a webpage, many of the behaviors are unintuitive (such as a page-refresh not refreshing the data). The extension also does a poor job of indicating when items have been synced to the cloud, which can result in data loss in some circumstances.Onboarding a new global administrator is also a difficult and fragile process. Due to how LastPass secures user Vaults, a new administrator with the ""Reset Master Password"" permission may not be able to reset the password on users who infrequently use LastPass (which are the users most likely to require a reset).Additional features for MFA and SSO exist, but since the user experience is so bad, we have been deeply reluctant to integrate LastPass into our infrastructure.","Basic functionality exists. Users can generate complex passwords, save their passwords, and participate in security audits to improve their password strength.",4.0 +751,lastpass,Dana R,Small-Business,2019-11-14,"The Simplest, Most Reliable Butt-Saving Service On The Planet","It's the biggest lifesaver on this planet. And, no, I'm not kidding. I would be so lost without LastPass. They have saved my butt on countless occasions - online and mobile. All it needs is my fingerprint and well, that's something that I'm totally willing to give them at this point. The ease of use, the complexity - yet simplicity, the security, the ability to use complex passwords (and stop using the same 2 that I've always used)... all of it, it's just a no-brainer and a yearly expense I'm delighted to part with. + +Their Chrome extension is invaluable and makes logging in to websites so smooth. It's refreshing to have a helper like LastPass, knowing that if my always-churning brain decides to blank out, I've got a backup source of support with them. I regularly clean out my vault and that helps lower the potential confusion during login, especially if the site has changed their url, or if you've changed/updated your login/pass. ","Can't say that I have a dislike. It's served me well, and reliably, for over 5 years. ","The greatest benefit is accessibility, I'd say. I can access LastPass wherever I am, regardless of device I'm using. I keep my master password updated, strong and long so that gives me the confidence I need to use LastPass in ways that free my mind, so to speak. ",10.0 +752,lastpass,Jim M,Mid-Market,2020-03-07,"Multiple passwords, users, browsers, platforms","Generates, stores, even shares passwords across multiple browsers on my Mac, Android, Chromebook, and PC. Also supports ""secure share"" so the recipient can use the password but not see it.","Does not support generating or sharing TOTP codes for sites. Sometimes interferes with browser's built in password management. On Android, sometimes gets confused about which fields are actually usernames/passwords.","I only need to remember my own password. All other passwords are auto-generated 16-24 characters strong, and auto-filled. I can even share those secure passwords with my coworkers or family.",10.0 +753,lastpass,Verified User (Anonymous),Mid-Market,2020-12-24,Easy easy and easy,"Intuitive, secure and centralised place for me",Love the accessibility once I have signed into to use my passwords,Extra security within our company,10.0 +754,lastpass,Marcus F,Mid-Market,2019-11-09,"As the name implies, this is the very last password you'll need to remember","Above all, LastPass is reliable, and that's exactly what you need from a password manager. +I like the combination of web-page vault, browser extension for auto filling passwords as well as phone and tablet apps, all of which make storing and retrieving passwords almost seemless across every platform/device that I use. I also love being able to share passwords with others.",LastPass could use a UI refresh to make their visuals seem a little more modern. It could also use a little bit of a UX refresh on the password sharing feature - to make it more obvious and easy.,"LastPass means that you don't have to write down or store passwords anywhere that isn't secure, accessible anywhere or backed up. +LastPass allows you to access and/or use your passwords from any of your devices at any time, with or without an internet connection, always knowing that your data is safely backed up and never accessible to anyone who has no authority to use your device - especially a thief.",10.0 +755,lastpass,Verified User (Anonymous),Small-Business,2020-08-27,Long time Personal User; Recommended & Deployed for Business,"Secure, cloud-based, easy/intuitive interface, easy of administration & maintenance",I can't really think of anything I don't like.,"Control over business/customer accounts (VPN, servers, etc.) as well as software licenses and ""common"" accounts",10.0 +756,lastpass,all videos R C Rashid Hassan C,Enterprise,2019-11-06,LastPass: The final destination for your all passwords.,"d Hassan C.Assistant Manager (Technical)Enterprise(> 1000 emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerVerified Current UserReview source: G2 inviteIncentivized ReviewNov 06, 2019(Original Sep 24, 2019)""LastPass: The final destination for your all passwords.""Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemov","hid Hassan C.Assistant Manager (Technical)Enterprise(> 1000 emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerVerified Current UserReview source: G2 inviteIncentivized ReviewNov 06, 2019(Original Sep 24, 2019)""LastPass: The final destination for your all passwords.""Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo","prise(> 1000 emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerVerified Current UserReview source: G2 inviteIncentivized ReviewNov 06, 2019(Original Sep 24, 2019)""LastPass: The final destination for your all passwords.""Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo",9.0 +757,lastpass,all videos J B Jason B,Small-Business,2019-11-05,Control Password Management for Contractors and Employees," B.Small-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerReview source: OrganicNov 05, 2019""Control Password Management for Contractors and Employees""Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemov","on B.Small-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerReview source: OrganicNov 05, 2019""Control Password Management for Contractors and Employees""Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo","tactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerReview source: OrganicNov 05, 2019""Control Password Management for Contractors and Employees""Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo",7.0 +758,lastpass,Bernardo B,Mid-Market,2020-07-05,Great product for putting yourself together and maintaining higher security levels,Nice sensitive information manager. Generating passwords is easy and you can select criteria involved. You can use the app in groups or teams.,"UX/UI needs to be improved, since the platform is not very intiutive. Some times it doesn´t capture automatically your new passwords, so be sure to copy it somewhere else until you are sure Lastpass recorded it.",Centralizing password management for a company and individuals.,7.0 +759,lastpass,all videos A T Alexis T,Small-Business,2019-11-04,Mostly user friendly a little clunky,"s T.Customer Success ManagerSmall-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerVerified Current UserReview source: Seller inviteIncentivized ReviewNov 04, 2019(Original Aug 15, 2019)""Mostly user friendly a little clunky""Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemov","xis T.Customer Success ManagerSmall-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerVerified Current UserReview source: Seller inviteIncentivized ReviewNov 04, 2019(Original Aug 15, 2019)""Mostly user friendly a little clunky""Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo","or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerVerified Current UserReview source: Seller inviteIncentivized ReviewNov 04, 2019(Original Aug 15, 2019)""Mostly user friendly a little clunky""Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo",7.0 +760,lastpass,Bozena T,Enterprise,2019-10-26,LastPass is now useful for password maintenance,"LastPass is innovative technology program that is very helpful in maintaining and recording all passcodes as well as login IDs. I don't have to recall all my passwords and user IDs that were complicated before this software arrived with this awesome application now. In addition, through its multitude of capabilities and features, I can easily supply multiple credentials that make my work easier and more convenient in the longer term.","For me the service is a significant blessing to have my passwords on one location and in order to save both my energy and my time by making excellent files. There's therefore nothing that matters to me about this good or service, but it doesn't matter much that the work of this application sometimes gets lent.","The software has two fully secure verification features that allow safety with finger prints, Face ID, and many more for the device to be available in terms of competence. + +This software's master password facility allows me to retrieve my passwords even if I have forgotten them or if I do not all have access. This item is therefore extremely useful to work every day on various applications, where password ID and login are required.",9.0 +761,lastpass,Verified User (Anonymous),Small-Business,2020-09-09,Convenient for team management,Team sharing features are useful and efficient.,Sometimes glitches in folder names—would benefit from a way to remove some shared items.,Can delegate use of passwords without sharing passwords,8.0 +762,lastpass,Verified User (Anonymous),Small-Business,2020-10-12,Easy to manage passwords from anywhere.,"I like the ability to access my passwords if needed from any location and easily editable, and overall simple to use.","Duplicate sites (CC's), are more difficult to manage when same product.",Password Security in one location and Curability. I have passed on my credentials in case of death.,10.0 +763,lastpass,Jason B,Small-Business,2019-10-23,Best of the worst,I like the ability to share passwords with team members with out actually giving them the password and with out them or me having to remember all the passwords to all our software platforms.,"The software is buggy. I often share a password yet my team members cannot log in, or the password I share comes across blank. We often have to delete the password share then re-share it.","The benefit of it is that you do not have to remember all your passwords for your multiple sites as well as you don't have to share the actual password with contractors or team members in the event they quit or leave you, you can remove them and not really worry that they have your password. Although there is a way to hack it and get the password but I won't put that out here on the internet.",5.0 +764,lastpass,Alexander Jr T,Mid-Market,2019-10-16,The best way to securely store and manage your passwords.,"One of the things that you like about Lastpass is its easy and intuitive handling of its graphical interface, with a section of the different types of files that fit the different sites and accounts that you as a user own and want to store any type of information in a way s Sure. The implementation of its application in the different environments is very complete since it has a mobile version, desktop app and its version of web browser. In addition to this it has plugins for Chrome and Firefox which work very well without having to enter the page and enter your credentials.","In its desktop version for Windows there are recurring bugs that may present some risk in the integrity of your data. When you enter an incorrect master password you still access the application but the data appears with random characters, something that should not happen, because if the password is wrong you should not access in any way within the application. This is a bug that always appears and has not been fixed in the various updates they have pushed.","I have used Lastpass for my personal use, in storing passwords and notes securely without having to memorize each of the account credentials I manage. The software have the ability to store my notes and passwords on a centralized platform, where it allows me to access my accounts quickly and without having to re-enter keys over and over again. Lastpass has helped me to management my notes that I need to have protected at all times, and at the same time they are accessible on any device I use, without the need to have them stored in plain text in my phone or office since this clearly faces a risk of theft of my information.",8.0 +765,lastpass,Julia G,Small-Business,2019-10-13,"Aunque siempre se me olvidan las claves, con Lastpass no tengo problemas para entrar en mis cuentas ","LastPass is a very complete application that helps to save the passwords of the pages, its extension in Chrome makes my life easier, its interface is very nice. +I keep my keys and that of my friends, it has many facilities of which my favorite is ""My vault""","So far the application has been very useful and has not generated problems in its use. +It would be very interesting if there was the option to create a profile for a secretary in order for them to manage the keys by accessing with their own profile and thus control when they enter and when the original user enters.","Currently I use more than 15 applications and pages to develop my work as a freelancer, so I was having trouble remembering all the keys. +Now that I use this application from LastPass I have worked more calmly and with confidence",7.0 +766,lastpass,Ann G,Small-Business,2019-10-03,Brilliant keeper of passwords,"I love that LastPass securely keeps all of my website passwords in one spot, across all of my devices... phone, tablet, PC. Easy to use, and I like how I can organize my passwords by category. Ex: shopping, finances, kids etc. ","Although LastPass ensures that my passwords and account information are secure, I am still a bit hesitant to keep all of my sensitive information on the web / in the cloud.","I used to keep all of my passwords on a sheet of paper in my office, which was great if I was searching for a password in my office. I would not have access if I were out of the office. LastPass travels with me, so I can access my info ANYWHERE with one log in. Note: Do not forget your master LastPass password to log into the app!!!",10.0 +767,lastpass,Berit T,Mid-Market,2019-12-17,LastPass ist jetzt vorteilhaft bei der Verwaltung von Passwörtern.,"Einige der Funktionen, die Sie am meisten an Lastpass mögen, sind die einfache und unkomplizierte Verwaltung der grafischen Benutzeroberfläche, die einen Abschnitt der verschiedenen Arten von Dateien enthält, die mit den verschiedenen Websites und Profilen, die Sie als Kunde besitzen, verknüpft sind. Die Software ist unter verschiedenen Bedingungen vollständig implementiert, da sie über ein Smartphone-, Laptop- und Webbrowser-Modell verfügt. Es gibt Plugins, die für Chrome und Firefox sehr gut funktionieren, ohne auf die Website zuzugreifen und die Zugangsdaten einzugeben.","Wiederholte Störungen waren in der mobilen Version von Windows enthalten, die ein Risiko für Ihre Datensicherheit darstellen können. Wenn Sie ein ungenaues Master-Passwort eingeben, können Sie die Datenbank öffnen, aber die Informationen werden in zufälligen Zeichen angezeigt, dies sollte nicht geschehen, da Sie keinen Zugriff darauf haben sollten, wenn der Code falsch ist. Dies ist ein Problem, das bei den verschiedenen von Ihnen eingereichten Änderungen immer vorlag und nicht gepatcht wurde.","Um Tonnen von Passwörtern und Informationen zu verarbeiten, habe ich Lastpass für meinen eigenen Gebrauch verwendet, ohne einen der Schlüssel für mein Profil packen zu müssen. Die Technologie ist in der Lage, meine Notizen und Passwörter auf einer zentral gesteuerten Plattform zu speichern, so dass ich mich schnell direkt mit meinen Konten verbinden kann, ohne Schlüssel neu eingeben zu müssen. LastPass hat mir geholfen, meine Notizen zu bearbeiten, die ich jederzeit schützen möchte, während ich auf jedem von mir verwendeten Smartphone verfügbar bin, ohne sie im Klartext auf meinem Handy oder im Büro speichern zu müssen.",9.0 +768,lastpass,Donald C,Enterprise,2019-12-13,LastPass is now beneficial in managing passwords,"Some of the features you like most about Lastpass is its simple and straightforward management of the graphical interface, which includes a section of the various types of files that tie in with the various sites and profiles you own as the client. The software is fully implemented in different conditions because it has a smartphone, laptop and web browser model. It has plug-ins that function very well for Chrome and Firefox without accessing the website and entering the credentials.","Repeating glitches were contained in its mobile version of Windows which may pose a risk for your data security. When you type an inaccurate master password you can open the database but the information is shown in random characters, this should not happen, since you should not have access to it in any manner if the code is wrong. This is a problem that always existed in the various changes you submitted and was not patched.","For processing tons of passwords and information, I have been using Lastpass for my own use without having to pack any of the keys for my profile. The technology is capable of storing my notations and passwords on a centrally controlled platform, so I can rapidly connect directly my accounts without re-entering keys. LastPass aided me handle my notes, which I want to protect all of times, while being available on any smartphone I use, without having to store them in plaintext on my mobile or office.",9.0 +769,lastpass,Tyler G,Mid-Market,2019-10-05,"I'd never go back, but could be improved",I love how much time LastPass saves me every day and how convenient it is to sign in most of the time. ,"I don't like that sometimes the auto-fill is buggy and LastPass is often slow. It could be more intuitive to operate, but overall it's pretty good. Sometimes the auto-fill/popup windows are annoying or wrong and managing equivalent domains is extremely cumbersome.",Making sure all passwords are different and secure. Saving time signing in. LastPass makes sharing passwords easier and it makes signing in on a mobile device faster most of the time. ,8.0 +770,lastpass,Jordan T,Mid-Market,2019-12-12,La mejor manera de almacenar y administrar su contraseña de forma segura,"Una de las cosas que te gusta de Lastpass es el manejo fácil e intuitivo de su interfaz gráfica, con una sección de los diferentes tipos de archivos que se adaptan a los diferentes sitios y cuentas que tienes como usuario y que quieres almacenar cualquier tipo de información de una forma segura. Además tiene plugins para Chrome y Firefox que funcionan muy bien sin tener que entrar en la página e introducir tus credenciales.","En su versión de escritorio para Windows hay errores recurrentes que pueden presentar algún riesgo en la integridad de sus datos. Cuando se introduce una contraseña maestra incorrecta se accede a la aplicación pero los datos aparecen con caracteres aleatorios, algo que no debería ocurrir, ya que si la contraseña es incorrecta no se debe acceder de ninguna manera dentro de la aplicación. Este es un error que siempre aparece y no ha sido corregido en las diferentes actualizaciones que han empujado.","He utilizado Lastpass para mi uso personal, para almacenar contraseñas y notas de forma segura sin tener que memorizar cada una de las credenciales de cuenta que administro. El software tiene la capacidad de almacenar mis notas y contraseñas en una plataforma centralizada, donde me permite acceder a mis cuentas rápidamente y sin tener que volver a introducir las claves una y otra vez. Lastpass me ha ayudado a gestionar mis notas que necesito tener protegidas en todo momento, y al mismo tiempo son accesibles en cualquier dispositivo que utilice, sin necesidad de tenerlas almacenadas en texto plano en mi teléfono u oficina ya que esto claramente conlleva un riesgo de robo de mi información.",9.0 +771,lastpass,Verified User (Anonymous),Enterprise,2020-08-28,LastPass Password Store and SSO,Easy to store password store.Life cycle management of users is straight and simple.Securely able to store passwords and pass phrases and root account inrmation.,Password reset is hard. Otherwise it has been a no problem tool.,Password store solution we are using LastPass.,8.0 +772,lastpass,arlee e,Small-Business,2019-09-25,LastPass saved my life,"You only have to remember one password and last pass saves the rest of your passwords for you. Plus they are accessible from any device as long as you know your password!! (key, remember that one password)","The only thing I would say about laspass that has disappointed me is that sometimes it does not update passwords in the system, or ""ask to update"" and I can't get in with my new password because I cant remember it.","I'm solving efficiency problems, if I had to remember every password I created i would have to write them all down! (and that's not secure in the slightest) I recently got a new computer and it was easy to transfer all my secure website logins because I just had to login into my last pass and then launch my sites. very simple",10.0 +773,lastpass,Marius K,Enterprise,2019-12-08,Benutzerfreundlicher Passwort-Manager,"LastPass hilft mir, meine Geschäftskonten-Benutzernamen und -Passwörter an einem Ort zu organisieren und gleichzeitig eindeutige, sichere Passwörter für jedes Konto zu haben. Es ist Cloud-basiert, deshalb liebe ich es, es sowohl auf meinem Handy als auch auf dem Desktop nutzen zu können. Ich liebe auch den Abschnitt Secure Notes, wo ich einfach zufälligen Text einfügen kann, an den ich mich erinnern muss, den ich aber sichern möchte. Ich schätze auch die Multi-Faktor-Authentifizierung und die Tatsache, dass sie sich mit YubiKey verbinden, ist fantastisch. Extra Sicherheit!","Die Browsererweiterung hat eine andere Benutzerfreundlichkeit als die mobile Version, so dass ich manchmal überall nach etwas suche (z.B. ein Passwort generieren). Ich denke, dass die mobile Version intuitiver ist als die Desktop-Version.","Wie man Passwörter sicher, geschützt und alles an einem Ort aufbewahrt. Nicht nur für mich, sondern auch für die Menschen, mit denen ich arbeite, deren Konten oder privilegierte Informationen ich sicher speichern muss (z.B. die Kreditkarteninformationen meines Chefs). Zugegebenermaßen braucht das Setup einige Zeit, aber sobald Sie das getan haben, ist es ein Kinderspiel, auf Ihre Konten zu gelangen.",8.0 +774,lastpass,Lavar B,Small-Business,2019-11-26,A Life Saver,"I like how the sites are broken into different categories. The red indicator on the right side of chrome let's you know if you sign in or not. Now if you're aren't able to create one, it cool they have a password generator for the complexity. We all know sometimes we aren't able to really get a complex password especially one that we would remember. ","I think notications would be one. For example, sometimes, I would like it not to ask all the time and there are some site that are the same but with different passwords and it ask me to update them even though the user name is different",We was using sheets for our passwords,10.0 +775,lastpass,Verified User (Anonymous),Small-Business,2018-01-03,Never forget or lose your passwords again,I can securely store client or personal information and easily access it whenever I need it. ,"Sometimes linking to sites directly with a password does not gain me access, so i have to manually enter information in.","I never need to worry about forgetting or losing a username, password, credit card, or other piece of personal information for my clients. ",10.0 +776,lastpass,Dave N,Enterprise,2018-02-07,So easy,LastPass is just so easy to use. I love the simplicity and browser integration.,"Sometimes when I generate a password for a site, it doesn't save it properly in my vault",So many generic accounts and admin account to manage - it's just so much easier when they can be hyper-random (and therefore more secure) and I don't need to worry aout remembering any of them.,9.0 +777,lastpass,Verified User (Anonymous),Small-Business,2018-01-29,Simple and flexible security.,"The installation, setup, and adoption have been very easy and straightforward. We like that it stores all of our passwords and sensitive notes, and we can make folders to share them with selected individuals.","So far, nothing! It's met all of our requirements.","We realized that our password and CC info handling was not as secure as it should be, which is why we evaluated and ultimately adopted Lastpass.",10.0 +778,lastpass,Verified User (Anonymous),Mid-Market,2017-12-27,My Whole Life is Organized!,It is SO EASY to use. I've used the browsers built in password keeper in the past but it is nothing in comparison. And when I transition from work computer to home computer or to mobile it is so simple to switch accounts.,I just wish that the mobile integration was more like the desktop integration.,"It makes my day a lot easier, we have a ton of shared accounts and I don't need to go searching for passwords. The time savings is unbelievable.",10.0 +779,lastpass,Phil K,Small-Business,2017-05-26,Easy to use + great tool for secure credential sharing with clients,"It is a great tool to offer to clients as a secure way for them to share sensitive credentials with us. It seems much more professional than asking them to send over email, and it's great to go back and find passwords shared weeks/months before.","The only two short comings I have: 1.) I wish our entire team had access to our clients shared passwords, or perhaps an admin could at least distribute shared passwords to other members on the team. 2.) The constant notifications to add site to LastPass can be quite aggravating when I'm browsing the web away from work, and don't want to add any of my personal sites to LastPass. ","Quicker and safer way of having clients share their sensitive credentials with us. Main benefit is that you can always go back and find credentials, where the alternative (seeking through emails) can be quite difficult and time consuming.",8.0 +780,lastpass,Verified User (Anonymous),Mid-Market,2017-10-24,Game Changer,LastPass has revolutionized not only the way I protect information but also the way I craft it. I now generate random passwords that are more difficult to crack. It keeps my information secure and all in one place. ,"It can be nerve wracking to put all your passwords into one place. If that is hacked, it would be big trouble. It’s important to regularly run audits and to change up passwords to keep things extra safe and thankfully this tool does make it easy for that to happen. ","Working across a large team with many services, it can be difficult to remember all the username and passwords we are given. Not to mention, we travel for work which means we have to have gain access on the go. LastPass makes that possible. ",10.0 +781,lastpass,Michael L,Small-Business,2017-10-01,Why did it take me so long to start using this?!,"Simple, secure, and organized. LastPass provides a single ""vault"" for all of your passwords for all of your services. In addition to the security, it is helpful to know the URLs of all the most important sites you use every day. ","The iOS app is decent but doesn't integrate directly with any applications. This means you have to jump back and forth between apps on your phone, whereas everything is seamless within the browser experience with the Chrome plugin. ","Saving time, securing passwords and keeping organized. ",10.0 +782,lastpass,Verified User (Anonymous),Small-Business,2017-11-08,Password Management for a busy world!,Last Pass is fairly easy to use and has a mobile app that allows you to verify your identity quickly. The mobile app is nice because there are no codes to enter and you just tap the button to verify and it is quick. It is nice to know that my passwords are all safely stored.,The browser plug in is a really nice feature but it can be really slow sometimes. Sometimes it takes multiple clicks to get it to open and then sometimes it interprets the second click as a request to close. Minor inconvenience and it is a good tool overall.,"LastPass allows our company to be compliant with various regulations and insurance standards that require various levels of security around how business password information is stored. For example, LastPass allows us to set rules about multi-factor identification.",10.0 +783,lastpass,Verified User (Anonymous),Small-Business,2018-03-31,Lastpass - 1 password you need.,No need to memorize passwords. Also I can use different pws for each new site.,Mobile app. Sometimes doesn't save automatically,"More secure pws, also easy sharing",7.0 +784,lastpass,Verified User (Anonymous),Mid-Market,2017-08-04,My most faviorite app of all time! ,What's not to love about LastPass. It has made transitioning from my work office to home office seamless. I use it in my personal and professional life and I even have the app on my phone. I was nervous abotu using a single sign in app but I feel safe with LastPass. ,"Honestly, there is nothing I dislike about LastPass I can't say one bad thing. I have been using it for almost 2 years and have not one bad thing to say. All of my employees love it. I don't often use apps that I use at work at home but this is one that I do! ","All you have to do is remember one strong password to keep your password vault safe and secure. Once you login to your vault, you have access to all of your logins. It makes it easy to share passwords and login credentials with your coworkers or spouse. ",10.0 +785,lastpass,Verified User (Anonymous),Mid-Market,2017-12-07,Increased security online,"I love that LastPass keeps all of my passwords in one place and will help to create ultra secure passwords. In the past I would, like most people, use the same password and username for many sites so I could easily remember them. With LastPass I just need to know one password and it helps me with get to the rest. It also allows me to organize the sites by the type that they are.",The only thing I dislike is that a few times I have changed a password but it didn't save correctly (user error) into LastPass and I had to reset the password again.,Having secure logins is important. LastPass has helped me to increase the security when logging into many sites.,8.0 +786,lastpass,Verified User (Anonymous),Enterprise,2018-03-09,Password locker,The app is designed In a way that it can store multiple passwords for multiple sites.,Should be able to use this app in Chrome incognito mode.,No longer have to remember passwords.,10.0 +787,lastpass,Verified User (Anonymous),Small-Business,2018-01-18,"This app is required, as far as I'm concerned","Simply enough, I like that I don't have to remember my passwords anymore. ","LastPass occasionally fills fields on certain websites that aren't actually password or login fields. This can be quite annoying, but it's only 1% of the time.","Saved a lot of time, and I believe there is an option to share passwords with your team as well, which i've yet to take advantage of. ",10.0 +788,lastpass,Isaul C,Small-Business,2017-10-19,Great for managing passwords,I love the ability to keep all my passwords up to date and available at will.,It has a bit of a learning curve which could discourage some new users.,"I don't have to worry anymore about coming up with new passwords, or even remembering several passwords. I can also safely share access to accounts as well as storing important documents.",10.0 +789,lastpass,Verified User (Anonymous),Small-Business,2018-04-05,A great time saver,I like the fact that all of my passwords are able to be kept in the same place.,I don't have too many dislikes of the software - I dislike how many passwords I have. lol,"We are solving the issue of password management, at the present time I'm using the application personally, but I want to deploy to my team for shared password management.",8.0 +790,lastpass,Verified User (Anonymous),Small-Business,2018-04-26,Fast and secure,"The best thing is that we have all the passwords in one place and with it you feel safe every day, act quickly when it comes to inserting all of details.","The price when we went to renew, they should have some discount for old customers. ",The safety and speed with which you work,9.0 +791,lastpass,Verified User (Anonymous),Mid-Market,2017-10-06,LastPass Review,"I love being able to access my passwords across devices and platforms, and seamlessly access them while using a variety of websites. ","I have found some sites do not save accurately, though this tends to only occur when login screens include multiple fields (e.g., email, username, password) and the wrong field is saved. ","Having access to my passwords prevents me from entering multiple wrong attempts, therefore not having to reset passwords as often. ",9.0 +792,lastpass,Nathan W,Small-Business,2017-07-28,Lastpass is a my first recommendation for password security ,"My favorite thing about LastPass is how easy it is to remember to use it. With my experience with other password systems, it is up to you to remember to save everything. Whenever Lastpass detects I am entering in a new login on a site, it offers to add it to my vault . + +Another great feature is the auto password change. On several big sites, Lastpass can change your password for you (only with your permission and you have to tell them to do it). It is a great way to keep those important accounts secure.","The only real issue I have had is sometimes the plugin gets in the way website forms. However, they can't program it to work on every possible site, so I will let it slide.","Between generating secure passwords to give to people when I set up accounts, to keeping confidentail info secure, Lastpass is a must have for me.",10.0 +793,lastpass,Verified User (Anonymous),Small-Business,2018-04-25,WOW where has this been my whole life,Stores all my password in one place and in a secure manner. Can share passwords and username with other people using LastPass.,Have not found anything yet. This is a great product ,I can log into things quicker and dont lose any passwords when I clean out my history. ,10.0 +794,lastpass,Madhu S,Small-Business,2017-07-27,Lastpass - It's like a separate brain for all your passwords!,"With websites getting hacked all the time, you really need to create a different password for each site. That way, if a site gets hacked, you won’t have to worry about the hacker using the same stolen password on other websites to get into your accounts. Remembering a different password for every site is impossible, especially if you want to make the password secure by using special characters. Lastpass to the rescue!Lastpass will generate a secure password for you. The password will be gobbledygook, which makes it very hard to hack or guess. The password is different for every website.When you return to the website, Lastpass will recall the password for you, allowing you to login in seconds. For many websites, it can even login automatically which saves you from doing anything.Once you use lastpass, you will wonder how you lived without it!Other features:1) Form fillYou can set up profiles with all your details allowing Lastpass to automatically fill in online forms for you.You can even set up profiles for obscure details.You can switch between profiles, which is handy if you have multiple email accounts or phone numbers.2) Automatic password changingFor certain sites, Lastpass will automatically change your password.This makes it a breeze to change your passwords on a regular basis, which is a good way to keep secure. 3) Alerts when a website has been hackedIf a website is known to be hacked, Lastpass will alert you to change your password (and in some cases it will do the change automatically) 4) Hardware authentication Lastpass can be linked to a hardware device such as your mobile phone.That way, in order to login to your account, you will need your mobile, which keeps your account very secure. 5) Password sharingYou can share passwords. This is very useful in an office where multiple people might have access to the same website.6) Excellent interfaceThe interface is very streamlined. It automatically pops up when you need it and then disappears when you don’t.7) MultiplatformLastpass works on all platforms including Windows, Mac, Android. On mobile, it can even work with apps, which is a big time saver.8) Password auditLastpass can audit your passwords to search for insecurities (such as duplicate passwords, old passwords or hacked passwords) 9) It’s freeRemarkably all these features are free (apart from Password sharing which is only in the premium plan).","Lastpass has one disadvantage. On certain websites it can forget to save the password you created, which lock you out of the site. This is very rare, but it is annoying when it happens. As a work around you can choose to copy the password to your clipboard when it is created. That way, if it forgets to save the password, you can just paste it back into its database of your passwords.","I use Lastpass at work to remember all the passwords I use for various websites. +I could not imagine working without it. It keeps me safe and secure. It also saves time, as I don't have to remember passwords. + +It also saves time when filling in forms.",10.0 +795,lastpass,Verified User (Anonymous),Mid-Market,2018-01-31,Never forget your passwords again! ,Lastpass can automatically save your passwords so you can easily log onto websites with maximum security! ,"Sometimes you have to log into the actual LastPass website... slightly annoying, but very worth it to have all passwords saved automatically ",Better security! Easier to log onto platforms with very secure passwords so you don't have to remember them ,10.0 +796,lastpass,Verified User (Anonymous),Mid-Market,2018-05-17,Great experience for a free app,It is free way to securely hold passwords and other sensitive information,"The phone and browser app can be a little clunky and un-intuitive, the design could be improved.",It allows me to generate secure passcodes to protect my data.,9.0 +797,lastpass,Victoria Z,Small-Business,2017-07-31,My brain is very grateful for LastPass - too. many. passwords.,Ease of use. Auto-populating passwords is the most important thing for me as a social media manager. I need to log into many accounts in a day and having that speed is super important.,Sometimes it seems to malfunction and not auto-populate. I think anything I don't like is probably my own fault though for messing things up.,"I work with lots of clients and their social media accounts, so I HAVE to have something like this. I know there are other options for similar programs, but LastPass has never given me a reason to consider jumping over to a different one.",10.0 +798,lastpass,Verified User (Anonymous),Enterprise,2018-05-01,LastPass Review,I like the simplicity of the design and the ease of inputting the account information.,"Sometimes searching for the right account details can be painful, especially if the name is not easily memorable.",It provides quick access to servers that saves me time during my day.,9.0 +799,lastpass,Verified User (Anonymous),Small-Business,2018-03-28,Best application to share password securely,Its simple interface easy to use for technical person. Fast transmission of passwords and secured notes as well,Not so simple to use for Non-IT person. Training required to teach them about this. ,Sharing password securely. Lot of benefits but one of the main is security and transparent process to share the password,10.0 +800,lastpass,Muhammad Fahad B,Small-Business,2019-07-22,Hassle free sign-in to services you use without remembering random strings,"I switched to LastPass after giving up on Keeper (a really versatile but expensive alternate). As with every password manager, it allows you to generate passwords and store them. However, the service is available on every major platform and browser and the auto-fill experience is a breeze especially on Android. It even allows you to evaluate all your current passwords, check if they were disclosed in any recent security breach and suggests actions to mitigate any security concerns. And oh, their premium plan is really cheap and one really doesn't even need it. Their free plan includes device sync which many other competitors don't include (Keeper included) and you can use it offline and on multiple devices. ","My only concern is the use of Accessibility Service on Android. Sure AutoFill doesn't works everywhere, but the app gets killed in the background rendering it sometimes useless. Regardless of this, it works great. I use the extension and Windows app regularly without any hiccups.The auto-password change feature needs some adjustments here and there, it sometimes fail. And oh, they can improve the interface (Dashlane has a really great interface).","The biggest of all, I don't need to manually record my passwords. Neither I have to brainstorm to generate unique passwords. LastPass does it automatically and stores them for you and makes it instantly available across all your devices.You can also save your crucial financial documents such as cards and stuff with their storage on Enterprise plans so that's a plus too.",10.0 +801,lastpass,Verified User (Anonymous),Small-Business,2019-11-02,Good password manager as long you don't need your mobile,I still haven't found the perfect password manager but this comes pretty close. Let's you save multiple passwords for a site and you can save tons of other secure notes. ,When adding a password to a shared space it can takes ages for it to propagate and you can never be sure when it will be available to others. Also the interface needs a good think through because sometimes it's just a pain to use. Especially when you try to save a password or a secure note in a specific folder structure. I'm limited to the 200pixel wide window and the folder selector drop-down only shows the first characters of the parent folder... Good luck finding the actual folder you want to save to. ,We're sharing passwords for services that specific project members need access to. ,9.0 +802,lastpass,Verified User (Anonymous),Small-Business,2019-11-14,Best way to manage passwords and stay secure ,I like that LastPass auto-generates passwords so I never have to create my own. It tells me if any of my passwords are the same so I can go in to change them. I like that it gives me a security rating because it makes it seem like a challenge to me so my competitive spirit is ignited and it makes my security practices better. ,"My Chrome plugin gives me some issues. When I try to add a new password it always says something like "" can't complete this task."" Sometimes it actually saves the password and sometimes it doesn't. ","I am a much more secure user. Admittedly, I use to use the same password across some platforms. Now I have complex passwords and don't need to remember them! ",10.0 +803,lastpass,Philippe F,Small-Business,2020-06-11,Awesome password management tool for professional agencies,Easily sharing password and enterprise security tools,Sometimes the Vault is slow. There are no other downsizes.,LastPass deals perfectly with our customer's passwords,10.0 +804,lastpass,essica i,Small-Business,2019-11-20,BEST password manager,I like how on any device lastpass can be accessed. I also have to maintain over 11 individuals passwords for multiple sites and lastpass is a GAME CHANGER!!!,Sometimes depending on browser it will not activate lastpass,Benefits are i feel very secure now when i log into websites. I also like how i dont have to save passwords into the browser itself. ,10.0 +805,lastpass,Javier V,Small-Business,2019-09-06,Password Manager for The World!,"The chrome extension is by far the best feature here. It's so easy to add new passwords and it's pretty neat that it automatically arranges them by type. +We use Airbnb a lot and it's cool all our accounts are filtered under ""Travel""",Sometimes it's confusing to use on top of the Chrome password manager. But you get used to it eventually,Sharing passwords and storing them can get complicated sometimes. We use multiple platforms through our distribution channels and a lot of team members need to access them. Having a one stop shop for passwords is a huge problem fixer.,10.0 +806,lastpass,Masud R,Small-Business,2019-10-29,"Security Fast, All in Last Pass","There i don't use nay tools without last pass. Because i'm very very happy for the security reason. Most likely software. No complain against Last Pass. Also the feature is awesome.... Amazing. +At fist my client asked me to use this tools and i use this with my team and client.","Basically, There is no reason to dislike. All feature is awesome. No complain... Thank you.","Many time we have mostly secure membership to many site. But my team need to work these site. That's why, Last Pass work for me more comfortable and secured. ",10.0 +807,lastpass,D J S,Small-Business,2019-11-19,Couldnt be productive without LastPass!,The auto-fill & auto login feature saves me so much time and increases productivity. ,I cannot say there is anything about LastPass I am unhappy with or would change. ,"Frequency in password changes with the many websites I use on a daily basis as an independent insurance agent, LastPass helps reduce the frustration of not being able to login because I cannot remember what password to use. ",10.0 +808,lastpass,Verified User (Anonymous),Enterprise,2019-09-17,Reliable software to manage your credentials.,"What I like most about Lastpass is its friendly and intuitive menu. Security is elementary in this type of services, and this system has a very secure and user-friendly integration. The email verification option when you connect from a new device is excellent, as this way, you know that no one will have access to your confidential information, backed by Lastpass. Besides, a feature to share information and credentials with colleagues and friends is practical.","Customer support of the service responds slowly, so getting help and solving an issue takes time. Moreover, the installation and configuration process might not be very straightforward, as the action hasn't a clear tutorial.","The advantage that I got with this manager is the possibility of not memorizing large amounts of data like passwords since I also have the service that auto generates a secure password for my related services. Moreover, I am able to share my passwords with colleagues and relatives.",9.0 +809,lastpass,Joel A,Small-Business,2019-08-15,user friendly and secure,"LastPass really simplifies the process of setting complex passwords and not having to remember them yourself. In an environment where end users have anywhere from 10 to 25 passwords and all requiring to be secure and changed frequently, we really needed something to simplify and minimize impact for our end users. LastPass did just that allowing our end users to generate secure passwords for multiple logins and sites while also not requiring them to remember any extra passwords.",Not always able to use my fingerprint on my phone to unlock the application,end users not being able to remember there passwords which in turn takes up time to have them go through and reset them,10.0 +810,lastpass,Abigail P,Enterprise,2019-09-12,Password management is convenient nowadays with LastPass,"LastPass is emerging software in the world of technology which is quite helpful in maintaining and keeping record of all the passwords and login IDs as well. With this amazing application now I don't have to remember all my passwords and login IDs that were complex before the arrival of this application. Furthermore, I can easily generate multiple passwords through its variety of features and functionalities that makes my work easier and convenient in the long run.",For me this product is a huge blessing in order to save my time and energy on remembering passwords by creating excel files to keep my passwords at one place and. So for me there is nothing to care about in this product sometimes the working of this application becomes slower but that's not a big issue.,"This application has full secure two factor authentication features that allow security in terms of proficiency with the availability of thumbprints, Face ID and much more to get into the system. +Master password facility of this application enables me to get my passwords back even if I forgot them or if I don't have access to all of them. Therefore, this product is immensely useful in order to work on daily basis on different applications where there is a requirement of login ID and password.",9.0 +811,lastpass,John R,Enterprise,2019-12-16,Excellent solution to cover all your identities,It is simple to use and easily combines with both the web browser and mobile apps. The option to connect personal accounts to a work email and also have LastPass automatically decide which one is a real time waster with hold credentials in.,"It may take a little while to synchronize updates to other users in datastores, occasionally having to actively clear the buffer or logout / login to have the modified secrets.",Manage a wide collection of personal and business keys. Sharing worker credentials and controlling links to certain pages.,9.0 +812,lastpass,Verified User (Anonymous),Small-Business,2019-11-26,Peace of mind with my passwords in one place (both for me and my employees),"The ability to share passwords to my colleagues securely without sending an eblast as well as the ability to use LastPass on my phone, computer, laptop & iPad.","1) It can be clunky to use on my iPhone, it would be great to learn how to better use it on my iPhone? +2) My colleague initially signed up her personal account and hasn't been able to move it to the business account. We are currently paying for her personal account as well as an account for her business. The business account is still not working. +3) A colleague has the same name as a previous colleague - we haven't been able to get him a business account, so he is using his personal account. Not sure how to proceed on this. +4) Passwords don't save automatically; I've tried to get them to save, it will start and then say invalid response. I contacted LastPass on this and they told me how to fix it. I did what they suggested. It worked, temporarily, and now works off & on. Not sure how to correct at this time.","Our organization is able to more easily share passwords, no more passwords in email. We can also share passwords between departments, which is helpful if multiple people need access to the same information.",10.0 +813,lastpass,Nathan V,Mid-Market,2019-10-02,LastPass- Just Try It!,"LastPass's secure password generation, easy password storage, browser autofill, and mobile app make LastPass an easy and convenient way to manage, change, and store passwords! I no longer use repeated passwords thanks to LastPass!","My one gripe with LastPass is when changing passwords, it seems that there is sometimes an issue with LastPass detecting the password is being changed and it does not get updated in LastPass, sometimes causing me to get locked out of an account. Just be diligent when changing passwords and this is a non-issue.",Saves time logging in and remembering passwords. Reduces likelihood of multiple accounts be compromised. ,10.0 +814,lastpass,Verified User (Anonymous),Small-Business,2020-06-23,Easiest to use password manager,It's easy to create unique passwords for each service and retrieve them securely wherever and whenever you need them.,There are no downsides to using LastPass,LastPass has helped keep my accounts secure,9.0 +815,lastpass,I L Y A S P,Small-Business,2019-09-29,Forget the passwords now and never think about it again,"This is the best tool for keeping all passwords secure and you will never lose it again. +Lastpass provides the extension for most of the browsers and android, ios apps too. Also, it's easy to generate strong passwords and save to the password vault easily. +In the business plan, you can share the password folder to other users in your organization.",There is some issue when updating password for a website where I have multiple logins to the same. ,"Following the benefits, I've realized: +Never forget passwords now +I do not use weak password +Stopped using tool for generating a strong password",9.0 +816,lastpass,Sean F,Small-Business,2019-12-05,LastPass Review,I like how on the login that I am able to have departments of sites.,"Not having the abiltiies to turn it off for repeating sites. Sometimes when I feel out a form and check mark open automatically, it does not open automatically.",I needed a password manager,10.0 +817,lastpass,Verified User (Anonymous),Small-Business,2019-11-21,Last Pass is a great product that works well with Apple Keychain,"Especially as I'm a Mac user, Apple's Keychain is a great product. But I also use Chrome, and Windows PCs, so having Last Pass is super helpful. It also offers great features like credit monitoring, all in one app. So it's pretty cool that that I only have one app for everything. We use the business version as well to have shared passwords with our clients. I LOVE the Last Pass Authenticator app. ","I think the UI is a little clunky, it seems like a little more effort could be spent on tuning that up so it looks more smooth. I like the shared passwords function - but it is rather tough to use. I think it would be helpful if that was better designed - I always feel like when I'm adding my password to the same site that my client uses, I might be screwing up their passwords. The Auto-Fill feature barely works. ",Need to share passwords with multiple people but I want it to be quick and easy. It's not. ,8.0 +818,lastpass,Verified User (Anonymous),Small-Business,2020-02-27,LastPass the last 4 years,Ease of use. The autofill feature is great,Sometimes the autofill doesn't work. Sometimes the auto login causes conflict with the website,The problems were solving is not having the same password for everything as well as having the security checkup which helps strengthen all our passwords,9.0 +819,lastpass,Ryan H,Mid-Market,2019-11-18,Good for teams or families,Having shared passwords and personal passwords all saved in the same place saves me time and hassle. The mobile app makes it far easier to access the passwords quickly when I need them. ,"It can be scary to have one master password, but when you couple the master password with multifactor authentication, you find that you can select a master password that is easier to remember. ","For my family - we all have access to all of our accounts. That gives me peace of mind in case something happens to me. For my team at work, it removes any excuse to write down passwords. So, we're ultimately more secure and have better continuity. ",9.0 +820,lastpass,Verified User (Anonymous),Enterprise,2020-03-02,Easy to Use,"Awesome password management tool, I use it both of personal and business purposes. +Easy to create account, add to your vault and buy piece of mind.","Sometimes on iPhone last pass doesn’t integrate well, especially when creating new account just like keychain suggested passwords show up, I’d rather have lastpass show up in that option and store all my passwords in one place vs both keychain and lastpass. I usually do a manual work around, login to my last pass, add password, copy it to my new login and then save it in last pass.","Security, +remembering passwords",9.0 +821,lastpass,Ciarra B,Mid-Market,2019-12-13,"Finally, I don't lose all of my passwords",That all of my passwords are in one place.,There is nothing to dislike about last pass.,Not losing all of my passwords. They are all safe and secure and easy to access when I need them.,10.0 +822,lastpass,Jes T,Small-Business,2019-11-06,A few bugs but still can't live without it,I like that I can be the password keeper for my family and grant different levels of access to different family members.,Auto-fill is glitchy and sometimes get in the way of form interfaces.,It's a great hub for all my passwords and managing passwords for my family. Also love the secure password generator.,10.0 +823,lastpass,Verified User (Anonymous),Small-Business,2019-09-18,"makes life so much harder, and their support is awful","its a great concept! its meant to help a lot of people, but there are way too many sharing options that make it hard to onboard clients with it.","i dont like how hard it is to share passwords within team members, and how hard it is to get clients to share things in an optimal way. i dont like how you need to be logged in with the browser extension for it to work properly. ","it really makes things a mess instead of organizing. i think that it should mimic something like mailchimp that has less features and is user-friendly. the only benefits that it has had is helping us to onboard clients in more specific and detailed ways, but it creates more . problems than it solves.",0.0 +824,lastpass,Verified User (Anonymous),Enterprise,2019-11-18,SOOOO Easy,I like that it knows what site I am on. It helps me keep track of multiple passwords for the same site. Like Azure or AWS. It has saved us NUMEROUS times when people leave.,It's a bit clunky to search while already in a site. It autofills even if I dont want it to. A function to disable auto-fill might be nice.,"Constant data struggles with passwords and such. When people leave, we have a way to keep that info in one place with sharing tools.",10.0 +825,lastpass,Verified User (Anonymous),Small-Business,2018-01-12,Last Pass helps me tremendously,The ability to not have to remember every password. ,"Really, nothing. It's fine, and I don't know what I'd change if I could.","With so many sites requiring different types of passwords, it's hard to keep them all straight. Last Pass makes that simple. ",10.0 +826,lastpass,Verified User (Anonymous),Mid-Market,2017-10-01,lastpass review! ,Ability to generate passwords easily with the ability to memorize them. Ability to categorize them with folders depending on what type of websites there are. ,The learning curve was a bit too steep for a product that is expected to be used for general public. ,"Generating random and unique passwords for each login. This way the customer doesn't have to use the same password or memorize multiple passwords. +",9.0 +827,lastpass,Verified User (Anonymous),Small-Business,2018-02-01,This goes out to the bad memory folks,That it saves passwords across the board!,There have been moments where it logged my passwords out without my consent.,"I was able to save passwords for all the websites I visited daily for work. Especially in media, you go to Getty a lot so with this I never had to remember my company password.",6.0 +828,lastpass,Verified User (Anonymous),Small-Business,2018-01-09,The best way to save multiple passwords ,"The fact that the app can save passwords, as well as create passwords for sites. ",There is nothing I dislike with the current version of it.,"Having multiple logins for various sites, LastPass makes it easy to change between accounts.",10.0 +829,lastpass,Ashlie P,Small-Business,2017-10-19,Time-saver and Secure Password Sharing,The ability to easily and securely share passwords with contractors and staff,"We've had recurring problems when a member creates a new account, being able to share folders/passwords with them. ",Being able to share passwords with those doing work with our company who need temporary access or revoking access to those no longer working with the company.,8.0 +830,lastpass,Dhayakumar R,Small-Business,2017-08-19,Online Password Management,"*Vault was protective +*Portable +*Browser integration +*Safe",*I was using it some months before and it was very hard to retrieve the account as I forgot the password and it was the worst situation as I saved most of my passwords in the last pass vault.,"Security features are high. +As it is portable across the platforms it'll be of great help to users. +Perfect for all business companies",5.0 +831,lastpass,Verified User (Anonymous),Enterprise,2018-03-30,Super easy and secure way to organize a variety of confidential info,Smartphone integration makes it easy to quickly access saved passwords and secure notes,2 factor authentication via other services like Google would be nice,Central repository for business accounts to share with colleagues,10.0 +832,lastpass,Verified User (Anonymous),Small-Business,2017-12-04,Lastpass is saving me time,the fact that I don't have to remember all my different passwords and that I have different passwords for every site.,"so far, nothing really. Don't have any negative experiences.",saving time because I don't have to remember and retrieve my passwords for all my online accounts. ,10.0 +833,lastpass,Subhadip S,Small-Business,2017-12-26,Life saviour ,"- AnalyticsInformation Technology and ServicesSmall-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerVerified Current UserReview source: OrganicDec 26, 2017(Original Dec 21, 2017)Information""Life saviour ""Title for your review:Life saviour ","r - AnalyticsInformation Technology and ServicesSmall-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerVerified Current UserReview source: OrganicDec 26, 2017(Original Dec 21, 2017)Information""Life saviour ""Title for your review:Life saviour Review collected by and hosted on G2.com.Show MoreShow LessHelpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo","Small-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerVerified Current UserReview source: OrganicDec 26, 2017(Original Dec 21, 2017)Information""Life saviour ""Title for your review:Life saviour Review collected by and hosted on G2.com.Show MoreShow LessHelpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo",0.0 +834,lastpass,Devin R,Mid-Market,2017-06-28,Lifesaver!,"Every company I've worked for seems to have dozens of software programs for me to log into daily, causing endless headaches with needing to remember passwords (that should 100% be different from one another for security reasons). The fact that I only need to remember one password now is worth a lot more than LastPass costs",Sometimes there's a bit of lag time in LastPass loading my password when I get on to a login page,"Seems like every month I have another software to log in to, not having to come up with and remember a new password everytime is really helpful!",10.0 +835,lastpass,Verified User (Anonymous),Mid-Market,2017-12-12,Easy and peace of mind!,I love how user friendly the interface is. It’s easy to generate and store my passwords.,I don’t like that it can be difficult to generate a new password.,Keeping track of all of my passwords for various business related sites.,10.0 +836,lastpass,Verified User (Anonymous),Small-Business,2018-02-20,Works Great!,LastPass accomplishes everything we need it to and allows us to store all our passwords and share easily.,Sometimes the mobile app is a little slow.,"Requiring expiration of passwords, facilitating sharing strong passwords.",10.0 +837,lastpass,Soumi B,Small-Business,2017-12-21,Life saviour ,The feature to view the password also helps a lot when it is required,only thing is that it doesn't work well in mobile phones which needs a lot of improvement,All password at one place ,10.0 +838,lastpass,am ,Small-Business,2017-07-04,Best price/quality ratio,"It's cheap, reliable and after some effort easy to use. It could be integrated with FA and even with a yubico yubikey. They going with this software in the right direction and It's definitely worth to try. ",Multiple logins to the same site/domain could be done better. Authenticator can't add two pins to the same site. Interface is a little bit odd. ,Better and safer passwords for every day usage.,8.0 +839,lastpass,Jason S,Enterprise,2017-08-02,Great free app with no need to pay,"It's a phenomenal cross-device, secure password manager. It's easy to use, search, and I feel confident in it's security. The password generation works well with a lot of options for customization. The auto-fill works on most of the sites I use and where it doesn't, it's only a couple clicks. ","I wish there was a mobile version that would work, I might have it set up incorrectly, but the app does nothing for me on my iPhone.",The password generator is fairly robust and has helped me diversify my passwords. It has increased my productivity by making it easier to access sites more quickly.,9.0 +840,lastpass,Verified User (Anonymous),Small-Business,2017-10-24,"Great for generating passwords, keeping things secure","I like that as long as I'm using my own personal computer, it generates for me, saves for me and fills in my passwords for me. ","It doesn't always save properly. Especially after automatically generating, it can be frustrating because i'll have to reset my password because LastPass didn't save it.","Not having the same passwords across multiple sites, saving complicated case sensitive passwords",9.0 +841,lastpass,Verified User (Anonymous),Enterprise,2018-01-11,Only way to manage passwords,Simple and secure way of building secure passwords,Doesn't always automatically capture logins and passwords accurately on screen.,security and complex password management.,8.0 +842,lastpass,Verified User (Anonymous),Mid-Market,2018-01-16,Take your online security to the next level,One stop shop for managing all your passwords and sensitive info.,Makes me worried if Lastpass were ever to be compromised. All your eggs in one basket.,User account and password management. I'm confident my overall internet security is enhanced compared to trying to remember all of my passwords or reusing passwords as I've done in the past.,8.0 +843,lastpass,Verified User (Anonymous),Mid-Market,2018-02-03,A must have ,I like not having to remember any of my passwords,"Last pass is not the ultimate solution, just another barrier",It keeps passwords and login information off of email chains,7.0 +844,lastpass,Verified User (Anonymous),Small-Business,2017-09-05,Lifesaver,"Simplicity of use, particularly when considering the browser and TouchID integrations","Honestly not much. Occasionally I'll run into a site where the browser integration doesn't work, but that's still a quick workaround using the toolbar plugin instead.","Peace of mind, plain and simple",10.0 +845,lastpass,Sean P,Small-Business,2017-07-25,Superb!,"The best thing about this software is the price, it's free unless you want the corporate version or the app. ","It can be a little disorganized if you have multiple logins for the same website, takes a little extra work to label things so you know which login is for what.","I use the app on my phone to login to other applications on a regular basis, since tping on the phone can be a pain in the neck with fat fingers, it makes things super easy.",10.0 +846,lastpass,Andy P,Small-Business,2017-01-31,Great for managing sensitive data!,"We've been using LastPass for several years, and it keeps getting better and better. In addition to just keeping track of passwords, we use it to keep records of bank account numbers, credit cards, and a variety of other information. The ability to attach documents makes it even more powerful, as we can use specialized documents in our vault. It's really a very useful way to keep track of sensitive information. +We have the premium ($12/yr) version, which allows us to sync all of the LastPass information in our vault to our phones. This gives us the ability to have our passwords and other info with us everywhere we go. +The ability to have it autofill into apps on the phone is really nice, as is the automatic capture and fill for websites on the desktop. All in all, a really handy and useful addition! +",No problems to report. It always works as expected.,"We use it for both business and personal use. It allows us to be mobile and keep our sensitive data with us, but still secure.",10.0 +847,lastpass,Verified User (Anonymous),Enterprise,2018-01-29,I use LastPass for all my family's passwords and now have a work option as well,I love the browser add in so it autofills my password. ,Sometimes it doesn't save the password I just changed or I am not sure it saved so I copy it just in case.,I am able to have secure passwords without concern of forgetting them.,10.0 +848,lastpass,Verified User (Anonymous),Small-Business,2017-06-29,LastPass Review,I like not having to remember all the passwords I have for various sites I utilize for work. I also like the feature it has to generate passwords for you.,"I've had difficulty in the past when using LastPass for sites that require more than just a Username & Password (ie: both a company id and username & password), especially when you try and utilize the password generator for those sites. ","We have many different websites that require a user name and password, and this is reducing the number of people having to write down their information for a given secure site.",10.0 +849,lastpass,Verified User (Anonymous),Small-Business,2017-08-24,LastPass is the Best for Sharing Private Information Across your Team,"Ease of use - by far. With a convenient browser plug in that fully integrates LastPass features into form fields, it's a breeze to onboard new team members and share any necessary passwords without compromising security.","Inability to request higher level permissions through the platform. If you're unable to share a password because it was already shared with you, you must seek intervention with the owner of that passlocked account.","We share a lot on my team, including company social accounts, access to tools, and collaborative software. Using LastPass makes it simple to access company accounts without putting security at risk.",10.0 +850,lastpass,Emily I,Mid-Market,2017-05-01,Keep your team unified and secure,"Our company can all access the same passwords for accounts that the whole company needs access to—without unsafe password sharing or buying a lot of unnecessary licenses, in instances when one license is all that's needed for the entire company.","Sometimes I find that LastPass glitches for me or is slow to load... it'll ask me to login multiple times within a few minutes, or it won't load the correct password on the first try. Small problems in light of the benefits for me, though.",LastPass allows us to encourage transparency and knowledge across our organization by sharing access to key apps and accounts. This process is totally seamless and cuts down on a lot of back-and-forth between team members. It also protects key accounts against any possible security breaches by past employees.,10.0 +851,lastpass,James R,Small-Business,2017-12-21,Great bang for the buck...,"Convenience, security, price all seem top notch.",Nothing that I can think of off the top of my head!,Allows me to login to dozens of websites without needing to remember dozens of passwords!,10.0 +852,lastpass,Derek I,Mid-Market,2017-10-24,save all your paswords in one easy to manage location with lastpass,"Works great, you can save or not save passwords. You have the ability to search for a saved password and simply click to load.",Haven't tried the moble app at times I had issues with some sites that would autoload from last pass which would cause login issues. ,"Save passwords in a safe location. Not 100% sure on if your computer was stolen if lastpass would prevent people from accessing your login accounts (e.g. bank, etc)",7.0 +853,lastpass,Yuzo N,Small-Business,2017-10-24,You Only Need to Remember One Password Now,Allows me to keep all of my work related passwords all in one central location. Auto fills passwords and makes logging in super fast and easy.,The autofill feature can sometimes make it difficult when you don't want things autofilled.,Helps to provide stronger passwords. Centralizes all passwords so you don't have to remember all of them. Login feels more secure.,9.0 +854,lastpass,Cassie J,Enterprise,2017-07-11,A straightforward password arrangement,"Their program modules make it priceless. What's more, with the capacity to utilize hot keys it makes the whole experience that vastly improved. LastPass is an extremely well completely planned stage for secret word administration. They safely encode the majority of your watchword information, even on their free form. I realize that they likewise have a portable form that works truly pleasantly as well. ","My greatest issue is that my portable record logs-off extremely effectively (yet security needs to start things out so sufficiently reasonable I assume). The interface is exceptionally old cap and I've generally attempted to comprehend certain parts of it, fortunately in case you're anything like me you won't have to go into every one of the complexities. At last you are additionally trusting to have all passwords in one place, it's essentially a nectar pot for programmers that you fear one day will be broken into completely.",Decreases organization time resetting and making new logins/passwords.,8.0 +855,lastpass,Verified User (Anonymous),Small-Business,2018-01-27,Invaluable but clunky,"When it works right, it is a life saver for all my passwords ",It doesn't always pop up on mobile when I really need it. Fingerprint login only work 50% of the time. The interface is really antiquated ,I hate having to remember passwords so this is my go to tool. ,5.0 +856,lastpass,Verified User (Anonymous),Small-Business,2018-01-21,useful to deal with important passwords,"its remembering what i can not, and makes my computer safer. the dashboard is easy to overlook","sometimes it kicks me out, 2 factory is complicated to use without a mobile phone","customer support, i do not need to rember all kind of complicated passwords all the time",8.0 +857,lastpass,Verified User (Anonymous),Mid-Market,2018-04-10,Lastpass,I like that I do not need to generate my own passwords but that it is easy to save all of them,"Honestly, I am happy with all of it. There is nothing that I would change. ",I have solved the issues of password security by having unique passwords for everything ,10.0 +858,lastpass,Verified User (Anonymous),Mid-Market,2018-01-17,best software i literally use on a daily basis.... amazing,this program makes my life so much easier... i use it every day to log into everything. its very secure and very useful,i do not like that i have to update it when the browsers get updated but whatever... not a big deal,I am able to save time and time saves money,10.0 +859,lastpass,John B,Mid-Market,2017-10-17,LastPass Review,It keeps all of my passwords saved in once spot with easy access to them and fill then in automatically.,Is often times duplicates when on a windows or Mac computer if the password has already been saved to the computer.,It prevents me from having to type in and/or remember all of my different passwords.,10.0 +860,lastpass,Jonathan T,Small-Business,2017-05-20,Password Management Made Easy,"I LOVE that lastpass pops up with a dialog box to take care of my login when I go to websites, both on my desktop AND my Android phone. So easy!","I Love that I can use my fingerprint to sign in/authenticate on my Android phone, but I can't do that on my computer (MacOS). I'm pretty sure that's a limitation of a browser plug-in not being able to use that feature, but I imagine that will change in the future as that API becomes available.","Since LastPass is taking care of my passwords, I can make more complex, unique passwords for my sites, both personal and business.",10.0 +861,lastpass,Dave C,Small-Business,2017-06-29,A solid password manager with a discount for non-profits,"A password manager is now essential. The days of shared passwords stored in Excel spreadsheets, reusing passwords, or root + slight variant are over. This service lets me disable access for people who leave the org, share passwords for accounts like Amazon Prime and USPS, and of course generate unique random secure passwords for every site.","The design is a bit of a mess, with different settings stored in different places. Also, re-enrolling phones for 2 factor auth is a pain. Also, security issues in the news created FUD within upper management. Hopefully that's behind them.","Check out the ""like best"" section. Another great use case: I create a shared folder for each employee that only IT and that person have access to. It lets me create new accounts for a new employee with guaranteed secure passwords and all they need to do is sign in with their master password and start using them.",10.0 +862,lastpass,Verified User (Anonymous),Enterprise,2017-10-25,The safest & easiest ways to have secure passwords,"LastPass makes it incredibly easy to generate strong passwords, save them for you, and fill them into forms for your. You no longer have to have unsafe passwords or sticky notes to remember them.","The only thing that's difficult is taking the time to reset all your old passwords to better, secure passwords generated by LastPass. But once you do, it's so worth it & you don't have to think about that again.",LastPass has the ability to keep your personal and business passwords separate so you can always keep everything secure.,10.0 +863,lastpass,Verified User (Anonymous),Small-Business,2018-01-17,One password you'll ever have to remember,"I've used LastPass for years. Love it. Once you remember your master pw, you're all set. It lets you easily login to websites without hassle. I would be lost without it bc so many websites force you to have different passwords and update them regularly. ",I wish the mobile website was mobile friendly. I am always on the go and the website is not easy to navigate on mobile. Big miss!,Continuous uptime without having to guess my old pw or use the forgot pw feature.,10.0 +864,lastpass,Verified User (Anonymous),Small-Business,2018-01-09,Greatest software I’ve used yet,"I always womdered if site’s like this existed and now that I’ve found this, I’m telling all of my friends.",Don’t dislike anything about it. It’s storing all of my information. ,It’s solving a major thing for me because I’m able to save all of my passwords that I would normally forget.,10.0 +865,lastpass,Verified User (Anonymous),Small-Business,2018-04-05,Onboarding process is too difficult.,"Keeps my passwords safe, relatively easy to use.",The onboarding process for teams is way too difficult.,Needing to share passwords with a team — easier and safer to store them here.,5.0 +866,lastpass,Stephen G,Small-Business,2017-10-25,Multi-factor Authentication and Multiple Device Sync,The synchronization across multiple devices and platforms and the multi-factor authentication. ,"It only operates as a browser extension. No integration with browser on device. +",LastPass is a huge timesaver as well as making it easy to have different passwords everywhere without the need to memorize them all or wirte them down. ,8.0 +867,lastpass,Amy B,Enterprise,2017-09-05,Handy way to utilize a variety of passwords that are difficult to hack,"You can adjust the settings to longer/shorter passwords, easy to read, or even special characters allowed. It really can fit any password requirements. The mobile application is easy as pie with the fingerprint verification, I like this a lot. ","It seems like every time work updates my firefox, the browser lastpass is wonky for awhile. It won't let me log back in and it won't take my password. ","Setting new passwords every year gets harder and harder and I have to log in for every application, so it's a lot of logging in that Lastpass helps with. ",9.0 +868,lastpass,Justin B,Small-Business,2017-08-29,Encourages positive password habits for non-technical users,"Lastpass (like most password managers) allows users to generate unique, complicated passwords for websites without worrying about recalling them. + +Last Pass has strong mobile support, especially on Android.","LastPass has a worrying recent history of security concerns, especially those associated with its operation as a browser extension. + +LastPass also defaults to relatively short password length when generating new passwords. Users tend to not change defaults, so it hurts the core promise of a password manager.","One of the largest threats to account security is the re-use of passwords. LastPass encourages unique passwords, and in fact flags duplicates.",7.0 +869,lastpass,Verified User (Anonymous),Enterprise,2018-01-12,Lastpass Review,Keeps all of my passwords safe in one place. It also prefills log in fields when using the Chrome browser extension.,It can be difficult to find which passwords go where if you also have access to a shared team folder.,Keeping track of multiple company passwords.,10.0 +870,lastpass,Ashley R,Small-Business,2017-10-03,LastPass is a great product!,LastPass allows our organization to share logins between us easily.,LastPass can sometimes be buggy when using the Chrome extension and trying to fill in a login form. But other than that nothing else to dislike.,LastPass makes it very easy to share login information for our different website backends. There is no need to share pieces of post-its with each other or email the different logins for different websites.,10.0 +871,lastpass,Verified User (Anonymous),Small-Business,2017-10-06,Safe password service to share credentials with employees/team members,"It lets you include personal information in case the credential needs it. Also, it can be chosen easily with pop-up credentials on form fields making suggestions according to the webpage. The browser plugin also is really helpful. It makes suggestions for safer passwords and keeps them on record in case you forgot about them","the interface seems pretty old and the vault is not easy to navigate to find out what credentials you have (personal or business), unless the search bar is used",security on passwords for software and web services used by anyone,8.0 +872,lastpass,Erika F,Enterprise,2017-10-03,Did you know you're not supposed to know your passwords?,When working with so many sensitive accounts it's important for me to secure my passwords. I love LastPass because I just need to remember the one password to get into my vault and it remembers the rest for me. ,I don't think I have anything I dislike as of right now. ,Securely storing passwords for multiple accounts I may not regularly need but would grant access sensitive data if they were hacked. ,10.0 +873,lastpass,Joel M,Mid-Market,2018-01-16,Great product. Saves my poor memory,So many passwords and different requirements. So easy to use on a computer and iPhone ,Sometimes it’s tomeasy to create duplicate websites ,Multiple work and personal logins with different usernames and password chNges required often quarterly. ,9.0 +874,lastpass,Jennifer T,Small-Business,2017-06-12,Cheap & it works,"The reality is that this password storage solution is cheap (~$10 per user per year). With that, you kind of get what you pay for. However, we were a small company and just needed any solution that would work, so this did the trick. One of the biggest aspects of Lastpass that we liked were the shared folders, they allowed us to share certain logins across entire teams without having anyone storing it in insecure places. + +Ability to see A) is someone had never logged in, B) how strong their passwords are and accordingly you could force them to reset at the next login.","The list is LONG. If you can invest is something that is better rated, do that. If you know of something equally affordable that works better, I'd love to hear it. So, admin management is a nightmare. I love how secure this site can be, but there has to be some overrides in some places for managers. Far too many times an employee would leave and fail to share their Lastpass accounts, if we couldn't get it from them, many logins were lost. With better policies, some of this was fixed, but always continued to be a problem. + +It's hard to see who has access to what. If have to click into each folder and account to see who it was shared with. + +Zero insight into employees accounts. Again, a pro and con of Lastpass security. I don't want to see what accounts folks have saved in their Lastpass, that should be theirs. However, having some sense of the capacity at which they use it would really help. In our organizations case, it was very hard to get people to use this rather than simply using the browser password save options. ","Secure password storage and sharing. In using Lastpass, it was truly a ""better than nothing"" solution for us. We're looking for alternatives.",5.0 +875,lastpass,Peter V,Enterprise,2019-12-01,Lastpass ahorra mucho tiempo y da a los usuarios una capa adicional de seguridad.,"Es el mayor salvavidas de este planeta. Y, no, no estoy bromeando. Estaría tan perdido sin LastPass. Me han salvado el culo en innumerables ocasiones, tanto en línea como en el móvil. Todo lo que necesita es mi huella digital y bueno, eso es algo que estoy totalmente dispuesto a darles en este momento. La facilidad de uso, la complejidad - pero la simplicidad, la seguridad, la habilidad de usar contraseñas complejas (y dejar de usar las mismas 2 que siempre he usado).... todo esto, es simplemente un gasto anual que no tengo que pensar y del que estoy encantado de desprenderme.Su extensión Chrome es invaluable y hace que el acceso a los sitios web sea muy sencillo. Es refrescante tener un ayudante como LastPass, sabiendo que si mi siempre agitado cerebro decide dejar de funcionar, tengo una fuente de apoyo con ellos. Limpio regularmente mi bóveda y eso ayuda a reducir la confusión potencial durante el inicio de sesión, especialmente si el sitio ha cambiado su url, o si usted ha cambiado/actualizado su login/pass.","La mayor aversión de Lastpass es cómo están organizadas las contraseñas. Si no selecciona una carpeta para añadir la contraseña, Lastpass genera una carpeta separada. Necesitamos la capacidad de crear una nueva subcarpeta y renombrar la contraseña a través de la extensión Chrome.","A los clientes les gusta mucho que puedan compartir contraseñas cifradas. Especialmente con los datos financieros y los inicios de sesión de cuentas bancarias, es comprensible que la gente sea cautelosa a la hora de dar sus nombres de usuario y contraseñas. Lastpass ofrece una solución a este problema.",9.0 +876,lastpass,David M,Mid-Market,2019-08-15,"Good, But Not Great","LastPass has a lot to recommend it: +1. Works across devices. +2. Works across browsers. +3. Has native apps for a number of platforms. +4. It offers a powerful password generator. +5. Can save secure notes, bank accounts, etc. in addition to passwords. +6. Sharing, when it works, is intuitive and simple. +7. The free account is more than sufficient for the average user. +8. Pricing is fairly reasonable.","LastPass is a good product with a lot of rough edges: + +1. Technical support is slow to respond and their answers have generally been incorrect or unhelpful - oftentimes involving resetting the pre-shared key - which is a real trial. +2. They require time consuming and involved steps to reset a pre-shared key if it becomes corrupted. +3. On multiple occasions I've been told the issue was a corrupt pre-shared key only to discover it was something else entirely (browser cache, need to change master password). +4. Some of the enterprise functionality doesn't work as anticipated - e.g., adding people to groups doesn't always seem to actually give them permissions to shared folders (told that admin logging out and then logging back in will solve this problem; but it has not). +5. Additionally, folks don't always receive notifications for shared folders when added individually (this has only been a problem with enterprise). +6. The granularity of permissions leaves something to be desired. One can either shared an item individually or as part of a shared folder, but these are exclusive. LastPasses' resolution is to create a duplicate key - but this becomes a maintenance nightmare. +7. Things have gotten better within the last year but used to see lots of problems with LastPass throwing errors when there was no internet connection (even though insisting it functioned fully offline). +8. Windows App has gotten better but doesn't have feature parity with the web interface. +9. The error messages thrown by LastPass (usually through the web interface) are very short and unclear, they provide little insight into the actual issue. +10. Web Support is poorly organized, sometimes confusing.","- Provides simple way for individuals to create secure passwords. +- Allows intuitive sharing between co-workers and with external parties.",6.0 +877,lastpass,Verified User (Anonymous),Enterprise,2020-02-13,"Application so good, I have my whole family using it!","Password management at its finest. Being able to access all your passwords from one account is just awesome. I like that you don't need to have a website added to the record to be able to save passwords. This can be used outside of Websites, and can be used for something as simple as Garage Door codes for family members. Data secured notes can be accessed by people you give access to them. This gives companies the opportunity to save static information for whole teams.","Sometimes its hard for Lastpass to see websites that don't use the exact same URL that's in the record. I've also found that the Autofill does not always work. When you click the symbol in the field to add password/User name, it sometimes doesn't detect the website you are on, or that the website is one that is saved in your list. But these issues are not a deal breaker in using Lastpass. The admin utility doesn't always work very well and setting policies can be difficult.",Password Management. Simple as that. Teams can share common UN and Passwords without having to create a server based document that contains all the info. We can add users to secured notes that contain all of the info needed.,9.0 +878,lastpass,Henry W,Mid-Market,2019-11-18,LastPass provides a huge improvement for Internet safety.,"The checking for duplicate passwords, and providing real random and sufficiently long passwords, keeps one website/company breach from being used to attack user accounts on other websites. Multi-device is crucial for user experience, so the ease of use keeps them using good password practices.","Editing in the plug-in app isn't smooth. The groupings aren't always intuitive. Corporate internal network sites aren't often separated correctly, e.g. two hosts kirk.mycompany.com and spock.mycompany.com should be seen as separate websites. You also need a general ""Manufacturing"" industry option. We manufacture parts for more than one industry in your list.","Shared passwords for corporate accounts on vendor websites. Improving security for personnel on the web. Helps aid disaster recovery, or personnel loss.",10.0 +879,lastpass,Chelsea B,Small-Business,2019-11-18,User friendly password manager,"LastPass makes it simple to record passwords not just for websites but also for commonly used resources like servers, databases, and email accounts. + +The enterprise-level security policies give admins complete control over how their organization uses LastPass. I especially like the ability to require complicated master passwords. Shared folders, groups, and roles also make enterprise administration much simpler.","It's a minor complaint, but I don't think the ""secure note"" is a very intuitive workflow for adding passwords that are not linked to a website. Very rarely am I entering an actual note. + +Additionally, a few of the features of the browser extension make it difficult to fill passwords seamlessly such as the warnings that you're using a duplicate password.","The office I work in has many shared login credentials for external services. These credentials give access to highly confidential information, so it's very important that we store them in a secure, yet shareable, fashion.",9.0 +880,lastpass,Verified User (Anonymous),Mid-Market,2019-11-18,Cant remember the last time I forgot a password,"LastPass is fantastic. My favorite feature is pretty straight forward, it remembers all of your passwords! I'm an IT professional and I have countless logon credentials. We're talking hundreds! Being able to autofill information is huge! Its also very secure and is easy to use. I've setup multiple folders separated by purpose and have run into no issues. + +My job requires IT staff to share multiple passwords with our internal staff. This helps with collaboration for system administrators such as myself that need to log into multiple sites and services simultaneously. + +At a previous employer, we also used Single Sign-on which is another fantastic feature that is both secure and promotes ease of use. Similar to the product itself, it is one less password that you need to remember! ","My only issue with LastPass is the user administration tool feels a bit clunky. To elaborate a bit, I wish the UI had more information regarding password security. At the moment, a few of our users have 'poor' passwords. I can't find anywhere on the administration page that lets me know what a 'strong' password would be considered. It may be there, but it is not easy to find. + +This information would help as I could relay this to users and explain that they need a more secure password.",No issues as of yet. I've been using LastPass personally for about 3 years and professionally for 2. ,10.0 +881,lastpass,Verified User (Anonymous),Enterprise,2019-11-18,Good password manager with poor enterprise integrations,"LastPass is amazing when it comes to it's core functionality. It's very easy to manage your password database, generate new credentials, etc...","Integrating with ADFS or Azure AD for Enterprise identity access is a nightmare. We have had a support ticket open with them for over a month and the issue still isn't resolved. To that end, their support is also somewhat poor. There is no option to call and open a support case. They force you to open a ticket on their site and then wait for them to call you. This is fine when opening a new case, but makes it extremely difficult to get case updates or escalate with them. + +I also dislike the way shared passwords are handled within LastPass. Rather than using a table field to tell you that a folder is shared, they add the word Shared to every folder that gets shared. This makes sorting excruciatingly painful and is a good example of how they took a feature from their consumer offering and slapped it into their Enterprise offering. They also don't allow you to control sharing permissions on child folders. The sharing permissions of the top level shared folder always apply.",None because we still don't have our enterprise identity system tied into LastPass to begin provisioning access to our users.,5.0 +882,lastpass,Steve S,Mid-Market,2019-11-18,Flexible but robust password management,"The password generation and management from LastPass is smart and simple. Password generation option allow for you to get a password that works with any requirements including length, special characters, etc. We use the enterprise version and are able to link our personal LastPass accounts so that we can use our personal info on our work computers and not have to mix personal and business.",Simple option to generate a password for a new site. Having an option to just simply generate a password that will soon be saved. It gets a bit clunky to manually create the site then generate the password.,Password sharing between departments. We have managed shared folders for password sharing. This allows for passwords to be shared but not compromised by physically sharing the password. Also allows for much more complicated and secure passwords then trying to make one that is easy to share manually. ,9.0 +883,lastpass,Fabrice M,Mid-Market,2020-01-14,Easy and flexible password management for everyone,I like the password team sharing capabilities and the option to use private and work password in one application. Also the cross-platform availability of LastPass is a big plus.,"The UI can be a bit overwhelming at first and when LastPass is deployed via your sysadmin, a good step-by-step on-boarding program might be useful. Especially when 2FA is introduced.","Everyone was administering and archiving their passwords as they saw fit. We had situations were company passwords were saved in spreadsheets and sharing happend via mail, slack or Teams.",10.0 +884,lastpass,Allyn J,Mid-Market,2019-08-28,A Cloud Based Password Vault - only some minor frustrations.,"Lastpass being a cross platform solution is really well put together. Thru the admin panel we have all sorts of abilities to be able to reset passwords to prevent password vault loss, establish 2FA requirements, and more. It also has an amazingly beneficial ability to connect to your personal LastPass vault to make things easier for + +Review collected by and hosted on G2.com.What do you dislike?Two points of frustration - +1.) If you have LastPass families, you cannot see *any* of the family shared passwords while you are authenticated to your enterprise account. This of course assumes that you have connected your enterprise account to the personal account. + +2.) IIRC - currently there are no methods of LastPass being able to have LastPass analyze passwords against known password breaches, or against the common dictionary attack type passwords. This is a feature that a competing product (that I don't believe has an enterprise feature) does offer. ","Two points of frustration - +1.) If you have LastPass families, you cannot see *any* of the family shared passwords while you are authenticated to your enterprise account. This of course assumes that you have connected your enterprise account to the personal account. + +2.) IIRC - currently there are no methods of LastPass being able to have LastPass analyze passwords against known password breaches, or against the common dictionary attack type passwords. This is a feature that a competing product (that I don't believe has an enterprise feature) does offer. ","We are able to ask our staff members to maintain better password practices. It's difficult to ask them to have separate passwords everywhere, and to avoid password re-use, if we are not giving them the tools to success. While we are still in transition to take even greater advantage of this resource. Our biggest benefit will be realized when we can share passwords with those that need them, without actually *exposing* the password to the end-user. ",8.0 +885,lastpass,Verified User (Anonymous),Mid-Market,2019-11-18,Necessary tool,"Variety of ways to save information (notes, sites via browser extension, etc.) Pretty intuitive setup. I'm confident in the level of encryption and feel more comfortable storing passwords this way. The generate secure password tool is very important!","Doesn't always play nice with internet browsers (I've had problems with both Chrome and IE) as an extension. Sometimes will not recognize credentials when being set up or you'll have to add a site manually, which is annoying. I've also had issues as an administrator not being able to reset everyone. The generic online support offered as a 'first line of defense' to corporate clients is not sufficient.","Reusing passwords is happening less, more secure passwords are being used. We haven't gotten this far yet, but the Sharing option will be great for teams and we look forward to implementing a minimum security score. ",8.0 +886,lastpass,Marcos L,Enterprise,2019-08-15,Several time-saving capabilities,"Several time-saving capabilities are LastPass's most important advantages. Autofill completes forms rapidly with details including email address, credentials, password, address or personal information. LastPass is equipped with a sophisticated password generator, which can be configured and assists you in creating unique and complex passwords to safeguard your platforms. The database is encoded using market-standard encryption technology, and LastPass account is secured with two-factor authentication (Thumbprint, Face ID, SMS, and so on.) LastPass also has well-optimized web extensions and mobile applications that support several operating systems. ",I have attempted a business subscription that allows users to safely share information among members of the team and offer them access to particular credentials. The function is not well developed and created some failures like the removal of data access.,LastPass allows me to use various and sophisticated passwords for my databases as it is sufficient to note one master password. It is also an excellent instrument to save time.,9.0 +887,lastpass,Caleb H,Mid-Market,2019-08-15,LastPass has taken our password hygiene to a new level ,"The user experience is intuitive and it works with all our browsers & mobile devices. Great enterprise features & integration with Active Directory. Federated login with Azure AD is now supported, which means we don't have to have a separate master password for LastPass. I can also link my personal account to my enterprise account for convenient access to both with one logon.","There are a couple things here or there that could be improved, but nothing major. I can't say there's anything I 'dislike' or 'hate' about LastPass. Using LastPass is lightyears ahead of using no password manager at all.","LastPass has provided the means for our users to take control of their password hygiene and is enabling them to fix problems like weak, reused, & compromised passwords. The Security Challenge is a great tool to help users know what they can do to improve their online security.",10.0 +888,lastpass,Verified User (Anonymous),Small-Business,2019-11-07,Eliminates frustration and adds security,"I love that I no longer have a scrap of paper with all of my passwords written down. Instead, I'm able to easily access all of my accounts in one central location. ",I can't think of much that I don't like about the product. My colleagues have mentioned that sometimes they have trouble getting passwords to auto load but I have not run into that. ,It is much more efficient (rather than spending time looking for passwords or resetting if I can't remember) and I feel that my accounts are more secure because I don't rely on using the same password for ease of memory. ,10.0 +889,lastpass,Verified User (Anonymous),Small-Business,2019-10-29,Effective and Free Way to Keep Track of Passwords,"LastPass is a non-intrusive method of storing passwords in a manner that makes me feel confident about my password security. Additionally, the ability to generate unique secure passwords lets me keep up-to-date on my passwords across the board.","Honestly, there isn't much to dislike here. The Google Chrome extension can sometimes be finicky and log me out, but I am not sure whether that is a problem with LastPass or Chrome. ","First and foremost, LastPass allows for additional security on an individual password level. Their security audit is a really useful method of making sure my passwords are strong, and that my information is not anywhere I don't want it to be. The authenticator app (which can be used for other apps as well) is hugely helpful.",9.0 +890,lastpass,Patrick K,Small-Business,2020-02-27,Everyone needs a password manager,"Using unique passwords for each site is imperative. Sites get hacked all the time, and often, they don't properly store their passwords. If your email and password for one site are leaked, what else can an attacker access? What if you've used that same password for your bank, or email, or social media accounts?","I can't store my password vault offline, it needs to be stored (encrypted) in the cloud.","Ensuring that I use a different password for each site, and keeping track of the age of passwords.",8.0 +891,lastpass,Trevor W,Mid-Market,2019-11-18,LastPass Enterprise Works well,"Lastpass is super easy to use, very little end user training, it supports with Active Directory Federation Services and works super well!","I wish Multi-factor authentication worked with Active Directory Federation Services, i know you can put Multi-factor authentication on Active Directory Federation Services , but wish lastpass could be the Multi-factor authenticationprovider ","Passwords, we disabled end users from saving passwords in browsers and they were not happy, lastpass fixed this for us. It also needed SSO which Lastpass does very well using Active Directory Federation Services!",10.0 +892,lastpass,Jacob J,Mid-Market,2019-08-15,Great tool for improving security,LastPass integrates really well with web browsers and autofills better than other tools. It also works great on iPhone to auto-fill in apps and on websites.,"User management in enterprise version is a little tricky. Mainly the UI can be a little slow to respond and the language and organization isn't as clear as it could be. I wish it was easier to import browser saved passwords and disable the browser from saving them, directly in LastPass.","We've onboarded most of our users to LastPass and haven't required it, but still have over 70% active users. This has increased our ability to ensure that users are creating secure and uncommon passwords without adding overhead to their day.",9.0 +893,lastpass,Verified User (Anonymous),Small-Business,2020-07-21,"Good for security, compliance, and remembering passwords","It's easy to save passwords for multiple email addresses on the same website, sharing with colleagues, and having a secure vault","It does exactly what I want to do, no major changes",Security when sharing passwords with coworkers and ease of remembering when there is a password change policy every 90 days,9.0 +894,lastpass,Ajab B,Small-Business,2019-08-03,Best wallet to save your PW,"Very useful application as it saves you all passwords and it is really helpful for every one nowadays as people are using so many applications and creates new id and PW which is not easy to keep in mind for everyone. This vault has security challenge option,too. We can link other accounts into our last pass vault which is good options for companies getting merged. It has filters to search assenting or descending also. It has master password reminder which is helpful if you have forgot your password.",You need to install this app otherwise You need to remember log in id and PW which you have set up for the vault. It is difficult to recreate new password every time if you forgot. This is the only thing which you can dislike for last pas otherwise it is useful in all way.,"I am using last pass in business purpose where we have kept all the ID PW safe and we do not need to share with every new employee about different id PW every time. In last pass we can add notes, we can share link, We can create different folders to find files easily. we can see all the folders or files in list and grid both kind of views. We can individually share PW for any particular folder by clicking share option. ",9.0 +895,lastpass,Michael H,Small-Business,2019-11-18,"Great security, poor interface",The security and ability to share password access without sharing passwords make this an obvious and incredibly helpful tool. ,The interface is rough and the need to clear cache and reset sites so often to stop getting error messages has made it very tough and troublesome especially when training less tech-friendly users. ,We feel much more secure in our ability to share passwords across teams without the need to reset every password as we have staff changes. The security score feature has been very helpful in highlighting which of our employees are most vulnerable to an attack. ,8.0 +896,lastpass,George S,Enterprise,2019-11-18,Quirky Interface,"Automatic fill of passwords. Grouping of secrets. Browser integration, though even that can be a bit quirky at times. ","Very quirky and cumbersome interface, especially when having to mix with the enterprise version. Need to have a cleaner and more polished interface. Actually had received an e-mail to offer to test a new interface, but when tried to do so, received a 404 error, after 3 tries at that I gave up.","Replacing an out of support software that has most of our server secret information. Haven't realized the benefits yet, still working on our migration. ",7.0 +897,lastpass,Fernando C,Enterprise,2019-07-31,You can retrieve password by receiving a text message from your smartphone.,"You may manage all your passwords at a really reasonable price with LastPass, but if you don't have many passcodes, you can use the cheap variant that provides excellent security. Using an enhancement, it can be used from your desired browser or downloaded to your smartphone. I appreciate the 256-bit encryption method that has this technology as it gives me a lot of protection, something other applications can't do. Using LastPass, you can conduct key inspections regularly and remove the passcodes that are reused. If you miss a password, you can retrieve it by receiving a text message from your smartphone.","Ton of moment using LastPass and until now I have no claim against this software, it's quite reliable and it's been very helpful for my enterprise, I think this scheme exceeds all its opponents.","Having LastPass has been very useful because it provides us safety and the chance to improve the effectiveness of our company, in event of issues, LastPass technical support group provides great help, they are fast to reply and very skilled.",9.0 +898,lastpass,Derek F,Mid-Market,2019-08-29,Best way to manage passwords,We have multiple departments that need to share credentials. We can create shared vaults and can assign access to the users. When a user leaves the credentials stay with the company and we can revoke their access and give access to their replacement. Has made turnover less of a headache with account management.,I don't like that LastPass doesn't work with 3rd party Windows Apps for auto-fill. Copy and paste of username and password into 3rd party apps is sometimes a pain.,"We are able to control credential access to websites and keep record of the passwords when employees leave and don't have to worry about resetting password, as we can limit who can unmask passwords.",10.0 +899,lastpass,Corrado Z,Enterprise,2019-10-16,"Nice refreshed style, but some functions need to be optimized","I like the pure server based storage of datas, the sync of the account in all my devices, which is pretty smooth. The possibility of use fingerprint's unlock on my phone now works flawless and web interface is more enjoyable of what used to be months ago. ","I don't like the price. Two years ago was something like the half of what is now, which it makes me consider to change password manager. On Huawei p30 lite autofilling in app does not work the most of time. App opening could be faster, and also showed account during autofill often does not match the app in use. +I would like also another way to recover masterpassword in case of loss. ","The enormous amount of accounts name and passwords, all with different levels of security and access, which makes me impossible to write them down on notes or to rememember",8.0 +900,lastpass,Verified User (Anonymous),Mid-Market,2019-08-15,Easy to Use / Easy to Manage,"LastPass is easy to use, love that I only have to remember one password and get an OTP and I'm in! Its easy to add sites and passwords. I can use 20+ character passwords with no worries.",I have a few pages with the same username but different passwords and for some reason I have to choose which page to credentials to use. I have other sites with the same username and they work fine so its just a minor dislike ,LastPass has made my passwords more secure and has sped up my time searching for passwords and logins.,9.0 +901,lastpass,Verified User (Anonymous),Small-Business,2019-11-18,Great tool combining security and convenience!,LastPass allows me to store credentials for both personal and work accounts which can be easily and securely accessed. ,Always have to click ignore on the plugin popup for sites that use a token or multiple passwords. ,"We are removing the need to save passwords on our browser, which is less secure. ",10.0 +902,lastpass,Verified User (Anonymous),Mid-Market,2020-02-25,Great until the Mac app was removed,The ability to use hot keys from the desktop app to search for passwords.,The new Mac app is a reskin if the web version. It’s too laggy and crashes consistently.,It’s a password manager. It makes sharing credentials easier.,8.0 +903,lastpass,Verified User (Anonymous),Enterprise,2019-11-19,Just beginning to harness the power of password management,"I like having just one master password, and being able to connect to my vault from most any device.",I wish I had the time to spend learning all of the features of LastPass.,We are now able to securely share and update highly secure passwords across several administrators.,8.0 +904,lastpass,Jeffery S,Small-Business,2019-11-18,LastPass --one of my first referrals in Password Management,"If you must use passwords, you need a great password management system. LastPass is one of them. I recommend this Enterprise Password Management app in every security project!",Doesn't always do well in multi-browsers.. I switch from Safari to Chrome frequently. Could be more seamless.,Sticky notes.,10.0 +905,lastpass,Verified User (Anonymous),Mid-Market,2019-08-15,Are your important data and passwords stored in an encrypted vault?,It just works. I have been using LastPass in my professional and personal life for 5 years and it has never failed me. My data is safe and I can access it anytime from my smartphone. It's the best way to share sensitive data with coworkers and an excellent value.,Conflicts between Chrome password management and LastPass,Sharing credentials with remote employees. Securing passwords. Now LastPass has an SSO offering. ,9.0 +906,lastpass,Noman K,Enterprise,2019-08-15,Why wouldn’t you? ,"I’m an Enterprise admin and a user, ease of use, ability to share folders and sensitive files are very user friendly. Ability to use across platforms and browsers makes it one of my fav security product. ",I would like the an easier way reset master password for corporate users. ,"Password reuse, and more complex passwords. ",10.0 +907,lastpass,Verified User (Anonymous),Small-Business,2019-08-15,Lastpass is great!,"I like the security and convenience of using Lastpass to store my passwords and secure information, they make securely sharing passwords and information easy and secure, and I love how seriously they take the security of our information.","There is not much to dislike with Lastpass, they have most issues or concerns covered.",The main problem we have been able to solve with Lastpass is actually two fold. We have staff using actually secure passwords and they are no longer writing them down on sticky notes they have put on their monitors.,10.0 +908,lastpass,Verified User (Anonymous),Small-Business,2019-11-18,Works like a charm,Creating more secure passwords and never needing to type them in.,Sometimes the LastPass plugin does not recognize the correct fields on a mobile browser.,Managing a large collection of personal and company passwords. Sharing passwords with employees and managing their access to certain sites.,7.0 +909,lastpass,Hunter Marshall B,Small-Business,2019-08-15,great product,"not having to hit ""forgot password"" everytime i try to log in. it's a lifesaver... and helps with security when employees leave.",that I have to remember to be logged in.,"Security, efficiency",8.0 +910,lastpass,Marcus P,Small-Business,2019-01-30,"LastPass is a must have, especially when dealing with sensitive work accounts","I like that LastPass is able to provide top notch security with minimal effort on my end. In the past I had to keep a password book to keep all of my passwords, or I would have to use the same password over and over which was not secure at all. They provide a convenient solution to deliver security with peace of mind. ",I guess what I don't like is that if I use one of the autofill passwords on a website and then need to quickly log in to that account on a friends account or another computer it is time consuming and a bit frustrating. Other than that It's honestly pretty good and i don't have many other complaints,"Much like what I mentioned above, it is allowing me to keep my business accounts locked and secure with excellent passwords. No need to call my boss to help me reset my account because it's all saved for me now.",10.0 +911,lastpass,Verified User (Anonymous),Small-Business,2020-03-12,Great product!,"Super convenient to use, can’t live without it now.","Does not upload super quickly sometimes, can get buggy",Don’t need to remember passwords anymore,9.0 +912,lastpass,shan m,Mid-Market,2019-04-14,Secure your Identity with lastpass,"It allows user to to add password for particular user name and members who have access for that can view the password or directly copy it. You can create your own vault for all your secret data and you can share the vault with someone too. Secure form creation, saving site data is also part of the lastpass. Using lastpass you can also generate random passwords if you want with as per your accordance.",If your vault has a lot of files and secrets then it will take enormous amount of time to search through it which is tedious. You might have to wait more if it contains same parameters in few files. overall search algorithm is not that good. Apart from that there are few bug and old fashioned UI. Everything else is good and up to the mark.,As of now we are saving all our secrets in lastpass vault which is shared amongst all the employees. Form fill is also being used every now and then. Also the secret key generator is very helpful if you wanna generate random secure password.,8.0 +913,lastpass,Verified User (Anonymous),Small-Business,2019-08-15,"Easy to setup for novices, but also has advanced features",It's simple to start - Install the extension and start saving passwords right away. This was helpful in setting up a phased rollout for our org. We started with just getting everyone the extension and familiarizing themselves with the product. ,"Frequent price hikes +ALL of the good help articles (prior to the acquisition by GTM) are gone. The new knowledge base is lacking information.","Security, first and foremost. Having LastPass installed in a HUGE step towards securing our accounts, even if there are still several other steps needed. ",8.0 +914,lastpass,Verified User (Anonymous),Small-Business,2019-05-17,Handy Program That Every Office Should Use,"Many times, companies will share login info for programs and websites they frequently use. LastPass is a great way to keep updated passwords, websites, etc all in one place for everyone to access and update. You can put restrictions on who is able to see and do what exactly as well. ","It's no the most user friendly website to use at first, but once you use it more and more often, you become more used to it. ","If someone changes a password to a site that others use, if is often difficult to track down who did it and what they changed it to. With LastPass, all of this information is at your fingertips. No need to send out multiple email to track down the culprit. ",8.0 +915,lastpass,Verified User (Anonymous),Mid-Market,2019-11-19,Last pass rocks!,"Ease of use, and works accross all browsers.",We do not have any problems with the software.,"I can manage my personal life, business, and volunteer accounts from one interface.",10.0 +916,lastpass,Verified User (Anonymous),Small-Business,2019-11-18,Overall helpful product with some minor issues,Easy to share passwords within my organization - definitely helps with collaboration,Sometimes the plugin doesn't work and I have to manually enter sites/passwords,It's great for helping us not to have as many users for other software/sites/products we use. ,8.0 +917,lastpass,Verified User (Anonymous),Small-Business,2020-02-28,Solves the problem of passwords,Solves the problem of remembering passwords,Need documentation on how to best employ the family feature - best practices guide,Remembering passwords and using complex (good) ones,9.0 +918,lastpass,Verified User (Anonymous),Small-Business,2019-12-11,"Personal user, business evaluator",I use for mlm personal use and have shared with the rest of my family. It is easy and generally seamless to use.,"Mobile use is sometimes a challenge with mapping to sites, although recently seems to be improving","Evaluating it for business use for our corporate social.media teams and their external vendors. Generally speaking, it has allowed me to better protect my personal accounts.",8.0 +919,lastpass,Verified User (Anonymous),Small-Business,2019-10-22,Pretty solid product with minor glitches,"I like that it’s free tier is well integrated with almost every product. It has very good mobile support and it offers 2FA with various different options like yubikey, Authenticator, etc ",I have seen minor glitches where it sometimes doesn’t save the password for a new website. I’ve also had to manually refresh the cache even after 10 minutes on a device other than the one where a new password was added,It helps me keep my passwords strong and different across various websites in a hassle free way.,9.0 +920,lastpass,Verified User (Anonymous),Small-Business,2019-10-18,Change in life,"The use of LastPass was a major digitel life change. The system allows all passwords to be registered in a single digital safe protected by a centralized password. It integrates perfectly into the browser (I use Chrome) with automatic compilation of garments, automatic recognition of passwords to be saved and password updates.","In some things it is slightly complex, but it is the minimum belief for data protection.","I no longer need to write and remember passwords, especially those that need to be changed often.",8.0 +921,lastpass,Verified User (Anonymous),Small-Business,2020-03-01,I like LastPass.,I like the password manager. It makes managing multiple logins seamless.,I wish the interface was perhaps a bit more streamlined.,Made it simpler,8.0 +922,lastpass,Verified User (Anonymous),Enterprise,2019-11-09,Keep your logins secure and customised,"The best part is autofill of your credentials , now a days I myself login to a number of websites for shopping or job search everyday , it is difficult to keep data of every login.","I sometimes feel lastpass have all my details , so there is risk if last pass is hacked I am screwed. And sometimes websites doesn't support autofill.",I never worry about keeping track of password my whole life,10.0 +923,lastpass,Verified User (Anonymous),Small-Business,2019-11-20,"Love, love, love LastPass",This is the best method of securely saving all log in's we need,"Not much I can think of, love it for all our organization needs!",We always have our links organized and at our fingertips,10.0 +924,lastpass,Verified User (Anonymous),Small-Business,2019-11-19,The handy password manager,I like that this app can be used across devices,I dislike glitches happening on the app.,i saved myself going through the hassle of remembering passwords,10.0 +925,lastpass,Verified User (Anonymous),Mid-Market,2018-04-25,Centralized Password Management - Makin' It Easy,Lastpass Enterprise has been able to get even the most die-hard post-it note user to move into the 21st century. The ability to sync between systems and safely use side-by-side personal and enterprise accounts has made the rollout more palatable to our users.,"There are still some concerns with the system's ability to recognize when a password has been entered/updates on sites, but for the most part it generally is able to spot the change and prompt to update the saved credentials.",We needed to find a solution to sharing necessary shared-credentials to certain systems. The system of spreadsheets and password protected files was not tenable.,9.0 +926,lastpass,Heather Michelle H,Small-Business,2018-01-31,Great for remembering lots of various passwords when I only need to remember one.,"I like that I only need to remember the main password, especially for accounts where I'm forced to change my password every 90 days and can't use one I've ever used in the past. I have too many passwords to remember every time I have to change one!",Sometimes I need to change passwords on certain sites in the administrative area in Last Pass because it didn't save changes I had made after updating the password.,Remembering many passwords and only needing to keep up with one. This makes logging in to these various sites far more efficient than scrolling through a spreadsheet.,8.0 +927,lastpass,Eliot A,Small-Business,2018-04-19,End password hell,"The software service is easy to install and use. It solves the problems of organizing passwords, keeping them handy across multiple devices and remembering to change them regularly","It didn’t work on a new browser (I just installed chrome, I needed to install a different plug in. + +But really it works just fine.",Security. I end up with a little st of passwords that I need to carry with me. That’s a huge security hole.,9.0 +928,lastpass,Amy B,Small-Business,2018-01-29,Comprehensive Tool For Password Security,"I enjoy how incredibly easy it is to generate secure passwords. When I'm filling out web forms, I'm prompted to create a password via LastPass. It takes mere seconds to create a high-security password.","I've never found anything that I dislike about LastPass. It's fairly user-friendly, though I did need to do a small amount of research to understand it. This is typical of any software though.","I use LastPass to keep all of my business-related accounts secure. Examples include generating passwords for Google Docs, Google Drive, Gmail, LinkedIn, Wordpress, PayPal Business, and more. I benefit from this because I don't have to come up with complex passwords on my own - LastPass does the legwork for me.",9.0 +929,lastpass,Verified User (Anonymous),Mid-Market,2018-03-01,Easy to use across devices ,LastPass allows me to forget about remembering passwords and stress less about inventing new memorable passwords. The password generator works how it should 99% of the time and the autofill functions very well. I've been satisfied with almost every aspect of LastPass.,LastPass doesn't always get it right when it comes to identifying fields. Sometimes it will ask if you want to generate a new password in a password field where you just need to access an existing password. This can be frustrating - you have to open the vault and manually pull the password. ,Our InfoSec team enforces the use of LastPass and we utilize the Security Challenge to make sure everyone is at a certain % of safety to keep our company information safe.,10.0 +930,lastpass,Jason P,Mid-Market,2018-01-26,LogMeIn has made a great move adding this to their suite!,"Most hacks are the result of weak passwords or disgruntled employees. LastPass brings the control of a fully deployed Microsft Active Directory to every company. In under a couple hours your IT person can see the overall health of your organization's passwords and then improve the score. + +The end users get to swap out the many passwords (over 100 on average) for one Master Password. It's a HUGE time saver and keeps us from using the same password for our company email AND our online bank profile.","It's hard to make an argument for swapping a free ""personal user"" addition for a paid ""enterprise account"" until you see the admin panel. Not enough of us think about how vulnerable our ecosystems are to hack because of bad or reused passwords. ","There are TONS of benefits. Strong passwords, easy active directory, and OATH management as well as multifactor authentication. If you hand out usernames & passwords for your ORG you should see this product. ",9.0 +931,lastpass,Verified User (Anonymous),Small-Business,2018-01-22,Never Forget a Password Again!,"I love the chrome browser plugin because it will autofill your usernames and passwords as long as you are signed in, plus it will prompt you to add a new site's credentials to your vault upon account creation or when you sign onto a site that isn't already in your vault. I also love that I can access long-forgotten passwords, as long as I saved them at some point in the past.","I dislike having to change my main password as often as it wants; however, I'm aware that this is actually a good thing, as anyone who can get access to this site would have a lot of really important information of mine.","I manage accounts for myself, my business, and my clients. It would be impossible to keep them straight or log in quickly to a lot of these accounts without LastPass.",10.0 +932,lastpass,Verified User (Anonymous),Enterprise,2018-01-19,Maxed out security,"I love how LastPass keeps track of passwords and usernames for all the platforms I have credentials for. These can be updated easily when passwords change. I also appreciate the level of security. There is two-step authentication, as well as an option to not type your password but rather click on the letters, numbers, and symbols. If you're leary of keylogger software infiltrating your computer, this is a great feature to further protect your passwords and usernames. Once logged in to LastPass, when I log in to a platform, it automatically fills in the information based on the account I am accessing.","The setup for LastPass was challenging at first when onboarding with my new position. But once I got the feel for it, I was rolling. The mobile app isn't my favorite either. I primarily use this on my desktop.",LastPass helps securely store passwords for a wide variety of platforms and accounts. It has helped immensely when forgetfulness looms.,8.0 +933,lastpass,Verified User (Anonymous),Mid-Market,2018-03-28,LastPass Review,"I like the fact that all my passwords are in one place and I can easily see passwords for other websites without first going to that website. It makes it convenient to see what passwords are already stored, and if I need to add any to the list. The addition of two factor authentication was also very needed.","I wish security was a little higher, it seems that LastPass has only had a few issues since I've started using it. However, I think there are a few differences with the free version and the premium versions. I also believe the mobile application could be updated a little more, to make it a little easier to use.","The business problem I was solving with LastPass is the fact that multiple users need to remember some of the same passwords for the same websites, so this has a unified way of sharing the password without revealing what my password actually was which I appreciate in terms of security. I believe we became more efficient, especially for the accounts that were shared and security was not an issue.",7.0 +934,lastpass,Bogdan P,Mid-Market,2017-11-01,Simple and Secure,I mainly like that i don't have to remember any passwords. It's great that LastPass stores my passwords securely and they are accessible across my devices. I get the simplicity of only remembering one password and the security of hashed passwords! This coupled with their Touch ID and Face ID support on IOS makes it even easier to access my passwords!,Not a flaw of the product but it can be a bummer that you have to manually type in a 24 character password on a system that doesn't allow you to access your LastPass account such as a Playstation 4. It also was a bummer to hear that last pass had a security issue with it's browser plugin less than a year ago.,I mainly use lastpass for my personal use and have found it to be great for speed and efficiency when accessing accounts,8.0 +935,lastpass,Verified User (Anonymous),Enterprise,2018-05-17,"Buggy interface, but otherwise excellent","Has everything I need out of a password manager—automatic form fill, mobile support, a great password generator, an organized and intuitive interface.","There are occasionally some very perplexing bugs—several times I've logged in to find that I had 20 new identical entries for my JetBlue login, the form fill button is occasionally occluded by some other part of the interface, logging in to the Secure Vault occasionally fails mysteriously, etc.","LastPass allows me to keep secure passwords for all the sites I visit, business-related or otherwise, without worrying about memorizing them.",9.0 +936,lastpass,Jordan N,Small-Business,2017-10-18,How did I live without it?,"I enjoy that my passwords are securely stored in a central location. In addition to that, I can generate long passwords easily, and also use 2-factor authentication.","I dislike that I didn't know about it sooner! No, but in all honesty, there is very little I dislike about it, if at all. The only thing that may need improvement would be more integration with mobile apps, but I do realize this isnt the fault of Lastpass, but rather the app developers themselves.",I can securely store my passwords and generate secure passwords that I wouldnt be able to remember otherwise. It also is great way to store company credit card information without having to write it down on a piece of paper.,10.0 +937,lastpass,Meghan M,Small-Business,2017-12-28,Makes things faster and easier,Nice to not have to remember a whole bunch of complicated passwords - we have to log in to a LOT of things and it would be much harder if we didn't use lastpass as it remembers your data and is easy to update,"Sometimes it gets confused and doesn't know the right password for a specific site. For some sites, this makes things difficult as if you enter in the wrong password it messes things up",Quick and easy logins and remembering your data - allows me to work quickly because I don't have to stop and think about login info,9.0 +938,lastpass,Lauren N,Small-Business,2018-01-04,"Great PW solution, but needs to managed closely","Automatic prompts to save pw's for new sites +User friendly interface to retrieve and manage log ins ","Not a great solution for sites with multiple accounts eg. Google accounts. As a small business marketing director I manage several google accounts with unique log ins for each. Last Pass consistently gets these wrong. Like 90% of the time it applies the wrong pw to the username, even after I've updated it. ",Saves a ton of time and is very convenient for managing passwords. Has been irreplaceable after I had to reset to my mobile phone - I was able to recover and reset several passwords via the Last Pass interface. ,8.0 +939,lastpass,Josh P,Enterprise,2017-12-27,This one is a life saver!,What I like best about this product is the fact that it can keep my Salesforce org logins straightened out for me. I help manage multiple Salesforce orgs and it is easy to get passwords/usernames switched around. Last Pass keeps all of the combinations together and makes it easy for one-click sign-on.,I've yet to find a part of this tool that I dislike. I've had it for a little over a year now and have yet to have any issues or not do something I've needed.,Business problems are keeping track of all of my passwords for the myriad of software and utility tools that we use. It allows me to quickly get in and out of programs without having to track down the password I need in the stack of sticky notes sitting on my desk.,10.0 +940,lastpass,Verified User (Anonymous),Small-Business,2018-03-10,Password security at its best,"I am able to store passwords to literally anything. If I have a news outlet I'm subscribed to, it stores it. My social media passwords, email passwords, software passwords... all stored. Even upon log in, it gives you an option to use the mouse to click on the letters, numbers, and symbols instead of typing. This is important in case you believe there may be some key-logger malware on your computer.","Anytime you're dealing with security, it just takes a little extra time to access your saved passwords when you're logging in to LastPass. It's not so much a dislike as it is a tradeoff that only feels like a minor inconvenience. Logging in, going through the two-factor authentication, and then you're set. But I honestly have this than not for obvious reasons. But there's not really anything I dislike.","The extra layer of security for saving passwords is great. It helps me keep everything straight. Sometimes, after so long, you're required to change a password. This recognizes when I update a password and automatically asks if I want to update the password in LastPass and I love that.",10.0 +941,lastpass,Cherise B,Small-Business,2017-12-22,"Secure, Convenient, Organizable, Shareable","I love how secure LastPass is! Protected by a Master Password, and you can require password re-entry for some logins/notes. Highly organizable, easily lets me sort sites/notes into folders as needed. It's also easy to share LastPass. If you have a paid account, you can create a Shared Folder, and if you don't have a paid account, you can keep all shared items organized in folders as Accepted Share Offers. I love LastPass for work so much that I also use it for personal use! It also has a web browser extension for ease of logging into websites.",I honestly can't think of any dislikes for LastPass!,"Secure storage of sensitive information, like credit cards. One easy place to save multiple passwords. ",10.0 +942,lastpass,Anshula C,Small-Business,2017-10-07,"Takes a lot of startup time, the UI isn't great, but it does the job","When Lastpass works, it just works. It also makes it possible to share groups of passwords (operation passwords, finance passwords, product, etc.) instantly with the right employees. The Security Challenge also helped us increase the company's online security in a semi-gamified way. It also saves time in our day-to-day work.","It took a ton of time spent setting up folders, organizing passwords, and doing the initial socializing with the team. The latter is because Lastpass does take a change in user behaviour. You have to remember to log into Lastpass, remember to save passwords in a clunky UI, and then remember to select the password when logging in. The UI is also not great, even with recent UI updates. Sometimes pages have downright childish fonts (big, red, bold, Calibri, static on the page) in place of error messages. ","When Lastpass is used right, it really begins to pay for itself. All staff have access to the write passwords without compromising security. Perhaps as important - You can take away access as easily. When new staff come on board, they easily get up to speed on our infrastructure - None of that time-wasting ""Hey, do you have the login credentials to our video conferencing, product demo, etc."". UI upgrades make the whole thing a lot nicer to use, particularly when compared to a couple of years ago. Lastpass is now a product that can scale with our company.",4.0 +943,lastpass,Verified User (Anonymous),Enterprise,2018-07-30,Very Useful tool,"It is a powerful, cross platform tool, that allows the generation of secure passwords",The safari integration is rather buggy. Frequent logouts and it fights with safari/Mac built in password manager,Working with secure passwords keeps the work system more secure.,7.0 +944,lastpass,Tara M,Small-Business,2018-02-03,Great for remembering passwords - saves time and energy!,"I like how you can sign in and it will auto-fill your passwords , and every time you type a new password it can be added to your ""vault""",There were some glitches at the beginning when people couldn't share passwords with me unless I signed into Last Pass,"We had a lot of very basic passwords because we couldn't remember them all, but with this we were able to make them more complicated and not worry about forgetting - so they became more secure and easier to type in!",8.0 +945,lastpass,Verified User (Anonymous),Small-Business,2017-12-19,Secure and sync-able,"LastPass was recommended to me by a friend years ago but it took me some time to get on the bandwagon. I don't know why I waited so long to implement this great password manager! + +LastPass securely stores your passwords and syncs them across all of your devices. It's ""browser-agnostic,"" and you can use it on your mobile devices just as easily. The passwords are secured by a master password, and if you lose a device, you can easily activate LassPass on your new device and reclaim those lost passwords. + +It also has some neat features, like secure form-filling, that can make online shopping quicker and easier. + +Review collected by and hosted on G2.com.What do you dislike?The drawbacks to LastPass are similar to other password managers -- a single, potentially hackable point of entry for every password you have. LastPass has in fact been breached before, though I'm sure they are always improving security.","The drawbacks to LastPass are similar to other password managers -- a single, potentially hackable point of entry for every password you have. LastPass has in fact been breached before, though I'm sure they are always improving security.","It's a great solution for freelancers who have (like me) so many different web apps and websites to utilize as we manage and promote our businesses (invoicing, social media, mailing lists, and more.)",9.0 +946,lastpass,Kyle J,Small-Business,2000-01-01,LastPass for password management,"LastPass lets you put all your password into one location so you only have to really remember your lastpass password to get in anywhere. LastPass also uses dual authentication which makes me feel more secure about my password since for someone to log in and get access to all my passwords they would need my password and my phone (we use duo mobile for this process). + +Another neat feature is that when you use the browser plugin it will automatically detect login forms so that you can autofill in your username and password with other form fields if needed. Last pass can be also used to generate complex passwords for you. It also will pull in your browser stored passwords and tell you which passwords are the same across all your accounts and recommends you to change them.","LastPass can be a little user unfriendly to none ""techy"" people. I usually have to help some coworkers with setting LastPass up. ",LastPass allows us to have secure passwords for all our accounts in one location. This helps us enforce our employees to have safe and secure passwords.,9.0 +947,lastpass,Adam N,Small-Business,2017-10-03,LastPass has just become part of life now,"I have 20+ character randomised passwords for all sites I use. The number of combinations this could be is mind-blowing. I never have to remember passwords, and LastPass automatically fills in the sign in fields when I land on a site (most of the time, the occasional site doesn't work, but it's pretty quick to use the Chrome extension to search and copy the password). You just login to LastPass once in the morning (or you can stay logged in on a trusted computer), and that's it. Combined with two-factor authentication, and you're way more secure than most people. + +Another excellent feature is the security check you can run. It will process all the passwords you have and give you an overall score, and advice on how to become more secure (it highlights duplicate passwords, old passwords, weak passwords, etc). It also checks whether any email addresses you use have been compromised by known security hacks. Very useful. ","I worry about having all my passwords stored in one place. Obviously, they're security experts, so they must be pretty hard to crack. But, ya know, people hack the NSA, so... But it's much more secure than having easily crackable, repeated passwords on sites across the internet. Also, passwords are not automatically filled in when logging into a site on a smartphone. I have to open the LastPass app (albeit quickly with finger print entry) and then copy the password and paste it into the site I'm trying to access. To be honest, it's not a massive issue, but it is a bit of a pain (maybe I've just got used to it). But the normal desktop experience is very smooth. ","Avoiding getting hacked. I have peace of mind knowing I'm one of the secure internet users. It saves a tonne of time logging into sites (I have several hundred stored passwords, I probably only use a couple of dozen regularly, but it's amazing how many sites you need passwords for). You open the site. Email and password fields just auto fill. And you click to sign in. Simple. Honestly, I don't know how people stay secure online without a password manager, like LastPass. ",9.0 +948,lastpass,Veronica P,Small-Business,2018-01-26,Simple and Organized,I like that I can create categories for the different kinds of passwords I have. Right now I have different categories for work and personal. It really keeps everything organized and easy to find. ,"I would like to be able to clickable links into the note section so I don't have to copy and paste the link to where that specific information is used. Otherwise, I can't think of anything else. I really love LastPass! ","It's definitely a timesaver! Instead of having to flip through a notebook or messages to find passwords, they are in one space, stored securely so I don't have to worry about that either! ",9.0 +949,lastpass,Michael S,Enterprise,2018-01-22,Indispensable and blessed by HQ ,Ability to generate strong passwords with different requirements. Recognizes URLs. Easily searchable vault. Offline mode. Officially sanctioned by company policy.,"Form fill can be finicky. Creating a new PW directly from ""Generate PW"" can create a situation where it loses the password after changing it.",Maintaining strong credentials for dozens of services and tools.,10.0 +950,lastpass,Gabriella H,Small-Business,2017-10-31,This is in my list of essentials.,"I no longer have to remember passwords. I can make them all long and unique, and be sure they are safe in LastPass. The security is so good that if I ever forgot my master password, not even LastPass staff could unencrypt my database for me. Way more secure than my own brain. Also, auto logging into websites and apps on my phone is wonderful as I hate typing on small touchscreens. ","On some sites, the autofill feature fails. This usually happens when a site uses some weird dynamic popups or something for their login.","It saves me literally thousands of keystrokes. It also vastly ensures my security. If one of my accounts gets hacked, like my email, the fact that all my credentials are unique across the web means that vulnerabilities remain isolated.",10.0 +951,lastpass,Felipe L,Small-Business,2017-09-28,Best password manager,"Integration with multiple browsers and one of the best mobile apps. Also it has multiple forms to save passwords, credit cards, server information, ftp login, etc. I love the price, because it's no expensive for a company like us.",When it saves a new password I can't select a folder to save it. I must do it manually. Sometimes it misunderstand if I'm creating a new account or if I'm loging in.,"Remembering over hundred of passwords from different services, servers, ftp, credit cards, even id cards. One of the best features is that I can share accounts with other employees in a very secure way.",10.0 +952,lastpass,Madeline S,Mid-Market,2017-12-08,Best Option for the Price,I am a LastPass team administrator. I love that I can create one card with login credentials and share it with a team of people at once. I can also alter who in the team can view the password and who cannot. LastPass also allows me to update passwords and share them quickly with colleagues. From what i can tell it's the best password sharing tool for the price. ,"Where to begin? LastPass in general is slow. Everything takes twice as long as you think it would. If you are sharing passwords with others, the password does not always appear in their account right away. If you are using the chrome extension, you will definitely need to learn how to refresh the extension to make sure you have access to your passwords. ",LastPass allows my team to all have access to the same accounts without having to keep our passwords in a google sheet or written down on a piece of paper. It keeps everything secure and organized. ,8.0 +953,lastpass,Verified User (Anonymous),Enterprise,2018-04-16,Great product for use on all your devices.,The interface especially on PC is best in class and the features are all you could want in a secure password manager including generating passwords with unique password recipes and secure storage in the cloud.,The mac interface is not as appealing as 1Password which started out as a Mac and iOS app. My company gives me free enterprise account that give a personal account with all features including mobile (iOS) access.,Managing multiple passwords to multiple platforms and allowing you to create very secure passwords.,6.0 +954,lastpass,Craig B,Enterprise,2018-01-03,Easy to Use and a great value,I really like LastPass and have been using it for three years. It's super-easy to setup and going. It's made all of my passwords so much stronger and the autogenerate is great. ,There's nothing major I don't like -- all the core functionality is good. The additional features -- such as credit monitoring is really not necessary or helpful at the level I pay for.,LastPass has made it possible for me to diversify my user credentials and keep more of my account secured.,10.0 +955,lastpass,Matthew Q,Small-Business,2017-12-14,All The Password In All The Right Places,"LastPass makes it so easy to keep track of passwords. I never have to remember a password again, and even if I am using another PC or phone I can log into my account and check what a password is if I need to.",The popup to add a password can get a little annoying sometimes if it's nothing something you want to add or if it thinks it's a new password.,I can give access to contractors and others I need to check my accounts and then revoke it if needed. I also love that I can get access to clients accounts without having to worry about sharing passwords back and forth.,8.0 +956,lastpass,Tim B,Mid-Market,2018-01-03,Great Way to Generate and Store Passwords,"Lastpass has made it about as easy as possible to save passwords. You simply enter your credentials and sign into to a site, then Lastpass recognizes the new sign-on and prompts you to save.","There really isn't anything I dislike about the product. I can use it for free on my laptop or phone, it's much more secure than storing passwords in a random file or Notes app, and it's easy.","I can share account credentials with coworkers so they can log in with a group account, but not know that password I'm using.",9.0 +957,lastpass,Verified User (Anonymous),Enterprise,2018-07-11,Easy to Use,"Simple, effective to way to keep passwords linked to accounts and websites. Store yours or generate from LastPass.","Nothing, simple format, App is also free,","Can access passwords anytime, use a master password or finger touch control.",9.0 +958,lastpass,Verified User (Anonymous),Small-Business,2017-12-08,Simple and secure,"Love this software. After this there are only 3 Passwords in your life: Login of your PC/Mac, Lastpass Password and Lastpass Back Up Password. No more. ","Lastpass could be a bit annoying when there are Logins with the same Password. But in some cases, it is required to use the same password. I wish to be able to deactivate redundant alerts","Lastpass generates automatic Passwords and saving them. so every account I have contains a 30+ letters Password. This allows me to feel (mostly) safe against brute force attacks. Even the fact, that there are only 3 Passwords needet in my whole word. Even Passwords for apps are saveable in lastpass. ",10.0 +959,lastpass,Kelsey M,Small-Business,2017-09-06,Saves a ton of time,"If you manage client's accounts and are logging in and out of them all day, LastPass is a life saver! Saves tons of time each and every day for us and is a god send for people who have issues remembering passwords. Since I use multiple computers during the week (work computer, home computer, laptop) LastPass makes it easy to have all the same information on all the devices.","When selecting a username and password for login, I wish it prioritized the logins that you've used recently so it is easier to select... but, other than that, it's great!","I store all of my credentials for logging into websites using LastPass, it allows us to have a central location that is the same on all my devices.",10.0 +960,lastpass,Bret C,Mid-Market,2017-12-28,Great Security for No Price,"I love the ease of access, whether it be via mobile (which I use always) or Chrome extensions, it works great. The auto-fill option (honestly I don't use as much as I should) is a great tool!",Haven't really found something that kills it.,"I receive shares from my head office, very sensitive and high level information, notes, etc, accept and I have the information anywhere I am or go, able to help my team using this information.",10.0 +961,lastpass,Verified User (Anonymous),Small-Business,2018-03-21,Useful product,Range of information that the platform can keep - from site passwords to credit card information. Also the ability to securely share account passwords across the team.,The interface is slow at times. The chrome extension is helpful but always takes a couple clicks to go through.,We needed the ability to share access to certain accounts to different groups of people. It's been extremely useful in making sure everyone has access to the information they need.,9.0 +962,lastpass,Dustin H,Mid-Market,2018-01-16,"Simple, Reliable Password Management Solution ","LastPass makes it easy to track various passwords across numerous sites. The vault feature works as an online repository for passwords, it also automatically organizes the website passwords by website type.","On mobile Android, getting LastPass to work when you get to a site can be hit or miss. The two-step authentication sometimes decides to not accept Google authorized codes - which means you then can't use the mobile solution at all. ",I use LastPass to manage passwords and keep track of the many sites I log into on a regular basis.,9.0 +963,lastpass,nė ,Small-Business,2018-01-13,Amazing password manager,I love that it helps me to manage huge amounts of passwords both personal and work related. I also like that there is a multifactor authentication option.,"Sometimes I have problem with generating and filling new passwords. +Also it would be nice if it will be a bit cheaper.",We are sharing passwords for some accounts and LastPass makes it easier to do that. Also we are sure it is secure to share passwords using LastPass. ,10.0 +964,lastpass,Dan S,Small-Business,2017-11-05,Stellar Password Protection,The Chrome extension serves as a great reminder and tool for any new logins you don't have time to write down. You can get them converted to your LastPass account right away as a result.,"There are points where you sense it will view almost anything that looks like a password as your official password - accordingly, you need to remain on your toes with any personal data","I've introduced it at my workplace as a means to save our account passwords, and we can collaborate better as a result.",10.0 +965,lastpass,Manjunath B,Enterprise,2018-01-16,Convenient way to share keys ,Creating fodders and organization of keys ,Mac UI isn't very intuitive and you'd have to go to the web interface for a few things.,Share passwords with in the organization.,9.0 +966,lastpass,Nicole W,Small-Business,2018-01-26,Very Effective,"Even though many people use Lastpass to save their usernames and passwords for themselves, which we all need to do, I love that you can share logins with anyone you want without them ever having to see the passwords. This saves you from having to change once you stop sharing it.","I don't like that it automatically saves everything, some things I don't care to be saved. That makes it a little cumbersome.","Sharing login information with colleagues, clients, etc. without ever having to change them or fear of them being stolen or misused. ",10.0 +967,lastpass,Verified User (Anonymous),Small-Business,2018-03-13,Makes my life a whole lot easier,"LastPass is incredibly secure with the multi-device authentication, so you can rest easy knowing your passwords are safe. It's so much easier remembering one password rather than 50! It is also really easy to add passwords to your vault using the browser add on.","The browser add-on can be a bit temperamental on occasion. Aside from that, can't really fault the tool.","Less people forgetting passwords and being locked out of things! Also improves security as people aren't sending passwords over email, all our shared accounts are stored in LastPass.",10.0 +968,lastpass,Ruth S,Small-Business,2018-04-06,Indispensable app!,I know that pretty much every login I need is saved and secure.,Sometimes the Save or Update function doesn’t work.,I can move quickly in and out of my accounts. And I only have to remember one master password.,9.0 +969,lastpass,Joshua R,Mid-Market,2017-10-31,Easy and Secure,I love being able to have both a personal account and a business account at the same time. This allows our entire company to use lastpass for internal needs while having my personal passwords stored in the same area only in my own private section that stays with me if I were to leave the company account.,Obviously we only give access to password folders to internal team members we trust but even if the password is not visible to the employee when they are viewing in the vault a tech savvy person can make a small change to the HTML code to display the password. So once you give employees access to specific credentials you might as well assume they will be able to figure out the password even if the ,LastPass allows us to get more secure with storing passwords that are used company wide. Instead of messaging a password or writing it down on paper and handing it to someone it stays secure in the cloud that anyone we give access to the ability to use the passwords for any systems they need to access that are managed company wide.,10.0 +970,lastpass,George B,Small-Business,2017-09-26,"LastPass Works Great, Keeps Me Organized","Lastpass is simple to use and tracks everything. I have credit card numbers stored in there as well as notes for each family member with SSNs, medical information , etc. And it's a breeze to share information with another person.",Some companies use a third party service on their site. This can cause LastPass to get confused about the actual site name and account.,"I'm able to share a password with a co-worker from the LastPass dashboard. I can also set ""emergency contacts"" who can log into LastPass if I am unable to and retrieve information. They don't have constant access--I'm immediately notified if they log in. This helps a lot with continuity, peace or mind, and collaboration.",10.0 +971,lastpass,Verified User (Anonymous),Small-Business,2018-01-18,Very happy I've got LastPass in my life!,"As a password manager is pretty essential within any company, LastPass is the perfect solution to manage and share passwords with colleagues. The rights management makes it easy the save information for either yourself, teams or the whole company. No need to ever remember passwords again. Also 2-factor authentication is supported and makes it extra secure. ",I did have to think quite hard to find anything that I dislike as LastPass is incredibly safe to use. It does get slightly annoying just in case you have any entry saved twice with the same password but apart from that it's very easy ti use.,"We needed a solution that is as safe as possible with easy rights management. I wouldn't want to be without LastPass anymore, especially now that there are a large bunch of passwords to manage with ever expanding password length & complexity.",10.0 +972,lastpass,Juan F,Small-Business,2018-01-26,Great Password Management for IT,"I like that we can share with all the office in needed websites and server passwords etc. We can share different items with IT, and other sites for Developers, Mangers etc. So this makes it secure where not everyone has access to everything.","I don't really dislike anything, everything seems to be working great. ","We are sharing IT passwords for websites, servers and credit cards needed to purchase items. We also share some websites with developers. ",10.0 +973,lastpass,Verified User (Anonymous),Small-Business,2017-12-22,Love LastPass,"The vault feature; it's much easier to use than Google Smart Lock. It's easier to navigate, you don't have to enter the password for your PC to see your passwords, you can update your passwords in the vault, and the vault includes more information than just the website address.",When I am changing a password for a website that is already saved in LastPass sometimes a pop-up box does not pop-up to update the password.,Saving passwords for multiple websites I use for my practice and using the password generator.,7.0 +974,lastpass,Charles S,Mid-Market,2017-10-19,Seamless password management for work and pleasure,"With so many different accounts and passwords, it is hard to keep up without having the same password for all accounts or writing them down, both of which are not very secure options. Lastpass helps me feel secure with safe password protection that easily integrates in the chrome browser. My favorite part is how easy it is to use. Enter your password once and last pass stores the password for all future cases.","The UI for lastpass is a little clunky. I feel like I get lost on their webapp. Then again, I don't use it very much, so maybe I haven;t grown accustomed to it","Sharing secure passwords for shared accounts with internal employees, employees storing all of their passwords in one app, allowing them to make a secure password for every site.",8.0 +975,lastpass,Verified User (Anonymous),Enterprise,2019-11-09,Very useful,The tool is very useful. I have so many account to manage and I could eventually say good bye to files. ,Actually there are no issue in using last pass. Because for example you can decide what it has to memorize or not,"As executive assistant I had to manage several accounts on behalf of my boss, more than 20. It changed my life, and I could even decide which ones I could share with other department ",9.0 +976,lastpass,Jen M,Small-Business,2019-01-12,Long gone are the days of getting locked out of your account,"I love that there's an extension for my browser and an app for my phone. I don't have to keep trying password after password for each new website, all I have to do is log in via LastPass. If a new site needs a specific password, I don't have to wrack my brain for some weird combo. I can simply tell LastPass what the specs are voila, new sophisticated password! ","I have about 20+ Google accounts saved, between my personal and professional use, as well as clients accounts. Anytime I save a new account LastPass will ask if I want to update the password on my main account instead of recognizing that the accounts are not the same. ",I can have clients share personal information with me without revealing what their passwords are. It's great to be able to offer that peace of mind to clients who are weary about sharing personal info. ,10.0 +977,lastpass,Verified User (Anonymous),Small-Business,2019-08-15,Great decision to purchase this. ,We went from shared spreadsheets to encrypted and secure links and secure notes. I love the groups and password sharing. ,Not much. I wish there was a way to have aliases for passwords in multiple folders for the situations where I want to share a few passwords out of a shared folder with another group. ,Our password file was flat and insecure. Now it’s accessible on any device and I can hide the password from people if I really want to. ,10.0 +978,lastpass,Verified User (Anonymous),Enterprise,2020-02-27,Ease of use,Ease of use and the single pane of access,Nothing to dislike but keep evolving to be best,"Password management, MFA",9.0 +979,lastpass,Verified User (Anonymous),Small-Business,2020-02-26,Easiest and most complete,Ease of use remembering critical information,"Frequent log outs on variety of devices, particularly mobile",Taking the complexity out of passwords,9.0 +980,lastpass,Verified User (Anonymous),Small-Business,2019-08-15,LastPass is great for controlling where passwords are stored.,As manager I create the passwords and then share the links with employees but they cant see the passwords. Keeping the passwords secure and unknown to employees.,"The way that the Admin console is for shard folders. I can't look into the folders and create new items in there, I have to go to another page to do that.",Makes it easier to control who has passwords and whether they are stored in a secure place or not.,10.0 +981,lastpass,ohn g,Small-Business,2019-08-22,Great for personal use. Not great for business use.,Easy to use phone app. Web app also works pretty well. ,The business version seems very much half-baked. Strange text field for notes which doesn't display everything. Incredibly difficult to manage users.,Personal and corporate password management. ,7.0 +982,lastpass,Verified User (Anonymous),Small-Business,2019-11-18,Small Business Implementation,This has been relatively painless to implement.,Many websites are still a little more clunky than they need to be for password management.,Password re-use and writing down passwords on paper.,10.0 +983,lastpass,Frank N,Small-Business,2019-09-30,I love it,"I love that it keeps all of my passwords safe, spots duplicate or weak passwords, and suggests strong passwords.",There are moments when it seems like my LastPass browser extension on Chrome and Chrome itself are fighting for the right to handle my passwords,My passwords are much more secure than they've ever been before.,10.0 +984,lastpass,Sergey I,Small-Business,2019-04-22,solid password manager,"1. Auto-fill for websites and apps on Android +2. Emergency access when you may allow other people to access it in emergency situations +3. Sharing passwords with a team quickly",It becomes more and more expensive ($3 vs $1 before) after it's acquisition by LogMeIn. But it has a Free plan as well.,Making sure passwords are strong and quickly sharing it with my team.,7.0 +985,lastpass,Verified User (Anonymous),Small-Business,2019-09-24,LOVE this program!,"Simple, easy setup, secure, great for multiple locations/pc","Pricing +Sharing can be difficult for non-user +Login on websites can be mixed up with already browser saved passwords","I used to use spreadsheets to save password. This way is so much better, more secure, I have it on all my devices so I get the passwords everywhere",10.0 +986,lastpass,Verified User (Anonymous),Mid-Market,2019-11-18,Works well for my use case,"Ease of implementation was probably the best, getting off and running was pretty quick.","The SSO implementation and automatic account creation documentation was lacking, there were a few 'there be dragons' areas with no map.","Password proliferation, and change schedules. It becomes less of a burden to change password to follow complexity rules with lastpass there to keep the passwords safe behind a master pass phrase.",7.0 +987,lastpass,Bill N,Small-Business,2019-01-25,Security and Time Saver,"I like the security that Lastpass affords in generating and safekeeping passwords required for the multitude of passwords required today. Once you get the hang of it, is easy to use. Is cross-platform as well. For me, it saves a lot of time in dealing with passwords, and now I can comfortably have a unique password for each site, whereas before I would have the same password so I would not forget.","It is not always intuitive to use; the interface can be a bit clunky, and it often comes up at inappropriate times when asking if I want to change the password as sites that require an additional security question.","Password management, time management, internet security.",8.0 +988,lastpass,Verified User (Anonymous),Mid-Market,2019-11-18,"Solid, time tested tool","Straightforward tool, with a lot of familiarity among IT professionals. ",A little clunky on login (for anyone that travels a lot). ,"Password management, easier transition between personnel. ",7.0 +989,lastpass,Verified User (Anonymous),Mid-Market,2019-08-15,Lastpass meets our company password needs,"I most appreciate the way lastpass handles password encryption and decryption. Since the passwords are decrypted locally and Lastpass doesn't have access to raw passwords, it helps meet our security and compliance needs.","Lastpass could use more or better integrations with Azure Active Directory. It would also be nice if Lastpass could consume SAML SSO, rather then just act as a SSO provider itself.",Password management and credential sharing in an enterprise environment. ,8.0 +990,lastpass,Verified User (Anonymous),Mid-Market,2019-10-21,Great tool to manage passwords,"Integration with most of the websites is seamless, so it's a great way to have strong passwords and not having to remember all",Sometimes credit card data is not populated into forms,Remembering losts of password and having strong ones,10.0 +991,lastpass,Alex V,Mid-Market,2019-05-29,Really Solid Password Manager,"Passwords are so important, but they're impossible to manage without a password manager! I love LastPass' features, and the free price is amazing too!",I wish more sites integrated with the authentication side of the app.,"Being able to manage all of my passwords is so helpful, and having it on my mobile device means I'm never without my vault of passwords.",10.0 +992,lastpass,Ellen J,Small-Business,2019-05-20,Important for password storage and security-at times frustrating,"I like automatic password generator, I like that you can launch programs directly from lastpass and I like that i can feel 'at ease' that my passwords are protected.","my company oftentimes uses the shared login function which causes problems, and it's not always clear what the problem in + +I've also noticed that Lastpass seems to not completed update if I change my password with multiple tabs open... I could always be more careful, but it would be nice it it notified me if something would or would not be updated based on having another tab/browers open.",Keeps all my passwords in one place. I even use it for some of my personal password storate,6.0 +993,lastpass,Verified User (Anonymous),Mid-Market,2019-09-19,Best password management ,"I use it both on PC and mobile. It works perfectly, with just a fingerprint. It is secure, lastpass doesn't keep your passwords unencrypted. ",There should be an option to disable it in certain apps. Otherwise it bothers you too much. ,"I don't have to remember or enter any passwords, it all does it automatically. ",9.0 +994,lastpass,Andre B,Mid-Market,2019-07-18,No more passwords,How easy and integrated the software is with my machine,It still doesn't work well in macOS x operation system.,"I had so many passwords that it was hard to manage in a notepad. The benefit is to access all my passwords in one place, easy and sync.",10.0 +995,lastpass,Verified User (Anonymous),Mid-Market,2019-08-15,Great password manager,"Integration with applications and you can launch your websites thru the application in the mobile phone or web browser, also you can merge your personal and work accounts. ",In order to have LastPass to work with the software installed in your computer you need to setup machine by machine those programs,We had a problem with the integration or extension on Chrome and one of our web applications to work together ,10.0 +996,lastpass,Verified User (Anonymous),Small-Business,2019-08-15,Excellent overall package for password management / secure sharing of passwords.,"Ease of use, browser plugins. It seems to integrate into my computers & browsers nicely.",The way items are shared (and indicators of what has been shared with whom) is not always intuitive.,"It has allowed our entire team to be using strong passwords, 2FA and avoiding the re-use of passwords.",8.0 +997,lastpass,Lucas B,Small-Business,2019-03-06,Sharing and Collaboration needs Enhancement ,"- When one user shares something with another, the recipient can organize the shared item in their own folders. While my brother and I have similar organization methods, for team/family members with different methods to their madness, this seems to be very helpful. + +- When one user shares something with another, the recipient can accept or reject the shared item. With other solutions, acceptance is inherited if the user has access to the folder/vault. + +- Very secure solution with local-only encryption and strong encryption algorithms. + +- Sharing with Family is $4/month with LastPass including 6 users while 1Password is $5/month including up to 5 users. So if you want to save a $1/month, LastPass may be good option. +","- Sharing is not fully integrated with all functionality. Instead it is a separate component. Sharing has to be setup and managed specifically with the Sharing Center. + +- In order to start sharing, you need to “generate a sharing key”. As their website says, this takes several minutes: “Generating sharing keys can take a long time (sometimes several minutes) when done via JavaScript, and your browser may become unresponsive during this process.” + +- From the Sharing Center, you can not move items into a shared folder. Instead, you have to go into the “Sites”, select the site and then update the “folder” to be the shared folder. It is not very intuitive. + +- Even if you are part of a Team (family), and you have not created a Shared Folder, then you can not share an item. Instead you need to create your own shared folders. + +- If one user shares something with another, the other user won’t be prompted of the new item (nor have have access to it) until after they refresh the page. However, refreshing the page forces user to re-authenticate. Share is not real-time. + +- If one user has a shared item like a note and they update the note, the change by the sharee does not get propagated and updated timely in the account of the sharer. Not a real-time solution when items get changed/updated by other users. +","My twin brother and I are entrepreneurs. We have been working together for more than fifteen years. After ten years starting and growing our tech company in Seattle, we made a transition to follow our passion of building companies from zero (idea) to one (product/market fit). With our venture studio, we partner with entrepreneurs to build SaaS startups that hopefully become growing companies. In addition to my brother and I, we have one other employee. + +With over 150 various logins with around 65% of them being shared, we needed a solution to manage logins and another secure notes (account numbers, billing details, etc.). My brother was using LastPass for a couple months as a solo individual. Since LastPass had a family plan, we decided to give it a try. + +In order to onboard with LastPass all the rest of our shared logins along with my personal logs, we spent the good part of a half of a day. The main challenge we encountered was trying to understand their sharing functionality. Since the updates from one user to another are not real-time, it was extremely frustrating to use. In today’s modern times of real-time collaboration, we expected when him or I would make an update, it would somewhat quickly be reflected in the other person’s account. We ended up having to refresh the page to get the other’s updates. Each refresh, promoted us login again so we could continue getting everything setup and organized together. Eventually, enough was enough and we explored other solutions. + +Review collected by and hosted on G2.com.Title for your review:Sharing and Collaboration needs Enhancement ",3.0 +998,lastpass,Haley D,Mid-Market,2019-06-12,Good Idea but a few glitches,I like that it stores all of my passwords in one convenient location and I can access them at anytime.,I dislike the fact it wipes all of your saved passwords out once implemented. ,We are saving having a less safe way to keep out passwords. They are secured on LastPass.,7.0 +999,lastpass,Verified User (Anonymous),Small-Business,2019-11-18,useful,autologin and encryption. Able to manage other users without leaving my desk.,plugins resetting themselves after an update,Password management is better now,8.0 +1000,lastpass,Amanda C,Mid-Market,2018-04-24,LastPass Review,"Have a safe place to store passwords, not having to remember multiple passwords or re-login to applications/websites each time I use them.","Though it is helpful that they pop up and make it easy to quickly add a new password, they can be annoying and disruptive. Sometimes I have to check personal things at work (bank accounts etc) and I don't like it when lastpass asks if I want to add it. It is more intrusive than when Google for example asks me to add a password.",Not having to remember each password for the multiple resources/vendors I utilize daily for my job.,9.0 +1001,lastpass,Verified User (Anonymous),Small-Business,2018-07-22,"Great tool, simple and easy to use","It is a exalted means to present to consumers seeing that a assured lane for them to assign top secret authorizations with us. It appears considerably supplementary qualified than enquiring them to launch more than send by e-mail, too it's exalted to move on finance too get keys pooled weeks/months before. +","Apparently on the iPhone the LastPass app doesn't do because mine I perceive. When you exploitation it on the call up, it introductions the spots restore in the app moderately than flinging the app you're functioning on as a result it's kinda scheming that way. +","I come to pass able to explanations for I personally, my big business, besides my customers. It would come to pass impracticable to remain them straightforward or follow in hurriedly to a ration of these explanations exclusive of LastPass.",8.0 +1002,lastpass,Verified User (Anonymous),Small-Business,2018-04-25,Password keeper for you and your clients,"1. It has a free option +2. The security. Passwords and access can be shared securely. +3. All stored in one place with a master password. No tracking down all the logins and passwords all over the place.",I dislike that it tries to overwrite passwords and usernames when there is more than one log in available. Sometimes it tries to autofill items that do not qualify as a username and password and can cause problems throughout a site while inputting other information. ,I love that clients can securely share their passwords and take back access at any time. I never see their actual passwords. This helps streamline my workflow while remaining secure. It also helps our whole team work together on multiple clients. ,8.0 +1003,lastpass,Verified User (Anonymous),Small-Business,2018-07-31,My go to password storage,I like that it will save passwords and generate random passwords as well in order to meet some absurd password requirements that some websites and services require. It is also easy to share the passwords with other people for the purpose of team related things.,I dislike how organizations work and how an individual user is unable to remove himself from an organization unless he is an administrator himself.,"LastPass helps us a lot with maintaining various websites because all of the users on the company have access to all the same passwords. One does not even have to look up the passwords themselves, Chrome will insert the passwords for us.",10.0 +1004,lastpass,Justin B,Mid-Market,2018-04-18,Indespensible tool to improve security,"Makes passwords convenient enough that users stop using post-it's and ""cheat sheets"". It is much faster than having a user manually type it once or twice to get it passwords right. The option to share passwords fairly quickly with others is invaluable in my IT department. I feel very good about the company and having our data in the cloud. I feel it's very safe and near impossible for a hacker to get my encyrpted passwords that are only decrypted on my user side. We have one enterprise account that we use to be the main account and then we share it with personal accounts that are free. Some of our users we pay to upgrade to pro so they can access the passwords on their phones.","Sometimes it takes an hour for a new password to sync to my phone or another PC. +Concurrent access can leave you wondering which password is the newest.","Replacing ""cheat sheets"" where passwords are accessible to anyone near the person's desk. It's also not as easy as hacker opening up a plain-text file. Users can more quickly sign in. Users reset their passwords much less often. Users are much more likely to not have a universal password.",9.0 +1005,lastpass,Verified User (Anonymous),Enterprise,2018-07-02,This has changed my work flow,I love the Chrome Lastpass Extension. The extension makes it so much easier to find the page I need to go to and automatically logging in from the drop down.,Connection errors happening sometimes which makes it annoying seeing as all my passwords are stored here. The mobile app has some issues with autofilling and saving my passowrd as well.,This allows for much higher levels of security as our large office numbers require shared passwords which used to be on a piece of paper or on a website. Now the site passwords can quickly be updated and changed without the other employees needing to know what the password actually is.,10.0 +1006,lastpass,Heather R,Small-Business,2018-01-26,Perfect for Business and Personal Use,"I really like the ability to be able to securely store all (personal and business) passwords in one location. I also like the Security Challenge. It lets you know when two sites have the same password, a password hasn't been changed in an extended period of time, or if the site has recently been breached. I have slowly been going through my passwords and switching them. I really like the password generator as well. You can generate a random password (super long) and you only need to be logged into LastPass and it'll insert the login information for you so you don't have to remember the passwords. This increases your data security.","The only dislike is the iPhone app has the capability to use TouchID, but mine is hit or miss. A lot of times it will make me type in the password every time. It isn't a big deal, but I created a long password so It takes me a minute to type it in. Other than that, I don't have too many issues with it. It works like it should and I feel better about my data security. ",LastPass is helping to keep all of my data safe. It allows me have one less concern. It also makes it easier to keep track of both work and home passwords so I don't have to make them similar or write them down. ,10.0 +1007,lastpass,Verified User (Anonymous),Small-Business,2018-12-01,Great password manager for home and business,"Form fills, password generation, browser integration","Creates duplicate entries sometimes, doesn't always correctly fill the entries in","Password security, time savings from not putting information in repeatedly. No online storage of credit or address information. ",8.0 +1008,lastpass,Teresa K,Small-Business,2018-01-23,Love this app!,"Two things...I love that I only have to remember one password. I have hundreds of passwords as I do client work, and LastPass has made my business life so much easier! The second feature I love about LastPass is that it just works - all the time!",I find that sometimes LastPass doesn't work as well in Firefox.,"I am able to sign into client sites faster with LastPass, making the work I do for them faster and easier. I am also providing security to my clients by using LastPass and not storing passwords in emails, notebooks or phones. The benefit I've realized is that I can travel and never worry about forgetting a client password and this saves me so much time and worry.",10.0 +1009,lastpass,Verified User (Anonymous),Small-Business,2018-07-25,Passwords no longer lost ,"I only have to remember 1 master password instead of multiple passwords. LastPass will generate unique passwords if I need, LastPass works on my computer and also on my iPhone with the app. ",I have not found anything that I dislike about LastPass after using it for the past 2 years. ,"II no longer have to keep a spreadsheet of websites, usernames, and passwords. Passwords and information is more organized and the information can be shared with my supervisor so they can utile it also. Passwords that are generated cannot be easily figured out by others. ",10.0 +1010,lastpass,Jeff L,Mid-Market,2018-04-05,"Great Management, goes with you Anywhere.",I truly enjoy the interface and the sharing tools in LastPass. I have found that the mobile apps are very intuitive and are simple to open and find what I need quickly. I appreciate the password generator and quick fill functions in my browser. ,I find it a bit much constantly authenticating and gaining access to the app. I recognize this is necessary for the security but I find it a bit much. I wish the quick fill function would work in the browser or apps on my phone. I also dislike that it plays a backseat to the auto password tools in the Chrome browser. I constantly have my passwords autofilled and often grabbing old passwords from the browser autofill that cause confusion with the app.,It has been a great tool to sync our passwords in our team. Being able to share common passwords for Credit Cards or unique apps has been a game changer. Having a tool that works in all browsers and on my phone for authentication has been fantastic.,9.0 +1011,lastpass,Eugene B,Small-Business,2018-05-01,most convenient password storage,"- All popular browsers and platforms are supported +- Autofill in apps on Android (big time saver!) +- Passwords sharing (+it can be done without recipient seeing a password) +- Security challenge (helps you to score how strong are your passwords overall)",An interface of secure notes (which you can use to store bank cards information) is very poorly designed and inconvenient to use. ,"Making sure access to web services we use is secure, and ability to share password in a team a quickly and safely.",9.0 +1012,lastpass,Verified User (Anonymous),Mid-Market,2019-01-23,The greatest discovery,This is extremely easy to use and sync to all of your devices,It can be a difficult transition from another Password saver,keeping track of all of my passwords and making them difficult. It does all of this for you.,10.0 +1013,lastpass,Abigail D,Mid-Market,2018-01-12,No need for handwritten password cheatsheets anymore,"I used to have a very exhaustive list of usernames and passwords hidden beneath my keyboard -- obviously not the most effective (or secure) way to save this info. The worst was when I forgot to update the sheet to the most recent password; you'd get denied three times; your account would lock and then you're on hold with customer service for ten minutes trying to get in. With LastPass, you never need to write down another password again. You can rest assured knowing all your login info you handily and safely stored and accessible whenever (yes, even on your phone/tablet!) you need it. Brilliant. ","Sometimes (and it's rare), my vault will list the password for my LastPass login as the password for each site in my vault. It's a bizarre and rare occurrence but can be remedied if I back out of the window and try again.",My team and I take advantage of the sharing feature quite a bit. I also love that you can login to all your saved sites with one single click. The autofill feature does the rest. The secure notes feature is also super handy for storing things like important phone numbers.,10.0 +1014,lastpass,Glenn C,Small-Business,2018-09-18,The Only Choice for Secure Password Management,"Security, Cross-Platform, Cross Browser, and a great mobile App! I wouldn't recommend anything else.",Better Browser Integration with iPhone but I understand that is an Apple Controlled option that won't change.,Managing access to sites and data in a secure app. One of the best benefits is that the data is shareable among employees.,10.0 +1015,lastpass,Verified User (Anonymous),Enterprise,2018-10-19,Lastpass is meh,"I like how it stores passwords. That's pretty much it. Actually no, I don't like how it stores passwords, but the fact that it stores them is ok i guess.","Where do I begin. It just seems lacking for a lot of features, and it's not very intuitive. It seems clunky and geared only towards websites. Not really designed to store other types of data, for routers, or personal data.",We needed a place to store passwords and share them within our team. ,4.0 +1016,lastpass,Alicia T,Mid-Market,2018-07-30,An essential tool for Enterprises,"As a manager, I like that I can give my team access to our company accounts (social media log-ins etc) without having to share the actual password with them. This is also helpful when working with contractors and influencers who need temporary access to accounts.","Not a huge deal, but sometimes my colleagues need to log out and in again to receive and store credentials that I've shared with them.","Keeping business accounts safe, but still being able to collaborate with people both internally and externally. ",9.0 +1017,lastpass,Brett W,Small-Business,2017-12-28,How did we survive without apps like LastPass?,"Pre-lastpass, if one wanted to create a 'secure' password, you'd concoct some silly memorable phrase, using it over and over. And then someone in the Ukraine would figure it out and take over your digital life wholesale. Well, maybe just the figuring out part happened, but we know, thanks to the elevation of the former sysadmins to security officers, that passwords should never be reused, and the less memorable the better. Whereto now, then? Post-its in your desk drawer? That worked until your officemate found them and changed your tinder profile for the worse. Enter Lastpass, your one stop shopping solution to afford your digital self security and let you go wild creating accounts on every website you find. Just counted and I have 101 accounts stored in Lastpass. And I even clean up occasionally. Quite different than 101 post-its in my desk drawer.","Not their fault, but the wide variety HTML/javascript implementations of account creation and login forms on websites makes it difficult for th app to always know what to do. Easy workarounds exist though. Missing is a multi-folder sharing for premium users, pretty important with anyone seeking to share with a family member","At work we improved staff security in a big way by onboarding them with the enterprise version, especially as their formerly terrible passwords (eg their dog's name and childs birthday) went by the wayside",10.0 +1018,lastpass,Brandon M,Small-Business,2017-12-28,Lastpass for password management,"I think these days it's pretty hard not to use a password manager with the abundance of accounts we have to keep up with. I like having everything in one central spot, and the ability to generate random text passwords. Being able to keep secure notes and credit card info is nice as well.","I guess the whole concept of a password manager is a security engineer's nightmare. Particularly those like LastPass that are hosted online by a 3rd party. If you feel like you cannot trust them to keep your information secure, you should probably look elsewhere. It leaves me sort of torn...It makes me more secure by helping me have different (and randomized) passwords for various accounts, but I know my data is sitting on someone else's servers. ","I have the added benefit of being able to use the service on my mobile device as well. I see these features are starting to become baked into the phone operating systems now, but I still like the universal use I get out of LastPass.",8.0 +1019,lastpass,Kristi M,Small-Business,2017-12-28,A secure place for all of your passwords,"In the beginning, I was hesitant to use LastPass, however, it's turned out to be a very secure and safe way to share passwords. Working as an independent contractor, I often need access to client information. Whether it's access to their credit card for ordering or accessing email - LastPass is a really easy way to do it without having to share or give away your actual password. Last Pass allows you to store a multitude of secure information. ","Sometimes, it stops working and I have to clear out my cache which can be pretty annoying. Other times, I have had issues with sharing something but usually it resolves in a few hours.",Sharing passwords in a secure manner without having to see others or allow others to see your passwords. Makes it really easy to share access to sites and credit cards in just minutes. Easy to sign up and learn.,9.0 +1020,lastpass,Shane O,Small-Business,2017-12-27,Don't try to remember all of your passwords ever again,"LastPass makes it easy to not only store all of the passwords that you use online each day, but also to generate more secure passwords for added security. Too many times I've used passwords that weren't as secure or were easier to guess just for the sake of simplicity or so that they were easier to remember. ","The only drawback of using LastPass is that if you need to use a public computer to login to a favorite website, it isn't easy to remember/use the stored passwords.","LastPass allows for a much more secure online login experience. By generating passwords that can't be easily guessed and storing those passwords for users so that they don't have to remember them, it allows you to focus on being productive. ",9.0 +1021,lastpass,Jimmy G,Small-Business,2018-04-10,Works great for sharing passwords, I like this so that I can set up shared passwords for my team to log into applications . I am an insurance agent and we write insurance to many different companies and for every different company we have a username and password that we have to use between three people,This doesn’t do very well when there are more then two fields to Fill. You half to go in and manually fill in the last of the field,Were able to share a list of passwords MOXI on our team without having to write them down,8.0 +1022,lastpass,Verified User (Anonymous),Small-Business,2018-05-02,From Noob to Devotee & why you need Last Pass for client work,"I love the fact that whether you are a business or just using this for personal use you can easily set it up within a few minutes. All it takes is for your to log in once, then a small little window will ask you if you want to save the log in information you just entered. + +When working in teams you simply select the sites you wish to share passwords to and share them via Invite, all while still maintaining control over the passwords and access to them, but not divulging them to the team. ",There is no feature that allows you to track the time that you use each site in here. From a productivity standpoint that is the only thing missing from this platform. ,"Problems we're solving =Granting access to team members without comprimising password security. +Benefits = this platform also analyzes the password strengths and frequency then provides feedback to you/your team, which leads us to develop better passwords. ",10.0 +1023,lastpass,Will W,Mid-Market,2017-11-28,This is essential if you have multiple site logins (and who doesn't?),"LastPass is one place to keep all my usernames and passwords. And I can access them from any device. Plus I can group my passwords by categories that I can create -- for business, personal, etc. Once I started using LastPass, I couldn't imagine my digital life without it. I used ProbForm previously, but prefer LastPass.","Some features just don't seem to always work as expected. Like when I click the Launch button to open a saved website and automatically log in, it doesn't always fill in the username and password. But I can still view my saved username and password and then copy/paste or just type it in. It also seems fussy about working consistently across different browsers.","The problem that LastPass solves is keeping track of all the logins that are needed in our current digital world. And having the ability to log in to any site where I have an account. It's one place to keep all my usernames and passwords. And I can access them from any device. Plus I can group my passwords by categories that I can create -- for business, personal, etc. I do worry about keeping all my passwords in one place (what if LastPass got hacked?!?), but until there is a better alternative, LastPass works for me.",10.0 +1024,lastpass,Verified User (Anonymous),Small-Business,2019-01-10,browser add-on / extension is great!,increases my security by making password copy/paste so easy,"I don't dislike anything, actually! It works great!",sharing passwords with other team members,10.0 +1025,lastpass,Verified User (Anonymous),Mid-Market,2019-11-18,Lastpass is incredible!,Cross-device and cross-account support. I can log in to my personal LastPass and use it on my work computer.,Mobile lastpass is a bit wonky at times and tries to autofill for fingerprints. It also will randomly take priority over other built-in login portals so unfortunately I had to disable it.,Secure password storage and sharing. This allows for people to share keys and other logins without it floating around via Slack or on post its.,10.0 +1026,lastpass,Aristide B,Small-Business,2019-10-11,"Great software, but lacks important features","I like the integration with Google Chrome which I think is essential. The autofill feature saves me a lot of time. I also find it very easy to manage my passwords, choose which one I share with my team, etc.",I don't like the fact that getting Lastpass support seems almost impossible to find. I had some issues before and that made me switch.,I'm able to share and keep my own passwords in one secure place. This makes it really easy to share passwords with my team or keep them for myself.,6.0 +1027,lastpass,Verified User (Anonymous),Mid-Market,2019-08-15,Works As Advertised,"Customizable templates for storing credentials. This lets us shape LastPass to meet our needs, which is a feature many of the other tools we demoed was lacking. This ended up being the key feature that set LastPass apart from its competitors for us.","Some issues with managing passwords for multiple sites on the same domain, as LastPass does not differentiate between the sites by default. This can be troublesome for intranet sites. +It also detects some password reset tools as new passwords being entered, and prompts to save them, which can be frustrating.","We were looking for a cloud-based password manager to store credentials for the IT team, without the cost of some of the more expensive solutions designed for IT.",9.0 +1028,lastpass,Robert B,Mid-Market,2019-04-02,Integration and security for your passwords,"The possibility of using it as a complement to the browser you use usually gives you greater ease of use, since by being integrated with the browser, you can store all the accounts that you use on a regular basis. + +Lastpass also allows you to retrieve text messages, delete any existing duplication and perform extensively administrations in your accounts, perform any type of check to see if the operation is correct or there is some kind of error in any account. + +The application for the mobile phone also has a great design and allows to integrate accounts within the software with ease.","The only mistake I have seen during the use of this program is that when you want to change from one account to another from the same web it asks you to modify the current data, when maybe you just want to use that new account without having to put it into the system.","If you have several clients, they can pass information on your accounts, without having to pass your password. That gives them much more security, since they do not have to disclose private data and they know that their accounts are safe and will not have any problem. + +On the other hand, within our company we have stored many accounts of different platforms and web pages within lastpass. We can access them easily within this system and add or modify accounts whenever we want.",9.0 +1029,lastpass,Trevor B,Small-Business,2019-08-30,"Great for Complex, Secure Passwords","I work for a tech company that handles sensitive user data. I need to have secure, encrypted passwords to ensure account security. LastPass can generate passwords that I will never have to personally remember.","LastPass is somewhat confusing on mobile, as Apple Keychain and LastPass tend to ""compete"" for which application gets to save the password. ",LastPass made it simple to have access to all my unique passwords required both for work and my personal life.,10.0 +1030,lastpass,Verified User (Anonymous),Mid-Market,2020-02-13,Good Password Management,Good tool to help you manage your passwords.,If you use a friend's computer you have not have your account linked.,Managing the mess of hundreds of passwords.,9.0 +1031,lastpass,Verified User (Anonymous),Small-Business,2020-03-10,Solid Password Service,I like the fact that I can store all my passwords in one place. It is fairly easy to use.,Cant say there’s much I really dislike about the product.,"I have to keep track of less passwords and it keeps everything in one place for me. Convenience, security, peace of mind.",9.0 +1032,lastpass,Verified User (Anonymous),Enterprise,2019-09-04,"I love it, all my passwords safe, secure.",I like almost anything about it. It is good at creating passwords remembering them and auto filing them. I never go anywhere without my lastpass. The generate password features really helps me create and store safe passwords so criminals can't steal my credentials.,"The autofill doesn't really work on google login pages, so that's annoying but overall it is a really good experience.",I turned off autofill for google login pages and that fixed my problem. I've realised I benefit greatly from the fact I now use different and secure passwords for all my accounts.,10.0 +1033,lastpass,Verified User (Anonymous),Enterprise,2019-08-15,Excellent solution designed with lifestyle in mind,"I would say I like most the ability to link a LastPass personal account with my work account. That way, I'm not forced to log in/out constantly switching accounts in order to access credentials for my work and personal lives.","Sharing folders with other users is not very efficient. I have very little visibility into who has access to a folder if I send a share invite to a group. Also, the users will only show up as having access after they have accepted the invite. I would like to be able to add users to have access to a folder without waiting on them to accept an invitation because it makes it difficult to track whether they have access and hunt down the users if they forget to accept the invitation. ",We no longer have to worry about tracking our passwords or using the same password everywhere in order to make sure we don't forget the passwords.,10.0 +1034,lastpass,Verified User (Anonymous),Mid-Market,2019-08-15,User-friendly Password Manager,"LastPass helps me organize my business account usernames and passwords all in one place while having unique, strong passwords for each account. It is cloud-based, so I love being able to use it on both my mobile and desktop. I also love the Secure Notes section where I can just put random text I need to remember, but want to secure. I also appreciate the multi-factor authentication and the fact that they hook up with YubiKey is awesome. Extra security!","The browser extension has different useability than the mobile version, so sometimes I'm looking all over the place to find something (i.e. generate a password). I feel that the mobile version is more intuitive than the desktop version.","How to keep passwords strong, secure, and all in one place. Not only for me, but the people I work with whose accounts or privileged information I need to safely store (i.e. my boss' credit card information). Admittedly, the setup does take some time, but once you do that, getting into your accounts is a breeze.",8.0 +1035,lastpass,Verified User (Anonymous),Small-Business,2019-10-18,Love Last Pass,Easy to use and very convenient! My accounts are secure and I can login from any device.,"I wish it were a desktop app so I could use it for programs, and not just websites. I always forget my Adobe Creative Suite password, and it makes me login every time.","Passwords are more secure. It's easier to set a different password for each account when you have one safe place to store them all, and don't have to remember them.",10.0 +1036,lastpass,Verified User (Anonymous),Enterprise,2020-02-26,Met at RSA,Very friendly and informative demos. Clearly explained the services features and differences from competitors,"We do not yet use last pass, so I cannot comment",Our use case would be for provided user access monitoring and provisioning.,7.0 +1037,lastpass,Verified User (Anonymous),Small-Business,2019-11-18,HR Manager,"Easy set-up, simple to use, and security. Great customer service!","Nothing comes to mind, except I had a few issues with enabling the SSO feature, but once I watched a webinar and read some training manuals - I was able to figure it out!","The reporting feature is very useful in determining who needs to make stronger passwords, eliminate duplicate passwords, etc. ",10.0 +1038,lastpass,Jorge R,Enterprise,2019-06-11,The Last Password You Ever Going to Need,"Mobile Support +Browser Integration +Mobile Integration +Categorization +Automatic Sort of Sites +Form Integration +Form Detection +Password generation +Automatic addition of new password +Detection of password modifications +Web Support +Credit Cards Management +Basic usage is free +Option to store notes","One password to rule them all can be scary if it gets leaked +Needs to pay for premium features","The need to remember every single password on every site +Adding passwords automatically on many websites +Automatic update of recently changed passwords",9.0 +1039,lastpass,Verified User (Anonymous),Small-Business,2019-05-22,Best free password manager available,"I love that Lastpass' free tier offers cloud syncing across devices. I can update a password in my laptop browser, and then access it on my phone. Lastpass makes it so much easier to not have to remember passwords, and also use much more complicated and secure passwords. The passwords generator is very handy.","Sometimes the icon on the input fields can be wonky and hard to make work. I think it depends on the website. And if you don't turn off the browser's built-in password manager, the two can fight with each other over who is going to autofill your password. That can get annoying.","I used to keep a spreadsheet of my login information. This was one of the most frustrating and cumbersome processes. And I found myself reusing the same password so I could use my memory instead of having to open up that ugly document. Now, there's no more spreadsheet necessary, and passwords can all be unique and not memorized.",10.0 +1040,lastpass,Verified User (Anonymous),Small-Business,2020-03-04,Making security easier,"LastPass helps mitigate some of the difficult parts of being a user... complex passwords. The solution is not only more secure, but much easier than writing your passwords on post-it notes.",Nothing... it works great and as advertised.,Storage of complex passwords.,9.0 +1041,lastpass,Verified User (Anonymous),Small-Business,2020-02-27,Great simple product,The user interface is very clean and easy to use. It’s great for shared accounts and contractors for smbs,Everything is pretty good to be honest. Maybe the ease of MFA to access parent accounts,It is an easy and fast way to solve password fatigue and reuse,9.0 +1042,lastpass,Verified User (Anonymous),Mid-Market,2019-09-11,Easy enterprise password manager with many features,"At our company we decided to buy Lastpass Enterprise. One of the features responsible for that is the Super Admin Password reset, so our users can have their password reset done for them. Prior to that I have been using Lastpass Personal for years very happily. Being able to link the Enterprise account with my personal account is a very good feature. + +Having multiple 2FA options available is also a good feature.","Though I understand the technical reasoning behind it, the super admin password reset does not always work as the user needs to have used the plugins prior to it being used. ",Users (and myself) can you big random unique password per site. In modern day internet this is a must.,9.0 +1043,lastpass,Verified User (Anonymous),Mid-Market,2020-02-13,Last pass is great,it's clean to use and really helpful with being to have it on so many devices,"nothing, lastpass works great and I haven't had any complaints with it.",We manage multiple email addresses and they are used for different websites. Using Lastpass makes it really easy for colleagues to manage and use those sites.,10.0 +1044,lastpass,Verified User (Anonymous),Enterprise,2019-10-25,Solid password manager,"I like being able to securely sync my password vault across multiple devices. I also appreciate the ability to store non-password items like credit card numbers, passport information, etc. in a secure manner.",The Chrome extension is a little clunky but gets the job done.,"I rest easy knowing that none of my business accounts share the same password, and that those passwords are randomly generated and virtually unguessable.",10.0 +1045,lastpass,Verified User (Anonymous),Mid-Market,2019-11-18,Safe and easy way to manage your passwords,How easy it is to us and how it pops up seamlessly across devices ,Nothing that has to do with the service it is more having platforms keep up with the needs of their users which would mean LastPass would work easier ,Using the same password often and becoming unsafe. Knowing where all of my passwords are ,10.0 +1046,lastpass,Jil T,Small-Business,2019-07-15,Security beyond security,"This is probably the most useful password manager that has plenty of features. It is very easy to use, very straightforward and organized which makes it more efficient to use even on free version. As user, I can say that my passwords are secured plus it offers two-factor authentication to increase the protection more.","What I do not like about LastPass is their plans are not good to use and very disappointing for is doesn't have emergency access or item sharing which is very important in cases of emergency. Also, their support team is email-only support and not immediately available.",LastPass offers wide variety of advanced password management that is inexpensive yet has a high security amount of features.,9.0 +1047,lastpass,Verified User (Anonymous),Mid-Market,2019-12-05,"Decent Functionality, Good for Team Use",It's an effective way to create and store secure passwords.,I wish it worked easier with Google's auto-stored passwords. I often have trouble maneuvering around Google's mechanism to get to LastPass.,It's been a good way for my team to securely share passwords we all need access to.,10.0 +1048,lastpass,Verified User (Anonymous),Small-Business,2019-09-08,Last Pass is a Helpful Gatekeeper for Passwords,"This application helps me streamline all of my passwords into one secure location. I do not have to fret or worry that I have forgotten a password...it is right there, saved and at my fingertips.",I do not like that it often asks me for my Master Password. ,I am solving the need to remember dozens of passwords on a daily basis.,8.0 +1049,lastpass,Tom H,Mid-Market,2019-08-15,"Quick, easy and ready in a pinch",Forced to change passwords and needed a fast password repository that would sync between multiple IOS devices. LastPass came in and saved the day and was easy to setup. ,The fact that we have to use it is the only downside... otherwise I haven't found anything of issue. ,"- Sync between IOS devices +- Easy to use +- Self explanatory +- Not convoluted ",9.0 +1050,lastpass,Ben L,Small-Business,2020-08-27,Great for remote working,The ability to set up groups and shared folders makes it easy to put credentials where all needed parties can quickly find them.,"The admin portal isn't very straightforward, but that only affects me, not my users.","We have a lot of HIPAA data, so keeping all our passwords in a secure location helps us protect customer PHI.",9.0 +1051,lastpass,Travis R,Mid-Market,2020-05-27,Lastpass The Password Manager,I think the thing I like about Lastpass is that it is really easy to use and it just works.,I can't say I have anything that I really don't like at the moment.,I like how easy it is to create a group and your co-workers to the group and be able to share passwords with each other. Being in IT we have to share passwords or secure notes all the time and Lastpass makes that easy.,10.0 +1052,lastpass,Daniel G,Enterprise,2020-05-28,Perfect for managing your passwords,"It's low priced, safe to use, and easy to use in the long run, and this may be incorporated with both Yuhiko and FA. You're on the right track with this particular program and it's certainly well worth a try.","I do not have a problem saving the password of mine with LastPass, though I am constantly concerned about what I am going to do in case I lose a chance to access the web. I believe I still have access to Mac programs, though the majority of the office uses Windows.",Among the positive aspects of viewing this web site is it is extremely reassuring. I also love the point that I do not have to enter a password in the internet browser itself.,9.0 +1053,lastpass,Verified User (Anonymous),Small-Business,2020-05-27,The concept is sound. The execution is miserable,Better than nothing. SecOps approved though the features that led to it do not work (bugs). Creates secure passwords.,"Too many to list. Buggy app despite being version 4.3.0. Terrible user experience (UX). Even the purchase experience was terrible as my boss was treated horribly by their sales people. Forced us to get more seats than our team needs. Only our team needs it but as we have >2000 employees who use MS domain controllers to authenticate, they demanded we buy more seats. Worse than car buying. RE: UX, it's is very click-happy. Might be due to adherence to MS modern UI though they did better with the app vs the browser extension. Seriously cannot wait to replace it.",Secure vault for passwords using approved tool until a real enterprise solution is implemented.,0.0 +1054,lastpass,Frank M,Mid-Market,2020-03-11,Secure storage for all sensitive data in one place,"Its graphical interface is easy to understand, intuitive, in the left panel are organized the different sections where you can store your notes and credentials according to their purpose which can be bank accounts, notes, wifi passwords among many others. The mobile version is excellent because it allows the user to access it using their fingerprint without having to type any character, the application is synchronized throughout all your devices to have up to date your database at all times which is very useful.","I dislike the the windows desktop application. It is necessary to keep it constantly updated as there are bugs that are patching in the updates the devs staff push into production. Customer support is a bit slow when establishing the first contact with the customer so it is necessary to wait a little so that they can contact you back, that is once they respond to the process running smoothly and without any problems so I have no complaints about it",Having to remember all the passwords and payments data is a very difficult and at the same time dangerous task since it encourages you to use the same credentials in all your accounts for ease and laziness reasons and so if a breach happens on one of the websites or applications that you use your credentials will end it up in a pastebin somewhere within the reach of unscrupulous eyes which could unleash a complete disaster. Having lastpass has kept me in complete peace and quiet knowing that all my information is in a safe place at all times,8.0 +1055,lastpass,Roberto G,Enterprise,2020-08-05,LastPass,"Lastpass allows me to securely store passwords to different sites in one place. One of the advantages of lastpass is also a multi-platform, because we can get to our password safe from any device",I can't point out any flaws in the application is working correctly,"Managing passwords is a tedious task, so the majority of people and businesses will not do it. As a result, most employees will receive simple, dangerous passwords. LastPass keeps everything simple, so everyone uses complex and safe passwords.",9.0 +1056,lastpass,Verified User (Anonymous),Small-Business,2020-11-18,Robust and secured password manager,"I loved this tool, it gives me a secured password manager to store all my passwords in an organized manner. The auto-fill functionality, save lots of time during login. The interface is intuitive. It has multi-platform software support, which makes it a very practical tool.",The only dislike I can say is its cloud synchronization. There should be a frequency sync option to auto backup passwords.,Lastpass is a secured password manager that offers me one dashboard to easily manage all of my different platform passwords. Also now I don't need to remember every password.,10.0 +1057,lastpass,Chris G,Small-Business,2020-06-12,Save and Generate Passwords,This app will securely save passwords for every website you need to access. LastPass will generate new ultra-secure passwords that are 16 characters in length. The passwords can be shared to members of your household in case they need to access any websites they frequently enter.,It makes me forget the passwords in my head so if I need a password to gain access to a website on a computer other than mine I cannot remember it.,"As I age, my memory isn't what it used to be, so LastPass helps me everyday by remembering what I cannot.",9.0 +1058,lastpass,Davide F,Enterprise,2020-08-10,I love lastpass,"The lastpass is simple. As well as managing my passwords securely, it also tells them to keep a password in mind every time I visit a new page.","Compared to other solutions, it cannot be so easily integrated into the browser.","I have precious time. Having used LastPass reduced the time I spend entering different accounts, so I have more time to focus on important tasks. I also like the sense of security that LastPass provides.",9.0 +1059,lastpass,Andrew E,Mid-Market,2020-07-15,LastPass is a Valuable Tool for Enterprise Password Management,LastPass helps us to centrally manage all the passwords for our Qrginaztion in a secure manner. It gives us visibility and allows us to have more control over who has access to what.,Trying to give folder access to multiple folders to groups at times can be a bit cumbersome.,Getting logged into the various cloud systems we use has become much more simplified. Definitely saving us time and better access control.,9.0 +1060,lastpass,Francis M,Mid-Market,2020-06-04,LastPass Review,LastPass is actually a really well designed password management platform. Also the free edition encrypts all your passwords safely. I realize that the mobile version also works well. Browser plugins are actually what makes them very valuable. Plus the capability to make use of shortcuts makes the overall feeling much better.,"When I began the brand new job of mine, creating LastPass was a struggle. But as soon as I experienced it, it began to work. Mobile APP is not my favorite at all. I use it primarily on the table of mine.",You won't ever lose all the passwords of yours and you are going to have them at the fingertips of yours when you want them.,9.0 +1061,lastpass,Jen D,Enterprise,2020-05-08,Central place for keeping sensitive information safe in the cloud,It is truly helping us a lot in all means. There are bundles of pros of LastPass. It is super duper easy to use. It is even helpful for those beginners that haven't used any other complicated software. I love its vast support for all preferable devices of users' choice. It keeps your valuable and sensitive information safe and secures by with its strong password management capabilities. The most interesting part of LastPass is that it helps us in storing whole passwords in the cloud. It has introduced excellent ways of securing keys too with the help of password login that has accessibility authority to the owner only. No one else can open it. Its interface is best of all. Its synchronization with other devices keeps database up to date which is further helpful for our organization.,I really do not have any negative arguments about this software. I am having satisfactory experience with Lastpass. It has always proved to be useful and helpful to me.,"This is great software for sharing critical and important passwords. It is not only user friendly but also its cost friendly software. Its availability on all kinds of devices such as Android, Desktop and Mac is making it more popular day by day. Its free version is more than sufficient for people that want to keep their website accounts, credentials and bank notes safe and secure.",8.0 +1062,lastpass,Amy K,Enterprise,2020-05-08,"LastPass should be a must, in particular when managing critical job accounts","LastPass is an advanced development system which is really useful for the preservation and storing of both passcodes and user IDs. I will not have to remember all my secure passwords and app IDs until this program comes up with this amazing framework now. Additionally, I can conveniently supply several certificates across its plurality of strengths and functionality that render my job simpler and more comfortable in the short term.","There are persistent glitches in the mobile edition for Windows which can pose any danger in the credibility of the records. You can open the code by using an incorrect username and password, but the data occurs in random words, something that would not happen, and if the login is inaccurate you will not be allowed to access it in any manner inside the program. This is indeed a problem that still occurs that wasn't resolved in the various patches they've released.","LastPass has equipped our users with the ability to take care of their multifactor authentication and allows them to address problems such as old, repeated, & corrupted passwords. The Privacy Challenge is a perfect guide for having people realize what they should do to enhance their protection online.",9.0 +1063,lastpass,Kirstin H,Mid-Market,2020-05-11,Password Manager,"Generating and handling LastPass passwords is easy and efficient. The password generation choice helps you to acquire a password that satisfies all specifications, including duration and specific characters. I use the corporate app, so I can use my personal details also on my work machine by linking to my own LastPass account so I don't confuse my workers with the business.","I'm really pleased with it for the time being, but because I just work with it on my desktop, my ios device program won't be able to load the seats, however it should be nice enough.","Not only does LastPass save time, it also allows it easy to use multiple passwords everywhere, without trying to try and uninstall them all.",9.0 +1064,lastpass,Filipe N,Small-Business,2020-08-31,Amazing password manager,Manage all passwords with a simple click and the auto login form.,"Som forms d'ont fill very well, sometimes the autologin does not work in different sites.",Manage the passwords of employes,10.0 +1065,lastpass,Kate D,Enterprise,2020-05-06,Be more secure with LastPass,Security is a great concern of every organization and to protect your data in this technical era is much difficult. In order to get rid of unwanted threat and gain data protection we are using LastPass. This is helping us to protect our various applications and it the most trust worthy source. Through LastPass we never faced any issue about our password management. For me it is the secure platform for keeping safe my all passwords.,"Sometime if anyone has our necessary information or if someone new about our secret question, that could still hack our passwords, I want it, to have more strong layers of protection, especially if we are using social apps, there always remains a risk, if some new about your address.","It has made easier for us to login those website which needs password requirement, and thanks to LastPass it auto fill it for us. It is very user friendly and very simple to use. It is the best password management tool which saves our login data for different application, in its clouds and we can easily search in case if we forgot about it. LastPass uses AES-256 bit encryption with PBKDF2 SHA-256, to keep your passwords secure.",9.0 +1066,lastpass,Andrew C,Mid-Market,2020-05-05,Keep your passwords safely in the cloud with LastPass,"I like LastPass since it is very useful and gives us a lot of security thanks to the fact that this application stores our passwords in the cloud. With it, we can also secure the keys with a login password, which can only be accessed by its owner. A detail with which I am delighted is that it is compatible with multiple platforms such as windows or ios or it is also compatible with Android, this makes the application quite useful.","There is only one thing that causes me problems and I consider it to be a general problem since other users also present it. I have a problem with technical support to communicate, I can only communicate with them by email and, in addition, the process to solve any problem that may occur on the platform or simply clarify a question is extremely slow, I consider that a software that handles something so delicate as the keys are, you should have more efficient technical support","With LastPass I provide solutions to common security problems such as having an unsafe password or simply not being able to remember them all, since LastPass stores passwords for us and always have them within our reach, as well as suggesting strong passwords so that we are protected enough and not having any type of vulnerabilities, a quite useful software the truth",9.0 +1067,lastpass,Sarah F,Enterprise,2020-04-30,Powerful tool offering advanced and latest security features,I am having pretty good experience with LastPass. It safeguards the whole passwords of our organization to ensure security. It has brought much convenience in sharing passwords. It has simplified my life. It serves both purposes personally and professionally. While using this application I know my all information will be safe and secure.,It keeps our organization safe form coming dangers. It is a very beneficial tool. Truly speaking I am not having any single negative comment about it. I never encountered any threatening thing on my way.,It is the reliable tool for saving our passwords in the cloud which further remains secure by individual login belonging to the particular I'd of the user plus Master password. It works like stand alone desktop tool and behaves as browser extension. Now a days iOS and android offer Lastpass as an app that enables users to use this product conveniently on the mobile phones. Its free and paid version both are helpful enough.,10.0 +1068,lastpass,Pedro M,Mid-Market,2020-06-01,Lastpass,"LastPass not only stores all the passwords you make use of them on the Internet every day, but helps additionally by creating stronger passwords to boost the security of yours. I frequently use passwords which are not as easy or secure to imagine due to their memory or simplicity.","The application of mobile phones appears to be improving these days, though it may be hard to evaluate.",Keep the password secure. Allow temporary access without fully configuring the application.,9.0 +1069,lastpass,John T,Small-Business,2020-09-04,Great tool to store passwords and share within a team,The ability to share passwords with my team without them having to know the password.,Sometimes it is slow sharing passwords between users. Often have to refresh the lastpass vault to verify passwords were sent.,Password security and sharing between team members,10.0 +1070,lastpass,Adrian B,Enterprise,2020-08-03,LastPass review,"In my opinion, having strong passwords is the basis for proper use of the Internet in these times. I love LastPass because it enables me to control all my passwords without having to remember a millions of different combinations. I like the ability to integrate with a variety of services.",I miss the easy division of passwords into corporate and private so that I can operate all from one account,"Lastpass allows me to store my passwords securely, which is important for my work where I work on many platforms to which I need to log in.",9.0 +1071,lastpass,Arushi P,Mid-Market,2020-04-27,Save your passwords in a safe place,"I use LastPass for personal and corporate communication and I think it's a great tool, particularly when you're using both. It intercepts most OK login types as the center of your successful password administrator, and automatically fills in your own OK. The best thing is your business account can be paired with your personal account. And you can see your business as well as personal accounts right after you're logged in without having to go back and forth between them, and your passwords are still different.","Logging in is a good feature but it works quite slow sometimes. Often, it opens with a few clicks, often with a few clicks, it is perceived as closing. It is a nice tool with a number of disadvantages.","The greatest value, says Edsell, is usability. Everywhere, no matter what app I use, I could still access LP, and I make sure my key password is up-to-date, secure and long-lasting, so it's two birds with one stone.",9.0 +1072,lastpass,Sara B,Enterprise,2020-04-19,Powerful locker for my passwords,LastPass is a powerful password management tool that protects our passwords and information securely. It helps you to access your employees Pc without interrupting their work flow. It is the top most password manager app. You can enjoy this worthy tool just in four dollars per month. LastPass is very user friendly. I am happy with its all features and functions.,"LastPass mostly fill your password filed automatically for you, on some websites and that is very amazing, however some websites need to fill the passwords manually so you may find it dualistic in its approach. Moreover it is going perfect.","It works for every web browser type and support all window versions, desktops, iphones, I pads and your android mobiles. In any case if you have forgotten your password it helps you to set a new one, after following few steps. It also sends you password reminders; you can also have an option of adding your personal cell numbers.",10.0 +1073,lastpass,Leonard H,Enterprise,2020-04-18,The right storage app for all your business accounts,"Mobile version is great because it allows the users to access it using their fingerprint without having to type anything, the app is synchronized throughout all your devices and due to this being able to have up to date your database of credentials at all times which is very useful. Its GUI is easy to use, intuitive, at the left panel are organized the different elements where you can store your notes and creds according to their purpose, like social media accounts, bank accounts, notes, WiFi passwords, etc","Customer support is a slow when establishing that first contact with their staff so it is necessary to have a little of patience so they can answer you back, once they reach out the process runs smooth without any problems so I have no complaints about it. The windows desktop application needs to be constantly updated due to the appear of some bugs, so this is neccesary to patch those and to the devs staff push the update into production.","I have used Lastpass for professional and personal use, I store passwords and notes securely without having to memorize each of the account credentials I manage. The software have the ability to store my notes and passwords on a centralized platform, where it allows me to access my accounts quickly and without having to re-enter keys over and over again. Lastpass has helped me to management my notes that I need to have protected at all times, and at the same time they are accessible on any device I use.",8.0 +1074,lastpass,Aung Thu H,Small-Business,2020-08-28,Easy to use and essential tool for every business,simple and secure and easy to use and collaborate as a team,managing duplicate logins and url variations of same website. lack of multiple account sign in instead of linking between business and personal account. lack of automation features,security and collaboration simple and easy to use,9.0 +1075,lastpass,L U K E G,Small-Business,2020-05-28,Great Product but overpriced & inferior to other market players,"LastPass Enterprise is a great all-rounder: feature-rich; easy to use for normal users, even if they're not tech-savvy (but difficult and confusing for Admin users); and has a really intuitive auto-fill. It has a few advanced features – emergency access, secure storage (that divided by secure documents), and MFA that cost extra. It utilizes AES-256 encryption to secure your data, transferred over SSL encryption but doesn’t actually store your information itself, meaning that only you (and anyone else you care to share it with) have access to your master password.","Not as many features as some of its closest rivals such as Dashlane and DUO. The LastPass Enterprise paid plans are relatively reasonable when compared to total operating costs but and much more pricey than free/close to free options like BitWarden. Also, LastPass has a no-refund policy, so if you change your mind, you’ve lost your money.","Logging in to LastPass can be a difficult process if using authenticator apps and can get very complex since you can set up as many two-factor authentication options as you like from the vault’s account settings menu. Admin interface is Confusing and time-wasting compared to other high-performing, popular password managers on the market.",3.0 +1076,lastpass,Wilberto S,Mid-Market,2020-05-27,The Best Password Manager out There,"I think that LogMeIn LastPass technical support was very knowledgeable and extremely helpful. When evaluating the product, LastPass speedy responses and support were critical for my decision to purchase this application. Also, the sales team was great in helping and leading in the right direction when needed. LastPass what named one of the best password managers out there with a lot of good reviews.","Sometimes the instructions or how to's can be confusing. Better update process and browser extension support. I have been having issues enabling LastPass extension on several browsers such as MS Edge Chromium and Google Chrome. Also, I would like to LastPass provide a tool that allows us to deploy the browser extension instead of downloading it. In addition, I would like LastPass Management console to provide some kind of monitoring tool that will allow administrators to know what versions of LastPass extensions users are using, and provide an option to update remotely.","I am solving the issue we have with password management and control. We provide users with a tool that allow them to manage only one password, especially IT Administrators that need to remember several passwords and share them.",10.0 +1077,lastpass,Jaysen S,Mid-Market,2020-05-27,LastPass Is a must have for Enterprise password management,The ability for departments or groups to create and maintain a common password list. there are certain types of account where individual credentials are still not feasible. in these cases teams need tom maintain a password list. LastPass allows you to manage these list inline as part of every ones workflow. one team member makes a change and all have access.,Sometimes auto-fill fails. This is not LastPasses fault it is due to the way some websites are designed. This causes an increase call volume to the help desk as users adopt and become dependent on this otherwise great feature.,Latpass allows us to enforce strong an unique passwords according to security policies and guidelines. the enterprise dashboard is helpful in gaining insight into our organizations overall password health.,8.0 +1078,lastpass,Verified User (Anonymous),Small-Business,2021-05-26,The only password keeper that I’ve used so far,Easy to manage passwords through plugging in browser.,Difficulty in account recovery with enabled 2MF when phone device Is lost.,"Use random complicated pass for websites with no worry about memorizing them. + +Easy to categorize passwords",9.0 +1079,lastpass,Tom J,Mid-Market,2020-08-09,Creation and management of passwords for the company.,"The commercial solutions offered by Lastpass help teams and companies a lot to take control of their password practices, I like their functionalities since it has a management for one organized in alphabetical order, for the occasion of any modification of any private category option, mentioning that all its tasks are very simple, making it very flexible when working on any platform, highlighting that valid and personal accesses are stored in a totally secure way, making it my favorite backup software.","The version of the application for smartphones has problems depending on the device you use, in abbreviated terms we can highlight that the updates are imposed and run automatically once integrated into the platform, which leads to slow processes, delaying the progress of the I work to a great extent, mentioning that docking with the default browsers on your computer is a big challenge as most are not supported.","Lastpass is used in our company by all the departments that we have internally on different topics each, since it provides better security features, we use it mainly to store passwords for different servers that have high-level accounts as administrator in which need to log in, this software optimizes the internal version control process in our company, and at the same time provides great certainty.",9.0 +1080,lastpass,Chris J,Small-Business,2020-08-12,I'm a big fan of LastPass and wonder how people still don't use a password manager.,My favorite thing is their most basic function of remembering passwords of complexity and accessing them with just one master password.,"Nothing really. They use to keep increasing their cost, but then made a really great free offering that I have used for the last two or three years.",I have a big family and also work as an IT admin for a few different places. I could not keep up with all of the security accesses without this tool. The second most used item is the encryption of notes - huge fan.,10.0 +1081,lastpass,William C,Mid-Market,2020-09-12,"Great product for SMBs (i.e. less than 500 passwords). Unusable for Enterprise (~5,000+ passwords)",Excellent product if you have under 500 passwords that your company needs to securely share and restrict access based on department and role.,"Unfortunately, at ~5,000 passwords using ~100 folders, LastPass completely fails and takes minutes to load the results of a password search or sometimes completely crashes. We see these crashes and unusable load time across ~300 PC endpoints as this is a companywide issue and not an issue with a couple of individual users.",Attempting to use LastPass for companywide password security based on role and department needed access,0.0 +1082,lastpass,Ariel G,Mid-Market,2020-07-27,LastPass,"From one side, I think the most important advantage of LastPass is the fact that my pass are stable and the shape is filled automatically when I want it. I'm not worried about security or password syncing between devices. Filling in the form is quick and easy. Moreover, in case of emergency, I can get my personal tools and website in my apartment, sharing data between multiple devices.",There aren't a lot of things that don't get me into lastpass.,"That's fine! This is a great free tool that will help you save a lot of pain and headaches if you try to remember your unique passwords. In addition, it allows you to get more safe passwords, as you do not need to trying to include them all.",9.0 +1083,lastpass,Richard M,Mid-Market,2020-05-06,Strong storage for private passwords and payments information,"Navigation between all its functions is quite fluid, the transition between windows and views is very fast so it gives the feeling of being a software which is very well developed and structured along its entire features. The free version is more than enough for regular users who need to securely their credentials, website accounts and everyday app's private details, so anything you want to be kept private can be stored inside Lastpass. Support from different platforms makes this software very flexible and productive","The presence of recurrent vulnerabilities in the plugins, specifically in Chrome, thus generating a real threat in the availability and integrity of the costumer data. The login page on the web browser sometimes have a excessive loading time and even there are times that it does not load at all. Bugs within desktop applications that can mean in the harvest of your data if an attacker gain physical access to your computer.","Keeping all kinds of private information that is of high importance safe is one of the great benefits that Lastpass has implemented throughout its incorporation into the company, in addition to the fact that it can hide common files in the company version, which is used in wide part of the office departments.",9.0 +1084,lastpass,Efthimios K,Small-Business,2021-02-28,LastPass or an Alternative?,The ability to have an Online Authentication app on my phone with a fingerprint option,Sync only on 1 device as of March 2021 .,This is a password manager which utilizes all the passwords from ehatever source to be accounted.,7.0 +1085,lastpass,Shakeir A,Mid-Market,2020-08-07,LastPass,"The last pass is very simple. Apart from the fact that I handle my passwords in a protected way, it also makes me remind you to give a password every time I go to a new page.",There is nothing I do not like about Lastpass.,"Using LastPass, I invest less time in getting to different accounts, so I have much more time to focus on the tasks that are important. I also really love the sense of security that LastPass offers.",9.0 +1086,lastpass,Doug S,Small-Business,2022-08-18,LastPass has gone to the dark side. Avoid this company.,"Up until recently, it was powerful and free. That's over. Company is twisting arms to make money.","Extremely poor, unresponsive customer service. Disrespectful and deceptive.","We used it for password management, but now we are changing to another company as quickly as possible.",0.0 +1087,lastpass,Sara B,Enterprise,2020-09-02,slogans on everything,"It's really simple to exchange passwords. I usually store the passwords of mine within Chrome, but since I discovered the previous password, I keep it there, and that is quite awesome when I wish to discuss a page with somebody. I can readily share by LastPass, and they will not see the password of mine.",I do not like the pop up window which will come up each time I go to the website.,Sharing pass is the biggest problem of mine. It enable me to talk about without revealing the password of mine.,9.0 +1088,lastpass,Unai G,Small-Business,2020-07-13,One if the best and easiest solution to store sensitive data in secured way,"Password manager nowadays is a blessing since I use Lastpass I am not afraid that someone can access my services by having a strong, unique password for each platform.","I think it's a restriction of the browser plugin that doesn't allow using this function, but I think the situation will changed in the future with the emergence of this API.","See chapter ""How to do it better"". Another case of use: I make a public folder for every staff member, which can only be accessed by computer scientists and that individual. This allows me to create a new account for a new member of staff with a secure password, and they just have to log in with their main password to start.",9.0 +1089,lastpass,Verified User (Anonymous),Small-Business,2020-07-27,Great application for managing secured password sharing,LastPass is a reliable app for managing the sharing (and un-sharing) of passwords with other users. It's a must have for keeping track of use and monitoring log in activity. It's also great that it has a built in authenticator for using 2 factor authenticatiin.,"The app can be a bit buggy at times, but those are minor quirks related to the UI, and not the usability f the password sharing feature. I also do not like that the phone app doesn't ""remember"" the emails of previously shared users, requiring you to enter them each time (instead of auto suggest).","Managing shared access to accounts can be a hassle, especially when you don't want to expose your password.",10.0 +1090,lastpass,Dave L,Small-Business,2020-08-27,Super simply password coordination for teams,"LastPass shared folders are a godsend and solve the issue of shared spreadsheets that contain passwords, or duplicate accounts or universal passwords (all bad things).","I wish there was the ability to share passwords that are in a shared folder with additional individuals or in multiple shared folders. Right now you either have to create a bunch of very specific shared folders (like one for marketing, one for sales and for one sales & marketing shared items) or duplicate passwords.",Better password security for shared services. Password auditing.,9.0 +1091,lastpass,Verified User (Anonymous),Mid-Market,2020-11-11,Makes life easier,LastPass makes it simple to log in to my many many different accounts while giving me peace of mind knowing they are still secure.,Every once in a while it will pull in duplicate email addresses.,I am able to easily sign in to my various accounts/platforms without having to memorize several complicated passwords - just one click of a button and I'm in!,9.0 +1092,lastpass,Oladapo A,Small-Business,2020-07-08,LastPass,"I like LastPass and I love to hold all the passwords of mine in one spot and have super secured It will help to produce a password. I use exactly the same passwords and usernames on numerous sites that many folks use. With LastPass you just have to understand one password. This's great, which means you are able to have access to various other passwords. Additionally, it enables you to sort the page by type.","New users may have trouble supporting 1Password at first, but it is a matter of getting used to it",I don't have to worry about inventing new passwords or maybe remembering many. I can easily access my accounts and save important files.,9.0 +1093,lastpass,Alitia K,Small-Business,2020-07-21,"Easy, Secure, Great App for Passwords","Only having to remember 1 password. It's so simple, and it is a record of all of my websites, too! I can't think of an easier way to keep things safe.","Just a little busy in layout, but If I can search, I find what I need.","Used for work. When I left the job, It made transition SO EASY.I'm also teaching it to my mother, so when it is time for me to take over her paperwork, I have access.It helps to keep work and personal items separate. I can go through the list, and delete what I need to.",9.0 +1094,lastpass,Elisabeth T,Mid-Market,2020-04-14,Enterprise type password manager,"The vast support it has for different devices and platforms making lastpass available on your preferred device or environment and thanks to this please the various tastes that has each individual user. The navigation between its functions is quite fluid, the movement between windows and views is fast and efficient so it gives the feeling of being an application that is very well developed and structured along its entire functionalities. The free version is more than enough for users who need to securely store bank notes and credentials, website accounts and everyday applications private details.","One of the main weaknesses that the application has had are the vulnerabilities they have had in their plugins that has made private information leaked from the users, this has raised many concerns on the part of lastpass customers until the point of choosing other password manager software. This is the main weakness lastpass has been able to cope over time, implementing new, safer and more reliable security systems.",The need to manage common passwords for sensitive information in our department became an important fact and a powerful enterprise software and a reliable vendor was necessary. LogMeIn is a high quality company and its password management software was the icing on the cake.,9.0 +1095,lastpass,all videos M C Mukul C,Small-Business,2020-04-14,Helping us to share critical passwords," C.Creative HeadSmall-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerReview source: OrganicApr 14, 2020""Helping us to share critical passwords""Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemov","ul C.Creative HeadSmall-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerReview source: OrganicApr 14, 2020""Helping us to share critical passwords""Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo",".)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerReview source: OrganicApr 14, 2020""Helping us to share critical passwords""Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo",8.0 +1096,lastpass,Joan M,Small-Business,2021-03-01,After 10 Years - No More,In the past - able to use it seamlessly on any device,No longer able to use seamlessly. Price increase.,"Secure, individual passwords",0.0 +1097,lastpass,Verified User (Anonymous),Mid-Market,2020-08-27,Great Products but something is missing,I like how Admin can manage other internal users via its Admin Console and it does tell use or adaptation rate. We are not using SSO for this app but there seem to be a KB article out there to install or implement. The support is outstanding but takes a while to get hold of them.,The addin gets funky and we will have to logout of the session and then log back in for many users in our firm. We talked to its tech support but they said it happens and we just have to re-login to resolve this issue. This issue happens so randomly and we just couldnt recreate as its tech support request,We were trying to solve an issue with passwords being used for other locations and this software does eliminate this issue. The security test within the app is also neat as well.,9.0 +1098,lastpass,Verified User (Anonymous),Mid-Market,2020-06-11,LastPass has greatly helped our IT Team,"Our team is small and we all wear many hats. The ability for our admins to share critical passwords has saved us in critical situations. Plus, LastPass is easy to use, works with nearly every program and webform. It greatly simplifies the effort of tracking passwords and it helps to eliminate security risks such as duplicate passwords.","I found having two different logins to the same site can confuse it...even when you choose the password entry you want from its list. Fortunately, this only exists in one case for me. I also find that it's reminder that I have duplicate passwords is a bit annoying at times...which is probably by design.",We had trouble keeping up with password changes and LastPass allows us to do a much better job of this. No written-down passwords lost on a desk somewhere or visible to someone who should not know the password. Changes to passwords are immediately available to everyone who has access to that password. Much easier to manage all of the passwords that we have to know and all in one place.,9.0 +1099,lastpass,Gabriela H,Mid-Market,2020-03-19,The best password saver application in the market,"LastPass is wonderful; this application stores our passwords in the cloud. With it, we can also secure the keys with a password login, which can only be accessed by their owner. A detail that I am delighted with is that it is fully expanded on all major devices today. We can find it on mobile phones, whether they are ""Android or IOS"" and also on PC operating systems, making it possible to have my passwords anywhere. A perfect facilitator in the field of security that every user currently needs.","I have 2 problems that bother me a lot, and it is not only me but also regular complaints with the community. I have a problem with technical support to communicate, I can only communicate with them via email, and also, they are very slow to solve any problem I have. LastPass has a ""Master Key"", I forgot my password and the only way to solve that problem is to contact support, I had to wait a long time to solve that detail, very poor service.","From a personal point of view, I can say that it is worth it in every way. This software is rare to find and this one is very good at what it does. I note that these types of applications are difficult to understand, but LastPass has done a good job. The technical team has taken care of improving the interface to make it very intuitive, and that feature is very useful because it tries to satisfy all users, whether new or veteran, using the application. One of the points that have hooked me to this application is its prices and plans with what we have. We can use it personally and be a freemium / free user or we can choose to use it for business. This is a beneficial point, because we can use it personally and we do not have charges, and it covers all our demands. LastPass provides affordable and affordable prices for work groups or companies for more massive uses, perfectly goes hand in hand with good prices.",8.0 +1100,lastpass,Verified User (Anonymous),Enterprise,2019-11-19,Great solution for protecting all of your secrets,"It's easy to use and integrates with the web browser and mobile apps seamlessly. +The ability to link personal accounts with a work account and have LastPass automatically determine which one to store passwords in is a real time saver.","Sometimes it can take a while to sync changes in shared folders to other people, occasionally needing to clear cache manually or logout/login to get the updated secrets.","The ability to have a single strong password with 2FA and then abstract away all the other passwords so they are completely random and regularly changed. +Particularly useful when having to share credentials amongst a team.",10.0 +1101,lastpass,Verified User (Anonymous),Mid-Market,2019-08-16,Lastpass is a must have,"I like being able to securely store my team's passwords in a centralized, secure repository. Everyone can access them and this eliminates insecure communication mechanisms. I also like that I can tailor certain folders to groups of users. This lets me deliver what needs to be shared and to lock down what doesn't",The integration between personal and enterprise accounts is pretty clunky. I would like to see a more definitive experience where a user knows which account they are saving a password. The mobile app tends to lag behind the browser based extension in regards to syncing new passwords. It will eventually catch up but it has been frustrating in the past. Another issue with the IOS mobile application is that the integrated experience (for autofill) seems to cache passwords. This results in a problem with new passwords not showing up for a considerable amount of time. This is much more of an annoyance than anything.,"Better team collaboration and security. Benefits are that I just don't have to worry about passwords getting out there. Additionally, I can choose which folders I share to which users. This allows me to lock down things to the appropriate people/roles and protect the folders that we need to keep close to the vest.",10.0 +1102,lastpass,Verified User (Anonymous),Small-Business,2019-08-15,"Great product, but sharing is tricky and I wish there was better back-up multi-factor options","For most things, LP is easy to use, powerful, and well designed. Enterprise features are good, value is solid. Support for much more secure password procedures than people use on their own is critical, and your model is very good. ","Sharing is not intuitive. We migrated to enterprise from individual accounts and haven't found sharing intuitive, and have had trouble with non-updating shared passwords, accidentally overwritten and deleted shared passwords, and difficulty configuring shared folders. On a less critical note, MFA has a couple things I don't like, primarily around a stolen/lost phone: If I have MFA enabled with LP Authenticator on my phone and someone steals my phone and then tries to access LP on my phone, the Authentication still goes to my phone, so that unless I have fingerprint authentication turned on MFA isn't helping. If my phone is lost, I can't use a Yubi key as my back-up authentication, just messaging to my lost phone. And having messaging be the back-up MFA is a point of weakness, since it is the least secure MFA.","It definitely improves employee password practices. When it works, password sharing is great. Having the free version means that enterprise users are motivated to set up personal accounts, too, and to recommend LP to friends.",8.0 +1103,lastpass,Verified User (Anonymous),Mid-Market,2019-08-15,The last password you'll ever need...,"It works across platforms and is a big help on mobile devices. The fact that items like credit cards, wireless access point passwords, and other sensitive data can be stored and easily and readily form-filled is a tremendous positive. I love using LastPass enterprise so much that I have referred several companies to it in the last couple years. I have personally be using it since approximately 2013 from when I was introduced to it from a former employer. Back then, Enterprise, Teams, or Families wasn't even an option. I believe there was only the ""free"" and ""premium"" versions to use and the price was well under $10/user/year. (That's saying something as the price is now ~$24/user/year) I also got my wife to rely on it every day and have for a couple years now. We're using the LP Families.",It seems the Authenticator app only allows for the one-tap on one account. I have personal and enterprise. Only the enterprise works this way. Otherwise I have to use the text code.,Keeping company and personal information secured the way it should be. Drastically streamlines the day-to-day logging into multiple sites.,10.0 +1104,lastpass,Henry B,Mid-Market,2019-05-30,A good way to manage your passwords,"I like the versatility of this system, because it allows me to have at hand each of the passwords that I use in my applications without having to remember them all, and in a fast and simple way without any concern. I can use this system wherever I go because it allows me to have it on my device and in turn count on my passwords 24 hours a day, 365 days a week. + +If necessary I can share the passwords of my applications with other people without them knowing or coming to know what the password is, this is achieved by installing the corresponding extension in my browser. + +This system is amazing because with it I can have my own password vault without fear of being hacked, thanks to its security system which is one of the safest in the world. I can also install more layers of security in case I forget my password.",I really have not had any problems storing all my passwords and I have not had any major errors.,"Using this system has been very helpful in my company, since it has facilitated the management of many applications without the fear of knowing my passwords. I have also been able to create random passwords that are in turn different from the ones I used to create previously. Also for me it has been very helpful because it avoids worries and saves me a lot of time since I do not have to be remembering my passwords. + +Working safely and without fear of being hacked today is a tremendous benefit that only Lastpass has been able to give to my company and me as a person.",10.0 +1105,lastpass,Verified User (Anonymous),Small-Business,2019-12-18,Good Overall Experience,Remembering passwords is a full-time job these days. Every website requires such and they all have slightly different requirements so it is hard to keep up w/ them along with having to update them routinely. This helps streamline this process.,When I have to do a second validation after entering the password for a website it wants to always update to the validation being entered. It would be nice to have it retain that information too.,Makes it easier to keep up with logins and passwords personally,10.0 +1106,lastpass,Verified User (Anonymous),Enterprise,2019-11-18,A great product!,As an end user LastPass is a great product to ensure no password reuse and reducing the risk of a breach of one service affecting your accounts at other services. The ability for groups to share passwords and information is also extremely helpful.,Mixing business and personal accounts and access. It can be done and I need to research this more but for now I keep them separate for my sanity. ,Reduce password reuse on 3rd party sites that don't supposed our enterprise SSO. Also enable departments to use LastPass as a password store for sharing passwords for shared accounts.,10.0 +1107,lastpass,Craig C,Mid-Market,2019-12-23,Share Passwords Securely,Our organization has many departments that create accounts for other departments. Lastpass allows us to securely pass credential around.,"We are very satisfied with LastPass, I wouldn't change anything.",Better credential management and security.,8.0 +1108,lastpass,Eva G,Mid-Market,2019-08-01,LastPass is the best key manager,"LastPass is just great, it reminds me in a safe and highly encrypted place my passwords of all my websites. It is a tool that allows me to have my access credentials in the cloud, also allows me to synchronize the backup on a personal computer for greater security. LastPass offers the best encryption and is a very simple tool, very easy to use and with great storage for many passwords. With LastPass I can access all my synchronized devices without any delay which improves my access time to the primary services in the company, LastPass also offers me the option of filling out forms which is very useful for me because I usually have to fill many lists In a work day.","Perhaps a disadvantage that I get to LastPass is that I need to install it on all the devices that I need to use for its operation, this in itself is not a very big impediment but something that deserves consideration. Another aspect is that it has no offline application that allows me to administer passwords locally on my computer.","With LastPass I manage all the business passwords of our available web services, it allows me to have the primary credentials of my work in a secure and centralized place, strongly encrypted and with double authentication. LastPass also offers me a great password generator suitable for my use in this regard.",10.0 +1109,lastpass,Eric K,Mid-Market,2019-07-31,Excellent software for security purposes,Security of your online accounts can be crucial for protecting your privacy in all ways. Passwords act as basic protection for your data’s confidentiality so it should be available and unique only to you. This software allows you to manage all the passwords of your multiple websites. Only you have you remember your master password to access all of them. You can easily secure your online presence by using this software. You can say it as an amazing tool for security. This is a cloud based password management tool. This software van stores your website management information.,"This software is outstanding and useful in all ways. It has become satisfactory software for all of its users, because of its outstanding features and useful tools. But there are some issues; auto fill function of this software can be confusing for its new users.","This software offers solutions to help teams and businesses or workplaces, by taking control of their management identity. Standard version of this software comes with an interface of web also includes plug ins to various web apps and browsers for many smart phones. This software also includes support for bookmark lists. All the basic features of LastPass is serving great",9.0 +1110,lastpass,Verified User (Anonymous),Small-Business,2019-08-15,LastPass has helped my company become more efficient and secure,"Love how easy it was for my team to start using this. We went from an organization that used post-it notes for passwords to an organization that can share secure, safe generated passwords easily and electronically. Well worth the price. ","The form fills and the dashboard can sometime be confusing and generally not intuitive. I am especially frustrated by the autofill occasionally. For example, many companies used ShareFile and I have a separate account and password with each, but lastpass doesn't recognize that. While it is a sharefile URL there is a big difference between companies. small hiccups make it less fun to work with. ","I feel much better about the IT-security and database health of my company. For the money, this was by far the best choice for my small team. ",9.0 +1111,lastpass,Edward C,Mid-Market,2019-05-09,An excellent system to manage all your keys,"With LastPass you can manage all your passwords for a very low price, but if you do not have many passwords, you can use the free version that offers good protection. It can be used from your preferred browser by using an extension or download it to your mobile device. + +I love the 256-bit encryption system that has this software because it gives me a lot of security, something that other applications can not. With LastPass you can periodically perform audits of the keys and thus eliminate the keys that are duplicated. In case you forget a password, you can recover it through a text message received by your mobile device. + +Already in your browser this system will be able to load your password automatically in your website just in the assigned field. You can also activate the option to autollenar the different forms of your web pages.","I have a lot of time using this system and so far I have no complaint against this application, it is very good, and it has been very useful for my business, I believe that this system surpasses all its competitors.","It has been very beneficial to have LastPass because it gives us security and possibility to increase the efficiency of our business, in case of problems, your technical support team provide excellent assistance, they are quick to answer and very professional.",10.0 +1112,lastpass,Verified User (Anonymous),Mid-Market,2019-11-09,I don't know what I did before this!,"All you have to do is remember your 1 master password. You save your password and you can send the log in to other people, and they can use it, but if they do, they can't see your log in. Great for companies like mine where 20 of us share it. ","I can't seem to get the mobile app to work right, and you need the desktop add on to get it work. Also, someone quit in our office and we can't get in. Support couldn't help us. ",Passwords after people leave are gone. ,10.0 +1113,lastpass,Verified User (Anonymous),Mid-Market,2019-08-15,"Poor support, poor product experience",I like that it stores our passwords and allows administration through enterprise policies.,"It stores passwords for subdomains with the main domain's name, so passwords for each subdomain overwrite each other. We had a customer support manager CSM but he never helped us resolve our issues, and support was not helpful either.","Storing more complicated passwords, and in a more secure way. When it works, at least.",2.0 +1114,lastpass,Silvia F,Mid-Market,2019-07-18,LastPass is the best securing management software. ,"LastPass software provide always secure password management for the consumers and the businesses. The great advantage of this software is that it really helps to track of all my passwords for various sites. LastPass security is extremely very high that’s why it always provides the best secure password service. All our accounts now have extremely long secure password and that why we do not need to remember the password. By using this software searching for the passwords is extremely so easy to use. Moreover, it has the outstanding features such as we can quickly create complex, secure password and store and organize them in a more efficient way. ","The one obvious difficulty that we faced is that there is specific selection to generate new passwords to replace an exciting one on some and not others. Sometimes some preferences are saved in the extensions, but not in your account preferences. When issues create to reporting support then it usually takes a long time to get them fixed. But otherwise it is very secure software for supporting all my passwords in a more efficient way. ",LastPass software always provide the secure password management for the consumers and the businesses. By using this software searching for the password is extremely so easy to use. The great advantage of this software is that it really helps to track all my passwords for the various sites. All my accounts now have extremely long secure password and the great opportunity is that we do not need to remember the password. I would recommend this software because the LastPass is the best securing passwords management software. ,10.0 +1115,lastpass,Verified User (Anonymous),Small-Business,2020-02-26,A godsend,LastPass is unbelievably good. The ability to share passwords with others and that it integrates with iOS are features that put it over the top.,The “never URL” feature to prevent LastPass from auto-filling on a given site is a little clunky.,Our employees no longer re-use passwords and always use ridiculously strong ones because they don’t have to type them in!,10.0 +1116,lastpass,Verified User (Anonymous),Small-Business,2020-05-27,Top Notch!,The seamless integration between Azure and LastPass,Nothing everything worked as it was supposed to.,Controlling employee access to organization applications and requiring a long secure user password (lastpass to auto-generate),10.0 +1117,lastpass,Chris C,Small-Business,2020-03-13,Good modern password manager,It increases my overall security and encourages good security practices.,Monthly subscription pricing is an annoying trend of many software tools.,Improved personal security practics,8.0 +1118,lastpass,David A,Small-Business,2019-10-24,Make me more efficient and secure,Being able to sign on to any computer in my office and with Google sync and OneDrive they look and act identically.,When whatever new site you are creating a password does not allow LastPass to capture the login info.,Just remembering to reinput the user ID and password for new sites if needed. See above.,9.0 +1119,lastpass,Verified User (Anonymous),Small-Business,2019-11-18,Its useful but has its downsizes,"It seems to correctly detect every single password prompt. Even those that Firefox and Chrome fails. +Very easy to use for filling the password prompts.","Management for business is very clunky. +Not many ways to arrange. +I would suggest adding by site management and not by user. Or expand to make a dynamic list of sites. +It gets very hard to use the more sites you add and share. +","Account sharing with multiple staff across multiple services, devices and locations..",7.0 +1120,lastpass,Verified User (Anonymous),Mid-Market,2019-10-24,I would recommend LastPass,I like LastPass because i can share private credentials for systems to other team members. This also allows up to have one main account and other be able to access that account. It also is a great tool to manage and store encrypted passwords. ,Sometimes when i share something with a coworker the credentials do not save and they are unable to use it. Deleting it and doing it again usually fixes this. But unfortunately it happens often. ,"It helps us strong master password, it stores passwords and lets us share credentials. ",10.0 +1121,lastpass,Jose M,Enterprise,2019-06-28,Security,"The likelihood of utilizing it as a supplement to the program you use for the most part gives you more noteworthy convenience, since by being incorporated with the program, you can store every one of the records that you use all the time. + +Lastpass likewise enables you to recover instant messages, erase any current duplication and perform widely organizations in your records, play out a verify whether the task is right or there is some sort of blunder in any record. + +The application for the cell phone additionally has an incredible plan and permits to incorporate records inside the product effortlessly. +","The main slip-up I have seen during the utilization of this program is that when you need to change starting with one record then onto the next from a similar web it requests that you adjust the present information, when perhaps you simply need to utilize that new record without placing it into the framework. "," +Then again, inside our organization we have put away numerous records of various stages and website pages inside lastpass. We can get to them effectively inside this framework and include or change accounts at whatever point we need.",8.0 +1122,lastpass,Verified User (Anonymous),Small-Business,2019-09-08,Password management made easy,"Use passwords across devices and browsers with ease. Test the strength of your passwords and find duplicate passwords. In some supported websites, automatically create new passwords with one click. ","LastPass is less easy to use when it comes to mobile apps. Frequently pops up to auto fill but upon authentication never fills. Often have to use the copy and paste function instead, which is less secure. On browsers, sometimes the LastPass icon to fill password is overlayed on top browser's own password manager, making it difficult to click. Often get around this by right-clicking and choosing fill password. Sometimes when a field is on the lower part of a page, the lower half of the lastpass interface is cut off, so you have to scroll down the page more so the interface will fit. ","Lastpass is excellent for keeping track of passwords in an age where password requirements across websites vary significantly. Some apps/sites require special characters while others prohibit them. Don't store your passwords in an unencrypted document. LastPass puts all your passwords in a secure environment, and can be accessed anywhere - even devices you haven't previously used - by using their website.",7.0 +1123,lastpass,Jeremy N,Mid-Market,2019-11-18,A great service,The simplicity and security. Being able to login easily and control our passwords.,Nothing so far. Everything has been working great for us.,Work flow has been quicker being able to log into pages efficiently.,10.0 +1124,lastpass,Verified User (Anonymous),Small-Business,2019-10-31,Helpful for business passwords,"lastpass allows us to use best practice passcodes without ever having to type them out, or remember them. especially for businesses that use a lot of online services, this is literally lifesaving.",sharing passwords can be really tricky between coworkers-- the process is easy enough but more than most times it doesn't work until you share it multiple times. ,Lastpass has helped me to ONLY have to remember 2 passwords-- my lastpass master password and my locked computer password. it's really nice. saves lots of headaches. ,6.0 +1125,lastpass,Verified User (Anonymous),Enterprise,2018-12-04,Last Pass,LastPass is a great tool for holding all my passwords in one location across my devices. It also allows me to move away from using the same handful of passwords with randomly generated ones. That same feature is also really helpful for systems that require you to change your password several times throughout the year.,It isn't perfect when you have similar URLs with auto-filling the correct password. For example using a dev site and a live site it doesn't always catch the exact URL and which login/password should be used.,This is helping with potential security threats by allowing me to have more complex secure passwords randomly generated as I need them for different platforms.,10.0 +1126,lastpass,Verified User (Anonymous),Small-Business,2019-08-15,Game changer,Using Lastpass is something like a cell phone to me. How'd I live without it before? ,"sometimes clunky, could be more intuitive ","quicker browsing, secure password creation",10.0 +1127,lastpass,Verified User (Anonymous),Small-Business,2019-03-11,Best password manager!,Lastpass is easy to use and is excellent for organization as well. It automatically asks to save and I can quickly log in to accounts without thinking. ,There is nothing I dislike about this software.,"I have only benefited from using Lastpass. As someone who oversees multiple accounts, I can store client profiles and access them easily while knowing they are secured.",10.0 +1128,lastpass,Verified User (Anonymous),Small-Business,2019-02-14,Works Well,It holds all my passwords and makes it easy to share passwords with co-workers,Sometimes the sharing feature doesn't work properly. It isn't very intuitive to use. ,IT security. Most people use the same password for everything. This helps us be more secure. ,9.0 +1129,lastpass,all videos B J Benjamin E,Small-Business,2018-06-18,No More Common Passwords!,"min E. J.Freelance Automotive WritingAutomotiveSmall-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerReview source: G2 inviteIncentivized ReviewJun 18, 2018(Original Jul 25, 2017)""No More Common Passwords!""Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemov","jamin E. J.Freelance Automotive WritingAutomotiveSmall-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerReview source: G2 inviteIncentivized ReviewJun 18, 2018(Original Jul 25, 2017)""No More Common Passwords!""Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo","eSmall-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerReview source: G2 inviteIncentivized ReviewJun 18, 2018(Original Jul 25, 2017)""No More Common Passwords!""Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo",9.0 +1130,lastpass,Kajol B,Mid-Market,2018-10-30,Solved a huge problem! ,"Not sure if this a problem that everyone has, but I'm ALWAYS forgetting my passwords. It can get so difficult if you need to recover your password so often. Also, it makes being online way more secure. Very important when in a company! ","Sometimes it's difficult to use, the chrome plugin is glitchy and slow. ",Security - sharing a password with a whole team can be scary and hard. The process is much smoother with LastPass. ,10.0 +1131,lastpass,Luís V,Small-Business,2019-01-30,"Portable, Practice and Easy","I like the graphical interface and how the credentials are showed, the password generator, the secure note section and the credentials sharing. The mobile app is great and offers a widget to fill the credentials in the others apps.",Until now there is nothing that i dislike.,"Secure password generation, storage and sharing.",10.0 +1132,lastpass,Andy W,Small-Business,2019-03-13,Been using Lastpass for years. Couldn't live without it!,"I've got about 1,000 passwords and I only need to remember one (very secure) one...",The interface is a bit clunky and 'old fashioned' Could do with a nice modern makeover.,Ensuring different/secure passwords are used for for every login,10.0 +1133,lastpass,Verified User (Anonymous),Small-Business,2019-01-17,LastPass Makes password sharing easy and secure,I like that we are able to share passwords in our company securely.,I can't really think of anything that I dislike.,LastPass helps us share passwords throughout our company without worrying that they'll be found out. It makes it easy for me to login to business accounts without having to remember the passwords each time.,8.0 +1134,lastpass,Carissa W,Mid-Market,2019-01-12,LASTPass great for security and client management'x. z 2 as8,LastPass is a great software that allows my passwords to be saved in an encrypted secure vault. I am able to receive access to my client profiles while providing security and professionalism.,Unable to generate temp password for Locked shared accounts . Mobile application is not user friendly.,I no longer have to remember passwords and easily able to share access with my team.,10.0 +1135,lastpass,Sam O,Mid-Market,2018-04-29,An absolute game-changer for the enterprise,The ability to manage shared folders and pushing passwords into our user's vaults. The AD integration is fantastic and makes management a breeze providing you have a well structured AD. The enterprise options with the CSV uploading of bulk accounts into the system is also great as it means we can set up a lot of new starters accounts for various systems at the same time and push their login information into their vaults so they are all ready for onboarding.,At times I have found that the system can be unreliable after an update has been released. It seems to not decrypt the vault properly. Also mobile experience is not great at times.,Not having users asking constantly to reset passwords or what their account information is for particular systems,10.0 +1136,lastpass,Anthony P,Small-Business,2018-12-05,Password Management Made Easy,LastPass is a fantastic tool for every day IT. The amount of controls and reporting available within the app are close to none. ,There isn't much to dislike. Highly recommended to all.,Password management with rotation capabilities and identity/access reporting.,10.0 +1137,lastpass,Verified User (Anonymous),Small-Business,2018-07-31,Safety and Convenience All in One!,"Last Pass keeps track of all my passwords, bank accounts, PIN numbers, confidential client information and even notes to myself. The information is right at my fingertips and Last Pass even logs me in to my accounts. It's safe because a master password or fingerprint is required to get into the vault!",The login feature doesn't work well when there are multiple layers of passwords or PINs.,"The main thing is that it saves me time. Rather than having to navigate to every account to which I wish to log in, everything is on one page, in alphabetical order and I can navigate to account after account quickly, easily and seamlessly!",10.0 +1138,lastpass,Verified User (Anonymous),Small-Business,2019-01-25,"Love it, recommend it all the time","Everyone should have a password manager, and last pass is very used friendly. I use it for both business and personal.",Nothing comes to mind! It's pretty great,Allows me to create secure and unique passwords every time without having to memorize them.,10.0 +1139,lastpass,Crystal S,Small-Business,2018-03-28,As promised,"This is a no nonsense program that does exactly what it says it will. It is accessible anywhere, anytime, but not by everyone. I have no concerns about the safety of delicate/secure data we have saved and love the decrease in headaches and time lost trying to remember passwords for various sites or agencies.",Sorting is more difficult than I'd like. Many of our sites don't automatically go to the folders they should and when you've got nearly 100 passwords it's annoying having to scroll past dozens of non-applicable sites to get to the one you need. Drag and drop functionality would be loved!,"Some of the government sites we use require passwords to change every 30-60 days and have very complex guidelines. Last pass is an amazing tool that not only remembers and auto fills those passwords, but can generate qualifying ones as well. So it's a time saver, a frustration remover, and all around life saver...",10.0 +1140,lastpass,Verified User (Anonymous),Small-Business,2018-11-22,Great way to keep passwords safe,"Easy to use - you just have a master password on your end, but it sets up crazy passwords, that can be something like 20 characters, and it's a combination of letters (uppercase and lower), numbers, symbols, etc. so it makes it virtually impossible to hack the password. ","Setting up all if your accounts is a little time consuming, but it is worth it to protect my information, as well as the private information on my customers.","It has made us less vulnerable to an attack, and we feel secure with the security they provide. ",9.0 +1141,lastpass,Diana A,Small-Business,2018-03-30,Great For Securely Sharing Passwords Across Different Teams/Departments,"Able to customize share settings, making some private, others for specific team members, and others for anyone within the organization. ",No as intuitive to use as some other integrations. It is easy to use it as a filing system for securely storing and sharing passwords but the more automated functions require a little more thought/set up. ,"Instead of having a spreadsheet of passwords, this allows us to store them more securely and customize who gets access to which account information within the organization.",10.0 +1142,lastpass,Verified User (Anonymous),Small-Business,2018-08-30,It is just good,"It was my first Password manager. It very easy to handle and to use. I like the most feature that automatically changes passwords when you want. It is just comfortable to use. It's not expensive, and I recommend to have a paid version. Then you can share passwords with your team.","Some bugs are just not cool. Sometimes it makes double entries for the same website, and that confuses me when I saw a 3 or 4 same entries. For a long run, it wasn't the best tool for our needs, but I think that was because of us, not the tool :) +",All passwords in one place. Easy login.,7.0 +1143,lastpass,Verified User (Anonymous),Small-Business,2018-06-12,Makes my life easier,I like that the platform is nicely synced between my laptop and mobile device so it stores all of passwords which are now just fingertips away. Very convenient.,"Apparently on the iPhone the LastPass app doesn't work as well I hear. When you use it on the phone, it launches the sites right in the app rather than launching the app you're working on so it's kinda tricky that way.","basically just time and convenience of storing passwords on a piece of paper and going mad trying to find them. Also, LastPass can generate secure passwords easily so that in and of itself is AWESOME!!",10.0 +1144,lastpass,Garett D,Small-Business,2018-07-16,Solid password management,"Works everywhere. Lastpass has a good track record for security. Tools included are very helpful (password generator, security checkup, etc.)","Android app quality has been getting worse lately. In general, the quality of the various clients aren't quite as polished as some competitors'.",Providing a secure repository for passwords. Makes sharing passwords easier and much more secure. Also allows for keeping better passwords,8.0 +1145,lastpass,Verified User (Anonymous),Small-Business,2019-01-11,"Been using for years, great solution",Sharing passwords with team members without them getting the actual password.,Sometimes it conflicts with Google passwords and gets a bit confusing.,I can store client passwords securely without using a Word document.,10.0 +1146,lastpass,Verified User (Anonymous),Small-Business,2018-07-31,Can't do without,"Being able to save usernames and passwords is great, but being able to share usernames and passwords (while keeping passwords obscured) is amazing. Such an awesome feature!","Not a fault of LastPass, but sometimes it doesn't work very well with how some sites are configured - it either doesn't recognize that there is a saved UN/PW, or it doesn't function properly. Again, not a fault of LastPass.","Being able to share Usernames and passwords, while keeping passwords secure/obscured is such a great feature - no more changing passwords just because an employee leaves, or you no longer want them to have access to it!",10.0 +1147,lastpass,Verified User (Anonymous),Small-Business,2019-01-27,Very helpful for organizing all passwords ,Last pass is easy to use and very helpful organizing all our passwords for business tools. ,I wish you could select when you want it to save a password instead of always popping up when I don't need it. Kind of annoying. ,Helps organizing our many passwords and less thinking when logging in to sites. It automatically does it for us! ,10.0 +1148,lastpass,Federico J,Small-Business,2018-02-28,Saves me a lot of time and frustration every single day,"I work online all day and use a ton of apps and services during the day. If I had to remember my password for each one of those, I would have gone mad a long time ago. + +LastPass stores all of my login credentials and helps me sign in to my online apps with just a couple of clicks, every time. I don't have to worry about remembering my passwords, keeping a text file with them (huge security issue!) or even typing my login credentials every time I want to log in somewhere. + +I can also share credentials with other people (without them seeing my password). This helps immensely when you work with clients and need to log in to their services. They can simply install the LastPass extension and share their logins with you.","Lately I had to log out and in again from my LastPass account to receive and store credentials that are shared with me. This doesn't happen often, but when it does it's a bit annoying.",Securely storing all of my online credentials. I can share credentials with others in a simple and secure way. Saves hours of time every month from logging in and out from online services.,10.0 +1149,lastpass,Sigrid x,Small-Business,2018-07-12,Buggy product and terrible customer service,Possibility to generate secure passwords and possibility to store these safely. ,"Buggy product, have had issues with with seeing passwords, settings (automatically logout), login in, and retrieving my password. Our LastPass admin is not able to give me a new password, as he is also experiencing issues with the system. +Customer support has not been helpful, polite, nor able to solve our requests. ","Have used different systems at other companies, and compared with them, LastPass does not have any benefits. My company in general are fed up with LastPass (aka LostPass), and we will most likely change provider. ",0.0 diff --git a/csv/RetroApril.csv b/raw/RetroApril.csv similarity index 100% rename from csv/RetroApril.csv rename to raw/RetroApril.csv diff --git a/csv/RetroMarch.csv b/raw/RetroMarch.csv similarity index 100% rename from csv/RetroMarch.csv rename to raw/RetroMarch.csv diff --git a/raw/RetroMay.csv b/raw/RetroMay.csv new file mode 100644 index 0000000000000000000000000000000000000000..2d386aa854a0f4a8cd43b935b9fd058f570026ca --- /dev/null +++ b/raw/RetroMay.csv @@ -0,0 +1,120 @@ +"userwithid","question","response" +"Primary User-10270","To improve our execution what should we add?","* Platform: Identify critical tasks that could impact multiple teams and plan activity to complete early in the release if possible. +* Cleanup of stale records" +"Primary User-10270","What went well in this release?","* Product attributes and filtering +* Lots of infra enhancements: CDKv2, Gitlab runner operationalisation, VPN +* Admin gateway and retool integration +* 800+ points in lats sprint of 0.9.11" +"Primary User-10270","Were the requirements clear at the time you picked up your tasks?","Mostly clear" +"Primary User-10270","As a member of the Product Management team, how do you rate the quality and payload size of the release?","N/A" +"Primary User-10270","What didn't go well in this release?","* Deployment issues due to cdkv2: this was kind of expected but it majorly threw us off when synth works fine but deployment fails. +* DB changelog lock issues occurring twice within a week in integration and impacting stage deployment of pulse-manager +* DB migration to aurora is not complete yet: partly due to prioritization (snowflake over DB migration) and also due to heavy usage of integration env during last 2 sprints of a release. this task could have been planned better" +"Primary User-10271","What went well in this release?","-Automating few release features in development sprint. +-Fixing ST tear down and few other issues to run the test cases in parallel ." +"Primary User-10271","Were the requirements clear at the time you picked up your tasks?","Mostly clear" +"Primary User-10271","As a member of the Product Management team, how do you rate the quality and payload size of the release?","N/A" +"Primary User-10273","Were the requirements clear at the time you picked up your tasks?","Mostly clear" +"Primary User-10273","As a member of the Product Management team, how do you rate the quality and payload size of the release?","N/A" +"Primary User-10276","Were the requirements clear at the time you picked up your tasks?","Mostly clear" +"Primary User-10276","As a member of the Product Management team, how do you rate the quality and payload size of the release?","Good" +"Primary User-10278","Were the requirements clear at the time you picked up your tasks?","Mostly clear" +"Primary User-10278","What went well in this release?","- Increased system test coverage +- Early test planning and system tests for release features +- Effective collaboration and communication between the QA team, development team, and other stakeholders throughout the release +- Low Defect density" +"Primary User-10278","What didn't go well in this release?","Systest failures on int is not attended +P2 issues triaging of previous releases" +"Primary User-10278","To improve our execution what should we add?","Progress of release should be made available for all. Items included or excluded dynamically should be captured/documented" +"Primary User-10278","As a member of the Product Management team, how do you rate the quality and payload size of the release?","Very Good" +"Primary User-10278","As a member of the product management team, please explain your choice in the previous response.","NA" +"Primary User-10278","Can you please suggest any improvements to the structure/agenda of the meetings you typically attend?","Weekly sprint retro->We can have new set of questions on lessons learned, collaboration and new practices followed that proved beneficial to team's productivity" +"Primary User-10284","Were the requirements clear at the time you picked up your tasks?","Crystal clear" +"Primary User-10284","As a member of the Product Management team, how do you rate the quality and payload size of the release?","N/A" +"Primary User-10284","To improve our execution what should we add?","As discussed on slack, we can try to focus more on reviewing and testing the parts which seem to be a major change before stage/prod deployments." +"Primary User-10284","What didn't go well in this release?","Database and deployment issues (but was a good learning experience)." +"Primary User-10284","What went well in this release?","Faced some issues with deployments and DB related queries, but on the positive side were a good learning experience. All in all got to know a few new database related things." +"Primary User-10284","Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear.","The designs were ready beforehand but more importantly were very detailed. Also, thanks to @Anandhi and @Meaghan for replying actively on Figma to any doubts or clarifications (mainly the Pulse List Updates)." +"Primary User-10285","As a member of the Product Management team, how do you rate the quality and payload size of the release?","N/A" +"Primary User-10285","Were the requirements clear at the time you picked up your tasks?","Crystal clear" +"Primary User-10285","What went well in this release?","Clear requirements, Good feedback from design review" +"Primary User-10286","To improve our execution what should we add?","- Verify DB migration with stage and prod DB data dumps so we do not see surprises during deployment +- API validations so system tests cannot introduce bad data +- Review and update alerts proactively , may be a person per release owns this" +"Primary User-10286","Were the requirements clear at the time you picked up your tasks?","Mostly clear" +"Primary User-10286","As a member of the Product Management team, how do you rate the quality and payload size of the release?","N/A" +"Primary User-10286","What went well in this release?","- Aligned better to the jobs to be done for the quarter in the current release +- Thanks to Ritu, Guru, Pradeep, Sanjeev and Shivam for helping out with some of the collab areas t ospped up delivery in 0.9.12" +"Primary User-10286","What didn't go well in this release?","- The deployment issues to stage for collab services +- One of the customer issues not caught by our alerts" +"Primary User-10288","Were the requirements clear at the time you picked up your tasks?","Mostly clear" +"Primary User-10288","As a member of the Product Management team, how do you rate the quality and payload size of the release?","N/A" +"Primary User-10290","What went well in this release?","" +"Primary User-10290","Were the requirements clear at the time you picked up your tasks?","Mostly clear" +"Primary User-10290","Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear.","" +"Primary User-10290","Can you please suggest any improvements to the structure/agenda of the meetings you typically attend?","" +"Primary User-10290","As a member of the product management team, please explain your choice in the previous response.","" +"Primary User-10290","As a member of the Product Management team, how do you rate the quality and payload size of the release?","N/A" +"Primary User-10290","To improve our execution what should we DROP?","" +"Primary User-10290","To improve our execution what should we add?","" +"Primary User-10290","What didn't go well in this release?","" +"Primary User-10291","Were the requirements clear at the time you picked up your tasks?","Mostly clear" +"Primary User-10291","As a member of the Product Management team, how do you rate the quality and payload size of the release?","N/A" +"Primary User-10291","What went well in this release?","1. Venkat has joined the UI team and has started contributing to the release. he has helped fixing the issues identified dev testing on teams iframe redesign. +2. We have started to use LD flag for most of the UI features wherever we can." +"Primary User-10292","As a member of the Product Management team, how do you rate the quality and payload size of the release?","Very Good" +"Primary User-10292","Were the requirements clear at the time you picked up your tasks?","Mostly clear" +"Primary User-10292","What went well in this release?","Releasing lambdas and creating a release process for them went well" +"Primary User-10293","Were the requirements clear at the time you picked up your tasks?","N/A" +"Primary User-10293","As a member of the Product Management team, how do you rate the quality and payload size of the release?","N/A" +"Primary User-10293","What went well in this release?","Some of the teams were not loaded fully during the early part of the release but as the sprints progressed the teams were loaded better." +"Primary User-10294","Can you please suggest any improvements to the structure/agenda of the meetings you typically attend?","NA" +"Primary User-10294","What didn't go well in this release?","NA" +"Primary User-10294","As a member of the Product Management team, how do you rate the quality and payload size of the release?","N/A" +"Primary User-10294","As a member of the product management team, please explain your choice in the previous response.","NA" +"Primary User-10294","Were the requirements clear at the time you picked up your tasks?","Mostly clear" +"Primary User-10294","To improve our execution what should we add?","NA" +"Primary User-10294","To improve our execution what should we DROP?","NA" +"Primary User-10299","Were the requirements clear at the time you picked up your tasks?","Mostly clear" +"Primary User-10299","As a member of the Product Management team, how do you rate the quality and payload size of the release?","N/A" +"Primary User-10300","Were the requirements clear at the time you picked up your tasks?","Mostly clear" +"Primary User-10300","Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear.","Figma spec for new pulse list was crystal clear. Thanks to meaghan. " +"Primary User-10300","As a member of the Product Management team, how do you rate the quality and payload size of the release?","N/A" +"Primary User-10301","What didn't go well in this release?","Too many parallel changes related to pulsing by multiple developers in similar classes, causing a lot of time to be spent in resolving merge conflicts." +"Primary User-10301","What went well in this release?","Pulses UX changed, reminders added. +Backend re-design of pulse scheduling done along with the ongoing changes for user timezone based delivery ." +"Primary User-10301","Were the requirements clear at the time you picked up your tasks?","Mostly clear" +"Primary User-10301","As a member of the Product Management team, how do you rate the quality and payload size of the release?","Good" +"Primary User-10302","As a member of the Product Management team, how do you rate the quality and payload size of the release?","N/A" +"Primary User-10302","Can you please suggest any improvements to the structure/agenda of the meetings you typically attend?","N/A" +"Primary User-10302","As a member of the product management team, please explain your choice in the previous response.","N/A" +"Primary User-10302","To improve our execution what should we DROP?","Nothing much" +"Primary User-10302","To improve our execution what should we add?","1. Presence of service owner during the stage or production deployment process, especially in cases where significant changes in service has occurred. +2. We can add happiness score indicator in retro(Overall happiness - includes everything )." +"Primary User-10302","What didn't go well in this release?","Context switch between services ate little time ." +"Primary User-10302","What went well in this release?","Got chance to work on collab services ." +"Primary User-10302","Were the requirements clear at the time you picked up your tasks?","Mostly clear" +"Primary User-10303","What didn't go well in this release?","There is some un-planned work like Imply Polaris, even though it is a small size effort, in a small team it has its impact. +Our evaluation on vector databases also expanded a little bit due to the new features in OpenSearch, Postgres etc." +"Primary User-10303","To improve our execution what should we add?","N/A" +"Primary User-10303","Can you please suggest any improvements to the structure/agenda of the meetings you typically attend?","For some of the meetings like SOS meetings, we need to make sure we have representation from all teams including PM teams." +"Primary User-10303","You rated the ${DimensionName} of ${ProductName} poorly, can you please elaborate?","N/A" +"Primary User-10303","As a member of the product management team, please explain your choice in the previous response.","N/A" +"Primary User-10303","As a member of the Product Management team, how do you rate the quality and payload size of the release?","N/A" +"Primary User-10303","To improve our execution what should we DROP?","N/A" +"Primary User-10303","Were the requirements clear at the time you picked up your tasks?","Mostly clear" +"Primary User-10303","Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear.","We have very clear goals for the quarter but we are running behind on Q2 plans a little bit because most of the specs are getting ready now to start execution." +"Primary User-10303","What went well in this release?","In data team most of the cycles we spent on research spikes for the NLP based chat interface. We have overall design to use NLP in various use cases like Chat interface, Pulse question generation and Reports." +"Primary User-10983","Were the requirements clear at the time you picked up your tasks?","Mostly clear" +"Primary User-10983","As a member of the Product Management team, how do you rate the quality and payload size of the release?","Good" +"Primary User-12741","To improve our execution what should we add?","We should have execution by squad in the same view as the release plans, so when there is a disconnect is it highlighted and we are able to resolve it autonymously." +"Primary User-12741","As a member of the Product Management team, how do you rate the quality and payload size of the release?","Moderate" +"Primary User-12741","As a member of the product management team, please explain your choice in the previous response.","Some of the Q2 items (smart pulse, onboarding, pulse list update, gamification - in 0.9.12) took more effort than expected and had longer lead times. These are all going to be fairly low impact in the near term. I had expected them to be S/M sized projects that we could crank through in a sprint or two. I would like us to look at doing fewer things but fitting those into releases rather than doing more things. That will also help where the Product team is constrained in some resources (UX, product)." +"Primary User-12741","Can you please suggest any improvements to the structure/agenda of the meetings you typically attend?","We need to bring a view of project dependencies into the release plan. The goal being to optimize for fewer projects that have shorter lead time by being able to resolve dependencies within the same release due to excess capacity. It would also be helpful to have eng drive some product changes so that we are innovating and taking bets so having a way to surface some % of capacity going to true eng-driven product ideas is where we could put excess capacity." +"Primary User-12741","Were the requirements clear at the time you picked up your tasks?","N/A" +"Primary User-12795","Were the requirements clear at the time you picked up your tasks?","50-50" +"Primary User-12795","As a member of the Product Management team, how do you rate the quality and payload size of the release?","Moderate" +"Primary User-18439","As a member of the Product Management team, how do you rate the quality and payload size of the release?","Good" +"Primary User-18439","Were the requirements clear at the time you picked up your tasks?","Mostly clear" +"Primary User-18440","As a member of the Product Management team, how do you rate the quality and payload size of the release?","N/A" +"Primary User-18440","Were the requirements clear at the time you picked up your tasks?","N/A" diff --git a/csv/Snowflake.csv b/raw/Snowflake.csv similarity index 100% rename from csv/Snowflake.csv rename to raw/Snowflake.csv diff --git a/csv/SplunkEnterprise.csv b/raw/SplunkEnterprise.csv similarity index 100% rename from csv/SplunkEnterprise.csv rename to raw/SplunkEnterprise.csv diff --git a/csv/SplunkProducts.csv b/raw/SplunkProducts.csv similarity index 100% rename from csv/SplunkProducts.csv rename to raw/SplunkProducts.csv diff --git a/csv/SupplierScoreCardWithGroup.csv b/raw/SupplierScoreCardWithGroup.csv similarity index 100% rename from csv/SupplierScoreCardWithGroup.csv rename to raw/SupplierScoreCardWithGroup.csv diff --git a/csv/SupplierScoreCardWithGroup2.csv b/raw/SupplierScoreCardWithGroup2.csv similarity index 100% rename from csv/SupplierScoreCardWithGroup2.csv rename to raw/SupplierScoreCardWithGroup2.csv diff --git a/csv/SupplierScoreCardWithGroup3.csv b/raw/SupplierScoreCardWithGroup3.csv similarity index 100% rename from csv/SupplierScoreCardWithGroup3.csv rename to raw/SupplierScoreCardWithGroup3.csv diff --git a/requirements.txt b/requirements.txt index 770124e6ae5fbfdaf566e24307c4d62086f3281d..36f490b539a9049475beedb7d5e36d839ef6ac4a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -llama-index==0.5.25 -openai==0.27.4 +llama-index==0.6.21.post1 +openai==0.27.8 transformers diff --git a/treeIndex/Lastpass.json b/treeIndex/Lastpass.json new file mode 100644 index 0000000000000000000000000000000000000000..a7e2b3a201d1f3ef4f824d0c0b7c875e554dd281 --- /dev/null +++ b/treeIndex/Lastpass.json @@ -0,0 +1 @@ +{"index_struct": {"__type__": "tree", "__data__": {"index_id": "6126ab34-afeb-4fd6-be5f-c9a5bd0bbd4f", "summary": null, "all_nodes": {"0": "02306d38-46dc-4a11-be9d-36ad97a97f32", "1": "f5a83c6d-74db-4775-89d5-2c99ddff8730", "2": "26f061f2-5d31-41e2-ae55-caeee9c71b61", "3": "d498d667-a425-4e42-9118-10c167bf5711", "4": "d7e2ef1d-b108-48c9-ba11-fc050a609352", "5": "ce20804b-6b07-4f87-bb67-6ab3a7fe83ee", "6": "f017958c-da7d-4558-b102-ec0e8c7699c2", "7": "7f3a495f-f0a9-4de0-bb0f-dda9fb4490e8", "8": "d280f70a-fb00-4b63-87b6-c297ce9eb33f", "9": "0edd71d2-282d-4996-b957-cf4a427362e1", "10": "5d6054d3-d1b8-4c80-9c3c-3f193d0d5178", "11": "b89858ce-6c45-4149-b42c-84e0740d2123", "12": "7360afbb-3a45-4115-9a90-98dd069a62c4", "13": "ed6f6673-ba65-456c-b4ac-e8bccf1c63a0", "14": "828cfc79-9333-4469-97f0-47881b010441", "15": "2f8b085b-f346-408b-b1da-b83aa484760c", "16": "5c528974-37db-4c09-b30c-8523c5211525", "17": "b2a1da40-86e5-4e88-8575-7423400509ac", "18": "7e10d436-12eb-4fbb-b3f1-d037e79dcc0a", "19": "b6e78010-4534-43f4-b0a0-16d7f07fd34b", "20": "4212d9df-80e0-4594-abf8-c43b62a507e3", "21": "21b4e3ba-4c17-4463-a490-c4f1d950580e", "22": "9dd3f891-de9b-4792-8ebc-f061aa0f3f86", "23": "4f11381e-92c4-4a54-aa2e-2f2f604db4a9", "24": "a81b8e69-8d80-4210-bdc6-c86fd53ac89d", "25": "1449054d-6aab-4d37-9173-d8f20188fe48", "26": "979186d9-35a8-4307-9b0c-1448cb9f0b8e", "27": "10933a86-3035-4674-97b2-8773d7c523ca", "28": "4b6cf420-076d-47c7-9472-45c2918f7e33", "29": "b450018b-c568-4f48-b568-605b5f4063db", "30": "756adee9-21d6-4f7e-ad90-0e4af04d5e56", "31": "dc8ad36b-b568-404f-8fba-d48131325c27", "32": "47795f36-289e-461d-844b-595944d576d2", "33": "319e9b46-4b60-4c44-9a86-0ab758759505", "34": "d7aa38d2-3f66-4894-aaa1-c72547a45062", "35": "729acdfc-9d2a-46bd-8e67-88d79efb6178", "36": "8fd42144-612b-474b-87c1-59524decb9b3", "37": "5cd8184d-cfb7-43b0-a3d9-cbdf29055c9b", "38": "f41c82ab-e7e7-4d09-ace5-8f7473730273", "39": "e5fdb29a-7d02-476b-b493-8eb610091d19", "40": "a25da643-aac1-435f-8c89-a62fc586695a", "41": "bb56f883-b18f-4d89-9825-a13adbc89ecd", "42": "3d8557f3-d357-4985-a802-cdc3488ac3cd", "43": "71686de5-d3b6-4179-961f-8877adc8b34e", "44": "3acf2f2b-7188-4de7-8338-de5d9bda66c5", "45": "e6baceab-5cdc-40de-a645-5571c21afa8e", "46": "909770d7-b474-44dd-8b3d-043fc5d465f4", "47": "78ff6a18-e10d-425c-9dcd-cc7b6f151419", "48": "04c27ad9-9071-46dd-a77d-9e008afc0b86", "49": "e7986295-bb01-4d29-8f73-02cc3947bd58", "50": "e7bbb1b1-aa7b-4d73-9ac3-43a1bb7db513", "51": "ad9708ae-a85d-4e5b-857c-8fbecd0243e2", "52": "dea7e0d1-52e1-4818-b54e-521f33649b75", "53": "2e3fc063-2a99-4af1-a079-12ebd15f781f", "54": "d086c2b7-fff4-4902-a35f-fa910d5307d5", "55": "534f115b-7838-4c26-99d8-94eda945d1ed", "56": "8bd500a8-bcc3-4e15-8740-622f557dddff", "57": "c95560d2-f6f5-4aa7-ae83-ae190d27cba6", "58": "1800c93f-524d-4a7d-9d54-4984b85b69cc", "59": "f7bdabaf-2dff-4c0a-bcd5-e04df59012cb", "60": "da0a3ff9-1ff1-42b8-91bc-1fbb6490e5fb", "61": "98418f85-2a70-4f88-b847-2620669d39ec"}, "root_nodes": {"56": "8bd500a8-bcc3-4e15-8740-622f557dddff", "57": "c95560d2-f6f5-4aa7-ae83-ae190d27cba6", "58": "1800c93f-524d-4a7d-9d54-4984b85b69cc", "59": "f7bdabaf-2dff-4c0a-bcd5-e04df59012cb", "60": "da0a3ff9-1ff1-42b8-91bc-1fbb6490e5fb", "61": "98418f85-2a70-4f88-b847-2620669d39ec"}, "node_id_to_children_ids": {"02306d38-46dc-4a11-be9d-36ad97a97f32": [], "f5a83c6d-74db-4775-89d5-2c99ddff8730": [], "26f061f2-5d31-41e2-ae55-caeee9c71b61": [], "d498d667-a425-4e42-9118-10c167bf5711": [], "d7e2ef1d-b108-48c9-ba11-fc050a609352": [], "ce20804b-6b07-4f87-bb67-6ab3a7fe83ee": [], "f017958c-da7d-4558-b102-ec0e8c7699c2": [], "7f3a495f-f0a9-4de0-bb0f-dda9fb4490e8": [], "d280f70a-fb00-4b63-87b6-c297ce9eb33f": [], "0edd71d2-282d-4996-b957-cf4a427362e1": [], "5d6054d3-d1b8-4c80-9c3c-3f193d0d5178": [], "b89858ce-6c45-4149-b42c-84e0740d2123": [], "7360afbb-3a45-4115-9a90-98dd069a62c4": [], "ed6f6673-ba65-456c-b4ac-e8bccf1c63a0": [], "828cfc79-9333-4469-97f0-47881b010441": [], "2f8b085b-f346-408b-b1da-b83aa484760c": [], "5c528974-37db-4c09-b30c-8523c5211525": [], "b2a1da40-86e5-4e88-8575-7423400509ac": [], "7e10d436-12eb-4fbb-b3f1-d037e79dcc0a": [], "b6e78010-4534-43f4-b0a0-16d7f07fd34b": [], "4212d9df-80e0-4594-abf8-c43b62a507e3": [], "21b4e3ba-4c17-4463-a490-c4f1d950580e": [], "9dd3f891-de9b-4792-8ebc-f061aa0f3f86": [], "4f11381e-92c4-4a54-aa2e-2f2f604db4a9": [], "a81b8e69-8d80-4210-bdc6-c86fd53ac89d": [], "1449054d-6aab-4d37-9173-d8f20188fe48": [], "979186d9-35a8-4307-9b0c-1448cb9f0b8e": [], "10933a86-3035-4674-97b2-8773d7c523ca": [], "4b6cf420-076d-47c7-9472-45c2918f7e33": [], "b450018b-c568-4f48-b568-605b5f4063db": [], "756adee9-21d6-4f7e-ad90-0e4af04d5e56": [], "dc8ad36b-b568-404f-8fba-d48131325c27": [], "47795f36-289e-461d-844b-595944d576d2": [], "319e9b46-4b60-4c44-9a86-0ab758759505": [], "d7aa38d2-3f66-4894-aaa1-c72547a45062": [], "729acdfc-9d2a-46bd-8e67-88d79efb6178": [], "8fd42144-612b-474b-87c1-59524decb9b3": [], "5cd8184d-cfb7-43b0-a3d9-cbdf29055c9b": [], "f41c82ab-e7e7-4d09-ace5-8f7473730273": [], "e5fdb29a-7d02-476b-b493-8eb610091d19": [], "a25da643-aac1-435f-8c89-a62fc586695a": [], "bb56f883-b18f-4d89-9825-a13adbc89ecd": [], "3d8557f3-d357-4985-a802-cdc3488ac3cd": [], "71686de5-d3b6-4179-961f-8877adc8b34e": [], "3acf2f2b-7188-4de7-8338-de5d9bda66c5": [], "e6baceab-5cdc-40de-a645-5571c21afa8e": [], "909770d7-b474-44dd-8b3d-043fc5d465f4": [], "78ff6a18-e10d-425c-9dcd-cc7b6f151419": [], "04c27ad9-9071-46dd-a77d-9e008afc0b86": [], "e7986295-bb01-4d29-8f73-02cc3947bd58": [], "e7bbb1b1-aa7b-4d73-9ac3-43a1bb7db513": [], "ad9708ae-a85d-4e5b-857c-8fbecd0243e2": [], "dea7e0d1-52e1-4818-b54e-521f33649b75": [], "2e3fc063-2a99-4af1-a079-12ebd15f781f": [], "d086c2b7-fff4-4902-a35f-fa910d5307d5": [], "534f115b-7838-4c26-99d8-94eda945d1ed": [], "8bd500a8-bcc3-4e15-8740-622f557dddff": ["02306d38-46dc-4a11-be9d-36ad97a97f32", "f5a83c6d-74db-4775-89d5-2c99ddff8730", "26f061f2-5d31-41e2-ae55-caeee9c71b61", "d498d667-a425-4e42-9118-10c167bf5711", "d7e2ef1d-b108-48c9-ba11-fc050a609352", "ce20804b-6b07-4f87-bb67-6ab3a7fe83ee", "f017958c-da7d-4558-b102-ec0e8c7699c2", "7f3a495f-f0a9-4de0-bb0f-dda9fb4490e8", "d280f70a-fb00-4b63-87b6-c297ce9eb33f", "0edd71d2-282d-4996-b957-cf4a427362e1"], "c95560d2-f6f5-4aa7-ae83-ae190d27cba6": ["5d6054d3-d1b8-4c80-9c3c-3f193d0d5178", "b89858ce-6c45-4149-b42c-84e0740d2123", "7360afbb-3a45-4115-9a90-98dd069a62c4", "ed6f6673-ba65-456c-b4ac-e8bccf1c63a0", "828cfc79-9333-4469-97f0-47881b010441", "2f8b085b-f346-408b-b1da-b83aa484760c", "5c528974-37db-4c09-b30c-8523c5211525", "b2a1da40-86e5-4e88-8575-7423400509ac", "7e10d436-12eb-4fbb-b3f1-d037e79dcc0a", "b6e78010-4534-43f4-b0a0-16d7f07fd34b"], "1800c93f-524d-4a7d-9d54-4984b85b69cc": ["4212d9df-80e0-4594-abf8-c43b62a507e3", "21b4e3ba-4c17-4463-a490-c4f1d950580e", "9dd3f891-de9b-4792-8ebc-f061aa0f3f86", "4f11381e-92c4-4a54-aa2e-2f2f604db4a9", "a81b8e69-8d80-4210-bdc6-c86fd53ac89d", "1449054d-6aab-4d37-9173-d8f20188fe48", "979186d9-35a8-4307-9b0c-1448cb9f0b8e", "10933a86-3035-4674-97b2-8773d7c523ca", "4b6cf420-076d-47c7-9472-45c2918f7e33", "b450018b-c568-4f48-b568-605b5f4063db"], "f7bdabaf-2dff-4c0a-bcd5-e04df59012cb": ["756adee9-21d6-4f7e-ad90-0e4af04d5e56", "dc8ad36b-b568-404f-8fba-d48131325c27", "47795f36-289e-461d-844b-595944d576d2", "319e9b46-4b60-4c44-9a86-0ab758759505", "d7aa38d2-3f66-4894-aaa1-c72547a45062", "729acdfc-9d2a-46bd-8e67-88d79efb6178", "8fd42144-612b-474b-87c1-59524decb9b3", "5cd8184d-cfb7-43b0-a3d9-cbdf29055c9b", "f41c82ab-e7e7-4d09-ace5-8f7473730273", "e5fdb29a-7d02-476b-b493-8eb610091d19"], "da0a3ff9-1ff1-42b8-91bc-1fbb6490e5fb": ["a25da643-aac1-435f-8c89-a62fc586695a", "bb56f883-b18f-4d89-9825-a13adbc89ecd", "3d8557f3-d357-4985-a802-cdc3488ac3cd", "71686de5-d3b6-4179-961f-8877adc8b34e", "3acf2f2b-7188-4de7-8338-de5d9bda66c5", "e6baceab-5cdc-40de-a645-5571c21afa8e", "909770d7-b474-44dd-8b3d-043fc5d465f4", "78ff6a18-e10d-425c-9dcd-cc7b6f151419", "04c27ad9-9071-46dd-a77d-9e008afc0b86", "e7986295-bb01-4d29-8f73-02cc3947bd58"], "98418f85-2a70-4f88-b847-2620669d39ec": ["e7bbb1b1-aa7b-4d73-9ac3-43a1bb7db513", "ad9708ae-a85d-4e5b-857c-8fbecd0243e2", "dea7e0d1-52e1-4818-b54e-521f33649b75", "2e3fc063-2a99-4af1-a079-12ebd15f781f", "d086c2b7-fff4-4902-a35f-fa910d5307d5", "534f115b-7838-4c26-99d8-94eda945d1ed"]}}}, "docstore": {"docs": {"02306d38-46dc-4a11-be9d-36ad97a97f32": {"text": "0, lastpass, Verified User (Anonymous), Small-Business, 2019-09-06, Easy to use and speeds up logins, Easy right click selection menu to pick the correct password for multiple accounts on the same domain,, Warnings about matching passwords get redundant., Far less forgot my password time., 10.0\n1, lastpass, Verified User (Anonymous), Small-Business, 2019-08-15, Flexible and Robust, The breadth of capability, and the strength of security, I'd like to say no to adding a password once, not every time I enter ot/, Clearly keeping up with lots of commercial networks, including all the passwords, network settings, and details, etc., 8.0\n2, lastpass, Verified User (Anonymous), Small-Business, 2019-08-14, LastPass: A simple password manager, LastPass is the only password manager I have used that actually works well cross-platform. I can access my passwords on my iOS device, laptop, and desktop seamlessly. , The LastPass chrome extension is very glitchy sometimes. I have had to manually copy and paste passwords multiple times for certain websites. , LastPass makes password creation very simple. We had issues with weak passwords in our organization but since switching to LastPass, every user has a strong password and will never forget it. , 9.0\n3, lastpass, Verified User (Anonymous), Enterprise, 2019-08-15, Simple fast and reliable , Its fast and convenient to securely keep credentials safe to share with collaborators., Sometimes you have to search for the passwords rather than have them auto fill, Don\u2019t have to keep insecure spreadsheets or notes to manage credentials , 10.0\n4, lastpass, Verified User (Anonymous), Mid-Market, 2019-11-11, All passwords in one place, Able to group passwords by category\nChrome plugin\n, Plugins sometime is glitchy with saving new passwords., Storing all organization passwords, 8.0\n5, lastpass, Matthew N, Small-Business, 2018-12-25, Don't Leave Home Without It, LastPass is one of the few pieces of software that I view as absolutely essential. I love how it's super-secure and always available., There really is no downside to LastPass - it's that good., Although I'm very conscious of how many sites I register for, I still have a lot of sites where I need to maintain login details (my own sites, joint ventures and marketing memberships). Wherever I am, I always have access to my login details: on my iMac, my Chromebook and my mobile. I would hate to have to do without it., 10.0\n6, lastpass, Verified User (Anonymous), Small-Business, 2019-08-15, Evan Gibney likeas LastPass, Super convenient - it always remembers passwords and is great for making 'random' passwords that are highly secure, Often forgets its own password. Like COME ON!, Password management. Beyond security - the convenience, oh lord!, 10.0\n7, lastpass, Oscar L, Small-Business, 2018-12-05, Review , Alright for the breakdown this application is like the bomb.com for starters it\u2019s a free application and who doesn\u2019t like free stuff but this application lets you do is it lets you keep all your websites, any important notes, or just about anything and the really cool thing about it is that as soon as you leave the app and try to go back in it it asks you to use your fingerprint so sign back in and it\u2019s super easy and quick and very secure so you won\u2019t have any trouble leaving your phone unattended , I don\u2019t dislike anything so far at the moment , Keeping important documents, websites, files, 10.0\n8, lastpass, Verified User (Anonymous), Small-Business, 2019-10-24, Passwords for those who have too many passwords, All my passwords are sync'd across all my devices, mobile, browsers, etc, Sometimes the browser extensions are a little obtrusive, I have too many passwords and need to keep track of them and make sure they are secure, 10.0\n9, lastpass, Verified User (Anonymous), Small-Business, 2019-08-15, Enterprise and personal lastpass user, I like the ability to share complex passwords security around the office., Can't think of a dislike at this current time., Passwords being sent unsecured via email., 9.0\n10, lastpass, Aileen Y, Mid-Market, 2019-04-02, Password Storage and Security Vault, LastPass is great for storing passwords and allowing users to share them across the company without compromising the actual password details. It is a great password organizational tool., The master password needs to be reset often therefore there still needs to be a place where the master password is stored! , We are utilizing LastPass to ensure security of passwords and keeping them organized across the company. , 8.0\n11, lastpass, Verified User (Anonymous), Small-Business, 2019-08-15, So easy to keep passwords!, Not having to remember passwords and reset when forgotten, Not able to use when LastPass not available on non secure systems, Fast and easy access to applications, 9.0\n12, lastpass, Verified User (Anonymous), Enterprise, 2019-08-16, LastPass Enterprise Review, Ease of use, centralized control, and great availability., Complex policy setup, relatively unclear documentation., Password management has become a breeze., 9.0\n13, lastpass, Verified User (Anonymous), Small-Business, 2019-02-18, Excellent tool - really powerful and helpful password solution, It revealed how many passwords I had that weren't very secure and within an hour solved all of my duplicate passwords, gave me a much higher security, and solved my issue when I couldn't remember revolving passwords that kept changing by some stupid variation that i couldn't remember. It can generate and remember secure passwords every time I create a new account with a website. It keeps passwords for all my different accounts especially an issue when I have a personal and work account. It's really brilliant and secure. , The only real problem i face is that sometimes apple or google try to override the password in Last Pass. That's really an issue of mine and not the system. It's great in every other way. , Secure passwords, No passwords shared by multiple programs, I don't have to remember complex passwords, I can store passwords, accounts, info for loved ones. All of these benefits become benefits for our team as well. Keeping passwords for multiple e-mails (personal, work, IT manager, etc.), 10.0\n14, lastpass, Guy M, Small-Business, 2018-11-22, Easy to use, saves me time, multi-device ready, I love how easy it is to save and access your passwords on LastPass. I have the premium plan, so I have my account linked on all my devices - laptop, iPhone, and iPad. This makes it easy for me to access my passwords whenever I need them. \n\nOn my laptop, I have my LastPass account integrated into Safari and Chrome which allows login fields to be automatically populated with my login credentials. This saves me a ton of time and stress! This makes it easier for me to be able to get work done on business accounts and to sign into my personal accounts. \n\nAlso, the mobile app is really easy to use and works well with touch id or face id on an iPhone. So if you need to log into accounts from your phone you can tap to copy the username or password. Again, this saves me time and stress which I like. \n, My only complaint is if you have multiple accounts on the same website, for example, on Google. If you have more than one Gmail account then you may have the wrong login credentials auto-populate and you'll have to either click on the LastPass icon in the form field which is sometimes hidden under the Chrome password manager icon leaving you clicking around both icons to activate the LastPass option. You can also click on the lastPass icon on top of the browser menu and have it populate the correct login credentials that way. , The need for very secure passwords, the need for secure password storage, and the need for password management. , 10.0\n15, lastpass, Verified User (Anonymous), Mid-Market, 2019-06-05, Secure way to store all my login credentials , I really like the security features of having all my passwords stored in a single database., I'm not a huge fan of the chrome browser extension., We are solving the problem of overall security exposure throughout the company., 10.0\n16, lastpass, Eli M, Small-Business, 2018-11-01, LastPass: the best software to save all your passwords safely, This software has helped my company in many ways. We like that you can save all of your passwords and the security implemented to do so. The organization and structure of the dashboard are two of the best things., We do not really dislike anything. We would like more easy ways to upload documents and files to LastPass but for now we believe that it fits our needs., We are solving a problem that it's been around for years: the lookup of passwords. We usually had to go on paper or a spreadsheet to find the correct password but with lastpass there is everything in order and very organized, 10.0\n17, lastpass, Rod K, Small-Business, 2018-11-20, Greatly Simplifies the Password Game, It is awesome that we can save and use much more secure passwords because we do not have to remember lengthy strings. I also like that everyone in the office can share an account and no one needs to ask for passwords, Keeping passwords stored in LastPass works great, but I am always worried about what might happen if we lose internet access. I think I could still get into the Mac App, but the rest of my office is on Windows. Don't know if there is a similar solution for them., No one needs to ask around for passwords, and if something changes, everyone immediately has the updated password. Bada-bing!, 10.0\n18, lastpass, Daniel H, Small-Business, 2019-02-01, Awesome system, With Last Pass you can avoid all those annoying password requests, and security questions, Last Pass stores your passwords for you!\n\nMakes my work and personal life much more convenient.I have several email accounts and even more passwords, and there is no way I can memorize them all. Last Pass is a must for everyone these days. Really like the double authentication option too\n\nReview collected by and hosted on G2.com.What do you dislike?I believe the were hacked within the past few years. Unfortunately nothing is 100% secure., I believe the were hacked within the past few years. Unfortunately nothing is 100% secure., Vendor passwords can be easily shared and updated across teams and departments. , 10.0\n19, lastpass, Housam Z, Mid-Market, 2018-11-13, Great Tool to Store Your Passwords, In addition to this password vault being a very smart idea to store your passwords, without the need to remember every one of them, I like the feature of generating a secure password, especially with the ability to control the complexity of the password, and then it stores it automatically.\nI like that the application is becoming smarter with recognising forms in the page.\nI like how easy it's to use it on a webpage, as it has an icon in the browser bar, icons on forms when it detects them in web pages, and a sub-menu in the context menu (Mouse right click menu)., I dislike that when I open the website from my mobile or tablet, things are not in their right position, the website really suffers from poor responsivity on handheld devices. On the other hand, one of the problems that I don't like about it is that my workplace has many websites with a central password management system, which means a single password to login to all of the work websites, but for Lastpass, it's as if I am using a duplicate passwords for multiple passwords, and it keeps giving me warning about this issue., I solved the problem of using a single password for many websites, which makes my online presence more secure. Add to that, I don't have to remember all of my 400 current passwords. The feature of form filling gives a great solution for all those registration forms by just a single click., 10.0\n20, lastpass, Verified User (Anonymous), Enterprise, 2019-05-20, Lastpass Good password storage for group use, Free to try and then affordable to add users to business account. Great granularity on sharing password and good password tools like password generator, secure notes and form filling, requires you to log out and back in to see new or altered share passwords., Able to safely and securely share passwords with diverse user base. , 8.0\n21, lastpass, Verified User (Anonymous), Small-Business, 2019-08-23, LastPass great for virtual organizations , LastPass is great for people who aren\u2019t all in the same building together all day who need to easily share passwords and usernames , Not intuitive at first and can not lose your password or getting back in is hard , Sharing of credentials is easy , 7.0\n22, lastpass, Andy L, Small-Business, 2019-05-03, Lastpass review , I like how this app allows me to never have to remember passwords, but it holds them all in one place for me. , Sometimes it does get confusing. For instance, if you get a new computer you do have to restart from scratch. , We are saving alot of time with lastpass. , 9.0\n23, lastpass, Verified User (Anonymous), Mid-Market, 2019-04-15, No need to remember passwords, Managing and sharing folders with other staff members. There is no need to have two passwords when two people can share the same information in a secure website. Also not having to remember multiple passwords is pretty cool., If last pass ever goes down you can't do any work since all information is stored in one site. Last pass wants you to change your password every so often and it can get annoying., Using last pass at work is extremely helpful especially when you have to use multiple sites with different passwords. , 9.0\n24, lastpass, Verified User (Anonymous), Small-Business, 2019-08-15, So helpful! , Love having the ability to have admin level access across our business , So far nothing, it's been a very good thing to add to our company , No longer having passwords \"hidden\" on employees desks , 8.0\n25, lastpass, Adrianna H, Small-Business, 2021-10-19, LastPass is a lifesaver and awesome for sharing passwords safely., Easy to save every login for ever website needed and organize them into different categories. Safe, different user visibility levels., The browser extension randomly logs me out every so often., Creates safe passwords for me, alerts me to websites with the same password, lets me know if any have been compromised and makes it easy to save and also share passwords., 10.0\n26, lastpass, Huseyin D, Small-Business, 2021-10-06, Multi support password manager, It has free and premium versions and both versions are working well. We are using the paid version. It supports multi-factor authentication methods. Also, it works on multiple platforms like Windows, macOS and mobile apps. You can share your password with colleagues. One more good thing is you can import your current passwords from many platforms., Unfortunately, this application has a bad history that had been compromised. Still have doubts about it., We are using it in our team as a password manager, and we share them inside the team., 9.0\n27, lastpass, Jibran Yousuf K, Small-Business, 2022-01-31, Lastpass has you covered!, - Easy to understand\n- Secure\n- Chrome Extension, - The UI is sometimes not very user friendly\n- Although it's not easy to recover the master password, I dislike it, but I understand the security concerns too., - Sharing of passwords within the organization., 10.0\n28, lastpass, Tarig I, Small-Business, 2022-01-19, LassPass review, The convenience of not having to remember passwords, generating random secure passwords and auto-filling passwords fields., Password auto-fill works for website forms but not windows applications., Protects me from phishing", "doc_id": "02306d38-46dc-4a11-be9d-36ad97a97f32", "embedding": null, "doc_hash": "8a7aa1506ce46cca0985eaaad6bfd01fbc30d3db7a14d2e914f036e1163ca33a", "extra_info": null, "node_info": {"start": 0, "end": 15652}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "3": "f5a83c6d-74db-4775-89d5-2c99ddff8730"}, "__type__": "1"}, "f5a83c6d-74db-4775-89d5-2c99ddff8730": {"text": "about it., We are using it in our team as a password manager, and we share them inside the team., 9.0\n27, lastpass, Jibran Yousuf K, Small-Business, 2022-01-31, Lastpass has you covered!, - Easy to understand\n- Secure\n- Chrome Extension, - The UI is sometimes not very user friendly\n- Although it's not easy to recover the master password, I dislike it, but I understand the security concerns too., - Sharing of passwords within the organization., 10.0\n28, lastpass, Tarig I, Small-Business, 2022-01-19, LassPass review, The convenience of not having to remember passwords, generating random secure passwords and auto-filling passwords fields., Password auto-fill works for website forms but not windows applications., Protects me from phishing (websites with misleading links), as well as confidence in frequently and securely changing passwords without the risk of forgetting., 10.0\n29, lastpass, Jason P, Mid-Market, 2021-10-30, Makes surfing the net so easy, I don't have to worry or think about passwords. They are always available. , Sometimes it is hard to find a particular password if I didn't name it perfectly. Synchronization feature between users doesn't seem as fluid and as I thought it would be, All passwords are always available on any platform , 9.0\n30, lastpass, Verified User (Anonymous), Enterprise, 2021-12-12, LastPass: The Only Password Manager You Need, I like that LastPass is available on all major browswers as well as iPhone and Android so you can access all your passwords on most devices., There's really nothing I dislike about LastPass, it's tremendous!, LastPass has made syncing all of my passwords across devices a piece of cake and has allowed me to utilizer much stronger passwords instead of the same password on every account., 10.0\n31, lastpass, Ganesh K, Enterprise, 2021-10-19, Great secured tool, It is the most secure tool to save your personal details. The best thing is it has a double security check to protect the secure note. \nI have been using this tool for a long time, till time no issues and working correctly. Even I have to change the mobile device; all data is securely retained again in the new device., Nothing to dislike the application as i am using it since long time and till time no issues., As it have secured double check for notes, important data can be saved., 10.0\n32, lastpass, Verified User (Anonymous), Mid-Market, 2021-12-29, Great Product!, Ease of use. The integration with just about any browser and mobile device makes LastPass one of the best password managers, On a mobile device (Android for me) LastPass sometimes does not work with Web logins with Chrome, or App logins, I am keeping passwords organized and in one place. Also the ability to share passwords., 10.0\n33, lastpass, Kalyan Varma N, Mid-Market, 2021-12-01, Safe locker for your password, The options which are enabled to safe guard your password to match/cater your needs.It also enables the multi factor authentication and biometric authentication which i think is pretty cool, Noy many people can understand the options given unless the user is familiar with cyber security concepts and how it works.Would be great if the terminology used would be readable for everyone., Encrypting our passwords In highly business sensitive areas., 8.0\n34, lastpass, Verified User (Anonymous), Small-Business, 2021-11-16, Efficient tool for keeping your information safe!, It's a secure platform that allows you to store all your sensitive credentials and passwords all at once!, I have no negative comments about this tool; it has been very efficient to me., I am a able to save my passwords safely without login in everytime in my emails or applications. It saves me time and effort! I am able to keep track of all of my saved data from the vault at any given moment., 10.0\n35, lastpass, Rachel D, Mid-Market, 2021-10-15, LastPass - Life Saver!, It's so great to store all your passwords securely., The setup is for username and password but doesn't account for structures that have additional codes or authorizations., The problems solved are: Losing passwords, storing passwords securely. The benefits are being able to log in to one platform and have all my passwords saved., 10.0\n36, lastpass, Carlos P, Small-Business, 2021-03-26, LastPass is a simple and powerful tool for today's memoryless world, I like that LastPass is easy to use and intuitive. It integrates well with all websites and allows me to keep secure encryption for all my personal and work-related accounts. It allows me to organize folders, share with others, and only memorizing one master password for all of those while keeping encryption secure is a relief.I also like the security scoring that helps me stay on the look for potential breaches and weak password work., I honestly have nothing to add. The free version, which I also use is also very complete and works perfectly for personal use and regular day-to-day internet management like accessing Facebook, Twitter, my email, paying bills, and others., It supports my remote company with collaborative and secure access to specific tools and individual management of passwords and security. I also use it personally and make sure all my social media, academic, email, and others are also secure and easy to access., 10.0\n37, lastpass, Lianna D, Mid-Market, 2021-09-28, GREAT way to organize and save passwords!, Being able to save my passwords automatically on one website without having to remember them all. Also the ability to update my passwords on every website when needed., Sometimes my username doesn't save along with my password so I have to manually enter it., Being able to use highly secure passwords and keep them all in one location., 10.0\n38, lastpass, Diego B, Small-Business, 2021-11-30, GREAT INTERFACE AND FUNCIONALITIES. SAFE, It's easy and simple to use. Offers great security., It can get pricy, and some of the links thumbnails don't work, Password and credentials managements, 8.0\n39, lastpass, Natalia E, Small-Business, 2021-10-06, No more losing my passwords and usernames. With LastPass I feel my data is safe and ready to use, I like that I don't need to fill out any access info, when using the LastPass chrome extension, the system reads all the info and ask you if you want to save it, When you have different account users in the same platform, sometimes the system reads it as it was one and rewrites the credentials. You need to be aware of this to not change and important info, I don't need to memorize my passwords anymore, I can share my accesses with anyone I want to have them, 10.0\n40, lastpass, Garreth N C, Small-Business, 2022-01-20, Good Value Password Manager, Multi-device software, easy to use, compatible with various security systems, has auto-fill, offers suggestions for secure passwords, Nothing really. Pricing is good, features are good, creating secure passwords for all sites without duplication, 10.0\n41, lastpass, Verified User (Anonymous), Mid-Market, 2022-01-13, A second brain I can share, Ability to package and share sets of credentials\nChrome extension, Not important at all but ui looks a little out of date, One time authentication in one place\nShared credentials for common tools, 10.0\n42, lastpass, Verified User (Anonymous), Enterprise, 2021-05-18, Best password management solution, Lastpass is incredibly intuitive, easy to use, and helps not only manage all passwords and login credentials securely but also helps ensure that new passwords that you create are sufficiently strong and secure. My favorite feature is the mobile app that allows you to access saved passwords with facial recognition - secure and a huge time saver!, 1. Occasionally, Lastpass isn't compatible with other website form fill features and it's difficult to click the correct area on a page to generate your password because the website itself uses the same area of space in a fillable form for its own functionality (e.g., show password characters) and this makes it frustrating/difficult to click to Lastpass to get your password to generate.2. There are times when Lastpass could be more intuitive and tries to save a second password for the same account (for example, saving a password without the username and considering this a second set of login credentials - which isn't necessary or helpful), Password creation and management. It helps me stay organized and keep my accounts secure., 9.0\n43, lastpass, Angie D, Enterprise, 2021-09-23, User-friendly password keeper, The extension is easy to install and pops up when I need it. I don't find it annoying or interrupting. It is also easy to access the vault if I need to., Not really any downsides I can think of. Simple but robust enough., Storing personal and team passwords/logins., 10.0\n44, lastpass, Verified User (Anonymous), Mid-Market, 2021-11-11, LastPass is the biggest life saver!, I love how LastPass saves all of your passwords. It comes in handy every day!, I dislike how often you have to change your password, but overall, everything has been great., The benefit of using LastPass is that you don't have to remember all of your passwords. It also automatically signs you in to all of the software we use each day., 10.0\n45, lastpass, Verified User (Anonymous), Small-Business, 2022-04-20, Last Pass, Easy password management. Confidant in secure passwords., Some sites do not update password generation., Password management for staff. Security confidence., 9.0\n46, lastpass, Dan G, Mid-Market, 2021-10-13, Excellent and secure place to keep important information with MFA., The ease of capturing passwords and tracking them, Not knowing what information is being shared with the team in multi-user access sessions., Providing access to multiple systems easily to new employees by simply setting them up in Lastpass., 10.0\n47, lastpass, Verified User (Anonymous), Mid-Market, 2021-12-22, Mark's :LastPass review, The simplicity of integrating and using Lastpass., Need to license individual users. Also not being able to allow external users the ability to update passwords in the vault., We needed a secure way to store and share passwords., 9.0\n48, lastpass, Patrick G, Small-Business, 2021-12-08, I've been using it for years - would be handicapped without it., The ability to generate and store extremely secure passwords, It can be a little clunky with some sites without a unified sign-in page or sign-in screens with pop-ups. It could use a UI update., Storing passwords for the multiple sites I work with daily., 10.0\n49, lastpass, Verified User (Anonymous), Small-Business, 2021-09-21, Cumbersome but necessary, Using LastPass makes me feel like I'm doing what I need to in order to protect my passwords., The LastPass addon for Chrome often doesn't work properly when I'm creating a new website login, and I have to take extra steps to add the information to my vault., The problem I'm solving is I spend much less time managing my passwords. Using LastPass I can see my password security rating at a glance, and quickly address any re-used or low-security passwords., 8.0\n50, lastpass, Tapan J, Enterprise, 2021-08-17, Lastpass takes care of my security, If you want to keep all of your passwords safe on your phone, consider LastPass. I've been using it for a number of years and rely on it to complete password fields on websites and applications rather than learning them all my own. It does, however, produce a strong password input, which ticks all the checkboxes for good password practices., I miss the possibility of saving the password database on my server., This is excellent software for exchanging passwords that are both critical and important. Not only is the software user-friendly, but it is also cost-effective. Its use on a variety of devices, including Android, Windows, and Mac, is causing it to grow in popularity. Its free edition is more than adequate for those who want to protect their internet accounts, credentials., 9.0\n51, lastpass, Verified User (Anonymous), Mid-Market, 2021-08-16, LastPass for Enterprise Business - a multiyear disappointment, It stores passwords for our business which is expected., Want timely support when users have problems? Want to be able to renew your product electronically online without hassle? Want to be able to easily find support information and be able to actually call and open a case?If you are like me, these things should be a no-brainer for any customer of a modern Saas company subscription. Not for LastPass, err I mean LogMeIn. Support here is mostly hit or miss when you can actually get it. Response times are sad and at best 24-48 hours if you are lucky, and you won't be. You absolutely cannot call to get support even though the support site says business customers have access to 24/7 phone support. They go to great lengths to make sure you NEVER are able to see or find the phone number to call support (I am not kidding).The last straw for me was in trying to renew our subscription by simply updating credit card on file only to get 404 errors after clicking the button. My company profile link in their admin console has another button to \"buy licenses\" but when clicking it I'm redirected to page that says the purchase is not compatible with my account. Then says I need to contact support (full circle again with no access to move forward).I've heard for the past 4+ years that their product support was supposed to be improving, but the sad truth is that it will never do so. Looking to move our business to 1Password and intend to never look back., Storing of passwords and sharing to teammates., 0.0\n52, lastpass, Chien-Yu M, Mid-Market, 2022-01-05, Feedback, I enjoy the LastPass auto generating temporary passwords when other platform such as Google temp password settings are more insure., I would like to have LastPass family account notification set separately from business accounts to avoid user confusions. I would also suggest when using LastPass generating temp password that the capital I and lower case l be on a separate auto temp password generator to a old confusions., LastPass helps to fix broken simple LDAP manager by generating passwords., 8.0\n53, lastpass, Verified User (Anonymous), Mid-Market, 2021-12-29, Great Product and Product Support, Secured product Product support Friendly employees., Currently, they do not have a connection between azure conditional access with Lastpass on mobile devices, they are working on it with Microsoft, and hopefully, they will have an answer soon as it has been over more than a year., Secured password manager for everyone, dark web monitoring, family as a benefit for personal usage., 10.0\n54, lastpass, George U, Mid-Market, 2021-08-12, LastPass is a solid and secure password management product, LastPass constantly synchronizes all your devices to give optimum password management service. It keeps all my passwords safe and makes it easy for me to log into different sites with just my master password, so I don't have to remember all the passwords I use for various websites and apps. To prevent security breaches and leaking of sensitive information, we use Lastpass in my organization as a secure means of safeguarding ourselves. It is effortless to set up and use, and the interface is simple, with all tools and features readily available on the left menu tag. I also use it for my credit cards and file filling information. lastly, I use the biometric option to sign in because no one can forge my biometrics and gain access to my information., There is nothing to dislike about the product, and it works perfectly well all the time. None of my colleagues has complained about it also., LastPass helps monitor every website I use on my computer and notify me if my information is at risk of exposure. Sometimes I use the browser within the", "doc_id": "f5a83c6d-74db-4775-89d5-2c99ddff8730", "embedding": null, "doc_hash": "b5eaa5b0e322b2b6818195c3951d8f1ccb7b6d67deddb66f35f71f11c5ab8850", "extra_info": null, "node_info": {"start": 15019, "end": 30830}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "02306d38-46dc-4a11-be9d-36ad97a97f32", "3": "26f061f2-5d31-41e2-ae55-caeee9c71b61"}, "__type__": "1"}, "26f061f2-5d31-41e2-ae55-caeee9c71b61": {"text": "with just my master password, so I don't have to remember all the passwords I use for various websites and apps. To prevent security breaches and leaking of sensitive information, we use Lastpass in my organization as a secure means of safeguarding ourselves. It is effortless to set up and use, and the interface is simple, with all tools and features readily available on the left menu tag. I also use it for my credit cards and file filling information. lastly, I use the biometric option to sign in because no one can forge my biometrics and gain access to my information., There is nothing to dislike about the product, and it works perfectly well all the time. None of my colleagues has complained about it also., LastPass helps monitor every website I use on my computer and notify me if my information is at risk of exposure. Sometimes I use the browser within the app to save time of filling forms and passwords over and over, and also ensure my passwords are safe within the LastPass platform. It is really easy to use and convenient at all times., 8.0\n55, lastpass, Verified User (Anonymous), Small-Business, 2021-08-10, Great in theory, but execution leaves a little to be required., Lastpass provides me a secure and fairly easy way to share login details and passwords with my work colleagues. Lastpass also offers quite a bit of options in the way of permissions and organization. For example, I am able to organize a set of login details into a particular folder and then simply share the entire folder with a team member if desired. Lastpass also allows me to customize if I want to enable the password to be copyable to a computer's clipboard. This is a neat little extra security addition that I enjoy. Finally, Lastpass offers a reasonably smooth app and also integrates with almost every major browser, which is convenient., Some of Lastpass' features can be inconsistent. I can remember many times when it has been unclear to a colleague if they actually received a shared password, and where it would be located. The browser integration can also be annoying. Lastpass uses a password fill system to input login details. The fill function often has problems recognizing the appropriate forms to fill, or sometimes refuses to fill at all, making it inconsistent and occasionally frustrating. Many of the passwords are also not copyable so simply using the web app as a standalone is not a satisfactory solution. Finally the browser integration will sometimes interfere with your computer's existing built-in password manager. This makes it very difficult to use Lastpass in conjunction with your native password manager., LastPass simplifies the process of having a large group of people share login details when attempting to work on similar plaforms. It encourages collaboration and makes teamwork a smoother process., 6.0\n56, lastpass, Justin S, Small-Business, 2021-08-11, Good when good! But..., The ease at which I can save passwords and also, most importantly - create them. I like that it can integrate into most browsers too so it's there to help with a click., I've had issues where the password it generates when on a webpage doesn't save. I ended up in a loop once where I generated a PW and had to keep resetting it because LP didn't save it. My experience with customer service on this issue wasn't fantastic either. But it appears to have been a once off., Having my passwords close at hand, knowing I can generate secure passwords quickly and it's there on my work and personal devices., 8.0\n57, lastpass, Verified User (Anonymous), Mid-Market, 2021-08-13, LastPass!, Keeps all of my passwords super secure while I'm working. Prevents me from having to use the same password over and over and remembers then for when I signed into my account. Just a nice sense of security knowing people are actively out there trying to hack into your personal and work-related accounts. The password health check is great too. allows you to understand the strength of your passwords and edit them. you can even use LastPass's help to generate a unique password up to 99 characters for you!, If you forget your vault password it can be tough to get in. Sometimes logging in can be a pain because it constantly tells you your passwords are weak via the security challenge, account security, ease of getting into your accounts by saving your passwords. Benefits = very strong passwords, keeping all of them in the vault to view, 10.0\n58, lastpass, Verified User (Anonymous), Small-Business, 2021-12-30, Important, but sometime irritating service, I like that all my passwords are in one place. However, this also makes me very dependent on LastPass and on my Lastpass account., I don't like that I constantly get warnings about using the same passwords. Especially for stupid websites for which my privacy doesn't really matter like wetransfer or some craft website. There should be a way to differentiate sites where a new password is needed (like online banking) and sites where it isn't important., It's nice that Lastpass helps me come up with passwords that are secure, but since I am often logging in on multiple devices, it may be safer but it is unhelpful and, as I mentioned above, not important., 8.0\n59, lastpass, Verified User (Anonymous), Small-Business, 2021-11-16, Great group password manager -- when it works, LastPass allows users to share passwords easily with other members of their company. It allows you to organize passwords based on groups and folder, and also includes the ability to store payment methods. Lastpass will also autofill passwords on websites when prompted., Some of Lastpass' functionality leaves something to be desired. Often times passwords will take a long time to appear after being shared, or autfilling passwords will not function correctly. The lastpass autofill option can also sometimes interfere with your native password manager present on your computer as the lastpass autofill button will sometimes block the defualt one., Lastpass makes working withing a shared workspace much more enjoyable. Instead of just trying to message and share passwords, which would also be a lalrge security risk, Lastpass allows you to manage them withing one concise hub., 7.0\n60, lastpass, Dennis R, Mid-Market, 2021-05-17, Amazing password manager with only minor issues, The admin capabilities are great and the new admin dashboard was a surprising change.There are many webinars available for users and admins, also when the new admin dahsboard was introduced.The colleagues love the mobile apps and it's confortable due to Azure AD federation.The admin policy options are very good, we can configure every scenario with black and whitelists., Coming from the Enterprise side, there is something that I imagined to be more confortable:We are often having problem regarding onboarding new users. Due to the federation, we have something that couldn't be solved by us so far. The LastPass invitation email is being sent to the user once the AzureAD user is created, but at this time the account doesn't have an office mailbox (license) and the mail gets lost.Therefore I have to manually re-invite every user, which messes up the shared folder permission we dynamicall assign based on dynamic Azure AD groups. Already talked to LogMeIn support but this is something we have to solve on our end.Also, the autofill feature isn't perfect:In the browser, probably 30% of all pages cannot be autofilled (website restrictions).The autofill in the LastPass Android App is very inconsistent (even with battery exceptions and setting LastPass as default autofill provider in system settings), We had 0 control over how users store credentials. Many were using TXT files on their desktop, post its under their keyboard or things like KeePass. For the latter one, we couldn't ensure that they were safe enough - people created KeePass vaults with weak passwords and shared them everwhere.Also, sharing credentials with externals is fantastic!, 10.0\n61, lastpass, Verified User (Anonymous), Mid-Market, 2022-03-01, Great product, solves password memory issues!, Integration into apps and websites using Apple's Face ID creates a strong solution, Some glitches in the integration with some services require manual input, Security of passwords and generating suitable strong passwords. Also our team having access to a secure location for single account services., 9.0\n62, lastpass, Jordan W, Small-Business, 2021-09-28, Does what it needs to do in a helpful UI with options for more, The UI is helpful, with visual folders and notes available on any saved item. For sharing among a team, this is helpful and it's what I most appreciate in LastPass compared to 1Password., Non-password options don't seem all that valuable, though I'm sure they work fine if you want to use them, We use LastPass to share shared usernames and passwords for shared services among our leadership team. We also store some direct hardware/network logins this way as well., 9.0\n63, lastpass, Verified User (Anonymous), Mid-Market, 2022-01-14, Convenient cross device Password manager, Managing passwords across laptop and mobile (iOS) is extremely easy and simple to use., Account sharing UX is cumbersome and always frustrating to set up. Not the best setup when it comes to sharing passwords, Account security and password management, 9.0\n64, lastpass, Parth G, Mid-Market, 2021-11-25, Good tool to remember and share passwords but buggy at times., its easy to store and share credentials with other team members. Also the ability to set if the members can view the passwords or not, The fact that it logs out even though selected to remember 30 days, Remember and share passwords in lie of privacy and SOC compliance, 6.0\n65, lastpass, Nathan R, Small-Business, 2021-10-01, Great Freemium with a Bargain Pro Plan, The ability to generate, capture, review, and modify passwords across all devices and sites (with dual-authentication)., It's a nit-pick...but initially the basic (freemium) plan included both mobile and desktop/browser-based logins. Now, you must choose either mobile or desktop on the free plan, or upgrade to access both. That said, the Pro plan is affordable and 100% worth it. So, not really a \"dislike\" after all!, LastPass solves 2 major problems: weak/repeated passwords, and remembering them. Superb., 10.0\n66, lastpass, Verified User (Anonymous), Small-Business, 2021-12-15, Absolutely love LastPass, LastPass is so easy to use and I never have to worry about remembering passwords or people hacking into my accounts because my passwords are easy, It was nice when it was free for 2 devices, but that's not the end of the world, All my accounts have different passwords now so if something gets hacked they don't get access to everything. It's so easy to log into things from anywhere and remember family passwords., 10.0\n67, lastpass, Fatimah (Arlene) H, Mid-Market, 2021-09-29, I tell everyone to get LastPass, It is an easy-to-use platform. I had something like 600 sites using a set of 4 passwords before LastPass now they all are unique because I don't have to remember them. As an IT trainer, it's also super easy to train anyone to use., I really just love the platform. I cannot think of any current issues., my team is safer, my family is safer, overall it has been a great investment for our organization., 10.0\n68, lastpass, Keri S, Mid-Market, 2021-10-15, Super easy to use!, LastPass is really easy to use as a plugin on my browser. I can make passwords that are secure and not have to remember them., Sometimes LastPass forgets certain sites - I believe this is because they've changed their URLs or something. That can be frustrating because you have to re-link your password., Making secure passwords without spending tons of time resetting them when you forget them!, 10.0\n69, lastpass, Larry S, Mid-Market, 2022-02-16, LastPass offers the best combination of features, compatibility, security, and ease of use., Allows for flexible password sharing with other LastPass accounts and supports app and U2F key-based two-factor authentication., Password inheritance only for premium accounts., Intuitive password organization into distinct vaults, 10.0\n70, lastpass, Verified User (Anonymous), Small-Business, 2022-03-14, LastPass Review, I only need one password for everything!, The password has to long and it gets alittle annoying, I don't have to remember all the random passwords that I make up, 8.0\n71, lastpass, Will G, Small-Business, 2021-10-19, LastPass makes is stupid simple to track passwords as an individual or team., I love the Chrome extension. It makes it so easy to keep and access passwords for several accounts. Additionally, I have been extremely impressed with how secure they appear to be., Sometimes the suggestion icons can appear on web pages and be annoying. Not a critical issue though., Retaining 100's of passwords and usernames. So simple to catalog and share with the team., 10.0\n72, lastpass, Verified User (Anonymous), Small-Business, 2021-08-10, Customer service is horrible, Software is glitchy, Convenient and is good when it works. Chrome app is good., The software is very glitchy. We are a paying customer for the past few years. At least once, a bunch of our data got corrupted, and they had to revert things, so I had to reset many passwords. Customer service's answer to everything is to reset, log out of everything and log in. They stop answering once you tell them that didn't help. You have to see their response; it's sometimes comical, like a joke. We are looking to switch but it's just a headache to change everything. Android app also seeps to be corrupting data ( things show up with a square like character instead of the password ).If you are looking around for a solution, look at other companies., saving passwords, 1.0\n73, lastpass, Hailey B, Enterprise, 2021-07-08, The best app I have ever used!, Keeping one's passwords safe is essential, as is the ability to set unique passwords for each site. It's critical to be able to view recently used passwords as well as 2FA. Passwords will be created and shared at the enterprise level, and users will be able to control which passwords they have access to. One of the most significant advantages of LastPass is its compatibility with mobile devices, which allows us to access our passwords with just a few clicks., We need a mechanism to make it easy to change passwords and set up accounts., To ensure the safety and security of my passwords, I want to take precautions. All of a user's passwords are automatically remembered with one click in this program. The browser will automatically adapt to the use of this tool., 9.0\n74, lastpass, Verified User (Anonymous), Mid-Market, 2021-10-17, Super useful to keep your family safe, chrome integration & auto update/learning, With recent changes, you need to choose if you want to use the free version, between desktop or mobile lastPass help. I use it for desktop but sometimes that makes accessing sites on mobile a bit of a hassle. Saying that, it is fair for a business to get revenue which is in our own interest, to keep them well-capitalized so they can keep the service safe., created a safe way for all family members to use safe passwords for all accounts, and to collaborate and allow each other access important websites on other's behalf, 8.0\n75, lastpass, Verified User (Anonymous), Mid-Market, 2019-11-15, LastPass, I would like to Pass, It manages passwords and meets all compliance requirements, The UI is terrible and not as easy to use as other platforms, PW management, 5.0\n76, lastpass, Danny S, Small-Business, 2019-03-26, A needed level of security for organization, LastPass makes it simple for me to store all my passwords safely and securely. It also allows staff to share passwords safely", "doc_id": "26f061f2-5d31-41e2-ae55-caeee9c71b61", "embedding": null, "doc_hash": "1d4ba36fde8f5c6730b51a3936a881c2f6fa9777dd8eb099e6091b46dc8abfb2", "extra_info": null, "node_info": {"start": 30747, "end": 46580}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "f5a83c6d-74db-4775-89d5-2c99ddff8730", "3": "d498d667-a425-4e42-9118-10c167bf5711"}, "__type__": "1"}, "d498d667-a425-4e42-9118-10c167bf5711": {"text": "that, it is fair for a business to get revenue which is in our own interest, to keep them well-capitalized so they can keep the service safe., created a safe way for all family members to use safe passwords for all accounts, and to collaborate and allow each other access important websites on other's behalf, 8.0\n75, lastpass, Verified User (Anonymous), Mid-Market, 2019-11-15, LastPass, I would like to Pass, It manages passwords and meets all compliance requirements, The UI is terrible and not as easy to use as other platforms, PW management, 5.0\n76, lastpass, Danny S, Small-Business, 2019-03-26, A needed level of security for organization, LastPass makes it simple for me to store all my passwords safely and securely. It also allows staff to share passwords safely and securely with others in the organization. No more sticky notes with passwords floating around., LastPass can is getting better but once in a while, there are moments that the system is a little slow prompting for the password., LastPass allows us to help users maintain strong passwords without the need for memorization. It also allows me to get a security score for my users' password strength. This helps me to maintain better security practices for my organization., 10.0\n77, lastpass, Joseph C, Small-Business, 2019-09-20, LastPass should be your first resort, I love how easy it is to share passwords with others in a secure way. , It is not as fluid as it could be. Seems to be a bit buggy sometimes when using the program., I work remotely with a team, so sharing passwords has not been easier., 10.0\n78, lastpass, Verified User (Anonymous), Enterprise, 2019-08-19, LastPass is a good tool but has its limitations, LastPass is very easy to use. The available documentation was very helpful and made for a successful roll out. , LastPass does not offer a connector for Azure AD which makes provisioning/deprovisioning very manual and difficult for large enterprise environments. Along with SSO not being available as well., Having a secure solution to provide users to log passwords helps to better protect the environment. , 7.0\n79, lastpass, John E, Small-Business, 2019-08-15, Great way to Live your life, I no longer have to remember 1,350 passwords., There is absolutely nothing I would suggest, I need to change passwords for many accounts every 90 days!, 10.0\n80, lastpass, Josh D, Small-Business, 2019-08-15, Great service for business and personal use, Saves all my personal and business passwords. Links business and personal accounts as well., Converting from the free version to enterprise was challenging., More secure passwords., 10.0\n81, lastpass, Samuel B, Mid-Market, 2019-08-15, Excellent password manager, We love that LastPass is so easy to use but also secure., The plugin and autofill can get in the way sometimes, Replace Passpack which sucked., 9.0\n82, lastpass, Verified User (Anonymous), Enterprise, 2019-08-20, Awesome and handy, Everything. Can\u2019t go wrong, it\u2019s actually so convenient and secure. Perfect solutions for people with too many passwords like me., Nothing comes to mind, it could always be marketed more to companies so more people can start using those , It saves all my passwords and helps me log in and out of dozens accounts. , 10.0\n83, lastpass, Verified User (Anonymous), Mid-Market, 2019-08-15, Security with ease, Last Pass features an intuitive design that is very easy to use and works seamlessly. It is super easy to adopt for my organization. , The lack of ability for a normal administrator to reset a Master Password is something that has caused issues for my organization. , People forgetting or getting passwords for multiple applications has gone down quite a bit. , 8.0\n84, lastpass, Verified User (Anonymous), Enterprise, 2019-08-15, Secure platform for sharing passwords. I use it at home too!, Lastpass is very useful for sharing passwords across the team without having to resort to chatting. We also like to disallow users to view passwords that we don't want to spend time rotating., I wish Lastpass accepts YubiKey U2F multifactor. I do not think TOTP is secure enough to be reliable., Sharing credentials to sites/tools with one login., 7.0\n85, lastpass, Verified User (Anonymous), Mid-Market, 2019-10-18, I don\u2019t know how I would work without it, The chrome extension makes it work for me. I automatically get the option to add new passwords to my vault and I can generate secure passwords on the fly, I wasn\u2019t super happy with the mobile app. It didn\u2019t do a great job storing my passwords. The account recovery process is also a pain, Password storage.\nIncreased security for all my accounts online, 8.0\n86, lastpass, Verified User (Anonymous), Mid-Market, 2019-08-27, Works Great, Ability to segregate personal and business passwords. Ability to have a centrally managed password database that can be shared per user or user group. , Would like better auto fill capabilities. Would like Facial ID login on iPhone. , Sharing passwords to users in an encrypted format. We were using a spreadsheet before. , 8.0\n87, lastpass, Verified User (Anonymous), Small-Business, 2019-08-16, magic memory, It is a perfect app to generate password and save it , also when i try to login url it save it, also whin i shared password without knowing it., Search for all my files in computer to find pass and id and arrange them., generate pass and save with safe, 10.0\n88, lastpass, Verified User (Anonymous), Mid-Market, 2019-11-18, Ease of use., Ease of use and easy setup. Easy password creation tools., Not much to dislike. It is very simple and straight forward., Solving the issue of having to type and remember multiple passwords for different applications that have different password requirements., 10.0\n89, lastpass, Verified User (Anonymous), Mid-Market, 2019-08-15, Strong password manager when using extension, The extension is a great product and the way the credentials are stored is very secure., I do not like the lastpass clients because they constantly crash and are bloated. The client on MACos is very nice, but on windows it is horrendous., the windows client always crashes and is hard to use., 8.0\n90, lastpass, Verified User (Anonymous), Small-Business, 2019-10-22, Very useful, Easy to access any site without having to worry about security, Separation of multiple accounts should be easier, so there can be attribution of work and home passwords containerised so they do not overlap or appear as two passwords for one domain., It has greatly increased the overall security of my login procedures across all sites , 10.0\n91, lastpass, Verified User (Anonymous), Enterprise, 2019-08-16, Lastpass user experience, Can manage more than just web based applications password's. , Nothing really, other than having to use a product like this to operate securely. Says a lot about our society that we have to always stay ahead of and outsmart attackers. , Sharing passwords amongst Admins without having to disclose the password itself. , 6.0\n92, lastpass, Verified User (Anonymous), Enterprise, 2019-10-25, Not the best password manager, Is decent at managing passwords but is not the best on offer. , the ease of use is really low with its clunky interface. The integration with web browsers is rather clunkly. It can do a lot better to make password creation and updating much easier., Safe and secure password management with ACLs, 4.0\n93, lastpass, Verified User (Anonymous), Small-Business, 2019-01-23, Lastpass review, When you have logged into lastpass and set up the password to get into the lastpass account it is very easy to use as all the passwords are saved and you then just click log in and you are then logged into all the systems that you use.if you forget your master password you can contact lastpass and reset your password after getting a reminder.it is very quick to set up and then use multiply systems and you then only have to click and open the systems.once you have a master password you should be able to log on from any pc and get access to all your password. , As I dont always work at the same computer it dosnt always work on other pc and it keeps asking for the main log in and the password dosnt always seem to work???\nhave tried to reset password and it seems a bit long winded but for safety reasons is a good thing., Having one place for all your passwords is a good idea and they are saved very easy ., 8.0\n94, lastpass, Verified User (Anonymous), Small-Business, 2019-06-05, LastPass Essential in an Age of Data Breaches, I love how LastPass integrates right into my browser and into iOS as well. It used to be a hassle to use it on mobile, but they have since improved that greatly., I think the Vault UI could be improved aesthetically and functionally. When looking at all items in the Vault, it's just a mess. They do have filtering options, but I think those could be displayed easier to get to what you want faster., In an age of data breaches, cyber security starts with a strong password. LastPass allows me to easily create insanely long and diverse passwords for different accounts and actually use them., 10.0\n95, lastpass, Verified User (Anonymous), Mid-Market, 2019-09-24, Love it, I'm terrible with passwords. it makes them safe and stores them ., I have no negative things to mention. I love the app., Helps keep my data secure, 10.0\n96, lastpass, Verified User (Anonymous), Enterprise, 2019-11-18, love it, helpful to have strong passwords and not using the same password across accounts, I wish the SSO was more of a true sso where you don't have to punch in the email address, same password across multiple accounts, 10.0\n97, lastpass, Desiree J, Small-Business, 2018-10-30, LastPass helps me and my business remember our passwords!, I like how LastPass is a browser extension that can be used offline! There are many password managers that require an internet connection, which is not helpful when using intranet facilities. There are so many options, such as filling out secure notes, forms, and generating secure passwords. LastPass also puts our business's passwords to the test by trying to guess our passwords and telling us if they were successful!, We dislike how LastPass is set by default to not warn us before filling insecure forms. This does not keep us fully safe from hijacking. We also dislike how LastPass doesn't log off automatically by default. This means that I have to remember to log off before I stop using LastPass to log into my business's intranet accounts, used for accessing private content such as our company's top-secret commercials and website updates., LastPass helps me remember the passwords to our business's Amazon S3 services, WordPress login, and Intranet login. We have never before had a completely offline password manager, and LastPass lets us even save a disabled One Time Password locally for Account Recovery. There are also such helpful hotkeys to help us fill in the next and previous logins in the event of multiple instances, with the hotkeys Meta+Page!, 9.0\n98, lastpass, Brian W, Mid-Market, 2019-08-15, Last Pass makes managing passwords so much easier, I like that I'm able to have my passwords always with me securely. I only have to remember one password, and it can generate very complex passwords for me., I haven't come across anything that I dislike so far, Passwords being stored in unsecured methods, 10.0\n99, lastpass, Verified User (Anonymous), Small-Business, 2019-10-29, Password Manager , LastPass remembers all my passwords within my browser. , I don't have any negative comments about LastPass, I never have to remember my password for the many logins I have in a day, 10.0\n100, lastpass, Kala F, Small-Business, 2021-12-13, Great job!, Saves me timing looking up passwords somewhere else., Trying to get my master password reset has been hard, but that could be a company related thing., Trying to remember all the passwords I have to remember as an IT professional., 7.0\n101, lastpass, Billy M, Mid-Market, 2022-04-28, Top Password Manager for business, Easy to manage a whole business password, The UI can become Muddy and confusing to, efficiency and account protection at its finest, 10.0\n102, lastpass, Diego M, Enterprise, 2021-10-15, One of the best password managers, Browser and desktop apps sync makes password saving a breeze, Company's policy to extend the login time for more prolonged time, Securely saving and auto-filling login forms, 10.0\n103, lastpass, Jacob O, Mid-Market, 2021-08-17, Great tool that I use constantly for passwords, Auto fill on any site, and is easy to use., You often have to re-sign in, since it does not keep you logged in for more then a day or so., It allows me to access my passwords on multiple devices, even if not my usually computer, I simply have to login to it, 9.0\n104, lastpass, Verified User (Anonymous), Mid-Market, 2021-11-03, Decent password manager, LastPass is great at storing passwords for yourself (as well as other sensitive data)., LastPass is cumbersome when sharing passwords across an organization - especially when you are scaling., LastPass increases security by allowing us to not reuse passwords - and to securely share passwords (although this process is not great)., 6.0\n105, lastpass, Verified User (Anonymous), Small-Business, 2021-11-22, LastPass keeps it secure!, My organization's passwords are kept separate from my personal passwords., Kind of floppy GUI. It would be more user intuitive., We can delegate permissions to particular users to only be able to apply passwords versus actually seeing them., 10.0\n106, lastpass, Verified User (Anonymous), Mid-Market, 2021-12-06, Annoying but essential, fairly easy to use, can click and go right into the site link, long process for sign in to be so secure, shared log ins!!, 6.0\n107, lastpass, Verified User (Anonymous), Small-Business, 2021-08-01, Amazing password saving and management tool, I really like how LastPass automatically prompts me to save the password each time I sign up on a new website or change the password on an existing website. It's a really great feature as it helps keep all my passwords intact and keeps them secure. I also like the security features of LastPass, I did not find any cons while using Laspass for my password management requirements, I'm using LastPass as an extension on my web browser to save all my passwords, 9.0\n108, lastpass, Muhammad D, Enterprise, 2021-03-29, Conveniently store passwords and usernames close and securely, For a few years now, I've been using LastPass for both business and personal use, and\u00a0it is a great tool, mainly when you use both. It's a big password manager, and most (though not all) login types are captured. Auto-complete is fine. The best feature is the option to connect corporate and personal accounts so that you can access both company and personal accounts when signing in without having to go back and forth and keep the passwords apart., It's a shame that a password vault on mobile devices is no longer available as planned. The iPad is my only home machine, with no inclusion of several new personal passwords to LastPass., So many codes are there that I don't even know what other I have. I enjoy being able to browse the LastPass settings on the pages I have activated and saved., 9.0\n109, lastpass, Danny P, Mid-Market, 2021-03-19, A modern", "doc_id": "d498d667-a425-4e42-9118-10c167bf5711", "embedding": null, "doc_hash": "4b928a78147f91e542092455d30a5a21e5adade385870ca614f0c25994bb4991", "extra_info": null, "node_info": {"start": 46651, "end": 61994}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "26f061f2-5d31-41e2-ae55-caeee9c71b61", "3": "d7e2ef1d-b108-48c9-ba11-fc050a609352"}, "__type__": "1"}, "d7e2ef1d-b108-48c9-ba11-fc050a609352": {"text": "for both business and personal use, and\u00a0it is a great tool, mainly when you use both. It's a big password manager, and most (though not all) login types are captured. Auto-complete is fine. The best feature is the option to connect corporate and personal accounts so that you can access both company and personal accounts when signing in without having to go back and forth and keep the passwords apart., It's a shame that a password vault on mobile devices is no longer available as planned. The iPad is my only home machine, with no inclusion of several new personal passwords to LastPass., So many codes are there that I don't even know what other I have. I enjoy being able to browse the LastPass settings on the pages I have activated and saved., 9.0\n109, lastpass, Danny P, Mid-Market, 2021-03-19, A modern and dynamic password manager, I like Chrome, and the simple user interface. Every time I make a new online account, LastPass makes the password for me and stores the link there. I also like the password management feature that reminds me of my credentials whenever I use the same ones on multiple web sites. It is a feature of auto-login that I find to be very pleasing. If I go to most websites, I never have to register., I would like you to provide reminders when you use the same username or password on multiple sites. You are only able to save one piece of content at a time., Useful security tip: Use different passwords for each website and host! It is simple to use, and there is no configuration to install., 9.0\n110, lastpass, Maged H, Enterprise, 2021-03-18, It is perfect for generating passwords, ensuring security, Passwords are especially nice because I don't have to remember them. The fact that it has a password manager that allows me to store my passwords and sync them across my devices is fantastic. Passwords are effortless to maintain, and those stored in different forms provide differing levels of security. It is amazing that both Touch ID and Face ID support are in IOS!, When you use the auto-complete feature on some sites, nothing happens. Dynamic pop-ups are typical when it comes to registering with the site., With multiple departments on a large team, remembering names and passwords is difficult. On top of that, we work a lot, which means we're always on the go. The ability to do this is made possible by LastPass, which facilitates easier keeping of names and passwords. We don\u2019t have to waste time and energy by wracking our brains., 9.0\n111, lastpass, Verified User (Anonymous), Small-Business, 2021-10-27, Great Product, lots of good features and flexible subscription plan., Great Product, lots of good features and flexible subscription plan., Needs improvement on the autofill function of the Chrome broweser APP on IOS devices. I rarely use Safari., Keeping up with all my passwords.... DUH! LOL!!, 10.0\n112, lastpass, Verified User (Anonymous), Small-Business, 2021-10-29, Good Password Managing services, No need to remember passwords, and it provides security, Unable to use Lastpass on multiple device for free, No stress of remembering passwords, 9.0\n113, lastpass, Verified User (Anonymous), Small-Business, 2021-08-26, Love it. Don't lose your master password!, efficient, easy, love everything about it!, There is really no way to recover your master password without it become a massive endeavor so don't lose it!, Passwords are now secure and streamlining portals and making everyone more efficient., 10.0\n114, lastpass, Kolby D, Enterprise, 2021-07-05, Subscribed for 2 years, ended up moving to to 1Password, It did the job in terms of password storage., The tool itself doesn't do much to differentiate itself from its competitor in price or function. I subscribed for two years to their free version; then, with no warning, they cornered me into subscribing by keeping my passwords but forcing me to pay to maintain use of the tool. I switched to 1Password and am much more satisfied in all aspects; price, function, and customer experience., I was using it to store my passwords., 0.0\n115, lastpass, Verified User (Anonymous), Mid-Market, 2021-11-10, Lastpass just works!, One of the best features of lastpass is the ability to ensure all passwords are saved in a centralized location and very secure with a master password., Forgetting the Master Password can be a pain, but as an administrator, this isn't too much of an issue., The ability of the IT team to share credentials is amazing., 9.0\n116, lastpass, Verified User (Anonymous), Mid-Market, 2021-09-21, All my passwords in 1 location, The password manager and autofill option for URLs., Sometimes fields that i don't want it to try and auto fill or recognize as a fill option., Remembering passwords for over 100 different logins is super easy and secure with lastpass., 10.0\n117, lastpass, Sara Y, Mid-Market, 2020-12-23, LastPass is the best password manager, I like their vaults and the facts that every time I sign into an account, software, platform etc. it allows me to save those credentials for future use. We no longer have a spreadsheet or a visible list of logins and passwords. LastPass takes care of that problem for us., I dislike how people's work and personal account information are often mixed up in LastPass because it could cause a security issue down the line. Also, it prevents us from making copies of each account to store in our personal vault as well., I also like their analytics report of how secure current passwords in the vault are and how often users should change them. Instead of asking a coworker for their login information, I can just use the one already saved in LastPass., 9.0\n118, lastpass, Jackie B, Small-Business, 2020-11-17, Simple, Secure Tool for Storing, Managing, Accessing and Sharing Credentials, With LastPass, I have to know just one password to access all my accounts. Every site, username, and password is stored securely and can be automatically populated when using the browser extension and logged in. It's also great for agencies that need to share access among a team. When an employee leaves, their LastPass access is deactivated and they no longer can get to any of your companies accounts. It's easy to use, easy to maintain, and easy to ensure you and your employees can get to what they need. I have a personal account for my own information and I'm also a member of a business account, which can be linked so I can access everything at once. LastPass also has great tools for organization, so we can tag credentials and credit cards to a client folder. Information is easily searchable and findable in the system. I love that it detects when a password has changed and prompts you to update the record stored in LastPass. Super helpful! We've been using LastPass for years without any problems, with full confidence that our credential data is secure and easy to access for those who need it., LastPass for mobile requires a paid app, which is annoying. I wish I could use it as easily on my phone as I can from my desktop. You also need to be careful when deactivating users, as every person in the account gets a notification. We've accidentally alerted our team to an employee being let go or leaving by deactivating their LastPass account before announcing the change!, Every member has easy access to our agency's tools and accounts, as well as those for our clients. We don't have to track things down from each other because we have a consistent place to store and manage usernames and passwords. It also gives us a secure and compliant method for storing client's credit card information that we need to run their accounts., 10.0\n119, lastpass, Verified User (Anonymous), Small-Business, 2021-09-08, Protect and Store Passwords, Lastpass is incredibly easy to use and offers highly secured storage to save credentials. The password autofill feature works seamlessly. The remote authentication and password generator function is the best thing I liked on this platform. It works on desktop and mobile platforms., The data synchronization is very slow and unreliable., When working on projects it made easy for us to add coworker and share passwords securely. It also helped me to generate strong passwords. It supports multiple platforms., 9.0\n120, lastpass, Verified User (Anonymous), Small-Business, 2021-07-24, Safe and reliable password manager, Here are the things I liked about LastPass.1. It auto-fills the stored password which, makes the sign-in process automated.2. It is available on cross platforms.3. It lets you generate strong passwords.4. Gives you the power to share passwords with coworkers.5. It auto synchronize and makes a backup of stored passwords., On a few sites, LastPass doesn't popup and autofill the stored passwords., It basically, helps me to remember every password I use in my personal and professional accounts. Also, its password generator helps to generate strong passwords and makes my account more secure., 9.0\n121, lastpass, Jordan C, Mid-Market, 2021-02-03, Lastpass is the Password Manager for all, Lastpass has the desktop version as well as mobile version. They both do the same thing and react the same way which i really like it. None of the market these days will provide free and do the same thing as both desktop and mobile., It will be great to have Multi-factor authentication as this will be more secure rather than just having 1 master password., There are numerous passwords that i need to remember and lastpass gives me easier to locate the password i require. The search is amazing unlike others that needs to find it under a treeview or whatsoever which is so inconvenient., 10.0\n122, lastpass, Verified User (Anonymous), Small-Business, 2021-11-23, The perfect solution for all those passwords., The technology of the centralized password and mfa resource., The software's premium features require user pay b, Synchronizing all my passwords and mfa services., 10.0\n123, lastpass, Alison N, Enterprise, 2021-01-08, Great for password storage, LastPass does not only safeguard our passwords but saves other information such as our account information, so we don't have to worry about healthcare the proper info and waste your time if we are online shipping. It made it comfortable for all of us. This same main password was its password that allows us to modify and availability all our information., With this tool, I have really no major problem. LastPass is just such a cordial system that it offers trustworthy friends the possibility to help us in any case of emergency. I love the work in which they should have makes it much easier for people to share their passwords with us. It allowed us to create powerful passwords by informing us of their strength., I found the authentication policy to be great, it gives the employee easy access to start. The next time you visit the web again, LastPass offers you easy access when you view a specific address, it is quite accurate, if you have explored a given blog as well as filled your login., 9.0\n124, lastpass, Natasha F, Unknown, 2021-09-12, Highly Recommended!, Easy to use, non-intrusive app, convenient to suggest and store passwords, I can't find anything that I dislike. No complaints., Securely storing my passwords. Suggest strong passwords, 10.0\n125, lastpass, Verified User (Anonymous), Small-Business, 2021-08-26, Easy to Use, but free option not as good anymore., This was easy to use, and seemed secure. It was easy to share and unshare passwords and was great for teams. I liked the platform a lot until recently., The free version only allows one device now. That's not very useful, so I ended up switching to Bitwarden., Managing hundreds of passwords and generating new ones regularly. Much more secure than using the same 3-4 passwords for everything., 7.0\n126, lastpass, Verified User (Anonymous), Small-Business, 2021-08-10, Decipher, The Security to all my passwords and generating a random password, its not free app. paying a fee after trial period, The app is a one stop place for all sensitive and personal information storage, 10.0\n127, lastpass, Verified User (Anonymous), Mid-Market, 2021-05-18, Great for personal organization and for secure sharing, LastPass automatically identifies when I'm entering a password in a new site and asks if I want to add it to my vault. I don't have to go in and manually type it! It also categorizes passwords by site and can securely share passwords without showing them, Sometimes it saves passwords twice but that's not a big deal, Organizing personal and work passwords. Securely sharing passwords with colleagues. Suggesting secure passwords when I'm registering for new sites, 10.0\n128, lastpass, Verified User (Anonymous), Enterprise, 2021-09-15, LastPass review 2021, Ease of use, ability to organize passwords and ability to share passwords for personal accounts., From an enterprise level, there were some issues that have arisen from deployment that LastPass has not be quick to resolve., Looking to provide users a tool to store multiple password credentials and promote security (password) hygiene., 9.0\n129, lastpass, Verified User (Anonymous), Small-Business, 2021-04-02, Password Management with LastPass, My favorite feature is the access passwords from my Apple products (phone, home computer & laptop) when using my work equipment (a computer and laptop, both Windows)., Occasionally, LastPass does not detect when I am creating a new account and password or updating an existing and I will have to add/edit manually., The obvious problem that LastPass eliminates is the misplacement of or simply forgetting passwords and login credentials. A second but equally important benefit to LastPass is the security aspect. I find it quite helpful in detecting when a password is too weak or overused., 10.0\n130, lastpass, Verified User (Anonymous), Mid-Market, 2021-02-10, Top class Password Security, I like how well LastPass integrates in to the web browser. It does a very good job of keeping the process very simple for keeping secure passwords while still sharing them as needed., Sharing of passwords can be slow and there is no clear indicator as to how long it will take. I also wish it supported generic fido2 devices., Originally we implemented it for those few places where we needed to share passwords, but with rolling it out we pretty much have moved all password security in to LastPass. Knowing that passwords are secure and still accessible, plus getting a report on user's use and security has been a big improvement in our security posture., 9.0\n131, lastpass, Verified User (Anonymous), Small-Business, 2020-11-26, Incredible time saving app with great backup features, Connects with Authenticator app (From LogmeIn) which has auto backup in case you lose the phone you can recover the data and passwords. \n(Not available for Google Authenticator, in case you lost it you can\u2019t recover)\n\nThe feature above makes me use it it\u2019s just incredible deal\n\nAlso works when you add a new password in the pc browser it saves the password\n\nGenerates strong password when sign up\n\nIt\u2019s free!, Not saving the password when creating or logging into a new account on mobile.\nYou must create the password first in the app and then fill it. (Which is alright not a big deal), The 2fa backup is just life saver! Lost my phone few times and I was using Google Authenticator that time. \nimagine the hassle I had to go through to remove all the 2fa and set it back.\nSome accounts I couldn\u2019t even unblock.\n\nBut LogmeIn Authenticator Auto Backup is just BOMB!\n\nBest security feature ever, maybe the best free deal ever!\n\nIncredible time saver also!\n\nWorks great if you are using different devices like iPhone and Windows laptop or Android, auto fills passwords in a second!\n\nI am", "doc_id": "d7e2ef1d-b108-48c9-ba11-fc050a609352", "embedding": null, "doc_hash": "6893084db113d3e76103ab5a11c50fd6ae79becece2b23acc88bee564b1655ee", "extra_info": null, "node_info": {"start": 61972, "end": 77747}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "d498d667-a425-4e42-9118-10c167bf5711", "3": "ce20804b-6b07-4f87-bb67-6ab3a7fe83ee"}, "__type__": "1"}, "ce20804b-6b07-4f87-bb67-6ab3a7fe83ee": {"text": "browser it saves the password\n\nGenerates strong password when sign up\n\nIt\u2019s free!, Not saving the password when creating or logging into a new account on mobile.\nYou must create the password first in the app and then fill it. (Which is alright not a big deal), The 2fa backup is just life saver! Lost my phone few times and I was using Google Authenticator that time. \nimagine the hassle I had to go through to remove all the 2fa and set it back.\nSome accounts I couldn\u2019t even unblock.\n\nBut LogmeIn Authenticator Auto Backup is just BOMB!\n\nBest security feature ever, maybe the best free deal ever!\n\nIncredible time saver also!\n\nWorks great if you are using different devices like iPhone and Windows laptop or Android, auto fills passwords in a second!\n\nI am so happy with LogmeIn, probably the one that I have recommended the most until now, 10.0\n132, lastpass, Lynae M, Small-Business, 2020-09-09, LastPass makes things quicker, leaner and safer, It's so easy to manage and share passwords, bank account information, pertinent addresses and more. It has saved a lot of time and was a great find after reading 2 Second Lean and tightening up our processes., I wish that you could see what item is being shared with you in your notification email, and I wish you didn't have to log in every time you accepted a shared item., We are saving time and the headaches that come with password management within a company. It's easier to have safer secure passwords that aren't saved to your computer (ie if someone steals your laptop, they could likely get in to most of your secure sites), 10.0\n133, lastpass, Chris S, Mid-Market, 2020-08-27, Good Solution Without a Lot of Drawbacks, SSO integration with Azure AD was a breeze, they provided great documentation right on the enrollment page. The browser plugin also generally works quite well with most modern websites. Password organization features in LastPass are also highly useful for those of us with literally hundreds of logins to manage, it simply would not be possible to do so without a quality privileged access management solution like Lastpass. Adding the capability to share folders with other users makes it a fantastic solution., More than a few websites don't work well with the plugin, which causes adoption concerns. There's no global way to manage domain modifications for all users and I wish they would integrate the random password generator into the add item screen. We also end up with quite a few websites that do not work well with it and it constantly wants to add it as a new item even though it's already in the vault. Generally this applies to older websites though, so while it's understandable, it's still somewhat frustrating to users., We had a lot of disparate password managers without the ability to exercise organizational control over them, Lastpass helped us fix that. We're also utilizing the reporting/scoring functionality to work with users who are still using shared passwords between sites or passwords that are weak. The dashboard report is also great to be able to share with the management team and include in security reporting., 10.0\n134, lastpass, Simon B, Small-Business, 2020-08-20, Great password system for enterprise use in business, Within a business Lastpass features some very comprehensive management tools to enable sharing policies and groups. This enables teams to safely share passwords and add staff into a group that automatically assigns them the logins that they need and with the correct permissions to view or edit those passwords. The system is quite intuative and most poeple can begin using it with a basic level of training., As the browser plugin is continually looking for password fields, it can sometimes overwrite passwords or form fields which is quite annoying. It happens on less than 5% of website, so rarely happens. Additionally, the fill forms can sometimes fail to complete. This has imporved over the past few years, and again happens very rarely. Although not a fault of the system, the more you develop permissions and groups, the more complex your configuration can become. This can also been seen as a benefit., The safe sharing of passwords and simple way to store company passwords is very useful. The system saves a considerable amount of user admin time in finding, storing and retrieving passwords. If you consider the amount of time you may spend completing passwords and forms online, a tool for this can save significant and repetative time. The form fields and custom fileds you can add are very useful for saving information that you need to quickly retireve too., 8.0\n135, lastpass, Verified User (Anonymous), Mid-Market, 2021-04-28, Powerful tool, We have several different folders with different access for various service partners, so we can choose what we need to share with people and what is more restricted, The admin portal occasionally logs me out at random so changes aren't saved, Several different service partners need access to password info and this is an easy, efficient way to share that info with them, 8.0\n136, lastpass, Verified User (Anonymous), Small-Business, 2021-04-06, LastPass isn't longer my app due to the organic absence of chat, I planned that LastPass to be my homecoming app for collecting, storing passwords .. Lately, I got doubts if it lost its simplicity, which I loved in the beginning., It became too big with the motivation to cover all aspects of security concerns, it was the first software, which made me clear that passwords and the handling of it is a key responsibility, 8.0\n137, lastpass, Verified User (Anonymous), Mid-Market, 2021-03-26, Last Pass, it's OK, I like storing all of my passwords in one place., I do not like the lagging and the constant logging in even if you check the box saying to keep you logged in for a certain amount of days., Keeping all passwords in one place for personal and professional use is very useful., 7.0\n138, lastpass, Verified User (Anonymous), Mid-Market, 2021-05-12, LastPass makes the password management a lot easier, The Federated login for enterprises makes management for administrators very easy, The markup for users with federated login should be better visible., Central managed password sharing for the whole company, 9.0\n139, lastpass, Andrew C, Small-Business, 2020-07-15, Perfect for Managing Passwords, The chrome plugin that allows easy access to the website and to quickly filling account info on web pages. I like to new layout with the way things are organized and the icons on the items for quickly knowing what they are. I like that we can generate random passwords. I also like that when I login to a website that I am able to save the login info or create the info in lastpass if it isn't already there., Not being able to change the background of the item tiles. Setting up custom items seems a little bit clunky still. Getting users setup is a little tricky. The level of security to prevent password changes and resets is really high, which is good, but also complicated to figure to change or understand so that we can get users passwords reset and logged back in without having to contact support., Keeping track of all our passwords for the many different clients we manage. Our team can have easy access to that information located in one convenient location. Also with the AD integration we can manage who sees what. Keeping track of credit cards. Keeping track of logins to all our different servers., 10.0\n140, lastpass, Verified User (Anonymous), Mid-Market, 2020-09-28, Wonderful for Password Managment - for yourself or groups, I really like that i can have passwords randomly generated and stored for me whenever i want for a site. Or, that it will save whatever password that i want for a site. And that i can set up different groups across my organization and share passwords to people in each group on an as needed basis. The groups allow read only or admin rights for the passwords in each password folder. \nI've shared this with many people to start using as well.\nthere is also an extension that plugs into your browser (or phone if you'd like) that can auto fill your passwords for you which makes it easy, so you arent typing in your log in info all the time., I had to change my security settings on firefox to enable group sharing. It was a minor tweak, but i'm one of those people who like to limit cookies and sharing and delete history once i close my browser. Played around with settings to get them to a point where i could change my settings the least but it would still allow me to do group sharing., Forgetting passwords\nUnique paswords\nPassword Sharing, 10.0\n141, lastpass, Verified User (Anonymous), Mid-Market, 2020-11-12, LastPass: The poorly designed password manager, The promise of using only one password is great., This poorly designed app has corrupted my password \"vault\" multiple times, forcing me to reset all my passwords. That is the opposite of what LastPass promises. It is not even one bug that has corrupted my passwords, but different ones. This app is buggy and should not be used by any enterprise, since it so buggy. It doesn't even feel that secure, because sometimes when you reset your account (had to do that at least 5 times in the past 2 years), you sometimes can log in with your old password and your passwords will still be there for a couple of minutes. The app is unpredictable to say the least., Password storage and management., 2.0\n142, lastpass, Hameed S, Enterprise, 2020-10-27, Online passwords, LastPass is really simple to use, particularly in case you want a typical password. It allows for you to unlock your bank account login without revealing some information. The user interface is actually straightforward and simple and I love the protected window for checking out the entire number of passwords., Managing many accounts with LastPass isn't easy, because each and every connection is actually logged in and concludes with a substantial selection of accounts. If you've to thoroughly clean up, it could be tough., It is not difficult to handle the passwords of mine, share them even and securely access my website quietly, secretly and quickly., 9.0\n143, lastpass, Verified User (Anonymous), Mid-Market, 2020-12-08, Great app for Business Password/Identity needs, The ability to have all needed passwords in one place, that is secure and easy for staff to accessIt helps train users on proper password hygiene, With the newest update the software has no faults, We have finally moved our employees off using notebooks and documents called passwords to save their passwords.It has also stopped people from sharing the usernames and passwords openly, they use the share logins ability in the app., 10.0\n144, lastpass, Michael L, Enterprise, 2020-06-26, Good for storing passwords, What I like best about Lastpass is the ability to enter in my passwords, information, notes, etc. basically anything that I want to be secure in a password manager into a single location. I use it mostly for personal use and make sure that every password that I create is completely unique and then frequently do not share these passwords in my browser to make sure that I am obscuring passwords. I also enjoy the browser extension as it allows me to in place grab the passwords that I need for the many different sites that I visit. Also the ability to secure notes is pretty nice as sometimes there is a list of item that do not fit into the forms they created and a secure note is better way to do it., What I do not like about lass pass is how it loads as a desktop application. It will often time load and I will enter my password and then be followed by the window closing and having to reopen it again. It is a bit annoying to say the least. I also dislike that last pass does not have a way for me to store the password file on my own server that I own or host in the cloud. Self hosting is very important to me when it comes to security and I would rather now have to trust last pass if I did not have. Data breaches and security issues are harder to resolve at scale so hence my distrust., With last pass I am solving the problem of managing all my passwords which need to be long phrases and different for every single website and application that I use., 8.0\n145, lastpass, Fabian S, Mid-Market, 2020-08-28, Enhance security the easiest way, The idea to have a secured app helping me manage my passwords. I use it to share securely some passwords to my family.It's completely integrated in our company., The browser extension takes too long time to open. It's because I've too many stored secure notes. The price of the licences is increasing too fast., We use the shared-folders. Associated with the groups and the folder management of the rights over the shown content, it's so easy to give a new employee or someone who has new responsibilities the correct set of access by adding/removing people to/off a group.With lpass-cli we also easily manage the creation of new notes and assign them to the correct persons via scripts., 10.0\n146, lastpass, Natalia G, Enterprise, 2020-06-10, Keep your passwords secure and safe, LastPass not only protect our passwords but it save other information like our credit card information, thus hen we login for online shipping we really do not have to bother about feeding the right information and wasting our time. It has made it convenient for us. The master password is the password which let us make changes and have access to all our details., I have no major issue with this tool. LastPass is such a friendly services that it provides an option of trusted friends so that in any emergency case our friends can help us, I admire the way they have made it easier to share passwords across our employees. It has helped us to create strong password by notifying us about its strength., I have found it great in term s of authentication policy, his gives easy access to the employee to get started. It is very reliable, if you have explored a certain website and filled your password, next time when you visit that web again, LastPass provides you easy access by opining the particular address for you., 8.0\n147, lastpass, Robert S, Small-Business, 2020-06-09, LastPass is the best password manager, It just works. It is able to fill in passwords automatically on my computer, and phone. It works with multiple browsers. It's highly secure and affordable. The 2FA code generator can be backed up, unlike with Google Authenticator. Google cost me a lot of time transferring all my 2fa codes when I upgraded my phone recently. If I had used LastPass Authenticator instead of Google Authenticator I would have saved a lot of time, and they would have automatically loaded on my new phone., I can't really think of anything I dislike about it. It works great., I manage a lot of passwords because I am a website designer. I never reuse passwords, and always use complex ones. LastPass makes it easy to do this, to be as secure as possible, and it automatically remembers and fills them, so it doesn't slow me down., 9.0\n148, lastpass, Liz L, Mid-Market, 2020-08-21, LastPass, One of the main advantages of the pay phone version is the ability to synchronize between several devices. You can enjoy it at home and at work! Security level of that software is very high. The free download version is used on my home computer and it is very easy to use. Do not worry about stealing passwords., I wish it wasn't that bad. Like every other free software, it has advertising in it. This is exactly the way people made their money. But if you paid for the service, the ads will be removed. Besides the difference that you don't see the ads, the only real difference is that you have more screen space, therefore you will see many more programs., It is definitely the right product. There are other similarities, but this is definitely the best! Even using it for free to get your first idea!, 9.0\n149, lastpass, Jon W, Small-Business, 2020-08-19, It's Come Far & It Just Works, LastPass has", "doc_id": "ce20804b-6b07-4f87-bb67-6ab3a7fe83ee", "embedding": null, "doc_hash": "14535c6d8b6aa50b91e1747b9150ba67eb0c4331f7e0731223e029f861e59726", "extra_info": null, "node_info": {"start": 77786, "end": 93868}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "d7e2ef1d-b108-48c9-ba11-fc050a609352", "3": "f017958c-da7d-4558-b102-ec0e8c7699c2"}, "__type__": "1"}, "f017958c-da7d-4558-b102-ec0e8c7699c2": {"text": "You can enjoy it at home and at work! Security level of that software is very high. The free download version is used on my home computer and it is very easy to use. Do not worry about stealing passwords., I wish it wasn't that bad. Like every other free software, it has advertising in it. This is exactly the way people made their money. But if you paid for the service, the ads will be removed. Besides the difference that you don't see the ads, the only real difference is that you have more screen space, therefore you will see many more programs., It is definitely the right product. There are other similarities, but this is definitely the best! Even using it for free to get your first idea!, 9.0\n149, lastpass, Jon W, Small-Business, 2020-08-19, It's Come Far & It Just Works, LastPass has simple browser integration and works like a charm on most login forms. Some pages try to prevent auto-population of your credentials by an extension, but the LastPass browser extension makes it easy to see and copy your username and password so you can still login without having to type your credentials. And if you're on the go, you can use the app on your phone and access any passwords or secure notes you've saved. Autofill works with apps and websites alike!, I'm a longtime personal user and have been on enterprise for several years. In the early days sometimes LastPass would miss a password update. It's a lot more stable now, but sometime still needs a little management to make sure it gets the right username or password for a new site you're trying to save., We use LastPass Enterprise to securely share system-level accounts and other items (passwords, notes, etc) within our IT department. It's far more efficient and secure than a Spreadsheet or Google Doc., 10.0\n150, lastpass, Verified User (Anonymous), Small-Business, 2022-01-06, Great tool for password management, however..., - Easy password management- Great security- Mobile app available, works pretty good, After an update I believe early 2021 or late 2020, they forced us to get a paid subscription if we want to use LastPass on desktop \u00e1nd mobile. They gave us a couple of switches (I believe 3) between devices, but after that it was no longer possible and the switching was a hastle anyway. This basically means that LastPass is unusable unless you're willing to pay for it. Even though it's very cheap if you wait for a nice discount, they still force you to pay for what used to be free. Not cool. Especially because they have a really big competitor who still offers this for free: Zoho Vault. And they have all the same functionalities and are just as easy (if not even easier) to use. Especially on mobile., I used LastPass for years as my password management tool. I loved it. But because of what I explained above, I ultimately decided to switch to Zoho Vault. So now I don't use it anymore., 0.0\n151, lastpass, Verified User (Anonymous), Small-Business, 2021-11-11, A Time Saver - a solid password management solution is a must, Not only does it save passwords, it saves important notes, questions, credit cards and more. It makes it easy to share passwords, maintain what is shared and revoke password privileges as needed. It also makes it easy to login to any account saved with just a few mouse clicks., Not all websites are setup to accept LastPass. Some have some security settings that prevent it, but this is rare and only like 2 of the websites out of thousands that I use., It makes it easy to share passwords, maintain what is shared and revoke password privileges as needed. We're able to securely save our company logins as well as easily organize logins for clients. We're able to easily share info with members of our team and if a member were to leave, easily revoke access in seconds., 10.0\n152, lastpass, Graham V, Small-Business, 2022-04-19, Excellent Password Solution, Ease of use (when familiar with interface), Learning interface can be less straight forward., Storing and sharing secure information., 10.0\n153, lastpass, Verified User (Anonymous), Mid-Market, 2022-02-23, Solid security setup, easy to onboard, Sharing functions, makes it very easy to create layers of security and onboard people, System is only as strong as its weakest link - the end users. Ideally there'd be a bulk edit option to swap out poorly chose passwords so everyone can upgrade to a more secure setup in 1 go., Adding security for our agency clients, making sure we are not exposed to hacking opportunities. Ease of use, sharing across groups with varying levels of security clearance., 9.0\n154, lastpass, Stana S, Small-Business, 2021-12-29, LastPass Enterprise worth the monthly!, We now put everything in LastPass! Any information that we want to keep private. This includes notes, addresses and of course, passwords and usernames.It is now routine to log into LastPass at the beginning of the day., I haven't found anything I don't like. We all have to use MFA these days., Our engineers need to know Administrator passwords and with LastPass Enterprise, we can share these without worrying they are in an insecure location., 10.0\n155, lastpass, Peter G, Small-Business, 2021-12-28, Awesome Password Manager, LastPass is an extension for Chrome, Firefox and Safari that helps you to remember your passwords and login information for all your sites. It has an auto-fill option for usernames, passwords, credit card numbers and other information that you can sync across multiple devices. The best part is that you don't have to remember your passwords or logins to all your sites because LastPass will help you to do that for you., I wish the color of the app was different, I'm not a big fan of red., LastPass helps you remember all of your passwords so you don't reuse any of your passwords on any of your websites that require logins., 10.0\n156, lastpass, Kenny K, Small-Business, 2021-07-27, I use LastPass daily to quickly create secure passwords and login to websites, This tool makes it so simple to create and save a secure password for any website you're joining. In my business I signup for a lot of websites, and with LastPass, I don't have to worry about passwords. It saves me a lot of time and headaches (ever forgot passwords?). LastPass is a secure tool that constantly gets improved. I've been using it for 5+ years now after I have tried multiple other password management tools., I can't find anything that I dislike. LastPass offers what I need, and I'm already a pretty advanced internet user. No complaints at all. There's a very generous free plan and the upgrade is also worth it and affordable., It's pretty straightforward. I hate creating and remembering passwords, so when I found LastPass, I immediately fell in love with it. I spend a lot of time online, but the last thing I want is to feel stressed or have a head ache because of password troubles. I don't want to waste time with that, so this is a convenient tool., 10.0\n157, lastpass, Oleksandr T, Small-Business, 2022-03-11, Great secure personal password manager, I like the ease of use of this tool and the fact that I can set up security in many ways, Some settings are rather obscure and you have to google how to find them. Maybe the problems in UX will be fixed soon, I needed a password manager accessible from any device. I have tried many solutions and have been using LastPass for several years now. I like everything, I'm not going to change, 9.0\n158, lastpass, Verified User (Anonymous), Small-Business, 2022-01-27, Make sure you have a good master password, It keeps all of my passwords in one spot, along with links. If I were not to have access to my regular workstation, I could log into my LastPass account and have all my usernames, passwords, and links ready to go., As with any password manager, you have to have a solid master password, or someone could potentially gain access to all of your passwords and sites. This is crucial., Being able to switch workstations if need be and retain all important links, usernames, passwords, and sites. It also provides randomized passwords for added security., 8.0\n159, lastpass, Gary W, Mid-Market, 2021-10-19, I've been very happy with LastPass, It has worked very well for me as a password manager. If you don't pay them it will only work on one device (either mobile or desktop). If you pay them it works on both, It wants to sort your passwords by category. I prefer alphabetical. Sometimes if I can't find what I'm looking for I just have to search it. It is a minor inconvenience and not a dealbreaker., I have so many passwords I am incapable of remembering them all. Until they master a DNA scanner we will be stuck with passwords., 9.0\n160, lastpass, Will C, Unknown, 2022-06-07, From at-risk to bulletproof with a single app, Bulletproof password repository, great reporting, ability to manage and use policies., Lastpass has a clunky looking user experience, Company password hygiene is now exceptional compared to pre-Lastpass, 10.0\n161, lastpass, Corey H, Enterprise, 2022-02-23, Last Pass, I like that it allows users to save both company and personal accounts., I hate the master password. You can only reset on a machine lastpass is used on., missing password. it's by far one of the best password savers, 10.0\n162, lastpass, Michael M, Mid-Market, 2022-05-10, The best password manager on the market to date. Highly secure., The mobile app is great. Very easy to use, Nothing really. The best password mgr ever, Trying to remember all my passwords. Easy to use when visiting sites., 10.0\n163, lastpass, Verified User (Anonymous), Small-Business, 2022-04-20, Easy password management, I've been using LastPass now for 5 years and it's made managing my passwords so much easier and secure. I love that it also generates secure passwords!, I can't think of anything I dislike about LastPass, Passwords are securely saved and easy to access across all devices., 10.0\n164, lastpass, Mc Kenzie B, Small-Business, 2022-04-15, Great Brain Storage, I like that I don't have to rely on my memory to remember my passwords. It's great that they are in a secured spot and can be updated easily. Plus I love that you can share passwords between team members., Honestly nothing, it's super user-friendly., Keeping passwords updated., 10.0\n165, lastpass, Verified User (Anonymous), Small-Business, 2021-09-22, Great User Experience and intuitive Admin Portal, I like how organized the admin portal is as well as the end-user portal. I can find things often without needing to research where to find them and have made some solid improvements in our experience the past years., My only dislike is the lack of human interaction when we do come across an issue that results in having to contact the support team. It appears that the only way I can get in touch with someone who can assist is via email, which makes troubleshooting and problem solving incredibly slow compared to other vendors. This doesn't come up often, but when it does it tends to be a more urgent issue and we end up waiting longer than we'd like for a solution/response., We have implemented SSO for our organization and make good use of user groups and shared folders with easy-to-implement permissions and standardization in most aspects., 10.0\n166, lastpass, Dorit G, Enterprise, 2021-09-16, One way of securing all your passwords, This tool is an Identity Management Solution that has been used by all across our organization as it allows us to securely keep track of all of our client\u2019s login information in the safest manner possible. This product is also generously used by us for all our personal needs as well. I cannot even emphasize how fruitful this single product has saved our time and the extent to which it has saved us in figuring out all the passwords and so on., There are a few cons associated with the product as well. First of all, I think there should have been a possible solution of batch change within passwords, which I know is a little complicated feature, but it would have been so helpful for users. Moreover, I felt a need for a function where I can easily view who has the right to access what sort of information., This tool is very helpful when it comes to securing all the latest and new passwords for any type of login you can possibly think of in your mind. Moreover, this software is so much easier as compared to other software and it does not even have the obligation of sharing passwords. This software has greatly helped me in protecting all logs into various accounts on different devices. Also, the software has been embedded with different features that are continuously improving every week, which further lets us safely secure all of our confidential data like passwords with minimal risks involved. Altogether, I feel that this software has proven to be a game-changer in our organization due to its various positive aspects., 9.0\n167, lastpass, Mostafa K, Mid-Market, 2022-02-12, Worst customer service ever, That was the first and only password manager I used, now that I moved to test other password managers I see that they are awful and worst one compare to other password managers., Customer service, \nSupport.\nSpeed of extensions \nBad UX on Mac\nToo much errors, I was just saving my passwords there for almost 8 years. I was so dumb that I didn't test other password managers.\nThey are awful don't even try lastpass, 0.0\n168, lastpass, Zahabiya K, Small-Business, 2022-01-21, Last Pass is an amazing tool that securely stores and manages your passwords, The best thing about Last Pass is it itself is very secure. Also, it autofills the required information from the stored data. It specifically stores password and userid with its respective website., None so far. I find it very useful and safe., The biggest problem is securey storing hundreds of passwords as it is impossible to keep them in mind when you are handling lots of work everyday. But Lastpass has solved this problem by storing all the data and securing them., 9.0\n169, lastpass, Verified User (Anonymous), Mid-Market, 2021-11-30, Decent service with great sharing controls, LastPass makes password sharing (already inherently insecure) as secure and easy as I have seen. The browser extension makes the tool very easy to use and integrate., The extension and browser can interact in funny ways that make administration confusing. The security score system is often hard to use because it is inconsistent and doesn't reflect reality. It will say a user has a score of 0 when they should have one much higher., We used LastPass to solves password management and encourage good password practices. LastPass ensured that users were not reusing passwords or using weak passwords. It made the right thing the easy thing., 7.0\n170, lastpass, Verified User (Anonymous), Small-Business, 2021-11-09, Useless free plan, overpriced premium plans, It works as intended. You can store all your passwords, share them and use them., Their free plan limits you to use it either on desktop or mobile (but not both)\u2026 so it is basically useless as you'd have to store your passwords elsewhere to be able to use it in other type of devices. There are better alternatives (Psono is completely free\u2026 and Bitwarden has more/better premium features and costs less). There is nothing Lastpass can do that the alternatives can't.I used to use lastpass, but moved to psono. I keep my account due to some shared passwords I can't export., Sharing passwords securely and being able to create and store more complex passwords., 0.0\n171, lastpass, Mark S, Enterprise, 2021-06-15,", "doc_id": "f017958c-da7d-4558-b102-ec0e8c7699c2", "embedding": null, "doc_hash": "f8c8cf058e4791580ce51b6db481377eed54358784bc6e305e503f6933611896", "extra_info": null, "node_info": {"start": 93848, "end": 109442}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "ce20804b-6b07-4f87-bb67-6ab3a7fe83ee", "3": "7f3a495f-f0a9-4de0-bb0f-dda9fb4490e8"}, "__type__": "1"}, "7f3a495f-f0a9-4de0-bb0f-dda9fb4490e8": {"text": "2021-11-09, Useless free plan, overpriced premium plans, It works as intended. You can store all your passwords, share them and use them., Their free plan limits you to use it either on desktop or mobile (but not both)\u2026 so it is basically useless as you'd have to store your passwords elsewhere to be able to use it in other type of devices. There are better alternatives (Psono is completely free\u2026 and Bitwarden has more/better premium features and costs less). There is nothing Lastpass can do that the alternatives can't.I used to use lastpass, but moved to psono. I keep my account due to some shared passwords I can't export., Sharing passwords securely and being able to create and store more complex passwords., 0.0\n171, lastpass, Mark S, Enterprise, 2021-06-15, Lastpass is my one stop shop solution for secure password storage and management, I like that I can set complex passwords and know that my information is safe/secure, and that I can easily refer to LP when I need to access a site., I would like the mobile experience to be just as robust as on desktop. This may be constrained by OS limitations...I support a number of senior executives and want to get them to adopt LP, but they don't always have a lot of time to work this stuff out..I'd like the experiences to be more seamless so it is easier for less technical people to operate.One thing I dislike is that I cannot store my Lastpass master password anywhere secure outside of LP!, Secure password management, people so typically save their secure data in written notebooks which can be lost, or into contact cards that can potentially be accessed by others. The ability to get more complex with passwords is a big plus for me, I would avoid doing this because they were so hard to remember and store safely., 10.0\n172, lastpass, Anna C, Mid-Market, 2021-12-28, Secure way to feel safe about your passwords, I don't have to remember my passwords yet I have the security of knowing no one else has access to them, The install process could be more straightforward., Security yet storage of important and often many passwords., 10.0\n173, lastpass, Gary C, Small-Business, 2021-09-02, I use Last Pass every day to log in to all of my accounts, If you have trouble remembering online passwords and have to reset them constantly, this is for you.Last Pass securely stores all of your online passwords. It`s an absolute lifesaver. Before I had it, I would waste hours every day trying to log into sites. Now all I do is open Last Pass, and it auto-fills user names and passwords for me. It`s a great tool., Nothing to dislike. It is a great time-saving tool., I waste too much time trying to sign in to sites, then having to reset the passwords constantly.Last Pass remembers my passwords and signs me in. Saves me hours every day., 10.0\n174, lastpass, Verified User (Anonymous), Mid-Market, 2021-11-11, Effective tool to keep your data safe!, I am able to have all my sensitive information saved in a secure manner, It's easy to use and effective when managing multiple accounts and emails. All my credentials are safe and ready to use!, There are moments when the extension logs out suddenly and I have to re-enter my login information once again to keep track of my data., I am able to save all my emails and passwords in a safe platform for a more efficient and easy way to perform my job as an SDR. I use multiple applications for prospecting and the last pass extension makes my life easier when login in every time!, 10.0\n175, lastpass, T J K, Mid-Market, 2022-05-10, Good user experience, reasonable price, Security customizations in admin portal., 2FA set up directions confused some users, Shared account credential distribution. Linking personal accounts to business licenses, 9.0\n176, lastpass, Verified User (Anonymous), Small-Business, 2022-06-21, Reliable and Secure Password Management, Having a place to safely store my nearly 500 passwords., When adding or updating passwords I have to refresh the application and log in again before I can see those updates., Being able to safely share my passwords with co-workers and family members., 10.0\n177, lastpass, Verified User (Anonymous), Enterprise, 2021-12-26, LastPass, LastPass is configured in such a way that makes sense and is easy to navigate. The screens are not overwhelming and cluttered with too much information or buttons, etc., It took me quite a while to figure out how to create a shared folder. That was not very intuitive or user-friendly. I entered a site & a password for the site -- but then couldn't easily determine how to create the folder and/or share it with my service desk team., LastPass has helped us tremendously with securing our corporate-utilized passwords for various products and services within our IT teams, as well as R&D teams, and product teams., 9.0\n178, lastpass, Gabriel G, Small-Business, 2022-02-14, The place to move all your wallet, You can literally store anything related to security and private access: pass phrases, passwords, secure notes, and many more., In the free version they ask you to choose either browser access, or mobile access. You cannot have both., I saved my WFi passwords, credit catd numbers, and passwords. I can easily find them when I need, easier than looking into a notes app (or plenty), 10.0\n179, lastpass, Craig L, Small-Business, 2022-03-23, All Round Fantastic Product and one that I trust to use at home and at work., Easy to Use and easy to setup, Its really good for anyone to use and is not complex., The Price sometimes is a sticking point for people., Keeping Password and Usernames Secure and allows me to not have to remember lots of passwords., 10.0\n180, lastpass, John O, Small-Business, 2022-04-26, Game-changing app!, The password management is so simple and easy., Nothing, it's perfect! There isn't anything I could change., Password management is a breeze -- not only are my passwords far more secure, its smart features make using it so simple and intuative., 10.0\n181, lastpass, Verified User (Anonymous), Small-Business, 2022-06-22, LastPass - no more worries, LastPass is a super simple and powerful password management tool and much more.\nBefore LastPass we were using sheets to manage passwords which was a logistic nightmare and a security risk.\nNow with LastPass, we can easily manage all company passwords and grant access to those who need it.\nNo more worries if someone else updated a password and did not notify everyone else.\nLassPass will improve you life and productivity., Nothing. No downside that I can think of., Managing passwords and access to various systems., 10.0\n182, lastpass, Verified User (Anonymous), Mid-Market, 2022-05-18, Office Manager, The convenience of not having to remember passwords and the security that goes along with it. Being able to share info with colleagues is very useful as well., Sometimes the MFA is frustrating but it is worth it for the security., Our organization works with sensitive information of clients as well as our own, knowing there is an extra layer of security is great., 10.0\n183, lastpass, Chance N, Small-Business, 2021-12-28, Great Free Password manager, Lastpass is really the only free password manager I've had any luck with since others dont let you use it across multiple devices like lastpass does. I love the UI, It's still not a full free product and you still get urged to buy the premium service a lot but it's not nearly as bad as the other password managers out there on the web, Keeping up with passwords across multiple accounts on all of my different devices from mobile to desktop, Mac to Windows Etc Etc. This helps me keep track of everything, 8.0\n184, lastpass, Chris B, Enterprise, 2022-05-12, LastPass - Password Manager, To be able to access all passwords from any device. No need to remember the website address; open LastPass, and all saved logins are a click away., The program will prompt me to save a site's login, even though I already have the website in the vault., I am using stronger passwords, have quit repeating the same password for multiple sites. I can quickly login into any site from any device, I love the ability to share a password with someone else., 9.0\n185, lastpass, Tamer W, Mid-Market, 2022-04-26, I love it, Its so easy to use and very professional, Easy to use and more profissional, I love it, Nothing missing from this product, I love to see it on the iphones, the easy way to manage my passwords., 9.0\n186, lastpass, Verified User (Anonymous), Mid-Market, 2022-09-15, A good place to keep your passwords, yet annoying, All my passwords are in one place, easy to launch and browse, Lastpass frequently logs me out, sometimes doesn't work at all, or has weird glitches, It's a good place to keep all your corporate passwords, secure and available, 4.0\n187, lastpass, Zachi A, Small-Business, 2022-04-27, Great and easy tool to use !!!, i am working with two password manager tools, private and business level, and the LastPass is my favorite, it is easy to use and recognize on every website. using it in our company was a blessing to everyone . also the less technical people., nothing. nothing is missing, \ngreat item, Sharing accounts with other departments, less time wasted on resetting passwords , much more prodactive, 10.0\n188, lastpass, Verified User (Anonymous), Small-Business, 2022-05-11, LastPass is great!, Easy to use and manage teams, I can quickly share password with people who need them on my team., Making it easier to take over employees password after a departure, It is a huge time saver! There is nothing like just pressing a button and getting the PW filled in. Also not have to come up with passwords myself. Way more securify, 10.0\n189, lastpass, C J P, Small-Business, 2021-11-30, Very Useful, Not Super Intuitive, It's very useful for sharing logins and passwords within a group. It makes it so that multiple team members can have visibility in what others are working on, without having to bother each other!, It's not SUPER intuitive. Even after a 20 minute tutorial from our team, it took a while to start using it quickly and easily. That's a minor quibble though. Any new software is going to have hiccups in implementation., Allowing our team to share login information across the organization, making work quicker and easier for everyone. It's a great tool and much better than competitors I've used in other orgs., 8.0\n190, lastpass, Verified User (Anonymous), Mid-Market, 2022-04-13, Very happy with using Last Pass Enterprise., I appreciate how Last Pass makes it easy for me to share my passwords across the company and use the extension to create new passwords., I wish that last pass key files did not have to be shared on the cloud and could be stored locally instead., We can create longer and more secure passwords for secure accounts without having to email them around or write them down. This has increased security and reduced complication., 10.0\n191, lastpass, Verified User (Anonymous), Small-Business, 2022-01-05, Good system for storing a ton of passwords, I like having all passwords I use in one place, and the ease of sharing them within our organization. I am able to sort them into categories, which is nice for separating business and personal. The Chrome extension also makes life way easier!, It seldom launches the page like it says it will when you're in the interface, and it sometimes is difficult to navigate around. The Chrome and Firefox extensions do not always work as advertised, either, which is not optimal for trying to work quickly., Our team uses this for website development, as we all need to be able to access the back ends of websites we've built, and being able to share the passwords this way is super helpful., 8.0\n192, lastpass, Rebekah L, Small-Business, 2022-02-09, Finally something that helps you to never forget your password!, I love that I don't have to try to remember my passwords or create a spreadsheet that is not secure to hold my passwords., Nothing at this time. It works great and is easy to use., The software solves the issue with trying to remember all of your passwords or store them in a non secure area.It automatically updates when a password is changed which is amazing!, 10.0\n193, lastpass, Dipak P, Small-Business, 2022-01-06, Lastpass - Best password management tools, In information technology, you have to remember a lot of passwords. For human beings is quite difficult to remember all passwords. By using LastPass you can generate a strong password as well as check your password security score. Lastpass is easy to use and once you installed the chrome extension it will automatically enter your username and password for particular accounts., All the features are good but the pricing is too high for business usage., I am working as a system administrator so earlier its was very difficult to remember all the passwords. After signing up for the LastPass I don't have to remember all the passwords. Lastpass is automatically generating a strong password., 10.0\n194, lastpass, Verified User (Anonymous), Small-Business, 2021-11-18, I love LastPass so much!, LastPass has helped me so much with managing passwords and log-in details. It was a mess before, and LastPass made sure I had my passwords and emails secure and safe, and available at all times. The automatic fill of log-in details is super handy as well. Download the browser extension as well!, There aren't that many downsides, in my opinion. The automatic filler doesn't always recognize all fields, which can be annoying, but that rarely happens. It might be a little clunky on mobile if the log-in menu is tiny in the app or browser., It's easy to have many accounts on many different platforms. Even for multiple people, it's suitable since you can share or invite people for the same login details., 10.0\n195, lastpass, Tim P, Mid-Market, 2022-01-19, Great Enterprise Password Manager, Lastpass is easy to integrate with corporate directory services and most users are familiar with the service from using it at home. We are able to have very granular control over shared vaults based on AD group memberships., Really not a lot to dislike, to be honest., Shared passwords for departmental use are always a huge hassle. This allows us to automatically grant access to passwords based on other criteria (department, job role, etc)., 10.0\n196, lastpass, Alyssa V, Small-Business, 2022-01-25, My Saving Grace, This allows people to share sensitive information with me, but with confidence. I really enjoy using this program to quickly launch and gain access to anything I need., It takes a while to load. I have had issues of things not coming through or loading. Sometimes, I do not receive items when a client has sent them to me. Sometimes, it does not launch correctly and I have to manually log in myself., Getting people to delegate tasks to me. Having the security of knowing their information is protected and yet, I can still access what I need to be able to do what I need to., 9.0\n197, lastpass, Verified User (Anonymous), Small-Business, 2022-07-13, Wondering why I haven't used this earlier in life., Easy onboarding and maintenance. Seamless user experience., Compatible with certain websites with javascript., LastPass provides our users with cybersecurity protection through password management., 9.0\n198, lastpass, Verified User (Anonymous), Mid-Market, 2021-10-28, No more forgotten or", "doc_id": "7f3a495f-f0a9-4de0-bb0f-dda9fb4490e8", "embedding": null, "doc_hash": "84048090071e401ca6980e8827e7ab7bc9ad34310f0cd31b8f07b470230433e2", "extra_info": null, "node_info": {"start": 109455, "end": 124898}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "f017958c-da7d-4558-b102-ec0e8c7699c2", "3": "d280f70a-fb00-4b63-87b6-c297ce9eb33f"}, "__type__": "1"}, "d280f70a-fb00-4b63-87b6-c297ce9eb33f": {"text": "load. I have had issues of things not coming through or loading. Sometimes, I do not receive items when a client has sent them to me. Sometimes, it does not launch correctly and I have to manually log in myself., Getting people to delegate tasks to me. Having the security of knowing their information is protected and yet, I can still access what I need to be able to do what I need to., 9.0\n197, lastpass, Verified User (Anonymous), Small-Business, 2022-07-13, Wondering why I haven't used this earlier in life., Easy onboarding and maintenance. Seamless user experience., Compatible with certain websites with javascript., LastPass provides our users with cybersecurity protection through password management., 9.0\n198, lastpass, Verified User (Anonymous), Mid-Market, 2021-10-28, No more forgotten or duplicate passwords, I love how lastpass creates a vault for all of your accounts and respective passwords, even sorting them into different categories. Even if you are on the same application but have different account logins, it is able to detect that and save separate login information, whereas the automatic Google password saver will override whatever username/password was originally saved there. It also automatically fills in the log in information for you, so it is super intuitive to use., There aren't many downsides to using LastPass except for the fact that if you change your password on any site, you have to ensure that LastPass updates there too or else it will keep popping an error., I always had a problem with remembering my passwords, especially as I keep having to change them for security reasons. With work, there are also an abundance of new software and accounts that we have to create and LastPass makes it so much easier to keep track of each one, without having the pressure to have to repeat passwords for the sake of remembering them, 9.0\n199, lastpass, Verified User (Anonymous), Enterprise, 2021-12-23, Very useful password management solution, It allows me to check my password from all devices and share it with colleagues as required. Also it can integrate both my work account and personal account, so it is very flexible., Sometimes the prompt on the browser for Lastpass password can jam with cue icons from the input field at the far right, making it difficult to click the Lastpass icon, Too many passwords and each system needs to be different, so how can you remember if not write it down? So Lastpass is a secure way to \"write it down\" and check from time to time. So now I don't even worry about using those system-generated complex passwords, as I do not need to remember it anyway., 9.0\n200, lastpass, Michael F, Small-Business, 2022-09-06, Great password keeper, Ease of use and ability to use on multiple devices, Occasionally password does not update as it should., Just keeping track of more secure passwords., 9.0\n201, lastpass, Verified User (Anonymous), Small-Business, 2022-10-04, Very Usefull tool, Easy to use\nPowerful settings for various access right inside the company, The level of safety is sometimes too high\nif you lose your Laspass password, \nthen you can get a link with your mail to restore the connection.\nBut if you need Lastpass to access your mail, \nthis loop is a serious problem to restore Lastpass password ...., LastPass is a very powerful tool to have \n- all the passwords in one place\n- all the access rights for the password are in one place, 9.0\n202, lastpass, Joseph S, Mid-Market, 2021-12-25, The Best Product for Password Management and Generating Passwords, I like the Chrome extension that was quick and easy to install. It's just a button click away in my browser to access. I like the password generator feature, and how it automatically stores it after. Ive been enjoying the free plan and will consider the premium option at the end of my trial., The UI is clunky and could use some improvement. There is no easy way to reset your LastPass password if you forget it, so be sure to not lose this password. Luckily if you are using this product it should be the only password you need to remember anymore., Password storage and management. Generating new secure passwords.Keeping all of my passwords unique, before I used this product I had a lot of similar passwords and even some that were comprimised in a data leak. After starting to use LastPass all my passwords are unique and I change them often., 9.0\n203, lastpass, Verified User (Anonymous), Small-Business, 2022-11-15, Great Tool, We only have to remember our Master Password and then we have access to all of our information/websites/etc., Face recognition not available on all devices., More productive., 10.0\n204, lastpass, Mustafa A, Mid-Market, 2022-08-01, Secure data with Last pass, Lastpass is a very unique tool where you can secure all the necessary data such as passwords. I like the UI they have very user friendly. And secured too. Must use this., Nothing to dislike about it. Great going, looking forward to some more additional integration in it., Last pass is helping me in storing necessary data with all the safety and security. I am not productive with this but yes it helps me in not remembering my passwords., 10.0\n205, lastpass, ollie c, Small-Business, 2021-12-23, organize and generate random passwords with ease, Don't you just hate when your online accounts keep asking you to change passwords every once a while and you can never remember which account has what passwords? Well, with LastPass, I can now keep track of all of my passwords in one place. I also like 1. it generates strong and random passwords when I create new online accounts; 2. it warns me when the online passwords I picked are not strong enough or are susceptible to hacking; 3. I can add extra notes to the online accounts I saved; 4. their mobile app is easy to use too!, Occasionally when I ask it to update my online account username and passwords it doesn't do so successfully., organize and generate random passwords with ease, 10.0\n206, lastpass, Andrew H, Enterprise, 2021-12-18, Long time user..., The browser extensions, desktop app, and mobile apps work together to put all of my passwords at my fingertips whenever I need them., Sometimes, since it isn't a native app, I have to take many extra steps to copy/paste my password. Most of the time it works seamlessly, auto-populating browser fields; but, occasionally a website doesn't register. Sometimes a website will record multiple passwords, and it is difficult to choose amongst them. Personally, I have also had a continuous issue whereby my initial login registers incorrectly. It takes me to the enterprise manager subscription instead of the family management. In those instances, I need to log out and log back in to correct the issue., Managing passwords and generating difficult to guess, secure passwords are necessary and relatively easy. I am more productive because I don't have to worry about secure passwords., 7.0\n207, lastpass, Hannah L, Small-Business, 2022-01-03, Easy to Use Password Manager Eliminates Password Inconvenience, LastPass makes it incredibly simple to save and generate new passwords for every password-protected service I come across. I'm also less hesitant to try new services that require a login because I can so easily generate one. LastPass works well on both desktop and mobile., If I could change one thing about LastPass, I'd add an option for custom fields for the entries. I sometimes need to save an additional piece of information (i.e. not just username and password but also account number or associated email, for example)., My passwords are no longer stored partly in my brain (frequently forgotten) and partly on scraps of paper (frequently lost). Since I started using LastPass, all my passwords have been different, which I'm told is much more secure., 10.0\n208, lastpass, Verified User (Anonymous), Enterprise, 2022-11-08, Easy to use, Ease of use, convenient, worth the price, Doesnt always capture new passwords, manual entry needed, I dont actually know what problems last pass is working on.., 8.0\n209, lastpass, Verified User (Anonymous), Small-Business, 2022-11-15, Works!, I love that it is not that big of a hassle to use from both web base and mobile versions., The biggest gripe I have is that on the mobile version, you have to login in first before you go to use or you can not use face id when using., Keeping up with my passwords on a secure platform., 10.0\n210, lastpass, Karrie B, Small-Business, 2021-12-28, Ditch the paper and get LastPass, I like that I can share access with team members without them actually knowing the password to sites they need to monitor or get into on my behalf but don't need their own login information. I also love that I can have the app on my phone and desktop., Not really much to dislike. If I had to be picky it would be that sometimes it takes a bit to add team members and have them log in to a specific site immediately. I have found many times it can take up to 10-15 minutes for it to send emails to team members., Management of passwords and critical information that is needed across devices and team members. It is more secure than trying to carry around a paper copy of passwords., 10.0\n211, lastpass, Shaun W, Small-Business, 2022-11-08, Secure and reliable, Ability to share passwords for specific sites, Doesn't always work with all sites on all browsers, Password management/ security. Ease of remote work, 9.0\n212, lastpass, Verified User (Anonymous), Small-Business, 2022-10-11, Seamless Credential Management for Business, Shared folders allow sharing of credentials between teams and groups, while administrative tools allow permissions management and hire/fire controls., Previous versions of android integration require the use of the Lastpass embedded browser, but new versions offer the option to \"open in chrome\" which solves this problem., Lastpass for teams allows the sharing of credentials between departments, teams, and facilities while maintaining security, protection, and permissions control on this sensitive data., 9.0\n213, lastpass, Sherry J, Mid-Market, 2022-11-08, Reliable and easy to use across platforms, Can maintain complex passwords with ease, Would like to be able to have a plug-in for iPad, Security!, 10.0\n214, lastpass, Verified User (Anonymous), Small-Business, 2022-11-08, I always Last Pass, ease of use everyday; always available; strong vault, logging in frequently\nconflict with my VPN, ease of use, 10.0\n215, lastpass, Eric B, Mid-Market, 2022-06-28, Great Password management Solution, I greatly appreciate the ease of use and the prompt and knowledgeable support when I need it., Login issues seem to be about the only issues that my users face regularly., It helps immensely with sharing company resource passwords and keeping my users' passwords secure., 10.0\n216, lastpass, Jon B, Mid-Market, 2022-02-28, LastPass makes things easy and secure!, LastPass generates long, strong, unique and high-entropy passwords that keep you secure. This together with SSO, AD Integration and MFA make it the superb choice for security., There's not really anything to dislike with LastPass Enterprise. It is highly customizable with the available policies, and you have access to 24/7 phone support., LastPass helps to keep every endpoint secure and makes it easy for users to do so. It has helped us create an environment of good password hygiene and not rely on password knowledge or reuse., 10.0\n217, lastpass, Verified User (Anonymous), Small-Business, 2022-07-03, Great solution for managing passwords, The fact that I can create folders and sub folders within those to clearly and easily manage everything is a big bonus. Very helpful when used in relation to work projects as folders can be shared., As of yet I haven't found anything I would say I dislike., Lastpass is making it easy to manage large numbers of accounts/passwords in a world where everything requires an account.... even fridges are asking you to make accounts nowadays!, 10.0\n218, lastpass, Verified User (Anonymous), Small-Business, 2022-09-06, Easy to use, access across all devices and my critical information is more secure., Passwords are available with a click. No more written passwords or relying on memory., I have had issues sharing passwords with other LastPass users. Permissions are not exactly clear., Better/stronger passwords which in important in my business. The ability to share password with co-workers with greater security., 10.0\n219, lastpass, Verified User (Anonymous), Mid-Market, 2022-11-15, Fantastic password management tool!!, Generate secure passwords with ease. One stop shop for managing all your passwords. I'm not sure what I would do without LastPass, but I know my accounts would be less secure., No real downside. I use on laptop, iphone, fire tablet and even Occulus headset now, Managing unique passwords securely, 10.0\n220, lastpass, Avia K, Small-Business, 2021-12-14, Buggy but comprehensive, I really like having an all-in-one place to keep secure information like usernames, passwords, and bank info. I like having a seamless experience from desktop to app., I find Lastpass to be fairly buggy in the mobile app. There are many instances when Lastpass doesn't recognize that I need to enter a password, and the fill-in prompt doesn't pop up. Then I have to navigate over to the Lastpass app, search for the website or app I need a password for, copy the password, navigate back to the original window, and paste it., Lastpass is great for making sure that I use unique passwords, keeping my work accounts more secure. If I didn't have a password manager, I would probably use the same password for every work account. Using the \"create password\" feature makes me have very unique, secure passwords., 7.0\n221, lastpass, Verified User (Anonymous), Small-Business, 2022-05-10, LastPass is a lifesaver!, My favorite part is being able to securely save passwords with my team members. I also absolutely love that it works with all of my devices so all my passwords are secure and easy to access., I honestly don't have anything I dislike about this product. Sometimes on chrome, I get logged off but it is easy to login in again so that is not really a big deal for me., I don't have to remember my logins and I also don't have to use the same browser all the time. It allows me to login quickly and securely which is very important to me., 10.0\n222, lastpass, Aaron P, Mid-Market, 2021-11-23, Great way to centralize and secure sensitive information., I really appreciate how LastPass allows for group sharing (on a user-by-user basis) and collecting of sensitive information. This includes login credentials but can also support further details necessary for each login set (such as special instructions and so forth). This also integrates with browser extensions for ease of access/use. It then opens the way to establishing ridiculously crafted passwords that you would otherwise never remember, requiring only 1 password to be known in order to log into LastPass itself., I do not have anything negative to say about LastPass. I have been surprised at being auto-logged out of LastPass, but that is a security feature for safety and sanctity of sensitive details. I believe that after launching a website and using the stored LastPass login credentials, as a security precaution the application then auto logs out having successfully performed. I don't care for that feature, if I've understood it correctly, as I am navigating back and forth through multiple logins and having successfully accessed one doesn't mean I won't immediately need to access another, so knock off the immediate log out. It's not a heinous inconvenience to log back in, but when I literally logged in not 30 seconds prior, it's ok to keep me logged in for a little while longer., Shared credentials", "doc_id": "d280f70a-fb00-4b63-87b6-c297ce9eb33f", "embedding": null, "doc_hash": "dbd346eff65df103e5f755055399c86732b5c5ec03c33d9df80c8e3fa6e279d0", "extra_info": null, "node_info": {"start": 124860, "end": 140740}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "7f3a495f-f0a9-4de0-bb0f-dda9fb4490e8", "3": "0edd71d2-282d-4996-b957-cf4a427362e1"}, "__type__": "1"}, "0edd71d2-282d-4996-b957-cf4a427362e1": {"text": "log into LastPass itself., I do not have anything negative to say about LastPass. I have been surprised at being auto-logged out of LastPass, but that is a security feature for safety and sanctity of sensitive details. I believe that after launching a website and using the stored LastPass login credentials, as a security precaution the application then auto logs out having successfully performed. I don't care for that feature, if I've understood it correctly, as I am navigating back and forth through multiple logins and having successfully accessed one doesn't mean I won't immediately need to access another, so knock off the immediate log out. It's not a heinous inconvenience to log back in, but when I literally logged in not 30 seconds prior, it's ok to keep me logged in for a little while longer., Shared credentials by the very nature becomes a security risk when so many hands have access to the information. LastPass provides a convenient encryption to those details (while still allowing for a plain text view if necessary) that gives users access to plugging in the appropriate login details without having to actually know the information. User need to user it, but they don't need to know in order to fulfill primary job functionalities., 9.0\n223, lastpass, Johan R, Mid-Market, 2021-12-07, One of the top names for password management solutions., Free plan, good value for premium, two-factor authentication, and multi-platform support. Easy to use, browser extensions make it easy for businesses to adopt this type of solution., Syncing limitations for free users, known for using trackers, and no stand-alone desktop app. LastPass is also known for changing its user agreement policies, which caused them a decline in user-based loyalty, recently., One place to store all my passwords without having to remember each one of those is very handy for either work or personal use. Password managers like Lastpass also have a password strength report, which is handy for keeping passwords up there when it comes to security best practices and standards., 7.0\n224, lastpass, Verified User (Anonymous), Small-Business, 2022-09-07, Simple to setup and easy to use., Makes it easy to add passwords to your vault., Sometimes the auto login or auto fill doesn't work and you have to manually copy & paste a password but this is rare., Password Management and sharing between colleagues without having passwords stored in unsecure places., 10.0\n225, lastpass, Jesse J, Enterprise, 2017-03-29, I only know 3 passwords, everything else is random and saved in LastPass, It's easy to create new random passwords, I can access my passwords on desktop, mobile, and iPad. The Security Check feature helps you identify easy ways to improve your security., At first glance, it seems to complicated to my non-technical friends, so I have a hard time convincing more people to use it. Some/many mobile apps don't support integrated LastPass, so I have to take the extra steps of: opening LastPass, searching for the app name, copying the password, switching back to the app, pasting the password. Even worse, some (very few) apps don't support pasting passwords., Using duplicate passwords is worse than using simple passwords, so LastPass makes it so that I can use unique randoms just about everywhere I go., 10.0\n226, lastpass, Verified User (Anonymous), Mid-Market, 2017-05-25, So. Much. Better., I literally never have to remember any passwords AT ALL. Except for my last pass one that is. AND - my passwords are WAY more secure than they used to be. And, I don't actually have to type them all the time. It's literally a no brainer., Honestly - nothing. Well, I guess it's a little annoying when the last pass action toggles on a form field obscure something else you'd like to click. That's a little annoying., Having to remember multiple passwords. Having insecure passwords so that you can \"remember\" them, 10.0\n227, lastpass, Verified User (Anonymous), Enterprise, 2017-07-13, It's a must-have!, I love that is stores every single one of my usernames and passwords. It is an excellent tool and has saved me a lot of time searching around for login information or having to reset it. I also love that you can view the actual password., The only thing I dislike is that it pops up for sites I already have saved. In addition, some sites are listed under numerous names. When it goes to autofil, many times it picks the wrong one., I'm solving the time spent lost on trying to retrieve/remember logins and passwords for every single site., 10.0\n228, lastpass, Verified User (Anonymous), Mid-Market, 2017-09-12, Best solution for literally anyone who uses the internet, Trustworthy place to store all my passwords in one place. Recommended by my IT department., User interface could be somewhat improved., We are required to change passwords often and these passwords have multiple requirements. They can be difficult to remember. LastPass stores them all for me. I only need to remember one Master password to access them., 10.0\n229, lastpass, Naveen G, Small-Business, 2017-06-29, Awesome!, No need to remember Password\nMobile App\nFingerprint access control on the Mobile App\nSecurity Suggestions\nAuto Form fill, Sometimes there is a slight delay before the login information is fetched and showed.\nAutofill does not work with the new Google account login., Strong Secure Passwords means that precious/critical data is kept \"SECURE\"., 10.0\n230, lastpass, Janelle J, Small-Business, 2017-08-16, Best Password Saving Software!, I don't have to remember my passwords because it is saved in this system. , I don't think that there is anything to dislike about this software. , I have so much on my mind LastPass gives me one less thing to think about. , 10.0\n231, lastpass, Chad C, Mid-Market, 2017-01-13, Indispensable password manager great for personal use, LastPass lets me securely store and access hundreds of passwords and notes from my phone, work PC and home computer, regardless of platform. I'm a firm believer in strong passwords (I use https://xkpasswd.net/s/ to generate strong passwords), but strong passwords are impossible to _really_ remember. With LastPass, I can enter a new set of credentials on my PC and minutes later access it from my mobile device. There are options to secure LastPass pretty tightly too. You can enable two-factor authentication for the web version (which I use with Google Authenticator), you can set it to prompt for your master password every time you attempt to access the vault, or you can prompt for the master password for a site, at the site level. Having access on my mobile device is fantastic - LOVE the ability to sign in with my fingerprint. In web version, the search is a must and I use it literally every time I use LastPass. You can export your vault to a text file, print it out, and put it in your safety deposit box once a quarter., On mobile (I'm on Android), getting LastPass to fire off when you get to a site in the vault can be tricky at best. Sometimes if I click back and forth from username to password fields, LastPass will come up and ask to fill in the creds. Most of the time, I have to login to LastPass first, then launch the app I want to log into. First world problem. \n\nThe folders design is sorta clunky - I hate using folders, as it limits me. Tags would be nice. The search makes up for this though, as it is great.\n\nPassword generator pretty lame and doesn't generate great passwords., I'm using LastPass personally to store hundreds of sets of credentials, notes, software licenses, etc. It helps me keep my sanity and quickly and easily access sites without having to think about it at all., 10.0\n232, lastpass, Ligia D, Small-Business, 2017-01-12, It's great for sharing access to people you don't know that well, I really like the fact that I can share access to my accounts to others without having to share my personal password and I can also control when I want them to stop having access to those accounts. When I started working with my boss, this was vital for us. Now we've worked together for a long time and he trusts me enough to confide his passwords to me, but at first this was what helped us build that trust., The mobile app is not that great, it's gotten better and it's great now that it's free. But it keeps popping up wherever I want to type something, even places that have nothing to do with signing up or logging in somewhere and I wasn't able to log into any google account through it while on my phone. It works great on my laptop though., Like I said previously, it helps you give temporary or long-term access to people you don't necessarily trust enough to give permanent access or the passwords to your personal or business accounts. , 8.0\n233, lastpass, Mat\u00edas B, Small-Business, 2017-01-12, From a nice password vault to a Security Must, I have been using Lastpass for more than 3 years, I used it mainly as a password vault, like the one from the browser but with multiple device support.\n\nBut today it has become a security essential, there are so many passwords and so many breaches that it's impossible to keep up, Lastpass will let you know what sites had been publicly breached and make you change that password. One password per site is a great practice and this app makes it happen.\n\nSharing passwords showed to be very powerful, I work for a startup and it is a lot easier to share passwords with new people through the app. Even I do know who has access to what service now., The UI ain't the best, sometimes the prompts doesn't show on chrome, or if you access subdomains with different user/pass this app will show you all the passwords available for the domain, but not the subdomain. You may change a setting to remember per subdomain but I don't want to change it for all of the sites, just some, otherwise developer.facebook.com will be different than facebook.com and thats annoying., Sharing services credentials with my colleagues. \n, 9.0\n234, lastpass, Verified User (Anonymous), Small-Business, 2018-01-28, Secure, easy to use, life saver. , I can easily encrypt passwords but know I won\u2019t forget them. , I don\u2019t dislike anything about this software. , It allows you to generate secure passwords and retrieve them when you go to log in. It is fantastic. , 10.0\n235, lastpass, Maria S, Small-Business, 2017-01-11, Great tool! Saves time, is secure, and makes sharing passwords secure & easy., It saves me so much time and brain power I can be using elsewhere. It also allows me to share passwords to certain sites with others without having to worry about it being read or misplaced. , I suppose there could be a bit more security instead of just a main password which grants you access to all sorts of personal information like usernames/passwords, and even credit card info. Haven't had an issue with this yet, but I could see how it would be a headache if it did happen. , Sharing login infos for website design/development as well as purchasing office needs and setting up appointments and services. Instead of having a ton of emails or a piece of paper that could be lost, it was so great to have it all automated and saved on LassPass so that I could simply go to the site and get logged into the correct account. , 10.0\n236, lastpass, Tony M, Mid-Market, 2017-07-31, Just what it's supposed to do, I can easily use it across devices, and for $12/year you absolutely cannot beat the features., It signs me out on my phone continually. This is a funny thing for any app to do, but it gets especially inconvenient when I want to open password-protected apps on my phone and need to sign into LastPass too often., It frees up a lot of time and stress energy, and integration across devices is priceless., 9.0\n237, lastpass, Richard G, Mid-Market, 2017-07-01, Great for password management, ease of use, and piece of mind, My favorite aspect is the integration with browsers and password generation., I don't like the fact that LastPass doesn't have a two-factor authentication platform, Ensuring passwords are secure and strong. This is the biggest benefit realized., 10.0\n238, lastpass, Verified User (Anonymous), Mid-Market, 2017-09-12, LastPass review, I like how lastpass keeps all of your passwords in one spot so you don't have to try and manage all of them. There is also a google chrome add-on that makes it even easier. You just download the app to your desktop and it will auto-fill your passwords for you. , I don't like how it's difficult to find the password for the website you are trying to use. The user interface on the page itself is poor. , We are solving the business problem of wasting time searching for passwords and sending password reset links. Having everything in one spot is super convenient. , 9.0\n239, lastpass, Zane G, Small-Business, 2017-05-11, Does the Job, but not a great solution., I like that i don't have to remember tons of passwords for every different site for which I have an account., It's a clunky system. It it not always easy to sign into a particular website. Should be able to click the icon that appears in the input box for username/password and sign in that way, but often times that method fails. Wish it would just autofill every time., LastPass saves/stores all passwords that I want it to store so that I don't have to specifically remember any., 3.0\n240, lastpass, Verified User (Anonymous), Mid-Market, 2017-04-07, nan, We are a multi-location team, with A LOT of passwords! This allow us to securely share all the passwords to the unending logins we have with no problem!, It is always asking to save passwords - without prompting! Personal accounts like bank login, facebook, etc.. Things I do not want saved onto a work account. Sometimes it is slow to update passwords and tells me there is a problem with saving my changes! , never forget a password again! ours are automatically updated every X amount of months and this makes it simple to go in and find the new login info!, 9.0\n241, lastpass, Verified User (Anonymous), Mid-Market, 2018-01-19, Review for Last pass, Very quick and convenient way to store passwords, Not much to dislike yet. Need to play with the app more., Amount of time it takes to dig up password is sped up greatly using last pass, 10.0\n242, lastpass, Caroline Palmer L, Small-Business, 2017-07-28, Efficient and safe way to store passwords across a company , I like that last pass easily saves passwords that I am using and allows for a company-wide storage, Often, last pass incorrectly fills out passwords and emails into text boxes, forcing me to go back and correct, sharing passwords unsafely; sharing various passwords with various employees, 7.0\n243, lastpass, Wayne S, Mid-Market, 2017-04-12, I couldn't survive without LassPass, All my thousands of passwords (all different, all about 12 characters long) in one secure place. It works with all my browsers and while a little annoying on my iPhone, it works perfectly there. \n\nIt generates my passwords for me, does security checks and more., It isn't integrated into my iPhone safari or chrome browsers, which makes it slightly annoying to use. But it works pretty well from its own app., How to keep and manage a zillion passwords - It Works, It does manage and I have nirvana (at least in this silo)., 10.0\n244, lastpass, Jessi Alia L, Mid-Market, 2017-01-17, I Could Not Live Without LastPass!, Oh! where to begin?! LastPass is the best app for not-having-to-remember", "doc_id": "0edd71d2-282d-4996-b957-cf4a427362e1", "embedding": null, "doc_hash": "6088ede42812687dafe229179b8f2db19b4e157d2a436b23aeb61594a7592ab4", "extra_info": null, "node_info": {"start": 140731, "end": 156202}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "d280f70a-fb00-4b63-87b6-c297ce9eb33f", "3": "5d6054d3-d1b8-4c80-9c3c-3f193d0d5178"}, "__type__": "1"}, "5d6054d3-d1b8-4c80-9c3c-3f193d0d5178": {"text": "survive without LassPass, All my thousands of passwords (all different, all about 12 characters long) in one secure place. It works with all my browsers and while a little annoying on my iPhone, it works perfectly there. \n\nIt generates my passwords for me, does security checks and more., It isn't integrated into my iPhone safari or chrome browsers, which makes it slightly annoying to use. But it works pretty well from its own app., How to keep and manage a zillion passwords - It Works, It does manage and I have nirvana (at least in this silo)., 10.0\n244, lastpass, Jessi Alia L, Mid-Market, 2017-01-17, I Could Not Live Without LastPass!, Oh! where to begin?! LastPass is the best app for not-having-to-remember passwords. Passwords have come to control my life, and LastPass controls the passwords. I like that LastPass can create a random password according to my preferences - and I don't have to memorize a thing! I feel like my passwords are secure with LastPass., Once in a while, in my hurry to change a password I'll accidentally create a duplicate entry. LastPass is good at prompting me to replace a previous entry the first instance, but it would be great if LastPass would remind me again on a subsequent visit., I use LastPass for both business and personal sites. It is great for both., 10.0\n245, lastpass, Marco L, Small-Business, 2017-06-28, Absolutely Essential, The easiness in using this software, light, clear and directly embedded in the browser as add-on., Sometimes this software try to save new sites instead of modify the existing one., No more password saved in browser, so no more problems when i have to reinstall the operating system... \nI can use everywhere just logging in (in every browser), 10.0\n246, lastpass, Verified User (Anonymous), Mid-Market, 2017-08-01, One of the better password management apps, LastPass hasn't made the news for a high profile security breach lately! Haha. It is very easy to use., There can be sluggish performance, and the mobile version is terrible., As remote consultants with access to many client systems, we have way too many passwords to remember, and need a secure place to store credentials., 7.0\n247, lastpass, Susan B, Small-Business, 2017-03-02, Thank Goodness for LastPass, I love that it stores all of your passwords in one easy, accessible place. I use it personally and for a company I currently work for and it's saved my life more than once. Just make sure you don't lose your lastpass password, that's the only one you'll really need to remember!, I don't love that it's sometimes a pain to sign in from a different location. I understand the security aspect is important but when I need a password quick it can be an annoyance. With my company you do have to pay a fair amount to have everyone in the team access, which is a bummer. But for personal use the free version is awesome. , With so many systems with different passwords flying around, LastPass has been great for keeping all of them in one place. It has helped me personally as a manager of most of these systems to keep everything together and accessible. , 9.0\n248, lastpass, Madelon D, Mid-Market, 2017-07-04, Not user friendly, It's awesome, when it works. No need to remember all your passwords, it gets saved right away and you can organize into categories for easier searching on the desktop version., It failed frequently. Often it wouldn't remember passwords correctly or wouldn't update with a new password. It frequently crashed or locked you out of your account. Very frustrating. , Speed and ease of use when accessing websites. When it worked, it was awesome, a semi-seamless way of getting logged in. , 3.0\n249, lastpass, Miranda F, Mid-Market, 2017-02-02, Mind not a steel trap? No problem!, We've recently switched to using lastpass to store our department passwords for shared logins. After the switch there has been a lot less getting locked out of accounts due to incorrect passwords too many times. , The one downside of this service so far is that it does not update the password automatically, we we have to refresh/log out/back in to see changes others have made to passwords. , We are taking less time to get into our clients by having our passwords all loaded in one area that is accessible to only our dept and only our dept can see and change the information., 8.0\n250, lastpass, Verified User (Anonymous), Enterprise, 2017-12-18, Nice way to share passwords with others, Easy to use and organized. Love just clicking the website I need and it logs me in. , Chrome overrides lastpass logins so I have to manually enter them. , Sharing login information and websites. , 7.0\n251, lastpass, Julie T, Small-Business, 2017-06-06, I Regret My Hesitation, I don't have to reset my password everytime i log into something for the first time in a while, now my wife uses my browser profile to access my lastpass, folders per client with their log in information saved allows for multiple logins for the same platforms to not be so annoying, 10.0\n252, lastpass, Erik F, Small-Business, 2016-11-28, Simple & Effective password security, The chrome extension is excellent - it's reliable & the password generator is easy to use. It also works flawlessly on my Chromebook, something competing tools could not do. The combination of LastPass and Google's Two Factor Authentication makes for excellent security. The iPhone App's use of TouchID makes things convenient even when I need a password on a computer I haven't used before., The LastPass iPhone app includes a web browser which would need to be much better to make me use it. Really, this is a complaint about Apple's limitations on Apps - it's impossible to have the same auto-fill features in Safari or Chrome for iOS as you get in ChromeOS or on a desktop. This means that getting to a password requires switching apps which is a little cumbersome. , I've used LastPass to share financial account information between union officers, which has the benefit of encouraging unique and randomized password use from those who aren't all that on board with password security. \n\nI regularly recommend LastPass to individuals concerned about online security and union leaders in similar situations. \n\nReview collected by and hosted on G2.com.Title for your review:Simple & Effective password security, 10.0\n253, lastpass, Verified User (Anonymous), Mid-Market, 2017-07-08, Reliable and secure password manager, I like how accessible it is on my pixel, it auto opens when prompted for passwords and I simply authenticate with my fingerprint for it to self populate. I also like the password generator feature for long secure passwords. , I don't like how it doesn't minimize after I close it on certain windows on my phone, it can get time consuming. , It stores my secure passwords for work sites., 8.0\n254, lastpass, Val S, Small-Business, 2016-12-29, Great tool, could use some enhancements, I really appreciate the ability to store passwords in folders for organizational purposes. The Chrome extension opening the editing window in a new tab is useful as well., I wish there was a way to scroll by or jump to letters in the vault. Having to scroll down the page when you have lots of folders is tedious. The scrolling also tends to be a little buggy and troublesome., LastPass makes creating and storing secure passwords way easier. Without it, I would have some random insecure document with all of passwords and would have to come up with random passwords., 10.0\n255, lastpass, Verified User (Anonymous), Enterprise, 2017-09-29, LastPass is good but takes some time to figure it out, All my devices connect - so when my passwords are created they are available on al my devices, Learning curve was longer than expected. Took time to figure out how it all works. , Time savings because I'm not wasting time searching for passwords. Also reduces frustration and emotional energy, 7.0\n256, lastpass, Eric G, Enterprise, 2017-09-02, The only password vault you ned, The mobile app and browser plugin render any excuse for password management issues dead, I'm still a bit uneasy about cloud based password storage, Unofficially this is not supported by my company, but for sites that are outside our firewall it isinvaluable, 10.0\n257, lastpass, Angela M, Mid-Market, 2017-01-29, Good Concept But Needs Work, I love the flexibility that you have for determining what you want to store as passwords or private information and the ability to label them accordingly. I also like that you can change the fields that are displayed based on the type of credentials that are being stored. The concept of Vaults vs folders is also good to keep data separated based on how you like to keep the data organized. LastPass also allows you to sync multiple devices with data as well as automatically populate password fields based on the URL and your saved credentials so you don't have to worry about finding, copying and pasting the password. I love that you can have a link to an account so that if something were to happen to you that someone else could access your account and that the access can be limited to vaults and specific credentials., I had substantial problems with the syncing across devices. Problems were so bad that I had to actually have them delete the account and start over. Syncing issues would not resolve across the 3 devices that the passwords were all different and eventually I couldn't get into my account. In order to share emergency access to your vaults, the other user has to also have an account which is somewhat difficult to manage. Having to always click to display the password is annoying. Would be better if you could have a setting to display it., This application has solved the business problem of having to try and find a secure method of storing passwords and credentials that is accessible across multiple platforms and readily available. This application has done this when it works properly and affords me the flexibility to control who can view the credentials and what credentials they can view when they have access., 4.0\n258, lastpass, Angela M, Small-Business, 2017-08-12, So easy to use and remembers everything so I don't have to, It is so nice that I can keep payment and profile information in the password protected profile for easy fill ability., I wish that it was a little easier to use from my mobile phone., Easier time accessing sites that I post on., 10.0\n259, lastpass, Eric E, Small-Business, 2017-01-26, Great Wallet for all your Password needs. , I like that I can have increased security on my computer. All that I need is my masterpass, which I have made obscenely complicated, but since it is the only password that I ever need to remember, that is fine. All of my passwords are stored in lastpass and it makes browsing the internet safer and more convenient for me., There are some minor issues with the functionality, sometimes it does not force me to sign into my password vault even if have logged out of lastpass and will fill in passwords automatically anyways.\n\nI would like for the last pass vault to be a bit more comprehensive in terms of how passwords are stored and viewed. , With the amount of platforms I run on there are multiple passwords that I have to use, so lastpass has just made it easier to manage my life in that regard.\n\nRemembering one long complex password for all of my different platforms and applications is much more preferable than remembering a ton of different letter and number combinations. , 10.0\n260, lastpass, Verified User (Anonymous), Mid-Market, 2017-10-27, Fantastic tool for password management, My day to day work is much easier since I'm using Last Pass as now I have all my passwords in one place, Nothing really, sometimes it acts a bit odd on the login screen (once logs in automatically, once you need to press the login button), Day to day work, 9.0\n261, lastpass, Verified User (Anonymous), Small-Business, 2017-06-30, Il top per salvare le password, Sicuro, semplice, veloce e su ogni browser. Sul cellulare \u00e8 praticamente perfetto e ci salva dall'incredibile problema di generare password valide e salvarle in un luogo sicuro, L'app mobile a volte non riconosce le app ed in generale il collegamento delle app con i siti non \u00e8 cos\u00ec semplice, Generazione password e salvataggio in un luogo sicuro, 10.0\n262, lastpass, Ross A, Mid-Market, 2017-03-13, Super convenient!, I love the cross-platform accessibility of the product giving me secure login management tool across device as well as sharing credentials across the service among enterprise partners., Not always accurate at managing multiple log-ins to one site., Third-party service access and credential management, 10.0\n263, lastpass, Guy G, Small-Business, 2017-07-29, Takes the hassle out of password management, Auto password generation, sharing between browsers, platforms, recognising password changes, multi passwords for same websites, It does what it says on the can - a good password manager, I can't really fault it., management of hundreds of usernames and passwords, 9.0\n264, lastpass, Russell H, Small-Business, 2017-01-10, Helpful for storing and organizing all your passwords., You have great control over your passwords. Easily update and organize into your passwords into categories makes it easy to share with family and coworkers as necessary., You have to install last pass across all your devices in order to get the passwords to sync. Not too much of a deal breaker but keep it in mind if you use LastPass's auto-generate password feature., As a freelancer I have my personal set of passwords and well as passwords I share with clients. LastPass helps easily collaborate and share password access., 8.0\n265, lastpass, Verified User (Anonymous), Small-Business, 2017-09-01, Last pass is invaluable!, As a marketing CEO, I have to organize a TON of passwords. This simplifies my life completely, and I don't worry about security., It could be a little faster - sometimes it seems a little slow., Organization, security., 10.0\n266, lastpass, Verified User (Anonymous), Small-Business, 2017-07-13, Amazing but a bit sluggish, I love not having to remember all of my passwords and being confident that my stored passwords are saved. Also that I am able to access them through my browser, browser extension, and mobile app., The browser extensions are little sluggish., I am able to organize passwords per my clients so that I instantly know which accounts belong to which client etc., 8.0\n267, lastpass, Erin G, Small-Business, 2016-10-31, Easy to use, convenient way to sort and file login credentials, I really like how LastPass allows you to sort and file login credentials by type. It's really handy to be able to create folders and separate my personal and work login information. I'm not sure if other password saver products have this capability, but this is a feature I really like. It makes shifting between contract work accounts and personal accounts effortless., Before I signed up with LastPass, there was one account that I created that had the same account as my LastPass vault. I don't use that account often, but when I do, I get an email *every single time* telling me that I need to change my LastPass vault account because I used the same password on another account. I get that this is a security feature and some might find it really beneficial, but I find it really annoying. This is really a minor dislike, however. I haven't had really any complaints with this product so far., I work on contract doing social media and brand development for a handful of digital products. Because there are so many portals and accounts that I", "doc_id": "5d6054d3-d1b8-4c80-9c3c-3f193d0d5178", "embedding": null, "doc_hash": "9f64e9dadd014e295fe5fb00bb29a659a091c029ddb4c523912066bb7f779425", "extra_info": null, "node_info": {"start": 156297, "end": 171964}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "0edd71d2-282d-4996-b957-cf4a427362e1", "3": "b89858ce-6c45-4149-b42c-84e0740d2123"}, "__type__": "1"}, "b89858ce-6c45-4149-b42c-84e0740d2123": {"text": "and work login information. I'm not sure if other password saver products have this capability, but this is a feature I really like. It makes shifting between contract work accounts and personal accounts effortless., Before I signed up with LastPass, there was one account that I created that had the same account as my LastPass vault. I don't use that account often, but when I do, I get an email *every single time* telling me that I need to change my LastPass vault account because I used the same password on another account. I get that this is a security feature and some might find it really beneficial, but I find it really annoying. This is really a minor dislike, however. I haven't had really any complaints with this product so far., I work on contract doing social media and brand development for a handful of digital products. Because there are so many portals and accounts that I need to be able to do my work, it was critical that I have all the login credentials. But as you might imagine, having the type in or record all that information was really cumbersome. Especially since I did not own any of the accounts. Any time a password was changed, I would get locked out and had to email around to get the new password. When I instituted LastPass, it made the work so much more streamlined! The company I worked with simply shared the folder for the products and accounts I was working on, and I was all set!, 7.0\n268, lastpass, ishnu v, Small-Business, 2017-08-02, This is the best for saving passwords and to secure from phishing, Simple to input and easy to save passwords and no need to worry on phishing sites, Some times it asks more time to enter master password. Ofcourse its very rare..., I use multiple accounts and for that purpose its the only thing helps me to remember all thr user names and passwords, 10.0\n269, lastpass, Verified User (Anonymous), Small-Business, 2017-07-13, LastPass rules!, I don't have to remember all my passwords, and it will generate a random password for me, if needed., Can't think of anything major - sometimes it doesn't recognize the same websites and creates a duplicate login., Having to remember passwords for a ton of personal and business related sites is impossible., 10.0\n270, lastpass, Emily H, Small-Business, 2017-06-05, last pass is great!, literally rids the headache of remembering passwords , sometimes for whatever reason i get logged out of last pass and don't know why, allows for sharing passwords for our clients websites without me actually knowing the password.... enhanced security for the client, 10.0\n271, lastpass, Grant H, Small-Business, 2016-12-26, Keep it secret, keep it safe, I have no idea what my passwords are, and it's amazing. Working in the tech industry, there are many security protocols to adhere to and LastPass makes it easy to not worry about password security or management. All you need is your master key and you're set to go. Every other site you sign into has an immensely secure password that is a click away., Nothing to dislike as long as you remember what your master password is!, Security protocols require encrypted passwords and data, this allows an easy management system, and also allows shared services to have one easy to access password for multiple users., 10.0\n272, lastpass, Verified User (Anonymous), Mid-Market, 2017-04-19, My Lastpass Experience, The time it saves, this is one of the best apps I currently use., the occasional bug/ glitch there are a few things I would want fixed., remembering all those darn passwords for every single app I use, there are way too many accounts. keep all the important stuff secure and generate unique passwords is also great., 10.0\n273, lastpass, Chris V, Small-Business, 2016-10-18, My Efficient One Stop Shop for All My Passwords, Lastpass has been an incredible addition to my everyday use program repertoire. I use it so much and it is so convenient to have all your passwords and form information (address, name, etc) in one FREE encrypted place! I really love how LastPass pops up and asks to save login info after entering it on new sites! That way I never lose a login and I also get to name that particular login anything I want when the save dialogue box pops up. I have never used the secure password generator feature, but it seems like a useful tool! The credit card fill form option is also amazing and makes online shopping a breeze; now I don't have to pull out my credit card and type it in every time I buy something., I don't have many negative things to say about LastPass. Sometimes the auto-fill won't recognize a login form immediately. Sometimes a quick reload of the page will fix this! , This makes many of my day to day tasks so much more efficient, not to mention that all the information is securely stored.This helps you keep track of all the different passwords you may use for different sites, and lets you diversify your passwords rather than using the same one for everything., 10.0\n274, lastpass, Andr\u00e9 R, Mid-Market, 2017-01-16, This Is a Lifesaver, Being able to store my password for all the sites that I use knowing that they are safe is beyond useful. You don't need to worry ever again about losing your passwords or feeling like they are not safe., So far I'm very pleased with the product, however, I only use it on my laptop so I can't vouch for the app on mobile devices, but it must be equally good., Like I said before, being able to store my passwords saved me a lot of hassle. Passwords I thought were long lost were stored safely by LastPass., 10.0\n275, lastpass, Adam B, Enterprise, 2022-05-13, LastPass is essential tool for modern life, Mobile and Web features in the family version are great. I like the password strength checks and dark web monitoring., Sometimes you can unintentionally create duplicates and it would be nice if there was a nudge to prevent duplicates., Different passwords for all accounts protect your online accounts, FBI says most people say they didn't think they would be a target., 9.0\n276, lastpass, Rachid F, Small-Business, 2022-01-30, great for keeping track and securing your passwords, Lastpass is very easy to use. You can save your passwords easily by providing the website, username, and password. The desktop version is well designed and easy to navigate. You can share a password with another party or the opposite. I knew about their service because one of my service providers wanted to share a password with me on their platform. I found this helpful and secure for both the user and my service provider.\nFor the desktop version, you need to install their addon. It will then automatically auto-populate passwords for you.\nYou also have the option to generate a random password.\nOverall their premium service is worth it for the price and the functionalities they offer., Sometimes it takes time to have someone share a password with you. for instance, I waited a while before seeing the password that was shared with me. Other than that, there isn't much to complain about lastpass services., Several, the number of passwords I have to remember is just overwhelming. Websites are increasing the complexity requirement for their passwords, so it's just impossible not to make mistakes. I used to store my passwords in an Excel file, but I think it's better to invest in lastpass. Their services are professional, and I feel safer., 8.0\n277, lastpass, Verified User (Anonymous), Small-Business, 2022-11-08, Peace of mind, After creating an account a screen auto-populates asking if you'd like to add this account to your LastPass account. Makes it easy., Wish LastPass had a way of automatically adding a new account via the iphone., LastPass has been the solution to having to memorize passwords., 10.0\n278, lastpass, Mohammed A, Small-Business, 2022-01-19, Password Manager for Beginners, One of the most important reasons is that it is very easy to get started with LastPass and some of the best features are available in the LastPass Free account itself. In fact, I'm known for the first time in 2015 that third-party applications are available for password storage. Prior to that, only 2 or 3 different passwords were used for a lot of logins., In fact, it's been almost a year since we use less LastPass and start to think about another Password Manager. For me, a password manager should be free and should be able to sync and access every device. Paid plan can be given to those who need more advanced features. A lot of people didn't really like the change they made in their Free Plan - Access on one device type \u2013 computer or mobile., In fact, when I did a Google search for Password Manager, I first came across LastPass. Also, the first time I took an account in a password manager was in LastPass. LastPass is definitely the easiest password manager to use. LastPass is very secure and saves passwords and can be shared if needed., 8.0\n279, lastpass, Ashley K, Mid-Market, 2022-04-27, Simply the best, Simple and easy to install and use on all platforms. Ability to share secrets with colleagues or family members., Can be a lag in response occasionally. Irritating but doesn't outweigh the usefulness of Lastpass, We use Lastpass to centrally manage shared secrets amongst staff. The centralized admin controls on policies are a great feature., 9.0\n280, lastpass, Verified User (Anonymous), Small-Business, 2022-08-02, Best secure storage and password manager, Much more than pw storage: Safe storage of varied information such as account numbers, keywords, ID numbers. The browser extension is top notch!, The reminders to change weak passwords are sometimes too frequent., Coordinating sign ins to different business systems is easier when we all have shared password managers online., 10.0\n281, lastpass, Verified User (Anonymous), Mid-Market, 2022-04-20, Decent password manager \u2014 not the most user friendly, The Lastpass Chome extension makes filling in usernames and passwords super easy, especially when there are multiple accounts for one website. Feel very comfortable with the level of security and protection it adds., I feel like the app isn't the most user friendly \u2014 sharing passwords between team members can be quite cumbersome and tricky at times, and passwords aren't always contained in the same space making it difficult to locate everything., Folders with a large group of essential passwords make onboarding new team members very easy. The process is quick, simple, and secure, and my team is a big fan., 5.0\n282, lastpass, Dan L, Small-Business, 2021-11-25, Great for Sharing Passwords Among Team Members, We previously had a spreadsheet that saved common passwords as team and this was a horrible way to share. We love the ability to create different folders and user permissions ensuring everyone on the team has the proper access., Adding new teammates can be clunky sometimes as you need to add them in two spots, the business admin manager and then to the shared folder from your own vault. Saying that it hasn't been a huge deal as we aren't a huge team., Ensuring we have secure passwords especially to our applications that deal with sensitive customer data. The password analysis to see how strong your passwords are and how often you reuse any are great. The tool I appreciate the most though within LastPass is how it can generate a secure password for you., 9.0\n283, lastpass, Verified User (Anonymous), Small-Business, 2022-03-09, The ultimate secure solution, I love the fact that I do not have to even share a password and still give controlled access to my team members. The ability to share passwords securely from anywhere is absolutely great. We have pretty much all platforms in our company and it doesn't matter, it handles everything almost exactly the same way., I haven't found anything not to dislike, to be honest., The biggest problem was securely sending account information to users. We don't email them, not even temporary passwords anymore, we just use Lastpass to do it securely., 10.0\n284, lastpass, Crisanne G, Small-Business, 2021-10-21, Super easy, Everything is in one central place and stored directly in Chrome. It also has a phone app so that you can take your passwords with you across multiple devices. You are also able to easily invite outside team members to access specific folders, so if you are working with partners who need access to specific accounts, they can access those specific logins and nothing else on your account., You cannot reset your password if you forget it. If you forget the password, you are locked out indefinitely unless you have the password saved somewhere else or magically remember it. It is a major flaw of the software because if you cannot get back in, lastpass now has all of your information saved and you cannot recover it on your own. There's also a bug where it consistently thinks that my account has been deactivated and kicks me out of my browser extension., We use lastpass as a company to store shared logins for clients and shared license keys for software that we use as a group. In the past we shared an excel doc that was always out of date. The shared folders in lastpass automatically update for everyone in the company on the enterprise plan. You can also link your personal lastpass accounts with company ones, so the lastpass application will have all of the logins that you ever need readily available at all times instead of having to log out and log into a different account to get to different logins., 7.0\n285, lastpass, Verified User (Anonymous), Small-Business, 2022-01-04, Password Manager at its best, The thing that I like most about LastPass is the fact that you are able to store sensitive info with an email and password so you will not have to remember all of your different passwords. I also love the Launch feature that when you saved a password, you click Launch and it will automatically lead you to the URL provided and log you in with the credentials you have entered., There are some cases that the Launch function is not applicable to some passwords. I also hope there is an option too to add some cover for each item just to make it have a more fun design or interface., The main problem that LastPass has solved would be not needing to remember or jot down in paper all of the passwords that you know. It really helps with organizing your password making it more secure for things that have sensitive info., 10.0\n286, lastpass, Verified User (Anonymous), Mid-Market, 2022-08-11, The password protector, It is fairly easy to use. I like the fill-in options., You have to change the LastPass password and it is a really long one, which I understand but still I'd rather not change it., You can share passwords within the company., 9.0\n287, lastpass, Andrew B, Small-Business, 2022-01-12, All in one password generator and vault, I like sharing passwords for shared login credentials within the business. LastPass makes it easy for team members to use the same login and gives the option to allow other teammates to view the password or keep it private., I don't particularly appreciate that LastPass limits the number of password shares per login when you are a free user. Understandably it would be best if you upgraded to premium to get maximum usefulness., As a company with ten or so people in the office that need access to the same password-protected websites, LastPass allows us to easily share and update passwords with suppliers and local building departments., 10.0\n288, lastpass, Ben S, Small-Business, 2021-10-15, An invaluable tool for operating securely in today's world!, LastPass has been our go-to tool since 2013 for safe, secure password vaulting and management. Whether its traditional credentials or account numbers/SSNs, LastPass provides a single encrypted cloud and local vault to safely store them, a nonsense password generator, tools to find PWs used more than once, PWs that are not sufficiently secure, and controlled sharing mechanisms within companies, non-profits, or families., Occasionally auto-capture of a newly discovered site will freeze up - perhaps because it collides with a pop-up from that site, and its necessary to manually add the site and credential - it takes just a few seconds., Whether", "doc_id": "b89858ce-6c45-4149-b42c-84e0740d2123", "embedding": null, "doc_hash": "8bfbd55d402397c42356f96135ebc2a8bb720b07afc5650a626f0abba4fff6e1", "extra_info": null, "node_info": {"start": 171826, "end": 188083}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "5d6054d3-d1b8-4c80-9c3c-3f193d0d5178", "3": "7360afbb-3a45-4115-9a90-98dd069a62c4"}, "__type__": "1"}, "7360afbb-3a45-4115-9a90-98dd069a62c4": {"text": "and local building departments., 10.0\n288, lastpass, Ben S, Small-Business, 2021-10-15, An invaluable tool for operating securely in today's world!, LastPass has been our go-to tool since 2013 for safe, secure password vaulting and management. Whether its traditional credentials or account numbers/SSNs, LastPass provides a single encrypted cloud and local vault to safely store them, a nonsense password generator, tools to find PWs used more than once, PWs that are not sufficiently secure, and controlled sharing mechanisms within companies, non-profits, or families., Occasionally auto-capture of a newly discovered site will freeze up - perhaps because it collides with a pop-up from that site, and its necessary to manually add the site and credential - it takes just a few seconds., Whether its traditional credentials or account numbers/SSNs, LastPass provides a single encrypted cloud and local vault to safely store them, a nonsense password generator, tools to find PWs used more than once, PWs that are not sufficiently secure, and controlled sharing mechanisms within companies, non-profits, or families., 9.0\n289, lastpass, D E E P A K P, Small-Business, 2022-01-10, Best online password manager, LastPass is an online password manager. You can use it as a digital vault, it keeps all your website logins organized and safe. LastPass can also create new passwords, fill out online forms, facilitate password sharing, alert you about weak passwords, and more. The software will be installed on your browsers as a browser extension. As you go to work-related sites, save the credentials to your LastPass vault. LastPass will then autofill those passwords the next time you go to log in., 1. Sometimes password is not automatically filled up otherwise all the features are good.2. Pricing is high., No need to remember all the passwords. Only you have to remember the master password.It will auto-create secure passwords for us.It also provides a security score for passwords., 9.0\n290, lastpass, David M, Small-Business, 2022-08-02, An essential piece of business software, It takes away all headaches when managing passwords within a team. And we use a lot!, Sometimes take a while to update across other users, We manage many passwords, day to day for ourselves and clients. And this takes away all the stress!, 10.0\n291, lastpass, Rachel F, Small-Business, 2022-05-24, Best Password Manager, Love the ability to generate passwords, very hepful on the fly, Sometimes it doesn't show up on all logins, so you need to copy and paste into the fields, Remembering all my password and also creating secure passwords, 10.0\n292, lastpass, Rakesh K, Small-Business, 2021-11-05, Get the job done but horrible User experience overall - they have had so much time to improve!, It's the most cost-effective product. You get basic password protection features and team features for a very reasonable cost. If you are a startup boostrapping, you want Lastpass in your starting stack., What horrible UX! I was OK with this a few years ago when we first adopted Lastpass but 5-6 years later, I am frustrated and impatient with their total disregard for good user experience as a priority in their roadmap. Their recent \"improvements\" are shallow and ineffective., - Effective Team control on Password management in the organization, 4.0\n293, lastpass, Harry A, Small-Business, 2021-11-30, Reliable password manager for small teams, The password generator seems to work better with most website requirements than others I have used in the past. Love being able to manage access to groups for staff wtih different permission levels, and to unify password management across desktop and mobile., The interface is a bit clunky if you need to lookup, edit or add a record, though the good browser integrations mean I rarely need to use the full app., Managing a large number of website logins across a small team is impossible without a robust password manager. Security to ensure access can be revoked, and that staff do not need to be able to see the password to access websites means reduced risk of malicious activity by a staff member., 8.0\n294, lastpass, Nickola W, Small-Business, 2022-03-02, Lastpass review, Ease of use especially the fingerprint on my phone, Sometimes on my phone it doesn't come up and on my computer tired of it asking me if a password matches something else do i want to ignore. I have three screens and it always appears where I can't see it, Having a document with passwords in it, 10.0\n295, lastpass, Verified User (Anonymous), Mid-Market, 2022-03-09, Great product - highly recommend, The ability to share passwords securely and being notified of account breaches found on the dark web., Recently, the iteration period of updates and new features seems to have slowed., Making departments and administrators more secure by adopting best practices with a password manager like LastPass. Logging into sites and filling out forms is much quicker with LastPass in desktop and mobile., 10.0\n296, lastpass, Jim H, Small-Business, 2022-01-15, Easy to use and easy to share, I can keep all my passwords and secure info in one place. I can share with my team securely and selectively. Easy to add or remove team members. Affordable for a small team., There is no credit provided when removing a team member during an annual commitment. The pop-over tool for managing the account is a bit cumbersome and appears dated., Sharing passwords with our team safely and securely. Ensuring that we use secure and unique passwords, instead of repeating the same simple ones in all apps. Ensuring we are all on the same page., 10.0\n297, lastpass, Jennifer S, Small-Business, 2022-05-11, I love being organized with my accounts, I like that I can use it on multiple devices, There are no downsides. I've been using it for over a year., Organization and easy access to all my passwords, 10.0\n298, lastpass, Jared C, Small-Business, 2021-11-23, User Friendly for all levels, We started using this in our IT team, and once we had setup LastPass Teams, securely sharing the necessary passwords became easy. Once we had the experience with that, we enrolled our finance and HR users to great success as well., Not much, really. The only thing that comes to mind is the need for paid accounts to be able to access your vault on any device, but I understand why this change was necessary., Sharing passwords amongst IT users. Increasing password security and complexity. We have seen increased password scores since our users started using the generated ones since they don't need to keep writing them down anymore., 10.0\n299, lastpass, Verified User (Anonymous), Mid-Market, 2022-05-24, Great Password Manager for Business & Personal Use, I like the ease of only needing to know 1 password & that it can be used on any device., Sometimes with the app on the phone, it creates 2 different saved passwords for websites/apps and then causes my total security score to drop because it shows it as a reused password even if it's not., Can make more secured passwords since don't have to remember them all., 9.0\n300, lastpass, Mike B, Small-Business, 2022-11-09, Increase security, I have many passwords and with LastPass I can have different passwords for all of them, like is recommended. Also, if I repeat passwords, I am warned and allowed to do what I decide to do., I can't think of any dislikes, it is wonderfull., By using LastPass I fell much more secure., 10.0\n301, lastpass, Groupe C, Small-Business, 2022-06-14, I have been using it for YEARS and it still is used every single day !, I love that you can keep safe not only passwords, but notes, and a ton of other informations and accounts data and logins. It's super easy to use!, Nothing really. It's quite easy to use and manage, and I don't see anything that would make me dislike it, I have ADHD... so my brain cannot retain all login and passwords info anyway... this is a secure way to keep them on hand, and with Google Chrome extension and mobile app, you always have access to it., 10.0\n302, lastpass, Verified User (Anonymous), Mid-Market, 2022-11-09, Great password solution, Easy to use. Improved security. Makes handling a large variety of passwords easy to manage., Can sometimes be hard to use with multiple accounts for the same site, for example client logins on the same platform. Some of the more powerful features are only for paid subscribers., Effectively managing passwords., 10.0\n303, lastpass, Glenn G, Small-Business, 2022-10-04, Great product. Been using for years after trying many other password managers., Identities'. I have 7 different ones to filter my business family and personal accounts, Sharing database is a little clunky. People I share with have trouble accepting invitation., Client passwords, 10.0\n304, lastpass, Ricky K, Small-Business, 2022-11-23, The product is excellent love the azure ad integration for the user accounts., Provisioning accounts through azure active directory ease of use and security for the users.., Setup with users who already have accounts caused issues with provisioning accounts and conversion did not work., Single sign-on using office 365 credentials instead of individual user passwords., 10.0\n305, lastpass, Verified User (Anonymous), Small-Business, 2022-07-13, Works better than my brain, It forces me to have good online hygiene because it makes it easy to generate unique and complex passwords for all of my online portals. It reinforces good habits., Getting my browser to stop auto filling passwords - I should have done a few more tutorials before getting frustrated with something so easily fixed on my end., My business runs on online portals. I have to take care of many client accounts - and need to share passwords and other confidential information securely. LastPass makes that easy for me and my staff., 10.0\n306, lastpass, Verified User (Anonymous), Small-Business, 2022-11-16, It is extremely useful and easy to use., When using the business plan, you can share passwords with colleagues., When I needed to add a license recently, the new checkout page was not user-friendly and I had to go back to the old UI., Adding security to every external service which requires passwords., 10.0\n307, lastpass, Verified User (Anonymous), Mid-Market, 2022-11-08, LastPass makes it easy!, The ability to have secure passwords for all of my sites, as well as the ability to organize different categories into folders and share them to other users., It would be a nice feature if they had the ability to provide an 'anti-password' which when filled in would lock your account for a certain time if you are compromised by someone in person., Allows the ability to keep all passwords stored so that you can create very secure passwords and not have to remember them all., 10.0\n308, lastpass, Katie W, Small-Business, 2022-06-28, LastPass is valuable tool, so easy to securely share passwords with team members, as well as the ability to share secure notes., Everything is useful. Nothing is missing. Everything works great, We have many systems and software platforms that many team members use and LastPass make it simple to share passwords so we don't have to have separate Logins for systems that everyone uses., 10.0\n309, lastpass, Angela M, Small-Business, 2022-11-16, All my passwords safely in one place!, I like being able to manage 100's of DIFFERENT passwords in one place and being able to share those passwords securely with my team, That if you lose your master password you are 100% screwed, centralized password management and secure sharing of those passwords., 10.0\n310, lastpass, Jo\u00e3o O, Small-Business, 2022-11-15, Long time user, I like how easy is to use this cross-platform., I would love a better integration with iOS devices., As a developer, I have different passwords for different accesses but also different users and passwords for the same website. LastPass helps me to manage everything., 8.0\n311, lastpass, Al-Nesha J, Small-Business, 2022-04-26, LastPass makes it easier (and more secure) to run my business!, LastPass is easy to use/implement, intuitive, and a must-have! No more post-it notes with passwords, resetting forgotten passwords every week, etc. I love being able to share passwords with team members without actually sharing the password. It makes onboarding (and when necessary, offboarding) team members much easier! It's built into my business' budget forever, and every time I go to a professional office and see a desk full of post-it notes, I always recommend LastPass to them. Such a game changer! Now the only password I have to remember is my LastPass password!, Nothing that I can think of -- LastPass meets our needs!, Securely storing passwords, sharing passwords without actually sharing the password (so we don't have to change them if a team member no longer needs access to it), creating more secure passwords (because we don't have to remember them), 10.0\n312, lastpass, Verified User (Anonymous), Small-Business, 2022-11-08, Simple and secure, My passwords are accessible from any device I'm on., I can't really think of anything that I don't like!, For me, LastPass means only having to remember one password, which gives me confidence that my accounts are secure. I'm also keeping my elderly mother's passwords., 10.0\n313, lastpass, Kyle B, Small-Business, 2022-06-21, Excellent Password Management, I'm able to have all of my personal and professional passwords in one place and with me all the time on my phone and can log in anywhere in the world., There are no real downsides. However, the iPhone app could work a bit better by auto-filling in the logins and passwords., Our organization uses it and it's made it much faster and safer to share logins and passwords., 10.0\n314, lastpass, Verified User (Anonymous), Small-Business, 2022-11-15, LastPass review, Autofill functionality. Password generation is a breeze on desktop., Password generation on mobile is tedious. Mobile app does not try to register new login information like the Desktop app does., Dealing with passwords for one. Sharing passwords with family members also., 9.0\n315, lastpass, Verified User (Anonymous), Small-Business, 2022-12-11, Easy way to keep your passwords, easy to use\ncan be used by several people, sometimes it appears when I do not need it, An easy way to share passwords with your colleagues, 10.0\n316, lastpass, Verified User (Anonymous), Enterprise, 2022-11-08, An essential password management tool, The ability to have lastpass fill in my passwords for me so that I don't have to remember them myself., I haven't found anything that I dislike yet., Lastpass is helping me make secure passwords and then fill in those passwords for me., 9.0\n317, lastpass, Verified User (Anonymous), Small-Business, 2022-11-08, LastPass is a great resource to store, track, and use passwords across devices., I like how LastPass can automatically apply logins to various sites and apps across devices., There isn't much that I dislike about LastPass., LastPass keeps track of passwords and creates secure passwords so that I can have unique information for sites., 10.0\n318, lastpass, Verified User (Anonymous), Small-Business, 2022-10-20, Best Password Manager, LastPass allows us to securly store a large number of passwords in one central location, and have them shared with our team, I wish we could disable autofill for addresses since we never use that feature., Gives everyone on our team access to shared passwords and shared business credit cards, 10.0\n319, lastpass, Steph M, Small-Business,", "doc_id": "7360afbb-3a45-4115-9a90-98dd069a62c4", "embedding": null, "doc_hash": "300a117b35cd68ccb753fb12d431573a11dd55a5fa94e21a4b78cf2005065a62", "extra_info": null, "node_info": {"start": 188141, "end": 203726}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "b89858ce-6c45-4149-b42c-84e0740d2123", "3": "ed6f6673-ba65-456c-b4ac-e8bccf1c63a0"}, "__type__": "1"}, "ed6f6673-ba65-456c-b4ac-e8bccf1c63a0": {"text": "Small-Business, 2022-11-08, LastPass is a great resource to store, track, and use passwords across devices., I like how LastPass can automatically apply logins to various sites and apps across devices., There isn't much that I dislike about LastPass., LastPass keeps track of passwords and creates secure passwords so that I can have unique information for sites., 10.0\n318, lastpass, Verified User (Anonymous), Small-Business, 2022-10-20, Best Password Manager, LastPass allows us to securly store a large number of passwords in one central location, and have them shared with our team, I wish we could disable autofill for addresses since we never use that feature., Gives everyone on our team access to shared passwords and shared business credit cards, 10.0\n319, lastpass, Steph M, Small-Business, 2022-12-21, Extremely Helpful, I rave about how easy it is to sign in and share passwords at work. Having personally used a password manager for years, I was excited to get staff set up with the system, It has proven difficult to get some staff on-boarded due to technical skill or competency, Gone are the days of lost or forgotten passwords. It's also so easy to share vital passwords with management via shared folders., 10.0\n320, lastpass, Jorge R, Small-Business, 2022-07-21, The FIRST step is LastPass!, Ease of creating, saving & accessing PWs, LastPass plugin goes to sleep frequently, Feeling safe and secure about creating really strong passwords without the need to have to remember and input those passwords. The ability to be able to share with team members and not feel unsafe by sharing an excel sheet or the like., 10.0\n321, lastpass, Verified User (Anonymous), Small-Business, 2022-11-14, Last Pass has saved me so much time and frustration managing passwords and sensitive information., I like how easy it is to use LastPass on all my devics., I cannot think of a single downside to using LastPass., LastPass helps me keep all my passwords organized and up to date., 10.0\n322, lastpass, Scott B, Small-Business, 2022-11-08, Great product for keeping us secure, Ease of use and cross platform access helps make things much more secure., Pricing is high for a service like this., Lastpass is solving the issue of complex passwords and helping us to not reuse passwords., 9.0\n323, lastpass, Verified User (Anonymous), Mid-Market, 2022-10-04, Easy to use, works well, and it's painless to set up, I appreciate its programmability--you can customize logins using multiple fields. I also like how you can customize password strings., I wish it could store application passwords as well as web-based ones., Remembering online passwords; with hundreds of sites in my directory I surely can't remember using more than a handful of passwords., 10.0\n324, lastpass, Eric P, Small-Business, 2022-08-09, Easy to use, easy to administrate., LastPass helps us create secure passwords, and keeps track of them., Occasionally the fill-in on mobile is difficult to use., Keeping track of all the passwords and keeping unique passwords for every site. Sharing passwords for shared accounts across the business., 10.0\n325, lastpass, Verified User (Anonymous), Mid-Market, 2022-11-15, Teacher experience, As a teacher with many log-ins to various LMS, SIS, and educational websites, it has been a lifesaver not having to remember all of them., I was a little frustrated with the free version and so happy I switched to the premium version., My school has a Google Domain and several different products requiring log-in. LastPass helps me across all the devices I use daily., 9.0\n326, lastpass, Wojciech M, Mid-Market, 2022-11-09, My LastPass, Order in my passwords. Sharing. Shared on-time passwords, The chrome plugin is relatively slow. Form filling mechanism sometimes does not work correctly., One secure database of passwords in my company., 9.0\n327, lastpass, Bill S, Small-Business, 2022-04-19, better than the competition, Last pass is easy to use compared to the competitor's version I use when working on my wife's business., The one thing I don't like is even though Last Pass asks me if I want it to remember me for 30 days, I still need to authenticate every day. The authentication process is simple enough, so I don't really mind if it protects my passwords., Today you can't just keep a sheet with all your passwords hidden on the top of your desk. Last Pass not only saves the latest passwords, but it allows me to organize my passwords and log on information in a way the works for me., 9.0\n328, lastpass, Ryan C, Small-Business, 2022-03-09, I trust that every account I have is safe., That it randomizes and stores passwords for me. Much easier to remember a single password than writing hundreds down. Everytime I create a new account for a new online service, I no longer worry that I'm reusing a password from an older, compromised account., The LP UI sensors and be a bit clumsy sensing forms in websites and try to autofill or store the wrong information. For example, if I enter information onto certain websites (Name, Address, etc), it'll interpret it as a new password. Or, for example, on my financial planning website, linking accounts from credit cards and banks will often try to save themselves as new passwords for the financial planning website., Almost all of my older website logins were hacked before I got to this. Now, nearly all my life is lived online and every time I create an account, I'm certain that it's secure and that LP will alert me if I have any glaring issues with my security., 10.0\n329, lastpass, Julian R, Mid-Market, 2022-08-09, Old UI interface, and lack some features, Can storage passwords and create random and high secure passwords, but as far as I know they had a security breach, exposing user data to hackers. Sharing features are good., The old-style user interface, the lack of add 2FA and share the accounts with 2FA enable to others in a secure way. Also, the concerns about security is present since their last security breach., Create secure passwords and storage login credentias from different services., 5.0\n330, lastpass, Earl H, Small-Business, 2022-11-15, Since the day, I was introduced to LastPass I have used it everyday., LastPass keeps me accountable on having secure password., The length of time LastPass is available on mobile app, Being able to have over 100 passwords, 10.0\n331, lastpass, Verified User (Anonymous), Small-Business, 2022-08-02, Huge Time Saver, I manage a team of 10 people. LastPass allows my team to share sensitive information without risk of exposure. It is also really easy to add or remove users when we have interns or hire new staff., A minor issue, but the navigation within the site is frustrating. Instead of navigating my current window to something like \"Sharing Center\" or \"Admin Console\" it opens a new tab. It doesn't take long for my browser to get crowded with old tabs I don't need., Because the sharing of sensitive information is so simple, it allows us to harden our passwords across the internet, making our overall company security lightyears ahead of where it was before., 10.0\n332, lastpass, Verified User (Anonymous), Small-Business, 2022-07-21, The reason for this review is to let everyone know how simple and convenient using LastPass is., I like using this for business and a great benefit is that I can use it for my passwords as well. It sure cuts down on trying to remember several passwords and I like the fact that I can use it with my smartphone., I have not found anything I dislike about this program, the only thing that I find inconvenient is that sometimes some websites make it challenging to use. I know that is not LastPass's problem but the website that I'm using., I am not aware of any problems that LastPass is solving for me. I can't speak for everyone else, so far it's working for me and I'm happy using it for both business and personal use., 9.0\n333, lastpass, Verified User (Anonymous), Mid-Market, 2022-11-13, LastPass is secure and easy!, Ease of storing passwords as I fill them in on sites, as well as offering to fill them when I log in. Password generator with custom options for length, symbols, etc. Sharing folders for passwords shared amongst family., Sometimes the Last pass button on a field is overlapping with a \"Show/Hide\" button on a website. I have yet to find a way to get around that annoyance. Not LastPass' fault but a little inconvenient., Generating secure passwords, keeping them safe. Sharing passwords with others and having private vaults for personal passwords. Helps me keep all my passwords strong and sorted., 10.0\n334, lastpass, Rocus P, Mid-Market, 2022-11-04, A decent password manager, I like the full-on integration with Mobile and Windows so you can use your passwords everywhere. Need to log in on a site regardless of device or app. No problem., The pricing and the data storage in the US. We are a European company and like our data stored in Europe., Lastpass is a perfect password management solution but it wasn't what our company was looking for., 7.0\n335, lastpass, Kevin T, Mid-Market, 2022-05-18, My Team loves LastPass, Browser and phone app integration. It makes it dead simple to populate username/password across all of our cloud services, sites, and applications. It's been very easy to implement and tiered access has allowed us to make sure that our teams only have the passwords they need for their job functions., Some mobile apps lack integration requiring a copy/paste from the LastPass app into the password field. Password rotation is sometimes hit and miss requiring a manual process., As an IT Department we have a huge number of systems, each with their own set of credentials. LastPass has enabled us to use longer and more complex passwords and eliminate the temptation to re-use passwords., 10.0\n336, lastpass, Maribeth J, Small-Business, 2022-07-12, Makes office management so much simpler, Face recognition on the app is a game changer. The ability to track not only my own passwords but to keep up with our staff's individual passwords. The admin console is fantastic., The number of times I've had to reset my Master Password because I can't remember it. I had a lot of difficulty resetting it remotely prior to face recognition, By having our staff use LastPass, simply by accepting LastPass' prompt to save any password, I am able to help them manage their security and it has eliminated constantly updating a spreadsheet of shared passwords. It also removes staff access to see others' login information through that spreadsheet., 9.0\n337, lastpass, Brandee B, Small-Business, 2022-06-21, Best Way to Keep Company Passwords Organized, We use complicated passwords and its great to have those at our disposal anywhere we are.. desktop, laptop, phone., I wish you could edit more information while in the quick add screen. I normally have to add the new password, them go back to the entry and complete it with all information., Lastpass is keeping our passwords safe, secure, and available to all employees. It also segments them so each employee only has access to the necessary ones., 10.0\n338, lastpass, Verified User (Anonymous), Small-Business, 2022-11-08, Don't know what I did without LastPass, I now have unique passwords for all my accounts and don't have to worry about forgetting them of writing them out in a long, confusing list., I don't dislike anything... it's a great program., I now know my passwords are unique and safe. I don't worry that I am reusing and password and thus exposing it or allowing it to be insecure., 9.0\n339, lastpass, Verified User (Anonymous), Small-Business, 2022-11-08, Easy to use tool that improves online security and is compatible across multiple platforms., The LastPass tool is easy to use and allows for the safe storage of more than just passwords., The cost is a little high for an automated password storage solution, but it does provide more than just secure password storage., LastPass allows you to quickly generate and save a unique secure password during online account creation to ensure your passwords aren't reused., 10.0\n340, lastpass, Verified User (Anonymous), Small-Business, 2022-09-13, The best password manager i've ever used, For our team LastPass was the best fit for both private and share password requirements. cross-platform support, cloud-hosted and independently audited it ticked all the boxes., The data import process could have been better, but this was more an issue with the data sources we had; better tools for sorting this out would have been nice., Lastpass made using strong, secure passwords easy and a nonissue, before using LastPass, there was the temptation to use a weak password temporarily, but these didn't always get changed in a timely manner., 9.0\n341, lastpass, Verified User (Anonymous), Small-Business, 2022-11-15, LastPass is your one stop solution, The ability to use LastPass across multiple devices and platforms, including Mobile, windows, and iOS gives it supreme functionality!, There are some sites that will not allow the LastPast to autofill, takes an extra step to get your credentials entered, but its workable., LastPass significantly increases our cybersucurity awareness measures, by not having passwords written down, on sticky notes on monitors, etc. It also helps us to create higher security passwords which are needed for many government platforms we use that require a new password that is complex in nature ever 90 days., 10.0\n342, lastpass, Ibi E, Small-Business, 2022-09-13, nan, Automatically syncs between all devices. One app takes care of it all., I have not found any downside to using LastPass. A recent data breach is a concern., Every employee can manage their own password and have access to shared sites. No more phone calls with password questions!, 10.0\n343, lastpass, Verified User (Anonymous), Small-Business, 2022-11-08, Last Pass is quick and well organized, great at securely keeping multiple user's credentials on the same website., Last Pass kicks me out mulitple time per day so I have to log in frequently., #1= security #2 ease of use #3 Being a website professional, I am in & out of password protected websites all day. Using LP is SO much easier, 9.0\n344, lastpass, Verified User (Anonymous), Small-Business, 2022-11-15, Easy Password storage, Last Pass makes it super easy to access your passwords anywhere and anytime with both Mobile and Desktop applications. It is the best program that I have used., Not super easy to change the password in the mobile application, its my password memory bank. I have trouble remembering all my passwords, 10.0\n345, lastpass, Ilse M, Small-Business, 2022-07-24, Makes my life easier, I have been using Lastpass for years. With so many accounts I have, I would not be able to remember passwords if it weren't for Lastpass. I love it. Also, I like the password generating feature, because I don't have to think about coming up with new passwords all the time., The phone app is good, but sometimes a bit clunky. Not a big deal, but it could be smoother., I no longer have to worry about remembering my passwords or think about coming up with new ones. Also, I love how fast it's to log into any site and fill in my CC info when paying., 10.0\n346, lastpass, Natalya H, Small-Business, 2022-08-16, Packed with features, As a business owner, I love flexibility of sharing logins without revealing the password to my", "doc_id": "ed6f6673-ba65-456c-b4ac-e8bccf1c63a0", "embedding": null, "doc_hash": "ba997ce208e9c5946dd993c57c1ac60989a38e9aeaca239a22f403da62182dd0", "extra_info": null, "node_info": {"start": 203725, "end": 219167}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "7360afbb-3a45-4115-9a90-98dd069a62c4", "3": "828cfc79-9333-4469-97f0-47881b010441"}, "__type__": "1"}, "828cfc79-9333-4469-97f0-47881b010441": {"text": "Makes my life easier, I have been using Lastpass for years. With so many accounts I have, I would not be able to remember passwords if it weren't for Lastpass. I love it. Also, I like the password generating feature, because I don't have to think about coming up with new passwords all the time., The phone app is good, but sometimes a bit clunky. Not a big deal, but it could be smoother., I no longer have to worry about remembering my passwords or think about coming up with new ones. Also, I love how fast it's to log into any site and fill in my CC info when paying., 10.0\n346, lastpass, Natalya H, Small-Business, 2022-08-16, Packed with features, As a business owner, I love flexibility of sharing logins without revealing the password to my staff. I use Chrome extension and find it very helpful., I have several LastPass instances (at work and my business, and my personal). I love that it is possible to connect them all, but updating or adding a new password within one \"combined\" does not update stand-alone instances of my other LastPass accounts. I have to toggle LastPass instances on various devices constantly. And then manually duplicate/update., Secure passwords that need no remembering, and sharing of passwords among colleagues., 10.0\n347, lastpass, Verified User (Anonymous), Small-Business, 2022-04-26, Peace of Mind, Outside of the basic functionality that allows users to secure their credentials for various websites behind a very strong password with an option to use 2FA, I appreciate that the application recognizes and reminds me when a password is being used for multiple websites or isn't as strong as what it should be. In turn, I can take steps as a user to create unique and strong passwords and minimize the likelihood of being comprised., While I have nothing to compare to, I haven't encountered any issues with the product and it has all of the features that I was looking for before I rolled out the Enterprise version of LastPass to my organization., The use of LastPass has helped me and other users in my company to safely organize and manage our credentials and it gives me peace of mind that I can access my credentials and other secure information (COVID ID, garage codes, code to my safe, etc.) from anywhere and I can also share them with family members as needed. Before using a password management system, I had passwords cryptically recorded on notes but it always concerned me that if my house burned down, I would obviously lose those notes. \n\nAlso, the use of LastPass has helped me strengthen my passwords and create unique credentials for each website because I no longer have to memorize them. Considering that 81% of all data breaches are attributed to weak or stolen passwords and 51% of people reuse passwords across their business and personal accounts, I feel that my security posture, as well as that of my organization's, is much improved since deploying LastPass., 10.0\n348, lastpass, Verified User (Anonymous), Small-Business, 2022-11-15, Great software that allows me to manage secure passwords, The ease of use and flexibility of secure password management is fantastic!, I don't have anything negative to say about LastPass. It's been a great experience all around., I am not keeping my ear to the ground as far as their development. The software features tick all my boxes already., 10.0\n349, lastpass, Verified User (Anonymous), Small-Business, 2022-04-26, LastPass is a must to have tool for me to manage all my accounts, I love how it is embedded in the browser as well as the phone. WIthout it I will be lost as I have easily 100's of accounts.\nAt work we can keep the passwords secure and share the logins with team members and the team members dont even see the passwords. So no more sharing of passwords in Slack.\nIt alerts if we are using the passwords more than once which I think is really key to be secure online\nWorks very well on my iPhone as well, Recently I observed that I have to reload the page on the chrome which is kind of an inconvinience. Not sure if Chome has forced LastPass, Keeping the passwords unique, secure, hard to guess and only use once for each account\nOrganize and share the LastPass with team members without sharing passwords\nCan easily login to all my accounts. So no need to memorize or deal with forget password weirdness. So I don't feel stupid\nCan easily switch between chrome on Desktop and Mobile \nIt always works and never had any issues with the product, 10.0\n350, lastpass, Verified User (Anonymous), Small-Business, 2022-11-08, Easy to Use - Stores a LOT of Valuable Information, LastPass syncs well across all devices. The various browser plugins also work well. I'm going to LastPass more and more to retrieve other information besides passwords (e.g., payment cards, etc.)., It's difficult to cite a downside, as my experience has been positive. I suppose having to reinstall browser plugins after each upgrade is annoying, but not enough to dissuade me from using LastPass., I use LastPass more for personal than business. If it were available as a business application at my company, I think I'd put it to good use, as we have several logins we utilize...many of which require unique passwords., 10.0\n351, lastpass, Ralph T, Mid-Market, 2022-11-15, I've used LastPass for nearly a decade, and discovered people in our company's IT department use it., It's easy to create custom passwords and complete login information once I return to the site. I feel safe using LastPass for all my personal information., I really can't think of anything I dislike about LastPass., LastPass allows me to store all my usernames and passwords safely. I also store banking information, such as routing numbers and account numbers, in LastPass., 10.0\n352, lastpass, Sharon J, Small-Business, 2022-05-18, Easy to use password manager, LastPass is easy to use with a Chrome ad with a Chrome add-on that automatically prompts you to save any new site password you use once installed. You can also save multiple passwords/logins for the same site if you manage multiple profiles for your business., There isn't really anything I don't like about this program. The only suggestion I would have is that there is allowed to be one additional 'super admin'. You can have as many admins as you want in teams, but only one 'super', but sometimes the 'super' may not be available so being able to have one other would be handy., The best part about LastPass is that you can have different passwords for every login without the worry of having to remember them all. This has been great for staff who commonly use the same password for everything. It has increased our overall cyber security., 10.0\n353, lastpass, Cristian L, Small-Business, 2022-09-30, Best Way to handle passwords and share with co workers, Our company handles multiple passwords for different websites and apps, Last pass is the best way to manage all passwords, share the with co-workers and update the password for all teammates without having to send a message to all of them., Sometimes it does not recognize the user entry field in some of the websites I use, and with the latest update. Also, I have been unable to figure out how to make it so that it won't keep on trying to save addresses that I use., Being able to share passwords for multiple websites without having to send internal messages to other members or expose your passwords online or in chats. Most definitively the safest way to share a password., 10.0\n354, lastpass, George L, Mid-Market, 2022-10-11, Trusted password keeper, The initial setup is very easy. Once it's setup it's easy to use., My only dislike is that setting up a shared folder is not intuitive, of where to set it up. Once it's setup it's a solid tool., The biggest problem that was solved was sharing passwords. New hires have instant access to what the need access to, and updating passwords after someone leaves the company is simple and instantly shared with the people that need it., 9.0\n355, lastpass, Ami N, Small-Business, 2022-11-15, Last Pass Helps Me Save Time, I appreciate that Last Pass helps me keep my passwords and accounts organized. As a small business owner, I am constantly logging into various sites and services. Last Pass saves me time. I don't have to look up passwords or keep a sheet updated., Keeping track of my Last Pass account password can be a challenge. I appreciate the service., Last Pass helps me keep track of my passwords. It saves me time and frustration. I don't have to constantly reset passwords because I've forgotten whatever the latest most recent password is - Last Pass has me covered!, 10.0\n356, lastpass, Lindsey A, Small-Business, 2022-11-11, The easiest and most secure way to share, We have over 30 employees and 25 online tools and software platforms, and this is the best way to save those links and passwords., I would love a way for there to be a better way to save the login links., We have a large and growing team, with a few shared logins, and it's easy to onboard new staff with LastPass., 10.0\n357, lastpass, Ruth L, Small-Business, 2022-12-08, Excellent tool to keep log ins safe and accessible to all team members, I like that I can share credentials with my team in a secure environment, without compromising the safety of our systems., The computer app does not communicate too well with all my web browsers., Sharing credentials and sensisitive information with my team quickly, including any possible updates., 10.0\n358, lastpass, Michael S, Small-Business, 2022-11-08, Manage all your accounts securely and with ease, The peace of mind of having secure passwords for my accounts, While most of the time autofill works there are occasions when I have to do a look up separately to find my account details, I used to use a simple password and variations on a theme, but I know that is not safe, so now I know I am safe, 10.0\n359, lastpass, George K, Mid-Market, 2022-11-15, Great way to tackle all my passwords and bring sanity to this troubled part of my mind, LastPass is a recommend to all of my employee partners to help them safely keep their password. Death to the excell sheet with passwords!, Know how weak and pathetic your current password are can be a bit of a bummer., We change pw's every 90 days, with last pass we don't have to keep resetting forgotten passwords., 9.0\n360, lastpass, Verified User (Anonymous), Small-Business, 2022-09-06, Seamless team integration to keep passwords and other coroporate accounts safe, LastPass helps our team keep our passwords safe by using highly secure passwords for shared accounts. In the past, our shared passwords were saved in a Word doc or on post-it notes throughout the office. Now we have top-notch passwords and it is a breeze to update them. We can also provide access to accounts to interns and non-staff members without sharing with them the underlying password. This is great from a security standpoint., I wish LastPass were adopted across our entire organization so it would be easier to share account log-ins across teams. Another password that is used across groups currently uses a much less secure password that is not frequently updated., LastPass is allowing us to work collaboratively without compromising the security of our shared corporate accounts., 9.0\n361, lastpass, W H, Mid-Market, 2022-06-28, LastPass - great password manager for companies, Lastpass keeps all your passwords available, with strong protections for them. Companies can manage and share passwords securely using multifactor and other methods. It also integrates with the personal version without giving the company access to the personal passwords., You have to install the extension into browsers to use it, but this is true of all password managers. Some users don't understand how password managers can be secure, so there is a training/awareness curve., Keeping track of multiple unique passwords in an IT environment can be a pain. Without a password manager, there is a strong temptation to reuse passwords, or to use some scheme that is too-easily guessable. LastPass gives a solution to this., 10.0\n362, lastpass, Saray L, Small-Business, 2022-05-10, excellent for people with many accounts, I only need to remember only one pastword and I have 5 email's, three work and 2 personal. With multiple accounts on different platforms associated with them., I hope it will work with all mobile applications, sometimes I have to copy and paste the data manually, on computers the desktop application should be able to run in the second Flat to avoid taking up space on the home bar., I bought a license for my company and it is extremely useful, as it allows my employees to avoid having their passwords written down on paper, due to the large number of passwords, it improves the Security and allows you to share passwords with them in a secure way., 10.0\n363, lastpass, Hami A, Small-Business, 2022-08-02, This has been such a great tool for our business, We love that LastPass syncs across devices. It's great that I can log into things on my phone when I'm on the go. The access controls are also great for when we bring on new clients. We are able to share the passwords to employees without sending them via email or Slack. There's also an option to give access without letting the person see the password., We started with the family plan because the team was smaller and didn't warrant the price for a higher level plan. Once someone was locked out and didn't have the app on their phone. Since we were on the family plan, not business, they were permanently locked out. They had to rebuild all their passwords that had been saved., LP is a secure way to share passwords among a team without compromising the password. It's been great for our team!, 10.0\n364, lastpass, Verified User (Anonymous), Small-Business, 2022-11-15, One of my best business decisions, It saves all of my passwords and allows me to work effectively and removes the burden on my mind to remember all my passwords. It also allows me to easily access them on different platforms without remembering if I changed them. It also gives me peace of mind because if something happens to me, someone will be able to access my important accounts., Nothing that I can think of. It is a very well built product., It allows me to securely give passwords to my virtual assistant and also updates them in real time, 10.0\n365, lastpass, Deborah O, Small-Business, 2022-11-15, Last pass is a life saver, It integrates very well with my phone and my work and home pcs., I do not dislike anything. It does everything I need, I have many many passwords for work and professional. I do not have to keep an insecure note that f all my passwords. I have access to my passwords where ever I am, 10.0\n366, lastpass, Kas S, Small-Business, 2022-11-08, Secure, easy to use, Lastpass is a solid, easy to use and secure password management system. Being able to generate secure passwords and save them in one place is extremely handy., The security checklist feature of automatically changing at-risk passwords doesn't really work terribly well., Keeping my passwords safe and making it easy to generate new, secure passwords to avoid duplication of passwords., 10.0\n367, lastpass, Sean L, Small-Business, 2022-05-06, Only password manager used for the business, I personally use a few password managers but for work purposes, this is the ONLY one we use. What I like most is that passwords can be sent to people without giving them the info in plain text. Sharing the password doesn't actually give them the password but it'll plug it in for them. There is an app for your phone, there's a Chrome", "doc_id": "828cfc79-9333-4469-97f0-47881b010441", "embedding": null, "doc_hash": "2ee630cc5c69486f729c0c09cf57f971938cf239ce1e65b3d8112e2d21f2e70d", "extra_info": null, "node_info": {"start": 219236, "end": 234932}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "ed6f6673-ba65-456c-b4ac-e8bccf1c63a0", "3": "2f8b085b-f346-408b-b1da-b83aa484760c"}, "__type__": "1"}, "2f8b085b-f346-408b-b1da-b83aa484760c": {"text": "Secure, easy to use, Lastpass is a solid, easy to use and secure password management system. Being able to generate secure passwords and save them in one place is extremely handy., The security checklist feature of automatically changing at-risk passwords doesn't really work terribly well., Keeping my passwords safe and making it easy to generate new, secure passwords to avoid duplication of passwords., 10.0\n367, lastpass, Sean L, Small-Business, 2022-05-06, Only password manager used for the business, I personally use a few password managers but for work purposes, this is the ONLY one we use. What I like most is that passwords can be sent to people without giving them the info in plain text. Sharing the password doesn't actually give them the password but it'll plug it in for them. There is an app for your phone, there's a Chrome extension. It's super easy to use and fast. Above all it's SECURE which is what we're all after right? , The thing I like least and I have no clue how to get around this, is the password sharing function can be bypassed quite easily. It's a good feature which is why I mentioned it in what I like best, but alas, it can be tricked. If you share a password and enter it in (pretty much on any device) the browser or app is going to ask if you'd like to save it, which then makes it available on any device signed in with that info. For example on an iOS device, I can go to settings and passwords and it'll show me the plain text for that password. , What I do appreciate is that it's a time saver. It is secure and we're able to share passwords when needed without sending it by text, email, or Slack etc. If osmeone leaves the company we have passwords available to get into the machine they use and the accounts that belong to the company. , 10.0\n368, lastpass, Magnus O, Small-Business, 2022-11-08, High security at a reasonable cost, Having all passwords in one place is easy. Also of a separate from Big Tech (Google, Microsoft etc.) feels good when switching platforms., Not much. Long difficult passwords are not fun trying to remember. Now you only need one though., I can have all my secure passwords with me at the touch of a button. Secre and mobile., 9.0\n369, lastpass, V I J E T A K, Mid-Market, 2022-11-17, Best Password Management- No need to remember different password now, Easy to use,\nIt secures my all password\nOption to save multiple credentials for one tool\nOption for shared folder and acess, sometimes logged out in to use autofill., Now, I don't need to remember multiple passwords. In my organisation, i have multiple tool to use and it's difficult to remember all the passwords., 10.0\n370, lastpass, Verified User (Anonymous), Small-Business, 2022-07-20, LastPass has really simplified password management., As a business user, LastPass has allowed us to monitor and enforce better password hygiene across our company. Prior to implementing LastPass, the majority of our users utilize the same password everywhere., Some of the business management tools appear to be lacking in regards to sharing entries with others. You cannot share with a group and a specific user if that user is also in the group. The user-specific shared items will only take effect as opposed to allowing all shared entries from both the group and the user. The other issue is that you can't look at a single entry and determine which user or group it has been shared with. You have to edit the settings on all users and groups to see if that specific entry was shared or not. This makes managing a little more difficult at times., Even though LastPass is making it simpler for users because they now only need to remember the master password, we still have a lot of users that forget their master password and require IT to reset it for them. But now that LastPass offers the passwordless option, the forgot password requests are no longer an issue., 10.0\n371, lastpass, Michael C, Small-Business, 2022-11-15, LastPass is a great tool, It's easy to use and has extensions for all major browsers for a more seamless experience., Overall, there is not much I dislike, sometimes the autofill feature will not work, but that is rare., I have many passwords and it helps me keep track of them and audit them to make them more secure., 10.0\n372, lastpass, Verified User (Anonymous), Small-Business, 2022-11-18, Would be impossible to manage all my unique passwords without it, I like how easy it is to select the correct login and have the password default to sites I access using multiple user IDs., Some fields in some of the browser-based applications I use will have the LastPass icon link when they shouldn't. This can cause problems when using these applications., I access many sites throughout the day with unique user IDs and passwords and LastPass allows me to work more quickly and efficiently as I am not scrambling and searching for user ID and password to the varying sites., 10.0\n373, lastpass, Rachel P, Small-Business, 2022-11-07, Been using LastPass for a few years now. Its easy to use & reliable., When I added people to my team, I was easily able to change to team shared folders. Huge time saver to quickly share vital information with the team., the interface changes between the vault & the admin console are dramatic & kinda confusing., secure electronic storage of multiple passwords & payment cards in a single accessible location, 9.0\n374, lastpass, Ken L, Small-Business, 2022-09-07, Great piece of software, It overlays over mobile apps as well as websites and it automatically detects when it will be needed, Some websites have a \"see password\" link that overlays over the lastpass button. This makes it impossible to get the password automatically. The workaround is to go into lastpass and copy the password and then go back to the website and paste it in, it ensures that we can share sensitive data like passwords with staff in a secure way and we can revoke that access when they leave, 10.0\n375, lastpass, Taylor P, Mid-Market, 2016-05-18, Good portability, security is somewhat questionable., Portability - since it is a browser extension, you can have it on all your different computers and it syncs through 'the cloud.' It's very easy to use, and the syncing is built in - you don't have to do anything to use it. There is a free version which is nice., The cloud portion of it has some interesting security implications because it is cloud based, and extension based (https://www.seancassidy.me/lostpass.html)., One of the rather large IT problems in businesses these days is the number of login credentials people have to remember - apart from corporate resources (ldap/ad, email, etc) there are also personal credentials (email, facebook, etc). Having to remember a high number of logins often leads to lazy passwords - using the same ones for multiple sites, not enough complexity, so on and so forth. LastPass solves this because you only need to remember one password - the one to unlock LastPass. Everything else is automatically saved and entered for you. This means you can have really complex passwords without it affecting user experience., 5.0\n376, lastpass, Verified User (Anonymous), Enterprise, 2016-07-05, Saves multiple passwords in one place. , I liked how passwords could easily be saved in one place and that this software integrated my passwords for several different systems. At one time we had nearly 12 systems with separate passwords, so having a place to store all of them was important. , When I first starting using this software it had many glitches including erasing several passwords that had been saved on my computer. This was frustrating for me as the software was supposed to streamline my passwords, not make it worse. , Shortly after using LastPass, we switched to a few other single sign on systems and this eliminated the need for multiple passwords. This mean that Last Pass wasn't as effective as a solution for us and we needed it to be. , 4.0\n377, lastpass, Valentina R, Mid-Market, 2016-04-03, Searching for a better password manager, - The web interface\n- The feeling of security (they use the same encryption standard of the US government)\n- The multi-browser extensions to easy access to your passwords \n- The installation and import procedures: in a few minutes you can install the software, import each key you have already saved into the Apple keychain, google account or other key manager applications. A dream!!, - The mobile app is paid, so I have to use the web-application when I want to access my passwords from smartphone\n, I want to change my password management system because the browser extensions are paid and I want a more flexible solution, 10.0\n378, lastpass, Verified User (Anonymous), Small-Business, 2016-11-10, Lastpass or PASS?, I like that it keep everything in one place and your sites are categorized. Also when the last time you used a site is nice!, It does not update your passwords when you change them. It will keep you last one saved. Not good., Keeping all our passwords safe and accessible to whoever may need it comes in very handy., 6.0\n379, lastpass, Verified User (Anonymous), Mid-Market, 2016-12-16, Helpful but confusing, I like that my info is secure! I like that it creates passwords for me., I dislike when it isn't compatible with some of my programs., I am solving keeping our data secure. I am a content marketing specialist., 10.0\n380, lastpass, Verified User (Anonymous), Small-Business, 2016-05-03, Makes password management easy, sharable and works so well you barely know it is there., Access from anywhere to the host of sites, services, client credentials, etc. with a single password to remember and an easy interface to interact with. , The only thing that happens here and there is when I have multiple logins for similar sites and am trying to create a new login my LP sometimes hijacks what I want to do. The fix is easy. I just shut it down for that piece and fire it up when I am done., The ability to share a vast number of password, card numbers and secure notes is vital to what we do. Updates happen immediately and you don't have to be sure you update all over and everyone has access to that update and usually without knowing it. Siloing certain passwords for contractors or employees is great as well. It eliminates unneeded communication. When we have not integrated a contractor into LP I can definitely tell a difference in the project flow. , 10.0\n381, lastpass, Stanislav B, Mid-Market, 2016-05-02, It's good but you should consider weaknesses, LastPass has really great integrations with browsers and easy of use. It supports categories, folders and so on. In other words you can organise your passwords for sites as you want. My primary use was to keep passwords for several vendors organised. It really easy to save or choose password from list when required. So, after couple months of use I decided do not continue use of it and really happy about it., One of the features which lastpass stand out against other password tools is passwords sharing. That should be a great feature but this become one of weaknesses. From what I learned couple years ago: until only you have access to password vault - it pretty good encrypted. But when you share all or some passwords with other person - they should become encrypted with other key in order that person can access it. And this when your vault become not so strong protected. This is something what you should evaluate before use it.\nAnother thing which you should understand - all passwords saved under one master password, if you lost or forget it - you lose. , When you work for several clients you have a bunch of passwords for many services. LasPass helps organise all this mess for you and make available on all your devices. This is very handy but you should understand what is the cost for this comfort and decide use it or not. , 5.0\n382, lastpass, Chelsea R, Mid-Market, 2016-04-04, Such a time saver!, LastPast is a massive time saver. I'm a fan. The tool allows you to categorize your logins, set specific folders as shared, and invite team members to access folders you think they should have access to. I also like that the tool makes suggestions based on the qualify of the password you selected. , I wish last pass gave you some type of reminder when you have multiple logins for the same website. Right now, it just lets you save multiple at a time. , Sharing logins and passwords for websites that I need to share with multiple people on my team. , 9.0\n383, lastpass, Avni P, Mid-Market, 2016-04-11, LastPass is one of my Favorite password management tools, It's a free password manager and easy to create an account. You can sign into the extension or app and immediately begin to start saving and autofilling passwords for every website. It simplifies your life and gives you secure access from your computer to mobile devices. You just really need to remember the master password and your set!\n\n\nReview collected by and hosted on G2.com.What do you dislike?Default settings for password generator could be more secure., Default settings for password generator could be more secure., I want to simplify all my passwords and make sure the info is secure. It's hard to remember so many passwords and with this tool, it gives you 1 click access. Easy to use and integrates well to your browser., 10.0\n384, lastpass, Taylor P, Mid-Market, 2016-04-08, I don't have to think about passwords anymore., Autofill/autologin, most pages (it doesn't always work) I don't even have to hit enter to login. I also like the form fill, especially the fact that it is easy to trigger, but doesn't trigger itself., Sometimes the autofill is too aggressive. I've had it try to log in to similar sites, and fill in the password on change password dialogs., This allows me to easily have secure passwords. The fact that it not only makes secure passwords as easy as bad ones, but easier, relieves security concerns while making the process easier., 9.0\n385, lastpass, Alicia A, Mid-Market, 2016-04-08, Great password creation, storage and security tool, I love not having to remember passwords, with the Google add on feature I can auto fill login information. I also enjoy having the Google authentication option so that I know my passwords are secure and protected., Someones the auto fill of passwords can auto fill the wrong fields., I use for both work and personal and it helps me to ensure the security of my passwords., 10.0\n386, lastpass, Andr\u00e9 M, Small-Business, 2016-02-10, As they say: a simple password solution, It is solving a problem that everyone has experience at least once. I use it mainly with chrome and after signing-in to the extension I have all saved passwords available to login wherever I need. Can't get easier than that.\n\nI also like the way they (claim to) handle encryption: everything is encrypted in their servers and all the encryption/decryption is handled locally on your device/app/extension. That's a nice step towards security., The only problem I have is concerning the concept behind the password management solutions: it feels weird putting all the eggs in the same basket. If the solution is ever compromised, my passwords would be as well. You also need to believe that they are actually encrypting everything server-side. Many companies claimed that before but in the end they just had some plain-text passwords on their DBs. , Everyday life, managing all passwords for an uncountable number of websites that you need an account to., 9.0\n387, lastpass, Verified User (Anonymous), Small-Business, 2016-04-25, Quick and Easy Password management with tons of features., I like how the integration between all your devices is fast and easy. They have an extension you can add to chrome that makes it very convenient to set and create new passwords, as well as look them up. It also let me", "doc_id": "2f8b085b-f346-408b-b1da-b83aa484760c", "embedding": null, "doc_hash": "2eb8b1ff6860cef8d1549ef7d54811e9b112b7e6b49ec7f5f1e8fc756390dad3", "extra_info": null, "node_info": {"start": 234843, "end": 250734}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "828cfc79-9333-4469-97f0-47881b010441", "3": "5c528974-37db-4c09-b30c-8523c5211525"}, "__type__": "1"}, "5c528974-37db-4c09-b30c-8523c5211525": {"text": "concerning the concept behind the password management solutions: it feels weird putting all the eggs in the same basket. If the solution is ever compromised, my passwords would be as well. You also need to believe that they are actually encrypting everything server-side. Many companies claimed that before but in the end they just had some plain-text passwords on their DBs. , Everyday life, managing all passwords for an uncountable number of websites that you need an account to., 9.0\n387, lastpass, Verified User (Anonymous), Small-Business, 2016-04-25, Quick and Easy Password management with tons of features., I like how the integration between all your devices is fast and easy. They have an extension you can add to chrome that makes it very convenient to set and create new passwords, as well as look them up. It also let me import all my passwords from my last password manager which was a great plus., There is very little to dislike about this software, it would be nice if the iphone app let you log in initially with your thumbprint. You can do so to unlock the app after you've logged in initially so at least there's that., After investigating free password management solutions I settled with Lastpass for its ease of use and powerful features. This lets me quickly sync my business passwords across devices keeping me secure and actually making my log in experience faster since all I have to do is copy and paste. The ability for Lastpass to generate a new password when signing up for a new site and quickly create an entry for it was a time saving benefit that I hadn't expected and saves me a lot of time., 10.0\n388, lastpass, Courtney C, Small-Business, 2016-02-08, I depend on this product daily, I've been using LastPass for 5+ years and am extremely pleased. Keeping passwords in my head is a thing of the past. Using the same passwords on every site is a thing of the past. Silly per-site password variations are a thing of the past. The password vault is here to stay.\n\nLastPass integrates with every desktop browser I use, and it autofills site sign-in forms. Every time I sign up for a new site, I just auto-generate a long, random string and save it to the vault. It couldn't be simpler.\n\nIn recent years, they've added \"security score\" and batch-update features. I've tried them out a time of two and found them to be pretty decent additions.\n\nThere was some recent hubbub about ownership changing hands. From an end-user's perspective, the product has only improved in this timeframe., * The glaring master password \"vulnerability\"\n* Auto-fill gets a little confused from time to time\n* They only provide mobile access to Premium customers (I am one, now)\n* OS-native app doesn't seem as elegant as 1Password, Unique passwords and effortless authentication on the hundreds of sites I visit. Both for work and for pleasure., 9.0\n389, lastpass, Dakota W, Enterprise, 2016-04-11, LastPass Is Good, The website and Google Chrome addon interface are fairly clean and easy to work with. The pop-up functionality works well when intregrated with Google Chrome., If you forget your lastpass password, it is a PAIN to reset. I've had to do this a couple times and it always seems to take hours. \n\n**Make sure you create a good password hint!**, After a recent update to their interface, and after spending the time and effort to learn the interface and features of LastPass, it has become a daily essential in the workplace and at school., 9.0\n390, lastpass, Keely Q, Small-Business, 2016-06-16, Incredibly helpful, I love that I only have to remember one password, as long as I remember to enter my passwords into the system. It's also great for business to be able to share passwords among the organization., The interface feels quite glitchy and isn't always the most user friendly., We manage multiple accounts and are able to use Lastpass to keep login information for all of them easily accessible., 8.0\n391, lastpass, Esteban C, Small-Business, 2016-04-11, Great and really secure, It makes it really easy for you to change computers, makes it safe since you don\u00b4t have to remember a lot of passwords, and this makes it safe, since you don\u00b4t need to have the same password so you wont forget them., The set up of the account it could be friendlier, and there should be a way to make it easier to set up new passwords. It\u00b4s not that it is bad, its just its where I think it could be better., It is easier to have all the passwords saved, its easier, more efficient, and now that most companies work online (we do), with more than one log in required, it makes it easier, and makes the whole office more efficent, and no one wastes times trying to remember passwords., 10.0\n392, lastpass, Verified User (Anonymous), Enterprise, 2016-04-11, Works well, but has interface issues, LastPass Enterprise is very reliable. I've never seen it have an outage of the 3 years I've been using it. \n\nIts easy to create new entries and search for existing ones. When it works, the automatic login upon one-click in LastPass is awesome.\n\nBeing able to login from anywhere and access passwords., The interface is going through a tablet crisis. With the introduction of LastPass 4, the GUI was made specifically for touch devices, which as a sysadmin who doesn't operate on any touch devices, it makes the interface too bloated. Luckily you can switch back to the LastPass 3 interface.\n\nSome of the features are too hidden, such as editing and creating enterprise groups. \n\nThere doesn't seem to be a checkbox for removing the \"Would you like to save this password\" box when logging into somewhere it doesn't recognize. This can be annoying., Shared passwords amongst an engineering team. \n\nNot having to maintain some sort of encrypted password file locally or on shared storage., 8.0\n393, lastpass, Dan C, Small-Business, 2016-04-05, A great single location to manage the passwords for your various sites, I like the simplicity of the user experience and the integration with Chrome. Every time I create an account for a new website LastPass is there to help with my new password and save the link to the site. I also like that it tells me if I am using the same password for multiple sites. Finally, I like to auto login feature. Most site I visit I don't have to do anything to log in., There is really nothing I don't like about this solution., The main problem I had was a single password for everyone one of my secure sites. Now I have a super strong password that is unique to each site., 9.0\n394, lastpass, Paul B, Small-Business, 2016-04-10, The best and most complete password management solution, Using your browser's built in password management is OK. Maybe it will even sync passwords between your computer and your phone. But if you want to use multiple browsers, or log into standalone apps and games, or jut get away from using similar passwords everywhere, it starts to break down.\n\nNot only does LastPass auto fills passwords on any site, in any browser, on desktop or mobile, but it will. ALSO will save and input passwords into mobile AND desktop apps. Finally, it will automatically change passwords on many sites to totally secure random ones for you if you ask, and will generate them for you whenever you need to make a new account.\n\nIt ALSO saves form data like your name and address, lets you store notes securely, and can even save credit card information and fill it in when you check out on stores.\n\nFinally, no one at LastPass can decrypt your data. That does mean you have to definitely remember your LastPass password. But that's the only one, and you can make that a nice, big, super secure one., It does 2FA, but one thing LastPass is missing that I liked in another system (SympleId) was unlocking via an NFC tag. With SympleId, whenever you wanted to unlock the client on your PC, it would prompt you to use your phone scan an NFC tag you might carry on your keychain, in a wallet, or in a bracelet.\n\nIt was a neat feature., Without something like this, it's way to easy for everyone to just use the same password everywhere. If some random external system gets compromised, an attacker could end up with the full keys to all the corporate data.\n\nIf you're lucky users might have a few strong passwords for things they really thing are important, but LastPass makes it really easy to have totally unique, crystallographic secure passwords for every little random site on the internet,, 10.0\n395, lastpass, Francis P, Small-Business, 2016-04-10, A great password manager but interface could be better, I have the premium edition which allows mobile access as well. One of the best features is the synchronising across devices, the sharing of passwords to other LivePass users. But I think most of all is the fine-grained security you can get on how you access your passwords. Locking down access by country, 2-factor-auth etc.\n\nOne great feature is that if a companies systems are hacked and it was publicised you are alerted to change your password for that particular site. Also they have other tools to check your password strengths and if your using the same password on multiple sites., They have recently released a new UI for LastPass. It is a great improvement on the previous one but still find myself doing too many steps to actually getting access to my passwords. Filtering per site is good but not when you have 100 usernames and passwords for the same site (which I get with Salesforce.com as I lots of customers using the same domain). I would love them to implement a \"recently used\" tab across the UI so that (eg) when you change your password you don't get all 100 passwords appearing and then having to scroll all the way through! I just logged in and changed my password! Put it at the top of the list!\n\nPasswords are stored \"in the cloud\" but encrypted using your master password. So theoretically quite secure but some could argue this is less secure than having the passwords stored locally., Having stronger passwords and allowing those passwords to be shared across the organisation in a secure way if needed., 8.0\n396, lastpass, Jonathan H, Mid-Market, 2016-06-01, LastPass is so organized!, All your passwords and logins are kept in one place! No more forgetting or using tons of post it notes. Come on, you know you've done it!, Sometimes can be a bit buggy. Signs me out for no reason, a lot. , We're able to allow multiple users to have access to our social accounts without actually giving them this sensitive information., 10.0\n397, lastpass, Vincent L, Small-Business, 2016-04-08, Great Product, My Favorite Password Manager, It's free, and it works fairly well for the most part! The one issue I'm having is with LP detecting password changes and updating the password sometimes. It will detect the password change and I would confirm the password change but won't actually get updated. You'll have to manually go into your Vault to update it individually.\n\nI used to use KeyPass but it's much more convenient being able to access all your passwords across multiple devices including work/home computer and mobile devices. You can't do this with KeyPass as it's stored locally. You may have concerns about security but this is LastPass's business so you can expect them to take security very seriously and I'd bet it's one of their top priorities when running their business., Using LastPass on a mobile device isn't that easy even with the paid version. The last time I had the paid version (around January 2015), you had to use LastPass's browser in order to access your passwords. This may have changed now, I'm not sure.\n\nThere was a point in time about 6 months ago when it was near impossible to access your passwords on a mobile device but this has changed over the last few months (you can now access via lastpass.com/mobile)., Password managers are essential today, especially at work where I have literally hundreds of passwords to keep track of. , 9.0\n398, lastpass, Verified User (Anonymous), Enterprise, 2016-04-08, Very handy solution for password management, On the norm, I usually use Chrome's built in password management. However, the LastPass extension has helped me share and delegate website access to colleagues without ever having to message, write, or email any passwords. In fact, sometimes I don't even know what the passwords are, as LastPass can randomly generate credentials and save them. It's a handy tool to keep in your web browser and it does not cost anything, so there's nothing to lose!, I understand the capability is there and it's a work in progress, but the iPhone app/web browser capability seems like it's still a work in progress and it is not 100% streamlined. If this process is explained a little easier and made more user friendly, I believe it will be a great asset., Tons of server management across various environments. Things get messy when you are required to have unique dev, test, and production accounts!, 9.0\n399, lastpass, Evan S, Mid-Market, 2016-04-07, Best all around password management tool, One of the things I like best about LastPass is it two factor authentication ability with Google Authenticator. It provides great ease of use while also keeping all your private information even safer!, Compared to other password management tools, LastPass seems to have one of the more inferior UIs. However, I will say over the past couple years they have made great strides to improve this UI experience., Since the basic version of LastPass is free I use this for all of my personal password management needs. However, I would also recommend LastPass to anyone who is looking for more power password management tools. For a small monthly fee, you get access to a ton of awesome features (including their mobile app)., 10.0\n400, lastpass, Jennifer M, Mid-Market, 2016-04-11, Easy to use, I like that you can store your passwords as well as generate new passwords. \nYou can adjust the password length and it also allows you to choose the types of characters, like upper and lowercase as well as numbers and special characters. I use it on the app and it copies the password into your clipboard so you can copy and paste it into the profile that you have created for a webpage.\nYou can also store notes, to save things like your drivers license number and memberships IDs. \nI like that you can grant permissions to your vault in case of emergency\n, There doesn't appear to be a backup feature unless you upgrade to the premium version. , In an industry that requires you to have you change your password often, this helps keep up with the need to generate passwords, but also the storage so you don't forget. When you have to change your password every 21 days and you cant use one you have before, this helps tremendously , 6.0\n401, lastpass, Daniel J, Enterprise, 2016-04-11, Great Alternative Password Manager, While I don't use LastPass for my personal password management, I have an enterprise LastPass account for work and use it to share system passwords between team members. i like the flexibility that LastPass offers in their product, ranging from a good, free password manager for those just getting started or who aren't looking for the top of the line or to pay a premium, but they also offer all the way up to a robust, enterprise-level product. LastPass is relatively easy to use and is a great way to get started in password management., While I don't love LastPass' interface and design as much as other password managers, it works and serves its purpose. While they have a lot of settings and options which can be nice for power users, I think it can be a little more overwhelming and less user-friendly for many of the friends and family members I would recommend a product like this to. And while their web-based interface is convenient, I don't know if I trust it as much as others, but that may just be me. , LastPass has simplified sharing system passwords amongst my team at work. We are all able to access the sites and systems we need to, but the passwords are managed by those who own them. It greatly simplifies this process and", "doc_id": "5c528974-37db-4c09-b30c-8523c5211525", "embedding": null, "doc_hash": "1af3dbd849f30ab3665198d508a97267d18c5f84118394117fb4981ed29768fe", "extra_info": null, "node_info": {"start": 250741, "end": 266840}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "2f8b085b-f346-408b-b1da-b83aa484760c", "3": "b2a1da40-86e5-4e88-8575-7423400509ac"}, "__type__": "1"}, "b2a1da40-86e5-4e88-8575-7423400509ac": {"text": "also offer all the way up to a robust, enterprise-level product. LastPass is relatively easy to use and is a great way to get started in password management., While I don't love LastPass' interface and design as much as other password managers, it works and serves its purpose. While they have a lot of settings and options which can be nice for power users, I think it can be a little more overwhelming and less user-friendly for many of the friends and family members I would recommend a product like this to. And while their web-based interface is convenient, I don't know if I trust it as much as others, but that may just be me. , LastPass has simplified sharing system passwords amongst my team at work. We are all able to access the sites and systems we need to, but the passwords are managed by those who own them. It greatly simplifies this process and keeps our accounts safe. It has solved the unsafe practice we used before of sending login credentials via email, IM, etc., 8.0\n402, lastpass, Brian S, Enterprise, 2016-04-10, I use LastPass for my work and it's pretty good., I love that there is no software to install, and the LastPass program is all web-based. It has nice password management and password generation features. Additionally, I like that I can store secure notes in the software as well., The integration with the mobile devices (like iPhone or iPad) is not as great as some of the other products that I've used (for instance 1Password). LastPass is serviceable on the mobile devices but it's not the greatest experience., Secure passwords for numerous websites without writing them down on sticky notes, or having the same password re-used on multiple websites. Also prevent phishing attacks. Often you will get links to websites in your email, and you'll just blindly click on them. The website that you land on, looks legitimate and you might be tempted to input your username and password. By using LastPass, you won't be allowed to automatically submit your credentials because they won't be in the password manager's list (because the website is a phishing attempt)., 9.0\n403, lastpass, Samuel L, Mid-Market, 2016-04-10, Really Good Password manager but look elsewere for the UI., Lastpass is great to store password and having a centralized search for it. The Chrome extension(I don't really use other browser) is really great for finding password and for generating new one. Since a become a Premium usern i can use the mobile apps and it's such a time saver. Also the support team is really quick to respond whenever we have a question or problem., The main issue i have with Lastpass is storing the non-web user and password. It's not design to work well with RDP or other software like that.\nAlso the sharing fonctionality is not exactly user friendly and lot of our users have duplicate password because of that. \n\nThe UI of the version 4 is really heavy. I would like it to be more of an arborescence. We have lot of complaint about the UI because it's not really easy to view password. It need many click.\n\nIn a lesser note, the Chrome extension doesn't update fast enough when we are sharing password between user., Our goal was to create a way, where our user could have a list of password secure. Not like in a Excel file on their desktop., 6.0\n404, lastpass, Lauren L, Small-Business, 2016-04-10, It's Lastpass for me!, Last Pass has been great for our business. Security is important in our line of work. The most important part of Last Pass is feeling confident in password security. Having my passwords securely backed up has given us nice peace of mind. Some surprise benefits have been the other devices that our passwords now sync with, the ease of use, and the ability to share passwords with remote employees!, Sometimes I have trouble with the auto-fill feature on chrome, but for the most part clicking on the extension and re-typing the password helps to alleviate the problem.\n\nI've also had a few problems with auto-fill and my chrome auto-password settings conflicting. This has been frustrating at times, as it gave me headaches to log-in to commonly used programs. How I solved this, was clicking on the tool icon and manually changing the lastpass password each time this occurred. It's important to keep passwords up to date or else the program will give you more headaches than help. , *Gives me great peace of mind around password organization and security\n*Eliminates the headache of remembering hundreds of passwords\n*Helps us share select passwords with remote workers - even without sharing the password itself., 9.0\n405, lastpass, Madeleine B, Small-Business, 2016-04-09, Lifesaver, I have so many passwords these days I do not know what I would do without lastpass. Yes it's true browsers store your passwords but.... between several home computers, work computers, phones etc - who has time to continuously remember and save passwords to all these different devices & browsers :P... lastpass takes all the worry away. As I just need one password now - my lastpass password. I also love that I can categorize passwords - ie work, home, investment etc., This question is really hard to answer.... I cannot actually think of anything. No, can't think of anything., Efficiency, security. No more passwords in spreadsheets, wikis - in other words non-secure and disparate locations. , 10.0\n406, lastpass, John F, Small-Business, 2016-04-09, Great for personal and business, excellent when combined, I've used LastPass for both personal and business use for several years and it's a great product, particularly when using both. At it's heart it's a good password manager, captures most login forms ok (but not all) and auto-fills ok. Best feature is you can link a business and personal account so when you log in with business you can see both your business and personal accounts and don't have to switch back and forth and still keep passwords separate., Occasionally it doesn't recognize a login form. The workflow for populating credit card details is a little wacky--seems to take more clicks than should, but works. One funny thing is LastPass sends a notice whenever group membership changes, so when an employee is fired, we all know it before HR sends an announcement because we get a notice that says the employee has been removed from LastPass., On business side it's great for shared passwords across the company. Team groups can be created to share passwords within a specific team, and individual passwords can also be shared directly between people. You can also set which team members can read-only passwords in the shared folder vs add/edit/delete/view in shared., 10.0\n407, lastpass, Eliezer G, Small-Business, 2016-04-08, Considero que es el mejor gestor de contrase\u00f1as, Lo que m\u00e1s me gusta de Lastpass es su men\u00fa amigable e intuitivo. La seguridad es elemental en este tipo de servicios, y este sistema cuenta con una integraci\u00f3n muy segura y amigable con el usuario. La opci\u00f3n de verificaci\u00f3n de correo cuando te conectas desde un dispositivo nueva es estupenda, ya que de esta forma sabes que nadie tendr\u00e1 acceso a tu informaci\u00f3n confidencial, respaldado por Lastpass. Lo recomiendo 100%, Que no esta en mi idioma, como hispano hablante es fundamental para mi leer este gestor en espa\u00f1ol, pero lamentablemente no esta es espa\u00f1ol, por lo cual tengo que usar herramientas de terceros para actualizar lo que se muestra en pantalla, y por tal motivo me parece un poco tedioso y molesto., La ventaja que e conseguido con este gestor es la posibilidad de no estar memorizando gran cantidad de datos como contrase\u00f1as, ya que cuento tambi\u00e9n con el servicio que auto genera una contrase\u00f1a segura para mis servicios afiliados., 10.0\n408, lastpass, Paul C, Small-Business, 2016-04-08, Excellent Password Management for Both Business and Personal , The easy to use interface and integration across multiple browsers and devices. For business, I like how easy it makes it to share log-in credentials with specific individuals or groups, without revealing the password, and being able to control access further by geographic location (by IP address) and dual-factor identification. Provisioning and management is simple. , The search-as-you-type function lags and the browser-extension is not always as responsive as I would like. The Chrome extension can be finicky. If you want to add attachments to your secure notes or password records, you need a different version of the extension installed than the default one and it was difficult to get the correct extension to install. \n\nI also wish that it would provide a way to share secure notes with people that are not LastPass users. Currently, I use Cisco ShareFile to share certain information that I do not want to send by e-mail. I would love to be able to share a secure note in Last Pass by using a unique, randomly generated URL that expires after X number of hours. Currently the only way you can share a secure note is by having the recipient become a LastPass user. , Needed a way to share passwords with certain groups and individuals. Also need to temporarily share access to certain on-line systems with contractors/freelancers. Last Pass makes this easy. As a bonus, it also reports on how secure employee password practices are. , 10.0\n409, lastpass, Enmanuel D, Small-Business, 2016-04-08, Easy way to keep your passwords and usernames close and safe, -It's really useful to quickly save and setup your usernames and passwords\n-Friendly User Interface, easy to manage your information.\n-It's great to autofill your usernames and passwords when it's required in some websites\n-No problems with security breaches until now\n-If you change the password in some websites it automatically saves it in LastPass which is great and saves you time.\n-You can access your data from anywhere.\n-It supports multi-factor authentication which is something great., -Sometimes it doesn't auto fill your login fields in the required websites, so you have to verify if your session is active.\n-High memory consumption.\n-Because of the High memory consumption depending on your computer specs your browser (specially chrome) could freze or crash sometimes, it has happen to me a couple of times.\n-It costs a couple bucks if you want it ro work in a mobile phone.\n-Setting up the multi-factor authentication could be a little bit difficult \n-Support quality is no the best., I currently save important users and password from sites I don't visit that often but I eventually have to visit like namecheap, it's really useful because I've always have problems to remember passwords from site of this kind., 9.0\n410, lastpass, Benjamin B, Small-Business, 2016-04-08, An inexpensive, constantly improving and highly cross-platform product, Cheap (Free to start off with, yearly subscriptions are cheap).\n\nVery secure. Been on the market for a long time now and any security breaches have not ended up with user's passwords leaking.\n\nCross platform. Works on practically every platform out there with apps to accompany.\n\nConstantly evolving and updating.\n\nRecent redesign is fantastic.\n\nForm fill profiles for filling in online forms and storing personal information.\n\nResponsive and friendly support. One support person even went so far as to install an Ubuntu virtual machine to look into a bug I thought I found.\n\nVarious methods of 2 factor authentication., Recently purchased by LogMeIn. They're doing a good job since purchase but some people may be critical of the company.\n\nAndroid app can be finicky at times, not detecting password fields correctly or getting sites wrong for example.\n\nReview collected by and hosted on G2.com.Recommendations to others considering the product:If you need a cloud password manager and don't want to pay too much, this is definitely one to look into!, Helps me keep all my passwords random and therefore more secure without sacrificing convenience., 9.0\n411, lastpass, Nathan A, Small-Business, 2016-04-08, LastPass makes security doable., LastPass makes it possible to follow good security advice--namely, having a different password for every account, and changing passwords as needed. Without a solution like LastPass, this would be practically impossible.\n\nSome may worry that using a service like LastPass puts all your security eggs in one basket; and, in a sense, they'd be right. But it's a pretty hard-core basket. LastPass is end-to-end encrypted (meaning they can't access your data, it's decrypted on your machine), requires second-factor authentication via email whenever someone tries to log in from a new device, and allows you to set up other forms of two-factor authentication, as well.\n\nAnd don't fool yourselves--most people are already relying on one point of failure. They use a single or several similar and easy to guess passwords for all their accounts. LastPass makes it possible to use different, randomly-generated, strong passwords for all your accounts. It's definitely a plus for security.\n\nLastPass also makes logging in very easy. Once you're logged in with their browser extension, it'll autofill login forms, making logging in very efficient and protecting you against keyloggers.\n\nLastPass is also great for storing other types of information, such as software licenses, credit card numbers, sensitive notes, private keys, etc.\n\nAny specific note can be set to also require a password reprompt as an added security measure., It's really hard to use LastPass on mobile if you're not a paying customer. Their website is almost impossible to use in a mobile browser., LastPass has allowed me to be more secure while helping me keep better track of all my accounts and waste less time finding, remembering, and entering passwords., 10.0\n412, lastpass, Kyle F, Mid-Market, 2016-04-08, LastPass - The last password you will need to remember, Simple to use interface\nMulti browser compatibility\nMulti platform compatibility\nMobile compatibility \nThe ability to share user accounts with family/friends/coworkers for selected accounts\nThe ability to enter multiple accounts for the same site to choose from\nSecure password generator\nAbility to view stored passwords in your vault\nAuto Fill credit card information for online shopping, Can be somewhat intrusive when it comes to auto form filling with Chrome's built in form filling or if the site you're on has it's own auto form fill LastPass will pop-up over it's list blocking it.\nIsn't very clear when you're not logged in and are on a site trying to log in or save new credentials - gives no actual notification / reminder, just changes color in the toolbar.\n, Being able to share account login information for websites, devices, physical codes for things in a secure environment with authorized co-workers.\nSave time by creating unique but secure passwords for various websites without having to duplicate passwords and always having the ability to view the actual password if needed from the vault., 10.0\n413, lastpass, Matthew F, Small-Business, 2016-07-12, This tool is a godsend, I use this daily, it does all the heavy lifting for me. I never have to remember passwords anymore, if I ever forget them I just need to remember the master password to look it up. , I can't think of anything I dislike, this is one really solid product. , It allows me to stop worrying about what passwords I've used and even lets me generate new ones for new registrations. It's really a time saver. , 10.0\n414, lastpass, Micaela W, Mid-Market, 2016-04-12, Convenient at times, annoying at others, Remembers passwords so I don't have to. Makes", "doc_id": "b2a1da40-86e5-4e88-8575-7423400509ac", "embedding": null, "doc_hash": "a45e882ad1eb504b6f33ccca2e2dd2508b40b54fafc71656540004a3dd239d8e", "extra_info": null, "node_info": {"start": 266833, "end": 282419}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "5c528974-37db-4c09-b30c-8523c5211525", "3": "7e10d436-12eb-4fbb-b3f1-d037e79dcc0a"}, "__type__": "1"}, "7e10d436-12eb-4fbb-b3f1-d037e79dcc0a": {"text": "passwords and always having the ability to view the actual password if needed from the vault., 10.0\n413, lastpass, Matthew F, Small-Business, 2016-07-12, This tool is a godsend, I use this daily, it does all the heavy lifting for me. I never have to remember passwords anymore, if I ever forget them I just need to remember the master password to look it up. , I can't think of anything I dislike, this is one really solid product. , It allows me to stop worrying about what passwords I've used and even lets me generate new ones for new registrations. It's really a time saver. , 10.0\n414, lastpass, Micaela W, Mid-Market, 2016-04-12, Convenient at times, annoying at others, Remembers passwords so I don't have to. Makes single-sign on very easy. Holds passwords for internal tools used across the company without me having to ask around to gather them. Much better than my old paper and pen method of storing passwords. :) , Doesn't sync correctly sometimes. Sometimes I try and log in with the auto-filled passwords and they are wrong (i.e. I have changed my gmail password and it didn't save). Sometimes it saves wrong things as usernames/passwords (i.e. saved my zip code as my username)., This helps us across the organization stay organized. I think our IT team has had alot less requests to reset passwords as we can pull them up at any time. It also has increased security since you can set password requirements (letters, numbers, etc.) Our security manager likes that for sure., 7.0\n415, lastpass, Verified User (Anonymous), Mid-Market, 2017-01-27, LastPass Is A Lifesaver, I dont have to remember anything and can share passwords with other people., When you get locked out. Resetting your master password is hard. Think this feature may have recently been updated., Sharing passwords across our agency in a secure way., 9.0\n416, lastpass, Melissa M, Small-Business, 2016-07-05, Last Pass is quick and easy to use, I like that it easily allows you to compartmentalize and store your logins and passwords for emails and websites as well as credit card and other personal info in a secure way., I don't like the new interface as much as I did the previous one. It's not as intuitive and every time I want to look at information I have to click edit to open up a saved file which is a bit confusing since I don't actually want to edit the info at all., it's a time saver knowing that I don't have to try and remember all of my pertinent info, 10.0\n417, lastpass, Seldon S, Mid-Market, 2016-04-28, I have been using LastPass for 7 months as part of my new job!, It is always working in the background and offers to remember a password even if I forget to save my new password. I can choose to use or not use this app. It gives me ways of categorizing my passwords too: Personal and work., Sometimes I have to change my passwords and I end up with a long list of passwords most of which are outdated. the speed at which LastPass responds to my landing on a website seems to vary from quite fast to much slower., I work for an online tech company and I have many many websites that I demo for customers so I need to remember lots of usernames and passwords. LastPass helps me do my job every day!, 7.0\n418, lastpass, Erik O, Small-Business, 2016-06-15, Good Solution but hard to Recover Password, It's extremely friendly, easy to use and the possibility to share the access of some platforms with coworkers that use Lastpass help a lot. Definitely I recommend the solution for each one that have to access a lot of solutions on line day by day or for everyone that don't think is secure to use the same password for everything. , Well, some few weeks ago I had a big issue with Lastpass. I forgot my main password and couldn't be able to access the platform. I used all the possibilities available to recover my password and didn't work it. I got frustrated and extremely upset but at the same time I saw it's a secure solution.\nThe resolution was to cancel my account and create a new one., I don't need to have a file with dozens of systems I need to use and access everyday, so that's the big benefit for sure., 7.0\n419, lastpass, Michael P, Small-Business, 2016-04-14, Solid Product!, Lastpass has the best freemium tier of any password manager in my opinion.. Love love love the ease of logging in to website with no clicks needed. The redesign on the website is fantastic. Big improvement over the old design. I love the vault, and ease of looking at all of your passwords across the various sites you have online accounts., Went with single payment for 1Password over $12/yr charge. I feel like in some ways 1Password is more polished. Better interface with managing passwords in my opinion., Great way to organize your passwords to save time. Easily have an overview of all the various vendors sites you use as part of your business., 10.0\n420, lastpass, Mike J, Enterprise, 2016-10-27, Last Pass work and personal use, Best way to manage obscure and high volume of passwords. Manage about 50+ passwords for internal company as well as personal use. , Mobile experience requires subscription. The web UI is not so great on a mobile phone. , Productivity and personal data security, 10.0\n421, lastpass, Ben B, Mid-Market, 2016-04-08, Great tool and plenty of features in the free version, It's super easy to share passwords. I have generally saved passwords inside Chrome but since I found lastpass I'm saving passwords there, which makes it really nice when I want to share access to a site with someone else, I can just share via LastPass and my password won't be shown to them., I don't like the pop-up that comes up every single time I log into a site. If I click \"Never\" it won't come up any more but I still don't like it - it's very obtrusive,, wish it was more unobtrusive like the native Chrome password keeper., Sharing passwords is my main problem. It allows me to share access without actually revealing my password., 10.0\n422, lastpass, Nati A, Enterprise, 2016-03-15, Secure and Easy to Use, I like the fact that I can have different types of notes, passwords, credit cards, all together and each with the relevant data. I can mark favorites and the search is pretty good. Not much to say, it is pretty straightforward to use and easy to understand. , There are a few annoyances:\n - There used to be a Mac app, doesn't seem to be available anymore. Too bad, it was useful.\n - When you log in from different computers, you always have to ensure this IP is also yours. Given that I use 4 different computers throughout the day, it gets complicated.\n - I disabled the Chrome plugin as it turned to take over almost anything I entered, and I was not interested in that.\n - Same happened with the Android app. It was terrible, and then, it turned to be premium, even if it was promoted the opposite., It is useful not having to remember dozens of passwords, and being able to check them out and copy paste them. However, I am not interested in the service copying them all without my approval. Sometimes, it gets tiring. , 3.0\n423, lastpass, Zachary S, Small-Business, 2016-02-19, For a UX worth sharing, look elsewhere., LastPass is great at storing passwords and the mobile app is worth the $1/month, if for nothing other than an increased illusion of security. The software is truly helpful in that you really won't have to memorize many passwords again, so there's that. There's also a Chrome extension that is nice to have, although it doesn't really work superbly. Additionally, the Support team is quick to respond, especially to Premium users., Even with the launch of LastPass 4.0, the software is still a flaming pile of UX nightmare. Here are some of the worst things about LastPass:\n\n1. The Chrome extension takes multiple clicks to view. You may think this is a small problem, but having to do it dozens of times on a daily basis is incredibly frustrating.\n\n2. The Chrome extension doesn't work on multiple monitors! I know, I know...you must be thinking, \"that's insane!\" Oh, my friend, how right you are. The extension doesn't fully render the actual widget itself when you select the extension on your secondary (tertiary, etc.) monitor. Fun stuff, that.\n\n3. It's pretty sluggish! The new Vault is not always quick to load, although the design is slightly better than its previous iteration.\n\n4. LastPass will go out of its way to prevent you from having fluid organization of your passwords. It is still frustratingly difficult to move passwords between folders, and sharing passwords is quite possibly the least intuitive process I have seen in a piece of software produced after 2004.\n\n5. Here's the biggest thing -- LastPass doesn't always save your passwords properly! When creating a new password on a site, LastPass will sometimes forget to prompt the \"save\" window, so you can end up with a \"Generated Password for [url]\" instead of what you wanted. This happens enough to where it's commonplace and hinders the entire experience., If you need to store and save passwords, LastPass gives you a way to do that on desktop and mobile. The software has made it easy to remember my passwords without having to keep them in my head or on paper. The value is also pretty solid.\n\nThat being said, it would be worth the additional cost -- especially for a business -- to find another password management solution. There is no reasonable way that LastPass could meet the needs of sharing passwords between multiple users and have it be a fluid, cohesive experience.\n\nUntil LastPass drastically overhauls their product, I wouldn't recommend it to potential customers outside of personal use., 4.0\n424, lastpass, Pedro P, Mid-Market, 2016-03-04, Excellent for IT professionals and end-users alike, I consider LastPass to be the best for cross-platform availability and ease of use. Combined with centralized management for enterprise & business users it's truly a best-in-breed product. With LastPass I have access to every password or critical piece of account information that I may need for work or pleasure on every device that I use. I can make a change on my iPhone and then login using the credentials on my Windows, OSX, or Linux computers. Need a WiFi key the first time on-site for a client? No problem as long as you saved it to LastPass just pull it up in your phone, enter it into the PC and connect. Need a unique secured password for each & every site? No problem, let LastPass generate the password and save it, then use it. I use LastPass premium so I also take advantage of X-Marks and keep all of my book marks in sync between all of my browsers on all different platforms too., Honestly I can't say that there is one single feature that I dislike about the product. It works on everything, everywhere, and it's there when I need it, how could I possibly dislike that?, As a Sr. Systems Engineer I'm the \"goto guy\" for all of our clients. When the information about a password, or security key is not in our shared documentation my entire team know that if they ask me, I can pull it out of my LastPass and provide them with the answers they need. When I need to access a client system and I don't have access to our shared information, LastPass is my savior. I recommend it to our clients and those who have chosen to use it are extremely satisfied and pleased with the recommendation., 10.0\n425, lastpass, Susan F, Small-Business, 2022-06-28, Easy management from all devices and I like the ability to add team members to certain folders, The way it easily updates on all my devices. LastPass has saved me in the forest, on a lake, and on a plane when I needed to get information quickly for a client. The key is the master password. The rest can be as complicated as possible and not saved in my browsers. I'm a lightweight user. I know it can do so much more that I didn't realize until filling out this survey. I'll have to check out those features., I would like the prompts on my phone to save a password when I have to create them on the fly, like it does on my desktop. If it does that and I'm missing it, I need to adjust that setting somewhere., The stress of remembering passwords, the ability to share specific passwords with my team as they need them, and my own family. The Netflix password alone in LastPass has prevented middle-of-the-night panics., 10.0\n426, lastpass, Verified User (Anonymous), Small-Business, 2022-11-08, Last Pass has fulfilled everything I needed in a password manager., Lastpass securely stores all my passwords and I only have to keep up with one password. The mobile app is a definite plus and the functionality is the best I've tested., There are still a few quirks/glitches to be worked out in the mobile app. Occasionally it will say I need to reboot my phone to use Last Pass, but I am able to open the app and it will fill in the passwords. Sometimes it will not., Last pass has eliminated the need to memorize multiple passwords. It has also ensured that all of my accounts are secure as I can now use a different password on every site I use. I also use it to store other important data., 10.0\n427, lastpass, Daniel B, Small-Business, 2022-11-09, Invaluable tool, The ease of use and security features. I find that auto-population of credentials and looking up manually is very simple and saves so much time and keeping my credentials secure is invaluable., There's not really anything I don't like about this application - I use it every single day, LastPass solves my issue of saving my user credentials insecurely....saving on a spreadsheet or notepad is never a good idea. I know where all my credentials are, and I'll never forget passwords again., 10.0\n428, lastpass, Kurt H, Small-Business, 2022-06-21, A Great Solution for Storing Your Passwords, It's such a pain to keep track of all our passwords, especially with many sites requiring periodic password updates. I've tried all sorts of solutions over the years and I really like LastPass. I own a marketing agency and we have to keep track of access to many accounts on behalf of our clients. Our need was so great we created our own solution around 2004. But it was so expensive to maintain I started looking for a new solution and found LastPass. It does everything we need for a minute fraction of what our system was costing me. I use it for both personal and business access. It's super easy to use and I can set up access for my team to get access to the things they need and not the ones they don't. I like that I can easily access LastPass through Chrome too. I definitely recommend it. Very userfriendly too., I really have no complaints after a year of use., LastPass is a perfect solution for my complex needs of access storage and it's saving me a ton of money over the custom solution I had created for this in this in the past., 10.0\n429, lastpass, Taylor B, Small-Business, 2022-06-21, LastPass is my go-to recommendation for Password management, There are two main features that I enjoy about LastPass:\n1: It is cross platform. It doesn't matter if you're using a macbook, android phone, windows computer, chrome book... whatever you use, LastPass will not only work, but sync across all your devices.\n2: local encryption. your passwords aren't stored in plain text like so many other built-in password managers. LastPass takes their infosec seriously and it shows when you start to look at all the features., Their mobile app could", "doc_id": "7e10d436-12eb-4fbb-b3f1-d037e79dcc0a", "embedding": null, "doc_hash": "ec2352f608e51fe806aa0711be97531cc0c48919db7e75ae43595b85e3b231f0", "extra_info": null, "node_info": {"start": 282527, "end": 297958}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "b2a1da40-86e5-4e88-8575-7423400509ac", "3": "b6e78010-4534-43f4-b0a0-16d7f07fd34b"}, "__type__": "1"}, "b6e78010-4534-43f4-b0a0-16d7f07fd34b": {"text": "complaints after a year of use., LastPass is a perfect solution for my complex needs of access storage and it's saving me a ton of money over the custom solution I had created for this in this in the past., 10.0\n429, lastpass, Taylor B, Small-Business, 2022-06-21, LastPass is my go-to recommendation for Password management, There are two main features that I enjoy about LastPass:\n1: It is cross platform. It doesn't matter if you're using a macbook, android phone, windows computer, chrome book... whatever you use, LastPass will not only work, but sync across all your devices.\n2: local encryption. your passwords aren't stored in plain text like so many other built-in password managers. LastPass takes their infosec seriously and it shows when you start to look at all the features., Their mobile app could be a little smoother. Although the developers have worked to make sure that you can set LastPass as the default password manageer, it isn't as seamless as your typical built-in password management solution. This is to be expected, and I believe the tradeoff is more than worth it. Like anything else, though, there is a tradeoff for convenience and security., LastPass has an enterprise plan that I use on a daily basis. This plan is great when you have no option but to have shared credentials. Although it's not best practice to have shared credentials, there are some situations where it's unavoidable. Lastpass allows me to share those credentials with my team in a secure manner.\nThey also have the ability to add a TOTP (time-based one time password) to a given account so that any accounts with Multi-Factor Authentication can still be used by a team instead of having one person constantly getting pinged with notifications.\nOverall, it's an elegant solution for password management in both team and individual settings., 10.0\n430, lastpass, Emily W, Small-Business, 2022-11-08, Last Pass is Great!, Last Past is fantastic! My passwords are safe, secure and so easy to access. Customer service is amazing and the small charge (which is optional) for added premium features is well worth the purchase. I have been a member of Last Pass for many years and will continue on in the future., Personally, I have had no issues with Last Pass., As stated before, I have had no problems with Last Pass. Their products and customer service are exceptional., 10.0\n431, lastpass, Matt C, Small-Business, 2022-10-05, Easy To Use Secure Password Manager, Extremely easy to use password manager that synchronises across all of my devices. It allows me to have robust passwords for all of my websites and even share these passwords with other people without them actually knowing the individual password., There is not really much to dislike about the product. Maybe the pricing, but what is the value of keeping your logins and personal information secure?, I don't have to remember a heap of complex passwords or write them down somewhere. I only need to remember one very strong password that I use to access Lastpass., 9.0\n432, lastpass, Sam Z, Mid-Market, 2022-06-14, Lastpass - Robust Enterprise Password Management, From an IT perspective, Lastpass is great at allowing you to:\n\nRestrict passwords by user type/department\nRotate passwords from API\nAllow auditing user passwords for security\nTracking user engagement and compliance\nSecure shared notes\nSSO Federated Login Integration is simple if you've already integrated SSO into your environment, Lastpass could improve on: \n\nAPI documentation / ease of use - Appears to not be prioritized as much as our System Admin would like\nSame URL Passwords - Vault entries / passwords with the same root/base URL/Domain will often trigger all at once. We host several websites on our private domain with different URL prefixes, causing you to have to navigate through a hard to differentiate list, Lastpass solves our need to have users not save their passwords locally, or keep passwords simple to avoid forgetting them. \n\nLastpass allows our IT department to point users towards a solution for this password woes., 10.0\n433, lastpass, Steve L, Mid-Market, 2022-11-08, Cybersecurity Instructor and Professional Review, Simply the ability relating to password management along with what I'd characterize as managing data relating to life issues (e.g. location of assets, etc.). I have consistently recommended the product to family, friends, students, and colleagues as a quality product that can do much more than manage passwords., Nothing comes to mind. It is simply a product that meets or exceeds my expectations., It provides safety and security when it comes to data storage and data availability., 10.0\n434, lastpass, Verified User (Anonymous), Small-Business, 2022-11-09, LastPass Families Great Value, LastPass does a great job integrating password management across my devices and browsers. The Families option allows my family of 5 to all have the security of a password manager, and share passwords easily with each other. I'm a big fan of the Security Challenge, which gamifies the process of using unique passwords., Some features aren't 100% available across all platforms/interfaces. Attachments are handled differently in mobile vs Windows. Even the Windows app, I sometimes have to go to the web interface to manage all features., LastPass helps me and my family manage unique passwords across many sites, and simplifies the login process through deep integration with my mobile device, desktop, and various browsers., 9.0\n435, lastpass, Verified User (Anonymous), Mid-Market, 2022-11-08, LastPass is simple to use, and an easy way to secure and share critical environmental passwords, It's always available at the top of the browser window. It has several options for generating complex passwords that are easy to read and difficult to crack. These can be shared with a team and searched., As with all tools, LastPass is a single place that houses the keys to the kingdom. If someone gets in, they get everything. But at least it's far more secure than traditional methods of password storage., The former person in my position held all the passwords in an excel spreadsheet. That could have easily been sniffed out by those who did not have a business need for the information. This puts all that information behind a secure lock., 10.0\n436, lastpass, Lori Q, Small-Business, 2022-11-15, Organize the chaos of passwords, Keeps or generates passwords in one place and keeps them secure. They are always available on my devices I use all the time. Ends the excel spreadsheet nightmare, Sometimes it's confusing to navigate. Needs better tutorials and explanations., Endless requirements to change and update passwords. It's now easy to do and keep track of them. I don't know if I'm more productive but it saves time frustration and stress, 10.0\n437, lastpass, Alyson E, Small-Business, 2022-11-15, Love this product. Totally reliable., All my passwords available at the click of a mouse. Never need to remember any. Used as an extension/add on, can be used to autofill all your log-ins online. So easy to access as everything is stored in your vault along with extras like memorable words or pin codes., I genuinely can't think of anything it needs to improve., Can share log-ins and passwords securely. Also monitors possible breaches., 10.0\n438, lastpass, Kellie C, Small-Business, 2022-11-15, Excellent Pwd Locker for all devices, I like that i can use LastPass on all of my devices be it microsoft or apple. I can use it in all browsers as well., I really do not have anything in particular i dislike. I do not have issues with the app at all, Best thing is not having to remember all the different pwds among all my devices. It saves me from writing them down somewhere., 9.0\n439, lastpass, Brent M, Small-Business, 2022-11-16, Long Time User for Personal and Professional Environments, The cross-platform compatibility has been key for me. I use multiple devices with varying OSs and multiple browsers. Without this functionality, a password management platform is useless and LP has done a great job of doing it., Occasionally I have issues when I need to share/access passwords with/from my Family Plan users; it's not clear if it's Operator Error, though, since we eventually get where we need to be anyway., Increasing/improving the security of my clients and users by moving \"password notebooks\" into a secure location that won't get lost in the catastrophic event of a fire or be found by someone who shouldn't have access., 9.0\n440, lastpass, Gregory F, Mid-Market, 2022-11-16, Excellent password vault solution., I like the seamless syncing across devices. The one-click password generator. The prompt to save new / updated passwords, and the proactive warning if an account is compromised., It occasionally stops auto-filling on my Android devices, but I suspect that this is caused by Android updates, and not LastPass., It allows me and my users to employ complex and unique passwords without having to worry about remembering them., 10.0\n441, lastpass, Pavlo S, Small-Business, 2022-10-27, I use LastPass for personal and business needs. Definetly one of the best solution on the market, - Password management options.\n- Team sharing and management.\n- Autofill and autogenerate features.\n- Cybersecurity check and dashboard.\n- Reasonable pricing.\n- Chrome extension., - Mobile app. It's working strangely and is hard to use seamlessly.\n- Master password reset. I had an extremely complicated case with one of my ex-employee's account., - Team password management.\n- Onboarding/offboarding employees with access sharing to different services and recourses.\n- Security management and check-ups.\n- Personal security management, 9.0\n442, lastpass, Verified User (Anonymous), Small-Business, 2022-11-15, I use it for basically everything, It helps the most to create strong passwords and keep track of them easily. I have a bad habbit of using the same password for logins and this way makes it safer and easier., Sometimes when using it on my cellphone it isn't as smooth as I would like for it to be. There are a few websites where lastpass won't automatically fill in, but I blame it more so on the website than LastPass., Not having to remember or keep track of passwords. Updating passwords with LastPass is a breeze as well. It will remember passwords to websites I don't even remember setting up., 9.0\n443, lastpass, Verified User (Anonymous), Mid-Market, 2022-12-06, So useful and makes my day-to-day to much easier4, What I like most about LastPass is its Autofill feature and password generation. It generally always gets the right credential and updates easily when the password gets changed., What I dislike about LastPass is its history of security breaches. I love the product but am not one hundred percent comfortable with having my data stored in their databases., Problems that LastPass solves for me is the ability to come up with incredibly safe passwords on the spot with their password generator and being able to see if any of my current passwords are compromised., 9.0\n444, lastpass, Verified User (Anonymous), Small-Business, 2022-11-15, It works, It crosses platforms so I can utilize it for work and for my personal information. It is secure and I feel better knowing that my information is safe., It can be a little cumbersome using it on my iphone when I need to authenticate both Last Pass to open it and then the app I am trying to use. It can take time which can be annoying when trying to check out of a store but this is my only complaint., I am not familiar with what problem LastPass is working on but I know they update the app frequently to keep it secure., 10.0\n445, lastpass, Amy M, Small-Business, 2022-11-16, Good service, It's extremely useful to have all of your passwords in an encrypted platform like LastPass, so that you can access them wherever you are and that not only saves time but gives you peace of mind., I don't have any dislike of LastPass yet., Having all the passwords that I need for my business in one place and knowing that they are safe and secure., 10.0\n446, lastpass, Verified User (Anonymous), Small-Business, 2022-11-15, Simplifies juggling multiply logins across all my devices, I can use it on my laptop, phone, and tablet and always have access to all my passwords. I like how secure the generated passwords are and how it prompts to save the new login immediately., I don't like how it randomly signs you out sometimes. I understand this is for security reasons, but sometimes I just give up what I was doing because of the inconvenience., It is solving the problem I used to have with always using the same password for everything or writing down new ones in a notebook. I used to have to carry the notebook with me., 10.0\n447, lastpass, John K, Small-Business, 2022-11-15, It seems to work well for my needs., It helps me create safe passwords. It saves them for me and tells me when I have to many repetitive passwords., Sometimes saving the correct IP address creates a problem. And also, sometimes it is hard to find passwords that don't get used very much or older passwords., It keeps a good log of all my passwords and creates new good passwords for me., 10.0\n448, lastpass, Richard O, Small-Business, 2022-11-09, Easy to use, works on all my devices on Android, iOS, and PC, I like the ease of use the best. With over 200(?!!???!!!!) passwords to individual sites, I need a safe, trusted repository, It costs for the best plans, but it is an expense I gladly pay., LastPass solves my primary problem of retaining all the passwords I have as well as encouraging me to use complex, random passwords rather than the ones my brain will remember, 10.0\n449, lastpass, Verified User (Anonymous), Mid-Market, 2022-10-04, Comprehensive credential manager works well for growing businesses, LastPass makes it easy to manage credentials across our remote and distributed team. With good training and rigor (making sure everyone uses it and doesn't share passwords outside of it) we have more confidence in the security of our credentials., I have almost no complaints about LastPass, it's really a great tool. The only thing is that user management has two layers and can be confusing sometimes, like they dropped an application inside another one. But it's workable., LastPass helps us to have more security in the way we share passwords and credentials. It prevents people from sharing in plain text and also prevents them from seeing the credentials if they don't have permission but still need to use them., 10.0\n450, lastpass, Travis O J, Small-Business, 2017-04-13, The best corporate password management system, Simple log in and sharing between team members securely., The user interface has been updated and is better then most but it could use some work., Password management is a pain so most people and companies don't do it. This makes it so most employees end up with simple un-secure passwords. LastPass makes it simple so everyone uses complicated secure passwords., 10.0\n451, lastpass, Kassie S, Small-Business, 2017-01-23, A lifesaver for anyone!, I love LastPass. Since we manage database systems for over 40 clients, the massive number of passwords and logins would be too cumbersome to manage without a tool like LastPass. I recommend it to clients weekly., I have zero dislikes about this tool. It functions easily, it keeps track of passwords, links, notes and sites. I need to implement it on my phone!, This helps our staff and clients manage all the various passwords and sites that nonprofits need. , 10.0\n452, lastpass, Verified User (Anonymous), Small-Business,", "doc_id": "b6e78010-4534-43f4-b0a0-16d7f07fd34b", "embedding": null, "doc_hash": "b78f397be34e8ab10a842ac47212c521758ad39f025d9b104921d5cbddfc8e76", "extra_info": null, "node_info": {"start": 297877, "end": 313536}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "7e10d436-12eb-4fbb-b3f1-d037e79dcc0a", "3": "4212d9df-80e0-4594-abf8-c43b62a507e3"}, "__type__": "1"}, "4212d9df-80e0-4594-abf8-c43b62a507e3": {"text": "do it. This makes it so most employees end up with simple un-secure passwords. LastPass makes it simple so everyone uses complicated secure passwords., 10.0\n451, lastpass, Kassie S, Small-Business, 2017-01-23, A lifesaver for anyone!, I love LastPass. Since we manage database systems for over 40 clients, the massive number of passwords and logins would be too cumbersome to manage without a tool like LastPass. I recommend it to clients weekly., I have zero dislikes about this tool. It functions easily, it keeps track of passwords, links, notes and sites. I need to implement it on my phone!, This helps our staff and clients manage all the various passwords and sites that nonprofits need. , 10.0\n452, lastpass, Verified User (Anonymous), Small-Business, 2017-08-31, Lastpass takes the frustration out of accessing accounts, Lastpass stores my user accounts and password for all sites., The fact that I have to memorize the Lastpass password\n, I save a great deal of time by not having to hunt out my user account names and passwords., 9.0\n453, lastpass, Ankit K, Mid-Market, 2016-10-06, LastPass is the a Life Savior , Forgetting Passwords is among the most irritating habits I have within myself and I always wanted a definite solution for this issue in my life. \nResetting the password is not an easy job for me, because I usually tend to forget my secret questions and linked email addresses. The LastPass is a savior for me. I just don\u2019t remember when was the last time I had to look for my passwords. Moreover the Auto Login facility in Last Pass is mind-blowing; I save a lot of time with not jugging around the login pages of my various accounts .\n, There are few concerns which last pass should take care of , Firstly my bank website do not allow last pass to auto fill the details and had locked my account several times because of the failed attempts to login. Secondly, I tried to disable auto login for particular websites, but that feature is not working for now., Apart from those little flaws, there are more of advantages for using LastPass. Its simplicity is something which makes it unbeatable among its competitors. Moreover it is now available for my mobile devices as well.. \n, 8.0\n454, lastpass, Lynaia F, Mid-Market, 2017-06-05, Great Software, I just recently got into using this software and it has helped. I can upload all my passwords and it updates them as i go. I love the security of it and it makes it nice to keep track of everything.\n, It feels weird to put all passwords into one place but after a while it becomes less terrifying when knowing the security level. , Password management and tracking. , 9.0\n455, lastpass, William M, Small-Business, 2017-01-13, My #1 software find of the past decade, Greatly simplifies password generation, management, and security-related issues; ability to log on from multiple devices; ability to share passwords with other users (even free account users) with very inexpensive Premium membership, Nothing. Some websites are not properly designed for password managers, but that is rare., I manage over 700 personal passwords and have a staff of ten that can share logon and password information easily and securely across multiple devices. They share roughly 200 passwords and LastPass does a great job., 10.0\n456, lastpass, Cassie H, Mid-Market, 2017-01-25, Learning Curve, but useful, I like that it keeps everything organized, I can create different files for different programs i have multiple sign in's and passwords for., It has a bit of a learning curve. The way the passwords display is a bit confusing at first and actually figuring out how to use it. It's very easy to accidentally delete the passcode or change it., It helps us keep things secure. We have a lot of shared logins and multiple employees in different locations. We dont have to keep the information on desk tops or send in an email., 7.0\n457, lastpass, Beau K, Small-Business, 2017-02-17, Pricenis right, but a little rough around the edges., Works on all my devices and syncs between them all pretty seamlessly. I use it on 2 iphones, 2 windows computers and an iPad.., Tries to save passwords over and over again resulting in duplicates and old duplicate entries, Keeping passwords updated across multiple work-stations and devices. Only have to input password data once and it populates across whole office, 8.0\n458, lastpass, Jamieson S, Mid-Market, 2017-01-25, Hard to remeber living without, The ability to automatically generate and save passwords, then use them from other computers. I also like that you can customize the random password generator., Very little, sometimes if it doesn't pick up a form correctly, it is hard to get the username and password, but this is rare., Password security, without needing to reset and remember all of the passwords I use on a daily basis. There is a way to share passwords, we have not tried using that yet, but will be looking into it in the near future., 10.0\n459, lastpass, Verified User (Anonymous), Mid-Market, 2017-06-27, Great product for helping teams manage shared accounts!, Last pass is a great tool to help teams share access to online accounts and other secure information. We have been using it for several years and have it setup for a couple different groups (Digital Marketing, Development, etc.). It really makes getting access to tools easy., It sometimes doesn't update the password when asked (but this seems to be site specific). Likewise some sites are harder to use with it (there interface makes it less usable)., Sharing secure knowledge such as account login info, or FTP and database info., 10.0\n460, lastpass, Verified User (Anonymous), Mid-Market, 2017-07-27, Awesome product, Makes it easy to share passwords. Keeps all passwords confidential , You have to sign out if you don't want passwords to autofill, Keeps passwords confidential and we don't have to change them when we off board someone, 10.0\n461, lastpass, Verified User (Anonymous), Small-Business, 2017-07-26, Amazing password management with a few gripes, Reliable uptime and integration across systems, There are some \"features\" which I would like to disable/change, but can't, LastPass gives us great password management across our 30-person company. There is no password emailing or keeping in spreadsheets., 10.0\n462, lastpass, Keith G, Small-Business, 2017-02-07, And absolute life saver!, I never have to remember passwords or fill in forms., It is delayed sometimes on my Chrome browser; It doesn't consistently distinguish what parameters are required, when it's programmed to auto-fill them., Lastpass has saved me so much precious time! I don't have to type answers to form questions from my phone., 10.0\n463, lastpass, Verified User (Anonymous), Small-Business, 2017-07-22, Easy to Use, Very Handy, and Inexpensive, I'm able to share login information with my employees without them being able to see what the password is., Once you install the plugin, it asks if you'd like to save the login info for every website you log into (which would be fine for personal use, but, when using it for business, there's only a few websites I need saved)., I don't have to change all of my passwords when an intern leaves!, 10.0\n464, lastpass, Asim A, Enterprise, 2016-09-19, A nice to have password management tool, LastPass allows me to store all my username and passwords in a secure place. It automatically gets sync with all OS such as Mac, Windows, or Linux as well as on Android and iOS. It has got an automatic password generator which offers strong passwords in replacement for the weak ones. I can replace them with something which has a combination of uppercase letters, lowercase letters, digits, and special characters. It also provides an emergency access feature to choose one or more person who can inherit your stored username and passwords in case of your demise.\n, If you are using a free account then you will not be able to sync all your devices where ever you have installed Lastpass. Also, if I try to dismiss a reminder from mobile app, it again pops back when I launch it after some time. It seems I can\u2019t turn it off completely.\n, I needed protection from keyloggers as I work from various devices at different locations, where Lastpass came out to be handy. It provides protection from keyloggers by allowing entries to be captured from a virtual on-screen keyboard which can accept my inputs through mouse clicks itself. It also sends an email notification when I change my master password, so none can steal my account information. It has an automatic password changer which can change my passwords after certain fixed days.\n, 8.0\n465, lastpass, Steve V, Small-Business, 2017-07-20, Last Pass you will ever need to remember, The ability to Share passwords for social media, I did not like the complexity as a end user. often times I felt lost., The ability to allow multiple people use log in under one social media account, 8.0\n466, lastpass, Altaf A, Enterprise, 2017-06-29, Not the best password manager but works consistent across all devices, Ability to fill forms using only one click.Secured browsing., User interface is clunky. Mobile app requires authentication every time you switch between apps., Storing business cards, partner profiles and all the passwords in one place., 6.0\n467, lastpass, Verified User (Anonymous), Enterprise, 2017-09-19, Password Sanity, Like everyone, I have so. many. passwords. LastPass keeps track of them all across all my devices. I'm able to use secure passwords and not have to remember them all., Sometimes the browser in the iPhone app is buggy., Increased efficiency and security., 10.0\n468, lastpass, Verified User (Anonymous), Small-Business, 2017-09-19, Awesome product, How easy it is to have access to accounts., Nothing honestly. I feel like everythig works great., Don't have any business problems., 9.0\n469, lastpass, Brittany S, Enterprise, 2017-05-09, LastPass review, I like the vault. Where you click and logged in , Sometimes it remembers the wrong information. , The ability to access my websites that are logged in already so simply. It's fantastic , 10.0\n470, lastpass, Verified User (Anonymous), Mid-Market, 2017-05-18, All of my passwords in one place. , I no longer have to memorize passwords or figure out which password goes with which account. Also, LastPass generates secure passwords. I don't have to try multiple times to make it secure enough for each site's peculiar rules., Sometimes it does not properly record the password when I start a new account., My passwords are much more secure. , 10.0\n471, lastpass, Konrad M, Small-Business, 2016-08-22, LastPass - A easy to use, but sometimes tricky password manager, KeePass is a very good tool to manage your passwords, if you have many devices. Computers, Smartphones, Tablet. There is a Chrome- and Firefox - AddOn and many other mobile Apps (e.g. for android, iOS, ...). U can use it everywhere and the sync capabilities are just working fine. Everything is synced, every information in your password library.\nThe two factor authentication is also working well, it gives you more safeness on your passwords., Sometimes the Browser included apps are quite buggy. Passwords are not being prefilled, the url matching to automatically fill the correct forms is not accurate or even not working, the form to enter new passwords is sometimes a bit strange and tricky to use.\nBasic-Auths in Browsers is also not working in Chrome, which is a important feature missing.\nIn my opinion also missing is a tool to use it on a console, to use that on a server or somewhere. A way to store ssh-keys is also missing, which would be a nice feature., I am registered at a lot online platforms and services. While managing all my server I need a lot passwords. So this is what I use this for and it is working well, but there are some nice features missing., 7.0\n472, lastpass, Verified User (Anonymous), Small-Business, 2017-03-17, Saved My Memory, Last Pass makes it simple. Besides the fact that it is securely managing my passwords, it prompts me to remember to add them to it whenever I log into a new site., There's really nothing not to like. I believe it can't handle Microsoft One Drive login, but other than that it's been perfect., Too many passwords. I don't have to constantly reset to access all the different products I use. , 8.0\n473, lastpass, Jeremiah B, Small-Business, 2017-01-23, Big time-saver! , Easy to use and maintain \nEasy to update\nSaves me a ton of time I'd spend remembering and typing passwords. \n, Not much to dislike, really! Works well, and it's easy to update. It would take forever to remember and type in all those passwords! , When you use what feels like a thousand different sites to do you work, a tool like LastPass is essential. , 10.0\n474, lastpass, Helma K, Small-Business, 2016-10-03, Generally great, but a few scary hiccups, The fact that it's a browser extension makes using save passwords super easy on all web applications. The ability to share passwords with team members is great! And the ability to share access without actually sharing the passwords is awesome., That same fact feels however less \"secure\" than an offline app for passwords., Keep passwords safe and secure. Provide people with temp access to applications without setting them up completely., 7.0\n475, lastpass, Rebekah U, Small-Business, 2022-11-08, Great password management solution, LastPast offers a useful, secure multi device solution., Lastpass doesn't work with all sites and the browser extension occasionally doesn't recognize a given login field. Saving new passwords created on mobile is difficult and unpredictable compared to desktop., LastPast solves the need to have a large number of secure client passwords accessible and ready to use., 10.0\n476, lastpass, Verified User (Anonymous), Enterprise, 2022-11-15, Super easy to use, Easy to use on mobile and stationary web. I never have to remember passwords and can ensure have high security nonrepeatable passwords that are easy to access from different devices., Sometimes when the Google chrome extension on stationary web does not recognize the site it takes multiple clicks to digup password. First you need to open an extension, then find site, then edit it, then copy password., Having secure, none repeatable passwords for different sites that are easy to access from multiple devices and are automatically synced. Generating secure passwords, 9.0\n477, lastpass, Adam H, Small-Business, 2022-11-15, Intuitive and Reliable Password Mgmt, The best part of LastPass is the cross-platform usability and the proactive notifications about old, duplicate, or insecure passwords that may be vulnerable., Occasionally it doesn't auto-fill in some apps or websites, forcing you to make a few extra clicks., LastPass addresses the security issues that are prevalent when reusing insecure passwords., 10.0\n478, lastpass, James S, Enterprise, 2022-11-09, Easy to use, cross platform, and secure., I don't need to use only one of two easy-to-remember passwords for everything, I instead use long and complicated passwords and let LastPass manage my access., I cannot override the use of other browser built-in password managers., Dozens of sites with varying password minimum requirements are easily managed without using a single password for everything., 10.0\n479, lastpass, Verified User (Anonymous), Mid-Market, 2022-10-04, I always recommend LastPass to everyone., The browser plugin that collects my passwords when I use", "doc_id": "4212d9df-80e0-4594-abf8-c43b62a507e3", "embedding": null, "doc_hash": "ca9794c9c728fc4bf2b8d493472e2889d3024529b163829d90a36a0d6a2accf2", "extra_info": null, "node_info": {"start": 313577, "end": 329119}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "b6e78010-4534-43f4-b0a0-16d7f07fd34b", "3": "21b4e3ba-4c17-4463-a490-c4f1d950580e"}, "__type__": "1"}, "21b4e3ba-4c17-4463-a490-c4f1d950580e": {"text": "auto-fill in some apps or websites, forcing you to make a few extra clicks., LastPass addresses the security issues that are prevalent when reusing insecure passwords., 10.0\n478, lastpass, James S, Enterprise, 2022-11-09, Easy to use, cross platform, and secure., I don't need to use only one of two easy-to-remember passwords for everything, I instead use long and complicated passwords and let LastPass manage my access., I cannot override the use of other browser built-in password managers., Dozens of sites with varying password minimum requirements are easily managed without using a single password for everything., 10.0\n479, lastpass, Verified User (Anonymous), Mid-Market, 2022-10-04, I always recommend LastPass to everyone., The browser plugin that collects my passwords when I use them., Teams implementation could be a bit better, but maybe that's just because I am fairly new. I did not know that administrators cannot recover users accounts unless it has been enabled first. It would have been the first feature I enabled if I had known., Keeps secure notes - use this to have SSN info for family members, combo to safe\nkeeps all my passwords - I have over 300 website logins stored in LastPass\nWorks on my mobile devices - I can log back into games and apps on mobile after updates or after getting a new device, 10.0\n480, lastpass, Shawn S, Enterprise, 2022-11-08, Easy to manage passwords, How easy it is to use on any device to create and use secure passwords. I don't have to remember every site password with lastpass, On mobile sometimes the password option doesn't appear so i have to application swap to get my lasstpass password, remembering my password for hundreds of sites and tools i use, 10.0\n481, lastpass, Verified User (Anonymous), Small-Business, 2022-11-09, Last Pass is everywhere I am, I can securely access all my passwords from everywhere I am. I also appreciate that I can use more complex and random passwords than ever, much better than keeping all that in my head., The mobile phone experience may be a bit clunky; it often prompts me for my LastPass sign-in more than once for the same password input. But it does its job well otherwise., Helping me maintain stronger passwords. It is a significant burden off of my shoulders to know I am following better security practices without any additional effort., 10.0\n482, lastpass, Charlie K, Small-Business, 2022-11-16, Easy & Convenient!, All my passwords are in one place. Can have a different and difficult password for all my needs., It does not always load correctly on my phone and I can't access my passwords., All my passwords are in one place. Can have a different and difficult password for all my needs., 9.0\n483, lastpass, Toby M, Enterprise, 2022-11-09, Password management is a must, Cloud storage, Browser support. MFA authentication. \nLastpass holds most my life now., I would like to group things. some of the sites are using SSO, so I would like when I update one, it updates all., Currently have hundreds of passwords, all unique. And to be fair, I do not know what they are., 10.0\n484, lastpass, Marek K, Small-Business, 2022-11-15, My one and only password manager, It's available and easily accessible on each platform I use, There are some minor bugs on android here and there, although I'm aware that there's a variety of completely different (also from the technical perspective) applications there, It allowed me to easily use complicated and, therefore safe passwords I'd never remember, 9.0\n485, lastpass, Melanie H, Small-Business, 2022-11-08, Easy to use, secure password repository, Easy to use, generates strong unique passwords and provides safe but accessible storage., The authenticator app doesn't work with my phone and no fix date is anticipated. Families subscription is not intuitive to use., Not sure! Support could not give an anticipated date for fixing the Authenticator issue despite it being a known problem., 9.0\n486, lastpass, Rich B, Mid-Market, 2022-04-26, LastPass Eliminates Our Need to Remember or Write Down Passwords, I use LastPass both professionally and personally and I like that I can create complex passwords that I don't have to remember. I use LastPass to generate long secure passwords for me and to store those passwords. We also use LastPass shared folders across our organization for accounts that require shared administration access. It keeps us organized, makes it easier to change passwords, and alerts us to any compromised passwords., Sometimes the auto-fill functionality on some websites doesn't work correctly. Either the form buttons are blocked by another button on the site or the auto-fill doesn't correctly fill in the passwords. This requires a minor work around of manually coping the password from LastPass into the form field., We're solving the problem of reused passwords where were can now generate complex and unique passwords for every system and store them in LastPass for our teams as needed. Users don't have to remember passwords, reuse of passwords has gone done and the administration team all has a single centralized place where passwords and shared keys are stored., 10.0\n487, lastpass, Adrian F, Small-Business, 2022-11-15, Must have for password management, I have one place for all my secure passwords -- all randomly generated, There used to be a single point of failure -- but then LastPass started using 2FA for accessing my account -- so it's now ... better than ever. Strongly recommend for personal and business alike., Primarily -- password and secret management (can include credit card/bank accts #s or sensitive info). Great to have these at the touch of my fingertips vs managing it via some scribbles in a notebook (literally what my mom uses), 10.0\n488, lastpass, Verified User (Anonymous), Small-Business, 2022-11-08, Useful way to store unique passwords across multiple platforms, Need a password manager that works in Linux/macOS/Windows/Android/iOS seamlessly this is the one. Keep unique keys and lock your vault with a Ubikey for maximum security., Not much of anything. Works on pretty much every platform. In the past, I've had some sync issues from my phone to my desktop, but that hasn't happened in a long time., Needing unique and secure passwords for all the various sites and platforms I use. It also can store secure notes for passwords not tied to a website, or keys to other machines., 10.0\n489, lastpass, James M, Small-Business, 2022-11-15, I love the ease of use and security, I can log in from anywhere on any device. This has come in handy more than once as I travel alot for business., So far I have not found anything I would consider a downside to having LastPass, Security, I had several breaches which caused me hundreds of dollars, 10.0\n490, lastpass, Verified User (Anonymous), Small-Business, 2022-10-04, One password to rule them all!, It makes it easy to create secure, strong passwords that is don't have to remember or type. Using the family edition, I can share them easily with my family. I also like using the new passwordless access using the authenticator app., The mobile app doesn't always recognize app logins on my android phone. You also have to install a special browser extension that is difficult to find and enable it you want you use your laptop biometric login., The Team edition makes it easy to enforce strong password policies and monitor user behavior. It also gives me control on how resource access is shared across my team., 10.0\n491, lastpass, Steven A, Small-Business, 2022-09-20, Excellent product, would highly recommend., LastPass has allowed me to store all my passwords and provides easy access. With the Chrome plugin I can automatically fill the password boxes on login forms. As a result, I can generate different random strong passwords (using LastPass) for each of my software services, so I don't need to share passwords across services., I haven't encountered anything that I dislike or that is not useful., The central storing of passwords and sharing with other users., 10.0\n492, lastpass, Jim B, Small-Business, 2022-11-08, LastPass ended insanity of remembering passwords, Securely manage all my sensitive info and data, It's not free, but it's valuable to my family and me to be more secure, I can keep all my business and personal passwords and sensitive info secure and accessible. Fewer reused passwords and no lost time trying to figure out passwords, 10.0\n493, lastpass, Verified User (Anonymous), Small-Business, 2022-11-15, All my passwords in one place, I love that Last Pass saves all my passwords and automatically makes changes if I need to change a password. It is easy to add new websites and passwords. Keeping my personal and business passwords organized is a breeze! I also like that I can log in on any device and have access to all my passwords., There is nothing I dislike about lastpass, I have so many passwords for my business as well as personal ones. Its easy to keep them organized., 10.0\n494, lastpass, Stephanie R, Small-Business, 2022-06-21, I couldn't do my job without it!, I've been using LastPass for years personally and professionally. Personally, it's very convenient, but also super handy that I can store stuff like drivers license numbers, etc. Professionally, I'm a web developer and would not be able to keep up with all my client's accounts without it. Also, it's great for teams as you can organize passwords into categories and get very granular with access., I wish the integration with mobile browsers was better, but it still gets the job done., This tool is helping us securely store passwords and limiting access / visibility for enhanced security. It's 100% essential and I would be lost without it., 10.0\n495, lastpass, Alpa M, Small-Business, 2022-08-02, Best Business Decision, It is easy to teach employees how to use it. All of our records are secure and it is easy to make changes when there is a personnel change. I love the Security Dashboard, to see which accounts need to be changed and which passwords have been compromised., We have to pay for the whole year for each license., We handle a lot of private information and knowing that our passwords are difficult gives us peace of mind. We are not having to spend hours in resetting passwords, employees only have to worry about 1 password., 10.0\n496, lastpass, Yevgeny P, Small-Business, 2022-11-08, Great app. I used it everyday., How easy it is to use. It's pretty much set it and forget it., I would rather have all my passwords shown by default rather than having to click into all my passwords. The first windows is small and useless., I don't have to remember passwords anymore., 10.0\n497, lastpass, Mark L, Small-Business, 2022-06-21, Secure Passwords for All Logins, I like that I can use LastPass with FaceID on my phone to log in to websites/apps without any issues. I like that the odds are extremely slim of someone guessing my passwords using the password generator as part of LastPass., I dislike that I don't always know the password off the top of my head. My passwords are so unique I don't know them to type them in without looking them up. I don't think anyone could guess them., Creating long and unique passwords so that they can't be easily guessed by hackers or attackers. It's also less likely an employee will remember the password, which helps for security. Admin's can monitor logins as well., 10.0\n498, lastpass, Verified User (Anonymous), Mid-Market, 2022-06-28, Efficient Enterprise Password Solution, Our organization has used LastPass for a few years now and it's very useful for quickly and easily sharing and securing hundreds of passwords amongst our teams. I'm particularly favorable to the user group feature as it makes management over new hire onboarding and ongoing access updating much easier than we've done in the past., I don't like that it requires a support/sales conversation to reduce the number of licenses for your enterprise but not to increase them, it's a little anti-user and comes off as an intentional mini-hurdle to retain a higher total revenue per customer because it's easier to just leave the extra few licenses than go through the steps to remove., LastPass balances the known threat of sharing any credentials with layers of security to make it as safe as possible, doing so in a way that makes it easy enough for users to continue to use the product instead of circumventing it is an impressive achievement., 8.0\n499, lastpass, Omar B, Small-Business, 2022-11-22, Makes life easier!, Not having to remember or keep track of passwords, Sometimes access is complicated when logging in, LastPass helps to limit the time needed to log in to sites which gives me more time to do the things that I'm doing, 9.0\n500, lastpass, Bruce T, Small-Business, 2022-11-15, Lifesaver, I like how it can work as an extension across all my browsers as well as any device I'm using., I can't find a single thing to dislike about LastPass., LastPass simplifies the process of organizing my passwords, as well as secure notes., 10.0\n501, lastpass, Debbie C, Small-Business, 2022-11-15, Easy, safe, and secure, All my passwords in one place, accessible from all devices. Love being able to use Face ID., A few sites don't play well with lastpass but there's always copy and paste., Sharing passwords with multiple departments and not losing passwords when someone leaves., 10.0\n502, lastpass, Michael P, Small-Business, 2022-11-08, Excellent password software., Ease of use and organization of multiple passwords, notes, documents., There is nothing I dislike. I've used this product for more than 3 years now and it has never let me down., Managing complicated passwords for multiple websites. Has the ability to recognize several form fields., 10.0\n503, lastpass, Verified User (Anonymous), Small-Business, 2022-11-15, LastPass is SO Worth It, The chrome extension is the best! LastPass has been a life savior for helping me protect my data with encrypted, complex passwords while making them easily accessible by keeping them stored. At a click of a button, it quickly enters all my stored information, and I'm logged into sites., There isn't anything that I don't like about LastPass., Encrypted passwords to keep hackers out of my online accounts. I'm more productive and spend less time typing in long, complicated passwords., 10.0\n504, lastpass, Kellie B, Small-Business, 2022-11-15, I love this product. I manage my own passwords and around 40 other client's passwords., I can create folders for each client and subject and then search easily, I wish the launch always worked. Doesn't always work, I honestly am not sure. I use it every day and love that I have one secure place to go, 10.0\n505, lastpass, Maclyn S, Small-Business, 2022-11-15, The product works! It works with my desktop and mobile devices., Perfect not having to remember all my different passwords., Occasionally it does not automatically enter my credentials in login windows, thus making me manually enter the information. Seldom an issue., I do not have to recall all my passwords. Very efficient!, 10.0\n506, lastpass, Sean G, Small-Business, 2022-05-24, Last Pass - a solution that improves your peace of mind and security on the internet, The fact I can automatically generate large and secure passwords for my various sites and not have to worry about forgetting them. \n\nThe security review feature is also fantastic. Once you have all of your passwords managed by Last Pass it lets", "doc_id": "21b4e3ba-4c17-4463-a490-c4f1d950580e", "embedding": null, "doc_hash": "dd97f20d0bb6bbb17611ba1802c7c2ee362cde13356ccb33f72ab5dc3d95b77b", "extra_info": null, "node_info": {"start": 329084, "end": 344599}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "4212d9df-80e0-4594-abf8-c43b62a507e3", "3": "9dd3f891-de9b-4792-8ebc-f061aa0f3f86"}, "__type__": "1"}, "9dd3f891-de9b-4792-8ebc-f061aa0f3f86": {"text": "have one secure place to go, 10.0\n505, lastpass, Maclyn S, Small-Business, 2022-11-15, The product works! It works with my desktop and mobile devices., Perfect not having to remember all my different passwords., Occasionally it does not automatically enter my credentials in login windows, thus making me manually enter the information. Seldom an issue., I do not have to recall all my passwords. Very efficient!, 10.0\n506, lastpass, Sean G, Small-Business, 2022-05-24, Last Pass - a solution that improves your peace of mind and security on the internet, The fact I can automatically generate large and secure passwords for my various sites and not have to worry about forgetting them. \n\nThe security review feature is also fantastic. Once you have all of your passwords managed by Last Pass it lets you know what passwords are old, which are shared and makes it simple to update and improve your online security., Updating passwords can be a little frustrating to get working. This is accentuated when you have multiple logins for various services (I am a software developer), Centralised password management and improved security. Running security audits means you never need to use the same password across sites. The warnings about site compromises are also a great feature., 9.0\n507, lastpass, Shawn Michael S, Small-Business, 2022-11-08, Satisfied Customer, I love how LastPass makes saving my password information so easy., The pricepoint is a little steep, but I think it's worth it., I don't have to remember all my passwords anymore. And it helps me keep all of the information safe and secure., 9.0\n508, lastpass, Joshua C, Small-Business, 2022-11-15, Hands down the best password management tool, I've been using LastPass for years now and I have no reason to go anywhere else. Not only does it work perfectly across all my devices, but it suggests complex passwords so I never use the same password twice. I highly recommend Last Pass!, Sometimes it doesn't recognize my different apps and I have to manually search in the app to find the password., Generating and auto-filling unique complex passwords instead of different varitations of the same passwordvariations, 10.0\n509, lastpass, Abraham J, Enterprise, 2022-09-06, The product is so easy to use and it keeps getting better. I use the browser and the mobile app!, Having the ability to access passwords from all my devices anywhere is amazing! It also helps me not care if the password is longer and more complex., Honestly, the negative I have is the benefit: it is hosted and cloud accessible. That makes it convenient but adds so much to getting people onboard when rolling it out in an enterprise., Allowing users to utilize better passwords and automating logins from the browser and mobile application., 10.0\n510, lastpass, Verified User (Anonymous), Small-Business, 2022-11-16, Piece of mind and quick access to sensitive info, LastPass has gotten better at auto-filling and integrating with apps over time. I also like being able to store private info like SSNs, notes, etc., Occasionally I run into a site that just doesn't work well with LastPass - it is usually where three inputs are required instead of the usual two., I have quick access to all login information and payment card information, which saves time every time I visit a site or pay for something., 9.0\n511, lastpass, oberto e, Mid-Market, 2022-10-13, Very efficient. Simple Installation and usage., We have to manage many passwords and users, and Last Pass made our life much more comfortable by making this management and the two steps security much more friendly., I don't have any features that I dislike. I believe they could be more visually friendly in some cases, especially within browser usage, but likely is more due to browser limitations than Last Pass., We have to manage many passwords and users, and Last Pass made our life much more comfortable by making this management and the two steps security much more friendly., 9.0\n512, lastpass, David C, Enterprise, 2022-11-10, Excellent Tool. Set it and forget it! Or never forget it ever again., Great tool, simple to install, makes doing everything online easier, more secure and simple., Nothing. One of the best tools I've ever used., No more recalling passwords and credentials. Fast and simple logins in the most secure manner possible., 10.0\n513, lastpass, Verified User (Anonymous), Mid-Market, 2022-11-15, Great experience - personal and business, I've used LastPass both personally and professionally. It is very secure, user friendly, and the support has been great. You can keep things well organized and I love using the app., An update a while ago made it difficult to use the browser plugin. I did have to restart my personal account and wished there was a better way to recover my passwords, but I'm also glad it was difficult (or impossible) to easily get that information., Keeping my personal information secure and organized.n Also, it makes logging into apps and websites fast. I appreciate the secure passwords it also generates and the knowledge I've gained from their articles., 10.0\n514, lastpass, Cesar F, Enterprise, 2022-11-15, Easy to use, Integration with cell phones and desktop, nothing for the moment , it is very easy use. Maybe an improvement is how to create passwords in cellphone, Doesn't take care anymore of passwords, 9.0\n515, lastpass, Luke G, Small-Business, 2022-03-18, Trusted & Established, but Too Pricey & , Access across multiple platforms, devices types, and operating systems! Also, LastPass offers an abundant list of other types of secrets that can be stored, in addition to traditional login passwords For example Network SSID's, notes, credit cards, bank accounts, security social numbers, etc., The cost! Due to its premium price-tag and when placed in comparison to many of the less costly competitors in the password manager market, you'd hope that LastPass would offer more premium features in return... NOPE! With so many other options out there, the value is not as great as it used to be., LastPass introduced me to password managers a long time ago and it proved to be a valuable tool. The concept of using unique, strong passwords for every account without having to remember them was quite an upgrade from the terrible (and essentially non-existent) account security practices I was using back in those days!, 6.0\n516, lastpass, Casey H, Small-Business, 2022-11-12, Great product for family, Sharing they passwords without exposing what they are., Autofilling on the phone is getting slightly worse., Creating and storing unique usernames and passwords. I don't know a single password other than lastpass., 9.0\n517, lastpass, Verified User (Anonymous), Small-Business, 2022-11-15, Easy to share passwords, access across devices, It's incredibly fast & intuitive to create and save new passwords. Autofill works well across mobile and desktop., The transition from free to paid was a little rough - plenty of warning time, but it was an unplanned expense. Thankfully it's once a year!, I don't remember any passwords, and therefore would always use the same few across accounts (not secure!). LastPass eliminated that issue for me., 10.0\n518, lastpass, Jerry N, Small-Business, 2022-03-15, One of the oldest and best around, So far, it's worked with more different sites than any other I've tested. While there are features here and there that another might do better (and I've tried many), none of them do everything LastPass does or as consistently. I also love the \"equivalent domains\" feature that makes it possible to use the same credentials on several sites where they all use the same account (Google and Microsoft come to mind). LastPass doesn't have any truly unique features (that I'm aware of), but their history and execution remain unmatched., Honestly, my most significant issues with LastPass were rarely with the product itself. (I'm not a fan of LogMeIn as a company for various reasons, but I'll keep this to LastPass.) I've been with LP as a personal-use consumer since long before LMI picked them up. I'd divested myself from LMI's other solutions previously and was not happy that LMI ended up the new owners. My reservations were confirmed as the price for the paid version literally tripled over the next couple of years and, more recently, completely changed how the free and paid versions worked to \"encourage\" more people to pay. (Moving previously-free features behind the paywall to increase inconvenience is a dirty trick, in my opinion.) I was also incredibly frustrated that the best solution on the market wasn't available to IT service providers as a proper managed solution. Many competitors had popped up specifically to cater to that market, none of which could do the job as well despite being reportedly \"purpose-made\" for that industry. (I'm grateful they FINALLY came around on this point. Still annoyed it took them so long.), As an IT professional, I have more accounts and login credentials than the average person, which is already substantially more than most realize. The ability to create a new account in seconds instead of minutes might not sound like much, but it adds up quickly. Throw in secondary authentication, and the conversation of security vs convenience starts heating up. As of now, there are several options for more securely logging into various sites, yet there's no universal standard. Until there is one, configuring LastPass with a STRONG master password and a mobile authenticator app will allow you to implement 2FA/MFA across all other sites that offer it using LastPass itself. Many cyber security professionals debate the wisdom of this method, but if your LP account isn't properly secured, you already have bigger problems., 10.0\n519, lastpass, Verified User (Anonymous), Enterprise, 2022-11-15, Cannot live without it!, Cannot live without it in this age of required unique and hard-to-remember passwords for dozens of sites! I appreciate the password monitoring features and the reminders to improve repeated passwords as well. Makes me so much more secure!, Recently began suggesting form fields that do not need suggestions (and I do not know how to turn off), but the overall pros far outweigh the minor inconvenience., Cannot live without it in this age of required unique and hard-to-remember passwords for dozens of sites! I appreciate the password monitoring features and the reminders to improve repeated passwords as well. Makes me so much more secure!, 10.0\n520, lastpass, jay M, Small-Business, 2022-11-15, Best password management system out there., Best way to secure your online life, accounts, and systems., Sometimes not all websites auto fill. But that is just a inconvenience., Password hygiene, complexity, and security through encryption., 9.0\n521, lastpass, Pavel P, Small-Business, 2022-11-08, Long time satisfied user, Easy to setup and use on all my devices (iPhone, iPad, MacBook, Safari), Sometimes logs out, but it's for security reasons so I get it, Generating unbeatable passwords and auto filing them, 9.0\n522, lastpass, Verified User (Anonymous), Mid-Market, 2022-11-16, LastPass eliminates the need for creating your own password and the need to remember them!, I LOVE that I no longer have to write down and store my passwords. I LOVE that I can install the application on multiple devices, which always allows me access to important websites., On occasion, LastPass does not automatically launch the website with the user name and password pre-populated., LastPass prevents password vulnerability and eliminates a user from using the same password for multiple websites., 10.0\n523, lastpass, Tobi A, Small-Business, 2022-09-13, Safe, Simple & Swift!, I have a terrible memory (mainly due to my dyslexia). It has been so helpful to have complex passwords i can use without having to remember them,, if my phone updates i have to remember the master password which is ultra complex, high security, speed and ways contractors and freelancers can get access to accounts in a safe way., 10.0\n524, lastpass, Tess S, Small-Business, 2022-08-09, Easy to use and share with organization., Easy to use and versatile for the whole organization. Love the features where you can store other secure information like notes and credit card info. This is great for quick payments and sensitive information., Easier to add/remove people from within your organization than from outside the organization. This is a very minor downfall., Password sharing and updating: great for storing/sharing passwords that need to be updated on a regular basis - all while keeping it secure!, 10.0\n525, lastpass, Verified User (Anonymous), Small-Business, 2016-10-26, LastPass improves my productivity with a peace of mind., I love how easily the product is to add new sites. The ability to sync the account with my tablet and phone allows me to easily access secure accounts with out the loss of time trying to remember different username and password combinations., The experience across different browsers could be improved. If you are using this application on Chrome vs Firefox the user experience is different. Firefox is a lot easier to add new sites to your LastPass than Chrome,, My time is valuable. Using LastPass has cut down on the amount of time it takes me to log into various accounts leaving me with extra time to commit to work that matters. I also love the feeling of security LastPass insures., 10.0\n526, lastpass, Verified User (Anonymous), Small-Business, 2017-05-05, Finally solution to remember your passwords, i can use it on my desktop, on my chromebook and on my android smartphone with 2-factor security login., sometimes with multiple subdomain & different login it dont fill the right one, and is necessary to select manually, With lastpass i can stock all my personal & work passwords in one place with many benefit, 10.0\n527, lastpass, Verified User (Anonymous), Small-Business, 2017-01-18, Don't Know How I Ever Survived Without It, LastPass integrates with both your desktop and phone very easily so remembering new passwords, making changes or even deleting passwords is automated and as simple as a button press. No need to even enter the application, LastPass always pops up right when needed., The mobile version is a bit more cumbersome than I would like. There should be an option to set all your data, including your master password, one time so you don't even need to do it during a commute., Using a PW management tool makes everyone more efficient and keeps key IT staff busy with critical projects and not resetting passwords all the time., 10.0\n528, lastpass, Verified User (Anonymous), Enterprise, 2017-06-06, Simple Password Software, Easy to use, includes a google chorme button., Not sure how secure it is - has been hacked before, Remembering passwords for may websites, 7.0\n529, lastpass, Verified User (Anonymous), Mid-Market, 2017-07-05, Password Security , Not having to remember my passwords. Seeing the 3 little dots means I don't have to try to guess., It doesnt always save all the passwords, I think they are saved but they arent. , Password security., 10.0\n530, lastpass, Verified User (Anonymous), Small-Business, 2017-05-22, Useful tool to keep in safe your passwords, Useful tool to keep in safe your passwords for everyday use. Multiplatform and with language list., Not exactly correct recognition of fields, Managing of passwords, 8.0\n531, lastpass, Becky L, Mid-Market, 2016-11-28, It's great!, It makes it really easy to keep all my password secure., I can't think of anything. It is perfect for what I need it for!, It's been extremely easy for my coworkers and I to share accounts on there. I work in an international social media team where some of the passwords are proprietary. LastPass makes it easy for us to", "doc_id": "9dd3f891-de9b-4792-8ebc-f061aa0f3f86", "embedding": null, "doc_hash": "68dabf7070896e5007fa7063a5aca6f52aaece6e8d077ec1237b6ca1c3ab0a63", "extra_info": null, "node_info": {"start": 344603, "end": 360449}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "21b4e3ba-4c17-4463-a490-c4f1d950580e", "3": "4f11381e-92c4-4a54-aa2e-2f2f604db4a9"}, "__type__": "1"}, "4f11381e-92c4-4a54-aa2e-2f2f604db4a9": {"text": "It doesnt always save all the passwords, I think they are saved but they arent. , Password security., 10.0\n530, lastpass, Verified User (Anonymous), Small-Business, 2017-05-22, Useful tool to keep in safe your passwords, Useful tool to keep in safe your passwords for everyday use. Multiplatform and with language list., Not exactly correct recognition of fields, Managing of passwords, 8.0\n531, lastpass, Becky L, Mid-Market, 2016-11-28, It's great!, It makes it really easy to keep all my password secure., I can't think of anything. It is perfect for what I need it for!, It's been extremely easy for my coworkers and I to share accounts on there. I work in an international social media team where some of the passwords are proprietary. LastPass makes it easy for us to \"share\" accounts without having to tell each other the exact passwords., 10.0\n532, lastpass, Janna G, Small-Business, 2016-06-22, Still trying to figure it out., As an agency we have to secure all our clients passwords and logins information - plus we have to be able to securely share access with our team members, without revealing the actual password. This has been great for that. We can create client directories / folders and share all or some of the sites., Ok - here is the real deal - I still, after several years - have to have somebody on my team help with setting up the folders (vaults). Getting help through customer service has deemed itself to be an impossible task. , Ensuring that our client's information is secure is number one. Second is making it easy for our entire team to quickly and efficiently make changes and updates to websites, social sites and even our own CRM systems and tools. LastPass is a sigh of relief., 9.0\n533, lastpass, Cory H, Mid-Market, 2017-01-19, Security at it's Best, LastPass is an amazing tool to create and manage strong, secure passwords for all your profiles, both personal and professional. Easy to use and very intuitive., Nothing. I find it so easy to use I can't really find anything bad to say about this service!, In my workplace, I enter up to thirty unique servers a day, all with different login information. LastPass makes it easy to manage and filter through these and makes my head spin a little less., 10.0\n534, lastpass, Justin G, Small-Business, 2017-01-13, Excellent for Generating and Securing Strong Passwords, Complex Password Generation and it supports storing multiple login profiles for the same websites. , Frequently asks you if you want to save this website when you submit or make changes on forms that may not be relevant to login sometimes., Secure Password Generation and Storage , 10.0\n535, lastpass, Steven A, Mid-Market, 2016-06-14, System Admin's best friend, I like that LastPass has plug-ins that simply works. At the end of the day, for someone like myself who has multiple sign-ons for each platform, LastPass makes it simple to administer the system as the user you intended to login as. , Some webpages are designed a bit more clunky than others or with more frames, credential dialog box then lastpass likes to handle. In these instances the user needs to go through extra steps in the plugin for 'Copy UserName/Password' because the Autofill doesn't work very well. I also have issues with using the platform on mobile. Albeit I have not tried a whole lot it appears to me that when I have I am required to use a propretary web browser for mobile aka LastPass Browser. I which there was functionality with google core apis to simply work in google chrome mobile., As a system admin I am required to sign in as an admin, front end user, and back end user to many different business systems. Not to mention, some of these systems I also have personal relationships with. All together, it is a lot of passwords. Each with different parameters. Last Pass makes it simple as a system admin to simple, forget passwords and leave it to LastPass, 10.0\n536, lastpass, Robert C, Enterprise, 2016-06-07, LastPass is smarter than you when it comes to securing passwords, LastPass is relatively inexpensive even if using the premium features of sharing and having data available via mobile devices. The Security Challenge tool is a nice way of reminding you to change old PWs and look for duplicates. The password generator includes options to include/exclude characters and the copy/paste username/password functions. It took a while to convert my passwords into LastPass as I chose to do it in one sitting (deleting saved PWs from Chrome) but you could do it gradually through LastPass's offer to remember to save password function., There are several instances where updating a password does not \"save\" in the app. There are on-screen indicators that prompt you to make changes or confirm changes but doesn't seem to \"take\" 100% of the time. The workaround is to go into the vault and grab the password it should be and manually change the PW from the website., Password and PII security. In addition to passwords, I've included banking information and form fill information. I'm also using secure notes to keep other records., 8.0\n537, lastpass, Melissa S, Mid-Market, 2017-01-06, Love LastPAss, That I am used to spending so much time resetting passwards, Some time it does not automatically update my passwords or ask if I want it to remember them I wish it worked more like google so wherever I browse on any device it pops up maybe it does and I just know how to make that feature work?, Just being able to track what all I sign up for and what my password is , 10.0\n538, lastpass, Alex F, Small-Business, 2016-08-10, Great password manager, Web Browser integrations are great!\nLocal desktop applications, mobile apps, and 2FA all bring great value to Lastpass. , The management UI for some of the admin console stuff is clunky and not intuitive. I guess that's what you get when you have such an amazing product for just a couple of bucks per user/month. , Sharing vendor passwords with remote workers, and setting complexity requirements for passwords in our organization. , 10.0\n539, lastpass, Brian M, Small-Business, 2016-08-04, LastPass dependent, I no longer significantly care when I have to create yet another login and password. LastPass does the job of managing passwords very well. +I like the secure notes for a variety of secret info (lock combinations, etc). +The Form Fill works great for online shopping. +Sharing passwords between users is great (you can share and keep the password secret, or you can share a site and show the password). +I have found on my phone that you can actually browse to the vault and look up a password when you need it, but not as smooth as auto login with the add-on loaded on a computer. +The LastPass icon and dropdown in the password field is clever. , - Sometimes it does not notice when a new login is created - and I must manually say Add Site, and then make sure the username and password are stored. -For some sites auto login does not work. Sometimes even right click and select the site and nothing appears. - The appearance of the vault has changed in some browsers, and the text has gotten too big, I prefer a smaller detail view like the older look. - On a desktop without the add-on loaded it is manageable, but not as pleasant. This also happens if you login to some software (e.g. Autodesk) that is cloud based but, of course, it has no LassPass connector. , I store business and personal passwords on it. I'm using it to store company info in a secure environment. would like to see password managers become the norm, and influence site and software design. , 10.0\n540, lastpass, Verified User (Anonymous), Small-Business, 2016-08-02, Works well, feels secure, considering paying for premium, When every website has different password requirements, it's obviously a pain to remember which password you've used where. Not to mention that it is bad to reuse passwords. Last pass very helpfully keeps a bank of my passwords, which in most cases are inserted with just one click using the chrome plugin., Sometimes stumbles on certain websites, given the layout of their username/password prompts. I am currently limited to just one device, but understand that cross-platform support is a key draw for their paid plan, so I guess I'm getting what I pay for. Interface can feel a little clunky, but not the worst., It saves me time and energy. Were I to pay for the premium version, it would increase business security, enabling me to generate unique/changing passwords for all sites., 8.0\n541, lastpass, Jon A, Mid-Market, 2016-04-26, The Last way to store passwords that anyone needs., LastPass combines two key needs for anyone: secure storage of passwords and the ability to create unique and robust passwords for each website. Two factor authentication and the ability to see what passwords have been used recently are key. If you subscribe to the Enterprise level of LastPass a team can create and share multiple passwords along with restricting which passwords team members have access to use. As an admin for the Enterprise subscription level you can also perform a password audit and force password rules about length and complexity among the users., At times the plugins for different web browsers can act buggy, from loading no login and password data to not being able select different account data for the same website. There are also some websites that it just doesn't work with. I have also found how LastPass handles multiple login accounts for the same website a little strange. It tends to remember which account login you used last, but sometimes it just plain forgets. The frequency and flow of when it logs you out or lets you stay logged in is not consistent., We realized that the passwords we were using weren't robust enough to have good protection and that often we were using the same password across multiple. Both of those issues could have created some major security issues. The biggest benefit of LastPass for us has been the ability to keep all of our team members working and be able to change passwords without having to email everyone when we updated one of them., 10.0\n542, lastpass, Seema Y, Enterprise, 2016-04-25, Lastpass Review for Password Management, LastPass provides convenient cross-browser and cross-platform support. It provides an efficient way for me to easily store username and passwords. It automatically remembers and saves the list of websites which need login details so that it can automatically log me in on my next visit to the same website.\nIt auto-fills web forms using my personal data profiles that I define in my account which helps me in filling online forms with just a single click., You can only contact the customer service through email. There is no other alternative to it. Also, it doesn't provide a good UI design for the Android users., LastPass provides high security options at the global level. It provides me the options to limit the duration of time for my active sessions till which I can be active on its server. After that it automatically disconnects me from the server. I can also extend the session length at the same moment as well.\nIt has a very nice feature for multi-factor authentication. It has got an email with a one-time-password code which I have to type into my online account after entering my master password., 7.0\n543, lastpass, Melody M, Small-Business, 2016-06-20, A Great Way To Store Confidential Information!, I like that LastPass gives you the ability to file and organize important information based on categories. It's easy to create security for all of your information and only allow access to certain employees., I don't like that the LastPass inputs pop-up for every form that I fill out. It would be nice to control which forms to turn it on and off for or for the app to automatically detect variations., LastPass allows for the employees in our company to access confidential information without the risk of a security breach., 10.0\n544, lastpass, Tom S, Small-Business, 2016-04-22, Competent, but overall disappointing, I initially signed up for LastPass purely because I got 6 months of it for free and an additional 12 months for free due to being in education. LastPass is a competent piece of software, and it's greatest strength is that it runs across many platforms, including Windows, Linux, Mac and mobile platforms like iOS and Android., The design of LastPass is very disappointing. I found it difficult to configure due to how many options it offers, many of which should be default to improve the security of the product. This means users are unlikely to configure it to increase it's security themselves., This product makes both mine and my client's data more secure. I am able to use different passwords and logins across each site I sign up for, meaning if data for one is stolen, it cannot be reused elsewhere. Since my customers sometimes send me their passwords for their sites and their accounts on other sites I have to use, I have an obligation to keep their data secure, and LastPass makes it easier for me to do this., 4.0\n545, lastpass, Meagen V, Mid-Market, 2016-04-20, Excellent Password Manager, I love how LastPass makes it easy for me to automate and keep track of my passwords. I love that most of the best features of Lastpass are available for free and when money is tight I can dial back my service level without losing the core features of the software. I don't imagine it will stay that way forever, but I can hope. I also enjoy the password generator and how easy it is to make up passwords and save them., I dislike that I have to use easy passwords for the programs I keep on my phone because finances have been tight and I can't pay for the mobile option yet. I get that they need to make money though, so it's only a minor quibble. Otherwise, the product is fabulous., I'm solving my ability to manage passwords and keep track of the many sites I log into on a regular basis., 10.0\n546, lastpass, Michael S, Small-Business, 2016-04-21, One of the best password managers available, Ever since LastPass added the ability to fill passwords in apps on Android it went from a great tool to invaluable. I've been a LastPass premium subscriber for 3 years now and it's worth the price of admission., It can be a little wonky occasionally and doesn't always grab the correct username (sometimes will grab first name, for example) but not enough to consider not using it., I manage tons of websites, both personally and for clients, and with LastPass I'm able to store them all securely and only have to remember one password., 10.0\n547, lastpass, Eric H, Mid-Market, 2016-04-12, LastPass is a must have for me and remembers stuff so I don't have to, The cross platform integration is great. I can use it on Windows, OSX, Linux, my mobile device, or even just a web interface. Anyplace that I would need to have access to a password, I can have access to LastPass. It's good at disciplining me into not using duplicate passwords or even having to come up with passwords on my own. I like that you can group things together under sections, which makes dividing work and play an easy task. I also like the auditing tool which is very cool and lets me correct the sites where I used a duplicate password., I'm really trying to come up with something, honest. Okay, I guess I would like the ability to add additional \"triggers\" to it-- for example, on my bank site, you have to log in with a username, then enter a PIN, then potentially answer a security question. It would be nice to store a set of questions with triggered answers so it all happens automagically-- but that's not really the fault of the software, but I guess a desire for a future implementation. There's really nothing that it does right now that is irritating., Security and satiating my laziness. I don't want to remember a million different passwords, and I don't want to use one password for everything. Now I only", "doc_id": "4f11381e-92c4-4a54-aa2e-2f2f604db4a9", "embedding": null, "doc_hash": "2ddf8a211714b1d9e36bc7cf915353803f86fa55459b7853e9948a23ed81b067", "extra_info": null, "node_info": {"start": 360476, "end": 376460}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "9dd3f891-de9b-4792-8ebc-f061aa0f3f86", "3": "a81b8e69-8d80-4210-bdc6-c86fd53ac89d"}, "__type__": "1"}, "a81b8e69-8d80-4210-bdc6-c86fd53ac89d": {"text": "easy task. I also like the auditing tool which is very cool and lets me correct the sites where I used a duplicate password., I'm really trying to come up with something, honest. Okay, I guess I would like the ability to add additional \"triggers\" to it-- for example, on my bank site, you have to log in with a username, then enter a PIN, then potentially answer a security question. It would be nice to store a set of questions with triggered answers so it all happens automagically-- but that's not really the fault of the software, but I guess a desire for a future implementation. There's really nothing that it does right now that is irritating., Security and satiating my laziness. I don't want to remember a million different passwords, and I don't want to use one password for everything. Now I only need to remember one, and it unlocks the gates for all the web sites I visit. , 10.0\n548, lastpass, Andrew M, Mid-Market, 2016-04-12, Seamless for web, Annoying for mobile, On a full web experience (PC, Mac or Chromebook), LastPass's auto completion of user names and passwords makes logging in to the myriad of online services I use a breeze (most of the time...). It takes the guess work out of 'which combination of letters and numbers did I enter for a password this time). With 2 factor authentication, I'm comfortable that my passwords are safe from prying eyes. , The grouping feature is a little outdated. I would rather have tags for my entries instead of just being able to assign them to a single group. For example, being able to tag something as email, work, and gmail all at the same time would be really nice. \nAlso, if you have multiple logins for the same root domain, like if you are a web developer, LastPass can get unwieldy as it will show you every option for the root domain you were on. For example, I have my base website, and I subdomains to do different web development projects, and so all my passwords show up for every subdomain -- a little frustrating. , Keeping track of the hundreds of passwords, user names, emails and services that I use in my job. It saves me time from tracking down, resetting passwords and helps me be more secure by generating tough passwords. All in all, those few minutes throughout help me save money by freeing up more time to do billable work. , 10.0\n549, lastpass, Bryce M, Small-Business, 2016-04-11, LastPass is great for working with a lot of clients., I love that I can safely share usernames and passwords for clients and easily access them. I used to email usernames and passwords with clients and that is a scary practice., I really don't think the autologin feature works all that well. I usually have to just reveal the password and copy and paste it into a new window. Not a big deal, but could be fixed., I run an agency and we often use usernames and passwords of our clients for their websites, analytics, or other business functions. I love being able to easily recall their information without searching through email, saving it in a google doc, or asking them for their information again. It is also very easy to share information with other members of my team., 9.0\n550, lastpass, Matteo M, Enterprise, 2016-04-01, A good and secure password manager, The best features of LastPass in my opinion are:\n- secure aes-256 bit encryption (also used by u.s. government);\n- folder organization of passwords;\n- totally web-based with cross-browser compatibility (via extensions) and mobile application (all platforms);, Mobile application is paid, I would like it for free. A short trial version is available., It's an optimal solution to remember also password you don't use frequently. With one password you can:\n- save your time without typing long password for important accounts;\n- automatically create passwords for one-time login web applications;, 10.0\n551, lastpass, Peter K, Mid-Market, 2016-06-15, Great Password managing tool, The ability to sort and organize ALL passwords and generate random ones., The persistent drop down for saving new passwords., Sharing login info for service accounts, promoting good IT security habits., 9.0\n552, lastpass, Verified User (Anonymous), Mid-Market, 2016-04-08, THE BEST PASSWORD SYSTEM OUT THERE FOR THE PRICE!, The best feature of the paid version is that it will sync across multiple devices. This allows me to be able to use it at work and home! The security level of this program is outstanding. I use the free version on my families computers and it works great. There is no worry at all about their passwords being stolen. , The only dislike is really not that bad. As with any free program, there are ads in the program. This is how they make their money. However, if you do pay for the service it does remove the ads. The only real difference besides not seeing the ads is that it gives you more room on the display so that you can see more programs., The biggest benefit to a company is the security of this program. If you needed to give access to your coworker you can give it to them through this program and they will never see what your password is. In addition, should someone be let go you can access their account by setting this up when you get started. There are so many great features that makes it totally worth the small price!, 10.0\n553, lastpass, David M, Mid-Market, 2016-04-01, Useful tool, i like how intuitive and easy it is to use the software, and that it has a chrome plugin that responds quickly and well., i wish there was a free version of the accompanying app that i could use on my mobile platform as well. i wish there was a reminder to update passwords on a scheduled basis., used for personal and professional passwords and username storage., 8.0\n554, lastpass, Verified User (Anonymous), Enterprise, 2016-01-13, Changes my life at home and at work by having ultra-secure unique passwords on every site, The ability to track 100s of passwords securely and easily with the ability to also securely share those passwords with other users. Truly perfect security as I don't even have to know the passwords I will be using. I have also started to use this at home for all my personal passwords after experiencing how amazing it is for use at work., Honestly the only thing I dislike is needing to pay for premium to use last pass on my phone and devices other than on the computer. This isnt a huge cost, but it would be nicer if it were completely free!, The ability to track passwords for 100s of client sites and pages without keeping them written down in an insecure manner. I'm also able to share them to my fellow admins if they need to access the servers as well. Customers are made more comfortable by the fact that we only store their passwords with top notch security that has a perfect track record., 10.0\n555, lastpass, Emrah A, Small-Business, 2016-01-08, Easy To Use But Suspicious Password Service, LastPass is very useful password service which has got browser add-on and mobile support. It is very Practical. For example it is compatible mobile operating systems and it remembers yours passwords for you. You can not leave easy when you get used to. You must sign up al lot of web site so you have a lot of password in time. LastPass is remembering and organizing that. You have got master password and it can unlock your another passwords. You can try trial version. Trial version is about 15 days., I'am a bit of dubious about LastPass. Recent months there was a hacking attack to LastPass servers and they sent an e-mail some user for change passwords. So you can use it only forum and ordinary services. I don't recommend LastPass for banking, paypal or other critical services., Password generation services is ideal for business using., 3.0\n556, lastpass, Lauren W, Enterprise, 2016-04-08, Pretty great - not always perfect, I love that LastPass remembers all of my passwords and can even suggest and store complicated passwords for me., Sometimes it doesn't start when I start my computer. Sometimes it doesn't auto-fill. Then there is the annoying \"show vault\" checkbox that somehow gets checked when I don't check it. That annoys me because I never want to see my vault., It helps me \"remember\" all of my passwords! We are supposed to have unique passwords for each personal and work related website. Who can keep up?!, 8.0\n557, lastpass, David W, Mid-Market, 2016-04-08, Can't Live Without It., I honestly don't know how I would function without LastPass. It's become integrated into my daily routine, and I trust it to manage my information securely while providing seamless access to my myriad online accounts., I have found it difficult to manage passwords on sites where I have multiple accounts (Salesforce, for example)., I'm using LastPass to provide seamless access to my online accounts without compromising security., 10.0\n558, lastpass, Verified User (Anonymous), Small-Business, 2016-04-11, Very comprehensive solution, but not the easiest to use, Its very comprehensive, it covers all aspects of password management, great security features to manage teams large or small. I like the web extension for Chrome also. , Its User Interface is not that easy to master, I have found other competitors solutions much easier to use, we have been using Lastpass for around 6 months and it has undergone several UI upgrades none of which have made it easier to use. , Password management for multiple cloud servers, great that they are all in Lastpass but navigation of it seems tough. , 4.0\n559, lastpass, Verified User (Anonymous), Small-Business, 2016-04-01, Wasn't for me, I liked the chrome extension and how it attempted to recognize sign up fields on my browser and prompt me to use it., The problem with the auto fill feature was that it was buggy and often times didn't work for me. Also wasn't great for a company like mine where we are sharing passwords., We wanted our team to have easy access to everyone's passwords and to be able to securely remove former employees. , 7.0\n560, lastpass, Karl D, Enterprise, 2016-06-02, Now I don't have to remember 160 passwords. And they are all secure. , The fact that my accounts are more secure than ever, and that I get notified of any security issues related to those accounts. , Nothing really here. I don't like that it can't always fill in passwords for certain types of logins on android. But that's more to do with how those were developed. , Making my accounts secure and allowing easy administration of my passwords. , 10.0\n561, lastpass, Verified User (Anonymous), Enterprise, 2016-01-13, Great Password manager, Easy to use and work on almost all websites. \nIt can easily used on different browsers and different machines.\nAuto-fill feature is great\n, The mobile apps are not free.\nDifficulties with setup and configuration when attempting to support more than one platform or browser, or if users want to add two-factor authentication.\nUses email address as your user name, Easy to store password for multiple websites and can be easily shared on different browsers and devices., 10.0\n562, lastpass, Verified User (Anonymous), Enterprise, 2015-12-28, Password manager that saves you from remembering passwords and using same ones for multiple accounts, Works on almost all websites I use\nGenerator lets you create new strong passwords based on requirement\nSupports two factor authentication, like with Google Authenticator\nOption to export your data when you wish.\nDetects password changes and weak passwords\nPrompts if passwords are re-used elsewhere\nAllows you to save Secure notes too, No free/basic version for mobile\nPrompts to save passwords everytime you fill a form, takes time to list sites for which it shouldn't prompt\nRecent security break hurt the trust factor, Remembering passwords is a pain due to a large number of sites people use, this leads to three problems:\n1. Use of weak, easy to remember passwords\n2. Re-use of same or similar passwords elsewhere, which are easy to guess\n3. Frequent password recovery due to forgotten passwords or wrong entries\n\nLastPass addresses all these issues from your browser. , 7.0\n563, lastpass, Anthony N, Small-Business, 2016-04-09, A must-have for password management, I like this tool for the features below:\nAbility to generate strong passwords\nAbility to use on all devices, It does not allow access levels and it might not be good for business. The problem with all password management tools is that passwords are stored in the browser., I like it for personal use rather than solving business problems., 7.0\n564, lastpass, Glory P, Mid-Market, 2016-04-10, Best personal information protector!!, The random password generator feature in this app is just amazing that makes us free to choose password at various situations.., There is nothing as such that can be disliked about LastPass, When dealing with various passworda for various servers and instances, this app has provided us the best way to share the passwords with my colleagues so we can work from any place anytime as and when password is required., 9.0\n565, lastpass, Steven H, Small-Business, 2016-04-08, Can't live without it!, Lastpass saves all my passwords, emails, usernames, notes, etc. It easily registers login fields and the Duo Security integration is spot on!, Sometimes when I try to select one username, it selects another. This doesn't happen often, but I notice it happening before. The overall UI used to be ugly, but they've made it much better lately!, Lastpass solves my need to remember all of the emails and usernames for all of my websites., 10.0\n566, lastpass, Verified User (Anonymous), Enterprise, 2016-08-02, Good, safe password manager., I like that LastPass remembers all my passwords without me having to write them down anywhere, I don't like how sometimes I forget to update my passwords. Or, when a friend uses my computer and saves their passwords. Maybe a Guest Mode would help?, I'm solving my memory skills!, 7.0\n567, lastpass, Verified User (Anonymous), Enterprise, 2016-04-08, LastPass is a lifesaver, I love that the feature is automatic across all password sites. I rarely have to remember I have it and it's there when I need it., Sometimes I click on the little 'LastPass' icon in a password field accidentally. I like that it's accessibly but I wish the placement wasn't so awkward., Too many passwords, so many I actually have no idea how many I have. I love being able to see the sites I've activated and stored through the lastpass settings. , 10.0\n568, lastpass, Verified User (Anonymous), Mid-Market, 2016-04-02, Great functionality, but lacks some finesse, Simple setup, and fills a genuine need for secure password management. The enterprise admin features are useful, allowing for granular permissions and for sharing between users, UI is ugly and not intuitive to use, occasional downtime, general weirdness with browser extensions (e.g. sometimes you have to log in twice, sometimes auto-logoff doesn't work), Secure password management and sharing, 8.0\n569, lastpass, Verified User (Anonymous), Small-Business, 2016-01-13, a mobile lifesaver, While there are many password managers out there, LastPass has been my go to for several years primarily because of it's mobile integration with Android. I keep only complex passwords and typing them on a touchscreen keyboard was a nightmare. Having LastPass fill them in automatically is a true lifesaver., I don't like that it asks you to save your newly generated password before you submit it to the requesting website. Sometimes it generates one that is unacceptable due to special characters so really you", "doc_id": "a81b8e69-8d80-4210-bdc6-c86fd53ac89d", "embedding": null, "doc_hash": "aea0297a786587500f600b1ee5cc58a270c6fc1b75119591ebd57649dd1e7014", "extra_info": null, "node_info": {"start": 376445, "end": 392058}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "4f11381e-92c4-4a54-aa2e-2f2f604db4a9", "3": "1449054d-6aab-4d37-9173-d8f20188fe48"}, "__type__": "1"}, "1449054d-6aab-4d37-9173-d8f20188fe48": {"text": "UI is ugly and not intuitive to use, occasional downtime, general weirdness with browser extensions (e.g. sometimes you have to log in twice, sometimes auto-logoff doesn't work), Secure password management and sharing, 8.0\n569, lastpass, Verified User (Anonymous), Small-Business, 2016-01-13, a mobile lifesaver, While there are many password managers out there, LastPass has been my go to for several years primarily because of it's mobile integration with Android. I keep only complex passwords and typing them on a touchscreen keyboard was a nightmare. Having LastPass fill them in automatically is a true lifesaver., I don't like that it asks you to save your newly generated password before you submit it to the requesting website. Sometimes it generates one that is unacceptable due to special characters so really you shouldn't save the password until you know it was accepted., This ensures that all of our IT products have different administrative passwords., 10.0\n570, lastpass, Julie K, Enterprise, 2015-12-21, Great solution for security and sharing passwords, I can choose a login from a dropdown, and it loads up the password without me having to know it at all (and without the other consultants knowing it)., No check in/check out system to keep us from logging in at the same time and kicking each other out., We had terrible passwords and bad practices for sharing those passwords. When employees leave, we need to change the passwords. LastPass keeps us from having to look up a client's password to go in and support the client account and keeps us from having to change the passwords when consultants leave the team because they never know the password to start with. , 10.0\n571, lastpass, Verified User (Anonymous), Enterprise, 2016-05-10, sync passwords across all devices, multifactor authentication ensures that your information is secure. you get a security report every so often which allows you to address at risk items., password generator has default settings, makes it a nuisance to deal with and less secure., multifactor authentication makes business information and data more secure., 7.0\n572, lastpass, Verified User (Anonymous), Small-Business, 2016-04-08, Great experience and interface, I like that LastPass automatically prompts me to add new passwords when signing into new programs. I enjoy the chrome extension that auto-populates my info. , I wish that the suggested password saving was already available in mobile devices. An iPad is my primary home computer, so many new personal passwords are not added to LastPass., I have solved the problem of many sites sharing the same, simple password. LastPass has improved my security. , 10.0\n573, lastpass, Verified User (Anonymous), Mid-Market, 2016-04-10, Robust password manager, The fact that you can sync all your passwords across all of the different browsers and devices is a plus for me. I also like the feature enabling you to share passwords to other lastpass users., Unfortunately the multi-device feature is for premium users, so you have to pay for it.., I work as QA in software development and we need to test the same things on different browsers. Lastpass makes it easy to store, use and update passwords across all browsers which is a significant time saver for me., 8.0\n574, lastpass, Verified User (Anonymous), Mid-Market, 2016-07-05, The Essential App, I'd die without LastPass. It's easy, it works everywhere, and gives me a happier, more secure life., Sometimes, in the latest version, I cannot click the \"login\" button, but a quick refresh fixes it., All passwords are managed and shared securely. When team members come and go they can be added to groups and never see the passwords - makes team rights management so easy., 10.0\n575, lastpass, Teresa H, Small-Business, 2022-11-15, great password creator, Having the ability to generate a random and secure password for websites is the best aspect of Last Pass. And then to have access to them whether I am on my phone, my iPad, my laptop, or my desktop makes it even better!, Absolutely nothing! LastPass does everything it promises and I feel very secure in using it to protect my passwords., Having secure and randomly generated passwords is such a plus! I would never be able to remember the passwords for all of my websites if they were random letters, numbers, and symbols. But LastPass does it for me!, 10.0\n576, lastpass, James J J B, Small-Business, 2022-11-15, JJ, One master password and a wonderful system of generating and organizing credentials across as many accounts as you can dream of. There is a comfort when generating a secure password for a new account that your information is safe., For optimum security, it takes a lot of time and attention to work through your library of credentials and replace duplicates, change vulnerable passwords, etc., I can have the extension in my browser and an app on my phone and log in to all locations simultaneously so that remembering credentials is a thing of the past, it's improved my efficiency., 10.0\n577, lastpass, Shelle P, Small-Business, 2022-08-02, Strong Passwords are so important and LastPass lets you start for free!, Easy integration across all of my devices, multiple laptops and phones, tablets. I really appreciate having had full functionality to start for free. I had tried other password managers that I wasn't thrilled with and so it was great being able to really know I loved it before subscribing and expanding into more features. With a business license they also give you a family account which is amazing., Sites that have passwords within the sites (web hosting, etc.) make it a little complicated at times with LastPass trying to fill things in/save things I don't want filled in/saved. You can always tell it to ignore. Also, having access to multiple client site passwords, you can end up with a rather large dropdown to choose from, but that is more a problem with my work than the software., Keeping my accounts and the accounts of clients secure. I am no longer using duplicate passwords on any sites. It makes it easy to update passwords quickly and I never have to worry about whether I'm capturing the updated passwords., 10.0\n578, lastpass, Rose S, Small-Business, 2022-08-02, Makes life easier for the entire office, The ability to securely share passwords with other users. Also the auto-password generator is awesome - I never have to worry about coming up with my own passwords anymore, and I can always be assured I have a secure and unique password for each site., The plugin doesn't work well in Safari. I don't use that, but several other users in the office do, and they constantly have problems with the plugin disappearing from their browser. Also, sometimes if a user changes a shared password, it doesn't update for the users it was shared with, which you'd think would be an important functionality., We no longer have to remember multiple passwords or use short and non-secure passwords. It makes it so much easier to log into all the apps we use every day, and is very helpful for those who need to share passwords without exposing sensitive data., 9.0\n579, lastpass, Roberto M, Small-Business, 2022-11-15, Cross platform means: No more forgotten or overly simplistic passwords!, The thing I love about LastPass is that I can set a password on the go on my phone and then use it on my desktop later. Or vice versa. It's just so convenient., I don't love that from time to time it won't unlock the vault until you click a link sent to your email. I tripped over that a few times. Not very intuitive., I dreaded having to remember passwords so I kept using the same one for everything. I hate jotting complex passwords down too. So this helped me fix all of those., 10.0\n580, lastpass, William P, Small-Business, 2022-10-31, LastPass is a solution that I relied on as soon as I started using it, LastPass balances usability, convenince and security in a beautiful way. I am able to safely store and stregnthen my passwords without being bogged down in going to great lengths to retrieve them., LastPass does not always pull the username from certain fields when adding to the Vault. This is usually the case where the password is entered on a second screen when setting up a new account., LastPass allows me to effortlessly create very complex passwords while securley storing them. They are only accessible to me, and I feel way less stressed about being hacked, because all of my passwords are unique., 10.0\n581, lastpass, Scott W, Mid-Market, 2022-11-15, Convinient and Secure, The ability to have all your passwords at the tip of your fingers, whether on mobile or on a browser. LastPass also helps with creating unique and secure passwords for all your platforms, without the hassle of writing them down or remembering them., Occasionally the integration of the LastPass app on an iPhone can be clunky, which is only a mild annoyance and requires only a few extra clicks., LastPass helps with creating unique and secure passwords for all your platforms without the hassle, and unsecure method of writing them down or remembering them, 10.0\n582, lastpass, Gail P, Small-Business, 2022-11-15, Best value for peace of mind, Excellent encryption and super easy to use. Alerts if there appears to be a pw issue.\nI feel my passwords are safely stored where only I can access and use them. Peace of mind and no paper lists of passwords!, Well, I guess you have to pay for it, but I used the free version for years before getting the premium. That worked just fine. I really don't see a downside., Confidentiality of my passwords and thus my data.\n\nSaves me time in searching for a password I haven't used in a while., 10.0\n583, lastpass, Verified User (Anonymous), Small-Business, 2022-11-07, Well Organized with Creators who Care Service, Obviously the ability to vary my passwords infinitely is the biggest plus. The feature warning you if you've duplicated a PW between two sites is also nice., I don't know if this has been fixed, but the experience signing in to apps on iPhones has frustrated me in the past. The software would request my master password but then re-direct me into a different part of the system and ask for it again. My workaround has been to use finger ID, because re-typing the master PW was REALLY annoying., I don't think passwords are going to be the way we enter secure areas for a very long time, but obviously while this is the case, LastPass solves the problem of being human and running into a brick wall when trying to remember complex passwords., 9.0\n584, lastpass, Jounghoon B, Enterprise, 2022-11-15, Without Lastpass, I can't login anywhere, The best thing is that I only need to remember master password, and then all other login information is in Lastpass, with secure password, even I don't know. :), Sometimes it doesn't work with iOS very well. but more than 90 % of time it works great. Not sure about Android device because I don't have any of them. Overall, it is great product., Lastpass lets me have a very secure password. I don't have any problem with security. Never had any issues, and I can be in peace of mind., 10.0\n585, lastpass, George F, Small-Business, 2022-11-15, LastPass makes every day office life so much simpler., Only having to remember ONE password, and knowing that all my other stuff is secure. Also, finding sites in the \"Vault\" isn't difficult when needed., Only thing I have a problem with is the the red icon in form inputs fights with the native one sometimes. I wish I could move it or turn one or the other off, or control the z-index or something., Saves time and gives you added security related to passwords. ONly having to remember one is fantastic, knowing that all your stuff is secure is great., 9.0\n586, lastpass, Shawn S, Small-Business, 2022-11-08, I\u2019ve tried them all and LastPass wins., The ability to securely store and access passwords that are complicated and otherwise impossible for a mortal to remember. Others do this also but LP is simple and cost effective., It's not perfect so sometimes LP will not be able to decoder the structure of the web page and fails to trigger. It also cannot \"see\" the login screen for some apps., LastPass serves my healthcare clients well as they have soooo many platforms to acces in their typical workflows. Before I introduced LP many practices were reusing the same pw for multiple sites., 9.0\n587, lastpass, Erin N, Small-Business, 2022-11-16, Worth it for the extra features, I like the flexibility and bring able to use LastPass across all my Mac devices. The face recognition is helpful and unlike keychain, I am regularly alerted when my passwords are compromised or low security., Login can be a little frustrating if you forget your app password, but it's not such a big deal that it would keep me from using the service., Last pass allows quick login to all the sites I use for buying materials, using software, banking, etc. for my business, making me more productive and safe., 9.0\n588, lastpass, James Dean B, Small-Business, 2022-11-15, Safe and secure, but most importantly, easy to use., Centralized password protection. Accessing my password vault from any device (PC/Mac/Android/iOS/etc.) is incredibly useful. Generating secure passwords and then immediately storing them is fantastic. So many passwords, one place., On Android there's some hiccups regarding overlays and ability for it to read sites or logins correctly. Newest release fixes a lot of that though. UI/UX is getting better all the time as well., Creating and remembering secure passwords is a HUGE pain. One vault storing it all is incredibly helpful, but even more imporant is making sure that it's secure., 10.0\n589, lastpass, Verified User (Anonymous), Small-Business, 2022-11-15, LastPass has addressed all of my password concerns., Being able to have LastPass in my browser allows me to use it on my phone, home computer, and work computer. I also like being able to turn off autofill when I find myself on a website that hasn't been built correctly, and as a result, the fields need to be manually completed., There are times when LastPass thinks it needs to create a new password as a result of my typing in an authorization code. There are also times when LastPass autofills the same information into multiple fields., As an application manager, I have multiple user names for the same site. LastPass allows me to save and easily retrieve the appropriate user name and password depending on what I need to accomplish., 10.0\n590, lastpass, Verified User (Anonymous), Small-Business, 2022-11-08, Great password manager across platforms!, LastPass has apps and extensions for all platforms (Windows, iOS, OS X, etc.) that you might want to use it on. The seamless design and ease of use are critical. The software behind the system makes moving between devices easy., The ability to change duplicate passwords is helpful, but not perfect. Many sites don't make it easy for you to upgrade to longer, more complicated passwords. The ability to control password length is great, but other websites need to support longer ones., LastPass is the next best solution to carrying around a password book. If you have an online presence in the digital world, you know the password situation is out of control. Passwordless options are coming, but they will take a while to roll out., 10.0\n591, lastpass, Jacob M, Small-Business, 2022-09-13, Great Password Manager for Businesses, LastPass' interface is really easy to use. It's far and away much better than some of its competitors. Also the security checks it runs against all of your passwords and emails/usernames are incredibly helpful at making sure your accounts are secure., You really need to be using the paid version to have any", "doc_id": "1449054d-6aab-4d37-9173-d8f20188fe48", "embedding": null, "doc_hash": "fe95a05bf715d7f951c7fa19fa0f4226bfb319857046ac328403833680be865d", "extra_info": null, "node_info": {"start": 392024, "end": 407802}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "a81b8e69-8d80-4210-bdc6-c86fd53ac89d", "3": "979186d9-35a8-4307-9b0c-1448cb9f0b8e"}, "__type__": "1"}, "979186d9-35a8-4307-9b0c-1448cb9f0b8e": {"text": "perfect. Many sites don't make it easy for you to upgrade to longer, more complicated passwords. The ability to control password length is great, but other websites need to support longer ones., LastPass is the next best solution to carrying around a password book. If you have an online presence in the digital world, you know the password situation is out of control. Passwordless options are coming, but they will take a while to roll out., 10.0\n591, lastpass, Jacob M, Small-Business, 2022-09-13, Great Password Manager for Businesses, LastPass' interface is really easy to use. It's far and away much better than some of its competitors. Also the security checks it runs against all of your passwords and emails/usernames are incredibly helpful at making sure your accounts are secure., You really need to be using the paid version to have any benefit. Their free version locks you down to a single device which makes it mostly useless. There are better competitors if you're looking for a free solution., LastPass helps keep all of the logins across all of our employees secure. It also makes sharing login information across accounts easy and secure since no one has ever to be given a password or username., 10.0\n592, lastpass, Sarah P, Small-Business, 2022-07-05, Great, straightforward, solution for ANY team., If you deal with other people's information, as my company does, LastPass is a must. We use it to organize sensitive client credentials, which has never failed us. Its level of security offers us flexibility if we have a vendor or team member that needs access but don't want to share the actual password. My team and I couldn't imagine functioning without it., The only 'struggle' we have is sometimes we have team members file things improperly or not in the proper shared folder. But besides that, any downsides are so trivial., LastPass solves our problem of being able to keep client information safe, in addition to sharing internal information with specific team members in a granular way., 10.0\n593, lastpass, Travis T, Small-Business, 2022-07-12, Everyone should use a Password Manager - Especially one like LastPass, It works across all of my devices types: phones, tablets, PCs, most browsers. It's responsive with lots of options for 2FA. I use it for business and personal and I especially like the personal linking feature so I can keep my work and personal passwords separate whilst being able to access them through the business account. SSO with AZURE AD and Geo-Blocking sign-ins is also a great business add-on., Not being able to do sub-folders inside of shared folders means you have to create lots of shared folders for organising passwords which need to be shared with many team members. Also missing a password audit report for who used a shared report., Password management: remembeing, creating and using passwords. It handles all of these for you so all you need to do is sign-in with your master password and MFA (everyone should be using MFA too!), 10.0\n594, lastpass, T R O O L S, Small-Business, 2022-11-08, Last Pass Saved my bacon Many Times!, I love that i can access my account from anywhere, anytime. It's secure and quick and I don't have to worry about carrying a ton of passwords and usernames everywhere I go., Only once in a blue moon does the password keeper not add my info.. it takes a minute or so to load or refresh., I keep a lot of sensitive information for my company and my clients. Last pass gives me peace of mind and with only one password I can access all I need., 10.0\n595, lastpass, Verified User (Anonymous), Mid-Market, 2022-11-15, Secure and Reliable, I love that any time I access a new site and create a password, LastPass will send me an automatic \"Save Password\" notice. It's easy and fast to use LastPass. I also love that it automatically fills in passwords for me., I can't say I have come across anything I dislike about LastPass. I haven't had any issues since I started using it several years ago. All I need to do is remember one password (the one for LastPass) and I have all my sites and passwords at my fingertips., LastPass is solving my problem of remembering passwords. When I am constantly changing passwords for work sites, it is so helpful to have LastPass update and save each new password., 10.0\n596, lastpass, Prem K, Small-Business, 2022-09-12, nan, Lastpass is a very secure and trustable software for password management. I avoid the hassle of typing and remembering passwords using LastPass. I can encrypt the password of all my social media accounts, bank accounts, card details etc., Compared to other software, LastPass is a better option for managing passwords, but I think LastPass is too costly for users as well as its interface is not good. It should improve these things., I can safely generate unique passwords for my business accounts and encrypt the passwords in the LastPass vault. Using LastPass, I can protect all my business and bank accounts from getting hacked. I can safely share the passwords with a trustable one., 9.0\n597, lastpass, Lee G, Small-Business, 2022-11-27, Every password is STRONG and UNIQUE, It works across all my devices, and it is easy to log in without ever having to remember or type a strong password., I can't help but worry about security. They claim it's safe, but so did FTX and Luna. Trusting anyone is tough these days., All my accounts have unique and strong passwords. I don't have to worry about one compromised account leading to others. Combine this with strong MFA, and you are pretty safe., 9.0\n598, lastpass, Erik E, Mid-Market, 2022-06-29, LastPass is awesome., I use LastPass both corporately and personally. It allows me to securely store and share passwords with my family and co-workers in separate environments and happily generates random secure passwords for me, which prevents me from re-using the same one. Additionally, I appreciate both the \"secure score\" - indicates poor password practices - as well as a heads up if any credentials should be rotated, replaced, or are otherwise recommended to be changed. The ability to access my password vault from my phone, PC's, and web browser makes it convenient to use., The only REAL downside I can identify is yes; if Lastpass were to be compromised, all of my passwords and information would be sold to the highest bidder. In this case, however I recall LastPass once thought they were compromised, and immediately triggered resets and communicated directly with their user base; They got in front of it, even though it turned out to be a false positive. This behavior has cemented them in my head as an immediate recommendation in this market., Corporately, LastPass is allowing my colleagues and me to store and share passwords for accounts as needed without having to update a master spreadsheet (which is forgotten about, admit it...). This allows us to make more secure passwords for serivces, and keep them in sync between all of us., 10.0\n599, lastpass, Peter R, Small-Business, 2022-11-15, I use LastPass to free up brain power!, LastPass is a great way to remember all your passwords, organize information, automatically fill in passwords you use often, and free up precious brain space., LastPass doesn't work to auto-fill passwords when the login id and password occur and separate screens (login > enter > password > enter)., LastPass solves the problem of creating safe passwords, storing passwords, organizing passwords (and other important info.) and being able to access those passwords efficiently. It's a lifesaver on mobile and on my laptop., 9.0\n600, lastpass, Zachary M, Small-Business, 2022-11-15, This made my life so much easier, I love the easy access to all my passwords and knowing that if something happens my information will be accessible by who I choose. The fact that I can randomize all my passwords and not have to remember them or write them down is so amazing., Sometimes the app popping up and keeps coming up when when you try to close it., The struggle in the office is that the owner has passwords for all the different accounts and suppliers and we don't want to constantly pull up a password list from the front each time we need a password. With Lastpass we can set it up on each computer and access the passwords we need right away without the headache., 10.0\n601, lastpass, Lisa N, Small-Business, 2022-11-15, What a relief!, Thank goodness for Last Pass. I must admit I was reluctant to set up an account for years but now I am so glad I did it. There were just so many passwords for different things and passwords that had to be updated regularly, I was starting to lose the reason! I love that every password I have now is secure, unguessable and different from the others. The chrome extension is brilliant and it all just works., I have found it a little tricky to share passwords with my suppliers, such as web developer. I might be doing something wrong, but that didn't always work. Also the Last Pass Authentication app doesn't work for me., Security, safety, time, hassle., 10.0\n602, lastpass, Reg G, Small-Business, 2022-11-15, Love LastPass!, I love the integration across all my devices and the ease of use to add and update user IDs and passwords. I also appreciate the security features that guard my accounts and notify me of duplicate or exposed passwords., Not much to dislike about Lastpass other than possibly the sharing feature is cumbersome for those who do not have LastPass accounts and have to set one up before seeing the shared information., In my position, I have well over 300+ user IDs and passwords to keep track of, and LastPass does this for me very well. It also lets me know when information is found in the darkweb if passwords are stale, too easy, and so much more., 10.0\n603, lastpass, Keith B, Small-Business, 2022-11-15, Can't Live without LassPass, We use LassPass constantly for both personal and business accounts. We have one level of use for employees and highly confidential accounts under greater security. We have been using LassPass for years and have been exceptionally pleased with performance., I forget to refresh LassPass updates and forgetting to do so in advanced settings will give the appearance of a new password being wrong. Trying to login to some sites without refreshing can cause you to get logged out. My fault not LassPass' fault., We need two levels of secure logging in to sites at work. One for employees and one for owners. LassPass readily solves this problem for us. I am very pleased with this solution., 10.0\n604, lastpass, J A M E S P, Small-Business, 2022-09-06, Easy password management across multiple platforms, including teams., Lastpass is a great product and easy to use. Lastpass makes it easy to store and access passwords, including password history. With the web browser extensions installed, updating passwords is a breeze for sites that require periodic password changes. The included password generator tool is easy to access and a web browser, and easy to dial in the password strength. The multi-platform compatibility makes it easy to use on a PC, android, and iOS device. Sometimes it is necessary to share passwords and login credentials with colleagues or family members; Lastpass makes this easy with shared folders. Need to keep confidential notes? Lastpass has a solution for that also., The downside to using LastPass inside of Google Chrome or other browsers is redundant password management. The current workaround is to disable auto-fill features inside of the browsers. It would be nice if lastpass could easily be the default password management software and automatically disable browser-based password management., There are websites my team needs access to on their personal and work devices. Setting up a shared folder inside the password management console makes this easy., 10.0\n605, lastpass, Bert B, Small-Business, 2022-11-16, A very easy and complete product in which passwords but also other relevant information can be saved, many things :\n- in case multiple user accounts for a website, it shows the various possibilities from which you can use\n- automatic update in case of password change\n- if you want the system can create a password with various options\n- It checks regularly if passwords are good enough and not used multiple time and advises\n- a lot of additional information can be added to each website/document/card, I have no things that I dislike with this product, - it remembers the passwords\n- It remembers additional information that might be handy when you login at a site\n- it makes life much easier, when you have many site to login, 9.0\n606, lastpass, Kim L, Small-Business, 2022-10-18, I love using LastPass for password management for my team., I love using LastPass for password management for my team. We have a relatively low turn over in our business, but when we do I do not have to worry about the security of any of our sites! I know with the click of a button I can completely remove access. I no longer have to change every password. As a business owner, lastpass takes one less worry off my plate! And it is super helpful that I don't have to remember all our passwords!!, Not much to dislike!! It has made managing on boarding and off boarding of employees so much easier!, I do not have to worry about the security of all of the sites that I have shared with employees once they leave our organization., 10.0\n607, lastpass, Brittney M, Small-Business, 2022-11-15, Seamless Password Storage, I love how convenient last pass is. The taskbar app prompts you to save passwords and also prompts you to auto fill using Last Pass saved passwords. The taskbar is my favorite because you can search your password database right there, without needing to open an additional window!, I wouldn't say I dislike anything about last pass, but I would love to see an additional feature for the family groups to be able to see each other's passwords., Last pass makes it easy for me, as an executive assistant, to compile my and my boss's passwords in one easy place so I can do anything she needs me to with any account with ease., 10.0\n608, lastpass, Nico G, Small-Business, 2022-09-07, It simplified why life, I just need to remember 1 password, lastpass takes care of the rest.\nIt generates passwords for sites, it detects the site and fills the information.\nAnd also detects when you have entered a password and allows you to store it., There are some sites with rules that are very specific and with last pass configuration it is not always possible to generate a password for those.\nSomething that sometimes fail is the auto update password for sites.\nSometimes I want to use a very stupid password for sites where the security is not that important for me, it would be cool if there were a way to tell last pass, do not remind me that these sites have the same password., It solves having to remember different passwords for different sites, also having to think on a password.\nI'm definitely more productive with it and less stressed, 10.0\n609, lastpass, Verified User (Anonymous), Small-Business, 2022-11-16, High recommend for teams, soft recommend for individuals, The most important thing: use a password manager. LastPass is a capable option, though there are others. Use randomly-generated passwords, never reuse them, and sync between your devices. Then, you'll only need to know one password...your Last Pass, if you will.\n\nLastPass Pros:\n\u2022 Cross-platform compatibility and syncing (browser-based, OS-based, and mobile)\n\u2022 Shared folders for enterprise/teams allow lots of flexibility (particularly for MSPs or large organizations)\n\u2022 Built-in password generator with flexible options\n\u2022 Password history is saved in case you *meant* to change something but got distracted\n\u2022 Offers one-click password", "doc_id": "979186d9-35a8-4307-9b0c-1448cb9f0b8e", "embedding": null, "doc_hash": "0dc0d4193aaeaf7e8b95ed0755f90e393e1e2ca30814b036359200b500ec25bc", "extra_info": null, "node_info": {"start": 407792, "end": 423627}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "1449054d-6aab-4d37-9173-d8f20188fe48", "3": "10933a86-3035-4674-97b2-8773d7c523ca"}, "__type__": "1"}, "10933a86-3035-4674-97b2-8773d7c523ca": {"text": "10.0\n609, lastpass, Verified User (Anonymous), Small-Business, 2022-11-16, High recommend for teams, soft recommend for individuals, The most important thing: use a password manager. LastPass is a capable option, though there are others. Use randomly-generated passwords, never reuse them, and sync between your devices. Then, you'll only need to know one password...your Last Pass, if you will.\n\nLastPass Pros:\n\u2022 Cross-platform compatibility and syncing (browser-based, OS-based, and mobile)\n\u2022 Shared folders for enterprise/teams allow lots of flexibility (particularly for MSPs or large organizations)\n\u2022 Built-in password generator with flexible options\n\u2022 Password history is saved in case you *meant* to change something but got distracted\n\u2022 Offers one-click password change for some sites (it logs in as you, goes throught he password change process, and generates a new one all at once)\n\u2022 Vault is saved locally in every context, so you don't need to be connected to the internet to grab credentials\n\u2022 Authenticator app is secure, attached to your account, and backs up for recovery to new devices (so you're not hosed if you lose or change your phone, and you don't have to rebuild your entire library)\n\u2022 Authenticator app also lets you rename, manually arrange (though no gorups/folders), and search for entries\n\u2022 Entries can be saved with TOTP 2-factor keys for simple sharing\n\u2022 Automatically recognizes credential and PII fields and offers to auto-fill (usually)\n\u2022 Syncing is quick but there's also the ability to manually sync if you *just* changed something and need it reflected\n\u2022 Lots of different templates for saving different kinds if information beyond website credentials (PII, credit cards, server/database credentials, etc), LastPass Cons:\n(Note: this is all for current versions as of November 2022; any of these may be fixed by the time you read this)\n\u2022 Multi-platform use requires paid account (can't fault too much but it's a ding)\n\u2022 Only one admin can manage Shared Folders (I have to ask the other guy to do it even if I'm the one working with a customer...this may depend on our subscription tier)\n\u2022 It's counter-intuitive but for Apple ecosystem users, the iOS app is the way to go because of the ability to copy-paste across devices...but LastPass doesn't do a good job of recommending this for users\n\u2022 Native macOS app (which is also the Safari extension) is borderline unusable because of performance freeze-ups, even on well-speced devices (extension is fine though)\n\u2022 In iOS app (not sure if this also applies to other mobile platforms), joining a saved SSID is a pain. Only website passwords are searchable with the automatic pop-up, and WiFi credentials are \"Secure Notes\" rather than sites, and you also can't move back and forth between WiFi login and another app. The required workflow is to copy the password, switch to settings, join the SSID, and hope your clipboard hasn't expired by the time it's done loading. This is particularly annoying for hidden networks, as you have to manually type the SSID quickly enough before pasting the password. This may be an iOS quirk more than LastPass, I'm not sure\n\u2022 If you search the Authenicator app for a 2-factor code, the confirmation pop-up that the code has copied doesn't reposition itself to be above the keyboard you used to perform the search, so you have to hope it copied\n\u2022 TOTP cannot be used from the mobile app (so you must use the separate Authenticator app even if you have TOTP configured)\n\u2022 TOTP settings clear when passwords change\n\u2022 There is no QR reader for TOTP setup, so you have to use a separate app to extract the key (unless the service you're using provides the key for manual entry)\n\u2022 Doesn't always handle sites that present User ID and Password fields separately\n\u2022 Mobile app and browser extensions seem to have been designed by separate teams that don't coordinate, as menus are completely different (example: the manual refresh option mentioned in Pros is in Extension> Username> Advanced> Refresh Sites on the desktop browser extension, but Settings> Actions> Refresh Valut on mobile...made more confusing because the app also has \"Advanced\" but it's a completely different set of options)\n\u2022 Lacks the ability to manually say \"These are separate sites\" so LastPass doesn't suggest credentials for a bunch of subdomains within one site (service1.organization.com, service2.organization.com, etc). The reverse is also lacking, in that you can't assign multiple addresses to a single site credential (local IP, external IP, and DNS address, for example).\n\nThe Pro/Con volume is the same, but IMO the Cons are all nitpicky gripes rather than major issues., As an MSP that coordinates with on-site admins, it's important to have a shared bank of secure credentials for myriad services and devices. LastPass performs that task admirably., 7.0\n610, lastpass, Ralph C, Small-Business, 2022-11-10, The BEST Password and PII Management App Available!, I have been using LastPass as my password manager and a central location for all my other personal information like bank account numbers, driver's licenses, credit cards, passports, software licenses, and more., I can't think of any things that I dislike., It keeps my passwords, and personal information like passports, driver's license, software license, credit cards, bank accounts, and so much more. I love the ability to update my individual passwords and generate multi-digit passwords on the fly. I also like the one master password with military-grade security to protect my information. I also love using this on my PC, phone, tablet, etc. If I can access the internet, I can get to my account., 10.0\n611, lastpass, Verified User (Anonymous), Small-Business, 2022-11-15, LastPass is an important part of our security protocol, LastPass helps our team manage complex passwords and allows me to ensure my team's compliance. I am able to set up reporting to 'gamify' our team's password security score. It really is key to our password security., It's not perfect. Some sites struggle with logging people in. Some staff struggle with using it properly - which is a user error issue not an issue on LastPass. Some of my staff get frustrated with LastPass because they seem to be using it improperly. We do training for all new employees that includes LastPass training and annual refreshers, but we still have some challenges at time., 1) I need to ensure complex passwords in a centralized way. This dramatically improves our security. 2) It allows me to share documentation on our password policies and implementation with our clients. 3) If allows me to give my staff a tool to better secure their accounts., 9.0\n612, lastpass, Verified User (Anonymous), Enterprise, 2022-11-15, Stop Thinking About Passwords, My favorite feature of lastpass is its integration with biometric authentication on Andriod and iOS. Being able to use my fingerprint to log onto any site is easy. This feature makes the service worth it for that reason alone., I dislike the search function in the app. Maybe I do not understand how it works, but sometimes I feel like I cannot find a password I just saved. It can be frustrating when creating a new account online, saving the autogenerated password, then not being able to find it. I think this has something to do with 'creating account page URLs' not being the same as the main sites., I have literally 100's of sites I need to use. I could never remember a unique password for each one. Last pass allows me to have peace of mind that compromised data from one random website does not risk the security of my other accounts., 10.0\n613, lastpass, Rebecca S, Small-Business, 2022-09-08, Great Password Encryption Service, LastPass is helpful to our organization as it keeps all your passwords for our subscription services stored in one place. You dont have to remember 8 different passwords or risk writing them down or keeping them in an unsafe place. The browser extension is straightforward to use. Sharing passwords is very easy and convenient between users in your orginization., The user interface is not the best; there is some trial and error when creating folders on the web page. It could also be more aesthetically pleasing. But there is really nothing I dislike., LastPass is solving the problem of password encryption and ensuring that all of our organizations passwords are stored securely and so you dont have to memorize or remember passwords to every single service you use. It is also able to store credit card info and share passwords between users easily., 9.0\n614, lastpass, Gloria O, Small-Business, 2022-11-08, LastPass is your Last Password Keeper, I like best that I can access my passwords from anywhere and I can edit the password later. I also like that I can create folders/sections and organize my own as well as shared from clients. I like I can share it across multiple devices. I will also ay that support is A+. (and usually a deal breaker for me if I have to struggle with support or get someone that treats me like a twinkie), The main problem I have is trying to remember the \"master\" password to do some things with it that require extra authentication. If I am not at my desk to access the password I have written in another spot, I cant get in to my Lastpass. I also find it hard to \"teach\" some of my clients how to use it who are not exactly tech-ish. It is still a bit cumbersome for me. Things dont always work the way I expect them to. KDB is not easy to navigate but if you know how to search, you get it. User interface could be streamlined...I dont use all the tools that I think are available to me on my subscription because I dont know what they all do and I dont have time to figure it out., I have one place to put all my account logins and feel secure that they are safe. having it available on multiple devices is great .. Its great for sharing access to other accounts w/out comprising their security., 10.0\n615, lastpass, Verified User (Anonymous), Small-Business, 2022-11-08, The highest security for your passwords, with a pretty good interface, LastPass encrypts its password store before it arrives at its servers. Even if the bad guys hack into the LastPass servers, your information is useless to them. The security of your password store depends entirely on you and the strength of the password you choose. If you're a knowledgeable computer user, LassPass is a good choice.\nThe autofill feature of LastPass works pretty well. I like its ability to launch a new tab and navigate the login page of many pages so that with one click, you're in.\nThe synchronization between LastPass on a computer browser and LastPass on a phone is very handy and works well. If a password is updated on one platform, it's available everywhere fairly speedily., The password vault does not support nested categories very well. Searching is very strong, but organizing the vault is not easy and navigating the vault is awkward.\nWhen autofill works, it's a beautiful thing. When it doesn't, LastPass sometimes has trouble getting out of the way.\nTo use LastPass effectively, you must understand what it's trying to do and how. For that reason, I recommend it mostly to computer-savvy users. Causal computer users are often confused by the many pop-up menus that seem to appear at random. That's not all the fault of LastPass because there are so many styles and implementations of login forms. Still, it is an obstacle., My passwords and some critical information are at my fingertips, no matter where I am or what device I am using. That information is safe to a degree that is under my control., 8.0\n616, lastpass, Laura M, Small-Business, 2022-11-08, I wish I would have known about this product years ago, I use lastpass everywhere. For all of my work users, my kids, my parents and anyone else who needs passwords. I store their passwords in my last pass so even if they forget their master password, I have it and we are all protected. I love that now my parents and kids and employees can access everything they need without having to have passwords written down everywhere. I feel much more secure having this in place. It is also very convenient for my husband and myself so we both always have the most updated password!, I have not found a downside yet beyond needing to remember the master password, but I feel like I have solved that as well. I love that you can use face ID on your Iphone as well., There is no more writing down of passwords, or having all the passwords be a version of a pets name or a birthday or address. now all the passwords are random because we do not need to remember them, 10.0\n617, lastpass, Paul B, Mid-Market, 2022-09-06, Best Password Manager, Easily create secure random passwords for multiple sites. With a family, team or business plan, you can create shared folders and grant specific users access to the passwords in the folder. Works seamlessly on desktop and mobile devices. Easy to implement and easy to use. Chrome extension makes log-ins easy! Stores passwords, notes and more. Easily share passwords securely to others by sending them a share invite that they then are required to authenticate with LastPass to see., The free version now only allows mobile or desktop. You are required to be on a paid plan to use both. It can be difficult to help an end-user reset their password on a business plan., Helping my family and business use unique secure passwords provides security. Companies and websites are being hacked every day, and with strong uniuqe passwords, your risk is considerably lower., 10.0\n618, lastpass, Verified User (Anonymous), Small-Business, 2022-12-13, Simple to use - Available where you need it, Simple, easy, effective tool - and being able to use as an app or extension makes it truly functional. The interface, app, etc. are very easy to use - I've used \"enterprise\" tools that are way too \"full featured\" which means people aim to never use them! Having a single solution that encourages people to not just protect corporate data but also better address online security in their personal lives, is phenomenal., In the family version, having to clone existing passwords to shared folders is a pain. Moving them would have been ok, but wasn't an option. (If you're starting from scratch, that's not an issue), Primarily, creating secure and unique passwords for every site or app that you need. Secondarily, being able to share those to family-members or colleagues, as appropriate., 10.0\n619, lastpass, Doug C, Small-Business, 2022-11-15, LastPass-great password management tool, I have so many accounts that I needed a secure password management resource. I have been using LastPass for years and it helps to keep my passwords in one central location., I can't say there's anything I dislike. I have been using Lastpass for five years and this password manager app has come in very handy. My friends and family would also agree. It's a valuable too to keep one organized., The Team at Lastpass is constantly developing more efficient methods for the user. I find that the easy navigation in the app saves me time and allows me to find everything I need relatively quickly., 10.0\n620, lastpass, Joshua H, Small-Business, 2022-11-16, Great value for a great service, My partner and I have multiple accounts and memberships that we share but are in only one of our names. Last Pass Families makes it super easy to share login information for these accounts. Also, I like the peace of mind knowing that should something happen to one of us, the other is able to access account information easily. Plus it has made it incredibly easy to create very intricate passwords that are much more secure., The Android app (on tablets specifically) isn't as reliable and does not consistently prompt to autofill", "doc_id": "10933a86-3035-4674-97b2-8773d7c523ca", "embedding": null, "doc_hash": "8f01c122a5b6e7aaba9e84170b2f04ec6480f4a4cb6a45ccdc6bfc852a03157a", "extra_info": null, "node_info": {"start": 423668, "end": 439499}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "979186d9-35a8-4307-9b0c-1448cb9f0b8e", "3": "4b6cf420-076d-47c7-9472-45c2918f7e33"}, "__type__": "1"}, "4b6cf420-076d-47c7-9472-45c2918f7e33": {"text": "The Team at Lastpass is constantly developing more efficient methods for the user. I find that the easy navigation in the app saves me time and allows me to find everything I need relatively quickly., 10.0\n620, lastpass, Joshua H, Small-Business, 2022-11-16, Great value for a great service, My partner and I have multiple accounts and memberships that we share but are in only one of our names. Last Pass Families makes it super easy to share login information for these accounts. Also, I like the peace of mind knowing that should something happen to one of us, the other is able to access account information easily. Plus it has made it incredibly easy to create very intricate passwords that are much more secure., The Android app (on tablets specifically) isn't as reliable and does not consistently prompt to autofill login info on Chrome, Managing passwords; creating very difficult passwords to improve security., 10.0\n621, lastpass, Megan M, Small-Business, 2022-11-15, Increased security and peace of mind, I've used LastPass for several years now and it has helped me manage my many passwords and increase the security of those passwords. I have more peace of mind that my accounts are secure., Nothing! Sometimes it doesn't notice my site login if the site sends it to a different URL but that's understandable. It's not all-knowing and If I'm not lazy I can easily correct the issue., More secure passwords and I no longer use the same password for every account. No more forgetting my password and having to reset everything or having one account compromised and frantically changing all my other ones., 10.0\n622, lastpass, Trevor G, Small-Business, 2022-11-15, Excellent Password Manager, The most helpful thing about using LastPass is the management of all my passwords. Not only does it help me organize them, I can easily create a new password on the spot., The least helpful thing about LastPass is services not recognizing it. I have passwords in my LastPass vault, but sometimes have to manually enter my details. It's not very time consuming, but can sometimes get annoying., The business problem that LastPass is solving is it enables me peace of mind. Securing my accounts, especially work related, is an incredible feeling. A weight is lifted, knowing that LastPass has my back., 10.0\n623, lastpass, Amber Lea P, Small-Business, 2022-11-25, Last Pass Saves my @$$, I love that I can use Face ID to login on my phone + passwords I use regularly on my computer are always at my finger tips. I often need to share logins with my assistant and secure sharing makes that easy as well., Haven't found anything to dislike yet. Even if I forget my master password resetting has been a painless process., As a business owner I have a lot of logins to keep track of- one location to store them all for a low annual fee is the best money I spend each year., 10.0\n624, lastpass, Nathan M, Small-Business, 2022-11-21, Easy way to manage passwords and improve password practices, Makes it easy to generate good passwords, and identify and fix past bad practices. The availability across many platforms, and integration with browsers and apps, makes passwords easily available when needed., It is sometimes a bit balky on Android phones, particularly older versions of Android. And there are occasional cases where it is confused by the form and doesn't fill on or swaps username and password fields when filling in., LastPass helps me maintain good security across many accounts, and makes it easy to access the passwords across the many machines I use. It encourages best practices., 10.0\n625, lastpass, Jakub K, Small-Business, 2016-01-19, LastPass - passwords that you need, this is the most usefull software, that i install at first on my computers... \n\nit is everything what you need, only one password, that has every anothe password, of course you could save you password to chrome, but lastpass is on mobile app too... and there you need deep integration to android and google OK. but there is apple and windows too... so there we are the LastPass. \n\nalso you can install android/iphone app and, its free (PC, browser)... mobile is about 1,99$ but you get, what you pay ;) \n\nand on new version > 4 ... this is best update ever, new UX, automatic logo and many many more\n, there is a concurent OnePassword, which have UX friendly layout and self-hosting option, but this OnePassword is comercial solution and you need to pay about 49$...\n\nanother bad thing is implemention to the system, on MAC os i miss shortcut on top bar, just cklick and open, but in chrome is fine :), security, every page, every hosting has another, random password :) easy to use, easy to setup, just install, login and ready to go :) , 10.0\n626, lastpass, Arthur F, Mid-Market, 2016-01-18, Bold and modern password manager, Unlike many other password managers, LastPass invests a lot on design and usability. From the moment that you install the app (Chrome Plugin) you can see that everything is designed to be responsive and modern approach. \n\nLastPass does not only manage your website login passwords but it also manages Wifi password which is pretty handy. It imports everything from your machine with one click during installation so you can have literally all your passwords in just one place. \n\nEverything is super intuitive and made to work out of the box. If you forget your password you will get an e-mail with the hint that you registered so that you can still try to remember it before going through the process of creating a new encryption key. \n\nLastPass also tells when you it knows a password from a website. So you don't need to search on the vault for your password when you want to login to any website, it will auto-fill with one click. \n\nAll the LastPass Apps (including the unfamous windows phone) are amazing. , Last pass can get pretty messy if you register all your passwords, wifi passwords and documents. Your 'vault' will have loads of entries and a lot of them will fall into the 'none' category which makes it pretty disorganized. LastPass comes with a search tool which helps you find the password that you are looking into. \n\nReview collected by and hosted on G2.com.Recommendations to others considering the product:Let LastPass import all the password it can find when installing it. Use the mobile apps as they allow you to take your passwords everywhere., Managing password. LastPass is very modern and solves all your problems without any hassle. , 9.0\n627, lastpass, Edward C, Mid-Market, 2016-04-03, The best password management software you need in this increasingly unsecure world!, There are many pros to LastPass that I don't think I can list them all in this review. First, and foremost, if you do not currently use a password management tool, please do yourself a favor and do look into it. It will save you tons of headaches in the long-run if you start early enough. In today's modern world, there are increasingly more and more need for security -- from the rise of identity theft to securing all our applications with passwords. LastPass is what you need to give yourself a peace of mind.\n\nOne of the main benefits of LastPass is securing and keeping your passwords synchronized between all your devices and the LastPass servers. LastPass uses AES-256 encryption and secure one-way hashing security algorithms (the same ones used by the US Government) for top-secret data storage. There is a very robust free version, a full documentation guide on getting started, and works on all major browsers., There are not many cons of LastPass - as some sort of encryption of two-factor authentication in between your logins is better than none. However, there have been times (rare, though) where customer service wasn't top-notch. There is a very long delay in responding to any issue tickets that you open with them, and most of the time, you would have to reset your passwords manually if they cannot help you., Securing passwords across multiple applications and multiple devices. A lot of users today reuse their passwords and do not realize the security hole that they pose upon themselves. This includes reusing passwords for sensitive information such as bank accounts and personal e-mails. With LastPass, you do not need to type in the passwords manually -- this is already an added benefit since your keystrokes cannot be tracked., 10.0\n628, lastpass, Anastasia G, Small-Business, 2016-05-15, Excellent until it isn't, It's decent\u2014it gets the job done (namely, password-saving, password-creating, and password-sharing among a team), but it doesn't do it without putting on a cumbersome fight., I personally dislike the interface, the cumbersome way in which it integrates via its apps and extensions, and the overall user experience. , My team regularly needs to share secure passwords among ourselves, as well as to generate secure passwords on the daily\u2014heck, on the hourly. LastPass certainly helps with that., 5.0\n629, lastpass, Darian R, Small-Business, 2016-04-01, Not bad, but could be better, It's easy to get started and start moving your passwords out of your browser and deduplicating your passwords for various sites and services with the added benefit of having your passwords with you.\n\nIt's easier than mistyping your passwords in and forgetting which password goes where as you start to diversify your passwords.\n\nI found that this is a good first step to getting started in the realm of password security., Clunky interface that gets confusing and doesn't feel as polished as it should. You are entrusting your digital identity to software so it is vital that the software exude trustworthiness and quality and for me that aspect is a bit lacking. \n\nI believe users are turned off from competitor products due to their initial price. However, after using LastPass for any length of time, and comparing it to some competitors you will notice that there is little to keep you using LastPass beyond the lower price tier.\n\nThe UI of the plugins, the cumbersome nature of the integration, and just the overall unfinished quality of the experience leaves a bad taste in your mouth., Secured password management, 5.0\n630, lastpass, Andrew C, Mid-Market, 2016-04-01, Great, convient way store paswords in one single secure place, I liked the easy way to add a retrieve passwords, as you entered a webpage, and create complex passwords for anything without having to remember them. The only thing you need to remember is your LastPass Password.\n\nIt is also great to be able to synchronise your passwords on to an iPhone, making it a great way to manage your passwords.\nThe user interface on the iphone is easy to use and automatically adds the website icons to the password making it easy to find your passwords., The one thing i did not like about lastpass is the pricing structure, although it isn't expensive, my preference is to pay a one off price rather than a yearly fee., To conveniantly store and manage work and personal passwords in a single place., 8.0\n631, lastpass, Adam John L, Small-Business, 2016-01-14, The Best Password Management Solution I've Found, I love that LastPass manages my passwords across multiple devices and browsers. To me this the killer feature of the software. Once its integrated and setup, so easy to use! A close second is the secure password generator. Now there really is no excuse not have secure passwords for all of your online accounts., At times the reminders that it displays get annoying. I realize that the reminders are there for my security, but once I dismiss something I should be given the option to never see it again. This is a small gripe and for the majority of users a very good thing. It is just a small annoyance for me., I am web developer so I spend 16 hours a day online and have many. many online accounts. I no longer have to worry about managing my passwords, creating secure passwords, etc., LastPass does it all and does it well. Now that LastPass is integrated into my workflow I can worry less about making sure my accounts are secure and more about getting work done!, 10.0\n632, lastpass, Melissa T, Small-Business, 2016-01-14, secure and worried free, I think it's really important to have secure, complicated passwords. It is especially important at my job. I really like LastPass because it manages all my passwords without me having to remember a million different combinations. I enjoy how seamlessly it fits into other services, I get into my email, my notes, and various other accounts with just one click. I also access a lot of my information remotely and LastPass makes it easy for me to log in and validate my identity without slowing down my workflow. I use it both at the office and at home for my personal accounts. I have also gotten my mother to use LastPass which is a great improvement from the list of passwords she used to keep on the refrigerator. , I'd like if it could give secure recommendations for passwords. I'd also like to be able to have tied but split accounts so I could have one for work and one for personal., I work with clients who have a lot of private information. Having secure protected information is a must but I also need to be able to access it quickly. LastPass allows me to have the most secure passwords without the hassle of having to look up various passwords every time I log in. Lastly, in the past I have struggled to get people in my office to use more complicated passwords. Without the need to remember all of them, people are more willing to use secure passwords., 10.0\n633, lastpass, Tyler C, Enterprise, 2016-09-02, The best application for storing your passwords in the cloud, The mobile apps are fantastic and work on all platforms - iOS, Android, and Windows, LastPass add-in for Microsoft Edge can be unstable, Eliminating lost passwords and risk of using same password on many sites, 10.0\n634, lastpass, Verified User (Anonymous), Mid-Market, 2016-07-15, Required at my company, but an obnoxious extension., It definitely does that it's supposed to do! It's great at password management., I hate how big and obnoxious all of the graphics are for the extension. EVERY site I go to has a huge banner added to it after I sign in, even if I already have that password saved! For a long time the \"never for this domain\" button never worked, but it hasn't happened lately, thankfully!, Secure password management, 6.0\n635, lastpass, Michael S, Mid-Market, 2016-04-09, Easy, indispensible security, LastPass is very simple and integrates cleanly to my browsing experience. I use it both to manage secure access to my applications, as well as enabling simple form-fills., From time to time the system gets a little zealous about filling passwords and has pre-populated when I don't want it to. And sometimes updating/changing passwords can feel a little clunky, resulting in changing a password on a site, but not updating it in the system, or vice versa., LastPass resolves my personal security when browsing the web. With the regularity of site hacks, it's important to not have shared passwords and LastPass makes that simple for me., 10.0\n636, lastpass, M, Small-Business, 2016-01-09, Reliable Password Manager Focused on Mobile, I have been using Keepass2 and storing the password database on 3rd party services like Dropbox for years but lately I needed to store my passwords and reach them from my smart phone. LastPass is a great service especially for mobile phone users. LastPass integrates with almost all the browsers available like Google Chrome, Firefox and Safari. It also supports mobile, which is a key feature nowadays. , LastPass import and export options are not satisfying. If you are migrating to LastPass from a different software like Keepassx, you have to move all the passwords manually. LastPass doesn't support .kdb files. Support for", "doc_id": "4b6cf420-076d-47c7-9472-45c2918f7e33", "embedding": null, "doc_hash": "2e1dce4eb5efa98a268a35766927e5d728833e4894911b218a265731aa391a91", "extra_info": null, "node_info": {"start": 439484, "end": 455330}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "10933a86-3035-4674-97b2-8773d7c523ca", "3": "b450018b-c568-4f48-b568-605b5f4063db"}, "__type__": "1"}, "b450018b-c568-4f48-b568-605b5f4063db": {"text": "of site hacks, it's important to not have shared passwords and LastPass makes that simple for me., 10.0\n636, lastpass, M, Small-Business, 2016-01-09, Reliable Password Manager Focused on Mobile, I have been using Keepass2 and storing the password database on 3rd party services like Dropbox for years but lately I needed to store my passwords and reach them from my smart phone. LastPass is a great service especially for mobile phone users. LastPass integrates with almost all the browsers available like Google Chrome, Firefox and Safari. It also supports mobile, which is a key feature nowadays. , LastPass import and export options are not satisfying. If you are migrating to LastPass from a different software like Keepassx, you have to move all the passwords manually. LastPass doesn't support .kdb files. Support for different languages is not complete yet, I'm waiting for Turkish language support., I setup LastPass on my Android smart phone, Windows 10 and Ubuntu computer to organize and synchronize all my passwords. As an active computer user I have hundreds of different passwords and it is quite hard to remember each of them. LastPass does it's job and keeps the passwords safe for me., 10.0\n637, lastpass, Peter B, Mid-Market, 2016-04-08, Great Password Safe Site, I love the fact that I can save multiple passwords and full log in credentials and have them in one place. The auto-login feature works really well. Also, the ability to share login credentials with peers is very helpful and a lot more secure than email., I constantly have issues with LastPass and Chrome. It doesn't always work. I have found that Firefox is the best browser for LastPass, I am a software consultant that manages multiple instances of Salesforce for many clients and using LastPass help keep all of the different credentials organized., 9.0\n638, lastpass, Andrew S, Small-Business, 2016-01-04, Long time LastPass user, love it, I love that it integrates with all of my browsers, my phone and even hooks into mobile safari to make password management really easy. I also love using the generate password feature so I don't have to come up with random passwords myself., The integration with Firefox was really nice, now that I'm using Chrome more I find it's kind of clunky, but that might be more of an issue with Chrome. It's also doesn't work 100% of the time with different websites. That probably has more to do with the website than LastPass, but at least I can always copy and paste my username and password out of LastPass to fill in myself., Instead of using the same password on all of my websites I can create random secure passwords that are different for each site. I don't have to remember any of the passwords, they are always with me., 10.0\n639, lastpass, Paolo F, Mid-Market, 2016-04-28, Probably one of the best password managers, It's multiplatform and has a plugin for every browser. Also, the browser integration is very good and it's very simple to add, edit or delete new accounts and passwords., The duplicate password warning is too invasive. Sometimes it's a little messy with generated passwords, but probably it's not a problem relative only to LastPass., LastPass helps me to manage all my passwords and it's the best tool to do this thing., 10.0\n640, lastpass, Erin A, Mid-Market, 2015-12-28, Keychain Management Backup for Safari and Chrome password keychains, I like that I can use LastPass as an extension on Chrome to backup my Chrome keychain. I also like the \"master password\" on LastPass that allows me to lock the passwords if needed. I also like that I can copy the password without ever seeing it. , I don't like that LastPass will save different iterations of the same site's login, and instead of replacing an old password with a new one, it will just save a second account for that site. I have a lot of passwords in LastPass that aren't current. , I'm keeping everything important safe, and backing up my Chrome keychain. I use the saved credit card feature, and that helps make purchases and other business operations more efficient. , 10.0\n641, lastpass, Tommy B, Small-Business, 2016-04-11, Business decision, Based on a master key, with plugin for all browser, and multi-platform, including mobile device. LastPass is one of the best Very secure., When you want to deal with service account, or have multiple account for the same service (live.com or google for example) it get messy., People were sharing password by email or IM, saving them in spreadsheet or text files. Having a central managed solution is the key., 9.0\n642, lastpass, Kyle M, Enterprise, 2015-12-22, LastPass, the best password manager, Last Pass is a great password manager, with decent integration into web browsers, a great security model, and best in class password generation. It currently stores about 400 passwords for me, which is a huge weight off of my shoulders. I also use the 'Shared Folders' functionality to share passwords with my wife., I dislike how it was recently sold to LogMeIn; a company who has been extremely flakey in the past by lying to it's customers about increasing prices and it's free tier product.\n\nAnother thing I dislike about Last Pass is that it is not open source. This is a huge pitfall for the product. An open source project like KeePass is much easier to trust.\n\nFinally, I wish the 'auto change my password' feature worked better and on more websites., I no longer need to remember any passwords. (Well, except for my master password), 10.0\n643, lastpass, Kleber S, Small-Business, 2016-04-01, Good on desktop browsers. The site on mobile is terrible., The integration with desktop browsers. is very handy and transparent. Sometimes, when you have more than one password to a site or trying to create a new one, it's gets messy., There is no free mobile extension. It's very hard and sometimes frustrating to get my passwords in mobile. It's clear that they are pushing me to sign the pro version. It's cheap indeed, but I don't want to be pushed., Saving my passwords in a centralized place. That's very handy., 7.0\n644, lastpass, Verified User (Anonymous), Mid-Market, 2016-04-08, Saves a ton of time, It makes it easy to generate complex passwords, and thankfully, you don't need to remember them. I also like the ease in which you can view a password in the LastPass vault. It makes it simple to walk over to a colleague who temporarily needs the password on an incognito window., My only dislike would be that sometimes LastPass doesn't pop up with passwords on certain dialogs., We have a ton of passwords that we use for company accounts. Those passwords need to be kept securely but also easily accessible. , 10.0\n645, lastpass, Jaime H, Small-Business, 2016-04-08, LastPass is a life changer! (Need better app integration for mobile), I love how convenient lastpass is. I save so much time every day using this tool., I wish there was better app integration for mobile. I would love to open apps and be able to login using lastpass without having to shuffle between the two apps. , We work with a lot of clients for whom we need to login to their accounts and handle a lot of sensitive information. Lastpass allows our clients to confidently give us the access that we need while giving them the confidence that their information is protected., 8.0\n646, lastpass, Verified User (Anonymous), Enterprise, 2016-04-08, A little clunky, but ultimately very helpful, Very secure way to keep passwords. A little clunky, but ultimately very easy to utilize. A lot of different websites have unique criteria for their passwords, so LastPass helps me keep all of them straight., Google Chrome integration almost feels intrusive. Every time I type a password into anything, even a temporary one, LastPass has a pop-up appear asking me to save it. This can be seen as mildly inconvenient, so not a HUGE negative., This is for personal use, and is helping alleviate the headaches of remember different passwords, since so many sites have different requirements., 7.0\n647, lastpass, Hunter C, Mid-Market, 2016-04-11, Good product for most security related things, but not everything, That it saves all of my passwords, meaning I don't have to log in each time. It auto-populates my username and password. The master password serves as a good way to secure logins.\n\nThe extension is also great way to get to accounts easily, It makes me confirm logins too often. Sends me emails that my passwords are not strong enough. Reseting password scan be confusing. Setting up things correctly at first is important, Managing all my passwords and usernames in one place, placing them under different tabs types, 6.0\n648, lastpass, Rodrigo A, Small-Business, 2016-04-04, LastPass on Mac OS X, The security level, and the company transparency when problems happen., I don\u00b4t like the browser plug-in. It does not integrate perfectly on every page, and disrupts the layout of forms. I prefer to use the native application, but it does not allow use only keyboard in OS X., Only the centralization of passwords., 9.0\n649, lastpass, Verified User (Anonymous), Small-Business, 2016-05-03, Very useful tool to protect our passwords, I love that when I set up a new user, I don't need to import all the passwords for each website. Only one plugin to set up with one password and that's it. (One to rule them all). The administration is also very easy to handle. I feel safe enough with my passwords being managed by lastpass., There are a few bugs with auto-filling fields and as well as master password being asked when it's been set up not to ask. This is a bit disruptive for the users but nothing we can' t overcome. , It's been helping us to protect the list of password that we have for all websites we use as well as giving specific access to certain users . It also helps us being extremely efficient when a new user comes in (no need for him/her to contact helpdesk and ask what the password for the website is), 7.0\n650, lastpass, Verified User (Anonymous), Mid-Market, 2016-04-11, Good Enough, One master login to rule them all. This is a very secure method to store passwords so you don't get logged out from your accounts., There are major sync issues if you need to combine two separate LastPass accounts. You are also screwed if you forget your master password., Keeping business information secure., 6.0\n651, lastpass, Roxie S, Enterprise, 2016-01-08, Best tool for the forgetful!, This product allows you to manage all your passwords in one easy place. You can access them via any browser, windows software, or phone app!, Nothing, this product is absolutely excellent, the free version has tons of options and the paid version allows for everything under the sun., Memory and security. You no longer have to write down a password and try to find it or remember it., 10.0\n652, lastpass, Eric W, Mid-Market, 2015-07-13, Lastpass makes web security so much easier!, I love that lastpass makes it easy to have unique, secure, random passwords for each and every website. I have 232 sites in my lastpass vault. Could I possibly remember 232 different passwords?? No, of course not. Do I want to carry around a piece of paper with 232 passwords on it? No. And I certainly don't want to have the same few passwords for every site - just one security breach and all my accounts are compromised. \n\nSo, that's the case in general for a password manager. Lastpass is particularly great because the mobile app is awesome, and makes it easy to login to site when I'm on the go. The security score is also good because it helps me identify ways to make my logins more secure (eliminating duplicate passwords, strengthening weak passwords, regularly changing passwords, etc)., This is picky, but the mobile app doesn't work seamlessly with all apps/websites. Usually it does a good job, and pops up a password chooser with the proper login, but for some apps it pops up the wrong website. I wish I could correct it and tell it which login to associate with which app. \n\nReview collected by and hosted on G2.com.Recommendations to others considering the product:Use it!, My business is more secure because I don't have duplicate passwords. , 10.0\n653, lastpass, Thomas S, Small-Business, 2015-07-12, Password managers should be mandatory, In the world we live in keep a check of lots of unique and incomprehensible passwords is absolutely vital, and it's impossible to do that all in your head. That is why you need do use a password manager to manage your log-ins, if one site is compromised then the password that is stolen won't compromise any of your other website log-ins because that password is unique. Not only that, but if you have multiple log-ins for the same website it's incredibly easy to just select which log-in you want (which you can name) and then log-in with it, without having to try remember which email address corresponds to each different account.\nYou can also set-up numerous accounts in one place for a family lastpass, The interface is very old hat and I've always struggled to understand certain aspects of it, thankfully if you're anything like me you won't need to to go into all the intricacies. My biggest issue is that my mobile account logs-off far too easily (but security has to come first so fair enough I suppose). Finally you are also trusting to have all passwords in one place, it's basically a honey pot for hackers that you fear one day will be broken into fully., It's a huge time saving, and not having to keep information in my head that simply isn't necessary to know. So it's more time focused on adding value and doing great things online., 10.0\n654, lastpass, Ronnie S, Small-Business, 2016-01-09, Long time user and love it, I have tons of password to manage not just for myself, but company and other users. Last pass allows me to manage these wonderfully and integrates into Firefox and other browsers seamlessly , The chrome integrations is probably the least cleanest, but using Firefox primarily resolves that., Password management , 10.0\n655, lastpass, Verified User (Anonymous), Enterprise, 2016-04-08, Simple Install and usage, Compared to a few others I used, LastPass was quick and simple to install. I really liked the ability to provide emergency access to parties I designate, As with most password tools, I need to upgrade to premium in order to sync ad use across my multiple devices, I need to generate strong passwords for many of the tools and sites used at work and home. Rather than fumbling around trying to create a strong password, LastPass handles that for me. And I do not have to remember the strong passwords because they are stored for me., 8.0\n656, lastpass, John R, Enterprise, 2015-07-22, Reliable, cloud-based password management, These days, you've got to use a Password Manager of some type to avoid re-using passwords or generating \"easy-to-guess\" passwords. I chose LastPass specifically because I can create passwords on one computer and have them instantly available on other computers (eg desktop & laptop, work & home machines).\n\nI also like the \"Auto Fill Forms\" feature that automatically enters my credit card details when making purchases (after prompting me again for my LastPass password).\n\nI like the ability to generate one-time passwords for use in insecure environments (eg public computers)., Sometimes the automatic form-filling feature enters my address details in the wrong fields, or it captures addresses that I don't want to re-use. But, it's easy for me to correct the data because LastPass highlights the auto-filled fields in yellow., LastPass allows me to manage my site-specific passwords in a secure manner,", "doc_id": "b450018b-c568-4f48-b568-605b5f4063db", "embedding": null, "doc_hash": "c3062e6b7aa940942cd4d34a70966f0ebdaae366aff7c9316981b1caf8df2deb", "extra_info": null, "node_info": {"start": 455323, "end": 470995}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "4b6cf420-076d-47c7-9472-45c2918f7e33", "3": "756adee9-21d6-4f7e-ad90-0e4af04d5e56"}, "__type__": "1"}, "756adee9-21d6-4f7e-ad90-0e4af04d5e56": {"text": "or generating \"easy-to-guess\" passwords. I chose LastPass specifically because I can create passwords on one computer and have them instantly available on other computers (eg desktop & laptop, work & home machines).\n\nI also like the \"Auto Fill Forms\" feature that automatically enters my credit card details when making purchases (after prompting me again for my LastPass password).\n\nI like the ability to generate one-time passwords for use in insecure environments (eg public computers)., Sometimes the automatic form-filling feature enters my address details in the wrong fields, or it captures addresses that I don't want to re-use. But, it's easy for me to correct the data because LastPass highlights the auto-filled fields in yellow., LastPass allows me to manage my site-specific passwords in a secure manner, yet makes them available to me when (and where) I need them. I try to get other people using LastPass, just to make it easier for them, too., 10.0\n657, lastpass, Verified User (Anonymous), Small-Business, 2016-01-05, Great for storing password and notes, I have been using LastPass from past 3+ years to store my credentials and notes. It increases my productivity by not entering the details in the field. Also, no need to remember passwords. It generates powerful password in few clicks. \n\nWeb portal is awesome and fast loading. LastPass can offer more flexibility in terms of free trial., UI can be much improved by implementing it in Angular JS and the mobile support can be extended and can be offered for free for 3 months at least. , No password to remember; Auto login, Envryption, and simple and intuitive UI., 10.0\n658, lastpass, F\u00e9lix L, Small-Business, 2016-04-07, One password to rule them all, Single pass get you acces to all your other password. Auto compl\u00e8te one site you previously logged on and awesome browse extension, Password suggestions could be more user friendly, To many password to remember if you want to have a diff\u00e9rent password on all sites. Recognise site you previously logged on to be more secure, 9.0\n659, lastpass, Phia V, Mid-Market, 2016-04-08, Free! Best free password management application., Free version meets most user's needs. Very good for a free application. Paid version also really reasonably priced. Great support on mobile and even apple watch!, I am not a big fan of their user/admin interface. , Great for our new developers., 7.0\n660, lastpass, Verified User (Anonymous), Small-Business, 2016-04-14, Generally satisfied and have been using the service for quite a few years., The MFA feature, also it integrates with most browsers.\n\nAlso, it has good reviews and a good, open approach to breaches., I have occasionally seen security glitches - one of which I reported but didn't hear back.\n\nReview collected by and hosted on G2.com.Recommendations to others considering the product:Keep an eye on any security messages. It is a target for hackers because it is so well known. , I have so many passwords and a lot have to be secure and therefore really strong - not going to manage those.\n\nAlso, the password safe must be doubly secure through MFA, 7.0\n661, lastpass, Verified User (Anonymous), Mid-Market, 2016-04-08, LastPass, my password Executive Assistant, Great organization setup and searchability., Sometimes the browser plugin drop down hangs up. Like it won't drop down all the way. Especially when logging in and out between accounts. Beyond that, sometimes the auto fill doesn't refresh. , Better password encryption. Better organization. Faster moving between applications requiring login. , 10.0\n662, lastpass, Tom B, Small-Business, 2015-06-26, A review of LastPass in personal use, LastPass has plug-ins for the popular web browsers allowing direct integration in desired and appropriate interjection when it comes to filling in online login pages and forms. With LastPass, online ordering is easier with the ability to click into an order form and have LastPass plug in my credit card info. Of course, security is of paramount importance. With how my data is encrypted, I feel confident that my data is safe, despite the fact that LastPass has been \"hacked\". Unless I'm sloppy with my master password (and that's definitely not the case), all my encrypted LastPass data is safe.\nWith the ability of LassPass to create unique and \"strong\" passwords, I have LastPass create unique and complex/strong password for every website. I have no password that is the same at any other site, so if some site gets hacked, they're not going to be able to use that same password at any of the other sites I use. The whole point of LastPass is that it remembers the passwords.\nSharing of IDs/passwords with others is also extremely useful in a family setting. For the same reasons, it would work well in a work situation, but my employer hasn't bought into the idea of password management, yet...\nAlso useful is the ability for LastPass to evaluate security and let you know where you have weak passwords or used the same password more than once., While I like the idea and ability to share information with others, the interface on sharing is a bit \"klunky\". Most functions can be performed from the browser add-on, but it seems sharing has to be done at the LastPass website. To be forced out of the add-on and directed to a website is a bit jarring. It's not awful, but the interface on everything else is intuitive and all within the add-on that it seems odd to have that ability jump out of the add-on for just that. It's relatively minor. Just odd., Password management and memorizing all the various accounts and passwords persists in being a plague in an ever increasing computing world. Without decent password management, and useful tools such as LastPass, computer users would apply appalling securing tactics, such as using the same passwords and IDs at every site and then storing those on a sticky-note on the bottom of the keyboard. It happens! It's frightening and sadly done by so many that should and do know better. Still, human memory being limited as it is, we need help. LastPass provides us mere mortals a means to know a few bits of secure info, and utilize more advanced security measures such as 2-form factor authorization (a personal favorite), to prove a more than adequate level of much needed online security., 10.0\n663, lastpass, Verified User (Anonymous), Mid-Market, 2016-04-28, Director Product Management, Simplified Sign On to multiple apps and programs, Setup was a bit confusing and how to maintain thereafter., Multiple applications used here at our company. SSO/Simplified sign on is of value., 8.0\n664, lastpass, Verified User (Anonymous), Small-Business, 2016-07-31, Last pass, It remembers everything but very discreet. Difficult to view by just glance., Ask about sign on everytime. Consistent remknders and pop ups, Security., 8.0\n665, lastpass, Verified User (Anonymous), Small-Business, 2016-04-12, Last Pass Review, Saves a lot of effort with websites requiring different password styles (e.g. 1 num 1 lower case etc).\n\nFurthermore it attempts to increase the overall security of your accounts., Encourages each password to be different which makes it hard to ever stop using it. Also, should this be cracked all passwords would be lost, Saves a lot of time when logging in (automatic logging in), 8.0\n666, lastpass, Thomas D, Small-Business, 2015-08-10, Secure and reliable!, I like all of the embedded features such as the secure password generator and cloud accessibility. It's not open source but the company seems to have a very secure method of storing passwords on their servers in a way that a stolen database should not jeopardize website accounts., The menus and login autocomplete are sometimes glitchy. I also wish the password automatically expired from the clipboard., The product is multi-platform and I no longer have to remember a different password for every website. A user should NEVER use weak passwords or the same password for their accounts but it's almost impossible not to. Lastpass solves this problem., 9.0\n667, lastpass, Verified User (Anonymous), Small-Business, 2016-01-19, Good system for managing your passwords, It allows me to have different passwords on every site and access them everywhere., The mobile app is not good. It does have an extension for Firefox on Android which is what makes it usable on mobile., It allows me to not think too much about passwords., 9.0\n668, lastpass, Bobby C, Small-Business, 2015-04-16, New user to LastPass for our Enterprise., Very easy system to use and integrate into all browsers. Like the ability to link personal (free) and business accounts. Love the ability to share passwords with other users. The new mac app is nice, even though I forget I have it most of the time., Wish there was better offline apps. IOS app seems a little clunky., Experience major change in org and needed a way to be able to have department heads securely storing their logins to our vendors. This eliminates the fear of \"what happens if you get hit by a bus\"...you can capture your logins, details, and its secure.\n\nI have moved to using this for my wife and I to keep our logins synced. There has been so many times when I have been asked by her to check on something, or order something, and needed to get logged in. This helps us do that with no problems., 9.0\n669, lastpass, Verified User (Anonymous), Enterprise, 2016-01-04, LastPass- last password keeper needed, LastPAss Saves all passwords and recommends new ones. It works on all devices and is smooth and easy to use. It has. Built in browser for easy use. , Some password save twice when LastPAss sees a mobile site and doesn't know it has already saved the desktop site. , Staff members are requesting less password resets. When asked they say they have different passwords for different accounts making our domain more secure. , 10.0\n670, lastpass, Verified User (Anonymous), Small-Business, 2015-12-29, Great with mobile, Autofill passwords on apps and passwords, The autofill process with multiple popular. , Storing multiple passwords, many infrequently used, but only occasionally , 10.0\n671, lastpass, Matthew S, Small-Business, 2014-08-17, Simple Problem with a simple solution, It is very simple to use. Login once. Save your password. Done. There is a feature to save all entered data in form which is incredibly helpful if there is a form you fill regularly but a lot of the entries stay the same., The user interface of the Last Pass Vault is definitely tired. If you have multiple logins to a single site it could get messy with auto logging in. It is also unnecessarily difficult to get a last pass box to go away when you do not want to use it., It's a simple product that gives me back some time and keeps me a bit more organized. Knowing all my passwords are stored securely instead of written in a notebook is definitely a plus., 8.0\n672, lastpass, Verified User (Anonymous), Enterprise, 2015-09-15, LastPass review, So easy to work between many devices and sync the passwords. In addition can also sync secure notes. , No much information on security of encryption and database., Issues with multiple devices, 10.0\n673, lastpass, Verified User (Anonymous), Small-Business, 2015-03-04, All-in-One Password Manager, Keeping track of all your passwords across all online applications is a hassle easily remedied by LastPass. You set a master password and let LastPass take care of the rest for you. LastPass also has integration plugins for all major browsers., There's nothing that I dislike about it. Works flawlessly., Not having to keep track of your passwords is great., 7.0\n674, lastpass, D, Enterprise, 2014-05-07, It really doesn't get better than this!, Password capture, storage, automation/retrieval, protection, and generation, all in ONE tool. Integrating into all the major browsers as well as the mobile platforms (with subscription). It is also possible to store more than just passwords, you can upload important documents, credit card information, notes, pretty much anything else. LastPass support multi-factor authentication using a few methods, my favorite being the Google Authenticator application. I have access to my passwords anywhere that I have a browser, and the reviewer that said that it is difficult to manage multiple logins must not have realized that if you uncheck autofill or autologin that you can EASILY select from multiple profiles (I do this all the time on a site where I have 8 different logins, you click the * IN the Username box, and select the username you want to login as)., I dislike that I have to have such a long crazy \"Master Password\" I'd rather use another method of login like some other information or an SMS message to my phone with a one-time password (yes, they already have a way that you can do this with the one-time-password tables, but then I have to transport that information on me or my phone and it seems less secure). Over all though, there really is nothing to dislike., creating VERY STRONG passwords without having to remember anything, and having UNIQUE passwords across various webpages. As well as being able to share login information without actually sharing the login/password., 10.0\n675, lastpass, Sara P, Small-Business, 2022-12-06, Works as it should but difficult sometimes, It's a great password vault that you can share with or without sensitive information. It remembers everything but do not forget to categorize your saved data in your vault!, It can get bulky. If you are not diligent with categorizing passwords or ensuring the web address login is the same or similar to the domain login you are saving, it can be difficult to find the password. For instance, I need a Workday login which I saved and Lastpass saved for me; however, the login is a Microsoft login and the un and PW are not showing up correctly. Hence, MAKE SURE you look at the LastPass popup and categorize the saved info right then and there or you could end up like me in a tag you're it email string with the company that requires a Workday account., LastPass is a great password manager and it is easy to share UN's and PW's with or without the recipient able to see the sensitive information. No more Notepad or physical notebook with all my passwords written down. Although I do keep some personally encrypted ones handy still :), 9.0\n676, lastpass, Michael B, Mid-Market, 2022-11-15, Best encrypted password and information vault for all of your devices, I can safely and reliably store all my personal information and generate random passwords for all my online accounts. The password vault keeps all of your passwords stored and encrypted. You can also store other information safely such as credit cards, personal data, notes, addresses, business information, and family social security numbers. I love the fact that I can pull up my info on my MacBook, iPhone, and other devices without having to sign into browsers. The browser extension also allows you to quickly fill out forms from stored information as well. I've been happy with LastPass (as with LogMeIn in the past) since becoming a customer a few years ago., Obviously the one aspect I don't like is that if your master password is discovered, it unlocks all of your personal information for a hacker to access. Otherwise, everything about LastPass is a pure solution to the problem!, Safely storing and encrypting my user information, passwords, and most importantly, family information (account numbers, social security numbers, phone numbers, etc.)., 10.0\n677, lastpass, Connie S, Mid-Market, 2022-11-15, LastPass is a game changer!, LastPass is hands down the", "doc_id": "756adee9-21d6-4f7e-ad90-0e4af04d5e56", "embedding": null, "doc_hash": "75d944548d7de696168647a90476685e7c7574dd76295f6f88eb5e1dbae5ab8f", "extra_info": null, "node_info": {"start": 470995, "end": 486684}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "b450018b-c568-4f48-b568-605b5f4063db", "3": "dc8ad36b-b568-404f-8fba-d48131325c27"}, "__type__": "1"}, "dc8ad36b-b568-404f-8fba-d48131325c27": {"text": "up my info on my MacBook, iPhone, and other devices without having to sign into browsers. The browser extension also allows you to quickly fill out forms from stored information as well. I've been happy with LastPass (as with LogMeIn in the past) since becoming a customer a few years ago., Obviously the one aspect I don't like is that if your master password is discovered, it unlocks all of your personal information for a hacker to access. Otherwise, everything about LastPass is a pure solution to the problem!, Safely storing and encrypting my user information, passwords, and most importantly, family information (account numbers, social security numbers, phone numbers, etc.)., 10.0\n677, lastpass, Connie S, Mid-Market, 2022-11-15, LastPass is a game changer!, LastPass is hands down the best way to manage login information, payment card details, secure notes and much more. I can use the Chrome extension on my laptop, toggle between work and personal accounts and seamlessly use the LastPass app on my phone. Adding new passwords via the Chrome extension is automatic, and the app mirrors all of the information so there is no need to enter anything more than once. Autofill options work like a charm for passwords, credit card information and addresses. Like with any password management software, there is a little work on the front end to get all of your information loaded; however, LastPass\u2019 user-friendly platform makes it quick and easy. I cannot imagine managing all of my confidential information any other way., When I set up a new account on my phone, I have to manually add the new item to the LastPass app. I wish there was a way on the LastPass app to automatically add new accounts as I set them up - like the Chhrome extension does when I set up a new account on my laptop. Perhaps that's user error? LastPass likely has a solution I'm missing., I am able to launch all of my important accounts and apps with one keystroke and retieve any of my important confidential information immediately. Such a huge time saver!, 10.0\n678, lastpass, Sandra W, Small-Business, 2022-11-15, A dependable piece of software that I never have to think about, I've been using LastPass for a few years and see others recommending different tools but LastPass has always been a dependable piece of software that just works whenever and wherever I need it. My passwords have always synced beautifully between my laptop, phone, and iPad. By using the browser extension, I can easily fill any login information I need as well as generate strong passwords for new accounts. Add in the ability for me to categorize my logins and take notes, it's a huge win for my business and saves me tons of time every day., As of right now, I can't really say that I've run into any issues or concerns. The pros far outweigh anything that I might run into. I don't see myself switching programs anytime in the near future., I use several different programs that require a login, as well as the need to occasionally have others share their credentials. LastPass makes keeping track of hundreds of passwords easy and readily available when I need them. I save huge amounts of time each day., 10.0\n679, lastpass, Chris T, Mid-Market, 2022-11-15, I don't know any of my passwords, and that's a good thing, LastPass makes it incredibly easy to utilize completely random passwords, not have to remember a single one of them, and use completely different passwords across all of your accounts. Their mobile app is incredibly responsive and works with all of my apps and their browser extension provides quick and easy access to all of my login information., Occasionally the mobile app doesn't integrate perfectly well with all apps, and I'm forced to open up the LastPass app, copy my password from the manager and paste it into the app. While is incredibly rare, but it has happened and while it's a minor inconvenience, and poses a potential security risk of having a password on my clipboard. I also copy new text afterwards to prevent it from lingering on my clipboard, I feel almost invincible as I've broken the worst habit of re-using the same, easy to hack passwords for all of my accounts. I would estimate I have at least 100 accounts, if not more, and not a single one uses the same password., 10.0\n680, lastpass, Audra D, Small-Business, 2022-11-15, Recommend Lass Pass for Business and Personal Use, The ability to share passwords with multiple parties. Even more - you can do sharing by specific folders. So if you have a marketing team, you can do passwords just for the team. I also like that you can put a double log-in if you want for things like bank accounts etc - this is a nice added buffer., If you have a personal and business account, I have had issues logging in to one or the other on mobile. This has been an issue on mobile when updates occur, and I have had to re-login. Also, if you forget your password, it is really tough to reset., Sharing of passwords with family members for personal and colleagues for business. I also like that you can use it on your mobile to log into aps - it stores all of your passwords in one place and can be used on both desktops and mobile. Oh, I also like the password generator., 8.0\n681, lastpass, Kelli R, Enterprise, 2022-11-14, Easy to Set Up, Easy to Maintain, LastPass has helped me to keep a lot of critical information more securely organized. I do like the ability to auto-generate secure passwords as well. Additionally, I have been able to set this up with family, and family sharing has allowed me to assist my aging parents maintain security on their accounts. In the past, they would write information in notebooks or scraps of paper, and / or rely on my memory for the information. Now, even if they forget, I can login to the family sharing portion of LastPass and provide the details they need in a much more secure fashion., I'm not sure that I have dislikes at this time. Some of the things that are maybe small annoyances are there to provide for my security, such as the two-factor authentication on my phone where I am logging-in each time I need to log-in to a new app. HOWEVER, those things can be tweaked in your settings., LastPass identifies where there are data breaches and where my information might be at risk. I understand this is reactive problem solving, but it does help to receive those notifications so I can react quickly. Where they are pro-active is scanning your information to show you ahead of time where your passwords might be duplicative, re-used, or weak. This allows me to either allow the system to auto-create a new password where I might be using a duplicate or create my own new password. There is also information in this scan that shows when it was last changed, etc. I think this detail is all very proactive for the user and can provide for stronger passwords and greater peace of mind., 10.0\n682, lastpass, Judith E, Small-Business, 2022-11-10, Organized Family's Hundreds of Passwords, We can access accounts, make notes and store critical information in one easy-to-use app. Data can be shared, and LastPass does a great job launching sites. Creating folders and making favorites helps organize and store volumes of sites and info. I found LastPass intuitive to use and generates strong passwords. Each \"card\" stored includes complete information, inuitive, Lastpass seems to have a quirk when searching. One oddity is that there doesn't seem to be a way to navigate to a folder via the search bar easily. One can collapse folders, so it is wise to organize entries into folders right from the start. Many of my imported passwords remain unorganized, so I have to wade through many to get to the desired folder., I store all my business accounts and all the family information. I use a top folder with nested folders for the business and our family members. LastPass provides good support, and their \"Notes\" area for each entry helps significantly with the many business and other accounts., 10.0\n683, lastpass, Brent A, Enterprise, 2022-11-10, Secure and user Friendly, It is straightforward to use with a lot of great features. However, I have not explored all the functions yet!I like that it has browser extensions and an app. The share function is good if you have an account you share with someone and have to keep the password secure. My partner doesn't have an account with LastPass, which works great., I use Face Login, which is handy; however, when logging into the app, I still have to enter the password. As well, I have the authenticator as an extra step for security, and it is a bit of a nuisance if I'm on my computer and leave my phone in a different room. Small price to pay for extra security., I can generate super secure passwords which I would never remember. I do a lot of development and have many programs to log into, including clients' networks. Knowing I am compliant when generating secure passwords brings peace of mind., 9.0\n684, lastpass, Evan M, Small-Business, 2022-11-09, In one place, One of the features I find most helpful about Lastpass is that it is all in one place. From now on, I know when I can't seemingly remember where I wrote that password down on a sticky note or excel sheet, I can count on LastPass being the only place to store my passwords. Also, the platform's compatibility through google amazes me and makes life way easier, The only downside I have experienced with Lastpass is their authenticator app on the phone. For whatever reason, the app will not sync with an apple watch or open the app when authenticating. For example, if I open my password vault through the authenticator app, I have to click only on the pop-up on my phone screen once I connect to authenticate. Otherwise, if I try using my via my apple watch or simply entering the app on my phone, it will not sync properly with their authentication process and will not let me approve my entrance into my vault. I understand that this is one of the newest features released months ago for Lastpass, and I do not hold it against them for these minor shortcomings., Well, I don't own a business or anything, so this doesn't solve any technical problems other than primary storage for my passwords and compatibility through the google webrowser through the numerous sites I use daily., 10.0\n685, lastpass, David K, Small-Business, 2022-11-08, I have been using Lastpass for years. My entire family is on LastPass, Lastpass has an intuitive interface and is easy to use. From my mother (a senior) to me (a techie) everyone in my family is able to use and understand the interface. The autofill is great and whenver the underlying website is poorly coded, it's easy and intuitive to copy/paste from the browser extension. Syncing to the phone is great and frankly its got great security features. It even had me change all my passwords to unique ones!, I have no complaints about lastpass. It works well and the autofill is really smart. I can't think of anything that needs to be improved. Even non tech people can easily use it., LastPass helps me to get my family to save their passwords and to keep them all unique. There have been hacks on websites and I have been alerted that people are trying to use my different credentials to try and log in. LastPass is great because they clearly indicate if I had been pwned, if my passwords are unique, and it's easy to organize. I am also able to share folders to my family for shared accounts and I like this., 10.0\n686, lastpass, Robert L, Enterprise, 2022-11-08, One very happy customer, I had been using a \"hard\" passwords which were saved to my email account so they could be accessible anywhere. The downside is your email account then becomes the weak spot. So when my email account got hacked, all of my passwords were exposed. In the aftermath of cleaning up the fraud, I made a conscious decision to harden my digital footprint. In came LastPass. From what I understand, using an 18 digit password composed of upper and lowercase letters, numbers, and symbols, would require more time to brute force than the age of the universe. This is every one of my passwords and they're all unique, if one happens to get out, it won't harm my other accounts. And even if LastPass is hacked, not even they know your passwords. I feel very secure with this as a part of my online security., I would recommend making it optional to use something like the Google Authenticator to reset master passwords., Keeping my online presence secure by having for every account a unique password that's impossible to guess or brute force., 10.0\n687, lastpass, Shawn W, Enterprise, 2022-11-08, Better than I could have imagined, I like how the tool is accessible on multiple devices. I use it on all of my Apple products with no issues. It makes checkout and access to websites extremely easy. It also has a consistent look no matter the platform being used., I wish there were an option to toggle it on or off on various websites. For example, I'm a Solution Architect and I will be conducting demos and it will show my options for Credit Cards to use. I wish I could turn it on or off by website or \"pause\" it while on specific sites., It's solving the issue of password management and secure access to payment information. It's all in one place and makes use easy. For example, I can log onto a website with which I have an account and check out all-in-one fail swoop. It also utilizes Face ID with Apple products which is a game changer!, 10.0\n688, lastpass, Kristen L, Small-Business, 2022-11-04, A great tool for productivity and secure password management + storage, I love using LastPass! It makes storing and sharing logins and other important information securely *so* easy. It also boosts our team productivity not only because of how easily we can share logins and information, but also because having it on all of our devices and browsers prevents us from needing to try to keep track of tons of different passwords or go through the dreaded resetting process when we can't remember. \n\nAs an operations consultant, I also recommend LastPass to all of my clients for the reasons I've noted above. It's the best!, There are a couple of features in LastPass that could use improvement. One is Shared Folders on the Teams plan. If you have a login in a Shared Folder, you can't share it individually with someone outside of the Shared Folder. \n\nOur use case for this is that we would have Shared Folders that we'd share with internal team members, and then we'd need to also share one login (but not the whole Shared Folder) with a contractor who only needs access to a single login. This isn't possible currently. \n\nAnother feature that I'd like to see improved is how you copy information from within the Vault. For example, if you're in the Vault and you open a login, there isn't a way to copy the login information to use to login to a site without going into Editing mode. Once you're in Editing mode, there is a much higher likelihood of accidentally deleting or changing the login information (including the password) as you're copying it. I've previously used 1Password and they have this figured out--you simply hover over the password and then select the \"Copy\" option that pops up. \n\nThese issues don't stop me from using and recommending LastPass, but I do say a little prayer to the software Gods/Goddesses that they'll be fixed every time I'm faced with copying a password in Editing mode or wish I could use Shared Folders., LastPass solves the productivity issue of password management and sharing., 9.0\n689, lastpass, Mohammed A, Small-Business, 2022-10-31, Easy to Use Password Manager, There are many reasons to use LastPass, but the most important to me is its ease of use. I initially tried using Password Managers like Enpass, but the Desktop Application is a must if you want them all to work. They are", "doc_id": "dc8ad36b-b568-404f-8fba-d48131325c27", "embedding": null, "doc_hash": "37d3e050563fc0cd73a54488ec42f551d3ccf00093c32ae4eba65dafd7fbd22b", "extra_info": null, "node_info": {"start": 486709, "end": 502625}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "756adee9-21d6-4f7e-ad90-0e4af04d5e56", "3": "47795f36-289e-461d-844b-595944d576d2"}, "__type__": "1"}, "47795f36-289e-461d-844b-595944d576d2": {"text": "copying it. I've previously used 1Password and they have this figured out--you simply hover over the password and then select the \"Copy\" option that pops up. \n\nThese issues don't stop me from using and recommending LastPass, but I do say a little prayer to the software Gods/Goddesses that they'll be fixed every time I'm faced with copying a password in Editing mode or wish I could use Shared Folders., LastPass solves the productivity issue of password management and sharing., 9.0\n689, lastpass, Mohammed A, Small-Business, 2022-10-31, Easy to Use Password Manager, There are many reasons to use LastPass, but the most important to me is its ease of use. I initially tried using Password Managers like Enpass, but the Desktop Application is a must if you want them all to work. They are very difficult to set up quickly. But LastPass is very easy to set up. We can download Browser Extensions very simply and start managing everything., LastPass recently discontinued their SMS based 2 step verification process. At times I found this more convenient than the App based 2 step verification process. I don't know why LastPass changed this. And in their latest Android version, when trying to enter passwords through the browser, that option does not show. All of these seem to me to be issues that LastPass needs to address as soon as possible., Of course, apart from passwords, I can save credit card details, bank account details, and many other things in LastPass and use them when needed. I use LastPass almost as my Digital Library. That is what I need. Also, I can sync and use LastPass Password Manager with their 2 Factor authentication application provided by LastPass itself., 7.0\n690, lastpass, Chelsea M, Small-Business, 2022-11-16, Simple and integrated password management system, I've been using Lastpass since 2010 when I started to work in IT while finishing my BS in Engineering. I've been using it since to have a single, secure, and simple system to store my passwords. Now it helps me generate passwords, lowering the number of decisions I need to make, while being able to move between Apple, Windows, and Chrome ecosystems while teaching., The only thing I don't like about Lastpass is that it reminds me to change passwords that have been in leaks. Honestly it's another strength. I just get annoyed because I don't have time to change a bunch of passwords when I'm trying to load a site., Now that passwords need to be frequently changed across platforms, it allows me to have multiple passwords instead of one across sites. I feel more secure in my digital presence., 10.0\n691, lastpass, Eva S, Small-Business, 2022-10-18, Secure and Convenient, LastPass offers places to store passwords, notes, and payment card information. The Chrome extension allows it to work seamlessly with most websites, auto-filling credentials without the user even having to look them up. It is a great way to manage many unique passwords. And the LastPass security feature will even warn you if a password is insecure or if it is just time to change it!, Occasionally, there are websites that do not support the auto-fill. In these cases, the user has to copy-paste from LastPass, but even this is much easier than remembering complex passwords or typing them from hand-written notes., LastPass has allowed our employees to gradually let go of their old favorite and not-so-safe password systems. They are finally learning to trust that the LastPass program has all their passwords at the ready. This has made it easier for all of us to use unique, complex, completely random passwords for all of our sites., 10.0\n692, lastpass, Eric H, Enterprise, 2022-11-08, Lastpass is a must have for all users, Lastpass makes password management so simple and secure, the browser plugin alongside the iPhone app and integration makes using Lastpass dead-simple. If the app were more arduous to use, there's a strong chance that users will not use it. They've struck a great balance there., I've been using LastPass for about 5 years now and very rarely do I run into any kind of problems. There are rare situations where when using custom ports usernames/passwords can become a bit cumbersome (ie. multiple services linked to the same IP address, like a router, DNS server, dockercontainer, etc.), Time. It saves me so much time keeping my passwords secure. The password generator is seamless. The fact that your vault extends from your PC to your Phone is incredible. The security dashboard gives me re-assurance that I've got my security in check., 10.0\n693, lastpass, Andrew N, Enterprise, 2022-11-15, Great service and easy to access and integrate cross platforms., The best thing I find about Lastpass is the cross-platform integration and ease of use on all platforms. Regardless of if I'm on iOS, Windows, or Mac, the Lastpass software works seamlessly and allows me to easily log into the sites I need to while making sure I'm secure., The biggest issue I have is the variable nature of how LastPass remembers sites. I'm pretty sure it's a website issue, but sometimes LastPass gets confused about which login screen to show. Other than that the product is quite user friendly and easy to use., They solve the problem of complex passwords and the problem I have remembering them. I don't want to reuse passwords as we all know that's an issue from a security perspective, but remembering all of them is a huge challenge., 10.0\n694, lastpass, Erik J, Small-Business, 2022-11-15, Essential, Convenient and Portable! All in one!, I can not only work from anywhere, but can technically use any computer while maintaining the security of my client/personal files., Sometimes, when I keep the browser open overnight, the quick link option doesn't work. Meaning I have to copy & paste website link and password to log in. Also, it would nice if when sharing a password, i can allow the other person to update the password and have that reflect in my LastPass account as well. To be clear, I would like this option, I'm suggesting that it was a permanent/singular feature. Websites require password updates every so often and it would be convenient due to this., Easy to share passwords with our office staff. Easy to generate different types of passwords. Easy to store passwords and access., 10.0\n695, lastpass, Matt P, Mid-Market, 2022-11-15, An elegant solution that plays well with others, LastPass integrates nicely across mobile and desktop platforms. I have had zero issues with saving and maintaining and generating new passwords. This has helped me be more secure online without having to duplicate or remember passwords and login credentials., The only knock I'll give LastPass is the slowness on my Apple device. Rather than being fully integrated into the web browser, it transfers me to the LastPass app. However, we're talking a couple seconds. It's a small trade off for the convenience of highly secure logins., LastPass solves my issues reusing old, unsecure passwords. It delivers complex passwords and remembers them at the moment I need the info. I also do most of my shopping online so LastPass manages all my payment cards in an easily accessible manner., 10.0\n696, lastpass, B N, Small-Business, 2022-12-10, Dependable, LastPass keeps all my passwords, log-in information, and personal digital details safe, secure and available from anywhere. For instance, if my phone was lost or stolen while traveling, I would only need to log into my LastPass account, where all my personal and business information is stored for easy retrieval. I keep the details of my passport, credit information, and even health information so that in the event of an emergency, I have immediate access from anywhere in the world.\n\nMost importantly, I only have to remember ONE password.\n\nI have used LastPass since 2012 and recommend it to all my clients., I cannot think of anything I dislike about LastPass. The service has been continually improving, and I'm pleased with it., I am a web designer, and I store hundreds, if not thousands, of passwords and details about my sites. I can also share passwords securely with my clients through the system., 10.0\n697, lastpass, James N, Enterprise, 2022-11-15, Very effective and keeps me safe!, I love that I can take LastPass just about anywhere I need to (mobile, desktop, etc.). I am never without my passwords and the safety that brings. I've used other apps but none compare to LastPass., I haven't found anything so far that I dislike. The ability to choose more secure passwords is maybe the best feature of the app. I do get annoyed sometimes at having to login securely, but that is what makes the app so perfect. The security is top-notch., I have so many passwords to remember, and without LastPass, I'd be stuck with pieces of paper or some other very insecure product. My performance has increased because I don't need to hunt for a password. LastPass remembers it for me., 10.0\n698, lastpass, Andrew S, Small-Business, 2022-10-19, Simple and just works., The mobile app is handy; it also adds an autocomplete to sites in chrome on Android and some apps. For others, it's nice that you can quickly open the LastPass app, copy the password to the clipboard and switch back to the app you're using to quickly log in., Everything works well if I was to suggest a feature, though; it would be helpful if there were a way to check if we use a specific password for any account; then, if you know an old password is compromised, you can be sure it's not used on any sites that are in your LastPass account., Makes sharing secure passwords between desktop and mobile much more accessible, had been using a desktop tool before, but those passwords weren't available to me when I was on the go., 10.0\n699, lastpass, Jeff W, Small-Business, 2022-11-15, Best family plan password manager in my opinion., The ability to share passwords with differnt members of the family, while keeping some private or between me and my wife., Certain apps don't work with LastPass or apps that worked in the past stop working. There is no easy to find way to get them working again. Sometimes they start to work again after some time. I'm sure that this is a moving target for LastPass, as other developers are always improving security of their apps, but it is an occasional frustration., My important personal and business accounts now use much more sophisticated passwords because I use LastPass. Also, I no longer duplicate passwords across sites/apps, so if one is compromised, the others are still safe. That's great peace of mind., 10.0\n700, lastpass, Sherve' B, Small-Business, 2018-03-19, Works really well with all the platforms we use and storing the log in info., I like the memory and storage of accounts., Delay time and auto-fill in of log in info takes a while and sometimes doesn't happen automatically., Time it takes me to remember my password I have already logged in., 8.0\n701, lastpass, Courtney T, Small-Business, 2017-12-19, Excellent Tool to Store Passwords, I like the ease of use, and the ability for the app to run in the background without any extra work on our end. It's a great tool for a project manager who is dealing with multiple accounts. , I dislike not being able to go back in and look at all my passwords, but that is necessary for security settings. , I deal with multiple accounts, and this solution gives me the ability to store all of the account information that I need. , 10.0\n702, lastpass, Anthony A, Small-Business, 2018-02-06, Password management for work and personal all in one, I can maintain my personal passwords and work shared passwords in one set up without having to share my personal ones., The phone app is handy but can be really intrusive with prompting for logins.\n, We wanted to centralize our team passwords so they weren't stored in plain text and didn't have to be one shared password., 9.0\n703, lastpass, Verified User (Anonymous), Small-Business, 2018-01-17, Best Software to use for Passwords, I love how every credential can be saved by customized categories and it signs you in automatically!, I like everything about this software. There is nothing that needs to be improved in my eyes for this software to be better., We are able to keep the same creds for every access we have granted to us online so no more trying to find a password or remember. I have realized that this software takes away the time it normally takes to sign into a carrier portal. , 10.0\n704, lastpass, Colby K, Small-Business, 2018-01-02, Great Corporate Password Manager, It's easy and simple to use for the end users. It makes user adoption much easier when it's so convenient for them to use., The admin interface is kind of clunky and not intuitive., Before we had LastPass, we had users saving passwords on sticky notes attached to their monitors or in a spreadsheet on our network file share. Now, we have a much more secure method for storing and sharing passwords. , 10.0\n705, lastpass, Verified User (Anonymous), Enterprise, 2017-12-12, LastPass makes my life much easier, It is a comprehensive tool which regardless of the Browser you are on it safes your login info including web site, user name and password. Besides, you can categorized it the way you want. It also features a password generator... this is the future forget about remembering every user name and password, you only have to remember the Lastpass password and you are in, There is no add-on for Microsoft browsers such as Edge or Internet Explorer, Desktop Support Staff have a lot less headaches than they use to have since having end users the opportunity to have this wordenful tool for password management. This means that we have reduced substantially IT support hours due to identity problems. , 10.0\n706, lastpass, Verified User (Anonymous), Small-Business, 2018-03-20, LastPass is here...I can slowly kill my brain with beer, User names and passwords are hard. LastPass is a great tool to make remembering less hard. Seriously, the time savings from not having to look for every login is huge., it's probably for security reasons, but changing the password regularly (required) is not fun., LastPass helps organize login and passwords for frequently visited sites. This works great for people working from different locations (passwords are no longer device specific)k, 9.0\n707, lastpass, Tara T, Mid-Market, 2017-11-02, Very effective, I liked having all the passwords in one place. Not just my personal passwords but being able to access company wide accounts without checking with 7 people to see what the current password is was helpful., At first I didn't like LastPass but it was because I didn't know how to use it. Once I took 5 minutes to figure it all out, I thought it was great., LastPass helped us be organized and have randomly generate passwords that people didn't have to memorize which made our systems more secure., 7.0\n708, lastpass, Haydn M, Mid-Market, 2017-10-20, Best password manager on the market, Ability to generate secure passwords and have them stored. Another bonus is the security challenge which then rates you against other LastPass users which motivates you to improve your score., Can be clunky when using the app with logins required for other apps, sometimes the apps aren't recognised as being stored, Overall security is increased as users are pushed to improve their passwords. Also seen a decrease in passwords stored in unsecure ways such as post-it notes!, 9.0\n709, lastpass, Verified User (Anonymous), Enterprise, 2018-02-09, Great in theory, I like the idea, it makes sense that you would have a secure portal to save all of your passwords. , I think the follow through is really miserable. Unless I'm missing something...it isn't easy or intuitive and it's mostly just a pain., Saving all my passwords in one place is nice. I pay for pro so", "doc_id": "47795f36-289e-461d-844b-595944d576d2", "embedding": null, "doc_hash": "99ef91b4cbd847d9dd4ab4514253a7983d677c2e8151bc46d36dd03ac605d92c", "extra_info": null, "node_info": {"start": 502637, "end": 518498}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "dc8ad36b-b568-404f-8fba-d48131325c27", "3": "319e9b46-4b60-4c44-9a86-0ab758759505"}, "__type__": "1"}, "319e9b46-4b60-4c44-9a86-0ab758759505": {"text": "stored. Another bonus is the security challenge which then rates you against other LastPass users which motivates you to improve your score., Can be clunky when using the app with logins required for other apps, sometimes the apps aren't recognised as being stored, Overall security is increased as users are pushed to improve their passwords. Also seen a decrease in passwords stored in unsecure ways such as post-it notes!, 9.0\n709, lastpass, Verified User (Anonymous), Enterprise, 2018-02-09, Great in theory, I like the idea, it makes sense that you would have a secure portal to save all of your passwords. , I think the follow through is really miserable. Unless I'm missing something...it isn't easy or intuitive and it's mostly just a pain., Saving all my passwords in one place is nice. I pay for pro so hopefully that's worth it, although its benefits are yet to be seen. , 4.0\n710, lastpass, Florian S, Small-Business, 2018-02-22, Safe just one password, easy tool, you just need to remember your master password., nothing. its really good. maybe they should concider to have more free account possibilities., having a lot of passwords. now we just have to remember one., 8.0\n711, lastpass, Shahrooz F, Small-Business, 2017-07-13, A perfect tool to get rid of all hassles for password management, It's almost everywhere even when I don't need it! It reminds me to keep the credentials when I'm registering on a new site and its cross-platform which makes it easy to access. One of the good features of LastPass is folders which can help you to categorize your credentials. Another great feature is credential sharing which you can share a specific username/password with anyone you like. Password generation is very easy and can be customized easily to have a complicated unbreakable password., I don't remember anything to dislike. It perfectly solves all my problems with remembering secure info., Credential management such as username, password, form fills, generating powerful passwords, secure notes, etc.\nA great use of this application is when you need to share a credential with someone else! It's a hassle always and almost for anyone but with LastPass, its a piece of cake! LastPass is a must tool for anyone who works in digital world as a regular user or even an admin!, 10.0\n712, lastpass, Abby W, Small-Business, 2017-11-15, Simple, secure way to be smarter with security, Simple, easy to use UI, great app, lots of extra security features, and the security checkups and alerts really help me be smart and feel safe. , Passwords in general suck, so I hope that LastPass keeps innovating and trying to figure out better, safer alternatives to passwords - even when the majority of websites still require them. , Manage personal passwords, allow for multiple accounts (business, personal, testing, etc) for the same site, kept in order, all with randomized characters, changed at regular intervals for maximum security. , 10.0\n713, lastpass, Gavin M, Mid-Market, 2017-12-28, Easy, Forgettable Password Management, Lastpass securely sits in the background, managing complex passwords with ease. Integrated password generation and browser tools follow you wherever you go., The mobile app has lagged behind web, but has recently caught up. Lastpass does not always associate generated passwords with logins, requiring a copy and paste to get the password right., Password management and tracking; secure password generation., 10.0\n714, lastpass, Verified User (Anonymous), Small-Business, 2018-01-16, So far so good, We have been using this for less than a month but I love that while there is an \"Administrator\", individuals can provide their own passwords, which gives them a nice sense of security., I am still having some issues understanding how we can track equipment (i.e. Apple ID, passcodes, etc.) for company-issued items., Electronic password tracking to make sure we have all the information we need if an employee leaves., 7.0\n715, lastpass, Allison W, Small-Business, 2018-01-02, Great password management tool for multiple devices, Remembers all your passwords, form fill-in info, credit card info, and can be accessed from any device when you are in the app or website trying to login., It doesn't always work on all websites, so then I need to do a manual search for the password., I am able to keep track of all my clients' passwords., 10.0\n716, lastpass, Zach D, Mid-Market, 2018-03-08, LastPass is so easy to use , It is one of the best tools for general efficiency. Plug and go ultra strong passwords and forget remembering countless passwords., The mobile app needs better integration to allow you to add passwords in browser/app instead of having to manually open LastPass everytime you need credentials, Saving time and energy with not having to remember passwords. Having strong passwords for security., 10.0\n717, lastpass, Jessica V, Small-Business, 2018-01-17, Perfect for the dreaded , This is the answer to all our document sharing woes! So easy to share log in credentials with other users of the same documents. , There really isn't anything we dislike...other than the app seems to disconnect at random once in a while., Easy, seamless document sharing between colleagues, 9.0\n718, lastpass, Kirk H, Mid-Market, 2018-01-16, Password Management Made Easy!, The ease at which passwords can be managed and used. You don't have to remember a vast variety of passwords and because of this, you can create more complex passwords which make your browsing more secure., There are only 2 ways to view the vault: list and tile., Solved the problem of users having a single password for multiple sites. Benefits realized are reduced risk and increased security., 10.0\n719, lastpass, Verified User (Anonymous), Mid-Market, 2017-11-22, The most popular password manager for sure!, LastPass provides ease of access since your login and password information are automatically saved on LastPass\u2019s servers, and are available to you from any computer with the extension installed. I also really enjoy the audit feature which will perform an scan all your passwords and then will highlight weak or duplicate passwords, and then even goes on to help you create more secure ones., I found that the interface is a bit hefty and complex and not as user friendly as some other options out there. , LastPass helps to bring harmony between the user and an easy to manage password management., 6.0\n720, lastpass, Chris G, Mid-Market, 2017-09-04, Gain Convenience without Compromising Security, Many modern businesses require logins to multiple software platforms, as well as personal secure locations. LastPass makes it easy to safely keep all of these passwords, share as needed and save you time., The Chrome extension occasionally needs to be closed and rebooted in order to work. It seems to be fixed with the latest update., It keeps all of the passwords in a searchable location, and the Chrome extension makes it effortless to autofill login credentials., 10.0\n721, lastpass, Taylor V, Small-Business, 2017-09-05, Excellent service... wouldn't know what to do without it, LastPass has been a life saver when it comes to managing all of our companies passwords. It centralizes all your passwords in one place and makes it easy to auto-fill forms and logins that you frequently use. Since we have multiple accounts on certain websites, it makes managing multiple login credentials easy. It also has the ability to store secure notes and credit card information, however, we don't use this. \n\nLove the fact that we can have 2FA on the initial master login, which makes it way more secure, just in case someone cracks into your account and gets the password.... at least they'd need to have your phone too., Hoping they keep mantaining their security level, as this could be huge since all our passwords are stored in the cloud. \n\nSometimes when using the app on websites such as Google, it's a little finnicky since Google now has a two step login procedure, first you put in your username, then on the second screen you put in your password... with Lastpass that requires two clicks if you have more than one Google account. Which is not that bad at all considering how much time it saves in the long run., It increased efficiency a ton by having a centralized storage of passwords that we can share between users., 10.0\n722, lastpass, Verified User (Anonymous), Small-Business, 2018-01-17, Functionality works well, but concerns with chrome add-on, I love that the chrome add-on can automatically fill in my information, as well as the pop up that asks if I'd like to save a new website's information., My one complaint is that I wish they would require a password when you \"open the vault\". I tried to adjust the settings for this to happen, but I didn't find that option., Lastpass is helping me stay sane! I was always worried about my passwords not being strong enough, but if I made them all different I would forget them. This has helped me see the best of both worlds., 8.0\n723, lastpass, Laura M, Small-Business, 2017-11-27, Best Password Manager, I love how easy this is to use, not only for passwords but for keeping track of important info that also needs to remain safe (like ss# or wireless network info). The phone app is very helpful., I've tried others like this (Dashpass) and really felt they lacked compared to LastPass - LastPass has been great and I have no dislikes about them\n, I don't have to try and remember how to remember by login information per site. It can create passwords quickly and the options of using numbers, letters, capitals, symbols is very helpful., 10.0\n724, lastpass, Benjamin W, Small-Business, 2017-11-10, The gold standard in password protection, FREE Tier is pretty amazing. The last pass platform is seriously the best in class for simple architecture in the password protection space. There is no other contender that has the same credibility and the same offerings for the price and there are no others with the breadth and integration potential. , Paid tier doesn't have enough oomph to justify upgrading in my opinion. , Remembering hundreds of passwords for clientele and personal usage on the internet. , 10.0\n725, lastpass, Ilya D, Enterprise, 2020-05-27, Very effective credential collaboration tool for our Enterprise, The ability to manage in an Enterprise environment. Good integration with 3rd party SSO providers., Administration Console can be tricky to navigate. Vault login through SSO is realized trough a browser plugin-in and not through a direct site or user sso portal., Credential management for a whole company that is divided into different department with various levels of access. Sharing feature makes it really easy to share sensitive/critical to business credentials., 9.0\n726, lastpass, Verified User (Anonymous), Small-Business, 2020-05-27, Incredible Security and Productivity Tool, I have been using LastPass personally for a number of years and since 2 years ago my whole company switched over to LastPass too. It is an invaluable tool for everyone, helping us with keeping our passwords and other sensitive information private and secure, as well as making collaboration a breeze. We simply love LastPass and enjoy using it on day-to-day basis., The Enterprise plan should have biometrics enabled, as well as all other features and the plans should be divided by the size of the company not by which features you want. Other than that it is a great tool!, Ease of use and data synchronization across multiple platforms, superior security, better collaboration, easier administration, and rooting out people with bad habits, which can cause security breaches, etc., 10.0\n727, lastpass, Verified User (Anonymous), Small-Business, 2020-10-16, Great tool for protecting your saved passwords, LastPass automatically saves your important passwords so when you go back to the site, you can click on the icon on the right of a log in field and choose to use your saved information., Nothing so far! I love the tool and love all aspects of it., Protecting important saved passwords in a password protected tool ;), 10.0\n728, lastpass, Verified User (Anonymous), Small-Business, 2020-11-11, Never get locked out ever again, I can access all my passwords in 1 location, nothing that I dislike about the software Lastpass, I can never remember my passwords, it allows me to quickly access regularly used sites, 10.0\n729, lastpass, Ignacio M, Small-Business, 2020-07-15, Great password app, LP Authenticator could use some work., Easy to organize, store, create, manage credentials, credit cards and notes. \nIt features a straight forward, easy to use interface.\nManaging LP users as an administrator is also fairly straight forward., LP Authenticator could benefit from improvements (ex. desktop app, syncing across devices)., Secure password storage, secure sharing of passwords, credit cards, notes, truly randomized password generation, compatible with multiple 2FA methods., 9.0\n730, lastpass, Ben C, Enterprise, 2020-03-31, Excellent choice for cross-platform users, LastPass' free version allows users to have unlimited passwords saved and use LastPass on multiple platforms (e.g., macOS and Android)., LastPass isn't as integrated into the operating system as iCloud Keychain. Logging into a site involves opening the LastPass vault first to get the password. I prefer the way iCloud Keychain has a prompt on a site login to fill in the user's credentials., I needed a free to use password manager for users who aren't completely in the Apple ecosystem. For Apple users, I highly recommend iCloud Keychain, but if people use an Android phone or a Windows PC, then they need a cross-platform solution (like LastPass) so that they can access their passwords on all of their devices., 8.0\n731, lastpass, Verified User (Anonymous), Small-Business, 2020-08-11, Secure and reliable password manager, LastPass is a very reliable and secure password manager. It also allows me to save bank account, documents and credit card numbers in its secure vault. Its multi-platform support and cloud sync makes my password available on all my devices. It automatically fills up the saved passwords and helps to save time., Its mobile application has some problems, it doesn't auto-fills my saved password. Rest everything works great for me., I mostly use random password generator for my accounts because of this it's very difficult to remember passwords. For this I use LastPass, it helps me save, secure and access my passwords on my every device. Now I don't need to manually enter my passwords, LastPass does everything for me., 9.0\n732, lastpass, Sachin V, Enterprise, 2020-05-12, Best solution to safely store passwords, What I love about it is that it's a freeloading cross layer and also enables product synchronization in the cloud. I could even change my password to my laptop client, but then just access it from my smartphone., LastPass allows you to forget your password, and use a far more\u00a0complicated and much more\u00a0secure password. Generator of Passwords is extremely useful. There are some purposeful problems, but often it won't prompt me to type in the password shop in case I leave the final pass to instantly pack in the password., I save passwords for various websites, and use the password generator to practice. Using access administrator., 9.0\n733, lastpass, Olga N, Enterprise, 2020-03-22, Store passwords safely, One of the most reliable and safest applications, which take care of our all passwords. It is totally different application which insures the security of our all personal and business information. It is a great alternative for remembering passwords. It locks my all accounts passwords in its storage and provides me a master password for accessing all settings. It is absolutely working efficiently. All functions which helps me while saving my information are appreciable.,", "doc_id": "319e9b46-4b60-4c44-9a86-0ab758759505", "embedding": null, "doc_hash": "4bc7704a9a4f666000170845732b0c3f8751c3926d062f0fcae0d426d6fe658a", "extra_info": null, "node_info": {"start": 518481, "end": 534396}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "47795f36-289e-461d-844b-595944d576d2", "3": "d7aa38d2-3f66-4894-aaa1-c72547a45062"}, "__type__": "1"}, "d7aa38d2-3f66-4894-aaa1-c72547a45062": {"text": "Generator of Passwords is extremely useful. There are some purposeful problems, but often it won't prompt me to type in the password shop in case I leave the final pass to instantly pack in the password., I save passwords for various websites, and use the password generator to practice. Using access administrator., 9.0\n733, lastpass, Olga N, Enterprise, 2020-03-22, Store passwords safely, One of the most reliable and safest applications, which take care of our all passwords. It is totally different application which insures the security of our all personal and business information. It is a great alternative for remembering passwords. It locks my all accounts passwords in its storage and provides me a master password for accessing all settings. It is absolutely working efficiently. All functions which helps me while saving my information are appreciable., According to my experience I would say it is excellent password protection platform. Since when I started using it is working excellent. I admire its all services which protects our information safely., I have really great experience with LastPass, it helps me managing all passwords. The synchronizing functions are faster and reliable. It remembers all my important passwords across all devices. It is also beneficial while saving our important time we do not have to write user names and passwords because it works automatically and provides all needed information., 9.0\n734, lastpass, Verified User (Anonymous), Small-Business, 2020-04-17, LastPass getting a bit bloated lately, It's pretty slick. Looks good and does work well. Form Autofill mostly works correctly, Password Generator sits right in the password fields and saves time by not having to move your mouse over elsewhere.It has a very clean look and generally is very easy to use., It has been getting heavier lately and I feel that the app is getting slower and more bloated. Speed is important. All the browser extensions add up so each individual one should be as lightweight as possible.There are some usability issues that results in way too many clicks and it could be very much improved., LastPass solves the huge problem of managing large numbers of passwords. Saves time, improves security and ultimately make me more productive., 5.0\n735, lastpass, Katie M, Mid-Market, 2020-03-18, Remarkable password management, One of the most secure password protection programs. LastPass has a decent interface that comes with secure password storage. It is not only protecting our passwords but also vanishing our complexity of securing our important information. It also auto fills different kind of forms. Moreover it gives a master password in order to make changes in information and in passwords., I am the person who always forgets passwords. So LastPass has given me the great access for synchronizing my all passwords and it keeps remember my all passwords efficiently. There is nothing wrong with this application and its features., LastPass has given us a reliable password security system that keeps our sensitive and important data secure from hackers. Its all functions are well organized. I use it on mobile and desktop device both applications work perfectly., 9.0\n736, lastpass, Dan H, Enterprise, 2020-03-16, Password protection program, LastPass is all in one the best password management program. It provides great control and unified visibility effectively. This program provides multi-functional features and programs. It has made his name because of its well organized services. It makes our professional work more secure and protected. It keeps secure our important information. The synchronizing system of this tool is superb faster., It was a bit difficult to manage passwords in the beginning but it became easier after having command on its all features. For me there is nothing to dislike it is perfect from every aspect. It has been playing an important role in my professional life., The interface of LastPass is intuitive and well organized. It provides master password for accessing and editing all saved information in its database. I prefer using this program for password protection instead you use any other tool., 9.0\n737, lastpass, David C, Enterprise, 2020-03-09, Effective password protection, Lastpass is a fantastic tool that helps me in identity management. It has plenty of features which give security services. It simply syncs all passwords taking permissions then keeps us away from remembering every single password. It also provides us a master password in case we want to customize anything then we can have access to its internal settings., It was really difficult to handle many applications and their passwords before the arrival of LastPass but now it is not a hurdle. We can secure every single device, app and tool with the help of this application. I have no complaint against this software it is working well., LastPass is a great invention and it keeps much positivity. It allows me to keep secure my entire information and passwords. It helps me in many ways. Its all functionalities are performing effectively and efficiently. The authentication, access and identity are all its major goals and it is working well in all sectors., 10.0\n738, lastpass, Dee T, Small-Business, 2022-06-13, Amazing software to manage passwords., I like how I can organize my password into different categories so I can keep my work, personal and family passwords.I also like that I can access my passwords on multiple devices., What is there to dislike, nothing, LastPass does what it suppose too., LastPast solves my problem of managing over a 100 passwords. The benefits makes my job more productive., 10.0\n739, lastpass, Verified User (Anonymous), Mid-Market, 2020-08-27, Great password management solution, Tp be able to securely keep and share passwords while managing them all for the organisation through easily customisable policies., Haven't had good experience with the support team at not just one or two but multiple occasions., Essentially password management for now with the current needs and requirements of the company and that has been accomplished very well., 9.0\n740, lastpass, James G, Small-Business, 2020-05-27, Great Password Management Tool!, Ease of set up and the simplicity of the UI, A little trouble understanding Shared Folders, We have a support team that utilizes this tool throughout the day to access over 300 tenants. This makes it easy to manage each tenant and to access them as well., 10.0\n741, lastpass, Benjamin B, Mid-Market, 2019-12-05, Die Passwortverwaltung ist heutzutage mit LastPass bequem., LastPass ist eine neue Software in der Welt der Technologie, die sehr hilfreich ist, um alle Passw\u00f6rter und Login-IDs zu verwalten und aufzubewahren. Mit dieser erstaunlichen Anwendung muss ich mich jetzt nicht mehr an alle meine Passw\u00f6rter und Login-IDs erinnern, die vor der Ankunft dieser Anwendung komplex waren. Dar\u00fcber hinaus kann ich durch die Vielzahl der Funktionen und Funktionalit\u00e4ten problemlos mehrere Passw\u00f6rter generieren, was meine Arbeit langfristig einfacher und komfortabler macht., F\u00fcr mich ist dieses Produkt ein gro\u00dfer Segen, um meine Zeit und Energie f\u00fcr die Erinnerung an Passw\u00f6rter zu sparen, indem ich Excel-Dateien erstelle, um meine Passw\u00f6rter an einem Ort und.... F\u00fcr mich gibt es also nichts, worum ich mich in diesem Produkt k\u00fcmmern muss, manchmal wird die Arbeit dieser Anwendung langsamer, aber das ist kein gro\u00dfes Problem., Diese Anwendung verf\u00fcgt \u00fcber vollst\u00e4ndig sichere Zwei-Faktor-Authentifizierungsfunktionen, die Sicherheit in Bezug auf die Verf\u00fcgbarkeit von Thumbprints, Face ID und vielem mehr bieten, um in das System zu gelangen.Die Master-Passwort-Funktion dieser Anwendung erm\u00f6glicht es mir, meine Passw\u00f6rter zur\u00fcckzubekommen, auch wenn ich sie vergessen habe oder wenn ich nicht auf alle davon Zugriff habe. Daher ist dieses Produkt sehr n\u00fctzlich, um t\u00e4glich an verschiedenen Anwendungen zu arbeiten, bei denen eine Login-ID und ein Passwort erforderlich sind., 9.0\n742, lastpass, Sharon D, Mid-Market, 2019-12-04, De beste manier om uw wachtwoorden veilig op te slaan en te beheren., Een van de dingen die je leuk vindt aan Lastpass is de eenvoudige en intu\u00eftieve bediening van de grafische interface, met een deel van de verschillende soorten bestanden die passen bij de verschillende sites en accounts die je als gebruiker hebt en die je als gebruiker zelf wilt opslaan op een manier s Tuurlijk. De implementatie van de toepassing in de verschillende omgevingen is zeer compleet, omdat het een mobiele versie, een desktop-app en de versie van de webbrowser heeft. Daarnaast heeft het plugins voor Chrome en Firefox die zeer goed werken zonder dat u de pagina en uw gegevens hoeft in te voeren., In de bureaubladversie voor Windows zijn er terugkerende bugs die enig risico kunnen opleveren voor de integriteit van uw gegevens. Wanneer u een onjuist hoofdwachtwoord invoert, hebt u nog steeds toegang tot de toepassing, maar de gegevens verschijnen met willekeurige tekens, iets wat niet mag gebeuren, want als het wachtwoord verkeerd is, moet u op geen enkele manier toegang krijgen tot de toepassing. Dit is een bug die altijd verschijnt en niet is opgelost in de verschillende updates die ze hebben geduwd., Ik heb Lastpass gebruikt voor mijn persoonlijk gebruik, om wachtwoorden en notities veilig op te slaan zonder dat ik elk van de accountgegevens die ik beheer uit mijn hoofd hoef te leren. De software heeft de mogelijkheid om mijn notities en wachtwoorden op te slaan op een centraal platform, waar het me in staat stelt om snel toegang te krijgen tot mijn accounts, zonder dat ik steeds opnieuw sleutels moet invoeren. Lastpass heeft me geholpen om mijn notities te beheren die ik te allen tijde beschermd moet hebben en tegelijkertijd zijn ze toegankelijk op elk apparaat dat ik gebruik, zonder dat ik ze in platte tekst in mijn telefoon of kantoor hoef op te slaan, aangezien dit duidelijk het risico van diefstal van mijn informatie met zich meebrengt., 9.0\n743, lastpass, Robert A, Small-Business, 2020-05-27, LastPass Is My Daily Use Tool, Keeps me organized and gives a peace of mind for the security of my data but also the ease of documenting what needs documented then the ease of accessing it when needed., The user management is not as easy to understand as I'd like., Websites, passwords, notes all easy to access with search and easy to organize by type of use., 10.0\n744, lastpass, Verified User (Anonymous), Small-Business, 2020-08-19, Robust identity protection, It's easy for us to save and access passwords., Can be a bit finicky for some users, which makes full adoption difficult., More than anything, it's helping our organization realize how many passwords we have for our various services, client sites, etc. Keeping all of those organized and accessible only to those who need them has helped considerably., 9.0\n745, lastpass, Kaitlyn S, Enterprise, 2019-11-20, Der beste Weg, um Ihre Passw\u00f6rter sicher zu speichern und zu verwalten., Eines der Dinge, die Sie an Lastpass m\u00f6gen, ist die einfache und intuitive Handhabung der grafischen Benutzeroberfl\u00e4che, mit einem Abschnitt \u00fcber die verschiedenen Dateitypen, die zu den verschiedenen Websites und Konten passen, die Sie als Benutzer besitzen und die jede Art von Informationen auf eine Art und Weise speichern m\u00f6chten, die sicher ist. Dar\u00fcber hinaus gibt es Plugins f\u00fcr Chrome und Firefox, die sehr gut funktionieren, ohne dass Sie die Seite und Ihre Zugangsdaten eingeben m\u00fcssen.\n, In seiner Desktop-Version f\u00fcr Windows gibt es wiederkehrende Fehler, die ein gewisses Risiko f\u00fcr die Integrit\u00e4t Ihrer Daten darstellen k\u00f6nnen. Wenn Sie ein falsches Master-Passwort eingeben, greifen Sie immer noch auf die Anwendung zu, aber die Daten erscheinen mit zuf\u00e4lligen Zeichen, was nicht geschehen sollte, denn wenn das Passwort falsch ist, sollten Sie in keiner Weise innerhalb der Anwendung zugreifen. Dies ist ein Fehler, der immer auftritt und in den verschiedenen Updates, die sie durchgef\u00fchrt haben, nicht behoben wurde.\n\nReview collected by and hosted on G2.com.Recommendations to others considering the product:Lastpass ist eine sehr komplette Software, um alle Informationen zu speichern, die Sie privat und au\u00dferhalb der Reichweite von neugierigen Blicken aufbewahren m\u00f6chten. Meine Erfahrungen mit diesem Tool waren sehr zufriedenstellend, denn die blo\u00dfe Verwendung der kostenlosen Version ist mehr als ausreichend f\u00fcr meine Grundbed\u00fcrfnisse an der Speicherung von Berechtigungen und Notizen, die den Konten entsprechen, die ich in meiner t\u00e4glichen Basis verwende. Wenn Sie also ein regelm\u00e4\u00dfiger Benutzer sind und eine Anwendung ben\u00f6tigen, die den Schutz Ihrer Daten an einem Ort gew\u00e4hrleistet, dann ist dies eine gute Option f\u00fcr Sie. Das bedeutet auch, dass die kostenpflichtige Version noch mehr Funktionen bietet, die es wert sind, bei Bedarf genutzt zu werden.\n, Ich habe Lastpass f\u00fcr meinen pers\u00f6nlichen Gebrauch verwendet, um Passw\u00f6rter und Notizen sicher zu speichern, ohne mir jede der von mir verwalteten Zugangsdaten merken zu m\u00fcssen. Die Software hat die M\u00f6glichkeit, meine Notizen und Passw\u00f6rter auf einer zentralen Plattform zu speichern, wo ich schnell und ohne erneute Schl\u00fcsseleingabe auf meine Konten zugreifen kann. Lastpass hat mir geholfen, meine Notizen zu verwalten, die ich jederzeit sch\u00fctzen muss, und gleichzeitig sind sie auf jedem Ger\u00e4t, das ich verwende, zug\u00e4nglich, ohne dass sie im Klartext in meinem Telefon oder", "doc_id": "d7aa38d2-3f66-4894-aaa1-c72547a45062", "embedding": null, "doc_hash": "f2ab38a97b5090ee05f1a0acd04b93bc181b347c9d7e0c0dabbf4ecc7bb24d11", "extra_info": null, "node_info": {"start": 534342, "end": 547836}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "319e9b46-4b60-4c44-9a86-0ab758759505", "3": "729acdfc-9d2a-46bd-8e67-88d79efb6178"}, "__type__": "1"}, "729acdfc-9d2a-46bd-8e67-88d79efb6178": {"text": "Gebrauch verwendet, um Passw\u00f6rter und Notizen sicher zu speichern, ohne mir jede der von mir verwalteten Zugangsdaten merken zu m\u00fcssen. Die Software hat die M\u00f6glichkeit, meine Notizen und Passw\u00f6rter auf einer zentralen Plattform zu speichern, wo ich schnell und ohne erneute Schl\u00fcsseleingabe auf meine Konten zugreifen kann. Lastpass hat mir geholfen, meine Notizen zu verwalten, die ich jederzeit sch\u00fctzen muss, und gleichzeitig sind sie auf jedem Ger\u00e4t, das ich verwende, zug\u00e4nglich, ohne dass sie im Klartext in meinem Telefon oder B\u00fcro gespeichert werden m\u00fcssen, da dies eindeutig einem Diebstahlrisiko meiner Informationen ausgesetzt ist.\n, 9.0\n746, lastpass, Ben C, Mid-Market, 2019-11-18, Serious Time Saver!, I have no idea what most of my passwords are anymore. I have hundreds of passwords and LastPass manages and pre-fills them for me. It also allows me to have very complex passwords since you don't need to type them. \n\nGreat way to share credentials amongst a team or even you family!\n\nLinking your corporate and personal accounts is great. , Admin console doesn't support Okta SAML authentication. \n\nI wish there was a way to void a users session after a period of time between the options of upon browser close and never. Some short period of time should be an option as having a user enter their master password every time entering a browser will frustrate users and lead to low adoption while never voiding the session is a security risk and leads to some user administration limitations when new administrators are brought onboard. , Giving our users the ability to store passwords security to eliminate the reuse of passwords, the amount of forgotten password requests and hopefully increase complexity of passwords. We're likely going to eliminate our password change requirement and increase complexity requirements. , 10.0\n747, lastpass, Kris O, Small-Business, 2019-11-18, Solid password management solution w/ some improvements needed, It works on almost every website. It's easy to shut off users or change access. The google chrome plugin saves a lot of time increasing the usability of the product. Fill forms and menu are also available by right-clicking in the browser which adds to the ease of use., The UI/UX could be better between the different areas of the platform as some actions aren't intuitive and can confuse users. Admin dashboard and shared folder actions are different in user vs admin areas. Shared folders aren't intuitive and when you invite a \"group\" all users don't get an email invite even though it says it does. Adding users has two options between invite new and invite existing but you can select both, why?, Having your passwords in one place, easily managed, and the ability to turn off passwords is a huge help. The security that LastPass brings in the real win, if they could up-level the UI/UX it would be the best product out there., 7.0\n748, lastpass, Matthew M, Small-Business, 2019-11-18, Lastpass saves a lot of time and gives users an added layer of security., The most helpful aspect is having all your passwords in one place. It's also very easy for clients to share passwords. The ability for our clients to update passwords on their end and not disable access for our staff saves a huge amount of time. , The biggest dislike about Lastpass is how the passwords are organized. If you don't select a folder to add the password to, Lastpass just generates a separate folder. We need the ability to create a new sub-folder and rename the password through the Chrome extension. , Clients really like that they are able to share encrypted passwords. Especially with financial data and bank account logins, people are understandably cautious to give out their usernames and password. Lastpass provides a solution to this. , 8.0\n749, lastpass, Missi C, Small-Business, 2020-06-01, Streamline Password Management & Tool Sharing Among Teams, The admin console makes it easy to create folders, grant team access, maintain password difficulty and monitor team access., Nothing major to share about a dislike yet., We're able to provide access to subscriptions and tools across many teams, easily grant access or rescind. No more spreadsheets with logins being shared in email., 10.0\n750, lastpass, Jeff R, Mid-Market, 2020-01-31, Poor User Experience, Solid enterprise administrative features, cloud-native, SSO support, MFA support, local-only decryption of user Vaults, and the ability to pair personal and Enterprise accounts., The experience for end users is poor at best. The browser extension is very fragile, and frequently breaks so that users cannot log in without closing all tabs and windows, and fully resetting their browsers. Running as a local browser extension that imitates a webpage, many of the behaviors are unintuitive (such as a page-refresh not refreshing the data). The extension also does a poor job of indicating when items have been synced to the cloud, which can result in data loss in some circumstances.Onboarding a new global administrator is also a difficult and fragile process. Due to how LastPass secures user Vaults, a new administrator with the \"Reset Master Password\" permission may not be able to reset the password on users who infrequently use LastPass (which are the users most likely to require a reset).Additional features for MFA and SSO exist, but since the user experience is so bad, we have been deeply reluctant to integrate LastPass into our infrastructure., Basic functionality exists. Users can generate complex passwords, save their passwords, and participate in security audits to improve their password strength., 4.0\n751, lastpass, Dana R, Small-Business, 2019-11-14, The Simplest, Most Reliable Butt-Saving Service On The Planet, It's the biggest lifesaver on this planet. And, no, I'm not kidding. I would be so lost without LastPass. They have saved my butt on countless occasions - online and mobile. All it needs is my fingerprint and well, that's something that I'm totally willing to give them at this point. The ease of use, the complexity - yet simplicity, the security, the ability to use complex passwords (and stop using the same 2 that I've always used)... all of it, it's just a no-brainer and a yearly expense I'm delighted to part with.\n\nTheir Chrome extension is invaluable and makes logging in to websites so smooth. It's refreshing to have a helper like LastPass, knowing that if my always-churning brain decides to blank out, I've got a backup source of support with them. I regularly clean out my vault and that helps lower the potential confusion during login, especially if the site has changed their url, or if you've changed/updated your login/pass. , Can't say that I have a dislike. It's served me well, and reliably, for over 5 years. , The greatest benefit is accessibility, I'd say. I can access LastPass wherever I am, regardless of device I'm using. I keep my master password updated, strong and long so that gives me the confidence I need to use LastPass in ways that free my mind, so to speak. , 10.0\n752, lastpass, Jim M, Mid-Market, 2020-03-07, Multiple passwords, users, browsers, platforms, Generates, stores, even shares passwords across multiple browsers on my Mac, Android, Chromebook, and PC. Also supports \"secure share\" so the recipient can use the password but not see it., Does not support generating or sharing TOTP codes for sites. Sometimes interferes with browser's built in password management. On Android, sometimes gets confused about which fields are actually usernames/passwords., I only need to remember my own password. All other passwords are auto-generated 16-24 characters strong, and auto-filled. I can even share those secure passwords with my coworkers or family., 10.0\n753, lastpass, Verified User (Anonymous), Mid-Market, 2020-12-24, Easy easy and easy, Intuitive, secure and centralised place for me, Love the accessibility once I have signed into to use my passwords, Extra security within our company, 10.0\n754, lastpass, Marcus F, Mid-Market, 2019-11-09, As the name implies, this is the very last password you'll need to remember, Above all, LastPass is reliable, and that's exactly what you need from a password manager.\nI like the combination of web-page vault, browser extension for auto filling passwords as well as phone and tablet apps, all of which make storing and retrieving passwords almost seemless across every platform/device that I use. I also love being able to share passwords with others., LastPass could use a UI refresh to make their visuals seem a little more modern. It could also use a little bit of a UX refresh on the password sharing feature - to make it more obvious and easy., LastPass means that you don't have to write down or store passwords anywhere that isn't secure, accessible anywhere or backed up.\nLastPass allows you to access and/or use your passwords from any of your devices at any time, with or without an internet connection, always knowing that your data is safely backed up and never accessible to anyone who has no authority to use your device - especially a thief., 10.0\n755, lastpass, Verified User (Anonymous), Small-Business, 2020-08-27, Long time Personal User; Recommended & Deployed for Business, Secure, cloud-based, easy/intuitive interface, easy of administration & maintenance, I can't really think of anything I don't like., Control over business/customer accounts (VPN, servers, etc.) as well as software licenses and \"common\" accounts, 10.0\n756, lastpass, all videos R C Rashid Hassan C, Enterprise, 2019-11-06, LastPass: The final destination for your all passwords., d Hassan C.Assistant Manager (Technical)Enterprise(> 1000 emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerVerified Current UserReview source: G2 inviteIncentivized ReviewNov 06, 2019(Original Sep 24, 2019)\"LastPass: The final destination for your all passwords.\"Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemov, hid Hassan C.Assistant Manager (Technical)Enterprise(> 1000 emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerVerified Current UserReview source: G2 inviteIncentivized ReviewNov 06, 2019(Original Sep 24, 2019)\"LastPass: The final destination for your all passwords.\"Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo, prise(> 1000 emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerVerified Current UserReview source: G2 inviteIncentivized ReviewNov 06, 2019(Original Sep 24, 2019)\"LastPass: The final destination for your all passwords.\"Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo, 9.0\n757, lastpass, all videos J B Jason B, Small-Business, 2019-11-05, Control Password Management for Contractors and Employees, B.Small-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerReview source: OrganicNov 05, 2019\"Control Password Management for Contractors and Employees\"Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemov, on B.Small-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerReview source: OrganicNov 05, 2019\"Control Password Management for Contractors and Employees\"Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo, tactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerReview source: OrganicNov 05, 2019\"Control Password Management for Contractors and Employees\"Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo, 7.0\n758, lastpass, Bernardo B, Mid-Market, 2020-07-05, Great product for putting yourself together and maintaining higher security levels, Nice sensitive information manager. Generating passwords is easy and you can select criteria involved. You can use the app in groups or teams., UX/UI needs to be improved, since the platform is not very intiutive. Some times it doesn\u00b4t capture automatically your new passwords, so be sure to copy it somewhere else until you are sure Lastpass recorded it., Centralizing password management for a company and individuals., 7.0\n759, lastpass, all videos A T Alexis T, Small-Business, 2019-11-04, Mostly user friendly a little clunky, s T.Customer Success ManagerSmall-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerVerified Current UserReview source: Seller inviteIncentivized ReviewNov 04, 2019(Original Aug 15, 2019)\"Mostly user friendly a little clunky\"Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemov, xis T.Customer Success ManagerSmall-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerVerified Current UserReview source: Seller inviteIncentivized ReviewNov 04, 2019(Original Aug 15, 2019)\"Mostly user friendly a little clunky\"Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo, or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerVerified Current UserReview source: Seller inviteIncentivized ReviewNov 04, 2019(Original Aug 15, 2019)\"Mostly user friendly a little clunky\"Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo, 7.0\n760, lastpass, Bozena T, Enterprise, 2019-10-26, LastPass is now useful for password maintenance, LastPass is innovative technology program that is very helpful in maintaining and recording all passcodes as well as login IDs. I don't have to recall all my passwords and user IDs that were complicated before this software arrived with this awesome application now. In addition, through its multitude of capabilities and features, I can easily supply multiple credentials that make my work easier and more convenient in the longer term., For me the service is a significant blessing to have my passwords on one location and in order to save both my energy and my time by making excellent files. There's therefore nothing that matters to me about this good or service, but it doesn't matter much that the work of this application sometimes gets lent., The software has two fully secure verification features that allow safety with finger prints, Face ID, and many more for the device to be available in terms of competence.\n\nThis software's master password facility allows me to retrieve my passwords even if I have forgotten them or if I do not all have access. This item is therefore extremely useful to work every day on various applications, where password ID and login are required., 9.0\n761, lastpass, Verified User (Anonymous), Small-Business, 2020-09-09, Convenient for team management, Team sharing features are useful and efficient., Sometimes glitches in folder names\u2014would benefit from a way to remove some shared items., Can delegate use of passwords without sharing passwords, 8.0\n762, lastpass, Verified User (Anonymous), Small-Business, 2020-10-12, Easy to manage passwords from anywhere., I like the ability to access my passwords if needed from any location and easily editable, and overall simple to use., Duplicate sites (CC's), are more difficult to manage when same product., Password Security in one location and Curability. I have passed on my credentials in case of death., 10.0\n763, lastpass,", "doc_id": "729acdfc-9d2a-46bd-8e67-88d79efb6178", "embedding": null, "doc_hash": "6a1ce29c7509a4d044616421033c7dac62e662398f40b806d52cb931a30d10a4", "extra_info": null, "node_info": {"start": 548114, "end": 563605}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "d7aa38d2-3f66-4894-aaa1-c72547a45062", "3": "8fd42144-612b-474b-87c1-59524decb9b3"}, "__type__": "1"}, "8fd42144-612b-474b-87c1-59524decb9b3": {"text": "on various applications, where password ID and login are required., 9.0\n761, lastpass, Verified User (Anonymous), Small-Business, 2020-09-09, Convenient for team management, Team sharing features are useful and efficient., Sometimes glitches in folder names\u2014would benefit from a way to remove some shared items., Can delegate use of passwords without sharing passwords, 8.0\n762, lastpass, Verified User (Anonymous), Small-Business, 2020-10-12, Easy to manage passwords from anywhere., I like the ability to access my passwords if needed from any location and easily editable, and overall simple to use., Duplicate sites (CC's), are more difficult to manage when same product., Password Security in one location and Curability. I have passed on my credentials in case of death., 10.0\n763, lastpass, Jason B, Small-Business, 2019-10-23, Best of the worst, I like the ability to share passwords with team members with out actually giving them the password and with out them or me having to remember all the passwords to all our software platforms., The software is buggy. I often share a password yet my team members cannot log in, or the password I share comes across blank. We often have to delete the password share then re-share it., The benefit of it is that you do not have to remember all your passwords for your multiple sites as well as you don't have to share the actual password with contractors or team members in the event they quit or leave you, you can remove them and not really worry that they have your password. Although there is a way to hack it and get the password but I won't put that out here on the internet., 5.0\n764, lastpass, Alexander Jr T, Mid-Market, 2019-10-16, The best way to securely store and manage your passwords., One of the things that you like about Lastpass is its easy and intuitive handling of its graphical interface, with a section of the different types of files that fit the different sites and accounts that you as a user own and want to store any type of information in a way s Sure. The implementation of its application in the different environments is very complete since it has a mobile version, desktop app and its version of web browser. In addition to this it has plugins for Chrome and Firefox which work very well without having to enter the page and enter your credentials., In its desktop version for Windows there are recurring bugs that may present some risk in the integrity of your data. When you enter an incorrect master password you still access the application but the data appears with random characters, something that should not happen, because if the password is wrong you should not access in any way within the application. This is a bug that always appears and has not been fixed in the various updates they have pushed., I have used Lastpass for my personal use, in storing passwords and notes securely without having to memorize each of the account credentials I manage. The software have the ability to store my notes and passwords on a centralized platform, where it allows me to access my accounts quickly and without having to re-enter keys over and over again. Lastpass has helped me to management my notes that I need to have protected at all times, and at the same time they are accessible on any device I use, without the need to have them stored in plain text in my phone or office since this clearly faces a risk of theft of my information., 8.0\n765, lastpass, Julia G, Small-Business, 2019-10-13, Aunque siempre se me olvidan las claves, con Lastpass no tengo problemas para entrar en mis cuentas , LastPass is a very complete application that helps to save the passwords of the pages, its extension in Chrome makes my life easier, its interface is very nice.\nI keep my keys and that of my friends, it has many facilities of which my favorite is \"My vault\", So far the application has been very useful and has not generated problems in its use.\nIt would be very interesting if there was the option to create a profile for a secretary in order for them to manage the keys by accessing with their own profile and thus control when they enter and when the original user enters., Currently I use more than 15 applications and pages to develop my work as a freelancer, so I was having trouble remembering all the keys.\nNow that I use this application from LastPass I have worked more calmly and with confidence, 7.0\n766, lastpass, Ann G, Small-Business, 2019-10-03, Brilliant keeper of passwords, I love that LastPass securely keeps all of my website passwords in one spot, across all of my devices... phone, tablet, PC. Easy to use, and I like how I can organize my passwords by category. Ex: shopping, finances, kids etc. , Although LastPass ensures that my passwords and account information are secure, I am still a bit hesitant to keep all of my sensitive information on the web / in the cloud., I used to keep all of my passwords on a sheet of paper in my office, which was great if I was searching for a password in my office. I would not have access if I were out of the office. LastPass travels with me, so I can access my info ANYWHERE with one log in. Note: Do not forget your master LastPass password to log into the app!!!, 10.0\n767, lastpass, Berit T, Mid-Market, 2019-12-17, LastPass ist jetzt vorteilhaft bei der Verwaltung von Passw\u00f6rtern., Einige der Funktionen, die Sie am meisten an Lastpass m\u00f6gen, sind die einfache und unkomplizierte Verwaltung der grafischen Benutzeroberfl\u00e4che, die einen Abschnitt der verschiedenen Arten von Dateien enth\u00e4lt, die mit den verschiedenen Websites und Profilen, die Sie als Kunde besitzen, verkn\u00fcpft sind. Die Software ist unter verschiedenen Bedingungen vollst\u00e4ndig implementiert, da sie \u00fcber ein Smartphone-, Laptop- und Webbrowser-Modell verf\u00fcgt. Es gibt Plugins, die f\u00fcr Chrome und Firefox sehr gut funktionieren, ohne auf die Website zuzugreifen und die Zugangsdaten einzugeben., Wiederholte St\u00f6rungen waren in der mobilen Version von Windows enthalten, die ein Risiko f\u00fcr Ihre Datensicherheit darstellen k\u00f6nnen. Wenn Sie ein ungenaues Master-Passwort eingeben, k\u00f6nnen Sie die Datenbank \u00f6ffnen, aber die Informationen werden in zuf\u00e4lligen Zeichen angezeigt, dies sollte nicht geschehen, da Sie keinen Zugriff darauf haben sollten, wenn der Code falsch ist. Dies ist ein Problem, das bei den verschiedenen von Ihnen eingereichten \u00c4nderungen immer vorlag und nicht gepatcht wurde., Um Tonnen von Passw\u00f6rtern und Informationen zu verarbeiten, habe ich Lastpass f\u00fcr meinen eigenen Gebrauch verwendet, ohne einen der Schl\u00fcssel f\u00fcr mein Profil packen zu m\u00fcssen. Die Technologie ist in der Lage, meine Notizen und Passw\u00f6rter auf einer zentral gesteuerten Plattform zu speichern, so dass ich mich schnell direkt mit meinen Konten verbinden kann, ohne Schl\u00fcssel neu eingeben zu m\u00fcssen. LastPass hat mir geholfen, meine Notizen zu bearbeiten, die ich jederzeit sch\u00fctzen m\u00f6chte, w\u00e4hrend ich auf jedem von mir verwendeten Smartphone verf\u00fcgbar bin, ohne sie im Klartext auf meinem Handy oder im B\u00fcro speichern zu m\u00fcssen., 9.0\n768, lastpass, Donald C, Enterprise, 2019-12-13, LastPass is now beneficial in managing passwords, Some of the features you like most about Lastpass is its simple and straightforward management of the graphical interface, which includes a section of the various types of files that tie in with the various sites and profiles you own as the client. The software is fully implemented in different conditions because it has a smartphone, laptop and web browser model. It has plug-ins that function very well for Chrome and Firefox without accessing the website and entering the credentials., Repeating glitches were contained in its mobile version of Windows which may pose a risk for your data security. When you type an inaccurate master password you can open the database but the information is shown in random characters, this should not happen, since you should not have access to it in any manner if the code is wrong. This is a problem that always existed in the various changes you submitted and was not patched., For processing tons of passwords and information, I have been using Lastpass for my own use without having to pack any of the keys for my profile. The technology is capable of storing my notations and passwords on a centrally controlled platform, so I can rapidly connect directly my accounts without re-entering keys. LastPass aided me handle my notes, which I want to protect all of times, while being available on any smartphone I use, without having to store them in plaintext on my mobile or office., 9.0\n769, lastpass, Tyler G, Mid-Market, 2019-10-05, I'd never go back, but could be improved, I love how much time LastPass saves me every day and how convenient it is to sign in most of the time. , I don't like that sometimes the auto-fill is buggy and LastPass is often slow. It could be more intuitive to operate, but overall it's pretty good. Sometimes the auto-fill/popup windows are annoying or wrong and managing equivalent domains is extremely cumbersome., Making sure all passwords are different and secure. Saving time signing in. LastPass makes sharing passwords easier and it makes signing in on a mobile device faster most of the time. , 8.0\n770, lastpass, Jordan T, Mid-Market, 2019-12-12, La mejor manera de almacenar y administrar su contrase\u00f1a de forma segura, Una de las cosas que te gusta de Lastpass es el manejo f\u00e1cil e intuitivo de su interfaz gr\u00e1fica, con una secci\u00f3n de los diferentes tipos de archivos que se adaptan a los diferentes sitios y cuentas que tienes como usuario y que quieres almacenar cualquier tipo de informaci\u00f3n de una forma segura. Adem\u00e1s tiene plugins para Chrome y Firefox que funcionan muy bien sin tener que entrar en la p\u00e1gina e introducir tus credenciales., En su versi\u00f3n de escritorio para Windows hay errores recurrentes que pueden presentar alg\u00fan riesgo en la integridad de sus datos. Cuando se introduce una contrase\u00f1a maestra incorrecta se accede a la aplicaci\u00f3n pero los datos aparecen con caracteres aleatorios, algo que no deber\u00eda ocurrir, ya que si la contrase\u00f1a es incorrecta no se debe acceder de ninguna manera dentro de la aplicaci\u00f3n. Este es un error que siempre aparece y no ha sido corregido en las diferentes actualizaciones que han empujado., He utilizado Lastpass para mi uso personal, para almacenar contrase\u00f1as y notas de forma segura sin tener que memorizar cada una de las credenciales de cuenta que administro. El software tiene la capacidad de almacenar mis notas y contrase\u00f1as en una plataforma centralizada, donde me permite acceder a mis cuentas r\u00e1pidamente y sin tener que volver a introducir las claves una y otra vez. Lastpass me ha ayudado a gestionar mis notas que necesito tener protegidas en todo momento, y al mismo tiempo son accesibles en cualquier dispositivo que utilice, sin necesidad de tenerlas almacenadas en texto plano en mi tel\u00e9fono u oficina ya que esto claramente conlleva un riesgo de robo de mi informaci\u00f3n., 9.0\n771, lastpass, Verified User (Anonymous), Enterprise, 2020-08-28, LastPass Password Store and SSO, Easy to store password store.Life cycle management of users is straight and simple.Securely able to store passwords and pass phrases and root account inrmation., Password reset is hard. Otherwise it has been a no problem tool., Password store solution we are using LastPass., 8.0\n772, lastpass, arlee e, Small-Business, 2019-09-25, LastPass saved my life, You only have to remember one password and last pass saves the rest of your passwords for you. Plus they are accessible from any device as long as you know your password!! (key, remember that one password), The only thing I would say about laspass that has disappointed me is that sometimes it does not update passwords in the system, or \"ask to update\" and I can't get in with my new password because I cant remember it., I'm solving efficiency problems, if I had to remember every password I created i would have to write them all down! (and that's not secure in the slightest) I recently got a new computer and it was easy to transfer all my secure website logins because I just had to login into my last pass and then launch my sites. very simple, 10.0\n773, lastpass, Marius K, Enterprise, 2019-12-08, Benutzerfreundlicher Passwort-Manager, LastPass hilft mir, meine Gesch\u00e4ftskonten-Benutzernamen und -Passw\u00f6rter an einem Ort zu organisieren und gleichzeitig eindeutige, sichere Passw\u00f6rter f\u00fcr jedes Konto zu haben. Es ist Cloud-basiert, deshalb liebe ich es, es sowohl auf meinem Handy als auch auf dem Desktop nutzen zu k\u00f6nnen. Ich liebe auch den Abschnitt Secure Notes, wo ich einfach zuf\u00e4lligen Text einf\u00fcgen kann, an den ich mich erinnern muss, den ich aber sichern m\u00f6chte. Ich sch\u00e4tze auch die Multi-Faktor-Authentifizierung und die Tatsache, dass sie sich mit YubiKey verbinden, ist fantastisch. Extra Sicherheit!, Die Browsererweiterung hat eine andere Benutzerfreundlichkeit als die mobile Version, so dass ich manchmal \u00fcberall nach etwas suche (z.B. ein Passwort generieren). Ich denke, dass die mobile Version intuitiver ist als die Desktop-Version., Wie man Passw\u00f6rter sicher, gesch\u00fctzt und alles an einem Ort aufbewahrt. Nicht nur f\u00fcr mich, sondern auch f\u00fcr die Menschen, mit denen ich arbeite, deren Konten oder privilegierte Informationen ich sicher speichern muss (z.B. die Kreditkarteninformationen meines Chefs). Zugegebenerma\u00dfen braucht das Setup einige Zeit, aber sobald Sie das getan haben, ist es ein Kinderspiel, auf Ihre Konten zu gelangen., 8.0\n774, lastpass, Lavar B, Small-Business, 2019-11-26, A Life Saver, I like how the sites are broken into different categories. The red indicator on the right side of chrome let's you know if you sign in or not. Now if you're aren't able to create one, it cool they have a password generator for the complexity. We all know sometimes we aren't able to really get a complex password especially one that we would remember. ,", "doc_id": "8fd42144-612b-474b-87c1-59524decb9b3", "embedding": null, "doc_hash": "58892edc67fad27bafa94d9140120ceb11b184eb8c07fee07168796cfdc3dbcd", "extra_info": null, "node_info": {"start": 563377, "end": 577324}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "729acdfc-9d2a-46bd-8e67-88d79efb6178", "3": "5cd8184d-cfb7-43b0-a3d9-cbdf29055c9b"}, "__type__": "1"}, "5cd8184d-cfb7-43b0-a3d9-cbdf29055c9b": {"text": "oder privilegierte Informationen ich sicher speichern muss (z.B. die Kreditkarteninformationen meines Chefs). Zugegebenerma\u00dfen braucht das Setup einige Zeit, aber sobald Sie das getan haben, ist es ein Kinderspiel, auf Ihre Konten zu gelangen., 8.0\n774, lastpass, Lavar B, Small-Business, 2019-11-26, A Life Saver, I like how the sites are broken into different categories. The red indicator on the right side of chrome let's you know if you sign in or not. Now if you're aren't able to create one, it cool they have a password generator for the complexity. We all know sometimes we aren't able to really get a complex password especially one that we would remember. , I think notications would be one. For example, sometimes, I would like it not to ask all the time and there are some site that are the same but with different passwords and it ask me to update them even though the user name is different, We was using sheets for our passwords, 10.0\n775, lastpass, Verified User (Anonymous), Small-Business, 2018-01-03, Never forget or lose your passwords again, I can securely store client or personal information and easily access it whenever I need it. , Sometimes linking to sites directly with a password does not gain me access, so i have to manually enter information in., I never need to worry about forgetting or losing a username, password, credit card, or other piece of personal information for my clients. , 10.0\n776, lastpass, Dave N, Enterprise, 2018-02-07, So easy, LastPass is just so easy to use. I love the simplicity and browser integration., Sometimes when I generate a password for a site, it doesn't save it properly in my vault, So many generic accounts and admin account to manage - it's just so much easier when they can be hyper-random (and therefore more secure) and I don't need to worry aout remembering any of them., 9.0\n777, lastpass, Verified User (Anonymous), Small-Business, 2018-01-29, Simple and flexible security., The installation, setup, and adoption have been very easy and straightforward. We like that it stores all of our passwords and sensitive notes, and we can make folders to share them with selected individuals., So far, nothing! It's met all of our requirements., We realized that our password and CC info handling was not as secure as it should be, which is why we evaluated and ultimately adopted Lastpass., 10.0\n778, lastpass, Verified User (Anonymous), Mid-Market, 2017-12-27, My Whole Life is Organized!, It is SO EASY to use. I've used the browsers built in password keeper in the past but it is nothing in comparison. And when I transition from work computer to home computer or to mobile it is so simple to switch accounts., I just wish that the mobile integration was more like the desktop integration., It makes my day a lot easier, we have a ton of shared accounts and I don't need to go searching for passwords. The time savings is unbelievable., 10.0\n779, lastpass, Phil K, Small-Business, 2017-05-26, Easy to use + great tool for secure credential sharing with clients, It is a great tool to offer to clients as a secure way for them to share sensitive credentials with us. It seems much more professional than asking them to send over email, and it's great to go back and find passwords shared weeks/months before., The only two short comings I have: 1.) I wish our entire team had access to our clients shared passwords, or perhaps an admin could at least distribute shared passwords to other members on the team. 2.) The constant notifications to add site to LastPass can be quite aggravating when I'm browsing the web away from work, and don't want to add any of my personal sites to LastPass. , Quicker and safer way of having clients share their sensitive credentials with us. Main benefit is that you can always go back and find credentials, where the alternative (seeking through emails) can be quite difficult and time consuming., 8.0\n780, lastpass, Verified User (Anonymous), Mid-Market, 2017-10-24, Game Changer, LastPass has revolutionized not only the way I protect information but also the way I craft it. I now generate random passwords that are more difficult to crack. It keeps my information secure and all in one place. , It can be nerve wracking to put all your passwords into one place. If that is hacked, it would be big trouble. It\u2019s important to regularly run audits and to change up passwords to keep things extra safe and thankfully this tool does make it easy for that to happen. , Working across a large team with many services, it can be difficult to remember all the username and passwords we are given. Not to mention, we travel for work which means we have to have gain access on the go. LastPass makes that possible. , 10.0\n781, lastpass, Michael L, Small-Business, 2017-10-01, Why did it take me so long to start using this?!, Simple, secure, and organized. LastPass provides a single \"vault\" for all of your passwords for all of your services. In addition to the security, it is helpful to know the URLs of all the most important sites you use every day. , The iOS app is decent but doesn't integrate directly with any applications. This means you have to jump back and forth between apps on your phone, whereas everything is seamless within the browser experience with the Chrome plugin. , Saving time, securing passwords and keeping organized. , 10.0\n782, lastpass, Verified User (Anonymous), Small-Business, 2017-11-08, Password Management for a busy world!, Last Pass is fairly easy to use and has a mobile app that allows you to verify your identity quickly. The mobile app is nice because there are no codes to enter and you just tap the button to verify and it is quick. It is nice to know that my passwords are all safely stored., The browser plug in is a really nice feature but it can be really slow sometimes. Sometimes it takes multiple clicks to get it to open and then sometimes it interprets the second click as a request to close. Minor inconvenience and it is a good tool overall., LastPass allows our company to be compliant with various regulations and insurance standards that require various levels of security around how business password information is stored. For example, LastPass allows us to set rules about multi-factor identification., 10.0\n783, lastpass, Verified User (Anonymous), Small-Business, 2018-03-31, Lastpass - 1 password you need., No need to memorize passwords. Also I can use different pws for each new site., Mobile app. Sometimes doesn't save automatically, More secure pws, also easy sharing, 7.0\n784, lastpass, Verified User (Anonymous), Mid-Market, 2017-08-04, My most faviorite app of all time! , What's not to love about LastPass. It has made transitioning from my work office to home office seamless. I use it in my personal and professional life and I even have the app on my phone. I was nervous abotu using a single sign in app but I feel safe with LastPass. , Honestly, there is nothing I dislike about LastPass I can't say one bad thing. I have been using it for almost 2 years and have not one bad thing to say. All of my employees love it. I don't often use apps that I use at work at home but this is one that I do! , All you have to do is remember one strong password to keep your password vault safe and secure. Once you login to your vault, you have access to all of your logins. It makes it easy to share passwords and login credentials with your coworkers or spouse. , 10.0\n785, lastpass, Verified User (Anonymous), Mid-Market, 2017-12-07, Increased security online, I love that LastPass keeps all of my passwords in one place and will help to create ultra secure passwords. In the past I would, like most people, use the same password and username for many sites so I could easily remember them. With LastPass I just need to know one password and it helps me with get to the rest. It also allows me to organize the sites by the type that they are., The only thing I dislike is that a few times I have changed a password but it didn't save correctly (user error) into LastPass and I had to reset the password again., Having secure logins is important. LastPass has helped me to increase the security when logging into many sites., 8.0\n786, lastpass, Verified User (Anonymous), Enterprise, 2018-03-09, Password locker, The app is designed In a way that it can store multiple passwords for multiple sites., Should be able to use this app in Chrome incognito mode., No longer have to remember passwords., 10.0\n787, lastpass, Verified User (Anonymous), Small-Business, 2018-01-18, This app is required, as far as I'm concerned, Simply enough, I like that I don't have to remember my passwords anymore. , LastPass occasionally fills fields on certain websites that aren't actually password or login fields. This can be quite annoying, but it's only 1% of the time., Saved a lot of time, and I believe there is an option to share passwords with your team as well, which i've yet to take advantage of. , 10.0\n788, lastpass, Isaul C, Small-Business, 2017-10-19, Great for managing passwords, I love the ability to keep all my passwords up to date and available at will., It has a bit of a learning curve which could discourage some new users., I don't have to worry anymore about coming up with new passwords, or even remembering several passwords. I can also safely share access to accounts as well as storing important documents., 10.0\n789, lastpass, Verified User (Anonymous), Small-Business, 2018-04-05, A great time saver, I like the fact that all of my passwords are able to be kept in the same place., I don't have too many dislikes of the software - I dislike how many passwords I have. lol, We are solving the issue of password management, at the present time I'm using the application personally, but I want to deploy to my team for shared password management., 8.0\n790, lastpass, Verified User (Anonymous), Small-Business, 2018-04-26, Fast and secure, The best thing is that we have all the passwords in one place and with it you feel safe every day, act quickly when it comes to inserting all of details., The price when we went to renew, they should have some discount for old customers. , The safety and speed with which you work, 9.0\n791, lastpass, Verified User (Anonymous), Mid-Market, 2017-10-06, LastPass Review, I love being able to access my passwords across devices and platforms, and seamlessly access them while using a variety of websites. , I have found some sites do not save accurately, though this tends to only occur when login screens include multiple fields (e.g., email, username, password) and the wrong field is saved. , Having access to my passwords prevents me from entering multiple wrong attempts, therefore not having to reset passwords as often. , 9.0\n792, lastpass, Nathan W, Small-Business, 2017-07-28, Lastpass is a my first recommendation for password security , My favorite thing about LastPass is how easy it is to remember to use it. With my experience with other password systems, it is up to you to remember to save everything. Whenever Lastpass detects I am entering in a new login on a site, it offers to add it to my vault . \n\nAnother great feature is the auto password change. On several big sites, Lastpass can change your password for you (only with your permission and you have to tell them to do it). It is a great way to keep those important accounts secure., The only real issue I have had is sometimes the plugin gets in the way website forms. However, they can't program it to work on every possible site, so I will let it slide., Between generating secure passwords to give to people when I set up accounts, to keeping confidentail info secure, Lastpass is a must have for me., 10.0\n793, lastpass, Verified User (Anonymous), Small-Business, 2018-04-25, WOW where has this been my whole life, Stores all my password in one place and in a secure manner. Can share passwords and username with other people using LastPass., Have not found anything yet. This is a great product , I can log into things quicker and dont lose any passwords when I clean out my history. , 10.0\n794, lastpass, Madhu S, Small-Business, 2017-07-27, Lastpass - It's like a separate brain for all your passwords!, With websites getting hacked all the time, you really need to create a different password for each site. That way, if a site gets hacked, you won\u2019t have to worry about the hacker using the same stolen password on other websites to get into your accounts. Remembering a different password for every site is impossible, especially if you want to make the password secure by using special characters. Lastpass to the rescue!Lastpass will generate a secure password for you. The password will be gobbledygook, which makes it very hard to hack or guess. The password is different for every website.When you return to the website, Lastpass will recall the password for you, allowing you to login in seconds. For many websites, it can even login automatically which saves you from doing anything.Once you use lastpass, you will wonder how you lived without it!Other features:1) Form fillYou can set up profiles with all your details allowing Lastpass to automatically fill in online forms for you.You can even set up profiles for obscure details.You can switch between profiles, which is handy if you have multiple email accounts or phone numbers.2) Automatic password changingFor certain sites, Lastpass will automatically change your password.This makes it a breeze to change your passwords on a regular basis, which is a good way to keep secure. 3) Alerts when a website has been hackedIf a website is known to be hacked, Lastpass will alert you to change your password (and in some cases it will do the change automatically) 4) Hardware authentication Lastpass can be linked to a hardware device such as your mobile phone.That way, in order to login to your account, you will need your mobile, which keeps your account very secure. 5) Password sharingYou can share passwords. This is very useful in an office where multiple people might have access to the same website.6) Excellent interfaceThe interface is very streamlined. It automatically pops up when you need it and then disappears when you don\u2019t.7) MultiplatformLastpass works on all platforms including Windows, Mac, Android. On mobile, it can even work with apps, which is a big time saver.8) Password auditLastpass can audit your passwords to search for insecurities (such as duplicate passwords, old passwords or hacked passwords) 9) It\u2019s freeRemarkably all these features are free (apart from Password sharing which is only in the premium plan)., Lastpass has one disadvantage. On certain websites it can forget to save the password you created, which lock you out of the site. This is very rare, but it is annoying when it happens. As a work around you can choose to copy the password to your clipboard when it is created. That way, if it forgets to save the password, you can just paste it back into its database of your passwords., I use Lastpass at work to remember all the passwords I use for various websites. \nI could not imagine working without it. It keeps me safe and secure. It also saves time, as I don't have to remember passwords.\n\nIt also saves time when filling in forms., 10.0\n795, lastpass, Verified User (Anonymous), Mid-Market, 2018-01-31, Never forget your passwords again! , Lastpass can automatically save your passwords so you", "doc_id": "5cd8184d-cfb7-43b0-a3d9-cbdf29055c9b", "embedding": null, "doc_hash": "1f3108f7a3f536d7d53a080ec095133e06578cb820b6c210700fe08baa0cc3b5", "extra_info": null, "node_info": {"start": 577448, "end": 592881}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "8fd42144-612b-474b-87c1-59524decb9b3", "3": "f41c82ab-e7e7-4d09-ace5-8f7473730273"}, "__type__": "1"}, "f41c82ab-e7e7-4d09-ace5-8f7473730273": {"text": "it can forget to save the password you created, which lock you out of the site. This is very rare, but it is annoying when it happens. As a work around you can choose to copy the password to your clipboard when it is created. That way, if it forgets to save the password, you can just paste it back into its database of your passwords., I use Lastpass at work to remember all the passwords I use for various websites. \nI could not imagine working without it. It keeps me safe and secure. It also saves time, as I don't have to remember passwords.\n\nIt also saves time when filling in forms., 10.0\n795, lastpass, Verified User (Anonymous), Mid-Market, 2018-01-31, Never forget your passwords again! , Lastpass can automatically save your passwords so you can easily log onto websites with maximum security! , Sometimes you have to log into the actual LastPass website... slightly annoying, but very worth it to have all passwords saved automatically , Better security! Easier to log onto platforms with very secure passwords so you don't have to remember them , 10.0\n796, lastpass, Verified User (Anonymous), Mid-Market, 2018-05-17, Great experience for a free app, It is free way to securely hold passwords and other sensitive information, The phone and browser app can be a little clunky and un-intuitive, the design could be improved., It allows me to generate secure passcodes to protect my data., 9.0\n797, lastpass, Victoria Z, Small-Business, 2017-07-31, My brain is very grateful for LastPass - too. many. passwords., Ease of use. Auto-populating passwords is the most important thing for me as a social media manager. I need to log into many accounts in a day and having that speed is super important., Sometimes it seems to malfunction and not auto-populate. I think anything I don't like is probably my own fault though for messing things up., I work with lots of clients and their social media accounts, so I HAVE to have something like this. I know there are other options for similar programs, but LastPass has never given me a reason to consider jumping over to a different one., 10.0\n798, lastpass, Verified User (Anonymous), Enterprise, 2018-05-01, LastPass Review, I like the simplicity of the design and the ease of inputting the account information., Sometimes searching for the right account details can be painful, especially if the name is not easily memorable., It provides quick access to servers that saves me time during my day., 9.0\n799, lastpass, Verified User (Anonymous), Small-Business, 2018-03-28, Best application to share password securely, Its simple interface easy to use for technical person. Fast transmission of passwords and secured notes as well, Not so simple to use for Non-IT person. Training required to teach them about this. , Sharing password securely. Lot of benefits but one of the main is security and transparent process to share the password, 10.0\n800, lastpass, Muhammad Fahad B, Small-Business, 2019-07-22, Hassle free sign-in to services you use without remembering random strings, I switched to LastPass after giving up on Keeper (a really versatile but expensive alternate). As with every password manager, it allows you to generate passwords and store them. However, the service is available on every major platform and browser and the auto-fill experience is a breeze especially on Android. It even allows you to evaluate all your current passwords, check if they were disclosed in any recent security breach and suggests actions to mitigate any security concerns. And oh, their premium plan is really cheap and one really doesn't even need it. Their free plan includes device sync which many other competitors don't include (Keeper included) and you can use it offline and on multiple devices. , My only concern is the use of Accessibility Service on Android. Sure AutoFill doesn't works everywhere, but the app gets killed in the background rendering it sometimes useless. Regardless of this, it works great. I use the extension and Windows app regularly without any hiccups.The auto-password change feature needs some adjustments here and there, it sometimes fail. And oh, they can improve the interface (Dashlane has a really great interface)., The biggest of all, I don't need to manually record my passwords. Neither I have to brainstorm to generate unique passwords. LastPass does it automatically and stores them for you and makes it instantly available across all your devices.You can also save your crucial financial documents such as cards and stuff with their storage on Enterprise plans so that's a plus too., 10.0\n801, lastpass, Verified User (Anonymous), Small-Business, 2019-11-02, Good password manager as long you don't need your mobile, I still haven't found the perfect password manager but this comes pretty close. Let's you save multiple passwords for a site and you can save tons of other secure notes. , When adding a password to a shared space it can takes ages for it to propagate and you can never be sure when it will be available to others. Also the interface needs a good think through because sometimes it's just a pain to use. Especially when you try to save a password or a secure note in a specific folder structure. I'm limited to the 200pixel wide window and the folder selector drop-down only shows the first characters of the parent folder... Good luck finding the actual folder you want to save to. , We're sharing passwords for services that specific project members need access to. , 9.0\n802, lastpass, Verified User (Anonymous), Small-Business, 2019-11-14, Best way to manage passwords and stay secure , I like that LastPass auto-generates passwords so I never have to create my own. It tells me if any of my passwords are the same so I can go in to change them. I like that it gives me a security rating because it makes it seem like a challenge to me so my competitive spirit is ignited and it makes my security practices better. , My Chrome plugin gives me some issues. When I try to add a new password it always says something like \" can't complete this task.\" Sometimes it actually saves the password and sometimes it doesn't. , I am a much more secure user. Admittedly, I use to use the same password across some platforms. Now I have complex passwords and don't need to remember them! , 10.0\n803, lastpass, Philippe F, Small-Business, 2020-06-11, Awesome password management tool for professional agencies, Easily sharing password and enterprise security tools, Sometimes the Vault is slow. There are no other downsizes., LastPass deals perfectly with our customer's passwords, 10.0\n804, lastpass, essica i, Small-Business, 2019-11-20, BEST password manager, I like how on any device lastpass can be accessed. I also have to maintain over 11 individuals passwords for multiple sites and lastpass is a GAME CHANGER!!!, Sometimes depending on browser it will not activate lastpass, Benefits are i feel very secure now when i log into websites. I also like how i dont have to save passwords into the browser itself. , 10.0\n805, lastpass, Javier V, Small-Business, 2019-09-06, Password Manager for The World!, The chrome extension is by far the best feature here. It's so easy to add new passwords and it's pretty neat that it automatically arranges them by type.\nWe use Airbnb a lot and it's cool all our accounts are filtered under \"Travel\", Sometimes it's confusing to use on top of the Chrome password manager. But you get used to it eventually, Sharing passwords and storing them can get complicated sometimes. We use multiple platforms through our distribution channels and a lot of team members need to access them. Having a one stop shop for passwords is a huge problem fixer., 10.0\n806, lastpass, Masud R, Small-Business, 2019-10-29, Security Fast, All in Last Pass, There i don't use nay tools without last pass. Because i'm very very happy for the security reason. Most likely software. No complain against Last Pass. Also the feature is awesome.... Amazing.\nAt fist my client asked me to use this tools and i use this with my team and client., Basically, There is no reason to dislike. All feature is awesome. No complain... Thank you., Many time we have mostly secure membership to many site. But my team need to work these site. That's why, Last Pass work for me more comfortable and secured. , 10.0\n807, lastpass, D J S, Small-Business, 2019-11-19, Couldnt be productive without LastPass!, The auto-fill & auto login feature saves me so much time and increases productivity. , I cannot say there is anything about LastPass I am unhappy with or would change. , Frequency in password changes with the many websites I use on a daily basis as an independent insurance agent, LastPass helps reduce the frustration of not being able to login because I cannot remember what password to use. , 10.0\n808, lastpass, Verified User (Anonymous), Enterprise, 2019-09-17, Reliable software to manage your credentials., What I like most about Lastpass is its friendly and intuitive menu. Security is elementary in this type of services, and this system has a very secure and user-friendly integration. The email verification option when you connect from a new device is excellent, as this way, you know that no one will have access to your confidential information, backed by Lastpass. Besides, a feature to share information and credentials with colleagues and friends is practical., Customer support of the service responds slowly, so getting help and solving an issue takes time. Moreover, the installation and configuration process might not be very straightforward, as the action hasn't a clear tutorial., The advantage that I got with this manager is the possibility of not memorizing large amounts of data like passwords since I also have the service that auto generates a secure password for my related services. Moreover, I am able to share my passwords with colleagues and relatives., 9.0\n809, lastpass, Joel A, Small-Business, 2019-08-15, user friendly and secure, LastPass really simplifies the process of setting complex passwords and not having to remember them yourself. In an environment where end users have anywhere from 10 to 25 passwords and all requiring to be secure and changed frequently, we really needed something to simplify and minimize impact for our end users. LastPass did just that allowing our end users to generate secure passwords for multiple logins and sites while also not requiring them to remember any extra passwords., Not always able to use my fingerprint on my phone to unlock the application, end users not being able to remember there passwords which in turn takes up time to have them go through and reset them, 10.0\n810, lastpass, Abigail P, Enterprise, 2019-09-12, Password management is convenient nowadays with LastPass, LastPass is emerging software in the world of technology which is quite helpful in maintaining and keeping record of all the passwords and login IDs as well. With this amazing application now I don't have to remember all my passwords and login IDs that were complex before the arrival of this application. Furthermore, I can easily generate multiple passwords through its variety of features and functionalities that makes my work easier and convenient in the long run., For me this product is a huge blessing in order to save my time and energy on remembering passwords by creating excel files to keep my passwords at one place and. So for me there is nothing to care about in this product sometimes the working of this application becomes slower but that's not a big issue., This application has full secure two factor authentication features that allow security in terms of proficiency with the availability of thumbprints, Face ID and much more to get into the system.\nMaster password facility of this application enables me to get my passwords back even if I forgot them or if I don't have access to all of them. Therefore, this product is immensely useful in order to work on daily basis on different applications where there is a requirement of login ID and password., 9.0\n811, lastpass, John R, Enterprise, 2019-12-16, Excellent solution to cover all your identities, It is simple to use and easily combines with both the web browser and mobile apps. The option to connect personal accounts to a work email and also have LastPass automatically decide which one is a real time waster with hold credentials in., It may take a little while to synchronize updates to other users in datastores, occasionally having to actively clear the buffer or logout / login to have the modified secrets., Manage a wide collection of personal and business keys. Sharing worker credentials and controlling links to certain pages., 9.0\n812, lastpass, Verified User (Anonymous), Small-Business, 2019-11-26, Peace of mind with my passwords in one place (both for me and my employees), The ability to share passwords to my colleagues securely without sending an eblast as well as the ability to use LastPass on my phone, computer, laptop & iPad., 1) It can be clunky to use on my iPhone, it would be great to learn how to better use it on my iPhone?\n2) My colleague initially signed up her personal account and hasn't been able to move it to the business account. We are currently paying for her personal account as well as an account for her business. The business account is still not working.\n3) A colleague has the same name as a previous colleague - we haven't been able to get him a business account, so he is using his personal account. Not sure how to proceed on this.\n4) Passwords don't save automatically; I've tried to get them to save, it will start and then say invalid response. I contacted LastPass on this and they told me how to fix it. I did what they suggested. It worked, temporarily, and now works off & on. Not sure how to correct at this time., Our organization is able to more easily share passwords, no more passwords in email. We can also share passwords between departments, which is helpful if multiple people need access to the same information., 10.0\n813, lastpass, Nathan V, Mid-Market, 2019-10-02, LastPass- Just Try It!, LastPass's secure password generation, easy password storage, browser autofill, and mobile app make LastPass an easy and convenient way to manage, change, and store passwords! I no longer use repeated passwords thanks to LastPass!, My one gripe with LastPass is when changing passwords, it seems that there is sometimes an issue with LastPass detecting the password is being changed and it does not get updated in LastPass, sometimes causing me to get locked out of an account. Just be diligent when changing passwords and this is a non-issue., Saves time logging in and remembering passwords. Reduces likelihood of multiple accounts be compromised. , 10.0\n814, lastpass, Verified User (Anonymous), Small-Business, 2020-06-23, Easiest to use password manager, It's easy to create unique passwords for each service and retrieve them securely wherever and whenever you need them., There are no downsides to using LastPass, LastPass has helped keep my accounts secure, 9.0\n815, lastpass, I L Y A S P, Small-Business, 2019-09-29, Forget the passwords now and never think about it again, This is the best tool for keeping all passwords secure and you will never lose it again. \nLastpass provides the extension for most of the browsers and android, ios apps too. Also, it's easy to generate strong passwords and save to the password vault easily. \nIn the business plan, you can share the password folder to other users in your organization., There is some issue when updating password for a website where I have multiple logins to the same. , Following the benefits, I've realized: \nNever forget passwords now\nI do not use weak password\nStopped using tool for generating a strong password, 9.0\n816, lastpass, Sean F, Small-Business, 2019-12-05, LastPass Review, I like how on the login that I am able to have departments of sites., Not having the abiltiies to turn it off for repeating sites. Sometimes when I feel out a form and check mark open automatically, it does not open automatically., I needed a password manager, 10.0\n817, lastpass, Verified User (Anonymous),", "doc_id": "f41c82ab-e7e7-4d09-ace5-8f7473730273", "embedding": null, "doc_hash": "f0af54fa61a3f147b5d7cdc72e400be697bf6f845e0e8ba72c1e5cc0b2210280", "extra_info": null, "node_info": {"start": 592823, "end": 609003}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "5cd8184d-cfb7-43b0-a3d9-cbdf29055c9b", "3": "e5fdb29a-7d02-476b-b493-8eb610091d19"}, "__type__": "1"}, "e5fdb29a-7d02-476b-b493-8eb610091d19": {"text": "to generate strong passwords and save to the password vault easily. \nIn the business plan, you can share the password folder to other users in your organization., There is some issue when updating password for a website where I have multiple logins to the same. , Following the benefits, I've realized: \nNever forget passwords now\nI do not use weak password\nStopped using tool for generating a strong password, 9.0\n816, lastpass, Sean F, Small-Business, 2019-12-05, LastPass Review, I like how on the login that I am able to have departments of sites., Not having the abiltiies to turn it off for repeating sites. Sometimes when I feel out a form and check mark open automatically, it does not open automatically., I needed a password manager, 10.0\n817, lastpass, Verified User (Anonymous), Small-Business, 2019-11-21, Last Pass is a great product that works well with Apple Keychain, Especially as I'm a Mac user, Apple's Keychain is a great product. But I also use Chrome, and Windows PCs, so having Last Pass is super helpful. It also offers great features like credit monitoring, all in one app. So it's pretty cool that that I only have one app for everything. We use the business version as well to have shared passwords with our clients. I LOVE the Last Pass Authenticator app. , I think the UI is a little clunky, it seems like a little more effort could be spent on tuning that up so it looks more smooth. I like the shared passwords function - but it is rather tough to use. I think it would be helpful if that was better designed - I always feel like when I'm adding my password to the same site that my client uses, I might be screwing up their passwords. The Auto-Fill feature barely works. , Need to share passwords with multiple people but I want it to be quick and easy. It's not. , 8.0\n818, lastpass, Verified User (Anonymous), Small-Business, 2020-02-27, LastPass the last 4 years, Ease of use. The autofill feature is great, Sometimes the autofill doesn't work. Sometimes the auto login causes conflict with the website, The problems were solving is not having the same password for everything as well as having the security checkup which helps strengthen all our passwords, 9.0\n819, lastpass, Ryan H, Mid-Market, 2019-11-18, Good for teams or families, Having shared passwords and personal passwords all saved in the same place saves me time and hassle. The mobile app makes it far easier to access the passwords quickly when I need them. , It can be scary to have one master password, but when you couple the master password with multifactor authentication, you find that you can select a master password that is easier to remember. , For my family - we all have access to all of our accounts. That gives me peace of mind in case something happens to me. For my team at work, it removes any excuse to write down passwords. So, we're ultimately more secure and have better continuity. , 9.0\n820, lastpass, Verified User (Anonymous), Enterprise, 2020-03-02, Easy to Use, Awesome password management tool, I use it both of personal and business purposes. \nEasy to create account, add to your vault and buy piece of mind., Sometimes on iPhone last pass doesn\u2019t integrate well, especially when creating new account just like keychain suggested passwords show up, I\u2019d rather have lastpass show up in that option and store all my passwords in one place vs both keychain and lastpass. I usually do a manual work around, login to my last pass, add password, copy it to my new login and then save it in last pass., Security, \nremembering passwords, 9.0\n821, lastpass, Ciarra B, Mid-Market, 2019-12-13, Finally, I don't lose all of my passwords, That all of my passwords are in one place., There is nothing to dislike about last pass., Not losing all of my passwords. They are all safe and secure and easy to access when I need them., 10.0\n822, lastpass, Jes T, Small-Business, 2019-11-06, A few bugs but still can't live without it, I like that I can be the password keeper for my family and grant different levels of access to different family members., Auto-fill is glitchy and sometimes get in the way of form interfaces., It's a great hub for all my passwords and managing passwords for my family. Also love the secure password generator., 10.0\n823, lastpass, Verified User (Anonymous), Small-Business, 2019-09-18, makes life so much harder, and their support is awful, its a great concept! its meant to help a lot of people, but there are way too many sharing options that make it hard to onboard clients with it., i dont like how hard it is to share passwords within team members, and how hard it is to get clients to share things in an optimal way. i dont like how you need to be logged in with the browser extension for it to work properly. , it really makes things a mess instead of organizing. i think that it should mimic something like mailchimp that has less features and is user-friendly. the only benefits that it has had is helping us to onboard clients in more specific and detailed ways, but it creates more . problems than it solves., 0.0\n824, lastpass, Verified User (Anonymous), Enterprise, 2019-11-18, SOOOO Easy, I like that it knows what site I am on. It helps me keep track of multiple passwords for the same site. Like Azure or AWS. It has saved us NUMEROUS times when people leave., It's a bit clunky to search while already in a site. It autofills even if I dont want it to. A function to disable auto-fill might be nice., Constant data struggles with passwords and such. When people leave, we have a way to keep that info in one place with sharing tools., 10.0\n825, lastpass, Verified User (Anonymous), Small-Business, 2018-01-12, Last Pass helps me tremendously, The ability to not have to remember every password. , Really, nothing. It's fine, and I don't know what I'd change if I could., With so many sites requiring different types of passwords, it's hard to keep them all straight. Last Pass makes that simple. , 10.0\n826, lastpass, Verified User (Anonymous), Mid-Market, 2017-10-01, lastpass review! , Ability to generate passwords easily with the ability to memorize them. Ability to categorize them with folders depending on what type of websites there are. , The learning curve was a bit too steep for a product that is expected to be used for general public. , Generating random and unique passwords for each login. This way the customer doesn't have to use the same password or memorize multiple passwords. \n, 9.0\n827, lastpass, Verified User (Anonymous), Small-Business, 2018-02-01, This goes out to the bad memory folks, That it saves passwords across the board!, There have been moments where it logged my passwords out without my consent., I was able to save passwords for all the websites I visited daily for work. Especially in media, you go to Getty a lot so with this I never had to remember my company password., 6.0\n828, lastpass, Verified User (Anonymous), Small-Business, 2018-01-09, The best way to save multiple passwords , The fact that the app can save passwords, as well as create passwords for sites. , There is nothing I dislike with the current version of it., Having multiple logins for various sites, LastPass makes it easy to change between accounts., 10.0\n829, lastpass, Ashlie P, Small-Business, 2017-10-19, Time-saver and Secure Password Sharing, The ability to easily and securely share passwords with contractors and staff, We've had recurring problems when a member creates a new account, being able to share folders/passwords with them. , Being able to share passwords with those doing work with our company who need temporary access or revoking access to those no longer working with the company., 8.0\n830, lastpass, Dhayakumar R, Small-Business, 2017-08-19, Online Password Management, *Vault was protective\n*Portable\n*Browser integration\n*Safe, *I was using it some months before and it was very hard to retrieve the account as I forgot the password and it was the worst situation as I saved most of my passwords in the last pass vault., Security features are high.\nAs it is portable across the platforms it'll be of great help to users.\nPerfect for all business companies, 5.0\n831, lastpass, Verified User (Anonymous), Enterprise, 2018-03-30, Super easy and secure way to organize a variety of confidential info, Smartphone integration makes it easy to quickly access saved passwords and secure notes, 2 factor authentication via other services like Google would be nice, Central repository for business accounts to share with colleagues, 10.0\n832, lastpass, Verified User (Anonymous), Small-Business, 2017-12-04, Lastpass is saving me time, the fact that I don't have to remember all my different passwords and that I have different passwords for every site., so far, nothing really. Don't have any negative experiences., saving time because I don't have to remember and retrieve my passwords for all my online accounts. , 10.0\n833, lastpass, Subhadip S, Small-Business, 2017-12-26, Life saviour , - AnalyticsInformation Technology and ServicesSmall-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerVerified Current UserReview source: OrganicDec 26, 2017(Original Dec 21, 2017)Information\"Life saviour \"Title for your review:Life saviour , r - AnalyticsInformation Technology and ServicesSmall-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerVerified Current UserReview source: OrganicDec 26, 2017(Original Dec 21, 2017)Information\"Life saviour \"Title for your review:Life saviour Review collected by and hosted on G2.com.Show MoreShow LessHelpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo, Small-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerVerified Current UserReview source: OrganicDec 26, 2017(Original Dec 21, 2017)Information\"Life saviour \"Title for your review:Life saviour Review collected by and hosted on G2.com.Show MoreShow LessHelpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo, 0.0\n834, lastpass, Devin R, Mid-Market, 2017-06-28, Lifesaver!, Every company I've worked for seems to have dozens of software programs for me to log into daily, causing endless headaches with needing to remember passwords (that should 100% be different from one another for security reasons). The fact that I only need to remember one password now is worth a lot more than LastPass costs, Sometimes there's a bit of lag time in LastPass loading my password when I get on to a login page, Seems like every month I have another software to log in to, not having to come up with and remember a new password everytime is really helpful!, 10.0\n835, lastpass, Verified User (Anonymous), Mid-Market, 2017-12-12, Easy and peace of mind!, I love how user friendly the interface is. It\u2019s easy to generate and store my passwords., I don\u2019t like that it can be difficult to generate a new password., Keeping track of all of my passwords for various business related sites., 10.0\n836, lastpass, Verified User (Anonymous), Small-Business, 2018-02-20, Works Great!, LastPass accomplishes everything we need it to and allows us to store all our passwords and share easily., Sometimes the mobile app is a little slow., Requiring expiration of passwords, facilitating sharing strong passwords., 10.0\n837, lastpass, Soumi B, Small-Business, 2017-12-21, Life saviour , The feature to view the password also helps a lot when it is required, only thing is that it doesn't work well in mobile phones which needs a lot of improvement, All password at one place , 10.0\n838, lastpass, am , Small-Business, 2017-07-04, Best price/quality ratio, It's cheap, reliable and after some effort easy to use. It could be integrated with FA and even with a yubico yubikey. They going with this software in the right direction and It's definitely worth to try. , Multiple logins to the same site/domain could be done better. Authenticator can't add two pins to the same site. Interface is a little bit odd. , Better and safer passwords for every day usage., 8.0\n839, lastpass, Jason S, Enterprise, 2017-08-02, Great free app with no need to pay, It's a phenomenal cross-device, secure password manager. It's easy to use, search, and I feel confident in it's security. The password generation works well with a lot of options for customization. The auto-fill works on most of the sites I use and where it doesn't, it's only a couple clicks. , I wish there was a mobile version that would work, I might have it set up incorrectly, but the app does nothing for me on my iPhone., The password generator is fairly robust and has helped me diversify my passwords. It has increased my productivity by making it easier to access sites more quickly., 9.0\n840, lastpass, Verified User (Anonymous), Small-Business, 2017-10-24, Great for generating passwords, keeping things secure, I like that as long as I'm using my own personal computer, it generates for me, saves for me and fills in my passwords for me. , It doesn't always save properly. Especially after automatically generating, it can be frustrating because i'll have to reset my password because LastPass didn't save it., Not having the same passwords across multiple sites, saving complicated case sensitive passwords, 9.0\n841, lastpass, Verified User (Anonymous), Enterprise, 2018-01-11, Only way to manage passwords, Simple and secure way of building secure passwords, Doesn't always automatically capture logins and passwords accurately on screen., security and complex password management., 8.0\n842, lastpass, Verified User (Anonymous), Mid-Market, 2018-01-16, Take your online security to the next level, One stop shop for managing all your passwords and sensitive info., Makes me worried if Lastpass were ever to be compromised. All your eggs in one basket., User account and password management. I'm confident my overall internet security is enhanced compared to trying to remember all of my passwords or reusing passwords as I've done in the past., 8.0\n843, lastpass, Verified User (Anonymous), Mid-Market, 2018-02-03, A must have , I like not having to remember any of my passwords, Last pass is not the ultimate solution, just another barrier, It keeps passwords and login information off of email chains, 7.0\n844, lastpass, Verified User (Anonymous), Small-Business, 2017-09-05, Lifesaver, Simplicity of use, particularly when considering the browser and TouchID integrations, Honestly not much. Occasionally I'll run into a site where the browser integration doesn't work, but that's still a quick workaround using the toolbar plugin instead., Peace of mind, plain and simple, 10.0\n845, lastpass, Sean P, Small-Business, 2017-07-25, Superb!, The best thing about this software is the price, it's free unless you want the corporate version or the app. , It can be a little disorganized if you have multiple logins for the same website, takes a little extra work to label things so you know which login is for what., I use the app on my phone to login to other applications on a regular basis, since tping on the phone can be a pain in the neck with fat fingers, it makes things super easy.,", "doc_id": "e5fdb29a-7d02-476b-b493-8eb610091d19", "embedding": null, "doc_hash": "a014759528d0580f2f6825562b7a8fbe1824973f14fb67e853bc6845a515bbc9", "extra_info": null, "node_info": {"start": 608961, "end": 624230}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "f41c82ab-e7e7-4d09-ace5-8f7473730273", "3": "a25da643-aac1-435f-8c89-a62fc586695a"}, "__type__": "1"}, "a25da643-aac1-435f-8c89-a62fc586695a": {"text": "Simplicity of use, particularly when considering the browser and TouchID integrations, Honestly not much. Occasionally I'll run into a site where the browser integration doesn't work, but that's still a quick workaround using the toolbar plugin instead., Peace of mind, plain and simple, 10.0\n845, lastpass, Sean P, Small-Business, 2017-07-25, Superb!, The best thing about this software is the price, it's free unless you want the corporate version or the app. , It can be a little disorganized if you have multiple logins for the same website, takes a little extra work to label things so you know which login is for what., I use the app on my phone to login to other applications on a regular basis, since tping on the phone can be a pain in the neck with fat fingers, it makes things super easy., 10.0\n846, lastpass, Andy P, Small-Business, 2017-01-31, Great for managing sensitive data!, We've been using LastPass for several years, and it keeps getting better and better. In addition to just keeping track of passwords, we use it to keep records of bank account numbers, credit cards, and a variety of other information. The ability to attach documents makes it even more powerful, as we can use specialized documents in our vault. It's really a very useful way to keep track of sensitive information. \nWe have the premium ($12/yr) version, which allows us to sync all of the LastPass information in our vault to our phones. This gives us the ability to have our passwords and other info with us everywhere we go.\nThe ability to have it autofill into apps on the phone is really nice, as is the automatic capture and fill for websites on the desktop. All in all, a really handy and useful addition!\n, No problems to report. It always works as expected., We use it for both business and personal use. It allows us to be mobile and keep our sensitive data with us, but still secure., 10.0\n847, lastpass, Verified User (Anonymous), Enterprise, 2018-01-29, I use LastPass for all my family's passwords and now have a work option as well, I love the browser add in so it autofills my password. , Sometimes it doesn't save the password I just changed or I am not sure it saved so I copy it just in case., I am able to have secure passwords without concern of forgetting them., 10.0\n848, lastpass, Verified User (Anonymous), Small-Business, 2017-06-29, LastPass Review, I like not having to remember all the passwords I have for various sites I utilize for work. I also like the feature it has to generate passwords for you., I've had difficulty in the past when using LastPass for sites that require more than just a Username & Password (ie: both a company id and username & password), especially when you try and utilize the password generator for those sites. , We have many different websites that require a user name and password, and this is reducing the number of people having to write down their information for a given secure site., 10.0\n849, lastpass, Verified User (Anonymous), Small-Business, 2017-08-24, LastPass is the Best for Sharing Private Information Across your Team, Ease of use - by far. With a convenient browser plug in that fully integrates LastPass features into form fields, it's a breeze to onboard new team members and share any necessary passwords without compromising security., Inability to request higher level permissions through the platform. If you're unable to share a password because it was already shared with you, you must seek intervention with the owner of that passlocked account., We share a lot on my team, including company social accounts, access to tools, and collaborative software. Using LastPass makes it simple to access company accounts without putting security at risk., 10.0\n850, lastpass, Emily I, Mid-Market, 2017-05-01, Keep your team unified and secure, Our company can all access the same passwords for accounts that the whole company needs access to\u2014without unsafe password sharing or buying a lot of unnecessary licenses, in instances when one license is all that's needed for the entire company., Sometimes I find that LastPass glitches for me or is slow to load... it'll ask me to login multiple times within a few minutes, or it won't load the correct password on the first try. Small problems in light of the benefits for me, though., LastPass allows us to encourage transparency and knowledge across our organization by sharing access to key apps and accounts. This process is totally seamless and cuts down on a lot of back-and-forth between team members. It also protects key accounts against any possible security breaches by past employees., 10.0\n851, lastpass, James R, Small-Business, 2017-12-21, Great bang for the buck..., Convenience, security, price all seem top notch., Nothing that I can think of off the top of my head!, Allows me to login to dozens of websites without needing to remember dozens of passwords!, 10.0\n852, lastpass, Derek I, Mid-Market, 2017-10-24, save all your paswords in one easy to manage location with lastpass, Works great, you can save or not save passwords. You have the ability to search for a saved password and simply click to load., Haven't tried the moble app at times I had issues with some sites that would autoload from last pass which would cause login issues. , Save passwords in a safe location. Not 100% sure on if your computer was stolen if lastpass would prevent people from accessing your login accounts (e.g. bank, etc), 7.0\n853, lastpass, Yuzo N, Small-Business, 2017-10-24, You Only Need to Remember One Password Now, Allows me to keep all of my work related passwords all in one central location. Auto fills passwords and makes logging in super fast and easy., The autofill feature can sometimes make it difficult when you don't want things autofilled., Helps to provide stronger passwords. Centralizes all passwords so you don't have to remember all of them. Login feels more secure., 9.0\n854, lastpass, Cassie J, Enterprise, 2017-07-11, A straightforward password arrangement, Their program modules make it priceless. What's more, with the capacity to utilize hot keys it makes the whole experience that vastly improved. LastPass is an extremely well completely planned stage for secret word administration. They safely encode the majority of your watchword information, even on their free form. I realize that they likewise have a portable form that works truly pleasantly as well. , My greatest issue is that my portable record logs-off extremely effectively (yet security needs to start things out so sufficiently reasonable I assume). The interface is exceptionally old cap and I've generally attempted to comprehend certain parts of it, fortunately in case you're anything like me you won't have to go into every one of the complexities. At last you are additionally trusting to have all passwords in one place, it's essentially a nectar pot for programmers that you fear one day will be broken into completely., Decreases organization time resetting and making new logins/passwords., 8.0\n855, lastpass, Verified User (Anonymous), Small-Business, 2018-01-27, Invaluable but clunky, When it works right, it is a life saver for all my passwords , It doesn't always pop up on mobile when I really need it. Fingerprint login only work 50% of the time. The interface is really antiquated , I hate having to remember passwords so this is my go to tool. , 5.0\n856, lastpass, Verified User (Anonymous), Small-Business, 2018-01-21, useful to deal with important passwords, its remembering what i can not, and makes my computer safer. the dashboard is easy to overlook, sometimes it kicks me out, 2 factory is complicated to use without a mobile phone, customer support, i do not need to rember all kind of complicated passwords all the time, 8.0\n857, lastpass, Verified User (Anonymous), Mid-Market, 2018-04-10, Lastpass, I like that I do not need to generate my own passwords but that it is easy to save all of them, Honestly, I am happy with all of it. There is nothing that I would change. , I have solved the issues of password security by having unique passwords for everything , 10.0\n858, lastpass, Verified User (Anonymous), Mid-Market, 2018-01-17, best software i literally use on a daily basis.... amazing, this program makes my life so much easier... i use it every day to log into everything. its very secure and very useful, i do not like that i have to update it when the browsers get updated but whatever... not a big deal, I am able to save time and time saves money, 10.0\n859, lastpass, John B, Mid-Market, 2017-10-17, LastPass Review, It keeps all of my passwords saved in once spot with easy access to them and fill then in automatically., Is often times duplicates when on a windows or Mac computer if the password has already been saved to the computer., It prevents me from having to type in and/or remember all of my different passwords., 10.0\n860, lastpass, Jonathan T, Small-Business, 2017-05-20, Password Management Made Easy, I LOVE that lastpass pops up with a dialog box to take care of my login when I go to websites, both on my desktop AND my Android phone. So easy!, I Love that I can use my fingerprint to sign in/authenticate on my Android phone, but I can't do that on my computer (MacOS). I'm pretty sure that's a limitation of a browser plug-in not being able to use that feature, but I imagine that will change in the future as that API becomes available., Since LastPass is taking care of my passwords, I can make more complex, unique passwords for my sites, both personal and business., 10.0\n861, lastpass, Dave C, Small-Business, 2017-06-29, A solid password manager with a discount for non-profits, A password manager is now essential. The days of shared passwords stored in Excel spreadsheets, reusing passwords, or root + slight variant are over. This service lets me disable access for people who leave the org, share passwords for accounts like Amazon Prime and USPS, and of course generate unique random secure passwords for every site., The design is a bit of a mess, with different settings stored in different places. Also, re-enrolling phones for 2 factor auth is a pain. Also, security issues in the news created FUD within upper management. Hopefully that's behind them., Check out the \"like best\" section. Another great use case: I create a shared folder for each employee that only IT and that person have access to. It lets me create new accounts for a new employee with guaranteed secure passwords and all they need to do is sign in with their master password and start using them., 10.0\n862, lastpass, Verified User (Anonymous), Enterprise, 2017-10-25, The safest & easiest ways to have secure passwords, LastPass makes it incredibly easy to generate strong passwords, save them for you, and fill them into forms for your. You no longer have to have unsafe passwords or sticky notes to remember them., The only thing that's difficult is taking the time to reset all your old passwords to better, secure passwords generated by LastPass. But once you do, it's so worth it & you don't have to think about that again., LastPass has the ability to keep your personal and business passwords separate so you can always keep everything secure., 10.0\n863, lastpass, Verified User (Anonymous), Small-Business, 2018-01-17, One password you'll ever have to remember, I've used LastPass for years. Love it. Once you remember your master pw, you're all set. It lets you easily login to websites without hassle. I would be lost without it bc so many websites force you to have different passwords and update them regularly. , I wish the mobile website was mobile friendly. I am always on the go and the website is not easy to navigate on mobile. Big miss!, Continuous uptime without having to guess my old pw or use the forgot pw feature., 10.0\n864, lastpass, Verified User (Anonymous), Small-Business, 2018-01-09, Greatest software I\u2019ve used yet, I always womdered if site\u2019s like this existed and now that I\u2019ve found this, I\u2019m telling all of my friends., Don\u2019t dislike anything about it. It\u2019s storing all of my information. , It\u2019s solving a major thing for me because I\u2019m able to save all of my passwords that I would normally forget., 10.0\n865, lastpass, Verified User (Anonymous), Small-Business, 2018-04-05, Onboarding process is too difficult., Keeps my passwords safe, relatively easy to use., The onboarding process for teams is way too difficult., Needing to share passwords with a team \u2014 easier and safer to store them here., 5.0\n866, lastpass, Stephen G, Small-Business, 2017-10-25, Multi-factor Authentication and Multiple Device Sync, The synchronization across multiple devices and platforms and the multi-factor authentication. , It only operates as a browser extension. No integration with browser on device. \n, LastPass is a huge timesaver as well as making it easy to have different passwords everywhere without the need to memorize them all or wirte them down. , 8.0\n867, lastpass, Amy B, Enterprise, 2017-09-05, Handy way to utilize a variety of passwords that are difficult to hack, You can adjust the settings to longer/shorter passwords, easy to read, or even special characters allowed. It really can fit any password requirements. The mobile application is easy as pie with the fingerprint verification, I like this a lot. , It seems like every time work updates my firefox, the browser lastpass is wonky for awhile. It won't let me log back in and it won't take my password. , Setting new passwords every year gets harder and harder and I have to log in for every application, so it's a lot of logging in that Lastpass helps with. , 9.0\n868, lastpass, Justin B, Small-Business, 2017-08-29, Encourages positive password habits for non-technical users, Lastpass (like most password managers) allows users to generate unique, complicated passwords for websites without worrying about recalling them. \n\nLast Pass has strong mobile support, especially on Android., LastPass has a worrying recent history of security concerns, especially those associated with its operation as a browser extension.\n\nLastPass also defaults to relatively short password length when generating new passwords. Users tend to not change defaults, so it hurts the core promise of a password manager., One of the largest threats to account security is the re-use of passwords. LastPass encourages unique passwords, and in fact flags duplicates., 7.0\n869, lastpass, Verified User (Anonymous), Enterprise, 2018-01-12, Lastpass Review, Keeps all of my passwords safe in one place. It also prefills log in fields when using the Chrome browser extension., It can be difficult to find which passwords go where if you also have access to a shared team folder., Keeping track of multiple company passwords., 10.0\n870, lastpass, Ashley R, Small-Business, 2017-10-03, LastPass is a great product!, LastPass allows our organization to share logins between us easily., LastPass can sometimes be buggy when using the Chrome extension and trying to fill in a login form. But other than that nothing else to dislike., LastPass makes it very easy to share login information for our different website backends. There is no need to share pieces of post-its with each other or email the different logins for different websites., 10.0\n871, lastpass, Verified User (Anonymous), Small-Business, 2017-10-06, Safe password service to share credentials with employees/team members, It lets you include personal information in case the credential needs it. Also, it can be chosen easily with pop-up credentials on form fields making suggestions according to the webpage. The browser plugin also is really", "doc_id": "a25da643-aac1-435f-8c89-a62fc586695a", "embedding": null, "doc_hash": "46406fc2e89bb9baa28bdc2341a6f785db0697b8a800b80c9fb337fbbb8f2fb3", "extra_info": null, "node_info": {"start": 624231, "end": 639875}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "e5fdb29a-7d02-476b-b493-8eb610091d19", "3": "bb56f883-b18f-4d89-9825-a13adbc89ecd"}, "__type__": "1"}, "bb56f883-b18f-4d89-9825-a13adbc89ecd": {"text": "Small-Business, 2017-10-03, LastPass is a great product!, LastPass allows our organization to share logins between us easily., LastPass can sometimes be buggy when using the Chrome extension and trying to fill in a login form. But other than that nothing else to dislike., LastPass makes it very easy to share login information for our different website backends. There is no need to share pieces of post-its with each other or email the different logins for different websites., 10.0\n871, lastpass, Verified User (Anonymous), Small-Business, 2017-10-06, Safe password service to share credentials with employees/team members, It lets you include personal information in case the credential needs it. Also, it can be chosen easily with pop-up credentials on form fields making suggestions according to the webpage. The browser plugin also is really helpful. It makes suggestions for safer passwords and keeps them on record in case you forgot about them, the interface seems pretty old and the vault is not easy to navigate to find out what credentials you have (personal or business), unless the search bar is used, security on passwords for software and web services used by anyone, 8.0\n872, lastpass, Erika F, Enterprise, 2017-10-03, Did you know you're not supposed to know your passwords?, When working with so many sensitive accounts it's important for me to secure my passwords. I love LastPass because I just need to remember the one password to get into my vault and it remembers the rest for me. , I don't think I have anything I dislike as of right now. , Securely storing passwords for multiple accounts I may not regularly need but would grant access sensitive data if they were hacked. , 10.0\n873, lastpass, Joel M, Mid-Market, 2018-01-16, Great product. Saves my poor memory, So many passwords and different requirements. So easy to use on a computer and iPhone , Sometimes it\u2019s tomeasy to create duplicate websites , Multiple work and personal logins with different usernames and password chNges required often quarterly. , 9.0\n874, lastpass, Jennifer T, Small-Business, 2017-06-12, Cheap & it works, The reality is that this password storage solution is cheap (~$10 per user per year). With that, you kind of get what you pay for. However, we were a small company and just needed any solution that would work, so this did the trick. One of the biggest aspects of Lastpass that we liked were the shared folders, they allowed us to share certain logins across entire teams without having anyone storing it in insecure places.\n\nAbility to see A) is someone had never logged in, B) how strong their passwords are and accordingly you could force them to reset at the next login., The list is LONG. If you can invest is something that is better rated, do that. If you know of something equally affordable that works better, I'd love to hear it. So, admin management is a nightmare. I love how secure this site can be, but there has to be some overrides in some places for managers. Far too many times an employee would leave and fail to share their Lastpass accounts, if we couldn't get it from them, many logins were lost. With better policies, some of this was fixed, but always continued to be a problem. \n\nIt's hard to see who has access to what. If have to click into each folder and account to see who it was shared with. \n\nZero insight into employees accounts. Again, a pro and con of Lastpass security. I don't want to see what accounts folks have saved in their Lastpass, that should be theirs. However, having some sense of the capacity at which they use it would really help. In our organizations case, it was very hard to get people to use this rather than simply using the browser password save options. , Secure password storage and sharing. In using Lastpass, it was truly a \"better than nothing\" solution for us. We're looking for alternatives., 5.0\n875, lastpass, Peter V, Enterprise, 2019-12-01, Lastpass ahorra mucho tiempo y da a los usuarios una capa adicional de seguridad., Es el mayor salvavidas de este planeta. Y, no, no estoy bromeando. Estar\u00eda tan perdido sin LastPass. Me han salvado el culo en innumerables ocasiones, tanto en l\u00ednea como en el m\u00f3vil. Todo lo que necesita es mi huella digital y bueno, eso es algo que estoy totalmente dispuesto a darles en este momento. La facilidad de uso, la complejidad - pero la simplicidad, la seguridad, la habilidad de usar contrase\u00f1as complejas (y dejar de usar las mismas 2 que siempre he usado).... todo esto, es simplemente un gasto anual que no tengo que pensar y del que estoy encantado de desprenderme.Su extensi\u00f3n Chrome es invaluable y hace que el acceso a los sitios web sea muy sencillo. Es refrescante tener un ayudante como LastPass, sabiendo que si mi siempre agitado cerebro decide dejar de funcionar, tengo una fuente de apoyo con ellos. Limpio regularmente mi b\u00f3veda y eso ayuda a reducir la confusi\u00f3n potencial durante el inicio de sesi\u00f3n, especialmente si el sitio ha cambiado su url, o si usted ha cambiado/actualizado su login/pass., La mayor aversi\u00f3n de Lastpass es c\u00f3mo est\u00e1n organizadas las contrase\u00f1as. Si no selecciona una carpeta para a\u00f1adir la contrase\u00f1a, Lastpass genera una carpeta separada. Necesitamos la capacidad de crear una nueva subcarpeta y renombrar la contrase\u00f1a a trav\u00e9s de la extensi\u00f3n Chrome., A los clientes les gusta mucho que puedan compartir contrase\u00f1as cifradas. Especialmente con los datos financieros y los inicios de sesi\u00f3n de cuentas bancarias, es comprensible que la gente sea cautelosa a la hora de dar sus nombres de usuario y contrase\u00f1as. Lastpass ofrece una soluci\u00f3n a este problema., 9.0\n876, lastpass, David M, Mid-Market, 2019-08-15, Good, But Not Great, LastPass has a lot to recommend it:\n1. Works across devices.\n2. Works across browsers.\n3. Has native apps for a number of platforms.\n4. It offers a powerful password generator.\n5. Can save secure notes, bank accounts, etc. in addition to passwords.\n6. Sharing, when it works, is intuitive and simple. \n7. The free account is more than sufficient for the average user.\n8. Pricing is fairly reasonable., LastPass is a good product with a lot of rough edges:\n\n1. Technical support is slow to respond and their answers have generally been incorrect or unhelpful - oftentimes involving resetting the pre-shared key - which is a real trial.\n2. They require time consuming and involved steps to reset a pre-shared key if it becomes corrupted.\n3. On multiple occasions I've been told the issue was a corrupt pre-shared key only to discover it was something else entirely (browser cache, need to change master password).\n4. Some of the enterprise functionality doesn't work as anticipated - e.g., adding people to groups doesn't always seem to actually give them permissions to shared folders (told that admin logging out and then logging back in will solve this problem; but it has not).\n5. Additionally, folks don't always receive notifications for shared folders when added individually (this has only been a problem with enterprise).\n6. The granularity of permissions leaves something to be desired. One can either shared an item individually or as part of a shared folder, but these are exclusive. LastPasses' resolution is to create a duplicate key - but this becomes a maintenance nightmare.\n7. Things have gotten better within the last year but used to see lots of problems with LastPass throwing errors when there was no internet connection (even though insisting it functioned fully offline).\n8. Windows App has gotten better but doesn't have feature parity with the web interface.\n9. The error messages thrown by LastPass (usually through the web interface) are very short and unclear, they provide little insight into the actual issue.\n10. Web Support is poorly organized, sometimes confusing., - Provides simple way for individuals to create secure passwords.\n- Allows intuitive sharing between co-workers and with external parties., 6.0\n877, lastpass, Verified User (Anonymous), Enterprise, 2020-02-13, Application so good, I have my whole family using it!, Password management at its finest. Being able to access all your passwords from one account is just awesome. I like that you don't need to have a website added to the record to be able to save passwords. This can be used outside of Websites, and can be used for something as simple as Garage Door codes for family members. Data secured notes can be accessed by people you give access to them. This gives companies the opportunity to save static information for whole teams., Sometimes its hard for Lastpass to see websites that don't use the exact same URL that's in the record. I've also found that the Autofill does not always work. When you click the symbol in the field to add password/User name, it sometimes doesn't detect the website you are on, or that the website is one that is saved in your list. But these issues are not a deal breaker in using Lastpass. The admin utility doesn't always work very well and setting policies can be difficult., Password Management. Simple as that. Teams can share common UN and Passwords without having to create a server based document that contains all the info. We can add users to secured notes that contain all of the info needed., 9.0\n878, lastpass, Henry W, Mid-Market, 2019-11-18, LastPass provides a huge improvement for Internet safety., The checking for duplicate passwords, and providing real random and sufficiently long passwords, keeps one website/company breach from being used to attack user accounts on other websites. Multi-device is crucial for user experience, so the ease of use keeps them using good password practices., Editing in the plug-in app isn't smooth. The groupings aren't always intuitive. Corporate internal network sites aren't often separated correctly, e.g. two hosts kirk.mycompany.com and spock.mycompany.com should be seen as separate websites. You also need a general \"Manufacturing\" industry option. We manufacture parts for more than one industry in your list., Shared passwords for corporate accounts on vendor websites. Improving security for personnel on the web. Helps aid disaster recovery, or personnel loss., 10.0\n879, lastpass, Chelsea B, Small-Business, 2019-11-18, User friendly password manager, LastPass makes it simple to record passwords not just for websites but also for commonly used resources like servers, databases, and email accounts. \n\nThe enterprise-level security policies give admins complete control over how their organization uses LastPass. I especially like the ability to require complicated master passwords. Shared folders, groups, and roles also make enterprise administration much simpler., It's a minor complaint, but I don't think the \"secure note\" is a very intuitive workflow for adding passwords that are not linked to a website. Very rarely am I entering an actual note.\n\nAdditionally, a few of the features of the browser extension make it difficult to fill passwords seamlessly such as the warnings that you're using a duplicate password., The office I work in has many shared login credentials for external services. These credentials give access to highly confidential information, so it's very important that we store them in a secure, yet shareable, fashion., 9.0\n880, lastpass, Verified User (Anonymous), Mid-Market, 2019-11-18, Cant remember the last time I forgot a password, LastPass is fantastic. My favorite feature is pretty straight forward, it remembers all of your passwords! I'm an IT professional and I have countless logon credentials. We're talking hundreds! Being able to autofill information is huge! Its also very secure and is easy to use. I've setup multiple folders separated by purpose and have run into no issues.\n\nMy job requires IT staff to share multiple passwords with our internal staff. This helps with collaboration for system administrators such as myself that need to log into multiple sites and services simultaneously.\n\nAt a previous employer, we also used Single Sign-on which is another fantastic feature that is both secure and promotes ease of use. Similar to the product itself, it is one less password that you need to remember! , My only issue with LastPass is the user administration tool feels a bit clunky. To elaborate a bit, I wish the UI had more information regarding password security. At the moment, a few of our users have 'poor' passwords. I can't find anywhere on the administration page that lets me know what a 'strong' password would be considered. It may be there, but it is not easy to find.\n\nThis information would help as I could relay this to users and explain that they need a more secure password., No issues as of yet. I've been using LastPass personally for about 3 years and professionally for 2. , 10.0\n881, lastpass, Verified User (Anonymous), Enterprise, 2019-11-18, Good password manager with poor enterprise integrations, LastPass is amazing when it comes to it's core functionality. It's very easy to manage your password database, generate new credentials, etc..., Integrating with ADFS or Azure AD for Enterprise identity access is a nightmare. We have had a support ticket open with them for over a month and the issue still isn't resolved. To that end, their support is also somewhat poor. There is no option to call and open a support case. They force you to open a ticket on their site and then wait for them to call you. This is fine when opening a new case, but makes it extremely difficult to get case updates or escalate with them.\n\nI also dislike the way shared passwords are handled within LastPass. Rather than using a table field to tell you that a folder is shared, they add the word Shared to every folder that gets shared. This makes sorting excruciatingly painful and is a good example of how they took a feature from their consumer offering and slapped it into their Enterprise offering. They also don't allow you to control sharing permissions on child folders. The sharing permissions of the top level shared folder always apply., None because we still don't have our enterprise identity system tied into LastPass to begin provisioning access to our users., 5.0\n882, lastpass, Steve S, Mid-Market, 2019-11-18, Flexible but robust password management, The password generation and management from LastPass is smart and simple. Password generation option allow for you to get a password that works with any requirements including length, special characters, etc. We use the enterprise version and are able to link our personal LastPass accounts so that we can use our personal info on our work computers and not have to mix personal and business., Simple option to generate a password for a new site. Having an option to just simply generate a password that will soon be saved. It gets a bit clunky to manually create the site then generate the password., Password sharing between departments. We have managed shared folders for password sharing. This allows for passwords to be shared but not compromised by physically sharing the password. Also allows for much more complicated and secure passwords then trying to make one that is easy to share manually. , 9.0\n883, lastpass, Fabrice M, Mid-Market, 2020-01-14, Easy and flexible password management for everyone, I like the password team", "doc_id": "bb56f883-b18f-4d89-9825-a13adbc89ecd", "embedding": null, "doc_hash": "59e1fb7b18e00fda5557a047254b0b2a640316cc49c743e63b5e874d0c273493", "extra_info": null, "node_info": {"start": 639819, "end": 655101}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "a25da643-aac1-435f-8c89-a62fc586695a", "3": "3d8557f3-d357-4985-a802-cdc3488ac3cd"}, "__type__": "1"}, "3d8557f3-d357-4985-a802-cdc3488ac3cd": {"text": "works with any requirements including length, special characters, etc. We use the enterprise version and are able to link our personal LastPass accounts so that we can use our personal info on our work computers and not have to mix personal and business., Simple option to generate a password for a new site. Having an option to just simply generate a password that will soon be saved. It gets a bit clunky to manually create the site then generate the password., Password sharing between departments. We have managed shared folders for password sharing. This allows for passwords to be shared but not compromised by physically sharing the password. Also allows for much more complicated and secure passwords then trying to make one that is easy to share manually. , 9.0\n883, lastpass, Fabrice M, Mid-Market, 2020-01-14, Easy and flexible password management for everyone, I like the password team sharing capabilities and the option to use private and work password in one application. Also the cross-platform availability of LastPass is a big plus., The UI can be a bit overwhelming at first and when LastPass is deployed via your sysadmin, a good step-by-step on-boarding program might be useful. Especially when 2FA is introduced., Everyone was administering and archiving their passwords as they saw fit. We had situations were company passwords were saved in spreadsheets and sharing happend via mail, slack or Teams., 10.0\n884, lastpass, Allyn J, Mid-Market, 2019-08-28, A Cloud Based Password Vault - only some minor frustrations., Lastpass being a cross platform solution is really well put together. Thru the admin panel we have all sorts of abilities to be able to reset passwords to prevent password vault loss, establish 2FA requirements, and more. It also has an amazingly beneficial ability to connect to your personal LastPass vault to make things easier for \n\nReview collected by and hosted on G2.com.What do you dislike?Two points of frustration - \n1.) If you have LastPass families, you cannot see *any* of the family shared passwords while you are authenticated to your enterprise account. This of course assumes that you have connected your enterprise account to the personal account. \n\n2.) IIRC - currently there are no methods of LastPass being able to have LastPass analyze passwords against known password breaches, or against the common dictionary attack type passwords. This is a feature that a competing product (that I don't believe has an enterprise feature) does offer. , Two points of frustration - \n1.) If you have LastPass families, you cannot see *any* of the family shared passwords while you are authenticated to your enterprise account. This of course assumes that you have connected your enterprise account to the personal account. \n\n2.) IIRC - currently there are no methods of LastPass being able to have LastPass analyze passwords against known password breaches, or against the common dictionary attack type passwords. This is a feature that a competing product (that I don't believe has an enterprise feature) does offer. , We are able to ask our staff members to maintain better password practices. It's difficult to ask them to have separate passwords everywhere, and to avoid password re-use, if we are not giving them the tools to success. While we are still in transition to take even greater advantage of this resource. Our biggest benefit will be realized when we can share passwords with those that need them, without actually *exposing* the password to the end-user. , 8.0\n885, lastpass, Verified User (Anonymous), Mid-Market, 2019-11-18, Necessary tool, Variety of ways to save information (notes, sites via browser extension, etc.) Pretty intuitive setup. I'm confident in the level of encryption and feel more comfortable storing passwords this way. The generate secure password tool is very important!, Doesn't always play nice with internet browsers (I've had problems with both Chrome and IE) as an extension. Sometimes will not recognize credentials when being set up or you'll have to add a site manually, which is annoying. I've also had issues as an administrator not being able to reset everyone. The generic online support offered as a 'first line of defense' to corporate clients is not sufficient., Reusing passwords is happening less, more secure passwords are being used. We haven't gotten this far yet, but the Sharing option will be great for teams and we look forward to implementing a minimum security score. , 8.0\n886, lastpass, Marcos L, Enterprise, 2019-08-15, Several time-saving capabilities, Several time-saving capabilities are LastPass's most important advantages. Autofill completes forms rapidly with details including email address, credentials, password, address or personal information. LastPass is equipped with a sophisticated password generator, which can be configured and assists you in creating unique and complex passwords to safeguard your platforms. The database is encoded using market-standard encryption technology, and LastPass account is secured with two-factor authentication (Thumbprint, Face ID, SMS, and so on.) LastPass also has well-optimized web extensions and mobile applications that support several operating systems. , I have attempted a business subscription that allows users to safely share information among members of the team and offer them access to particular credentials. The function is not well developed and created some failures like the removal of data access., LastPass allows me to use various and sophisticated passwords for my databases as it is sufficient to note one master password. It is also an excellent instrument to save time., 9.0\n887, lastpass, Caleb H, Mid-Market, 2019-08-15, LastPass has taken our password hygiene to a new level , The user experience is intuitive and it works with all our browsers & mobile devices. Great enterprise features & integration with Active Directory. Federated login with Azure AD is now supported, which means we don't have to have a separate master password for LastPass. I can also link my personal account to my enterprise account for convenient access to both with one logon., There are a couple things here or there that could be improved, but nothing major. I can't say there's anything I 'dislike' or 'hate' about LastPass. Using LastPass is lightyears ahead of using no password manager at all., LastPass has provided the means for our users to take control of their password hygiene and is enabling them to fix problems like weak, reused, & compromised passwords. The Security Challenge is a great tool to help users know what they can do to improve their online security., 10.0\n888, lastpass, Verified User (Anonymous), Small-Business, 2019-11-07, Eliminates frustration and adds security, I love that I no longer have a scrap of paper with all of my passwords written down. Instead, I'm able to easily access all of my accounts in one central location. , I can't think of much that I don't like about the product. My colleagues have mentioned that sometimes they have trouble getting passwords to auto load but I have not run into that. , It is much more efficient (rather than spending time looking for passwords or resetting if I can't remember) and I feel that my accounts are more secure because I don't rely on using the same password for ease of memory. , 10.0\n889, lastpass, Verified User (Anonymous), Small-Business, 2019-10-29, Effective and Free Way to Keep Track of Passwords, LastPass is a non-intrusive method of storing passwords in a manner that makes me feel confident about my password security. Additionally, the ability to generate unique secure passwords lets me keep up-to-date on my passwords across the board., Honestly, there isn't much to dislike here. The Google Chrome extension can sometimes be finicky and log me out, but I am not sure whether that is a problem with LastPass or Chrome. , First and foremost, LastPass allows for additional security on an individual password level. Their security audit is a really useful method of making sure my passwords are strong, and that my information is not anywhere I don't want it to be. The authenticator app (which can be used for other apps as well) is hugely helpful., 9.0\n890, lastpass, Patrick K, Small-Business, 2020-02-27, Everyone needs a password manager, Using unique passwords for each site is imperative. Sites get hacked all the time, and often, they don't properly store their passwords. If your email and password for one site are leaked, what else can an attacker access? What if you've used that same password for your bank, or email, or social media accounts?, I can't store my password vault offline, it needs to be stored (encrypted) in the cloud., Ensuring that I use a different password for each site, and keeping track of the age of passwords., 8.0\n891, lastpass, Trevor W, Mid-Market, 2019-11-18, LastPass Enterprise Works well, Lastpass is super easy to use, very little end user training, it supports with Active Directory Federation Services and works super well!, I wish Multi-factor authentication worked with Active Directory Federation Services, i know you can put Multi-factor authentication on Active Directory Federation Services , but wish lastpass could be the Multi-factor authenticationprovider , Passwords, we disabled end users from saving passwords in browsers and they were not happy, lastpass fixed this for us. It also needed SSO which Lastpass does very well using Active Directory Federation Services!, 10.0\n892, lastpass, Jacob J, Mid-Market, 2019-08-15, Great tool for improving security, LastPass integrates really well with web browsers and autofills better than other tools. It also works great on iPhone to auto-fill in apps and on websites., User management in enterprise version is a little tricky. Mainly the UI can be a little slow to respond and the language and organization isn't as clear as it could be. I wish it was easier to import browser saved passwords and disable the browser from saving them, directly in LastPass., We've onboarded most of our users to LastPass and haven't required it, but still have over 70% active users. This has increased our ability to ensure that users are creating secure and uncommon passwords without adding overhead to their day., 9.0\n893, lastpass, Verified User (Anonymous), Small-Business, 2020-07-21, Good for security, compliance, and remembering passwords, It's easy to save passwords for multiple email addresses on the same website, sharing with colleagues, and having a secure vault, It does exactly what I want to do, no major changes, Security when sharing passwords with coworkers and ease of remembering when there is a password change policy every 90 days, 9.0\n894, lastpass, Ajab B, Small-Business, 2019-08-03, Best wallet to save your PW, Very useful application as it saves you all passwords and it is really helpful for every one nowadays as people are using so many applications and creates new id and PW which is not easy to keep in mind for everyone. This vault has security challenge option,too. We can link other accounts into our last pass vault which is good options for companies getting merged. It has filters to search assenting or descending also. It has master password reminder which is helpful if you have forgot your password., You need to install this app otherwise You need to remember log in id and PW which you have set up for the vault. It is difficult to recreate new password every time if you forgot. This is the only thing which you can dislike for last pas otherwise it is useful in all way., I am using last pass in business purpose where we have kept all the ID PW safe and we do not need to share with every new employee about different id PW every time. In last pass we can add notes, we can share link, We can create different folders to find files easily. we can see all the folders or files in list and grid both kind of views. We can individually share PW for any particular folder by clicking share option. , 9.0\n895, lastpass, Michael H, Small-Business, 2019-11-18, Great security, poor interface, The security and ability to share password access without sharing passwords make this an obvious and incredibly helpful tool. , The interface is rough and the need to clear cache and reset sites so often to stop getting error messages has made it very tough and troublesome especially when training less tech-friendly users. , We feel much more secure in our ability to share passwords across teams without the need to reset every password as we have staff changes. The security score feature has been very helpful in highlighting which of our employees are most vulnerable to an attack. , 8.0\n896, lastpass, George S, Enterprise, 2019-11-18, Quirky Interface, Automatic fill of passwords. Grouping of secrets. Browser integration, though even that can be a bit quirky at times. , Very quirky and cumbersome interface, especially when having to mix with the enterprise version. Need to have a cleaner and more polished interface. Actually had received an e-mail to offer to test a new interface, but when tried to do so, received a 404 error, after 3 tries at that I gave up., Replacing an out of support software that has most of our server secret information. Haven't realized the benefits yet, still working on our migration. , 7.0\n897, lastpass, Fernando C, Enterprise, 2019-07-31, You can retrieve password by receiving a text message from your smartphone., You may manage all your passwords at a really reasonable price with LastPass, but if you don't have many passcodes, you can use the cheap variant that provides excellent security. Using an enhancement, it can be used from your desired browser or downloaded to your smartphone. I appreciate the 256-bit encryption method that has this technology as it gives me a lot of protection, something other applications can't do. Using\u00a0LastPass, you can conduct key inspections regularly and remove the passcodes\u00a0that are reused. If you miss a password, you can retrieve it by receiving a text message from your smartphone., Ton of moment using LastPass\u00a0and until now I have no claim against this software, it's quite reliable and it's been very helpful for my enterprise, I think this scheme exceeds all its opponents., Having LastPass has been very useful because it provides us safety and the chance to improve the effectiveness of our company, in event of issues, LastPass technical support group provides great help, they are fast to reply and very skilled., 9.0\n898, lastpass, Derek F, Mid-Market, 2019-08-29, Best way to manage passwords, We have multiple departments that need to share credentials. We can create shared vaults and can assign access to the users. When a user leaves the credentials stay with the company and we can revoke their access and give access to their replacement. Has made turnover less of a headache with account management., I don't like that LastPass doesn't work with 3rd party Windows Apps for auto-fill. Copy and paste of username and password into 3rd party apps is sometimes a pain., We are able to control credential access to websites and keep record of the passwords when employees leave and don't have to worry about resetting password, as we can limit who can unmask passwords., 10.0\n899, lastpass, Corrado Z, Enterprise, 2019-10-16, Nice refreshed style, but some functions need to be optimized, I like the pure server based storage of datas, the sync of the account in all my devices, which is pretty smooth. The possibility of use fingerprint's unlock on my phone now works flawless and web interface is more enjoyable of what used to be months ago. , I don't like the price. Two years ago was something like the half of what is now, which it makes me consider to change password manager. On Huawei p30 lite autofilling in app does not work the most of time. App opening could be faster, and also showed account during autofill often does not match the app in use.\nI would like also another way to recover masterpassword in case of loss. , The enormous amount of accounts name and passwords, all with different levels of security and access, which makes me impossible to write them down on notes or to", "doc_id": "3d8557f3-d357-4985-a802-cdc3488ac3cd", "embedding": null, "doc_hash": "5454ab77271821646804b0a451fe4ede1dbe853f3a20f99018a2d68639a49935", "extra_info": null, "node_info": {"start": 655071, "end": 671305}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "bb56f883-b18f-4d89-9825-a13adbc89ecd", "3": "71686de5-d3b6-4179-961f-8877adc8b34e"}, "__type__": "1"}, "71686de5-d3b6-4179-961f-8877adc8b34e": {"text": "but some functions need to be optimized, I like the pure server based storage of datas, the sync of the account in all my devices, which is pretty smooth. The possibility of use fingerprint's unlock on my phone now works flawless and web interface is more enjoyable of what used to be months ago. , I don't like the price. Two years ago was something like the half of what is now, which it makes me consider to change password manager. On Huawei p30 lite autofilling in app does not work the most of time. App opening could be faster, and also showed account during autofill often does not match the app in use.\nI would like also another way to recover masterpassword in case of loss. , The enormous amount of accounts name and passwords, all with different levels of security and access, which makes me impossible to write them down on notes or to rememember, 8.0\n900, lastpass, Verified User (Anonymous), Mid-Market, 2019-08-15, Easy to Use / Easy to Manage, LastPass is easy to use, love that I only have to remember one password and get an OTP and I'm in! Its easy to add sites and passwords. I can use 20+ character passwords with no worries., I have a few pages with the same username but different passwords and for some reason I have to choose which page to credentials to use. I have other sites with the same username and they work fine so its just a minor dislike , LastPass has made my passwords more secure and has sped up my time searching for passwords and logins., 9.0\n901, lastpass, Verified User (Anonymous), Small-Business, 2019-11-18, Great tool combining security and convenience!, LastPass allows me to store credentials for both personal and work accounts which can be easily and securely accessed. , Always have to click ignore on the plugin popup for sites that use a token or multiple passwords. , We are removing the need to save passwords on our browser, which is less secure. , 10.0\n902, lastpass, Verified User (Anonymous), Mid-Market, 2020-02-25, Great until the Mac app was removed, The ability to use hot keys from the desktop app to search for passwords., The new Mac app is a reskin if the web version. It\u2019s too laggy and crashes consistently., It\u2019s a password manager. It makes sharing credentials easier., 8.0\n903, lastpass, Verified User (Anonymous), Enterprise, 2019-11-19, Just beginning to harness the power of password management, I like having just one master password, and being able to connect to my vault from most any device., I wish I had the time to spend learning all of the features of LastPass., We are now able to securely share and update highly secure passwords across several administrators., 8.0\n904, lastpass, Jeffery S, Small-Business, 2019-11-18, LastPass --one of my first referrals in Password Management, If you must use passwords, you need a great password management system. LastPass is one of them. I recommend this Enterprise Password Management app in every security project!, Doesn't always do well in multi-browsers.. I switch from Safari to Chrome frequently. Could be more seamless., Sticky notes., 10.0\n905, lastpass, Verified User (Anonymous), Mid-Market, 2019-08-15, Are your important data and passwords stored in an encrypted vault?, It just works. I have been using LastPass in my professional and personal life for 5 years and it has never failed me. My data is safe and I can access it anytime from my smartphone. It's the best way to share sensitive data with coworkers and an excellent value., Conflicts between Chrome password management and LastPass, Sharing credentials with remote employees. Securing passwords. Now LastPass has an SSO offering. , 9.0\n906, lastpass, Noman K, Enterprise, 2019-08-15, Why wouldn\u2019t you? , I\u2019m an Enterprise admin and a user, ease of use, ability to share folders and sensitive files are very user friendly. Ability to use across platforms and browsers makes it one of my fav security product. , I would like the an easier way reset master password for corporate users. , Password reuse, and more complex passwords. , 10.0\n907, lastpass, Verified User (Anonymous), Small-Business, 2019-08-15, Lastpass is great!, I like the security and convenience of using Lastpass to store my passwords and secure information, they make securely sharing passwords and information easy and secure, and I love how seriously they take the security of our information., There is not much to dislike with Lastpass, they have most issues or concerns covered., The main problem we have been able to solve with Lastpass is actually two fold. We have staff using actually secure passwords and they are no longer writing them down on sticky notes they have put on their monitors., 10.0\n908, lastpass, Verified User (Anonymous), Small-Business, 2019-11-18, Works like a charm, Creating more secure passwords and never needing to type them in., Sometimes the LastPass plugin does not recognize the correct fields on a mobile browser., Managing a large collection of personal and company passwords. Sharing passwords with employees and managing their access to certain sites., 7.0\n909, lastpass, Hunter Marshall B, Small-Business, 2019-08-15, great product, not having to hit \"forgot password\" everytime i try to log in. it's a lifesaver... and helps with security when employees leave., that I have to remember to be logged in., Security, efficiency, 8.0\n910, lastpass, Marcus P, Small-Business, 2019-01-30, LastPass is a must have, especially when dealing with sensitive work accounts, I like that LastPass is able to provide top notch security with minimal effort on my end. In the past I had to keep a password book to keep all of my passwords, or I would have to use the same password over and over which was not secure at all. They provide a convenient solution to deliver security with peace of mind. , I guess what I don't like is that if I use one of the autofill passwords on a website and then need to quickly log in to that account on a friends account or another computer it is time consuming and a bit frustrating. Other than that It's honestly pretty good and i don't have many other complaints, Much like what I mentioned above, it is allowing me to keep my business accounts locked and secure with excellent passwords. No need to call my boss to help me reset my account because it's all saved for me now., 10.0\n911, lastpass, Verified User (Anonymous), Small-Business, 2020-03-12, Great product!, Super convenient to use, can\u2019t live without it now., Does not upload super quickly sometimes, can get buggy, Don\u2019t need to remember passwords anymore, 9.0\n912, lastpass, shan m, Mid-Market, 2019-04-14, Secure your Identity with lastpass, It allows user to to add password for particular user name and members who have access for that can view the password or directly copy it. You can create your own vault for all your secret data and you can share the vault with someone too. Secure form creation, saving site data is also part of the lastpass. Using lastpass you can also generate random passwords if you want with as per your accordance., If your vault has a lot of files and secrets then it will take enormous amount of time to search through it which is tedious. You might have to wait more if it contains same parameters in few files. overall search algorithm is not that good. Apart from that there are few bug and old fashioned UI. Everything else is good and up to the mark., As of now we are saving all our secrets in lastpass vault which is shared amongst all the employees. Form fill is also being used every now and then. Also the secret key generator is very helpful if you wanna generate random secure password., 8.0\n913, lastpass, Verified User (Anonymous), Small-Business, 2019-08-15, Easy to setup for novices, but also has advanced features, It's simple to start - Install the extension and start saving passwords right away. This was helpful in setting up a phased rollout for our org. We started with just getting everyone the extension and familiarizing themselves with the product. , Frequent price hikes\nALL of the good help articles (prior to the acquisition by GTM) are gone. The new knowledge base is lacking information., Security, first and foremost. Having LastPass installed in a HUGE step towards securing our accounts, even if there are still several other steps needed. , 8.0\n914, lastpass, Verified User (Anonymous), Small-Business, 2019-05-17, Handy Program That Every Office Should Use, Many times, companies will share login info for programs and websites they frequently use. LastPass is a great way to keep updated passwords, websites, etc all in one place for everyone to access and update. You can put restrictions on who is able to see and do what exactly as well. , It's no the most user friendly website to use at first, but once you use it more and more often, you become more used to it. , If someone changes a password to a site that others use, if is often difficult to track down who did it and what they changed it to. With LastPass, all of this information is at your fingertips. No need to send out multiple email to track down the culprit. , 8.0\n915, lastpass, Verified User (Anonymous), Mid-Market, 2019-11-19, Last pass rocks!, Ease of use, and works accross all browsers., We do not have any problems with the software., I can manage my personal life, business, and volunteer accounts from one interface., 10.0\n916, lastpass, Verified User (Anonymous), Small-Business, 2019-11-18, Overall helpful product with some minor issues, Easy to share passwords within my organization - definitely helps with collaboration, Sometimes the plugin doesn't work and I have to manually enter sites/passwords, It's great for helping us not to have as many users for other software/sites/products we use. , 8.0\n917, lastpass, Verified User (Anonymous), Small-Business, 2020-02-28, Solves the problem of passwords, Solves the problem of remembering passwords, Need documentation on how to best employ the family feature - best practices guide, Remembering passwords and using complex (good) ones, 9.0\n918, lastpass, Verified User (Anonymous), Small-Business, 2019-12-11, Personal user, business evaluator, I use for mlm personal use and have shared with the rest of my family. It is easy and generally seamless to use., Mobile use is sometimes a challenge with mapping to sites, although recently seems to be improving, Evaluating it for business use for our corporate social.media teams and their external vendors. Generally speaking, it has allowed me to better protect my personal accounts., 8.0\n919, lastpass, Verified User (Anonymous), Small-Business, 2019-10-22, Pretty solid product with minor glitches, I like that it\u2019s free tier is well integrated with almost every product. It has very good mobile support and it offers 2FA with various different options like yubikey, Authenticator, etc , I have seen minor glitches where it sometimes doesn\u2019t save the password for a new website. I\u2019ve also had to manually refresh the cache even after 10 minutes on a device other than the one where a new password was added, It helps me keep my passwords strong and different across various websites in a hassle free way., 9.0\n920, lastpass, Verified User (Anonymous), Small-Business, 2019-10-18, Change in life, The use of LastPass was a major digitel life change. The system allows all passwords to be registered in a single digital safe protected by a centralized password. It integrates perfectly into the browser (I use Chrome) with automatic compilation of garments, automatic recognition of passwords to be saved and password updates., In some things it is slightly complex, but it is the minimum belief for data protection., I no longer need to write and remember passwords, especially those that need to be changed often., 8.0\n921, lastpass, Verified User (Anonymous), Small-Business, 2020-03-01, I like LastPass., I like the password manager. It makes managing multiple logins seamless., I wish the interface was perhaps a bit more streamlined., Made it simpler, 8.0\n922, lastpass, Verified User (Anonymous), Enterprise, 2019-11-09, Keep your logins secure and customised, The best part is autofill of your credentials , now a days I myself login to a number of websites for shopping or job search everyday , it is difficult to keep data of every login., I sometimes feel lastpass have all my details , so there is risk if last pass is hacked I am screwed. And sometimes websites doesn't support autofill., I never worry about keeping track of password my whole life, 10.0\n923, lastpass, Verified User (Anonymous), Small-Business, 2019-11-20, Love, love, love LastPass, This is the best method of securely saving all log in's we need, Not much I can think of, love it for all our organization needs!, We always have our links organized and at our fingertips, 10.0\n924, lastpass, Verified User (Anonymous), Small-Business, 2019-11-19, The handy password manager, I like that this app can be used across devices, I dislike glitches happening on the app., i saved myself going through the hassle of remembering passwords, 10.0\n925, lastpass, Verified User (Anonymous), Mid-Market, 2018-04-25, Centralized Password Management - Makin' It Easy, Lastpass Enterprise has been able to get even the most die-hard post-it note user to move into the 21st century. The ability to sync between systems and safely use side-by-side personal and enterprise accounts has made the rollout more palatable to our users., There are still some concerns with the system's ability to recognize when a password has been entered/updates on sites, but for the most part it generally is able to spot the change and prompt to update the saved credentials., We needed to find a solution to sharing necessary shared-credentials to certain systems. The system of spreadsheets and password protected files was not tenable., 9.0\n926, lastpass, Heather Michelle H, Small-Business, 2018-01-31, Great for remembering lots of various passwords when I only need to remember one., I like that I only need to remember the main password, especially for accounts where I'm forced to change my password every 90 days and can't use one I've ever used in the past. I have too many passwords to remember every time I have to change one!, Sometimes I need to change passwords on certain sites in the administrative area in Last Pass because it didn't save changes I had made after updating the password., Remembering many passwords and only needing to keep up with one. This makes logging in to these various sites far more efficient than scrolling through a spreadsheet., 8.0\n927, lastpass, Eliot A, Small-Business, 2018-04-19, End password hell, The software service is easy to install and use. It solves the problems of organizing passwords, keeping them handy across multiple devices and remembering to change them regularly, It didn\u2019t work on a new browser (I just installed chrome, I needed to install a different plug in.\n\nBut really it works just fine., Security. I end up with a little st of passwords that I need to carry with me. That\u2019s a huge security hole., 9.0\n928, lastpass, Amy B, Small-Business, 2018-01-29, Comprehensive Tool For Password Security, I enjoy how incredibly easy it is to generate secure passwords. When I'm filling out web forms, I'm prompted to create a password via LastPass. It takes mere seconds to create a high-security password., I've never found anything that I dislike about LastPass. It's fairly user-friendly, though I did need to do a small amount of research to", "doc_id": "71686de5-d3b6-4179-961f-8877adc8b34e", "embedding": null, "doc_hash": "e92fcbaf782f03c5edd75eed39d3c5a2fb5971dd01e68d39f557942d397799fc", "extra_info": null, "node_info": {"start": 671363, "end": 686885}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "3d8557f3-d357-4985-a802-cdc3488ac3cd", "3": "3acf2f2b-7188-4de7-8338-de5d9bda66c5"}, "__type__": "1"}, "3acf2f2b-7188-4de7-8338-de5d9bda66c5": {"text": "organizing passwords, keeping them handy across multiple devices and remembering to change them regularly, It didn\u2019t work on a new browser (I just installed chrome, I needed to install a different plug in.\n\nBut really it works just fine., Security. I end up with a little st of passwords that I need to carry with me. That\u2019s a huge security hole., 9.0\n928, lastpass, Amy B, Small-Business, 2018-01-29, Comprehensive Tool For Password Security, I enjoy how incredibly easy it is to generate secure passwords. When I'm filling out web forms, I'm prompted to create a password via LastPass. It takes mere seconds to create a high-security password., I've never found anything that I dislike about LastPass. It's fairly user-friendly, though I did need to do a small amount of research to understand it. This is typical of any software though., I use LastPass to keep all of my business-related accounts secure. Examples include generating passwords for Google Docs, Google Drive, Gmail, LinkedIn, Wordpress, PayPal Business, and more. I benefit from this because I don't have to come up with complex passwords on my own - LastPass does the legwork for me., 9.0\n929, lastpass, Verified User (Anonymous), Mid-Market, 2018-03-01, Easy to use across devices , LastPass allows me to forget about remembering passwords and stress less about inventing new memorable passwords. The password generator works how it should 99% of the time and the autofill functions very well. I've been satisfied with almost every aspect of LastPass., LastPass doesn't always get it right when it comes to identifying fields. Sometimes it will ask if you want to generate a new password in a password field where you just need to access an existing password. This can be frustrating - you have to open the vault and manually pull the password. , Our InfoSec team enforces the use of LastPass and we utilize the Security Challenge to make sure everyone is at a certain % of safety to keep our company information safe., 10.0\n930, lastpass, Jason P, Mid-Market, 2018-01-26, LogMeIn has made a great move adding this to their suite!, Most hacks are the result of weak passwords or disgruntled employees. LastPass brings the control of a fully deployed Microsft Active Directory to every company. In under a couple hours your IT person can see the overall health of your organization's passwords and then improve the score.\n\nThe end users get to swap out the many passwords (over 100 on average) for one Master Password. It's a HUGE time saver and keeps us from using the same password for our company email AND our online bank profile., It's hard to make an argument for swapping a free \"personal user\" addition for a paid \"enterprise account\" until you see the admin panel. Not enough of us think about how vulnerable our ecosystems are to hack because of bad or reused passwords. , There are TONS of benefits. Strong passwords, easy active directory, and OATH management as well as multifactor authentication. If you hand out usernames & passwords for your ORG you should see this product. , 9.0\n931, lastpass, Verified User (Anonymous), Small-Business, 2018-01-22, Never Forget a Password Again!, I love the chrome browser plugin because it will autofill your usernames and passwords as long as you are signed in, plus it will prompt you to add a new site's credentials to your vault upon account creation or when you sign onto a site that isn't already in your vault. I also love that I can access long-forgotten passwords, as long as I saved them at some point in the past., I dislike having to change my main password as often as it wants; however, I'm aware that this is actually a good thing, as anyone who can get access to this site would have a lot of really important information of mine., I manage accounts for myself, my business, and my clients. It would be impossible to keep them straight or log in quickly to a lot of these accounts without LastPass., 10.0\n932, lastpass, Verified User (Anonymous), Enterprise, 2018-01-19, Maxed out security, I love how LastPass keeps track of passwords and usernames for all the platforms I have credentials for. These can be updated easily when passwords change. I also appreciate the level of security. There is two-step authentication, as well as an option to not type your password but rather click on the letters, numbers, and symbols. If you're leary of keylogger software infiltrating your computer, this is a great feature to further protect your passwords and usernames. Once logged in to LastPass, when I log in to a platform, it automatically fills in the information based on the account I am accessing., The setup for LastPass was challenging at first when onboarding with my new position. But once I got the feel for it, I was rolling. The mobile app isn't my favorite either. I primarily use this on my desktop., LastPass helps securely store passwords for a wide variety of platforms and accounts. It has helped immensely when forgetfulness looms., 8.0\n933, lastpass, Verified User (Anonymous), Mid-Market, 2018-03-28, LastPass Review, I like the fact that all my passwords are in one place and I can easily see passwords for other websites without first going to that website. It makes it convenient to see what passwords are already stored, and if I need to add any to the list. The addition of two factor authentication was also very needed., I wish security was a little higher, it seems that LastPass has only had a few issues since I've started using it. However, I think there are a few differences with the free version and the premium versions. I also believe the mobile application could be updated a little more, to make it a little easier to use., The business problem I was solving with LastPass is the fact that multiple users need to remember some of the same passwords for the same websites, so this has a unified way of sharing the password without revealing what my password actually was which I appreciate in terms of security. I believe we became more efficient, especially for the accounts that were shared and security was not an issue., 7.0\n934, lastpass, Bogdan P, Mid-Market, 2017-11-01, Simple and Secure, I mainly like that i don't have to remember any passwords. It's great that LastPass stores my passwords securely and they are accessible across my devices. I get the simplicity of only remembering one password and the security of hashed passwords! This coupled with their Touch ID and Face ID support on IOS makes it even easier to access my passwords!, Not a flaw of the product but it can be a bummer that you have to manually type in a 24 character password on a system that doesn't allow you to access your LastPass account such as a Playstation 4. It also was a bummer to hear that last pass had a security issue with it's browser plugin less than a year ago., I mainly use lastpass for my personal use and have found it to be great for speed and efficiency when accessing accounts, 8.0\n935, lastpass, Verified User (Anonymous), Enterprise, 2018-05-17, Buggy interface, but otherwise excellent, Has everything I need out of a password manager\u2014automatic form fill, mobile support, a great password generator, an organized and intuitive interface., There are occasionally some very perplexing bugs\u2014several times I've logged in to find that I had 20 new identical entries for my JetBlue login, the form fill button is occasionally occluded by some other part of the interface, logging in to the Secure Vault occasionally fails mysteriously, etc., LastPass allows me to keep secure passwords for all the sites I visit, business-related or otherwise, without worrying about memorizing them., 9.0\n936, lastpass, Jordan N, Small-Business, 2017-10-18, How did I live without it?, I enjoy that my passwords are securely stored in a central location. In addition to that, I can generate long passwords easily, and also use 2-factor authentication., I dislike that I didn't know about it sooner! No, but in all honesty, there is very little I dislike about it, if at all. The only thing that may need improvement would be more integration with mobile apps, but I do realize this isnt the fault of Lastpass, but rather the app developers themselves., I can securely store my passwords and generate secure passwords that I wouldnt be able to remember otherwise. It also is great way to store company credit card information without having to write it down on a piece of paper., 10.0\n937, lastpass, Meghan M, Small-Business, 2017-12-28, Makes things faster and easier, Nice to not have to remember a whole bunch of complicated passwords - we have to log in to a LOT of things and it would be much harder if we didn't use lastpass as it remembers your data and is easy to update, Sometimes it gets confused and doesn't know the right password for a specific site. For some sites, this makes things difficult as if you enter in the wrong password it messes things up, Quick and easy logins and remembering your data - allows me to work quickly because I don't have to stop and think about login info, 9.0\n938, lastpass, Lauren N, Small-Business, 2018-01-04, Great PW solution, but needs to managed closely, Automatic prompts to save pw's for new sites\nUser friendly interface to retrieve and manage log ins , Not a great solution for sites with multiple accounts eg. Google accounts. As a small business marketing director I manage several google accounts with unique log ins for each. Last Pass consistently gets these wrong. Like 90% of the time it applies the wrong pw to the username, even after I've updated it. , Saves a ton of time and is very convenient for managing passwords. Has been irreplaceable after I had to reset to my mobile phone - I was able to recover and reset several passwords via the Last Pass interface. , 8.0\n939, lastpass, Josh P, Enterprise, 2017-12-27, This one is a life saver!, What I like best about this product is the fact that it can keep my Salesforce org logins straightened out for me. I help manage multiple Salesforce orgs and it is easy to get passwords/usernames switched around. Last Pass keeps all of the combinations together and makes it easy for one-click sign-on., I've yet to find a part of this tool that I dislike. I've had it for a little over a year now and have yet to have any issues or not do something I've needed., Business problems are keeping track of all of my passwords for the myriad of software and utility tools that we use. It allows me to quickly get in and out of programs without having to track down the password I need in the stack of sticky notes sitting on my desk., 10.0\n940, lastpass, Verified User (Anonymous), Small-Business, 2018-03-10, Password security at its best, I am able to store passwords to literally anything. If I have a news outlet I'm subscribed to, it stores it. My social media passwords, email passwords, software passwords... all stored. Even upon log in, it gives you an option to use the mouse to click on the letters, numbers, and symbols instead of typing. This is important in case you believe there may be some key-logger malware on your computer., Anytime you're dealing with security, it just takes a little extra time to access your saved passwords when you're logging in to LastPass. It's not so much a dislike as it is a tradeoff that only feels like a minor inconvenience. Logging in, going through the two-factor authentication, and then you're set. But I honestly have this than not for obvious reasons. But there's not really anything I dislike., The extra layer of security for saving passwords is great. It helps me keep everything straight. Sometimes, after so long, you're required to change a password. This recognizes when I update a password and automatically asks if I want to update the password in LastPass and I love that., 10.0\n941, lastpass, Cherise B, Small-Business, 2017-12-22, Secure, Convenient, Organizable, Shareable, I love how secure LastPass is! Protected by a Master Password, and you can require password re-entry for some logins/notes. Highly organizable, easily lets me sort sites/notes into folders as needed. It's also easy to share LastPass. If you have a paid account, you can create a Shared Folder, and if you don't have a paid account, you can keep all shared items organized in folders as Accepted Share Offers. I love LastPass for work so much that I also use it for personal use! It also has a web browser extension for ease of logging into websites., I honestly can't think of any dislikes for LastPass!, Secure storage of sensitive information, like credit cards. One easy place to save multiple passwords. , 10.0\n942, lastpass, Anshula C, Small-Business, 2017-10-07, Takes a lot of startup time, the UI isn't great, but it does the job, When Lastpass works, it just works. It also makes it possible to share groups of passwords (operation passwords, finance passwords, product, etc.) instantly with the right employees. The Security Challenge also helped us increase the company's online security in a semi-gamified way. It also saves time in our day-to-day work., It took a ton of time spent setting up folders, organizing passwords, and doing the initial socializing with the team. The latter is because Lastpass does take a change in user behaviour. You have to remember to log into Lastpass, remember to save passwords in a clunky UI, and then remember to select the password when logging in. The UI is also not great, even with recent UI updates. Sometimes pages have downright childish fonts (big, red, bold, Calibri, static on the page) in place of error messages. , When Lastpass is used right, it really begins to pay for itself. All staff have access to the write passwords without compromising security. Perhaps as important - You can take away access as easily. When new staff come on board, they easily get up to speed on our infrastructure - None of that time-wasting \"Hey, do you have the login credentials to our video conferencing, product demo, etc.\". UI upgrades make the whole thing a lot nicer to use, particularly when compared to a couple of years ago. Lastpass is now a product that can scale with our company., 4.0\n943, lastpass, Verified User (Anonymous), Enterprise, 2018-07-30, Very Useful tool, It is a powerful, cross platform tool, that allows the generation of secure passwords, The safari integration is rather buggy. Frequent logouts and it fights with safari/Mac built in password manager, Working with secure passwords keeps the work system more secure., 7.0\n944, lastpass, Tara M, Small-Business, 2018-02-03, Great for remembering passwords - saves time and energy!, I like how you can sign in and it will auto-fill your passwords , and every time you type a new password it can be added to your \"vault\", There were some glitches at the beginning when people couldn't share passwords with me unless I signed into Last Pass, We had a lot of very basic passwords because we couldn't remember them all, but with this we were able to make them more complicated and not worry about forgetting - so they became more secure and easier to type in!, 8.0\n945, lastpass, Verified User (Anonymous), Small-Business, 2017-12-19, Secure and sync-able, LastPass was recommended to me by a friend years ago but it took me some time to get on the bandwagon. I don't know why I waited so long to implement this great password manager!\n\nLastPass securely stores your passwords and syncs them across all of your devices. It's \"browser-agnostic,\" and you can use it on your mobile devices just as easily. The passwords are secured by a master password, and if you lose a device, you can easily activate", "doc_id": "3acf2f2b-7188-4de7-8338-de5d9bda66c5", "embedding": null, "doc_hash": "49f3ef5e813f76ff9f58ca42348d2984f26793c57f340ccc7a5b98debc28a6e4", "extra_info": null, "node_info": {"start": 686924, "end": 702552}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "71686de5-d3b6-4179-961f-8877adc8b34e", "3": "e6baceab-5cdc-40de-a645-5571c21afa8e"}, "__type__": "1"}, "e6baceab-5cdc-40de-a645-5571c21afa8e": {"text": "I signed into Last Pass, We had a lot of very basic passwords because we couldn't remember them all, but with this we were able to make them more complicated and not worry about forgetting - so they became more secure and easier to type in!, 8.0\n945, lastpass, Verified User (Anonymous), Small-Business, 2017-12-19, Secure and sync-able, LastPass was recommended to me by a friend years ago but it took me some time to get on the bandwagon. I don't know why I waited so long to implement this great password manager!\n\nLastPass securely stores your passwords and syncs them across all of your devices. It's \"browser-agnostic,\" and you can use it on your mobile devices just as easily. The passwords are secured by a master password, and if you lose a device, you can easily activate LassPass on your new device and reclaim those lost passwords. \n\nIt also has some neat features, like secure form-filling, that can make online shopping quicker and easier. \n\nReview collected by and hosted on G2.com.What do you dislike?The drawbacks to LastPass are similar to other password managers -- a single, potentially hackable point of entry for every password you have. LastPass has in fact been breached before, though I'm sure they are always improving security., The drawbacks to LastPass are similar to other password managers -- a single, potentially hackable point of entry for every password you have. LastPass has in fact been breached before, though I'm sure they are always improving security., It's a great solution for freelancers who have (like me) so many different web apps and websites to utilize as we manage and promote our businesses (invoicing, social media, mailing lists, and more.), 9.0\n946, lastpass, Kyle J, Small-Business, 2000-01-01, LastPass for password management, LastPass lets you put all your password into one location so you only have to really remember your lastpass password to get in anywhere. LastPass also uses dual authentication which makes me feel more secure about my password since for someone to log in and get access to all my passwords they would need my password and my phone (we use duo mobile for this process). \n\nAnother neat feature is that when you use the browser plugin it will automatically detect login forms so that you can autofill in your username and password with other form fields if needed. Last pass can be also used to generate complex passwords for you. It also will pull in your browser stored passwords and tell you which passwords are the same across all your accounts and recommends you to change them., LastPass can be a little user unfriendly to none \"techy\" people. I usually have to help some coworkers with setting LastPass up. , LastPass allows us to have secure passwords for all our accounts in one location. This helps us enforce our employees to have safe and secure passwords., 9.0\n947, lastpass, Adam N, Small-Business, 2017-10-03, LastPass has just become part of life now, I have 20+ character randomised passwords for all sites I use. The number of combinations this could be is mind-blowing. I never have to remember passwords, and LastPass automatically fills in the sign in fields when I land on a site (most of the time, the occasional site doesn't work, but it's pretty quick to use the Chrome extension to search and copy the password). You just login to LastPass once in the morning (or you can stay logged in on a trusted computer), and that's it. Combined with two-factor authentication, and you're way more secure than most people. \n\nAnother excellent feature is the security check you can run. It will process all the passwords you have and give you an overall score, and advice on how to become more secure (it highlights duplicate passwords, old passwords, weak passwords, etc). It also checks whether any email addresses you use have been compromised by known security hacks. Very useful. , I worry about having all my passwords stored in one place. Obviously, they're security experts, so they must be pretty hard to crack. But, ya know, people hack the NSA, so... But it's much more secure than having easily crackable, repeated passwords on sites across the internet. Also, passwords are not automatically filled in when logging into a site on a smartphone. I have to open the LastPass app (albeit quickly with finger print entry) and then copy the password and paste it into the site I'm trying to access. To be honest, it's not a massive issue, but it is a bit of a pain (maybe I've just got used to it). But the normal desktop experience is very smooth. , Avoiding getting hacked. I have peace of mind knowing I'm one of the secure internet users. It saves a tonne of time logging into sites (I have several hundred stored passwords, I probably only use a couple of dozen regularly, but it's amazing how many sites you need passwords for). You open the site. Email and password fields just auto fill. And you click to sign in. Simple. Honestly, I don't know how people stay secure online without a password manager, like LastPass. , 9.0\n948, lastpass, Veronica P, Small-Business, 2018-01-26, Simple and Organized, I like that I can create categories for the different kinds of passwords I have. Right now I have different categories for work and personal. It really keeps everything organized and easy to find. , I would like to be able to clickable links into the note section so I don't have to copy and paste the link to where that specific information is used. Otherwise, I can't think of anything else. I really love LastPass! , It's definitely a timesaver! Instead of having to flip through a notebook or messages to find passwords, they are in one space, stored securely so I don't have to worry about that either! , 9.0\n949, lastpass, Michael S, Enterprise, 2018-01-22, Indispensable and blessed by HQ , Ability to generate strong passwords with different requirements. Recognizes URLs. Easily searchable vault. Offline mode. Officially sanctioned by company policy., Form fill can be finicky. Creating a new PW directly from \"Generate PW\" can create a situation where it loses the password after changing it., Maintaining strong credentials for dozens of services and tools., 10.0\n950, lastpass, Gabriella H, Small-Business, 2017-10-31, This is in my list of essentials., I no longer have to remember passwords. I can make them all long and unique, and be sure they are safe in LastPass. The security is so good that if I ever forgot my master password, not even LastPass staff could unencrypt my database for me. Way more secure than my own brain. Also, auto logging into websites and apps on my phone is wonderful as I hate typing on small touchscreens. , On some sites, the autofill feature fails. This usually happens when a site uses some weird dynamic popups or something for their login., It saves me literally thousands of keystrokes. It also vastly ensures my security. If one of my accounts gets hacked, like my email, the fact that all my credentials are unique across the web means that vulnerabilities remain isolated., 10.0\n951, lastpass, Felipe L, Small-Business, 2017-09-28, Best password manager, Integration with multiple browsers and one of the best mobile apps. Also it has multiple forms to save passwords, credit cards, server information, ftp login, etc. I love the price, because it's no expensive for a company like us., When it saves a new password I can't select a folder to save it. I must do it manually. Sometimes it misunderstand if I'm creating a new account or if I'm loging in., Remembering over hundred of passwords from different services, servers, ftp, credit cards, even id cards. One of the best features is that I can share accounts with other employees in a very secure way., 10.0\n952, lastpass, Madeline S, Mid-Market, 2017-12-08, Best Option for the Price, I am a LastPass team administrator. I love that I can create one card with login credentials and share it with a team of people at once. I can also alter who in the team can view the password and who cannot. LastPass also allows me to update passwords and share them quickly with colleagues. From what i can tell it's the best password sharing tool for the price. , Where to begin? LastPass in general is slow. Everything takes twice as long as you think it would. If you are sharing passwords with others, the password does not always appear in their account right away. If you are using the chrome extension, you will definitely need to learn how to refresh the extension to make sure you have access to your passwords. , LastPass allows my team to all have access to the same accounts without having to keep our passwords in a google sheet or written down on a piece of paper. It keeps everything secure and organized. , 8.0\n953, lastpass, Verified User (Anonymous), Enterprise, 2018-04-16, Great product for use on all your devices., The interface especially on PC is best in class and the features are all you could want in a secure password manager including generating passwords with unique password recipes and secure storage in the cloud., The mac interface is not as appealing as 1Password which started out as a Mac and iOS app. My company gives me free enterprise account that give a personal account with all features including mobile (iOS) access., Managing multiple passwords to multiple platforms and allowing you to create very secure passwords., 6.0\n954, lastpass, Craig B, Enterprise, 2018-01-03, Easy to Use and a great value, I really like LastPass and have been using it for three years. It's super-easy to setup and going. It's made all of my passwords so much stronger and the autogenerate is great. , There's nothing major I don't like -- all the core functionality is good. The additional features -- such as credit monitoring is really not necessary or helpful at the level I pay for., LastPass has made it possible for me to diversify my user credentials and keep more of my account secured., 10.0\n955, lastpass, Matthew Q, Small-Business, 2017-12-14, All The Password In All The Right Places, LastPass makes it so easy to keep track of passwords. I never have to remember a password again, and even if I am using another PC or phone I can log into my account and check what a password is if I need to., The popup to add a password can get a little annoying sometimes if it's nothing something you want to add or if it thinks it's a new password., I can give access to contractors and others I need to check my accounts and then revoke it if needed. I also love that I can get access to clients accounts without having to worry about sharing passwords back and forth., 8.0\n956, lastpass, Tim B, Mid-Market, 2018-01-03, Great Way to Generate and Store Passwords, Lastpass has made it about as easy as possible to save passwords. You simply enter your credentials and sign into to a site, then Lastpass recognizes the new sign-on and prompts you to save., There really isn't anything I dislike about the product. I can use it for free on my laptop or phone, it's much more secure than storing passwords in a random file or Notes app, and it's easy., I can share account credentials with coworkers so they can log in with a group account, but not know that password I'm using., 9.0\n957, lastpass, Verified User (Anonymous), Enterprise, 2018-07-11, Easy to Use, Simple, effective to way to keep passwords linked to accounts and websites. Store yours or generate from LastPass., Nothing, simple format, App is also free,, Can access passwords anytime, use a master password or finger touch control., 9.0\n958, lastpass, Verified User (Anonymous), Small-Business, 2017-12-08, Simple and secure, Love this software. After this there are only 3 Passwords in your life: Login of your PC/Mac, Lastpass Password and Lastpass Back Up Password. No more. , Lastpass could be a bit annoying when there are Logins with the same Password. But in some cases, it is required to use the same password. I wish to be able to deactivate redundant alerts, Lastpass generates automatic Passwords and saving them. so every account I have contains a 30+ letters Password. This allows me to feel (mostly) safe against brute force attacks. Even the fact, that there are only 3 Passwords needet in my whole word. Even Passwords for apps are saveable in lastpass. , 10.0\n959, lastpass, Kelsey M, Small-Business, 2017-09-06, Saves a ton of time, If you manage client's accounts and are logging in and out of them all day, LastPass is a life saver! Saves tons of time each and every day for us and is a god send for people who have issues remembering passwords. Since I use multiple computers during the week (work computer, home computer, laptop) LastPass makes it easy to have all the same information on all the devices., When selecting a username and password for login, I wish it prioritized the logins that you've used recently so it is easier to select... but, other than that, it's great!, I store all of my credentials for logging into websites using LastPass, it allows us to have a central location that is the same on all my devices., 10.0\n960, lastpass, Bret C, Mid-Market, 2017-12-28, Great Security for No Price, I love the ease of access, whether it be via mobile (which I use always) or Chrome extensions, it works great. The auto-fill option (honestly I don't use as much as I should) is a great tool!, Haven't really found something that kills it., I receive shares from my head office, very sensitive and high level information, notes, etc, accept and I have the information anywhere I am or go, able to help my team using this information., 10.0\n961, lastpass, Verified User (Anonymous), Small-Business, 2018-03-21, Useful product, Range of information that the platform can keep - from site passwords to credit card information. Also the ability to securely share account passwords across the team., The interface is slow at times. The chrome extension is helpful but always takes a couple clicks to go through., We needed the ability to share access to certain accounts to different groups of people. It's been extremely useful in making sure everyone has access to the information they need., 9.0\n962, lastpass, Dustin H, Mid-Market, 2018-01-16, Simple, Reliable Password Management Solution , LastPass makes it easy to track various passwords across numerous sites. The vault feature works as an online repository for passwords, it also automatically organizes the website passwords by website type., On mobile Android, getting LastPass to work when you get to a site can be hit or miss. The two-step authentication sometimes decides to not accept Google authorized codes - which means you then can't use the mobile solution at all. , I use LastPass to manage passwords and keep track of the many sites I log into on a regular basis., 9.0\n963, lastpass, n\u0117 , Small-Business, 2018-01-13, Amazing password manager, I love that it helps me to manage huge amounts of passwords both personal and work related. I also like that there is a multifactor authentication option., Sometimes I have problem with generating and filling new passwords.\nAlso it would be nice if it will be a bit cheaper., We are sharing passwords for some accounts and LastPass makes it easier to do that. Also we are sure it is secure to share passwords using LastPass. , 10.0\n964, lastpass, Dan S, Small-Business, 2017-11-05, Stellar Password Protection, The Chrome extension serves as a great reminder and tool for any new logins you don't have time to write down. You can get them converted to your LastPass account right away as a result., There are points where you sense it will view almost anything that looks like a password as your official password - accordingly, you need to remain on your toes with any personal", "doc_id": "e6baceab-5cdc-40de-a645-5571c21afa8e", "embedding": null, "doc_hash": "99f4c4693146fc38213d7bd127e0acdfc8b257d49c698ebdaa05ff176bee1166", "extra_info": null, "node_info": {"start": 702562, "end": 718285}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "3acf2f2b-7188-4de7-8338-de5d9bda66c5", "3": "909770d7-b474-44dd-8b3d-043fc5d465f4"}, "__type__": "1"}, "909770d7-b474-44dd-8b3d-043fc5d465f4": {"text": "of passwords both personal and work related. I also like that there is a multifactor authentication option., Sometimes I have problem with generating and filling new passwords.\nAlso it would be nice if it will be a bit cheaper., We are sharing passwords for some accounts and LastPass makes it easier to do that. Also we are sure it is secure to share passwords using LastPass. , 10.0\n964, lastpass, Dan S, Small-Business, 2017-11-05, Stellar Password Protection, The Chrome extension serves as a great reminder and tool for any new logins you don't have time to write down. You can get them converted to your LastPass account right away as a result., There are points where you sense it will view almost anything that looks like a password as your official password - accordingly, you need to remain on your toes with any personal data, I've introduced it at my workplace as a means to save our account passwords, and we can collaborate better as a result., 10.0\n965, lastpass, Manjunath B, Enterprise, 2018-01-16, Convenient way to share keys , Creating fodders and organization of keys , Mac UI isn't very intuitive and you'd have to go to the web interface for a few things., Share passwords with in the organization., 9.0\n966, lastpass, Nicole W, Small-Business, 2018-01-26, Very Effective, Even though many people use Lastpass to save their usernames and passwords for themselves, which we all need to do, I love that you can share logins with anyone you want without them ever having to see the passwords. This saves you from having to change once you stop sharing it., I don't like that it automatically saves everything, some things I don't care to be saved. That makes it a little cumbersome., Sharing login information with colleagues, clients, etc. without ever having to change them or fear of them being stolen or misused. , 10.0\n967, lastpass, Verified User (Anonymous), Small-Business, 2018-03-13, Makes my life a whole lot easier, LastPass is incredibly secure with the multi-device authentication, so you can rest easy knowing your passwords are safe. It's so much easier remembering one password rather than 50! It is also really easy to add passwords to your vault using the browser add on., The browser add-on can be a bit temperamental on occasion. Aside from that, can't really fault the tool., Less people forgetting passwords and being locked out of things! Also improves security as people aren't sending passwords over email, all our shared accounts are stored in LastPass., 10.0\n968, lastpass, Ruth S, Small-Business, 2018-04-06, Indispensable app!, I know that pretty much every login I need is saved and secure., Sometimes the Save or Update function doesn\u2019t work., I can move quickly in and out of my accounts. And I only have to remember one master password., 9.0\n969, lastpass, Joshua R, Mid-Market, 2017-10-31, Easy and Secure, I love being able to have both a personal account and a business account at the same time. This allows our entire company to use lastpass for internal needs while having my personal passwords stored in the same area only in my own private section that stays with me if I were to leave the company account., Obviously we only give access to password folders to internal team members we trust but even if the password is not visible to the employee when they are viewing in the vault a tech savvy person can make a small change to the HTML code to display the password. So once you give employees access to specific credentials you might as well assume they will be able to figure out the password even if the , LastPass allows us to get more secure with storing passwords that are used company wide. Instead of messaging a password or writing it down on paper and handing it to someone it stays secure in the cloud that anyone we give access to the ability to use the passwords for any systems they need to access that are managed company wide., 10.0\n970, lastpass, George B, Small-Business, 2017-09-26, LastPass Works Great, Keeps Me Organized, Lastpass is simple to use and tracks everything. I have credit card numbers stored in there as well as notes for each family member with SSNs, medical information , etc. And it's a breeze to share information with another person., Some companies use a third party service on their site. This can cause LastPass to get confused about the actual site name and account., I'm able to share a password with a co-worker from the LastPass dashboard. I can also set \"emergency contacts\" who can log into LastPass if I am unable to and retrieve information. They don't have constant access--I'm immediately notified if they log in. This helps a lot with continuity, peace or mind, and collaboration., 10.0\n971, lastpass, Verified User (Anonymous), Small-Business, 2018-01-18, Very happy I've got LastPass in my life!, As a password manager is pretty essential within any company, LastPass is the perfect solution to manage and share passwords with colleagues. The rights management makes it easy the save information for either yourself, teams or the whole company. No need to ever remember passwords again. Also 2-factor authentication is supported and makes it extra secure. , I did have to think quite hard to find anything that I dislike as LastPass is incredibly safe to use. It does get slightly annoying just in case you have any entry saved twice with the same password but apart from that it's very easy ti use., We needed a solution that is as safe as possible with easy rights management. I wouldn't want to be without LastPass anymore, especially now that there are a large bunch of passwords to manage with ever expanding password length & complexity., 10.0\n972, lastpass, Juan F, Small-Business, 2018-01-26, Great Password Management for IT, I like that we can share with all the office in needed websites and server passwords etc. We can share different items with IT, and other sites for Developers, Mangers etc. So this makes it secure where not everyone has access to everything., I don't really dislike anything, everything seems to be working great. , We are sharing IT passwords for websites, servers and credit cards needed to purchase items. We also share some websites with developers. , 10.0\n973, lastpass, Verified User (Anonymous), Small-Business, 2017-12-22, Love LastPass, The vault feature; it's much easier to use than Google Smart Lock. It's easier to navigate, you don't have to enter the password for your PC to see your passwords, you can update your passwords in the vault, and the vault includes more information than just the website address., When I am changing a password for a website that is already saved in LastPass sometimes a pop-up box does not pop-up to update the password., Saving passwords for multiple websites I use for my practice and using the password generator., 7.0\n974, lastpass, Charles S, Mid-Market, 2017-10-19, Seamless password management for work and pleasure, With so many different accounts and passwords, it is hard to keep up without having the same password for all accounts or writing them down, both of which are not very secure options. Lastpass helps me feel secure with safe password protection that easily integrates in the chrome browser. My favorite part is how easy it is to use. Enter your password once and last pass stores the password for all future cases., The UI for lastpass is a little clunky. I feel like I get lost on their webapp. Then again, I don't use it very much, so maybe I haven;t grown accustomed to it, Sharing secure passwords for shared accounts with internal employees, employees storing all of their passwords in one app, allowing them to make a secure password for every site., 8.0\n975, lastpass, Verified User (Anonymous), Enterprise, 2019-11-09, Very useful, The tool is very useful. I have so many account to manage and I could eventually say good bye to files. , Actually there are no issue in using last pass. Because for example you can decide what it has to memorize or not, As executive assistant I had to manage several accounts on behalf of my boss, more than 20. It changed my life, and I could even decide which ones I could share with other department , 9.0\n976, lastpass, Jen M, Small-Business, 2019-01-12, Long gone are the days of getting locked out of your account, I love that there's an extension for my browser and an app for my phone. I don't have to keep trying password after password for each new website, all I have to do is log in via LastPass. If a new site needs a specific password, I don't have to wrack my brain for some weird combo. I can simply tell LastPass what the specs are voila, new sophisticated password! , I have about 20+ Google accounts saved, between my personal and professional use, as well as clients accounts. Anytime I save a new account LastPass will ask if I want to update the password on my main account instead of recognizing that the accounts are not the same. , I can have clients share personal information with me without revealing what their passwords are. It's great to be able to offer that peace of mind to clients who are weary about sharing personal info. , 10.0\n977, lastpass, Verified User (Anonymous), Small-Business, 2019-08-15, Great decision to purchase this. , We went from shared spreadsheets to encrypted and secure links and secure notes. I love the groups and password sharing. , Not much. I wish there was a way to have aliases for passwords in multiple folders for the situations where I want to share a few passwords out of a shared folder with another group. , Our password file was flat and insecure. Now it\u2019s accessible on any device and I can hide the password from people if I really want to. , 10.0\n978, lastpass, Verified User (Anonymous), Enterprise, 2020-02-27, Ease of use, Ease of use and the single pane of access, Nothing to dislike but keep evolving to be best, Password management, MFA, 9.0\n979, lastpass, Verified User (Anonymous), Small-Business, 2020-02-26, Easiest and most complete, Ease of use remembering critical information, Frequent log outs on variety of devices, particularly mobile, Taking the complexity out of passwords, 9.0\n980, lastpass, Verified User (Anonymous), Small-Business, 2019-08-15, LastPass is great for controlling where passwords are stored., As manager I create the passwords and then share the links with employees but they cant see the passwords. Keeping the passwords secure and unknown to employees., The way that the Admin console is for shard folders. I can't look into the folders and create new items in there, I have to go to another page to do that., Makes it easier to control who has passwords and whether they are stored in a secure place or not., 10.0\n981, lastpass, ohn g, Small-Business, 2019-08-22, Great for personal use. Not great for business use., Easy to use phone app. Web app also works pretty well. , The business version seems very much half-baked. Strange text field for notes which doesn't display everything. Incredibly difficult to manage users., Personal and corporate password management. , 7.0\n982, lastpass, Verified User (Anonymous), Small-Business, 2019-11-18, Small Business Implementation, This has been relatively painless to implement., Many websites are still a little more clunky than they need to be for password management., Password re-use and writing down passwords on paper., 10.0\n983, lastpass, Frank N, Small-Business, 2019-09-30, I love it, I love that it keeps all of my passwords safe, spots duplicate or weak passwords, and suggests strong passwords., There are moments when it seems like my LastPass browser extension on Chrome and Chrome itself are fighting for the right to handle my passwords, My passwords are much more secure than they've ever been before., 10.0\n984, lastpass, Sergey I, Small-Business, 2019-04-22, solid password manager, 1. Auto-fill for websites and apps on Android \n2. Emergency access when you may allow other people to access it in emergency situations\n3. Sharing passwords with a team quickly, It becomes more and more expensive ($3 vs $1 before) after it's acquisition by LogMeIn. But it has a Free plan as well., Making sure passwords are strong and quickly sharing it with my team., 7.0\n985, lastpass, Verified User (Anonymous), Small-Business, 2019-09-24, LOVE this program!, Simple, easy setup, secure, great for multiple locations/pc, Pricing\nSharing can be difficult for non-user\nLogin on websites can be mixed up with already browser saved passwords, I used to use spreadsheets to save password. This way is so much better, more secure, I have it on all my devices so I get the passwords everywhere, 10.0\n986, lastpass, Verified User (Anonymous), Mid-Market, 2019-11-18, Works well for my use case, Ease of implementation was probably the best, getting off and running was pretty quick., The SSO implementation and automatic account creation documentation was lacking, there were a few 'there be dragons' areas with no map., Password proliferation, and change schedules. It becomes less of a burden to change password to follow complexity rules with lastpass there to keep the passwords safe behind a master pass phrase., 7.0\n987, lastpass, Bill N, Small-Business, 2019-01-25, Security and Time Saver, I like the security that Lastpass affords in generating and safekeeping passwords required for the multitude of passwords required today. Once you get the hang of it, is easy to use. Is cross-platform as well. For me, it saves a lot of time in dealing with passwords, and now I can comfortably have a unique password for each site, whereas before I would have the same password so I would not forget., It is not always intuitive to use; the interface can be a bit clunky, and it often comes up at inappropriate times when asking if I want to change the password as sites that require an additional security question., Password management, time management, internet security., 8.0\n988, lastpass, Verified User (Anonymous), Mid-Market, 2019-11-18, Solid, time tested tool, Straightforward tool, with a lot of familiarity among IT professionals. , A little clunky on login (for anyone that travels a lot). , Password management, easier transition between personnel. , 7.0\n989, lastpass, Verified User (Anonymous), Mid-Market, 2019-08-15, Lastpass meets our company password needs, I most appreciate the way lastpass handles password encryption and decryption. Since the passwords are decrypted locally and Lastpass doesn't have access to raw passwords, it helps meet our security and compliance needs., Lastpass could use more or better integrations with Azure Active Directory. It would also be nice if Lastpass could consume SAML SSO, rather then just act as a SSO provider itself., Password management and credential sharing in an enterprise environment. , 8.0\n990, lastpass, Verified User (Anonymous), Mid-Market, 2019-10-21, Great tool to manage passwords, Integration with most of the websites is seamless, so it's a great way to have strong passwords and not having to remember all, Sometimes credit card data is not populated into forms, Remembering losts of password and having strong ones, 10.0\n991, lastpass, Alex V, Mid-Market, 2019-05-29, Really Solid Password Manager, Passwords are so important, but they're impossible to manage without a password manager! I love LastPass' features, and the free price is amazing too!, I wish more sites integrated with the authentication side of the app., Being able to manage all of my passwords is so helpful, and having it on my mobile device means I'm never without my vault of passwords., 10.0\n992, lastpass, Ellen J, Small-Business, 2019-05-20, Important for password storage and security-at times frustrating, I like automatic password generator,", "doc_id": "909770d7-b474-44dd-8b3d-043fc5d465f4", "embedding": null, "doc_hash": "af110ea0a6b337513bbdf012bfee71bc34bcaa2283fb002223e79f33826cbe4a", "extra_info": null, "node_info": {"start": 718243, "end": 733968}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "e6baceab-5cdc-40de-a645-5571c21afa8e", "3": "78ff6a18-e10d-425c-9dcd-cc7b6f151419"}, "__type__": "1"}, "78ff6a18-e10d-425c-9dcd-cc7b6f151419": {"text": "so it's a great way to have strong passwords and not having to remember all, Sometimes credit card data is not populated into forms, Remembering losts of password and having strong ones, 10.0\n991, lastpass, Alex V, Mid-Market, 2019-05-29, Really Solid Password Manager, Passwords are so important, but they're impossible to manage without a password manager! I love LastPass' features, and the free price is amazing too!, I wish more sites integrated with the authentication side of the app., Being able to manage all of my passwords is so helpful, and having it on my mobile device means I'm never without my vault of passwords., 10.0\n992, lastpass, Ellen J, Small-Business, 2019-05-20, Important for password storage and security-at times frustrating, I like automatic password generator, I like that you can launch programs directly from lastpass and I like that i can feel 'at ease' that my passwords are protected., my company oftentimes uses the shared login function which causes problems, and it's not always clear what the problem in\n\nI've also noticed that Lastpass seems to not completed update if I change my password with multiple tabs open... I could always be more careful, but it would be nice it it notified me if something would or would not be updated based on having another tab/browers open., Keeps all my passwords in one place. I even use it for some of my personal password storate, 6.0\n993, lastpass, Verified User (Anonymous), Mid-Market, 2019-09-19, Best password management , I use it both on PC and mobile. It works perfectly, with just a fingerprint. It is secure, lastpass doesn't keep your passwords unencrypted. , There should be an option to disable it in certain apps. Otherwise it bothers you too much. , I don't have to remember or enter any passwords, it all does it automatically. , 9.0\n994, lastpass, Andre B, Mid-Market, 2019-07-18, No more passwords, How easy and integrated the software is with my machine, It still doesn't work well in macOS x operation system., I had so many passwords that it was hard to manage in a notepad. The benefit is to access all my passwords in one place, easy and sync., 10.0\n995, lastpass, Verified User (Anonymous), Mid-Market, 2019-08-15, Great password manager, Integration with applications and you can launch your websites thru the application in the mobile phone or web browser, also you can merge your personal and work accounts. , In order to have LastPass to work with the software installed in your computer you need to setup machine by machine those programs, We had a problem with the integration or extension on Chrome and one of our web applications to work together , 10.0\n996, lastpass, Verified User (Anonymous), Small-Business, 2019-08-15, Excellent overall package for password management / secure sharing of passwords., Ease of use, browser plugins. It seems to integrate into my computers & browsers nicely., The way items are shared (and indicators of what has been shared with whom) is not always intuitive., It has allowed our entire team to be using strong passwords, 2FA and avoiding the re-use of passwords., 8.0\n997, lastpass, Lucas B, Small-Business, 2019-03-06, Sharing and Collaboration needs Enhancement , - When one user shares something with another, the recipient can organize the shared item in their own folders. While my brother and I have similar organization methods, for team/family members with different methods to their madness, this seems to be very helpful.\n\n- When one user shares something with another, the recipient can accept or reject the shared item. With other solutions, acceptance is inherited if the user has access to the folder/vault. \n\n- Very secure solution with local-only encryption and strong encryption algorithms. \n\n- Sharing with Family is $4/month with LastPass including 6 users while 1Password is $5/month including up to 5 users. So if you want to save a $1/month, LastPass may be good option. \n, - Sharing is not fully integrated with all functionality. Instead it is a separate component. Sharing has to be setup and managed specifically with the Sharing Center. \n\n- In order to start sharing, you need to \u201cgenerate a sharing key\u201d. As their website says, this takes several minutes: \u201cGenerating sharing keys can take a long time (sometimes several minutes) when done via JavaScript, and your browser may become unresponsive during this process.\u201d\n\n- From the Sharing Center, you can not move items into a shared folder. Instead, you have to go into the \u201cSites\u201d, select the site and then update the \u201cfolder\u201d to be the shared folder. It is not very intuitive. \n\n- Even if you are part of a Team (family), and you have not created a Shared Folder, then you can not share an item. Instead you need to create your own shared folders. \n\n- If one user shares something with another, the other user won\u2019t be prompted of the new item (nor have have access to it) until after they refresh the page. However, refreshing the page forces user to re-authenticate. Share is not real-time. \n\n- If one user has a shared item like a note and they update the note, the change by the sharee does not get propagated and updated timely in the account of the sharer. Not a real-time solution when items get changed/updated by other users. \n, My twin brother and I are entrepreneurs. We have been working together for more than fifteen years. After ten years starting and growing our tech company in Seattle, we made a transition to follow our passion of building companies from zero (idea) to one (product/market fit). With our venture studio, we partner with entrepreneurs to build SaaS startups that hopefully become growing companies. In addition to my brother and I, we have one other employee.\n\nWith over 150 various logins with around 65% of them being shared, we needed a solution to manage logins and another secure notes (account numbers, billing details, etc.). My brother was using LastPass for a couple months as a solo individual. Since LastPass had a family plan, we decided to give it a try. \n\nIn order to onboard with LastPass all the rest of our shared logins along with my personal logs, we spent the good part of a half of a day. The main challenge we encountered was trying to understand their sharing functionality. Since the updates from one user to another are not real-time, it was extremely frustrating to use. In today\u2019s modern times of real-time collaboration, we expected when him or I would make an update, it would somewhat quickly be reflected in the other person\u2019s account. We ended up having to refresh the page to get the other\u2019s updates. Each refresh, promoted us login again so we could continue getting everything setup and organized together. Eventually, enough was enough and we explored other solutions.\n\nReview collected by and hosted on G2.com.Title for your review:Sharing and Collaboration needs Enhancement , 3.0\n998, lastpass, Haley D, Mid-Market, 2019-06-12, Good Idea but a few glitches, I like that it stores all of my passwords in one convenient location and I can access them at anytime., I dislike the fact it wipes all of your saved passwords out once implemented. , We are saving having a less safe way to keep out passwords. They are secured on LastPass., 7.0\n999, lastpass, Verified User (Anonymous), Small-Business, 2019-11-18, useful, autologin and encryption. Able to manage other users without leaving my desk., plugins resetting themselves after an update, Password management is better now, 8.0\n1000, lastpass, Amanda C, Mid-Market, 2018-04-24, LastPass Review, Have a safe place to store passwords, not having to remember multiple passwords or re-login to applications/websites each time I use them., Though it is helpful that they pop up and make it easy to quickly add a new password, they can be annoying and disruptive. Sometimes I have to check personal things at work (bank accounts etc) and I don't like it when lastpass asks if I want to add it. It is more intrusive than when Google for example asks me to add a password., Not having to remember each password for the multiple resources/vendors I utilize daily for my job., 9.0\n1001, lastpass, Verified User (Anonymous), Small-Business, 2018-07-22, Great tool, simple and easy to use, It is a exalted means to present to consumers seeing that a assured lane for them to assign top secret authorizations with us. It appears considerably supplementary qualified than enquiring them to launch more than send by e-mail, too it's exalted to move on finance too get keys pooled weeks/months before.\n, Apparently on the iPhone the LastPass app doesn't do because mine I perceive. When you exploitation it on the call up, it introductions the spots restore in the app moderately than flinging the app you're functioning on as a result it's kinda scheming that way.\n, I come to pass able to explanations for I personally, my big business, besides my customers. It would come to pass impracticable to remain them straightforward or follow in hurriedly to a ration of these explanations exclusive of LastPass., 8.0\n1002, lastpass, Verified User (Anonymous), Small-Business, 2018-04-25, Password keeper for you and your clients, 1. It has a free option\n2. The security. Passwords and access can be shared securely.\n3. All stored in one place with a master password. No tracking down all the logins and passwords all over the place., I dislike that it tries to overwrite passwords and usernames when there is more than one log in available. Sometimes it tries to autofill items that do not qualify as a username and password and can cause problems throughout a site while inputting other information. , I love that clients can securely share their passwords and take back access at any time. I never see their actual passwords. This helps streamline my workflow while remaining secure. It also helps our whole team work together on multiple clients. , 8.0\n1003, lastpass, Verified User (Anonymous), Small-Business, 2018-07-31, My go to password storage, I like that it will save passwords and generate random passwords as well in order to meet some absurd password requirements that some websites and services require. It is also easy to share the passwords with other people for the purpose of team related things., I dislike how organizations work and how an individual user is unable to remove himself from an organization unless he is an administrator himself., LastPass helps us a lot with maintaining various websites because all of the users on the company have access to all the same passwords. One does not even have to look up the passwords themselves, Chrome will insert the passwords for us., 10.0\n1004, lastpass, Justin B, Mid-Market, 2018-04-18, Indespensible tool to improve security, Makes passwords convenient enough that users stop using post-it's and \"cheat sheets\". It is much faster than having a user manually type it once or twice to get it passwords right. The option to share passwords fairly quickly with others is invaluable in my IT department. I feel very good about the company and having our data in the cloud. I feel it's very safe and near impossible for a hacker to get my encyrpted passwords that are only decrypted on my user side. We have one enterprise account that we use to be the main account and then we share it with personal accounts that are free. Some of our users we pay to upgrade to pro so they can access the passwords on their phones., Sometimes it takes an hour for a new password to sync to my phone or another PC.\nConcurrent access can leave you wondering which password is the newest., Replacing \"cheat sheets\" where passwords are accessible to anyone near the person's desk. It's also not as easy as hacker opening up a plain-text file. Users can more quickly sign in. Users reset their passwords much less often. Users are much more likely to not have a universal password., 9.0\n1005, lastpass, Verified User (Anonymous), Enterprise, 2018-07-02, This has changed my work flow, I love the Chrome Lastpass Extension. The extension makes it so much easier to find the page I need to go to and automatically logging in from the drop down., Connection errors happening sometimes which makes it annoying seeing as all my passwords are stored here. The mobile app has some issues with autofilling and saving my passowrd as well., This allows for much higher levels of security as our large office numbers require shared passwords which used to be on a piece of paper or on a website. Now the site passwords can quickly be updated and changed without the other employees needing to know what the password actually is., 10.0\n1006, lastpass, Heather R, Small-Business, 2018-01-26, Perfect for Business and Personal Use, I really like the ability to be able to securely store all (personal and business) passwords in one location. I also like the Security Challenge. It lets you know when two sites have the same password, a password hasn't been changed in an extended period of time, or if the site has recently been breached. I have slowly been going through my passwords and switching them. I really like the password generator as well. You can generate a random password (super long) and you only need to be logged into LastPass and it'll insert the login information for you so you don't have to remember the passwords. This increases your data security., The only dislike is the iPhone app has the capability to use TouchID, but mine is hit or miss. A lot of times it will make me type in the password every time. It isn't a big deal, but I created a long password so It takes me a minute to type it in. Other than that, I don't have too many issues with it. It works like it should and I feel better about my data security. , LastPass is helping to keep all of my data safe. It allows me have one less concern. It also makes it easier to keep track of both work and home passwords so I don't have to make them similar or write them down. , 10.0\n1007, lastpass, Verified User (Anonymous), Small-Business, 2018-12-01, Great password manager for home and business, Form fills, password generation, browser integration, Creates duplicate entries sometimes, doesn't always correctly fill the entries in, Password security, time savings from not putting information in repeatedly. No online storage of credit or address information. , 8.0\n1008, lastpass, Teresa K, Small-Business, 2018-01-23, Love this app!, Two things...I love that I only have to remember one password. I have hundreds of passwords as I do client work, and LastPass has made my business life so much easier! The second feature I love about LastPass is that it just works - all the time!, I find that sometimes LastPass doesn't work as well in Firefox., I am able to sign into client sites faster with LastPass, making the work I do for them faster and easier. I am also providing security to my clients by using LastPass and not storing passwords in emails, notebooks or phones. The benefit I've realized is that I can travel and never worry about forgetting a client password and this saves me so much time and worry., 10.0\n1009, lastpass, Verified User (Anonymous), Small-Business, 2018-07-25, Passwords no longer lost , I only have to remember 1 master password instead of multiple passwords. LastPass will generate unique passwords if I need, LastPass works on my computer and also on my iPhone with the app. , I have not found anything that I dislike about LastPass after using it for the past 2 years. , II no longer have to keep a spreadsheet of websites, usernames, and passwords. Passwords and information is more organized and the information can be shared with my supervisor so they can utile it also. Passwords that", "doc_id": "78ff6a18-e10d-425c-9dcd-cc7b6f151419", "embedding": null, "doc_hash": "b0d3f646de825348ce7f0874b19eebd64fb9f22e12ab170557596751d56fa8d2", "extra_info": null, "node_info": {"start": 733991, "end": 749684}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "909770d7-b474-44dd-8b3d-043fc5d465f4", "3": "04c27ad9-9071-46dd-a77d-9e008afc0b86"}, "__type__": "1"}, "04c27ad9-9071-46dd-a77d-9e008afc0b86": {"text": "LastPass and not storing passwords in emails, notebooks or phones. The benefit I've realized is that I can travel and never worry about forgetting a client password and this saves me so much time and worry., 10.0\n1009, lastpass, Verified User (Anonymous), Small-Business, 2018-07-25, Passwords no longer lost , I only have to remember 1 master password instead of multiple passwords. LastPass will generate unique passwords if I need, LastPass works on my computer and also on my iPhone with the app. , I have not found anything that I dislike about LastPass after using it for the past 2 years. , II no longer have to keep a spreadsheet of websites, usernames, and passwords. Passwords and information is more organized and the information can be shared with my supervisor so they can utile it also. Passwords that are generated cannot be easily figured out by others. , 10.0\n1010, lastpass, Jeff L, Mid-Market, 2018-04-05, Great Management, goes with you Anywhere., I truly enjoy the interface and the sharing tools in LastPass. I have found that the mobile apps are very intuitive and are simple to open and find what I need quickly. I appreciate the password generator and quick fill functions in my browser. , I find it a bit much constantly authenticating and gaining access to the app. I recognize this is necessary for the security but I find it a bit much. I wish the quick fill function would work in the browser or apps on my phone. I also dislike that it plays a backseat to the auto password tools in the Chrome browser. I constantly have my passwords autofilled and often grabbing old passwords from the browser autofill that cause confusion with the app., It has been a great tool to sync our passwords in our team. Being able to share common passwords for Credit Cards or unique apps has been a game changer. Having a tool that works in all browsers and on my phone for authentication has been fantastic., 9.0\n1011, lastpass, Eugene B, Small-Business, 2018-05-01, most convenient password storage, - All popular browsers and platforms are supported\n- Autofill in apps on Android (big time saver!)\n- Passwords sharing (+it can be done without recipient seeing a password)\n- Security challenge (helps you to score how strong are your passwords overall), An interface of secure notes (which you can use to store bank cards information) is very poorly designed and inconvenient to use. , Making sure access to web services we use is secure, and ability to share password in a team a quickly and safely., 9.0\n1012, lastpass, Verified User (Anonymous), Mid-Market, 2019-01-23, The greatest discovery, This is extremely easy to use and sync to all of your devices, It can be a difficult transition from another Password saver, keeping track of all of my passwords and making them difficult. It does all of this for you., 10.0\n1013, lastpass, Abigail D, Mid-Market, 2018-01-12, No need for handwritten password cheatsheets anymore, I used to have a very exhaustive list of usernames and passwords hidden beneath my keyboard -- obviously not the most effective (or secure) way to save this info. The worst was when I forgot to update the sheet to the most recent password; you'd get denied three times; your account would lock and then you're on hold with customer service for ten minutes trying to get in. With LastPass, you never need to write down another password again. You can rest assured knowing all your login info you handily and safely stored and accessible whenever (yes, even on your phone/tablet!) you need it. Brilliant. , Sometimes (and it's rare), my vault will list the password for my LastPass login as the password for each site in my vault. It's a bizarre and rare occurrence but can be remedied if I back out of the window and try again., My team and I take advantage of the sharing feature quite a bit. I also love that you can login to all your saved sites with one single click. The autofill feature does the rest. The secure notes feature is also super handy for storing things like important phone numbers., 10.0\n1014, lastpass, Glenn C, Small-Business, 2018-09-18, The Only Choice for Secure Password Management, Security, Cross-Platform, Cross Browser, and a great mobile App! I wouldn't recommend anything else., Better Browser Integration with iPhone but I understand that is an Apple Controlled option that won't change., Managing access to sites and data in a secure app. One of the best benefits is that the data is shareable among employees., 10.0\n1015, lastpass, Verified User (Anonymous), Enterprise, 2018-10-19, Lastpass is meh, I like how it stores passwords. That's pretty much it. Actually no, I don't like how it stores passwords, but the fact that it stores them is ok i guess., Where do I begin. It just seems lacking for a lot of features, and it's not very intuitive. It seems clunky and geared only towards websites. Not really designed to store other types of data, for routers, or personal data., We needed a place to store passwords and share them within our team. , 4.0\n1016, lastpass, Alicia T, Mid-Market, 2018-07-30, An essential tool for Enterprises, As a manager, I like that I can give my team access to our company accounts (social media log-ins etc) without having to share the actual password with them. This is also helpful when working with contractors and influencers who need temporary access to accounts., Not a huge deal, but sometimes my colleagues need to log out and in again to receive and store credentials that I've shared with them., Keeping business accounts safe, but still being able to collaborate with people both internally and externally. , 9.0\n1017, lastpass, Brett W, Small-Business, 2017-12-28, How did we survive without apps like LastPass?, Pre-lastpass, if one wanted to create a 'secure' password, you'd concoct some silly memorable phrase, using it over and over. And then someone in the Ukraine would figure it out and take over your digital life wholesale. Well, maybe just the figuring out part happened, but we know, thanks to the elevation of the former sysadmins to security officers, that passwords should never be reused, and the less memorable the better. Whereto now, then? Post-its in your desk drawer? That worked until your officemate found them and changed your tinder profile for the worse. Enter Lastpass, your one stop shopping solution to afford your digital self security and let you go wild creating accounts on every website you find. Just counted and I have 101 accounts stored in Lastpass. And I even clean up occasionally. Quite different than 101 post-its in my desk drawer., Not their fault, but the wide variety HTML/javascript implementations of account creation and login forms on websites makes it difficult for th app to always know what to do. Easy workarounds exist though. Missing is a multi-folder sharing for premium users, pretty important with anyone seeking to share with a family member, At work we improved staff security in a big way by onboarding them with the enterprise version, especially as their formerly terrible passwords (eg their dog's name and childs birthday) went by the wayside, 10.0\n1018, lastpass, Brandon M, Small-Business, 2017-12-28, Lastpass for password management, I think these days it's pretty hard not to use a password manager with the abundance of accounts we have to keep up with. I like having everything in one central spot, and the ability to generate random text passwords. Being able to keep secure notes and credit card info is nice as well., I guess the whole concept of a password manager is a security engineer's nightmare. Particularly those like LastPass that are hosted online by a 3rd party. If you feel like you cannot trust them to keep your information secure, you should probably look elsewhere. It leaves me sort of torn...It makes me more secure by helping me have different (and randomized) passwords for various accounts, but I know my data is sitting on someone else's servers. , I have the added benefit of being able to use the service on my mobile device as well. I see these features are starting to become baked into the phone operating systems now, but I still like the universal use I get out of LastPass., 8.0\n1019, lastpass, Kristi M, Small-Business, 2017-12-28, A secure place for all of your passwords, In the beginning, I was hesitant to use LastPass, however, it's turned out to be a very secure and safe way to share passwords. Working as an independent contractor, I often need access to client information. Whether it's access to their credit card for ordering or accessing email - LastPass is a really easy way to do it without having to share or give away your actual password. Last Pass allows you to store a multitude of secure information. , Sometimes, it stops working and I have to clear out my cache which can be pretty annoying. Other times, I have had issues with sharing something but usually it resolves in a few hours., Sharing passwords in a secure manner without having to see others or allow others to see your passwords. Makes it really easy to share access to sites and credit cards in just minutes. Easy to sign up and learn., 9.0\n1020, lastpass, Shane O, Small-Business, 2017-12-27, Don't try to remember all of your passwords ever again, LastPass makes it easy to not only store all of the passwords that you use online each day, but also to generate more secure passwords for added security. Too many times I've used passwords that weren't as secure or were easier to guess just for the sake of simplicity or so that they were easier to remember. , The only drawback of using LastPass is that if you need to use a public computer to login to a favorite website, it isn't easy to remember/use the stored passwords., LastPass allows for a much more secure online login experience. By generating passwords that can't be easily guessed and storing those passwords for users so that they don't have to remember them, it allows you to focus on being productive. , 9.0\n1021, lastpass, Jimmy G, Small-Business, 2018-04-10, Works great for sharing passwords, I like this so that I can set up shared passwords for my team to log into applications . I am an insurance agent and we write insurance to many different companies and for every different company we have a username and password that we have to use between three people, This doesn\u2019t do very well when there are more then two fields to Fill. You half to go in and manually fill in the last of the field, Were able to share a list of passwords MOXI on our team without having to write them down, 8.0\n1022, lastpass, Verified User (Anonymous), Small-Business, 2018-05-02, From Noob to Devotee & why you need Last Pass for client work, I love the fact that whether you are a business or just using this for personal use you can easily set it up within a few minutes. All it takes is for your to log in once, then a small little window will ask you if you want to save the log in information you just entered. \n\nWhen working in teams you simply select the sites you wish to share passwords to and share them via Invite, all while still maintaining control over the passwords and access to them, but not divulging them to the team. , There is no feature that allows you to track the time that you use each site in here. From a productivity standpoint that is the only thing missing from this platform. , Problems we're solving =Granting access to team members without comprimising password security. \nBenefits = this platform also analyzes the password strengths and frequency then provides feedback to you/your team, which leads us to develop better passwords. , 10.0\n1023, lastpass, Will W, Mid-Market, 2017-11-28, This is essential if you have multiple site logins (and who doesn't?), LastPass is one place to keep all my usernames and passwords. And I can access them from any device. Plus I can group my passwords by categories that I can create -- for business, personal, etc. Once I started using LastPass, I couldn't imagine my digital life without it. I used ProbForm previously, but prefer LastPass., Some features just don't seem to always work as expected. Like when I click the Launch button to open a saved website and automatically log in, it doesn't always fill in the username and password. But I can still view my saved username and password and then copy/paste or just type it in. It also seems fussy about working consistently across different browsers., The problem that LastPass solves is keeping track of all the logins that are needed in our current digital world. And having the ability to log in to any site where I have an account. It's one place to keep all my usernames and passwords. And I can access them from any device. Plus I can group my passwords by categories that I can create -- for business, personal, etc. I do worry about keeping all my passwords in one place (what if LastPass got hacked?!?), but until there is a better alternative, LastPass works for me., 10.0\n1024, lastpass, Verified User (Anonymous), Small-Business, 2019-01-10, browser add-on / extension is great!, increases my security by making password copy/paste so easy, I don't dislike anything, actually! It works great!, sharing passwords with other team members, 10.0\n1025, lastpass, Verified User (Anonymous), Mid-Market, 2019-11-18, Lastpass is incredible!, Cross-device and cross-account support. I can log in to my personal LastPass and use it on my work computer., Mobile lastpass is a bit wonky at times and tries to autofill for fingerprints. It also will randomly take priority over other built-in login portals so unfortunately I had to disable it., Secure password storage and sharing. This allows for people to share keys and other logins without it floating around via Slack or on post its., 10.0\n1026, lastpass, Aristide B, Small-Business, 2019-10-11, Great software, but lacks important features, I like the integration with Google Chrome which I think is essential. The autofill feature saves me a lot of time. I also find it very easy to manage my passwords, choose which one I share with my team, etc., I don't like the fact that getting Lastpass support seems almost impossible to find. I had some issues before and that made me switch., I'm able to share and keep my own passwords in one secure place. This makes it really easy to share passwords with my team or keep them for myself., 6.0\n1027, lastpass, Verified User (Anonymous), Mid-Market, 2019-08-15, Works As Advertised, Customizable templates for storing credentials. This lets us shape LastPass to meet our needs, which is a feature many of the other tools we demoed was lacking. This ended up being the key feature that set LastPass apart from its competitors for us., Some issues with managing passwords for multiple sites on the same domain, as LastPass does not differentiate between the sites by default. This can be troublesome for intranet sites.\nIt also detects some password reset tools as new passwords being entered, and prompts to save them, which can be frustrating., We were looking for a cloud-based password manager to store credentials for the IT team, without the cost of some of the more expensive solutions designed for IT., 9.0\n1028, lastpass, Robert B, Mid-Market, 2019-04-02, Integration and security for your passwords, The possibility of using it as a complement to the browser you use usually gives you greater ease of use, since by being integrated with the browser, you can store all the accounts that you use on a regular basis.\n\nLastpass also allows you to retrieve text messages, delete any existing duplication and perform extensively administrations in your accounts, perform any type of check to see if the operation is correct or there is some kind of error in any", "doc_id": "04c27ad9-9071-46dd-a77d-9e008afc0b86", "embedding": null, "doc_hash": "a1443fbfb7b2b6c8698a22e04e76b6d59efc743994d14013afeb344f91610803", "extra_info": null, "node_info": {"start": 749674, "end": 765457}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "78ff6a18-e10d-425c-9dcd-cc7b6f151419", "3": "e7986295-bb01-4d29-8f73-02cc3947bd58"}, "__type__": "1"}, "e7986295-bb01-4d29-8f73-02cc3947bd58": {"text": "some password reset tools as new passwords being entered, and prompts to save them, which can be frustrating., We were looking for a cloud-based password manager to store credentials for the IT team, without the cost of some of the more expensive solutions designed for IT., 9.0\n1028, lastpass, Robert B, Mid-Market, 2019-04-02, Integration and security for your passwords, The possibility of using it as a complement to the browser you use usually gives you greater ease of use, since by being integrated with the browser, you can store all the accounts that you use on a regular basis.\n\nLastpass also allows you to retrieve text messages, delete any existing duplication and perform extensively administrations in your accounts, perform any type of check to see if the operation is correct or there is some kind of error in any account.\n\nThe application for the mobile phone also has a great design and allows to integrate accounts within the software with ease., The only mistake I have seen during the use of this program is that when you want to change from one account to another from the same web it asks you to modify the current data, when maybe you just want to use that new account without having to put it into the system., If you have several clients, they can pass information on your accounts, without having to pass your password. That gives them much more security, since they do not have to disclose private data and they know that their accounts are safe and will not have any problem.\n\nOn the other hand, within our company we have stored many accounts of different platforms and web pages within lastpass. We can access them easily within this system and add or modify accounts whenever we want., 9.0\n1029, lastpass, Trevor B, Small-Business, 2019-08-30, Great for Complex, Secure Passwords, I work for a tech company that handles sensitive user data. I need to have secure, encrypted passwords to ensure account security. LastPass can generate passwords that I will never have to personally remember., LastPass is somewhat confusing on mobile, as Apple Keychain and LastPass tend to \"compete\" for which application gets to save the password. , LastPass made it simple to have access to all my unique passwords required both for work and my personal life., 10.0\n1030, lastpass, Verified User (Anonymous), Mid-Market, 2020-02-13, Good Password Management, Good tool to help you manage your passwords., If you use a friend's computer you have not have your account linked., Managing the mess of hundreds of passwords., 9.0\n1031, lastpass, Verified User (Anonymous), Small-Business, 2020-03-10, Solid Password Service, I like the fact that I can store all my passwords in one place. It is fairly easy to use., Cant say there\u2019s much I really dislike about the product., I have to keep track of less passwords and it keeps everything in one place for me. Convenience, security, peace of mind., 9.0\n1032, lastpass, Verified User (Anonymous), Enterprise, 2019-09-04, I love it, all my passwords safe, secure., I like almost anything about it. It is good at creating passwords remembering them and auto filing them. I never go anywhere without my lastpass. The generate password features really helps me create and store safe passwords so criminals can't steal my credentials., The autofill doesn't really work on google login pages, so that's annoying but overall it is a really good experience., I turned off autofill for google login pages and that fixed my problem. I've realised I benefit greatly from the fact I now use different and secure passwords for all my accounts., 10.0\n1033, lastpass, Verified User (Anonymous), Enterprise, 2019-08-15, Excellent solution designed with lifestyle in mind, I would say I like most the ability to link a LastPass personal account with my work account. That way, I'm not forced to log in/out constantly switching accounts in order to access credentials for my work and personal lives., Sharing folders with other users is not very efficient. I have very little visibility into who has access to a folder if I send a share invite to a group. Also, the users will only show up as having access after they have accepted the invite. I would like to be able to add users to have access to a folder without waiting on them to accept an invitation because it makes it difficult to track whether they have access and hunt down the users if they forget to accept the invitation. , We no longer have to worry about tracking our passwords or using the same password everywhere in order to make sure we don't forget the passwords., 10.0\n1034, lastpass, Verified User (Anonymous), Mid-Market, 2019-08-15, User-friendly Password Manager, LastPass helps me organize my business account usernames and passwords all in one place while having unique, strong passwords for each account. It is cloud-based, so I love being able to use it on both my mobile and desktop. I also love the Secure Notes section where I can just put random text I need to remember, but want to secure. I also appreciate the multi-factor authentication and the fact that they hook up with YubiKey is awesome. Extra security!, The browser extension has different useability than the mobile version, so sometimes I'm looking all over the place to find something (i.e. generate a password). I feel that the mobile version is more intuitive than the desktop version., How to keep passwords strong, secure, and all in one place. Not only for me, but the people I work with whose accounts or privileged information I need to safely store (i.e. my boss' credit card information). Admittedly, the setup does take some time, but once you do that, getting into your accounts is a breeze., 8.0\n1035, lastpass, Verified User (Anonymous), Small-Business, 2019-10-18, Love Last Pass, Easy to use and very convenient! My accounts are secure and I can login from any device., I wish it were a desktop app so I could use it for programs, and not just websites. I always forget my Adobe Creative Suite password, and it makes me login every time., Passwords are more secure. It's easier to set a different password for each account when you have one safe place to store them all, and don't have to remember them., 10.0\n1036, lastpass, Verified User (Anonymous), Enterprise, 2020-02-26, Met at RSA, Very friendly and informative demos. Clearly explained the services features and differences from competitors, We do not yet use last pass, so I cannot comment, Our use case would be for provided user access monitoring and provisioning., 7.0\n1037, lastpass, Verified User (Anonymous), Small-Business, 2019-11-18, HR Manager, Easy set-up, simple to use, and security. Great customer service!, Nothing comes to mind, except I had a few issues with enabling the SSO feature, but once I watched a webinar and read some training manuals - I was able to figure it out!, The reporting feature is very useful in determining who needs to make stronger passwords, eliminate duplicate passwords, etc. , 10.0\n1038, lastpass, Jorge R, Enterprise, 2019-06-11, The Last Password You Ever Going to Need, Mobile Support\nBrowser Integration\nMobile Integration\nCategorization\nAutomatic Sort of Sites\nForm Integration\nForm Detection\nPassword generation\nAutomatic addition of new password\nDetection of password modifications\nWeb Support\nCredit Cards Management\nBasic usage is free\nOption to store notes, One password to rule them all can be scary if it gets leaked\nNeeds to pay for premium features, The need to remember every single password on every site\nAdding passwords automatically on many websites\nAutomatic update of recently changed passwords, 9.0\n1039, lastpass, Verified User (Anonymous), Small-Business, 2019-05-22, Best free password manager available, I love that Lastpass' free tier offers cloud syncing across devices. I can update a password in my laptop browser, and then access it on my phone. Lastpass makes it so much easier to not have to remember passwords, and also use much more complicated and secure passwords. The passwords generator is very handy., Sometimes the icon on the input fields can be wonky and hard to make work. I think it depends on the website. And if you don't turn off the browser's built-in password manager, the two can fight with each other over who is going to autofill your password. That can get annoying., I used to keep a spreadsheet of my login information. This was one of the most frustrating and cumbersome processes. And I found myself reusing the same password so I could use my memory instead of having to open up that ugly document. Now, there's no more spreadsheet necessary, and passwords can all be unique and not memorized., 10.0\n1040, lastpass, Verified User (Anonymous), Small-Business, 2020-03-04, Making security easier, LastPass helps mitigate some of the difficult parts of being a user... complex passwords. The solution is not only more secure, but much easier than writing your passwords on post-it notes., Nothing... it works great and as advertised., Storage of complex passwords., 9.0\n1041, lastpass, Verified User (Anonymous), Small-Business, 2020-02-27, Great simple product, The user interface is very clean and easy to use. It\u2019s great for shared accounts and contractors for smbs, Everything is pretty good to be honest. Maybe the ease of MFA to access parent accounts, It is an easy and fast way to solve password fatigue and reuse, 9.0\n1042, lastpass, Verified User (Anonymous), Mid-Market, 2019-09-11, Easy enterprise password manager with many features, At our company we decided to buy Lastpass Enterprise. One of the features responsible for that is the Super Admin Password reset, so our users can have their password reset done for them. Prior to that I have been using Lastpass Personal for years very happily. Being able to link the Enterprise account with my personal account is a very good feature.\n\nHaving multiple 2FA options available is also a good feature., Though I understand the technical reasoning behind it, the super admin password reset does not always work as the user needs to have used the plugins prior to it being used. , Users (and myself) can you big random unique password per site. In modern day internet this is a must., 9.0\n1043, lastpass, Verified User (Anonymous), Mid-Market, 2020-02-13, Last pass is great, it's clean to use and really helpful with being to have it on so many devices, nothing, lastpass works great and I haven't had any complaints with it., We manage multiple email addresses and they are used for different websites. Using Lastpass makes it really easy for colleagues to manage and use those sites., 10.0\n1044, lastpass, Verified User (Anonymous), Enterprise, 2019-10-25, Solid password manager, I like being able to securely sync my password vault across multiple devices. I also appreciate the ability to store non-password items like credit card numbers, passport information, etc. in a secure manner., The Chrome extension is a little clunky but gets the job done., I rest easy knowing that none of my business accounts share the same password, and that those passwords are randomly generated and virtually unguessable., 10.0\n1045, lastpass, Verified User (Anonymous), Mid-Market, 2019-11-18, Safe and easy way to manage your passwords, How easy it is to us and how it pops up seamlessly across devices , Nothing that has to do with the service it is more having platforms keep up with the needs of their users which would mean LastPass would work easier , Using the same password often and becoming unsafe. Knowing where all of my passwords are , 10.0\n1046, lastpass, Jil T, Small-Business, 2019-07-15, Security beyond security, This is probably the most useful password manager that has plenty of features. It is very easy to use, very straightforward and organized which makes it more efficient to use even on free version. As user, I can say that my passwords are secured plus it offers two-factor authentication to increase the protection more., What I do not like about LastPass is their plans are not good to use and very disappointing for is doesn't have emergency access or item sharing which is very important in cases of emergency. Also, their support team is email-only support and not immediately available., LastPass offers wide variety of advanced password management that is inexpensive yet has a high security amount of features., 9.0\n1047, lastpass, Verified User (Anonymous), Mid-Market, 2019-12-05, Decent Functionality, Good for Team Use, It's an effective way to create and store secure passwords., I wish it worked easier with Google's auto-stored passwords. I often have trouble maneuvering around Google's mechanism to get to LastPass., It's been a good way for my team to securely share passwords we all need access to., 10.0\n1048, lastpass, Verified User (Anonymous), Small-Business, 2019-09-08, Last Pass is a Helpful Gatekeeper for Passwords, This application helps me streamline all of my passwords into one secure location. I do not have to fret or worry that I have forgotten a password...it is right there, saved and at my fingertips., I do not like that it often asks me for my Master Password. , I am solving the need to remember dozens of passwords on a daily basis., 8.0\n1049, lastpass, Tom H, Mid-Market, 2019-08-15, Quick, easy and ready in a pinch, Forced to change passwords and needed a fast password repository that would sync between multiple IOS devices. LastPass came in and saved the day and was easy to setup. , The fact that we have to use it is the only downside... otherwise I haven't found anything of issue. , - Sync between IOS devices\n- Easy to use\n- Self explanatory\n- Not convoluted , 9.0\n1050, lastpass, Ben L, Small-Business, 2020-08-27, Great for remote working, The ability to set up groups and shared folders makes it easy to put credentials where all needed parties can quickly find them., The admin portal isn't very straightforward, but that only affects me, not my users., We have a lot of HIPAA data, so keeping all our passwords in a secure location helps us protect customer PHI., 9.0\n1051, lastpass, Travis R, Mid-Market, 2020-05-27, Lastpass The Password Manager, I think the thing I like about Lastpass is that it is really easy to use and it just works., I can't say I have anything that I really don't like at the moment., I like how easy it is to create a group and your co-workers to the group and be able to share passwords with each other. Being in IT we have to share passwords or secure notes all the time and Lastpass makes that easy., 10.0\n1052, lastpass, Daniel G, Enterprise, 2020-05-28, Perfect for managing your passwords, It's low priced, safe to use, and easy to use in the long run, and this may be incorporated with both Yuhiko and FA. You're on the right track with this particular program and it's certainly well worth a try., I do not have a problem saving the password of mine with LastPass, though I am constantly concerned about what I am going to do in case I lose a chance to access the web. I believe I still have access to Mac programs, though the majority of the office uses Windows., Among the positive aspects of viewing this web site is it is extremely reassuring. I also love the point that I do not have to enter a password in the internet browser itself., 9.0\n1053, lastpass, Verified User (Anonymous), Small-Business, 2020-05-27, The concept is sound. The execution is miserable, Better than nothing. SecOps approved though the features that led to it do not work (bugs). Creates secure passwords., Too many to list. Buggy app despite being version 4.3.0. Terrible user experience (UX). Even the purchase experience was terrible as my boss was treated horribly by their sales people. Forced us to get more seats than our team needs. Only our team needs it but as we have", "doc_id": "e7986295-bb01-4d29-8f73-02cc3947bd58", "embedding": null, "doc_hash": "a84131d584424a33b8fc4610b4a47ddc1a7e8600cf2ac67af78e2fa346c88511", "extra_info": null, "node_info": {"start": 765444, "end": 781238}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "04c27ad9-9071-46dd-a77d-9e008afc0b86", "3": "e7bbb1b1-aa7b-4d73-9ac3-43a1bb7db513"}, "__type__": "1"}, "e7bbb1b1-aa7b-4d73-9ac3-43a1bb7db513": {"text": "to access the web. I believe I still have access to Mac programs, though the majority of the office uses Windows., Among the positive aspects of viewing this web site is it is extremely reassuring. I also love the point that I do not have to enter a password in the internet browser itself., 9.0\n1053, lastpass, Verified User (Anonymous), Small-Business, 2020-05-27, The concept is sound. The execution is miserable, Better than nothing. SecOps approved though the features that led to it do not work (bugs). Creates secure passwords., Too many to list. Buggy app despite being version 4.3.0. Terrible user experience (UX). Even the purchase experience was terrible as my boss was treated horribly by their sales people. Forced us to get more seats than our team needs. Only our team needs it but as we have >2000 employees who use MS domain controllers to authenticate, they demanded we buy more seats. Worse than car buying. RE: UX, it's is very click-happy. Might be due to adherence to MS modern UI though they did better with the app vs the browser extension. Seriously cannot wait to replace it., Secure vault for passwords using approved tool until a real enterprise solution is implemented., 0.0\n1054, lastpass, Frank M, Mid-Market, 2020-03-11, Secure storage for all sensitive data in one place, Its graphical interface is easy to understand, intuitive, in the left panel are organized the different sections where you can store your notes and credentials according to their purpose which can be bank accounts, notes, wifi passwords among many others. The mobile version is excellent because it allows the user to access it using their fingerprint without having to type any character, the application is synchronized throughout all your devices to have up to date your database at all times which is very useful., I dislike the the windows desktop application. It is necessary to keep it constantly updated as there are bugs that are patching in the updates the devs staff push into production. Customer support is a bit slow when establishing the first contact with the customer so it is necessary to wait a little so that they can contact you back, that is once they respond to the process running smoothly and without any problems so I have no complaints about it, Having to remember all the passwords and payments data is a very difficult and at the same time dangerous task since it encourages you to use the same credentials in all your accounts for ease and laziness reasons and so if a breach happens on one of the websites or applications that you use your credentials will end it up in a pastebin somewhere within the reach of unscrupulous eyes which could unleash a complete disaster. Having lastpass has kept me in complete peace and quiet knowing that all my information is in a safe place at all times, 8.0\n1055, lastpass, Roberto G, Enterprise, 2020-08-05, LastPass, Lastpass allows me to securely store passwords to different sites in one place. One of the advantages of lastpass is also a multi-platform, because we can get to our password safe from any device, I can't point out any flaws in the application is working correctly, Managing passwords is a tedious task, so the majority of people and businesses will not do it. As a result, most employees will receive simple, dangerous passwords. LastPass keeps everything simple, so everyone uses complex and safe passwords., 9.0\n1056, lastpass, Verified User (Anonymous), Small-Business, 2020-11-18, Robust and secured password manager, I loved this tool, it gives me a secured password manager to store all my passwords in an organized manner. The auto-fill functionality, save lots of time during login. The interface is intuitive. It has multi-platform software support, which makes it a very practical tool., The only dislike I can say is its cloud synchronization. There should be a frequency sync option to auto backup passwords., Lastpass is a secured password manager that offers me one dashboard to easily manage all of my different platform passwords. Also now I don't need to remember every password., 10.0\n1057, lastpass, Chris G, Small-Business, 2020-06-12, Save and Generate Passwords, This app will securely save passwords for every website you need to access. LastPass will generate new ultra-secure passwords that are 16 characters in length. The passwords can be shared to members of your household in case they need to access any websites they frequently enter., It makes me forget the passwords in my head so if I need a password to gain access to a website on a computer other than mine I cannot remember it., As I age, my memory isn't what it used to be, so LastPass helps me everyday by remembering what I cannot., 9.0\n1058, lastpass, Davide F, Enterprise, 2020-08-10, I love lastpass, The lastpass is simple. As well as managing my passwords securely, it also tells them to keep a password in mind every time I visit a new page., Compared to other solutions, it cannot be so easily integrated into the browser., I have precious time. Having used LastPass reduced the time I spend entering different accounts, so I have more time to focus on important tasks. I also like the sense of security that LastPass provides., 9.0\n1059, lastpass, Andrew E, Mid-Market, 2020-07-15, LastPass is a Valuable Tool for Enterprise Password Management, LastPass helps us to centrally manage all the passwords for our Qrginaztion in a secure manner. It gives us visibility and allows us to have more control over who has access to what., Trying to give folder access to multiple folders to groups at times can be a bit cumbersome., Getting logged into the various cloud systems we use has become much more simplified. Definitely saving us time and better access control., 9.0\n1060, lastpass, Francis M, Mid-Market, 2020-06-04, LastPass Review, LastPass is actually a really well designed password management platform. Also the free edition encrypts all your passwords safely. I realize that the mobile version also works well. Browser plugins are actually what makes them very valuable. Plus the capability to make use of shortcuts makes the overall feeling much better., When I began the brand new job of mine, creating LastPass was a struggle. But as soon as I experienced it, it began to work. Mobile APP is not my favorite at all. I use it primarily on the table of mine., You won't ever lose all the passwords of yours and you are going to have them at the fingertips of yours when you want them., 9.0\n1061, lastpass, Jen D, Enterprise, 2020-05-08, Central place for keeping sensitive information safe in the cloud, It is truly helping us a lot in all means. There are bundles of pros of LastPass. It is super duper easy to use. It is even helpful for those beginners that haven't used any other complicated software. I love its vast support for all preferable devices of users' choice. It keeps your valuable and sensitive information safe and secures by with its strong password management capabilities. The most interesting part of LastPass is that it helps us in storing whole passwords in the cloud. It has introduced excellent ways of securing keys too with the help of password login that has accessibility authority to the owner only. No one else can open it. Its interface is best of all. Its synchronization with other devices keeps database up to date which is further helpful for our organization., I really do not have any negative arguments about this software. I am having satisfactory experience with Lastpass. It has always proved to be useful and helpful to me., This is great software for sharing critical and important passwords. It is not only user friendly but also its cost friendly software. Its availability on all kinds of devices such as Android, Desktop and Mac is making it more popular day by day. Its free version is more than sufficient for people that want to keep their website accounts, credentials and bank notes safe and secure., 8.0\n1062, lastpass, Amy K, Enterprise, 2020-05-08, LastPass should be a must, in particular when managing critical job accounts, LastPass is an advanced development system which is really useful for the preservation and storing of both passcodes and user IDs. I will not have to remember all my secure passwords and app IDs until this program comes up with this amazing framework now. Additionally, I can conveniently supply several certificates across its plurality of strengths and functionality that render my job simpler and more comfortable in the short term., There are persistent glitches in the mobile edition for Windows which can pose any danger in the credibility of the records. You can open the code by using an incorrect username and password, but the data occurs in random words, something that would not happen, and if the login is inaccurate you will not be allowed to access it in any manner inside the program. This is indeed a problem that still occurs that wasn't resolved in the various patches they've released., LastPass has equipped our users with the ability to take care of their multifactor authentication and allows them to address problems such as old, repeated, & corrupted passwords. The Privacy Challenge is a perfect guide for having people realize what they should do to enhance their protection online., 9.0\n1063, lastpass, Kirstin H, Mid-Market, 2020-05-11, Password Manager, Generating and handling LastPass passwords is easy and efficient. The password generation choice helps you to acquire a password that satisfies all specifications, including duration and specific characters. I use the corporate app, so I can use my personal details also on my work machine by linking to my own LastPass account so I don't confuse my workers with the business., I'm really pleased with it for the time being, but because I just work with it on my desktop, my ios device program won't be able to load the seats, however it should be nice enough., Not only does LastPass save time, it also allows it easy to use multiple passwords everywhere, without trying to try and uninstall them all., 9.0\n1064, lastpass, Filipe N, Small-Business, 2020-08-31, Amazing password manager, Manage all passwords with a simple click and the auto login form., Som forms d'ont fill very well, sometimes the autologin does not work in different sites., Manage the passwords of employes, 10.0\n1065, lastpass, Kate D, Enterprise, 2020-05-06, Be more secure with LastPass, Security is a great concern of every organization and to protect your data in this technical era is much difficult. In order to get rid of unwanted threat and gain data protection we are using LastPass. This is helping us to protect our various applications and it the most trust worthy source. Through LastPass we never faced any issue about our password management. For me it is the secure platform for keeping safe my all passwords., Sometime if anyone has our necessary information or if someone new about our secret question, that could still hack our passwords, I want it, to have more strong layers of protection, especially if we are using social apps, there always remains a risk, if some new about your address., It has made easier for us to login those website which needs password requirement, and thanks to LastPass it auto fill it for us. It is very user friendly and very simple to use. It is the best password management tool which saves our login data for different application, in its clouds and we can easily search in case if we forgot about it. LastPass uses AES-256 bit encryption with PBKDF2 SHA-256, to keep your passwords secure., 9.0\n1066, lastpass, Andrew C, Mid-Market, 2020-05-05, Keep your passwords safely in the cloud with LastPass, I like LastPass since it is very useful and gives us a lot of security thanks to the fact that this application stores our passwords in the cloud. With it, we can also secure the keys with a login password, which can only be accessed by its owner. A detail with which I am delighted is that it is compatible with multiple platforms such as windows or ios or it is also compatible with Android, this makes the application quite useful., There is only one thing that causes me problems and I consider it to be a general problem since other users also present it. I have a problem with technical support to communicate, I can only communicate with them by email and, in addition, the process to solve any problem that may occur on the platform or simply clarify a question is extremely slow, I consider that a software that handles something so delicate as the keys are, you should have more efficient technical support, With LastPass I provide solutions to common security problems such as having an unsafe password or simply not being able to remember them all, since LastPass stores passwords for us and always have them within our reach, as well as suggesting strong passwords so that we are protected enough and not having any type of vulnerabilities, a quite useful software the truth, 9.0\n1067, lastpass, Sarah F, Enterprise, 2020-04-30, Powerful tool offering advanced and latest security features, I am having pretty good experience with LastPass. It safeguards the whole passwords of our organization to ensure security. It has brought much convenience in sharing passwords. It has simplified my life. It serves both purposes personally and professionally. While using this application I know my all information will be safe and secure., It keeps our organization safe form coming dangers. It is a very beneficial tool. Truly speaking I am not having any single negative comment about it. I never encountered any threatening thing on my way., It is the reliable tool for saving our passwords in the cloud which further remains secure by individual login belonging to the particular I'd of the user plus Master password. It works like stand alone desktop tool and behaves as browser extension. Now a days iOS and android offer Lastpass as an app that enables users to use this product conveniently on the mobile phones. Its free and paid version both are helpful enough., 10.0\n1068, lastpass, Pedro M, Mid-Market, 2020-06-01, Lastpass, LastPass not only stores all the passwords you make use of them on the Internet every day, but helps additionally by creating stronger passwords to boost the security of yours. I frequently use passwords which are not as easy or secure to imagine due to their memory or simplicity., The application of mobile phones appears to be improving these days, though it may be hard to evaluate., Keep the password secure. Allow temporary access without fully configuring the application., 9.0\n1069, lastpass, John T, Small-Business, 2020-09-04, Great tool to store passwords and share within a team, The ability to share passwords with my team without them having to know the password., Sometimes it is slow sharing passwords between users. Often have to refresh the lastpass vault to verify passwords were sent., Password security and sharing between team members, 10.0\n1070, lastpass, Adrian B, Enterprise, 2020-08-03, LastPass review, In my opinion, having strong passwords is the basis for proper use of the Internet in these times. I love LastPass because it enables me to control all my passwords without having to remember a millions of different combinations. I like the ability to integrate with a variety of services., I miss the easy division of passwords into corporate and private so that I can operate all from one account, Lastpass allows me to store my passwords securely, which is important for my work where I work on many platforms to which I need to log in., 9.0\n1071, lastpass, Arushi P, Mid-Market, 2020-04-27, Save your passwords in a safe place, I use LastPass for personal and corporate communication and I think it's a great tool, particularly when you're using both. It intercepts most OK login types as the center of your successful password administrator, and automatically fills in your own OK. The best thing is your business account can be paired with your personal account. And you can see your business as well as personal accounts right after you're logged in without having to go back and forth between them, and your passwords are still different., Logging in is a good feature but it works\u00a0quite slow sometimes. Often, it opens with a few clicks, often with a few clicks, it is perceived as closing. It is a nice tool with a number of", "doc_id": "e7bbb1b1-aa7b-4d73-9ac3-43a1bb7db513", "embedding": null, "doc_hash": "b703bc4911612ce64b8fcbc1536551c7a828abf6051bc2a0e0a67874cf6a72c9", "extra_info": null, "node_info": {"start": 781261, "end": 797670}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "e7986295-bb01-4d29-8f73-02cc3947bd58", "3": "ad9708ae-a85d-4e5b-857c-8fbecd0243e2"}, "__type__": "1"}, "ad9708ae-a85d-4e5b-857c-8fbecd0243e2": {"text": "platforms to which I need to log in., 9.0\n1071, lastpass, Arushi P, Mid-Market, 2020-04-27, Save your passwords in a safe place, I use LastPass for personal and corporate communication and I think it's a great tool, particularly when you're using both. It intercepts most OK login types as the center of your successful password administrator, and automatically fills in your own OK. The best thing is your business account can be paired with your personal account. And you can see your business as well as personal accounts right after you're logged in without having to go back and forth between them, and your passwords are still different., Logging in is a good feature but it works\u00a0quite slow sometimes. Often, it opens with a few clicks, often with a few clicks, it is perceived as closing. It is a nice tool with a number of disadvantages., The greatest value, says Edsell, is usability. Everywhere, no matter what app I use, I could still access LP, and I make sure my key password is up-to-date, secure and long-lasting, so it's two birds with one stone., 9.0\n1072, lastpass, Sara B, Enterprise, 2020-04-19, Powerful locker for my passwords, LastPass is a powerful password management tool that protects our passwords and information securely. It helps you to access your employees Pc without interrupting their work flow. It is the top most password manager app. You can enjoy this worthy tool just in four dollars per month. LastPass is very user friendly. I am happy with its all features and functions., LastPass mostly fill your password filed automatically for you, on some websites and that is very amazing, however some websites need to fill the passwords manually so you may find it dualistic in its approach. Moreover it is going perfect., It works for every web browser type and support all window versions, desktops, iphones, I pads and your android mobiles. In any case if you have forgotten your password it helps you to set a new one, after following few steps. It also sends you password reminders; you can also have an option of adding your personal cell numbers., 10.0\n1073, lastpass, Leonard H, Enterprise, 2020-04-18, The right storage app for all your business accounts, Mobile version is great because it allows the users to access it using their fingerprint without having to type anything, the app is synchronized throughout all your devices and due to this being able to have up to date your database of credentials at all times which is very useful. Its GUI is easy to use, intuitive, at the left panel are organized the different elements where you can store your notes and creds according to their purpose, like social media accounts, bank accounts, notes, WiFi passwords, etc, Customer support is a slow when establishing that first contact with their staff so it is necessary to have a little of patience so they can answer you back, once they reach out the process runs smooth without any problems so I have no complaints about it. The windows desktop application needs to be constantly updated due to the appear of some bugs, so this is neccesary to patch those and to the devs staff push the update into production., I have used Lastpass for professional and personal use, I store passwords and notes securely without having to memorize each of the account credentials I manage. The software have the ability to store my notes and passwords on a centralized platform, where it allows me to access my accounts quickly and without having to re-enter keys over and over again. Lastpass has helped me to management my notes that I need to have protected at all times, and at the same time they are accessible on any device I use., 8.0\n1074, lastpass, Aung Thu H, Small-Business, 2020-08-28, Easy to use and essential tool for every business, simple and secure and easy to use and collaborate as a team, managing duplicate logins and url variations of same website. lack of multiple account sign in instead of linking between business and personal account. lack of automation features, security and collaboration simple and easy to use, 9.0\n1075, lastpass, L U K E G, Small-Business, 2020-05-28, Great Product but overpriced & inferior to other market players, LastPass Enterprise is a great all-rounder: feature-rich; easy to use for normal users, even if they're not tech-savvy (but difficult and confusing for Admin users); and has a really intuitive auto-fill. It has a few advanced features \u2013 emergency access, secure storage (that divided by secure documents), and MFA that cost extra. It utilizes AES-256 encryption to secure your data, transferred over SSL encryption but doesn\u2019t actually store your information itself, meaning that only you (and anyone else you care to share it with) have access to your master password., Not as many features as some of its closest rivals such as Dashlane and DUO. The LastPass Enterprise paid plans are relatively reasonable when compared to total operating costs but and much more pricey than free/close to free options like BitWarden. Also, LastPass has a no-refund policy, so if you change your mind, you\u2019ve lost your money., Logging in to LastPass can be a difficult process if using authenticator apps and can get very complex since you can set up as many two-factor authentication options as you like from the vault\u2019s account settings menu. Admin interface is Confusing and time-wasting compared to other high-performing, popular password managers on the market., 3.0\n1076, lastpass, Wilberto S, Mid-Market, 2020-05-27, The Best Password Manager out There, I think that LogMeIn LastPass technical support was very knowledgeable and extremely helpful. When evaluating the product, LastPass speedy responses and support were critical for my decision to purchase this application. Also, the sales team was great in helping and leading in the right direction when needed. LastPass what named one of the best password managers out there with a lot of good reviews., Sometimes the instructions or how to's can be confusing. Better update process and browser extension support. I have been having issues enabling LastPass extension on several browsers such as MS Edge Chromium and Google Chrome. Also, I would like to LastPass provide a tool that allows us to deploy the browser extension instead of downloading it. In addition, I would like LastPass Management console to provide some kind of monitoring tool that will allow administrators to know what versions of LastPass extensions users are using, and provide an option to update remotely., I am solving the issue we have with password management and control. We provide users with a tool that allow them to manage only one password, especially IT Administrators that need to remember several passwords and share them., 10.0\n1077, lastpass, Jaysen S, Mid-Market, 2020-05-27, LastPass Is a must have for Enterprise password management, The ability for departments or groups to create and maintain a common password list. there are certain types of account where individual credentials are still not feasible. in these cases teams need tom maintain a password list. LastPass allows you to manage these list inline as part of every ones workflow. one team member makes a change and all have access., Sometimes auto-fill fails. This is not LastPasses fault it is due to the way some websites are designed. This causes an increase call volume to the help desk as users adopt and become dependent on this otherwise great feature., Latpass allows us to enforce strong an unique passwords according to security policies and guidelines. the enterprise dashboard is helpful in gaining insight into our organizations overall password health., 8.0\n1078, lastpass, Verified User (Anonymous), Small-Business, 2021-05-26, The only password keeper that I\u2019ve used so far, Easy to manage passwords through plugging in browser., Difficulty in account recovery with enabled 2MF when phone device Is lost., Use random complicated pass for websites with no worry about memorizing them.\n\nEasy to categorize passwords, 9.0\n1079, lastpass, Tom J, Mid-Market, 2020-08-09, Creation and management of passwords for the company., The commercial solutions offered by Lastpass help teams and companies a lot to take control of their password practices, I like their functionalities since it has a management for one organized in alphabetical order, for the occasion of any modification of any private category option, mentioning that all its tasks are very simple, making it very flexible when working on any platform, highlighting that valid and personal accesses are stored in a totally secure way, making it my favorite backup software., The version of the application for smartphones has problems depending on the device you use, in abbreviated terms we can highlight that the updates are imposed and run automatically once integrated into the platform, which leads to slow processes, delaying the progress of the I work to a great extent, mentioning that docking with the default browsers on your computer is a big challenge as most are not supported., Lastpass is used in our company by all the departments that we have internally on different topics each, since it provides better security features, we use it mainly to store passwords for different servers that have high-level accounts as administrator in which need to log in, this software optimizes the internal version control process in our company, and at the same time provides great certainty., 9.0\n1080, lastpass, Chris J, Small-Business, 2020-08-12, I'm a big fan of LastPass and wonder how people still don't use a password manager., My favorite thing is their most basic function of remembering passwords of complexity and accessing them with just one master password., Nothing really. They use to keep increasing their cost, but then made a really great free offering that I have used for the last two or three years., I have a big family and also work as an IT admin for a few different places. I could not keep up with all of the security accesses without this tool. The second most used item is the encryption of notes - huge fan., 10.0\n1081, lastpass, William C, Mid-Market, 2020-09-12, Great product for SMBs (i.e. less than 500 passwords). Unusable for Enterprise (~5,000+ passwords), Excellent product if you have under 500 passwords that your company needs to securely share and restrict access based on department and role., Unfortunately, at ~5,000 passwords using ~100 folders, LastPass completely fails and takes minutes to load the results of a password search or sometimes completely crashes. We see these crashes and unusable load time across ~300 PC endpoints as this is a companywide issue and not an issue with a couple of individual users., Attempting to use LastPass for companywide password security based on role and department needed access, 0.0\n1082, lastpass, Ariel G, Mid-Market, 2020-07-27, LastPass, From one side, I think the most important advantage of LastPass is the fact that my pass are stable and the shape is filled automatically when I want it. I'm not worried about security or password syncing between devices. Filling in the form is quick and easy. Moreover, in case of emergency, I can get my personal tools and website in my apartment, sharing data between multiple devices., There aren't a lot of things that don't get me into lastpass., That's fine! This is a great free tool that will help you save a lot of pain and headaches if you try to remember your unique passwords. In addition, it allows you to get more safe passwords, as you do not need to trying to include them all., 9.0\n1083, lastpass, Richard M, Mid-Market, 2020-05-06, Strong storage for private passwords and payments information, Navigation between all its functions is quite fluid, the transition between windows and views is very fast so it gives the feeling of being a software which is very well developed and structured along its entire features. The free version is more than enough for regular users who need to securely their credentials, website accounts and everyday app's private details, so anything you want to be kept private can be stored inside Lastpass. Support from different platforms makes this software very flexible and productive, The presence of recurrent vulnerabilities in the plugins, specifically in Chrome, thus generating a real threat in the availability and integrity of the costumer data. The login page on the web browser sometimes have a excessive loading time and even there are times that it does not load at all. Bugs within desktop applications that can mean in the harvest of your data if an attacker gain physical access to your computer., Keeping all kinds of private information that is of high importance safe is one of the great benefits that Lastpass has implemented throughout its incorporation into the company, in addition to the fact that it can hide common files in the company version, which is used in wide part of the office departments., 9.0\n1084, lastpass, Efthimios K, Small-Business, 2021-02-28, LastPass or an Alternative?, The ability to have an Online Authentication app on my phone with a fingerprint option, Sync only on 1 device as of March 2021 ., This is a password manager which utilizes all the passwords from ehatever source to be accounted., 7.0\n1085, lastpass, Shakeir A, Mid-Market, 2020-08-07, LastPass, The last pass is very simple. Apart from the fact that I handle my passwords in a protected way, it also makes me remind you to give a password every time I go to a new page., There is nothing I do not like about Lastpass., Using LastPass, I invest less time in getting to different accounts, so I have much more time to focus on the tasks that are important. I also really love the sense of security that LastPass offers., 9.0\n1086, lastpass, Doug S, Small-Business, 2022-08-18, LastPass has gone to the dark side. Avoid this company., Up until recently, it was powerful and free. That's over. Company is twisting arms to make money., Extremely poor, unresponsive customer service. Disrespectful and deceptive., We used it for password management, but now we are changing to another company as quickly as possible., 0.0\n1087, lastpass, Sara B, Enterprise, 2020-09-02, slogans on everything, It's really simple to exchange passwords. I usually store the passwords of mine within Chrome, but since I discovered the previous password, I keep it there, and that is quite awesome when I wish to discuss a page with somebody. I can readily share by LastPass, and they will not see the password of mine., I do not like the pop up window which will come up each time I go to the website., Sharing pass is the biggest problem of mine. It enable me to talk about without revealing the password of mine., 9.0\n1088, lastpass, Unai G, Small-Business, 2020-07-13, One if the best and easiest solution to store sensitive data in secured way, Password manager nowadays is a blessing since I use Lastpass I am not afraid that someone can access my services by having a strong, unique password for each platform., I think it's a restriction of the browser plugin that doesn't allow using this function, but I think the situation will changed in the future with the emergence of this API., See chapter \"How to do it better\". Another case of use: I make a public folder for every staff member, which can only be accessed by computer scientists and that individual. This allows me to create a new account for a new member of staff with a secure password, and they just have to log in with their main password to start., 9.0\n1089, lastpass, Verified User (Anonymous), Small-Business, 2020-07-27, Great application for managing secured password sharing, LastPass is a reliable app for managing the sharing (and un-sharing) of passwords with other users. It's a must have for keeping track of use and monitoring log in activity. It's also great that it has a built in authenticator for using 2 factor authenticatiin., The app can be a bit buggy at times, but those are minor quirks related to the UI, and not the usability f the password sharing feature. I also do not like that the phone app doesn't \"remember\" the emails of previously shared users, requiring you to enter them each time (instead of auto suggest)., Managing shared access to accounts can be a hassle, especially when you don't want to expose your", "doc_id": "ad9708ae-a85d-4e5b-857c-8fbecd0243e2", "embedding": null, "doc_hash": "a96d5daa5eb76cfe3f366e6f5cbe7ce3cb1ca8182849f595bacbeecbb4804f21", "extra_info": null, "node_info": {"start": 797654, "end": 814018}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "e7bbb1b1-aa7b-4d73-9ac3-43a1bb7db513", "3": "dea7e0d1-52e1-4818-b54e-521f33649b75"}, "__type__": "1"}, "dea7e0d1-52e1-4818-b54e-521f33649b75": {"text": "to start., 9.0\n1089, lastpass, Verified User (Anonymous), Small-Business, 2020-07-27, Great application for managing secured password sharing, LastPass is a reliable app for managing the sharing (and un-sharing) of passwords with other users. It's a must have for keeping track of use and monitoring log in activity. It's also great that it has a built in authenticator for using 2 factor authenticatiin., The app can be a bit buggy at times, but those are minor quirks related to the UI, and not the usability f the password sharing feature. I also do not like that the phone app doesn't \"remember\" the emails of previously shared users, requiring you to enter them each time (instead of auto suggest)., Managing shared access to accounts can be a hassle, especially when you don't want to expose your password., 10.0\n1090, lastpass, Dave L, Small-Business, 2020-08-27, Super simply password coordination for teams, LastPass shared folders are a godsend and solve the issue of shared spreadsheets that contain passwords, or duplicate accounts or universal passwords (all bad things)., I wish there was the ability to share passwords that are in a shared folder with additional individuals or in multiple shared folders. Right now you either have to create a bunch of very specific shared folders (like one for marketing, one for sales and for one sales & marketing shared items) or duplicate passwords., Better password security for shared services. Password auditing., 9.0\n1091, lastpass, Verified User (Anonymous), Mid-Market, 2020-11-11, Makes life easier, LastPass makes it simple to log in to my many many different accounts while giving me peace of mind knowing they are still secure., Every once in a while it will pull in duplicate email addresses., I am able to easily sign in to my various accounts/platforms without having to memorize several complicated passwords - just one click of a button and I'm in!, 9.0\n1092, lastpass, Oladapo A, Small-Business, 2020-07-08, LastPass, I like LastPass and I love to hold all the passwords of mine in one spot and have super secured It will help to produce a password. I use exactly the same passwords and usernames on numerous sites that many folks use. With LastPass you just have to understand one password. This's great, which means you are able to have access to various other passwords. Additionally, it enables you to sort the page by type., New users may have trouble supporting 1Password at first, but it is a matter of getting used to it, I don't have to worry about inventing new passwords or maybe remembering many. I can easily access my accounts and save important files., 9.0\n1093, lastpass, Alitia K, Small-Business, 2020-07-21, Easy, Secure, Great App for Passwords, Only having to remember 1 password. It's so simple, and it is a record of all of my websites, too! I can't think of an easier way to keep things safe., Just a little busy in layout, but If I can search, I find what I need., Used for work. When I left the job, It made transition SO EASY.I'm also teaching it to my mother, so when it is time for me to take over her paperwork, I have access.It helps to keep work and personal items separate. I can go through the list, and delete what I need to., 9.0\n1094, lastpass, Elisabeth T, Mid-Market, 2020-04-14, Enterprise type password manager, The vast support it has for different devices and platforms making lastpass available on your preferred device or environment and thanks to this please the various tastes that has each individual user. The navigation between its functions is quite fluid, the movement between windows and views is fast and efficient so it gives the feeling of being an application that is very well developed and structured along its entire functionalities. The free version is more than enough for users who need to securely store bank notes and credentials, website accounts and everyday applications private details., One of the main weaknesses that the application has had are the vulnerabilities they have had in their plugins that has made private information leaked from the users, this has raised many concerns on the part of lastpass customers until the point of choosing other password manager software. This is the main weakness lastpass has been able to cope over time, implementing new, safer and more reliable security systems., The need to manage common passwords for sensitive information in our department became an important fact and a powerful enterprise software and a reliable vendor was necessary. LogMeIn is a high quality company and its password management software was the icing on the cake., 9.0\n1095, lastpass, all videos M C Mukul C, Small-Business, 2020-04-14, Helping us to share critical passwords, C.Creative HeadSmall-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerReview source: OrganicApr 14, 2020\"Helping us to share critical passwords\"Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemov, ul C.Creative HeadSmall-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerReview source: OrganicApr 14, 2020\"Helping us to share critical passwords\"Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo, .)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerReview source: OrganicApr 14, 2020\"Helping us to share critical passwords\"Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo, 8.0\n1096, lastpass, Joan M, Small-Business, 2021-03-01, After 10 Years - No More, In the past - able to use it seamlessly on any device, No longer able to use seamlessly. Price increase., Secure, individual passwords, 0.0\n1097, lastpass, Verified User (Anonymous), Mid-Market, 2020-08-27, Great Products but something is missing, I like how Admin can manage other internal users via its Admin Console and it does tell use or adaptation rate. We are not using SSO for this app but there seem to be a KB article out there to install or implement. The support is outstanding but takes a while to get hold of them., The addin gets funky and we will have to logout of the session and then log back in for many users in our firm. We talked to its tech support but they said it happens and we just have to re-login to resolve this issue. This issue happens so randomly and we just couldnt recreate as its tech support request, We were trying to solve an issue with passwords being used for other locations and this software does eliminate this issue. The security test within the app is also neat as well., 9.0\n1098, lastpass, Verified User (Anonymous), Mid-Market, 2020-06-11, LastPass has greatly helped our IT Team, Our team is small and we all wear many hats. The ability for our admins to share critical passwords has saved us in critical situations. Plus, LastPass is easy to use, works with nearly every program and webform. It greatly simplifies the effort of tracking passwords and it helps to eliminate security risks such as duplicate passwords., I found having two different logins to the same site can confuse it...even when you choose the password entry you want from its list. Fortunately, this only exists in one case for me. I also find that it's reminder that I have duplicate passwords is a bit annoying at times...which is probably by design., We had trouble keeping up with password changes and LastPass allows us to do a much better job of this. No written-down passwords lost on a desk somewhere or visible to someone who should not know the password. Changes to passwords are immediately available to everyone who has access to that password. Much easier to manage all of the passwords that we have to know and all in one place., 9.0\n1099, lastpass, Gabriela H, Mid-Market, 2020-03-19, The best password saver application in the market, LastPass is wonderful; this application stores our passwords in the cloud. With it, we can also secure the keys with a password login, which can only be accessed by their owner. A detail that I am delighted with is that it is fully expanded on all major devices today. We can find it on mobile phones, whether they are \"Android or IOS\" and also on PC operating systems, making it possible to have my passwords anywhere. A perfect facilitator in the field of security that every user currently needs., I have 2 problems that bother me a lot, and it is not only me but also regular complaints with the community. I have a problem with technical support to communicate, I can only communicate with them via email, and also, they are very slow to solve any problem I have. LastPass has a \"Master Key\", I forgot my password and the only way to solve that problem is to contact support, I had to wait a long time to solve that detail, very poor service., From a personal point of view, I can say that it is worth it in every way. This software is rare to find and this one is very good at what it does. I note that these types of applications are difficult to understand, but LastPass has done a good job. The technical team has taken care of improving the interface to make it very intuitive, and that feature is very useful because it tries to satisfy all users, whether new or veteran, using the application. One of the points that have hooked me to this application is its prices and plans with what we have. We can use it personally and be a freemium / free user or we can choose to use it for business. This is a beneficial point, because we can use it personally and we do not have charges, and it covers all our demands. LastPass provides affordable and affordable prices for work groups or companies for more massive uses, perfectly goes hand in hand with good prices., 8.0\n1100, lastpass, Verified User (Anonymous), Enterprise, 2019-11-19, Great solution for protecting all of your secrets, It's easy to use and integrates with the web browser and mobile apps seamlessly.\nThe ability to link personal accounts with a work account and have LastPass automatically determine which one to store passwords in is a real time saver., Sometimes it can take a while to sync changes in shared folders to other people, occasionally needing to clear cache manually or logout/login to get the updated secrets., The ability to have a single strong password with 2FA and then abstract away all the other passwords so they are completely random and regularly changed.\nParticularly useful when having to share credentials amongst a team., 10.0\n1101, lastpass, Verified User (Anonymous), Mid-Market, 2019-08-16, Lastpass is a must have, I like being able to securely store my team's passwords in a centralized, secure repository. Everyone can access them and this eliminates insecure communication mechanisms. I also like that I can tailor certain folders to groups of users. This lets me deliver what needs to be shared and to lock down what doesn't, The integration between personal and enterprise accounts is pretty clunky. I would like to see a more definitive experience where a user knows which account they are saving a password. The mobile app tends to lag behind the browser based extension in regards to syncing new passwords. It will eventually catch up but it has been frustrating in the past. Another issue with the IOS mobile application is that the integrated experience (for autofill) seems to cache passwords. This results in a problem with new passwords not showing up for a considerable amount of time. This is much more of an annoyance than anything., Better team collaboration and security. Benefits are that I just don't have to worry about passwords getting out there. Additionally, I can choose which folders I share to which users. This allows me to lock down things to the appropriate people/roles and protect the folders that we need to keep close to the vest., 10.0\n1102, lastpass, Verified User (Anonymous), Small-Business, 2019-08-15, Great product, but sharing is tricky and I wish there was better back-up multi-factor options, For most things, LP is easy to use, powerful, and well designed. Enterprise features are good, value is solid. Support for much more secure password procedures than people use on their own is critical, and your model is very good. , Sharing is not intuitive. We migrated to enterprise from individual accounts and haven't found sharing intuitive, and have had trouble with non-updating shared passwords, accidentally overwritten and deleted shared passwords, and difficulty configuring shared folders. On a less critical note, MFA has a couple things I don't like, primarily around a stolen/lost phone: If I have MFA enabled with LP Authenticator on my phone and someone steals my phone and then tries to access LP on my phone, the Authentication still goes to my phone, so that unless I have fingerprint authentication turned on MFA isn't helping. If my phone is lost, I can't use a Yubi key as my back-up authentication, just messaging to my lost phone. And having messaging be the back-up MFA is a point of weakness, since it is the least secure MFA., It definitely improves employee password practices. When it works, password sharing is great. Having the free version means that enterprise users are motivated to set up personal accounts, too, and to recommend LP to friends., 8.0\n1103, lastpass, Verified User (Anonymous), Mid-Market, 2019-08-15, The last password you'll ever need..., It works across platforms and is a big help on mobile devices. The fact that items like credit cards, wireless access point passwords, and other sensitive data can be stored and easily and readily form-filled is a tremendous positive. I love using LastPass enterprise so much that I have referred several companies to it in the last couple years. I have personally be using it since approximately 2013 from when I was introduced to it from a former employer. Back then, Enterprise, Teams, or Families wasn't even an option. I believe there was only the \"free\" and \"premium\" versions to use and the price was well under $10/user/year. (That's saying something as the price is now ~$24/user/year) I also got my wife to rely on it every day and have for a couple years now. We're using the LP Families., It seems the Authenticator app only allows for the one-tap on one account. I have personal and enterprise. Only the enterprise works this way. Otherwise I have to use the text code., Keeping company and personal information secured the way it should be. Drastically streamlines the day-to-day logging into multiple sites., 10.0\n1104, lastpass, Henry B, Mid-Market, 2019-05-30, A good way to manage your passwords, I like the versatility of this system, because it allows me to have at hand each of the passwords that I use in my applications without having to remember them all, and in a fast and simple way without any concern. I can use this system wherever I go because it allows me to have it on my device and in turn count on my passwords 24 hours a day, 365 days a week.\n\nIf necessary I can share the passwords of my applications with other people without them knowing or coming to know what the password is, this is achieved by installing the corresponding extension in my browser.\n\nThis system is amazing because with it I can have my own password vault without fear of being hacked, thanks to its security system which is one of the safest in the world. I can also install more layers of security in case I forget my password., I really have not had any problems storing all my passwords and I have not had any major errors., Using this system has been very helpful in my company, since it has facilitated the management of many applications without the fear of knowing my passwords. I have also", "doc_id": "dea7e0d1-52e1-4818-b54e-521f33649b75", "embedding": null, "doc_hash": "d2fa50d41848bd9737f92c75bb55d67f91ebd9128d72308b0d8d78b544c9ee07", "extra_info": null, "node_info": {"start": 814037, "end": 829834}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "ad9708ae-a85d-4e5b-857c-8fbecd0243e2", "3": "2e3fc063-2a99-4af1-a079-12ebd15f781f"}, "__type__": "1"}, "2e3fc063-2a99-4af1-a079-12ebd15f781f": {"text": "I go because it allows me to have it on my device and in turn count on my passwords 24 hours a day, 365 days a week.\n\nIf necessary I can share the passwords of my applications with other people without them knowing or coming to know what the password is, this is achieved by installing the corresponding extension in my browser.\n\nThis system is amazing because with it I can have my own password vault without fear of being hacked, thanks to its security system which is one of the safest in the world. I can also install more layers of security in case I forget my password., I really have not had any problems storing all my passwords and I have not had any major errors., Using this system has been very helpful in my company, since it has facilitated the management of many applications without the fear of knowing my passwords. I have also been able to create random passwords that are in turn different from the ones I used to create previously. Also for me it has been very helpful because it avoids worries and saves me a lot of time since I do not have to be remembering my passwords.\n\nWorking safely and without fear of being hacked today is a tremendous benefit that only Lastpass has been able to give to my company and me as a person., 10.0\n1105, lastpass, Verified User (Anonymous), Small-Business, 2019-12-18, Good Overall Experience, Remembering passwords is a full-time job these days. Every website requires such and they all have slightly different requirements so it is hard to keep up w/ them along with having to update them routinely. This helps streamline this process., When I have to do a second validation after entering the password for a website it wants to always update to the validation being entered. It would be nice to have it retain that information too., Makes it easier to keep up with logins and passwords personally, 10.0\n1106, lastpass, Verified User (Anonymous), Enterprise, 2019-11-18, A great product!, As an end user LastPass is a great product to ensure no password reuse and reducing the risk of a breach of one service affecting your accounts at other services. The ability for groups to share passwords and information is also extremely helpful., Mixing business and personal accounts and access. It can be done and I need to research this more but for now I keep them separate for my sanity. , Reduce password reuse on 3rd party sites that don't supposed our enterprise SSO. Also enable departments to use LastPass as a password store for sharing passwords for shared accounts., 10.0\n1107, lastpass, Craig C, Mid-Market, 2019-12-23, Share Passwords Securely, Our organization has many departments that create accounts for other departments. Lastpass allows us to securely pass credential around., We are very satisfied with LastPass, I wouldn't change anything., Better credential management and security., 8.0\n1108, lastpass, Eva G, Mid-Market, 2019-08-01, LastPass is the best key manager, LastPass is just great, it reminds me in a safe and highly encrypted place my passwords of all my websites. It is a tool that allows me to have my access credentials in the cloud, also allows me to synchronize the backup on a personal computer for greater security. LastPass offers the best encryption and is a very simple tool, very easy to use and with great storage for many passwords. With LastPass I can access all my synchronized devices without any delay which improves my access time to the primary services in the company, LastPass also offers me the option of filling out forms which is very useful for me because I usually have to fill many lists In a work day., Perhaps a disadvantage that I get to LastPass is that I need to install it on all the devices that I need to use for its operation, this in itself is not a very big impediment but something that deserves consideration. Another aspect is that it has no offline application that allows me to administer passwords locally on my computer., With LastPass I manage all the business passwords of our available web services, it allows me to have the primary credentials of my work in a secure and centralized place, strongly encrypted and with double authentication. LastPass also offers me a great password generator suitable for my use in this regard., 10.0\n1109, lastpass, Eric K, Mid-Market, 2019-07-31, Excellent software for security purposes, Security of your online accounts can be crucial for protecting your privacy in all ways. Passwords act as basic protection for your data\u2019s confidentiality so it should be available and unique only to you. This software allows you to manage all the passwords of your multiple websites. Only you have you remember your master password to access all of them. You can easily secure your online presence by using this software. You can say it as an amazing tool for security. This is a cloud based password management tool. This software van stores your website management information., This software is outstanding and useful in all ways. It has become satisfactory software for all of its users, because of its outstanding features and useful tools. But there are some issues; auto fill function of this software can be confusing for its new users., This software offers solutions to help teams and businesses or workplaces, by taking control of their management identity. Standard version of this software comes with an interface of web also includes plug ins to various web apps and browsers for many smart phones. This software also includes support for bookmark lists. All the basic features of LastPass is serving great, 9.0\n1110, lastpass, Verified User (Anonymous), Small-Business, 2019-08-15, LastPass has helped my company become more efficient and secure, Love how easy it was for my team to start using this. We went from an organization that used post-it notes for passwords to an organization that can share secure, safe generated passwords easily and electronically. Well worth the price. , The form fills and the dashboard can sometime be confusing and generally not intuitive. I am especially frustrated by the autofill occasionally. For example, many companies used ShareFile and I have a separate account and password with each, but lastpass doesn't recognize that. While it is a sharefile URL there is a big difference between companies. small hiccups make it less fun to work with. , I feel much better about the IT-security and database health of my company. For the money, this was by far the best choice for my small team. , 9.0\n1111, lastpass, Edward C, Mid-Market, 2019-05-09, An excellent system to manage all your keys, With LastPass you can manage all your passwords for a very low price, but if you do not have many passwords, you can use the free version that offers good protection. It can be used from your preferred browser by using an extension or download it to your mobile device.\n\nI love the 256-bit encryption system that has this software because it gives me a lot of security, something that other applications can not. With LastPass you can periodically perform audits of the keys and thus eliminate the keys that are duplicated. In case you forget a password, you can recover it through a text message received by your mobile device.\n\nAlready in your browser this system will be able to load your password automatically in your website just in the assigned field. You can also activate the option to autollenar the different forms of your web pages., I have a lot of time using this system and so far I have no complaint against this application, it is very good, and it has been very useful for my business, I believe that this system surpasses all its competitors., It has been very beneficial to have LastPass because it gives us security and possibility to increase the efficiency of our business, in case of problems, your technical support team provide excellent assistance, they are quick to answer and very professional., 10.0\n1112, lastpass, Verified User (Anonymous), Mid-Market, 2019-11-09, I don't know what I did before this!, All you have to do is remember your 1 master password. You save your password and you can send the log in to other people, and they can use it, but if they do, they can't see your log in. Great for companies like mine where 20 of us share it. , I can't seem to get the mobile app to work right, and you need the desktop add on to get it work. Also, someone quit in our office and we can't get in. Support couldn't help us. , Passwords after people leave are gone. , 10.0\n1113, lastpass, Verified User (Anonymous), Mid-Market, 2019-08-15, Poor support, poor product experience, I like that it stores our passwords and allows administration through enterprise policies., It stores passwords for subdomains with the main domain's name, so passwords for each subdomain overwrite each other. We had a customer support manager CSM but he never helped us resolve our issues, and support was not helpful either., Storing more complicated passwords, and in a more secure way. When it works, at least., 2.0\n1114, lastpass, Silvia F, Mid-Market, 2019-07-18, LastPass is the best securing management software. , LastPass software provide always secure password management for the consumers and the businesses. The great advantage of this software is that it really helps to track of all my passwords for various sites. LastPass security is extremely very high that\u2019s why it always provides the best secure password service. All our accounts now have extremely long secure password and that why we do not need to remember the password. By using this software searching for the passwords is extremely so easy to use. Moreover, it has the outstanding features such as we can quickly create complex, secure password and store and organize them in a more efficient way. , The one obvious difficulty that we faced is that there is specific selection to generate new passwords to replace an exciting one on some and not others. Sometimes some preferences are saved in the extensions, but not in your account preferences. When issues create to reporting support then it usually takes a long time to get them fixed. But otherwise it is very secure software for supporting all my passwords in a more efficient way. , LastPass software always provide the secure password management for the consumers and the businesses. By using this software searching for the password is extremely so easy to use. The great advantage of this software is that it really helps to track all my passwords for the various sites. All my accounts now have extremely long secure password and the great opportunity is that we do not need to remember the password. I would recommend this software because the LastPass is the best securing passwords management software. , 10.0\n1115, lastpass, Verified User (Anonymous), Small-Business, 2020-02-26, A godsend, LastPass is unbelievably good. The ability to share passwords with others and that it integrates with iOS are features that put it over the top., The \u201cnever URL\u201d feature to prevent LastPass from auto-filling on a given site is a little clunky., Our employees no longer re-use passwords and always use ridiculously strong ones because they don\u2019t have to type them in!, 10.0\n1116, lastpass, Verified User (Anonymous), Small-Business, 2020-05-27, Top Notch!, The seamless integration between Azure and LastPass, Nothing everything worked as it was supposed to., Controlling employee access to organization applications and requiring a long secure user password (lastpass to auto-generate), 10.0\n1117, lastpass, Chris C, Small-Business, 2020-03-13, Good modern password manager, It increases my overall security and encourages good security practices., Monthly subscription pricing is an annoying trend of many software tools., Improved personal security practics, 8.0\n1118, lastpass, David A, Small-Business, 2019-10-24, Make me more efficient and secure, Being able to sign on to any computer in my office and with Google sync and OneDrive they look and act identically., When whatever new site you are creating a password does not allow LastPass to capture the login info., Just remembering to reinput the user ID and password for new sites if needed. See above., 9.0\n1119, lastpass, Verified User (Anonymous), Small-Business, 2019-11-18, Its useful but has its downsizes, It seems to correctly detect every single password prompt. Even those that Firefox and Chrome fails.\nVery easy to use for filling the password prompts., Management for business is very clunky.\nNot many ways to arrange.\nI would suggest adding by site management and not by user. Or expand to make a dynamic list of sites.\nIt gets very hard to use the more sites you add and share.\n, Account sharing with multiple staff across multiple services, devices and locations.., 7.0\n1120, lastpass, Verified User (Anonymous), Mid-Market, 2019-10-24, I would recommend LastPass, I like LastPass because i can share private credentials for systems to other team members. This also allows up to have one main account and other be able to access that account. It also is a great tool to manage and store encrypted passwords. , Sometimes when i share something with a coworker the credentials do not save and they are unable to use it. Deleting it and doing it again usually fixes this. But unfortunately it happens often. , It helps us strong master password, it stores passwords and lets us share credentials. , 10.0\n1121, lastpass, Jose M, Enterprise, 2019-06-28, Security, The likelihood of utilizing it as a supplement to the program you use for the most part gives you more noteworthy convenience, since by being incorporated with the program, you can store every one of the records that you use all the time. \n\nLastpass likewise enables you to recover instant messages, erase any current duplication and perform widely organizations in your records, play out a verify whether the task is right or there is some sort of blunder in any record. \n\nThe application for the cell phone additionally has an incredible plan and permits to incorporate records inside the product effortlessly. \n, The main slip-up I have seen during the utilization of this program is that when you need to change starting with one record then onto the next from a similar web it requests that you adjust the present information, when perhaps you simply need to utilize that new record without placing it into the framework. , \nThen again, inside our organization we have put away numerous records of various stages and website pages inside lastpass. We can get to them effectively inside this framework and include or change accounts at whatever point we need., 8.0\n1122, lastpass, Verified User (Anonymous), Small-Business, 2019-09-08, Password management made easy, Use passwords across devices and browsers with ease. Test the strength of your passwords and find duplicate passwords. In some supported websites, automatically create new passwords with one click. , LastPass is less easy to use when it comes to mobile apps. Frequently pops up to auto fill but upon authentication never fills. Often have to use the copy and paste function instead, which is less secure. On browsers, sometimes the LastPass icon to fill password is overlayed on top browser's own password manager, making it difficult to click. Often get around this by right-clicking and choosing fill password. Sometimes when a field is on the lower part of a page, the lower half of the lastpass interface is cut off, so you have to scroll down the page more so the interface will fit. , Lastpass is excellent for keeping track of passwords in an age where password requirements across websites vary significantly. Some apps/sites require special characters while others prohibit them. Don't store your passwords in an unencrypted document. LastPass puts all your passwords in a secure environment, and can be accessed anywhere - even devices you haven't previously used - by using their website., 7.0\n1123, lastpass, Jeremy N, Mid-Market, 2019-11-18, A great service, The simplicity and security. Being able to login easily and control our passwords., Nothing so far. Everything has been working great for us., Work flow has been quicker being able to log into pages efficiently., 10.0\n1124, lastpass, Verified User (Anonymous), Small-Business, 2019-10-31, Helpful for business passwords, lastpass allows", "doc_id": "2e3fc063-2a99-4af1-a079-12ebd15f781f", "embedding": null, "doc_hash": "069eb95f937cbd7863bd186d39ea2e3cdd1b9825fa0aea8fb4b5986f7e9974d6", "extra_info": null, "node_info": {"start": 829815, "end": 846188}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "dea7e0d1-52e1-4818-b54e-521f33649b75", "3": "d086c2b7-fff4-4902-a35f-fa910d5307d5"}, "__type__": "1"}, "d086c2b7-fff4-4902-a35f-fa910d5307d5": {"text": "is excellent for keeping track of passwords in an age where password requirements across websites vary significantly. Some apps/sites require special characters while others prohibit them. Don't store your passwords in an unencrypted document. LastPass puts all your passwords in a secure environment, and can be accessed anywhere - even devices you haven't previously used - by using their website., 7.0\n1123, lastpass, Jeremy N, Mid-Market, 2019-11-18, A great service, The simplicity and security. Being able to login easily and control our passwords., Nothing so far. Everything has been working great for us., Work flow has been quicker being able to log into pages efficiently., 10.0\n1124, lastpass, Verified User (Anonymous), Small-Business, 2019-10-31, Helpful for business passwords, lastpass allows us to use best practice passcodes without ever having to type them out, or remember them. especially for businesses that use a lot of online services, this is literally lifesaving., sharing passwords can be really tricky between coworkers-- the process is easy enough but more than most times it doesn't work until you share it multiple times. , Lastpass has helped me to ONLY have to remember 2 passwords-- my lastpass master password and my locked computer password. it's really nice. saves lots of headaches. , 6.0\n1125, lastpass, Verified User (Anonymous), Enterprise, 2018-12-04, Last Pass, LastPass is a great tool for holding all my passwords in one location across my devices. It also allows me to move away from using the same handful of passwords with randomly generated ones. That same feature is also really helpful for systems that require you to change your password several times throughout the year., It isn't perfect when you have similar URLs with auto-filling the correct password. For example using a dev site and a live site it doesn't always catch the exact URL and which login/password should be used., This is helping with potential security threats by allowing me to have more complex secure passwords randomly generated as I need them for different platforms., 10.0\n1126, lastpass, Verified User (Anonymous), Small-Business, 2019-08-15, Game changer, Using Lastpass is something like a cell phone to me. How'd I live without it before? , sometimes clunky, could be more intuitive , quicker browsing, secure password creation, 10.0\n1127, lastpass, Verified User (Anonymous), Small-Business, 2019-03-11, Best password manager!, Lastpass is easy to use and is excellent for organization as well. It automatically asks to save and I can quickly log in to accounts without thinking. , There is nothing I dislike about this software., I have only benefited from using Lastpass. As someone who oversees multiple accounts, I can store client profiles and access them easily while knowing they are secured., 10.0\n1128, lastpass, Verified User (Anonymous), Small-Business, 2019-02-14, Works Well, It holds all my passwords and makes it easy to share passwords with co-workers, Sometimes the sharing feature doesn't work properly. It isn't very intuitive to use. , IT security. Most people use the same password for everything. This helps us be more secure. , 9.0\n1129, lastpass, all videos B J Benjamin E, Small-Business, 2018-06-18, No More Common Passwords!, min E. J.Freelance Automotive WritingAutomotiveSmall-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerReview source: G2 inviteIncentivized ReviewJun 18, 2018(Original Jul 25, 2017)\"No More Common Passwords!\"Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemov, jamin E. J.Freelance Automotive WritingAutomotiveSmall-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerReview source: G2 inviteIncentivized ReviewJun 18, 2018(Original Jul 25, 2017)\"No More Common Passwords!\"Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo, eSmall-Business(50 or fewer emp.)Request ContactCopy Review URLMore OptionsReport a ConcernRespond as LastPassValidated ReviewerReview source: G2 inviteIncentivized ReviewJun 18, 2018(Original Jul 25, 2017)\"No More Common Passwords!\"Helpful?Up Vote0Down Vote0Add CommentAdd CommentShareSave this ReviewRemo, 9.0\n1130, lastpass, Kajol B, Mid-Market, 2018-10-30, Solved a huge problem! , Not sure if this a problem that everyone has, but I'm ALWAYS forgetting my passwords. It can get so difficult if you need to recover your password so often. Also, it makes being online way more secure. Very important when in a company! , Sometimes it's difficult to use, the chrome plugin is glitchy and slow. , Security - sharing a password with a whole team can be scary and hard. The process is much smoother with LastPass. , 10.0\n1131, lastpass, Lu\u00eds V, Small-Business, 2019-01-30, Portable, Practice and Easy, I like the graphical interface and how the credentials are showed, the password generator, the secure note section and the credentials sharing. The mobile app is great and offers a widget to fill the credentials in the others apps., Until now there is nothing that i dislike., Secure password generation, storage and sharing., 10.0\n1132, lastpass, Andy W, Small-Business, 2019-03-13, Been using Lastpass for years. Couldn't live without it!, I've got about 1,000 passwords and I only need to remember one (very secure) one..., The interface is a bit clunky and 'old fashioned' Could do with a nice modern makeover., Ensuring different/secure passwords are used for for every login, 10.0\n1133, lastpass, Verified User (Anonymous), Small-Business, 2019-01-17, LastPass Makes password sharing easy and secure, I like that we are able to share passwords in our company securely., I can't really think of anything that I dislike., LastPass helps us share passwords throughout our company without worrying that they'll be found out. It makes it easy for me to login to business accounts without having to remember the passwords each time., 8.0\n1134, lastpass, Carissa W, Mid-Market, 2019-01-12, LASTPass great for security and client management'x. z 2 as8, LastPass is a great software that allows my passwords to be saved in an encrypted secure vault. I am able to receive access to my client profiles while providing security and professionalism., Unable to generate temp password for Locked shared accounts . Mobile application is not user friendly., I no longer have to remember passwords and easily able to share access with my team., 10.0\n1135, lastpass, Sam O, Mid-Market, 2018-04-29, An absolute game-changer for the enterprise, The ability to manage shared folders and pushing passwords into our user's vaults. The AD integration is fantastic and makes management a breeze providing you have a well structured AD. The enterprise options with the CSV uploading of bulk accounts into the system is also great as it means we can set up a lot of new starters accounts for various systems at the same time and push their login information into their vaults so they are all ready for onboarding., At times I have found that the system can be unreliable after an update has been released. It seems to not decrypt the vault properly. Also mobile experience is not great at times., Not having users asking constantly to reset passwords or what their account information is for particular systems, 10.0\n1136, lastpass, Anthony P, Small-Business, 2018-12-05, Password Management Made Easy, LastPass is a fantastic tool for every day IT. The amount of controls and reporting available within the app are close to none. , There isn't much to dislike. Highly recommended to all., Password management with rotation capabilities and identity/access reporting., 10.0\n1137, lastpass, Verified User (Anonymous), Small-Business, 2018-07-31, Safety and Convenience All in One!, Last Pass keeps track of all my passwords, bank accounts, PIN numbers, confidential client information and even notes to myself. The information is right at my fingertips and Last Pass even logs me in to my accounts. It's safe because a master password or fingerprint is required to get into the vault!, The login feature doesn't work well when there are multiple layers of passwords or PINs., The main thing is that it saves me time. Rather than having to navigate to every account to which I wish to log in, everything is on one page, in alphabetical order and I can navigate to account after account quickly, easily and seamlessly!, 10.0\n1138, lastpass, Verified User (Anonymous), Small-Business, 2019-01-25, Love it, recommend it all the time, Everyone should have a password manager, and last pass is very used friendly. I use it for both business and personal., Nothing comes to mind! It's pretty great, Allows me to create secure and unique passwords every time without having to memorize them., 10.0\n1139, lastpass, Crystal S, Small-Business, 2018-03-28, As promised, This is a no nonsense program that does exactly what it says it will. It is accessible anywhere, anytime, but not by everyone. I have no concerns about the safety of delicate/secure data we have saved and love the decrease in headaches and time lost trying to remember passwords for various sites or agencies., Sorting is more difficult than I'd like. Many of our sites don't automatically go to the folders they should and when you've got nearly 100 passwords it's annoying having to scroll past dozens of non-applicable sites to get to the one you need. Drag and drop functionality would be loved!, Some of the government sites we use require passwords to change every 30-60 days and have very complex guidelines. Last pass is an amazing tool that not only remembers and auto fills those passwords, but can generate qualifying ones as well. So it's a time saver, a frustration remover, and all around life saver..., 10.0\n1140, lastpass, Verified User (Anonymous), Small-Business, 2018-11-22, Great way to keep passwords safe, Easy to use - you just have a master password on your end, but it sets up crazy passwords, that can be something like 20 characters, and it's a combination of letters (uppercase and lower), numbers, symbols, etc. so it makes it virtually impossible to hack the password. , Setting up all if your accounts is a little time consuming, but it is worth it to protect my information, as well as the private information on my customers., It has made us less vulnerable to an attack, and we feel secure with the security they provide. , 9.0\n1141, lastpass, Diana A, Small-Business, 2018-03-30, Great For Securely Sharing Passwords Across Different Teams/Departments, Able to customize share settings, making some private, others for specific team members, and others for anyone within the organization. , No as intuitive to use as some other integrations. It is easy to use it as a filing system for securely storing and sharing passwords but the more automated functions require a little more thought/set up. , Instead of having a spreadsheet of passwords, this allows us to store them more securely and customize who gets access to which account information within the organization., 10.0\n1142, lastpass, Verified User (Anonymous), Small-Business, 2018-08-30, It is just good, It was my first Password manager. It very easy to handle and to use. I like the most feature that automatically changes passwords when you want. It is just comfortable to use. It's not expensive, and I recommend to have a paid version. Then you can share passwords with your team., Some bugs are just not cool. Sometimes it makes double entries for the same website, and that confuses me when I saw a 3 or 4 same entries. For a long run, it wasn't the best tool for our needs, but I think that was because of us, not the tool :)\n, All passwords in one place. Easy login., 7.0\n1143, lastpass, Verified User (Anonymous), Small-Business, 2018-06-12, Makes my life easier, I like that the platform is nicely synced between my laptop and mobile device so it stores all of passwords which are now just fingertips away. Very convenient., Apparently on the iPhone the LastPass app doesn't work as well I hear. When you use it on the phone, it launches the sites right in the app rather than launching the app you're working on so it's kinda tricky that way., basically just time and convenience of storing passwords on a piece of paper and going mad trying to find them. Also, LastPass can generate secure passwords easily so that in and of itself is AWESOME!!, 10.0\n1144, lastpass, Garett D, Small-Business, 2018-07-16, Solid password management, Works everywhere. Lastpass has a good track record for security. Tools included are very helpful (password generator, security checkup, etc.), Android app quality has been getting worse lately. In general, the quality of the various clients aren't quite as polished as some competitors'., Providing a secure repository for passwords. Makes sharing passwords easier and much more secure. Also allows for keeping better passwords, 8.0\n1145, lastpass, Verified User (Anonymous), Small-Business, 2019-01-11, Been using for years, great solution, Sharing passwords with team members without them getting the actual password., Sometimes it conflicts with Google passwords and gets a bit confusing., I can store client passwords securely without using a Word document., 10.0\n1146, lastpass, Verified User (Anonymous), Small-Business, 2018-07-31, Can't do without, Being able to save usernames and passwords is great, but being able to share usernames and passwords (while keeping passwords obscured) is amazing. Such an awesome feature!, Not a fault of LastPass, but sometimes it doesn't work very well with how some sites are configured - it either doesn't recognize that there is a saved UN/PW, or it doesn't function properly. Again, not a fault of LastPass., Being able to share Usernames and passwords, while keeping passwords secure/obscured is such a great feature - no more changing passwords just because an employee leaves, or you no longer want them to have access to it!, 10.0\n1147, lastpass, Verified User (Anonymous), Small-Business, 2019-01-27, Very helpful for organizing all passwords , Last pass is easy to use and very helpful organizing all our passwords for business tools. , I wish you could select when you want it to save a password instead of always popping up when I don't need it. Kind of annoying. , Helps organizing our many passwords and less thinking when logging in to sites. It automatically does it for us! , 10.0\n1148, lastpass, Federico J, Small-Business, 2018-02-28, Saves me a lot of time and frustration every single day, I work online all day and use a ton of apps and services during the day. If I had to remember my password for each one of those, I would have gone mad a long time ago.\n\nLastPass stores all of my login credentials and helps me sign in to my online apps with just a couple of clicks, every time. I don't have to worry about remembering my passwords, keeping a text file with them (huge security issue!) or even typing my login credentials every time I want to log in somewhere.\n\nI can also share credentials with other people (without them seeing my password). This helps immensely when you work with clients and need to log in to their services. They can simply install the LastPass extension and share their logins with you., Lately I had to log out and in again from my LastPass account to receive and store credentials that are shared with me. This doesn't happen often,", "doc_id": "d086c2b7-fff4-4902-a35f-fa910d5307d5", "embedding": null, "doc_hash": "d737a70ed026385da6b700d42a1c83db436710e4353d8aa60fd31a21debd94d6", "extra_info": null, "node_info": {"start": 846187, "end": 861708}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "2e3fc063-2a99-4af1-a079-12ebd15f781f", "3": "534f115b-7838-4c26-99d8-94eda945d1ed"}, "__type__": "1"}, "534f115b-7838-4c26-99d8-94eda945d1ed": {"text": "services during the day. If I had to remember my password for each one of those, I would have gone mad a long time ago.\n\nLastPass stores all of my login credentials and helps me sign in to my online apps with just a couple of clicks, every time. I don't have to worry about remembering my passwords, keeping a text file with them (huge security issue!) or even typing my login credentials every time I want to log in somewhere.\n\nI can also share credentials with other people (without them seeing my password). This helps immensely when you work with clients and need to log in to their services. They can simply install the LastPass extension and share their logins with you., Lately I had to log out and in again from my LastPass account to receive and store credentials that are shared with me. This doesn't happen often, but when it does it's a bit annoying., Securely storing all of my online credentials. I can share credentials with others in a simple and secure way. Saves hours of time every month from logging in and out from online services., 10.0\n1149, lastpass, Sigrid x, Small-Business, 2018-07-12, Buggy product and terrible customer service, Possibility to generate secure passwords and possibility to store these safely. , Buggy product, have had issues with with seeing passwords, settings (automatically logout), login in, and retrieving my password. Our LastPass admin is not able to give me a new password, as he is also experiencing issues with the system. \nCustomer support has not been helpful, polite, nor able to solve our requests. , Have used different systems at other companies, and compared with them, LastPass does not have any benefits. My company in general are fed up with LastPass (aka LostPass), and we will most likely change provider. , 0.0", "doc_id": "534f115b-7838-4c26-99d8-94eda945d1ed", "embedding": null, "doc_hash": "79bce25fccdfee518946a2b28e97cff672da4007def10f37a401c4073c7581ba", "extra_info": null, "node_info": {"start": 861576, "end": 863355}, "relationships": {"1": "e8f8de62-3d78-4c17-b634-5363a6f03cf8", "2": "d086c2b7-fff4-4902-a35f-fa910d5307d5"}, "__type__": "1"}, "8bd500a8-bcc3-4e15-8740-622f557dddff": {"text": "LastPass is a popular password management solution that is used by businesses and individuals alike. It is easy to use, with browser extensions that make it simple to adopt, and a free plan that offers good value. It generates strong passwords when signing up, and allows users to securely share passwords with others. It also has two-factor authentication and multi-platform support. LastPass can be used to store passwords, bank account information, pertinent addresses, and more. It also provides users with a security score for their password strength. The mobile experience is not as robust as on desktop, but the LastPass app can be used on phones to access passwords and secure notes. It is also known for using a lot of advertising, but this can be removed with a paid subscription.", "doc_id": "8bd500a8-bcc3-4e15-8740-622f557dddff", "embedding": null, "doc_hash": "a2b04d650a673f46da81c965e72957019280d7d92adec2d507f46519f83d9cf0", "extra_info": null, "node_info": null, "relationships": {}, "__type__": "1"}, "c95560d2-f6f5-4aa7-ae83-ae190d27cba6": {"text": "LastPass is an online password manager that provides users with a secure and convenient way to store and manage their passwords. It works across all browsers and devices, and can generate random passwords according to user preferences. It also offers features such as security checks, password sharing, and controlled sharing mechanisms. LastPass is great for both personal and business use, and is an invaluable tool for operating securely in today's world. It is also a great time saver, as it allows users to quickly sync passwords across devices and generate new passwords for new sites. LastPass also offers an enterprise plan for shared credentials, and a TOTP (time-based one-time password) feature for added security.", "doc_id": "c95560d2-f6f5-4aa7-ae83-ae190d27cba6", "embedding": null, "doc_hash": "e0f9fc885b39d43b72c31cae2053e2b934fe60aef2d5ca314e9ee90b5c16b584", "extra_info": null, "node_info": null, "relationships": {}, "__type__": "1"}, "1800c93f-524d-4a7d-9d54-4984b85b69cc": {"text": "LastPass is a password management tool that helps users securely store and manage their passwords. It is a lifesaver for businesses that manage database systems for multiple clients, as it allows them to store and share passwords without revealing the actual password. It is compatible with multiple platforms, including desktop, mobile, and browser-based, and offers features such as password history, password generator, and two-factor authentication. It also allows users to share login credentials with peers securely. LastPass is a great solution for businesses, though the free version is limited to one device.", "doc_id": "1800c93f-524d-4a7d-9d54-4984b85b69cc", "embedding": null, "doc_hash": "a32f39b451fe4286d7c26c724a9ac57c9374dc0e93abb9685af3f3f125e1291c", "extra_info": null, "node_info": null, "relationships": {}, "__type__": "1"}, "f7bdabaf-2dff-4c0a-bcd5-e04df59012cb": {"text": "LastPass is a secure password management system that allows users to store and manage their passwords, credit card details, secure notes, and more. It is available as a browser extension and mobile app, and offers features such as auto-fill forms, one-time passwords, and password generators. It also allows users to share passwords with team members without actually giving them the password. LastPass is a great solution for securely storing and encrypting user information, passwords, and other sensitive data. It is easy to use and can be synced across multiple devices. However, some users have experienced glitches with folder names and the UI can be clunky.", "doc_id": "f7bdabaf-2dff-4c0a-bcd5-e04df59012cb", "embedding": null, "doc_hash": "dbf803817eedb39b28465c702d5a7811eb581a1bfc6da6dccec2055c866c0644", "extra_info": null, "node_info": null, "relationships": {}, "__type__": "1"}, "da0a3ff9-1ff1-42b8-91bc-1fbb6490e5fb": {"text": "\nLastPass is a password manager that securely stores passwords and syncs them across all of your devices. It is browser-agnostic and can be used on mobile devices. It is secured by a master password and if a device is lost, it can be easily activated on a new device. It also has features like secure form-filling and password sharing. It is great for freelancers who have a lot of passwords and for organizations to share passwords securely. It has a password generator and autofill functions. It is free unless you want the corporate version or the app. It can be a bit disorganized if you have multiple logins for the same website. It is also vulnerable to hacking, though LastPass is always improving security.", "doc_id": "da0a3ff9-1ff1-42b8-91bc-1fbb6490e5fb", "embedding": null, "doc_hash": "7af7202c74779b8aae72f03ee17834a181a994eeb1c10252c8b2480870f0625d", "extra_info": null, "node_info": null, "relationships": {}, "__type__": "1"}, "98418f85-2a70-4f88-b847-2620669d39ec": {"text": "LastPass is a password management tool that helps users securely store and share passwords. It is a reliable app with a graphical interface that is easy to use and intuitive. It is available for all web browsers and supports all Windows versions, desktops, iPhones, iPads, and Android mobiles. It also has a mobile version that allows users to access it using their fingerprint. It is a great tool for businesses as it allows them to share passwords and information securely. However, it can be buggy at times and the customer service is not always helpful. Despite this, LastPass is still a great tool for securely storing and sharing passwords.", "doc_id": "98418f85-2a70-4f88-b847-2620669d39ec", "embedding": null, "doc_hash": "476cae552c59971a0bf67f4bb6e8aec6c13255430403f4d268233cff072c72ec", "extra_info": null, "node_info": null, "relationships": {}, "__type__": "1"}}, "ref_doc_info": {"e8f8de62-3d78-4c17-b634-5363a6f03cf8": {"doc_hash": "06de99bf09271303dc27f3792cd616feeccdbcac4623f91a02bedc1ac0ce8072"}, "02306d38-46dc-4a11-be9d-36ad97a97f32": {"doc_hash": "8a7aa1506ce46cca0985eaaad6bfd01fbc30d3db7a14d2e914f036e1163ca33a"}, "f5a83c6d-74db-4775-89d5-2c99ddff8730": {"doc_hash": "b5eaa5b0e322b2b6818195c3951d8f1ccb7b6d67deddb66f35f71f11c5ab8850"}, "26f061f2-5d31-41e2-ae55-caeee9c71b61": {"doc_hash": "1d4ba36fde8f5c6730b51a3936a881c2f6fa9777dd8eb099e6091b46dc8abfb2"}, "d498d667-a425-4e42-9118-10c167bf5711": {"doc_hash": "4b928a78147f91e542092455d30a5a21e5adade385870ca614f0c25994bb4991"}, "d7e2ef1d-b108-48c9-ba11-fc050a609352": {"doc_hash": "6893084db113d3e76103ab5a11c50fd6ae79becece2b23acc88bee564b1655ee"}, "ce20804b-6b07-4f87-bb67-6ab3a7fe83ee": {"doc_hash": "14535c6d8b6aa50b91e1747b9150ba67eb0c4331f7e0731223e029f861e59726"}, "f017958c-da7d-4558-b102-ec0e8c7699c2": {"doc_hash": "f8c8cf058e4791580ce51b6db481377eed54358784bc6e305e503f6933611896"}, "7f3a495f-f0a9-4de0-bb0f-dda9fb4490e8": {"doc_hash": "84048090071e401ca6980e8827e7ab7bc9ad34310f0cd31b8f07b470230433e2"}, "d280f70a-fb00-4b63-87b6-c297ce9eb33f": {"doc_hash": "dbd346eff65df103e5f755055399c86732b5c5ec03c33d9df80c8e3fa6e279d0"}, "0edd71d2-282d-4996-b957-cf4a427362e1": {"doc_hash": "6088ede42812687dafe229179b8f2db19b4e157d2a436b23aeb61594a7592ab4"}, "5d6054d3-d1b8-4c80-9c3c-3f193d0d5178": {"doc_hash": "9f64e9dadd014e295fe5fb00bb29a659a091c029ddb4c523912066bb7f779425"}, "b89858ce-6c45-4149-b42c-84e0740d2123": {"doc_hash": "8bfbd55d402397c42356f96135ebc2a8bb720b07afc5650a626f0abba4fff6e1"}, "7360afbb-3a45-4115-9a90-98dd069a62c4": {"doc_hash": "300a117b35cd68ccb753fb12d431573a11dd55a5fa94e21a4b78cf2005065a62"}, "ed6f6673-ba65-456c-b4ac-e8bccf1c63a0": {"doc_hash": "ba997ce208e9c5946dd993c57c1ac60989a38e9aeaca239a22f403da62182dd0"}, "828cfc79-9333-4469-97f0-47881b010441": {"doc_hash": "2ee630cc5c69486f729c0c09cf57f971938cf239ce1e65b3d8112e2d21f2e70d"}, "2f8b085b-f346-408b-b1da-b83aa484760c": {"doc_hash": "2eb8b1ff6860cef8d1549ef7d54811e9b112b7e6b49ec7f5f1e8fc756390dad3"}, "5c528974-37db-4c09-b30c-8523c5211525": {"doc_hash": "1af3dbd849f30ab3665198d508a97267d18c5f84118394117fb4981ed29768fe"}, "b2a1da40-86e5-4e88-8575-7423400509ac": {"doc_hash": "a45e882ad1eb504b6f33ccca2e2dd2508b40b54fafc71656540004a3dd239d8e"}, "7e10d436-12eb-4fbb-b3f1-d037e79dcc0a": {"doc_hash": "ec2352f608e51fe806aa0711be97531cc0c48919db7e75ae43595b85e3b231f0"}, "b6e78010-4534-43f4-b0a0-16d7f07fd34b": {"doc_hash": "b78f397be34e8ab10a842ac47212c521758ad39f025d9b104921d5cbddfc8e76"}, "4212d9df-80e0-4594-abf8-c43b62a507e3": {"doc_hash": "ca9794c9c728fc4bf2b8d493472e2889d3024529b163829d90a36a0d6a2accf2"}, "21b4e3ba-4c17-4463-a490-c4f1d950580e": {"doc_hash": "dd97f20d0bb6bbb17611ba1802c7c2ee362cde13356ccb33f72ab5dc3d95b77b"}, "9dd3f891-de9b-4792-8ebc-f061aa0f3f86": {"doc_hash": "68dabf7070896e5007fa7063a5aca6f52aaece6e8d077ec1237b6ca1c3ab0a63"}, "4f11381e-92c4-4a54-aa2e-2f2f604db4a9": {"doc_hash": "2ddf8a211714b1d9e36bc7cf915353803f86fa55459b7853e9948a23ed81b067"}, "a81b8e69-8d80-4210-bdc6-c86fd53ac89d": {"doc_hash": "aea0297a786587500f600b1ee5cc58a270c6fc1b75119591ebd57649dd1e7014"}, "1449054d-6aab-4d37-9173-d8f20188fe48": {"doc_hash": "fe95a05bf715d7f951c7fa19fa0f4226bfb319857046ac328403833680be865d"}, "979186d9-35a8-4307-9b0c-1448cb9f0b8e": {"doc_hash": "0dc0d4193aaeaf7e8b95ed0755f90e393e1e2ca30814b036359200b500ec25bc"}, "10933a86-3035-4674-97b2-8773d7c523ca": {"doc_hash": "8f01c122a5b6e7aaba9e84170b2f04ec6480f4a4cb6a45ccdc6bfc852a03157a"}, "4b6cf420-076d-47c7-9472-45c2918f7e33": {"doc_hash": "2e1dce4eb5efa98a268a35766927e5d728833e4894911b218a265731aa391a91"}, "b450018b-c568-4f48-b568-605b5f4063db": {"doc_hash": "c3062e6b7aa940942cd4d34a70966f0ebdaae366aff7c9316981b1caf8df2deb"}, "756adee9-21d6-4f7e-ad90-0e4af04d5e56": {"doc_hash": "75d944548d7de696168647a90476685e7c7574dd76295f6f88eb5e1dbae5ab8f"}, "dc8ad36b-b568-404f-8fba-d48131325c27": {"doc_hash": "37d3e050563fc0cd73a54488ec42f551d3ccf00093c32ae4eba65dafd7fbd22b"}, "47795f36-289e-461d-844b-595944d576d2": {"doc_hash": "99ef91b4cbd847d9dd4ab4514253a7983d677c2e8151bc46d36dd03ac605d92c"}, "319e9b46-4b60-4c44-9a86-0ab758759505": {"doc_hash": "4bc7704a9a4f666000170845732b0c3f8751c3926d062f0fcae0d426d6fe658a"}, "d7aa38d2-3f66-4894-aaa1-c72547a45062": {"doc_hash": "f2ab38a97b5090ee05f1a0acd04b93bc181b347c9d7e0c0dabbf4ecc7bb24d11"}, "729acdfc-9d2a-46bd-8e67-88d79efb6178": {"doc_hash": "6a1ce29c7509a4d044616421033c7dac62e662398f40b806d52cb931a30d10a4"}, "8fd42144-612b-474b-87c1-59524decb9b3": {"doc_hash": "58892edc67fad27bafa94d9140120ceb11b184eb8c07fee07168796cfdc3dbcd"}, "5cd8184d-cfb7-43b0-a3d9-cbdf29055c9b": {"doc_hash": "1f3108f7a3f536d7d53a080ec095133e06578cb820b6c210700fe08baa0cc3b5"}, "f41c82ab-e7e7-4d09-ace5-8f7473730273": {"doc_hash": "f0af54fa61a3f147b5d7cdc72e400be697bf6f845e0e8ba72c1e5cc0b2210280"}, "e5fdb29a-7d02-476b-b493-8eb610091d19": {"doc_hash": "a014759528d0580f2f6825562b7a8fbe1824973f14fb67e853bc6845a515bbc9"}, "a25da643-aac1-435f-8c89-a62fc586695a": {"doc_hash": "46406fc2e89bb9baa28bdc2341a6f785db0697b8a800b80c9fb337fbbb8f2fb3"}, "bb56f883-b18f-4d89-9825-a13adbc89ecd": {"doc_hash": "59e1fb7b18e00fda5557a047254b0b2a640316cc49c743e63b5e874d0c273493"}, "3d8557f3-d357-4985-a802-cdc3488ac3cd": {"doc_hash": "5454ab77271821646804b0a451fe4ede1dbe853f3a20f99018a2d68639a49935"}, "71686de5-d3b6-4179-961f-8877adc8b34e": {"doc_hash": "e92fcbaf782f03c5edd75eed39d3c5a2fb5971dd01e68d39f557942d397799fc"}, "3acf2f2b-7188-4de7-8338-de5d9bda66c5": {"doc_hash": "49f3ef5e813f76ff9f58ca42348d2984f26793c57f340ccc7a5b98debc28a6e4"}, "e6baceab-5cdc-40de-a645-5571c21afa8e": {"doc_hash": "99f4c4693146fc38213d7bd127e0acdfc8b257d49c698ebdaa05ff176bee1166"}, "909770d7-b474-44dd-8b3d-043fc5d465f4": {"doc_hash": "af110ea0a6b337513bbdf012bfee71bc34bcaa2283fb002223e79f33826cbe4a"}, "78ff6a18-e10d-425c-9dcd-cc7b6f151419": {"doc_hash": "b0d3f646de825348ce7f0874b19eebd64fb9f22e12ab170557596751d56fa8d2"}, "04c27ad9-9071-46dd-a77d-9e008afc0b86": {"doc_hash": "a1443fbfb7b2b6c8698a22e04e76b6d59efc743994d14013afeb344f91610803"}, "e7986295-bb01-4d29-8f73-02cc3947bd58": {"doc_hash": "a84131d584424a33b8fc4610b4a47ddc1a7e8600cf2ac67af78e2fa346c88511"}, "e7bbb1b1-aa7b-4d73-9ac3-43a1bb7db513": {"doc_hash": "b703bc4911612ce64b8fcbc1536551c7a828abf6051bc2a0e0a67874cf6a72c9"}, "ad9708ae-a85d-4e5b-857c-8fbecd0243e2": {"doc_hash": "a96d5daa5eb76cfe3f366e6f5cbe7ce3cb1ca8182849f595bacbeecbb4804f21"}, "dea7e0d1-52e1-4818-b54e-521f33649b75": {"doc_hash": "d2fa50d41848bd9737f92c75bb55d67f91ebd9128d72308b0d8d78b544c9ee07"}, "2e3fc063-2a99-4af1-a079-12ebd15f781f": {"doc_hash": "069eb95f937cbd7863bd186d39ea2e3cdd1b9825fa0aea8fb4b5986f7e9974d6"}, "d086c2b7-fff4-4902-a35f-fa910d5307d5": {"doc_hash": "d737a70ed026385da6b700d42a1c83db436710e4353d8aa60fd31a21debd94d6"}, "534f115b-7838-4c26-99d8-94eda945d1ed": {"doc_hash": "79bce25fccdfee518946a2b28e97cff672da4007def10f37a401c4073c7581ba"}, "8bd500a8-bcc3-4e15-8740-622f557dddff": {"doc_hash": "a2b04d650a673f46da81c965e72957019280d7d92adec2d507f46519f83d9cf0"}, "c95560d2-f6f5-4aa7-ae83-ae190d27cba6": {"doc_hash": "e0f9fc885b39d43b72c31cae2053e2b934fe60aef2d5ca314e9ee90b5c16b584"}, "1800c93f-524d-4a7d-9d54-4984b85b69cc": {"doc_hash": "a32f39b451fe4286d7c26c724a9ac57c9374dc0e93abb9685af3f3f125e1291c"}, "f7bdabaf-2dff-4c0a-bcd5-e04df59012cb": {"doc_hash": "dbf803817eedb39b28465c702d5a7811eb581a1bfc6da6dccec2055c866c0644"}, "da0a3ff9-1ff1-42b8-91bc-1fbb6490e5fb": {"doc_hash": "7af7202c74779b8aae72f03ee17834a181a994eeb1c10252c8b2480870f0625d"}, "98418f85-2a70-4f88-b847-2620669d39ec": {"doc_hash": "476cae552c59971a0bf67f4bb6e8aec6c13255430403f4d268233cff072c72ec"}}}} \ No newline at end of file diff --git a/treeIndex/RetroApril.json b/treeIndex/RetroApril.json new file mode 100644 index 0000000000000000000000000000000000000000..87e1cdc3d471264a6fbba6849cb4c755f330971c --- /dev/null +++ b/treeIndex/RetroApril.json @@ -0,0 +1 @@ +{"index_struct": {"__type__": "tree", "__data__": {"index_id": "0d8d0074-4ff8-42f7-a520-b546464346a3", "summary": null, "all_nodes": {"0": "644372cf-8289-4a35-b825-b0e39065607b"}, "root_nodes": {"0": "644372cf-8289-4a35-b825-b0e39065607b"}, "node_id_to_children_ids": {"644372cf-8289-4a35-b825-b0e39065607b": []}}}, "docstore": {"docs": {"644372cf-8289-4a35-b825-b0e39065607b": {"text": "Primary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, What went well in this release?, Edit and update sentiment feature - everything was available on time which helped to develop and give it to QA on time.\nPrimary User, What didn't go well in this release?, Nothing as such \nPrimary User, To improve our execution what should we add?, Nothing as such\nPrimary User, To improve our execution what should we DROP?, Nothing as such\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Moderate\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., Automation sprint .\nAutomate some of cust/qa found bugs.\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, What went well in this release?, In this sprint, I worked on the Ask AI modal, and it went really well. \nThanks to @meaghanli for her quick UX review and for highlighting a few UX issues.\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Good\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Hazy, needed to work with PM for clarity\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., Some edge cases needed more definition, as well as what would happen when certain menu options are actioned. We should move towards using Jira to outline clear acceptance criteria for all projects instead of solely relying on Figma.\nPrimary User, What didn't go well in this release?, Several features are only ready for UX review right before the end of the release, or even after the last day of the release. This makes it impossible to ensure product quality in time for the release, especially because UI needs 1 week to action UX review fixes.\nEither:\n1. Release cycles need to be longer\n2. Or we make structural changes so that items are ready for UX review AT LEAST 1\u20132 weeks before the end of the release\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Moderate\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, We could make progress on UX Redesign/Quality issues in 0.9.10. There was pause on this for few releases\nPrimary User, To improve our execution what should we add?, It would be great if we had add backlog of features/POCs to pick from incase if certain feature is deprioritized or we cant start on some feature due to dependencies. We did get UX Quality issues from Meaghan which were helpful in filing the bandwidth for 0.9.10\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, 50-50\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., Since the quarter planning also started when the release started, we had to pick some existing tech debt/spill items.\nPrimary User, What went well in this release?, - Able to pick some tech debts\n- Able to clear and pick items from backlog\nPrimary User, What didn't go well in this release?, - Quarter planning impacted the release planning\nPrimary User, To improve our execution what should we add?, - Plan ahead\n- Have a healthy backlog\nPrimary User, To improve our execution what should we DROP?, - None\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What didn't go well in this release?, nan\nPrimary User, To improve our execution what should we add?, nan\nPrimary User, To improve our execution what should we DROP?, nan\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Good\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., nan\nPrimary User, What went well in this release?, nan\nPrimary User, What didn't go well in this release?, nan\nPrimary User, To improve our execution what should we add?, nan\nPrimary User, To improve our execution what should we DROP?, nan\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Good\nPrimary User, As a member of the product management team, please explain your choice in the previous response., nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, What went well in this release?, Good pace throughout the release. Dev testing/bug bash went really well, I think it helps to keep accountability high. UX reviews also useful for the same reasons\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Very Good\nPrimary User, As a member of the product management team, please explain your choice in the previous response., This may have been sent to me by mistake as I don't think I am a member of product management(?), but I think we hit the sweet spot between workload and time in order to deliver quality results.\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What didn't go well in this release?, Few hiccups while releasing the new slack integrator service, need to get to the cause.\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Good\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., nan\nPrimary User, What went well in this release?, nan\nPrimary User, What didn't go well in this release?, nan\nPrimary User, To improve our execution what should we add?, nan\nPrimary User, To improve our execution what should we DROP?, nan\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User, As a member of the product management team, please explain your choice in the previous response., nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, Good progress made on splitting the slack service as an independent one. Thanks to Nayan for handling this. \nNice features like Pulse retro were introduced.\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., nan\nPrimary User, What went well in this release?, nan\nPrimary User, What didn't go well in this release?, nan\nPrimary User, To improve our execution what should we add?, nan\nPrimary User, To improve our execution what should we DROP?, nan\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Good\nPrimary User, As a member of the product management team, please explain your choice in the previous response., nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, nan\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Good\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., Very similar to the previous release. There were no blockers. Designs and backend APIs were ready beforehand (thanks to design and data team again). UI integrations were smooth as well.\nPrimary User, What went well in this release?, Team was able to improve code structure and optimise some APIs in the apps services. Consistency in MRs getting reviewed by multiple people, this has been good for some time now I think.\nPrimary User, What didn't go well in this release?, Had to spend some extra time on debugging issues related to pulse responses. \nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, Thought towards smart pulse survey designing and reducing AWS cost .\nPrimary User, What didn't go well in this release?, Deployment didn't go smooth this time other than that mostly things are good .\nPrimary User, To improve our execution what should we add?, Can we use chatGPT for company's knowledge base ? Means all confluence/Swagger(API details) on internal chatGPT server .\nPrimary User, To improve our execution what should we DROP?, nan\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User, As a member of the product management team, please explain your choice in the previous response., nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, - chatbot poc for demo purposes\n- progress on long term chatbot design\n- good design reviews \n- SQL Replica Read support\nPrimary User, What didn't go well in this release?, - Debugging / Fixing Unplanned issues - open ai threshold breach , redis task manager issue and bugs raised as part of testing\nPrimary User, To improve our execution what should we add?, - Better alerting around cost when it crosses certain threshold (month on month) and look for optimizations\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Good\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., Requirement is clear. While building proto-type nature features like chat interface there should be more clarity on to-do or not-to-do because there is a lot of back and forth.\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, - SSO deployments in prod Lvsands & Haleon\n- Chat bot integration\n- Addressed/working on some major tech-debt items from platform\n- Ability to leverage read instance of aurora\n- Slack native for retro without passwordless auth: much seamless than passwordless auth\n- parallel unit test execution brought down overall build time for tenancy from ~20 mins to ~11 mins\n- Snowflake POC\nPrimary User, What didn't go well in this release?, - System tests tear down issue blocking from running system tests completely in parallel we need to resolve the interlocks\n- Issues found during branch-cut and deployment\n- aws spring library for read/read-write took some time to resolve issues\n- We need to find ways to execute flows before UI integration, if it is not possible then we can request UI team to prioritise these flows (if we can identify them) early during release cycle. We had a situation where we found that backend doesn't support a specific flow on day of branch cut. This may be an exception but evaluating such flows early might help avoiding last minute changes.\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, Good\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, What went well in this release?, - First 3 sprints had better velocity compared to prior releases\n- Faster time to resolving customer issues thanks to Mohith, Sagarika, Anu and Bhavana\n- Closer to standing up slack as an independent service which will in the long run help with handling scale\nPrimary User, What didn't go well in this release?, nan\nPrimary User, To improve our execution what should we add?, - Bug backlog needs to be factored in along with features\n- Focus more on unit tests as that seemed to be the prominent RCA for bugs\nPrimary User, To improve our execution what should we DROP?, nan\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, We were able to clear some of the tech backlog which we weren't able to prioritise earlier\nPrimary User, To improve our execution what should we add?, Developers should add more system tests for the new features going in.\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, nan\nPrimary User, To improve our execution what should we add?, - Need to track and close Retro AIs more actively\n- Need to actively address failing system tests\nPrimary User, As a member of the Product Management team, how do you rate the quality and payload size of the release?, nan", "doc_id": "644372cf-8289-4a35-b825-b0e39065607b", "embedding": null, "doc_hash": "c887b232206a41195c5cf60cd00fe1bb0b7eff58ee1962b3612af232fe942f32", "extra_info": null, "node_info": {"start": 0, "end": 14279}, "relationships": {"1": "79afd613-bf19-4bfa-8ebe-75a2ee75b124"}, "__type__": "1"}}, "ref_doc_info": {"79afd613-bf19-4bfa-8ebe-75a2ee75b124": {"doc_hash": "c887b232206a41195c5cf60cd00fe1bb0b7eff58ee1962b3612af232fe942f32"}, "644372cf-8289-4a35-b825-b0e39065607b": {"doc_hash": "c887b232206a41195c5cf60cd00fe1bb0b7eff58ee1962b3612af232fe942f32"}}}} \ No newline at end of file diff --git a/treeIndex/RetroMarch.json b/treeIndex/RetroMarch.json new file mode 100644 index 0000000000000000000000000000000000000000..de80a162d50376c6d787ed9b07fcc594bbf91fc5 --- /dev/null +++ b/treeIndex/RetroMarch.json @@ -0,0 +1 @@ +{"index_struct": {"__type__": "tree", "__data__": {"index_id": "cfeed0f7-92db-4500-9a14-af5939be59ea", "summary": null, "all_nodes": {"0": "29bd4833-4f9b-4160-ad23-2e8ce64037ab"}, "root_nodes": {"0": "29bd4833-4f9b-4160-ad23-2e8ce64037ab"}, "node_id_to_children_ids": {"29bd4833-4f9b-4160-ad23-2e8ce64037ab": []}}}, "docstore": {"docs": {"29bd4833-4f9b-4160-ad23-2e8ce64037ab": {"text": "Primary User, Were the requirements clear at the time you picked up your tasks?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, * Amazing work from data team in topic identification, summary generation for reports\n* Teams retro looks really cool terrific work by ui/ apps and collab team\n* Setting up VPN and updating code to re-route calls - this was a long pending task\n* Research in multi instance deployment\nPrimary User, What didn't go well in this release?, * Couldn't address all pabot related issues due to active changes happening in int \n* Lots of research topic for platform team this time (expected) - we should be closing on some these tasks in upcoming sprints\nPrimary User, To improve our execution what should we add?, * Tracking system tests and alerts in int and stage\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, Design specs really good with fast and clear communications. Ritu was very helpful with resolving any issues I found with APIs quickly.\nPrimary User, What didn't go well in this release?, Difficulty maintaining a proper development environment in parallel with one for dev testing for the teams unified experience meant that I did not have time to finish dev/ux review work satisfactorily before the branch cut. The result was having to work in a compromised way and under time pressure late in the day. I was under the impression that if a feature was not ready we were not going to push for it to be in.\nPrimary User, Were the requirements clear at the time you picked up your tasks?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., The requirements were again very clear for this release, specially for the apps tasks. Already had an overview of the features we were going to implement in this release as these were discussed previously.\nPrimary User, What went well in this release?, I think the inter-team dependencies were handled pretty nicely in this release. The data APIs to be consumed by apps were ready even before the release started (thanks to Seshan) and we were able to deliver the APIs to be consumed by UI before end of Sprint 3.\n\nThe bug bash sessions were again very successful and helped us to catch a lot of bugs and fix them in the dev cycle itself. Also, great idea by Ritu to use Slack Posts feature for creating E2E testing docs for various features which can be edited by everyone.\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, 1. We could completed dev testing for most of the features and fixed most of them fixed also that are being delivered in 0.9.9.\n2. Lesser # of major bugs in dev testing\n3. Two features in iFrame being worked on by 2 devs in Parallel.\n4. zero merge conflicts when merging main to develop in 0.9.9\nPrimary User, To improve our execution what should we add?, One of things we identified this release was slack post which can be edited by multiple people in the team. This is a good way to collaborate/track list of live items which are light weight and don't need jira/wiki. (Thanks Ritu for finding this option).\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, What didn't go well in this release?, Nothing\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, Sentiment-analysis using with chatGPT , copilot .\nPrimary User, What didn't go well in this release?, Nothing\nPrimary User, To improve our execution what should we add?, Nothing as such\nPrimary User, To improve our execution what should we DROP?, Nothing as such\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., Mostly clear for the current release but a bit hazy for the next release. We need to define rough roadmap for the next release also.\nPrimary User, What went well in this release?, This release as usual packed with full of features. Most of the features tested before branch cut. Our UI fit and finish and overall quality improved significantly compared to few old releases.\nPrimary User, What didn't go well in this release?, We started discussing improved error handling for our customer onboarding but only a little progress in overall improvement. We must invest more time in this to enable anyone to do onboarding without going through a very complex wiki page of steps with lots of if conditions.\nPrimary User, To improve our execution what should we add?, Most of the time, we face issues with feature builds deployed in INT. If multiple developers need to work on the same service, that is even more complicated. We need to start planning a better solution to accommodate this internal requirement. Until then, we need to follow the best practices like keep rebasing and changing the builds after testing is done etc.\nPrimary User, To improve our execution what should we DROP?, We must eliminate manual steps as much as possible in all places, specifically deployments and onboarding. For the data team, we need to automate the Druid schema management. Every time there is a schema change, deployment is not going smoothly due to this manual step.\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, We were able to complete the collab changes to support unified teams experience and teams retro surveys. Completed the implementation for the template driven actions and its slack support.\nResolved quite a few tech debt items from collab board.\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., We have a definite template, process and clean designs in place when we plan or start test cycle\nPrimary User, What went well in this release?, - Major features wrapped up early and dev tested before delivering to QA\n- Automated tests for ongoing release features\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., nan\nPrimary User, What went well in this release?, nan\nPrimary User, What didn't go well in this release?, nan\nPrimary User, To improve our execution what should we add?, nan\nPrimary User, To improve our execution what should we DROP?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, Delivered all the planned items with minimum spillover\nPrimary User, What didn't go well in this release?, nan\nPrimary User, To improve our execution what should we add?, we can do a little more dogfooding to uncover issues around usability. e.g actions / brokering between PMs and dev teams\nPrimary User, To improve our execution what should we DROP?, nothing\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., Had some last minute changes for Retro. Nothing major.\nPrimary User, What went well in this release?, Multiple features got implemented (unified exp, retro, addr book, action templates) - good release overall.\n\nTeam meet was good - had a few productive technical discussions\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., nan\nPrimary User, What went well in this release?, nan\nPrimary User, What didn't go well in this release?, nan\nPrimary User, To improve our execution what should we add?, nan\nPrimary User, To improve our execution what should we DROP?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, What went well in this release?, Tasks related to lambda VPC integration\nPrimary User, What didn't go well in this release?, Lambda testing takes a lot of time right now as we don't have unit tests. Basically you have to wait for two pipelines to pass (libs and lambda function) and then wait for the deployment to happen before you can detect any sort of bug\nPrimary User, To improve our execution what should we add?, Unit tests for lambdas\nPrimary User, Were the requirements clear at the time you picked up your tasks?, nan\nPrimary User, What went well in this release?, Quite a few features were delivered in this release despite the fact that a few engineers were unavailable (on PTO).\nPrimary User, To improve our execution what should we add?, I would perhaps like to see more ownership from each and everyone for the features they are working on and think through the story they are working on even though the spec doesn't have all the details\nPrimary User, To improve our execution what should we DROP?, Nothing\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, UX reviews of Qualitative comments(Topics), very quick response by @meaghan during reviews. \nMerge strategy instead of rebase helped merge HFs and Develop branch real quick. \nTeam Outing :)\nPrimary User, What didn't go well in this release?, nan\nPrimary User, To improve our execution what should we add?, nan\nPrimary User, To improve our execution what should we DROP?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, - Good progress on OpenAI topics and summarization\n- Lots of learnings - Prompt Engineering , llamaindex , langchain\nPrimary User, What didn't go well in this release?, - druid issues like joins , schema refresh - had to add workarounds to bypass the issue\n- missed out on druid spec sync issues between environments during deployment\n-\nPrimary User, To improve our execution what should we DROP?, nan\nPrimary User, Were the requirements clear at the time you picked up your tasks?, nan\nPrimary User, To improve our execution what should we add?, High level progress view is missing I guess now. So EPICs tagging will help here\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Crystal clear\nPrimary User, What went well in this release?, Focussed effort on making existing features more robust along with shipping of new features like Retro and Address Book\nPrimary User, What didn't go well in this release?, - Identified a few scale related issues with use cases around pulse delivery and adding users to PVT\n- Identified some bad patterns in the way DB tables are queried without the right constraints\nPrimary User, To improve our execution what should we add?, - Focus on onboarding improvements and error messaging\n- More attention to system test regressions\nPrimary User, Were the requirements clear at the time you picked up your tasks?, Mostly clear\nPrimary User, What went well in this release?, - Good collaboration across teams, user facing channel threads are helpful \n- Getting faster response on UX, thanks & kudos to Meaghan\n- Dev testing is coming as a very helpful exercise. Though we are spending time to come together and test but these are really fruitful sessions to align all the teams on the same page.\nPrimary User, What didn't go well in this release?, - There are few pockets of time in the sprint when apps/ui cannot proceed as we have backend dependency or some pending answers from UX/Product. We need to keep other minor task preplanned for such time period. This falls back to planning better.\nPrimary User, To improve our execution what should we add?, - More detailed decomps\nPrimary User, To improve our execution what should we DROP?, - None\nPrimary User, Were the requirements clear at the time you picked up your tasks?, nan\nPrimary User, Please comment on requirement clarity, more so if the requirements were NOT mostly clear OR crystal clear., nan\nPrimary User, What went well in this release?, -\nPrimary User, What didn't go well in this release?, -\nPrimary User, Were the requirements clear at the time you picked up your tasks?, nan", "doc_id": "29bd4833-4f9b-4160-ad23-2e8ce64037ab", "embedding": null, "doc_hash": "0c17c6ec2e952e172dfaa5c397e5ef71937584e96c782473ec02d2ae41d8df90", "extra_info": null, "node_info": {"start": 0, "end": 13334}, "relationships": {"1": "885b63ff-1776-4a2d-a399-e641c0af75cc"}, "__type__": "1"}}, "ref_doc_info": {"885b63ff-1776-4a2d-a399-e641c0af75cc": {"doc_hash": "0c17c6ec2e952e172dfaa5c397e5ef71937584e96c782473ec02d2ae41d8df90"}, "29bd4833-4f9b-4160-ad23-2e8ce64037ab": {"doc_hash": "0c17c6ec2e952e172dfaa5c397e5ef71937584e96c782473ec02d2ae41d8df90"}}}} \ No newline at end of file